01 Nmdc Exploration
Jupyter notebook from the Community Metabolic Ecology via NMDC × Pangenome Integration project.
NB01: NMDC Schema Exploration and Sample Inventory¶
Project: Community Metabolic Ecology via NMDC × Pangenome Integration
Requires: BERDL JupyterHub (Spark — get_spark_session() injected into kernel)
Purpose¶
Gate notebook for the project. Before writing NB02–NB05, we must verify:
- Column names in
nmdc_arkin.study_table,taxonomy_features, andmetabolomics_gold
(not fully documented in schema docs) - Whether
sample_idvalues are prefixed withstudy_id(Query 1 depends on this) - Whether
taxonomy_featuresprovides relative abundances or raw read counts - Whether
metabolomics_goldcarries KEGG/ChEBI compound IDs in its own columns - Which taxonomy classifier (kraken_gold, centrifuge_gold, gottcha_gold, taxonomy_features)
provides the most species-level resolution
Outputs¶
data/nmdc_sample_inventory.csv— samples with paired taxonomy + metabolomicsdata/nmdc_classifier_comparison.csv— per-sample taxonomy stats per classifierdata/nmdc_metabolomics_coverage.csv— per-sample compound counts and annotation ratesfigures/nmdc_sample_coverage_SUPERSEDED.png— ecosystem type distribution and sample overlap (generated beforeomics_files_tablebridge; shows 0 overlap)
Key Decisions to Make¶
- Which taxonomy classifier to use in NB02?
- Is normalization needed before computing community-weighted completeness (NB03)?
- How to map metabolomics compounds to amino acid identity (Plan A: KEGG IDs; Plan B: name matching)?
# On BERDL JupyterHub — get_spark_session() is injected into the kernel; no import needed
spark = get_spark_session()
spark
<pyspark.sql.connect.session.SparkSession at 0x7bac555756a0>
import os
import pandas as pd
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
# import matplotlib_venn # pip install matplotlib-venn if needed
# Paths (relative to project root — adjust if running from a different cwd)
PROJECT_DIR = os.path.abspath(os.path.join(os.path.dirname('__file__'), '..'))
DATA_DIR = os.path.join(PROJECT_DIR, 'data')
FIGURES_DIR = os.path.join(PROJECT_DIR, 'figures')
os.makedirs(DATA_DIR, exist_ok=True)
os.makedirs(FIGURES_DIR, exist_ok=True)
print(f'DATA_DIR: {DATA_DIR}')
print(f'FIGURES_DIR: {FIGURES_DIR}')
DATA_DIR: /home/cjneely/repos/BERIL-research-observatory/projects/nmdc_community_metabolic_ecology/data FIGURES_DIR: /home/cjneely/repos/BERIL-research-observatory/projects/nmdc_community_metabolic_ecology/figures
# Step 1a: study_table — confirm study_id, ecosystem_category, ecosystem_type
print('=== nmdc_arkin.study_table schema ===')
spark.sql('DESCRIBE nmdc_arkin.study_table').show(50, truncate=False)
=== nmdc_arkin.study_table schema === +----------------------------------------+---------+-------+ |col_name |data_type|comment| +----------------------------------------+---------+-------+ |study_id |string |NULL | |name |string |NULL | |description |string |NULL | |ecosystem |string |NULL | |ecosystem_category |string |NULL | |ecosystem_type |string |NULL | |ecosystem_subtype |string |NULL | |specific_ecosystem |string |NULL | |principal_investigator_has_raw_value |string |NULL | |principal_investigator_profile_image_url|string |NULL | |principal_investigator_orcid |string |NULL | |principal_investigator_type |string |NULL | |type |string |NULL | |funding_sources |string |NULL | |has_credit_associations |string |NULL | |gold_study_identifiers |string |NULL | |title |string |NULL | |study_category |string |NULL | |associated_dois |string |NULL | |protocol_link |string |NULL | |principal_investigator_name |string |NULL | |websites |string |NULL | |part_of |string |NULL | |principal_investigator_email |string |NULL | |study_image |string |NULL | |insdc_bioproject_identifiers |string |NULL | |homepage_website |string |NULL | |gnps_task_identifiers |string |NULL | |jgi_portal_study_identifiers |string |NULL | |notes |string |NULL | |emsl_project_identifiers |string |NULL | |alternative_names |string |NULL | +----------------------------------------+---------+-------+
# Step 1b: taxonomy_features — confirm sample_id column, taxon/abundance columns
print('=== nmdc_arkin.taxonomy_features schema ===')
spark.sql('DESCRIBE nmdc_arkin.taxonomy_features').show(50, truncate=False)
=== nmdc_arkin.taxonomy_features schema === +--------+---------+-------+ |col_name|data_type|comment| +--------+---------+-------+ |7 |double |NULL | |11 |double |NULL | |33 |double |NULL | |34 |double |NULL | |35 |double |NULL | |41 |double |NULL | |43 |double |NULL | |48 |double |NULL | |52 |double |NULL | |56 |double |NULL | |69 |double |NULL | |114 |double |NULL | |119 |double |NULL | |125 |double |NULL | |128 |double |NULL | |192 |double |NULL | |193 |double |NULL | |266 |double |NULL | |280 |double |NULL | |287 |double |NULL | |292 |double |NULL | |293 |double |NULL | |294 |double |NULL | |300 |double |NULL | |303 |double |NULL | |305 |double |NULL | |316 |double |NULL | |317 |double |NULL | |329 |double |NULL | |337 |double |NULL | |339 |double |NULL | |343 |double |NULL | |353 |double |NULL | |354 |double |NULL | |358 |double |NULL | |359 |double |NULL | |373 |double |NULL | |375 |double |NULL | |376 |double |NULL | |380 |double |NULL | |381 |double |NULL | |382 |double |NULL | |384 |double |NULL | |396 |double |NULL | |398 |double |NULL | |399 |double |NULL | |408 |double |NULL | |414 |double |NULL | |426 |double |NULL | |442 |double |NULL | +--------+---------+-------+ only showing top 50 rows
# Step 1c: metabolomics_gold — look for KEGG/ChEBI compound ID columns
print('=== nmdc_arkin.metabolomics_gold schema ===')
spark.sql('DESCRIBE nmdc_arkin.metabolomics_gold').show(50, truncate=False)
=== nmdc_arkin.metabolomics_gold schema === +--------------------------------------------+---------+-------+ |col_name |data_type|comment| +--------------------------------------------+---------+-------+ |file_id |string |NULL | |file_name |string |NULL | |feature_id |string |NULL | |Apex Scan Number |double |NULL | |Area |double |NULL | |Associated Mass Features after Deconvolution|string |NULL | |Calculated m/z |double |NULL | |Confidence Score |double |NULL | |Dispersity Index |double |NULL | |Entropy Similarity |double |NULL | |Intensity |double |NULL | |Ion Formula |string |NULL | |Ion Type |string |NULL | |Is Largest Ion after Deconvolution |boolean |NULL | |Isotopologue Similarity |double |NULL | |Isotopologue Type |string |NULL | |Library mzs in Query (fraction) |double |NULL | |MS2 Spectrum |string |NULL | |Mass Feature ID |bigint |NULL | |Molecular Formula |string |NULL | |Monoisotopic Mass Feature ID |double |NULL | |Persistence |double |NULL | |Polarity |string |NULL | |Retention Time (min) |double |NULL | |Sample Name |string |NULL | |Spectra with Annotation (n) |double |NULL | |Tailing Factor |double |NULL | |chebi |double |NULL | |database_name |string |NULL | |final_scan |bigint |NULL | |inchi |string |NULL | |inchikey |string |NULL | |kegg |string |NULL | |m/z |double |NULL | |m/z Error (ppm) |double |NULL | |m/z Error Score |double |NULL | |name |string |NULL | |noise_score |double |NULL | |noise_score_max |double |NULL | |noise_score_min |double |NULL | |normalized_dispersity_index |double |NULL | |ref_ms_id |string |NULL | |smiles |string |NULL | |start_scan |bigint |NULL | |Peak Area |double |NULL | |Traditional Name |string |NULL | |Spectral Similarity Score |string |NULL | |Similarity Score |string |NULL | |Retention Time Ref |string |NULL | |Retention Index Score |string |NULL | +--------------------------------------------+---------+-------+ only showing top 50 rows
# Step 1d: Inspect raw values to understand ID formats and join strategy
print('=== Sample study_table rows ===')
spark.sql("""
SELECT study_id, ecosystem_category, ecosystem_type, ecosystem_subtype
FROM nmdc_arkin.study_table
LIMIT 5
""").show(truncate=False)
# taxonomy_features has all-numeric column names — it is a WIDE-FORMAT matrix.
# Count rows to determine orientation (rows = samples? or rows = taxons?)
print('\n=== taxonomy_features row count and first 3 rows ===')
n_tax_rows = spark.sql("SELECT COUNT(*) as n FROM nmdc_arkin.taxonomy_features").collect()[0]['n']
print(f'Row count: {n_tax_rows}')
# Show first few rows — use backtick-quoting for numeric column names
spark.sql("SELECT * FROM nmdc_arkin.taxonomy_features LIMIT 3").show(5, truncate=True)
# metabolomics_gold uses file_id, not sample_id
print('\n=== Sample metabolomics_gold rows (file_id, name, kegg, chebi) ===')
spark.sql("""
SELECT file_id, file_name, `name`, kegg, chebi, `Molecular Formula`
FROM nmdc_arkin.metabolomics_gold
LIMIT 5
""").show(truncate=False)
=== Sample study_table rows === +--------------------+------------------+---------------+-----------------+ |study_id |ecosystem_category|ecosystem_type |ecosystem_subtype| +--------------------+------------------+---------------+-----------------+ |nmdc:sty-11-8fb6t785|Terrestrial |Deep subsurface|Unclassified | |nmdc:sty-11-33fbta56|Aquatic |Freshwater |Wetlands | |nmdc:sty-11-aygzgv51|Aquatic |Freshwater |River | |nmdc:sty-11-34xj1150|NULL |NULL |NULL | |nmdc:sty-11-076c9980|Terrestrial |Soil |Unclassified | +--------------------+------------------+---------------+-----------------+ === taxonomy_features row count and first 3 rows === Row count: 6365 +------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+------------------+------------------+------------------+-------------------+------------------+------------------+------------------+------------------+-------------------+------------------+--------------------+------------------+------------------+--------------------+-------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+------------------+------------------+------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+-------------------+------------------+-------------------+------------------+--------------------+-------------------+------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+------------------+-------------------+-------------------+--------------------+--------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+------------------+-------------------+--------------------+------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+------------------+-------------------+------------------+------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+--------------------+-------------------+------------------+------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+------------------+--------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+-------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+-----------------+--------------------+------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-----------------+-------------------+-------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-----------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+----------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+ | 7| 11| 33| 34| 35| 41| 43| 48| 52| 56| 69| 114| 119| 125| 128| 192| 193| 266| 280| 287| 292| 293| 294| 300| 303| 305| 316| 317| 329| 337| 339| 343| 353| 354| 358| 359| 373| 375| 376| 380| 381| 382| 384| 396| 398| 399| 408| 414| 426| 442| 524| 529| 533| 536| 550| 615| 644| 873| 881| 912| 913| 921| 926| 964| 1049| 1053| 1061| 1063| 1069| 1075| 1076| 1079| 1084| 1085| 1270| 1396| 1575| 1708| 1710| 1711| 1764| 1767| 1768| 1771| 1772| 1781| 1788| 1791| 1797| 1800| 1804| 1810| 1814| 1829| 1830| 1836| 1852| 1859| 1861| 1866| 1867| 1877| 1881| 1885| 1888| 1889| 1890| 1893| 1894| 1901| 1907| 1912| 1914| 1915| 1926| 1930| 1940| 1950| 1969| 2001| 2006| 2014| 2020| 2021| 2041| 2045| 2054| 2055| 2057| 2061| 2066| 2734| 2736| 9606| 13690| 28049| 28068| 28077| 28095| 28104| 28447| 28450| 28901| 29303| 29311| 29405| 29449| 29543| 29549| 31958| 32002| 33050| 33052| 33072| 33075| 33903| 33910| 33996| 34003| 34004| 34018| 34029| 34073| 35554| 35806| 36809| 36814| 36822| 36861| 36873| 37326| 37329| 37330| 37332| 37487| 37919| 37927| 38300| 38310| 39645| 39775| 39960| 40137| 40318| 40324| 40988| 40989| 40990| 41899| 41977| 42197| 42253| 42444| 42684| 43357| 43767| 44255| 46351| 46429| 47716| 47763| 47857| 47858| 47865| 47872| 48935| 49319| 53358| 53399| 53408| 53412| 53437| 53461| 53635| 54571| 55508| 55518| 56458| 56730| 57480| 57704| 57975| 59405| 60548| 60550| 60890| 60920| 61624| 62140| 63745| 65741| 67267| 67304| 68202| 68203| 68209| 68214| 68223| 68246| 68249| 68280| 68570| 68895| 69395| 69666| 71433| 73141| 73919| 74313| 74318| 75105| 75385| 75697| 76731| 76758| 78331| 78587| 80679| 80816| 80842| 80867| 81032| 81475| 82541| 82633| 83263| 83453| 83455| 84159| 84531| 84595| 84757| 85643| 85698| 87883| 88688| 89184| 93064| 93218| 93219| 93220| 93221| 94132| 94624| 95485| 95486| 96344| 101571| 103731| 103855| 104087| 104336| 105219| 105560| 106370| 106590| 106592| 107709| 108010| 110319| 110321| 110539| 113562| 114615| 114616| 115808| 117157| 117207| 119219| 119484| 120107| 121719| 123899| 128780| 129921| 131568| 132919| 133453| 133924| 134536| 134537| 134601| 135487| 138336| 139208| 146919| 146923| 146939| 147645| 148447| 152480| 152500| 153496| 155892| 157782| 158500| 158899| 159346| 160660| 160791| 161493| 164348| 164546| 167468| 168471| 168695| 168697| 169176| 169427| 169430| 171437| 173366| 173480| 179636| 182640| 184914| 184917| 186189| 186931| 187303| 190721| 191495| 192843| 193462| 194963| 196162| 196914| 198107| 198620| 199596| 208439| 211114| 212767| 215813| 216465| 216778| 217203| 217204| 219314| 221822| 222805| 223967| 231455| 234612| 237610| 240495| 242606| 244596| 248026| 256618| 257708| 259537| 261302| 261654| 262324| 265293| 265960| 266779| 269660| 270351| 279058| 279113| 280236| 283811| 284016| 285450| 285473| 285665| 288000| 291594| 292913| 293089| 296591| 298653| 298654| 299146| 299152| 304895| 307121| 308754| 311180| 311230| 314722| 319017| 320497| 323415| 327160| 331696| 332163| 335659| 337191| 339268| 340345| 341045| 345632| 348043| 348824| 349221| 351052| 351604| 354356| 356837| 356851| 356852| 362257| 364317| 364410| 366602| 368607| 370526| 372663| 374606| 376489| 379067| 380021| 388357| 392734| 396595| 397260| 399736| 404589| 405212| 408015| 412690| 412963| 413882| 414996| 415229| 419479| 423351| 426117| 435897| 436515| 443143| 443156| 444103| 444444| 445576| 445709| 445710| 446860| 450378| 450734| 453230| 453304| 455432| 458033| 463014| 463025| 463040| 465721| 466153| 472175| 475662| 477641| 482462| 482957| 484429| 488447| 528244| 530584| 531813| 536018| 546871| 546874| 547188| 551760| 553510| 553814| 571913| 573737| 585455| 587753| 588932| 589382| 593909| 627192| 630515| 632569| 640511| 640512| 642780| 644968| 649831| 649841| 652787| 655015| 656024| 656178| 656179| 656366| 658062| 664962| 666685| 674703| 675864| 682998| 686597| 692370| 701042| 709797| 709883| 710111| 716925| 717785| 722472| 722731| 745310| 748247| 748280| 748811| 758793| 758802| 794903| 795665| 857417| 860235| 861299| 862751| 864051| 870903| 875328| 879274| 925818| 927083| 931866| 940614| 940615| 941907| 945844| 946333| 948107| 991904| 1003110| 1004901| 1005039| 1016987| 1030157| 1033854| 1034889| 1038928| 1050370| 1077935| 1077946| 1082851| 1090615| 1108595| 1109743| 1125847| 1134435| 1136941| 1141883| 1166950| 1176649| 1192162| 1208324| 1223566| 1226968| 1229727| 1234841| 1235591| 1248727| 1250539| 1262452| 1267768| 1274631| 1281578| 1288970| 1296669| 1297742| 1312183| 1315974| 1325564| 1327635| 1331258| 1332080| 1332264| 1333996| 1335048| 1349819| 1355015| 1355477| 1357916| 1379159| 1379270| 1384459| 1387353| 1389713| 1390395| 1391653| 1392877| 1404367| 1404768| 1411117| 1411902| 1416614| 1416803| 1416806| 1427356| 1432792| 1437360| 1442032| 1446794| 1458461| 1469502| 1470176| 1482074| 1486262| 1503054| 1503055| 1515612| 1526658| 1532555| 1535768| 1545728| 1548547| 1548548| 1549858| 1550579| 1555112| 1560345| 1561022| 1564506| 1571470| 1579979| 1586287| 1593482| 1603606| 1605891| 1608628| 1608957| 1609758| 1609966| 1609977| 1612173| 1616117| 1620215| 1620421| 1630693| 1632864| 1634516| 1636152| 1637999| 1639348| 1641402| 1643450| 1644131| 1653478| 1653480| 1658665| 1658671| 1663591| 1670800| 1675686| 1678028| 1679497| 1682113| 1690221| 1690815| 1697043| 1702325| 1705310| 1707785| 1714373| 1725411| 1736046| 1736675| 1736691| 1740163| 1746199| 1751294| 1756988| 1758194| 1758689| 1759059| 1761016| 1765967| 1768242| 1771309| 1778675| 1783515| 1792307| 1792508| 1795043| 1795630| 1795631| 1795874| 1796921| 1798193| 1798205| 1798223| 1798224| 1804984| 1804986| 1805827| 1806508| 1810504| 1812480| 1823759| 1825976| 1827580| 1838286| 1841249| 1842534| 1842536| 1842537| 1842539| 1842540| 1842727| 1843368| 1849032| 1849967| 1850238| 1850250| 1851544| 1855352| 1855519| 1855726| 1855912| 1867719| 1868589| 1873716| 1879023| 1881016| 1881061| 1882682| 1882747| 1882749| 1882757| 1882831| 1882833| 1883416| 1896164| 1896961| 1904640| 1906741| 1907575| 1909395| 1909732| 1911175| 1914525| 1915078| 1917485| 1921510| 1922226| 1926494| 1936029| 1938605| 1938607| 1938841| 1945662| 1969806| 1978339| 1980001| 1981173| 1990687| 2003315| 2003551| 2005884| 2006110| 2009329| 2014542| 2014887| 2015316| 2018025| 2018065| 2020312| 2021234| 2021862| 2024580| 2025949| 2026199| 2026799| 2028343| 2033435| 2033869| 2039870| 2045208| 2045452| 2048897| 2049881| 2051553| 2054227| 2057741| 2059672| 2059884| 2060312| 2060726| 2065379| 2066070| 2067957| 2067960| 2072503| 2072505| 2072590| 2072936| 2079793| 2082188| 2082949| 2083786| 2094021| 2107713| 2108445| 2109625| 2109913| 2109914| 2109915| 2126319| 2126346| 2135430| 2169400| 2170729| 2171623| 2172536| 2174846| 2183911| 2184053| 2201350| 2201999| 2202000| 2202148| 2202249| 2202825| 2202826| 2202827| 2202828| 2211140| 2211210| 2213200| 2219696| 2220096| 2259340| 2268087| 2282475| 2282738| 2283195| 2290922| 2290923| 2303331| 2304600| 2305508| 2306583| 2315862| 2320867| 2321403| 2338327| 2382165| 2419771| 2420509| 2483798| 2483799| 347| 435| 436| 654| 879| 899| 2746| 28232| 29447| 29542| 47885| 76759| 93222| 96773| 106634| 120962| 152682| 158080| 225194| 245188| 330214| 342113| 347534| 377615| 483547| 758796| 1149133| 1267766| 1294143| 1300914| 1306787| 1335757| 1442136| 1458426| 1529068| 1538553| 1673076| 1715989| 1758178| 1860122| 1874061| 1897729| 2319844| 1405| 1769| 83262| 164757| 1564114| 1578165| 1737359| 1920667| 2051552| 2059875| 2083284| 204773| 375286| 1704307| 1908| 1911| 1935| 37928| 479978| 639313| 29442| 1938606| 2054919| 2067572| 1274| 1748| 1971| 370764| 399497| 684552| 2023772| 2211357| 2419774| 31998| 252970| 63| 876| 42256| 187137| 309887| 332249| 357808| 358220| 443144| 447217| 502394| 1458425| 1484693| 1678678| 1716143| 1842533| 2116657| 120| 154| 271| 274| 277| 285| 297| 346| 500| 518| 573| 853| 897| 901| 959| 1108| 1112| 1276| 1299| 1725| 1744| 1750| 1892| 2033| 2247| 2358| 29284| 29288| 33059| 33888| 35701| 35746| 35760| 36805| 38305| 43263| 43669| 44742| 47850| 47880| 47883| 52022| 56957| 57705| 59930| 60552| 62320| 68173| 68192| 68909| 69373| 69525| 69823| 71999| 74033| 74426| 74829| 80868| 80869| 81412| 84112| 84292| 85085| 100225| 111015| 121292| 132132| 139021| 150123| 152260| 158787| 158822| 160808| 162426| 166501| 167964| 178339| 181663| 182210| 186192| 188770| 191493| 225326| 225991| 229731| 259354| 265606| 273384| 274537| 279828| 286802| 290399| 290400| 292800| 299262| 300019| 313985| 317577| 349751| 361575| 364197| 367477| 387343| 427923| 432329| 441500| 446660| 465541| 471827| 488731| 499555| 507626| 543877| 544580| 545619| 546160| 556288| 556499| 575200| 604330| 645517| 651143| 660522| 670052| 679318| 712122| 712270| 751944| 755307| 912630| 980427| 1034015| 1048396| 1121358| 1155739| 1173025| 1173032| 1182571| 1203471| 1223514| 1229909| 1230998| 1245526| 1277350| 1302308| 1307763| 1309411| 1331682| 1331910| 1333523| 1335613| 1340425| 1356852| 1357915| 1407499| 1410606| 1411621| 1437453| 1484116| 1484118| 1522758| 1543721| 1561023| 1580092| 1603555| 1610493| 1619308| 1650658| 1652545| 1658672| 1661694| 1678128| 1695218| 1704044| 1755504| 1763535| 1768108| 1779382| 1796606| 1805478| 1821621| 1837283| 1839801| 1841863| 1842532| 1846278| 1850093| 1851395| 1851505| 1856685| 1858609| 1871022| 1891926| 1898749| 1903186| 1903704| 1904944| 1905847| 1906742| 1930532| 1932360| 1938334| 1938604| 1961362| 1961713| 1964449| 1978566| 1982042| 1986146| 2014534| 2017484| 2017485| 2023229| 2026787| 2026885| 2051957| 2052657| 2057246| 2058657| 2071627| 2079227| 2079535| 2079536| 2080419| 2080742| 2081702| 2086585| 2094242| 2108470| 2161816| 2202254| 2220095| 2231055| 2478662| 2480923| 2483401| 1694| 1727| 2246| 2350| 47878| 54299| 61647| 81479| 133926| 406552| 413810| 482564| 629680| 702113| 728066| 745377| 1080068| 1795053| 1896196| 1972846| 2079792| 2109685| 2321394| 33010| 68179| 488729| 1126833| 1136497| 1494608| 1531429| 1737425| 1851167| 1960083| 2080740| 2217913| 2282656| 747| 1491| 35814| 56460| 179879| 180282| 426114| 1188319| 1288494| 1348774| 1436290| 1844971| 1985873| 2136172| 1525| 42838| 60893| 94254| 192812| 267128| 301375| 312306| 321327| 1385592| 2055893| 2109687| 2319843| 1853130| 19| 405| 521| 652| 1231| 35799| 62928| 216142| 370405| 418699| 986| 56450| 205844| 446683| 459526| 477680| 1176587| 1306519| 1446467| 1492737| 1492898| 2182384| 37636| 174633| 253239| 310783| 1111069| 1637853| 1916956| 2242| 38302| 511| 549| 562| 96345| 261292| 930806| 1173027| 1355330| 1763534| 2077182| 41276| 76947| 266951| 312277| 361183| 407020| 502682| 2005460| 2011159| 1126| 332411| 2198| 56956| 85874| 416273| 79329| 80866| 198618| 225992| 266812| 321662| 1207075| 1402135| 2183896| 2249356| 2259595| 1354| 29443| 33069| 36746| 487184| 1028989| 102116| 220697| 232721| 470934| 1178516| 1389011| 1678129| 1806885| 1807358| 1827469| 1968541| 2070369| 1703| 2079791| 75612| 1097| 328814| 920| 472181| 1076588| 1283291| 216816| 296| 471| 1404| 1478| 46677| 46679| 47879| 47884| 70775| 76760| 86265| 95300| 118613| 122355| 129817| 143813| 157783| 163011| 169669| 182337| 183795| 191390| 200450| 200451| 219572| 237609| 244566| 324057| 359110| 395598| 421767| 484770| 515393| 528191| 651740| 658629| 658630| 658644| 666686| 702115| 930166| 1148509| 1204524| 1421430| 1534110| 1536769| 1628086| 1659194| 1788301| 1855380| 1873777| 1881017| 1982882| 1982888| 1982889| 1982890| 1982894| 2020486| 2025658| 2049589| 2054914| 2083054| 2126069| 2201356| 2219057| 44574| 1747| 278153| 784| 1160| 1206| 1219| 1290| 1496| 1596| 1613| 2047| 28037| 28227| 33011| 33070| 38293| 43675| 70799| 83556| 97477| 99598| 109790| 111504| 118562| 133539| 161879| 234827| 241425| 272131| 336810| 401472| 515256| 556053| 702967| 1137095| 1188228| 1209493| 1235990| 1487956| 1685010| 1752063| 1967666| 1986952| 1987479| 2163011| 640510| 1097668| 2057025| 1476577| 1556290| 2033437| 984| 188932| 363852| 430522| 1727164| 2201271| 2482728| 1809410| 2056494| 1303| 59748| 100379| 202462| 229545| 1055487| 2479367| 28151| 50340| 53407| 76761| 106648| 1611770| 1721091| 1736226| 1827300| 2018067| 2054915| 2083055| 28448| 33995| 91915| 92942| 142864| 265959| 318683| 418223| 454171| 739141| 1118963| 1177712| 1261031| 1306274| 1479019| 1618022| 1940762| 1954171| 1954172| 2005456| 2005458| 2005464| 29438| 47877| 54291| 75588| 160799| 251701| 271420| 1259844| 1499686| 1500686| 1500687| 1649877| 1855331| 1898684| 1981174| 2045200| 2213057| 2479392| 470| 575| 48296| 82996| 106654| 1148157| 1785128| 1805933| 1833| 1305| 1313| 10641| 48664| 1902| 67258| 92644| 1169025| 1265601| 1495638| 1649184| 2052936| 1301032| 2020311| 2020313| 545| 548| 571| 34038| 61645| 61646| 67827| 69218| 208223| 693444| 1334193| 1536771| 1907578| 1914861| 2153385| 1206777| 1886807| 1520| 36745| 169679| 189426| 641107| 1536775| 1982885| 1637862| 52133| 2033032| 50052| 1561003| 1686310| 2294119| 2306165| 56448| 161154| 234831| 817| 1579| 1587| 1598| 1600| 1604| 1622| 33959| 47770| 83683| 267818| 303541| 397865| 1796646| 1096| 28082| 108486| 191292| 224012| 274539| 317936| 1007105| 1273687| 1973475| 1164| 1165| 1197| 28072| 32054| 109266| 264691| 289435| 332055| 332056| 373994| 374162| 446679| 476157| 564064| 938406| 1173026| 1182568| 1211326| 1337936| 1379870| 1385663| 1385664| 1550728| 1648404| 1834519| 1842535| 1869241| 1973486| 2005461| 2185142| 1010| 1584| 52242| 60481| 187452| 290053| 351091| 712710| 1074467| 1834196| 2109688| 421| 2208| 2209| 2210| 2214| 2215| 2223| 38027| 170861| 185300| 238834| 271065| 316277| 418008| 591197| 702114| 1168034| 1434099| 1434100| 1704499| 1902245| 1986204| 1406| 1536774| 488732| 1207504| 1385591| 1637869| 254| 558152| 1982891| 1982892| 2015076| 818| 821| 28116| 187327| 214856| 239935| 246787| 1160721| 1297617| 614| 1647471| 2482769| 726| 729| 1358| 29391| 257758| 1433513| 1393| 960| 645| 999| 65393| 191579| 497965| 2033033| 2175091| 57706| 1220717| 56459| 1985254| 2072413| 2072414| 330| 40215| 75293| 101564| 253237| 355249| 424182| 861208| 1274359| 1869170| 1881022| 1914541| 985| 996| 824| 38289| 38301| 186490| 1811193| 1977865| 1678728| 1784713| 40216| 1692238| 851| 1510| 29466| 169760| 230089| 585423| 1778540| 1944648| 1771959| 1806905| 246| 253| 28090| 40214| 1124835| 1758189| 1827305| 2004646| 2004650| 2040586| 2072405| 2303750| 1844006| 2029983| 10719| 225588| 1076550| 1727214| 46234| 1751286| 1679444| 651561| 1241978| 1933220| 2003121| 591154| 2026785| 55211| 576610| 877455| 2080757| 1308| 34062| 561879| 1338689| 2069256| 2083052| 2287| 187145| 1394889| 1898103| 2045011| 636| 46355| 271865| 359303| 1217908| 1282| 1302| 1304| 1318| 1774| 33034| 52773| 1520670| 1561223| 1619313| 1852377| 13769| 112234| 878220| 1241981| 1241982| 1324352| 1493872| 158836| 210| 56454| 90270| 456327| 1444770| 2005046| 2072406| 2072407| 2072412| 1092| 45663| 55148| 61435| 102134| 358766| 929813| 1833852| 2304594| 1138383| 1178482| 487| 553| 556| 907| 971| 1052| 1102| 1646| 1685| 1689| 2296| 28223| 28262| 55206| 57320| 58138| 58180| 61651| 63612| 84110| 92945| 92947| 108007| 109232| 115561| 191610| 195250| 204039| 204042| 252514| 269261| 281093| 285091| 291990| 323450| 337090| 436114| 442694| 473531| 475088| 552810| 665914| 864702| 875171| 882104| 1124597| 1175445| 1214604| 1415568| 1457365| 1484158| 1647413| 1671721| 1922225| 1931241| 2005462| 2161747| 2316383| 495| 2743| 29510| 29571| 69223| 83406| 88058| 428712| 437505| 447471| 471189| 655307| 1397108| 2364272| 489| 648| 880| 1100| 1565| 1680| 2201| 2293| 33952| 39768| 44012| 49338| 54308| 57487| 60478| 62322| 62977| 63363| 67825| 79604| 126385| 129958| 136073| 155077| 155978| 157779| 158327| 172049| 178899| 189425| 204038| 208216| 215591| 255247| 272774| 314275| 316278| 321332| 379064| 393662| 395922| 408139| 413501| 463024| 472569| 472834| 481743| 511062| 573600| 598467| 712528| 743722| 914150| 1131703| 1239307| 1404244| 1434072| 1462996| 1508419| 1548018| 1565991| 1853278| 1866325| 1889813| 1920116| 1933880| 2070539| 2103230| 2371| 2048283| 1335746| 252307| 1406512| 414771| 539| 582| 905| 1398| 131110| 215743| 626937| 632773| 1263979| 1642647| 1727196| 1921086| 1987723| 2291597| 65555| 79601| 81462| 93973| 159743| 171695| 184117| 263906| 388950| 389348| 498846| 622488| 1197717| 1379909| 2364787| 1501| 868131| 1681| 33871| 37929| 43771| 89154| 156978| 1072256| 1679096| 1408| 106| 554| 703| 2434| 29483| 43948| 55197| 82987| 292414| 359408| 363952| 379347| 441209| 529884| 535712| 543913| 556054| 576611| 708131| 721785| 742013| 948519| 1236179| 1278212| 1389004| 1546149| 1581557| 1581680| 1743168| 1835254| 1848255| 1848754| 1848755| 1848756| 1855377| 1884634| 1884904| 1884905| 1884907| 1884913| 1884914| 1884915| 1884916| 1913578| 1922222| 1945512| 1987356| 2079575| 2171755| 2172098| 2183547| 2201181| 2268024| 2282170| 2341117| 1773| 1094| 44251| 52227| 150829| 936456| 446| 83552| 96230| 47917| 1076596| 1175444| 118062| 1134405| 1630135| 9| 180| 672| 863| 927| 1563| 1564| 1736| 2352| 28258| 31909| 33002| 38313| 40754| 51515| 84405| 84980| 86170| 100716| 273376| 339862| 365617| 673862| 712411| 797277| 863643| 889453| 911092| 930805| 1094342| 1249552| 1257021| 1307761| 1307839| 1420916| 1420917| 1522671| 1621989| 1749259| 1761794| 1769779| 1874317| 1882918| 1906738| 1917421| 1940790| 1941349| 2144175| 671223| 256| 546| 651| 823| 1511| 28026| 28118| 28197| 28198| 28200| 29471| 39488| 39491| 44577| 47678| 70863| 104268| 153948| 196024| 237258| 301301| 357276| 376805| 649756| 913109| 1581011| 1636607| 1636609| 1796613| 1879049| 1905730| 1925548| 1930557| 2004644| 2025876| 2027857| 2042057| 2052837| 2079596| 2109691| 1850526| 449| 451| 452| 463| 777| 1238| 1515| 29388| 29423| 45067| 288004| 1867846| 2054173| 302406| 310575| 28112| 34090| 83561| 191026| 260552| 280473| 456827| 754059| 879567| 1042156| 1379910| 1471761| 1642646| 1717717| 1868325| 995| 1006| 42443| 53946| 118323| 151895| 253245| 1173263| 1400053| 1622118| 1752064| 2293862| 569| 630| 2751| 82983| 294699| 546367| 1583341| 43663| 512763| 111781| 374981| 1827144| 1920191| 718217| 1763363| 631| 29484| 29485| 29486| 263819| 762954| 1312072| 1774273| 1855336| 2057808| 2162713| 794846| 1428| 1476| 1723645| 417| 504| 90245| 96942| 145458| 256701| 556325| 643674| 1117645| 1159327| 1249553| 1662285| 1819728| 1853276| 72| 480| 584| 585| 587| 666| 668| 847| 916| 979| 1014| 1717| 1718| 1721| 2702| 28188| 29430| 29575| 34085| 43674| 59600| 65058| 76594| 101385| 131112| 188908| 232259| 313598| 316068| 320324| 388413| 398743| 400668| 584609| 669041| 754409| 754417| 754423| 983544| 996801| 1085624| 1150389| 1191459| 1196083| 1249933| 1336794| 1336802| 1336804| 1407071| 1427364| 1472345| 1486034| 1538644| 1618207| 1652495| 1697053| 1701405| 1714849| 1727163| 1736674| 1784714| 1790137| 1803846| 1836467| 1850246| 1850252| 1871037| 1912795| 1936081| 1945892| 2058135| 2058137| 2069432| 1397| 76853| 264697| 279826| 352858| 859143| 1581038| 1705566| 1890302| 2052660| 399742| 1027273| 64104| 633| 786| 787| 788| 33989| 35789| 42862| 367190| 369822| 444612| 935293| 944547| 1639108| 2029986| 2448483| 57029| 107401| 111501| 143223| 313588| 328515| 411153| 421525| 536441| 616991| 639310| 754397| 1241979| 1250295| 1336795| 1336796| 1389005| 1580596| 1714848| 1714860| 1729720| 1798225| 1848904| 1936080| 2058134| 2126553| 1766| 542| 887061| 1648923| 29410| 32051| 32052| 64471| 84588| 110662| 166314| 316279| 531844| 585425| 754429| 1002672| 1280380| 1301280| 1383885| 1388755| 28189| 198252| 313603| 331648| 859653| 930802| 1178778| 1250205| 1250231| 1453352| 1529069| 1756150| 1761453| 1913577| 1977864| 152268| 104| 238| 1008| 1019| 1255| 28251| 63186| 209053| 320787| 327575| 400092| 480520| 511435| 516051| 983548| 1239415| 1250153| 1265445| 1316596| 1476901| 1486245| 1644130| 1795355| 2014742| 2039166| 2094025| 2203| 83986| 148813| 1054217| 1291540| 1495144| 1577791| 312883| 1184| 43989| 238854| 268746| 444860| 536474| 669359| 753085| 754042| 756276| 756278| 889953| 909297| 1273711| 1493511| 1615909| 1617448| 1815521| 1815522| 1871025| 1883369| 132920| 332410| 172713| 349106| 1221500| 915| 266009| 839| 1363| 1502| 28108| 28131| 28199| 39766| 86304| 94122| 97084| 151276| 187493| 197482| 202747| 220622| 314281| 453816| 505249| 603050| 663364| 708186| 716816| 1032072| 1082704| 1176482| 1540872| 1850254| 1896175| 2066483| 2109558| 2172099| 1586713| 84163| 102684| 108981| 487316| 756892| 1608473| 1636603| 1636606| 1636608| 1646498| 1758179| 1871111| 1879050| 1920107| 2004647| 552| 79967| 215689| 338565| 1421| 98228| 674| 1904441| 1809| 261524| 1045808| 1168287| 1570939| 351679| 1295642| 833| 1561| 2303| 29343| 35786| 76887| 200415| 252966| 288965| 365349| 412593| 693075| 1161942| 1184387| 1550240| 1763538| 1870820| 1871021| 2055160| 2086584| 2161821| 1244| 1280| 1292| 28035| 35841| 43770| 45972| 2086577| 850| 1366| 2283318| 2426| 138072| 390884| 1470434| 136241| 395961| 28449| 2724| 340435| 1357715| 490| 727| 1147| 65093| 82654| 195253| 292566| 167| 197| 831| 1264| 1311| 1322| 1326| 1351| 1352| 1493| 1497| 1505| 1509| 1521| 1534| 1623| 1639| 1684| 1731| 2051| 28446| 29322| 29360| 29370| 39483| 39485| 43305| 45634| 51197| 53442| 66219| 84030| 84032| 119858| 122420| 185008| 208479| 324767| 483937| 617123| 712991| 755731| 1424294| 1536772| 1536773| 1572656| 1619311| 1677857| 1679721| 1712675| 1796620| 1805714| 1834198| 1852373| 1870819| 1884263| 1912897| 1981510| 2014541| 2082193| 2109690| 2109692| 2184575| 1307| 1328| 1349| 44008| 53345| 53346| 150055| 208962| 417368| 2420313| 1402861| 694009| 1536770| 994601| 334542| 1807790| 213| 826| 837| 849| 856| 859| 860| 861| 1245| 1260| 1382| 1465| 1488| 1492| 1494| 1504| 1513| 1517| 1519| 1542| 1556| 1571| 1580| 1624| 28113| 28119| 28123| 28129| 28132| 29341| 29382| 33033| 33936| 33964| 34105| 37372| 46867| 76123| 79880| 84022| 123841| 135569| 143361| 158847| 167642| 182773| 197614| 208596| 217159| 386490| 393921| 394958| 502558| 589436| 589437| 652716| 712357| 1177574| 1216932| 1433126| 1562970| 1583098| 1702221| 1834205| 2173034| 680| 1464| 1597| 1661| 1683| 36854| 55583| 81028| 87541| 189381| 208226| 332101| 713030| 1616788| 1664069| 1675036| 1871034| 2014076| 2183582| 420950| 884684| 1434102| 1434103| 78327| 1324350| 1808001| 1586714| 265949| 1401| 1452| 1916| 42239| 59843| 1423| 1705| 1863| 56947| 196| 283734| 396359| 1980943| 251749| 1586712| 2202142| 10449| 189385| 37734| 1314| 28025| 104623| 665099| 395962| 13373| 258224| 2072408| 944| 55601| 1586715| 279303| 81468| 1441095| 754476| 1743172| 33934| 160453| 2060307| 261164| 756275| 39669| 1415630| 746691| 885581| 1338368| 864596| 79883| 79885| 129985| 199441| 1886| 33932| 86665| 1547283| 72361| 86664| 1642299| 1984801| 648999| 1309| 1345| 1348| 1601| 28898| 59310| 82348| 97478| 315405| 1785996| 76124| 180230| 1637831| 2077147| 1814284| 86106| 1522| 86332| 409322| 1834207| 1917441| 77038| 65553| 1334| 1336| 1686| 630129| 162209| 2051906| 206662| 28264| 1408191| 244366| 1549855| 345585| 133448| 1639133| 2077149| 330922| 334543| 1028416| 1699621| 1548| 2068654| 33905| 1364| 2269374| 1471| 461876| 1796616| 158| 936476| 1697| 160386| 1862358| 208224| 28107| 571800| 1699623| 1720344| 246167| 141| 454601| 891974| 564| 622| 29494| 698828| 741091| 1310| 1338| 1346| 76860| 400065| 1041504| 1814128| 1825069| 2173853| 35703| 1134687| 1166130| 1463165| 1758196| 1915310| 2026240| 2027919| 217| 670| 870| 2107| 59893| 225848| 362837| 497725| 1653831| 1278479| 195| 212663| 1508228| 146786| 1603| 526944| 1903686| 580165| 37482| 2202141| 1828| 1653479| 45610| 321846| 1699622| 1699624| 1719| 35755| 911045| 2079234| 2170745| 139871| 268747| 382359| 444859| 444861| 444862| 445683| 445684| 445685| 445686| 445688| 445696| 445700| 536444| 536453| 536466| 555387| 687800| 687803| 754037| 754039| 929832| 1026955| 1079998| 1079999| 1137745| 1340810| 1340812| 1493508| 1493509| 1493510| 1493512| 1493513| 1542477| 1589733| 1883365| 1883366| 1883368| 1725232| 1912856| 419257| 263437| 192421| 200991| 360911| 1038856| 2058136| 47835| 1696072| 1916917| 1599| 40542| 78258| 2005703| 2048654| 10702| 471223| 1281| 1283| 1286| 1295| 1296| 1390| 1413| 1590| 1648| 2331| 33970| 38986| 39950| 42422| 45497| 70255| 142877| 143393| 163877| 182710| 243899| 300825| 308354| 414778| 643214| 656519| 712633| 1566358| 1849491| 1870984| 1888195| 1967665| 2021971| 2044912| 2169540| 2213194| 1017| 313590| 326320| 1583100| 1945657| 2173169| 588| 1377| 43661| 66269| 69220| 69966| 241244| 413497| 419475| 592316| 1224749| 1399115| 1750719| 1812935| 1849031| 50719| 152794| 92245| 694005| 2218628| 2148| 61635| 1541959| 1911683| 1636610| 33074| 387092| 713887| 1528098| 676| 84590| 326523| 477976| 79209| 376219| 1814958| 1218177| 2011012| 39765| 199| 114527| 146827| 169292| 1902136| 54736| 1327989| 1934254| 172045| 2072024| 194424| 51665| 56812| 147709| 224719| 708126| 1461582| 1564681| 244787| 2080469| 1528099| 150120| 1756993| 1560339| 1868135| 1977566| 571256| 1589| 161360| 28110| 1563222| 450| 28087| 66969| 1532905| 951| 29553| 114186| 2748| 45243| 1295392| 2036206| 2072025| 2081703| 715| 1582| 1625| 2173| 28229| 35623| 40576| 59610| 75985| 93378| 93466| 129338| 187101| 240427| 336261| 403957| 430914| 985762| 1178515| 1329899| 1472767| 1500254| 1501268| 1855823| 1898474| 2017483| 2099789| 2304606| 233055| 359370| 589873| 1109412| 1158459| 391613| 1458307| 1579316| 1920883| 299767| 2077136| 2077137| 288| 628| 714| 730| 732| 738| 2360| 28091| 58049| 69539| 80854| 113267| 119864| 141451| 147268| 178399| 190893| 192073| 249188| 261964| 298657| 326544| 357794| 386487| 410330| 754477| 1118153| 1144748| 1196095| 1416627| 1445505| 1561924| 1620392| 1705394| 1737490| 1763536| 1816218| 1816219| 2100422| 2161872| 2203895| 61652| 103816| 201| 1467| 1642| 52584| 84023| 216931| 1499973| 1702238| 1911684| 844| 227| 263| 476| 673| 687| 718| 728| 731| 750| 754| 1229| 40269| 43657| 43658| 43662| 45658| 47735| 52443| 53336| 60961| 67854| 70864| 74109| 76258| 80852| 85404| 135577| 161398| 166935| 189834| 247523| 271097| 271098| 291112| 300231| 314282| 333962| 386891| 394751| 404011| 512649| 621376| 673372| 680279| 715451| 983545| 1096243| 1267021| 1298881| 1336806| 1348114| 1432056| 1435069| 1630141| 1679001| 1714845| 1789224| 1878942| 1903694| 1927128| 2007306| 2027290| 2030797| 2172103| 2267264| 2303538| 2133| 35795| 367806| 1967783| 2133959| 2478912| 1449| 54913| 157673| 2213202| 29250| 32049| 195498| 374982| 1306993| 47834| 438| 486| 689| 41431| 876364| 281120| 195248| 143| 954| 91604| 1513188| 103690| 66821| 485| 926067| 33990| 1848580| 337479| 549298| 1539298| 28141| 33943| 54261| 481146| 588898| 638619| 1499308| 1673428| 1929246| 803| 29329| 1974213| 767892| 2066051| 199592| 32025| 1029988| 568766| 44674| 51229| 66084| 366522| 1410383| 1511761| 161899| 1262535| 908819| 187304| 1437364| 176652| 1246| 431306| 1018| 1252| 37692| 134287| 511746| 28452| 1508404| 172| 2153484| 2184083| 2420300| 516075| 566270| 322019| 225999| 634113| 2162| 101192| 206| 779| 1638| 1643| 29518| 53444| 309805| 994695| 1505596| 1749074| 156976| 1985736| 1089444| 55208| 2083053| 169402| 1096868| 1674922| 1346287| 134821| 375929| 519| 1273132| 1147042| 91844| 423605| 1408281| 83655| 1921087| 173| 83558| 216935| 216933| 1917232| 334852| 744985| 2269| 160233| 267363| 1486991| 28028| 145262| 413888| 1178537| 2110| 1526571| 2180| 94694| 342949| 1049581| 1163710| 1550241| 2008440| 2423| 53953| 69499| 72803| 136094| 492670| 1183377| 1631871| 35757| 353800| 402384| 712538| 1882832| 2315| 54120| 1891675| 330734| 1173288| 59505| sample_id| +------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+------------------+------------------+------------------+-------------------+------------------+------------------+------------------+------------------+-------------------+------------------+--------------------+------------------+------------------+--------------------+-------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+------------------+------------------+------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+-------------------+------------------+-------------------+------------------+--------------------+-------------------+------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+------------------+-------------------+-------------------+--------------------+--------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+------------------+-------------------+--------------------+------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+------------------+-------------------+------------------+------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+--------------------+-------------------+------------------+------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+------------------+--------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+-------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+-----------------+--------------------+------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-----------------+-------------------+-------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-----------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+----------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+ |1.2772827870386534|-0.5956225284261785| -0.408444480890247|-0.34667960168375483|-0.41974805665462445| -0.2892086582449898|-0.2945463101091046|-0.4117848721252549| 0.1418962258357783|-0.05975116453296...|-0.15223503987147396|-0.30315312137546885| 0.3514141019957471| 0.07846480649544646|0.38557765643620656|1.0556282047513013|1.6997842994163495| 0.4702659171997851|0.9400012438675208| 0.2861116794898031| 0.624961699982689| -0.0446278063973883|-0.00331551324999...| 0.07746830211734221|0.021464230490593292|0.7025402475144398| 0.41798709135614964| 0.2587170268115755|-0.08416283137690497| 0.11089838367436489| 0.3476698291491222| 0.05536128674082023| 0.21612793583719708| 0.0623625927553836|0.21671898103081463|0.24558050799629055| 1.149406134483018|1.4938620990289022|1.4562497140608566|1.4381984446927607| 0.5753755720687866|0.8826117689409015|0.3789861120457016| 1.784926038296821|1.2394970332519022|0.48024000828115937|1.0948529974543104| 0.4162876711372284|0.9895370195090928|1.0408918503414173| 0.7593788120050711|0.36383099171267996|1.8304800560834025|-0.2105079765940367| 0.01589027127879623| 1.173842593748565|-0.0684201227107541|-0.05080534043281355|-0.03088116667811...|1.7359448060657099|1.7577040730840394|1.0717336733109584|-0.21894680055683197|0.39246044237935723| 0.32408544461441835|-0.1795703810053471|-0.00149478419021...|-0.01828584131314...|1.1381531037142323|-0.20077536458701725|1.3558352671914506|1.2045161417928454|1.6708667801915336|1.5622004418314541|-0.5191817346605689|-0.02806478704277...|-0.5471550651455677|-0.5980336695752452|-0.7117409559563922|-0.6776126588879845|0.001733844587910...|-0.02197114485620...|0.026634035773825084|-0.3459276756504294|-0.3632157632060305|-0.06363792796247218|-0.19075517345198864|-0.31867889971587243|-0.32364324068659117|-0.30086198027785316|-0.38772534990518465|-0.3340910780162856|-0.14842911372453813|-0.5887842603219664|-0.36005845479163734| -0.3474840491646112|-0.6859996703724328| -0.1791556342362062|-0.35634522459245027|-0.5639685632701268|-0.6110937040219819|-0.5347470088732353|-0.4362961736165819|-0.16375170838490277| -0.4016537467648816|-0.13533972269780412|-0.26006587433298967| -0.2124075321670272|-0.06523758388176273|-0.2592566619645665|-0.10660904199306648|-0.2733276063654745|-0.2135609540481582| -0.285865420746827|-0.26420583599285175|-0.37311352672444953|-0.44530438027480085|-0.11964745204185391|-0.13322456564516788|0.035546084695160365| 0.21987383525721949|-0.02975943407468...| 0.33403173414459214| 0.3563735779738644|-0.5710041132438467|-0.6452181507846534| -0.566469839306126|-0.38964932956149256|-0.5385785192053856| -0.5549738705562397|-0.10155262114032568| -0.730146466674826|-0.06978324507329473|-0.6351152837645321|-0.00573126181909...|-0.07426950174801418|-0.4044273977857915| 1.264244034640565| 0.11621809660602901| 0.12656377893206114|-0.7253647235640422|0.3611013102501059| 0.09018319562105219| -0.1660957813981682|0.05007529571939923| -0.507717534798688|1.5913793693152696|-0.21238616243588254|-0.07501202997971092|-0.42706441936654665| 0.3332682636779686| -0.016354278601129|-0.08729098787280598|-0.20346137444912776| 0.300053686552474| -0.3627386208758422|-0.38754078476435305|1.0785158907347847|0.36451269842123224| 0.4500511367218816|1.0541680098101285|-0.39532700034062207|-0.4635154353277628| -0.1389962796872992|0.6040309308562779| -0.117382086983458|-0.2818914409396852| -0.6082619986604599| -0.2709421167404928|0.45472900798270327|-0.24899399956702412| -0.3863559267793576|-0.25983787014438064|-0.23643340361581505|-0.1451716211410306| -0.3116176239826084| -0.555941409634801|-0.10492709323433178| -0.5400144343338683|-0.03591047083080871|0.28123069989984545|-0.0342508391852914|1.4616567513937313|-0.24470010942220785| 0.0264826139963834|-0.5702204293979698|-0.5230801042624168| -0.575223639080666|0.48456907276325006|-0.00871231712088...|-0.6321720974728667|-0.09903024999167472|0.6173256773612564| -0.3053427056037752|-0.24857463510772845|-0.4463075150873913| 1.884932757932338|-0.2914966200406575| 0.1586679182414204| -0.176695773841217|-0.24976192890872567|-0.4753828233010895|-0.5115171648556422|-0.3454614015862818|-0.3819247947679333|-0.13811701877035518| -0.4060370614093712|-0.6368207806654688|0.7586084431168075|0.16319458668980144| 0.16243288140519468|-0.02298109347698...|-0.3077169545169322| -0.7339390240190273| -0.4204108852995882| 0.09681341316603985|1.4840329152219351|0.015072645826090096|0.8484700210325582|0.07091366179380479|-0.48850532213838865|0.04678977130799573| -0.2945979285602736|-0.05033130109804...| 0.3391281754595454| 0.12881778733334423|-0.7192096723887659|-0.47976385277034034| 5.609544336578881| -0.2208400427261505| 0.09538686431675744| -0.5098175122419648|-0.16604241462820762| -0.358488185919977|-0.16440082973320344|-0.37776378485938394|-0.2579913259705964|-0.22075602087766008|-0.3250705196023803|-0.14644745396677789|-0.42925321425863927|-0.25208880773052905|0.46502625361086697| 0.18093471709032494| 0.18088508324997632| 0.2607420929426484| 0.6088055368469345|-0.6191274953074629|-0.02610705783260...| 1.7644234012188358| 0.7575550836513938|-0.5039606789301999|-0.14442162194591554|-0.3342048507363548| 0.558220670872734| 0.09845527140191174| 0.18335465980368523|-0.06821108388454736|-0.5104779096167267| 0.21393343220035915|-0.4002039468116698| 0.01855656438769826| 0.4781976674466582| 0.13936287734534317|-0.15883826855573951| 0.7478511791809721|-0.30284199540531465|-0.32741358730422343|1.1047259934708633|-0.04085820215427864| -0.2710998678857028|-0.5440978592055086| -0.3299490305040443|0.12578594264423978| 0.4998581691939703| 0.04843421953474594| 0.33948551386318526|-0.22402428920270653| 0.15337556407287667| 0.7365996721585657| 0.43355191738471865| 0.47750906171323576|-0.6628065017977451| 0.170918268423593|0.33824923418240477| 0.6564445983867895|0.06453533105473223| 0.6900895492035471|-0.4011489104337486| 0.5316370251020371| -0.0715105012923941|-0.43619331478653856|-0.13377587448297298|-0.41664936048115614|-0.2021703814570785|0.26739253254936707|1.2066367030148042| 0.7263232296120865|0.9056064796787833|-0.6584769675569487|1.8075805674303382|-0.30361871356506964| -0.553776972949265|1.9315749032210632|1.2136619808345177| 1.956635063300167|-0.20695059355229337|-0.02533720857238...| 0.03677465420138278|-0.04061546099903...| 0.1564859907974972|0.7241281549813402|0.05994335448853167|-0.00861513726355...|-0.3773083584019847|-0.5825422536789034|-0.1336734087052334|-0.35056700482445013|-0.04596361314077...| 0.04592909359898501|1.2558273156650497|-0.2806085542158716| -0.3083052636802488| -0.4464769862723828| -0.337144825839758|-0.5726194448182844|-0.19497380137672002|-0.29800554818464975|0.5624449011358565| 0.7191702462039238| 0.48077258721537575|0.41944996216253055|2.5105358651803003| 0.18601417972882264| 0.38418036184719473|0.026846528501863743| 0.6343264693630777| 0.04092606335244513| 0.4609104559449698|0.03395592466965386| -0.4119916233920159|-0.17079905639444962| 0.080421135881655|1.8534393224468961|-0.10724853473918196|-0.5284250009209263|-0.48132522716299403|-0.20913529365294373| 0.7019575630056544| 0.9198477316852166|1.4341139334867274|0.8302698078283819|-0.5432447376818288| -0.4489938809298026|-0.5110695539075186|-0.4055866757381042|-0.01362683498026...|-0.5678357161669134| 0.07346566672813022|0.8803653599335051| -0.0404249782347998|-0.7135089125177962| -0.3335540129578023| -0.3648432453679269|1.5395686762958483|-0.6654112070268486|-0.6163312189277648| -0.2531270661784703|-0.07847542918327287|1.2987340271114294| -0.506059200571318|-0.4024434003957288|0.04742056828164865| 0.15757265640000043| -0.2713839577202148|-0.04606421866962...| 0.2096114943869769| 0.5177262112179553|-0.6111766104737566| 0.11947954835864062|0.003375513195865682| 0.815195924070559| 0.3738238895349342|-0.4090754642039885| 0.1787875472266045|-0.4045659191905327|-0.01185702707814...|0.9941328016375642| 0.34095307244988876|1.4425816428627685|1.0442061398803357|-0.06174820403384755| 0.2845236934046142|-0.5662931187991761| 0.0452615777724114| 0.5406382936843065|1.0390963394693506| 1.527075185932818| 0.3709662228638169|0.6715248468362417|1.5212745500855138| 1.013217998742387|0.13511267496785176|-0.32010050542216517|-0.18428039423359752|-0.12529977750485483|-0.40589324827043044|-0.5297036219963467|1.8136832264714506|-0.5292435126690471|0.40956525967134605| 1.257355030287179| -0.278168141227794|-0.23777755405069367|-0.15436062891206964|-0.4687134427244743|-0.5189551839817172| 0.134300925498854|-0.5497866700343065| 0.08980270803907854|0.31099665821253397| 0.7771059414486484|-0.19923165901966522|1.2727773748006683|1.4877564012701079| 0.2862279605515984|-0.02151864053025038|0.6440255316765707| 1.7906076556233739|1.2230714448465776|-0.5715142273398294|0.003469032706066655| -0.5495423141205823| 0.29528048397147466| -0.30470336700368|-0.22476918338251964|2.0346201429325865|0.11218931411354367|-0.18413172710463585|-0.21228772696112658|-0.22275638175091814|-0.20162183832597674|-0.5706995483876697|-0.5462294377804104| -0.2578636161156791| -0.2003559364505827|1.1683098176589009|0.003902630946327448|-0.02523287286397...|-0.3268166225609854|-0.5301973887910881|0.8441156393283764| 0.5360644977372965| -0.3214956788169434| 0.07817688507029491|-0.4683355932454162| 0.3598872345736736|-0.05312827190917...|0.5847451053955538| -0.803253395231808|-0.38800519382326754|-0.36288127022022376|-0.15170289696519107|-0.6354518589508963| 2.587524379967445|-0.44042172768436544| -0.2541471635557399| 0.08704891864415881|-0.4202476392350291|-0.04734157557923585|0.7987108037114995|0.06050149088939523|-0.43266424268530473| -0.3849145747138771|-0.6524117844436444|-0.3146808702321639|1.0936653784645503|-0.45802351703410904|0.8005627685146928|0.16928967641059245|-0.6228568293101165| 0.39657965145401786|-0.6649500864776181| -0.1408839917249119|-0.6460746608333912|-0.2264086472607596|0.46337195919531476| 0.47858959888803937| 0.6625295712878404|-0.00374486550501...| 0.6915900803528032|0.33547539190228043|1.7773542682666017|-0.07655254887461141|-0.4036915992013987|-0.20805316685079656| 0.3963645993005237|0.001305654712465...|0.025307319966921347|1.4364666111354631|-0.39938006750253807|1.6053993436727882| 0.3296712187471266|-0.47251625119369867|-0.5887791916236019|-0.6770125944684944|-0.09609138776174664| -0.3070841268255418|-0.36666440512332615|-0.5694759280974778| 0.08418536520713936| 0.3126583346661421|0.17656485747144485| 0.0565609191525188|-0.6562501425793991| 0.2647559148637813|0.18099603651974508|-0.4086708928655497|-0.17431687382932487| 0.3545069809519366| 0.7718509976945676|-0.6602773502606945| -0.2548896270251018|-0.6287057159312391| -0.2290335630569299| 0.5921561748483762|0.6707672623699742|-0.24739925930939718| 0.8763187377292488|0.40705393352645897| -0.6064396565622491|0.7494862975482701| 1.1773434119159334|-0.05346611040759...|0.5652129749291257|-0.5179185334535341|1.5176600188563518| 1.627708787235416|-0.26642232365978086|0.026235340952807943|1.4031748219818667|-0.5923070404159771| -0.2655572047472367| 1.080954035420079|1.0365343151935253|1.1882846617070815| 0.08046403111671871| 0.35016073617683924|-0.07963493023049713|-0.10406307813259931|-0.13043102036546353| 0.24882968850911336|-0.2374197462657402| 1.468318776366689|-0.42352956845543377|-0.6662931020996071|-0.36389109171883494|-0.6159233618534734| -0.3443457068084529| -0.2824038682737914| 0.3431925726264237|-0.17068307284417006|1.0987055283621796|1.9525306541275822|-0.3283239483039502|1.7612051510935427| 0.0967854780616642|0.22232049218339525|-0.47976688941165635|-0.15756646312922118|-0.48353687508148696|0.42436393479623397|0.7215985536515045|-0.46582944155564027|-0.5464563448027903|-0.05993469750686727|-0.12893769487800485|0.06658092166365233| 0.12491199637617297|-0.4503307780022186| -0.3789229455283608|-0.07001359542223352| 0.29162848851293344|-0.4607773346660046|-0.4108416153189226|-0.27713645439573015| 0.17644438811881225|-0.16234170828551484|1.2199842187124066|-0.29554397147863487|-0.47404112255306513|-0.12918609825269373| 0.01485180129338261|0.47043562090116514|-0.09536333143758964|0.7080218715490058|1.5364757277838808|1.8447892534233785| 0.26139745001062287| 0.07981113803418982|1.0526681054354452|-0.04122529440873...| 0.8541399218804512| -0.3607760845693866| 0.3796317295531326|0.46575695813874923| 0.1848781575031318|1.9795522897487172|-0.38038047263074115| -0.2996778452722479|1.9352895837955089| 0.6022134221197802|-0.15918585034393062| -0.1972174168642364|-0.01358295748909...|-0.00488302742825...|-0.6617025799856947|0.9797646858520438| 0.17007588138802818|1.0030664185306437|-0.3831716667110035|1.6074524171239943|-0.12403896411122434| 0.2916754773521254|-0.33759304597377476| 0.7650715360372613| 0.18168031669332196| 0.05449366442916527| -0.1131863736905332|-0.3116977463548139|-0.09486491053530853|1.5152668611179518|1.5075378124429477| 0.3563358070765487|-0.01954376335630746| 0.06930886588669258| 0.3087416888127723| 0.9770373178221129| 0.3898130082556521| 0.8185455905585867| 1.575313822274299|-0.29390685092752206| -0.782954218330988| 1.493238835642028|0.1390008902207815|-0.4111005248734623|1.1714169997188708|1.5704054480525365| 0.5273406538056409| 1.061187211816001| 0.03946522540462599|0.42612662864420453|-0.04964098989066856|-0.36589028393139955|-0.2743124785361511|0.34439985282703806|-0.20530318005764406|-0.14566789903242042| 0.9007808492829253|-0.7418217658652903| 0.03480110309668177| -0.1404240516837304| 0.16188397745414965|1.3929591145135232| 0.1610553157408624|-0.5016785570440319|-0.15607065640633958|0.13021595700301225|-0.16077511326107674| 0.7609606443740268|-0.6413263028924439|-0.00431637472449...|0.19272775241179932|-0.1501018739705228| 0.4984708436193681|-0.4517485466323322|-0.05949340294341552| 1.261437874497826|-0.11236492918635196|-0.11619579109446171|-0.25031006937492345|-0.1369552806966903| 0.3717717719631102|1.1034908769789833|-0.4638556122471583|0.30348229208573707|-0.01944617192852539|-0.4973514336319994|-0.47218590074995037|-0.40262135743095995|-0.5585503170148736| 0.99016076288916|0.7459676277773643|-0.38176300481760844|-0.07313085514606586| 0.07825010564245664|-0.2793089935980094| -0.514286933643254|-0.5181907268362943| 0.754396972620633| 0.8448708362317949|0.030374181468606053|-0.11367927857518066|-0.5997378066831435|-0.27070545008278263|-0.38291402710086075|0.00567815931109264| -0.603398279104172| 0.7814360646134048| 0.7358017977892876| -0.2598171779124101|0.9213707087749439| 0.2577515870484509|-0.5803693877032772|-0.11373445910229131| 2.399411908645602| 0.8316480211225418| -0.3777700937394333| 0.6347638661631011|-0.07757000359093931|-0.10977667038208376| 1.151567939170849| 0.5949222473660435|0.07781868622427576|-0.5131489877945038| -0.4906679034561136|-0.16020873726296997| 1.6913537110589432|-0.11336609985539776|1.1094973942292132| -0.678965027387267| -0.3923553561666564|1.4307144939856522|-0.30092818042382447|-0.4316656000130121|-0.40870823362506936| 0.18274279848494215| -0.2754489655002647|-0.05198286391817628|0.35220424134015343|-0.30484556969918714| 0.05057731147741686|-0.37773707938896534|1.1772577214389257| 0.2875304760242371| -0.3272277225761417| 0.513027980429027|-0.12353711950760259| -0.4017998954278176|-0.07892142005579325| -0.3708701715152006|-0.28456261786934983| 0.19702012696593285| 0.06485467128914263| -0.1456869728608044|-0.13177596868665387| 0.2723493634343947|0.10407389054377748|-0.42546790317642336|1.0065930892553716|0.7627119923581956|0.20822939988276176|-0.32478833539224905|0.23923442035282874|1.3913954503337658|0.5952843419036027|1.4120033278439272| 0.26454156188488187|-0.29473265964745105|0.06637292920697654|-0.21843664410731203|-0.05237701290180441|0.039041121492778094| -0.317401034681036|-0.5392974112706468|-0.15978868458937545|-0.19420931041012301|-0.05965348690216...|-0.7091040349890915|-0.28600394287127223|-0.06106868611227...| 0.26696182609690716| 0.33647075152150585| 0.49398842816926963|0.9870721771537877| 0.2282482966617864|-0.22678674978972996|0.009548537004342323|-0.28623147219050316| -0.4403392019605744| 0.19839734011874272|1.4633262442950803|0.36680351326511434|-0.6978718432123521|1.9052095571022283|-0.11271772390164095| -0.1811240425994751|-0.7196649798233798|-0.31047404831845277| -0.0527038769448407| 0.1412891903543457| 0.3917496814067124| 0.08340426607405253|0.9461101051912267| 0.1359454066445746| 0.94598207118799|1.8478809681760437| 0.5121641782668679|1.5077597550518682|-0.45600014358987917| 0.2852783846493213|0.44116683704105014| 0.579714100312875|1.3653092875648867|-0.05033974525871...|-0.10860536990271365|-0.5636540040009821| -0.1316796105636456|-0.6647187539996104|1.6749673788927584| -0.3304721441869343|1.1005005459769255| 0.1284852909158604|1.8041531894583287|-0.11266948554261674|-0.3078869701224897|0.011681593569673191|1.2430450439339817|0.22118233631711406| 0.6622136988761866|1.3154473635122768|-0.35059600807181934|-0.44718546216935706|-0.13463281404344773|-0.12488615335930045|-0.03640581231405...| -0.550620389305636|-0.03103057344388347|0.33843626334628163|0.9826079053843463|-0.4087017653374369|-0.6669414022961504| 0.385765673680207|0.8811418923466057|-0.46360437393258125| -0.3909649333828433| -0.3895805378561797|-0.28948290078206634|-0.11601706656652969| -0.3041437884900352|-0.2470590868494282|0.38712892291143436|-0.6969176385943503|-0.10651840266619086|-0.4739584239016627|0.8173733197564846| -0.2242356786883291|-0.10885921860547429|-0.5580599979131343| -0.3238951744955476|0.933951891354127|-0.14317434739358165|0.8768224899808255|0.8355656078848617|0.7594506295210619| 0.449520824529435|0.31670265332185665|-0.39920523877261754|-0.3942809769474153|-0.12838913918634232|1.6975474139778306| 1.214973081097876|-0.3092255027564373|0.20974291186978677| -0.5004120316706985|-0.5764981211060475|-0.01432659750880...|-0.30244638631147897| 0.1460467176625379|1.1338977543084607| 0.11045276123383131|-0.14997955696696955|-0.26420662742576156| 0.0788046397178116|-0.16506959264461882|-0.26365069060417623|-0.17075284768536275|-0.6471028272168119|-0.46001913893196217|-0.6712310495845408|-0.6924074860724925|-0.15345122275596704|-0.08189413977206815|-0.10032398622733003|-0.13869206101516654|-0.22347201310858766| -0.217386592296619|-0.20768676977111172| -0.3300686477249635|-0.11325915791497243|-0.1706686662239795|-0.1451098241945371|-0.19104658037873443|-0.18600684476873328|-0.49393568813146027|-0.3926405655510834|-0.29291033299143765|-0.14034750506355484|-0.2843694757682644|-0.35056152177798783|-0.24385987052692196|-0.12411470591131957|-0.26405627670147497|-0.2742877986317933|-0.5899897333130543|-0.2332557712618328|-0.08816832475845104|-0.3377511825155639| -0.2709055935981327|-0.27317991375943285|-0.2163961148879481|-0.22663692713280845|-0.1715792126881753|-0.2924414734754358|-0.43084671279049647|-0.23301702269647975|-0.14274525089989842|-0.06243888325521245|-0.2840607069579491|-0.20061839981534318|-0.19456226182259456|-0.29446528591812415| -0.464217269991806|-0.22355060620522169|-0.03284317578565...|-0.26224894523539033|-0.47430799880622937|-0.30391562616784806| -0.673828174149358|-0.5598519180760126| -0.8211622253742751|-0.21782116613063834|-0.21836685869160988|-0.8189689413585858|-0.14245145060632428|-0.27611208974444224|-0.2591409194447554|-0.16742868392026472|-0.3322177705617053|-0.2719080454177405|-0.5039297111833291|-0.2323735469319661|-0.7406949845081329|-0.3877047131381158|-0.07228240685993131|-0.03918657364781...|-0.02329985149360...|-0.05524150732218943|-0.8511403612644297|-0.7096306229934903|-0.6225875196893568|-0.6514326504564848|-0.771671642436253|-0.8162316659719417|-0.3605282066251998|-0.2510534226729749|-0.8491759865699426|-0.03409545011614...|-0.09948105034210544|-0.2634893823445071|-0.34086601528809185|-0.3971644490768572|-0.7576490231383404|-0.6368991675166817|-0.7163855469733106|-0.3503619445582791|-0.41822567254419524|-0.33654531238893726|-0.4808809198569029|-0.41118454182610437|-0.41256061321292986|-0.3716466504772021|-0.10912401076385822|-0.32833628824359956|-0.3726119973937121|-0.4636404875869895|-0.2540144400672282|-0.11658324472913482|-0.05280555751329682|-0.02955761399754155|-0.16757702364098848|-0.41065655904026815|-0.04678651184696...|-0.098477585931494|-0.4114891560745114|-0.17158990741479752|-0.02663398890101...|-0.08074439215183964|-0.17381989577238127|-0.13602723879433884|-0.131264490227208|-0.08849490982161524|-0.18042202192436183|-0.7290411504474479|-0.07962728923072632|-0.4835159315801175|-0.727097530329218|-0.4869205947127958|-0.1458652213240088|-0.6075608979450752|-0.09261102051000594|-0.10733997762526638|-0.09588226126595413|-0.10809865909638992|-0.15350042380726894|-0.6911868882383552|-0.08510557218043253|-0.09410327103636741|-0.07202397583248128|-0.6590441747481357|-0.1272550933446086|-0.06443796250740871|-0.47634841994638116|-0.13921793344246167|-0.43913797440104035|-0.1107126761090993|-0.10009363410384595|-0.02520470066585...|-0.07904771172105343|-0.08847380533050613|-0.19092945354824573|-0.13577959686282637|-0.11011050567971963|-0.3593487529737919|-0.10649429889142395|-0.12012059728467317|-0.7021178089796191|-0.09226506438699164|-0.11747047268265882|-0.6065924733880521|-0.22061340844429733|-0.03662784621128669|-0.2586163395907733|-0.36048394396956146|-0.36348680049549686|-0.11589678276606079|-0.17376160068300092|-0.2690285739528524|-0.24482251410991|-0.3632900863287368|-0.5647294186968017|-0.3505713015822395|-0.11387201026564515|-0.6329594713011093|-0.7636390928448662|-0.06983607249902193|-0.06491510756971244|-0.08872172746227502|-0.1741650860753641|-0.700423956000644|-0.05231577224046...|-0.15049401421854722|-0.23828423046614877|-0.16513208551295544|-0.20568668194001768|-0.5214317494243678|-0.2794842514848555|-0.6553774745171487|-0.42290939945691547|-0.3798052509450945|-0.10147099333868884|-0.1552981957262418|-0.2037586545096258|-0.19607085342171932|-0.13456380353745334|-0.607172629663644|-0.5345567323107363|-0.36259821863423963|-0.16952669474827364|-0.0700165522932131|-0.21567994307329746|-0.6163619734927663|-0.20433905202279948|-0.41271727107657386|-0.05148237217050943|-0.25072171673281274|-0.12643832080797282|-0.6245271962697054|-0.10942131326278438|-0.16432891562221816|-0.1758912142155136|-0.139396126167775|-0.06353780569037926|-0.3408932862202021|-0.13375940247359838|-0.06864434076799462|-0.34872256123007267|-0.13572108204083666|-0.2742618357466916|-0.04702532871453042|-0.7288328050970285|-0.5843677397411112|-0.6683953620027576|-0.7743167001046506|-0.22517827193609088|-0.03791786130580291|-0.27232567122034235|-0.10214524679989465|-0.09003500542005023|-0.40970733135764015|-0.509613867892468|-0.47581785601540105|-0.4219427010866469|-0.1039163341166301|-0.11420386276570213|-0.5549409418350506|-0.10552072582676258|-0.2570810612365251|-0.10277244995580413|-0.15184810586147737|-0.21759933013224114|-0.1756910039156807|-0.16332645993304534|-0.10313203162613489|-0.2122625343232324|-0.2027981340560457|-0.06667592685742318|-0.49736043726913626|-0.2151622052596149|-0.20957868142419242|-0.5398481700341909|-0.27465244760742025|-0.03912407413208065|-0.6113325469596155|-0.2065002875524251|-0.10674393196541122|-0.04776973788937...|-0.21096490146561006|-0.04136515574125328|-0.5033504224258261|-0.1067328023067442|-0.06160072212490074|-0.05228129926293...|-0.13340628714984082|-0.05865304478382...|-0.04553834675282956|-0.3494257907237619|-0.11047616703430181|-0.6717692146441718|-0.07149317561912735|-0.04997485117130685|-0.7379634228172769|-0.15010658787504458|-0.11970984448583269|-0.3424606011048739|-0.3706970128870594|-0.1599657525306175|-0.24297417345501507|-0.12570774353132252|-0.5797776400326246|-0.1435791940325794|-0.36969341483199625|-0.2912873397768709|-0.16546446248361343|-0.14365760632459262|-0.1480152238580433|-0.15940852236113554|-0.11535827458599843|-0.05881486907866...|-0.13887536889852006|-0.11809844163395716|-0.03180750111479483|-0.03578794555393733|-0.15865445818929397|-0.17289310485981157|-0.19507838747823833|-0.39063267635713783|-0.04879430451774152|-0.25427016761418747|-0.06365815257014387|-0.6996582091354137|-0.23385925356722673|-0.11117378327585747|-0.2577023202999264|-0.5713841657523369|-0.0804531424989896|-0.09551571067092261|-0.458145321503123|-0.14054272301544088|-0.18392397413422043|-0.11559936207570427|-0.17261990304718497|-0.4511765302975726|-0.34503583016686534|-0.15360004855421494|-0.3776661029428063|-0.4213644894879399|-0.36778610908662385|-0.17012471232163873|-0.28016174389552584|-0.0805832394403451|-0.33079268370009995|-0.6134398950150703|-0.5356020092737113|-0.10266914842938882|-0.5095553230671926|-0.2656309876301223|-0.11270296115020846|-0.4117749347174728|-0.3267427881885765|-0.606733182946518|-0.29581208808870535|-0.08756029679689606|-0.2782800370134136|-0.5104100305167218|-0.410546984729635|-0.17005488212951284|-0.13559234131669098|-0.20994036670813065|-0.3533285202657877|-0.16211868382095831|-0.7968419511221768|-0.01803753970235557|-0.20315809261326068|-0.08098755315771117|-0.14775550885420558|-0.05097827630625376|-0.16904196305556976|-0.08108291298084064|-0.35682118960543774|-0.03606064593639...|-0.02055344527139...|-0.06996842331944857|-0.17576722455609511|-0.20976499172806096|-0.20595603531196344|-0.22949747581654695|-0.077229419122147|-0.17313076520031645|-0.02304909605604177|-0.16702462128972845|-0.05628783790331...|-0.31460113581799043|-0.03913026093049507|-0.17341970717191532|-0.23137961714741287|-0.05026247659916389|-0.04874379712165686|-0.03919802401538...|-0.19322479514560517|-0.12810459166533736|-0.04926757577956...|-0.08652030620146052|-0.14019825138483027|-0.08187407457751014|-0.0929863679872003|-0.05690614457318...|-0.05677074942669977|-0.1022484809644203|-0.10328930827161571|-0.2868877976334306|-0.0978145214864471|-0.03901181743779024|-0.15734384625133324|-0.2836580776225798|-0.21231955453005438|-0.16771512269327118|-0.2739574427261579|-0.354326138622012|-0.2695861847600906|-0.22919213115634773|-0.07074373145966605|-0.08600333372334969|-0.09486098961233637|-0.1227061505824716|-0.02826106615838...|-0.2653785626864632|-0.18006384517724952|-0.06508707796710951|-0.05224626855888223|-0.16260089670782826|-0.09009075778431266|-0.03346697812300506|-0.06942732978892546|-0.03421456625710...|-0.08048726392661786|-0.1379074606999219|-0.1292540449692126|-0.2570691101395688|-0.07035581021677265|-0.12967624114009768|-0.07282574588825501|-0.06055130315560812|-0.07696281208098574|-0.06820232346510376|-0.08895335859064236|-0.17286430293575075|-0.05761345254188...|-0.19041315439945922|-0.20536250050487723|-0.19403904973695504|-0.32046556113791486|-0.17114468184690032|-0.13774184646625556|-0.0312632193677519|-0.17208916407527772|-0.306146284105984|-0.24553664770636519|-0.05561109420304703|-0.1019087224010531|-0.0769800868649658|-0.06073047965375856|-0.03609138417209...|-0.04742236276329945|-0.17802109725113244|-0.05855384088022...|-0.09041496953744603|-0.30011878263041303|-0.03121877597813...|-0.04117199895130...|-0.19767364390012265|-0.10307034207613648|-0.1330965603272122|-0.10249073102791645|-0.14565551259445603|-0.14784014638233986|-0.2526568673033468|-0.13060074587757634|-0.2005694183716077|-0.20004833444517306|-0.1799668516373672|-0.22128722882986315|-0.19356689903425545|-0.2396392085939401|-0.09644556106123063|-0.1999783804866801|-0.18601736706025312|-0.16984102409964566|-0.04183251728156555|-0.03635234923114128|-0.06661716779912538|-0.03482962914923...|-0.05231219141116681|-0.22446837002145245|-0.05749141995049435|-0.3273249911811096|-0.23259835296944048|-0.07030690847916299|-0.09878668748210317|-0.21544233350361527|-0.1662951580397708|-0.17909188172175555|-0.09357753601360308|-0.02180909846866...|-0.05634178238314816|-0.0683284258693891|-0.06834717018332599|-0.12429992033006175|-0.07169012355483884|-0.11294425308749421|-0.12510559727635132|-0.2083209870136463|-0.09774172587363814|-0.10910775216263022|-0.18171910407379685|-0.22935730041107835|-0.2204650279029564|-0.11598473385946728|-0.09382735095624717|-0.19140390651702582|-0.19031729733775277|-0.15976231655896575|-0.1542331619637009|-0.09178074798326764|-0.05778332624685965|-0.05462200142862137|-0.06879408297856625|-0.11108816067222238|-0.07183440953372318|-0.08033310271705106|-0.03747698625045388|-0.05106536140746185|-0.03016471578297...|-0.0787283134682969|-0.08227692571263462|-0.05850983223519745|-0.06900396339410009|-0.06014143326154596|-0.05603147838414121|-0.05338829895536...|-0.06925714677092183|-0.04554246979699084|-0.07680232326277497|-0.06081529793385...|-0.02766224120526...|-0.03816879474849695|-0.08066128023124039|-0.08738692238004311|-0.06950298025632147|-0.04911146364235232|-0.03478414172404...|-0.06040716972096...|-0.06680235487113773|-0.07865701261165653|-0.0676440238751584|-0.0689336466948544|-0.07625173969661647|-0.02951910906873...|-0.05552829549303899|-0.0693333611727443|-0.06590278000550695|-0.05637693416960...|-0.04138953871163...|-0.06121212228255...|-0.0525540639783587|-0.06798664890999763|-0.07472228958464631|-0.05975670098286444|-0.05193052238043689|-0.05593362526817999|-0.05559174072875853|-0.05855382112519005|-0.07663065316527375|-0.0407703920433093|-0.05783205071384947|-0.06045369856151305|-0.02867596792957217|-0.06783528246015763|-0.04394076103369...|-0.05725127994437...|-0.05845802273841291|-0.03562927524014859|-0.06010707765294...|-0.04559774857778179|-0.02830729696293533|-0.03659680833791...|-0.02840558977365...|-0.04707445710843...|-0.163319032184624|-0.03902057316105251|-0.06876684766533568|-0.0684753891235809|-0.02747890387368...|-0.08298013513072489|-0.07938944215346512|-0.03466246289287149|-0.04469937400034389|-0.07344375814015586|-0.06082083833439...|-0.0684163260693126|-0.09623831566716876|-0.15628447991785555|-0.2652914284552319|-0.02429961542336...|-0.08128159935081532|-0.02314709417849...|-0.04603523882356...|-0.02510667279540...|-0.03123286128647...|-0.03277646181710...|-0.03814179273677047|-0.15129213944599829|-0.10479115141912865|-0.06163554045835...|-0.19377514225871476|-0.02182226681532...|-0.04694747614408115|-0.15479067915124323|-0.02836017007646587|-0.04172192971119037|-0.1536277194241871|-0.07135108351214531|-0.01284171997662...|-0.02286136682821...|-0.19379320346496245|-0.07804508425250306|-0.05777784266539315|-0.01994627867621562|-0.04920076956738...|-0.14361652118426554|-0.02483734245229505|-0.1576989101435726|-0.17023813188695017|-0.18022515903864902|-0.04151596998127889|-0.01837517853676589|-0.05208401837217...|-0.17209463692269986|-0.15810140221403146|-0.12983612975481948|-0.05869532332874...|-0.13899928083006025|-0.09015598255332917|-0.07994146561557311|-0.11674528395262675|-0.06516907291750952|-0.01253530526409...|-0.10678147352205707|-0.05200308160733...|-0.07377654456549866|-0.04926879704661...|-0.07141446625922336|-0.08274371390013117|-0.083347623382602|-0.06678649289008033|-0.164495283100621|-0.04264291823172...|-0.02340048817493542|-0.01253530526409...|-0.01557265438368...|-0.01279011792126...|-0.01575658005207...|-0.12185231103380349|-0.03249582671206047|-0.02123678739146...|-0.04261754069647...|-0.04317014567780559|-0.03606556101345741|-0.02327487055548679|-0.03767310761934573|-0.02891468884097222|-0.04565208536426...|-0.04442230590265608|-0.04570931009240...|-0.03498700607546724|-0.02681959024271...|-0.08885247918686506|-0.04731706522441283|-0.05869581341302393|-0.11050496011728465|-0.1774461115639265|-0.10823773338808673|-0.03895317024458085|-0.05429907603513069|-0.01639899263466...|-0.02180409073941...|-0.01741060799472...|-0.04606077622079108|-0.08093963871293505|-0.08647514855075453|-0.02719146438290...|-0.07905103481991486|-0.140816673940378|-0.15574749169882993|-0.12563516450511555|-0.10247972587724465|-0.15354520993815585|-0.13302728010807624|-0.01998088484341...|-0.01748558130073348|-0.03275763098873967|-0.0417917569748425|-0.03495643341027456|-0.02789485342131...|-0.04052036132132457|-0.01785155916566...|-0.09365354268958274|-0.02408004515237846|-0.02528118518816...|-0.02873096951468...|-0.02939223554833...|-0.0391812660918459|-0.02910913550629...|-0.01936262929364696|-0.02488966778858...|-0.03751162750236069|-0.04414819668911...|-0.02298881234915906|-0.04272841124152446|-0.02883793985884152|-0.03608686476185129|-0.02731379640814...|-0.02422930096092756|-0.03927543049060629|-0.05271052115014865|-0.03435793960630...|-0.02830923711120...|-0.01754516662247...|-0.04862755493380...|-0.06142829162588096|-0.05334586493671...|-0.04870124157049757|-0.06095155091715662|-0.06495667419567952|-0.17419757648901027|-0.04942821172341478|-0.02335309919027...|-0.02147168827292...|-0.02317607063830...|-0.02213935123208...|-0.01470130196867...|-0.01586527269632...|-0.01862315021504...|-0.02320027124859...|-0.08349062893733368|-0.02497660896531...|-0.03112911111474...|-0.02427685462697...|-0.04184381431280...|-0.01959168355104...|-0.02661812829125...|-0.03324436391587092|-0.01440597920664...|-0.02090354738997093|-0.02099755570744...|-0.01969944558141...|-0.01858925786972...|-0.02448996639103806|-0.02539555235190...|-0.01975588414871049|-0.02392133944576...|-0.02157952529840...|-0.02959448764397...|-0.02598555935344769|-0.02122936290264...|-0.0294377156320254|-0.06470305282895082|-0.01755973058198...|-0.01712593945027...|-0.10205145919906243|-0.10222711798842554|-0.03563037774186...|-0.03811135545895732|-0.03017452274428118|-0.03127994086163251|-0.02457230060020...|-0.02616884123015...|-0.01810881332325...|-0.02181178929207...|-0.01574409558607...|-0.01706183092582...|-0.04806597468820393|-0.03804725714765149|-0.01748633699173347|-0.01630231824725369|-0.01645115105527...|-0.01577674798623...|-0.06558110808458492|-0.03817283824371426|-0.01918617118494401|-0.01732737159786938|-0.01977857005295...|-0.06600972051941578|-0.16955379029558848|-0.05092113993330044|-0.15327147594380383|-0.1883280307497804|-0.18799380063909027|-0.08508393764000223|-0.09507374177866702|-0.16491311104859874|-0.14186597132094314|-0.11912923647608754|-0.08110284797775659|-0.15452898452585936|-0.0921152666105353|-0.12389595701028791|-0.02835499392988...|-0.05216868295501082|-0.1765105634340951|-0.15955033693108406|-0.07952451837065207|-0.16522854355878597|-0.05006322192952576|-0.16630215769828796|-0.1657770176104409|-0.06499678285551905|-0.04547718438072724|-0.12307504874806376|-0.04219979802730306|-0.02863615700960281|-0.02851080161034385|-0.13358307083670315|-0.1857060074224024|-0.04020645390944...|-0.15145901203021012|-0.11662422839193234|-0.1812252939087378|-0.10582759367064391|-0.21613233213976601|-0.08825968161376781|-0.02059048307781...|-0.01253530526409...|-0.01253530526409...|-0.01676273653844812|-0.04044590391164721|-0.06846035552533167|-0.03673653849099...|-0.01253530526409...|-0.07159927723334882|-0.0701970020252842|-0.141924439970132|-0.0461458037190024|-0.03690415143417546|-0.03160483874655844|-0.03099989863000...|-0.02608892646661...|-0.0840569666385692|-0.03226244462731307|-0.03800099848366229|-0.03797124822430...|-0.05690104997587946|-0.08390871225887878|-0.1454430005026461|-0.03436795476465...|-0.08940578265549738|-0.07060535953449967|-0.07265120572560493|-0.02999016399251...|-0.02972591499422...|-0.09283982673045996|-0.09082744195629047|-0.1255767611422195|-0.03985527136064707|-0.05707205529404569|-0.03208249609837...|-0.01923945591116...|-0.04691359663293...|-0.04043567982764036|-0.05549930403545291|-0.01653072240272...|-0.01744258309193761|-0.02429241176595239|-0.02150030751208179|-0.03966776053060233|-0.03623618263933...|-0.02043680933667342|-0.05826594805976424|-0.04696467892205765|-0.04832036121798...|-0.0445349171944025|-0.07089333776695039|-0.06788458421447466|-0.03131891435977...|-0.01253530526409751|-0.01991751766313...|-0.01712795687559...|-0.02521228578213...|-0.01905540253011...|-0.01253530526409...|-0.01253530526409...|-0.01699519163864...|-0.03551238297740...|-0.05501084654776157|-0.06587495469678659|-0.11853272929802114|-0.16465109365272598|-0.19684244062398873|-0.17183661047238377|-0.04037440077856168|-0.08374924359920033|-0.02327837831207...|-0.01253530526409751|-0.03180856784601...|-0.04556783138318...|-0.04954714235440076|-0.04845066950631...|-0.03964821898581...|-0.0430779087359009|-0.14951371195680485|-0.0396678618750845|-0.03914819539424013|-0.035457282891395|-0.03019054285845121|-0.03953607899865486|-0.03948351219812639|-0.03087642264337...|-0.04938737729687661|-0.03297383499171809|-0.08313009424316473|-0.21099552380310377|-0.06665406618852494|-0.04050624283825...|-0.03477963388819822|-0.02372579679652444|-0.02890150071580...|-0.11664939487286362|-0.13272898541336034|-0.12991032620425721|-0.05402053661696...|-0.02543417953756144|-0.04073947694943...|-0.05368909050806241|-0.02891223595627984|-0.09484350364075614|-0.01253530526409...|-0.16231085143034074|-0.01720218259752...|-0.01253530526409...|-0.049199630598785|-0.02221909474091...|-0.03167773953206413|-0.05931018152034...|-0.03624336136213705|-0.03018321023691...|-0.02306278416702...|-0.04133321872669...|-0.03990507196900694|-0.02520689904305...|-0.0233440539531184|-0.02400711845445387|-0.02860867222035157|-0.04474334288258...|-0.09775756557125663|-0.13104483262700178|-0.01718619643036...|-0.01737830823044957|-0.03599495525901...|-0.01780241812724...|-0.16416154810618402|-0.08548698995357433|-0.21447182228657505|-0.02185567380570962|-0.03113897636372626|-0.02984323988752823|-0.03021115798276...|-0.01465747610160...|-0.09959748211734074|-0.01708247990289...|-0.14482523792806484|-0.04069848547661164|-0.01724740965914141|-0.01939958227196...|-0.04523597645212...|-0.02431570655620...|-0.01253530526409...|-0.01362729283850...|-0.01272152434671...|-0.01253530526409...|-0.11942458701375376|-0.10527509281215315|-0.01274329762034...|-0.05376768676621204|-0.01578649463036322|-0.03165464015667...|-0.1273603150636014|-0.01839339370273...|-0.13958727633063944|-0.01355337199942...|-0.03286001669391199|-0.02887450057176965|-0.01734046546809...|-0.05132255523307...|-0.01253530526409...|-0.01698112067578765|-0.11796815457215197|-0.02678033419822...|-0.02595043079555...|-0.01608568088398...|-0.01772087717090356|-0.02162280812452...|-0.02528457219126...|-0.01863628232025719|-0.02070783829610...|-0.02644988387560...|-0.03361426756935...|-0.02021326275910...|-0.09337779395829887|-0.02234741151367...|-0.01653256920412483|-0.01286893549501...|-0.0178187893984519|-0.01763219421091...|-0.02592251780181349|-0.01691316277838...|-0.01946529301827...|-0.02569301096415...|-0.07553787848813365|-0.09796171602340774|-0.04487350040582298|-0.09386466893729185|-0.05039202890702036|-0.04918143638355889|-0.0641941427052212|-0.1024360274020276|-0.17858775697422077|-0.05370641671915822|-0.10491637026481458|-0.05088068548307155|-0.03615422375081105|-0.01434742400960...|-0.0679786359420969|-0.02823935190479...|-0.03352777143257...|-0.07156344816938558|-0.05899340223601993|-0.06556415112215107|-0.08837113265359645|-0.08869982847745128|-0.079250303096928|-0.05553685180041768|-0.0907724973751452|-0.07586765719054685|-0.07408274218594411|-0.04917165740539179|-0.06168551307559296|-0.0539388061794301|-0.19057317550429118|-0.16606767651279855|-0.07148969751260914|-0.0551892547802984|-0.07194585816972217|-0.03894193938293...|-0.1552378085604564|-0.02374465829594...|-0.03250329908373...|-0.08844260550388973|-0.04965604116592365|-0.03182342768020707|-0.06586663695127064|-0.05547382197374394|-0.08364642352795536|-0.02393038730109914|-0.07810859755051143|-0.0679020092385906|-0.03831882849007365|-0.05329289204207...|-0.05215929066952642|-0.05272051155624...|-0.1669842984467363|-0.18532324416850765|-0.1004906629101323|-0.07146506007717222|-0.05732518632066...|-0.08116820765442534|-0.03975776820428882|-0.04283047334850427|-0.03275305410992...|-0.15280101229169027|-0.08616561570330392|-0.15461211184483342|-0.1067271347986758|-0.19281338034653747|-0.08718403405693788|-0.03860656402166669|-0.07445750709802315|-0.07231992203493734|-0.03725671583122...|-0.06718662909772438|-0.0660620396114663|-0.0589296882337908|-0.08154857356852267|-0.03119384331775222|-0.07324581787919375|-0.07209196791646169|-0.08503036208973905|-0.05861161371810323|-0.10944638975054101|-0.03116048537831...|-0.04170842369665658|-0.02580540941785514|-0.06347627953483045|-0.02307773480319...|-0.06408196841102208|-0.04435504405363148|-0.04376584321139852|-0.03458673217708...|-0.05595697804401885|-0.04215416752814...|-0.07105296826818647|-0.06755273300113215|-0.14945492079821143|-0.0641255326298561|-0.04612801356160128|-0.06077477569305041|-0.03736622522494803|-0.03303583889778883|-0.048919207997536|-0.0326103663097915|-0.04418332591702678|-0.04836256567322...|-0.15135047432476728|-0.06551335988298622|-0.15877099942482015|-0.02858985977393...|-0.0820993130216828|-0.04364841447457989|-0.07762282493729054|-0.05216804146170484|-0.02018282555478...|-0.04922170344223668|-0.05485701297582194|-0.02434719911201...|-0.03385195162157549|-0.0339865450314757|-0.1750703171460503|-0.1844733976267893|-0.15779264620469172|-0.07489727430131289|-0.08043699371101562|-0.02855387502330024|-0.02126696663637...|-0.04125129915459362|-0.03487583989744462|-0.05621294016685502|-0.03155555340163481|-0.02714849743139316|-0.2195534014379215|-0.05568695418694244|-0.05376395736828006|-0.07089089119536318|-0.04196536001005...|-0.03961264823201234|-0.03237100792439921|-0.05921055151808...|-0.06964349935998672|-0.0583256250009784|-0.04143067474669115|-0.03288248962067...|-0.03066838934696...|-0.06578606760034678|-0.04015873863988517|-0.06585146893393135|-0.02253648197300...|-0.0753870393667766|-0.05454197985286951|-0.01271109157545731|-0.03389125862749...|-0.1028397078670282|-0.05884173105492035|-0.02016315311239625|-0.0337102880385371|-0.05539715538085...|-0.04663665809407669|-0.01672538228795...|-0.06728866786798234|-0.04542321341331...|-0.03811512716556...|-0.05319897385057129|-0.06707903158693398|-0.01734376606184107|-0.01391639250227...|-0.03419429609847213|-0.06829272010343974|-0.02688300523335...|-0.07666425194814039|-0.02485307028571964|-0.04037097357153...|-0.0207464668287628|-0.03115361990619537|-0.01965155882152986|-0.03581679920595451|-0.03345238187797073|-0.01683046508650823|-0.04025497633757...|-0.0442085092959046|-0.02150571661525402|-0.03155012785633747|-0.01429929243418...|-0.05589043035575016|-0.03740820253807603|-0.02520125528979...|-0.04735267714455...|-0.02574816933206138|-0.06505247920646023|-0.02697461224751...|-0.04734736841186551|-0.01407529370719857|-0.05914496649860676|-0.03922412222491286|-0.06689952277770272|-0.02458862012416934|-0.02433821406936...|-0.12122169921275922|-0.03742415363043...|-0.06723736207458282|-0.16075529196709912|-0.0408886548194812|-0.0461009232359421|-0.1587941615636298|-0.01253530526409...|-0.13529242753616316|-0.10592355352598681|-0.11648555746286952|-0.14215926380613783|-0.1999275358394026|-0.10107306805465013|-0.10202831223257526|-0.10943368989714025|-0.17998767924692086|-0.10898381213868247|-0.02455901241708...|-0.13085640810855748|-0.07227547157534706|-0.03854273765785333|-0.06689716745077018|-0.04492135722567...|-0.15738647381617274|-0.1414972789658726|-0.241870055238358|-0.1102817612756218|-0.08847440318033642|-0.08352404623462703|-0.15873333054595834|-0.21477347188147536|-0.14128580572141033|-0.2463261708356197|-0.11497494664033617|-0.24764559691564064|-0.13245012613535045|-0.23885521759614645|-0.21411066943640233|-0.23348548237504296|-0.1981247060915251|-0.23806058357007504|-0.2377379406836483|-0.14193370212855158|-0.17409773394051023|-0.08299118693221612|-0.05660615367570514|-0.0424926913764688|-0.20352072660474424|-0.11891284908198074|-0.13191887796593083|-0.15735827211370398|-0.16828143722863106|-0.16681834831558198|-0.2544216250569107|-0.09146350906017252|-0.01881627079831687|-0.06387049626546927|-0.02977423810692...|-0.05505747172184...|-0.03409043445479625|-0.07730158428699553|-0.01981940484032...|-0.03789566610032968|-0.0525782479754935|-0.03875166341242...|-0.01436569184427829|-0.02204981702529...|-0.04034693952619438|-0.03795591397921857|-0.08140051218216497|-0.01596851190770...|-0.06720062257866412|-0.02849478214106783|-0.04508184803730...|-0.03931571237361597|-0.05298008623917...|-0.06783376317483056|-0.01999504831150...|-0.03330391898413436|-0.02173500315233447|-0.02938801472121534|-0.02648174427273...|-0.02719232191460...|-0.05894425815773142|-0.02429042838374...|-0.03115976832961601|-0.02733271274356...|-0.02656514946362...|-0.02974047711046...|-0.02699547707573917|-0.03464611268909417|-0.01963163998524834|-0.03003194523061...|-0.06162613673291529|-0.04859341447082878|-0.04484341392963131|-0.01844332422277...|-0.10025832979013694|-0.04062362072148439|-0.06295832903523882|-0.0830669386326368|-0.02306229377981...|-0.04793731648274038|-0.02924546403913696|-0.05664151071872345|-0.01397207521517...|-0.02438672362647787|-0.03846229718136...|-0.01253530526409...|-0.05911292882395176|-0.01253530526409...|-0.04743148408928239|-0.09778712481641308|-0.04060009385423422|-0.02934938821816219|-0.02564108335254...|-0.01450157513036...|-0.02389263567228...|-0.09864355907803474|-0.02416419776910393|-0.03271317470631243|-0.01475145848843...|-0.02211707598809...|-0.01337513093045...|-0.04199888526708...|-0.02538676421348...|-0.04202501563997...|-0.02005194956461...|-0.01932654746431613|-0.07353573932433866|-0.07591959991521248|-0.07368133146428031|-0.03258424951470...|-0.03700548503414839|-0.08634313308408828|-0.03393711634379...|-0.02338509705111389|-0.04068470765417726|-0.0738188175233493|-0.04054593861649178|-0.03525251476928512|-0.06339286605549259|-0.02440688586327...|-0.0350083825291547|-0.01453099931956...|-0.03140695490966...|-0.03438030508069088|-0.02320548674881...|-0.01955897161477...|-0.2119453882657604|-0.02724711029920307|-0.03955507062111815|-0.01522307135234...|-0.12713088244766477|-0.01390143924727...|-0.03901494802117484|-0.03116683147704...|-0.07055201814638727|-0.1860004678050947|-0.02275109662342...|-0.01673349661469615|-0.01993563509488132|-0.02493234490758...|-0.02290584251770...|-0.02234763554672...|-0.06183071350583...|-0.02207194914306147|-0.02648788664492...|-0.01904507911367...|-0.03545198712111162|-0.01746276766334...|-0.01253530526409...|-0.10978462851423498|-0.13122932551473437|-0.02544392506271432|-0.01923038587024441|-0.021408897417373|-0.01253530526409...|-0.01959837838047...|-0.04098692556755546|-0.02222668991637...|-0.02953060581472249|-0.02330648179183|-0.07258579249990345|-0.04489864614030742|-0.01988926962247...|-0.03340991872690119|-0.06208952744227126|-0.01658157869264...|-0.16109070385414526|-0.08417740907338389|-0.1367541956635|-0.13299711997135552|-0.17731899240133722|-0.09659178931409441|-0.08701703059487687|-0.1674173873846272|-0.02801354269879...|-0.11128702269196548|-0.158017345572961|-0.138961954497253|-0.03150143221240...|-0.03996307304204553|-0.04286764466615509|-0.02604220228764136|-0.02657805897124...|-0.02751955840217...|-0.02002488897828...|-0.02888525849803...|-0.0231783599576937|-0.15287691366574702|-0.14342299839976994|-0.15773449913297652|-0.04233147899236448|-0.05234200784074...|-0.03153900245061189|-0.02249865949236083|-0.02348753982549...|-0.02225974213386426|-0.03675494918117716|-0.02141673323709...|-0.1080231980837484|-0.09923509422246723|-0.11411691141738221|-0.110801854396862|-0.10208510845913639|-0.09363316433921401|-0.03730186088818...|-0.0583035281679872|-0.05731242888264...|-0.02510219750095...|-0.06889285055097355|-0.0411965970627713|-0.03411616149188449|-0.06254702253528059|-0.02812046116107...|-0.03134970969839668|-0.07777957499538092|-0.0359203216041072|-0.05001432768965812|-0.09075388215444528|-0.01918906724502995|-0.07272940849628509|-0.02646821038899...|-0.04144669463027...|-0.02467755626325781|-0.02453604382485661|-0.01852959193214374|-0.02385113934866267|-0.03007787037926258|-0.03630690258933342|-0.02049735774139...|-0.05188507605921232|-0.03285749893063...|-0.1023273561343606|-0.05701271924549412|-0.03695085829468...|-0.02528525888014...|-0.03514862969422335|-0.06315422458716945|-0.08442013008903061|-0.03248254501603...|-0.01600185459343...|-0.07869923487030528|-0.0406852580123631|-0.08468811896223748|-0.01579252939135...|-0.09925283260251333|-0.11103449069372866|-0.02398306909036277|-0.01907471592915...|-0.10194669998480883|-0.0967105927629049|-0.10782489282679589|-0.10331252122117908|-0.1264958250279843|-0.06593493753820108|-0.02086683052149...|-0.09880288962918538|-0.10483132370879088|-0.0931371043936155|-0.08587320941157454|-0.09009065143347855|-0.0906528829890335|-0.09899411526283797|-0.0597443707692986|-0.09301701461298499|-0.04543465423551255|-0.01605292670906...|-0.09477420289083621|-0.08128850418270253|-0.03699453223402...|-0.09501908502934335|-0.02767461323902...|-0.03225080527459...|-0.02926611931041...|-0.09560786748631955|-0.09470379906585136|-0.03695635949827397|-0.02113736810443...|-0.02741881539653...|-0.02066866897596...|-0.09673261678552149|-0.1495173892213675|-0.09527687218016286|-0.09952266712996793|-0.09496727001178966|-0.08315685009688373|-0.07888747675621312|-0.11315348779839343|-0.1065024456731681|-0.08625417162719866|-0.04226836260927698|-0.09384383179949045|-0.10162162577627748|-0.08157815979917603|-0.08890201100247903|-0.08562497280306662|-0.03058470500679914|-0.02551964908936...|-0.04235257861511979|-0.030839991248366|-0.04223992181450...|-0.02802760661462646|-0.03024098648466...|-0.01628215897984298|-0.02605710471535303|-0.03918358240922007|-0.02556570537981...|-0.02536124644775...|-0.05175054074121579|-0.01253530526409...|-0.01482555587915...|-0.01585719938138...|-0.02464861319258...|-0.01253530526409...|-0.02004628085949...|-0.02443123885328...|-0.051735194466199|-0.01253530526409...|-0.02494146758784...|-0.02026723767334068|-0.02092487755752...|-0.02220984121454081|-0.04209921752862985|-0.02279082905753...|-0.06521620733687734|-0.0656798546589098|-0.04012332531549182|-0.05743583720231...|-0.0777470962327653|-0.05538029052636957|-0.04440173187780372|-0.06414063798363762|-0.06019079253350647|-0.04960980157382711|-0.0861055991796224|-0.0966509574869616|-0.0745020389703442|-0.0586207166256548|-0.05267027745599264|-0.06867971799078121|-0.1310183489867955|-0.12985847689595542|-0.07993554118761545|-0.07411106008797205|-0.05760411305905985|-0.08142219632741006|-0.04876126397020748|-0.08017137654605401|-0.05729535722555...|-0.0397936604947615|-0.13025951898451374|-0.10632011314053678|-0.03182553967807...|-0.02293397331746164|-0.10446227564018797|-0.16226318462193035|-0.13741919943783265|-0.1246934994860268|-0.10340843541286893|-0.15640287889787452|-0.15589855445632575|-0.15525631068944865|-0.04646670938477778|-0.15871396442791236|-0.0329326865033875|-0.14495769490217733|-0.15959244033079217|-0.01253530526409...|-0.04646680816969091|-0.15233055799753317|-0.03342029416825774|-0.1275115042991426|-0.05426048818358968|-0.03489009989723...|-0.128836808033593|-0.03253546543822635|-0.03571495391034988|-0.03839472717928764|-0.03960509833307029|-0.04191380212584684|-0.02968404605942...|-0.03127461954150156|-0.03812652847361...|-0.02762807673123...|-0.10651132871048208|-0.04841679746289642|-0.03636206604427824|-0.0176569853802011|-0.04717863332665411|-0.04996942487293737|-0.01838423568804...|-0.03985330173116809|-0.02905966691017441|-0.01525459731632432|-0.04079140702508441|-0.01903640133523029|-0.03626360198523304|-0.01683006030293...|-0.01488816634433109|-0.01847107307636479|-0.02150241061117407|-0.01514777625236...|-0.01950840490775789|-0.01776384428551...|-0.01607715648240...|-0.01253530526409...|-0.03214294388892...|-0.01749422030377...|-0.03054443102992...|-0.01818151444303...|-0.01982655019057...|-0.02371586945520458|-0.02115524762779915|-0.01526358875218...|-0.04684978106529472|-0.01766021875146...|-0.01627706231488...|-0.01641905371409...|-0.01741752342569...|-0.09354024199397377|-0.15132782338164535|-0.14268244555925685|-0.02133826707748...|-0.01724549907676446|-0.01887151108006093|-0.01294703580645...|-0.16726171933903877|-0.01253530526409...|-0.02461251476503...|-0.02396199582193...|-0.01264171546307...|-0.01253530526409...|-0.01253530526409...|-0.02424722094433981|-0.01325001179093876|-0.14713606768385964|-0.13591257860494171|-0.01294975687574695|-0.01481241569941...|-0.04634306467794264|-0.01455965042687...|-0.0281453340990975|-0.02766955975921942|-0.02884990530113...|-0.03633955274681321|-0.02045035889082092|-0.03831684727028403|-0.02900388933712...|-0.02946153392733...|-0.04224974861100...|-0.02894672984207756|-0.02664301551975...|-0.03035415388836...|-0.01729057821813187|-0.01728589534177...|-0.03573731601674...|-0.01253530526409...|-0.02394941193650425|-0.03134767333060446|-0.03299656457423951|-0.0155923492433667|-0.01253530526409...|-0.01859960577730...|-0.02013705063511...|-0.05404527567070459|-0.01421052170221...|-0.01526537616196...|-0.01598424577024524|-0.01450510830797...|-0.02078894836726...|-0.01419131339426265|-0.01319541506961486|-0.01927476625725904|-0.01920320390192...|-0.01983913067394...|-0.02374931997460284|-0.03698170358014311|-0.02181180277370...|-0.01908191608512...|-0.03666586518099262|-0.05316723540601...|-0.02605902142338...|-0.03001403760670581|-0.02110799070984799|-0.03923256604835843|-0.02281775027705...|-0.02126281749316101|-0.01253530526409...|-0.01253530526409...|-0.03246164553595169|-0.0246221520190236|-0.02726037741856...|-0.02959999934821...|-0.01253530526409...|-0.01672422000146...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01292670508594...|-0.01643250389487...|-0.01571667691083...|-0.01345245100707...|-0.06912913396710307|-0.05224570632060724|-0.02294612223923189|-0.02699848943518682|-0.03150373617783074|-0.01253530526409...|-0.02201747211162...|-0.02825975043549447|-0.01623645433952038|-0.02309177604050...|-0.01253530526409...|-0.05271045343377608|-0.01253530526409...|-0.01253530526409...|-0.02235166442481563|-0.02398957251167...|-0.04506300777585498|-0.03257402234815258|-0.01771631449665151|-0.01253530526409...|-0.06664354815190994|-0.01637404272083...|-0.02254276977813...|-0.01307614414923...|-0.04671550282429283|-0.07375169484407176|-0.0162358913185701|-0.0717057743564475|-0.01741629550527...|-0.02080164607187...|-0.03404436194431...|-0.01276760816921...|-0.01771438955560562|-0.01558957506516...|-0.01527758903868...|-0.01995504145089...|-0.0333967269989615|-0.03235576654348234|-0.02086846759355001|-0.03290466057127785|-0.03129065203585669|-0.04007682784236569|-0.03316593507158114|-0.03272945705842481|-0.02436106547235383|-0.1664878581709092|-0.01943308304048869|-0.02205354808784...|-0.08332617709133693|-0.08339506603350243|-0.01926728438019055|-0.05446432201102848|-0.15249018829091587|-0.14658441538331057|-0.15879390067474586|-0.1519084426909212|-0.14978731490429636|-0.04860938636973406|-0.02408677228758...|-0.07125457198926703|-0.06623898051708989|-0.04895904019766...|-0.04816144776768264|-0.069095762691167|-0.06160081189344...|-0.03896125221351899|-0.02476940422598...|-0.03027776830298...|-0.03537762410593287|-0.02566055120304...|-0.03112979685708...|-0.05475844489868674|-0.01824084567448...|-0.03327048520450332|-0.03187575524058429|-0.05870441839562345|-0.01919180668138...|-0.07224811361934234|-0.07323703337089141|-0.05093818288514354|-0.07390041572861683|-0.06216210055522264|-0.07751456377221864|-0.07088256219017237|-0.03030301803627...|-0.05221610814766532|-0.04178845992699953|-0.07341170825003915|-0.07195890854818207|-0.05660507180820...|-0.03476637994802145|-0.01690787544130...|-0.067449311076602|-0.07351893558887462|-0.03507260706674097|-0.03054147155475802|-0.07209037530077307|-0.06366154876363496|-0.05182359259097184|-0.06665303012654963|-0.04242010031752635|-0.03781980281435005|-0.06402338523390858|-0.02308066136557...|-0.05073031428779072|-0.07137838458973725|-0.05871282674631711|-0.05581905043243...|-0.06580184336969125|-0.05720793666761366|-0.05450252739349...|-0.02268147650038...|-0.04045087849155...|-0.05056650709372826|-0.05641304221224261|-0.04867795739408303|-0.02820689916072...|-0.05864977065519...|-0.03069970629800...|-0.02947525118743...|-0.03990723575022...|-0.02545539046826...|-0.03247667774261927|-0.02386590244154...|-0.02142290617987853|-0.02658064564549...|-0.02598914146543...|-0.02902761793381...|-0.0244102654109476|-0.0209416121279024|-0.04384541509688057|-0.02437569191971112|-0.02234106621461...|-0.03188227102174984|-0.02326207340631...|-0.02423972403931877|-0.02218094926694...|-0.01789987165418647|-0.02267995054600638|-0.03515083073708...|-0.03704209259973922|-0.03405014811916035|-0.03851956419395509|-0.03609915208408622|-0.01682190255989...|-0.02521752367004669|-0.01253530526409...|-0.02447505089332...|-0.01850495848790955|-0.01868654923194...|-0.01425868910876522|-0.01734259877157833|-0.02099258870913...|-0.01422633739385...|-0.02048813136764675|-0.02588484615141...|-0.01613817269392121|-0.02049883835062743|-0.01253530526409...|-0.03371181114421186|-0.0343879024983298|-0.033915777187617|-0.02032364322449...|-0.02949845463018714|-0.03069877673778...|-0.02061204066950351|-0.02120430373182...|-0.02472345619949...|-0.02270718857421...|-0.01298942408385784|-0.04260486259305084|-0.01398775146586...|-0.01681667914055...|-0.02986146716409154|-0.01733900623132422|-0.01510350868270...|-0.01253530526409...|-0.01253530526409...|-0.0330596392361737|-0.03244127114734586|-0.03487652976400519|-0.01879152115534...|-0.01944329662943...|-0.02256797829575...|-0.01720636706916...|-0.02407564723463...|-0.02105865407464...|-0.01697174406657...|-0.04046571149371147|-0.02874981447152676|-0.02882365172658...|-0.02808926869834586|-0.01862037147822...|-0.02861820122070...|-0.02061487540105...|-0.02563634846802...|-0.02709183732261...|-0.03127664263715832|-0.03193546656638005|-0.03095982116797...|-0.02667629146476784|-0.02397513314539...|-0.02832771374323...|-0.02522160175912...|-0.04158630164117067|-0.02690375511238...|-0.01253530526409...|-0.03050160615347366|-0.04175463287817...|-0.01253530526409...|-0.02421651791350...|-0.03397255420254003|-0.01329276300431...|-0.03237075977356102|-0.02552889653922254|-0.02429819645393855|-0.01402273864549...|-0.04284413524229461|-0.01539884137391...|-0.02070071847359...|-0.02484432787944...|-0.03010772535148495|-0.02426919127258...|-0.02315407211748...|-0.01619223466096022|-0.02926605508369...|-0.02362891100887...|-0.04130113188924037|-0.02171519806721543|-0.03297026325809504|-0.04193181665521881|-0.0490249633394661|-0.03416734993491...|-0.02935365517765359|-0.04236541758707675|-0.03678220502492...|-0.03498576469388172|-0.04462173100887154|-0.01516825930718...|-0.01703229361277...|-0.01253530526409...|-0.01253530526409...|-0.02544762394769...|-0.03609983958881902|-0.02398521916425...|-0.02437321925997174|-0.02171519806721...|-0.01911792669417...|-0.03208011151444031|-0.01837959852808...|-0.02239763213288...|-0.04164946404585...|-0.05037868427764588|-0.01663882997260...|-0.01253530526409...|-0.02616955488265...|-0.01606311479375...|-0.02246666286776...|-0.0390590808957263|-0.02171519806721...|-0.01253530526409...|-0.02805026849726...|-0.02302154951401...|-0.01894484841985...|-0.01776817663338...|-0.01828663561188...|-0.01494980390238...|-0.02203524211095...|-0.01909816452190887|-0.01253530526409...|-0.01530506759858287|-0.01253530526409...|-0.04233290488610049|-0.02021406141666456|-0.02214853605830602|-0.03157613688872718|-0.02838641537388...|-0.02676776565478...|-0.02908452682552...|-0.02181256520167...|-0.02636730281999...|-0.02504037232676046|-0.03780571699367798|-0.01826639444229...|-0.02136819405882...|-0.02541080604858...|-0.01423384559727...|-0.02091416946480...|-0.01899177765470...|-0.01413257365485...|-0.0261510553160351|-0.01253530526409...|-0.02052550345546077|-0.01860371134729...|-0.02211894201629609|-0.01253530526409...|-0.02328030804560...|-0.01253530526409...|-0.04135496001411825|-0.01772070316010...|-0.01461339602790...|-0.02171519806721...|-0.02083605409139597|-0.01253530526409...|-0.02376540396516...|-0.02494027581850709|-0.01679585292910...|-0.02425221712718...|-0.01547450165426...|-0.02468458154509417|-0.02686984985535...|-0.02588205200294...|-0.02412779215383542|-0.01253530526409...|-0.01337343806805...|-0.01919878882140608|-0.02169786241970...|-0.01506432230511...|-0.02680507622184411|-0.02675613457629542|-0.02624694593015189|-0.0253853895300528|-0.02171519806721543|-0.01350148489580...|-0.01253530526409...|-0.01253530526409...|-0.01775630771908...|-0.01819799705194...|-0.01860166905854...|-0.01918945284255665|-0.01323880479552...|-0.01406597904063...|-0.02075164821487...|-0.01845218258492...|-0.02171519806721543|-0.03017432102856888|-0.01253530526409...|-0.01253530526409...|-0.01536460931316...|-0.01633492528981289|-0.01524018221630...|-0.01888324415060...|-0.01253530526409...|-0.01253530526409...|-0.02442207193970...|-0.01826519765450596|-0.01756098791503...|-0.01751650318719771|-0.01253530526409...|-0.01253530526409...|-0.11828964769806191|-0.01880638223754...|-0.01492421881356...|-0.01651180763916...|-0.02754521440964...|-0.02507221339433917|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01974834555200304|-0.01768396404016...|-0.01898542899455275|-0.01567341210477...|-0.02117650079224...|-0.01900951018891...|-0.01774568419985...|-0.01690510302238...|-0.01358298173947...|-0.01253530526409...|-0.01934904707323...|-0.01253530526409...|-0.01603289575171906|-0.02178001923083...|-0.01432414761615...|-0.02034639052362...|-0.02909081528935...|-0.04406388796671537|-0.0386701817405381|-0.0239177091159095|-0.01992263919029388|-0.01301628347317...|-0.01771565123160632|-0.01329108945404...|-0.01338442380647...|-0.01846147795769...|-0.02149788590180537|-0.02171519806721543|-0.10711225980910805|-0.01253530526409...|-0.01673571541865336|-0.01928508341519...|-0.02171519806721543|-0.03511011819221...|-0.01643450187480...|-0.03215625471535802|-0.03369024077051305|-0.01722588834163285|-0.01996480147735...|-0.01585995781616...|-0.01582817555441...|-0.01771192825579...|-0.01253530526409...|-0.07221299698259433|-0.01253530526409...|-0.02873252003267...|-0.02189132311711...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01399504068788...|-0.01262263416179...|-0.01253530526409...|-0.01253530526409...|-0.01342951514783...|-0.01603203118121...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01370884592458...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01299595276722...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01281102672722...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01415660837783...|-0.01537465706328...|-0.02933084253167807|-0.0125353052640975|-0.01679458415742178|-0.02302404318500...|-0.01634860563700256|-0.01596533141929...|-0.02002349435431...|-0.02402644840233...|-0.02465617364197...|-0.02149115280446276|-0.01706946638657...|-0.01253530526409751|-0.01801284765157559|-0.01913027109278196|-0.01253530526409...|-0.03285502683798...|-0.01728257641737...|-0.01709021199591...|-0.01592983718364509|-0.01253530526409...|-0.01891183436077981|-0.01253530526409...|-0.02183907960590...|-0.01253530526409...|-0.01793482743122...|-0.01696652144640639|-0.01583373427010...|-0.01484712338160...|-0.01345291021280...|-0.02279205348179336|-0.01706611843066...|-0.01253530526409...|-0.01994467550296...|-0.01391010473843...|-0.01763626100544...|-0.02638063317880804|-0.01710225932460...|-0.0162814710327804|-0.02128930601552...|-0.01748228381190188|-0.01725598809926...|-0.01985106950580...|-0.01626246097396...|-0.01754275897116...|-0.01253530526409...|-0.01253530526409...|-0.01689769835940...|-0.01824077092964...|-0.01454766695137...|-0.01253530526409...|-0.01613270081853...|-0.02072559319138...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01310237795132...|-0.01772629675196...|-0.01253530526409...|-0.02055078466182...|-0.01769044412442...|-0.01402285625569...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.03165314881105696|-0.02247161250255...|-0.01253530526409...|-0.01390759986044...|-0.01253530526409...|-0.01670700896530788|-0.01253530526409...|-0.02691881356112046|-0.02150779453362515|-0.01897511038699...|-0.02171519806721...|-0.02373468305757...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01749002511191...|-0.02052176790488...|-0.01253530526409...|-0.07981410892370255|-0.01944906220579263|-0.01798605897820234|-0.01376040679851...|-0.02541411600383388|-0.01332669261355...|-0.02194160752041...|-0.01253530526409...|-0.01253530526409...|-0.01765176945836...|-0.01769418866327...|-0.01965135217109...|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01387083103708...|-0.01253530526409...|-0.01629030890316...|-0.01598511256106...|-0.01253530526409...|-0.02375143976135...|-0.01253530526409...|-0.01809703984959...|-0.01772450861786...|-0.01253530526409...|-0.01253530526409...|-0.01327736874371...|-0.01265972467981...|-0.01253530526409751|-0.02631034067213...|-0.01668528498536...|-0.01571896763333...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.0125353052640975|-0.0298896235905307|-0.01929251649515151|-0.01253530526409...|-0.01253530526409...|-0.01630507333875433|-0.02345467432947218|-0.02029996650094801|-0.02339641319796861|-0.01662372032677...|-0.01253530526409...|-0.01253530526409...|-0.02926819746066...|-0.01869312062516...|-0.01253530526409...|-0.01655212081484...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01690163698577...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01603845075993...|-0.02965128572246...|-0.02376426872813861|-0.01253530526409...|-0.01253530526409...|-0.02571852240630...|-0.01253530526409...|-0.02285022676111892|-0.01253530526409...|-0.01253530526409...|-0.01772267963829...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01539970759822...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01517373528312...|-0.01333212216736...|-0.01767893416678871|-0.01253530526409...|-0.04286693269415914|-0.07926070300627827|-0.07565647741354355|-0.05862241990822177|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01367913977777574|-0.01560374229199...|-0.02388109165435...|-0.01370364575074...|-0.01654720890883482|-0.01921070258814483|-0.0168026017245111|-0.01780898257543...|-0.01516063864468...|-0.01452077958907...|-0.02234551686725037|-0.01519998564338...|-0.01685181847923913|-0.02080144293167...|-0.01477901886912...|-0.01690680081271...|-0.01865518039065...|-0.02247370678067...|-0.01785850363608564|-0.02013830859291...|-0.01571832205345...|-0.01591850952257...|-0.01916053750312...|-0.02015876484877...|-0.01581507331445443|-0.02729532109301...|-0.02044959455992157|-0.01313582118934...|-0.01924483009399966|-0.01334051682238...|-0.03454274816586165|-0.01749583743523395|-0.02786642576927954|-0.01486191092491...|-0.02026022069136162|-0.01791183855066...|-0.0162374101267291|-0.01662803116974045|-0.01508075189344...|-0.01425608788418...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02015212614783...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02331490785296...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01764305562171852|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01575788788538...|-0.01571380393699...|-0.01764097785509...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02548858964314...|-0.01638896332210...|-0.01583732191795...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01918672320120...|-0.01253530526409...|-0.01253530526409...|-0.02899362265741...|-0.01253530526409...|-0.01253530526409...|-0.01411002760164372|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01751729783967...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01824900866622605|-0.01253530526409...|-0.02343731739916086|-0.01253530526409...|-0.02031128674373...|-0.01425627696583...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02048428238599...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01701264394676...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02787356155947...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01772891899495...|-0.01253530526409...|-0.01765116565821365|-0.01253530526409...|-0.01253530526409...|-0.05339654494092747|-0.066362690254457|-0.05067500602392155|-0.01253530526409...|-0.01770105989560506|-0.02152507933191...|-0.01712227476944...|-0.01253530526409...|-0.05236003527957662|-0.04083933811554...|-0.04371900350339...|-0.04195847481574377|-0.01834799104408...|-0.0185728480457948|-0.01938955175779...|-0.01253530526409...|-0.01253530526409...|-0.02317505098239...|-0.01253530526409...|-0.02911625882080...|-0.01758501245241...|-0.01253530526409...|-0.0125353052640975|-0.01253530526409...|-0.01253530526409...|-0.02555089152680...|-0.02531115320437...|-0.01395774874221...|-0.0250368644254073|-0.01253530526409...|-0.03684196027283...|-0.01933596724505...|-0.02008533678904115|-0.02482975925189255|-0.01253530526409751|-0.01253530526409751|-0.01670986226813...|-0.02248659164373...|-0.01253530526409...|-0.01253530526409...|-0.01671354929167197|-0.01253530526409...|-0.02298573288912...|-0.01714241828211743|-0.01253530526409...|-0.01253530526409...|-0.01752042282091...|-0.01253530526409...|-0.01716924424884...|-0.01682577118133931|-0.01323926770884...|-0.01253530526409...|-0.02293929673970...|-0.01346284723865...|-0.01253530526409...|-0.01253530526409...|-0.02176675993508...|-0.01253530526409...|-0.01733938767750971|-0.01769763334924423|-0.01253530526409...|-0.01253530526409...|-0.03341520687515...|-0.01519710872955...|-0.01506615199283...|-0.01832851066700...|-0.01762225086129...|-0.01253530526409...|-0.01253530526409...|-0.01308637836901...|-0.01914018735913...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02366306112550...|-0.01531944490230...|-0.01253530526409...|-0.01772338658713591|-0.01740231821674...|-0.01749615027886...|-0.01758490466500015|-0.01253530526409751|-0.01715333788473955|-0.01661372333535261|-0.01541176076787...|-0.01253530526409...|-0.01634390399834...|-0.01437843822018...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01989145181019...|-0.01253530526409...|-0.01693991511437...|-0.01253530526409...|-0.01281155618999...|-0.01347613602847...|-0.01253530526409...|-0.01253530526409...|-0.02058318262671...|-0.01772828701071...|-0.02114846463732...|-0.01253530526409...|-0.01412313269634361|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.0149649591628405|-0.01987168589839567|-0.01253530526409...|-0.02385016677132...|-0.01253530526409...|-0.01293413420043...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01444906170582...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01765226439968...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|nmdc:bsm-11-042nd237| | 1.19738225722175|-0.8240340324228933|-0.5865873934433224|-0.40915699116824555| -0.5142514040055032| -0.2515360823928572|-0.3451926815778996|-0.4692611972451752|-0.42147472405583775| -0.583581608653294|-0.02155055217618...| -0.6465153001271113|-0.07776690837381248|-0.11612437593810146|0.05291659549770982|0.5775764665847175|1.1709189307521084| 0.5158469030976756|0.9305013028723583| 0.48700453678029215| 0.8846337747167078|-0.05735514710294159| 0.03661174613758817| 0.3326993755889494| 0.10507062078063034|1.1362856133521568| 0.8667215953509192| 0.5651453687419268| -0.0794363680227135| 0.7929576428345664| 0.8220286221835593| 0.42477425050724216| 0.18274954468817572| 0.7863069084921249| 0.2234050069396239| 0.3023474095948541|1.1640954613704289|0.8724268660716726|0.8907937696187079|0.9817080959918296| 0.5258974737318544|0.6576452706347132|0.3375563369638143|1.4922867972105773|1.3467749677942178| 0.5304412846749192|0.6828292321235306| 1.1563528591988523|1.2828807695347044| 1.382688134400469|-0.13434071422357288| 0.804791860422338|2.5586200780746413|0.22101338406813664| 0.10410035339323839| 1.6749808873705294|0.11069424337363144| 0.09065575073129804|0.045370849458971824| 1.735195519026116|2.0168728451447278|1.1496350367127424|0.008359839534567298| 0.615401354607632| 1.1684100140908664| 1.569417571297573| 0.04509248850124904|-0.13705201392796437|1.3072736393602178| -0.2089074396558182|1.5798405358966183|1.4243149761117069| 1.540212108610792|1.6655202229992636|-0.7189138364119287|-0.13788402170877215|-0.7711467635773882|-0.8037152691262608|-0.8483691485156537|-0.7757059476537737|-0.08988633923356733|-0.14439374173147773|-0.04324533537433...| -0.703888170062392| -0.67181358984691| -0.2352284791687515|-0.26937475900846297| -0.5790717572496356| -0.5747653697742021| -0.6630609101368825| -0.7534716478749223|-0.5556012196798932| -0.5210732232339687|-0.7890149734299922| -0.7261984537321957| -0.6210475419739454|-0.7893705885800865| -0.5292991527336764|-0.38701990674596004| -0.737238986634947|-0.7496857485774598|-0.6977752833808829|-0.6373604454673043| -0.2290953626107109| -0.5373757456183091| -0.1903232749527185| -0.3803330161755471| -0.5216867624857308| -0.522325458630802|-0.5287932593204037| -0.1316088871851929|-0.4466199149087067| -0.470658150028183|-0.3583850002655585| -0.3735267760647288| -0.5039973782235231| -0.7173003936477426| -0.1475334999269597|-0.14919215688702483| -0.41137545861635|-0.27858328421070727|-0.07930372830074384|-0.18731018886875742|-0.11284328529521336|-0.7915446524866412| -0.795900863293112| -0.9158976292249226| -0.778889802852294|-0.6715265686065568| -0.8842398470813866| -0.5259883499260102|-0.7749424369233158| -0.2921932385534624|-0.7316304918993692|-0.02216980101711...| -0.4566440255752598|-0.4139808068435837|1.2459124586017896| 0.15178331837357428|-0.06013366125300995| -0.875547435966166| 0.625006462632032| 0.6238814838753806|-0.46141805748715303|0.04607133275368262|-0.6785715004080103|1.2578943851103288|-0.15505133653396225| 0.0857515239093381| -0.6279202680168653| 0.33266413457562677| 0.02607926511089289|-0.13516110663551473|-0.13980683490357063|0.7721211335597516|-0.45263942051692196| -0.5356590277964616|1.4567417345758547| 0.4942577419679021| 0.3572252355811953|0.8551054460564219| -0.4009757603990046| -0.506306305285342|-0.14047015283372813|0.5165675091098253|-0.2617806752843543|-0.6198120727584782| -0.8712737570240032|-0.18978373394292017| 0.6697116325641362| -0.5030518355198764| -0.6344887783824371| -0.3977480206263249|-0.49951634794593397| 1.021137287520012| -0.6475702962396597|-0.7672628044022184|-0.13404676180100056| -0.7290276564672804|-0.04942257221919...| 0.8447845199244568|0.13226959475787672|1.8032401507002658| -0.4572122142666099| 0.10003740261343233|-0.7744200275399474| -0.765867295904179|-0.8159719391152696| 0.9654223159588624| 0.16749064950061013|-0.7251906068243741|-0.08587085131445853|0.4938250063234701| -0.5199550568578979| -0.5627346200765659|-0.7598777915667265|1.3659999260115094|-0.6188728169197054|0.019295570137649147|-0.27630556694141806| -0.563557360223287|-0.7167154753491555|-0.7247568915109576|-0.5774710660944085|-0.6299943510744401|-0.13981543935646717| -0.4279610005165744|-0.8365224264763984|0.9526386649437295| 0.5732741469324536| 0.41674112639815974| -0.2017523553794722|-0.5870773997284645|-0.36266939779790996| -0.609838524665919| 0.08712515827605219|1.3989567034557853| 0.14138601562387468|0.5629627283791157| 0.4170737763371296| -0.7910039312355155| 1.1497599773522393|-0.02190130936244381| 0.16920261857799487| 0.3766087824706044| 0.24074654116423191|-0.8579682582958025|-0.23267247822056333|1.8451214497432864|-0.12680214251189392| 0.4217093851395357| -0.6544453799961517|-0.23731919430842358|-0.4746197480841466|-0.19507055568789022| -0.5699370358317953|-0.4346689443408606| -0.4572796971094514|-0.5861294302580092|-0.18587912052472524| -0.6210205890926912| -0.5896537856204379| 0.5034561025613086|0.052068542768199874|-0.05875924296761372|0.18156774551294608| 1.127872634574919|-0.6104002635659671|-0.10657798586188524| 1.8243049700907383| 0.6215530904796797|-0.7828746517844611| 0.06989817744909367|-0.3236632786880753| 0.2118992860431338|-0.09834028470130594| 0.13794395119724073| 0.7675621118514561|-0.7894244776216551| 0.336655010214822|-0.3468731222969374| 0.10585569167411464| 1.7255190507452156| 0.27842163719562546|-0.14985376770965603| 0.7185309998486487|-0.42760871732344463| -0.5154084413591199|0.7844402811692732|-0.01251623557551...| -0.6905706295119873|-0.7856145428388652|-0.24669353821420126| 0.2326811767254671| 0.8248217114640224|-0.07433905794884739| 0.2680305181506553| -0.2586987285461513| 0.32741819866598687| 1.1775581630483407| 0.7247329896400883| 0.8405517908862012|-0.6754474610982165| 0.20738702926017066| 0.551952232917519| 1.2064303139732808|0.06886564560766893| 1.1271879546182488|-0.6518440229907534| 0.3581371095546502|-0.05381645265598...| -0.5679231248033112| -0.073775707363442| -0.4091912064639221|-0.5401297032689191| 0.3334635584170173|0.9107273570181795|-0.2509521427528457|1.7938393743470071|-0.7152205685368448|1.8483295520965621| -0.657397896419099|-0.7421315632860318|1.4308431876616374|0.8489454673774209|1.3393812436236547| -0.593150355894459| 0.05359761417106352| 0.14892368001971296| 0.03454618206680804|0.021669672600153712| 0.67893503715692| 0.6071182919020552| 0.20920212082238815|-0.6566390963866601|-0.7382885730230374|-0.6768402065054407| -0.4454249988704962| 0.03034426342814781| 0.09901585143465721|2.8072337859176955|-0.6952909987888267| -0.5809565657904036| -0.5239338682192307|-0.42493005583404403|-0.6243591275156811|-0.28600854609280774| -0.1892605254097955|0.4831861213637863| 1.0650337569252006| 0.6791857517534965| 0.8803700218832587| 4.142371334246846|0.004540996437412...| 0.9547486067049857|-0.00144840227108...| 0.45562100785781834|-0.00550027577599...| 1.2566613891892355|0.04290167150478706|-0.47655792676375697| -0.436751673582705| 0.16128374652964686|1.1567078029128945| 0.1657400917915193|-0.7583304194333844| -0.6549954569240716|-0.11155342687859097| 1.1647044065264378| 0.23729599666160076|1.0456869350342919| 1.089618473998993|-0.5106777445386531|-0.42056960398713655|-0.6681761763865374|-0.5474738990903184|0.056856948222299634|-0.8032017157269341| 1.4419820395051268| 1.37482895350125| 0.02313446955960873|-0.7633163548749937|-0.30470655331884894| -0.5821525756155446|1.1402907122497083|-0.7759249782598787|-0.7317866953011877|-0.13763301925967905|-0.04490061363084...|1.9994488194045952| -0.707997138033998|-0.6655990741492536| -0.635249238785016| 0.13623451720239052| -0.2384282254773363|0.058359965068190564| 0.3418116898509219| 0.551754513892397|-0.7846271959018869| 0.26272074219985636|-0.24126950522537452| 0.955665443568611| 0.619861018151312|-0.6326475794063351| 1.4891295366758004|-0.6651065592527257| 0.08074970368336275|1.1725516615720522| 0.35785865560928976| 1.311173378447072|0.8283657492846409|-0.12656980435328155| 0.49048856404271535|-0.7577515999200602| 0.20440406659163468| 1.7142387970054818|2.2109386804111084|1.5164190220701779| 0.3473093819599457|0.5783853920613156|1.3749104185711891|0.9633971245411506|-0.2362167180968548| -0.6030496532940407|-0.49364244329310636| -0.445786991983726| -0.585778988251522|-0.7381430515217305|1.3406110437341168|-0.7546669132423142|0.45313098901451915| 1.620031595350009|-0.23488350708635075| -0.6111415340299191| -0.5255638226551179|-0.7359943893818794|-0.7354747893765583|-0.2616726419887164|-0.7454351241112473|-0.21095251902779957| 0.353337392860455| 0.267954844422975| 0.0770704736251347|0.7853052159663967|3.0243205985886545| 0.7185881545354841|-0.10844867524631895|0.9746840590405068| 0.4699962559162734|0.8234506425694671|-0.8607480889852415| -0.0734850908281827| -0.7313837547935718| 0.36557290226932454|-0.3010570435315407| -0.3191741178098418| 1.809130007978196| 0.1604763085847581| 1.7121513018821002|-0.20775063568477095|-0.24836633184057794| 0.04729461169055809|-0.7535589770039742|-0.7227110951689037| -0.5624896510728936|-0.21570445830445475| 1.83837595445006|-0.06145906760289572|-0.02914150298482785| -0.699975752745479|-0.6848953257661097| 0.804161104406885| 1.4476601814873284| -0.5785838526712331| 0.5040141694260497|-0.6311722779012201| 0.7454511450607733| 1.441991004784895| 0.269208015812521|-0.8840436473245811|-0.46294276541781687|0.054223318419416036|-0.46048967514091443|-0.8344634460434928| 1.540490055956656| -0.4468009913686825| -0.7036889320493891| 0.5980681075855355|-0.6374790934521872| 0.15966456290393005| 0.595171658960939|0.23523985402507538| -0.4966646079911579| -0.3297209677266875|-0.8241384619137494|-0.6959621043904258| 1.229119299084679| -0.7207277442321696|1.1971207400022332| 0.8908638929295155|-0.7685877831730001| 0.0998206322750527|-0.7763718396902118|-0.00453328720809...|-0.7725363122557374|-0.3716409470183629| 1.1427096905348784| 0.45918324421378426| 0.7097015322349202| 0.07128578560917406| 3.1171554870073424|0.12341096781751999| 2.132419362770294| 0.4612317497469947|-0.4814893601271783| -0.530370956397545| 0.6050279334826366|0.048282846953955315| 0.05684918964101048|1.2279412393770273| -0.5517273094613999| 2.034974773069496| 0.4863294708516629| -0.5755196152483443|-0.7238728065312695|-0.8361181205234413|-0.04381066701739796| -0.5695313178457575| -0.3731067743638697|-0.8489192791379341| 0.5628089017749407| 1.6798517432470998|0.28126109225567963|-0.03307180758862...|-0.7451070577410822|0.29602695022789494|0.16156801320125677|-0.6555754197768112| -0.5796791952301951| 0.5152142555152746| 1.3629446815928057|-0.7690973937840093|-0.07544207002991217|-0.7480289356549328|-0.03145470191263...| 0.4645521097534622|0.9232401719044371| -0.5499465133592242| 0.9644108407739906| 1.4802078564567553|-0.45281609860910244|1.1631172354649169| 0.837327056096879| 0.6271706114828387|0.7465189951523102| -0.709092218253747|1.3588030629931336| 1.798499877252588|-0.30420348776995054|-0.03865398532076...|1.6413214065540553|-0.7410138559295023| -0.5912621061232484|1.3067799125230486| 1.067313248286285| 1.567250769307243|-0.02021704980184...| 0.4463548101480916|-0.05103370067490...| 0.3000104481624482| -0.1350773285278724| 0.4861144161584121|-0.5038664152416709|-0.09494609252311614|-0.42275452238532013|-0.8253680141816492| -0.6237984973545216|-0.6709644200482644| -0.5572483069109493| -0.290024969252033| 0.7463303161132749| -0.2909994441562785|0.8976009013890248|1.8825356240641709|-0.7986467908627995|1.2143097713470952| 0.3681477022822227| 0.5603251795662969| -0.4085189752721566| -0.1387499719175089| -0.5404019497192901| 0.6878422164374711|0.8458142278339327| -0.7131685730537713|-0.9040807222863286|-0.11804181944226812|-0.16832684549973628|0.21403774515907525| 1.8729398932204995|-0.6264931313511493| -0.6438387356070404| 0.07373823308907654| 0.2171582113164842|-0.7049052786074296|-0.3712660699096603| -0.5988256176901549| 0.6781420580759717| -0.5175306492630499|1.5060207309335454| -0.2730008945924384| -0.9109245761712239|-0.13815012837354404| 0.3098200237335193| 0.5556511958597156| 0.4947727931043869|0.7572885404080258|1.0380099563113216|1.5241046486212837|-0.02862862317066...| 0.2959406248364479|1.5232421542632721| 1.604943007928595| 0.6418244290094216| -0.7098615732724767| 0.2593972440255674|0.15230205000319194| 1.598133182390716| 2.216317629185289|-0.38561240408657904|-0.41758581549871293|1.4901187737523665| 0.566622544832861| -0.0599581980302161|-0.12612506202551724| 0.13469478362699322| 0.1470810998719064|-0.8533050321063876|1.1815608944423945| 0.03657090537072404|0.8988639448010712|-0.5149088559709627|0.8736257077760584|-0.09274587515477337| 0.5306688634239124| -0.3144792365385945| 0.7359229845488797|-0.12430636087993881|-0.08727569309320633|-0.10551133459583739|-0.5584477560504062| 0.3396899562572864|1.0811530289579871|1.0787216134597049|-0.17998042749627932| 0.2850586608670785|0.029051613054540897| 0.506468594558679| 0.8091538164918606| 0.3253397495216055| 1.0997624003708455|2.2559145893969395| -0.3932834505594916|-0.8654002201790716|1.2875648108455178|0.8878781985481239|-0.6605671178097569| 1.073946343072206|1.5241904123364602| 0.8627992314367805| 2.2436017862462765| 0.00606529045575416|0.38856428192413384|-0.06199341783083814| -0.6132097822831702|-0.4676846436066508| 1.9786282479279105|0.002759494641421965|-0.17744648220076664| 1.1321218754038787| -0.74118611199778| 0.10368111363745453| -0.175153507433567| 0.1462815197499536|1.5773717352711163| 1.4287212182910467|-0.6525704617670159| -0.1585589563647512|0.21081354866706822| 0.05111699268453904| 0.8834212532790359|-0.7254361465448742|0.027661302219272276| 0.4266190738906858|-0.1853140030411649| 0.4150660956871932| -0.671956097312829| 0.07279095351293079|1.7370980962105844| -0.4992412290927431| -0.4631043930096076| -0.2939736943603648|-0.4253317633766671|-0.19181527438695828|0.8248941621153049|-0.7044170477558188| 0.3044400366807661|-0.00751440293007...|-0.6193145861954122| -0.7105435892214327|-0.40930365356221304|-0.7966517846964332|0.8667625312633391|0.6484870063156352| 0.09018387338952909|-0.00272717851671...|-0.07777023813524858|-0.5493105568906351|-0.7667409243099939|-0.7199596586415088|0.9537664129329996| 0.7292138115114271| 0.7405164190631188|-0.10054209758077103|-0.8394561936697769| -0.4718033142727194| -0.6790202372233056|0.08190741343310255|-0.8006234875799554| 1.4198779061237765| 0.9533762295701228|-0.30727668332512914|1.0174691949387908| 0.1699465102555986|-0.7390551460225746|-0.12507601628742154|3.4829791125160248| 2.249642548617687|-0.37483126957156004| 2.482817295644998|-0.04196698315748615|-0.11793839387152402|1.0753376904931704|0.43619335712413376| 0.4253051058502725|-0.7945277968857432|-0.48187448621076073| 0.31198665011297844|-0.02321362957115...|-0.17745578493802924|2.2464846053648633|-0.8439152107292318| -0.673926671565521| 3.314885255884498| -0.6179911665983119|-0.6767842818156043| -0.4751176317417574| 1.1704004372347698| -0.5045974235265717|-0.01272734101583...| 0.308347628058661| -0.4071844460585507|-0.31121305537252203| -0.549554408592534| 1.12703481865519|0.32738857539707633|-0.32158729718438794|0.4475677652363012|-0.04185401856262...|-0.44629976704228586|-0.07124225426238834|-0.39485584460889117|-0.42350573677810444|-0.03926141544086453| 0.1923806059882999|0.024302148831891104| -0.5419154033185144|-0.01014588554085...| 0.2613192840328381|-0.43932427941802127|1.0012371882516076|0.5925217210256175|0.05520445323143273| -0.5553962650183439|0.12805259768431485|1.4758627361125223|0.2032683742585165|0.9958828757846192| -0.2420625313586822| -0.4292379684912664|-0.1687374808792502|-0.24222050058090697| 1.2287071016742899| 0.5055606515759461| -0.574493010403743|-0.6656836272743399| -0.1057942782446495|-0.19448603735687944| -0.4176909626272696|-0.8830817579616481| -0.634870387563366|-0.00220058314719732| 0.34783301846442777| 0.19145017678151702| 0.440819326941685|1.1992854361909477|0.34706683398948057| -0.506187512964425|-0.06576670436531112|-0.18568294740182795| -0.6051849303220603| 0.15035580697386194| 1.712519832302251| 1.4548078494376766|-0.8124304523191922|2.1119686198596392|-0.19059956142806944|-0.17006284497894547|-0.8682394976745178|-0.11607502290496632| 0.18152826980663886|0.16231330059494753| 0.8165158560034892|0.030547044927147656|0.9132480947478163|-0.46574132732763396|0.8236611439619608|2.0560297850353098| 1.0643381114529178|2.0955221709868854| -0.7199979224723494| 0.2649909631664812| 0.7325996509846942|-0.19641842444004273|1.5498254004947865|-0.07899022639464513|-0.12941601263274222|-0.7607343824753646|-0.08287834460276042|-0.7661065617872629|1.7878312494297972|-0.43616379187084553|0.6731449688084743| 0.07763031319807422|1.1176858470930913| 0.30107349112607207| -0.585044374493259| 0.14392790777377046|1.2192755489715141|0.14973908848028034| 0.6172654785181112|1.4948852382590483|-0.01765856946958...| -0.7275012113330418|-0.16243429465363987| -0.1394635810157223|0.041680635333742555|-0.7612839912755753|-0.02425806450020...| 0.2803509192920323|0.8790135832131811|-0.6128000103029725| -0.780018465230403|0.45083263560789527|0.6904285344033595|-0.39548987853066403|-0.37557209228044985| -0.3351518142975368| -0.3142276276421604| -0.4730579837066356| -0.4387740622829312|-0.2391270963931953|0.43338696616274464|-0.8966322419788388| 0.2115374660000236|-0.6372249465616244|2.5182085597679627|-0.42665359025582356| -0.1522892193276115|-0.7914085014287474| -0.5975506893869018|0.667854841930658|-0.46675471366290977|0.6825518688292382|0.6331224629708812| 0.587482821448943|0.39774469842630117| 0.8869980266106612| -0.6941693290442698|-0.5873182028704356| 0.06230335151320206| 1.326409772186925|0.8050072013576415|-0.2992528489215469|0.11187609594008367| -0.6498072570709882|-0.8089304576627769| 0.24363659621217368|-0.10095229951700525| 0.7947493166443622|1.2201514845501116| 0.22412369263390555| -0.1368924729356646| -0.2814505552743462| 0.5413502445593068|-0.16895540454624408|-0.15061362477951015| -0.4459904267565348|-0.8746692729663725| -0.7801049330551297|-0.7531688863187149|-0.8814408551666353| 0.08832978091558123| 1.9280313653295187| 1.2491705901338503|-0.11069419313905372| 0.16333144580395953|-0.06339133115091908| 0.3746915148725828|-0.18760618341389698| 0.9536482086547909| 0.3006353520778795| 0.1973812314216683| 0.34224768121664506| 0.8072997871530941| -0.293671029789968| 1.6236203139066971| 0.0755120752850289| -0.0873922093874526| 1.8261723522405537|-0.24836117401625254|-0.14221846063485102|-0.07794229011239341| 0.897062407003501| 0.4677881078077365| -0.461338672391609|0.22519796505434522| 0.06537389858200154| 0.6012261407036505|-0.10067446624155614| 0.20890235679006397|-0.1285549120895271| 0.8061772925176792| 1.6207452259136488| 1.9750186863402603| -0.3955040697536038|-0.10749807886749894|-0.05644129814951...|-0.04616477995425671|-0.2084196713046459| 0.10823646447823734| 2.502502756190685|-0.13370186185916885|0.05283909810719023|-0.04406636732078264|-0.03284317578565...|-0.26224894523539033|-0.47430799880622937|-0.30391562616784806| -0.673828174149358|-0.5598519180760126| -0.8211622253742751|-0.21782116613063834|-0.21836685869160988|-0.8189689413585858|-0.14245145060632428|-0.27611208974444224|-0.2591409194447554|-0.16742868392026472|-0.3322177705617053|-0.2719080454177405|-0.5039297111833291|-0.2323735469319661|-0.7406949845081329|-0.3877047131381158|-0.07228240685993131|-0.03918657364781...|-0.02329985149360...|-0.05524150732218943|-0.8511403612644297|-0.7096306229934903|-0.6225875196893568|-0.6514326504564848|-0.771671642436253|-0.8162316659719417|-0.3605282066251998|-0.2510534226729749|-0.8491759865699426|-0.03409545011614...|-0.09948105034210544|-0.2634893823445071|-0.34086601528809185|-0.3971644490768572|-0.7576490231383404|-0.6368991675166817|-0.7163855469733106|-0.3503619445582791|-0.41822567254419524|-0.33654531238893726|-0.4808809198569029|-0.41118454182610437|-0.41256061321292986|-0.3716466504772021|-0.10912401076385822|-0.32833628824359956|-0.3726119973937121|-0.4636404875869895|-0.2540144400672282|-0.11658324472913482|-0.05280555751329682|-0.02955761399754155|-0.16757702364098848|-0.41065655904026815|-0.04678651184696...|-0.098477585931494|-0.4114891560745114|-0.17158990741479752|-0.02663398890101...|-0.08074439215183964|-0.17381989577238127|-0.13602723879433884|-0.131264490227208|-0.08849490982161524|-0.18042202192436183|-0.7290411504474479|-0.07962728923072632|-0.4835159315801175|-0.727097530329218|-0.4869205947127958|-0.1458652213240088|-0.6075608979450752|-0.09261102051000594|-0.10733997762526638|-0.09588226126595413|-0.10809865909638992|-0.15350042380726894|-0.6911868882383552|-0.08510557218043253|-0.09410327103636741|-0.07202397583248128|-0.6590441747481357|-0.1272550933446086|-0.06443796250740871|-0.47634841994638116|-0.13921793344246167|-0.43913797440104035|-0.1107126761090993|-0.10009363410384595|-0.02520470066585...|-0.07904771172105343|-0.08847380533050613|-0.19092945354824573|-0.13577959686282637|-0.11011050567971963|-0.3593487529737919|-0.10649429889142395|-0.12012059728467317|-0.7021178089796191|-0.09226506438699164|-0.11747047268265882|-0.6065924733880521|-0.22061340844429733|-0.03662784621128669|-0.2586163395907733|-0.36048394396956146|-0.36348680049549686|-0.11589678276606079|-0.17376160068300092|-0.2690285739528524|-0.24482251410991|-0.3632900863287368|-0.5647294186968017|-0.3505713015822395|-0.11387201026564515|-0.6329594713011093|-0.7636390928448662|-0.06983607249902193|-0.06491510756971244|-0.08872172746227502|-0.1741650860753641|-0.700423956000644|-0.05231577224046...|-0.15049401421854722|-0.23828423046614877|-0.16513208551295544|-0.20568668194001768|-0.5214317494243678|-0.2794842514848555|-0.6553774745171487|-0.42290939945691547|-0.3798052509450945|-0.10147099333868884|-0.1552981957262418|-0.2037586545096258|-0.19607085342171932|-0.13456380353745334|-0.607172629663644|-0.5345567323107363|-0.36259821863423963|-0.16952669474827364|-0.0700165522932131|-0.21567994307329746|-0.6163619734927663|-0.20433905202279948|-0.41271727107657386|-0.05148237217050943|-0.25072171673281274|-0.12643832080797282|-0.6245271962697054|-0.10942131326278438|-0.16432891562221816|-0.1758912142155136|-0.139396126167775|-0.06353780569037926|-0.3408932862202021|-0.13375940247359838|-0.06864434076799462|-0.34872256123007267|-0.13572108204083666|-0.2742618357466916|-0.04702532871453042|-0.7288328050970285|-0.5843677397411112|-0.6683953620027576|-0.7743167001046506|-0.22517827193609088|-0.03791786130580291|-0.27232567122034235|-0.10214524679989465|-0.09003500542005023|-0.40970733135764015|-0.509613867892468|-0.47581785601540105|-0.4219427010866469|-0.1039163341166301|-0.11420386276570213|-0.5549409418350506|-0.10552072582676258|-0.2570810612365251|-0.10277244995580413|-0.15184810586147737|-0.21759933013224114|-0.1756910039156807|-0.16332645993304534|-0.10313203162613489|-0.2122625343232324|-0.2027981340560457|-0.06667592685742318|-0.49736043726913626|-0.2151622052596149|-0.20957868142419242|-0.5398481700341909|-0.27465244760742025|-0.03912407413208065|-0.6113325469596155|-0.2065002875524251|-0.10674393196541122|-0.04776973788937...|-0.21096490146561006|-0.04136515574125328|-0.5033504224258261|-0.1067328023067442|-0.06160072212490074|-0.05228129926293...|-0.13340628714984082|-0.05865304478382...|-0.04553834675282956|-0.3494257907237619|-0.11047616703430181|-0.6717692146441718|-0.07149317561912735|-0.04997485117130685|-0.7379634228172769|-0.15010658787504458|-0.11970984448583269|-0.3424606011048739|-0.3706970128870594|-0.1599657525306175|-0.24297417345501507|-0.12570774353132252|-0.5797776400326246|-0.1435791940325794|-0.36969341483199625|-0.2912873397768709|-0.16546446248361343|-0.14365760632459262|-0.1480152238580433|-0.15940852236113554|-0.11535827458599843|-0.05881486907866...|-0.13887536889852006|-0.11809844163395716|-0.03180750111479483|-0.03578794555393733|-0.15865445818929397|-0.17289310485981157|-0.19507838747823833|-0.39063267635713783|-0.04879430451774152|-0.25427016761418747|-0.06365815257014387|-0.6996582091354137|-0.23385925356722673|-0.11117378327585747|-0.2577023202999264|-0.5713841657523369|-0.0804531424989896|-0.09551571067092261|-0.458145321503123|-0.14054272301544088|-0.18392397413422043|-0.11559936207570427|-0.17261990304718497|-0.4511765302975726|-0.34503583016686534|-0.15360004855421494|-0.3776661029428063|-0.4213644894879399|-0.36778610908662385|-0.17012471232163873|-0.28016174389552584|-0.0805832394403451|-0.33079268370009995|-0.6134398950150703|-0.5356020092737113|-0.10266914842938882|-0.5095553230671926|-0.2656309876301223|-0.11270296115020846|-0.4117749347174728|-0.3267427881885765|-0.606733182946518|-0.29581208808870535|-0.08756029679689606|-0.2782800370134136|-0.5104100305167218|-0.410546984729635|-0.17005488212951284|-0.13559234131669098|-0.20994036670813065|-0.3533285202657877|-0.16211868382095831|-0.7968419511221768|-0.01803753970235557|-0.20315809261326068|-0.08098755315771117|-0.14775550885420558|-0.05097827630625376|-0.16904196305556976|-0.08108291298084064|-0.35682118960543774|-0.03606064593639...|-0.02055344527139...|-0.06996842331944857|-0.17576722455609511|-0.20976499172806096|-0.20595603531196344|-0.22949747581654695|-0.077229419122147|-0.17313076520031645|-0.02304909605604177|-0.16702462128972845|-0.05628783790331...|-0.31460113581799043|-0.03913026093049507|-0.17341970717191532|-0.23137961714741287|-0.05026247659916389|-0.04874379712165686|-0.03919802401538...|-0.19322479514560517|-0.12810459166533736|-0.04926757577956...|-0.08652030620146052|-0.14019825138483027|-0.08187407457751014|-0.0929863679872003|-0.05690614457318...|-0.05677074942669977|-0.1022484809644203|-0.10328930827161571|-0.2868877976334306|-0.0978145214864471|-0.03901181743779024|-0.15734384625133324|-0.2836580776225798|-0.21231955453005438|-0.16771512269327118|-0.2739574427261579|-0.354326138622012|-0.2695861847600906|-0.22919213115634773|-0.07074373145966605|-0.08600333372334969|-0.09486098961233637|-0.1227061505824716|-0.02826106615838...|-0.2653785626864632|-0.18006384517724952|-0.06508707796710951|-0.05224626855888223|-0.16260089670782826|-0.09009075778431266|-0.03346697812300506|-0.06942732978892546|-0.03421456625710...|-0.08048726392661786|-0.1379074606999219|-0.1292540449692126|-0.2570691101395688|-0.07035581021677265|-0.12967624114009768|-0.07282574588825501|-0.06055130315560812|-0.07696281208098574|-0.06820232346510376|-0.08895335859064236|-0.17286430293575075|-0.05761345254188...|-0.19041315439945922|-0.20536250050487723|-0.19403904973695504|-0.32046556113791486|-0.17114468184690032|-0.13774184646625556|-0.0312632193677519|-0.17208916407527772|-0.306146284105984|-0.24553664770636519|-0.05561109420304703|-0.1019087224010531|-0.0769800868649658|-0.06073047965375856|-0.03609138417209...|-0.04742236276329945|-0.17802109725113244|-0.05855384088022...|-0.09041496953744603|-0.30011878263041303|-0.03121877597813...|-0.04117199895130...|-0.19767364390012265|-0.10307034207613648|-0.1330965603272122|-0.10249073102791645|-0.14565551259445603|-0.14784014638233986|-0.2526568673033468|-0.13060074587757634|-0.2005694183716077|-0.20004833444517306|-0.1799668516373672|-0.22128722882986315|-0.19356689903425545|-0.2396392085939401|-0.09644556106123063|-0.1999783804866801|-0.18601736706025312|-0.16984102409964566|-0.04183251728156555|-0.03635234923114128|-0.06661716779912538|-0.03482962914923...|-0.05231219141116681|-0.22446837002145245|-0.05749141995049435|-0.3273249911811096|-0.23259835296944048|-0.07030690847916299|-0.09878668748210317|-0.21544233350361527|-0.1662951580397708|-0.17909188172175555|-0.09357753601360308|-0.02180909846866...|-0.05634178238314816|-0.0683284258693891|-0.06834717018332599|-0.12429992033006175|-0.07169012355483884|-0.11294425308749421|-0.12510559727635132|-0.2083209870136463|-0.09774172587363814|-0.10910775216263022|-0.18171910407379685|-0.22935730041107835|-0.2204650279029564|-0.11598473385946728|-0.09382735095624717|-0.19140390651702582|-0.19031729733775277|-0.15976231655896575|-0.1542331619637009|-0.09178074798326764|-0.05778332624685965|-0.05462200142862137|-0.06879408297856625|-0.11108816067222238|-0.07183440953372318|-0.08033310271705106|-0.03747698625045388|-0.05106536140746185|-0.03016471578297...|-0.0787283134682969|-0.08227692571263462|-0.05850983223519745|-0.06900396339410009|-0.06014143326154596|-0.05603147838414121|-0.05338829895536...|-0.06925714677092183|-0.04554246979699084|-0.07680232326277497|-0.06081529793385...|-0.02766224120526...|-0.03816879474849695|-0.08066128023124039|-0.08738692238004311|-0.06950298025632147|-0.04911146364235232|-0.03478414172404...|-0.06040716972096...|-0.06680235487113773|-0.07865701261165653|-0.0676440238751584|-0.0689336466948544|-0.07625173969661647|-0.02951910906873...|-0.05552829549303899|-0.0693333611727443|-0.06590278000550695|-0.05637693416960...|-0.04138953871163...|-0.06121212228255...|-0.0525540639783587|-0.06798664890999763|-0.07472228958464631|-0.05975670098286444|-0.05193052238043689|-0.05593362526817999|-0.05559174072875853|-0.05855382112519005|-0.07663065316527375|-0.0407703920433093|-0.05783205071384947|-0.06045369856151305|-0.02867596792957217|-0.06783528246015763|-0.04394076103369...|-0.05725127994437...|-0.05845802273841291|-0.03562927524014859|-0.06010707765294...|-0.04559774857778179|-0.02830729696293533|-0.03659680833791...|-0.02840558977365...|-0.04707445710843...|-0.163319032184624|-0.03902057316105251|-0.06876684766533568|-0.0684753891235809|-0.02747890387368...|-0.08298013513072489|-0.07938944215346512|-0.03466246289287149|-0.04469937400034389|-0.07344375814015586|-0.06082083833439...|-0.0684163260693126|-0.09623831566716876|-0.15628447991785555|-0.2652914284552319|-0.02429961542336...|-0.08128159935081532|-0.02314709417849...|-0.04603523882356...|-0.02510667279540...|-0.03123286128647...|-0.03277646181710...|-0.03814179273677047|-0.15129213944599829|-0.10479115141912865|-0.06163554045835...|-0.19377514225871476|-0.02182226681532...|-0.04694747614408115|-0.15479067915124323|-0.02836017007646587|-0.04172192971119037|-0.1536277194241871|-0.07135108351214531|-0.01284171997662...|-0.02286136682821...|-0.19379320346496245|-0.07804508425250306|-0.05777784266539315|-0.01994627867621562|-0.04920076956738...|-0.14361652118426554|-0.02483734245229505|-0.1576989101435726|-0.17023813188695017|-0.18022515903864902|-0.04151596998127889|-0.01837517853676589|-0.05208401837217...|-0.17209463692269986|-0.15810140221403146|-0.12983612975481948|-0.05869532332874...|-0.13899928083006025|-0.09015598255332917|-0.07994146561557311|-0.11674528395262675|-0.06516907291750952|-0.01253530526409...|-0.10678147352205707|-0.05200308160733...|-0.07377654456549866|-0.04926879704661...|-0.07141446625922336|-0.08274371390013117|-0.083347623382602|-0.06678649289008033|-0.164495283100621|-0.04264291823172...|-0.02340048817493542|-0.01253530526409...|-0.01557265438368...|-0.01279011792126...|-0.01575658005207...|-0.12185231103380349|-0.03249582671206047|-0.02123678739146...|-0.04261754069647...|-0.04317014567780559|-0.03606556101345741|-0.02327487055548679|-0.03767310761934573|-0.02891468884097222|-0.04565208536426...|-0.04442230590265608|-0.04570931009240...|-0.03498700607546724|-0.02681959024271...|-0.08885247918686506|-0.04731706522441283|-0.05869581341302393|-0.11050496011728465|-0.1774461115639265|-0.10823773338808673|-0.03895317024458085|-0.05429907603513069|-0.01639899263466...|-0.02180409073941...|-0.01741060799472...|-0.04606077622079108|-0.08093963871293505|-0.08647514855075453|-0.02719146438290...|-0.07905103481991486|-0.140816673940378|-0.15574749169882993|-0.12563516450511555|-0.10247972587724465|-0.15354520993815585|-0.13302728010807624|-0.01998088484341...|-0.01748558130073348|-0.03275763098873967|-0.0417917569748425|-0.03495643341027456|-0.02789485342131...|-0.04052036132132457|-0.01785155916566...|-0.09365354268958274|-0.02408004515237846|-0.02528118518816...|-0.02873096951468...|-0.02939223554833...|-0.0391812660918459|-0.02910913550629...|-0.01936262929364696|-0.02488966778858...|-0.03751162750236069|-0.04414819668911...|-0.02298881234915906|-0.04272841124152446|-0.02883793985884152|-0.03608686476185129|-0.02731379640814...|-0.02422930096092756|-0.03927543049060629|-0.05271052115014865|-0.03435793960630...|-0.02830923711120...|-0.01754516662247...|-0.04862755493380...|-0.06142829162588096|-0.05334586493671...|-0.04870124157049757|-0.06095155091715662|-0.06495667419567952|-0.17419757648901027|-0.04942821172341478|-0.02335309919027...|-0.02147168827292...|-0.02317607063830...|-0.02213935123208...|-0.01470130196867...|-0.01586527269632...|-0.01862315021504...|-0.02320027124859...|-0.08349062893733368|-0.02497660896531...|-0.03112911111474...|-0.02427685462697...|-0.04184381431280...|-0.01959168355104...|-0.02661812829125...|-0.03324436391587092|-0.01440597920664...|-0.02090354738997093|-0.02099755570744...|-0.01969944558141...|-0.01858925786972...|-0.02448996639103806|-0.02539555235190...|-0.01975588414871049|-0.02392133944576...|-0.02157952529840...|-0.02959448764397...|-0.02598555935344769|-0.02122936290264...|-0.0294377156320254|-0.06470305282895082|-0.01755973058198...|-0.01712593945027...|-0.10205145919906243|-0.10222711798842554|-0.03563037774186...|-0.03811135545895732|-0.03017452274428118|-0.03127994086163251|-0.02457230060020...|-0.02616884123015...|-0.01810881332325...|-0.02181178929207...|-0.01574409558607...|-0.01706183092582...|-0.04806597468820393|-0.03804725714765149|-0.01748633699173347|-0.01630231824725369|-0.01645115105527...|-0.01577674798623...|-0.06558110808458492|-0.03817283824371426|-0.01918617118494401|-0.01732737159786938|-0.01977857005295...|-0.06600972051941578|-0.16955379029558848|-0.05092113993330044|-0.15327147594380383|-0.1883280307497804|-0.18799380063909027|-0.08508393764000223|-0.09507374177866702|-0.16491311104859874|-0.14186597132094314|-0.11912923647608754|-0.08110284797775659|-0.15452898452585936|-0.0921152666105353|-0.12389595701028791|-0.02835499392988...|-0.05216868295501082|-0.1765105634340951|-0.15955033693108406|-0.07952451837065207|-0.16522854355878597|-0.05006322192952576|-0.16630215769828796|-0.1657770176104409|-0.06499678285551905|-0.04547718438072724|-0.12307504874806376|-0.04219979802730306|-0.02863615700960281|-0.02851080161034385|-0.13358307083670315|-0.1857060074224024|-0.04020645390944...|-0.15145901203021012|-0.11662422839193234|-0.1812252939087378|-0.10582759367064391|-0.21613233213976601|-0.08825968161376781|-0.02059048307781...|-0.01253530526409...|-0.01253530526409...|-0.01676273653844812|-0.04044590391164721|-0.06846035552533167|-0.03673653849099...|-0.01253530526409...|-0.07159927723334882|-0.0701970020252842|-0.141924439970132|-0.0461458037190024|-0.03690415143417546|-0.03160483874655844|-0.03099989863000...|-0.02608892646661...|-0.0840569666385692|-0.03226244462731307|-0.03800099848366229|-0.03797124822430...|-0.05690104997587946|-0.08390871225887878|-0.1454430005026461|-0.03436795476465...|-0.08940578265549738|-0.07060535953449967|-0.07265120572560493|-0.02999016399251...|-0.02972591499422...|-0.09283982673045996|-0.09082744195629047|-0.1255767611422195|-0.03985527136064707|-0.05707205529404569|-0.03208249609837...|-0.01923945591116...|-0.04691359663293...|-0.04043567982764036|-0.05549930403545291|-0.01653072240272...|-0.01744258309193761|-0.02429241176595239|-0.02150030751208179|-0.03966776053060233|-0.03623618263933...|-0.02043680933667342|-0.05826594805976424|-0.04696467892205765|-0.04832036121798...|-0.0445349171944025|-0.07089333776695039|-0.06788458421447466|-0.03131891435977...|-0.01253530526409751|-0.01991751766313...|-0.01712795687559...|-0.02521228578213...|-0.01905540253011...|-0.01253530526409...|-0.01253530526409...|-0.01699519163864...|-0.03551238297740...|-0.05501084654776157|-0.06587495469678659|-0.11853272929802114|-0.16465109365272598|-0.19684244062398873|-0.17183661047238377|-0.04037440077856168|-0.08374924359920033|-0.02327837831207...|-0.01253530526409751|-0.03180856784601...|-0.04556783138318...|-0.04954714235440076|-0.04845066950631...|-0.03964821898581...|-0.0430779087359009|-0.14951371195680485|-0.0396678618750845|-0.03914819539424013|-0.035457282891395|-0.03019054285845121|-0.03953607899865486|-0.03948351219812639|-0.03087642264337...|-0.04938737729687661|-0.03297383499171809|-0.08313009424316473|-0.21099552380310377|-0.06665406618852494|-0.04050624283825...|-0.03477963388819822|-0.02372579679652444|-0.02890150071580...|-0.11664939487286362|-0.13272898541336034|-0.12991032620425721|-0.05402053661696...|-0.02543417953756144|-0.04073947694943...|-0.05368909050806241|-0.02891223595627984|-0.09484350364075614|-0.01253530526409...|-0.16231085143034074|-0.01720218259752...|-0.01253530526409...|-0.049199630598785|-0.02221909474091...|-0.03167773953206413|-0.05931018152034...|-0.03624336136213705|-0.03018321023691...|-0.02306278416702...|-0.04133321872669...|-0.03990507196900694|-0.02520689904305...|-0.0233440539531184|-0.02400711845445387|-0.02860867222035157|-0.04474334288258...|-0.09775756557125663|-0.13104483262700178|-0.01718619643036...|-0.01737830823044957|-0.03599495525901...|-0.01780241812724...|-0.16416154810618402|-0.08548698995357433|-0.21447182228657505|-0.02185567380570962|-0.03113897636372626|-0.02984323988752823|-0.03021115798276...|-0.01465747610160...|-0.09959748211734074|-0.01708247990289...|-0.14482523792806484|-0.04069848547661164|-0.01724740965914141|-0.01939958227196...|-0.04523597645212...|-0.02431570655620...|-0.01253530526409...|-0.01362729283850...|-0.01272152434671...|-0.01253530526409...|-0.11942458701375376|-0.10527509281215315|-0.01274329762034...|-0.05376768676621204|-0.01578649463036322|-0.03165464015667...|-0.1273603150636014|-0.01839339370273...|-0.13958727633063944|-0.01355337199942...|-0.03286001669391199|-0.02887450057176965|-0.01734046546809...|-0.05132255523307...|-0.01253530526409...|-0.01698112067578765|-0.11796815457215197|-0.02678033419822...|-0.02595043079555...|-0.01608568088398...|-0.01772087717090356|-0.02162280812452...|-0.02528457219126...|-0.01863628232025719|-0.02070783829610...|-0.02644988387560...|-0.03361426756935...|-0.02021326275910...|-0.09337779395829887|-0.02234741151367...|-0.01653256920412483|-0.01286893549501...|-0.0178187893984519|-0.01763219421091...|-0.02592251780181349|-0.01691316277838...|-0.01946529301827...|-0.02569301096415...|-0.07553787848813365|-0.09796171602340774|-0.04487350040582298|-0.09386466893729185|-0.05039202890702036|-0.04918143638355889|-0.0641941427052212|-0.1024360274020276|-0.17858775697422077|-0.05370641671915822|-0.10491637026481458|-0.05088068548307155|-0.03615422375081105|-0.01434742400960...|-0.0679786359420969|-0.02823935190479...|-0.03352777143257...|-0.07156344816938558|-0.05899340223601993|-0.06556415112215107|-0.08837113265359645|-0.08869982847745128|-0.079250303096928|-0.05553685180041768|-0.0907724973751452|-0.07586765719054685|-0.07408274218594411|-0.04917165740539179|-0.06168551307559296|-0.0539388061794301|-0.19057317550429118|-0.16606767651279855|-0.07148969751260914|-0.0551892547802984|-0.07194585816972217|-0.03894193938293...|-0.1552378085604564|-0.02374465829594...|-0.03250329908373...|-0.08844260550388973|-0.04965604116592365|-0.03182342768020707|-0.06586663695127064|-0.05547382197374394|-0.08364642352795536|-0.02393038730109914|-0.07810859755051143|-0.0679020092385906|-0.03831882849007365|-0.05329289204207...|-0.05215929066952642|-0.05272051155624...|-0.1669842984467363|-0.18532324416850765|-0.1004906629101323|-0.07146506007717222|-0.05732518632066...|-0.08116820765442534|-0.03975776820428882|-0.04283047334850427|-0.03275305410992...|-0.15280101229169027|-0.08616561570330392|-0.15461211184483342|-0.1067271347986758|-0.19281338034653747|-0.08718403405693788|-0.03860656402166669|-0.07445750709802315|-0.07231992203493734|-0.03725671583122...|-0.06718662909772438|-0.0660620396114663|-0.0589296882337908|-0.08154857356852267|-0.03119384331775222|-0.07324581787919375|-0.07209196791646169|-0.08503036208973905|-0.05861161371810323|-0.10944638975054101|-0.03116048537831...|-0.04170842369665658|-0.02580540941785514|-0.06347627953483045|-0.02307773480319...|-0.06408196841102208|-0.04435504405363148|-0.04376584321139852|-0.03458673217708...|-0.05595697804401885|-0.04215416752814...|-0.07105296826818647|-0.06755273300113215|-0.14945492079821143|-0.0641255326298561|-0.04612801356160128|-0.06077477569305041|-0.03736622522494803|-0.03303583889778883|-0.048919207997536|-0.0326103663097915|-0.04418332591702678|-0.04836256567322...|-0.15135047432476728|-0.06551335988298622|-0.15877099942482015|-0.02858985977393...|-0.0820993130216828|-0.04364841447457989|-0.07762282493729054|-0.05216804146170484|-0.02018282555478...|-0.04922170344223668|-0.05485701297582194|-0.02434719911201...|-0.03385195162157549|-0.0339865450314757|-0.1750703171460503|-0.1844733976267893|-0.15779264620469172|-0.07489727430131289|-0.08043699371101562|-0.02855387502330024|-0.02126696663637...|-0.04125129915459362|-0.03487583989744462|-0.05621294016685502|-0.03155555340163481|-0.02714849743139316|-0.2195534014379215|-0.05568695418694244|-0.05376395736828006|-0.07089089119536318|-0.04196536001005...|-0.03961264823201234|-0.03237100792439921|-0.05921055151808...|-0.06964349935998672|-0.0583256250009784|-0.04143067474669115|-0.03288248962067...|-0.03066838934696...|-0.06578606760034678|-0.04015873863988517|-0.06585146893393135|-0.02253648197300...|-0.0753870393667766|-0.05454197985286951|-0.01271109157545731|-0.03389125862749...|-0.1028397078670282|-0.05884173105492035|-0.02016315311239625|-0.0337102880385371|-0.05539715538085...|-0.04663665809407669|-0.01672538228795...|-0.06728866786798234|-0.04542321341331...|-0.03811512716556...|-0.05319897385057129|-0.06707903158693398|-0.01734376606184107|-0.01391639250227...|-0.03419429609847213|-0.06829272010343974|-0.02688300523335...|-0.07666425194814039|-0.02485307028571964|-0.04037097357153...|-0.0207464668287628|-0.03115361990619537|-0.01965155882152986|-0.03581679920595451|-0.03345238187797073|-0.01683046508650823|-0.04025497633757...|-0.0442085092959046|-0.02150571661525402|-0.03155012785633747|-0.01429929243418...|-0.05589043035575016|-0.03740820253807603|-0.02520125528979...|-0.04735267714455...|-0.02574816933206138|-0.06505247920646023|-0.02697461224751...|-0.04734736841186551|-0.01407529370719857|-0.05914496649860676|-0.03922412222491286|-0.06689952277770272|-0.02458862012416934|-0.02433821406936...|-0.12122169921275922|-0.03742415363043...|-0.06723736207458282|-0.16075529196709912|-0.0408886548194812|-0.0461009232359421|-0.1587941615636298|-0.01253530526409...|-0.13529242753616316|-0.10592355352598681|-0.11648555746286952|-0.14215926380613783|-0.1999275358394026|-0.10107306805465013|-0.10202831223257526|-0.10943368989714025|-0.17998767924692086|-0.10898381213868247|-0.02455901241708...|-0.13085640810855748|-0.07227547157534706|-0.03854273765785333|-0.06689716745077018|-0.04492135722567...|-0.15738647381617274|-0.1414972789658726|-0.241870055238358|-0.1102817612756218|-0.08847440318033642|-0.08352404623462703|-0.15873333054595834|-0.21477347188147536|-0.14128580572141033|-0.2463261708356197|-0.11497494664033617|-0.24764559691564064|-0.13245012613535045|-0.23885521759614645|-0.21411066943640233|-0.23348548237504296|-0.1981247060915251|-0.23806058357007504|-0.2377379406836483|-0.14193370212855158|-0.17409773394051023|-0.08299118693221612|-0.05660615367570514|-0.0424926913764688|-0.20352072660474424|-0.11891284908198074|-0.13191887796593083|-0.15735827211370398|-0.16828143722863106|-0.16681834831558198|-0.2544216250569107|-0.09146350906017252|-0.01881627079831687|-0.06387049626546927|-0.02977423810692...|-0.05505747172184...|-0.03409043445479625|-0.07730158428699553|-0.01981940484032...|-0.03789566610032968|-0.0525782479754935|-0.03875166341242...|-0.01436569184427829|-0.02204981702529...|-0.04034693952619438|-0.03795591397921857|-0.08140051218216497|-0.01596851190770...|-0.06720062257866412|-0.02849478214106783|-0.04508184803730...|-0.03931571237361597|-0.05298008623917...|-0.06783376317483056|-0.01999504831150...|-0.03330391898413436|-0.02173500315233447|-0.02938801472121534|-0.02648174427273...|-0.02719232191460...|-0.05894425815773142|-0.02429042838374...|-0.03115976832961601|-0.02733271274356...|-0.02656514946362...|-0.02974047711046...|-0.02699547707573917|-0.03464611268909417|-0.01963163998524834|-0.03003194523061...|-0.06162613673291529|-0.04859341447082878|-0.04484341392963131|-0.01844332422277...|-0.10025832979013694|-0.04062362072148439|-0.06295832903523882|-0.0830669386326368|-0.02306229377981...|-0.04793731648274038|-0.02924546403913696|-0.05664151071872345|-0.01397207521517...|-0.02438672362647787|-0.03846229718136...|-0.01253530526409...|-0.05911292882395176|-0.01253530526409...|-0.04743148408928239|-0.09778712481641308|-0.04060009385423422|-0.02934938821816219|-0.02564108335254...|-0.01450157513036...|-0.02389263567228...|-0.09864355907803474|-0.02416419776910393|-0.03271317470631243|-0.01475145848843...|-0.02211707598809...|-0.01337513093045...|-0.04199888526708...|-0.02538676421348...|-0.04202501563997...|-0.02005194956461...|-0.01932654746431613|-0.07353573932433866|-0.07591959991521248|-0.07368133146428031|-0.03258424951470...|-0.03700548503414839|-0.08634313308408828|-0.03393711634379...|-0.02338509705111389|-0.04068470765417726|-0.0738188175233493|-0.04054593861649178|-0.03525251476928512|-0.06339286605549259|-0.02440688586327...|-0.0350083825291547|-0.01453099931956...|-0.03140695490966...|-0.03438030508069088|-0.02320548674881...|-0.01955897161477...|-0.2119453882657604|-0.02724711029920307|-0.03955507062111815|-0.01522307135234...|-0.12713088244766477|-0.01390143924727...|-0.03901494802117484|-0.03116683147704...|-0.07055201814638727|-0.1860004678050947|-0.02275109662342...|-0.01673349661469615|-0.01993563509488132|-0.02493234490758...|-0.02290584251770...|-0.02234763554672...|-0.06183071350583...|-0.02207194914306147|-0.02648788664492...|-0.01904507911367...|-0.03545198712111162|-0.01746276766334...|-0.01253530526409...|-0.10978462851423498|-0.13122932551473437|-0.02544392506271432|-0.01923038587024441|-0.021408897417373|-0.01253530526409...|-0.01959837838047...|-0.04098692556755546|-0.02222668991637...|-0.02953060581472249|-0.02330648179183|-0.07258579249990345|-0.04489864614030742|-0.01988926962247...|-0.03340991872690119|-0.06208952744227126|-0.01658157869264...|-0.16109070385414526|-0.08417740907338389|-0.1367541956635|-0.13299711997135552|-0.17731899240133722|-0.09659178931409441|-0.08701703059487687|-0.1674173873846272|-0.02801354269879...|-0.11128702269196548|-0.158017345572961|-0.138961954497253|-0.03150143221240...|-0.03996307304204553|-0.04286764466615509|-0.02604220228764136|-0.02657805897124...|-0.02751955840217...|-0.02002488897828...|-0.02888525849803...|-0.0231783599576937|-0.15287691366574702|-0.14342299839976994|-0.15773449913297652|-0.04233147899236448|-0.05234200784074...|-0.03153900245061189|-0.02249865949236083|-0.02348753982549...|-0.02225974213386426|-0.03675494918117716|-0.02141673323709...|-0.1080231980837484|-0.09923509422246723|-0.11411691141738221|-0.110801854396862|-0.10208510845913639|-0.09363316433921401|-0.03730186088818...|-0.0583035281679872|-0.05731242888264...|-0.02510219750095...|-0.06889285055097355|-0.0411965970627713|-0.03411616149188449|-0.06254702253528059|-0.02812046116107...|-0.03134970969839668|-0.07777957499538092|-0.0359203216041072|-0.05001432768965812|-0.09075388215444528|-0.01918906724502995|-0.07272940849628509|-0.02646821038899...|-0.04144669463027...|-0.02467755626325781|-0.02453604382485661|-0.01852959193214374|-0.02385113934866267|-0.03007787037926258|-0.03630690258933342|-0.02049735774139...|-0.05188507605921232|-0.03285749893063...|-0.1023273561343606|-0.05701271924549412|-0.03695085829468...|-0.02528525888014...|-0.03514862969422335|-0.06315422458716945|-0.08442013008903061|-0.03248254501603...|-0.01600185459343...|-0.07869923487030528|-0.0406852580123631|-0.08468811896223748|-0.01579252939135...|-0.09925283260251333|-0.11103449069372866|-0.02398306909036277|-0.01907471592915...|-0.10194669998480883|-0.0967105927629049|-0.10782489282679589|-0.10331252122117908|-0.1264958250279843|-0.06593493753820108|-0.02086683052149...|-0.09880288962918538|-0.10483132370879088|-0.0931371043936155|-0.08587320941157454|-0.09009065143347855|-0.0906528829890335|-0.09899411526283797|-0.0597443707692986|-0.09301701461298499|-0.04543465423551255|-0.01605292670906...|-0.09477420289083621|-0.08128850418270253|-0.03699453223402...|-0.09501908502934335|-0.02767461323902...|-0.03225080527459...|-0.02926611931041...|-0.09560786748631955|-0.09470379906585136|-0.03695635949827397|-0.02113736810443...|-0.02741881539653...|-0.02066866897596...|-0.09673261678552149|-0.1495173892213675|-0.09527687218016286|-0.09952266712996793|-0.09496727001178966|-0.08315685009688373|-0.07888747675621312|-0.11315348779839343|-0.1065024456731681|-0.08625417162719866|-0.04226836260927698|-0.09384383179949045|-0.10162162577627748|-0.08157815979917603|-0.08890201100247903|-0.08562497280306662|-0.03058470500679914|-0.02551964908936...|-0.04235257861511979|-0.030839991248366|-0.04223992181450...|-0.02802760661462646|-0.03024098648466...|-0.01628215897984298|-0.02605710471535303|-0.03918358240922007|-0.02556570537981...|-0.02536124644775...|-0.05175054074121579|-0.01253530526409...|-0.01482555587915...|-0.01585719938138...|-0.02464861319258...|-0.01253530526409...|-0.02004628085949...|-0.02443123885328...|-0.051735194466199|-0.01253530526409...|-0.02494146758784...|-0.02026723767334068|-0.02092487755752...|-0.02220984121454081|-0.04209921752862985|-0.02279082905753...|-0.06521620733687734|-0.0656798546589098|-0.04012332531549182|-0.05743583720231...|-0.0777470962327653|-0.05538029052636957|-0.04440173187780372|-0.06414063798363762|-0.06019079253350647|-0.04960980157382711|-0.0861055991796224|-0.0966509574869616|-0.0745020389703442|-0.0586207166256548|-0.05267027745599264|-0.06867971799078121|-0.1310183489867955|-0.12985847689595542|-0.07993554118761545|-0.07411106008797205|-0.05760411305905985|-0.08142219632741006|-0.04876126397020748|-0.08017137654605401|-0.05729535722555...|-0.0397936604947615|-0.13025951898451374|-0.10632011314053678|-0.03182553967807...|-0.02293397331746164|-0.10446227564018797|-0.16226318462193035|-0.13741919943783265|-0.1246934994860268|-0.10340843541286893|-0.15640287889787452|-0.15589855445632575|-0.15525631068944865|-0.04646670938477778|-0.15871396442791236|-0.0329326865033875|-0.14495769490217733|-0.15959244033079217|-0.01253530526409...|-0.04646680816969091|-0.15233055799753317|-0.03342029416825774|-0.1275115042991426|-0.05426048818358968|-0.03489009989723...|-0.128836808033593|-0.03253546543822635|-0.03571495391034988|-0.03839472717928764|-0.03960509833307029|-0.04191380212584684|-0.02968404605942...|-0.03127461954150156|-0.03812652847361...|-0.02762807673123...|-0.10651132871048208|-0.04841679746289642|-0.03636206604427824|-0.0176569853802011|-0.04717863332665411|-0.04996942487293737|-0.01838423568804...|-0.03985330173116809|-0.02905966691017441|-0.01525459731632432|-0.04079140702508441|-0.01903640133523029|-0.03626360198523304|-0.01683006030293...|-0.01488816634433109|-0.01847107307636479|-0.02150241061117407|-0.01514777625236...|-0.01950840490775789|-0.01776384428551...|-0.01607715648240...|-0.01253530526409...|-0.03214294388892...|-0.01749422030377...|-0.03054443102992...|-0.01818151444303...|-0.01982655019057...|-0.02371586945520458|-0.02115524762779915|-0.01526358875218...|-0.04684978106529472|-0.01766021875146...|-0.01627706231488...|-0.01641905371409...|-0.01741752342569...|-0.09354024199397377|-0.15132782338164535|-0.14268244555925685|-0.02133826707748...|-0.01724549907676446|-0.01887151108006093|-0.01294703580645...|-0.16726171933903877|-0.01253530526409...|-0.02461251476503...|-0.02396199582193...|-0.01264171546307...|-0.01253530526409...|-0.01253530526409...|-0.02424722094433981|-0.01325001179093876|-0.14713606768385964|-0.13591257860494171|-0.01294975687574695|-0.01481241569941...|-0.04634306467794264|-0.01455965042687...|-0.0281453340990975|-0.02766955975921942|-0.02884990530113...|-0.03633955274681321|-0.02045035889082092|-0.03831684727028403|-0.02900388933712...|-0.02946153392733...|-0.04224974861100...|-0.02894672984207756|-0.02664301551975...|-0.03035415388836...|-0.01729057821813187|-0.01728589534177...|-0.03573731601674...|-0.01253530526409...|-0.02394941193650425|-0.03134767333060446|-0.03299656457423951|-0.0155923492433667|-0.01253530526409...|-0.01859960577730...|-0.02013705063511...|-0.05404527567070459|-0.01421052170221...|-0.01526537616196...|-0.01598424577024524|-0.01450510830797...|-0.02078894836726...|-0.01419131339426265|-0.01319541506961486|-0.01927476625725904|-0.01920320390192...|-0.01983913067394...|-0.02374931997460284|-0.03698170358014311|-0.02181180277370...|-0.01908191608512...|-0.03666586518099262|-0.05316723540601...|-0.02605902142338...|-0.03001403760670581|-0.02110799070984799|-0.03923256604835843|-0.02281775027705...|-0.02126281749316101|-0.01253530526409...|-0.01253530526409...|-0.03246164553595169|-0.0246221520190236|-0.02726037741856...|-0.02959999934821...|-0.01253530526409...|-0.01672422000146...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01292670508594...|-0.01643250389487...|-0.01571667691083...|-0.01345245100707...|-0.06912913396710307|-0.05224570632060724|-0.02294612223923189|-0.02699848943518682|-0.03150373617783074|-0.01253530526409...|-0.02201747211162...|-0.02825975043549447|-0.01623645433952038|-0.02309177604050...|-0.01253530526409...|-0.05271045343377608|-0.01253530526409...|-0.01253530526409...|-0.02235166442481563|-0.02398957251167...|-0.04506300777585498|-0.03257402234815258|-0.01771631449665151|-0.01253530526409...|-0.06664354815190994|-0.01637404272083...|-0.02254276977813...|-0.01307614414923...|-0.04671550282429283|-0.07375169484407176|-0.0162358913185701|-0.0717057743564475|-0.01741629550527...|-0.02080164607187...|-0.03404436194431...|-0.01276760816921...|-0.01771438955560562|-0.01558957506516...|-0.01527758903868...|-0.01995504145089...|-0.0333967269989615|-0.03235576654348234|-0.02086846759355001|-0.03290466057127785|-0.03129065203585669|-0.04007682784236569|-0.03316593507158114|-0.03272945705842481|-0.02436106547235383|-0.1664878581709092|-0.01943308304048869|-0.02205354808784...|-0.08332617709133693|-0.08339506603350243|-0.01926728438019055|-0.05446432201102848|-0.15249018829091587|-0.14658441538331057|-0.15879390067474586|-0.1519084426909212|-0.14978731490429636|-0.04860938636973406|-0.02408677228758...|-0.07125457198926703|-0.06623898051708989|-0.04895904019766...|-0.04816144776768264|-0.069095762691167|-0.06160081189344...|-0.03896125221351899|-0.02476940422598...|-0.03027776830298...|-0.03537762410593287|-0.02566055120304...|-0.03112979685708...|-0.05475844489868674|-0.01824084567448...|-0.03327048520450332|-0.03187575524058429|-0.05870441839562345|-0.01919180668138...|-0.07224811361934234|-0.07323703337089141|-0.05093818288514354|-0.07390041572861683|-0.06216210055522264|-0.07751456377221864|-0.07088256219017237|-0.03030301803627...|-0.05221610814766532|-0.04178845992699953|-0.07341170825003915|-0.07195890854818207|-0.05660507180820...|-0.03476637994802145|-0.01690787544130...|-0.067449311076602|-0.07351893558887462|-0.03507260706674097|-0.03054147155475802|-0.07209037530077307|-0.06366154876363496|-0.05182359259097184|-0.06665303012654963|-0.04242010031752635|-0.03781980281435005|-0.06402338523390858|-0.02308066136557...|-0.05073031428779072|-0.07137838458973725|-0.05871282674631711|-0.05581905043243...|-0.06580184336969125|-0.05720793666761366|-0.05450252739349...|-0.02268147650038...|-0.04045087849155...|-0.05056650709372826|-0.05641304221224261|-0.04867795739408303|-0.02820689916072...|-0.05864977065519...|-0.03069970629800...|-0.02947525118743...|-0.03990723575022...|-0.02545539046826...|-0.03247667774261927|-0.02386590244154...|-0.02142290617987853|-0.02658064564549...|-0.02598914146543...|-0.02902761793381...|-0.0244102654109476|-0.0209416121279024|-0.04384541509688057|-0.02437569191971112|-0.02234106621461...|-0.03188227102174984|-0.02326207340631...|-0.02423972403931877|-0.02218094926694...|-0.01789987165418647|-0.02267995054600638|-0.03515083073708...|-0.03704209259973922|-0.03405014811916035|-0.03851956419395509|-0.03609915208408622|-0.01682190255989...|-0.02521752367004669|-0.01253530526409...|-0.02447505089332...|-0.01850495848790955|-0.01868654923194...|-0.01425868910876522|-0.01734259877157833|-0.02099258870913...|-0.01422633739385...|-0.02048813136764675|-0.02588484615141...|-0.01613817269392121|-0.02049883835062743|-0.01253530526409...|-0.03371181114421186|-0.0343879024983298|-0.033915777187617|-0.02032364322449...|-0.02949845463018714|-0.03069877673778...|-0.02061204066950351|-0.02120430373182...|-0.02472345619949...|-0.02270718857421...|-0.01298942408385784|-0.04260486259305084|-0.01398775146586...|-0.01681667914055...|-0.02986146716409154|-0.01733900623132422|-0.01510350868270...|-0.01253530526409...|-0.01253530526409...|-0.0330596392361737|-0.03244127114734586|-0.03487652976400519|-0.01879152115534...|-0.01944329662943...|-0.02256797829575...|-0.01720636706916...|-0.02407564723463...|-0.02105865407464...|-0.01697174406657...|-0.04046571149371147|-0.02874981447152676|-0.02882365172658...|-0.02808926869834586|-0.01862037147822...|-0.02861820122070...|-0.02061487540105...|-0.02563634846802...|-0.02709183732261...|-0.03127664263715832|-0.03193546656638005|-0.03095982116797...|-0.02667629146476784|-0.02397513314539...|-0.02832771374323...|-0.02522160175912...|-0.04158630164117067|-0.02690375511238...|-0.01253530526409...|-0.03050160615347366|-0.04175463287817...|-0.01253530526409...|-0.02421651791350...|-0.03397255420254003|-0.01329276300431...|-0.03237075977356102|-0.02552889653922254|-0.02429819645393855|-0.01402273864549...|-0.04284413524229461|-0.01539884137391...|-0.02070071847359...|-0.02484432787944...|-0.03010772535148495|-0.02426919127258...|-0.02315407211748...|-0.01619223466096022|-0.02926605508369...|-0.02362891100887...|-0.04130113188924037|-0.02171519806721543|-0.03297026325809504|-0.04193181665521881|-0.0490249633394661|-0.03416734993491...|-0.02935365517765359|-0.04236541758707675|-0.03678220502492...|-0.03498576469388172|-0.04462173100887154|-0.01516825930718...|-0.01703229361277...|-0.01253530526409...|-0.01253530526409...|-0.02544762394769...|-0.03609983958881902|-0.02398521916425...|-0.02437321925997174|-0.02171519806721...|-0.01911792669417...|-0.03208011151444031|-0.01837959852808...|-0.02239763213288...|-0.04164946404585...|-0.05037868427764588|-0.01663882997260...|-0.01253530526409...|-0.02616955488265...|-0.01606311479375...|-0.02246666286776...|-0.0390590808957263|-0.02171519806721...|-0.01253530526409...|-0.02805026849726...|-0.02302154951401...|-0.01894484841985...|-0.01776817663338...|-0.01828663561188...|-0.01494980390238...|-0.02203524211095...|-0.01909816452190887|-0.01253530526409...|-0.01530506759858287|-0.01253530526409...|-0.04233290488610049|-0.02021406141666456|-0.02214853605830602|-0.03157613688872718|-0.02838641537388...|-0.02676776565478...|-0.02908452682552...|-0.02181256520167...|-0.02636730281999...|-0.02504037232676046|-0.03780571699367798|-0.01826639444229...|-0.02136819405882...|-0.02541080604858...|-0.01423384559727...|-0.02091416946480...|-0.01899177765470...|-0.01413257365485...|-0.0261510553160351|-0.01253530526409...|-0.02052550345546077|-0.01860371134729...|-0.02211894201629609|-0.01253530526409...|-0.02328030804560...|-0.01253530526409...|-0.04135496001411825|-0.01772070316010...|-0.01461339602790...|-0.02171519806721...|-0.02083605409139597|-0.01253530526409...|-0.02376540396516...|-0.02494027581850709|-0.01679585292910...|-0.02425221712718...|-0.01547450165426...|-0.02468458154509417|-0.02686984985535...|-0.02588205200294...|-0.02412779215383542|-0.01253530526409...|-0.01337343806805...|-0.01919878882140608|-0.02169786241970...|-0.01506432230511...|-0.02680507622184411|-0.02675613457629542|-0.02624694593015189|-0.0253853895300528|-0.02171519806721543|-0.01350148489580...|-0.01253530526409...|-0.01253530526409...|-0.01775630771908...|-0.01819799705194...|-0.01860166905854...|-0.01918945284255665|-0.01323880479552...|-0.01406597904063...|-0.02075164821487...|-0.01845218258492...|-0.02171519806721543|-0.03017432102856888|-0.01253530526409...|-0.01253530526409...|-0.01536460931316...|-0.01633492528981289|-0.01524018221630...|-0.01888324415060...|-0.01253530526409...|-0.01253530526409...|-0.02442207193970...|-0.01826519765450596|-0.01756098791503...|-0.01751650318719771|-0.01253530526409...|-0.01253530526409...|-0.11828964769806191|-0.01880638223754...|-0.01492421881356...|-0.01651180763916...|-0.02754521440964...|-0.02507221339433917|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01974834555200304|-0.01768396404016...|-0.01898542899455275|-0.01567341210477...|-0.02117650079224...|-0.01900951018891...|-0.01774568419985...|-0.01690510302238...|-0.01358298173947...|-0.01253530526409...|-0.01934904707323...|-0.01253530526409...|-0.01603289575171906|-0.02178001923083...|-0.01432414761615...|-0.02034639052362...|-0.02909081528935...|-0.04406388796671537|-0.0386701817405381|-0.0239177091159095|-0.01992263919029388|-0.01301628347317...|-0.01771565123160632|-0.01329108945404...|-0.01338442380647...|-0.01846147795769...|-0.02149788590180537|-0.02171519806721543|-0.10711225980910805|-0.01253530526409...|-0.01673571541865336|-0.01928508341519...|-0.02171519806721543|-0.03511011819221...|-0.01643450187480...|-0.03215625471535802|-0.03369024077051305|-0.01722588834163285|-0.01996480147735...|-0.01585995781616...|-0.01582817555441...|-0.01771192825579...|-0.01253530526409...|-0.07221299698259433|-0.01253530526409...|-0.02873252003267...|-0.02189132311711...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01399504068788...|-0.01262263416179...|-0.01253530526409...|-0.01253530526409...|-0.01342951514783...|-0.01603203118121...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01370884592458...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01299595276722...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01281102672722...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01415660837783...|-0.01537465706328...|-0.02933084253167807|-0.0125353052640975|-0.01679458415742178|-0.02302404318500...|-0.01634860563700256|-0.01596533141929...|-0.02002349435431...|-0.02402644840233...|-0.02465617364197...|-0.02149115280446276|-0.01706946638657...|-0.01253530526409751|-0.01801284765157559|-0.01913027109278196|-0.01253530526409...|-0.03285502683798...|-0.01728257641737...|-0.01709021199591...|-0.01592983718364509|-0.01253530526409...|-0.01891183436077981|-0.01253530526409...|-0.02183907960590...|-0.01253530526409...|-0.01793482743122...|-0.01696652144640639|-0.01583373427010...|-0.01484712338160...|-0.01345291021280...|-0.02279205348179336|-0.01706611843066...|-0.01253530526409...|-0.01994467550296...|-0.01391010473843...|-0.01763626100544...|-0.02638063317880804|-0.01710225932460...|-0.0162814710327804|-0.02128930601552...|-0.01748228381190188|-0.01725598809926...|-0.01985106950580...|-0.01626246097396...|-0.01754275897116...|-0.01253530526409...|-0.01253530526409...|-0.01689769835940...|-0.01824077092964...|-0.01454766695137...|-0.01253530526409...|-0.01613270081853...|-0.02072559319138...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01310237795132...|-0.01772629675196...|-0.01253530526409...|-0.02055078466182...|-0.01769044412442...|-0.01402285625569...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.03165314881105696|-0.02247161250255...|-0.01253530526409...|-0.01390759986044...|-0.01253530526409...|-0.01670700896530788|-0.01253530526409...|-0.02691881356112046|-0.02150779453362515|-0.01897511038699...|-0.02171519806721...|-0.02373468305757...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01749002511191...|-0.02052176790488...|-0.01253530526409...|-0.07981410892370255|-0.01944906220579263|-0.01798605897820234|-0.01376040679851...|-0.02541411600383388|-0.01332669261355...|-0.02194160752041...|-0.01253530526409...|-0.01253530526409...|-0.01765176945836...|-0.01769418866327...|-0.01965135217109...|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01387083103708...|-0.01253530526409...|-0.01629030890316...|-0.01598511256106...|-0.01253530526409...|-0.02375143976135...|-0.01253530526409...|-0.01809703984959...|-0.01772450861786...|-0.01253530526409...|-0.01253530526409...|-0.01327736874371...|-0.01265972467981...|-0.01253530526409751|-0.02631034067213...|-0.01668528498536...|-0.01571896763333...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.0125353052640975|-0.0298896235905307|-0.01929251649515151|-0.01253530526409...|-0.01253530526409...|-0.01630507333875433|-0.02345467432947218|-0.02029996650094801|-0.02339641319796861|-0.01662372032677...|-0.01253530526409...|-0.01253530526409...|-0.02926819746066...|-0.01869312062516...|-0.01253530526409...|-0.01655212081484...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01690163698577...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01603845075993...|-0.02965128572246...|-0.02376426872813861|-0.01253530526409...|-0.01253530526409...|-0.02571852240630...|-0.01253530526409...|-0.02285022676111892|-0.01253530526409...|-0.01253530526409...|-0.01772267963829...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01539970759822...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01517373528312...|-0.01333212216736...|-0.01767893416678871|-0.01253530526409...|-0.04286693269415914|-0.07926070300627827|-0.07565647741354355|-0.05862241990822177|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01367913977777574|-0.01560374229199...|-0.02388109165435...|-0.01370364575074...|-0.01654720890883482|-0.01921070258814483|-0.0168026017245111|-0.01780898257543...|-0.01516063864468...|-0.01452077958907...|-0.02234551686725037|-0.01519998564338...|-0.01685181847923913|-0.02080144293167...|-0.01477901886912...|-0.01690680081271...|-0.01865518039065...|-0.02247370678067...|-0.01785850363608564|-0.02013830859291...|-0.01571832205345...|-0.01591850952257...|-0.01916053750312...|-0.02015876484877...|-0.01581507331445443|-0.02729532109301...|-0.02044959455992157|-0.01313582118934...|-0.01924483009399966|-0.01334051682238...|-0.03454274816586165|-0.01749583743523395|-0.02786642576927954|-0.01486191092491...|-0.02026022069136162|-0.01791183855066...|-0.0162374101267291|-0.01662803116974045|-0.01508075189344...|-0.01425608788418...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02015212614783...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02331490785296...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01764305562171852|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01575788788538...|-0.01571380393699...|-0.01764097785509...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02548858964314...|-0.01638896332210...|-0.01583732191795...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01918672320120...|-0.01253530526409...|-0.01253530526409...|-0.02899362265741...|-0.01253530526409...|-0.01253530526409...|-0.01411002760164372|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01751729783967...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01824900866622605|-0.01253530526409...|-0.02343731739916086|-0.01253530526409...|-0.02031128674373...|-0.01425627696583...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02048428238599...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01701264394676...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02787356155947...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01772891899495...|-0.01253530526409...|-0.01765116565821365|-0.01253530526409...|-0.01253530526409...|-0.05339654494092747|-0.066362690254457|-0.05067500602392155|-0.01253530526409...|-0.01770105989560506|-0.02152507933191...|-0.01712227476944...|-0.01253530526409...|-0.05236003527957662|-0.04083933811554...|-0.04371900350339...|-0.04195847481574377|-0.01834799104408...|-0.0185728480457948|-0.01938955175779...|-0.01253530526409...|-0.01253530526409...|-0.02317505098239...|-0.01253530526409...|-0.02911625882080...|-0.01758501245241...|-0.01253530526409...|-0.0125353052640975|-0.01253530526409...|-0.01253530526409...|-0.02555089152680...|-0.02531115320437...|-0.01395774874221...|-0.0250368644254073|-0.01253530526409...|-0.03684196027283...|-0.01933596724505...|-0.02008533678904115|-0.02482975925189255|-0.01253530526409751|-0.01253530526409751|-0.01670986226813...|-0.02248659164373...|-0.01253530526409...|-0.01253530526409...|-0.01671354929167197|-0.01253530526409...|-0.02298573288912...|-0.01714241828211743|-0.01253530526409...|-0.01253530526409...|-0.01752042282091...|-0.01253530526409...|-0.01716924424884...|-0.01682577118133931|-0.01323926770884...|-0.01253530526409...|-0.02293929673970...|-0.01346284723865...|-0.01253530526409...|-0.01253530526409...|-0.02176675993508...|-0.01253530526409...|-0.01733938767750971|-0.01769763334924423|-0.01253530526409...|-0.01253530526409...|-0.03341520687515...|-0.01519710872955...|-0.01506615199283...|-0.01832851066700...|-0.01762225086129...|-0.01253530526409...|-0.01253530526409...|-0.01308637836901...|-0.01914018735913...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02366306112550...|-0.01531944490230...|-0.01253530526409...|-0.01772338658713591|-0.01740231821674...|-0.01749615027886...|-0.01758490466500015|-0.01253530526409751|-0.01715333788473955|-0.01661372333535261|-0.01541176076787...|-0.01253530526409...|-0.01634390399834...|-0.01437843822018...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01989145181019...|-0.01253530526409...|-0.01693991511437...|-0.01253530526409...|-0.01281155618999...|-0.01347613602847...|-0.01253530526409...|-0.01253530526409...|-0.02058318262671...|-0.01772828701071...|-0.02114846463732...|-0.01253530526409...|-0.01412313269634361|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.0149649591628405|-0.01987168589839567|-0.01253530526409...|-0.02385016677132...|-0.01253530526409...|-0.01293413420043...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01444906170582...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01765226439968...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|nmdc:bsm-11-622k6044| | 1.017024089617646| -0.770680595883179|-0.7122499430617859| -0.6581620722969577| -0.62638053244719|-0.41445723041620974|-0.4050324016857669|-0.5245965093317307| -0.7370916239154035| -0.7985333180830743|-0.33807106524192526| -0.5419013996604601|-0.01327351062133...|-0.10512088196451218|0.06763043237946928|0.3910970497248573|1.0022385880662696|0.19029997866332773|0.7216820138786727|-0.11436057841934458|0.08257184029419556|-0.27338276392675637|-0.07745058628791532|-0.20327219600552418|-0.05723378086861065|0.5507061511985794|-0.03664749135553563|0.09354143753509224|-0.09794538238775999|-0.41987856788735994|-0.07308066204162174|-0.23411263585107323|-0.10632989353319801|-0.40424277031774225| 0.1489477456561632|0.09034331465778249|1.0280615284542656|1.0059650547490393|0.9687556277089159|1.0343124520494444|0.44805491024501803|0.6604040950365511|0.2738439960430766|1.3319220943458239|0.9650989103551019|0.37837965340472035|0.7666881048357717|-0.15096600369176555|1.3549061000496656|0.8993961655975361| 1.1853769513033607| 0.4092577945836967|2.9108573336654113|-0.3608400088435224|-0.11656730956563736|0.42771898238994144|-0.1542590963103489|-0.11555785859426668|-0.23316529231662309| 1.885705216332442|2.0422879593020737|0.9621725932424937| -0.3788248868862992|-0.1469514722243132|-0.20017016611228633|-0.3016326600505399| -0.1107797684081487|-0.31029375106332113| 1.021986055333657| -0.238404629081095|1.4667004762568692| 1.23643187340715|0.9318941704293333|0.9226495849727981|-0.6570075212763716| -0.1372247481952776|-0.6906999415091707|-0.7409476648360471|-0.7936630663870811|-0.7404692916862502| 0.7602850237259149| 0.5426725114696953| 0.7921496647615988| 0.3448621858430437| 0.2937200788240855| 0.5676246284811841| 0.6552364362314592| 0.4615588380973695| 0.6233843968561673| 0.3912164956492652| 0.2573735565940804| 0.2095746496360182|-0.18768023270334785|-0.3507179296696254| -0.2328891543873217|-0.40153359537243744|-0.5379057755920421|-0.29345768235030767| -0.3655846404622777|-0.6139851418666508|-0.6497913787641584|-0.5867745300436101|-0.4645920909939407| -0.1837165813316749|-0.46645104735874454| -0.1465971044380978| -0.306546193421308|-0.32633180565927417|-0.19816935072246775| -0.330651958891627|-0.10681312451550155|-0.2886775267744942| -0.280801796120002|-0.2998681109350598|-0.26113893226291257| -0.4036371052915282| -0.5314104662703224|-0.11549424819277762|-0.13693607610556435|-0.05251930902371421| 0.11085304142112709|-0.03446189942866...| 0.26548344641546984| 0.38301279484205625|-0.6933548688703732|-0.7353462739029502|-0.39530285727074066| -0.3558709020488856|-0.6789006820696386|-0.49324927448282246|-0.21207031108420044|-0.7753851688270237|-0.43122345541830975|-0.7863401578464624|-0.11107121326036394|-0.24748470598350306|-0.4558883991450888|0.6484368399137409|-0.00264464678464...|-0.06013366125300995|-0.8363946792457285|0.1260969020511793|-0.04201274933347154|-0.17583577086617375| 0.6536690418718707|-0.5656130861329035|0.9751685140777363| -0.290631962856235|-0.23051922391574559| -0.4303239648738663|-0.07556751376029415|-0.22890348936759913|-0.39455366918353324| -0.5125226036458732|0.3831684636802765| -0.3733250026428841|-0.39691060174901116|1.0845108569039916|0.15846072810522918|0.08433055999855506|0.4388963988028335| -0.4474342616588847|-0.6284260799169242| -0.2660480300173692|0.2912565555684187| 0.4915111575535198|0.16274962445596156|-0.39833121458881876| -0.5084850101130142| 0.1570625077794665|-0.08291246377958857|-0.21492709238293872| 0.31518377040223533|0.018054074986567813|-0.4238047233550688|-0.33385026424128944|-0.6446816202345491|-0.11327643199674035|-0.21796889475246733|-0.08634588125726643|0.12288399195379948|-0.1963299151719174|1.6044163828652385|-0.23745971189222603|-0.09993563480507445|-0.6317553360020571| -0.57493295773277|-0.5602048134285192|0.19979693426133432| -0.3007246108402022|-0.6409131768781765|-0.14188872535549898|0.4441182446902663|-0.38955969159159537|-0.19749232678334797|-0.3893320190728679|1.4211418050630182| 0.5234489575788609| -0.2387624221617153|-0.18968994460247968|-0.26660533761482674|-0.5430157680085915|-0.5849389729598838|-0.4069998707980119| -0.454498007262256| -0.3320678427696388|-0.42288437724558814| -0.764018240472486| 0.597443493745878|-0.4179591544907526|-0.36957842455373524|-0.06891247781516326|-0.3525823118453021| -0.6183669763370234|-0.44586057095728765|-0.13200337428037265|0.9565238229884966|-0.24797331670603293|0.5852966446910876|-0.4724373034351017|-0.46802544929659096|-0.6018832319327574| -0.4560284240766448| -0.1283649363920963|0.025007967795892396|-0.00970333736370...|-0.7684880434806582| -0.6084370106790601|3.4523932971465205| -0.2703432191803172|-0.35943122247033576|-0.47717153181506594| -0.1942271508079332|-0.4746197480841466|-0.17049756792858017| -0.361473111949676|-0.2666527249375119|-0.30388051678932765|-0.3398321841979808|-0.13989540577377002| -0.3435539948667326|-0.31675200103674556|-0.1640423953745957|-0.33303511611608294| -0.6382428594256323|0.19108102365541435|0.008781674440490458|-0.7201071465126855|-0.33286058931909884|0.03814941029798115|0.07863132647446187|-0.6786937498425347| -0.4778275122841991|-0.4353516788410595|-0.12154106650120071| 0.6692418854848767|-0.14353419094399938|-0.27824612652923664|-0.9256852786338559|-0.21493263852495598| -0.523352497657197|-0.19671564757799254|-0.3273751612989971|-0.22931830762016797| -0.5242906564910066|0.43896460238555823| -0.6225905854761594| -0.634731721054223|0.3508438647905606|-0.09635453805971154|-0.19479001519807704|-0.6634842081319166| -0.5482702534878241|-0.3138139475134959|-0.12383499188901989| -0.2848211976592279|-0.05687634037208469| -0.5188762337844744|-0.08407735430856997|0.08945679338254911|-0.19713858537036663|-0.11058388139826143|-0.7899038177664777|-0.39618460576181197|0.08808411401362624|0.18616117419170902|-0.3164260626349487|0.22628791072912205|-0.4342478312263943|-0.17108265806293682| -0.0851226773808997| -0.5853936361028276| -0.1726307347698474| -0.4755680963905639|-0.2340856813207038|-0.1507677203911925| 0.72970623901187|-0.4439924861295434|0.4942054146582477|-0.6655143336861603|1.3876180254436012| 0.4371249117245242|-0.6154289200295371|1.4623008472265453|0.9453447891369287| 1.410731317071023| -0.340103043297891|-0.01475627164519...|-0.09110329318033937| -0.0967623429454867| -0.1354207304292714|0.4046183710039017|-0.3150760073045516| -0.3736551443263861|-0.3467805858312058|-0.6178296110922966|-0.2745283048822127| -0.4454249988704962| -0.2213996739566781|-0.02074359271199...|0.6373657543777794| 0.3714967745978689|0.008269442941545276|-0.47212337311566493| -0.3885761481817839|-0.8283360969038432|-0.19303251463588605|-0.45969346768331143|0.3354380195981276|0.15924420511898343|-0.03388484021174772|-0.2874521905739839| 2.838123494751453| -0.4360675996045721|-0.25505578759849046|-0.10998298542855722|-0.01176872301734...| -0.1906388692463862|0.05798240138803566|-0.4480297228827973| -0.5626083260168161|-0.20316219912384137|-0.41463788630979986| 1.391198975410318| -0.4345413828618842|-0.5938132428456546| -0.5118034615149772|-0.30253989514097557|0.21457966516986815|0.005817271098600028| 0.540378446781357|1.2043550424493639|-0.6931457469496276| -0.5937577043708336|-0.5353172176217939|-0.6770466478509067|-0.12359607865719498|-0.6514937274297142|-0.18908811622083524| 1.183160685902153|-0.12489852776478619|-0.7329155401691253| -0.3854701152611848|-0.42928512033754734|1.1670180048978314|-0.6990181979554375|-0.6715608341018625| -0.5592420896164636| -0.086003067569056|2.1666748818694694|-0.5879317017571197|-0.4219631187401322| 0.4436334404032676|-0.04778363075756762|-0.28931003248936704|-0.18299334217944713|-0.2266138054998179|-0.12816734780990985|-0.6719979907042684|-0.13137318773468656| 0.5387987473857527|0.7120202616828999|-0.04704080883028068|-0.5483495500399495|-0.29766222558196703|-0.4767151472103181|-0.07853976631934434| 0.788851988241833|-0.31676507506360657|0.8667807512992162|0.6121136350218317|-0.13614458951718372|0.058333540334802224|-0.6161464225823197|-0.19510261134203774|-0.2865675418417829|0.7385351079762468| 1.415351168137917|0.26193072063688566|0.4015008693596696| 0.123569373647212|0.1437344261313911|0.11795293659872484| -0.3647689788461191| -0.9327370006714215|-0.20037735718085084|-0.37183200815444567|-0.5704476415662834|1.3762078086626872|-0.5487503437628627|0.11687910215941295|0.9983784485520378|-0.30883178041686676|-0.30494470003290086|-0.21889912946003653|-0.5095018589155202|-0.5808065650234944| 0.0671252176413481|-0.6197626326028065|-0.21095251902779957|0.03198156525657997|-0.10065359723622529| -0.484824788847959|0.9015493558946713| 1.75480996539076|-0.5772486586216622|-0.31823847179902576|0.7907168755002484|0.39018800422698563|0.8219001310005563| -0.509612897599136| 0.7102621580426369|-0.49033315023849344|-0.16025718197223948|-0.4490046121744742|-0.23244509392684784|1.6505907172052972|-0.1489288312241091|-0.46155823042851946| -0.308092736075989| -0.2715958489158211| -0.4557795963765254|-0.6403363671317738|-0.5983386275481598|-0.28915707327780615|-0.38034006106779555| 1.248678904062902|-0.27446185747352975|-0.07012453563546138|0.26955724755885474|-0.5678875626506326|0.5448588311958082|-0.46400792497863425|-0.36015043090987603|-0.01613061444737...| -0.515650811156216|0.33980768980925863| -0.4083694056338369|0.2415514557803953|-0.8840436473245811| -0.528035513808703| -0.5305844135966655|-0.16515015428562632|-0.7195980072584042|1.3054749809207276| -0.5451712092326465|-0.35165448588609277|-0.14998320994395142|-0.4901397801269153| -0.2420050162235353|0.5155660153525881|-0.3166874548383308| -0.5769186631190277|-0.46585225732785174| -0.718945506193469| -0.458968661998613|0.9096925558151934| -0.4988547104312824|0.2892956496062699|-0.2384820873308192|-0.7183158921071386|-0.13218529372664836| -0.728527529346113|-0.24829718738243825| -0.716161357114911|0.18310777356682456| 0.5315997015757893|-0.06840582659167876|-0.06692967502054219| -0.3758703699297259|0.35007029662826017| 0.0544863249313436|1.5999209618612615| -0.3329039917574368|-0.4193966500381717| 0.9550201820314799|0.17100934101778997|-0.05630672303538609|-0.02005713321890181|0.8489660179571459|-0.38037641816402884| 1.44427534716248|0.22345091051582813|-0.49245903549101067|-0.6510176687777123|-0.9104666344837514| -0.5636287677194081|-0.30685217638506157| -0.4681241764432402|-0.6994407874056561|-0.20252725426421897|-0.19036709918893302|0.04241414626514356| -0.3992117959082729|-0.7451070577410822|0.11595093131930796|-0.2615472524335716|-0.5114102992735293| -0.2805918192500667|0.05672089102976827|0.29297874981201333|-0.6799533773514738| -0.3232830355739956|-0.6574505014683192|-0.27858529627275125|-0.2639942256025694|0.8623491829869941| -0.2666690954245194|-0.16182567716635907|0.05285801588513428| -0.5114457526097421|0.8134162912823237|0.49663283100264155|-0.19963357354928377|0.6060700563644521|-0.6326045264556522|0.7561245149312714|1.3161978616614527|-0.48330979002674707| 0.801553509531481|1.5388785573358454|-0.6487912949475795|-0.30707452983747485|0.9532275100957729|0.8719041555075574|1.8942808852730104| 0.7272981282960734|-0.05408797210517573| -0.5488903534934574|-0.36759158039389034|-0.15504376171575862|-0.06473938766496042| 0.4733238862709018|-0.16440331737290417| -0.4875112160627205| -0.75931145265161| -0.3993854763038562|-0.7317386575994528|-0.39664890063573427|-0.31044911543237125|0.32868192332142787| 0.8543650764334544|0.8566637732936148|1.5155823064960885|-1.0010587022318909|1.3452548027193536|0.15661173399356043|0.24531829378147274| -0.565428487460536|-0.22799084515736076| -0.6103929786835525|0.11964847097555807|0.5320565917220106| -0.5462119915622584|-0.5744443518738838| -0.5040265901912603|-0.26358799252711035|-0.1156144258566147|-0.00225974708973...|-0.7637316448873127|-0.43675474372815426|-0.22844167326295703|-0.01285345573073...|-0.2968420679695245|-0.5152067674557099| -0.3350961694195513|-0.21719006037634803| -0.2827072225755726|0.9950810318695111| -0.6191853392391264| -0.5866108036655276|-0.21106115220874885|-0.11031071614950791|0.34883939675740583|-0.41912240479330126|0.4553068769715369| 1.03710706170492|1.0153633814948204|-0.28472088881729923|-0.18162064135549746|1.3754148446955623|-0.32526678882817833|0.42571807270167294|-0.22966801746479262|-0.08417146164110835| 0.2238603247692979|0.13152931508231697|1.0725217612234383| -0.4708701704231968| -0.70222130426722|1.4900786869731224|0.40360819477609045| -0.2425830595773807|-0.34858240758144426| -0.4608080652167127| -0.2335287478135666|-0.8533050321063876|1.0214956504513302|-0.01931070127177...|0.5333969120590546|-0.3224208255756779| 1.11557331436917| -0.304896486836973|-0.13366690556548347| -0.3659508162341318|0.44701967451579566|-0.21426788791532853| 0.8639449422963736|-0.37183903172641586|-0.7555201499223905| -0.5141690504033681|1.0950338856736566|1.0442687981294276| 0.26703738715640385| 0.02695495125066515|-0.23006541701130118|0.009114485292374207|0.22162869773591554|-0.03571352751312...|0.18134500705115686|2.7130190763445574| -0.2310022236793902|-0.8654002201790716|0.6646636713507014|0.5118148808877525|-0.4216327767661016|0.8344303553049605|0.9307334664867108|0.05819829836354556|-0.3677982647543649|-0.04417863300606726| 0.3172403167664727|-0.12170776295900171| -0.3957269709374399| 0.5480552582879633|-0.1543297910851582| -0.5015746565528002|-0.43356268874088705|-0.3020307366419002|-0.8072587676260391|-0.16278238412182677|-0.13811368536843402|-0.16176596398425838| 1.194130238212943|-0.48058193517650205|-0.5215295748205386| -0.3777227919731115|-0.1701351653988173| -0.3233798969807484|0.37264405004823187|-0.7045499588831139|-0.20073130322244914|0.03918341427060253| -0.347810574767058|0.26508204061948376|-0.5036406517919112| -0.1082770877111847|1.5144434762341148| -0.4572108185344569|-0.39629189109217877| -0.4038688373444986|-0.4268558230847101| -0.2645549336868053|0.4568678271126924|-0.5274590880244111|0.05297212411669565|-0.11947439796857899|-0.3304130436173497| -0.4890393917420657| -0.4871357930360929| -0.679152855179289|0.6196809907390989|0.5068633779869367| -0.6435029327159608|-0.23997179397273866|-0.37275336341285786| 0.4535614953909926|-0.5810357984420442|-0.4944285330237735|0.2798482863913904|0.46071405109010594| -0.2782664877842117|-0.14334719944692068|-0.8052168446720149| -0.3058491917482053| -0.3970948208917686|-0.1763241457476904|-0.7034884872390554|0.26036191734037567|0.22873872747519688| -0.2740512507923512|0.6330262539574942|-0.27091930718261586|-0.6907845108818295| -0.2934932535117728| 0.966310611642281|0.22566872354284517| -0.4318668495541506|-0.08217019124066999|-0.11603395192583663| -0.1090813602400083|0.9539553611039443|0.06287214290270929|-0.2675754269137781|-0.7254863602043798| -0.6814342581581213|-0.20647813117739852|-0.10232152654690266|-0.36021536635308793| 1.730514134194812|-0.7483992359903329|-0.48680641971126215|0.8565628530720838|-0.35105569533176195|-0.2271951127123263| -0.5641029027444902|-0.21730473090903837|-0.30812080726012153| -0.2551165797408666| 0.2464413410429687|-0.31939784449927083| -0.3674599022387969|-0.37616565171765726|0.6517849120868516| 0.2266825743712037|-0.36466526968319396|0.3582021975159371| -0.3557829707622189| -0.5842796758855425|-0.28048673775444655|-0.39485584460889117|-0.22716453304813905|-0.38091299998108086|0.060704442744900874| -0.5369658060349531|-0.19202171507697505|-0.27460195448903324|-0.1597560543131792| -0.6242437959434919| 0.862837581523308|0.3310875912846967|-0.2603987936238817| 0.46111831135496095|-0.2659534178807853|1.0273937878705242|0.5224861650907059|0.9892532371069596|-0.35171540197926215| -0.3149515309976102|-0.6184434931033138| -0.5150286901821028|-0.46597409138045237| -0.210845874791942|-0.3133969639922009|-0.8619126719369606| -0.5908236430984422| -0.4524894118546423| -0.1500881922188081|-0.8830817579616481| -0.3523520805175423|-0.19610967997104042|-0.05799321664469993|-0.01865800722362...|-0.04172368302515418|0.7368745491278866| 0.0991956777119035| 0.6012326374697247| -0.3334141199750643| -0.4828493169083238|-0.43938826203733045|-0.03584896539172673|1.5263674863630894|-0.1160107936508408|-0.8124304523191922|1.5904850389140202|-0.06232848509249...|-0.21225878520109157|-0.8207355248789805| -0.5428493376923744|-0.21797982731765714|-0.1902971153167485|-0.19746152060699684|-0.33676643417201924|0.7514997620904602|-0.08281553614569338|0.5683594455666217|1.4377814106444304|-0.3308114992154544|1.3175883083480988| -0.5116726479766533|-0.20126861542863225|0.15408125026010872|-0.25463430105617074|1.0324428701186754|-0.12985156677850568| -0.2502345493356594|-0.6304717432432736| -0.3884032143088653|-0.6894971208204308|1.4713593188174794|-0.36266077166155863|0.5982402973030648|-0.22291599282365496|1.1700781872123864|-0.49953352269998025|-0.2974004080199868| -0.2159622357785779|1.0442010839287723|-0.0879417935975854|0.40618232369325546| 1.333951220466397| -0.6072518793655419|-0.44264014259695406|-0.14647604884649193| -0.375342557058227|-0.30797057537659833|-0.6438274668869899|-0.07784126543769698|0.19166711813746265|0.4710919392723836|-0.4426182599200062|-0.6743331983752378|0.34733806273286977| 0.47616422258483| -0.5239971880305353| -0.4674309029273129|-0.46252007480384344|-0.38956144499766454|-0.16202507509476308|-0.34968632021128027|-0.2754534719835123| 0.1522340520891615|-0.8007942458831756| -0.3113671219766845|-0.4587930773483237|0.3514429027839439| -0.2687443225412362|-0.22909300880652303| -0.687396469182618|-0.35506169033065593|0.248548722557412|-0.14848777831581805|0.5426515087209852|0.5446942160690775| 0.531510710833291|0.16815066837017784|0.42404160032272303| -0.6941693290442698|0.08633480982163746|-0.32994021796150763|0.7663607453147085|0.8783388481320141|-0.3555727883274386|-0.3589456470283623|-0.42991649074165716| -0.624901676044431| -0.6030338238785242| -0.7722614216184033|-0.25701848996773136|0.9009421966669575|-0.26047732710530613| -0.1729273106188927| -0.4511376438729948|-0.3710827794914733|-0.24393346812505326| -0.5068529204664816| 0.01983849016075458|-0.7463913639096568| -0.2929807935795446|-0.6914149188072446|-0.7078823790168791|-0.15345122275596704|-0.08189413977206815|-0.10032398622733003|-0.13869206101516654|-0.22347201310858766| -0.217386592296619|-0.20768676977111172| -0.3300686477249635|-0.11325915791497243|-0.1706686662239795|-0.1451098241945371|-0.19104658037873443|-0.18600684476873328|-0.49393568813146027|-0.3926405655510834| 0.12734050891199236|-0.14034750506355484|-0.2843694757682644|-0.35056152177798783|-0.24385987052692196|-0.11319366361113764|-0.26405627670147497|-0.2742877986317933|-0.5899897333130543|-0.2332557712618328|-0.08816832475845104|-0.3377511825155639| -0.2709055935981327|-0.27317991375943285|-0.2163961148879481|-0.22663692713280845|-0.1715792126881753|-0.2924414734754358|-0.43084671279049647|-0.23301702269647975|-0.14274525089989842|-0.06243888325521245|-0.2840607069579491|-0.20061839981534318|-0.19456226182259456|-0.29446528591812415| -0.464217269991806|-0.22355060620522169| 0.858529273208046| 0.4532160530637764| 0.6342626421427491| 0.0239515355133545|-0.3006375452636311| 0.8086776258507138|-0.40150236598523664|-0.04449635749760235| 0.03928954396949836|-0.6760950768087829|-0.12803730640006353|-0.27611208974444224|-0.2591409194447554|-0.16742868392026472|-0.3322177705617053|-0.2719080454177405|-0.5039297111833291|-0.2323735469319661|-0.7406949845081329|-0.3877047131381158|-0.07228240685993131|-0.03918657364781...|-0.02329985149360...|-0.05524150732218943|-0.8511403612644297|-0.7096306229934903|-0.6225875196893568|-0.6514326504564848|-0.771671642436253|-0.8162316659719417|-0.3605282066251998|-0.2510534226729749|-0.8491759865699426|-0.03409545011614...|-0.09948105034210544|-0.2634893823445071|-0.34086601528809185|-0.3971644490768572|-0.7576490231383404|-0.6368991675166817|-0.7163855469733106|-0.3503619445582791|-0.41822567254419524|-0.33654531238893726|-0.4808809198569029|-0.41118454182610437|-0.41256061321292986|-0.3716466504772021|-0.10912401076385822|-0.32833628824359956|-0.3726119973937121|-0.4636404875869895|-0.2540144400672282|-0.11658324472913482|-0.05280555751329682|-0.02955761399754155|-0.16757702364098848|-0.41065655904026815|-0.04678651184696...|-0.098477585931494|-0.4114891560745114|-0.17158990741479752|-0.02663398890101...|-0.08074439215183964|-0.17381989577238127|-0.13602723879433884|-0.131264490227208|-0.08849490982161524|-0.18042202192436183|-0.7290411504474479|-0.07962728923072632|-0.4835159315801175|-0.727097530329218|-0.4869205947127958|-0.1458652213240088|-0.6075608979450752|-0.09261102051000594|-0.10733997762526638|-0.09588226126595413|-0.10809865909638992|-0.15350042380726894|-0.6911868882383552|-0.08510557218043253|-0.09410327103636741|-0.07202397583248128|-0.6590441747481357|-0.1272550933446086|-0.06443796250740871|-0.47634841994638116|-0.13921793344246167|-0.43913797440104035|-0.1107126761090993|-0.10009363410384595|-0.02520470066585...|-0.07904771172105343|-0.08847380533050613|-0.19092945354824573|-0.13577959686282637|-0.11011050567971963|-0.3593487529737919|-0.10649429889142395|-0.12012059728467317|-0.7021178089796191|-0.09226506438699164|-0.11747047268265882|-0.6065924733880521|-0.22061340844429733|-0.03662784621128669|-0.2586163395907733|-0.36048394396956146|-0.36348680049549686|-0.11589678276606079|-0.17376160068300092|-0.2690285739528524|-0.24482251410991|-0.3632900863287368|-0.5647294186968017|-0.3505713015822395|-0.11387201026564515|-0.6329594713011093|-0.7636390928448662|-0.06983607249902193|-0.06491510756971244|-0.08872172746227502|-0.1741650860753641|-0.700423956000644|-0.05231577224046...|-0.15049401421854722|-0.23828423046614877|-0.16513208551295544|-0.20568668194001768|-0.5214317494243678|-0.2794842514848555|-0.6553774745171487|-0.42290939945691547|-0.3798052509450945|-0.10147099333868884|-0.1552981957262418|-0.2037586545096258|-0.19607085342171932|-0.13456380353745334|-0.607172629663644|-0.5345567323107363|-0.36259821863423963|-0.16952669474827364|-0.0700165522932131|-0.21567994307329746|-0.6163619734927663|-0.20433905202279948|-0.41271727107657386|-0.05148237217050943|-0.25072171673281274|-0.12643832080797282|-0.6245271962697054|-0.10942131326278438|-0.16432891562221816|-0.1758912142155136|-0.139396126167775|-0.06353780569037926|-0.3408932862202021|-0.13375940247359838|-0.06864434076799462|-0.34872256123007267|-0.13572108204083666|-0.2742618357466916|-0.04702532871453042|-0.7288328050970285|-0.5843677397411112|-0.6683953620027576|-0.7743167001046506|-0.22517827193609088|-0.03791786130580291|-0.27232567122034235|-0.10214524679989465|-0.09003500542005023|-0.40970733135764015|-0.509613867892468|-0.47581785601540105|-0.4219427010866469|-0.1039163341166301|-0.11420386276570213|-0.5549409418350506|-0.10552072582676258|-0.2570810612365251|-0.10277244995580413|-0.15184810586147737|-0.21759933013224114|-0.1756910039156807|-0.16332645993304534|-0.10313203162613489|-0.2122625343232324|-0.2027981340560457|-0.06667592685742318|-0.49736043726913626|-0.2151622052596149|-0.20957868142419242|-0.5398481700341909|-0.27465244760742025|-0.03912407413208065|-0.6113325469596155|-0.2065002875524251|-0.10674393196541122|-0.04776973788937...|-0.21096490146561006|-0.04136515574125328|-0.5033504224258261|-0.1067328023067442|-0.06160072212490074|-0.05228129926293...|-0.13340628714984082|-0.05865304478382...|-0.04553834675282956|-0.3494257907237619|-0.11047616703430181|-0.6717692146441718|-0.07149317561912735|-0.04997485117130685|-0.7379634228172769|-0.15010658787504458|-0.11970984448583269|-0.3424606011048739|-0.3706970128870594|-0.1599657525306175|-0.24297417345501507|-0.12570774353132252|-0.5797776400326246|-0.1435791940325794|-0.36969341483199625|-0.2912873397768709|-0.16546446248361343|-0.14365760632459262|-0.1480152238580433|-0.15940852236113554|-0.11535827458599843|-0.05881486907866...|-0.13887536889852006|-0.11809844163395716|-0.03180750111479483|-0.03578794555393733|-0.15865445818929397|-0.17289310485981157|-0.19507838747823833|-0.39063267635713783|-0.04879430451774152|-0.25427016761418747|-0.06365815257014387|-0.6996582091354137|-0.23385925356722673|-0.11117378327585747|-0.2577023202999264|-0.5713841657523369|-0.0804531424989896|-0.09551571067092261|-0.458145321503123|-0.14054272301544088|-0.18392397413422043|-0.11559936207570427|-0.17261990304718497|-0.4511765302975726|-0.34503583016686534|-0.15360004855421494|-0.3776661029428063|-0.4213644894879399|-0.36778610908662385|-0.17012471232163873|-0.28016174389552584|-0.0805832394403451|-0.33079268370009995|-0.6134398950150703|-0.5356020092737113|-0.10266914842938882|-0.5095553230671926|-0.2656309876301223|-0.11270296115020846|-0.4117749347174728|-0.3267427881885765|-0.606733182946518|-0.29581208808870535|-0.08756029679689606|-0.2782800370134136|-0.5104100305167218|-0.410546984729635|-0.17005488212951284|-0.13559234131669098|-0.20994036670813065|-0.3533285202657877|-0.16211868382095831|-0.7968419511221768|-0.01803753970235557|-0.20315809261326068|-0.08098755315771117|-0.14775550885420558|-0.05097827630625376|-0.16904196305556976|-0.08108291298084064|-0.35682118960543774|-0.03606064593639...|-0.02055344527139...|-0.06996842331944857|-0.17576722455609511|-0.20976499172806096|-0.20595603531196344|-0.22949747581654695|-0.077229419122147|-0.17313076520031645|-0.02304909605604177|-0.16702462128972845|-0.05628783790331...|-0.31460113581799043|-0.03913026093049507|-0.17341970717191532|-0.23137961714741287|-0.05026247659916389|-0.04874379712165686|-0.03919802401538...|-0.19322479514560517|-0.12810459166533736|-0.04926757577956...|-0.08652030620146052|-0.14019825138483027|-0.08187407457751014|-0.0929863679872003|-0.05690614457318...|-0.05677074942669977|-0.1022484809644203|-0.10328930827161571|-0.2868877976334306|-0.0978145214864471|-0.03901181743779024|-0.15734384625133324|-0.2836580776225798|-0.21231955453005438|-0.16771512269327118|-0.2739574427261579|-0.354326138622012|-0.2695861847600906|-0.22919213115634773|-0.07074373145966605|-0.08600333372334969|-0.09486098961233637|-0.1227061505824716|-0.02826106615838...|-0.2653785626864632|-0.18006384517724952|-0.06508707796710951|-0.05224626855888223|-0.16260089670782826|-0.09009075778431266|-0.03346697812300506|-0.06942732978892546|-0.03421456625710...|-0.08048726392661786|-0.1379074606999219|-0.1292540449692126|-0.2570691101395688|-0.07035581021677265|-0.12967624114009768|-0.07282574588825501|-0.06055130315560812|-0.07696281208098574|-0.06820232346510376|-0.08895335859064236|-0.17286430293575075|-0.05761345254188...|-0.19041315439945922|-0.20536250050487723|-0.19403904973695504|-0.32046556113791486|-0.17114468184690032|-0.13774184646625556|-0.0312632193677519|-0.17208916407527772|-0.306146284105984|-0.24553664770636519|-0.05561109420304703|-0.1019087224010531|-0.0769800868649658|-0.06073047965375856|-0.03609138417209...|-0.04742236276329945|-0.17802109725113244|-0.05855384088022...|-0.09041496953744603|-0.30011878263041303|-0.03121877597813...|-0.04117199895130...|-0.19767364390012265|-0.10307034207613648|-0.1330965603272122|-0.10249073102791645|-0.14565551259445603|-0.14784014638233986|-0.2526568673033468|-0.13060074587757634|-0.2005694183716077|-0.20004833444517306|-0.1799668516373672|-0.22128722882986315|-0.19356689903425545|-0.2396392085939401|-0.09644556106123063|-0.1999783804866801|-0.18601736706025312|-0.16984102409964566|-0.04183251728156555|-0.03635234923114128|-0.06661716779912538|-0.03482962914923...|-0.05231219141116681|-0.22446837002145245|-0.05749141995049435|-0.3273249911811096|-0.23259835296944048|-0.07030690847916299|-0.09878668748210317|-0.21544233350361527|-0.1662951580397708|-0.17909188172175555|-0.09357753601360308|-0.02180909846866...|-0.05634178238314816|-0.0683284258693891|-0.06834717018332599|-0.12429992033006175|-0.07169012355483884|-0.11294425308749421|-0.12510559727635132|-0.2083209870136463|-0.09774172587363814|-0.10910775216263022|-0.18171910407379685|-0.22935730041107835|-0.2204650279029564|-0.11598473385946728|-0.09382735095624717|-0.19140390651702582|-0.19031729733775277|-0.15976231655896575|-0.1542331619637009|-0.09178074798326764|-0.05778332624685965|-0.05462200142862137|-0.06879408297856625|-0.11108816067222238|-0.07183440953372318|-0.08033310271705106|-0.03747698625045388|-0.05106536140746185|-0.03016471578297...|-0.0787283134682969|-0.08227692571263462|-0.05850983223519745|-0.06900396339410009|-0.06014143326154596|-0.05603147838414121|-0.05338829895536...|-0.06925714677092183|-0.04554246979699084|-0.07680232326277497|-0.06081529793385...|-0.02766224120526...|-0.03816879474849695|-0.08066128023124039|-0.08738692238004311|-0.06950298025632147|-0.04911146364235232|-0.03478414172404...|-0.06040716972096...|-0.06680235487113773|-0.07865701261165653|-0.0676440238751584|-0.0689336466948544|-0.07625173969661647|-0.02951910906873...|-0.05552829549303899|-0.0693333611727443|-0.06590278000550695|-0.05637693416960...|-0.04138953871163...|-0.06121212228255...|-0.0525540639783587|-0.06798664890999763|-0.07472228958464631|-0.05975670098286444|-0.05193052238043689|-0.05593362526817999|-0.05559174072875853|-0.05855382112519005|-0.07663065316527375|-0.0407703920433093|-0.05783205071384947|-0.06045369856151305|-0.02867596792957217|-0.06783528246015763|-0.04394076103369...|-0.05725127994437...|-0.05845802273841291|-0.03562927524014859|-0.06010707765294...|-0.04559774857778179|-0.02830729696293533|-0.03659680833791...|-0.02840558977365...|-0.04707445710843...|-0.163319032184624|-0.03902057316105251|-0.06876684766533568|-0.0684753891235809|-0.02747890387368...|-0.08298013513072489|-0.07938944215346512|-0.03466246289287149|-0.04469937400034389|-0.07344375814015586|-0.06082083833439...|-0.0684163260693126|-0.09623831566716876|-0.15628447991785555|-0.2652914284552319|-0.02429961542336...|-0.08128159935081532|-0.02314709417849...|-0.04603523882356...|-0.02510667279540...|-0.03123286128647...|-0.03277646181710...|-0.03814179273677047|-0.15129213944599829|-0.10479115141912865|-0.06163554045835...|-0.19377514225871476|-0.02182226681532...|-0.04694747614408115|-0.15479067915124323|-0.02836017007646587|-0.04172192971119037|-0.1536277194241871|-0.07135108351214531|-0.01284171997662...|-0.02286136682821...|-0.19379320346496245|-0.07804508425250306|-0.05777784266539315|-0.01994627867621562|-0.04920076956738...|-0.14361652118426554|-0.02483734245229505|-0.1576989101435726|-0.17023813188695017|-0.18022515903864902|-0.04151596998127889|-0.01837517853676589|-0.05208401837217...|-0.17209463692269986|-0.15810140221403146|-0.12983612975481948|-0.05869532332874...|-0.13899928083006025|-0.09015598255332917|-0.07994146561557311|-0.11674528395262675|-0.06516907291750952|-0.01253530526409...|-0.10678147352205707|-0.05200308160733...|-0.07377654456549866|-0.04926879704661...|-0.07141446625922336|-0.08274371390013117|-0.083347623382602|-0.06678649289008033|-0.164495283100621|-0.04264291823172...|-0.02340048817493542|-0.01253530526409...|-0.01557265438368...|-0.01279011792126...|-0.01575658005207...|-0.12185231103380349|-0.03249582671206047|-0.02123678739146...|-0.04261754069647...|-0.04317014567780559|-0.03606556101345741|-0.02327487055548679|-0.03767310761934573|-0.02891468884097222|-0.04565208536426...|-0.04442230590265608|-0.04570931009240...|-0.03498700607546724|-0.02681959024271...|-0.08885247918686506|-0.04731706522441283|-0.05869581341302393|-0.11050496011728465|-0.1774461115639265|-0.10823773338808673|-0.03895317024458085|-0.05429907603513069|-0.01639899263466...|-0.02180409073941...|-0.01741060799472...|-0.04606077622079108|-0.08093963871293505|-0.08647514855075453|-0.02719146438290...|-0.07905103481991486|-0.140816673940378|-0.15574749169882993|-0.12563516450511555|-0.10247972587724465|-0.15354520993815585|-0.13302728010807624|-0.01998088484341...|-0.01748558130073348|-0.03275763098873967|-0.0417917569748425|-0.03495643341027456|-0.02789485342131...|-0.04052036132132457|-0.01785155916566...|-0.09365354268958274|-0.02408004515237846|-0.02528118518816...|-0.02873096951468...|-0.02939223554833...|-0.0391812660918459|-0.02910913550629...|-0.01936262929364696|-0.02488966778858...|-0.03751162750236069|-0.04414819668911...|-0.02298881234915906|-0.04272841124152446|-0.02883793985884152|-0.03608686476185129|-0.02731379640814...|-0.02422930096092756|-0.03927543049060629|-0.05271052115014865|-0.03435793960630...|-0.02830923711120...|-0.01754516662247...|-0.04862755493380...|-0.06142829162588096|-0.05334586493671...|-0.04870124157049757|-0.06095155091715662|-0.06495667419567952|-0.17419757648901027|-0.04942821172341478|-0.02335309919027...|-0.02147168827292...|-0.02317607063830...|-0.02213935123208...|-0.01470130196867...|-0.01586527269632...|-0.01862315021504...|-0.02320027124859...|-0.08349062893733368|-0.02497660896531...|-0.03112911111474...|-0.02427685462697...|-0.04184381431280...|-0.01959168355104...|-0.02661812829125...|-0.03324436391587092|-0.01440597920664...|-0.02090354738997093|-0.02099755570744...|-0.01969944558141...|-0.01858925786972...|-0.02448996639103806|-0.02539555235190...|-0.01975588414871049|-0.02392133944576...|-0.02157952529840...|-0.02959448764397...|-0.02598555935344769|-0.02122936290264...|-0.0294377156320254|-0.06470305282895082|-0.01755973058198...|-0.01712593945027...|-0.10205145919906243|-0.10222711798842554|-0.03563037774186...|-0.03811135545895732|-0.03017452274428118|-0.03127994086163251|-0.02457230060020...|-0.02616884123015...|-0.01810881332325...|-0.02181178929207...|-0.01574409558607...|-0.01706183092582...|-0.04806597468820393|-0.03804725714765149|-0.01748633699173347|-0.01630231824725369|-0.01645115105527...|-0.01577674798623...|-0.06558110808458492|-0.03817283824371426|-0.01918617118494401|-0.01732737159786938|-0.01977857005295...|-0.06600972051941578|-0.16955379029558848|-0.05092113993330044|-0.15327147594380383|-0.1883280307497804|-0.18799380063909027|-0.08508393764000223|-0.09507374177866702|-0.16491311104859874|-0.14186597132094314|-0.11912923647608754|-0.08110284797775659|-0.15452898452585936|-0.0921152666105353|-0.12389595701028791|-0.02835499392988...|-0.05216868295501082|-0.1765105634340951|-0.15955033693108406|-0.07952451837065207|-0.16522854355878597|-0.05006322192952576|-0.16630215769828796|-0.1657770176104409|-0.06499678285551905|-0.04547718438072724|-0.12307504874806376|-0.04219979802730306|-0.02863615700960281|-0.02851080161034385|-0.13358307083670315|-0.1857060074224024|-0.04020645390944...|-0.15145901203021012|-0.11662422839193234|-0.1812252939087378|-0.10582759367064391|-0.21613233213976601|-0.08825968161376781|-0.02059048307781...|-0.01253530526409...|-0.01253530526409...|-0.01676273653844812|-0.04044590391164721|-0.06846035552533167|-0.03673653849099...|-0.01253530526409...|-0.07159927723334882|-0.0701970020252842|-0.141924439970132|-0.0461458037190024|-0.03690415143417546|-0.03160483874655844|-0.03099989863000...|-0.02608892646661...|-0.0840569666385692|-0.03226244462731307|-0.03800099848366229|-0.03797124822430...|-0.05690104997587946|-0.08390871225887878|-0.1454430005026461|-0.03436795476465...|-0.08940578265549738|-0.07060535953449967|-0.07265120572560493|-0.02999016399251...|-0.02972591499422...|-0.09283982673045996|-0.09082744195629047|-0.1255767611422195|-0.03985527136064707|-0.05707205529404569|-0.03208249609837...|-0.01923945591116...|-0.04691359663293...|-0.04043567982764036|-0.05549930403545291|-0.01653072240272...|-0.01744258309193761|-0.02429241176595239|-0.02150030751208179|-0.03966776053060233|-0.03623618263933...|-0.02043680933667342|-0.05826594805976424|-0.04696467892205765|-0.04832036121798...|-0.0445349171944025|-0.07089333776695039|-0.06788458421447466|-0.03131891435977...|-0.01253530526409751|-0.01991751766313...|-0.01712795687559...|-0.02521228578213...|-0.01905540253011...|-0.01253530526409...|-0.01253530526409...|-0.01699519163864...|-0.03551238297740...|-0.05501084654776157|-0.06587495469678659|-0.11853272929802114|-0.16465109365272598|-0.19684244062398873|-0.17183661047238377|-0.04037440077856168|-0.08374924359920033|-0.02327837831207...|-0.01253530526409751|-0.03180856784601...|-0.04556783138318...|-0.04954714235440076|-0.04845066950631...|-0.03964821898581...|-0.0430779087359009|-0.14951371195680485|-0.0396678618750845|-0.03914819539424013|-0.035457282891395|-0.03019054285845121|-0.03953607899865486|-0.03948351219812639|-0.03087642264337...|-0.04938737729687661|-0.03297383499171809|-0.08313009424316473|-0.21099552380310377|-0.06665406618852494|-0.04050624283825...|-0.03477963388819822|-0.02372579679652444|-0.02890150071580...|-0.11664939487286362|-0.13272898541336034|-0.12991032620425721|-0.05402053661696...|-0.02543417953756144|-0.04073947694943...|-0.05368909050806241|-0.02891223595627984|-0.09484350364075614|-0.01253530526409...|-0.16231085143034074|-0.01720218259752...|-0.01253530526409...|-0.049199630598785|-0.02221909474091...|-0.03167773953206413|-0.05931018152034...|-0.03624336136213705|-0.03018321023691...|-0.02306278416702...|-0.04133321872669...|-0.03990507196900694|-0.02520689904305...|-0.0233440539531184|-0.02400711845445387|-0.02860867222035157|-0.04474334288258...|-0.09775756557125663|-0.13104483262700178|-0.01718619643036...|-0.01737830823044957|-0.03599495525901...|-0.01780241812724...|-0.16416154810618402|-0.08548698995357433|-0.21447182228657505|-0.02185567380570962|-0.03113897636372626|-0.02984323988752823|-0.03021115798276...|-0.01465747610160...|-0.09959748211734074|-0.01708247990289...|-0.14482523792806484|-0.04069848547661164|-0.01724740965914141|-0.01939958227196...|-0.04523597645212...|-0.02431570655620...|-0.01253530526409...|-0.01362729283850...|-0.01272152434671...|-0.01253530526409...|-0.11942458701375376|-0.10527509281215315|-0.01274329762034...|-0.05376768676621204|-0.01578649463036322|-0.03165464015667...|-0.1273603150636014|-0.01839339370273...|-0.13958727633063944|-0.01355337199942...|-0.03286001669391199|-0.02887450057176965|-0.01734046546809...|-0.05132255523307...|-0.01253530526409...|-0.01698112067578765|-0.11796815457215197|-0.02678033419822...|-0.02595043079555...|-0.01608568088398...|-0.01772087717090356|-0.02162280812452...|-0.02528457219126...|-0.01863628232025719|-0.02070783829610...|-0.02644988387560...|-0.03361426756935...|-0.02021326275910...|-0.09337779395829887|-0.02234741151367...|-0.01653256920412483|-0.01286893549501...|-0.0178187893984519|-0.01763219421091...|-0.02592251780181349|-0.01691316277838...|-0.01946529301827...|-0.02569301096415...|-0.07553787848813365|-0.09796171602340774|-0.04487350040582298|-0.09386466893729185|-0.05039202890702036|-0.04918143638355889|-0.0641941427052212|-0.1024360274020276|-0.17858775697422077|-0.05370641671915822|-0.10491637026481458|-0.05088068548307155|-0.03615422375081105|-0.01434742400960...|-0.0679786359420969|-0.02823935190479...|-0.03352777143257...|-0.07156344816938558|-0.05899340223601993|-0.06556415112215107|-0.08837113265359645|-0.08869982847745128|-0.079250303096928|-0.05553685180041768|-0.0907724973751452|-0.07586765719054685|-0.07408274218594411|-0.04917165740539179|-0.06168551307559296|-0.0539388061794301|-0.19057317550429118|-0.16606767651279855|-0.07148969751260914|-0.0551892547802984|-0.07194585816972217|-0.03894193938293...|-0.1552378085604564|-0.02374465829594...|-0.03250329908373...|-0.08844260550388973|-0.04965604116592365|-0.03182342768020707|-0.06586663695127064|-0.05547382197374394|-0.08364642352795536|-0.02393038730109914|-0.07810859755051143|-0.0679020092385906|-0.03831882849007365|-0.05329289204207...|-0.05215929066952642|-0.05272051155624...|-0.1669842984467363|-0.18532324416850765|-0.1004906629101323|-0.07146506007717222|-0.05732518632066...|-0.08116820765442534|-0.03975776820428882|-0.04283047334850427|-0.03275305410992...|-0.15280101229169027|-0.08616561570330392|-0.15461211184483342|-0.1067271347986758|-0.19281338034653747|-0.08718403405693788|-0.03860656402166669|-0.07445750709802315|-0.07231992203493734|-0.03725671583122...|-0.06718662909772438|-0.0660620396114663|-0.0589296882337908|-0.08154857356852267|-0.03119384331775222|-0.07324581787919375|-0.07209196791646169|-0.08503036208973905|-0.05861161371810323|-0.10944638975054101|-0.03116048537831...|-0.04170842369665658|-0.02580540941785514|-0.06347627953483045|-0.02307773480319...|-0.06408196841102208|-0.04435504405363148|-0.04376584321139852|-0.03458673217708...|-0.05595697804401885|-0.04215416752814...|-0.07105296826818647|-0.06755273300113215|-0.14945492079821143|-0.0641255326298561|-0.04612801356160128|-0.06077477569305041|-0.03736622522494803|-0.03303583889778883|-0.048919207997536|-0.0326103663097915|-0.04418332591702678|-0.04836256567322...|-0.15135047432476728|-0.06551335988298622|-0.15877099942482015|-0.02858985977393...|-0.0820993130216828|-0.04364841447457989|-0.07762282493729054|-0.05216804146170484|-0.02018282555478...|-0.04922170344223668|-0.05485701297582194|-0.02434719911201...|-0.03385195162157549|-0.0339865450314757|-0.1750703171460503|-0.1844733976267893|-0.15779264620469172|-0.07489727430131289|-0.08043699371101562|-0.02855387502330024|-0.02126696663637...|-0.04125129915459362|-0.03487583989744462|-0.05621294016685502|-0.03155555340163481|-0.02714849743139316|-0.2195534014379215|-0.05568695418694244|-0.05376395736828006|-0.07089089119536318|-0.04196536001005...|-0.03961264823201234|-0.03237100792439921|-0.05921055151808...|-0.06964349935998672|-0.0583256250009784|-0.04143067474669115|-0.03288248962067...|-0.03066838934696...|-0.06578606760034678|-0.04015873863988517|-0.06585146893393135|-0.02253648197300...|-0.0753870393667766|-0.05454197985286951|-0.01271109157545731|-0.03389125862749...|-0.1028397078670282|-0.05884173105492035|-0.02016315311239625|-0.0337102880385371|-0.05539715538085...|-0.04663665809407669|-0.01672538228795...|-0.06728866786798234|-0.04542321341331...|-0.03811512716556...|-0.05319897385057129|-0.06707903158693398|-0.01734376606184107|-0.01391639250227...|-0.03419429609847213|-0.06829272010343974|-0.02688300523335...|-0.07666425194814039|-0.02485307028571964|-0.04037097357153...|-0.0207464668287628|-0.03115361990619537|-0.01965155882152986|-0.03581679920595451|-0.03345238187797073|-0.01683046508650823|-0.04025497633757...|-0.0442085092959046|-0.02150571661525402|-0.03155012785633747|-0.01429929243418...|-0.05589043035575016|-0.03740820253807603|-0.02520125528979...|-0.04735267714455...|-0.02574816933206138|-0.06505247920646023|-0.02697461224751...|-0.04734736841186551|-0.01407529370719857|-0.05914496649860676|-0.03922412222491286|-0.06689952277770272|-0.02458862012416934|-0.02433821406936...|-0.12122169921275922|-0.03742415363043...|-0.06723736207458282|-0.16075529196709912|-0.0408886548194812|-0.0461009232359421|-0.1587941615636298|-0.01253530526409...|-0.13529242753616316|-0.10592355352598681|-0.11648555746286952|-0.14215926380613783|-0.1999275358394026|-0.10107306805465013|-0.10202831223257526|-0.10943368989714025|-0.17998767924692086|-0.10898381213868247|-0.02455901241708...|-0.13085640810855748|-0.07227547157534706|-0.03854273765785333|-0.06689716745077018|-0.04492135722567...|-0.15738647381617274|-0.1414972789658726|-0.241870055238358|-0.1102817612756218|-0.08847440318033642|-0.08352404623462703|-0.15873333054595834|-0.21477347188147536|-0.14128580572141033|-0.2463261708356197|-0.11497494664033617|-0.24764559691564064|-0.13245012613535045|-0.23885521759614645|-0.21411066943640233|-0.23348548237504296|-0.1981247060915251|-0.23806058357007504|-0.2377379406836483|-0.14193370212855158|-0.17409773394051023|-0.08299118693221612|-0.05660615367570514|-0.0424926913764688|-0.20352072660474424|-0.11891284908198074|-0.13191887796593083|-0.15735827211370398|-0.16828143722863106|-0.16681834831558198|-0.2544216250569107|-0.09146350906017252|-0.01881627079831687|-0.06387049626546927|-0.02977423810692...|-0.05505747172184...|-0.03409043445479625|-0.07730158428699553|-0.01981940484032...|-0.03789566610032968|-0.0525782479754935|-0.03875166341242...|-0.01436569184427829|-0.02204981702529...|-0.04034693952619438|-0.03795591397921857|-0.08140051218216497|-0.01596851190770...|-0.06720062257866412|-0.02849478214106783|-0.04508184803730...|-0.03931571237361597|-0.05298008623917...|-0.06783376317483056|-0.01999504831150...|-0.03330391898413436|-0.02173500315233447|-0.02938801472121534|-0.02648174427273...|-0.02719232191460...|-0.05894425815773142|-0.02429042838374...|-0.03115976832961601|-0.02733271274356...|-0.02656514946362...|-0.02974047711046...|-0.02699547707573917|-0.03464611268909417|-0.01963163998524834|-0.03003194523061...|-0.06162613673291529|-0.04859341447082878|-0.04484341392963131|-0.01844332422277...|-0.10025832979013694|-0.04062362072148439|-0.06295832903523882|-0.0830669386326368|-0.02306229377981...|-0.04793731648274038|-0.02924546403913696|-0.05664151071872345|-0.01397207521517...|-0.02438672362647787|-0.03846229718136...|-0.01253530526409...|-0.05911292882395176|-0.01253530526409...|-0.04743148408928239|-0.09778712481641308|-0.04060009385423422|-0.02934938821816219|-0.02564108335254...|-0.01450157513036...|-0.02389263567228...|-0.09864355907803474|-0.02416419776910393|-0.03271317470631243|-0.01475145848843...|-0.02211707598809...|-0.01337513093045...|-0.04199888526708...|-0.02538676421348...|-0.04202501563997...|-0.02005194956461...|-0.01932654746431613|-0.07353573932433866|-0.07591959991521248|-0.07368133146428031|-0.03258424951470...|-0.03700548503414839|-0.08634313308408828|-0.03393711634379...|-0.02338509705111389|-0.04068470765417726|-0.0738188175233493|-0.04054593861649178|-0.03525251476928512|-0.06339286605549259|-0.02440688586327...|-0.0350083825291547|-0.01453099931956...|-0.03140695490966...|-0.03438030508069088|-0.02320548674881...|-0.01955897161477...|-0.2119453882657604|-0.02724711029920307|-0.03955507062111815|-0.01522307135234...|-0.12713088244766477|-0.01390143924727...|-0.03901494802117484|-0.03116683147704...|-0.07055201814638727|-0.1860004678050947|-0.02275109662342...|-0.01673349661469615|-0.01993563509488132|-0.02493234490758...|-0.02290584251770...|-0.02234763554672...|-0.06183071350583...|-0.02207194914306147|-0.02648788664492...|-0.01904507911367...|-0.03545198712111162|-0.01746276766334...|-0.01253530526409...|-0.10978462851423498|-0.13122932551473437|-0.02544392506271432|-0.01923038587024441|-0.021408897417373|-0.01253530526409...|-0.01959837838047...|-0.04098692556755546|-0.02222668991637...|-0.02953060581472249|-0.02330648179183|-0.07258579249990345|-0.04489864614030742|-0.01988926962247...|-0.03340991872690119|-0.06208952744227126|-0.01658157869264...|-0.16109070385414526|-0.08417740907338389|-0.1367541956635|-0.13299711997135552|-0.17731899240133722|-0.09659178931409441|-0.08701703059487687|-0.1674173873846272|-0.02801354269879...|-0.11128702269196548|-0.158017345572961|-0.138961954497253|-0.03150143221240...|-0.03996307304204553|-0.04286764466615509|-0.02604220228764136|-0.02657805897124...|-0.02751955840217...|-0.02002488897828...|-0.02888525849803...|-0.0231783599576937|-0.15287691366574702|-0.14342299839976994|-0.15773449913297652|-0.04233147899236448|-0.05234200784074...|-0.03153900245061189|-0.02249865949236083|-0.02348753982549...|-0.02225974213386426|-0.03675494918117716|-0.02141673323709...|-0.1080231980837484|-0.09923509422246723|-0.11411691141738221|-0.110801854396862|-0.10208510845913639|-0.09363316433921401|-0.03730186088818...|-0.0583035281679872|-0.05731242888264...|-0.02510219750095...|-0.06889285055097355|-0.0411965970627713|-0.03411616149188449|-0.06254702253528059|-0.02812046116107...|-0.03134970969839668|-0.07777957499538092|-0.0359203216041072|-0.05001432768965812|-0.09075388215444528|-0.01918906724502995|-0.07272940849628509|-0.02646821038899...|-0.04144669463027...|-0.02467755626325781|-0.02453604382485661|-0.01852959193214374|-0.02385113934866267|-0.03007787037926258|-0.03630690258933342|-0.02049735774139...|-0.05188507605921232|-0.03285749893063...|-0.1023273561343606|-0.05701271924549412|-0.03695085829468...|-0.02528525888014...|-0.03514862969422335|-0.06315422458716945|-0.08442013008903061|-0.03248254501603...|-0.01600185459343...|-0.07869923487030528|-0.0406852580123631|-0.08468811896223748|-0.01579252939135...|-0.09925283260251333|-0.11103449069372866|-0.02398306909036277|-0.01907471592915...|-0.10194669998480883|-0.0967105927629049|-0.10782489282679589|-0.10331252122117908|-0.1264958250279843|-0.06593493753820108|-0.02086683052149...|-0.09880288962918538|-0.10483132370879088|-0.0931371043936155|-0.08587320941157454|-0.09009065143347855|-0.0906528829890335|-0.09899411526283797|-0.0597443707692986|-0.09301701461298499|-0.04543465423551255|-0.01605292670906...|-0.09477420289083621|-0.08128850418270253|-0.03699453223402...|-0.09501908502934335|-0.02767461323902...|-0.03225080527459...|-0.02926611931041...|-0.09560786748631955|-0.09470379906585136|-0.03695635949827397|-0.02113736810443...|-0.02741881539653...|-0.02066866897596...|-0.09673261678552149|-0.1495173892213675|-0.09527687218016286|-0.09952266712996793|-0.09496727001178966|-0.08315685009688373|-0.07888747675621312|-0.11315348779839343|-0.1065024456731681|-0.08625417162719866|-0.04226836260927698|-0.09384383179949045|-0.10162162577627748|-0.08157815979917603|-0.08890201100247903|-0.08562497280306662|-0.03058470500679914|-0.02551964908936...|-0.04235257861511979|-0.030839991248366|-0.04223992181450...|-0.02802760661462646|-0.03024098648466...|-0.01628215897984298|-0.02605710471535303|-0.03918358240922007|-0.02556570537981...|-0.02536124644775...|-0.05175054074121579|-0.01253530526409...|-0.01482555587915...|-0.01585719938138...|-0.02464861319258...|-0.01253530526409...|-0.02004628085949...|-0.02443123885328...|-0.051735194466199|-0.01253530526409...|-0.02494146758784...|-0.02026723767334068|-0.02092487755752...|-0.02220984121454081|-0.04209921752862985|-0.02279082905753...|-0.06521620733687734|-0.0656798546589098|-0.04012332531549182|-0.05743583720231...|-0.0777470962327653|-0.05538029052636957|-0.04440173187780372|-0.06414063798363762|-0.06019079253350647|-0.04960980157382711|-0.0861055991796224|-0.0966509574869616|-0.0745020389703442|-0.0586207166256548|-0.05267027745599264|-0.06867971799078121|-0.1310183489867955|-0.12985847689595542|-0.07993554118761545|-0.07411106008797205|-0.05760411305905985|-0.08142219632741006|-0.04876126397020748|-0.08017137654605401|-0.05729535722555...|-0.0397936604947615|-0.13025951898451374|-0.10632011314053678|-0.03182553967807...|-0.02293397331746164|-0.10446227564018797|-0.16226318462193035|-0.13741919943783265|-0.1246934994860268|-0.10340843541286893|-0.15640287889787452|-0.15589855445632575|-0.15525631068944865|-0.04646670938477778|-0.15871396442791236|-0.0329326865033875|-0.14495769490217733|-0.15959244033079217|-0.01253530526409...|-0.04646680816969091|-0.15233055799753317|-0.03342029416825774|-0.1275115042991426|-0.05426048818358968|-0.03489009989723...|-0.128836808033593|-0.03253546543822635|-0.03571495391034988|-0.03839472717928764|-0.03960509833307029|-0.04191380212584684|-0.02968404605942...|-0.03127461954150156|-0.03812652847361...|-0.02762807673123...|-0.10651132871048208|-0.04841679746289642|-0.03636206604427824|-0.0176569853802011|-0.04717863332665411|-0.04996942487293737|-0.01838423568804...|-0.03985330173116809|-0.02905966691017441|-0.01525459731632432|-0.04079140702508441|-0.01903640133523029|-0.03626360198523304|-0.01683006030293...|-0.01488816634433109|-0.01847107307636479|-0.02150241061117407|-0.01514777625236...|-0.01950840490775789|-0.01776384428551...|-0.01607715648240...|-0.01253530526409...|-0.03214294388892...|-0.01749422030377...|-0.03054443102992...|-0.01818151444303...|-0.01982655019057...|-0.02371586945520458|-0.02115524762779915|-0.01526358875218...|-0.04684978106529472|-0.01766021875146...|-0.01627706231488...|-0.01641905371409...|-0.01741752342569...|-0.09354024199397377|-0.15132782338164535|-0.14268244555925685|-0.02133826707748...|-0.01724549907676446|-0.01887151108006093|-0.01294703580645...|-0.16726171933903877|-0.01253530526409...|-0.02461251476503...|-0.02396199582193...|-0.01264171546307...|-0.01253530526409...|-0.01253530526409...|-0.02424722094433981|-0.01325001179093876|-0.14713606768385964|-0.13591257860494171|-0.01294975687574695|-0.01481241569941...|-0.04634306467794264|-0.01455965042687...|-0.0281453340990975|-0.02766955975921942|-0.02884990530113...|-0.03633955274681321|-0.02045035889082092|-0.03831684727028403|-0.02900388933712...|-0.02946153392733...|-0.04224974861100...|-0.02894672984207756|-0.02664301551975...|-0.03035415388836...|-0.01729057821813187|-0.01728589534177...|-0.03573731601674...|-0.01253530526409...|-0.02394941193650425|-0.03134767333060446|-0.03299656457423951|-0.0155923492433667|-0.01253530526409...|-0.01859960577730...|-0.02013705063511...|-0.05404527567070459|-0.01421052170221...|-0.01526537616196...|-0.01598424577024524|-0.01450510830797...|-0.02078894836726...|-0.01419131339426265|-0.01319541506961486|-0.01927476625725904|-0.01920320390192...|-0.01983913067394...|-0.02374931997460284|-0.03698170358014311|-0.02181180277370...|-0.01908191608512...|-0.03666586518099262|-0.05316723540601...|-0.02605902142338...|-0.03001403760670581|-0.02110799070984799|-0.03923256604835843|-0.02281775027705...|-0.02126281749316101|-0.01253530526409...|-0.01253530526409...|-0.03246164553595169|-0.0246221520190236|-0.02726037741856...|-0.02959999934821...|-0.01253530526409...|-0.01672422000146...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01292670508594...|-0.01643250389487...|-0.01571667691083...|-0.01345245100707...|-0.06912913396710307|-0.05224570632060724|-0.02294612223923189|-0.02699848943518682|-0.03150373617783074|-0.01253530526409...|-0.02201747211162...|-0.02825975043549447|-0.01623645433952038|-0.02309177604050...|-0.01253530526409...|-0.05271045343377608|-0.01253530526409...|-0.01253530526409...|-0.02235166442481563|-0.02398957251167...|-0.04506300777585498|-0.03257402234815258|-0.01771631449665151|-0.01253530526409...|-0.06664354815190994|-0.01637404272083...|-0.02254276977813...|-0.01307614414923...|-0.04671550282429283|-0.07375169484407176|-0.0162358913185701|-0.0717057743564475|-0.01741629550527...|-0.02080164607187...|-0.03404436194431...|-0.01276760816921...|-0.01771438955560562|-0.01558957506516...|-0.01527758903868...|-0.01995504145089...|-0.0333967269989615|-0.03235576654348234|-0.02086846759355001|-0.03290466057127785|-0.03129065203585669|-0.04007682784236569|-0.03316593507158114|-0.03272945705842481|-0.02436106547235383|-0.1664878581709092|-0.01943308304048869|-0.02205354808784...|-0.08332617709133693|-0.08339506603350243|-0.01926728438019055|-0.05446432201102848|-0.15249018829091587|-0.14658441538331057|-0.15879390067474586|-0.1519084426909212|-0.14978731490429636|-0.04860938636973406|-0.02408677228758...|-0.07125457198926703|-0.06623898051708989|-0.04895904019766...|-0.04816144776768264|-0.069095762691167|-0.06160081189344...|-0.03896125221351899|-0.02476940422598...|-0.03027776830298...|-0.03537762410593287|-0.02566055120304...|-0.03112979685708...|-0.05475844489868674|-0.01824084567448...|-0.03327048520450332|-0.03187575524058429|-0.05870441839562345|-0.01919180668138...|-0.07224811361934234|-0.07323703337089141|-0.05093818288514354|-0.07390041572861683|-0.06216210055522264|-0.07751456377221864|-0.07088256219017237|-0.03030301803627...|-0.05221610814766532|-0.04178845992699953|-0.07341170825003915|-0.07195890854818207|-0.05660507180820...|-0.03476637994802145|-0.01690787544130...|-0.067449311076602|-0.07351893558887462|-0.03507260706674097|-0.03054147155475802|-0.07209037530077307|-0.06366154876363496|-0.05182359259097184|-0.06665303012654963|-0.04242010031752635|-0.03781980281435005|-0.06402338523390858|-0.02308066136557...|-0.05073031428779072|-0.07137838458973725|-0.05871282674631711|-0.05581905043243...|-0.06580184336969125|-0.05720793666761366|-0.05450252739349...|-0.02268147650038...|-0.04045087849155...|-0.05056650709372826|-0.05641304221224261|-0.04867795739408303|-0.02820689916072...|-0.05864977065519...|-0.03069970629800...|-0.02947525118743...|-0.03990723575022...|-0.02545539046826...|-0.03247667774261927|-0.02386590244154...|-0.02142290617987853|-0.02658064564549...|-0.02598914146543...|-0.02902761793381...|-0.0244102654109476|-0.0209416121279024|-0.04384541509688057|-0.02437569191971112|-0.02234106621461...|-0.03188227102174984|-0.02326207340631...|-0.02423972403931877|-0.02218094926694...|-0.01789987165418647|-0.02267995054600638|-0.03515083073708...|-0.03704209259973922|-0.03405014811916035|-0.03851956419395509|-0.03609915208408622|-0.01682190255989...|-0.02521752367004669|-0.01253530526409...|-0.02447505089332...|-0.01850495848790955|-0.01868654923194...|-0.01425868910876522|-0.01734259877157833|-0.02099258870913...|-0.01422633739385...|-0.02048813136764675|-0.02588484615141...|-0.01613817269392121|-0.02049883835062743|-0.01253530526409...|-0.03371181114421186|-0.0343879024983298|-0.033915777187617|-0.02032364322449...|-0.02949845463018714|-0.03069877673778...|-0.02061204066950351|-0.02120430373182...|-0.02472345619949...|-0.02270718857421...|-0.01298942408385784|-0.04260486259305084|-0.01398775146586...|-0.01681667914055...|-0.02986146716409154|-0.01733900623132422|-0.01510350868270...|-0.01253530526409...|-0.01253530526409...|-0.0330596392361737|-0.03244127114734586|-0.03487652976400519|-0.01879152115534...|-0.01944329662943...|-0.02256797829575...|-0.01720636706916...|-0.02407564723463...|-0.02105865407464...|-0.01697174406657...|-0.04046571149371147|-0.02874981447152676|-0.02882365172658...|-0.02808926869834586|-0.01862037147822...|-0.02861820122070...|-0.02061487540105...|-0.02563634846802...|-0.02709183732261...|-0.03127664263715832|-0.03193546656638005|-0.03095982116797...|-0.02667629146476784|-0.02397513314539...|-0.02832771374323...|-0.02522160175912...|-0.04158630164117067|-0.02690375511238...|-0.01253530526409...|-0.03050160615347366|-0.04175463287817...|-0.01253530526409...|-0.02421651791350...|-0.03397255420254003|-0.01329276300431...|-0.03237075977356102|-0.02552889653922254|-0.02429819645393855|-0.01402273864549...|-0.04284413524229461|-0.01539884137391...|-0.02070071847359...|-0.02484432787944...|-0.03010772535148495|-0.02426919127258...|-0.02315407211748...|-0.01619223466096022|-0.02926605508369...|-0.02362891100887...|-0.04130113188924037|-0.02171519806721543|-0.03297026325809504|-0.04193181665521881|-0.0490249633394661|-0.03416734993491...|-0.02935365517765359|-0.04236541758707675|-0.03678220502492...|-0.03498576469388172|-0.04462173100887154|-0.01516825930718...|-0.01703229361277...|-0.01253530526409...|-0.01253530526409...|-0.02544762394769...|-0.03609983958881902|-0.02398521916425...|-0.02437321925997174|-0.02171519806721...|-0.01911792669417...|-0.03208011151444031|-0.01837959852808...|-0.02239763213288...|-0.04164946404585...|-0.05037868427764588|-0.01663882997260...|-0.01253530526409...|-0.02616955488265...|-0.01606311479375...|-0.02246666286776...|-0.0390590808957263|-0.02171519806721...|-0.01253530526409...|-0.02805026849726...|-0.02302154951401...|-0.01894484841985...|-0.01776817663338...|-0.01828663561188...|-0.01494980390238...|-0.02203524211095...|-0.01909816452190887|-0.01253530526409...|-0.01530506759858287|-0.01253530526409...|-0.04233290488610049|-0.02021406141666456|-0.02214853605830602|-0.03157613688872718|-0.02838641537388...|-0.02676776565478...|-0.02908452682552...|-0.02181256520167...|-0.02636730281999...|-0.02504037232676046|-0.03780571699367798|-0.01826639444229...|-0.02136819405882...|-0.02541080604858...|-0.01423384559727...|-0.02091416946480...|-0.01899177765470...|-0.01413257365485...|-0.0261510553160351|-0.01253530526409...|-0.02052550345546077|-0.01860371134729...|-0.02211894201629609|-0.01253530526409...|-0.02328030804560...|-0.01253530526409...|-0.04135496001411825|-0.01772070316010...|-0.01461339602790...|-0.02171519806721...|-0.02083605409139597|-0.01253530526409...|-0.02376540396516...|-0.02494027581850709|-0.01679585292910...|-0.02425221712718...|-0.01547450165426...|-0.02468458154509417|-0.02686984985535...|-0.02588205200294...|-0.02412779215383542|-0.01253530526409...|-0.01337343806805...|-0.01919878882140608|-0.02169786241970...|-0.01506432230511...|-0.02680507622184411|-0.02675613457629542|-0.02624694593015189|-0.0253853895300528|-0.02171519806721543|-0.01350148489580...|-0.01253530526409...|-0.01253530526409...|-0.01775630771908...|-0.01819799705194...|-0.01860166905854...|-0.01918945284255665|-0.01323880479552...|-0.01406597904063...|-0.02075164821487...|-0.01845218258492...|-0.02171519806721543|-0.03017432102856888|-0.01253530526409...|-0.01253530526409...|-0.01536460931316...|-0.01633492528981289|-0.01524018221630...|-0.01888324415060...|-0.01253530526409...|-0.01253530526409...|-0.02442207193970...|-0.01826519765450596|-0.01756098791503...|-0.01751650318719771|-0.01253530526409...|-0.01253530526409...|-0.11828964769806191|-0.01880638223754...|-0.01492421881356...|-0.01651180763916...|-0.02754521440964...|-0.02507221339433917|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01974834555200304|-0.01768396404016...|-0.01898542899455275|-0.01567341210477...|-0.02117650079224...|-0.01900951018891...|-0.01774568419985...|-0.01690510302238...|-0.01358298173947...|-0.01253530526409...|-0.01934904707323...|-0.01253530526409...|-0.01603289575171906|-0.02178001923083...|-0.01432414761615...|-0.02034639052362...|-0.02909081528935...|-0.04406388796671537|-0.0386701817405381|-0.0239177091159095|-0.01992263919029388|-0.01301628347317...|-0.01771565123160632|-0.01329108945404...|-0.01338442380647...|-0.01846147795769...|-0.02149788590180537|-0.02171519806721543|-0.10711225980910805|-0.01253530526409...|-0.01673571541865336|-0.01928508341519...|-0.02171519806721543|-0.03511011819221...|-0.01643450187480...|-0.03215625471535802|-0.03369024077051305|-0.01722588834163285|-0.01996480147735...|-0.01585995781616...|-0.01582817555441...|-0.01771192825579...|-0.01253530526409...|-0.07221299698259433|-0.01253530526409...|-0.02873252003267...|-0.02189132311711...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01399504068788...|-0.01262263416179...|-0.01253530526409...|-0.01253530526409...|-0.01342951514783...|-0.01603203118121...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01370884592458...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01299595276722...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01281102672722...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01415660837783...|-0.01537465706328...|-0.02933084253167807|-0.0125353052640975|-0.01679458415742178|-0.02302404318500...|-0.01634860563700256|-0.01596533141929...|-0.02002349435431...|-0.02402644840233...|-0.02465617364197...|-0.02149115280446276|-0.01706946638657...|-0.01253530526409751|-0.01801284765157559|-0.01913027109278196|-0.01253530526409...|-0.03285502683798...|-0.01728257641737...|-0.01709021199591...|-0.01592983718364509|-0.01253530526409...|-0.01891183436077981|-0.01253530526409...|-0.02183907960590...|-0.01253530526409...|-0.01793482743122...|-0.01696652144640639|-0.01583373427010...|-0.01484712338160...|-0.01345291021280...|-0.02279205348179336|-0.01706611843066...|-0.01253530526409...|-0.01994467550296...|-0.01391010473843...|-0.01763626100544...|-0.02638063317880804|-0.01710225932460...|-0.0162814710327804|-0.02128930601552...|-0.01748228381190188|-0.01725598809926...|-0.01985106950580...|-0.01626246097396...|-0.01754275897116...|-0.01253530526409...|-0.01253530526409...|-0.01689769835940...|-0.01824077092964...|-0.01454766695137...|-0.01253530526409...|-0.01613270081853...|-0.02072559319138...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01310237795132...|-0.01772629675196...|-0.01253530526409...|-0.02055078466182...|-0.01769044412442...|-0.01402285625569...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.03165314881105696|-0.02247161250255...|-0.01253530526409...|-0.01390759986044...|-0.01253530526409...|-0.01670700896530788|-0.01253530526409...|-0.02691881356112046|-0.02150779453362515|-0.01897511038699...|-0.02171519806721...|-0.02373468305757...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01749002511191...|-0.02052176790488...|-0.01253530526409...|-0.07981410892370255|-0.01944906220579263|-0.01798605897820234|-0.01376040679851...|-0.02541411600383388|-0.01332669261355...|-0.02194160752041...|-0.01253530526409...|-0.01253530526409...|-0.01765176945836...|-0.01769418866327...|-0.01965135217109...|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01387083103708...|-0.01253530526409...|-0.01629030890316...|-0.01598511256106...|-0.01253530526409...|-0.02375143976135...|-0.01253530526409...|-0.01809703984959...|-0.01772450861786...|-0.01253530526409...|-0.01253530526409...|-0.01327736874371...|-0.01265972467981...|-0.01253530526409751|-0.02631034067213...|-0.01668528498536...|-0.01571896763333...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.0125353052640975|-0.0298896235905307|-0.01929251649515151|-0.01253530526409...|-0.01253530526409...|-0.01630507333875433|-0.02345467432947218|-0.02029996650094801|-0.02339641319796861|-0.01662372032677...|-0.01253530526409...|-0.01253530526409...|-0.02926819746066...|-0.01869312062516...|-0.01253530526409...|-0.01655212081484...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01690163698577...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01603845075993...|-0.02965128572246...|-0.02376426872813861|-0.01253530526409...|-0.01253530526409...|-0.02571852240630...|-0.01253530526409...|-0.02285022676111892|-0.01253530526409...|-0.01253530526409...|-0.01772267963829...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01539970759822...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01517373528312...|-0.01333212216736...|-0.01767893416678871|-0.01253530526409...|-0.04286693269415914|-0.07926070300627827|-0.07565647741354355|-0.05862241990822177|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01367913977777574|-0.01560374229199...|-0.02388109165435...|-0.01370364575074...|-0.01654720890883482|-0.01921070258814483|-0.0168026017245111|-0.01780898257543...|-0.01516063864468...|-0.01452077958907...|-0.02234551686725037|-0.01519998564338...|-0.01685181847923913|-0.02080144293167...|-0.01477901886912...|-0.01690680081271...|-0.01865518039065...|-0.02247370678067...|-0.01785850363608564|-0.02013830859291...|-0.01571832205345...|-0.01591850952257...|-0.01916053750312...|-0.02015876484877...|-0.01581507331445443|-0.02729532109301...|-0.02044959455992157|-0.01313582118934...|-0.01924483009399966|-0.01334051682238...|-0.03454274816586165|-0.01749583743523395|-0.02786642576927954|-0.01486191092491...|-0.02026022069136162|-0.01791183855066...|-0.0162374101267291|-0.01662803116974045|-0.01508075189344...|-0.01425608788418...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02015212614783...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02331490785296...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01764305562171852|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01575788788538...|-0.01571380393699...|-0.01764097785509...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02548858964314...|-0.01638896332210...|-0.01583732191795...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01918672320120...|-0.01253530526409...|-0.01253530526409...|-0.02899362265741...|-0.01253530526409...|-0.01253530526409...|-0.01411002760164372|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01751729783967...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01824900866622605|-0.01253530526409...|-0.02343731739916086|-0.01253530526409...|-0.02031128674373...|-0.01425627696583...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02048428238599...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01701264394676...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02787356155947...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01772891899495...|-0.01253530526409...|-0.01765116565821365|-0.01253530526409...|-0.01253530526409...|-0.05339654494092747|-0.066362690254457|-0.05067500602392155|-0.01253530526409...|-0.01770105989560506|-0.02152507933191...|-0.01712227476944...|-0.01253530526409...|-0.05236003527957662|-0.04083933811554...|-0.04371900350339...|-0.04195847481574377|-0.01834799104408...|-0.0185728480457948|-0.01938955175779...|-0.01253530526409...|-0.01253530526409...|-0.02317505098239...|-0.01253530526409...|-0.02911625882080...|-0.01758501245241...|-0.01253530526409...|-0.0125353052640975|-0.01253530526409...|-0.01253530526409...|-0.02555089152680...|-0.02531115320437...|-0.01395774874221...|-0.0250368644254073|-0.01253530526409...|-0.03684196027283...|-0.01933596724505...|-0.02008533678904115|-0.02482975925189255|-0.01253530526409751|-0.01253530526409751|-0.01670986226813...|-0.02248659164373...|-0.01253530526409...|-0.01253530526409...|-0.01671354929167197|-0.01253530526409...|-0.02298573288912...|-0.01714241828211743|-0.01253530526409...|-0.01253530526409...|-0.01752042282091...|-0.01253530526409...|-0.01716924424884...|-0.01682577118133931|-0.01323926770884...|-0.01253530526409...|-0.02293929673970...|-0.01346284723865...|-0.01253530526409...|-0.01253530526409...|-0.02176675993508...|-0.01253530526409...|-0.01733938767750971|-0.01769763334924423|-0.01253530526409...|-0.01253530526409...|-0.03341520687515...|-0.01519710872955...|-0.01506615199283...|-0.01832851066700...|-0.01762225086129...|-0.01253530526409...|-0.01253530526409...|-0.01308637836901...|-0.01914018735913...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.02366306112550...|-0.01531944490230...|-0.01253530526409...|-0.01772338658713591|-0.01740231821674...|-0.01749615027886...|-0.01758490466500015|-0.01253530526409751|-0.01715333788473955|-0.01661372333535261|-0.01541176076787...|-0.01253530526409...|-0.01634390399834...|-0.01437843822018...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01989145181019...|-0.01253530526409...|-0.01693991511437...|-0.01253530526409...|-0.01281155618999...|-0.01347613602847...|-0.01253530526409...|-0.01253530526409...|-0.02058318262671...|-0.01772828701071...|-0.02114846463732...|-0.01253530526409...|-0.01412313269634361|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.0149649591628405|-0.01987168589839567|-0.01253530526409...|-0.02385016677132...|-0.01253530526409...|-0.01293413420043...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01444906170582...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409751|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|-0.01765226439968...|-0.01253530526409...|-0.01253530526409...|-0.01253530526409...|nmdc:bsm-11-65a4xw75| +------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+------------------+------------------+------------------+-------------------+------------------+------------------+------------------+------------------+-------------------+------------------+--------------------+------------------+------------------+--------------------+-------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+------------------+------------------+------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+-------------------+------------------+-------------------+------------------+--------------------+-------------------+------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+------------------+-------------------+-------------------+--------------------+--------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+------------------+-------------------+--------------------+------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+------------------+-------------------+------------------+------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+-------------------+------------------+------------------+-------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+--------------------+-------------------+------------------+------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+------------------+------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+--------------------+------------------+--------------------+------------------+--------------------+-------------------+--------------------+------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+-------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+------------------+--------------------+--------------------+-------------------+--------------------+-----------------+--------------------+------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+------------------+------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+-------------------+------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-----------------+-------------------+-------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+-------------------+-------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-----------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+----------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+-------------------+-------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+-------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+--------------------+ === Sample metabolomics_gold rows (file_id, name, kegg, chebi) === +---------------------+-----------------------------------------------------------------------------------------------------------------------------------+----+----+-----+-----------------+ |file_id |file_name |name|kegg|chebi|Molecular Formula| +---------------------+-----------------------------------------------------------------------------------------------------------------------------------+----+----+-----+-----------------+ |nmdc:dobj-12-c6668e59|20220119_JGI_MD_507130_BioS_final1_QE-139_HILICZ_USHXG01825_NEG_MSMS_84RM_BESC-360-Corv-RM_1_Rg70to1050-CE102040-root-S1_Run722.csv|NULL|NULL|NULL |NULL | |nmdc:dobj-12-c6668e59|20220119_JGI_MD_507130_BioS_final1_QE-139_HILICZ_USHXG01825_NEG_MSMS_84RM_BESC-360-Corv-RM_1_Rg70to1050-CE102040-root-S1_Run722.csv|NULL|NULL|NULL |NULL | |nmdc:dobj-12-c6668e59|20220119_JGI_MD_507130_BioS_final1_QE-139_HILICZ_USHXG01825_NEG_MSMS_84RM_BESC-360-Corv-RM_1_Rg70to1050-CE102040-root-S1_Run722.csv|NULL|NULL|NULL |NULL | |nmdc:dobj-12-c6668e59|20220119_JGI_MD_507130_BioS_final1_QE-139_HILICZ_USHXG01825_NEG_MSMS_84RM_BESC-360-Corv-RM_1_Rg70to1050-CE102040-root-S1_Run722.csv|NULL|NULL|NULL |NULL | |nmdc:dobj-12-c6668e59|20220119_JGI_MD_507130_BioS_final1_QE-139_HILICZ_USHXG01825_NEG_MSMS_84RM_BESC-360-Corv-RM_1_Rg70to1050-CE102040-root-S1_Run722.csv|NULL|NULL|NULL |NULL | +---------------------+-----------------------------------------------------------------------------------------------------------------------------------+----+----+-----+-----------------+
# Step 1e: Check taxonomy classifiers for available rank columns
for tbl in ['kraken_gold', 'centrifuge_gold', 'gottcha_gold']:
try:
print(f'\n=== nmdc_arkin.{tbl} schema ===')
spark.sql(f'DESCRIBE nmdc_arkin.{tbl}').show(30, truncate=False)
except Exception as e:
print(f' ERROR describing {tbl}: {e}')
=== nmdc_arkin.kraken_gold schema === +-------------+---------+-------+ |col_name |data_type|comment| +-------------+---------+-------+ |percent |float |NULL | |clade_reads |int |NULL | |direct_reads |int |NULL | |taxid |int |NULL | |name |string |NULL | |file_id |string |NULL | |file_name |string |NULL | |rank |string |NULL | |taxid_lineage|string |NULL | |lineage |string |NULL | |abundance |float |NULL | |abundance_clr|float |NULL | |rn |bigint |NULL | +-------------+---------+-------+ === nmdc_arkin.centrifuge_gold schema === +-------------+---------+-------+ |col_name |data_type|comment| +-------------+---------+-------+ |file_id |string |NULL | |file_name |string |NULL | |rank |string |NULL | |taxid |bigint |NULL | |taxid_lineage|string |NULL | |lineage |string |NULL | |label |string |NULL | |numReads |bigint |NULL | |abundance_raw|double |NULL | |species_count|bigint |NULL | |abundance |double |NULL | |abundance_clr|double |NULL | |rn |bigint |NULL | +-------------+---------+-------+ === nmdc_arkin.gottcha_gold schema === +-----------------+---------+-------+ |col_name |data_type|comment| +-----------------+---------+-------+ |rank |string |NULL | |label |string |NULL | |read_count |bigint |NULL | |total_bp_mapped |bigint |NULL | |total_bp_mismatch|bigint |NULL | |linear_len |bigint |NULL | |linear_doc |double |NULL | |rollup_doc |double |NULL | |abundance |double |NULL | |file_id |string |NULL | |file_name |string |NULL | |taxid |bigint |NULL | |class_id |string |NULL | |abundance_clr |double |NULL | |rn |bigint |NULL | +-----------------+---------+-------+
Part 2: Study and Sample Inventory¶
How many studies exist? What ecosystems are covered? How many samples have paired taxonomy + metabolomics?
# All studies with row count
study_df = spark.sql("""
SELECT *
FROM nmdc_arkin.study_table
""").toPandas()
print(f'Total studies: {len(study_df)}')
print(study_df.columns.tolist())
study_df.head(10)
Total studies: 48 ['study_id', 'name', 'description', 'ecosystem', 'ecosystem_category', 'ecosystem_type', 'ecosystem_subtype', 'specific_ecosystem', 'principal_investigator_has_raw_value', 'principal_investigator_profile_image_url', 'principal_investigator_orcid', 'principal_investigator_type', 'type', 'funding_sources', 'has_credit_associations', 'gold_study_identifiers', 'title', 'study_category', 'associated_dois', 'protocol_link', 'principal_investigator_name', 'websites', 'part_of', 'principal_investigator_email', 'study_image', 'insdc_bioproject_identifiers', 'homepage_website', 'gnps_task_identifiers', 'jgi_portal_study_identifiers', 'notes', 'emsl_project_identifiers', 'alternative_names']
| study_id | name | description | ecosystem | ecosystem_category | ecosystem_type | ecosystem_subtype | specific_ecosystem | principal_investigator_has_raw_value | principal_investigator_profile_image_url | ... | part_of | principal_investigator_email | study_image | insdc_bioproject_identifiers | homepage_website | gnps_task_identifiers | jgi_portal_study_identifiers | notes | emsl_project_identifiers | alternative_names | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | nmdc:sty-11-8fb6t785 | Deep subsurface shale carbon reservoir microbi... | This project aims to improve the understanding... | Environmental | Terrestrial | Deep subsurface | Unclassified | Unclassified | Kelly Wrighton | https://portal.nersc.gov/project/m3408/profile... | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 1 | nmdc:sty-11-33fbta56 | Peatland microbial communities from Minnesota,... | This study is part of the Spruce and Peatland ... | Environmental | Aquatic | Freshwater | Wetlands | Unclassified | Christopher Schadt | https://portal.nersc.gov/project/m3408/profile... | ... | ["nmdc:sty-11-cytnjc39"] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 2 | nmdc:sty-11-aygzgv51 | Riverbed sediment microbial communities from t... | This research project aimed to understand how ... | Environmental | Aquatic | Freshwater | River | Sediment | James Stegen | https://portal.nersc.gov/project/m3408/profile... | ... | ["nmdc:sty-11-x4aawf73", "nmdc:sty-11-xcbexm97"] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 3 | nmdc:sty-11-34xj1150 | National Ecological Observatory Network: soil ... | This study contains the quality-controlled lab... | NaN | NaN | NaN | NaN | NaN | Kate Thibault | https://portal.nersc.gov/project/m3408/profile... | ... | ["nmdc:sty-11-nxrz9m96"] | kthibault@battelleecology.org | [{"url": "https://portal.nersc.gov/project/m34... | ["bioproject:PRJNA406974", "bioproject:PRJNA10... | ["https://www.neonscience.org/"] | NaN | NaN | NaN | NaN | NaN |
| 4 | nmdc:sty-11-076c9980 | Lab enrichment of tropical soil microbial comm... | This study is part of the Microbes Persist: Sy... | Environmental | Terrestrial | Soil | Unclassified | Forest Soil | Jennifer Pett-Ridge | https://portal.nersc.gov/project/m3408/profile... | ... | ["nmdc:sty-11-msexsy29"] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 5 | nmdc:sty-11-t91cwb40 | Determining the genomic basis for interactions... | The goal of this work is to develop the knowle... | NaN | NaN | NaN | NaN | NaN | Michelle O'Malley | https://chemengr.ucsb.edu/sites/default/files/... | ... | NaN | momalley@engineering.ucsb.edu | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 6 | nmdc:sty-11-5bgrvr62 | Freshwater microbial communities from Lake Men... | The goal of this study is to examine long-term... | NaN | NaN | NaN | NaN | NaN | Katherine McMahon | https://portal.nersc.gov/project/m3408/profile... | ... | NaN | tmcmahon@cae.wisc.edu | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 7 | nmdc:sty-11-5tgfr349 | Freshwater microbial communities from rivers f... | Streams and rivers represent key functioning u... | Environmental | Aquatic | Freshwater | River | Unclassified | Kelly Wrighton | https://portal.nersc.gov/project/m3408/profile... | ... | ["nmdc:sty-11-x4aawf73", "nmdc:sty-11-xcbexm97"] | kwrighton@gmail.com | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 8 | nmdc:sty-11-dcqce727 | Bulk soil microbial communities from the East ... | This research project aimed to understand how ... | Environmental | Terrestrial | Soil | Meadow | Bulk soil | Eoin Brodie | https://portal.nersc.gov/project/m3408/profile... | ... | ["nmdc:sty-11-2zhqs261"] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
| 9 | nmdc:sty-11-1t150432 | Populus root and rhizosphere microbial communi... | This study is part of the Plant-Microbe Interf... | Host-associated | Plants | Unclassified | Unclassified | Unclassified | Mitchel J. Doktycz | https://portal.nersc.gov/project/m3408/profile... | ... | ["nmdc:sty-11-f1he1955"] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 rows × 32 columns
# Count samples with taxonomy data
# taxonomy_features is wide-format (rows = samples based on 6,365 expected samples)
# — count rows directly; no sample_id column
n_tax_samples = spark.sql("""
SELECT COUNT(*) as n FROM nmdc_arkin.taxonomy_features
""").collect()[0]['n']
# Classifier tables (tidy format) use file_id, not sample_id
n_kraken_files = spark.sql("""
SELECT COUNT(DISTINCT file_id) as n FROM nmdc_arkin.kraken_gold
""").collect()[0]['n']
# metabolomics_gold uses file_id, not sample_id
n_met_files = spark.sql("""
SELECT COUNT(DISTINCT file_id) as n FROM nmdc_arkin.metabolomics_gold
""").collect()[0]['n']
print(f'taxonomy_features row count (likely = n_samples): {n_tax_samples}')
print(f'kraken_gold distinct file_ids: {n_kraken_files}')
print(f'metabolomics_gold distinct file_ids: {n_met_files}')
taxonomy_features row count (likely = n_samples): 6365 kraken_gold distinct file_ids: 3579 metabolomics_gold distinct file_ids: 2460
# Files with BOTH taxonomy (kraken_gold) AND metabolomics data
# Both tables use file_id as identifier — join on that
# taxonomy_features is wide-format and cannot be joined this way; use classifier tables instead
overlap_df = spark.sql("""
SELECT k.file_id, k.file_name
FROM (SELECT DISTINCT file_id, file_name FROM nmdc_arkin.kraken_gold) k
JOIN (SELECT DISTINCT file_id FROM nmdc_arkin.metabolomics_gold) m
ON k.file_id = m.file_id
""").toPandas()
print(f'Files with BOTH kraken taxonomy AND metabolomics: {len(overlap_df)}')
overlap_files = set(overlap_df['file_id'])
# Also check centrifuge and gottcha overlap with metabolomics
for clf in ['centrifuge_gold', 'gottcha_gold']:
try:
n = spark.sql(f"""
SELECT COUNT(DISTINCT c.file_id)
FROM (SELECT DISTINCT file_id FROM nmdc_arkin.{clf}) c
JOIN (SELECT DISTINCT file_id FROM nmdc_arkin.metabolomics_gold) m
ON c.file_id = m.file_id
""").collect()[0][0]
print(f'Files with {clf} AND metabolomics: {n}')
except Exception as e:
print(f' {clf}: error — {e}')
Files with BOTH kraken taxonomy AND metabolomics: 0 Files with centrifuge_gold AND metabolomics: 0 Files with gottcha_gold AND metabolomics: 0
# Inspect file_id and file_name formats to understand study → file linkage
print('Overlap file_id examples (first 10):')
print(overlap_df['file_id'].head(10).tolist())
print('\nOverlap file_name examples (first 10):')
print(overlap_df['file_name'].head(10).tolist())
print('\nStudy_id examples (from study_table):')
print(study_df['study_id'].head(5).tolist())
# Check if file_name contains study_id as a prefix or substring
# NMDC study IDs look like: nmdc:sty-11-XXXXXXXX
# File IDs may look like: nmdc:dobj-XXXXXXXX
# Try to find the connection between them
print('\n=== Check if file_name hints at study association ===')
spark.sql("""
SELECT file_id, file_name, COUNT(*) as n_rows
FROM nmdc_arkin.kraken_gold
GROUP BY file_id, file_name
ORDER BY n_rows DESC
LIMIT 10
""").show(truncate=False)
Overlap file_id examples (first 10): [] Overlap file_name examples (first 10): [] Study_id examples (from study_table): ['nmdc:sty-11-8fb6t785', 'nmdc:sty-11-33fbta56', 'nmdc:sty-11-aygzgv51', 'nmdc:sty-11-34xj1150', 'nmdc:sty-11-076c9980'] === Check if file_name hints at study association === +---------------------+-------------------------------------------+------+ |file_id |file_name |n_rows| +---------------------+-------------------------------------------+------+ |nmdc:dobj-11-svpmw454|nmdc_wfrbt-11-krmkys65.1_kraken2_report.tsv|12595 | |nmdc:dobj-11-s8b12441|nmdc_wfrbt-11-5gcw5k71.1_kraken2_report.tsv|12483 | |nmdc:dobj-11-hhrnxd09|nmdc_wfrbt-11-d7dv6w83.1_kraken2_report.tsv|12395 | |nmdc:dobj-11-b4g1fd91|nmdc_wfrbt-11-raanr328.1_kraken2_report.tsv|12385 | |nmdc:dobj-11-pvqp6435|nmdc_wfrbt-11-s4hfm818.1_kraken2_report.tsv|12334 | |nmdc:dobj-11-n7nar606|nmdc_wfrbt-11-g9t23w61.1_kraken2_report.tsv|12300 | |nmdc:dobj-11-neadqz82|nmdc_wfrbt-11-3rp4e238.1_kraken2_report.tsv|12274 | |nmdc:dobj-11-5sxn6758|nmdc_wfrbt-11-a19v5v56.1_kraken2_report.tsv|12194 | |nmdc:dobj-11-d0cmr712|nmdc_wfrbt-11-y9r7yf69.1_kraken2_report.tsv|12187 | |nmdc:dobj-11-w69wbq27|nmdc_wfrbt-11-cq2hsx55.1_kraken2_report.tsv|12164 | +---------------------+-------------------------------------------+------+
# Abiotic features — verify the ID column name first (may be sample_id OR file_id)
print('=== nmdc_arkin.abiotic_features schema ===')
abiotic_schema = spark.sql('DESCRIBE nmdc_arkin.abiotic_features').toPandas()
id_cols = abiotic_schema[abiotic_schema['col_name'].isin(['sample_id', 'file_id'])]
print(id_cols[['col_name', 'data_type']].to_string())
print()
# Determine which ID column to use
if 'file_id' in abiotic_schema['col_name'].values:
abiotic_id_col = 'file_id'
elif 'sample_id' in abiotic_schema['col_name'].values:
abiotic_id_col = 'sample_id'
else:
abiotic_id_col = None
print('WARNING: Neither file_id nor sample_id found in abiotic_features!')
print('Available columns:', abiotic_schema['col_name'].tolist()[:10])
print(f'Using abiotic_features ID column: {abiotic_id_col}')
abiotic_df = spark.sql('SELECT * FROM nmdc_arkin.abiotic_features').toPandas()
print(f'\nTotal abiotic_features rows: {len(abiotic_df)}')
if abiotic_id_col:
abiotic_overlap = abiotic_df[abiotic_df[abiotic_id_col].isin(overlap_files)]
print(f'Abiotic features for overlap files: {len(abiotic_overlap)}')
else:
abiotic_overlap = pd.DataFrame()
print('Cannot filter abiotic_features — unknown ID column.')
print('Abiotic columns:', abiotic_df.columns.tolist())
=== nmdc_arkin.abiotic_features schema ===
col_name data_type
0 sample_id string
Using abiotic_features ID column: sample_id
Total abiotic_features rows: 13847
Abiotic features for overlap files: 0
Abiotic columns: ['sample_id', 'annotations_ammonium_has_numeric_value', 'annotations_ammonium_nitrogen_has_numeric_value', 'annotations_calcium_has_numeric_value', 'annotations_carb_nitro_ratio_has_numeric_value', 'annotations_chlorophyll_has_numeric_value', 'annotations_conduc_has_numeric_value', 'annotations_depth_has_maximum_numeric_value', 'annotations_depth_has_minimum_numeric_value', 'annotations_depth_has_numeric_value', 'annotations_diss_org_carb_has_numeric_value', 'annotations_diss_oxygen_has_numeric_value', 'annotations_magnesium_has_numeric_value', 'annotations_manganese_has_numeric_value', 'annotations_ph', 'annotations_potassium_has_numeric_value', 'annotations_samp_size_has_numeric_value', 'annotations_soluble_react_phosp_has_numeric_value', 'annotations_temp_has_numeric_value', 'annotations_tot_nitro_content_has_numeric_value', 'annotations_tot_org_carb_has_numeric_value', 'annotations_tot_phosp_has_numeric_value']
Part 3: Taxonomy Classifier Comparison¶
Which classifier (kraken_gold, centrifuge_gold, gottcha_gold, taxonomy_features) provides the most species-level resolution in overlap samples?
# Classifier schema summary (from Part 1):
# kraken_gold: file_id, file_name, rank, name (taxon name), taxid, abundance, abundance_clr
# centrifuge_gold: file_id, file_name, rank, label (taxon name), taxid, abundance, abundance_clr
# gottcha_gold: file_id, file_name, rank, label (taxon name), taxid, abundance, abundance_clr
# For each classifier: what fraction of rows are at species rank?
# and how many overlap files have data?
classifiers = {
'kraken_gold': {'name_col': 'name', 'abund_col': 'abundance'},
'centrifuge_gold': {'name_col': 'label', 'abund_col': 'abundance'},
'gottcha_gold': {'name_col': 'label', 'abund_col': 'abundance'},
}
clf_stats = []
for tbl, cols in classifiers.items():
try:
stats = spark.sql(f"""
SELECT
COUNT(*) as n_total_rows,
COUNT(DISTINCT file_id) as n_files,
SUM(CASE WHEN LOWER(rank) = 'species' THEN 1 ELSE 0 END) as n_species_rows,
COUNT(DISTINCT CASE WHEN LOWER(rank) = 'species' THEN file_id END) as n_files_with_species
FROM nmdc_arkin.{tbl}
""").toPandas()
stats['classifier'] = tbl
stats['species_row_frac'] = stats['n_species_rows'] / stats['n_total_rows']
# overlap with metabolomics
n_overlap = spark.sql(f"""
SELECT COUNT(DISTINCT c.file_id)
FROM (SELECT DISTINCT file_id FROM nmdc_arkin.{tbl} WHERE LOWER(rank) = 'species') c
JOIN (SELECT DISTINCT file_id FROM nmdc_arkin.metabolomics_gold) m
ON c.file_id = m.file_id
""").collect()[0][0]
stats['n_overlap_with_metabolomics'] = n_overlap
clf_stats.append(stats)
print(f'{tbl}: {stats["n_files"].iloc[0]} files, '
f'{stats["species_row_frac"].iloc[0]:.1%} rows at species rank, '
f'{n_overlap} overlap with metabolomics')
except Exception as e:
print(f' ERROR for {tbl}: {e}')
if clf_stats:
import pandas as pd
clf_summary = pd.concat(clf_stats, ignore_index=True)
display(clf_summary[['classifier', 'n_files', 'n_species_rows', 'species_row_frac',
'n_files_with_species', 'n_overlap_with_metabolomics']])
kraken_gold: 3579 files, 48.9% rows at species rank, 0 overlap with metabolomics centrifuge_gold: 3577 files, 61.3% rows at species rank, 0 overlap with metabolomics gottcha_gold: 3354 files, 44.1% rows at species rank, 0 overlap with metabolomics
| classifier | n_files | n_species_rows | species_row_frac | n_files_with_species | n_overlap_with_metabolomics | |
|---|---|---|---|---|---|---|
| 0 | kraken_gold | 3579 | 14205053 | 0.489425 | 3579 | 0 |
| 1 | centrifuge_gold | 3577 | 16251742 | 0.613431 | 3577 | 0 |
| 2 | gottcha_gold | 3354 | 212826 | 0.440936 | 3354 | 0 |
# Column name reference for NB02 (confirmed from schema verification above)
#
# kraken_gold:
# RANK_COL = 'rank' # values: 'species', 'genus', 'family', ...
# TAXON_COL = 'name' # taxon name string (e.g., 'Escherichia coli')
# ABUND_COL = 'abundance' # pre-normalized relative abundance (float)
# TAXID_COL = 'taxid' # NCBI taxid (int)
# ID_COL = 'file_id' # NOT sample_id
#
# centrifuge_gold / gottcha_gold:
# RANK_COL = 'rank'
# TAXON_COL = 'label' # NOTE: 'label', not 'name'
# ABUND_COL = 'abundance'
# ID_COL = 'file_id'
#
# metabolomics_gold:
# ID_COL = 'file_id'
# COMPOUND_NAME = 'name'
# KEGG_COL = 'kegg' # string (KEGG compound ID, e.g., 'C00041')
# CHEBI_COL = 'chebi' # double (ChEBI ID)
# INCHI_COL = 'inchi'
# ABUND_COL = 'Area' # or 'Intensity' — TBD after inspecting values
print('Column reference confirmed. No TODOs remaining for schema.')
Column reference confirmed. No TODOs remaining for schema.
Part 4: Metabolomics Coverage¶
What fraction of measured compounds carry KEGG/ChEBI compound IDs (needed for amino acid matching in NB04)?
# Per-file compound counts and intensity stats
# metabolomics_gold uses file_id (not sample_id)
met_file_stats = spark.sql("""
SELECT
file_id,
COUNT(*) as n_features_total,
COUNT(DISTINCT `name`) as n_named_compounds,
SUM(CASE WHEN kegg IS NOT NULL AND kegg != '' THEN 1 ELSE 0 END) as n_kegg_annotated,
SUM(CASE WHEN chebi IS NOT NULL THEN 1 ELSE 0 END) as n_chebi_annotated
FROM nmdc_arkin.metabolomics_gold
GROUP BY file_id
""").toPandas()
print(f'Files with metabolomics: {len(met_file_stats)}')
print(f'Features per file — median: {met_file_stats["n_features_total"].median():.0f}, '
f'max: {met_file_stats["n_features_total"].max()}')
print(f'KEGG annotation rate (mean across files): '
f'{(met_file_stats["n_kegg_annotated"] / met_file_stats["n_features_total"]).mean():.1%}')
print(f'ChEBI annotation rate (mean across files): '
f'{(met_file_stats["n_chebi_annotated"] / met_file_stats["n_features_total"]).mean():.1%}')
met_file_stats.describe()
Files with metabolomics: 2460 Features per file — median: 1036, max: 12281 KEGG annotation rate (mean across files): 1.9% ChEBI annotation rate (mean across files): 2.3%
| n_features_total | n_named_compounds | n_kegg_annotated | n_chebi_annotated | |
|---|---|---|---|---|
| count | 2460.000000 | 2460.000000 | 2460.000000 | 2460.000000 |
| mean | 1271.976016 | 50.875610 | 25.091463 | 31.138618 |
| std | 1154.567173 | 43.138003 | 19.672475 | 26.033620 |
| min | 38.000000 | 0.000000 | 0.000000 | 0.000000 |
| 25% | 580.000000 | 17.000000 | 9.000000 | 10.000000 |
| 50% | 1036.000000 | 44.000000 | 24.000000 | 29.000000 |
| 75% | 1623.500000 | 79.000000 | 38.000000 | 47.000000 |
| max | 12281.000000 | 297.000000 | 117.000000 | 183.000000 |
# Confirmed from DESCRIBE: metabolomics_gold has kegg (string), chebi (double), name (string)
# Compute overall annotation rate across all rows
annotation_summary = spark.sql("""
SELECT
COUNT(*) as n_total,
SUM(CASE WHEN kegg IS NOT NULL AND kegg != '' THEN 1 ELSE 0 END) as n_kegg,
SUM(CASE WHEN chebi IS NOT NULL THEN 1 ELSE 0 END) as n_chebi,
SUM(CASE WHEN `name` IS NOT NULL AND `name` != '' THEN 1 ELSE 0 END) as n_named,
COUNT(DISTINCT `name`) as n_unique_names,
COUNT(DISTINCT kegg) as n_unique_kegg,
COUNT(DISTINCT CAST(chebi AS BIGINT)) as n_unique_chebi
FROM nmdc_arkin.metabolomics_gold
WHERE kegg IS NOT NULL OR chebi IS NOT NULL OR `name` IS NOT NULL
""").toPandas()
print('Metabolomics annotation summary (over annotated rows):')
for col in annotation_summary.columns:
print(f' {col}: {annotation_summary[col].iloc[0]}')
# Compute rates against total
total = spark.sql("SELECT COUNT(*) as n FROM nmdc_arkin.metabolomics_gold").collect()[0]['n']
print(f'\nTotal rows: {total}')
print(f'KEGG annotation rate: {annotation_summary["n_kegg"].iloc[0] / total:.1%}')
print(f'ChEBI annotation rate: {annotation_summary["n_chebi"].iloc[0] / total:.1%}')
Metabolomics annotation summary (over annotated rows): n_total: 152702 n_kegg: 61725 n_chebi: 76601 n_named: 152702 n_unique_names: 3521 n_unique_kegg: 616 n_unique_chebi: 932 Total rows: 3129061 KEGG annotation rate: 2.0% ChEBI annotation rate: 2.4%
# Inspect sample rows to understand metabolomics values and units
spark.sql("""
SELECT file_id, `name`, kegg, chebi, Area, Intensity, `Molecular Formula`, `Ion Formula`
FROM nmdc_arkin.metabolomics_gold
WHERE kegg IS NOT NULL AND kegg != ''
LIMIT 10
""").show(truncate=False)
+---------------------+-----------------------------------+------+-------+--------------------+-------------+-----------------+--------------+ |file_id |name |kegg |chebi |Area |Intensity |Molecular Formula|Ion Formula | +---------------------+-----------------------------------+------+-------+--------------------+-------------+-----------------+--------------+ |nmdc:dobj-12-c95nwh54|Carvone, (-)- |C01767|15400.0|338585.779392913 |2504080.25 |C10H14O |C10 H13 | |nmdc:dobj-12-c95nwh54|Lactulose |C07064|6359.0 |1.713435715082723E7 |1.70560928E8 |C12H22O11 |C12 H26 O11 N1| |nmdc:dobj-12-cavtrt92|Maltol |C11918|69438.0|560721.25510028 |8972314.0 |C6H6O3 |C6 H7 O3 | |nmdc:dobj-12-cb131220|13-keto-9Z,11E-octadecadienoic acid|C14765|68947.0|3177240.6970837964 |4.65551E7 |C18H30O3 |C18 H29 O2 | |nmdc:dobj-12-cmzs5h07|Hydron;octadecanoate |C01530|28842.0|214303.5105457306 |4210393.0 |C18H36O2 |C18 H35 O2 | |nmdc:dobj-12-crtmas68|Trehalose |C01083|16551.0|2.2594366367908505E8|2.551718144E9|C12H22O11 |C12 H21 O11 | |nmdc:dobj-12-d0g99k19|Histamine |C00388|18295.0|1711362.8811971988 |2.6105822E7 |C5H9N3 |C5 H10 N3 | |nmdc:dobj-12-d1v5ag89|3-Hydroxybenzaldehyde |C03067|16207.0|692048.530089654 |9118199.0 |C7H6O2 |C7 H5 O2 | |nmdc:dobj-12-d284q917|12(13)-EpOME |C14826|38299.0|1865776.0370224337 |3.569086E7 |C18H32O3 |C18 H33 O3 | |nmdc:dobj-12-d5r6v534|2-Hydroxybenzenepropanoic acid |C01198|16104.0|28184.4818527314 |1121441.125 |C9H10O3 |C9 H9 O2 | +---------------------+-----------------------------------+------+-------+--------------------+-------------+-----------------+--------------+
# Search for amino acid compounds using confirmed 'name' column
AMINO_ACIDS = [
'alanine', 'arginine', 'asparagine', 'aspartate', 'aspartic acid',
'cysteine', 'glutamate', 'glutamic acid', 'glutamine', 'glycine',
'histidine', 'isoleucine', 'leucine', 'lysine', 'methionine',
'phenylalanine', 'proline', 'serine', 'threonine', 'tryptophan',
'tyrosine', 'valine'
]
aa_pattern = '|'.join(AMINO_ACIDS)
aa_hits = spark.sql(f"""
SELECT `name`, kegg, COUNT(DISTINCT file_id) as n_files,
AVG(Area) as mean_area
FROM nmdc_arkin.metabolomics_gold
WHERE LOWER(`name`) RLIKE '{aa_pattern}'
GROUP BY `name`, kegg
ORDER BY n_files DESC
""").toPandas()
print(f'Amino acid compound hits: {len(aa_hits)}')
print(f'Files covering at least one AA compound: {aa_hits["n_files"].max()}')
print()
print(aa_hits.to_string())
Amino acid compound hits: 109
Files covering at least one AA compound: 349
name kegg n_files mean_area
0 Arginine C00062 349 5.559731e+06
1 Phenylalanine C00079 304 2.183710e+06
2 L-Phenylalanine, 23 NaN 265 3.211765e+06
3 N-oleoylglycine NaN 264 1.517335e+06
4 Pyroglutamic Acid C01879 258 2.799513e+06
5 Asparagine C00152 224 5.164782e+06
6 (S)-4-hydroxyphenylglycine C12323 203 1.011539e+06
7 D-Pyroglutamic acid NaN 192 1.177289e+06
8 N-methyl-D-aspartic acid C12269 182 2.201943e+06
9 Tryptophan C00078 178 1.204564e+06
10 Norvaline C01826 172 2.250351e+07
11 D-Glutamic Acid C00217 125 1.590379e+06
12 D-Alanine C00133 109 1.110269e+06
13 Tyrosine C00082 100 1.101691e+06
14 2-Methylbutyrylglycine NaN 98 2.663238e+06
15 Afalanine NaN 98 7.526155e+05
16 DL-Asparagine NaN 95 4.504710e+06
17 DL-Aspartic acid NaN 83 1.429681e+06
18 3-Hexylserine NaN 82 1.028168e+06
19 Phenylpropionylglycine NaN 80 3.396044e+05
20 Aspartic Acid C00049 75 1.075256e+06
21 Leucine C00123 71 2.774568e+06
22 Allothreonine, L- C05519 70 1.261036e+06
23 N-carbamoyl-beta-alanine C02642 69 2.792992e+06
24 N-Acetylglycine NaN 67 1.877611e+06
25 Ketoleucine C00233 66 2.328199e+06
26 5-Methoxy-dl-tryptophan NaN 61 1.420363e+06
27 D-Proline C00763 58 1.150789e+06
28 Alloisoleucine, DL- NaN 57 5.615606e+06
29 Acetyl Proline NaN 57 3.361429e+06
30 N-Acetyl-L-Aspartic Acid C01042 55 6.814374e+05
31 Norleucine, (+/-)- NaN 54 1.473716e+06
32 Methionine C00073 53 6.199171e+05
33 Glycylglycine C02037 52 2.266352e+06
34 Homoarginine C01924 48 2.916723e+06
35 D-Aspartic Acid C00402 47 8.387550e+05
36 N-Acetyl-L-phenylalanine C03519 47 3.469904e+05
37 DL-Serine NaN 46 8.504236e+05
38 Beta-Alanine C00099 44 9.047624e+05
39 Cyclohexylalanine NaN 44 9.650595e+05
40 L-homoserine C00263 39 1.127630e+06
41 N-Acetyl-DL-glutamic acid NaN 38 1.241051e+06
42 d,l-Serine C00065 38 7.273767e+05
43 N-Acetyl-L-arginine NaN 36 3.491974e+05
44 N-Methylaspartic acid NaN 34 1.158904e+06
45 Lysine, DL- NaN 33 5.334950e+05
46 L-Leucyl-L-Valine NaN 33 8.667047e+05
47 proline dl-form NaN 30 1.415627e+06
48 N6,N6,N6-Trimethyl-L-lysine C03793 30 7.345161e+05
49 N-[(+)-Jasmonoyl]-(L)-isoleucine NaN 29 2.557576e+05
50 3-Phenyl-DL-Serine NaN 25 1.958539e+06
51 N-Alpha-acetyllysine NaN 22 3.165045e+05
52 N-Methyl-L-glutamic acid C01046 21 2.287223e+06
53 DL-Tyrosine NaN 20 3.189740e+05
54 N-Acetyl-L-leucine C02710 19 4.977502e+05
55 N-Valylphenylalanine NaN 18 5.983703e+05
56 L-isoleucyl-L-arginine NaN 16 6.964798e+05
57 N-Palmitoylglycine NaN 16 4.781840e+05
58 Isoleucyllysine NaN 16 8.434438e+05
59 N-Benzyl-DL-aspartic acid NaN 15 1.131144e+06
60 DL-Glutamine NaN 14 4.000867e+05
61 Glycylvaline NaN 13 2.330958e+05
62 Lysyl-Isoleucine NaN 12 4.972219e+05
63 N-Glycyl-L-isoleucine NaN 12 7.482728e+05
64 N-Acetyl-L-glutamic acid C00624 12 1.799823e+06
65 Tiglylglycine NaN 11 1.154150e+06
66 N-Methyl-DL-glutamic acid NaN 11 2.290422e+06
67 Pyroglutamyl isoleucine NaN 10 4.537125e+05
68 Capryloyl Glycine NaN 10 2.523450e+05
69 Prolylarginine NaN 10 5.655408e+05
70 N-arachidonoylglycine NaN 9 1.141068e+06
71 N-[4-(1-adamantyl)benzoyl]tryptophan NaN 9 1.911072e+04
72 Glycyl-L-phenylalanine NaN 9 5.923844e+05
73 N~6~-Acetyl-D-lysine NaN 9 5.983227e+05
74 Alanylnorvaline NaN 9 1.020739e+06
75 N-Acetyllysine C12989 9 1.191264e+05
76 Phenylalanine betaine NaN 8 6.683342e+05
77 Suberylglycine NaN 8 6.020267e+05
78 N-benzoyl-DL-glutamic acid NaN 7 6.768322e+05
79 Asparagylisoleucine NaN 6 6.703822e+05
80 Hexanoylglycine NaN 6 4.388602e+05
81 Acetylleucine NaN 6 3.370180e+05
82 Lysylvaline NaN 5 4.235663e+05
83 Histidylproline NaN 5 4.598090e+06
84 N-Acetyl-3-(2-naphthyl)-DL-alanine NaN 5 3.830693e+06
85 DL-norvaline NaN 4 4.758094e+05
86 Isovalerylglycine NaN 4 1.418141e+05
87 N-Acetylasparagine NaN 3 1.591835e+05
88 N-Acetyl-L-valine (5aS)-1,3,4,5,5aalpha,6,7,8,9,9a-decahydro-6,6,9abeta-trimethyl-3-oxonaphtho[1,2-c]furan-9alpha-yl ester NaN 3 4.811579e+05
89 Lysylproline NaN 3 5.277906e+05
90 Glycine, N-[(3alpha,5beta,7alpha,12alpha)-3,7,12-trihydroxy-24-oxocholan-24-yl]- NaN 2 4.612483e+04
91 N-Acetyl-L-tyrosine C01657 2 1.569469e+06
92 Phenylalanyltryptophan NaN 2 1.764494e+06
93 Histidylleucine zwitterion C05010 2 3.189920e+05
94 N-Acetyl-DL-methionine NaN 2 3.809874e+05
95 Phenylalanyl-Methionine NaN 2 1.210344e+06
96 N-Benzoyl-DL-alanine NaN 2 1.251105e+05
97 N-Acetyl-L-tryptophan NaN 2 1.326364e+05
98 N-[(4-methylphenoxy)acetyl]phenylalanine NaN 2 1.001155e+05
99 Cis-4-Hydroxy-D-Proline C03440 1 5.309340e+05
100 Acetylcysteine C06809 1 4.610383e+04
101 Arginylphenylalanine NaN 1 4.616278e+05
102 Methionyl-Leucine NaN 1 9.765803e+05
103 Asparaginylphenylalanine NaN 1 3.824726e+04
104 gamma-Glutamylphenylalanine NaN 1 2.248771e+05
105 N-[(9H-fluoren-9-ylmethoxy)carbonyl]-L-isoleucine NaN 1 3.418775e+05
106 Racemethionine C01733 1 2.037452e+05
107 DL-valine NaN 1 2.268985e+05
108 N-Acetyl-L-alanine NaN 1 1.608553e+05
Part 5: Save Outputs and Figures¶
# Save file inventory (files with both classifier taxonomy AND metabolomics)
inventory = overlap_df.copy() # columns: file_id, file_name
inventory['has_taxonomy'] = True
inventory['has_metabolomics'] = True
# Merge abiotic features for overlap files (if ID column was found)
if len(abiotic_overlap) > 0:
merge_col = abiotic_id_col # 'file_id' or 'sample_id'
if merge_col in inventory.columns and merge_col in abiotic_overlap.columns:
inventory = inventory.merge(abiotic_overlap, on=merge_col, how='left')
else:
print(f'WARNING: Cannot merge abiotic data — ID column mismatch '
f'(inventory has {inventory.columns.tolist()[:4]}, '
f'abiotic has {abiotic_overlap.columns.tolist()[:4]})')
inventory.to_csv(os.path.join(DATA_DIR, 'nmdc_sample_inventory.csv'), index=False)
print(f'Saved: data/nmdc_sample_inventory.csv ({len(inventory)} rows)')
print('Columns:', inventory.columns.tolist())
Saved: data/nmdc_sample_inventory.csv (0 rows) Columns: ['file_id', 'file_name', 'has_taxonomy', 'has_metabolomics']
# Save metabolomics coverage stats for overlap files
met_overlap = met_file_stats[met_file_stats['file_id'].isin(overlap_files)].copy()
met_overlap.to_csv(os.path.join(DATA_DIR, 'nmdc_metabolomics_coverage.csv'), index=False)
print(f'Saved: data/nmdc_metabolomics_coverage.csv ({len(met_overlap)} rows)')
# Save classifier comparison summary
if clf_stats:
clf_summary.to_csv(os.path.join(DATA_DIR, 'nmdc_classifier_comparison.csv'), index=False)
print(f'Saved: data/nmdc_classifier_comparison.csv ({len(clf_summary)} rows)')
Saved: data/nmdc_metabolomics_coverage.csv (0 rows) Saved: data/nmdc_classifier_comparison.csv (3 rows)
# Figure: Sample counts by data type and metabolomics compound distribution
fig, axes = plt.subplots(1, 2, figsize=(12, 5))
fig.suptitle('NMDC Sample Coverage', fontsize=14)
# Panel 1: File counts by data availability
ax = axes[0]
counts = {
'Taxonomy\n(kraken) only': n_kraken_files - len(overlap_files),
'Metabolomics\nonly': n_met_files - len(overlap_files),
'Both\n(overlap)': len(overlap_files)
}
bars = ax.bar(list(counts.keys()), list(counts.values()),
color=['#4C9BE8', '#E88C4C', '#6EC46E'], edgecolor='white')
ax.set_ylabel('Number of files')
ax.set_title('File data availability\n(kraken classifier)')
for bar, val in zip(bars, counts.values()):
ax.text(bar.get_x() + bar.get_width() / 2, bar.get_height() + 1,
str(val), ha='center', va='bottom', fontsize=10)
# Panel 2: Metabolomics feature count distribution for overlap files
ax2 = axes[1]
if len(met_overlap) > 0:
ax2.hist(met_overlap['n_features_total'], bins=30, color='#6EC46E', edgecolor='white')
ax2.set_xlabel('Features per file')
ax2.set_ylabel('Number of files')
ax2.set_title('Metabolomics feature counts\n(overlap files)')
median_val = met_overlap['n_features_total'].median()
ax2.axvline(median_val, color='black', linestyle='--',
label=f'Median: {median_val:.0f}')
ax2.legend()
else:
ax2.text(0.5, 0.5, 'No overlap files found', ha='center', va='center',
transform=ax2.transAxes)
plt.tight_layout()
fig_path = os.path.join(FIGURES_DIR, 'nmdc_sample_coverage.png')
plt.savefig(fig_path, dpi=150, bbox_inches='tight')
plt.show()
print(f'Saved: figures/nmdc_sample_coverage.png')
Saved: figures/nmdc_sample_coverage.png
Summary and Decisions for NB02¶
| Question | Finding |
|---|---|
| Files with taxonomy (centrifuge) | 3,577 |
| Files with metabolomics | 2,460 |
| Overlap at file level | 0 — discovered in NB02: overlap requires sample bridge via omics_files_table |
| Best taxonomy classifier | centrifuge_gold (61.3% species-rank, highest among kraken/centrifuge/gottcha) |
| Taxonomy resolution | Species-level available (rank = 'species' confirmed) |
| Taxonomy abundance column | abundance (float, pre-normalized) |
| Metabolomics compound name column | name (string) ✓ confirmed |
| Metabolomics KEGG ID column | kegg (string) ✓ confirmed |
| Metabolomics ChEBI ID column | chebi (double) ✓ confirmed |
| Metabolomics abundance column | Intensity (double) — preferred over Area for peak intensity |
| KEGG annotation rate | 2.0% (mean per file) |
| ChEBI annotation rate | 2.4% (mean per file) |
| Amino acid compounds found? | 109 compound names matching AA list across 349 files |
| File → Study join strategy | nmdc_arkin.omics_files_table links file_id → sample_id → study_id |
abiotic_features ID column |
sample_id (confirmed) |
Note: nmdc_sample_coverage.png shows 0 overlap because the file-level join
was zero at this stage. The actual 220-sample overlap was discovered in NB02 via
the omics_files_table sample bridge. The figure is superseded by the bridge
quality distribution figure produced in NB02.
Decision for NB02: Use centrifuge_gold classifier. Bridge at species rank
(rank = 'species'). Use label column (centrifuge) for GTDB matching.
Use Intensity column for metabolite abundance.