diff --git a/.github/workflows/test-all-warehouses.yml b/.github/workflows/test-all-warehouses.yml index 3246c679f..7efa247f0 100644 --- a/.github/workflows/test-all-warehouses.yml +++ b/.github/workflows/test-all-warehouses.yml @@ -96,6 +96,10 @@ jobs: databricks_catalog, athena, clickhouse, + duckdb, + trino, + dremio, + spark, ] uses: ./.github/workflows/test-warehouse.yml with: diff --git a/.github/workflows/test-warehouse.yml b/.github/workflows/test-warehouse.yml index 92b16fe04..5ed0ed99b 100644 --- a/.github/workflows/test-warehouse.yml +++ b/.github/workflows/test-warehouse.yml @@ -15,6 +15,9 @@ on: - spark - athena - clickhouse + - duckdb + - trino + - dremio elementary-ref: type: string required: false @@ -83,6 +86,46 @@ jobs: path: dbt-data-reliability ref: ${{ inputs.dbt-data-reliability-ref }} + # ── Seed cache: compute key & restore volumes BEFORE starting services ── + # This ensures Docker volumes are populated before containers initialize. + - name: Compute seed cache key + id: seed-cache-key + if: inputs.warehouse-type == 'postgres' || inputs.warehouse-type == 'clickhouse' || inputs.warehouse-type == 'duckdb' + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + run: | + # Cache key is a hash of seed-related files so that cache busts when + # the data generation script, dbt project config, or seed schemas change. + SEED_HASH=$( + { + cat generate_data.py \ + dbt_project.yml \ + docker-compose.yml \ + ${{ github.workspace }}/elementary/tests/profiles/profiles.yml.j2 + echo "dbt_version=${{ inputs.dbt-version || '' }}" + } | sha256sum | head -c 16 + ) + echo "seed-hash=$SEED_HASH" >> "$GITHUB_OUTPUT" + + - name: Restore seed cache + id: seed-cache + if: steps.seed-cache-key.outputs.seed-hash + uses: actions/cache@v4 + with: + path: /tmp/seed-cache-${{ inputs.warehouse-type }} + key: seed-${{ inputs.warehouse-type }}-${{ steps.seed-cache-key.outputs.seed-hash }} + + - name: Restore cached seed data into Docker volumes + if: steps.seed-cache.outputs.cache-hit == 'true' && inputs.warehouse-type != 'duckdb' + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + run: bash ci/restore_seed_cache.sh "${{ inputs.warehouse-type }}" + + - name: Restore cached DuckDB seed + if: steps.seed-cache.outputs.cache-hit == 'true' && inputs.warehouse-type == 'duckdb' + run: | + cp /tmp/seed-cache-duckdb/elementary_test.duckdb /tmp/elementary_test.duckdb + echo "DuckDB seed cache restored." + + # ── Start warehouse services ────────────────────────────────────────── - name: Start Postgres if: inputs.warehouse-type == 'postgres' working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} @@ -93,6 +136,29 @@ jobs: working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} run: docker compose up -d clickhouse + - name: Start Trino + if: inputs.warehouse-type == 'trino' + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + run: | + docker compose up -d --wait trino + + - name: Start Dremio + if: inputs.warehouse-type == 'dremio' + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + run: | + # Start Dremio services in detached mode with healthchecks, then + # run the setup container separately. Using --exit-code-from would + # imply --abort-on-container-exit, killing all services when the + # setup container finishes. + docker compose up -d --wait dremio dremio-minio nessie + docker compose run --rm dremio-setup + + - name: Start Spark + if: inputs.warehouse-type == 'spark' + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + run: | + docker compose up -d --build --wait spark-thrift + - name: Setup Python uses: actions/setup-python@v5 with: @@ -100,13 +166,13 @@ jobs: - name: Install Spark requirements if: inputs.warehouse-type == 'spark' - run: sudo apt-get install python-dev libsasl2-dev gcc + run: sudo apt-get install -y python3-dev libsasl2-dev gcc - name: Install dbt run: > pip install "dbt-core${{ inputs.dbt-version && format('=={0}', inputs.dbt-version) }}" - "dbt-${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks') || (inputs.warehouse-type == 'athena' && 'athena-community') || inputs.warehouse-type }}${{ inputs.dbt-version && format('~={0}', inputs.dbt-version) }}" + "dbt-${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks') || (inputs.warehouse-type == 'athena' && 'athena-community') || (inputs.warehouse-type == 'dremio' && 'dremio') || inputs.warehouse-type }}${{ (inputs.warehouse-type == 'spark' && '[PyHive]') || '' }}${{ inputs.dbt-version && format('~={0}', inputs.dbt-version) }}" - name: Install Elementary run: | @@ -117,21 +183,29 @@ jobs: env: CI_WAREHOUSE_SECRETS: ${{ secrets.CI_WAREHOUSE_SECRETS || '' }} run: | - # Schema name = py___<8-char hash> - # The hash prevents collisions across concurrent jobs; the branch - # keeps it human-readable; the timestamp helps with stale schema - # cleanup and ensures each CI run gets a unique schema. - # - # Budget (PostgreSQL 63-char limit): - # py_(3) + timestamp(13) + _(1) + branch(≤19) + _(1) + hash(8) = 45 - # + _elementary(11) + _gw7(4) = 60 - CONCURRENCY_GROUP="tests_${{ inputs.warehouse-type }}_dbt_${{ inputs.dbt-version }}_${BRANCH_NAME}" - SHORT_HASH=$(echo -n "$CONCURRENCY_GROUP" | sha256sum | head -c 8) - SAFE_BRANCH=$(echo "${BRANCH_NAME}" | awk '{print tolower($0)}' | sed "s/[^a-z0-9]/_/g; s/__*/_/g" | head -c 19) - DATE_STAMP=$(date -u +%y%m%d_%H%M%S) - SCHEMA_NAME="py_${DATE_STAMP}_${SAFE_BRANCH}_${SHORT_HASH}" - - echo "Schema name: $SCHEMA_NAME (branch='${BRANCH_NAME}', timestamp=${DATE_STAMP}, hash of concurrency group)" + # Docker-based adapters use ephemeral containers, so a fixed schema + # name is safe (the concurrency group prevents parallel collisions). + # This enables caching the seeded database state between runs. + IS_DOCKER=false + case "${{ inputs.warehouse-type }}" in + postgres|clickhouse|trino|dremio|duckdb|spark) IS_DOCKER=true ;; + esac + + if [ "$IS_DOCKER" = "true" ]; then + SCHEMA_NAME="elementary_tests" + echo "Schema name: $SCHEMA_NAME (fixed for Docker adapter '${{ inputs.warehouse-type }}')" + else + # Cloud adapters: unique schema per run to avoid collisions. + # Schema name = py___<8-char hash> + CONCURRENCY_GROUP="tests_${{ inputs.warehouse-type }}_dbt_${{ inputs.dbt-version }}_${BRANCH_NAME}" + SHORT_HASH=$(echo -n "$CONCURRENCY_GROUP" | sha256sum | head -c 8) + SAFE_BRANCH=$(echo "${BRANCH_NAME}" | awk '{print tolower($0)}' | sed "s/[^a-z0-9]/_/g; s/__*/_/g" | head -c 19) + DATE_STAMP=$(date -u +%y%m%d_%H%M%S) + SCHEMA_NAME="py_${DATE_STAMP}_${SAFE_BRANCH}_${SHORT_HASH}" + echo "Schema name: $SCHEMA_NAME (branch='${BRANCH_NAME}', timestamp=${DATE_STAMP}, hash of concurrency group)" + fi + + echo "SCHEMA_NAME=$SCHEMA_NAME" >> "$GITHUB_ENV" python "${{ github.workspace }}/elementary/tests/profiles/generate_profiles.py" \ --template "${{ github.workspace }}/elementary/tests/profiles/profiles.yml.j2" \ @@ -160,17 +234,42 @@ jobs: run: | dbt deps + - name: Generate seed data + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + if: steps.seed-cache.outputs.cache-hit != 'true' + run: python generate_data.py + + - name: Seed e2e dbt project (external) + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + if: steps.seed-cache.outputs.cache-hit != 'true' && (inputs.warehouse-type == 'dremio' || inputs.warehouse-type == 'spark') + run: python load_seeds_external.py "${{ inputs.warehouse-type }}" "$SCHEMA_NAME" data + - name: Seed e2e dbt project working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} - if: inputs.warehouse-type == 'postgres' || inputs.warehouse-type == 'clickhouse' || inputs.generate-data + if: steps.seed-cache.outputs.cache-hit != 'true' && inputs.warehouse-type != 'dremio' && inputs.warehouse-type != 'spark' + run: dbt seed -f --target "${{ inputs.warehouse-type }}" + + - name: Save seed cache from Docker volumes + if: steps.seed-cache.outputs.cache-hit != 'true' && (inputs.warehouse-type == 'postgres' || inputs.warehouse-type == 'clickhouse') + working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} + run: bash ci/save_seed_cache.sh "${{ inputs.warehouse-type }}" + + - name: Save DuckDB seed cache + if: steps.seed-cache.outputs.cache-hit != 'true' && inputs.warehouse-type == 'duckdb' run: | - python generate_data.py - dbt seed -f --target "${{ inputs.warehouse-type }}" + mkdir -p /tmp/seed-cache-duckdb + cp /tmp/elementary_test.duckdb /tmp/seed-cache-duckdb/elementary_test.duckdb + echo "DuckDB seed cache saved." - name: Run e2e dbt project working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} run: | - dbt run --target "${{ inputs.warehouse-type }}" || true + # Dremio needs single-threaded execution to avoid Nessie catalog race conditions + EXTRA_ARGS=() + if [ "${{ inputs.warehouse-type }}" = "dremio" ]; then + EXTRA_ARGS+=(--threads 1) + fi + dbt run --target "${{ inputs.warehouse-type }}" "${EXTRA_ARGS[@]}" || true # Validate run_results.json: only error_model should be non-success jq -e ' @@ -192,7 +291,12 @@ jobs: working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} continue-on-error: true run: | - dbt test --target "${{ inputs.warehouse-type }}" + # Dremio needs single-threaded execution to avoid Nessie catalog race conditions + EXTRA_ARGS=() + if [ "${{ inputs.warehouse-type }}" = "dremio" ]; then + EXTRA_ARGS+=(--threads 1 --exclude tag:ephemeral_model) + fi + dbt test --target "${{ inputs.warehouse-type }}" "${EXTRA_ARGS[@]}" - name: Run help run: edr --help diff --git a/elementary/clients/dbt/transient_errors.py b/elementary/clients/dbt/transient_errors.py index 7ea625b90..14882ab5e 100644 --- a/elementary/clients/dbt/transient_errors.py +++ b/elementary/clients/dbt/transient_errors.py @@ -100,6 +100,15 @@ "connection timed out", "broken pipe", ), + "spark": ( + "thrift transport is closed", + "could not connect to any thrift server", + "connection refused", + ), + "duckdb": ( + # DuckDB runs in-process; transient errors are rare. + # Common patterns (connection reset, broken pipe) are in _COMMON. + ), } # Pre-computed union of all adapter-specific patterns for the fallback path diff --git a/elementary/monitor/dbt_project/dbt_project.yml b/elementary/monitor/dbt_project/dbt_project.yml index ce4e3dbe0..8df5fb9ba 100644 --- a/elementary/monitor/dbt_project/dbt_project.yml +++ b/elementary/monitor/dbt_project/dbt_project.yml @@ -28,9 +28,17 @@ clean-targets: # directories to be removed by `dbt clean` # Configuring models # Full documentation: https://docs.getdbt.com/docs/configuring-models +dispatch: + - macro_namespace: elementary + search_order: ["elementary_cli", "elementary"] + vars: edr_cli_run: true +models: + elementary_cli: + +file_format: "{{ 'delta' if target.type == 'spark' else none }}" + quoting: database: "{{ env_var('DATABASE_QUOTING', 'None') | as_native }}" schema: "{{ env_var('SCHEMA_QUOTING', 'None') | as_native }}" diff --git a/elementary/monitor/dbt_project/macros/alerts/population/model_alerts.sql b/elementary/monitor/dbt_project/macros/alerts/population/model_alerts.sql index 882479710..b6a371382 100644 --- a/elementary/monitor/dbt_project/macros/alerts/population/model_alerts.sql +++ b/elementary/monitor/dbt_project/macros/alerts/population/model_alerts.sql @@ -52,7 +52,7 @@ select * from {{ ref('elementary', 'dbt_models') }} ), - snapshots as ( + snapshots_data as ( select * from {{ ref('elementary', 'dbt_snapshots') }} ), @@ -71,7 +71,7 @@ artifacts_meta as ( select unique_id, meta from models union all - select unique_id, meta from snapshots + select unique_id, meta from snapshots_data union all select unique_id, meta from seeds ), diff --git a/elementary/monitor/dbt_project/macros/alerts/population/source_freshness_alerts.sql b/elementary/monitor/dbt_project/macros/alerts/population/source_freshness_alerts.sql index 8016d146a..ac7601a6e 100644 --- a/elementary/monitor/dbt_project/macros/alerts/population/source_freshness_alerts.sql +++ b/elementary/monitor/dbt_project/macros/alerts/population/source_freshness_alerts.sql @@ -97,7 +97,7 @@ {% if error_after_column_exists %} results.error_after, results.warn_after, - results.filter, + results.{{ elementary.escape_reserved_keywords('filter') }}, {% endif %} results.error, sources.database_name, diff --git a/elementary/monitor/dbt_project/macros/can_upload_source_freshness.sql b/elementary/monitor/dbt_project/macros/can_upload_source_freshness.sql index d09937875..082ba0ec4 100644 --- a/elementary/monitor/dbt_project/macros/can_upload_source_freshness.sql +++ b/elementary/monitor/dbt_project/macros/can_upload_source_freshness.sql @@ -2,10 +2,10 @@ {% set counter_query %} with invocations as ( select invocation_id - from {{ ref("elementary", "dbt_source_freshness_results") }} + from {{ ref("dbt_source_freshness_results", package="elementary") }} where {{ elementary.edr_datediff(elementary.edr_cast_as_timestamp('generated_at'), elementary.edr_current_timestamp(), 'day') }} < {{ days_back }} ) - select count(*) as count + select count(*) as {{ elementary.escape_reserved_keywords('count') }} from invocations where invocation_id = {{ elementary.edr_quote(invocation_id) }} {% endset %} diff --git a/elementary/monitor/dbt_project/macros/get_adapter_type_and_unique_id.sql b/elementary/monitor/dbt_project/macros/get_adapter_type_and_unique_id.sql index 0c954802d..2a021d3b5 100644 --- a/elementary/monitor/dbt_project/macros/get_adapter_type_and_unique_id.sql +++ b/elementary/monitor/dbt_project/macros/get_adapter_type_and_unique_id.sql @@ -17,3 +17,7 @@ {% macro athena__get_adapter_unique_id() %} {{ return(target.s3_staging_dir) }} {% endmacro %} + +{% macro duckdb__get_adapter_unique_id() %} + {{ return(target.path) }} +{% endmacro %} diff --git a/elementary/monitor/dbt_project/macros/get_models_latest_invocation.sql b/elementary/monitor/dbt_project/macros/get_models_latest_invocation.sql index 5dde01929..17829d663 100644 --- a/elementary/monitor/dbt_project/macros/get_models_latest_invocation.sql +++ b/elementary/monitor/dbt_project/macros/get_models_latest_invocation.sql @@ -2,16 +2,17 @@ {% set query %} with ordered_run_results as ( select - *, - row_number() over (partition by unique_id order by run_results.generated_at desc) as row_number - from {{ ref("elementary", "dbt_run_results") }} run_results - join {{ ref("elementary", "dbt_models") }} using (unique_id) + run_results.unique_id, + run_results.invocation_id, + row_number() over (partition by run_results.unique_id order by run_results.generated_at desc) as {{ elementary.escape_reserved_keywords('row_number') }} + from {{ ref("dbt_run_results", package="elementary") }} run_results + join {{ ref("dbt_models", package="elementary") }} models on run_results.unique_id = models.unique_id ), latest_run_results as ( - select * + select unique_id, invocation_id from ordered_run_results - where row_number = 1 + where {{ elementary.escape_reserved_keywords('row_number') }} = 1 ) select unique_id, invocation_id from latest_run_results diff --git a/elementary/monitor/dbt_project/macros/get_models_latest_invocations_data.sql b/elementary/monitor/dbt_project/macros/get_models_latest_invocations_data.sql index 374128b12..783df3293 100644 --- a/elementary/monitor/dbt_project/macros/get_models_latest_invocations_data.sql +++ b/elementary/monitor/dbt_project/macros/get_models_latest_invocations_data.sql @@ -1,35 +1,35 @@ {% macro get_models_latest_invocations_data() %} - {% set invocations_relation = ref("elementary", "dbt_invocations") %} + {% set invocations_relation = ref("dbt_invocations", package="elementary") %} {% set column_exists = elementary.column_exists_in_relation(invocations_relation, 'job_url') %} {% set query %} with ordered_run_results as ( select - *, - row_number() over (partition by unique_id order by run_results.generated_at desc) as row_number - from {{ ref("elementary", "dbt_run_results") }} run_results - join {{ ref("elementary", "dbt_models") }} using (unique_id) + run_results.invocation_id, + row_number() over (partition by run_results.unique_id order by run_results.generated_at desc) as {{ elementary.escape_reserved_keywords('row_number') }} + from {{ ref("dbt_run_results", package="elementary") }} run_results + join {{ ref("dbt_models", package="elementary") }} models on run_results.unique_id = models.unique_id ), latest_models_invocations as ( select distinct invocation_id from ordered_run_results - where row_number = 1 + where {{ elementary.escape_reserved_keywords('row_number') }} = 1 ) select - invocation_id, - command, - selected, - full_refresh, + invocations.invocation_id, + invocations.command, + invocations.selected, + invocations.full_refresh, {% if column_exists %} - job_url, + invocations.job_url, {% endif %} - job_name, - job_id, - orchestrator + invocations.job_name, + invocations.job_id, + invocations.orchestrator from {{ invocations_relation }} invocations - join latest_models_invocations using (invocation_id) + join latest_models_invocations on invocations.invocation_id = latest_models_invocations.invocation_id {% endset %} {% set result = elementary.run_query(query) %} {% do return(elementary.agate_to_dicts(result)) %} diff --git a/elementary/monitor/dbt_project/macros/get_result_rows_agate.sql b/elementary/monitor/dbt_project/macros/get_result_rows_agate.sql index f8a4f1257..b56b42126 100644 --- a/elementary/monitor/dbt_project/macros/get_result_rows_agate.sql +++ b/elementary/monitor/dbt_project/macros/get_result_rows_agate.sql @@ -7,7 +7,7 @@ select elementary_test_results_id, result_row - from {{ ref("elementary", "test_result_rows") }} + from {{ ref("test_result_rows", package="elementary") }} where {{ elementary.edr_datediff(elementary.edr_cast_as_timestamp('detected_at'), elementary.edr_current_timestamp(), 'day') }} < {{ days_back }} {% if valid_ids_query %} and elementary_test_results_id in ({{ valid_ids_query }}) @@ -25,7 +25,7 @@ select elementary_test_results_id, result_row - from {{ ref("elementary", "test_result_rows") }} + from {{ ref("test_result_rows", package="elementary") }} where detected_at > {{ elementary.edr_timeadd('day', -1 * days_back, elementary.edr_current_timestamp()) }} {% if valid_ids_query %} and elementary_test_results_id in ({{ valid_ids_query }}) diff --git a/elementary/monitor/dbt_project/macros/get_source_freshness_results.sql b/elementary/monitor/dbt_project/macros/get_source_freshness_results.sql index e6224f984..8160e6f26 100644 --- a/elementary/monitor/dbt_project/macros/get_source_freshness_results.sql +++ b/elementary/monitor/dbt_project/macros/get_source_freshness_results.sql @@ -33,7 +33,7 @@ {% if error_after_column_exists %} freshness.error_after, freshness.warn_after, - freshness.filter, + freshness.{{ elementary.escape_reserved_keywords('filter') }}, {% endif %} freshness.max_loaded_at_time_ago_in_s, freshness.snapshotted_at, diff --git a/elementary/monitor/dbt_project/models/alerts/alerts_v2.sql b/elementary/monitor/dbt_project/models/alerts/alerts_v2.sql index 860a1d332..03ba0acb0 100644 --- a/elementary/monitor/dbt_project/models/alerts/alerts_v2.sql +++ b/elementary/monitor/dbt_project/models/alerts/alerts_v2.sql @@ -12,20 +12,20 @@ -- depends_on: {{ ref('dbt_tests') }} -- depends_on: {{ ref('elementary_test_results') }} --- depends_on: {{ ref('elementary', 'test_result_rows') }} +-- depends_on: {{ ref('test_result_rows', package='elementary') }} -- depends_on: {{ ref('dbt_models') }} --- depends_on: {{ ref('elementary', 'dbt_snapshots') }} +-- depends_on: {{ ref('dbt_snapshots', package='elementary') }} -- depends_on: {{ ref('model_run_results') }} -- depends_on: {{ ref('snapshot_run_results') }} -- depends_on: {{ ref('dbt_sources') }} --- depends_on: {{ ref('elementary', 'dbt_source_freshness_results') }} +-- depends_on: {{ ref('dbt_source_freshness_results', package='elementary') }} -- depends_on: {{ ref('dbt_seeds') }} --- depends_on: {{ ref('elementary', 'dbt_invocations') }} --- depends_on: {{ ref('elementary', 'dbt_run_results') }} +-- depends_on: {{ ref('dbt_invocations', package='elementary') }} +-- depends_on: {{ ref('dbt_run_results', package='elementary') }} -- backwards compatibility -- depends_on: {{ ref('elementary_cli', 'alerts') }} diff --git a/elementary/monitor/dbt_project/models/alerts/deprecated/alerts.sql b/elementary/monitor/dbt_project/models/alerts/deprecated/alerts.sql index 400203669..2e3167ab5 100644 --- a/elementary/monitor/dbt_project/models/alerts/deprecated/alerts.sql +++ b/elementary/monitor/dbt_project/models/alerts/deprecated/alerts.sql @@ -15,7 +15,7 @@ {% set schema_changes_relation = adapter.get_relation(this.database, this.schema, 'alerts_schema_changes') %} with failed_tests as ( - select * from {{ ref('elementary', 'alerts_dbt_tests') }} + select * from {{ ref('alerts_dbt_tests', package='elementary') }} {% if schema_changes_relation %} union all @@ -32,7 +32,7 @@ with failed_tests as ( ) select - {{ dbt_utils.star(from=ref('elementary', 'alerts_dbt_tests'), except=["detected_at"]) }}, + {{ dbt_utils.star(from=ref('alerts_dbt_tests', package='elementary'), except=["detected_at"]) }}, {{ elementary_cli.get_alerts_model_detected_at_expr(this) }} as detected_at, false as alert_sent, {# backwards compatibility #} 'pending' as suppression_status, diff --git a/pyproject.toml b/pyproject.toml index ff7b1fc91..6043c7b10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,6 +54,8 @@ dbt-spark = {version = ">=0.20,<2.0.0", optional = true} dbt-athena-community = {version = ">=1.6.3,<2.0.0", optional = true} dbt-trino = {version = ">=1.5.0,<2.0.0", optional = true} dbt-clickhouse = {version = ">=0.20,<2.0.0", optional = true} +dbt-duckdb = {version = ">=1.5.0,<2.0.0", optional = true} +dbt-dremio = {version = ">=1.5.0,<2.0.0", optional = true} [tool.poetry.extras] snowflake = ["dbt-snowflake"] bigquery = ["dbt-bigquery"] @@ -64,7 +66,9 @@ spark = ["dbt-spark"] athena = ["dbt-athena-community"] clickhouse = ["dbt-clickhouse"] trino = ["dbt-trino"] -all = ["dbt-snowflake", "dbt-bigquery", "dbt-redshift", "dbt-postgres", "dbt-databricks", "dbt-spark", "dbt-clickhouse", "dbt-athena-community", "dbt-trino"] +duckdb = ["dbt-duckdb"] +dremio = ["dbt-dremio"] +all = ["dbt-snowflake", "dbt-bigquery", "dbt-redshift", "dbt-postgres", "dbt-databricks", "dbt-spark", "dbt-clickhouse", "dbt-athena-community", "dbt-trino", "dbt-duckdb", "dbt-dremio"] [build-system] requires = ["poetry-core>=1.0.0"] diff --git a/tests/e2e/report/fixtures/elementary_output.json b/tests/e2e/report/fixtures/elementary_output.json index fb15959af..a2b525fef 100644 --- a/tests/e2e/report/fixtures/elementary_output.json +++ b/tests/e2e/report/fixtures/elementary_output.json @@ -3551,7 +3551,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "max", + "column_name": "max_val", "name": "elementary_column_anomalies_numeric_column_anomalies_drop__average__max", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Drop Average Max", "original_path": "models/schema.yml", @@ -3561,7 +3561,7 @@ "test_params": { "column_anomalies": ["average"], "anomaly_direction": "drop", - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -3585,7 +3585,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "max", + "column_name": "max_val", "name": "elementary_column_anomalies_numeric_column_anomalies_spike__average__max", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Spike Average Max", "original_path": "models/schema.yml", @@ -3595,7 +3595,7 @@ "test_params": { "column_anomalies": ["average"], "anomaly_direction": "spike", - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -3814,7 +3814,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "min", + "column_name": "min_val", "name": "elementary_column_anomalies_numeric_column_anomalies_min__min", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Min Min", "original_path": "models/schema.yml", @@ -3823,7 +3823,7 @@ "test_sub_type": "min", "test_params": { "column_anomalies": ["min"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -3924,7 +3924,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "max", + "column_name": "max_val", "name": "elementary_column_anomalies_numeric_column_anomalies_average__max", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Average Max", "original_path": "models/schema.yml", @@ -3933,7 +3933,7 @@ "test_sub_type": "average", "test_params": { "column_anomalies": ["average"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -4034,7 +4034,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "sum", + "column_name": "sum_val", "name": "elementary_column_anomalies_numeric_column_anomalies_sum__sum", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Sum Sum", "original_path": "models/schema.yml", @@ -4043,7 +4043,7 @@ "test_sub_type": "sum", "test_params": { "column_anomalies": ["sum"], - "column_name": "sum", + "column_name": "sum_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -4071,7 +4071,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "max", + "column_name": "max_val", "name": "elementary_column_anomalies_numeric_column_anomalies_min__max", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Min Max", "original_path": "models/schema.yml", @@ -4080,7 +4080,7 @@ "test_sub_type": "min", "test_params": { "column_anomalies": ["min"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -4182,7 +4182,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "min", + "column_name": "min_val", "name": "elementary_column_anomalies_numeric_column_anomalies_average__min", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Average Min", "original_path": "models/schema.yml", @@ -4191,7 +4191,7 @@ "test_sub_type": "average", "test_params": { "column_anomalies": ["average"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -4441,7 +4441,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "min", + "column_name": "min_val", "name": "elementary_column_anomalies_numeric_column_anomalies_max__min", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Max Min", "original_path": "models/schema.yml", @@ -4450,7 +4450,7 @@ "test_sub_type": "max", "test_params": { "column_anomalies": ["max"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -4514,7 +4514,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "max", + "column_name": "max_val", "name": "elementary_column_anomalies_numeric_column_anomalies_max__max", "display_name": "Elementary Column Anomalies Numeric Column Anomalies Max Max", "original_path": "models/schema.yml", @@ -4523,7 +4523,7 @@ "test_sub_type": "max", "test_params": { "column_anomalies": ["max"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}" }, "description": "Column-level anomaly monitors (null_count, null_percent, zero_count, string_length, variance, etc.) on the column according to its data type.", @@ -5755,7 +5755,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": null, - "column_name": "one", + "column_name": "col1", "name": "accepted_values_one_one__2__3", "display_name": "Accepted Values One One 2 3", "original_path": "models/schema.yml", @@ -5764,7 +5764,7 @@ "test_sub_type": null, "test_params": { "values": [2, 3], - "column_name": "one", + "column_name": "col1", "model": "{{ get_where_subquery(ref('one')) }}" }, "description": "This test validates that all of the values in a column are present in a supplied list of `values`. If any values other than those provided in the list are present, then the test will fail.", @@ -5834,13 +5834,13 @@ "table_unique_id": "postgres.test_seeds.numeric_column_anomalies_training", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105", + "test_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 279 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105" + "result_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105" }, "configuration": { "test_name": "singular_test_with_source_ref", @@ -217733,13 +217733,13 @@ "table_unique_id": "postgres.test_seeds.numeric_column_anomalies_training", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105", + "test_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 279 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105" + "result_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105" }, "configuration": { "test_name": "singular_test_with_source_ref", @@ -217781,13 +217781,13 @@ "table_unique_id": "postgres.edr.numeric_column_anomalies", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100", + "test_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100" + "result_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100" }, "configuration": { "test_name": "singular_test_with_one_ref", @@ -267842,13 +267842,13 @@ "table_unique_id": "", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100", + "test_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100" + "result_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100" }, "configuration": { "test_name": "singular_test_with_no_ref", @@ -269564,7 +269564,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -269578,7 +269578,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('average' as varchar(4096))\n and upper(column_name) = upper(cast('max' as varchar(4096)))", "test_params": { "column_anomalies": ["average"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -269635,7 +269635,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.7071067811865475, "anomaly_score_threshold": 3, @@ -269670,7 +269670,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.8887540382763068, "anomaly_score_threshold": 3, @@ -269705,7 +269705,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.9281437914045992, "anomaly_score_threshold": 3, @@ -269740,7 +269740,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.09599461851321081, "anomaly_score_threshold": 3, @@ -269775,7 +269775,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.6608047556580349, "anomaly_score_threshold": 3, @@ -269810,7 +269810,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.6512559888531815, "anomaly_score_threshold": 3, @@ -269845,7 +269845,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.6308040368337668, "anomaly_score_threshold": 3, @@ -269880,7 +269880,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.7755718777927628, "anomaly_score_threshold": 3, @@ -269915,7 +269915,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 1.1030267814383428, "anomaly_score_threshold": 3, @@ -269950,7 +269950,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.1679559075120216, "anomaly_score_threshold": 3, @@ -269985,7 +269985,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.3063228011378462, "anomaly_score_threshold": 3, @@ -270020,7 +270020,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.21461211646590303, "anomaly_score_threshold": 3, @@ -270055,7 +270055,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.31131709492105425, "anomaly_score_threshold": 3, @@ -270090,7 +270090,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.251500992139858, "anomaly_score_threshold": 3, @@ -270125,7 +270125,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.42210816153333885, "anomaly_score_threshold": 3, @@ -270160,7 +270160,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.605017605043944, "anomaly_score_threshold": 3, @@ -270195,7 +270195,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 2.5827267063790265, "anomaly_score_threshold": 3, @@ -270230,7 +270230,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.13998014272261033, "anomaly_score_threshold": 3, @@ -270265,7 +270265,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.1724305275360632, "anomaly_score_threshold": 3, @@ -270300,7 +270300,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.5621533983430184, "anomaly_score_threshold": 3, @@ -270335,7 +270335,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.29561366363042746, "anomaly_score_threshold": 3, @@ -270370,7 +270370,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.9616626282755779, "anomaly_score_threshold": 3, @@ -270405,7 +270405,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.4939082623918486, "anomaly_score_threshold": 3, @@ -270440,7 +270440,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.35113935626367215, "anomaly_score_threshold": 3, @@ -270475,7 +270475,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.2663241287481187, "anomaly_score_threshold": 3, @@ -270510,7 +270510,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.49306229683715785, "anomaly_score_threshold": 3, @@ -270545,7 +270545,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.011033955248365522, "anomaly_score_threshold": 3, @@ -270580,7 +270580,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 1.7856436025656197, "anomaly_score_threshold": 3, @@ -270615,7 +270615,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__max.ea408823cb", "detected_at": "2024-09-17T08:37:18.203263", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 5.186062127192063, "anomaly_score_threshold": 3, @@ -270648,7 +270648,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -270662,7 +270662,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('average' as varchar(4096))\n and upper(column_name) = upper(cast('min' as varchar(4096)))", "test_params": { "column_anomalies": ["average"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -270719,7 +270719,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.7071067811865476, "anomaly_score_threshold": 3, @@ -270754,7 +270754,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.4970825218595467, "anomaly_score_threshold": 3, @@ -270789,7 +270789,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 1.4795365699201515, "anomaly_score_threshold": 3, @@ -270824,7 +270824,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -1.7149742719371412, "anomaly_score_threshold": 3, @@ -270859,7 +270859,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -1.6888450869988973, "anomaly_score_threshold": 3, @@ -270894,7 +270894,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.655614492100346, "anomaly_score_threshold": 3, @@ -270929,7 +270929,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 1.5372126430212485, "anomaly_score_threshold": 3, @@ -270964,7 +270964,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.4415108589087184, "anomaly_score_threshold": 3, @@ -270999,7 +270999,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -2.058523345979261, "anomaly_score_threshold": 3, @@ -271034,7 +271034,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 1.7766662001457223, "anomaly_score_threshold": 3, @@ -271069,7 +271069,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.901752848051644, "anomaly_score_threshold": 3, @@ -271104,7 +271104,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.5176043596075687, "anomaly_score_threshold": 3, @@ -271139,7 +271139,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.7211088472839159, "anomaly_score_threshold": 3, @@ -271174,7 +271174,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.1163465794522468, "anomaly_score_threshold": 3, @@ -271209,7 +271209,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.9011428984951104, "anomaly_score_threshold": 3, @@ -271244,7 +271244,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.32633345425425203, "anomaly_score_threshold": 3, @@ -271279,7 +271279,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.912269759518618, "anomaly_score_threshold": 3, @@ -271314,7 +271314,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.32205016710438233, "anomaly_score_threshold": 3, @@ -271349,7 +271349,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.2790176392188665, "anomaly_score_threshold": 3, @@ -271384,7 +271384,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.87795352897897, "anomaly_score_threshold": 3, @@ -271419,7 +271419,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.6913164990469673, "anomaly_score_threshold": 3, @@ -271454,7 +271454,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 1.2999346936346796, "anomaly_score_threshold": 3, @@ -271489,7 +271489,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -1.1273276144566928, "anomaly_score_threshold": 3, @@ -271524,7 +271524,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.45662645907856336, "anomaly_score_threshold": 3, @@ -271559,7 +271559,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.4604993171426426, "anomaly_score_threshold": 3, @@ -271594,7 +271594,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.4716260297167855, "anomaly_score_threshold": 3, @@ -271629,7 +271629,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": 0.48436033209773893, "anomaly_score_threshold": 3, @@ -271664,7 +271664,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -0.6829828265317237, "anomaly_score_threshold": 3, @@ -271699,7 +271699,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_average__min.8109482bd7", "detected_at": "2024-09-17T08:37:18.202160", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "average", "anomaly_score": -5.1472448304991865, "anomaly_score_threshold": 3, @@ -271732,7 +271732,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -271747,7 +271747,7 @@ "test_params": { "column_anomalies": ["average"], "anomaly_direction": "drop", - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -271799,7 +271799,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.7071067811865475, "anomaly_score_threshold": 3, @@ -271834,7 +271834,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.8887540382763068, "anomaly_score_threshold": 3, @@ -271869,7 +271869,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.9281437914045992, "anomaly_score_threshold": 3, @@ -271904,7 +271904,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.09599461851321081, "anomaly_score_threshold": 3, @@ -271939,7 +271939,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.6608047556580349, "anomaly_score_threshold": 3, @@ -271974,7 +271974,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.6512559888531815, "anomaly_score_threshold": 3, @@ -272009,7 +272009,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.6308040368337668, "anomaly_score_threshold": 3, @@ -272044,7 +272044,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.7755718777927628, "anomaly_score_threshold": 3, @@ -272079,7 +272079,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 1.1030267814383428, "anomaly_score_threshold": 3, @@ -272114,7 +272114,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.1679559075120216, "anomaly_score_threshold": 3, @@ -272149,7 +272149,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.3063228011378462, "anomaly_score_threshold": 3, @@ -272184,7 +272184,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.21461211646590303, "anomaly_score_threshold": 3, @@ -272219,7 +272219,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.31131709492105425, "anomaly_score_threshold": 3, @@ -272254,7 +272254,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.251500992139858, "anomaly_score_threshold": 3, @@ -272289,7 +272289,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.42210816153333885, "anomaly_score_threshold": 3, @@ -272324,7 +272324,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.605017605043944, "anomaly_score_threshold": 3, @@ -272359,7 +272359,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 2.5827267063790265, "anomaly_score_threshold": 3, @@ -272394,7 +272394,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.13998014272261033, "anomaly_score_threshold": 3, @@ -272429,7 +272429,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.1724305275360632, "anomaly_score_threshold": 3, @@ -272464,7 +272464,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.5621533983430184, "anomaly_score_threshold": 3, @@ -272499,7 +272499,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.29561366363042746, "anomaly_score_threshold": 3, @@ -272534,7 +272534,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.9616626282755779, "anomaly_score_threshold": 3, @@ -272569,7 +272569,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.4939082623918486, "anomaly_score_threshold": 3, @@ -272604,7 +272604,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.35113935626367215, "anomaly_score_threshold": 3, @@ -272639,7 +272639,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.2663241287481187, "anomaly_score_threshold": 3, @@ -272674,7 +272674,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.49306229683715785, "anomaly_score_threshold": 3, @@ -272709,7 +272709,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.011033955248365522, "anomaly_score_threshold": 3, @@ -272744,7 +272744,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 1.7856436025656197, "anomaly_score_threshold": 3, @@ -272779,7 +272779,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_drop__average__max.e87fc4578f", "detected_at": "2024-09-17T08:36:56.271663", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 5.186062127192063, "anomaly_score_threshold": 3, @@ -273896,7 +273896,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -273910,7 +273910,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('max' as varchar(4096))\n and upper(column_name) = upper(cast('max' as varchar(4096)))", "test_params": { "column_anomalies": ["max"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -273967,7 +273967,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -274002,7 +274002,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -274037,7 +274037,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -274072,7 +274072,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": -1.7888543819998572, "anomaly_score_threshold": 3, @@ -274107,7 +274107,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4082482904638398, "anomaly_score_threshold": 3, @@ -274142,7 +274142,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.3779644730092165, "anomaly_score_threshold": 3, @@ -274177,7 +274177,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.35355339059327373, "anomaly_score_threshold": 3, @@ -274212,7 +274212,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": -1.763834207376379, "anomaly_score_threshold": 3, @@ -274247,7 +274247,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4743416490252299, "anomaly_score_threshold": 3, @@ -274282,7 +274282,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.44946657497550746, "anomaly_score_threshold": 3, @@ -274317,7 +274317,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4281744192888132, "anomaly_score_threshold": 3, @@ -274352,7 +274352,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.40967324519936876, "anomaly_score_threshold": 3, @@ -274387,7 +274387,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.3933978962347104, "anomaly_score_threshold": 3, @@ -274422,7 +274422,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.3789323733725152, "anomaly_score_threshold": 3, @@ -274457,7 +274457,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.36596252735569995, "anomaly_score_threshold": 3, @@ -274492,7 +274492,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": -2.0957473279823096, "anomaly_score_threshold": 3, @@ -274527,7 +274527,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4346134936801519, "anomaly_score_threshold": 3, @@ -274562,7 +274562,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": -1.8848425873126156, "anomaly_score_threshold": 3, @@ -274597,7 +274597,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.48733971724042047, "anomaly_score_threshold": 3, @@ -274632,7 +274632,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4733810683311845, "anomaly_score_threshold": 3, @@ -274667,7 +274667,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": -1.8015145143613498, "anomaly_score_threshold": 3, @@ -274702,7 +274702,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.5154614273558762, "anomaly_score_threshold": 3, @@ -274737,7 +274737,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.5021881942620349, "anomaly_score_threshold": 3, @@ -274772,7 +274772,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4898979485566078, "anomaly_score_threshold": 3, @@ -274807,7 +274807,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4784743764693129, "anomaly_score_threshold": 3, @@ -274842,7 +274842,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4678196435115046, "anomaly_score_threshold": 3, @@ -274877,7 +274877,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.4578507717504886, "anomaly_score_threshold": 3, @@ -274912,7 +274912,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 0.44849685092248026, "anomaly_score_threshold": 3, @@ -274947,7 +274947,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__max.21a73d9fec", "detected_at": "2024-09-17T08:37:18.219590", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "max", "anomaly_score": 5.293475976723012, "anomaly_score_threshold": 3, @@ -274980,7 +274980,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -274994,7 +274994,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('max' as varchar(4096))\n and upper(column_name) = upper(cast('min' as varchar(4096)))", "test_params": { "column_anomalies": ["max"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -275051,7 +275051,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -275086,7 +275086,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -275121,7 +275121,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -275156,7 +275156,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -275191,7 +275191,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": -2.0412414523193037, "anomaly_score_threshold": 3, @@ -275226,7 +275226,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3779644730092165, "anomaly_score_threshold": 3, @@ -275261,7 +275261,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": -0.8400268812903088, "anomaly_score_threshold": 3, @@ -275296,7 +275296,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.47140452079104506, "anomaly_score_threshold": 3, @@ -275331,7 +275331,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.4444783184923322, "anomaly_score_threshold": 3, @@ -275366,7 +275366,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.42174116783666193, "anomaly_score_threshold": 3, @@ -275401,7 +275401,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.40219983326992187, "anomaly_score_threshold": 3, @@ -275436,7 +275436,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3851644432598143, "anomaly_score_threshold": 3, @@ -275471,7 +275471,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3701382740549606, "anomaly_score_threshold": 3, @@ -275506,7 +275506,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.35675303400631764, "anomaly_score_threshold": 3, @@ -275541,7 +275541,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3447289198326913, "anomaly_score_threshold": 3, @@ -275576,7 +275576,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": -3.0716544651334403, "anomaly_score_threshold": 3, @@ -275611,7 +275611,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3967460238079474, "anomaly_score_threshold": 3, @@ -275646,7 +275646,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.38507629485651323, "anomaly_score_threshold": 3, @@ -275681,7 +275681,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.37438474117709464, "anomaly_score_threshold": 3, @@ -275716,7 +275716,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3645413082882342, "anomaly_score_threshold": 3, @@ -275751,7 +275751,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3554390220498153, "anomaly_score_threshold": 3, @@ -275786,7 +275786,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.34698895917976225, "anomaly_score_threshold": 3, @@ -275821,7 +275821,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.3391164991562634, "anomaly_score_threshold": 3, @@ -275856,7 +275856,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": -0.9767857643556492, "anomaly_score_threshold": 3, @@ -275891,7 +275891,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": -0.9407722612579593, "anomaly_score_threshold": 3, @@ -275926,7 +275926,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.40923320936324586, "anomaly_score_threshold": 3, @@ -275961,7 +275961,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.4008918628686251, "anomaly_score_threshold": 3, @@ -275996,7 +275996,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.39304294755242236, "anomaly_score_threshold": 3, @@ -276031,7 +276031,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_max__min.6758a0b107", "detected_at": "2024-09-17T08:37:18.219616", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "max", "anomaly_score": 0.38563966175429043, "anomaly_score_threshold": 3, @@ -277148,7 +277148,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -277162,7 +277162,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('min' as varchar(4096))\n and upper(column_name) = upper(cast('max' as varchar(4096)))", "test_params": { "column_anomalies": ["min"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -277219,7 +277219,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -277254,7 +277254,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -277289,7 +277289,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": 1.5, "anomaly_score_threshold": 3, @@ -277324,7 +277324,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.4472135954999643, "anomaly_score_threshold": 3, @@ -277359,7 +277359,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.4082482904638572, "anomaly_score_threshold": 3, @@ -277394,7 +277394,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.37796447300923525, "anomaly_score_threshold": 3, @@ -277429,7 +277429,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.35355339059327373, "anomaly_score_threshold": 3, @@ -277464,7 +277464,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.33333333333334275, "anomaly_score_threshold": 3, @@ -277499,7 +277499,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.31622776601684244, "anomaly_score_threshold": 3, @@ -277534,7 +277534,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3015113445777722, "anomaly_score_threshold": 3, @@ -277569,7 +277569,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": 1.2065994998097656, "anomaly_score_threshold": 3, @@ -277604,7 +277604,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3851644432598143, "anomaly_score_threshold": 3, @@ -277639,7 +277639,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.37013827405493605, "anomaly_score_threshold": 3, @@ -277674,7 +277674,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.356753034006343, "anomaly_score_threshold": 3, @@ -277709,7 +277709,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3447289198326913, "anomaly_score_threshold": 3, @@ -277744,7 +277744,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3338489304447865, "anomaly_score_threshold": 3, @@ -277779,7 +277779,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.32394177193585927, "anomaly_score_threshold": 3, @@ -277814,7 +277814,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3148701428436028, "anomaly_score_threshold": 3, @@ -277849,7 +277849,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3065225015493171, "anomaly_score_threshold": 3, @@ -277884,7 +277884,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": 1.5818231576774018, "anomaly_score_threshold": 3, @@ -277919,7 +277919,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3628518182485477, "anomaly_score_threshold": 3, @@ -277954,7 +277954,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.35418282564845743, "anomaly_score_threshold": 3, @@ -277989,7 +277989,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.34610932762159635, "anomaly_score_threshold": 3, @@ -278024,7 +278024,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.33856589561211997, "anomaly_score_threshold": 3, @@ -278059,7 +278059,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3314967720659121, "anomaly_score_threshold": 3, @@ -278094,7 +278094,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3248541022089371, "anomaly_score_threshold": 3, @@ -278129,7 +278129,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3185965464321459, "anomaly_score_threshold": 3, @@ -278164,7 +278164,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3126881799192291, "anomaly_score_threshold": 3, @@ -278199,7 +278199,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__max.9841e551cc", "detected_at": "2024-09-17T08:37:18.209995", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "min", "anomaly_score": -0.3070976116635235, "anomaly_score_threshold": 3, @@ -278232,7 +278232,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -278246,7 +278246,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('min' as varchar(4096))\n and upper(column_name) = upper(cast('min' as varchar(4096)))", "test_params": { "column_anomalies": ["min"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -278303,7 +278303,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -278338,7 +278338,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -1.1547005383792475, "anomaly_score_threshold": 3, @@ -278373,7 +278373,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.26111648393354675, "anomaly_score_threshold": 3, @@ -278408,7 +278408,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -1.0, "anomaly_score_threshold": 3, @@ -278443,7 +278443,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.8475793795260081, "anomaly_score_threshold": 3, @@ -278478,7 +278478,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.750939261482632, "anomaly_score_threshold": 3, @@ -278513,7 +278513,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.6822210286372692, "anomaly_score_threshold": 3, @@ -278548,7 +278548,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.6299407883487139, "anomaly_score_threshold": 3, @@ -278583,7 +278583,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5883484054145521, "anomaly_score_threshold": 3, @@ -278618,7 +278618,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": 0.5541888731518393, "anomaly_score_threshold": 3, @@ -278653,7 +278653,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.6267831705280088, "anomaly_score_threshold": 3, @@ -278688,7 +278688,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5945744878515529, "anomaly_score_threshold": 3, @@ -278723,7 +278723,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5669467095138435, "anomaly_score_threshold": 3, @@ -278758,7 +278758,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5428967140306447, "anomaly_score_threshold": 3, @@ -278793,7 +278793,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5217062577301892, "anomaly_score_threshold": 3, @@ -278828,7 +278828,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5028452845140757, "anomaly_score_threshold": 3, @@ -278863,7 +278863,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.4859126579037681, "anomaly_score_threshold": 3, @@ -278898,7 +278898,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": 0.9233805168766442, "anomaly_score_threshold": 3, @@ -278933,7 +278933,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5217491947499424, "anomaly_score_threshold": 3, @@ -278968,7 +278968,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.5063696835418261, "anomaly_score_threshold": 3, @@ -279003,7 +279003,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.49228623499381147, "anomaly_score_threshold": 3, @@ -279038,7 +279038,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.4793253286375363, "anomaly_score_threshold": 3, @@ -279073,7 +279073,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.467344469008873, "anomaly_score_threshold": 3, @@ -279108,7 +279108,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.45622537513859934, "anomaly_score_threshold": 3, @@ -279143,7 +279143,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.44586891706437776, "anomaly_score_threshold": 3, @@ -279178,7 +279178,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": 1.1563031769553602, "anomaly_score_threshold": 3, @@ -279213,7 +279213,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": 1.109080959834287, "anomaly_score_threshold": 3, @@ -279248,7 +279248,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -0.514016039001137, "anomaly_score_threshold": 3, @@ -279283,7 +279283,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_min__min.72357fb8ab", "detected_at": "2024-09-17T08:37:18.063164", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "min", "anomaly_score": -5.291227435311211, "anomaly_score_threshold": 3, @@ -279316,7 +279316,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -279331,7 +279331,7 @@ "test_params": { "column_anomalies": ["average"], "anomaly_direction": "spike", - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -279383,7 +279383,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.7071067811865475, "anomaly_score_threshold": 3, @@ -279418,7 +279418,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.8887540382763068, "anomaly_score_threshold": 3, @@ -279453,7 +279453,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.9281437914045992, "anomaly_score_threshold": 3, @@ -279488,7 +279488,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.09599461851321081, "anomaly_score_threshold": 3, @@ -279523,7 +279523,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.6608047556580349, "anomaly_score_threshold": 3, @@ -279558,7 +279558,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.6512559888531815, "anomaly_score_threshold": 3, @@ -279593,7 +279593,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.6308040368337668, "anomaly_score_threshold": 3, @@ -279628,7 +279628,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.7755718777927628, "anomaly_score_threshold": 3, @@ -279663,7 +279663,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 1.1030267814383428, "anomaly_score_threshold": 3, @@ -279698,7 +279698,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.1679559075120216, "anomaly_score_threshold": 3, @@ -279733,7 +279733,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.3063228011378462, "anomaly_score_threshold": 3, @@ -279768,7 +279768,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.21461211646590303, "anomaly_score_threshold": 3, @@ -279803,7 +279803,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.31131709492105425, "anomaly_score_threshold": 3, @@ -279838,7 +279838,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.251500992139858, "anomaly_score_threshold": 3, @@ -279873,7 +279873,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.42210816153333885, "anomaly_score_threshold": 3, @@ -279908,7 +279908,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.605017605043944, "anomaly_score_threshold": 3, @@ -279943,7 +279943,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 2.5827267063790265, "anomaly_score_threshold": 3, @@ -279978,7 +279978,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.13998014272261033, "anomaly_score_threshold": 3, @@ -280013,7 +280013,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.1724305275360632, "anomaly_score_threshold": 3, @@ -280048,7 +280048,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.5621533983430184, "anomaly_score_threshold": 3, @@ -280083,7 +280083,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.29561366363042746, "anomaly_score_threshold": 3, @@ -280118,7 +280118,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.9616626282755779, "anomaly_score_threshold": 3, @@ -280153,7 +280153,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.4939082623918486, "anomaly_score_threshold": 3, @@ -280188,7 +280188,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.35113935626367215, "anomaly_score_threshold": 3, @@ -280223,7 +280223,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": -0.2663241287481187, "anomaly_score_threshold": 3, @@ -280258,7 +280258,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.49306229683715785, "anomaly_score_threshold": 3, @@ -280293,7 +280293,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 0.011033955248365522, "anomaly_score_threshold": 3, @@ -280328,7 +280328,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 1.7856436025656197, "anomaly_score_threshold": 3, @@ -280363,7 +280363,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_spike__average__max.d74f23e2ef", "detected_at": "2024-09-17T08:36:56.271685", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "average", "anomaly_score": 5.186062127192063, "anomaly_score_threshold": 3, @@ -290143,7 +290143,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "sum", + "column_name": "sum_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -290157,7 +290157,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('sum' as varchar(4096))\n and upper(column_name) = upper(cast('sum' as varchar(4096)))", "test_params": { "column_anomalies": ["sum"], - "column_name": "sum", + "column_name": "sum_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -290214,7 +290214,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.7071067811865475, "anomaly_score_threshold": 3, @@ -290249,7 +290249,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -1.1546990451435037, "anomaly_score_threshold": 3, @@ -290284,7 +290284,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -1.1103830704935824, "anomaly_score_threshold": 3, @@ -290319,7 +290319,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -1.3630349951060639, "anomaly_score_threshold": 3, @@ -290354,7 +290354,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 1.2750224544848048, "anomaly_score_threshold": 3, @@ -290389,7 +290389,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.9515907112546935, "anomaly_score_threshold": 3, @@ -290424,7 +290424,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.778154130589765, "anomaly_score_threshold": 3, @@ -290459,7 +290459,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.6615591094720813, "anomaly_score_threshold": 3, @@ -290494,7 +290494,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.331214035238084, "anomaly_score_threshold": 3, @@ -290529,7 +290529,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.17883915117187324, "anomaly_score_threshold": 3, @@ -290564,7 +290564,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.6743112821127709, "anomaly_score_threshold": 3, @@ -290599,7 +290599,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.28871936944039867, "anomaly_score_threshold": 3, @@ -290634,7 +290634,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.611454351604304, "anomaly_score_threshold": 3, @@ -290669,7 +290669,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.8973701967903115, "anomaly_score_threshold": 3, @@ -290704,7 +290704,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.323101443632085, "anomaly_score_threshold": 3, @@ -290739,7 +290739,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -1.7006873383112162, "anomaly_score_threshold": 3, @@ -290774,7 +290774,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -1.083341706071991, "anomaly_score_threshold": 3, @@ -290809,7 +290809,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.5548178315083552, "anomaly_score_threshold": 3, @@ -290844,7 +290844,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 1.45428287662859, "anomaly_score_threshold": 3, @@ -290879,7 +290879,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.11077298262761338, "anomaly_score_threshold": 3, @@ -290914,7 +290914,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -1.5220842485837642, "anomaly_score_threshold": 3, @@ -290949,7 +290949,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.4865260429868005, "anomaly_score_threshold": 3, @@ -290984,7 +290984,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -1.0169372276557251, "anomaly_score_threshold": 3, @@ -291019,7 +291019,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.16945868887058793, "anomaly_score_threshold": 3, @@ -291054,7 +291054,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.3098968850009721, "anomaly_score_threshold": 3, @@ -291089,7 +291089,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.11884501374695568, "anomaly_score_threshold": 3, @@ -291124,7 +291124,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": -0.49284731245929847, "anomaly_score_threshold": 3, @@ -291159,7 +291159,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 0.5864371345708931, "anomaly_score_threshold": 3, @@ -291194,7 +291194,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_column_anomalies_numeric_column_anomalies_sum__sum.6ede4629eb", "detected_at": "2024-09-17T08:37:18.203099", "full_table_name": "POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "sum", "anomaly_score": 5.285336644533107, "anomaly_score_threshold": 3, @@ -328079,13 +328079,13 @@ "table_unique_id": "postgres.edr.numeric_column_anomalies", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100", + "test_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100" + "result_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100" }, "configuration": { "test_name": "singular_test_with_one_ref", @@ -329199,7 +329199,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "copy_numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "all_columns_anomalies", "test_display_name": "All Columns Anomalies", "original_path": "models/schema.yml", @@ -329269,7 +329269,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329304,7 +329304,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329339,7 +329339,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329374,7 +329374,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329409,7 +329409,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329444,7 +329444,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329479,7 +329479,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329514,7 +329514,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329549,7 +329549,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329584,7 +329584,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329619,7 +329619,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329654,7 +329654,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329689,7 +329689,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329724,7 +329724,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329759,7 +329759,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329794,7 +329794,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329829,7 +329829,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329864,7 +329864,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329899,7 +329899,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329934,7 +329934,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -329969,7 +329969,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330004,7 +330004,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330039,7 +330039,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330074,7 +330074,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330109,7 +330109,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330144,7 +330144,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330179,7 +330179,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330214,7 +330214,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330249,7 +330249,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "max", + "column_name": "max_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330282,7 +330282,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "copy_numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "all_columns_anomalies", "test_display_name": "All Columns Anomalies", "original_path": "models/schema.yml", @@ -330352,7 +330352,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330387,7 +330387,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330422,7 +330422,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330457,7 +330457,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330492,7 +330492,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330527,7 +330527,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330562,7 +330562,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330597,7 +330597,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330632,7 +330632,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330667,7 +330667,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330702,7 +330702,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330737,7 +330737,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330772,7 +330772,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330807,7 +330807,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330842,7 +330842,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330877,7 +330877,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330912,7 +330912,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330947,7 +330947,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -330982,7 +330982,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331017,7 +331017,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331052,7 +331052,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331087,7 +331087,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331122,7 +331122,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331157,7 +331157,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331192,7 +331192,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331227,7 +331227,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331262,7 +331262,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331297,7 +331297,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -331332,7 +331332,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "min", + "column_name": "min_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332448,7 +332448,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "copy_numeric_column_anomalies", - "column_name": "sum", + "column_name": "sum_val", "test_name": "all_columns_anomalies", "test_display_name": "All Columns Anomalies", "original_path": "models/schema.yml", @@ -332518,7 +332518,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332553,7 +332553,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332588,7 +332588,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332623,7 +332623,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332658,7 +332658,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332693,7 +332693,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332728,7 +332728,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332763,7 +332763,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332798,7 +332798,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332833,7 +332833,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332868,7 +332868,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332903,7 +332903,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332938,7 +332938,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -332973,7 +332973,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333008,7 +333008,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333043,7 +333043,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333078,7 +333078,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333113,7 +333113,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333148,7 +333148,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333183,7 +333183,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333218,7 +333218,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333253,7 +333253,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333288,7 +333288,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333323,7 +333323,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333358,7 +333358,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333393,7 +333393,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333428,7 +333428,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333463,7 +333463,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -333498,7 +333498,7 @@ "test_unique_id": "test.elementary_integration_tests.elementary_all_columns_anomalies_copy_numeric_column_anomalies_zero_count.9963113148", "detected_at": "2024-09-17T08:37:17.823483", "full_table_name": "POSTGRES.EDR.COPY_NUMERIC_COLUMN_ANOMALIES", - "column_name": "sum", + "column_name": "sum_val", "metric_name": "zero_count", "anomaly_score": 0.0, "anomaly_score_threshold": 3, @@ -616164,13 +616164,13 @@ "table_unique_id": "", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues", + "test_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues" + "result_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues" }, "configuration": { "test_name": "singular_test_with_two_refs", @@ -619585,13 +619585,13 @@ "table_unique_id": "postgres.test_seeds.numeric_column_anomalies_training", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105", + "test_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 279 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105" + "result_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105" }, "configuration": { "test_name": "singular_test_with_source_ref", @@ -634294,13 +634294,13 @@ "table_unique_id": "postgres.test_seeds.numeric_column_anomalies_training", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105", + "test_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 279 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min < 105" + "result_query": "select min_val from \"postgres\".\"test_seeds\".\"numeric_column_anomalies_training\" where min_val < 105" }, "configuration": { "test_name": "singular_test_with_source_ref", @@ -634346,13 +634346,13 @@ "table_unique_id": "postgres.edr.numeric_column_anomalies", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100", + "test_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100" + "result_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100" }, "configuration": { "test_name": "singular_test_with_one_ref", @@ -635064,13 +635064,13 @@ "table_unique_id": "", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100", + "test_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100" + "result_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100" }, "configuration": { "test_name": "singular_test_with_no_ref", @@ -635695,7 +635695,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -635709,7 +635709,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('average' as varchar(4096))\n and upper(column_name) = upper(cast('max' as varchar(4096)))", "test_params": { "column_anomalies": ["average"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -635774,7 +635774,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -635788,7 +635788,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('average' as varchar(4096))\n and upper(column_name) = upper(cast('min' as varchar(4096)))", "test_params": { "column_anomalies": ["average"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -635853,7 +635853,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -635868,7 +635868,7 @@ "test_params": { "column_anomalies": ["average"], "anomaly_direction": "drop", - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -636007,7 +636007,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -636021,7 +636021,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('max' as varchar(4096))\n and upper(column_name) = upper(cast('max' as varchar(4096)))", "test_params": { "column_anomalies": ["max"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -636086,7 +636086,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -636100,7 +636100,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('max' as varchar(4096))\n and upper(column_name) = upper(cast('min' as varchar(4096)))", "test_params": { "column_anomalies": ["max"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -636244,7 +636244,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -636258,7 +636258,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('min' as varchar(4096))\n and upper(column_name) = upper(cast('max' as varchar(4096)))", "test_params": { "column_anomalies": ["min"], - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -636323,7 +636323,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -636337,7 +636337,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('min' as varchar(4096))\n and upper(column_name) = upper(cast('min' as varchar(4096)))", "test_params": { "column_anomalies": ["min"], - "column_name": "min", + "column_name": "min_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -636402,7 +636402,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -636417,7 +636417,7 @@ "test_params": { "column_anomalies": ["average"], "anomaly_direction": "spike", - "column_name": "max", + "column_name": "max_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -637179,7 +637179,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "numeric_column_anomalies", - "column_name": "sum", + "column_name": "sum_val", "test_name": "column_anomalies", "test_display_name": "Column Anomalies", "original_path": "models/schema.yml", @@ -637193,7 +637193,7 @@ "test_query": "select * from (None) results\n where\n anomaly_score is not null and\n upper(full_table_name) = upper(cast('POSTGRES.EDR.NUMERIC_COLUMN_ANOMALIES' as varchar(4096))) and\n metric_name = cast('sum' as varchar(4096))\n and upper(column_name) = upper(cast('sum' as varchar(4096)))", "test_params": { "column_anomalies": ["sum"], - "column_name": "sum", + "column_name": "sum_val", "model": "{{ get_where_subquery(ref('numeric_column_anomalies')) }}", "timestamp_column": "updated_at", "where_expression": null, @@ -639986,13 +639986,13 @@ "table_unique_id": "postgres.edr.numeric_column_anomalies", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100", + "test_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "select min from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100" + "result_query": "select min_val from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100" }, "configuration": { "test_name": "singular_test_with_one_ref", @@ -640105,7 +640105,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "copy_numeric_column_anomalies", - "column_name": "max", + "column_name": "max_val", "test_name": "all_columns_anomalies", "test_display_name": "All Columns Anomalies", "original_path": "models/schema.yml", @@ -640183,7 +640183,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "copy_numeric_column_anomalies", - "column_name": "min", + "column_name": "min_val", "test_name": "all_columns_anomalies", "test_display_name": "All Columns Anomalies", "original_path": "models/schema.yml", @@ -640339,7 +640339,7 @@ "database_name": "postgres", "schema_name": "edr", "table_name": "copy_numeric_column_anomalies", - "column_name": "sum", + "column_name": "sum_val", "test_name": "all_columns_anomalies", "test_display_name": "All Columns Anomalies", "original_path": "models/schema.yml", @@ -647178,13 +647178,13 @@ "table_unique_id": "", "test_type": "dbt_test", "test_sub_type": "singular", - "test_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues", + "test_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues", "test_params": {}, "test_created_at": null, "description": null, "result": { "result_description": "Got 90 results, configured to fail if != 0", - "result_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues" + "result_query": "with min_len_issues as (\n select null_count_int as min_issue from \"postgres\".\"edr\".\"any_type_column_anomalies\" where null_count_int < 100\n),\n\nmin_issues as (\n select min as min_issue from \"postgres\".\"edr\".\"numeric_column_anomalies\" where min_val < 100\n),\n\nall_issues as (\n select * from min_len_issues\n union all\n select * from min_issues\n)\n\nselect * from all_issues" }, "configuration": { "test_name": "singular_test_with_two_refs", @@ -647994,7 +647994,7 @@ "status": "success", "last_exec_time": 0.1, "median_exec_time": 0.05, - "compiled_code": "select 1 as one", + "compiled_code": "select 1 as col1", "last_generated_at": "2024-09-17T08:38:20+00:00", "exec_time_change_rate": 100.0, "totals": { "errors": 0, "success": 6 }, @@ -648236,7 +648236,7 @@ "status": "success", "last_exec_time": 0.9, "median_exec_time": 1.0, - "compiled_code": "select 1 as one", + "compiled_code": "select 1 as col1", "last_generated_at": "2024-09-17T08:36:52+00:00", "exec_time_change_rate": -9.999999999999998, "totals": { "errors": 0, "success": 2 }, diff --git a/tests/e2e_dbt_project/ci/restore_seed_cache.sh b/tests/e2e_dbt_project/ci/restore_seed_cache.sh new file mode 100755 index 000000000..c468866b9 --- /dev/null +++ b/tests/e2e_dbt_project/ci/restore_seed_cache.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# Restore Docker volume data from a seed cache directory. +# Usage: restore_seed_cache.sh +set -euo pipefail + +WAREHOUSE_TYPE="${1:?Usage: restore_seed_cache.sh }" +CACHE_DIR="/tmp/seed-cache-${WAREHOUSE_TYPE}" + +echo "Restoring seed cache for ${WAREHOUSE_TYPE}..." + +# Restore each Docker volume from the cached tarballs. +# This runs BEFORE services start so containers initialise with cached data. +for archive in "$CACHE_DIR"/*.tar.gz; do + [ -f "$archive" ] || continue + VOLUME_NAME=$(basename "$archive" .tar.gz) + echo "Restoring volume $VOLUME_NAME from $archive..." + docker volume create "$VOLUME_NAME" 2>/dev/null || true + docker run --rm -v "$VOLUME_NAME:/data" -v "$CACHE_DIR:/cache:ro" \ + alpine sh -c "cd /data && tar xzf /cache/${VOLUME_NAME}.tar.gz" +done +echo "Seed cache restored." diff --git a/tests/e2e_dbt_project/ci/save_seed_cache.sh b/tests/e2e_dbt_project/ci/save_seed_cache.sh new file mode 100755 index 000000000..cb69e4857 --- /dev/null +++ b/tests/e2e_dbt_project/ci/save_seed_cache.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# Save Docker volume data to a cache directory for seed caching. +# Usage: save_seed_cache.sh +set -euo pipefail + +WAREHOUSE_TYPE="${1:?Usage: save_seed_cache.sh }" +CACHE_DIR="/tmp/seed-cache-${WAREHOUSE_TYPE}" +mkdir -p "$CACHE_DIR" + +# Get the Docker Compose project name and list volumes +COMPOSE_VOLUMES=$(docker compose config --volumes 2>/dev/null || true) +PROJECT=$(docker compose config 2>/dev/null | grep '^name:' | awk '{print $2}' || echo "e2e_dbt_project") + +# Stop running containers so no files change while archiving +docker compose stop || true + +for vol in $COMPOSE_VOLUMES; do + FULL_VOL="${PROJECT}_${vol}" + if docker volume inspect "$FULL_VOL" >/dev/null 2>&1; then + echo "Saving volume $FULL_VOL..." + docker run --rm -v "$FULL_VOL:/data:ro" -v "$CACHE_DIR:/cache" \ + alpine sh -c "cd /data && tar czf /cache/${FULL_VOL}.tar.gz ." + fi +done + +# Restart containers for the rest of the pipeline +docker compose start || true + +# Wait for services to be ready after restart +ready=0 +case "$WAREHOUSE_TYPE" in + clickhouse) + for i in $(seq 1 30); do + if curl -sf http://localhost:8123/ping > /dev/null; then + ready=1; break + fi + echo "Waiting for ClickHouse after restart... ($i/30)"; sleep 2 + done + ;; + postgres) + for i in $(seq 1 30); do + if pg_isready -h localhost -p 5432 > /dev/null 2>&1; then + ready=1; break + fi + echo "Waiting for Postgres after restart... ($i/30)"; sleep 2 + done + ;; + *) + ready=1 + ;; +esac + +if [ "$ready" -ne 1 ]; then + echo "ERROR: $WAREHOUSE_TYPE did not become ready after restart" >&2 + exit 1 +fi +echo "Seed cache saved." diff --git a/tests/e2e_dbt_project/data/training/numeric_column_anomalies_training.csv b/tests/e2e_dbt_project/data/training/numeric_column_anomalies_training.csv index e69de29bb..7933ded6e 100644 --- a/tests/e2e_dbt_project/data/training/numeric_column_anomalies_training.csv +++ b/tests/e2e_dbt_project/data/training/numeric_column_anomalies_training.csv @@ -0,0 +1,6001 @@ +updated_at,occurred_at,min_val,max_val,zero_count,zero_percent,average,standard_deviation,variance,sum_val +1969-12-30 00:00:00,1969-12-29 23:00:00,123,144,0,150,99,101,100,122 +1969-12-30 00:00:00,1969-12-29 23:00:00,186,126,0,100,101,100,99,100 +1969-12-30 00:00:00,1969-12-29 23:00:00,144,110,0,122,100,99,101,162 +1969-12-30 00:00:00,1969-12-29 23:00:00,123,141,0,187,100,100,100,119 +1969-12-30 00:00:00,1969-12-29 23:00:00,121,129,0,0,101,101,100,200 +1969-12-30 00:00:00,1969-12-29 23:00:00,114,142,0,200,101,99,100,106 +1969-12-30 00:00:00,1969-12-29 23:00:00,160,111,124,125,101,100,101,187 +1969-12-30 00:00:00,1969-12-29 23:00:00,159,140,116,146,100,101,100,147 +1969-12-30 00:00:00,1969-12-29 23:00:00,174,126,110,177,99,101,100,106 +1969-12-30 00:00:00,1969-12-29 23:00:00,159,160,145,159,101,100,99,179 +1969-12-30 00:00:00,1969-12-29 23:00:00,128,149,190,0,99,100,99,104 +1969-12-30 00:00:00,1969-12-29 23:00:00,109,111,175,186,99,99,100,196 +1969-12-30 00:00:00,1969-12-29 23:00:00,149,118,127,139,99,100,101,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,165,152,126,101,100,100,100,160 +1969-12-30 00:00:00,1969-12-29 23:00:00,105,198,156,160,99,99,99,105 +1969-12-30 00:00:00,1969-12-29 23:00:00,105,189,142,0,99,99,101,121 +1969-12-30 00:00:00,1969-12-29 23:00:00,162,192,158,198,99,99,101,151 +1969-12-30 00:00:00,1969-12-29 23:00:00,199,158,118,128,101,101,101,194 +1969-12-30 00:00:00,1969-12-29 23:00:00,125,187,185,170,100,100,100,168 +1969-12-30 00:00:00,1969-12-29 23:00:00,190,108,116,134,101,101,100,191 +1969-12-30 00:00:00,1969-12-29 23:00:00,142,104,141,131,100,101,99,100 +1969-12-30 00:00:00,1969-12-29 23:00:00,188,152,156,156,99,101,100,109 +1969-12-30 00:00:00,1969-12-29 23:00:00,109,103,181,125,101,100,99,175 +1969-12-30 00:00:00,1969-12-29 23:00:00,135,200,148,136,99,101,99,162 +1969-12-30 00:00:00,1969-12-29 23:00:00,114,129,172,169,100,99,99,198 +1969-12-30 00:00:00,1969-12-29 23:00:00,164,186,146,117,101,100,101,118 +1969-12-30 00:00:00,1969-12-29 23:00:00,179,166,118,115,99,99,101,108 +1969-12-30 00:00:00,1969-12-29 23:00:00,154,194,114,168,99,101,99,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,199,121,172,184,99,101,100,149 +1969-12-30 00:00:00,1969-12-29 23:00:00,100,189,100,170,101,100,99,166 +1969-12-30 00:00:00,1969-12-29 23:00:00,196,197,113,191,100,101,100,146 +1969-12-30 00:00:00,1969-12-29 23:00:00,104,134,111,0,101,99,100,100 +1969-12-30 00:00:00,1969-12-29 23:00:00,163,166,127,0,99,100,101,121 +1969-12-30 00:00:00,1969-12-29 23:00:00,117,192,125,154,100,101,100,185 +1969-12-30 00:00:00,1969-12-29 23:00:00,116,174,126,131,99,101,100,165 +1969-12-30 00:00:00,1969-12-29 23:00:00,155,169,107,184,101,101,101,171 +1969-12-30 00:00:00,1969-12-29 23:00:00,116,183,127,107,101,99,100,118 +1969-12-30 00:00:00,1969-12-29 23:00:00,120,130,165,120,100,99,101,120 +1969-12-30 00:00:00,1969-12-29 23:00:00,181,147,197,124,100,100,100,151 +1969-12-30 00:00:00,1969-12-29 23:00:00,118,155,153,0,101,100,101,105 +1969-12-30 00:00:00,1969-12-29 23:00:00,195,181,163,106,101,101,100,185 +1969-12-30 00:00:00,1969-12-29 23:00:00,124,158,108,0,100,99,100,132 +1969-12-30 00:00:00,1969-12-29 23:00:00,115,131,146,182,99,100,99,102 +1969-12-30 00:00:00,1969-12-29 23:00:00,167,196,160,101,99,99,100,100 +1969-12-30 00:00:00,1969-12-29 23:00:00,187,199,174,113,100,99,101,130 +1969-12-30 00:00:00,1969-12-29 23:00:00,135,163,143,168,99,99,99,178 +1969-12-30 00:00:00,1969-12-29 23:00:00,111,134,155,121,100,99,101,171 +1969-12-30 00:00:00,1969-12-29 23:00:00,153,107,109,103,100,99,99,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,165,198,198,157,99,101,101,193 +1969-12-30 00:00:00,1969-12-29 23:00:00,200,143,118,105,101,101,101,190 +1969-12-30 00:00:00,1969-12-29 23:00:00,165,113,195,0,101,100,101,106 +1969-12-30 00:00:00,1969-12-29 23:00:00,182,105,111,170,100,99,99,177 +1969-12-30 00:00:00,1969-12-29 23:00:00,114,123,181,193,101,100,100,109 +1969-12-30 00:00:00,1969-12-29 23:00:00,169,114,171,167,101,101,99,185 +1969-12-30 00:00:00,1969-12-29 23:00:00,111,101,188,112,101,99,101,194 +1969-12-30 00:00:00,1969-12-29 23:00:00,171,180,183,0,99,101,99,141 +1969-12-30 00:00:00,1969-12-29 23:00:00,161,139,114,127,99,100,101,163 +1969-12-30 00:00:00,1969-12-29 23:00:00,157,100,162,129,99,99,101,179 +1969-12-30 00:00:00,1969-12-29 23:00:00,123,170,162,182,99,101,99,131 +1969-12-30 00:00:00,1969-12-29 23:00:00,114,193,105,111,100,99,99,180 +1969-12-30 00:00:00,1969-12-29 23:00:00,176,169,136,106,101,100,99,105 +1969-12-30 00:00:00,1969-12-29 23:00:00,194,189,187,180,99,100,100,185 +1969-12-30 00:00:00,1969-12-29 23:00:00,140,171,196,143,100,101,99,135 +1969-12-30 00:00:00,1969-12-29 23:00:00,133,104,156,168,100,101,100,185 +1969-12-30 00:00:00,1969-12-29 23:00:00,113,189,190,176,99,99,101,119 +1969-12-30 00:00:00,1969-12-29 23:00:00,174,125,110,188,101,99,100,183 +1969-12-30 00:00:00,1969-12-29 23:00:00,126,105,124,176,101,100,101,100 +1969-12-30 00:00:00,1969-12-29 23:00:00,187,113,119,155,99,100,100,104 +1969-12-30 00:00:00,1969-12-29 23:00:00,126,128,131,157,101,101,101,101 +1969-12-30 00:00:00,1969-12-29 23:00:00,198,189,140,167,101,100,99,143 +1969-12-30 00:00:00,1969-12-29 23:00:00,153,190,190,125,101,99,99,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,137,109,142,161,100,101,99,114 +1969-12-30 00:00:00,1969-12-29 23:00:00,132,186,188,189,100,99,100,172 +1969-12-30 00:00:00,1969-12-29 23:00:00,188,172,128,0,100,100,101,110 +1969-12-30 00:00:00,1969-12-29 23:00:00,121,125,122,0,99,100,100,180 +1969-12-30 00:00:00,1969-12-29 23:00:00,104,173,197,117,100,100,101,163 +1969-12-30 00:00:00,1969-12-29 23:00:00,182,187,185,161,99,99,100,160 +1969-12-30 00:00:00,1969-12-29 23:00:00,182,105,182,0,100,100,101,104 +1969-12-30 00:00:00,1969-12-29 23:00:00,106,187,141,197,100,100,101,112 +1969-12-30 00:00:00,1969-12-29 23:00:00,129,104,194,171,99,100,100,162 +1969-12-30 00:00:00,1969-12-29 23:00:00,185,116,191,103,101,101,99,179 +1969-12-30 00:00:00,1969-12-29 23:00:00,149,134,173,187,100,99,100,159 +1969-12-30 00:00:00,1969-12-29 23:00:00,119,190,177,173,99,99,100,106 +1969-12-30 00:00:00,1969-12-29 23:00:00,172,140,180,178,99,100,101,123 +1969-12-30 00:00:00,1969-12-29 23:00:00,127,100,150,176,100,100,100,127 +1969-12-30 00:00:00,1969-12-29 23:00:00,125,108,149,109,101,101,101,197 +1969-12-30 00:00:00,1969-12-29 23:00:00,169,139,150,114,99,99,101,173 +1969-12-30 00:00:00,1969-12-29 23:00:00,117,200,153,0,101,101,99,191 +1969-12-30 00:00:00,1969-12-29 23:00:00,186,166,125,161,101,101,101,191 +1969-12-30 00:00:00,1969-12-29 23:00:00,143,123,148,178,99,101,101,193 +1969-12-30 00:00:00,1969-12-29 23:00:00,197,147,185,147,101,99,101,145 +1969-12-30 00:00:00,1969-12-29 23:00:00,117,132,109,109,100,100,99,164 +1969-12-30 00:00:00,1969-12-29 23:00:00,162,123,200,172,100,99,100,188 +1969-12-30 00:00:00,1969-12-29 23:00:00,134,140,180,0,101,100,101,109 +1969-12-30 00:00:00,1969-12-29 23:00:00,130,118,195,155,100,101,99,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,132,136,115,169,99,100,101,181 +1969-12-30 00:00:00,1969-12-29 23:00:00,175,118,150,136,101,100,99,162 +1969-12-30 00:00:00,1969-12-29 23:00:00,174,162,114,181,101,99,99,103 +1969-12-30 00:00:00,1969-12-29 23:00:00,187,125,108,129,99,99,99,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,157,131,192,129,100,99,101,109 +1969-12-30 00:00:00,1969-12-29 23:00:00,127,139,187,115,100,101,99,191 +1969-12-30 00:00:00,1969-12-29 23:00:00,161,127,124,168,101,99,99,144 +1969-12-30 00:00:00,1969-12-29 23:00:00,141,106,112,0,101,101,100,119 +1969-12-30 00:00:00,1969-12-29 23:00:00,169,158,162,186,99,101,99,142 +1969-12-30 00:00:00,1969-12-29 23:00:00,125,199,104,199,100,101,101,194 +1969-12-30 00:00:00,1969-12-29 23:00:00,154,100,112,121,100,101,101,134 +1969-12-30 00:00:00,1969-12-29 23:00:00,129,113,110,135,101,99,100,200 +1969-12-30 00:00:00,1969-12-29 23:00:00,105,134,148,179,99,99,99,152 +1969-12-30 00:00:00,1969-12-29 23:00:00,160,102,147,153,101,101,99,188 +1969-12-30 00:00:00,1969-12-29 23:00:00,102,142,114,180,100,99,101,125 +1969-12-30 00:00:00,1969-12-29 23:00:00,133,178,107,191,99,101,99,145 +1969-12-30 00:00:00,1969-12-29 23:00:00,142,186,110,149,101,101,99,193 +1969-12-30 00:00:00,1969-12-29 23:00:00,152,111,142,198,99,99,101,179 +1969-12-30 00:00:00,1969-12-29 23:00:00,179,150,114,129,99,100,99,142 +1969-12-30 00:00:00,1969-12-29 23:00:00,125,126,178,181,99,101,99,119 +1969-12-30 00:00:00,1969-12-29 23:00:00,189,117,183,125,99,100,101,133 +1969-12-30 00:00:00,1969-12-29 23:00:00,182,155,102,0,100,99,99,100 +1969-12-30 00:00:00,1969-12-29 23:00:00,200,101,168,128,101,100,100,175 +1969-12-30 00:00:00,1969-12-29 23:00:00,181,178,174,121,100,101,99,133 +1969-12-30 00:00:00,1969-12-29 23:00:00,116,182,167,177,101,101,101,113 +1969-12-30 00:00:00,1969-12-29 23:00:00,164,147,198,149,99,101,99,187 +1969-12-30 00:00:00,1969-12-29 23:00:00,169,177,134,122,99,100,101,117 +1969-12-30 00:00:00,1969-12-29 23:00:00,181,193,146,146,99,101,99,174 +1969-12-30 00:00:00,1969-12-29 23:00:00,125,100,147,148,100,101,100,113 +1969-12-30 00:00:00,1969-12-29 23:00:00,133,191,158,197,100,101,100,169 +1969-12-30 00:00:00,1969-12-29 23:00:00,191,172,107,132,99,99,99,179 +1969-12-30 00:00:00,1969-12-29 23:00:00,156,198,150,171,100,101,99,174 +1969-12-30 00:00:00,1969-12-29 23:00:00,189,102,124,108,100,101,99,166 +1969-12-30 00:00:00,1969-12-29 23:00:00,193,105,124,146,101,99,100,133 +1969-12-30 00:00:00,1969-12-29 23:00:00,146,132,150,200,99,99,101,186 +1969-12-30 00:00:00,1969-12-29 23:00:00,182,183,175,0,100,99,99,159 +1969-12-30 00:00:00,1969-12-29 23:00:00,182,188,126,113,99,99,100,184 +1969-12-30 00:00:00,1969-12-29 23:00:00,115,110,188,199,99,100,99,160 +1969-12-30 00:00:00,1969-12-29 23:00:00,163,161,190,0,99,100,101,116 +1969-12-30 00:00:00,1969-12-29 23:00:00,104,191,165,140,100,100,100,178 +1969-12-30 00:00:00,1969-12-29 23:00:00,146,101,137,0,101,99,99,184 +1969-12-30 00:00:00,1969-12-29 23:00:00,185,162,147,131,101,101,100,188 +1969-12-30 00:00:00,1969-12-29 23:00:00,101,174,164,125,100,101,99,119 +1969-12-30 00:00:00,1969-12-29 23:00:00,111,173,169,0,99,101,99,156 +1969-12-30 00:00:00,1969-12-29 23:00:00,128,165,185,107,99,99,101,184 +1969-12-30 00:00:00,1969-12-29 23:00:00,129,160,115,123,100,101,99,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,189,187,129,121,100,101,99,180 +1969-12-30 00:00:00,1969-12-29 23:00:00,105,138,177,0,99,99,101,177 +1969-12-30 00:00:00,1969-12-29 23:00:00,114,136,185,146,101,101,99,125 +1969-12-30 00:00:00,1969-12-29 23:00:00,103,185,185,149,99,100,100,195 +1969-12-30 00:00:00,1969-12-29 23:00:00,188,119,157,118,100,101,100,162 +1969-12-30 00:00:00,1969-12-29 23:00:00,123,109,137,0,99,100,99,121 +1969-12-30 00:00:00,1969-12-29 23:00:00,180,118,172,144,101,101,100,182 +1969-12-30 00:00:00,1969-12-29 23:00:00,117,169,148,142,101,99,99,157 +1969-12-30 00:00:00,1969-12-29 23:00:00,190,197,150,114,101,101,100,164 +1969-12-30 00:00:00,1969-12-29 23:00:00,141,166,107,136,101,101,101,114 +1969-12-30 00:00:00,1969-12-29 23:00:00,160,118,165,134,100,100,99,165 +1969-12-30 00:00:00,1969-12-29 23:00:00,166,108,136,126,101,99,99,130 +1969-12-30 00:00:00,1969-12-29 23:00:00,120,198,170,0,101,99,101,193 +1969-12-30 00:00:00,1969-12-29 23:00:00,180,109,180,109,99,100,99,107 +1969-12-30 00:00:00,1969-12-29 23:00:00,196,140,143,147,100,99,101,131 +1969-12-30 00:00:00,1969-12-29 23:00:00,174,171,110,112,100,100,100,121 +1969-12-30 00:00:00,1969-12-29 23:00:00,111,191,124,158,100,99,100,144 +1969-12-30 00:00:00,1969-12-29 23:00:00,164,168,186,118,99,100,101,186 +1969-12-30 00:00:00,1969-12-29 23:00:00,107,194,185,128,100,99,99,122 +1969-12-30 00:00:00,1969-12-29 23:00:00,162,186,196,0,99,99,99,131 +1969-12-30 00:00:00,1969-12-29 23:00:00,178,106,184,194,100,100,101,157 +1969-12-30 00:00:00,1969-12-29 23:00:00,120,141,136,195,100,101,99,156 +1969-12-30 00:00:00,1969-12-29 23:00:00,175,121,117,107,99,100,101,113 +1969-12-30 00:00:00,1969-12-29 23:00:00,135,145,170,116,100,100,100,195 +1969-12-30 00:00:00,1969-12-29 23:00:00,158,133,103,155,99,100,101,148 +1969-12-30 00:00:00,1969-12-29 23:00:00,123,190,156,158,100,101,100,136 +1969-12-30 00:00:00,1969-12-29 23:00:00,130,135,149,116,99,100,101,120 +1969-12-30 00:00:00,1969-12-29 23:00:00,146,111,101,127,100,101,100,168 +1969-12-30 00:00:00,1969-12-29 23:00:00,133,145,152,171,100,99,101,185 +1969-12-30 00:00:00,1969-12-29 23:00:00,100,197,138,0,100,100,101,172 +1969-12-30 00:00:00,1969-12-29 23:00:00,171,152,111,181,99,100,99,165 +1969-12-30 00:00:00,1969-12-29 23:00:00,171,188,103,180,99,100,100,106 +1969-12-30 00:00:00,1969-12-29 23:00:00,151,186,161,152,99,99,101,186 +1969-12-30 00:00:00,1969-12-29 23:00:00,139,191,123,0,99,100,100,157 +1969-12-30 00:00:00,1969-12-29 23:00:00,114,133,166,0,99,99,101,154 +1969-12-30 00:00:00,1969-12-29 23:00:00,182,142,161,122,101,101,100,162 +1969-12-30 00:00:00,1969-12-29 23:00:00,195,163,157,125,101,101,99,184 +1969-12-30 00:00:00,1969-12-29 23:00:00,128,200,136,0,100,100,99,163 +1969-12-30 00:00:00,1969-12-29 23:00:00,115,152,198,182,100,99,101,124 +1969-12-30 00:00:00,1969-12-29 23:00:00,180,120,168,189,101,101,100,137 +1969-12-30 00:00:00,1969-12-29 23:00:00,125,169,117,169,100,101,101,148 +1969-12-30 00:00:00,1969-12-29 23:00:00,165,129,109,135,101,99,100,148 +1969-12-30 00:00:00,1969-12-29 23:00:00,188,170,198,0,99,99,100,179 +1969-12-30 00:00:00,1969-12-29 23:00:00,169,200,196,0,99,99,99,143 +1969-12-30 00:00:00,1969-12-29 23:00:00,180,100,156,188,101,101,100,152 +1969-12-30 00:00:00,1969-12-29 23:00:00,145,113,168,109,100,100,101,125 +1969-12-30 00:00:00,1969-12-29 23:00:00,200,132,184,0,100,100,100,124 +1969-12-30 00:00:00,1969-12-29 23:00:00,174,186,136,0,100,99,100,123 +1969-12-30 00:00:00,1969-12-29 23:00:00,167,163,126,102,99,100,101,149 +1969-12-30 00:00:00,1969-12-29 23:00:00,170,120,108,0,100,101,101,126 +1969-12-30 00:00:00,1969-12-29 23:00:00,184,195,119,0,101,99,99,189 +1969-12-30 00:00:00,1969-12-29 23:00:00,184,159,127,191,101,99,99,184 +1969-12-30 00:00:00,1969-12-29 23:00:00,116,118,163,151,101,99,99,177 +1969-12-30 00:00:00,1969-12-29 23:00:00,120,129,185,0,99,99,101,194 +1969-12-30 00:00:00,1969-12-29 23:00:00,112,177,110,0,99,100,101,146 +1969-12-30 00:00:00,1969-12-29 23:00:00,136,116,108,148,100,100,99,149 +1969-12-30 00:00:00,1969-12-29 23:00:00,183,132,161,0,101,100,99,179 +1969-12-30 00:00:00,1969-12-29 23:00:00,130,171,182,122,100,100,99,104 +1969-12-30 00:00:00,1969-12-29 23:00:00,164,166,199,187,101,99,100,138 +1969-12-29 00:00:00,1969-12-28 23:00:00,123,100,0,146,99,100,100,192 +1969-12-29 00:00:00,1969-12-28 23:00:00,197,131,0,125,101,101,101,101 +1969-12-29 00:00:00,1969-12-28 23:00:00,124,108,0,0,100,99,99,128 +1969-12-29 00:00:00,1969-12-28 23:00:00,189,188,0,107,101,101,101,153 +1969-12-29 00:00:00,1969-12-28 23:00:00,150,120,0,175,99,100,99,185 +1969-12-29 00:00:00,1969-12-28 23:00:00,138,197,0,189,99,99,101,193 +1969-12-29 00:00:00,1969-12-28 23:00:00,197,130,151,199,100,99,100,185 +1969-12-29 00:00:00,1969-12-28 23:00:00,160,200,152,123,100,100,101,125 +1969-12-29 00:00:00,1969-12-28 23:00:00,172,107,182,108,99,99,101,192 +1969-12-29 00:00:00,1969-12-28 23:00:00,186,161,143,130,101,101,99,143 +1969-12-29 00:00:00,1969-12-28 23:00:00,162,126,186,115,99,100,99,168 +1969-12-29 00:00:00,1969-12-28 23:00:00,138,189,133,0,100,101,100,139 +1969-12-29 00:00:00,1969-12-28 23:00:00,126,144,111,0,101,100,101,170 +1969-12-29 00:00:00,1969-12-28 23:00:00,131,185,168,170,100,99,99,182 +1969-12-29 00:00:00,1969-12-28 23:00:00,177,178,102,145,99,99,99,142 +1969-12-29 00:00:00,1969-12-28 23:00:00,181,177,142,177,99,101,101,167 +1969-12-29 00:00:00,1969-12-28 23:00:00,155,155,188,0,101,100,100,122 +1969-12-29 00:00:00,1969-12-28 23:00:00,145,172,166,183,100,101,101,198 +1969-12-29 00:00:00,1969-12-28 23:00:00,179,186,146,153,100,99,100,122 +1969-12-29 00:00:00,1969-12-28 23:00:00,136,129,169,0,101,100,101,185 +1969-12-29 00:00:00,1969-12-28 23:00:00,164,104,182,157,100,100,100,181 +1969-12-29 00:00:00,1969-12-28 23:00:00,103,161,165,186,100,99,100,171 +1969-12-29 00:00:00,1969-12-28 23:00:00,125,166,195,135,101,101,101,127 +1969-12-29 00:00:00,1969-12-28 23:00:00,100,128,156,0,99,100,101,171 +1969-12-29 00:00:00,1969-12-28 23:00:00,196,195,136,145,101,100,101,130 +1969-12-29 00:00:00,1969-12-28 23:00:00,109,199,189,162,100,99,99,116 +1969-12-29 00:00:00,1969-12-28 23:00:00,185,198,182,169,99,101,99,180 +1969-12-29 00:00:00,1969-12-28 23:00:00,192,104,165,170,101,100,99,168 +1969-12-29 00:00:00,1969-12-28 23:00:00,131,122,191,180,99,101,99,118 +1969-12-29 00:00:00,1969-12-28 23:00:00,110,131,183,0,101,99,99,181 +1969-12-29 00:00:00,1969-12-28 23:00:00,197,159,146,188,100,101,101,196 +1969-12-29 00:00:00,1969-12-28 23:00:00,150,118,167,136,100,101,101,115 +1969-12-29 00:00:00,1969-12-28 23:00:00,189,143,167,151,101,100,101,132 +1969-12-29 00:00:00,1969-12-28 23:00:00,119,111,162,180,99,100,101,180 +1969-12-29 00:00:00,1969-12-28 23:00:00,104,165,120,0,99,101,100,177 +1969-12-29 00:00:00,1969-12-28 23:00:00,110,121,172,195,99,101,99,115 +1969-12-29 00:00:00,1969-12-28 23:00:00,101,158,164,152,100,101,101,181 +1969-12-29 00:00:00,1969-12-28 23:00:00,143,148,190,0,100,101,99,168 +1969-12-29 00:00:00,1969-12-28 23:00:00,120,127,121,126,101,101,99,183 +1969-12-29 00:00:00,1969-12-28 23:00:00,160,190,172,194,100,99,99,172 +1969-12-29 00:00:00,1969-12-28 23:00:00,183,184,156,109,101,100,100,100 +1969-12-29 00:00:00,1969-12-28 23:00:00,148,156,141,113,100,101,101,104 +1969-12-29 00:00:00,1969-12-28 23:00:00,136,186,165,169,100,100,101,117 +1969-12-29 00:00:00,1969-12-28 23:00:00,114,108,120,139,100,99,100,134 +1969-12-29 00:00:00,1969-12-28 23:00:00,103,107,155,190,99,101,101,163 +1969-12-29 00:00:00,1969-12-28 23:00:00,135,197,168,111,101,99,101,149 +1969-12-29 00:00:00,1969-12-28 23:00:00,103,162,150,194,99,101,100,183 +1969-12-29 00:00:00,1969-12-28 23:00:00,145,153,145,0,99,100,99,170 +1969-12-29 00:00:00,1969-12-28 23:00:00,194,185,192,194,100,99,99,178 +1969-12-29 00:00:00,1969-12-28 23:00:00,180,152,197,197,100,100,101,102 +1969-12-29 00:00:00,1969-12-28 23:00:00,170,113,134,145,99,101,99,185 +1969-12-29 00:00:00,1969-12-28 23:00:00,127,157,191,130,101,100,99,200 +1969-12-29 00:00:00,1969-12-28 23:00:00,148,126,188,189,99,99,100,155 +1969-12-29 00:00:00,1969-12-28 23:00:00,143,169,199,173,99,101,99,156 +1969-12-29 00:00:00,1969-12-28 23:00:00,126,104,175,0,99,101,101,195 +1969-12-29 00:00:00,1969-12-28 23:00:00,109,128,138,169,101,99,99,187 +1969-12-29 00:00:00,1969-12-28 23:00:00,129,152,179,0,100,100,100,118 +1969-12-29 00:00:00,1969-12-28 23:00:00,199,154,107,155,100,100,101,186 +1969-12-29 00:00:00,1969-12-28 23:00:00,108,143,111,184,99,101,99,131 +1969-12-29 00:00:00,1969-12-28 23:00:00,111,185,106,129,100,100,100,149 +1969-12-29 00:00:00,1969-12-28 23:00:00,141,179,111,111,100,99,101,111 +1969-12-29 00:00:00,1969-12-28 23:00:00,122,170,184,152,99,100,101,168 +1969-12-29 00:00:00,1969-12-28 23:00:00,100,174,119,170,101,101,100,133 +1969-12-29 00:00:00,1969-12-28 23:00:00,145,163,139,173,101,101,101,134 +1969-12-29 00:00:00,1969-12-28 23:00:00,158,195,130,164,99,101,99,145 +1969-12-29 00:00:00,1969-12-28 23:00:00,138,133,134,0,101,100,101,176 +1969-12-29 00:00:00,1969-12-28 23:00:00,111,177,161,191,100,100,101,140 +1969-12-29 00:00:00,1969-12-28 23:00:00,148,196,161,160,101,100,99,103 +1969-12-29 00:00:00,1969-12-28 23:00:00,134,172,103,101,101,100,101,137 +1969-12-29 00:00:00,1969-12-28 23:00:00,182,137,132,200,99,100,100,147 +1969-12-29 00:00:00,1969-12-28 23:00:00,146,187,144,108,101,100,99,162 +1969-12-29 00:00:00,1969-12-28 23:00:00,112,168,197,0,99,101,99,124 +1969-12-29 00:00:00,1969-12-28 23:00:00,185,102,105,168,99,101,100,189 +1969-12-29 00:00:00,1969-12-28 23:00:00,117,162,156,169,100,99,99,116 +1969-12-29 00:00:00,1969-12-28 23:00:00,148,182,192,167,101,100,100,107 +1969-12-29 00:00:00,1969-12-28 23:00:00,116,162,160,0,99,100,101,189 +1969-12-29 00:00:00,1969-12-28 23:00:00,178,192,107,118,100,101,99,113 +1969-12-29 00:00:00,1969-12-28 23:00:00,171,109,176,171,101,99,100,103 +1969-12-29 00:00:00,1969-12-28 23:00:00,183,160,163,154,100,101,99,170 +1969-12-29 00:00:00,1969-12-28 23:00:00,200,149,182,153,100,100,101,185 +1969-12-29 00:00:00,1969-12-28 23:00:00,179,140,134,200,101,101,100,160 +1969-12-29 00:00:00,1969-12-28 23:00:00,114,151,102,179,99,100,100,160 +1969-12-29 00:00:00,1969-12-28 23:00:00,196,119,138,118,99,101,101,110 +1969-12-29 00:00:00,1969-12-28 23:00:00,196,128,197,0,101,100,100,103 +1969-12-29 00:00:00,1969-12-28 23:00:00,188,172,106,124,99,100,101,145 +1969-12-29 00:00:00,1969-12-28 23:00:00,100,133,188,114,100,101,100,118 +1969-12-29 00:00:00,1969-12-28 23:00:00,154,106,132,0,101,101,101,193 +1969-12-29 00:00:00,1969-12-28 23:00:00,178,180,159,130,99,100,100,172 +1969-12-29 00:00:00,1969-12-28 23:00:00,171,178,193,138,101,99,99,121 +1969-12-29 00:00:00,1969-12-28 23:00:00,198,138,172,0,99,100,101,126 +1969-12-29 00:00:00,1969-12-28 23:00:00,148,128,143,198,100,100,99,137 +1969-12-29 00:00:00,1969-12-28 23:00:00,107,166,106,130,101,99,101,165 +1969-12-29 00:00:00,1969-12-28 23:00:00,121,130,168,151,100,100,100,120 +1969-12-29 00:00:00,1969-12-28 23:00:00,110,123,179,180,101,100,100,141 +1969-12-29 00:00:00,1969-12-28 23:00:00,106,160,195,133,101,101,99,117 +1969-12-29 00:00:00,1969-12-28 23:00:00,194,179,151,177,99,100,100,110 +1969-12-29 00:00:00,1969-12-28 23:00:00,197,116,112,127,99,99,99,164 +1969-12-29 00:00:00,1969-12-28 23:00:00,194,127,193,0,100,101,100,181 +1969-12-29 00:00:00,1969-12-28 23:00:00,166,152,188,188,99,101,99,116 +1969-12-29 00:00:00,1969-12-28 23:00:00,157,159,144,139,99,99,101,166 +1969-12-29 00:00:00,1969-12-28 23:00:00,166,122,134,0,100,99,99,154 +1969-12-29 00:00:00,1969-12-28 23:00:00,177,173,164,175,99,101,100,146 +1969-12-29 00:00:00,1969-12-28 23:00:00,191,139,154,124,100,101,99,167 +1969-12-29 00:00:00,1969-12-28 23:00:00,189,188,188,0,100,100,100,163 +1969-12-29 00:00:00,1969-12-28 23:00:00,180,139,120,148,101,100,101,142 +1969-12-29 00:00:00,1969-12-28 23:00:00,110,138,148,112,99,101,101,137 +1969-12-29 00:00:00,1969-12-28 23:00:00,137,150,145,100,101,100,101,119 +1969-12-29 00:00:00,1969-12-28 23:00:00,114,150,180,114,99,100,99,186 +1969-12-29 00:00:00,1969-12-28 23:00:00,149,139,119,178,99,100,101,184 +1969-12-29 00:00:00,1969-12-28 23:00:00,137,125,125,160,100,101,101,189 +1969-12-29 00:00:00,1969-12-28 23:00:00,103,168,190,193,100,100,99,188 +1969-12-29 00:00:00,1969-12-28 23:00:00,104,151,178,0,101,101,100,198 +1969-12-29 00:00:00,1969-12-28 23:00:00,128,137,143,0,100,101,101,196 +1969-12-29 00:00:00,1969-12-28 23:00:00,122,172,152,162,100,101,99,172 +1969-12-29 00:00:00,1969-12-28 23:00:00,108,170,193,137,100,99,100,149 +1969-12-29 00:00:00,1969-12-28 23:00:00,148,196,119,159,99,101,100,137 +1969-12-29 00:00:00,1969-12-28 23:00:00,192,102,181,174,99,99,99,130 +1969-12-29 00:00:00,1969-12-28 23:00:00,139,179,196,0,100,101,99,200 +1969-12-29 00:00:00,1969-12-28 23:00:00,127,118,120,111,99,101,101,184 +1969-12-29 00:00:00,1969-12-28 23:00:00,165,187,128,0,100,100,99,181 +1969-12-29 00:00:00,1969-12-28 23:00:00,149,143,148,167,100,99,101,171 +1969-12-29 00:00:00,1969-12-28 23:00:00,158,154,185,162,100,101,100,154 +1969-12-29 00:00:00,1969-12-28 23:00:00,143,176,200,173,101,99,99,106 +1969-12-29 00:00:00,1969-12-28 23:00:00,155,177,167,143,101,101,101,192 +1969-12-29 00:00:00,1969-12-28 23:00:00,200,156,115,166,99,99,99,167 +1969-12-29 00:00:00,1969-12-28 23:00:00,137,135,176,180,99,99,99,154 +1969-12-29 00:00:00,1969-12-28 23:00:00,141,140,193,0,101,99,100,131 +1969-12-29 00:00:00,1969-12-28 23:00:00,132,115,126,0,101,99,100,156 +1969-12-29 00:00:00,1969-12-28 23:00:00,121,142,105,128,101,101,99,109 +1969-12-29 00:00:00,1969-12-28 23:00:00,190,166,124,141,99,101,100,193 +1969-12-29 00:00:00,1969-12-28 23:00:00,154,118,126,163,99,101,100,185 +1969-12-29 00:00:00,1969-12-28 23:00:00,200,100,127,155,101,99,99,186 +1969-12-29 00:00:00,1969-12-28 23:00:00,198,134,188,195,100,100,101,119 +1969-12-29 00:00:00,1969-12-28 23:00:00,169,196,185,146,99,99,101,166 +1969-12-29 00:00:00,1969-12-28 23:00:00,169,143,105,131,100,100,100,121 +1969-12-29 00:00:00,1969-12-28 23:00:00,146,146,126,122,101,101,99,171 +1969-12-29 00:00:00,1969-12-28 23:00:00,103,175,127,146,99,100,99,101 +1969-12-29 00:00:00,1969-12-28 23:00:00,140,192,167,181,101,100,99,146 +1969-12-29 00:00:00,1969-12-28 23:00:00,134,122,174,0,100,100,99,128 +1969-12-29 00:00:00,1969-12-28 23:00:00,194,193,166,180,101,99,100,140 +1969-12-29 00:00:00,1969-12-28 23:00:00,182,148,122,115,101,99,101,178 +1969-12-29 00:00:00,1969-12-28 23:00:00,119,195,100,0,100,101,101,106 +1969-12-29 00:00:00,1969-12-28 23:00:00,181,189,133,0,99,101,99,143 +1969-12-29 00:00:00,1969-12-28 23:00:00,102,152,169,195,101,101,99,188 +1969-12-29 00:00:00,1969-12-28 23:00:00,191,182,185,0,100,101,101,147 +1969-12-29 00:00:00,1969-12-28 23:00:00,115,123,175,191,101,101,99,119 +1969-12-29 00:00:00,1969-12-28 23:00:00,152,153,199,187,101,99,101,164 +1969-12-29 00:00:00,1969-12-28 23:00:00,151,121,152,101,100,101,101,177 +1969-12-29 00:00:00,1969-12-28 23:00:00,117,165,121,142,100,101,99,184 +1969-12-29 00:00:00,1969-12-28 23:00:00,172,130,135,167,99,100,99,164 +1969-12-29 00:00:00,1969-12-28 23:00:00,139,151,180,107,100,101,99,157 +1969-12-29 00:00:00,1969-12-28 23:00:00,119,177,199,162,100,101,100,107 +1969-12-29 00:00:00,1969-12-28 23:00:00,109,122,185,0,100,99,99,150 +1969-12-29 00:00:00,1969-12-28 23:00:00,102,186,155,143,101,101,101,167 +1969-12-29 00:00:00,1969-12-28 23:00:00,165,193,191,100,101,100,101,183 +1969-12-29 00:00:00,1969-12-28 23:00:00,135,119,192,109,101,99,99,132 +1969-12-29 00:00:00,1969-12-28 23:00:00,108,101,141,162,99,101,101,109 +1969-12-29 00:00:00,1969-12-28 23:00:00,121,127,181,152,99,101,100,146 +1969-12-29 00:00:00,1969-12-28 23:00:00,116,157,195,155,99,99,100,183 +1969-12-29 00:00:00,1969-12-28 23:00:00,142,103,186,163,99,101,99,100 +1969-12-29 00:00:00,1969-12-28 23:00:00,171,167,189,175,101,101,99,137 +1969-12-29 00:00:00,1969-12-28 23:00:00,190,184,137,161,101,99,101,188 +1969-12-29 00:00:00,1969-12-28 23:00:00,173,179,119,125,100,99,100,133 +1969-12-29 00:00:00,1969-12-28 23:00:00,130,166,152,0,99,101,99,120 +1969-12-29 00:00:00,1969-12-28 23:00:00,123,141,152,137,101,101,99,151 +1969-12-29 00:00:00,1969-12-28 23:00:00,167,135,127,109,101,100,100,104 +1969-12-29 00:00:00,1969-12-28 23:00:00,150,183,109,0,101,100,100,114 +1969-12-29 00:00:00,1969-12-28 23:00:00,100,145,143,0,100,101,100,182 +1969-12-29 00:00:00,1969-12-28 23:00:00,198,142,162,118,101,100,99,142 +1969-12-29 00:00:00,1969-12-28 23:00:00,155,147,180,108,101,99,99,121 +1969-12-29 00:00:00,1969-12-28 23:00:00,186,169,112,0,100,99,99,154 +1969-12-29 00:00:00,1969-12-28 23:00:00,163,124,192,124,101,99,99,122 +1969-12-29 00:00:00,1969-12-28 23:00:00,195,122,138,197,99,100,99,196 +1969-12-29 00:00:00,1969-12-28 23:00:00,169,115,113,0,99,101,100,112 +1969-12-29 00:00:00,1969-12-28 23:00:00,188,163,175,0,100,99,100,178 +1969-12-29 00:00:00,1969-12-28 23:00:00,147,195,181,189,99,101,100,171 +1969-12-29 00:00:00,1969-12-28 23:00:00,156,197,102,0,101,101,101,168 +1969-12-29 00:00:00,1969-12-28 23:00:00,175,162,159,177,100,101,100,160 +1969-12-29 00:00:00,1969-12-28 23:00:00,146,198,106,142,100,100,100,189 +1969-12-29 00:00:00,1969-12-28 23:00:00,129,181,177,116,100,100,100,100 +1969-12-29 00:00:00,1969-12-28 23:00:00,124,149,127,143,99,99,100,125 +1969-12-29 00:00:00,1969-12-28 23:00:00,171,133,140,114,99,100,99,160 +1969-12-29 00:00:00,1969-12-28 23:00:00,183,107,182,173,100,100,101,125 +1969-12-29 00:00:00,1969-12-28 23:00:00,122,181,139,119,99,100,100,173 +1969-12-29 00:00:00,1969-12-28 23:00:00,101,168,120,0,99,99,100,119 +1969-12-29 00:00:00,1969-12-28 23:00:00,175,126,173,115,100,100,99,157 +1969-12-29 00:00:00,1969-12-28 23:00:00,152,105,121,100,101,100,99,195 +1969-12-29 00:00:00,1969-12-28 23:00:00,102,150,194,199,99,101,99,163 +1969-12-29 00:00:00,1969-12-28 23:00:00,158,169,108,102,99,101,99,132 +1969-12-29 00:00:00,1969-12-28 23:00:00,146,197,109,181,101,99,100,169 +1969-12-29 00:00:00,1969-12-28 23:00:00,153,161,187,148,100,99,101,129 +1969-12-29 00:00:00,1969-12-28 23:00:00,116,189,145,121,101,99,101,167 +1969-12-29 00:00:00,1969-12-28 23:00:00,175,200,117,184,100,99,101,105 +1969-12-29 00:00:00,1969-12-28 23:00:00,150,100,128,182,101,100,101,120 +1969-12-29 00:00:00,1969-12-28 23:00:00,140,170,127,115,101,99,100,129 +1969-12-29 00:00:00,1969-12-28 23:00:00,117,106,176,171,99,101,101,159 +1969-12-29 00:00:00,1969-12-28 23:00:00,110,132,167,184,100,101,101,152 +1969-12-29 00:00:00,1969-12-28 23:00:00,154,102,154,0,99,100,101,103 +1969-12-29 00:00:00,1969-12-28 23:00:00,143,151,164,148,99,101,100,160 +1969-12-29 00:00:00,1969-12-28 23:00:00,139,120,126,100,100,100,100,187 +1969-12-28 00:00:00,1969-12-27 23:00:00,185,152,0,195,101,100,99,187 +1969-12-28 00:00:00,1969-12-27 23:00:00,179,160,0,143,99,101,100,145 +1969-12-28 00:00:00,1969-12-27 23:00:00,123,109,0,121,101,100,101,146 +1969-12-28 00:00:00,1969-12-27 23:00:00,115,119,0,177,99,99,101,161 +1969-12-28 00:00:00,1969-12-27 23:00:00,114,105,0,181,100,99,101,132 +1969-12-28 00:00:00,1969-12-27 23:00:00,110,163,0,149,99,101,99,143 +1969-12-28 00:00:00,1969-12-27 23:00:00,127,187,188,118,100,99,101,105 +1969-12-28 00:00:00,1969-12-27 23:00:00,106,137,151,101,100,100,101,163 +1969-12-28 00:00:00,1969-12-27 23:00:00,112,175,150,169,100,99,100,153 +1969-12-28 00:00:00,1969-12-27 23:00:00,190,157,104,129,101,101,99,127 +1969-12-28 00:00:00,1969-12-27 23:00:00,117,137,189,154,100,100,100,164 +1969-12-28 00:00:00,1969-12-27 23:00:00,110,159,174,136,101,101,101,140 +1969-12-28 00:00:00,1969-12-27 23:00:00,133,144,180,166,100,101,101,198 +1969-12-28 00:00:00,1969-12-27 23:00:00,119,192,142,111,100,99,101,108 +1969-12-28 00:00:00,1969-12-27 23:00:00,117,135,157,171,100,100,101,146 +1969-12-28 00:00:00,1969-12-27 23:00:00,167,149,156,0,101,99,100,167 +1969-12-28 00:00:00,1969-12-27 23:00:00,109,112,136,0,101,99,99,144 +1969-12-28 00:00:00,1969-12-27 23:00:00,115,165,135,0,100,99,100,199 +1969-12-28 00:00:00,1969-12-27 23:00:00,189,104,180,160,101,101,100,193 +1969-12-28 00:00:00,1969-12-27 23:00:00,171,156,166,155,101,101,100,128 +1969-12-28 00:00:00,1969-12-27 23:00:00,180,144,141,162,99,101,100,176 +1969-12-28 00:00:00,1969-12-27 23:00:00,197,129,125,125,99,101,99,153 +1969-12-28 00:00:00,1969-12-27 23:00:00,158,153,103,169,99,100,101,196 +1969-12-28 00:00:00,1969-12-27 23:00:00,122,178,139,0,99,100,101,190 +1969-12-28 00:00:00,1969-12-27 23:00:00,170,183,185,127,100,100,101,179 +1969-12-28 00:00:00,1969-12-27 23:00:00,113,152,117,128,101,99,101,125 +1969-12-28 00:00:00,1969-12-27 23:00:00,187,111,120,102,101,100,100,108 +1969-12-28 00:00:00,1969-12-27 23:00:00,133,145,116,129,99,101,100,113 +1969-12-28 00:00:00,1969-12-27 23:00:00,178,135,110,0,101,99,99,155 +1969-12-28 00:00:00,1969-12-27 23:00:00,125,132,165,126,100,100,99,161 +1969-12-28 00:00:00,1969-12-27 23:00:00,106,195,190,119,101,100,101,192 +1969-12-28 00:00:00,1969-12-27 23:00:00,131,187,131,189,100,99,99,131 +1969-12-28 00:00:00,1969-12-27 23:00:00,176,101,186,120,101,100,100,186 +1969-12-28 00:00:00,1969-12-27 23:00:00,111,138,155,115,99,101,99,149 +1969-12-28 00:00:00,1969-12-27 23:00:00,120,114,153,172,100,101,100,140 +1969-12-28 00:00:00,1969-12-27 23:00:00,183,150,129,197,99,101,99,181 +1969-12-28 00:00:00,1969-12-27 23:00:00,126,193,136,119,100,100,100,122 +1969-12-28 00:00:00,1969-12-27 23:00:00,135,101,103,161,99,101,100,162 +1969-12-28 00:00:00,1969-12-27 23:00:00,127,192,184,172,100,99,100,103 +1969-12-28 00:00:00,1969-12-27 23:00:00,159,179,143,0,100,99,101,159 +1969-12-28 00:00:00,1969-12-27 23:00:00,106,187,173,121,101,99,101,101 +1969-12-28 00:00:00,1969-12-27 23:00:00,158,161,124,171,100,101,100,181 +1969-12-28 00:00:00,1969-12-27 23:00:00,160,161,188,159,100,99,99,166 +1969-12-28 00:00:00,1969-12-27 23:00:00,171,152,185,171,99,101,101,152 +1969-12-28 00:00:00,1969-12-27 23:00:00,142,109,147,0,101,100,101,176 +1969-12-28 00:00:00,1969-12-27 23:00:00,197,131,144,0,101,101,99,178 +1969-12-28 00:00:00,1969-12-27 23:00:00,159,196,199,0,99,100,100,159 +1969-12-28 00:00:00,1969-12-27 23:00:00,152,181,154,137,100,100,101,181 +1969-12-28 00:00:00,1969-12-27 23:00:00,122,163,159,0,101,99,99,132 +1969-12-28 00:00:00,1969-12-27 23:00:00,134,139,187,169,100,100,100,143 +1969-12-28 00:00:00,1969-12-27 23:00:00,185,181,111,122,100,100,100,181 +1969-12-28 00:00:00,1969-12-27 23:00:00,113,118,174,179,99,99,101,179 +1969-12-28 00:00:00,1969-12-27 23:00:00,172,175,169,112,100,101,100,188 +1969-12-28 00:00:00,1969-12-27 23:00:00,122,177,118,161,99,101,100,100 +1969-12-28 00:00:00,1969-12-27 23:00:00,192,136,115,153,101,101,100,113 +1969-12-28 00:00:00,1969-12-27 23:00:00,142,108,157,0,99,99,100,178 +1969-12-28 00:00:00,1969-12-27 23:00:00,196,149,188,154,101,100,100,102 +1969-12-28 00:00:00,1969-12-27 23:00:00,165,196,139,108,99,99,101,191 +1969-12-28 00:00:00,1969-12-27 23:00:00,155,163,121,200,99,99,100,155 +1969-12-28 00:00:00,1969-12-27 23:00:00,143,137,167,165,100,101,100,180 +1969-12-28 00:00:00,1969-12-27 23:00:00,151,143,169,0,101,100,101,149 +1969-12-28 00:00:00,1969-12-27 23:00:00,150,171,136,120,100,99,101,147 +1969-12-28 00:00:00,1969-12-27 23:00:00,149,121,120,138,100,99,100,197 +1969-12-28 00:00:00,1969-12-27 23:00:00,189,187,146,188,101,101,99,141 +1969-12-28 00:00:00,1969-12-27 23:00:00,116,140,159,175,99,100,100,185 +1969-12-28 00:00:00,1969-12-27 23:00:00,121,142,173,142,101,99,101,111 +1969-12-28 00:00:00,1969-12-27 23:00:00,197,132,126,0,101,101,100,149 +1969-12-28 00:00:00,1969-12-27 23:00:00,172,128,138,0,100,100,101,118 +1969-12-28 00:00:00,1969-12-27 23:00:00,159,173,162,188,99,100,99,178 +1969-12-28 00:00:00,1969-12-27 23:00:00,170,187,152,123,100,101,100,122 +1969-12-28 00:00:00,1969-12-27 23:00:00,175,111,142,199,99,100,100,138 +1969-12-28 00:00:00,1969-12-27 23:00:00,140,158,131,132,100,99,100,145 +1969-12-28 00:00:00,1969-12-27 23:00:00,109,126,113,104,99,99,101,114 +1969-12-28 00:00:00,1969-12-27 23:00:00,107,101,160,0,100,99,99,129 +1969-12-28 00:00:00,1969-12-27 23:00:00,109,114,125,197,100,100,100,160 +1969-12-28 00:00:00,1969-12-27 23:00:00,108,109,191,128,101,99,99,133 +1969-12-28 00:00:00,1969-12-27 23:00:00,119,171,156,0,99,101,100,183 +1969-12-28 00:00:00,1969-12-27 23:00:00,148,131,129,0,100,100,99,102 +1969-12-28 00:00:00,1969-12-27 23:00:00,147,118,146,119,99,101,101,150 +1969-12-28 00:00:00,1969-12-27 23:00:00,142,110,143,183,101,100,99,165 +1969-12-28 00:00:00,1969-12-27 23:00:00,107,153,183,0,100,101,101,198 +1969-12-28 00:00:00,1969-12-27 23:00:00,113,149,171,153,99,101,99,168 +1969-12-28 00:00:00,1969-12-27 23:00:00,144,185,147,193,99,99,101,137 +1969-12-28 00:00:00,1969-12-27 23:00:00,104,152,119,180,101,101,101,167 +1969-12-28 00:00:00,1969-12-27 23:00:00,117,199,133,104,100,99,100,191 +1969-12-28 00:00:00,1969-12-27 23:00:00,113,139,177,133,100,99,100,173 +1969-12-28 00:00:00,1969-12-27 23:00:00,158,140,129,131,100,100,101,142 +1969-12-28 00:00:00,1969-12-27 23:00:00,116,147,123,143,100,99,101,165 +1969-12-28 00:00:00,1969-12-27 23:00:00,137,162,187,100,100,101,99,114 +1969-12-28 00:00:00,1969-12-27 23:00:00,159,150,126,155,101,100,99,170 +1969-12-28 00:00:00,1969-12-27 23:00:00,184,183,108,108,100,101,100,161 +1969-12-28 00:00:00,1969-12-27 23:00:00,118,170,133,0,99,101,100,166 +1969-12-28 00:00:00,1969-12-27 23:00:00,146,142,197,126,99,99,99,172 +1969-12-28 00:00:00,1969-12-27 23:00:00,170,126,151,156,100,99,99,143 +1969-12-28 00:00:00,1969-12-27 23:00:00,165,176,138,144,99,100,99,173 +1969-12-28 00:00:00,1969-12-27 23:00:00,108,110,159,178,100,101,101,126 +1969-12-28 00:00:00,1969-12-27 23:00:00,167,122,124,190,101,100,99,144 +1969-12-28 00:00:00,1969-12-27 23:00:00,177,194,194,145,100,100,99,162 +1969-12-28 00:00:00,1969-12-27 23:00:00,143,168,138,156,99,99,101,197 +1969-12-28 00:00:00,1969-12-27 23:00:00,162,167,170,0,99,99,101,103 +1969-12-28 00:00:00,1969-12-27 23:00:00,190,176,101,185,100,99,99,163 +1969-12-28 00:00:00,1969-12-27 23:00:00,107,148,109,157,101,100,99,171 +1969-12-28 00:00:00,1969-12-27 23:00:00,188,122,182,0,100,100,100,161 +1969-12-28 00:00:00,1969-12-27 23:00:00,179,130,190,150,100,100,99,114 +1969-12-28 00:00:00,1969-12-27 23:00:00,186,163,175,153,99,100,101,192 +1969-12-28 00:00:00,1969-12-27 23:00:00,156,155,148,188,99,100,100,113 +1969-12-28 00:00:00,1969-12-27 23:00:00,166,158,115,118,99,99,100,168 +1969-12-28 00:00:00,1969-12-27 23:00:00,165,129,162,170,100,100,100,140 +1969-12-28 00:00:00,1969-12-27 23:00:00,175,148,110,172,99,99,99,163 +1969-12-28 00:00:00,1969-12-27 23:00:00,176,131,138,154,100,100,101,188 +1969-12-28 00:00:00,1969-12-27 23:00:00,167,141,114,165,100,99,99,149 +1969-12-28 00:00:00,1969-12-27 23:00:00,128,153,120,0,99,100,101,150 +1969-12-28 00:00:00,1969-12-27 23:00:00,178,125,112,0,100,100,99,140 +1969-12-28 00:00:00,1969-12-27 23:00:00,143,144,153,148,101,99,100,161 +1969-12-28 00:00:00,1969-12-27 23:00:00,190,173,186,132,99,101,99,126 +1969-12-28 00:00:00,1969-12-27 23:00:00,131,153,158,0,99,100,99,189 +1969-12-28 00:00:00,1969-12-27 23:00:00,125,163,150,0,99,99,100,123 +1969-12-28 00:00:00,1969-12-27 23:00:00,124,180,127,0,101,99,100,189 +1969-12-28 00:00:00,1969-12-27 23:00:00,122,175,159,0,99,99,99,198 +1969-12-28 00:00:00,1969-12-27 23:00:00,185,130,165,138,101,99,99,160 +1969-12-28 00:00:00,1969-12-27 23:00:00,125,151,108,0,99,101,99,114 +1969-12-28 00:00:00,1969-12-27 23:00:00,177,189,154,0,99,100,99,186 +1969-12-28 00:00:00,1969-12-27 23:00:00,195,170,110,174,100,101,101,175 +1969-12-28 00:00:00,1969-12-27 23:00:00,194,170,146,0,101,100,100,197 +1969-12-28 00:00:00,1969-12-27 23:00:00,149,151,162,173,101,100,99,127 +1969-12-28 00:00:00,1969-12-27 23:00:00,134,195,177,143,101,101,99,158 +1969-12-28 00:00:00,1969-12-27 23:00:00,181,128,117,158,100,100,101,189 +1969-12-28 00:00:00,1969-12-27 23:00:00,170,128,121,151,101,101,100,122 +1969-12-28 00:00:00,1969-12-27 23:00:00,115,191,173,135,100,99,101,108 +1969-12-28 00:00:00,1969-12-27 23:00:00,102,149,192,101,101,101,101,122 +1969-12-28 00:00:00,1969-12-27 23:00:00,144,190,158,186,100,101,100,159 +1969-12-28 00:00:00,1969-12-27 23:00:00,160,136,142,141,101,101,101,172 +1969-12-28 00:00:00,1969-12-27 23:00:00,152,196,100,200,101,101,99,144 +1969-12-28 00:00:00,1969-12-27 23:00:00,155,125,196,170,99,100,101,193 +1969-12-28 00:00:00,1969-12-27 23:00:00,147,121,129,154,101,101,101,157 +1969-12-28 00:00:00,1969-12-27 23:00:00,194,111,157,147,99,99,99,143 +1969-12-28 00:00:00,1969-12-27 23:00:00,162,188,110,158,99,100,100,178 +1969-12-28 00:00:00,1969-12-27 23:00:00,112,150,136,123,99,99,100,180 +1969-12-28 00:00:00,1969-12-27 23:00:00,153,197,114,177,101,101,101,196 +1969-12-28 00:00:00,1969-12-27 23:00:00,104,182,128,146,99,99,101,107 +1969-12-28 00:00:00,1969-12-27 23:00:00,191,129,180,179,99,99,99,103 +1969-12-28 00:00:00,1969-12-27 23:00:00,118,149,189,125,99,100,101,184 +1969-12-28 00:00:00,1969-12-27 23:00:00,147,187,168,0,101,100,99,123 +1969-12-28 00:00:00,1969-12-27 23:00:00,120,198,177,108,101,99,101,199 +1969-12-28 00:00:00,1969-12-27 23:00:00,168,187,134,0,99,99,100,118 +1969-12-28 00:00:00,1969-12-27 23:00:00,104,163,134,195,100,100,100,168 +1969-12-28 00:00:00,1969-12-27 23:00:00,183,115,164,193,101,100,99,145 +1969-12-28 00:00:00,1969-12-27 23:00:00,150,127,156,174,101,100,99,168 +1969-12-28 00:00:00,1969-12-27 23:00:00,170,102,145,170,100,99,101,192 +1969-12-28 00:00:00,1969-12-27 23:00:00,199,152,144,169,100,100,99,169 +1969-12-28 00:00:00,1969-12-27 23:00:00,179,102,116,186,101,100,100,121 +1969-12-28 00:00:00,1969-12-27 23:00:00,128,121,128,168,100,100,100,173 +1969-12-28 00:00:00,1969-12-27 23:00:00,129,175,179,107,100,101,99,108 +1969-12-28 00:00:00,1969-12-27 23:00:00,127,118,146,109,100,99,101,115 +1969-12-28 00:00:00,1969-12-27 23:00:00,146,173,185,108,100,100,101,181 +1969-12-28 00:00:00,1969-12-27 23:00:00,124,192,159,107,101,100,99,160 +1969-12-28 00:00:00,1969-12-27 23:00:00,176,106,183,0,101,101,101,190 +1969-12-28 00:00:00,1969-12-27 23:00:00,132,195,108,163,99,99,99,179 +1969-12-28 00:00:00,1969-12-27 23:00:00,153,178,124,112,101,99,99,115 +1969-12-28 00:00:00,1969-12-27 23:00:00,103,120,144,0,101,100,101,120 +1969-12-28 00:00:00,1969-12-27 23:00:00,200,195,129,177,99,101,100,171 +1969-12-28 00:00:00,1969-12-27 23:00:00,133,155,158,134,99,100,99,110 +1969-12-28 00:00:00,1969-12-27 23:00:00,180,157,181,164,99,100,99,159 +1969-12-28 00:00:00,1969-12-27 23:00:00,142,128,121,0,101,101,101,110 +1969-12-28 00:00:00,1969-12-27 23:00:00,140,177,128,160,99,100,99,115 +1969-12-28 00:00:00,1969-12-27 23:00:00,184,125,192,145,100,100,101,152 +1969-12-28 00:00:00,1969-12-27 23:00:00,142,126,153,120,101,99,101,143 +1969-12-28 00:00:00,1969-12-27 23:00:00,195,131,173,0,100,99,100,185 +1969-12-28 00:00:00,1969-12-27 23:00:00,142,164,101,158,99,101,99,169 +1969-12-28 00:00:00,1969-12-27 23:00:00,169,174,126,0,100,101,101,156 +1969-12-28 00:00:00,1969-12-27 23:00:00,146,140,175,197,101,99,99,109 +1969-12-28 00:00:00,1969-12-27 23:00:00,199,121,164,185,101,101,99,193 +1969-12-28 00:00:00,1969-12-27 23:00:00,105,121,146,120,99,99,99,110 +1969-12-28 00:00:00,1969-12-27 23:00:00,143,102,163,104,99,100,100,110 +1969-12-28 00:00:00,1969-12-27 23:00:00,151,192,197,184,101,99,99,110 +1969-12-28 00:00:00,1969-12-27 23:00:00,184,169,135,185,99,99,99,164 +1969-12-28 00:00:00,1969-12-27 23:00:00,118,115,194,116,100,100,101,110 +1969-12-28 00:00:00,1969-12-27 23:00:00,104,164,136,169,100,101,99,142 +1969-12-28 00:00:00,1969-12-27 23:00:00,113,149,169,194,99,99,101,137 +1969-12-28 00:00:00,1969-12-27 23:00:00,150,144,148,133,101,101,99,124 +1969-12-28 00:00:00,1969-12-27 23:00:00,122,139,193,132,100,100,99,190 +1969-12-28 00:00:00,1969-12-27 23:00:00,177,110,126,200,100,100,101,139 +1969-12-28 00:00:00,1969-12-27 23:00:00,123,123,156,0,100,99,101,131 +1969-12-28 00:00:00,1969-12-27 23:00:00,118,167,139,170,101,99,100,172 +1969-12-28 00:00:00,1969-12-27 23:00:00,174,183,164,114,99,99,100,160 +1969-12-28 00:00:00,1969-12-27 23:00:00,108,115,135,157,99,100,100,193 +1969-12-28 00:00:00,1969-12-27 23:00:00,160,177,124,122,101,101,99,170 +1969-12-28 00:00:00,1969-12-27 23:00:00,194,161,194,183,99,100,101,146 +1969-12-28 00:00:00,1969-12-27 23:00:00,187,101,164,190,101,101,99,148 +1969-12-28 00:00:00,1969-12-27 23:00:00,136,155,148,151,99,99,100,139 +1969-12-28 00:00:00,1969-12-27 23:00:00,100,172,148,154,99,99,99,134 +1969-12-28 00:00:00,1969-12-27 23:00:00,153,116,173,187,100,101,99,142 +1969-12-28 00:00:00,1969-12-27 23:00:00,115,190,192,124,99,101,101,109 +1969-12-28 00:00:00,1969-12-27 23:00:00,163,195,194,180,101,101,101,195 +1969-12-28 00:00:00,1969-12-27 23:00:00,153,190,100,0,101,99,101,110 +1969-12-28 00:00:00,1969-12-27 23:00:00,180,154,115,169,100,99,99,153 +1969-12-28 00:00:00,1969-12-27 23:00:00,191,132,175,138,100,99,100,172 +1969-12-28 00:00:00,1969-12-27 23:00:00,123,125,184,108,99,101,101,187 +1969-12-28 00:00:00,1969-12-27 23:00:00,199,106,133,0,101,99,100,191 +1969-12-28 00:00:00,1969-12-27 23:00:00,107,167,102,0,100,100,101,126 +1969-12-27 00:00:00,1969-12-26 23:00:00,167,127,0,111,99,101,101,115 +1969-12-27 00:00:00,1969-12-26 23:00:00,128,117,0,182,100,101,101,166 +1969-12-27 00:00:00,1969-12-26 23:00:00,107,163,0,195,101,99,100,153 +1969-12-27 00:00:00,1969-12-26 23:00:00,190,128,0,139,100,100,99,133 +1969-12-27 00:00:00,1969-12-26 23:00:00,185,125,0,163,100,99,100,133 +1969-12-27 00:00:00,1969-12-26 23:00:00,107,199,0,0,100,99,99,146 +1969-12-27 00:00:00,1969-12-26 23:00:00,131,176,132,195,99,99,101,198 +1969-12-27 00:00:00,1969-12-26 23:00:00,185,197,135,0,101,100,101,141 +1969-12-27 00:00:00,1969-12-26 23:00:00,152,127,196,170,99,100,100,146 +1969-12-27 00:00:00,1969-12-26 23:00:00,108,144,180,171,100,101,100,198 +1969-12-27 00:00:00,1969-12-26 23:00:00,184,156,129,0,100,101,101,169 +1969-12-27 00:00:00,1969-12-26 23:00:00,193,146,197,0,100,100,100,118 +1969-12-27 00:00:00,1969-12-26 23:00:00,112,121,122,149,100,100,99,155 +1969-12-27 00:00:00,1969-12-26 23:00:00,112,152,152,0,99,101,101,189 +1969-12-27 00:00:00,1969-12-26 23:00:00,124,107,189,130,100,99,99,106 +1969-12-27 00:00:00,1969-12-26 23:00:00,135,167,116,0,99,99,99,148 +1969-12-27 00:00:00,1969-12-26 23:00:00,167,181,175,111,101,101,99,180 +1969-12-27 00:00:00,1969-12-26 23:00:00,160,187,162,156,101,99,101,148 +1969-12-27 00:00:00,1969-12-26 23:00:00,100,200,124,118,99,101,101,111 +1969-12-27 00:00:00,1969-12-26 23:00:00,143,120,110,173,100,100,100,148 +1969-12-27 00:00:00,1969-12-26 23:00:00,104,187,174,0,99,101,100,145 +1969-12-27 00:00:00,1969-12-26 23:00:00,124,123,169,120,99,101,100,132 +1969-12-27 00:00:00,1969-12-26 23:00:00,133,190,184,0,100,99,101,125 +1969-12-27 00:00:00,1969-12-26 23:00:00,172,194,133,155,101,100,101,103 +1969-12-27 00:00:00,1969-12-26 23:00:00,164,136,113,139,101,99,100,190 +1969-12-27 00:00:00,1969-12-26 23:00:00,105,148,196,124,101,99,101,124 +1969-12-27 00:00:00,1969-12-26 23:00:00,116,156,139,146,99,101,99,137 +1969-12-27 00:00:00,1969-12-26 23:00:00,102,101,197,196,99,101,99,101 +1969-12-27 00:00:00,1969-12-26 23:00:00,107,198,137,106,101,101,101,195 +1969-12-27 00:00:00,1969-12-26 23:00:00,143,154,117,167,101,100,100,197 +1969-12-27 00:00:00,1969-12-26 23:00:00,138,189,143,125,99,101,99,147 +1969-12-27 00:00:00,1969-12-26 23:00:00,144,178,187,168,99,101,101,145 +1969-12-27 00:00:00,1969-12-26 23:00:00,131,191,139,192,100,101,100,199 +1969-12-27 00:00:00,1969-12-26 23:00:00,177,103,103,116,100,101,100,173 +1969-12-27 00:00:00,1969-12-26 23:00:00,144,172,109,174,100,99,101,164 +1969-12-27 00:00:00,1969-12-26 23:00:00,139,112,109,0,100,100,101,195 +1969-12-27 00:00:00,1969-12-26 23:00:00,106,187,160,103,100,99,99,145 +1969-12-27 00:00:00,1969-12-26 23:00:00,156,116,145,109,101,99,99,197 +1969-12-27 00:00:00,1969-12-26 23:00:00,101,102,194,184,101,100,100,122 +1969-12-27 00:00:00,1969-12-26 23:00:00,189,173,177,198,100,100,101,118 +1969-12-27 00:00:00,1969-12-26 23:00:00,157,141,129,0,100,99,99,194 +1969-12-27 00:00:00,1969-12-26 23:00:00,181,158,191,0,99,100,101,140 +1969-12-27 00:00:00,1969-12-26 23:00:00,115,177,194,179,101,99,100,178 +1969-12-27 00:00:00,1969-12-26 23:00:00,145,164,188,112,100,99,100,173 +1969-12-27 00:00:00,1969-12-26 23:00:00,152,161,174,151,99,100,99,105 +1969-12-27 00:00:00,1969-12-26 23:00:00,177,101,108,0,99,99,101,132 +1969-12-27 00:00:00,1969-12-26 23:00:00,171,156,178,103,100,100,101,127 +1969-12-27 00:00:00,1969-12-26 23:00:00,161,185,199,149,101,99,99,130 +1969-12-27 00:00:00,1969-12-26 23:00:00,123,135,161,0,100,99,100,151 +1969-12-27 00:00:00,1969-12-26 23:00:00,141,168,153,0,101,101,101,123 +1969-12-27 00:00:00,1969-12-26 23:00:00,118,127,142,0,100,100,99,175 +1969-12-27 00:00:00,1969-12-26 23:00:00,120,145,182,156,99,100,100,140 +1969-12-27 00:00:00,1969-12-26 23:00:00,167,176,200,0,100,99,101,177 +1969-12-27 00:00:00,1969-12-26 23:00:00,163,120,125,163,99,101,99,126 +1969-12-27 00:00:00,1969-12-26 23:00:00,140,123,167,0,101,101,100,153 +1969-12-27 00:00:00,1969-12-26 23:00:00,175,115,156,176,100,99,100,147 +1969-12-27 00:00:00,1969-12-26 23:00:00,122,200,156,155,99,99,100,181 +1969-12-27 00:00:00,1969-12-26 23:00:00,196,184,121,0,101,99,99,191 +1969-12-27 00:00:00,1969-12-26 23:00:00,177,117,111,0,99,101,100,111 +1969-12-27 00:00:00,1969-12-26 23:00:00,139,164,196,0,99,100,100,172 +1969-12-27 00:00:00,1969-12-26 23:00:00,133,140,185,163,100,101,99,101 +1969-12-27 00:00:00,1969-12-26 23:00:00,178,153,147,0,99,100,99,113 +1969-12-27 00:00:00,1969-12-26 23:00:00,110,155,137,167,99,100,101,193 +1969-12-27 00:00:00,1969-12-26 23:00:00,179,157,199,116,99,101,100,190 +1969-12-27 00:00:00,1969-12-26 23:00:00,115,135,102,110,99,101,101,126 +1969-12-27 00:00:00,1969-12-26 23:00:00,180,110,134,119,100,99,101,130 +1969-12-27 00:00:00,1969-12-26 23:00:00,102,130,166,161,100,99,99,120 +1969-12-27 00:00:00,1969-12-26 23:00:00,149,144,103,0,100,101,100,137 +1969-12-27 00:00:00,1969-12-26 23:00:00,105,153,192,113,99,99,100,144 +1969-12-27 00:00:00,1969-12-26 23:00:00,180,142,112,0,101,100,99,153 +1969-12-27 00:00:00,1969-12-26 23:00:00,127,112,156,122,101,100,99,101 +1969-12-27 00:00:00,1969-12-26 23:00:00,149,146,182,115,101,101,100,174 +1969-12-27 00:00:00,1969-12-26 23:00:00,163,126,164,124,100,99,101,106 +1969-12-27 00:00:00,1969-12-26 23:00:00,120,155,112,171,100,100,101,189 +1969-12-27 00:00:00,1969-12-26 23:00:00,118,141,123,169,99,99,101,170 +1969-12-27 00:00:00,1969-12-26 23:00:00,156,197,188,0,101,100,100,107 +1969-12-27 00:00:00,1969-12-26 23:00:00,190,125,200,189,100,99,99,199 +1969-12-27 00:00:00,1969-12-26 23:00:00,132,161,148,124,101,100,100,144 +1969-12-27 00:00:00,1969-12-26 23:00:00,190,176,184,190,101,99,99,128 +1969-12-27 00:00:00,1969-12-26 23:00:00,108,155,177,146,99,99,101,122 +1969-12-27 00:00:00,1969-12-26 23:00:00,184,102,140,0,100,99,99,185 +1969-12-27 00:00:00,1969-12-26 23:00:00,105,169,150,151,101,100,99,152 +1969-12-27 00:00:00,1969-12-26 23:00:00,179,190,193,193,101,101,101,166 +1969-12-27 00:00:00,1969-12-26 23:00:00,197,198,167,140,101,100,99,172 +1969-12-27 00:00:00,1969-12-26 23:00:00,113,187,109,0,100,101,101,173 +1969-12-27 00:00:00,1969-12-26 23:00:00,192,115,114,0,101,100,101,131 +1969-12-27 00:00:00,1969-12-26 23:00:00,106,160,165,189,99,99,100,122 +1969-12-27 00:00:00,1969-12-26 23:00:00,176,165,166,195,100,100,100,138 +1969-12-27 00:00:00,1969-12-26 23:00:00,168,192,127,0,101,100,100,188 +1969-12-27 00:00:00,1969-12-26 23:00:00,145,167,200,139,101,101,100,172 +1969-12-27 00:00:00,1969-12-26 23:00:00,123,193,127,0,99,101,100,102 +1969-12-27 00:00:00,1969-12-26 23:00:00,133,181,123,115,101,100,101,162 +1969-12-27 00:00:00,1969-12-26 23:00:00,104,191,176,166,100,99,101,119 +1969-12-27 00:00:00,1969-12-26 23:00:00,127,141,164,115,100,101,99,179 +1969-12-27 00:00:00,1969-12-26 23:00:00,120,192,180,144,99,99,101,178 +1969-12-27 00:00:00,1969-12-26 23:00:00,117,103,139,127,99,100,101,159 +1969-12-27 00:00:00,1969-12-26 23:00:00,182,197,103,198,99,101,101,102 +1969-12-27 00:00:00,1969-12-26 23:00:00,106,134,151,132,100,100,100,170 +1969-12-27 00:00:00,1969-12-26 23:00:00,179,198,163,137,100,100,99,127 +1969-12-27 00:00:00,1969-12-26 23:00:00,184,102,131,190,99,100,100,148 +1969-12-27 00:00:00,1969-12-26 23:00:00,127,174,157,178,101,101,100,131 +1969-12-27 00:00:00,1969-12-26 23:00:00,123,187,182,0,100,101,101,136 +1969-12-27 00:00:00,1969-12-26 23:00:00,157,176,105,187,100,99,100,168 +1969-12-27 00:00:00,1969-12-26 23:00:00,183,161,159,158,100,101,101,142 +1969-12-27 00:00:00,1969-12-26 23:00:00,200,179,114,104,101,99,99,100 +1969-12-27 00:00:00,1969-12-26 23:00:00,174,115,135,109,100,101,101,199 +1969-12-27 00:00:00,1969-12-26 23:00:00,169,198,163,180,101,100,100,193 +1969-12-27 00:00:00,1969-12-26 23:00:00,191,174,121,0,99,99,99,182 +1969-12-27 00:00:00,1969-12-26 23:00:00,169,133,133,0,100,101,101,154 +1969-12-27 00:00:00,1969-12-26 23:00:00,134,147,159,183,100,100,100,120 +1969-12-27 00:00:00,1969-12-26 23:00:00,172,108,196,146,100,101,100,117 +1969-12-27 00:00:00,1969-12-26 23:00:00,192,167,177,137,101,100,100,128 +1969-12-27 00:00:00,1969-12-26 23:00:00,192,157,145,197,100,100,101,196 +1969-12-27 00:00:00,1969-12-26 23:00:00,171,134,163,142,99,101,101,117 +1969-12-27 00:00:00,1969-12-26 23:00:00,134,148,123,0,100,100,101,160 +1969-12-27 00:00:00,1969-12-26 23:00:00,104,106,180,126,99,99,101,195 +1969-12-27 00:00:00,1969-12-26 23:00:00,129,123,160,123,99,99,101,160 +1969-12-27 00:00:00,1969-12-26 23:00:00,142,143,197,190,99,99,100,170 +1969-12-27 00:00:00,1969-12-26 23:00:00,121,163,151,190,100,101,100,200 +1969-12-27 00:00:00,1969-12-26 23:00:00,173,181,174,111,100,99,100,106 +1969-12-27 00:00:00,1969-12-26 23:00:00,176,154,127,157,100,100,99,162 +1969-12-27 00:00:00,1969-12-26 23:00:00,164,117,186,175,99,100,100,159 +1969-12-27 00:00:00,1969-12-26 23:00:00,108,130,181,105,101,100,99,118 +1969-12-27 00:00:00,1969-12-26 23:00:00,153,135,187,0,101,100,99,128 +1969-12-27 00:00:00,1969-12-26 23:00:00,168,176,148,173,100,101,101,152 +1969-12-27 00:00:00,1969-12-26 23:00:00,109,144,176,200,99,100,101,139 +1969-12-27 00:00:00,1969-12-26 23:00:00,121,124,200,115,101,99,101,114 +1969-12-27 00:00:00,1969-12-26 23:00:00,182,192,114,154,101,99,101,155 +1969-12-27 00:00:00,1969-12-26 23:00:00,182,139,186,151,99,101,99,196 +1969-12-27 00:00:00,1969-12-26 23:00:00,178,186,127,0,99,99,100,173 +1969-12-27 00:00:00,1969-12-26 23:00:00,199,157,190,157,101,99,101,199 +1969-12-27 00:00:00,1969-12-26 23:00:00,191,131,132,200,100,99,101,101 +1969-12-27 00:00:00,1969-12-26 23:00:00,136,123,178,148,99,99,99,131 +1969-12-27 00:00:00,1969-12-26 23:00:00,133,196,176,137,99,99,101,192 +1969-12-27 00:00:00,1969-12-26 23:00:00,127,105,141,149,101,101,99,115 +1969-12-27 00:00:00,1969-12-26 23:00:00,181,191,115,0,99,99,99,104 +1969-12-27 00:00:00,1969-12-26 23:00:00,130,187,169,0,101,101,100,177 +1969-12-27 00:00:00,1969-12-26 23:00:00,108,177,125,136,101,99,99,196 +1969-12-27 00:00:00,1969-12-26 23:00:00,124,195,148,106,101,99,99,107 +1969-12-27 00:00:00,1969-12-26 23:00:00,164,120,143,178,99,99,99,182 +1969-12-27 00:00:00,1969-12-26 23:00:00,120,153,122,130,99,99,100,163 +1969-12-27 00:00:00,1969-12-26 23:00:00,200,189,141,130,100,99,100,167 +1969-12-27 00:00:00,1969-12-26 23:00:00,187,156,164,165,100,100,99,120 +1969-12-27 00:00:00,1969-12-26 23:00:00,171,156,137,177,99,100,100,105 +1969-12-27 00:00:00,1969-12-26 23:00:00,155,155,124,200,100,100,99,103 +1969-12-27 00:00:00,1969-12-26 23:00:00,198,112,114,185,99,101,101,177 +1969-12-27 00:00:00,1969-12-26 23:00:00,116,111,135,115,99,101,99,173 +1969-12-27 00:00:00,1969-12-26 23:00:00,165,125,173,0,99,100,99,184 +1969-12-27 00:00:00,1969-12-26 23:00:00,129,115,141,104,100,99,99,167 +1969-12-27 00:00:00,1969-12-26 23:00:00,134,180,195,199,99,99,101,184 +1969-12-27 00:00:00,1969-12-26 23:00:00,114,185,120,0,99,100,101,159 +1969-12-27 00:00:00,1969-12-26 23:00:00,198,129,144,136,100,99,100,178 +1969-12-27 00:00:00,1969-12-26 23:00:00,157,185,135,0,99,101,100,113 +1969-12-27 00:00:00,1969-12-26 23:00:00,162,181,115,189,99,100,100,119 +1969-12-27 00:00:00,1969-12-26 23:00:00,164,120,144,0,100,100,99,171 +1969-12-27 00:00:00,1969-12-26 23:00:00,130,143,155,105,101,99,100,180 +1969-12-27 00:00:00,1969-12-26 23:00:00,181,144,113,133,101,101,101,162 +1969-12-27 00:00:00,1969-12-26 23:00:00,153,158,134,165,100,100,101,176 +1969-12-27 00:00:00,1969-12-26 23:00:00,178,106,151,116,100,101,99,137 +1969-12-27 00:00:00,1969-12-26 23:00:00,146,176,127,103,101,99,101,136 +1969-12-27 00:00:00,1969-12-26 23:00:00,186,168,165,132,99,99,99,194 +1969-12-27 00:00:00,1969-12-26 23:00:00,102,163,104,0,101,101,99,153 +1969-12-27 00:00:00,1969-12-26 23:00:00,115,193,174,149,99,99,101,148 +1969-12-27 00:00:00,1969-12-26 23:00:00,134,141,180,179,100,99,101,117 +1969-12-27 00:00:00,1969-12-26 23:00:00,137,126,112,199,101,101,99,170 +1969-12-27 00:00:00,1969-12-26 23:00:00,155,133,142,182,101,99,101,150 +1969-12-27 00:00:00,1969-12-26 23:00:00,123,147,108,0,100,99,99,118 +1969-12-27 00:00:00,1969-12-26 23:00:00,159,160,139,0,100,100,99,121 +1969-12-27 00:00:00,1969-12-26 23:00:00,121,114,113,107,101,99,99,115 +1969-12-27 00:00:00,1969-12-26 23:00:00,174,117,188,0,100,99,99,100 +1969-12-27 00:00:00,1969-12-26 23:00:00,101,175,114,172,100,100,100,190 +1969-12-27 00:00:00,1969-12-26 23:00:00,165,141,133,193,101,99,100,135 +1969-12-27 00:00:00,1969-12-26 23:00:00,160,165,194,160,99,99,100,156 +1969-12-27 00:00:00,1969-12-26 23:00:00,182,150,159,161,99,101,99,180 +1969-12-27 00:00:00,1969-12-26 23:00:00,154,157,165,143,99,100,100,169 +1969-12-27 00:00:00,1969-12-26 23:00:00,124,196,151,109,100,101,101,139 +1969-12-27 00:00:00,1969-12-26 23:00:00,151,119,123,0,100,101,100,175 +1969-12-27 00:00:00,1969-12-26 23:00:00,126,192,160,133,100,100,101,118 +1969-12-27 00:00:00,1969-12-26 23:00:00,194,103,175,184,100,99,99,185 +1969-12-27 00:00:00,1969-12-26 23:00:00,153,194,140,157,101,100,100,159 +1969-12-27 00:00:00,1969-12-26 23:00:00,168,151,192,113,99,100,99,169 +1969-12-27 00:00:00,1969-12-26 23:00:00,180,120,118,112,99,101,99,117 +1969-12-27 00:00:00,1969-12-26 23:00:00,110,109,129,192,101,99,99,143 +1969-12-27 00:00:00,1969-12-26 23:00:00,190,157,164,130,101,101,101,147 +1969-12-27 00:00:00,1969-12-26 23:00:00,104,119,156,184,99,101,101,138 +1969-12-27 00:00:00,1969-12-26 23:00:00,101,169,162,0,99,100,100,196 +1969-12-27 00:00:00,1969-12-26 23:00:00,149,191,181,173,99,101,101,195 +1969-12-27 00:00:00,1969-12-26 23:00:00,170,122,144,0,100,100,99,198 +1969-12-27 00:00:00,1969-12-26 23:00:00,176,154,136,163,101,101,99,151 +1969-12-27 00:00:00,1969-12-26 23:00:00,164,107,126,163,101,101,100,112 +1969-12-27 00:00:00,1969-12-26 23:00:00,156,197,133,146,99,101,99,188 +1969-12-27 00:00:00,1969-12-26 23:00:00,132,146,164,111,100,99,99,159 +1969-12-27 00:00:00,1969-12-26 23:00:00,135,108,147,157,99,101,99,122 +1969-12-27 00:00:00,1969-12-26 23:00:00,118,152,133,166,100,100,101,156 +1969-12-27 00:00:00,1969-12-26 23:00:00,148,124,118,195,101,100,99,193 +1969-12-27 00:00:00,1969-12-26 23:00:00,135,162,138,130,101,101,101,119 +1969-12-27 00:00:00,1969-12-26 23:00:00,159,173,154,108,99,99,99,128 +1969-12-27 00:00:00,1969-12-26 23:00:00,136,127,197,139,99,100,101,144 +1969-12-27 00:00:00,1969-12-26 23:00:00,144,179,119,190,101,101,100,153 +1969-12-27 00:00:00,1969-12-26 23:00:00,175,133,153,131,99,101,100,194 +1969-12-26 00:00:00,1969-12-25 23:00:00,114,125,0,0,99,100,101,112 +1969-12-26 00:00:00,1969-12-25 23:00:00,131,143,0,170,99,100,100,144 +1969-12-26 00:00:00,1969-12-25 23:00:00,179,169,0,0,101,100,100,104 +1969-12-26 00:00:00,1969-12-25 23:00:00,162,109,0,0,101,100,100,145 +1969-12-26 00:00:00,1969-12-25 23:00:00,133,107,0,185,100,100,99,198 +1969-12-26 00:00:00,1969-12-25 23:00:00,137,168,0,158,101,99,101,125 +1969-12-26 00:00:00,1969-12-25 23:00:00,179,150,131,183,101,100,99,151 +1969-12-26 00:00:00,1969-12-25 23:00:00,119,157,188,123,99,100,100,194 +1969-12-26 00:00:00,1969-12-25 23:00:00,174,178,109,0,101,100,100,111 +1969-12-26 00:00:00,1969-12-25 23:00:00,164,185,173,130,101,99,99,156 +1969-12-26 00:00:00,1969-12-25 23:00:00,181,135,113,0,101,101,100,125 +1969-12-26 00:00:00,1969-12-25 23:00:00,125,199,173,0,100,99,101,152 +1969-12-26 00:00:00,1969-12-25 23:00:00,122,119,153,163,101,101,100,101 +1969-12-26 00:00:00,1969-12-25 23:00:00,172,103,115,188,99,101,99,149 +1969-12-26 00:00:00,1969-12-25 23:00:00,199,183,131,154,99,99,100,122 +1969-12-26 00:00:00,1969-12-25 23:00:00,197,138,180,173,99,101,99,146 +1969-12-26 00:00:00,1969-12-25 23:00:00,106,179,100,164,99,99,100,167 +1969-12-26 00:00:00,1969-12-25 23:00:00,194,154,121,142,99,99,99,129 +1969-12-26 00:00:00,1969-12-25 23:00:00,121,112,186,145,100,100,101,125 +1969-12-26 00:00:00,1969-12-25 23:00:00,116,200,160,105,101,101,100,106 +1969-12-26 00:00:00,1969-12-25 23:00:00,197,157,112,142,101,101,101,198 +1969-12-26 00:00:00,1969-12-25 23:00:00,117,122,126,160,99,99,101,103 +1969-12-26 00:00:00,1969-12-25 23:00:00,176,146,107,169,99,101,100,113 +1969-12-26 00:00:00,1969-12-25 23:00:00,187,101,115,177,100,100,101,112 +1969-12-26 00:00:00,1969-12-25 23:00:00,174,170,198,172,100,99,101,127 +1969-12-26 00:00:00,1969-12-25 23:00:00,159,120,115,182,101,100,99,166 +1969-12-26 00:00:00,1969-12-25 23:00:00,117,178,145,176,100,100,99,149 +1969-12-26 00:00:00,1969-12-25 23:00:00,197,136,114,194,101,99,99,198 +1969-12-26 00:00:00,1969-12-25 23:00:00,157,195,142,120,99,100,100,107 +1969-12-26 00:00:00,1969-12-25 23:00:00,183,121,156,114,99,100,101,182 +1969-12-26 00:00:00,1969-12-25 23:00:00,185,161,108,164,100,101,100,109 +1969-12-26 00:00:00,1969-12-25 23:00:00,127,134,111,104,100,99,99,151 +1969-12-26 00:00:00,1969-12-25 23:00:00,198,169,164,181,101,99,101,188 +1969-12-26 00:00:00,1969-12-25 23:00:00,148,185,129,101,100,100,101,148 +1969-12-26 00:00:00,1969-12-25 23:00:00,108,147,147,148,99,100,101,107 +1969-12-26 00:00:00,1969-12-25 23:00:00,121,158,163,0,99,100,99,164 +1969-12-26 00:00:00,1969-12-25 23:00:00,112,144,120,199,101,100,100,113 +1969-12-26 00:00:00,1969-12-25 23:00:00,166,135,160,137,100,99,101,122 +1969-12-26 00:00:00,1969-12-25 23:00:00,156,142,100,103,101,99,100,107 +1969-12-26 00:00:00,1969-12-25 23:00:00,177,124,149,0,99,99,99,109 +1969-12-26 00:00:00,1969-12-25 23:00:00,162,154,146,0,99,99,101,181 +1969-12-26 00:00:00,1969-12-25 23:00:00,106,181,158,189,100,99,99,119 +1969-12-26 00:00:00,1969-12-25 23:00:00,110,118,116,155,100,99,100,110 +1969-12-26 00:00:00,1969-12-25 23:00:00,122,139,118,156,101,99,101,102 +1969-12-26 00:00:00,1969-12-25 23:00:00,187,132,200,0,99,101,99,122 +1969-12-26 00:00:00,1969-12-25 23:00:00,117,188,135,112,100,100,101,151 +1969-12-26 00:00:00,1969-12-25 23:00:00,193,178,192,154,100,99,100,101 +1969-12-26 00:00:00,1969-12-25 23:00:00,126,188,142,174,100,100,99,192 +1969-12-26 00:00:00,1969-12-25 23:00:00,143,137,150,0,99,101,101,143 +1969-12-26 00:00:00,1969-12-25 23:00:00,188,115,139,112,99,101,101,119 +1969-12-26 00:00:00,1969-12-25 23:00:00,159,146,148,156,99,99,101,177 +1969-12-26 00:00:00,1969-12-25 23:00:00,200,145,168,185,101,99,99,126 +1969-12-26 00:00:00,1969-12-25 23:00:00,125,180,144,107,100,100,101,189 +1969-12-26 00:00:00,1969-12-25 23:00:00,150,135,187,199,99,99,100,178 +1969-12-26 00:00:00,1969-12-25 23:00:00,109,125,191,151,100,101,100,162 +1969-12-26 00:00:00,1969-12-25 23:00:00,109,138,116,176,100,99,99,161 +1969-12-26 00:00:00,1969-12-25 23:00:00,108,140,160,116,100,101,101,149 +1969-12-26 00:00:00,1969-12-25 23:00:00,177,125,133,144,101,99,100,193 +1969-12-26 00:00:00,1969-12-25 23:00:00,110,103,140,0,99,101,99,103 +1969-12-26 00:00:00,1969-12-25 23:00:00,113,142,192,114,100,99,100,109 +1969-12-26 00:00:00,1969-12-25 23:00:00,180,142,144,115,99,99,100,121 +1969-12-26 00:00:00,1969-12-25 23:00:00,123,173,189,135,99,101,101,121 +1969-12-26 00:00:00,1969-12-25 23:00:00,115,153,142,0,100,99,100,100 +1969-12-26 00:00:00,1969-12-25 23:00:00,157,133,111,146,99,100,99,128 +1969-12-26 00:00:00,1969-12-25 23:00:00,166,183,183,143,100,99,101,156 +1969-12-26 00:00:00,1969-12-25 23:00:00,141,195,164,0,101,101,99,194 +1969-12-26 00:00:00,1969-12-25 23:00:00,102,187,188,188,99,101,99,163 +1969-12-26 00:00:00,1969-12-25 23:00:00,190,110,101,115,100,99,99,104 +1969-12-26 00:00:00,1969-12-25 23:00:00,149,144,128,179,99,99,101,109 +1969-12-26 00:00:00,1969-12-25 23:00:00,141,176,142,151,99,101,99,197 +1969-12-26 00:00:00,1969-12-25 23:00:00,168,136,136,162,101,99,101,140 +1969-12-26 00:00:00,1969-12-25 23:00:00,140,167,184,194,101,99,101,145 +1969-12-26 00:00:00,1969-12-25 23:00:00,109,155,159,102,99,100,100,152 +1969-12-26 00:00:00,1969-12-25 23:00:00,110,148,148,171,100,99,101,134 +1969-12-26 00:00:00,1969-12-25 23:00:00,194,127,117,137,101,99,101,131 +1969-12-26 00:00:00,1969-12-25 23:00:00,169,166,184,176,99,100,99,195 +1969-12-26 00:00:00,1969-12-25 23:00:00,102,189,101,0,100,100,99,152 +1969-12-26 00:00:00,1969-12-25 23:00:00,188,159,110,134,100,101,100,165 +1969-12-26 00:00:00,1969-12-25 23:00:00,180,174,150,120,99,100,100,161 +1969-12-26 00:00:00,1969-12-25 23:00:00,112,146,102,199,99,100,101,117 +1969-12-26 00:00:00,1969-12-25 23:00:00,150,177,116,120,101,100,100,124 +1969-12-26 00:00:00,1969-12-25 23:00:00,178,165,128,0,101,100,99,105 +1969-12-26 00:00:00,1969-12-25 23:00:00,160,197,180,190,101,101,100,127 +1969-12-26 00:00:00,1969-12-25 23:00:00,112,120,103,123,100,99,101,144 +1969-12-26 00:00:00,1969-12-25 23:00:00,158,130,157,150,101,101,100,152 +1969-12-26 00:00:00,1969-12-25 23:00:00,177,151,117,110,101,99,99,166 +1969-12-26 00:00:00,1969-12-25 23:00:00,182,107,118,100,100,101,101,109 +1969-12-26 00:00:00,1969-12-25 23:00:00,154,120,187,130,99,100,99,176 +1969-12-26 00:00:00,1969-12-25 23:00:00,147,177,125,0,101,99,101,103 +1969-12-26 00:00:00,1969-12-25 23:00:00,198,134,150,188,99,99,101,193 +1969-12-26 00:00:00,1969-12-25 23:00:00,164,190,184,174,99,99,99,115 +1969-12-26 00:00:00,1969-12-25 23:00:00,133,173,176,112,101,100,100,145 +1969-12-26 00:00:00,1969-12-25 23:00:00,188,149,147,191,99,99,99,110 +1969-12-26 00:00:00,1969-12-25 23:00:00,150,120,169,186,99,101,101,184 +1969-12-26 00:00:00,1969-12-25 23:00:00,129,113,189,131,100,101,101,145 +1969-12-26 00:00:00,1969-12-25 23:00:00,117,198,197,0,101,101,99,108 +1969-12-26 00:00:00,1969-12-25 23:00:00,175,159,178,143,99,100,100,170 +1969-12-26 00:00:00,1969-12-25 23:00:00,199,102,164,177,101,101,100,130 +1969-12-26 00:00:00,1969-12-25 23:00:00,146,171,166,117,101,100,101,137 +1969-12-26 00:00:00,1969-12-25 23:00:00,182,113,155,195,99,101,101,164 +1969-12-26 00:00:00,1969-12-25 23:00:00,188,108,129,195,101,100,99,142 +1969-12-26 00:00:00,1969-12-25 23:00:00,129,145,159,116,100,100,100,118 +1969-12-26 00:00:00,1969-12-25 23:00:00,125,150,156,199,101,101,101,184 +1969-12-26 00:00:00,1969-12-25 23:00:00,102,145,140,104,101,101,100,194 +1969-12-26 00:00:00,1969-12-25 23:00:00,190,112,174,174,100,100,100,153 +1969-12-26 00:00:00,1969-12-25 23:00:00,101,114,109,101,101,100,99,169 +1969-12-26 00:00:00,1969-12-25 23:00:00,108,173,194,149,101,100,101,139 +1969-12-26 00:00:00,1969-12-25 23:00:00,100,118,193,0,101,100,99,135 +1969-12-26 00:00:00,1969-12-25 23:00:00,180,130,191,102,101,99,99,147 +1969-12-26 00:00:00,1969-12-25 23:00:00,149,175,183,118,100,101,100,127 +1969-12-26 00:00:00,1969-12-25 23:00:00,186,110,163,114,100,100,100,111 +1969-12-26 00:00:00,1969-12-25 23:00:00,195,133,166,112,100,100,101,110 +1969-12-26 00:00:00,1969-12-25 23:00:00,191,145,193,0,100,99,100,139 +1969-12-26 00:00:00,1969-12-25 23:00:00,132,177,104,0,99,101,101,114 +1969-12-26 00:00:00,1969-12-25 23:00:00,105,157,179,133,100,100,101,146 +1969-12-26 00:00:00,1969-12-25 23:00:00,188,178,155,0,100,100,101,159 +1969-12-26 00:00:00,1969-12-25 23:00:00,169,111,184,155,101,101,101,100 +1969-12-26 00:00:00,1969-12-25 23:00:00,119,131,131,0,100,99,99,161 +1969-12-26 00:00:00,1969-12-25 23:00:00,172,199,146,169,99,101,99,117 +1969-12-26 00:00:00,1969-12-25 23:00:00,101,159,181,157,101,100,101,184 +1969-12-26 00:00:00,1969-12-25 23:00:00,116,109,186,0,100,100,101,104 +1969-12-26 00:00:00,1969-12-25 23:00:00,120,149,145,102,101,101,99,158 +1969-12-26 00:00:00,1969-12-25 23:00:00,139,184,170,126,101,100,101,143 +1969-12-26 00:00:00,1969-12-25 23:00:00,124,176,169,105,100,100,101,117 +1969-12-26 00:00:00,1969-12-25 23:00:00,200,132,196,114,101,100,100,168 +1969-12-26 00:00:00,1969-12-25 23:00:00,139,191,119,118,99,101,99,122 +1969-12-26 00:00:00,1969-12-25 23:00:00,121,124,142,127,99,101,100,145 +1969-12-26 00:00:00,1969-12-25 23:00:00,185,146,176,175,99,100,99,165 +1969-12-26 00:00:00,1969-12-25 23:00:00,195,105,193,195,99,100,99,126 +1969-12-26 00:00:00,1969-12-25 23:00:00,173,111,114,165,101,101,99,128 +1969-12-26 00:00:00,1969-12-25 23:00:00,122,138,192,166,101,101,99,128 +1969-12-26 00:00:00,1969-12-25 23:00:00,155,196,170,200,99,99,99,165 +1969-12-26 00:00:00,1969-12-25 23:00:00,164,122,185,186,101,101,99,187 +1969-12-26 00:00:00,1969-12-25 23:00:00,118,101,134,104,101,99,100,139 +1969-12-26 00:00:00,1969-12-25 23:00:00,162,136,132,155,101,101,101,154 +1969-12-26 00:00:00,1969-12-25 23:00:00,170,128,177,173,99,100,101,162 +1969-12-26 00:00:00,1969-12-25 23:00:00,115,190,124,133,101,101,99,200 +1969-12-26 00:00:00,1969-12-25 23:00:00,193,139,199,190,100,100,99,127 +1969-12-26 00:00:00,1969-12-25 23:00:00,133,187,121,0,101,99,101,175 +1969-12-26 00:00:00,1969-12-25 23:00:00,125,153,161,0,99,99,100,173 +1969-12-26 00:00:00,1969-12-25 23:00:00,102,132,191,148,99,100,99,146 +1969-12-26 00:00:00,1969-12-25 23:00:00,160,121,142,0,100,101,100,133 +1969-12-26 00:00:00,1969-12-25 23:00:00,198,158,184,109,100,100,101,121 +1969-12-26 00:00:00,1969-12-25 23:00:00,198,144,163,187,99,100,100,153 +1969-12-26 00:00:00,1969-12-25 23:00:00,131,122,103,0,99,100,100,145 +1969-12-26 00:00:00,1969-12-25 23:00:00,118,199,107,179,101,99,100,162 +1969-12-26 00:00:00,1969-12-25 23:00:00,175,199,106,110,100,101,101,177 +1969-12-26 00:00:00,1969-12-25 23:00:00,198,127,172,0,101,99,101,121 +1969-12-26 00:00:00,1969-12-25 23:00:00,120,195,192,110,100,99,100,132 +1969-12-26 00:00:00,1969-12-25 23:00:00,119,117,130,0,101,101,99,147 +1969-12-26 00:00:00,1969-12-25 23:00:00,180,179,121,173,99,100,99,106 +1969-12-26 00:00:00,1969-12-25 23:00:00,144,127,124,0,101,99,100,143 +1969-12-26 00:00:00,1969-12-25 23:00:00,184,151,129,107,99,99,101,198 +1969-12-26 00:00:00,1969-12-25 23:00:00,189,197,140,104,101,101,99,173 +1969-12-26 00:00:00,1969-12-25 23:00:00,100,109,100,200,100,101,100,187 +1969-12-26 00:00:00,1969-12-25 23:00:00,184,197,196,168,101,99,100,118 +1969-12-26 00:00:00,1969-12-25 23:00:00,140,122,172,0,101,100,101,156 +1969-12-26 00:00:00,1969-12-25 23:00:00,126,133,120,0,99,99,100,163 +1969-12-26 00:00:00,1969-12-25 23:00:00,198,104,131,0,101,100,99,160 +1969-12-26 00:00:00,1969-12-25 23:00:00,101,191,160,152,100,101,100,144 +1969-12-26 00:00:00,1969-12-25 23:00:00,173,147,163,100,100,101,101,130 +1969-12-26 00:00:00,1969-12-25 23:00:00,121,112,146,154,99,99,101,131 +1969-12-26 00:00:00,1969-12-25 23:00:00,156,131,185,108,99,101,100,155 +1969-12-26 00:00:00,1969-12-25 23:00:00,119,149,181,105,100,99,100,199 +1969-12-26 00:00:00,1969-12-25 23:00:00,124,114,107,154,101,99,101,141 +1969-12-26 00:00:00,1969-12-25 23:00:00,195,139,132,136,101,100,101,134 +1969-12-26 00:00:00,1969-12-25 23:00:00,184,144,184,0,101,101,101,183 +1969-12-26 00:00:00,1969-12-25 23:00:00,195,124,156,154,100,100,101,129 +1969-12-26 00:00:00,1969-12-25 23:00:00,113,171,175,115,99,100,99,150 +1969-12-26 00:00:00,1969-12-25 23:00:00,147,154,144,138,101,100,100,105 +1969-12-26 00:00:00,1969-12-25 23:00:00,174,119,200,101,99,99,99,190 +1969-12-26 00:00:00,1969-12-25 23:00:00,185,191,162,0,101,101,101,192 +1969-12-26 00:00:00,1969-12-25 23:00:00,181,127,104,105,100,99,100,118 +1969-12-26 00:00:00,1969-12-25 23:00:00,137,139,199,158,100,99,100,159 +1969-12-26 00:00:00,1969-12-25 23:00:00,102,192,132,168,100,100,101,181 +1969-12-26 00:00:00,1969-12-25 23:00:00,194,122,132,132,100,99,99,151 +1969-12-26 00:00:00,1969-12-25 23:00:00,103,175,197,100,100,101,99,111 +1969-12-26 00:00:00,1969-12-25 23:00:00,124,126,132,100,101,100,100,135 +1969-12-26 00:00:00,1969-12-25 23:00:00,171,197,131,172,99,101,101,160 +1969-12-26 00:00:00,1969-12-25 23:00:00,132,192,157,199,100,100,101,122 +1969-12-26 00:00:00,1969-12-25 23:00:00,155,189,157,0,101,99,99,179 +1969-12-26 00:00:00,1969-12-25 23:00:00,106,167,173,169,101,100,99,146 +1969-12-26 00:00:00,1969-12-25 23:00:00,161,109,192,128,100,99,100,111 +1969-12-26 00:00:00,1969-12-25 23:00:00,108,105,200,147,101,101,101,168 +1969-12-26 00:00:00,1969-12-25 23:00:00,122,165,170,118,100,101,99,152 +1969-12-26 00:00:00,1969-12-25 23:00:00,185,144,150,152,100,100,101,137 +1969-12-26 00:00:00,1969-12-25 23:00:00,187,103,172,169,99,99,101,193 +1969-12-26 00:00:00,1969-12-25 23:00:00,123,155,152,0,101,99,101,164 +1969-12-26 00:00:00,1969-12-25 23:00:00,127,133,138,0,101,99,99,145 +1969-12-26 00:00:00,1969-12-25 23:00:00,108,136,146,190,99,99,99,176 +1969-12-26 00:00:00,1969-12-25 23:00:00,103,186,146,123,100,99,99,101 +1969-12-26 00:00:00,1969-12-25 23:00:00,158,107,113,193,99,99,101,157 +1969-12-26 00:00:00,1969-12-25 23:00:00,164,103,195,161,99,101,99,104 +1969-12-26 00:00:00,1969-12-25 23:00:00,177,106,199,123,99,99,99,161 +1969-12-26 00:00:00,1969-12-25 23:00:00,127,106,155,132,100,99,100,197 +1969-12-26 00:00:00,1969-12-25 23:00:00,119,172,174,0,99,101,101,137 +1969-12-26 00:00:00,1969-12-25 23:00:00,169,114,112,110,99,101,100,154 +1969-12-26 00:00:00,1969-12-25 23:00:00,132,100,159,0,99,101,100,113 +1969-12-26 00:00:00,1969-12-25 23:00:00,142,168,147,127,99,101,100,136 +1969-12-26 00:00:00,1969-12-25 23:00:00,111,172,132,152,101,101,99,125 +1969-12-25 00:00:00,1969-12-24 23:00:00,104,113,0,0,99,101,99,106 +1969-12-25 00:00:00,1969-12-24 23:00:00,167,153,0,176,101,101,99,130 +1969-12-25 00:00:00,1969-12-24 23:00:00,152,126,0,158,99,99,101,198 +1969-12-25 00:00:00,1969-12-24 23:00:00,152,200,0,0,100,99,99,129 +1969-12-25 00:00:00,1969-12-24 23:00:00,143,173,0,155,100,99,101,126 +1969-12-25 00:00:00,1969-12-24 23:00:00,173,178,0,180,101,100,100,101 +1969-12-25 00:00:00,1969-12-24 23:00:00,181,168,102,0,101,99,101,142 +1969-12-25 00:00:00,1969-12-24 23:00:00,183,122,147,140,100,101,100,158 +1969-12-25 00:00:00,1969-12-24 23:00:00,176,176,112,161,99,100,101,166 +1969-12-25 00:00:00,1969-12-24 23:00:00,190,103,122,187,100,99,100,109 +1969-12-25 00:00:00,1969-12-24 23:00:00,199,174,167,158,100,100,99,199 +1969-12-25 00:00:00,1969-12-24 23:00:00,119,143,155,131,100,99,99,134 +1969-12-25 00:00:00,1969-12-24 23:00:00,119,149,161,136,101,101,101,156 +1969-12-25 00:00:00,1969-12-24 23:00:00,113,197,109,103,100,100,100,130 +1969-12-25 00:00:00,1969-12-24 23:00:00,102,192,164,146,101,99,100,128 +1969-12-25 00:00:00,1969-12-24 23:00:00,105,140,146,164,99,101,100,124 +1969-12-25 00:00:00,1969-12-24 23:00:00,164,116,147,125,100,100,101,161 +1969-12-25 00:00:00,1969-12-24 23:00:00,147,114,100,147,100,99,100,178 +1969-12-25 00:00:00,1969-12-24 23:00:00,121,116,149,139,99,99,101,118 +1969-12-25 00:00:00,1969-12-24 23:00:00,122,182,111,154,99,100,100,185 +1969-12-25 00:00:00,1969-12-24 23:00:00,178,158,178,120,100,99,99,129 +1969-12-25 00:00:00,1969-12-24 23:00:00,163,180,117,141,99,100,99,199 +1969-12-25 00:00:00,1969-12-24 23:00:00,189,120,118,103,100,100,100,128 +1969-12-25 00:00:00,1969-12-24 23:00:00,178,135,135,158,99,101,99,149 +1969-12-25 00:00:00,1969-12-24 23:00:00,114,164,152,174,100,100,101,121 +1969-12-25 00:00:00,1969-12-24 23:00:00,162,116,144,172,101,100,101,170 +1969-12-25 00:00:00,1969-12-24 23:00:00,148,100,110,160,100,101,101,146 +1969-12-25 00:00:00,1969-12-24 23:00:00,155,119,120,115,101,100,99,137 +1969-12-25 00:00:00,1969-12-24 23:00:00,154,163,133,115,101,101,99,140 +1969-12-25 00:00:00,1969-12-24 23:00:00,103,143,167,169,101,99,100,151 +1969-12-25 00:00:00,1969-12-24 23:00:00,120,112,183,179,100,99,100,172 +1969-12-25 00:00:00,1969-12-24 23:00:00,144,163,147,111,101,99,101,150 +1969-12-25 00:00:00,1969-12-24 23:00:00,128,154,177,102,100,100,100,182 +1969-12-25 00:00:00,1969-12-24 23:00:00,172,178,125,155,99,100,101,125 +1969-12-25 00:00:00,1969-12-24 23:00:00,118,194,181,112,100,100,101,200 +1969-12-25 00:00:00,1969-12-24 23:00:00,190,127,172,0,101,101,100,129 +1969-12-25 00:00:00,1969-12-24 23:00:00,119,141,109,141,100,100,99,154 +1969-12-25 00:00:00,1969-12-24 23:00:00,185,106,159,133,101,101,99,128 +1969-12-25 00:00:00,1969-12-24 23:00:00,189,160,172,0,101,101,100,138 +1969-12-25 00:00:00,1969-12-24 23:00:00,176,178,163,0,100,99,100,198 +1969-12-25 00:00:00,1969-12-24 23:00:00,143,190,135,200,99,99,99,141 +1969-12-25 00:00:00,1969-12-24 23:00:00,185,136,187,160,101,100,101,190 +1969-12-25 00:00:00,1969-12-24 23:00:00,174,124,147,164,100,101,100,197 +1969-12-25 00:00:00,1969-12-24 23:00:00,110,122,198,189,101,100,100,143 +1969-12-25 00:00:00,1969-12-24 23:00:00,184,177,122,109,101,100,100,125 +1969-12-25 00:00:00,1969-12-24 23:00:00,182,196,190,0,101,100,101,188 +1969-12-25 00:00:00,1969-12-24 23:00:00,115,109,154,0,100,101,101,169 +1969-12-25 00:00:00,1969-12-24 23:00:00,182,129,183,173,99,99,100,107 +1969-12-25 00:00:00,1969-12-24 23:00:00,164,131,120,125,99,99,101,142 +1969-12-25 00:00:00,1969-12-24 23:00:00,175,110,193,181,100,101,99,107 +1969-12-25 00:00:00,1969-12-24 23:00:00,159,136,149,196,100,99,101,200 +1969-12-25 00:00:00,1969-12-24 23:00:00,179,199,117,0,100,99,99,107 +1969-12-25 00:00:00,1969-12-24 23:00:00,134,196,184,170,100,100,100,168 +1969-12-25 00:00:00,1969-12-24 23:00:00,122,179,187,158,101,100,100,142 +1969-12-25 00:00:00,1969-12-24 23:00:00,141,100,158,0,101,99,101,101 +1969-12-25 00:00:00,1969-12-24 23:00:00,122,147,143,191,99,101,100,196 +1969-12-25 00:00:00,1969-12-24 23:00:00,129,120,125,134,101,100,99,162 +1969-12-25 00:00:00,1969-12-24 23:00:00,144,182,147,155,100,101,101,107 +1969-12-25 00:00:00,1969-12-24 23:00:00,161,107,175,0,101,101,100,109 +1969-12-25 00:00:00,1969-12-24 23:00:00,161,105,200,195,100,100,99,177 +1969-12-25 00:00:00,1969-12-24 23:00:00,137,199,144,162,100,101,99,182 +1969-12-25 00:00:00,1969-12-24 23:00:00,174,195,139,127,101,99,99,125 +1969-12-25 00:00:00,1969-12-24 23:00:00,125,176,143,105,100,101,100,137 +1969-12-25 00:00:00,1969-12-24 23:00:00,189,193,110,0,101,99,99,136 +1969-12-25 00:00:00,1969-12-24 23:00:00,114,102,190,0,100,100,100,101 +1969-12-25 00:00:00,1969-12-24 23:00:00,148,128,137,167,101,101,101,106 +1969-12-25 00:00:00,1969-12-24 23:00:00,183,132,108,105,101,99,100,111 +1969-12-25 00:00:00,1969-12-24 23:00:00,112,172,101,0,100,100,99,124 +1969-12-25 00:00:00,1969-12-24 23:00:00,150,190,110,159,99,100,101,183 +1969-12-25 00:00:00,1969-12-24 23:00:00,161,160,123,0,101,100,101,194 +1969-12-25 00:00:00,1969-12-24 23:00:00,171,131,180,0,100,101,99,145 +1969-12-25 00:00:00,1969-12-24 23:00:00,152,114,112,192,101,101,99,157 +1969-12-25 00:00:00,1969-12-24 23:00:00,128,129,182,159,101,99,101,115 +1969-12-25 00:00:00,1969-12-24 23:00:00,166,198,130,159,101,99,99,121 +1969-12-25 00:00:00,1969-12-24 23:00:00,155,165,160,152,99,100,100,130 +1969-12-25 00:00:00,1969-12-24 23:00:00,107,150,104,124,100,101,99,161 +1969-12-25 00:00:00,1969-12-24 23:00:00,172,116,166,101,101,100,100,159 +1969-12-25 00:00:00,1969-12-24 23:00:00,130,116,162,144,99,101,101,193 +1969-12-25 00:00:00,1969-12-24 23:00:00,166,119,198,0,101,100,99,179 +1969-12-25 00:00:00,1969-12-24 23:00:00,159,139,175,189,99,100,101,105 +1969-12-25 00:00:00,1969-12-24 23:00:00,172,171,180,107,101,100,101,108 +1969-12-25 00:00:00,1969-12-24 23:00:00,176,197,111,180,100,101,101,170 +1969-12-25 00:00:00,1969-12-24 23:00:00,127,132,145,133,100,100,100,159 +1969-12-25 00:00:00,1969-12-24 23:00:00,188,162,143,0,99,99,101,123 +1969-12-25 00:00:00,1969-12-24 23:00:00,113,175,113,127,101,101,101,102 +1969-12-25 00:00:00,1969-12-24 23:00:00,122,103,168,198,100,100,99,179 +1969-12-25 00:00:00,1969-12-24 23:00:00,112,198,193,197,99,100,99,175 +1969-12-25 00:00:00,1969-12-24 23:00:00,114,200,117,171,101,100,100,130 +1969-12-25 00:00:00,1969-12-24 23:00:00,174,193,186,127,99,99,100,103 +1969-12-25 00:00:00,1969-12-24 23:00:00,193,170,155,164,99,100,99,192 +1969-12-25 00:00:00,1969-12-24 23:00:00,126,191,130,161,100,101,100,115 +1969-12-25 00:00:00,1969-12-24 23:00:00,175,138,179,0,101,101,101,153 +1969-12-25 00:00:00,1969-12-24 23:00:00,188,137,181,115,101,99,101,140 +1969-12-25 00:00:00,1969-12-24 23:00:00,177,163,163,110,101,100,100,147 +1969-12-25 00:00:00,1969-12-24 23:00:00,196,171,178,197,99,100,100,105 +1969-12-25 00:00:00,1969-12-24 23:00:00,158,102,100,190,101,99,101,114 +1969-12-25 00:00:00,1969-12-24 23:00:00,175,193,163,176,101,99,101,124 +1969-12-25 00:00:00,1969-12-24 23:00:00,193,101,132,143,101,101,101,155 +1969-12-25 00:00:00,1969-12-24 23:00:00,127,173,131,0,99,100,101,157 +1969-12-25 00:00:00,1969-12-24 23:00:00,184,103,191,160,101,99,99,198 +1969-12-25 00:00:00,1969-12-24 23:00:00,151,167,168,108,101,100,100,176 +1969-12-25 00:00:00,1969-12-24 23:00:00,164,137,199,113,101,99,100,137 +1969-12-25 00:00:00,1969-12-24 23:00:00,161,131,171,155,101,101,99,171 +1969-12-25 00:00:00,1969-12-24 23:00:00,113,116,152,186,99,101,101,100 +1969-12-25 00:00:00,1969-12-24 23:00:00,158,172,104,0,100,100,100,166 +1969-12-25 00:00:00,1969-12-24 23:00:00,144,113,183,0,99,100,101,141 +1969-12-25 00:00:00,1969-12-24 23:00:00,113,155,158,200,101,101,99,137 +1969-12-25 00:00:00,1969-12-24 23:00:00,198,116,148,192,101,99,99,146 +1969-12-25 00:00:00,1969-12-24 23:00:00,173,110,109,0,99,100,99,141 +1969-12-25 00:00:00,1969-12-24 23:00:00,121,100,128,164,99,101,99,152 +1969-12-25 00:00:00,1969-12-24 23:00:00,142,156,115,118,99,99,99,133 +1969-12-25 00:00:00,1969-12-24 23:00:00,197,196,136,0,100,101,101,181 +1969-12-25 00:00:00,1969-12-24 23:00:00,156,137,150,155,99,99,101,141 +1969-12-25 00:00:00,1969-12-24 23:00:00,175,179,108,131,100,100,100,160 +1969-12-25 00:00:00,1969-12-24 23:00:00,117,163,191,0,100,100,101,193 +1969-12-25 00:00:00,1969-12-24 23:00:00,155,144,143,119,99,100,100,171 +1969-12-25 00:00:00,1969-12-24 23:00:00,127,158,199,151,101,101,101,105 +1969-12-25 00:00:00,1969-12-24 23:00:00,154,196,138,199,100,100,99,147 +1969-12-25 00:00:00,1969-12-24 23:00:00,178,100,199,188,100,100,99,189 +1969-12-25 00:00:00,1969-12-24 23:00:00,170,131,124,194,100,101,99,109 +1969-12-25 00:00:00,1969-12-24 23:00:00,142,186,117,105,101,100,100,139 +1969-12-25 00:00:00,1969-12-24 23:00:00,185,112,154,0,99,99,99,133 +1969-12-25 00:00:00,1969-12-24 23:00:00,148,168,181,129,101,101,101,143 +1969-12-25 00:00:00,1969-12-24 23:00:00,132,163,157,109,101,100,99,133 +1969-12-25 00:00:00,1969-12-24 23:00:00,167,103,147,130,100,101,101,133 +1969-12-25 00:00:00,1969-12-24 23:00:00,133,144,133,115,99,100,100,112 +1969-12-25 00:00:00,1969-12-24 23:00:00,185,200,141,105,101,101,99,160 +1969-12-25 00:00:00,1969-12-24 23:00:00,116,172,100,172,99,101,99,127 +1969-12-25 00:00:00,1969-12-24 23:00:00,115,196,170,113,99,100,100,198 +1969-12-25 00:00:00,1969-12-24 23:00:00,197,169,183,0,99,101,101,128 +1969-12-25 00:00:00,1969-12-24 23:00:00,198,172,107,168,101,99,101,129 +1969-12-25 00:00:00,1969-12-24 23:00:00,121,200,181,137,99,101,100,197 +1969-12-25 00:00:00,1969-12-24 23:00:00,195,138,181,133,100,101,100,161 +1969-12-25 00:00:00,1969-12-24 23:00:00,199,151,184,182,100,101,99,137 +1969-12-25 00:00:00,1969-12-24 23:00:00,123,142,167,162,101,99,100,158 +1969-12-25 00:00:00,1969-12-24 23:00:00,106,173,156,111,99,100,99,182 +1969-12-25 00:00:00,1969-12-24 23:00:00,156,196,177,122,100,100,99,175 +1969-12-25 00:00:00,1969-12-24 23:00:00,117,105,130,0,99,101,100,121 +1969-12-25 00:00:00,1969-12-24 23:00:00,117,169,143,0,101,101,99,200 +1969-12-25 00:00:00,1969-12-24 23:00:00,138,158,112,121,100,100,99,190 +1969-12-25 00:00:00,1969-12-24 23:00:00,149,148,167,103,101,101,101,101 +1969-12-25 00:00:00,1969-12-24 23:00:00,136,145,105,125,101,100,100,123 +1969-12-25 00:00:00,1969-12-24 23:00:00,106,159,153,146,99,100,101,200 +1969-12-25 00:00:00,1969-12-24 23:00:00,178,119,123,167,101,101,101,159 +1969-12-25 00:00:00,1969-12-24 23:00:00,166,124,200,149,101,100,99,128 +1969-12-25 00:00:00,1969-12-24 23:00:00,200,151,159,182,101,101,99,127 +1969-12-25 00:00:00,1969-12-24 23:00:00,146,122,170,144,101,99,100,153 +1969-12-25 00:00:00,1969-12-24 23:00:00,145,176,197,140,101,99,99,175 +1969-12-25 00:00:00,1969-12-24 23:00:00,145,127,174,165,100,101,101,161 +1969-12-25 00:00:00,1969-12-24 23:00:00,101,137,160,0,101,99,101,136 +1969-12-25 00:00:00,1969-12-24 23:00:00,100,142,117,174,100,99,101,114 +1969-12-25 00:00:00,1969-12-24 23:00:00,136,142,168,122,101,100,99,182 +1969-12-25 00:00:00,1969-12-24 23:00:00,168,200,121,190,99,100,101,104 +1969-12-25 00:00:00,1969-12-24 23:00:00,166,151,198,150,100,99,101,182 +1969-12-25 00:00:00,1969-12-24 23:00:00,115,129,190,0,99,99,100,109 +1969-12-25 00:00:00,1969-12-24 23:00:00,195,152,176,120,99,100,100,187 +1969-12-25 00:00:00,1969-12-24 23:00:00,103,144,148,168,100,99,100,185 +1969-12-25 00:00:00,1969-12-24 23:00:00,117,152,172,0,101,99,99,138 +1969-12-25 00:00:00,1969-12-24 23:00:00,164,179,181,146,100,101,100,110 +1969-12-25 00:00:00,1969-12-24 23:00:00,113,175,173,197,100,100,100,129 +1969-12-25 00:00:00,1969-12-24 23:00:00,190,130,165,175,99,99,99,128 +1969-12-25 00:00:00,1969-12-24 23:00:00,144,151,178,112,101,99,100,113 +1969-12-25 00:00:00,1969-12-24 23:00:00,104,163,119,152,100,100,100,123 +1969-12-25 00:00:00,1969-12-24 23:00:00,176,121,196,0,99,99,99,107 +1969-12-25 00:00:00,1969-12-24 23:00:00,150,179,137,159,101,100,99,156 +1969-12-25 00:00:00,1969-12-24 23:00:00,106,132,152,166,100,101,99,158 +1969-12-25 00:00:00,1969-12-24 23:00:00,183,165,157,141,101,101,100,145 +1969-12-25 00:00:00,1969-12-24 23:00:00,189,170,123,188,100,99,99,153 +1969-12-25 00:00:00,1969-12-24 23:00:00,116,157,158,180,101,101,99,170 +1969-12-25 00:00:00,1969-12-24 23:00:00,125,171,169,0,99,101,101,140 +1969-12-25 00:00:00,1969-12-24 23:00:00,149,117,130,0,101,99,100,147 +1969-12-25 00:00:00,1969-12-24 23:00:00,155,176,147,0,99,99,100,162 +1969-12-25 00:00:00,1969-12-24 23:00:00,172,151,180,175,101,99,100,172 +1969-12-25 00:00:00,1969-12-24 23:00:00,109,199,149,133,100,101,100,168 +1969-12-25 00:00:00,1969-12-24 23:00:00,162,112,111,141,100,100,99,182 +1969-12-25 00:00:00,1969-12-24 23:00:00,169,148,116,162,100,99,100,158 +1969-12-25 00:00:00,1969-12-24 23:00:00,155,143,178,172,101,101,100,119 +1969-12-25 00:00:00,1969-12-24 23:00:00,110,165,128,177,99,101,100,174 +1969-12-25 00:00:00,1969-12-24 23:00:00,109,148,187,0,100,99,101,123 +1969-12-25 00:00:00,1969-12-24 23:00:00,150,153,166,0,101,99,99,178 +1969-12-25 00:00:00,1969-12-24 23:00:00,122,132,145,151,100,101,99,182 +1969-12-25 00:00:00,1969-12-24 23:00:00,183,180,123,122,99,100,100,179 +1969-12-25 00:00:00,1969-12-24 23:00:00,196,200,131,147,100,99,100,196 +1969-12-25 00:00:00,1969-12-24 23:00:00,177,183,196,104,100,99,101,170 +1969-12-25 00:00:00,1969-12-24 23:00:00,184,188,154,142,100,100,99,101 +1969-12-25 00:00:00,1969-12-24 23:00:00,150,112,109,130,101,101,100,187 +1969-12-25 00:00:00,1969-12-24 23:00:00,134,174,196,114,99,101,99,122 +1969-12-25 00:00:00,1969-12-24 23:00:00,136,177,126,188,99,100,99,123 +1969-12-25 00:00:00,1969-12-24 23:00:00,182,171,191,167,99,99,100,200 +1969-12-25 00:00:00,1969-12-24 23:00:00,141,127,121,185,100,101,99,150 +1969-12-25 00:00:00,1969-12-24 23:00:00,108,123,104,155,101,99,101,193 +1969-12-25 00:00:00,1969-12-24 23:00:00,156,150,138,149,101,100,99,180 +1969-12-25 00:00:00,1969-12-24 23:00:00,120,139,144,166,100,100,100,124 +1969-12-25 00:00:00,1969-12-24 23:00:00,102,169,139,128,99,101,101,111 +1969-12-25 00:00:00,1969-12-24 23:00:00,125,118,110,118,101,99,99,133 +1969-12-25 00:00:00,1969-12-24 23:00:00,143,185,200,189,100,100,99,119 +1969-12-25 00:00:00,1969-12-24 23:00:00,191,112,179,0,99,99,100,132 +1969-12-25 00:00:00,1969-12-24 23:00:00,112,130,129,0,101,99,100,196 +1969-12-25 00:00:00,1969-12-24 23:00:00,189,141,160,171,99,99,100,175 +1969-12-25 00:00:00,1969-12-24 23:00:00,131,161,100,150,99,101,101,118 +1969-12-24 00:00:00,1969-12-23 23:00:00,174,169,0,144,99,100,101,173 +1969-12-24 00:00:00,1969-12-23 23:00:00,150,158,0,122,99,99,99,125 +1969-12-24 00:00:00,1969-12-23 23:00:00,122,100,0,113,100,100,99,151 +1969-12-24 00:00:00,1969-12-23 23:00:00,174,196,0,102,99,99,101,188 +1969-12-24 00:00:00,1969-12-23 23:00:00,155,165,0,154,101,100,99,156 +1969-12-24 00:00:00,1969-12-23 23:00:00,196,142,0,111,100,101,99,139 +1969-12-24 00:00:00,1969-12-23 23:00:00,189,124,191,159,101,100,100,197 +1969-12-24 00:00:00,1969-12-23 23:00:00,159,135,100,0,101,100,99,147 +1969-12-24 00:00:00,1969-12-23 23:00:00,182,187,117,133,99,99,100,129 +1969-12-24 00:00:00,1969-12-23 23:00:00,146,106,196,122,100,99,100,175 +1969-12-24 00:00:00,1969-12-23 23:00:00,107,130,148,106,100,100,100,130 +1969-12-24 00:00:00,1969-12-23 23:00:00,103,197,189,122,100,99,101,190 +1969-12-24 00:00:00,1969-12-23 23:00:00,132,127,169,131,99,100,100,188 +1969-12-24 00:00:00,1969-12-23 23:00:00,101,187,156,105,101,100,99,137 +1969-12-24 00:00:00,1969-12-23 23:00:00,136,121,179,151,99,99,100,154 +1969-12-24 00:00:00,1969-12-23 23:00:00,112,184,109,200,99,101,100,126 +1969-12-24 00:00:00,1969-12-23 23:00:00,191,192,144,183,100,99,99,145 +1969-12-24 00:00:00,1969-12-23 23:00:00,140,180,178,103,100,99,101,149 +1969-12-24 00:00:00,1969-12-23 23:00:00,111,199,103,183,101,100,100,122 +1969-12-24 00:00:00,1969-12-23 23:00:00,165,107,178,142,99,100,101,196 +1969-12-24 00:00:00,1969-12-23 23:00:00,129,157,108,0,101,99,101,104 +1969-12-24 00:00:00,1969-12-23 23:00:00,190,148,130,0,100,101,100,172 +1969-12-24 00:00:00,1969-12-23 23:00:00,108,139,129,133,99,100,101,161 +1969-12-24 00:00:00,1969-12-23 23:00:00,163,183,144,0,99,101,101,191 +1969-12-24 00:00:00,1969-12-23 23:00:00,122,186,136,138,99,101,99,132 +1969-12-24 00:00:00,1969-12-23 23:00:00,141,133,152,198,100,101,100,147 +1969-12-24 00:00:00,1969-12-23 23:00:00,160,140,136,0,99,100,99,105 +1969-12-24 00:00:00,1969-12-23 23:00:00,177,139,136,0,99,99,99,102 +1969-12-24 00:00:00,1969-12-23 23:00:00,141,145,177,117,99,100,99,101 +1969-12-24 00:00:00,1969-12-23 23:00:00,153,160,187,174,100,99,99,117 +1969-12-24 00:00:00,1969-12-23 23:00:00,107,128,115,101,99,101,100,182 +1969-12-24 00:00:00,1969-12-23 23:00:00,141,119,124,0,99,99,99,120 +1969-12-24 00:00:00,1969-12-23 23:00:00,131,101,136,121,100,100,101,109 +1969-12-24 00:00:00,1969-12-23 23:00:00,135,173,113,114,100,101,99,180 +1969-12-24 00:00:00,1969-12-23 23:00:00,125,130,183,191,99,101,101,116 +1969-12-24 00:00:00,1969-12-23 23:00:00,192,147,125,196,101,99,100,112 +1969-12-24 00:00:00,1969-12-23 23:00:00,175,198,121,0,99,100,100,171 +1969-12-24 00:00:00,1969-12-23 23:00:00,135,114,194,0,100,100,99,166 +1969-12-24 00:00:00,1969-12-23 23:00:00,179,110,193,108,101,100,99,151 +1969-12-24 00:00:00,1969-12-23 23:00:00,114,114,161,0,101,99,99,121 +1969-12-24 00:00:00,1969-12-23 23:00:00,190,124,125,110,100,101,101,166 +1969-12-24 00:00:00,1969-12-23 23:00:00,146,115,186,0,100,99,99,159 +1969-12-24 00:00:00,1969-12-23 23:00:00,112,146,138,179,99,100,100,180 +1969-12-24 00:00:00,1969-12-23 23:00:00,140,114,150,105,99,100,99,107 +1969-12-24 00:00:00,1969-12-23 23:00:00,165,196,190,173,100,100,100,155 +1969-12-24 00:00:00,1969-12-23 23:00:00,117,147,155,124,99,101,99,127 +1969-12-24 00:00:00,1969-12-23 23:00:00,166,135,127,143,100,99,101,156 +1969-12-24 00:00:00,1969-12-23 23:00:00,134,130,136,111,100,101,101,195 +1969-12-24 00:00:00,1969-12-23 23:00:00,183,101,106,108,101,101,99,108 +1969-12-24 00:00:00,1969-12-23 23:00:00,102,157,113,179,99,101,101,119 +1969-12-24 00:00:00,1969-12-23 23:00:00,192,126,168,184,99,101,100,119 +1969-12-24 00:00:00,1969-12-23 23:00:00,187,107,108,173,99,99,100,199 +1969-12-24 00:00:00,1969-12-23 23:00:00,198,177,141,138,100,99,101,139 +1969-12-24 00:00:00,1969-12-23 23:00:00,107,148,111,138,101,99,101,165 +1969-12-24 00:00:00,1969-12-23 23:00:00,174,164,195,135,99,99,100,160 +1969-12-24 00:00:00,1969-12-23 23:00:00,158,184,181,125,101,100,99,196 +1969-12-24 00:00:00,1969-12-23 23:00:00,110,125,122,108,99,100,100,178 +1969-12-24 00:00:00,1969-12-23 23:00:00,176,138,160,179,99,101,100,160 +1969-12-24 00:00:00,1969-12-23 23:00:00,183,160,144,124,99,100,101,149 +1969-12-24 00:00:00,1969-12-23 23:00:00,198,118,109,196,99,100,100,161 +1969-12-24 00:00:00,1969-12-23 23:00:00,113,154,186,121,100,101,99,130 +1969-12-24 00:00:00,1969-12-23 23:00:00,117,199,138,120,100,99,99,104 +1969-12-24 00:00:00,1969-12-23 23:00:00,142,166,150,124,99,101,99,150 +1969-12-24 00:00:00,1969-12-23 23:00:00,190,104,112,144,100,99,99,146 +1969-12-24 00:00:00,1969-12-23 23:00:00,189,141,197,165,100,99,99,180 +1969-12-24 00:00:00,1969-12-23 23:00:00,178,124,138,148,101,100,101,162 +1969-12-24 00:00:00,1969-12-23 23:00:00,185,148,192,151,101,99,100,190 +1969-12-24 00:00:00,1969-12-23 23:00:00,115,156,123,0,101,99,100,198 +1969-12-24 00:00:00,1969-12-23 23:00:00,168,156,189,123,99,99,101,155 +1969-12-24 00:00:00,1969-12-23 23:00:00,164,157,120,132,99,101,101,133 +1969-12-24 00:00:00,1969-12-23 23:00:00,115,174,158,139,99,100,101,122 +1969-12-24 00:00:00,1969-12-23 23:00:00,157,200,110,119,99,99,100,113 +1969-12-24 00:00:00,1969-12-23 23:00:00,138,147,176,111,101,99,99,123 +1969-12-24 00:00:00,1969-12-23 23:00:00,158,174,164,174,100,99,100,151 +1969-12-24 00:00:00,1969-12-23 23:00:00,183,108,121,108,101,100,101,152 +1969-12-24 00:00:00,1969-12-23 23:00:00,175,196,113,0,101,101,100,112 +1969-12-24 00:00:00,1969-12-23 23:00:00,187,110,179,154,101,100,101,135 +1969-12-24 00:00:00,1969-12-23 23:00:00,178,151,161,0,99,101,100,109 +1969-12-24 00:00:00,1969-12-23 23:00:00,137,104,191,0,100,100,100,164 +1969-12-24 00:00:00,1969-12-23 23:00:00,111,143,156,138,99,101,100,158 +1969-12-24 00:00:00,1969-12-23 23:00:00,192,184,114,117,101,101,99,182 +1969-12-24 00:00:00,1969-12-23 23:00:00,119,154,136,120,100,101,99,123 +1969-12-24 00:00:00,1969-12-23 23:00:00,148,153,138,0,99,101,99,133 +1969-12-24 00:00:00,1969-12-23 23:00:00,113,161,151,144,100,101,99,119 +1969-12-24 00:00:00,1969-12-23 23:00:00,100,111,175,0,99,101,99,176 +1969-12-24 00:00:00,1969-12-23 23:00:00,183,135,142,148,100,100,100,174 +1969-12-24 00:00:00,1969-12-23 23:00:00,119,178,150,163,99,100,101,176 +1969-12-24 00:00:00,1969-12-23 23:00:00,194,150,124,156,100,101,100,142 +1969-12-24 00:00:00,1969-12-23 23:00:00,162,136,200,133,99,99,101,144 +1969-12-24 00:00:00,1969-12-23 23:00:00,114,185,158,101,100,101,99,163 +1969-12-24 00:00:00,1969-12-23 23:00:00,171,188,192,128,100,101,100,131 +1969-12-24 00:00:00,1969-12-23 23:00:00,126,101,177,190,101,99,99,123 +1969-12-24 00:00:00,1969-12-23 23:00:00,198,196,149,196,100,99,99,170 +1969-12-24 00:00:00,1969-12-23 23:00:00,104,179,181,107,100,101,100,171 +1969-12-24 00:00:00,1969-12-23 23:00:00,186,176,199,179,101,100,99,183 +1969-12-24 00:00:00,1969-12-23 23:00:00,145,145,124,157,101,99,99,136 +1969-12-24 00:00:00,1969-12-23 23:00:00,158,157,102,0,101,101,99,166 +1969-12-24 00:00:00,1969-12-23 23:00:00,192,152,127,101,99,99,99,152 +1969-12-24 00:00:00,1969-12-23 23:00:00,185,154,132,134,100,101,99,109 +1969-12-24 00:00:00,1969-12-23 23:00:00,117,118,162,175,101,100,100,140 +1969-12-24 00:00:00,1969-12-23 23:00:00,198,190,126,0,99,100,100,105 +1969-12-24 00:00:00,1969-12-23 23:00:00,107,187,176,182,99,100,100,192 +1969-12-24 00:00:00,1969-12-23 23:00:00,160,135,155,121,101,99,99,104 +1969-12-24 00:00:00,1969-12-23 23:00:00,168,199,104,186,100,100,99,128 +1969-12-24 00:00:00,1969-12-23 23:00:00,128,125,130,149,100,100,100,109 +1969-12-24 00:00:00,1969-12-23 23:00:00,105,135,103,195,100,101,100,113 +1969-12-24 00:00:00,1969-12-23 23:00:00,143,183,115,128,101,101,99,125 +1969-12-24 00:00:00,1969-12-23 23:00:00,138,109,165,169,100,101,100,134 +1969-12-24 00:00:00,1969-12-23 23:00:00,123,132,141,107,100,100,101,137 +1969-12-24 00:00:00,1969-12-23 23:00:00,108,155,198,140,99,100,100,108 +1969-12-24 00:00:00,1969-12-23 23:00:00,183,138,128,133,101,99,99,119 +1969-12-24 00:00:00,1969-12-23 23:00:00,180,142,135,129,101,101,99,100 +1969-12-24 00:00:00,1969-12-23 23:00:00,148,179,138,148,100,100,101,101 +1969-12-24 00:00:00,1969-12-23 23:00:00,138,101,143,158,99,101,101,154 +1969-12-24 00:00:00,1969-12-23 23:00:00,151,166,176,0,101,100,100,165 +1969-12-24 00:00:00,1969-12-23 23:00:00,177,143,111,194,99,100,99,187 +1969-12-24 00:00:00,1969-12-23 23:00:00,104,123,124,154,99,101,99,186 +1969-12-24 00:00:00,1969-12-23 23:00:00,122,118,164,155,100,101,101,168 +1969-12-24 00:00:00,1969-12-23 23:00:00,122,154,133,194,101,99,101,121 +1969-12-24 00:00:00,1969-12-23 23:00:00,126,162,116,0,100,101,101,199 +1969-12-24 00:00:00,1969-12-23 23:00:00,111,122,157,125,100,100,100,120 +1969-12-24 00:00:00,1969-12-23 23:00:00,119,129,142,128,101,101,101,120 +1969-12-24 00:00:00,1969-12-23 23:00:00,182,186,169,0,101,101,101,126 +1969-12-24 00:00:00,1969-12-23 23:00:00,136,173,141,124,101,100,100,107 +1969-12-24 00:00:00,1969-12-23 23:00:00,130,117,179,113,100,101,101,106 +1969-12-24 00:00:00,1969-12-23 23:00:00,118,198,188,119,101,101,99,194 +1969-12-24 00:00:00,1969-12-23 23:00:00,179,140,123,174,100,100,101,172 +1969-12-24 00:00:00,1969-12-23 23:00:00,178,140,194,167,101,99,99,118 +1969-12-24 00:00:00,1969-12-23 23:00:00,134,129,129,188,100,100,100,109 +1969-12-24 00:00:00,1969-12-23 23:00:00,150,189,161,104,101,99,99,162 +1969-12-24 00:00:00,1969-12-23 23:00:00,129,131,110,168,101,100,101,184 +1969-12-24 00:00:00,1969-12-23 23:00:00,110,196,195,200,99,100,99,138 +1969-12-24 00:00:00,1969-12-23 23:00:00,183,167,143,172,101,99,101,128 +1969-12-24 00:00:00,1969-12-23 23:00:00,112,131,105,166,101,101,101,152 +1969-12-24 00:00:00,1969-12-23 23:00:00,142,144,176,157,100,100,101,115 +1969-12-24 00:00:00,1969-12-23 23:00:00,105,149,122,0,99,100,100,151 +1969-12-24 00:00:00,1969-12-23 23:00:00,104,104,199,191,101,100,100,158 +1969-12-24 00:00:00,1969-12-23 23:00:00,130,187,145,199,100,100,101,133 +1969-12-24 00:00:00,1969-12-23 23:00:00,182,171,157,180,101,101,101,178 +1969-12-24 00:00:00,1969-12-23 23:00:00,147,164,185,153,99,99,101,190 +1969-12-24 00:00:00,1969-12-23 23:00:00,180,156,179,0,100,101,100,186 +1969-12-24 00:00:00,1969-12-23 23:00:00,147,183,192,151,100,99,101,155 +1969-12-24 00:00:00,1969-12-23 23:00:00,132,167,132,135,100,99,100,152 +1969-12-24 00:00:00,1969-12-23 23:00:00,153,193,198,0,101,101,99,175 +1969-12-24 00:00:00,1969-12-23 23:00:00,163,189,190,140,101,99,100,182 +1969-12-24 00:00:00,1969-12-23 23:00:00,131,168,174,145,101,99,101,188 +1969-12-24 00:00:00,1969-12-23 23:00:00,141,200,158,148,101,100,101,115 +1969-12-24 00:00:00,1969-12-23 23:00:00,103,161,126,163,101,101,100,129 +1969-12-24 00:00:00,1969-12-23 23:00:00,193,170,148,108,99,99,100,158 +1969-12-24 00:00:00,1969-12-23 23:00:00,177,155,137,129,100,101,100,109 +1969-12-24 00:00:00,1969-12-23 23:00:00,114,196,135,129,99,100,100,153 +1969-12-24 00:00:00,1969-12-23 23:00:00,154,198,172,190,101,99,100,157 +1969-12-24 00:00:00,1969-12-23 23:00:00,117,117,135,178,100,100,99,187 +1969-12-24 00:00:00,1969-12-23 23:00:00,130,176,160,131,99,101,99,114 +1969-12-24 00:00:00,1969-12-23 23:00:00,141,102,117,166,99,101,100,137 +1969-12-24 00:00:00,1969-12-23 23:00:00,189,148,157,130,99,100,99,137 +1969-12-24 00:00:00,1969-12-23 23:00:00,135,107,200,0,99,99,101,171 +1969-12-24 00:00:00,1969-12-23 23:00:00,141,105,162,172,101,100,101,111 +1969-12-24 00:00:00,1969-12-23 23:00:00,134,157,153,0,101,100,101,172 +1969-12-24 00:00:00,1969-12-23 23:00:00,123,184,169,137,100,99,100,168 +1969-12-24 00:00:00,1969-12-23 23:00:00,190,171,198,0,100,99,99,126 +1969-12-24 00:00:00,1969-12-23 23:00:00,160,191,170,0,99,100,99,191 +1969-12-24 00:00:00,1969-12-23 23:00:00,146,142,142,0,101,101,100,134 +1969-12-24 00:00:00,1969-12-23 23:00:00,138,143,138,175,100,99,101,141 +1969-12-24 00:00:00,1969-12-23 23:00:00,174,168,149,192,101,101,101,116 +1969-12-24 00:00:00,1969-12-23 23:00:00,135,133,176,125,101,101,99,189 +1969-12-24 00:00:00,1969-12-23 23:00:00,116,198,174,160,100,100,100,133 +1969-12-24 00:00:00,1969-12-23 23:00:00,170,192,188,140,101,99,99,191 +1969-12-24 00:00:00,1969-12-23 23:00:00,123,146,172,114,100,99,100,160 +1969-12-24 00:00:00,1969-12-23 23:00:00,144,178,199,144,101,100,101,150 +1969-12-24 00:00:00,1969-12-23 23:00:00,144,113,124,0,99,101,99,112 +1969-12-24 00:00:00,1969-12-23 23:00:00,191,144,192,0,99,100,99,167 +1969-12-24 00:00:00,1969-12-23 23:00:00,146,198,124,105,99,101,100,153 +1969-12-24 00:00:00,1969-12-23 23:00:00,160,147,183,135,101,99,101,122 +1969-12-24 00:00:00,1969-12-23 23:00:00,133,148,145,133,99,100,99,164 +1969-12-24 00:00:00,1969-12-23 23:00:00,109,118,118,194,99,99,101,173 +1969-12-24 00:00:00,1969-12-23 23:00:00,107,177,143,147,99,99,99,157 +1969-12-24 00:00:00,1969-12-23 23:00:00,196,109,177,162,100,100,101,101 +1969-12-24 00:00:00,1969-12-23 23:00:00,179,126,124,157,99,99,101,152 +1969-12-24 00:00:00,1969-12-23 23:00:00,139,156,166,148,99,101,101,182 +1969-12-24 00:00:00,1969-12-23 23:00:00,156,196,109,164,100,99,100,196 +1969-12-24 00:00:00,1969-12-23 23:00:00,147,143,133,0,99,99,101,194 +1969-12-24 00:00:00,1969-12-23 23:00:00,160,120,177,101,99,100,101,151 +1969-12-24 00:00:00,1969-12-23 23:00:00,134,174,114,184,99,99,101,150 +1969-12-24 00:00:00,1969-12-23 23:00:00,109,195,136,125,101,101,101,183 +1969-12-24 00:00:00,1969-12-23 23:00:00,156,133,162,0,100,100,101,178 +1969-12-24 00:00:00,1969-12-23 23:00:00,174,196,123,135,99,99,100,136 +1969-12-24 00:00:00,1969-12-23 23:00:00,194,118,158,111,101,100,100,114 +1969-12-24 00:00:00,1969-12-23 23:00:00,136,146,131,162,99,99,100,167 +1969-12-24 00:00:00,1969-12-23 23:00:00,148,106,120,0,101,100,99,194 +1969-12-24 00:00:00,1969-12-23 23:00:00,116,144,108,134,100,100,101,174 +1969-12-24 00:00:00,1969-12-23 23:00:00,148,135,169,165,100,99,101,177 +1969-12-24 00:00:00,1969-12-23 23:00:00,113,178,133,0,99,99,101,111 +1969-12-24 00:00:00,1969-12-23 23:00:00,196,134,140,0,100,99,100,191 +1969-12-24 00:00:00,1969-12-23 23:00:00,183,109,142,0,100,99,101,172 +1969-12-24 00:00:00,1969-12-23 23:00:00,113,177,153,0,101,100,99,134 +1969-12-24 00:00:00,1969-12-23 23:00:00,137,177,137,165,99,99,99,119 +1969-12-24 00:00:00,1969-12-23 23:00:00,160,158,146,134,101,99,99,174 +1969-12-24 00:00:00,1969-12-23 23:00:00,173,130,143,146,99,99,100,135 +1969-12-24 00:00:00,1969-12-23 23:00:00,115,151,132,108,101,101,101,122 +1969-12-23 00:00:00,1969-12-22 23:00:00,110,117,0,165,99,101,101,167 +1969-12-23 00:00:00,1969-12-22 23:00:00,186,142,0,111,100,99,99,105 +1969-12-23 00:00:00,1969-12-22 23:00:00,128,102,0,0,99,99,99,183 +1969-12-23 00:00:00,1969-12-22 23:00:00,172,183,0,175,100,99,99,142 +1969-12-23 00:00:00,1969-12-22 23:00:00,197,113,0,146,100,101,100,129 +1969-12-23 00:00:00,1969-12-22 23:00:00,188,151,0,194,99,99,101,126 +1969-12-23 00:00:00,1969-12-22 23:00:00,186,162,178,0,99,101,100,149 +1969-12-23 00:00:00,1969-12-22 23:00:00,174,177,157,0,100,99,101,199 +1969-12-23 00:00:00,1969-12-22 23:00:00,133,104,157,153,101,100,101,191 +1969-12-23 00:00:00,1969-12-22 23:00:00,113,161,167,156,100,100,101,139 +1969-12-23 00:00:00,1969-12-22 23:00:00,131,164,193,185,99,99,100,180 +1969-12-23 00:00:00,1969-12-22 23:00:00,159,182,118,107,99,100,101,113 +1969-12-23 00:00:00,1969-12-22 23:00:00,143,132,148,101,100,101,99,112 +1969-12-23 00:00:00,1969-12-22 23:00:00,143,136,186,200,99,100,99,123 +1969-12-23 00:00:00,1969-12-22 23:00:00,101,102,155,179,100,101,101,198 +1969-12-23 00:00:00,1969-12-22 23:00:00,162,200,164,168,101,101,101,176 +1969-12-23 00:00:00,1969-12-22 23:00:00,106,197,107,185,101,101,100,132 +1969-12-23 00:00:00,1969-12-22 23:00:00,154,161,145,170,99,100,100,136 +1969-12-23 00:00:00,1969-12-22 23:00:00,123,103,113,139,99,101,100,172 +1969-12-23 00:00:00,1969-12-22 23:00:00,174,167,169,159,101,101,101,127 +1969-12-23 00:00:00,1969-12-22 23:00:00,169,187,128,115,99,101,99,128 +1969-12-23 00:00:00,1969-12-22 23:00:00,178,114,136,0,100,100,100,155 +1969-12-23 00:00:00,1969-12-22 23:00:00,169,112,120,141,101,101,100,106 +1969-12-23 00:00:00,1969-12-22 23:00:00,115,197,169,184,101,101,101,102 +1969-12-23 00:00:00,1969-12-22 23:00:00,147,127,165,192,101,99,101,162 +1969-12-23 00:00:00,1969-12-22 23:00:00,117,126,152,0,99,101,100,158 +1969-12-23 00:00:00,1969-12-22 23:00:00,186,163,162,141,99,99,101,137 +1969-12-23 00:00:00,1969-12-22 23:00:00,111,161,186,186,101,100,99,127 +1969-12-23 00:00:00,1969-12-22 23:00:00,184,175,171,112,101,99,100,190 +1969-12-23 00:00:00,1969-12-22 23:00:00,114,173,121,135,101,100,99,191 +1969-12-23 00:00:00,1969-12-22 23:00:00,187,197,192,132,100,99,99,181 +1969-12-23 00:00:00,1969-12-22 23:00:00,139,115,153,157,99,99,101,112 +1969-12-23 00:00:00,1969-12-22 23:00:00,109,150,162,180,101,101,99,116 +1969-12-23 00:00:00,1969-12-22 23:00:00,118,101,197,188,101,101,99,132 +1969-12-23 00:00:00,1969-12-22 23:00:00,150,106,159,123,100,99,99,157 +1969-12-23 00:00:00,1969-12-22 23:00:00,132,172,117,144,100,99,99,168 +1969-12-23 00:00:00,1969-12-22 23:00:00,141,130,174,126,99,99,99,122 +1969-12-23 00:00:00,1969-12-22 23:00:00,106,105,171,0,99,101,101,197 +1969-12-23 00:00:00,1969-12-22 23:00:00,147,170,113,0,101,101,100,148 +1969-12-23 00:00:00,1969-12-22 23:00:00,176,129,169,0,101,99,100,107 +1969-12-23 00:00:00,1969-12-22 23:00:00,182,116,177,0,101,100,99,154 +1969-12-23 00:00:00,1969-12-22 23:00:00,112,167,141,149,99,100,100,119 +1969-12-23 00:00:00,1969-12-22 23:00:00,190,189,160,142,101,101,101,110 +1969-12-23 00:00:00,1969-12-22 23:00:00,177,200,104,188,99,100,100,166 +1969-12-23 00:00:00,1969-12-22 23:00:00,143,200,200,0,101,99,99,109 +1969-12-23 00:00:00,1969-12-22 23:00:00,106,171,120,195,100,99,99,149 +1969-12-23 00:00:00,1969-12-22 23:00:00,136,102,174,141,100,100,99,138 +1969-12-23 00:00:00,1969-12-22 23:00:00,102,102,102,136,99,101,100,165 +1969-12-23 00:00:00,1969-12-22 23:00:00,164,138,139,168,101,101,100,181 +1969-12-23 00:00:00,1969-12-22 23:00:00,156,128,110,160,101,101,100,170 +1969-12-23 00:00:00,1969-12-22 23:00:00,141,126,125,144,100,101,99,129 +1969-12-23 00:00:00,1969-12-22 23:00:00,157,109,109,190,100,100,101,161 +1969-12-23 00:00:00,1969-12-22 23:00:00,150,128,182,146,99,101,99,193 +1969-12-23 00:00:00,1969-12-22 23:00:00,111,113,140,181,101,99,99,104 +1969-12-23 00:00:00,1969-12-22 23:00:00,196,118,161,193,100,100,100,177 +1969-12-23 00:00:00,1969-12-22 23:00:00,173,170,173,178,101,100,100,119 +1969-12-23 00:00:00,1969-12-22 23:00:00,165,158,147,0,100,99,100,119 +1969-12-23 00:00:00,1969-12-22 23:00:00,165,193,155,153,99,101,99,189 +1969-12-23 00:00:00,1969-12-22 23:00:00,196,199,195,0,99,99,101,193 +1969-12-23 00:00:00,1969-12-22 23:00:00,174,197,140,117,99,101,99,141 +1969-12-23 00:00:00,1969-12-22 23:00:00,142,125,125,153,101,99,101,184 +1969-12-23 00:00:00,1969-12-22 23:00:00,142,128,150,177,101,101,100,163 +1969-12-23 00:00:00,1969-12-22 23:00:00,105,136,131,0,101,99,101,196 +1969-12-23 00:00:00,1969-12-22 23:00:00,126,200,171,138,100,99,100,166 +1969-12-23 00:00:00,1969-12-22 23:00:00,108,170,200,0,100,100,101,172 +1969-12-23 00:00:00,1969-12-22 23:00:00,117,186,116,0,100,99,101,199 +1969-12-23 00:00:00,1969-12-22 23:00:00,104,172,105,190,99,99,101,127 +1969-12-23 00:00:00,1969-12-22 23:00:00,159,163,131,102,101,100,99,110 +1969-12-23 00:00:00,1969-12-22 23:00:00,134,108,123,183,99,101,99,174 +1969-12-23 00:00:00,1969-12-22 23:00:00,186,163,135,193,101,100,101,155 +1969-12-23 00:00:00,1969-12-22 23:00:00,116,131,163,146,101,99,99,104 +1969-12-23 00:00:00,1969-12-22 23:00:00,135,124,139,148,100,101,99,102 +1969-12-23 00:00:00,1969-12-22 23:00:00,184,119,137,177,99,101,101,127 +1969-12-23 00:00:00,1969-12-22 23:00:00,102,147,197,118,101,100,99,133 +1969-12-23 00:00:00,1969-12-22 23:00:00,157,178,112,173,99,99,99,137 +1969-12-23 00:00:00,1969-12-22 23:00:00,193,199,171,173,99,100,99,158 +1969-12-23 00:00:00,1969-12-22 23:00:00,188,163,135,117,101,99,101,135 +1969-12-23 00:00:00,1969-12-22 23:00:00,134,137,134,0,101,99,100,110 +1969-12-23 00:00:00,1969-12-22 23:00:00,107,189,196,198,100,101,101,143 +1969-12-23 00:00:00,1969-12-22 23:00:00,180,158,110,198,99,101,99,108 +1969-12-23 00:00:00,1969-12-22 23:00:00,160,126,197,124,100,101,100,167 +1969-12-23 00:00:00,1969-12-22 23:00:00,110,108,149,196,100,100,101,122 +1969-12-23 00:00:00,1969-12-22 23:00:00,162,106,168,0,99,100,100,129 +1969-12-23 00:00:00,1969-12-22 23:00:00,172,140,178,113,99,101,99,152 +1969-12-23 00:00:00,1969-12-22 23:00:00,155,188,121,162,100,99,100,104 +1969-12-23 00:00:00,1969-12-22 23:00:00,194,151,173,139,100,100,100,181 +1969-12-23 00:00:00,1969-12-22 23:00:00,158,109,145,168,101,100,100,102 +1969-12-23 00:00:00,1969-12-22 23:00:00,197,181,187,0,100,101,99,144 +1969-12-23 00:00:00,1969-12-22 23:00:00,112,158,132,112,99,100,101,131 +1969-12-23 00:00:00,1969-12-22 23:00:00,108,165,180,118,99,101,101,172 +1969-12-23 00:00:00,1969-12-22 23:00:00,143,115,121,168,101,99,100,198 +1969-12-23 00:00:00,1969-12-22 23:00:00,126,110,171,143,100,100,100,109 +1969-12-23 00:00:00,1969-12-22 23:00:00,197,194,142,157,99,101,101,184 +1969-12-23 00:00:00,1969-12-22 23:00:00,116,132,197,134,99,100,101,185 +1969-12-23 00:00:00,1969-12-22 23:00:00,104,163,118,199,99,101,100,144 +1969-12-23 00:00:00,1969-12-22 23:00:00,101,132,105,113,101,101,99,166 +1969-12-23 00:00:00,1969-12-22 23:00:00,106,179,138,174,99,101,101,132 +1969-12-23 00:00:00,1969-12-22 23:00:00,118,199,100,108,101,100,100,167 +1969-12-23 00:00:00,1969-12-22 23:00:00,140,122,149,159,99,99,99,128 +1969-12-23 00:00:00,1969-12-22 23:00:00,142,143,124,163,99,99,99,140 +1969-12-23 00:00:00,1969-12-22 23:00:00,163,105,123,164,100,99,100,198 +1969-12-23 00:00:00,1969-12-22 23:00:00,100,173,112,117,100,99,99,131 +1969-12-23 00:00:00,1969-12-22 23:00:00,126,162,129,178,99,99,99,155 +1969-12-23 00:00:00,1969-12-22 23:00:00,102,113,132,102,100,99,99,133 +1969-12-23 00:00:00,1969-12-22 23:00:00,132,144,187,148,101,99,99,192 +1969-12-23 00:00:00,1969-12-22 23:00:00,189,116,126,149,101,101,99,177 +1969-12-23 00:00:00,1969-12-22 23:00:00,108,156,130,0,99,101,99,175 +1969-12-23 00:00:00,1969-12-22 23:00:00,136,147,107,0,100,100,101,121 +1969-12-23 00:00:00,1969-12-22 23:00:00,172,183,160,137,100,101,99,147 +1969-12-23 00:00:00,1969-12-22 23:00:00,140,182,189,156,100,99,99,129 +1969-12-23 00:00:00,1969-12-22 23:00:00,101,115,192,184,101,99,101,127 +1969-12-23 00:00:00,1969-12-22 23:00:00,140,194,174,194,99,99,100,181 +1969-12-23 00:00:00,1969-12-22 23:00:00,108,147,177,162,101,100,101,153 +1969-12-23 00:00:00,1969-12-22 23:00:00,125,197,194,136,101,101,99,128 +1969-12-23 00:00:00,1969-12-22 23:00:00,151,123,137,0,101,101,100,190 +1969-12-23 00:00:00,1969-12-22 23:00:00,198,120,129,0,99,100,99,190 +1969-12-23 00:00:00,1969-12-22 23:00:00,135,131,113,0,99,101,99,119 +1969-12-23 00:00:00,1969-12-22 23:00:00,135,145,103,191,100,101,99,123 +1969-12-23 00:00:00,1969-12-22 23:00:00,174,166,160,127,101,100,100,143 +1969-12-23 00:00:00,1969-12-22 23:00:00,110,134,176,131,99,101,101,143 +1969-12-23 00:00:00,1969-12-22 23:00:00,154,111,149,198,101,101,100,197 +1969-12-23 00:00:00,1969-12-22 23:00:00,112,187,180,139,100,100,99,128 +1969-12-23 00:00:00,1969-12-22 23:00:00,171,117,165,136,100,101,99,184 +1969-12-23 00:00:00,1969-12-22 23:00:00,151,123,159,0,100,101,101,119 +1969-12-23 00:00:00,1969-12-22 23:00:00,187,177,187,114,99,101,100,103 +1969-12-23 00:00:00,1969-12-22 23:00:00,123,114,159,107,101,99,99,144 +1969-12-23 00:00:00,1969-12-22 23:00:00,134,132,199,183,101,100,99,151 +1969-12-23 00:00:00,1969-12-22 23:00:00,136,147,115,0,100,101,99,180 +1969-12-23 00:00:00,1969-12-22 23:00:00,138,136,143,118,99,99,99,136 +1969-12-23 00:00:00,1969-12-22 23:00:00,102,192,138,0,99,99,101,127 +1969-12-23 00:00:00,1969-12-22 23:00:00,197,139,177,162,100,99,99,132 +1969-12-23 00:00:00,1969-12-22 23:00:00,144,191,148,195,100,101,101,188 +1969-12-23 00:00:00,1969-12-22 23:00:00,112,184,188,0,100,100,99,136 +1969-12-23 00:00:00,1969-12-22 23:00:00,156,164,174,180,99,101,99,164 +1969-12-23 00:00:00,1969-12-22 23:00:00,124,177,116,142,101,99,101,160 +1969-12-23 00:00:00,1969-12-22 23:00:00,100,127,163,101,101,100,100,182 +1969-12-23 00:00:00,1969-12-22 23:00:00,121,162,174,101,101,101,101,112 +1969-12-23 00:00:00,1969-12-22 23:00:00,101,173,113,0,100,100,99,187 +1969-12-23 00:00:00,1969-12-22 23:00:00,149,182,130,160,101,101,99,181 +1969-12-23 00:00:00,1969-12-22 23:00:00,101,105,112,101,101,99,101,139 +1969-12-23 00:00:00,1969-12-22 23:00:00,102,174,199,198,101,101,100,199 +1969-12-23 00:00:00,1969-12-22 23:00:00,164,141,114,135,101,101,99,163 +1969-12-23 00:00:00,1969-12-22 23:00:00,125,134,176,0,101,101,101,139 +1969-12-23 00:00:00,1969-12-22 23:00:00,133,153,184,187,99,101,101,176 +1969-12-23 00:00:00,1969-12-22 23:00:00,134,136,178,191,101,101,100,167 +1969-12-23 00:00:00,1969-12-22 23:00:00,104,136,169,0,99,101,99,144 +1969-12-23 00:00:00,1969-12-22 23:00:00,154,144,138,129,100,100,99,177 +1969-12-23 00:00:00,1969-12-22 23:00:00,179,195,152,181,100,100,100,182 +1969-12-23 00:00:00,1969-12-22 23:00:00,135,192,128,181,100,99,99,163 +1969-12-23 00:00:00,1969-12-22 23:00:00,161,101,115,157,99,99,101,112 +1969-12-23 00:00:00,1969-12-22 23:00:00,193,123,128,187,100,101,100,148 +1969-12-23 00:00:00,1969-12-22 23:00:00,142,171,173,0,99,99,101,169 +1969-12-23 00:00:00,1969-12-22 23:00:00,160,110,175,123,100,100,101,159 +1969-12-23 00:00:00,1969-12-22 23:00:00,151,160,197,199,100,99,101,119 +1969-12-23 00:00:00,1969-12-22 23:00:00,131,114,143,113,99,101,101,128 +1969-12-23 00:00:00,1969-12-22 23:00:00,128,135,168,151,99,100,99,186 +1969-12-23 00:00:00,1969-12-22 23:00:00,105,134,188,190,100,100,101,112 +1969-12-23 00:00:00,1969-12-22 23:00:00,174,168,184,101,101,99,100,149 +1969-12-23 00:00:00,1969-12-22 23:00:00,139,130,175,121,99,99,101,123 +1969-12-23 00:00:00,1969-12-22 23:00:00,113,126,128,0,101,99,101,188 +1969-12-23 00:00:00,1969-12-22 23:00:00,106,149,162,132,100,101,101,106 +1969-12-23 00:00:00,1969-12-22 23:00:00,125,177,100,181,100,100,99,111 +1969-12-23 00:00:00,1969-12-22 23:00:00,128,165,184,180,101,99,101,200 +1969-12-23 00:00:00,1969-12-22 23:00:00,185,139,194,0,100,99,100,162 +1969-12-23 00:00:00,1969-12-22 23:00:00,138,197,175,0,100,100,101,146 +1969-12-23 00:00:00,1969-12-22 23:00:00,141,136,152,110,100,101,100,156 +1969-12-23 00:00:00,1969-12-22 23:00:00,150,179,152,145,101,100,100,187 +1969-12-23 00:00:00,1969-12-22 23:00:00,148,124,194,0,100,101,101,155 +1969-12-23 00:00:00,1969-12-22 23:00:00,187,149,192,0,101,101,99,129 +1969-12-23 00:00:00,1969-12-22 23:00:00,119,103,145,193,99,100,100,172 +1969-12-23 00:00:00,1969-12-22 23:00:00,104,164,143,189,101,100,101,133 +1969-12-23 00:00:00,1969-12-22 23:00:00,111,196,138,105,99,101,99,103 +1969-12-23 00:00:00,1969-12-22 23:00:00,118,192,181,170,101,101,100,153 +1969-12-23 00:00:00,1969-12-22 23:00:00,137,149,111,0,99,99,101,166 +1969-12-23 00:00:00,1969-12-22 23:00:00,170,127,126,154,99,100,100,195 +1969-12-23 00:00:00,1969-12-22 23:00:00,175,107,102,180,101,99,99,194 +1969-12-23 00:00:00,1969-12-22 23:00:00,161,156,190,165,99,99,101,113 +1969-12-23 00:00:00,1969-12-22 23:00:00,168,167,198,134,99,101,101,104 +1969-12-23 00:00:00,1969-12-22 23:00:00,127,168,101,174,100,99,99,111 +1969-12-23 00:00:00,1969-12-22 23:00:00,177,188,114,0,100,100,101,128 +1969-12-23 00:00:00,1969-12-22 23:00:00,113,114,104,113,101,99,99,121 +1969-12-23 00:00:00,1969-12-22 23:00:00,149,160,176,125,100,101,100,104 +1969-12-23 00:00:00,1969-12-22 23:00:00,114,185,186,155,101,99,99,186 +1969-12-23 00:00:00,1969-12-22 23:00:00,174,160,152,0,99,101,100,184 +1969-12-23 00:00:00,1969-12-22 23:00:00,173,107,194,102,99,100,100,120 +1969-12-23 00:00:00,1969-12-22 23:00:00,177,105,192,116,101,101,99,132 +1969-12-23 00:00:00,1969-12-22 23:00:00,141,111,105,174,100,99,100,134 +1969-12-23 00:00:00,1969-12-22 23:00:00,184,138,174,0,101,101,100,171 +1969-12-23 00:00:00,1969-12-22 23:00:00,105,109,140,165,100,101,99,113 +1969-12-23 00:00:00,1969-12-22 23:00:00,132,106,164,0,101,101,99,117 +1969-12-23 00:00:00,1969-12-22 23:00:00,185,142,101,159,100,100,100,107 +1969-12-23 00:00:00,1969-12-22 23:00:00,147,170,105,171,99,99,100,147 +1969-12-23 00:00:00,1969-12-22 23:00:00,185,140,143,111,100,101,99,181 +1969-12-23 00:00:00,1969-12-22 23:00:00,125,132,162,137,100,100,100,135 +1969-12-23 00:00:00,1969-12-22 23:00:00,151,128,163,118,99,100,100,140 +1969-12-23 00:00:00,1969-12-22 23:00:00,199,199,110,159,100,100,99,105 +1969-12-23 00:00:00,1969-12-22 23:00:00,136,177,130,0,100,99,99,110 +1969-12-23 00:00:00,1969-12-22 23:00:00,132,113,117,131,99,99,100,187 +1969-12-23 00:00:00,1969-12-22 23:00:00,127,168,181,150,101,100,99,180 +1969-12-23 00:00:00,1969-12-22 23:00:00,165,141,141,0,100,99,101,192 +1969-12-22 00:00:00,1969-12-21 23:00:00,107,196,0,124,99,101,100,163 +1969-12-22 00:00:00,1969-12-21 23:00:00,130,113,0,101,101,99,101,125 +1969-12-22 00:00:00,1969-12-21 23:00:00,193,119,0,110,101,99,101,187 +1969-12-22 00:00:00,1969-12-21 23:00:00,138,103,0,171,99,100,100,120 +1969-12-22 00:00:00,1969-12-21 23:00:00,145,184,0,0,99,100,101,177 +1969-12-22 00:00:00,1969-12-21 23:00:00,101,194,0,186,100,100,100,159 +1969-12-22 00:00:00,1969-12-21 23:00:00,163,181,159,139,100,99,101,100 +1969-12-22 00:00:00,1969-12-21 23:00:00,149,100,182,105,99,99,99,179 +1969-12-22 00:00:00,1969-12-21 23:00:00,175,145,169,147,99,101,99,190 +1969-12-22 00:00:00,1969-12-21 23:00:00,113,141,185,119,101,99,100,149 +1969-12-22 00:00:00,1969-12-21 23:00:00,182,184,183,0,99,100,101,134 +1969-12-22 00:00:00,1969-12-21 23:00:00,157,195,167,193,101,99,99,133 +1969-12-22 00:00:00,1969-12-21 23:00:00,158,122,185,132,100,100,99,122 +1969-12-22 00:00:00,1969-12-21 23:00:00,180,150,163,121,101,99,100,193 +1969-12-22 00:00:00,1969-12-21 23:00:00,121,106,106,106,99,100,100,155 +1969-12-22 00:00:00,1969-12-21 23:00:00,148,190,170,0,100,101,100,169 +1969-12-22 00:00:00,1969-12-21 23:00:00,133,122,180,140,99,101,101,150 +1969-12-22 00:00:00,1969-12-21 23:00:00,111,110,151,170,100,100,101,165 +1969-12-22 00:00:00,1969-12-21 23:00:00,105,139,100,160,99,100,101,143 +1969-12-22 00:00:00,1969-12-21 23:00:00,166,175,163,195,99,101,100,180 +1969-12-22 00:00:00,1969-12-21 23:00:00,134,142,125,140,100,99,101,132 +1969-12-22 00:00:00,1969-12-21 23:00:00,117,148,148,0,99,101,101,146 +1969-12-22 00:00:00,1969-12-21 23:00:00,168,128,187,100,100,101,99,175 +1969-12-22 00:00:00,1969-12-21 23:00:00,170,111,184,174,99,100,99,161 +1969-12-22 00:00:00,1969-12-21 23:00:00,145,179,191,194,99,101,100,108 +1969-12-22 00:00:00,1969-12-21 23:00:00,193,109,138,199,101,99,100,139 +1969-12-22 00:00:00,1969-12-21 23:00:00,120,189,126,194,100,100,101,194 +1969-12-22 00:00:00,1969-12-21 23:00:00,184,174,139,128,99,99,100,108 +1969-12-22 00:00:00,1969-12-21 23:00:00,183,186,157,165,101,100,101,111 +1969-12-22 00:00:00,1969-12-21 23:00:00,132,110,175,136,100,100,100,139 +1969-12-22 00:00:00,1969-12-21 23:00:00,142,125,181,103,101,100,100,121 +1969-12-22 00:00:00,1969-12-21 23:00:00,117,114,168,105,101,99,99,102 +1969-12-22 00:00:00,1969-12-21 23:00:00,148,142,149,103,101,99,100,131 +1969-12-22 00:00:00,1969-12-21 23:00:00,163,151,110,177,101,101,101,111 +1969-12-22 00:00:00,1969-12-21 23:00:00,120,172,111,177,101,101,101,175 +1969-12-22 00:00:00,1969-12-21 23:00:00,105,186,164,130,101,101,101,107 +1969-12-22 00:00:00,1969-12-21 23:00:00,153,188,162,181,100,100,99,163 +1969-12-22 00:00:00,1969-12-21 23:00:00,105,152,121,0,101,101,100,187 +1969-12-22 00:00:00,1969-12-21 23:00:00,183,111,149,108,99,99,99,108 +1969-12-22 00:00:00,1969-12-21 23:00:00,134,191,140,186,99,100,99,196 +1969-12-22 00:00:00,1969-12-21 23:00:00,190,135,177,121,99,101,101,172 +1969-12-22 00:00:00,1969-12-21 23:00:00,186,116,110,110,100,100,101,138 +1969-12-22 00:00:00,1969-12-21 23:00:00,184,114,200,125,99,101,100,134 +1969-12-22 00:00:00,1969-12-21 23:00:00,161,101,185,172,101,99,101,189 +1969-12-22 00:00:00,1969-12-21 23:00:00,144,152,139,0,100,100,99,136 +1969-12-22 00:00:00,1969-12-21 23:00:00,155,146,168,158,100,99,100,116 +1969-12-22 00:00:00,1969-12-21 23:00:00,116,101,117,0,99,101,101,173 +1969-12-22 00:00:00,1969-12-21 23:00:00,186,107,161,140,100,99,100,121 +1969-12-22 00:00:00,1969-12-21 23:00:00,152,146,189,161,99,99,99,176 +1969-12-22 00:00:00,1969-12-21 23:00:00,105,193,160,103,99,99,101,144 +1969-12-22 00:00:00,1969-12-21 23:00:00,143,181,164,0,99,99,99,165 +1969-12-22 00:00:00,1969-12-21 23:00:00,143,115,151,0,99,101,99,131 +1969-12-22 00:00:00,1969-12-21 23:00:00,130,117,189,111,101,100,100,200 +1969-12-22 00:00:00,1969-12-21 23:00:00,154,148,135,0,100,99,100,117 +1969-12-22 00:00:00,1969-12-21 23:00:00,126,104,180,157,101,99,99,174 +1969-12-22 00:00:00,1969-12-21 23:00:00,195,196,133,133,101,100,101,169 +1969-12-22 00:00:00,1969-12-21 23:00:00,105,169,187,129,101,100,99,123 +1969-12-22 00:00:00,1969-12-21 23:00:00,180,153,113,192,100,99,101,167 +1969-12-22 00:00:00,1969-12-21 23:00:00,124,125,147,0,100,101,101,128 +1969-12-22 00:00:00,1969-12-21 23:00:00,149,160,157,154,99,101,101,168 +1969-12-22 00:00:00,1969-12-21 23:00:00,142,160,116,119,100,99,100,154 +1969-12-22 00:00:00,1969-12-21 23:00:00,108,134,115,178,99,99,100,108 +1969-12-22 00:00:00,1969-12-21 23:00:00,180,195,108,0,101,101,100,191 +1969-12-22 00:00:00,1969-12-21 23:00:00,121,172,188,174,99,101,101,139 +1969-12-22 00:00:00,1969-12-21 23:00:00,119,142,106,161,100,99,101,157 +1969-12-22 00:00:00,1969-12-21 23:00:00,182,112,178,114,99,99,99,164 +1969-12-22 00:00:00,1969-12-21 23:00:00,173,120,168,0,100,101,101,135 +1969-12-22 00:00:00,1969-12-21 23:00:00,115,179,159,0,99,101,99,182 +1969-12-22 00:00:00,1969-12-21 23:00:00,137,198,188,109,101,101,99,161 +1969-12-22 00:00:00,1969-12-21 23:00:00,129,176,130,0,100,101,100,189 +1969-12-22 00:00:00,1969-12-21 23:00:00,191,133,184,191,99,100,101,173 +1969-12-22 00:00:00,1969-12-21 23:00:00,170,169,157,185,101,99,101,197 +1969-12-22 00:00:00,1969-12-21 23:00:00,111,190,164,121,100,101,101,180 +1969-12-22 00:00:00,1969-12-21 23:00:00,104,149,157,190,100,99,99,200 +1969-12-22 00:00:00,1969-12-21 23:00:00,151,128,192,102,99,101,101,179 +1969-12-22 00:00:00,1969-12-21 23:00:00,154,146,156,138,100,101,100,135 +1969-12-22 00:00:00,1969-12-21 23:00:00,184,199,148,165,100,99,101,112 +1969-12-22 00:00:00,1969-12-21 23:00:00,155,122,183,108,101,100,101,114 +1969-12-22 00:00:00,1969-12-21 23:00:00,140,117,190,0,99,101,99,122 +1969-12-22 00:00:00,1969-12-21 23:00:00,122,142,183,0,100,100,99,178 +1969-12-22 00:00:00,1969-12-21 23:00:00,135,122,117,0,100,99,100,193 +1969-12-22 00:00:00,1969-12-21 23:00:00,163,132,200,142,100,99,101,106 +1969-12-22 00:00:00,1969-12-21 23:00:00,179,169,148,0,101,99,101,170 +1969-12-22 00:00:00,1969-12-21 23:00:00,104,195,117,198,100,99,100,158 +1969-12-22 00:00:00,1969-12-21 23:00:00,158,161,185,100,100,100,100,178 +1969-12-22 00:00:00,1969-12-21 23:00:00,151,104,114,140,101,101,101,184 +1969-12-22 00:00:00,1969-12-21 23:00:00,198,120,163,0,100,101,101,162 +1969-12-22 00:00:00,1969-12-21 23:00:00,133,198,131,124,100,101,100,140 +1969-12-22 00:00:00,1969-12-21 23:00:00,186,146,173,182,101,101,100,162 +1969-12-22 00:00:00,1969-12-21 23:00:00,144,142,147,133,99,99,101,186 +1969-12-22 00:00:00,1969-12-21 23:00:00,123,148,102,176,100,99,100,119 +1969-12-22 00:00:00,1969-12-21 23:00:00,179,118,131,0,101,100,100,108 +1969-12-22 00:00:00,1969-12-21 23:00:00,188,180,189,0,100,99,100,118 +1969-12-22 00:00:00,1969-12-21 23:00:00,162,157,126,122,99,99,101,151 +1969-12-22 00:00:00,1969-12-21 23:00:00,132,103,159,145,101,100,101,197 +1969-12-22 00:00:00,1969-12-21 23:00:00,104,129,179,142,101,101,101,156 +1969-12-22 00:00:00,1969-12-21 23:00:00,121,182,101,0,99,99,99,126 +1969-12-22 00:00:00,1969-12-21 23:00:00,197,193,136,0,100,99,99,125 +1969-12-22 00:00:00,1969-12-21 23:00:00,144,127,147,180,100,100,100,113 +1969-12-22 00:00:00,1969-12-21 23:00:00,137,194,117,102,99,99,101,130 +1969-12-22 00:00:00,1969-12-21 23:00:00,129,161,176,0,101,100,100,101 +1969-12-22 00:00:00,1969-12-21 23:00:00,174,189,130,153,101,101,100,140 +1969-12-22 00:00:00,1969-12-21 23:00:00,195,165,186,140,101,100,100,174 +1969-12-22 00:00:00,1969-12-21 23:00:00,139,110,140,152,100,101,100,145 +1969-12-22 00:00:00,1969-12-21 23:00:00,113,112,180,0,101,100,99,113 +1969-12-22 00:00:00,1969-12-21 23:00:00,170,199,110,199,101,101,100,108 +1969-12-22 00:00:00,1969-12-21 23:00:00,148,177,135,143,100,101,100,168 +1969-12-22 00:00:00,1969-12-21 23:00:00,112,117,189,136,99,99,99,121 +1969-12-22 00:00:00,1969-12-21 23:00:00,190,185,188,0,101,101,101,167 +1969-12-22 00:00:00,1969-12-21 23:00:00,162,157,185,137,100,101,101,116 +1969-12-22 00:00:00,1969-12-21 23:00:00,174,148,176,137,100,99,99,142 +1969-12-22 00:00:00,1969-12-21 23:00:00,200,103,167,118,99,100,100,109 +1969-12-22 00:00:00,1969-12-21 23:00:00,106,198,104,162,101,99,100,122 +1969-12-22 00:00:00,1969-12-21 23:00:00,101,104,104,124,99,99,101,184 +1969-12-22 00:00:00,1969-12-21 23:00:00,169,160,101,0,99,100,101,196 +1969-12-22 00:00:00,1969-12-21 23:00:00,106,110,196,114,101,101,100,107 +1969-12-22 00:00:00,1969-12-21 23:00:00,135,147,117,0,100,101,101,152 +1969-12-22 00:00:00,1969-12-21 23:00:00,112,169,159,186,100,99,101,145 +1969-12-22 00:00:00,1969-12-21 23:00:00,199,115,179,145,100,100,100,149 +1969-12-22 00:00:00,1969-12-21 23:00:00,167,133,162,198,99,100,100,103 +1969-12-22 00:00:00,1969-12-21 23:00:00,179,166,161,182,99,99,100,117 +1969-12-22 00:00:00,1969-12-21 23:00:00,165,184,167,116,99,99,101,159 +1969-12-22 00:00:00,1969-12-21 23:00:00,136,158,183,159,101,99,99,195 +1969-12-22 00:00:00,1969-12-21 23:00:00,129,128,139,194,99,101,101,179 +1969-12-22 00:00:00,1969-12-21 23:00:00,108,112,188,168,99,100,100,179 +1969-12-22 00:00:00,1969-12-21 23:00:00,159,122,121,191,100,99,99,184 +1969-12-22 00:00:00,1969-12-21 23:00:00,175,131,102,132,100,101,100,189 +1969-12-22 00:00:00,1969-12-21 23:00:00,101,173,138,117,99,100,99,153 +1969-12-22 00:00:00,1969-12-21 23:00:00,114,185,190,135,100,100,101,136 +1969-12-22 00:00:00,1969-12-21 23:00:00,121,168,127,168,101,101,99,102 +1969-12-22 00:00:00,1969-12-21 23:00:00,198,109,147,130,99,100,100,100 +1969-12-22 00:00:00,1969-12-21 23:00:00,140,117,138,132,100,101,99,188 +1969-12-22 00:00:00,1969-12-21 23:00:00,174,121,160,149,99,99,99,108 +1969-12-22 00:00:00,1969-12-21 23:00:00,198,165,142,0,101,99,101,130 +1969-12-22 00:00:00,1969-12-21 23:00:00,182,177,193,172,101,99,100,198 +1969-12-22 00:00:00,1969-12-21 23:00:00,125,187,161,191,100,100,99,161 +1969-12-22 00:00:00,1969-12-21 23:00:00,138,167,127,137,100,101,99,137 +1969-12-22 00:00:00,1969-12-21 23:00:00,143,190,176,181,100,99,101,139 +1969-12-22 00:00:00,1969-12-21 23:00:00,192,100,131,156,101,101,99,107 +1969-12-22 00:00:00,1969-12-21 23:00:00,159,119,113,0,99,100,101,199 +1969-12-22 00:00:00,1969-12-21 23:00:00,167,177,132,100,100,100,100,140 +1969-12-22 00:00:00,1969-12-21 23:00:00,189,103,142,154,101,100,99,198 +1969-12-22 00:00:00,1969-12-21 23:00:00,134,137,126,149,100,100,101,167 +1969-12-22 00:00:00,1969-12-21 23:00:00,182,105,119,119,100,101,100,182 +1969-12-22 00:00:00,1969-12-21 23:00:00,120,143,150,0,100,100,100,196 +1969-12-22 00:00:00,1969-12-21 23:00:00,192,165,149,118,100,101,101,123 +1969-12-22 00:00:00,1969-12-21 23:00:00,153,162,161,126,101,99,101,125 +1969-12-22 00:00:00,1969-12-21 23:00:00,101,192,101,186,100,100,100,134 +1969-12-22 00:00:00,1969-12-21 23:00:00,163,178,114,112,101,100,99,135 +1969-12-22 00:00:00,1969-12-21 23:00:00,186,155,132,180,100,99,99,191 +1969-12-22 00:00:00,1969-12-21 23:00:00,200,102,147,112,100,99,101,136 +1969-12-22 00:00:00,1969-12-21 23:00:00,148,137,167,101,101,100,101,106 +1969-12-22 00:00:00,1969-12-21 23:00:00,159,170,165,152,99,101,100,200 +1969-12-22 00:00:00,1969-12-21 23:00:00,120,119,128,0,101,100,101,123 +1969-12-22 00:00:00,1969-12-21 23:00:00,181,128,133,107,101,101,99,101 +1969-12-22 00:00:00,1969-12-21 23:00:00,133,151,121,168,101,100,101,103 +1969-12-22 00:00:00,1969-12-21 23:00:00,149,144,105,137,99,99,99,149 +1969-12-22 00:00:00,1969-12-21 23:00:00,192,198,104,168,100,101,99,144 +1969-12-22 00:00:00,1969-12-21 23:00:00,161,123,130,139,100,101,101,151 +1969-12-22 00:00:00,1969-12-21 23:00:00,136,151,174,101,99,101,100,163 +1969-12-22 00:00:00,1969-12-21 23:00:00,170,141,172,114,99,99,100,174 +1969-12-22 00:00:00,1969-12-21 23:00:00,154,151,117,185,99,101,99,182 +1969-12-22 00:00:00,1969-12-21 23:00:00,124,127,113,124,100,99,99,127 +1969-12-22 00:00:00,1969-12-21 23:00:00,162,157,165,133,100,101,99,180 +1969-12-22 00:00:00,1969-12-21 23:00:00,167,199,163,0,99,101,100,173 +1969-12-22 00:00:00,1969-12-21 23:00:00,193,156,174,171,100,99,101,181 +1969-12-22 00:00:00,1969-12-21 23:00:00,200,130,166,122,99,100,100,151 +1969-12-22 00:00:00,1969-12-21 23:00:00,162,185,182,136,99,99,99,140 +1969-12-22 00:00:00,1969-12-21 23:00:00,187,125,148,145,101,100,100,112 +1969-12-22 00:00:00,1969-12-21 23:00:00,123,186,174,160,100,99,100,164 +1969-12-22 00:00:00,1969-12-21 23:00:00,128,105,126,143,101,100,100,144 +1969-12-22 00:00:00,1969-12-21 23:00:00,127,180,135,0,99,99,99,122 +1969-12-22 00:00:00,1969-12-21 23:00:00,190,176,110,105,99,100,99,122 +1969-12-22 00:00:00,1969-12-21 23:00:00,175,108,189,150,100,99,100,155 +1969-12-22 00:00:00,1969-12-21 23:00:00,143,165,149,180,99,100,100,176 +1969-12-22 00:00:00,1969-12-21 23:00:00,131,182,118,179,101,99,101,115 +1969-12-22 00:00:00,1969-12-21 23:00:00,129,149,164,129,101,100,100,119 +1969-12-22 00:00:00,1969-12-21 23:00:00,165,100,166,162,100,100,101,103 +1969-12-22 00:00:00,1969-12-21 23:00:00,111,160,122,127,100,99,101,121 +1969-12-22 00:00:00,1969-12-21 23:00:00,159,193,131,111,101,101,99,131 +1969-12-22 00:00:00,1969-12-21 23:00:00,156,139,173,179,100,100,101,119 +1969-12-22 00:00:00,1969-12-21 23:00:00,200,137,129,0,101,101,101,135 +1969-12-22 00:00:00,1969-12-21 23:00:00,139,190,179,147,101,100,100,157 +1969-12-22 00:00:00,1969-12-21 23:00:00,193,182,154,0,101,100,99,147 +1969-12-22 00:00:00,1969-12-21 23:00:00,106,126,114,147,101,99,101,113 +1969-12-22 00:00:00,1969-12-21 23:00:00,174,162,118,196,100,100,100,181 +1969-12-22 00:00:00,1969-12-21 23:00:00,114,196,101,187,101,99,100,107 +1969-12-22 00:00:00,1969-12-21 23:00:00,198,165,179,0,101,99,100,165 +1969-12-22 00:00:00,1969-12-21 23:00:00,200,179,102,105,101,101,101,112 +1969-12-22 00:00:00,1969-12-21 23:00:00,149,106,132,181,100,100,100,132 +1969-12-22 00:00:00,1969-12-21 23:00:00,153,111,200,0,101,99,101,180 +1969-12-22 00:00:00,1969-12-21 23:00:00,100,166,186,0,99,99,100,176 +1969-12-22 00:00:00,1969-12-21 23:00:00,121,184,148,152,101,101,99,177 +1969-12-22 00:00:00,1969-12-21 23:00:00,144,103,195,172,101,101,99,101 +1969-12-22 00:00:00,1969-12-21 23:00:00,198,101,123,139,100,99,99,187 +1969-12-22 00:00:00,1969-12-21 23:00:00,130,195,116,0,100,100,101,112 +1969-12-22 00:00:00,1969-12-21 23:00:00,125,196,193,135,99,101,99,194 +1969-12-22 00:00:00,1969-12-21 23:00:00,150,130,152,160,100,101,99,157 +1969-12-22 00:00:00,1969-12-21 23:00:00,102,196,151,0,100,101,99,182 +1969-12-22 00:00:00,1969-12-21 23:00:00,144,149,108,102,100,100,99,158 +1969-12-21 00:00:00,1969-12-20 23:00:00,154,175,0,103,99,99,101,138 +1969-12-21 00:00:00,1969-12-20 23:00:00,132,143,0,105,99,99,100,120 +1969-12-21 00:00:00,1969-12-20 23:00:00,185,124,0,158,99,101,101,116 +1969-12-21 00:00:00,1969-12-20 23:00:00,109,184,0,101,99,101,100,119 +1969-12-21 00:00:00,1969-12-20 23:00:00,171,179,0,168,99,100,99,171 +1969-12-21 00:00:00,1969-12-20 23:00:00,114,193,0,119,99,101,101,170 +1969-12-21 00:00:00,1969-12-20 23:00:00,120,100,135,178,100,100,100,126 +1969-12-21 00:00:00,1969-12-20 23:00:00,164,106,115,151,101,100,101,198 +1969-12-21 00:00:00,1969-12-20 23:00:00,153,147,185,190,101,101,101,135 +1969-12-21 00:00:00,1969-12-20 23:00:00,114,107,150,117,99,100,100,132 +1969-12-21 00:00:00,1969-12-20 23:00:00,111,173,194,111,99,101,99,169 +1969-12-21 00:00:00,1969-12-20 23:00:00,156,166,114,128,100,101,99,150 +1969-12-21 00:00:00,1969-12-20 23:00:00,101,173,161,129,101,99,100,115 +1969-12-21 00:00:00,1969-12-20 23:00:00,109,139,175,101,100,101,99,153 +1969-12-21 00:00:00,1969-12-20 23:00:00,184,108,168,175,100,101,100,191 +1969-12-21 00:00:00,1969-12-20 23:00:00,200,164,197,112,100,99,99,161 +1969-12-21 00:00:00,1969-12-20 23:00:00,139,177,119,190,100,99,100,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,200,129,102,195,99,101,100,134 +1969-12-21 00:00:00,1969-12-20 23:00:00,144,196,189,151,100,99,101,139 +1969-12-21 00:00:00,1969-12-20 23:00:00,183,110,195,161,100,99,99,108 +1969-12-21 00:00:00,1969-12-20 23:00:00,116,161,118,111,99,100,100,176 +1969-12-21 00:00:00,1969-12-20 23:00:00,144,112,197,170,100,99,99,145 +1969-12-21 00:00:00,1969-12-20 23:00:00,166,101,111,0,99,100,101,113 +1969-12-21 00:00:00,1969-12-20 23:00:00,138,147,149,156,100,101,100,196 +1969-12-21 00:00:00,1969-12-20 23:00:00,146,198,130,112,99,100,101,145 +1969-12-21 00:00:00,1969-12-20 23:00:00,187,157,198,157,99,99,99,113 +1969-12-21 00:00:00,1969-12-20 23:00:00,113,175,154,0,99,101,100,147 +1969-12-21 00:00:00,1969-12-20 23:00:00,101,176,168,112,99,101,101,164 +1969-12-21 00:00:00,1969-12-20 23:00:00,192,194,133,150,100,99,100,133 +1969-12-21 00:00:00,1969-12-20 23:00:00,124,115,145,0,100,101,101,137 +1969-12-21 00:00:00,1969-12-20 23:00:00,194,152,137,198,101,99,100,163 +1969-12-21 00:00:00,1969-12-20 23:00:00,126,114,185,131,99,100,99,157 +1969-12-21 00:00:00,1969-12-20 23:00:00,138,186,131,0,101,99,101,118 +1969-12-21 00:00:00,1969-12-20 23:00:00,102,108,195,188,100,100,101,126 +1969-12-21 00:00:00,1969-12-20 23:00:00,154,133,143,108,99,101,100,138 +1969-12-21 00:00:00,1969-12-20 23:00:00,126,150,189,132,101,100,101,187 +1969-12-21 00:00:00,1969-12-20 23:00:00,177,115,117,157,101,100,99,104 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,101,173,117,100,100,100,177 +1969-12-21 00:00:00,1969-12-20 23:00:00,159,149,101,0,99,99,100,197 +1969-12-21 00:00:00,1969-12-20 23:00:00,154,197,132,117,101,99,99,101 +1969-12-21 00:00:00,1969-12-20 23:00:00,161,176,141,143,101,99,100,200 +1969-12-21 00:00:00,1969-12-20 23:00:00,172,166,158,122,99,101,99,189 +1969-12-21 00:00:00,1969-12-20 23:00:00,200,150,141,0,99,99,101,176 +1969-12-21 00:00:00,1969-12-20 23:00:00,104,133,195,107,100,101,100,193 +1969-12-21 00:00:00,1969-12-20 23:00:00,154,162,102,119,100,100,100,106 +1969-12-21 00:00:00,1969-12-20 23:00:00,147,154,165,0,100,100,100,180 +1969-12-21 00:00:00,1969-12-20 23:00:00,102,105,120,112,101,101,101,151 +1969-12-21 00:00:00,1969-12-20 23:00:00,198,136,122,153,100,101,100,146 +1969-12-21 00:00:00,1969-12-20 23:00:00,149,119,145,117,99,100,100,192 +1969-12-21 00:00:00,1969-12-20 23:00:00,103,152,128,0,100,100,99,151 +1969-12-21 00:00:00,1969-12-20 23:00:00,159,183,122,137,101,100,100,127 +1969-12-21 00:00:00,1969-12-20 23:00:00,200,146,182,0,101,100,100,182 +1969-12-21 00:00:00,1969-12-20 23:00:00,192,185,112,0,99,100,101,112 +1969-12-21 00:00:00,1969-12-20 23:00:00,190,151,186,0,101,101,101,156 +1969-12-21 00:00:00,1969-12-20 23:00:00,144,104,184,155,100,101,99,152 +1969-12-21 00:00:00,1969-12-20 23:00:00,122,175,165,183,101,99,99,180 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,195,178,147,101,101,99,117 +1969-12-21 00:00:00,1969-12-20 23:00:00,175,180,114,0,100,101,100,133 +1969-12-21 00:00:00,1969-12-20 23:00:00,131,152,137,149,100,100,99,110 +1969-12-21 00:00:00,1969-12-20 23:00:00,143,179,153,125,99,100,99,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,118,109,170,0,99,99,100,111 +1969-12-21 00:00:00,1969-12-20 23:00:00,146,114,198,135,100,100,101,117 +1969-12-21 00:00:00,1969-12-20 23:00:00,167,166,200,0,99,101,99,152 +1969-12-21 00:00:00,1969-12-20 23:00:00,131,174,129,193,101,99,99,111 +1969-12-21 00:00:00,1969-12-20 23:00:00,121,183,160,152,99,99,99,133 +1969-12-21 00:00:00,1969-12-20 23:00:00,196,131,187,0,100,100,100,196 +1969-12-21 00:00:00,1969-12-20 23:00:00,179,135,144,108,99,99,100,126 +1969-12-21 00:00:00,1969-12-20 23:00:00,148,106,190,148,99,100,100,190 +1969-12-21 00:00:00,1969-12-20 23:00:00,181,115,126,0,99,99,100,125 +1969-12-21 00:00:00,1969-12-20 23:00:00,160,155,127,0,100,100,101,128 +1969-12-21 00:00:00,1969-12-20 23:00:00,196,128,157,118,101,101,100,193 +1969-12-21 00:00:00,1969-12-20 23:00:00,178,122,184,154,100,100,99,126 +1969-12-21 00:00:00,1969-12-20 23:00:00,110,141,110,0,99,99,99,195 +1969-12-21 00:00:00,1969-12-20 23:00:00,162,152,156,0,99,99,99,159 +1969-12-21 00:00:00,1969-12-20 23:00:00,124,118,163,130,101,100,99,188 +1969-12-21 00:00:00,1969-12-20 23:00:00,194,103,126,0,101,100,101,110 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,136,159,111,101,99,100,143 +1969-12-21 00:00:00,1969-12-20 23:00:00,189,133,130,147,101,100,99,151 +1969-12-21 00:00:00,1969-12-20 23:00:00,175,178,174,132,100,99,101,127 +1969-12-21 00:00:00,1969-12-20 23:00:00,159,131,181,184,100,100,101,170 +1969-12-21 00:00:00,1969-12-20 23:00:00,172,144,154,0,101,99,100,163 +1969-12-21 00:00:00,1969-12-20 23:00:00,133,105,113,0,99,100,99,121 +1969-12-21 00:00:00,1969-12-20 23:00:00,100,118,115,165,100,99,100,142 +1969-12-21 00:00:00,1969-12-20 23:00:00,133,132,126,173,99,101,100,145 +1969-12-21 00:00:00,1969-12-20 23:00:00,130,179,156,153,100,99,99,185 +1969-12-21 00:00:00,1969-12-20 23:00:00,128,135,113,162,100,99,101,158 +1969-12-21 00:00:00,1969-12-20 23:00:00,115,115,197,187,99,99,101,195 +1969-12-21 00:00:00,1969-12-20 23:00:00,195,138,125,190,101,99,101,108 +1969-12-21 00:00:00,1969-12-20 23:00:00,132,200,185,136,99,101,101,165 +1969-12-21 00:00:00,1969-12-20 23:00:00,127,180,165,141,99,100,99,153 +1969-12-21 00:00:00,1969-12-20 23:00:00,124,104,111,156,100,101,100,103 +1969-12-21 00:00:00,1969-12-20 23:00:00,197,173,193,0,100,101,101,195 +1969-12-21 00:00:00,1969-12-20 23:00:00,152,176,102,182,100,99,99,193 +1969-12-21 00:00:00,1969-12-20 23:00:00,174,100,160,164,99,101,100,112 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,188,124,114,101,99,99,126 +1969-12-21 00:00:00,1969-12-20 23:00:00,154,178,182,173,99,101,99,150 +1969-12-21 00:00:00,1969-12-20 23:00:00,194,109,178,105,99,101,100,199 +1969-12-21 00:00:00,1969-12-20 23:00:00,144,117,142,139,101,101,101,160 +1969-12-21 00:00:00,1969-12-20 23:00:00,155,161,138,165,101,100,100,132 +1969-12-21 00:00:00,1969-12-20 23:00:00,119,109,125,0,100,99,100,186 +1969-12-21 00:00:00,1969-12-20 23:00:00,166,174,145,149,100,100,100,162 +1969-12-21 00:00:00,1969-12-20 23:00:00,157,149,195,0,99,99,100,107 +1969-12-21 00:00:00,1969-12-20 23:00:00,124,107,142,0,99,99,101,105 +1969-12-21 00:00:00,1969-12-20 23:00:00,109,101,192,140,99,99,100,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,112,130,178,124,101,99,99,160 +1969-12-21 00:00:00,1969-12-20 23:00:00,196,163,196,128,99,99,99,180 +1969-12-21 00:00:00,1969-12-20 23:00:00,158,195,115,137,100,101,99,194 +1969-12-21 00:00:00,1969-12-20 23:00:00,164,188,170,0,101,99,99,145 +1969-12-21 00:00:00,1969-12-20 23:00:00,136,136,198,170,99,99,100,122 +1969-12-21 00:00:00,1969-12-20 23:00:00,191,109,159,184,101,101,99,188 +1969-12-21 00:00:00,1969-12-20 23:00:00,122,129,104,147,99,100,100,172 +1969-12-21 00:00:00,1969-12-20 23:00:00,122,137,196,0,99,100,99,195 +1969-12-21 00:00:00,1969-12-20 23:00:00,195,128,166,190,100,101,100,181 +1969-12-21 00:00:00,1969-12-20 23:00:00,165,108,162,200,100,101,101,108 +1969-12-21 00:00:00,1969-12-20 23:00:00,133,140,123,117,99,101,99,112 +1969-12-21 00:00:00,1969-12-20 23:00:00,172,129,186,191,99,99,100,166 +1969-12-21 00:00:00,1969-12-20 23:00:00,114,168,167,180,99,101,99,158 +1969-12-21 00:00:00,1969-12-20 23:00:00,148,133,163,0,101,100,101,200 +1969-12-21 00:00:00,1969-12-20 23:00:00,189,180,137,106,100,101,101,109 +1969-12-21 00:00:00,1969-12-20 23:00:00,137,194,198,176,101,101,100,126 +1969-12-21 00:00:00,1969-12-20 23:00:00,147,183,140,120,99,101,99,123 +1969-12-21 00:00:00,1969-12-20 23:00:00,156,139,116,125,99,100,99,181 +1969-12-21 00:00:00,1969-12-20 23:00:00,122,131,116,0,100,101,99,151 +1969-12-21 00:00:00,1969-12-20 23:00:00,167,154,100,0,101,101,100,105 +1969-12-21 00:00:00,1969-12-20 23:00:00,179,102,124,101,99,101,100,182 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,101,120,167,100,99,101,145 +1969-12-21 00:00:00,1969-12-20 23:00:00,132,116,197,115,99,101,101,157 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,152,179,121,100,100,101,158 +1969-12-21 00:00:00,1969-12-20 23:00:00,120,150,134,137,99,101,101,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,124,151,174,149,99,99,100,182 +1969-12-21 00:00:00,1969-12-20 23:00:00,114,135,138,0,99,101,101,200 +1969-12-21 00:00:00,1969-12-20 23:00:00,172,141,154,179,99,99,101,100 +1969-12-21 00:00:00,1969-12-20 23:00:00,147,122,192,127,99,101,100,182 +1969-12-21 00:00:00,1969-12-20 23:00:00,133,130,166,185,100,99,101,127 +1969-12-21 00:00:00,1969-12-20 23:00:00,132,199,168,0,100,99,100,196 +1969-12-21 00:00:00,1969-12-20 23:00:00,162,154,136,105,100,101,100,134 +1969-12-21 00:00:00,1969-12-20 23:00:00,106,177,158,156,100,100,100,162 +1969-12-21 00:00:00,1969-12-20 23:00:00,115,187,194,122,99,100,101,120 +1969-12-21 00:00:00,1969-12-20 23:00:00,135,133,175,0,99,101,101,120 +1969-12-21 00:00:00,1969-12-20 23:00:00,148,121,126,0,101,99,99,151 +1969-12-21 00:00:00,1969-12-20 23:00:00,145,179,138,189,100,101,100,161 +1969-12-21 00:00:00,1969-12-20 23:00:00,126,177,186,186,100,99,101,182 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,162,107,143,99,100,99,192 +1969-12-21 00:00:00,1969-12-20 23:00:00,157,198,109,193,101,99,99,117 +1969-12-21 00:00:00,1969-12-20 23:00:00,139,177,187,0,100,101,99,161 +1969-12-21 00:00:00,1969-12-20 23:00:00,107,180,102,0,100,101,99,186 +1969-12-21 00:00:00,1969-12-20 23:00:00,135,141,176,174,100,100,101,183 +1969-12-21 00:00:00,1969-12-20 23:00:00,141,102,191,196,99,99,101,144 +1969-12-21 00:00:00,1969-12-20 23:00:00,170,148,116,144,101,99,99,189 +1969-12-21 00:00:00,1969-12-20 23:00:00,131,127,110,110,100,100,101,134 +1969-12-21 00:00:00,1969-12-20 23:00:00,155,161,192,150,101,101,99,177 +1969-12-21 00:00:00,1969-12-20 23:00:00,118,132,105,140,101,100,99,114 +1969-12-21 00:00:00,1969-12-20 23:00:00,119,104,120,140,99,99,99,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,103,125,199,176,99,100,101,138 +1969-12-21 00:00:00,1969-12-20 23:00:00,192,120,143,182,100,100,99,197 +1969-12-21 00:00:00,1969-12-20 23:00:00,179,174,174,166,101,99,99,148 +1969-12-21 00:00:00,1969-12-20 23:00:00,152,180,120,122,100,100,101,192 +1969-12-21 00:00:00,1969-12-20 23:00:00,152,189,100,166,101,100,101,162 +1969-12-21 00:00:00,1969-12-20 23:00:00,158,168,135,0,101,101,101,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,164,137,129,114,99,99,101,181 +1969-12-21 00:00:00,1969-12-20 23:00:00,176,122,175,176,101,101,100,151 +1969-12-21 00:00:00,1969-12-20 23:00:00,198,163,193,118,99,100,101,104 +1969-12-21 00:00:00,1969-12-20 23:00:00,174,180,102,170,100,100,99,192 +1969-12-21 00:00:00,1969-12-20 23:00:00,106,144,191,100,100,100,100,154 +1969-12-21 00:00:00,1969-12-20 23:00:00,194,123,161,153,101,99,99,121 +1969-12-21 00:00:00,1969-12-20 23:00:00,169,155,175,117,99,99,99,163 +1969-12-21 00:00:00,1969-12-20 23:00:00,137,118,174,0,100,100,100,170 +1969-12-21 00:00:00,1969-12-20 23:00:00,174,169,123,187,100,100,101,159 +1969-12-21 00:00:00,1969-12-20 23:00:00,162,105,157,105,100,101,99,163 +1969-12-21 00:00:00,1969-12-20 23:00:00,132,103,198,149,99,101,100,194 +1969-12-21 00:00:00,1969-12-20 23:00:00,183,143,117,140,99,100,99,135 +1969-12-21 00:00:00,1969-12-20 23:00:00,112,197,182,0,100,100,101,183 +1969-12-21 00:00:00,1969-12-20 23:00:00,186,104,140,108,101,99,101,153 +1969-12-21 00:00:00,1969-12-20 23:00:00,115,169,141,189,99,99,99,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,152,112,112,181,100,99,101,200 +1969-12-21 00:00:00,1969-12-20 23:00:00,149,199,160,0,100,101,99,153 +1969-12-21 00:00:00,1969-12-20 23:00:00,145,179,148,0,100,99,100,106 +1969-12-21 00:00:00,1969-12-20 23:00:00,122,128,118,108,100,99,99,125 +1969-12-21 00:00:00,1969-12-20 23:00:00,144,138,168,0,101,101,99,134 +1969-12-21 00:00:00,1969-12-20 23:00:00,178,151,104,112,101,100,100,159 +1969-12-21 00:00:00,1969-12-20 23:00:00,166,145,127,101,100,101,100,179 +1969-12-21 00:00:00,1969-12-20 23:00:00,135,108,192,0,99,99,99,171 +1969-12-21 00:00:00,1969-12-20 23:00:00,128,134,171,114,99,101,99,154 +1969-12-21 00:00:00,1969-12-20 23:00:00,199,109,168,167,99,99,99,168 +1969-12-21 00:00:00,1969-12-20 23:00:00,146,153,143,132,100,99,100,120 +1969-12-21 00:00:00,1969-12-20 23:00:00,154,119,183,163,101,101,99,195 +1969-12-21 00:00:00,1969-12-20 23:00:00,124,194,181,148,99,101,101,189 +1969-12-21 00:00:00,1969-12-20 23:00:00,119,134,137,148,101,99,99,194 +1969-12-21 00:00:00,1969-12-20 23:00:00,117,180,112,0,101,99,100,173 +1969-12-21 00:00:00,1969-12-20 23:00:00,194,129,115,187,99,100,100,124 +1969-12-21 00:00:00,1969-12-20 23:00:00,186,137,175,0,99,100,99,138 +1969-12-21 00:00:00,1969-12-20 23:00:00,123,111,126,191,101,101,100,117 +1969-12-21 00:00:00,1969-12-20 23:00:00,155,187,159,125,100,100,101,110 +1969-12-21 00:00:00,1969-12-20 23:00:00,135,187,143,131,99,99,99,119 +1969-12-21 00:00:00,1969-12-20 23:00:00,123,178,193,129,101,101,100,103 +1969-12-21 00:00:00,1969-12-20 23:00:00,150,143,195,0,101,99,99,128 +1969-12-21 00:00:00,1969-12-20 23:00:00,166,123,194,123,101,100,100,176 +1969-12-21 00:00:00,1969-12-20 23:00:00,116,191,135,195,99,100,101,175 +1969-12-21 00:00:00,1969-12-20 23:00:00,111,172,166,148,99,100,99,160 +1969-12-21 00:00:00,1969-12-20 23:00:00,181,141,152,152,101,99,99,114 +1969-12-20 00:00:00,1969-12-19 23:00:00,131,152,0,0,101,99,99,162 +1969-12-20 00:00:00,1969-12-19 23:00:00,169,152,0,181,99,100,100,160 +1969-12-20 00:00:00,1969-12-19 23:00:00,194,158,0,0,101,101,100,186 +1969-12-20 00:00:00,1969-12-19 23:00:00,191,172,0,141,101,99,101,118 +1969-12-20 00:00:00,1969-12-19 23:00:00,170,159,0,148,99,101,100,174 +1969-12-20 00:00:00,1969-12-19 23:00:00,117,186,0,101,101,99,99,157 +1969-12-20 00:00:00,1969-12-19 23:00:00,155,169,169,171,99,99,99,145 +1969-12-20 00:00:00,1969-12-19 23:00:00,129,136,118,150,100,100,100,198 +1969-12-20 00:00:00,1969-12-19 23:00:00,103,182,186,184,99,99,99,180 +1969-12-20 00:00:00,1969-12-19 23:00:00,117,131,141,0,99,99,99,144 +1969-12-20 00:00:00,1969-12-19 23:00:00,112,117,138,185,100,101,101,193 +1969-12-20 00:00:00,1969-12-19 23:00:00,106,122,158,129,101,100,100,153 +1969-12-20 00:00:00,1969-12-19 23:00:00,163,103,168,152,101,101,100,122 +1969-12-20 00:00:00,1969-12-19 23:00:00,104,149,169,107,99,101,101,118 +1969-12-20 00:00:00,1969-12-19 23:00:00,166,161,111,0,100,99,99,126 +1969-12-20 00:00:00,1969-12-19 23:00:00,193,111,149,131,101,99,101,131 +1969-12-20 00:00:00,1969-12-19 23:00:00,196,110,198,111,100,101,101,108 +1969-12-20 00:00:00,1969-12-19 23:00:00,127,183,165,184,101,100,99,123 +1969-12-20 00:00:00,1969-12-19 23:00:00,197,102,164,166,100,100,100,179 +1969-12-20 00:00:00,1969-12-19 23:00:00,136,163,106,156,99,100,99,101 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,170,150,197,99,100,99,163 +1969-12-20 00:00:00,1969-12-19 23:00:00,142,186,187,0,99,101,101,106 +1969-12-20 00:00:00,1969-12-19 23:00:00,153,133,109,183,100,100,101,172 +1969-12-20 00:00:00,1969-12-19 23:00:00,181,161,142,107,100,99,99,178 +1969-12-20 00:00:00,1969-12-19 23:00:00,134,104,178,159,101,100,101,184 +1969-12-20 00:00:00,1969-12-19 23:00:00,146,175,128,165,101,99,100,182 +1969-12-20 00:00:00,1969-12-19 23:00:00,130,136,124,0,101,99,99,109 +1969-12-20 00:00:00,1969-12-19 23:00:00,190,199,187,102,101,101,99,141 +1969-12-20 00:00:00,1969-12-19 23:00:00,155,155,181,190,99,99,100,185 +1969-12-20 00:00:00,1969-12-19 23:00:00,135,132,130,186,100,99,100,126 +1969-12-20 00:00:00,1969-12-19 23:00:00,105,124,114,129,101,100,101,114 +1969-12-20 00:00:00,1969-12-19 23:00:00,113,164,179,149,99,101,100,169 +1969-12-20 00:00:00,1969-12-19 23:00:00,124,126,121,175,99,99,100,169 +1969-12-20 00:00:00,1969-12-19 23:00:00,124,105,106,151,100,99,99,147 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,184,160,0,99,100,99,168 +1969-12-20 00:00:00,1969-12-19 23:00:00,126,179,165,174,99,100,99,173 +1969-12-20 00:00:00,1969-12-19 23:00:00,115,115,112,151,99,101,99,137 +1969-12-20 00:00:00,1969-12-19 23:00:00,144,126,101,174,100,100,100,124 +1969-12-20 00:00:00,1969-12-19 23:00:00,112,192,157,129,101,99,100,181 +1969-12-20 00:00:00,1969-12-19 23:00:00,163,163,148,170,100,99,101,183 +1969-12-20 00:00:00,1969-12-19 23:00:00,106,188,103,125,100,101,101,103 +1969-12-20 00:00:00,1969-12-19 23:00:00,103,160,138,0,99,101,99,129 +1969-12-20 00:00:00,1969-12-19 23:00:00,154,149,148,196,101,99,100,143 +1969-12-20 00:00:00,1969-12-19 23:00:00,196,167,122,0,100,99,100,153 +1969-12-20 00:00:00,1969-12-19 23:00:00,110,163,109,157,101,101,100,149 +1969-12-20 00:00:00,1969-12-19 23:00:00,144,121,173,102,100,99,100,190 +1969-12-20 00:00:00,1969-12-19 23:00:00,200,156,171,117,99,100,99,157 +1969-12-20 00:00:00,1969-12-19 23:00:00,141,151,182,167,100,101,100,197 +1969-12-20 00:00:00,1969-12-19 23:00:00,192,125,151,105,100,99,100,115 +1969-12-20 00:00:00,1969-12-19 23:00:00,124,183,124,184,100,101,100,125 +1969-12-20 00:00:00,1969-12-19 23:00:00,160,152,107,160,100,100,100,119 +1969-12-20 00:00:00,1969-12-19 23:00:00,122,179,122,160,100,101,99,156 +1969-12-20 00:00:00,1969-12-19 23:00:00,160,178,156,196,100,101,101,160 +1969-12-20 00:00:00,1969-12-19 23:00:00,100,155,136,139,101,99,101,191 +1969-12-20 00:00:00,1969-12-19 23:00:00,129,121,106,117,101,99,100,190 +1969-12-20 00:00:00,1969-12-19 23:00:00,189,141,181,167,100,100,101,158 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,101,114,121,101,101,101,109 +1969-12-20 00:00:00,1969-12-19 23:00:00,178,169,119,0,101,101,99,178 +1969-12-20 00:00:00,1969-12-19 23:00:00,155,116,111,143,101,100,100,164 +1969-12-20 00:00:00,1969-12-19 23:00:00,192,166,179,171,101,101,101,126 +1969-12-20 00:00:00,1969-12-19 23:00:00,187,185,128,145,100,101,100,180 +1969-12-20 00:00:00,1969-12-19 23:00:00,110,113,167,180,99,101,99,185 +1969-12-20 00:00:00,1969-12-19 23:00:00,142,178,163,108,100,99,101,193 +1969-12-20 00:00:00,1969-12-19 23:00:00,196,195,121,140,99,100,100,200 +1969-12-20 00:00:00,1969-12-19 23:00:00,110,181,155,141,99,99,100,132 +1969-12-20 00:00:00,1969-12-19 23:00:00,101,122,143,0,99,100,100,159 +1969-12-20 00:00:00,1969-12-19 23:00:00,174,135,158,136,101,101,99,149 +1969-12-20 00:00:00,1969-12-19 23:00:00,130,150,112,119,101,100,100,109 +1969-12-20 00:00:00,1969-12-19 23:00:00,156,169,132,180,100,101,99,179 +1969-12-20 00:00:00,1969-12-19 23:00:00,196,190,188,136,100,100,100,117 +1969-12-20 00:00:00,1969-12-19 23:00:00,132,130,126,134,100,101,100,134 +1969-12-20 00:00:00,1969-12-19 23:00:00,196,116,129,103,101,99,101,162 +1969-12-20 00:00:00,1969-12-19 23:00:00,172,164,145,0,100,101,100,131 +1969-12-20 00:00:00,1969-12-19 23:00:00,155,172,170,0,101,100,99,173 +1969-12-20 00:00:00,1969-12-19 23:00:00,165,179,163,0,99,100,99,128 +1969-12-20 00:00:00,1969-12-19 23:00:00,124,144,178,186,101,101,99,184 +1969-12-20 00:00:00,1969-12-19 23:00:00,177,165,132,161,100,100,100,113 +1969-12-20 00:00:00,1969-12-19 23:00:00,165,133,178,119,99,99,101,177 +1969-12-20 00:00:00,1969-12-19 23:00:00,118,142,172,130,100,100,101,149 +1969-12-20 00:00:00,1969-12-19 23:00:00,137,171,169,111,101,99,101,128 +1969-12-20 00:00:00,1969-12-19 23:00:00,105,186,180,123,100,101,99,170 +1969-12-20 00:00:00,1969-12-19 23:00:00,148,101,117,163,99,99,100,138 +1969-12-20 00:00:00,1969-12-19 23:00:00,154,189,124,172,101,101,101,197 +1969-12-20 00:00:00,1969-12-19 23:00:00,115,154,111,186,101,99,100,167 +1969-12-20 00:00:00,1969-12-19 23:00:00,115,115,124,162,101,101,100,134 +1969-12-20 00:00:00,1969-12-19 23:00:00,128,102,111,0,100,99,99,165 +1969-12-20 00:00:00,1969-12-19 23:00:00,188,177,195,0,99,99,101,101 +1969-12-20 00:00:00,1969-12-19 23:00:00,197,174,102,168,101,101,99,160 +1969-12-20 00:00:00,1969-12-19 23:00:00,193,144,172,103,99,101,100,125 +1969-12-20 00:00:00,1969-12-19 23:00:00,144,182,127,196,99,100,100,140 +1969-12-20 00:00:00,1969-12-19 23:00:00,106,113,200,174,100,99,101,163 +1969-12-20 00:00:00,1969-12-19 23:00:00,194,160,116,134,101,100,100,106 +1969-12-20 00:00:00,1969-12-19 23:00:00,185,156,128,127,100,99,101,132 +1969-12-20 00:00:00,1969-12-19 23:00:00,100,158,121,119,100,101,99,180 +1969-12-20 00:00:00,1969-12-19 23:00:00,168,120,133,0,100,101,101,141 +1969-12-20 00:00:00,1969-12-19 23:00:00,112,196,143,144,99,99,101,170 +1969-12-20 00:00:00,1969-12-19 23:00:00,139,137,161,114,99,101,101,180 +1969-12-20 00:00:00,1969-12-19 23:00:00,193,132,111,183,100,100,99,111 +1969-12-20 00:00:00,1969-12-19 23:00:00,171,135,123,166,100,100,99,169 +1969-12-20 00:00:00,1969-12-19 23:00:00,122,136,167,157,100,99,99,103 +1969-12-20 00:00:00,1969-12-19 23:00:00,178,200,198,0,99,100,99,178 +1969-12-20 00:00:00,1969-12-19 23:00:00,159,169,111,137,100,99,101,168 +1969-12-20 00:00:00,1969-12-19 23:00:00,180,199,146,0,100,100,99,139 +1969-12-20 00:00:00,1969-12-19 23:00:00,175,106,117,140,99,100,99,163 +1969-12-20 00:00:00,1969-12-19 23:00:00,194,187,125,106,100,101,100,136 +1969-12-20 00:00:00,1969-12-19 23:00:00,102,142,180,139,101,100,100,146 +1969-12-20 00:00:00,1969-12-19 23:00:00,126,157,124,0,99,99,101,116 +1969-12-20 00:00:00,1969-12-19 23:00:00,117,166,178,110,99,101,101,195 +1969-12-20 00:00:00,1969-12-19 23:00:00,194,162,195,147,101,101,99,142 +1969-12-20 00:00:00,1969-12-19 23:00:00,139,163,135,168,100,101,100,191 +1969-12-20 00:00:00,1969-12-19 23:00:00,103,198,184,117,99,101,101,162 +1969-12-20 00:00:00,1969-12-19 23:00:00,160,153,116,122,101,100,101,111 +1969-12-20 00:00:00,1969-12-19 23:00:00,146,164,108,109,101,99,99,161 +1969-12-20 00:00:00,1969-12-19 23:00:00,162,108,103,107,101,100,100,195 +1969-12-20 00:00:00,1969-12-19 23:00:00,113,136,148,164,99,101,101,109 +1969-12-20 00:00:00,1969-12-19 23:00:00,110,170,157,185,101,100,101,113 +1969-12-20 00:00:00,1969-12-19 23:00:00,179,195,116,0,101,101,100,102 +1969-12-20 00:00:00,1969-12-19 23:00:00,108,105,121,189,100,101,100,196 +1969-12-20 00:00:00,1969-12-19 23:00:00,126,177,115,155,101,100,99,165 +1969-12-20 00:00:00,1969-12-19 23:00:00,161,195,107,174,101,100,100,139 +1969-12-20 00:00:00,1969-12-19 23:00:00,185,164,140,143,99,99,100,105 +1969-12-20 00:00:00,1969-12-19 23:00:00,198,156,182,142,101,99,100,185 +1969-12-20 00:00:00,1969-12-19 23:00:00,178,139,183,194,101,99,100,156 +1969-12-20 00:00:00,1969-12-19 23:00:00,151,146,133,189,99,101,99,104 +1969-12-20 00:00:00,1969-12-19 23:00:00,158,176,129,144,99,99,101,161 +1969-12-20 00:00:00,1969-12-19 23:00:00,186,173,195,133,101,100,101,139 +1969-12-20 00:00:00,1969-12-19 23:00:00,137,155,185,0,101,101,100,145 +1969-12-20 00:00:00,1969-12-19 23:00:00,155,184,126,155,100,100,101,119 +1969-12-20 00:00:00,1969-12-19 23:00:00,136,127,102,122,99,101,101,150 +1969-12-20 00:00:00,1969-12-19 23:00:00,182,160,131,157,99,99,101,166 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,200,118,0,99,99,100,147 +1969-12-20 00:00:00,1969-12-19 23:00:00,153,177,111,126,100,100,100,198 +1969-12-20 00:00:00,1969-12-19 23:00:00,135,158,102,196,99,99,101,163 +1969-12-20 00:00:00,1969-12-19 23:00:00,124,101,141,0,99,99,100,119 +1969-12-20 00:00:00,1969-12-19 23:00:00,130,138,171,0,99,100,99,184 +1969-12-20 00:00:00,1969-12-19 23:00:00,140,152,184,171,99,100,101,124 +1969-12-20 00:00:00,1969-12-19 23:00:00,118,170,116,106,100,99,100,159 +1969-12-20 00:00:00,1969-12-19 23:00:00,123,106,185,0,99,100,101,112 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,200,186,0,99,101,101,103 +1969-12-20 00:00:00,1969-12-19 23:00:00,194,177,183,171,99,100,99,191 +1969-12-20 00:00:00,1969-12-19 23:00:00,118,173,140,114,99,99,101,112 +1969-12-20 00:00:00,1969-12-19 23:00:00,145,177,123,110,100,100,100,147 +1969-12-20 00:00:00,1969-12-19 23:00:00,167,123,153,120,101,101,100,157 +1969-12-20 00:00:00,1969-12-19 23:00:00,102,128,108,118,101,99,101,127 +1969-12-20 00:00:00,1969-12-19 23:00:00,176,116,134,0,101,101,100,195 +1969-12-20 00:00:00,1969-12-19 23:00:00,114,132,130,0,100,100,101,108 +1969-12-20 00:00:00,1969-12-19 23:00:00,131,199,190,135,99,100,101,197 +1969-12-20 00:00:00,1969-12-19 23:00:00,148,125,132,0,101,101,100,175 +1969-12-20 00:00:00,1969-12-19 23:00:00,194,171,153,163,100,99,100,134 +1969-12-20 00:00:00,1969-12-19 23:00:00,147,122,171,0,101,101,100,156 +1969-12-20 00:00:00,1969-12-19 23:00:00,133,112,193,139,100,100,101,163 +1969-12-20 00:00:00,1969-12-19 23:00:00,108,182,126,186,101,99,100,173 +1969-12-20 00:00:00,1969-12-19 23:00:00,104,191,182,162,100,101,99,179 +1969-12-20 00:00:00,1969-12-19 23:00:00,180,132,148,155,100,100,99,158 +1969-12-20 00:00:00,1969-12-19 23:00:00,121,117,176,152,101,100,101,166 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,166,127,0,101,101,101,144 +1969-12-20 00:00:00,1969-12-19 23:00:00,191,102,148,119,101,99,101,106 +1969-12-20 00:00:00,1969-12-19 23:00:00,109,110,176,0,99,101,99,158 +1969-12-20 00:00:00,1969-12-19 23:00:00,137,124,174,120,101,100,101,128 +1969-12-20 00:00:00,1969-12-19 23:00:00,100,123,193,112,99,101,100,166 +1969-12-20 00:00:00,1969-12-19 23:00:00,156,100,136,191,101,101,100,147 +1969-12-20 00:00:00,1969-12-19 23:00:00,179,190,154,150,99,99,101,125 +1969-12-20 00:00:00,1969-12-19 23:00:00,168,162,134,177,101,99,101,173 +1969-12-20 00:00:00,1969-12-19 23:00:00,124,103,199,111,100,101,100,198 +1969-12-20 00:00:00,1969-12-19 23:00:00,199,116,143,108,100,99,101,128 +1969-12-20 00:00:00,1969-12-19 23:00:00,170,129,114,0,100,101,101,122 +1969-12-20 00:00:00,1969-12-19 23:00:00,135,160,104,111,100,101,101,106 +1969-12-20 00:00:00,1969-12-19 23:00:00,189,183,157,167,100,101,101,138 +1969-12-20 00:00:00,1969-12-19 23:00:00,197,157,166,177,100,99,99,177 +1969-12-20 00:00:00,1969-12-19 23:00:00,161,163,117,196,100,99,99,101 +1969-12-20 00:00:00,1969-12-19 23:00:00,193,192,191,183,100,100,100,188 +1969-12-20 00:00:00,1969-12-19 23:00:00,172,196,171,115,99,100,100,144 +1969-12-20 00:00:00,1969-12-19 23:00:00,177,176,169,119,101,99,101,160 +1969-12-20 00:00:00,1969-12-19 23:00:00,180,110,155,194,99,101,100,157 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,168,155,186,101,100,101,150 +1969-12-20 00:00:00,1969-12-19 23:00:00,152,118,177,166,99,101,99,142 +1969-12-20 00:00:00,1969-12-19 23:00:00,189,170,190,122,100,101,99,137 +1969-12-20 00:00:00,1969-12-19 23:00:00,127,176,188,140,101,100,99,106 +1969-12-20 00:00:00,1969-12-19 23:00:00,175,191,104,126,101,101,100,162 +1969-12-20 00:00:00,1969-12-19 23:00:00,157,140,141,173,101,101,99,185 +1969-12-20 00:00:00,1969-12-19 23:00:00,172,197,186,165,99,99,99,184 +1969-12-20 00:00:00,1969-12-19 23:00:00,192,175,124,145,99,99,101,181 +1969-12-20 00:00:00,1969-12-19 23:00:00,149,113,107,110,101,101,101,160 +1969-12-20 00:00:00,1969-12-19 23:00:00,183,145,185,126,100,99,101,164 +1969-12-20 00:00:00,1969-12-19 23:00:00,191,174,187,174,101,99,99,183 +1969-12-20 00:00:00,1969-12-19 23:00:00,166,122,163,134,101,99,99,163 +1969-12-20 00:00:00,1969-12-19 23:00:00,160,165,192,108,101,100,101,158 +1969-12-20 00:00:00,1969-12-19 23:00:00,190,144,175,107,101,101,100,180 +1969-12-20 00:00:00,1969-12-19 23:00:00,120,107,123,178,99,99,99,116 +1969-12-20 00:00:00,1969-12-19 23:00:00,173,198,148,0,99,100,99,105 +1969-12-20 00:00:00,1969-12-19 23:00:00,131,109,152,103,101,100,99,194 +1969-12-20 00:00:00,1969-12-19 23:00:00,166,176,106,183,101,100,100,113 +1969-12-20 00:00:00,1969-12-19 23:00:00,174,181,169,169,101,100,101,154 +1969-12-20 00:00:00,1969-12-19 23:00:00,109,147,197,193,100,100,100,104 +1969-12-20 00:00:00,1969-12-19 23:00:00,140,179,141,196,99,99,100,155 +1969-12-20 00:00:00,1969-12-19 23:00:00,140,163,165,137,101,101,100,197 +1969-12-20 00:00:00,1969-12-19 23:00:00,186,175,174,174,101,99,101,149 +1969-12-20 00:00:00,1969-12-19 23:00:00,165,162,121,158,101,101,101,158 +1969-12-20 00:00:00,1969-12-19 23:00:00,134,148,137,131,101,99,100,110 +1969-12-20 00:00:00,1969-12-19 23:00:00,193,169,172,100,100,100,100,152 +1969-12-19 00:00:00,1969-12-18 23:00:00,133,200,0,158,99,101,100,111 +1969-12-19 00:00:00,1969-12-18 23:00:00,140,108,0,198,99,100,101,134 +1969-12-19 00:00:00,1969-12-18 23:00:00,150,162,0,151,101,99,100,142 +1969-12-19 00:00:00,1969-12-18 23:00:00,118,198,0,195,100,100,99,186 +1969-12-19 00:00:00,1969-12-18 23:00:00,166,163,0,161,100,100,99,119 +1969-12-19 00:00:00,1969-12-18 23:00:00,148,133,0,145,99,100,100,110 +1969-12-19 00:00:00,1969-12-18 23:00:00,195,130,161,177,99,101,100,115 +1969-12-19 00:00:00,1969-12-18 23:00:00,185,112,123,151,99,100,101,129 +1969-12-19 00:00:00,1969-12-18 23:00:00,112,132,190,163,99,101,100,123 +1969-12-19 00:00:00,1969-12-18 23:00:00,182,137,172,197,99,99,100,168 +1969-12-19 00:00:00,1969-12-18 23:00:00,107,100,113,126,101,99,100,177 +1969-12-19 00:00:00,1969-12-18 23:00:00,109,103,154,169,100,100,101,168 +1969-12-19 00:00:00,1969-12-18 23:00:00,109,115,156,108,100,99,99,122 +1969-12-19 00:00:00,1969-12-18 23:00:00,175,117,162,186,100,101,100,105 +1969-12-19 00:00:00,1969-12-18 23:00:00,116,136,146,0,99,101,101,177 +1969-12-19 00:00:00,1969-12-18 23:00:00,194,199,145,105,100,101,101,108 +1969-12-19 00:00:00,1969-12-18 23:00:00,116,153,194,129,99,100,100,107 +1969-12-19 00:00:00,1969-12-18 23:00:00,141,112,171,110,100,101,100,198 +1969-12-19 00:00:00,1969-12-18 23:00:00,173,121,131,0,101,101,99,160 +1969-12-19 00:00:00,1969-12-18 23:00:00,193,123,175,0,100,99,100,171 +1969-12-19 00:00:00,1969-12-18 23:00:00,109,104,184,0,100,101,100,109 +1969-12-19 00:00:00,1969-12-18 23:00:00,193,170,147,173,99,101,101,187 +1969-12-19 00:00:00,1969-12-18 23:00:00,128,198,188,127,99,99,99,125 +1969-12-19 00:00:00,1969-12-18 23:00:00,160,167,154,100,99,100,99,195 +1969-12-19 00:00:00,1969-12-18 23:00:00,109,180,112,161,101,99,100,188 +1969-12-19 00:00:00,1969-12-18 23:00:00,168,180,164,133,101,101,100,134 +1969-12-19 00:00:00,1969-12-18 23:00:00,102,177,165,0,100,99,100,121 +1969-12-19 00:00:00,1969-12-18 23:00:00,135,108,101,106,100,100,101,134 +1969-12-19 00:00:00,1969-12-18 23:00:00,137,198,182,0,99,100,101,143 +1969-12-19 00:00:00,1969-12-18 23:00:00,101,172,184,0,99,100,101,200 +1969-12-19 00:00:00,1969-12-18 23:00:00,148,106,157,119,100,100,101,180 +1969-12-19 00:00:00,1969-12-18 23:00:00,149,117,103,0,101,99,99,131 +1969-12-19 00:00:00,1969-12-18 23:00:00,149,154,169,106,99,100,100,181 +1969-12-19 00:00:00,1969-12-18 23:00:00,149,135,137,109,101,100,100,118 +1969-12-19 00:00:00,1969-12-18 23:00:00,159,146,198,112,101,101,101,127 +1969-12-19 00:00:00,1969-12-18 23:00:00,166,132,133,148,99,100,100,148 +1969-12-19 00:00:00,1969-12-18 23:00:00,169,168,196,127,101,99,99,122 +1969-12-19 00:00:00,1969-12-18 23:00:00,115,132,183,137,100,100,100,120 +1969-12-19 00:00:00,1969-12-18 23:00:00,184,107,136,184,100,101,100,106 +1969-12-19 00:00:00,1969-12-18 23:00:00,129,123,136,0,100,100,101,186 +1969-12-19 00:00:00,1969-12-18 23:00:00,135,192,166,182,100,101,101,190 +1969-12-19 00:00:00,1969-12-18 23:00:00,148,135,161,170,99,100,99,153 +1969-12-19 00:00:00,1969-12-18 23:00:00,199,138,110,139,99,99,100,155 +1969-12-19 00:00:00,1969-12-18 23:00:00,157,148,186,131,100,101,101,126 +1969-12-19 00:00:00,1969-12-18 23:00:00,167,175,179,0,101,99,100,190 +1969-12-19 00:00:00,1969-12-18 23:00:00,193,135,107,126,100,101,101,173 +1969-12-19 00:00:00,1969-12-18 23:00:00,199,139,123,0,100,100,99,133 +1969-12-19 00:00:00,1969-12-18 23:00:00,179,158,166,125,100,99,100,161 +1969-12-19 00:00:00,1969-12-18 23:00:00,134,181,146,146,101,99,100,131 +1969-12-19 00:00:00,1969-12-18 23:00:00,188,115,164,0,101,100,99,144 +1969-12-19 00:00:00,1969-12-18 23:00:00,197,196,167,106,101,100,100,118 +1969-12-19 00:00:00,1969-12-18 23:00:00,154,193,109,0,100,99,101,196 +1969-12-19 00:00:00,1969-12-18 23:00:00,128,176,160,140,100,99,101,178 +1969-12-19 00:00:00,1969-12-18 23:00:00,104,151,102,179,100,101,101,188 +1969-12-19 00:00:00,1969-12-18 23:00:00,117,141,168,0,100,99,100,103 +1969-12-19 00:00:00,1969-12-18 23:00:00,105,178,147,109,100,99,101,112 +1969-12-19 00:00:00,1969-12-18 23:00:00,127,197,113,116,99,101,99,196 +1969-12-19 00:00:00,1969-12-18 23:00:00,124,168,181,0,100,100,100,143 +1969-12-19 00:00:00,1969-12-18 23:00:00,135,118,123,176,100,100,100,155 +1969-12-19 00:00:00,1969-12-18 23:00:00,187,195,141,142,101,100,100,174 +1969-12-19 00:00:00,1969-12-18 23:00:00,140,191,105,0,101,100,99,193 +1969-12-19 00:00:00,1969-12-18 23:00:00,167,161,126,149,99,100,101,163 +1969-12-19 00:00:00,1969-12-18 23:00:00,141,165,158,191,100,99,100,177 +1969-12-19 00:00:00,1969-12-18 23:00:00,137,107,177,162,101,99,101,102 +1969-12-19 00:00:00,1969-12-18 23:00:00,169,127,148,196,100,100,100,125 +1969-12-19 00:00:00,1969-12-18 23:00:00,137,146,131,158,99,100,100,179 +1969-12-19 00:00:00,1969-12-18 23:00:00,192,172,146,168,99,99,101,156 +1969-12-19 00:00:00,1969-12-18 23:00:00,121,150,111,134,100,101,100,170 +1969-12-19 00:00:00,1969-12-18 23:00:00,112,198,198,148,99,100,99,158 +1969-12-19 00:00:00,1969-12-18 23:00:00,191,185,128,0,100,99,100,113 +1969-12-19 00:00:00,1969-12-18 23:00:00,164,117,101,175,99,101,101,116 +1969-12-19 00:00:00,1969-12-18 23:00:00,132,200,119,163,100,101,101,110 +1969-12-19 00:00:00,1969-12-18 23:00:00,113,159,124,163,99,101,101,187 +1969-12-19 00:00:00,1969-12-18 23:00:00,123,128,168,130,101,99,101,100 +1969-12-19 00:00:00,1969-12-18 23:00:00,166,107,134,200,99,101,101,174 +1969-12-19 00:00:00,1969-12-18 23:00:00,106,142,191,107,100,99,101,155 +1969-12-19 00:00:00,1969-12-18 23:00:00,150,139,123,191,100,100,101,120 +1969-12-19 00:00:00,1969-12-18 23:00:00,109,144,181,0,99,101,101,142 +1969-12-19 00:00:00,1969-12-18 23:00:00,158,120,108,151,99,99,101,107 +1969-12-19 00:00:00,1969-12-18 23:00:00,121,112,113,185,99,99,100,136 +1969-12-19 00:00:00,1969-12-18 23:00:00,194,164,199,0,101,99,101,152 +1969-12-19 00:00:00,1969-12-18 23:00:00,192,127,106,112,101,100,100,118 +1969-12-19 00:00:00,1969-12-18 23:00:00,144,178,165,176,100,99,100,160 +1969-12-19 00:00:00,1969-12-18 23:00:00,141,148,125,161,100,100,99,155 +1969-12-19 00:00:00,1969-12-18 23:00:00,166,116,135,131,100,100,100,140 +1969-12-19 00:00:00,1969-12-18 23:00:00,152,140,110,155,101,99,101,165 +1969-12-19 00:00:00,1969-12-18 23:00:00,170,150,142,144,101,99,99,192 +1969-12-19 00:00:00,1969-12-18 23:00:00,134,138,192,112,99,100,100,158 +1969-12-19 00:00:00,1969-12-18 23:00:00,179,115,112,194,101,99,100,191 +1969-12-19 00:00:00,1969-12-18 23:00:00,102,168,186,133,101,99,99,192 +1969-12-19 00:00:00,1969-12-18 23:00:00,196,142,172,160,99,100,100,100 +1969-12-19 00:00:00,1969-12-18 23:00:00,168,141,172,200,101,101,100,187 +1969-12-19 00:00:00,1969-12-18 23:00:00,178,139,111,110,100,101,100,116 +1969-12-19 00:00:00,1969-12-18 23:00:00,163,129,193,0,101,99,101,187 +1969-12-19 00:00:00,1969-12-18 23:00:00,137,124,167,181,100,100,100,116 +1969-12-19 00:00:00,1969-12-18 23:00:00,112,110,154,133,100,101,99,187 +1969-12-19 00:00:00,1969-12-18 23:00:00,153,122,149,128,101,101,99,187 +1969-12-19 00:00:00,1969-12-18 23:00:00,117,151,143,166,100,99,100,125 +1969-12-19 00:00:00,1969-12-18 23:00:00,182,114,120,139,99,99,99,115 +1969-12-19 00:00:00,1969-12-18 23:00:00,163,115,136,161,99,101,99,156 +1969-12-19 00:00:00,1969-12-18 23:00:00,187,155,109,176,99,100,100,140 +1969-12-19 00:00:00,1969-12-18 23:00:00,179,164,165,139,99,99,99,114 +1969-12-19 00:00:00,1969-12-18 23:00:00,117,196,178,173,99,100,100,144 +1969-12-19 00:00:00,1969-12-18 23:00:00,152,185,177,191,100,99,99,149 +1969-12-19 00:00:00,1969-12-18 23:00:00,127,158,175,0,100,99,99,122 +1969-12-19 00:00:00,1969-12-18 23:00:00,156,164,135,113,99,101,100,151 +1969-12-19 00:00:00,1969-12-18 23:00:00,159,183,182,142,100,100,99,111 +1969-12-19 00:00:00,1969-12-18 23:00:00,127,144,108,108,99,99,99,148 +1969-12-19 00:00:00,1969-12-18 23:00:00,132,121,200,0,101,100,101,119 +1969-12-19 00:00:00,1969-12-18 23:00:00,136,105,180,133,101,100,100,133 +1969-12-19 00:00:00,1969-12-18 23:00:00,199,160,161,181,99,99,100,200 +1969-12-19 00:00:00,1969-12-18 23:00:00,111,121,143,0,101,101,99,185 +1969-12-19 00:00:00,1969-12-18 23:00:00,113,176,175,165,101,100,101,155 +1969-12-19 00:00:00,1969-12-18 23:00:00,169,177,182,175,99,101,100,117 +1969-12-19 00:00:00,1969-12-18 23:00:00,192,138,130,0,99,101,101,157 +1969-12-19 00:00:00,1969-12-18 23:00:00,121,112,200,160,100,99,100,189 +1969-12-19 00:00:00,1969-12-18 23:00:00,106,189,100,119,101,99,99,101 +1969-12-19 00:00:00,1969-12-18 23:00:00,109,173,125,171,99,101,100,182 +1969-12-19 00:00:00,1969-12-18 23:00:00,132,123,125,167,101,100,100,113 +1969-12-19 00:00:00,1969-12-18 23:00:00,132,118,142,163,99,101,101,148 +1969-12-19 00:00:00,1969-12-18 23:00:00,159,149,107,167,100,101,99,113 +1969-12-19 00:00:00,1969-12-18 23:00:00,181,108,199,0,100,99,100,195 +1969-12-19 00:00:00,1969-12-18 23:00:00,174,178,150,175,99,99,100,142 +1969-12-19 00:00:00,1969-12-18 23:00:00,195,179,151,171,101,101,99,198 +1969-12-19 00:00:00,1969-12-18 23:00:00,167,153,120,159,101,100,100,130 +1969-12-19 00:00:00,1969-12-18 23:00:00,198,116,179,172,101,99,100,175 +1969-12-19 00:00:00,1969-12-18 23:00:00,167,108,117,0,101,99,100,176 +1969-12-19 00:00:00,1969-12-18 23:00:00,116,193,123,119,101,101,101,166 +1969-12-19 00:00:00,1969-12-18 23:00:00,111,110,172,134,100,99,99,186 +1969-12-19 00:00:00,1969-12-18 23:00:00,165,194,137,121,99,100,99,102 +1969-12-19 00:00:00,1969-12-18 23:00:00,136,184,121,111,101,100,100,134 +1969-12-19 00:00:00,1969-12-18 23:00:00,134,189,148,154,101,101,101,122 +1969-12-19 00:00:00,1969-12-18 23:00:00,133,194,139,120,100,100,101,171 +1969-12-19 00:00:00,1969-12-18 23:00:00,173,144,143,188,101,99,99,139 +1969-12-19 00:00:00,1969-12-18 23:00:00,123,120,143,122,99,100,99,162 +1969-12-19 00:00:00,1969-12-18 23:00:00,168,165,111,0,100,101,99,138 +1969-12-19 00:00:00,1969-12-18 23:00:00,173,100,134,184,101,100,100,176 +1969-12-19 00:00:00,1969-12-18 23:00:00,172,168,121,171,100,101,101,139 +1969-12-19 00:00:00,1969-12-18 23:00:00,144,162,164,160,100,99,101,196 +1969-12-19 00:00:00,1969-12-18 23:00:00,175,193,169,0,99,101,100,170 +1969-12-19 00:00:00,1969-12-18 23:00:00,198,112,125,119,101,99,101,119 +1969-12-19 00:00:00,1969-12-18 23:00:00,172,105,105,161,99,99,99,156 +1969-12-19 00:00:00,1969-12-18 23:00:00,165,198,163,0,101,99,99,125 +1969-12-19 00:00:00,1969-12-18 23:00:00,177,194,184,200,99,100,100,128 +1969-12-19 00:00:00,1969-12-18 23:00:00,133,131,197,190,101,101,99,171 +1969-12-19 00:00:00,1969-12-18 23:00:00,105,194,137,189,100,101,100,133 +1969-12-19 00:00:00,1969-12-18 23:00:00,115,198,167,155,101,100,99,104 +1969-12-19 00:00:00,1969-12-18 23:00:00,164,185,126,170,101,99,101,178 +1969-12-19 00:00:00,1969-12-18 23:00:00,123,116,123,186,101,101,99,166 +1969-12-19 00:00:00,1969-12-18 23:00:00,133,168,135,0,100,100,99,150 +1969-12-19 00:00:00,1969-12-18 23:00:00,166,149,133,122,99,100,101,165 +1969-12-19 00:00:00,1969-12-18 23:00:00,192,176,186,192,99,99,99,200 +1969-12-19 00:00:00,1969-12-18 23:00:00,195,140,166,150,101,100,100,133 +1969-12-19 00:00:00,1969-12-18 23:00:00,125,115,136,0,101,99,101,141 +1969-12-19 00:00:00,1969-12-18 23:00:00,193,170,176,149,100,100,100,186 +1969-12-19 00:00:00,1969-12-18 23:00:00,153,135,114,152,100,100,99,153 +1969-12-19 00:00:00,1969-12-18 23:00:00,189,168,120,128,101,99,100,200 +1969-12-19 00:00:00,1969-12-18 23:00:00,116,199,197,105,101,101,100,141 +1969-12-19 00:00:00,1969-12-18 23:00:00,188,195,144,151,101,100,99,157 +1969-12-19 00:00:00,1969-12-18 23:00:00,151,173,110,122,99,101,101,145 +1969-12-19 00:00:00,1969-12-18 23:00:00,133,122,171,0,101,101,101,130 +1969-12-19 00:00:00,1969-12-18 23:00:00,159,175,163,194,100,100,100,187 +1969-12-19 00:00:00,1969-12-18 23:00:00,146,102,177,120,99,99,101,148 +1969-12-19 00:00:00,1969-12-18 23:00:00,131,153,104,112,101,100,100,174 +1969-12-19 00:00:00,1969-12-18 23:00:00,181,121,200,105,99,100,99,194 +1969-12-19 00:00:00,1969-12-18 23:00:00,145,161,129,120,101,100,99,189 +1969-12-19 00:00:00,1969-12-18 23:00:00,154,182,182,175,99,99,101,154 +1969-12-19 00:00:00,1969-12-18 23:00:00,123,170,169,168,100,99,100,177 +1969-12-19 00:00:00,1969-12-18 23:00:00,190,138,165,135,99,99,100,118 +1969-12-19 00:00:00,1969-12-18 23:00:00,175,155,153,183,99,100,100,159 +1969-12-19 00:00:00,1969-12-18 23:00:00,139,113,112,109,101,100,100,170 +1969-12-19 00:00:00,1969-12-18 23:00:00,151,114,141,126,100,101,100,183 +1969-12-19 00:00:00,1969-12-18 23:00:00,188,115,193,138,99,101,101,156 +1969-12-19 00:00:00,1969-12-18 23:00:00,116,178,127,148,100,100,101,135 +1969-12-19 00:00:00,1969-12-18 23:00:00,105,126,195,196,100,99,100,110 +1969-12-19 00:00:00,1969-12-18 23:00:00,189,190,182,163,101,101,99,163 +1969-12-19 00:00:00,1969-12-18 23:00:00,124,133,164,118,99,99,101,169 +1969-12-19 00:00:00,1969-12-18 23:00:00,166,168,194,105,100,99,100,108 +1969-12-19 00:00:00,1969-12-18 23:00:00,102,188,120,192,101,99,99,162 +1969-12-19 00:00:00,1969-12-18 23:00:00,156,161,186,178,100,100,100,193 +1969-12-19 00:00:00,1969-12-18 23:00:00,132,188,161,177,99,101,100,103 +1969-12-19 00:00:00,1969-12-18 23:00:00,196,149,129,149,101,101,100,105 +1969-12-19 00:00:00,1969-12-18 23:00:00,152,183,132,0,100,99,100,127 +1969-12-19 00:00:00,1969-12-18 23:00:00,154,145,181,103,100,101,99,160 +1969-12-19 00:00:00,1969-12-18 23:00:00,179,184,113,138,99,100,101,108 +1969-12-19 00:00:00,1969-12-18 23:00:00,164,195,176,114,100,101,100,159 +1969-12-19 00:00:00,1969-12-18 23:00:00,188,192,161,117,101,101,100,109 +1969-12-19 00:00:00,1969-12-18 23:00:00,130,111,130,110,99,101,99,107 +1969-12-19 00:00:00,1969-12-18 23:00:00,160,141,148,119,100,99,100,144 +1969-12-19 00:00:00,1969-12-18 23:00:00,104,120,137,168,100,99,99,100 +1969-12-19 00:00:00,1969-12-18 23:00:00,165,140,167,186,99,100,101,127 +1969-12-19 00:00:00,1969-12-18 23:00:00,134,153,140,184,100,100,99,119 +1969-12-19 00:00:00,1969-12-18 23:00:00,122,111,151,125,99,100,99,106 +1969-12-19 00:00:00,1969-12-18 23:00:00,179,142,162,142,100,99,99,166 +1969-12-19 00:00:00,1969-12-18 23:00:00,166,160,104,105,100,101,99,181 +1969-12-19 00:00:00,1969-12-18 23:00:00,125,129,171,191,101,99,101,116 +1969-12-19 00:00:00,1969-12-18 23:00:00,194,111,101,175,100,99,99,116 +1969-12-19 00:00:00,1969-12-18 23:00:00,182,135,169,179,101,99,99,142 +1969-12-19 00:00:00,1969-12-18 23:00:00,150,195,123,144,101,100,99,120 +1969-12-19 00:00:00,1969-12-18 23:00:00,102,179,160,124,99,101,99,158 +1969-12-18 00:00:00,1969-12-17 23:00:00,134,103,0,196,100,100,100,153 +1969-12-18 00:00:00,1969-12-17 23:00:00,113,151,0,127,99,99,100,193 +1969-12-18 00:00:00,1969-12-17 23:00:00,112,189,0,139,101,100,99,108 +1969-12-18 00:00:00,1969-12-17 23:00:00,124,188,0,101,99,99,99,118 +1969-12-18 00:00:00,1969-12-17 23:00:00,177,147,0,184,99,101,100,171 +1969-12-18 00:00:00,1969-12-17 23:00:00,187,165,0,114,101,99,99,143 +1969-12-18 00:00:00,1969-12-17 23:00:00,140,113,177,0,100,99,101,177 +1969-12-18 00:00:00,1969-12-17 23:00:00,112,162,115,152,100,101,100,112 +1969-12-18 00:00:00,1969-12-17 23:00:00,157,131,144,122,100,99,100,160 +1969-12-18 00:00:00,1969-12-17 23:00:00,188,195,127,0,99,99,101,140 +1969-12-18 00:00:00,1969-12-17 23:00:00,141,194,104,195,101,100,101,102 +1969-12-18 00:00:00,1969-12-17 23:00:00,120,164,100,177,100,100,100,125 +1969-12-18 00:00:00,1969-12-17 23:00:00,154,119,184,112,100,99,101,173 +1969-12-18 00:00:00,1969-12-17 23:00:00,124,109,190,196,99,100,101,150 +1969-12-18 00:00:00,1969-12-17 23:00:00,139,102,149,111,101,99,99,153 +1969-12-18 00:00:00,1969-12-17 23:00:00,160,179,185,158,99,101,100,188 +1969-12-18 00:00:00,1969-12-17 23:00:00,136,127,145,0,99,99,101,184 +1969-12-18 00:00:00,1969-12-17 23:00:00,115,172,103,154,99,100,100,100 +1969-12-18 00:00:00,1969-12-17 23:00:00,135,130,182,128,101,99,100,182 +1969-12-18 00:00:00,1969-12-17 23:00:00,165,131,159,156,101,99,100,135 +1969-12-18 00:00:00,1969-12-17 23:00:00,163,118,183,0,99,101,99,134 +1969-12-18 00:00:00,1969-12-17 23:00:00,179,126,171,0,99,101,101,102 +1969-12-18 00:00:00,1969-12-17 23:00:00,190,188,149,100,100,100,100,187 +1969-12-18 00:00:00,1969-12-17 23:00:00,101,167,167,113,101,99,101,148 +1969-12-18 00:00:00,1969-12-17 23:00:00,112,106,145,183,101,99,99,167 +1969-12-18 00:00:00,1969-12-17 23:00:00,102,119,134,0,99,101,100,115 +1969-12-18 00:00:00,1969-12-17 23:00:00,141,165,179,0,101,100,100,160 +1969-12-18 00:00:00,1969-12-17 23:00:00,173,148,140,0,100,99,100,194 +1969-12-18 00:00:00,1969-12-17 23:00:00,169,175,144,192,99,100,99,198 +1969-12-18 00:00:00,1969-12-17 23:00:00,161,149,176,120,99,99,100,184 +1969-12-18 00:00:00,1969-12-17 23:00:00,147,135,129,122,100,100,99,135 +1969-12-18 00:00:00,1969-12-17 23:00:00,142,103,133,0,99,99,99,175 +1969-12-18 00:00:00,1969-12-17 23:00:00,125,133,199,0,101,99,99,147 +1969-12-18 00:00:00,1969-12-17 23:00:00,146,185,186,0,101,100,100,170 +1969-12-18 00:00:00,1969-12-17 23:00:00,161,129,185,188,99,99,100,197 +1969-12-18 00:00:00,1969-12-17 23:00:00,165,110,141,125,100,100,101,144 +1969-12-18 00:00:00,1969-12-17 23:00:00,165,157,156,0,99,100,100,179 +1969-12-18 00:00:00,1969-12-17 23:00:00,158,172,168,172,101,99,99,144 +1969-12-18 00:00:00,1969-12-17 23:00:00,196,187,147,125,99,101,99,169 +1969-12-18 00:00:00,1969-12-17 23:00:00,187,172,188,148,100,101,101,103 +1969-12-18 00:00:00,1969-12-17 23:00:00,198,198,115,142,101,99,100,101 +1969-12-18 00:00:00,1969-12-17 23:00:00,141,145,181,147,100,100,100,140 +1969-12-18 00:00:00,1969-12-17 23:00:00,143,193,168,149,100,101,100,165 +1969-12-18 00:00:00,1969-12-17 23:00:00,159,175,145,124,100,101,101,122 +1969-12-18 00:00:00,1969-12-17 23:00:00,105,178,158,118,100,101,101,107 +1969-12-18 00:00:00,1969-12-17 23:00:00,138,189,124,173,99,100,99,122 +1969-12-18 00:00:00,1969-12-17 23:00:00,121,168,101,154,100,99,101,153 +1969-12-18 00:00:00,1969-12-17 23:00:00,130,151,157,156,100,101,99,144 +1969-12-18 00:00:00,1969-12-17 23:00:00,137,169,174,102,100,99,101,101 +1969-12-18 00:00:00,1969-12-17 23:00:00,180,100,199,176,99,99,100,114 +1969-12-18 00:00:00,1969-12-17 23:00:00,119,181,167,0,100,101,101,194 +1969-12-18 00:00:00,1969-12-17 23:00:00,175,142,159,199,99,99,100,175 +1969-12-18 00:00:00,1969-12-17 23:00:00,159,173,185,0,99,99,99,198 +1969-12-18 00:00:00,1969-12-17 23:00:00,163,143,119,143,101,99,101,117 +1969-12-18 00:00:00,1969-12-17 23:00:00,183,166,105,190,100,101,99,102 +1969-12-18 00:00:00,1969-12-17 23:00:00,139,124,131,119,99,99,100,178 +1969-12-18 00:00:00,1969-12-17 23:00:00,195,136,104,175,101,101,99,144 +1969-12-18 00:00:00,1969-12-17 23:00:00,116,101,103,159,101,100,101,161 +1969-12-18 00:00:00,1969-12-17 23:00:00,197,123,104,121,99,100,99,186 +1969-12-18 00:00:00,1969-12-17 23:00:00,146,180,142,109,101,101,99,116 +1969-12-18 00:00:00,1969-12-17 23:00:00,108,187,180,163,99,100,99,185 +1969-12-18 00:00:00,1969-12-17 23:00:00,119,200,141,0,99,99,100,103 +1969-12-18 00:00:00,1969-12-17 23:00:00,162,122,162,0,101,99,101,167 +1969-12-18 00:00:00,1969-12-17 23:00:00,132,153,183,187,101,101,100,176 +1969-12-18 00:00:00,1969-12-17 23:00:00,125,178,168,118,101,101,99,121 +1969-12-18 00:00:00,1969-12-17 23:00:00,142,153,117,116,99,101,100,150 +1969-12-18 00:00:00,1969-12-17 23:00:00,120,173,186,141,100,101,99,163 +1969-12-18 00:00:00,1969-12-17 23:00:00,136,189,119,194,100,99,100,146 +1969-12-18 00:00:00,1969-12-17 23:00:00,164,148,131,139,100,101,101,162 +1969-12-18 00:00:00,1969-12-17 23:00:00,194,169,131,151,101,99,100,177 +1969-12-18 00:00:00,1969-12-17 23:00:00,176,108,139,124,99,99,100,124 +1969-12-18 00:00:00,1969-12-17 23:00:00,170,163,153,199,100,100,100,153 +1969-12-18 00:00:00,1969-12-17 23:00:00,139,130,199,101,100,100,100,180 +1969-12-18 00:00:00,1969-12-17 23:00:00,180,135,144,181,101,99,99,187 +1969-12-18 00:00:00,1969-12-17 23:00:00,127,129,155,132,101,101,99,175 +1969-12-18 00:00:00,1969-12-17 23:00:00,104,177,126,100,99,99,100,101 +1969-12-18 00:00:00,1969-12-17 23:00:00,110,185,105,109,99,99,101,178 +1969-12-18 00:00:00,1969-12-17 23:00:00,142,112,148,158,101,101,99,155 +1969-12-18 00:00:00,1969-12-17 23:00:00,165,152,136,117,99,101,99,158 +1969-12-18 00:00:00,1969-12-17 23:00:00,116,117,195,126,99,100,101,148 +1969-12-18 00:00:00,1969-12-17 23:00:00,166,160,138,0,99,99,101,114 +1969-12-18 00:00:00,1969-12-17 23:00:00,116,166,124,0,101,100,100,140 +1969-12-18 00:00:00,1969-12-17 23:00:00,148,172,136,0,100,101,99,116 +1969-12-18 00:00:00,1969-12-17 23:00:00,185,148,139,159,101,101,101,109 +1969-12-18 00:00:00,1969-12-17 23:00:00,100,186,157,0,100,99,99,159 +1969-12-18 00:00:00,1969-12-17 23:00:00,181,115,196,183,99,100,99,107 +1969-12-18 00:00:00,1969-12-17 23:00:00,189,198,177,109,101,101,99,165 +1969-12-18 00:00:00,1969-12-17 23:00:00,132,158,171,118,99,101,99,126 +1969-12-18 00:00:00,1969-12-17 23:00:00,145,125,106,169,99,100,100,143 +1969-12-18 00:00:00,1969-12-17 23:00:00,128,126,155,193,101,101,101,184 +1969-12-18 00:00:00,1969-12-17 23:00:00,148,184,152,119,99,101,99,111 +1969-12-18 00:00:00,1969-12-17 23:00:00,115,132,120,137,100,101,101,178 +1969-12-18 00:00:00,1969-12-17 23:00:00,155,129,192,150,101,99,101,191 +1969-12-18 00:00:00,1969-12-17 23:00:00,122,136,172,188,101,99,101,118 +1969-12-18 00:00:00,1969-12-17 23:00:00,166,179,179,0,101,100,100,132 +1969-12-18 00:00:00,1969-12-17 23:00:00,135,126,104,173,99,100,101,148 +1969-12-18 00:00:00,1969-12-17 23:00:00,200,107,165,122,100,100,100,145 +1969-12-18 00:00:00,1969-12-17 23:00:00,103,133,132,110,101,99,100,143 +1969-12-18 00:00:00,1969-12-17 23:00:00,122,138,118,167,100,101,99,172 +1969-12-18 00:00:00,1969-12-17 23:00:00,121,165,195,183,100,100,100,129 +1969-12-18 00:00:00,1969-12-17 23:00:00,190,133,193,178,101,100,99,172 +1969-12-18 00:00:00,1969-12-17 23:00:00,117,161,156,178,100,100,99,104 +1969-12-18 00:00:00,1969-12-17 23:00:00,118,147,198,133,101,100,100,159 +1969-12-18 00:00:00,1969-12-17 23:00:00,196,120,131,141,100,99,101,173 +1969-12-18 00:00:00,1969-12-17 23:00:00,159,143,126,0,100,101,99,137 +1969-12-18 00:00:00,1969-12-17 23:00:00,193,180,172,193,99,99,101,177 +1969-12-18 00:00:00,1969-12-17 23:00:00,193,153,120,159,100,101,101,131 +1969-12-18 00:00:00,1969-12-17 23:00:00,142,120,132,0,99,101,101,197 +1969-12-18 00:00:00,1969-12-17 23:00:00,111,193,146,171,100,100,100,156 +1969-12-18 00:00:00,1969-12-17 23:00:00,132,155,179,0,101,100,100,125 +1969-12-18 00:00:00,1969-12-17 23:00:00,184,163,128,0,101,101,101,189 +1969-12-18 00:00:00,1969-12-17 23:00:00,150,119,145,139,99,101,99,200 +1969-12-18 00:00:00,1969-12-17 23:00:00,122,124,132,0,100,100,99,120 +1969-12-18 00:00:00,1969-12-17 23:00:00,190,173,198,112,100,99,100,136 +1969-12-18 00:00:00,1969-12-17 23:00:00,103,108,134,163,99,101,99,117 +1969-12-18 00:00:00,1969-12-17 23:00:00,122,192,138,128,101,99,100,140 +1969-12-18 00:00:00,1969-12-17 23:00:00,176,191,170,112,101,99,100,107 +1969-12-18 00:00:00,1969-12-17 23:00:00,197,195,137,175,100,101,101,112 +1969-12-18 00:00:00,1969-12-17 23:00:00,131,134,149,109,101,100,100,118 +1969-12-18 00:00:00,1969-12-17 23:00:00,136,166,156,128,101,101,100,159 +1969-12-18 00:00:00,1969-12-17 23:00:00,181,185,176,121,99,99,100,130 +1969-12-18 00:00:00,1969-12-17 23:00:00,114,146,175,198,99,101,99,104 +1969-12-18 00:00:00,1969-12-17 23:00:00,152,145,128,168,99,100,100,184 +1969-12-18 00:00:00,1969-12-17 23:00:00,147,200,120,179,100,100,100,165 +1969-12-18 00:00:00,1969-12-17 23:00:00,179,188,136,112,99,99,100,197 +1969-12-18 00:00:00,1969-12-17 23:00:00,137,157,112,198,100,100,101,101 +1969-12-18 00:00:00,1969-12-17 23:00:00,124,136,108,116,101,100,100,173 +1969-12-18 00:00:00,1969-12-17 23:00:00,172,186,188,186,101,100,100,115 +1969-12-18 00:00:00,1969-12-17 23:00:00,173,150,160,142,100,101,101,132 +1969-12-18 00:00:00,1969-12-17 23:00:00,175,142,169,128,101,101,99,178 +1969-12-18 00:00:00,1969-12-17 23:00:00,112,134,128,112,101,100,100,125 +1969-12-18 00:00:00,1969-12-17 23:00:00,142,160,101,120,100,100,101,123 +1969-12-18 00:00:00,1969-12-17 23:00:00,136,194,133,138,100,99,101,154 +1969-12-18 00:00:00,1969-12-17 23:00:00,156,132,160,0,100,101,100,155 +1969-12-18 00:00:00,1969-12-17 23:00:00,183,170,153,0,99,100,100,169 +1969-12-18 00:00:00,1969-12-17 23:00:00,143,100,162,133,99,99,100,155 +1969-12-18 00:00:00,1969-12-17 23:00:00,156,131,179,147,99,100,99,168 +1969-12-18 00:00:00,1969-12-17 23:00:00,121,126,103,106,100,100,101,149 +1969-12-18 00:00:00,1969-12-17 23:00:00,195,116,177,148,100,99,101,150 +1969-12-18 00:00:00,1969-12-17 23:00:00,113,139,116,119,99,100,100,152 +1969-12-18 00:00:00,1969-12-17 23:00:00,145,112,169,118,101,99,101,121 +1969-12-18 00:00:00,1969-12-17 23:00:00,197,122,154,0,100,101,101,158 +1969-12-18 00:00:00,1969-12-17 23:00:00,154,175,151,0,100,101,101,180 +1969-12-18 00:00:00,1969-12-17 23:00:00,145,116,119,133,99,100,101,103 +1969-12-18 00:00:00,1969-12-17 23:00:00,175,199,185,199,99,101,100,125 +1969-12-18 00:00:00,1969-12-17 23:00:00,195,118,131,161,100,99,101,180 +1969-12-18 00:00:00,1969-12-17 23:00:00,189,197,131,0,101,100,99,113 +1969-12-18 00:00:00,1969-12-17 23:00:00,179,185,122,112,101,99,100,171 +1969-12-18 00:00:00,1969-12-17 23:00:00,139,123,187,143,101,99,101,157 +1969-12-18 00:00:00,1969-12-17 23:00:00,115,182,175,157,101,101,99,146 +1969-12-18 00:00:00,1969-12-17 23:00:00,189,127,105,129,99,99,100,113 +1969-12-18 00:00:00,1969-12-17 23:00:00,196,113,172,141,100,101,100,167 +1969-12-18 00:00:00,1969-12-17 23:00:00,103,151,141,0,100,100,100,172 +1969-12-18 00:00:00,1969-12-17 23:00:00,162,148,106,184,100,99,101,196 +1969-12-18 00:00:00,1969-12-17 23:00:00,148,155,190,116,99,99,100,102 +1969-12-18 00:00:00,1969-12-17 23:00:00,161,199,200,188,99,101,99,200 +1969-12-18 00:00:00,1969-12-17 23:00:00,192,156,116,110,99,99,101,165 +1969-12-18 00:00:00,1969-12-17 23:00:00,144,152,126,0,100,99,99,132 +1969-12-18 00:00:00,1969-12-17 23:00:00,152,168,122,166,99,101,99,176 +1969-12-18 00:00:00,1969-12-17 23:00:00,181,139,109,189,101,101,100,157 +1969-12-18 00:00:00,1969-12-17 23:00:00,161,122,105,180,101,99,101,103 +1969-12-18 00:00:00,1969-12-17 23:00:00,116,104,161,111,100,100,99,110 +1969-12-18 00:00:00,1969-12-17 23:00:00,160,148,144,155,99,99,100,138 +1969-12-18 00:00:00,1969-12-17 23:00:00,164,182,124,198,100,100,99,108 +1969-12-18 00:00:00,1969-12-17 23:00:00,113,187,196,143,100,101,101,102 +1969-12-18 00:00:00,1969-12-17 23:00:00,181,180,168,181,101,99,100,142 +1969-12-18 00:00:00,1969-12-17 23:00:00,157,170,107,0,99,99,100,119 +1969-12-18 00:00:00,1969-12-17 23:00:00,167,103,138,147,101,101,100,134 +1969-12-18 00:00:00,1969-12-17 23:00:00,197,191,102,133,99,100,99,123 +1969-12-18 00:00:00,1969-12-17 23:00:00,197,187,118,150,101,99,101,166 +1969-12-18 00:00:00,1969-12-17 23:00:00,153,191,117,122,100,100,100,126 +1969-12-18 00:00:00,1969-12-17 23:00:00,196,139,196,184,101,99,101,164 +1969-12-18 00:00:00,1969-12-17 23:00:00,196,150,104,0,99,100,100,121 +1969-12-18 00:00:00,1969-12-17 23:00:00,171,156,106,0,99,101,101,174 +1969-12-18 00:00:00,1969-12-17 23:00:00,200,157,113,103,100,99,101,155 +1969-12-18 00:00:00,1969-12-17 23:00:00,173,187,112,105,101,100,99,149 +1969-12-18 00:00:00,1969-12-17 23:00:00,137,143,141,0,100,101,99,194 +1969-12-18 00:00:00,1969-12-17 23:00:00,120,179,186,115,101,100,100,110 +1969-12-18 00:00:00,1969-12-17 23:00:00,158,127,115,0,100,100,99,173 +1969-12-18 00:00:00,1969-12-17 23:00:00,199,184,164,0,99,101,99,193 +1969-12-18 00:00:00,1969-12-17 23:00:00,139,107,134,0,101,100,99,112 +1969-12-18 00:00:00,1969-12-17 23:00:00,106,108,112,170,101,100,99,133 +1969-12-18 00:00:00,1969-12-17 23:00:00,149,199,198,105,99,99,99,126 +1969-12-18 00:00:00,1969-12-17 23:00:00,179,124,127,195,101,99,100,111 +1969-12-18 00:00:00,1969-12-17 23:00:00,122,105,185,161,100,99,99,124 +1969-12-18 00:00:00,1969-12-17 23:00:00,200,182,116,134,99,101,101,169 +1969-12-18 00:00:00,1969-12-17 23:00:00,186,153,132,0,99,99,101,145 +1969-12-18 00:00:00,1969-12-17 23:00:00,116,179,148,117,99,100,101,117 +1969-12-18 00:00:00,1969-12-17 23:00:00,160,141,130,171,99,99,101,138 +1969-12-18 00:00:00,1969-12-17 23:00:00,194,101,137,141,100,101,100,144 +1969-12-18 00:00:00,1969-12-17 23:00:00,192,103,186,147,101,101,100,108 +1969-12-18 00:00:00,1969-12-17 23:00:00,160,194,150,195,99,99,100,148 +1969-12-18 00:00:00,1969-12-17 23:00:00,118,108,138,146,100,101,101,152 +1969-12-18 00:00:00,1969-12-17 23:00:00,175,108,142,180,101,101,99,136 +1969-12-18 00:00:00,1969-12-17 23:00:00,185,100,138,194,99,101,100,181 +1969-12-18 00:00:00,1969-12-17 23:00:00,159,187,172,105,99,100,99,145 +1969-12-18 00:00:00,1969-12-17 23:00:00,135,144,117,129,99,99,99,169 +1969-12-18 00:00:00,1969-12-17 23:00:00,129,196,109,179,101,100,100,125 +1969-12-18 00:00:00,1969-12-17 23:00:00,121,160,170,194,101,99,99,164 +1969-12-18 00:00:00,1969-12-17 23:00:00,112,148,175,107,100,100,100,147 +1969-12-17 00:00:00,1969-12-16 23:00:00,177,189,0,101,101,101,99,170 +1969-12-17 00:00:00,1969-12-16 23:00:00,134,148,0,184,100,101,100,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,172,171,0,177,101,100,99,100 +1969-12-17 00:00:00,1969-12-16 23:00:00,161,150,0,152,99,101,101,153 +1969-12-17 00:00:00,1969-12-16 23:00:00,167,107,0,194,100,101,100,154 +1969-12-17 00:00:00,1969-12-16 23:00:00,183,129,0,105,100,100,100,175 +1969-12-17 00:00:00,1969-12-16 23:00:00,145,199,151,197,99,100,100,184 +1969-12-17 00:00:00,1969-12-16 23:00:00,120,161,142,164,99,100,99,140 +1969-12-17 00:00:00,1969-12-16 23:00:00,146,173,178,100,100,101,100,196 +1969-12-17 00:00:00,1969-12-16 23:00:00,190,185,180,154,101,101,99,148 +1969-12-17 00:00:00,1969-12-16 23:00:00,190,111,192,0,99,99,100,108 +1969-12-17 00:00:00,1969-12-16 23:00:00,116,142,101,148,101,99,100,116 +1969-12-17 00:00:00,1969-12-16 23:00:00,164,161,142,199,100,100,100,185 +1969-12-17 00:00:00,1969-12-16 23:00:00,170,128,187,200,99,100,100,124 +1969-12-17 00:00:00,1969-12-16 23:00:00,176,153,136,190,99,101,100,109 +1969-12-17 00:00:00,1969-12-16 23:00:00,195,194,134,0,100,100,99,113 +1969-12-17 00:00:00,1969-12-16 23:00:00,175,106,176,136,100,99,101,149 +1969-12-17 00:00:00,1969-12-16 23:00:00,187,110,162,132,101,100,99,171 +1969-12-17 00:00:00,1969-12-16 23:00:00,164,122,162,192,101,99,99,110 +1969-12-17 00:00:00,1969-12-16 23:00:00,192,158,189,104,101,101,101,183 +1969-12-17 00:00:00,1969-12-16 23:00:00,100,168,193,0,99,101,100,104 +1969-12-17 00:00:00,1969-12-16 23:00:00,101,142,104,0,101,99,101,155 +1969-12-17 00:00:00,1969-12-16 23:00:00,179,132,126,111,99,99,99,143 +1969-12-17 00:00:00,1969-12-16 23:00:00,143,158,102,149,100,99,101,194 +1969-12-17 00:00:00,1969-12-16 23:00:00,137,185,100,200,100,101,101,177 +1969-12-17 00:00:00,1969-12-16 23:00:00,143,139,162,122,101,101,100,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,136,182,166,129,101,99,99,124 +1969-12-17 00:00:00,1969-12-16 23:00:00,128,150,111,191,101,99,100,110 +1969-12-17 00:00:00,1969-12-16 23:00:00,175,112,162,151,100,101,99,181 +1969-12-17 00:00:00,1969-12-16 23:00:00,113,197,152,0,101,100,101,122 +1969-12-17 00:00:00,1969-12-16 23:00:00,126,167,184,0,100,99,99,192 +1969-12-17 00:00:00,1969-12-16 23:00:00,169,128,153,128,101,99,100,149 +1969-12-17 00:00:00,1969-12-16 23:00:00,138,173,127,131,101,101,99,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,176,120,142,168,101,100,101,187 +1969-12-17 00:00:00,1969-12-16 23:00:00,186,102,115,100,100,99,101,189 +1969-12-17 00:00:00,1969-12-16 23:00:00,157,198,165,100,101,101,100,200 +1969-12-17 00:00:00,1969-12-16 23:00:00,109,130,188,0,100,100,100,188 +1969-12-17 00:00:00,1969-12-16 23:00:00,172,109,139,149,101,101,100,104 +1969-12-17 00:00:00,1969-12-16 23:00:00,102,160,109,138,100,99,100,199 +1969-12-17 00:00:00,1969-12-16 23:00:00,125,119,148,170,100,101,100,152 +1969-12-17 00:00:00,1969-12-16 23:00:00,184,187,188,174,99,101,99,148 +1969-12-17 00:00:00,1969-12-16 23:00:00,180,106,185,132,99,99,101,144 +1969-12-17 00:00:00,1969-12-16 23:00:00,153,173,186,137,100,99,99,165 +1969-12-17 00:00:00,1969-12-16 23:00:00,169,159,145,165,99,99,99,134 +1969-12-17 00:00:00,1969-12-16 23:00:00,139,188,183,154,99,101,99,131 +1969-12-17 00:00:00,1969-12-16 23:00:00,168,114,173,159,101,100,100,102 +1969-12-17 00:00:00,1969-12-16 23:00:00,166,138,188,107,99,101,101,145 +1969-12-17 00:00:00,1969-12-16 23:00:00,169,197,179,138,101,99,101,183 +1969-12-17 00:00:00,1969-12-16 23:00:00,129,183,144,149,99,99,101,143 +1969-12-17 00:00:00,1969-12-16 23:00:00,137,103,155,169,99,100,101,127 +1969-12-17 00:00:00,1969-12-16 23:00:00,195,157,126,141,99,100,99,180 +1969-12-17 00:00:00,1969-12-16 23:00:00,136,125,128,162,101,101,99,147 +1969-12-17 00:00:00,1969-12-16 23:00:00,147,150,181,0,101,99,99,116 +1969-12-17 00:00:00,1969-12-16 23:00:00,100,168,101,151,101,99,99,167 +1969-12-17 00:00:00,1969-12-16 23:00:00,147,126,134,114,100,100,100,137 +1969-12-17 00:00:00,1969-12-16 23:00:00,136,177,109,187,101,100,99,136 +1969-12-17 00:00:00,1969-12-16 23:00:00,106,152,192,0,101,101,99,136 +1969-12-17 00:00:00,1969-12-16 23:00:00,159,115,159,167,100,99,100,149 +1969-12-17 00:00:00,1969-12-16 23:00:00,128,191,181,132,99,101,100,191 +1969-12-17 00:00:00,1969-12-16 23:00:00,134,103,198,106,100,99,101,198 +1969-12-17 00:00:00,1969-12-16 23:00:00,160,168,118,198,99,99,100,180 +1969-12-17 00:00:00,1969-12-16 23:00:00,111,160,194,114,101,99,99,146 +1969-12-17 00:00:00,1969-12-16 23:00:00,173,101,151,156,100,101,101,181 +1969-12-17 00:00:00,1969-12-16 23:00:00,190,118,143,192,100,100,100,126 +1969-12-17 00:00:00,1969-12-16 23:00:00,136,174,189,0,101,101,99,102 +1969-12-17 00:00:00,1969-12-16 23:00:00,135,196,156,175,100,101,101,108 +1969-12-17 00:00:00,1969-12-16 23:00:00,150,184,175,149,100,100,100,168 +1969-12-17 00:00:00,1969-12-16 23:00:00,115,160,155,132,101,101,101,177 +1969-12-17 00:00:00,1969-12-16 23:00:00,157,154,198,186,101,100,100,200 +1969-12-17 00:00:00,1969-12-16 23:00:00,164,113,180,189,99,100,101,157 +1969-12-17 00:00:00,1969-12-16 23:00:00,130,155,131,129,99,100,99,169 +1969-12-17 00:00:00,1969-12-16 23:00:00,172,123,103,109,100,101,100,169 +1969-12-17 00:00:00,1969-12-16 23:00:00,182,177,149,174,101,101,100,114 +1969-12-17 00:00:00,1969-12-16 23:00:00,111,165,197,106,99,99,99,156 +1969-12-17 00:00:00,1969-12-16 23:00:00,140,139,112,197,101,101,100,127 +1969-12-17 00:00:00,1969-12-16 23:00:00,104,168,142,181,101,101,100,187 +1969-12-17 00:00:00,1969-12-16 23:00:00,154,182,146,166,100,100,99,142 +1969-12-17 00:00:00,1969-12-16 23:00:00,171,136,115,172,100,100,99,197 +1969-12-17 00:00:00,1969-12-16 23:00:00,183,146,190,0,100,99,99,110 +1969-12-17 00:00:00,1969-12-16 23:00:00,125,141,130,0,101,99,101,157 +1969-12-17 00:00:00,1969-12-16 23:00:00,112,131,113,101,101,100,100,177 +1969-12-17 00:00:00,1969-12-16 23:00:00,121,151,177,154,99,99,99,200 +1969-12-17 00:00:00,1969-12-16 23:00:00,116,101,117,119,100,99,99,143 +1969-12-17 00:00:00,1969-12-16 23:00:00,187,181,100,143,101,101,101,148 +1969-12-17 00:00:00,1969-12-16 23:00:00,174,157,126,199,100,99,99,150 +1969-12-17 00:00:00,1969-12-16 23:00:00,158,191,197,199,100,99,99,186 +1969-12-17 00:00:00,1969-12-16 23:00:00,158,153,189,0,99,101,100,129 +1969-12-17 00:00:00,1969-12-16 23:00:00,141,108,153,114,101,100,101,106 +1969-12-17 00:00:00,1969-12-16 23:00:00,145,145,152,136,101,101,101,121 +1969-12-17 00:00:00,1969-12-16 23:00:00,172,148,123,130,100,100,100,147 +1969-12-17 00:00:00,1969-12-16 23:00:00,142,131,147,125,101,100,101,186 +1969-12-17 00:00:00,1969-12-16 23:00:00,158,163,120,121,101,100,100,110 +1969-12-17 00:00:00,1969-12-16 23:00:00,168,185,109,199,99,100,101,156 +1969-12-17 00:00:00,1969-12-16 23:00:00,188,104,103,0,100,99,101,132 +1969-12-17 00:00:00,1969-12-16 23:00:00,182,155,170,193,101,100,101,173 +1969-12-17 00:00:00,1969-12-16 23:00:00,199,153,196,0,101,101,101,179 +1969-12-17 00:00:00,1969-12-16 23:00:00,141,124,168,200,100,99,99,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,122,169,166,181,101,100,99,160 +1969-12-17 00:00:00,1969-12-16 23:00:00,107,164,103,0,100,100,101,161 +1969-12-17 00:00:00,1969-12-16 23:00:00,182,149,112,196,99,100,99,147 +1969-12-17 00:00:00,1969-12-16 23:00:00,164,178,163,137,101,101,101,100 +1969-12-17 00:00:00,1969-12-16 23:00:00,136,190,127,193,100,101,100,183 +1969-12-17 00:00:00,1969-12-16 23:00:00,159,107,127,0,99,101,99,129 +1969-12-17 00:00:00,1969-12-16 23:00:00,101,178,184,0,101,100,101,194 +1969-12-17 00:00:00,1969-12-16 23:00:00,145,109,135,127,99,101,101,108 +1969-12-17 00:00:00,1969-12-16 23:00:00,121,187,167,178,99,101,100,149 +1969-12-17 00:00:00,1969-12-16 23:00:00,184,196,115,147,99,100,101,106 +1969-12-17 00:00:00,1969-12-16 23:00:00,146,182,185,198,101,99,100,118 +1969-12-17 00:00:00,1969-12-16 23:00:00,135,189,150,0,100,101,101,166 +1969-12-17 00:00:00,1969-12-16 23:00:00,120,151,184,178,100,99,99,149 +1969-12-17 00:00:00,1969-12-16 23:00:00,179,159,150,154,101,101,100,159 +1969-12-17 00:00:00,1969-12-16 23:00:00,119,125,161,158,101,101,100,186 +1969-12-17 00:00:00,1969-12-16 23:00:00,124,117,160,0,100,100,99,114 +1969-12-17 00:00:00,1969-12-16 23:00:00,146,179,191,197,101,99,99,100 +1969-12-17 00:00:00,1969-12-16 23:00:00,192,114,125,152,100,100,101,167 +1969-12-17 00:00:00,1969-12-16 23:00:00,124,182,186,175,99,101,100,173 +1969-12-17 00:00:00,1969-12-16 23:00:00,183,182,152,105,101,101,100,156 +1969-12-17 00:00:00,1969-12-16 23:00:00,191,170,159,0,99,101,100,185 +1969-12-17 00:00:00,1969-12-16 23:00:00,182,104,142,121,99,100,99,125 +1969-12-17 00:00:00,1969-12-16 23:00:00,102,102,184,144,100,101,99,189 +1969-12-17 00:00:00,1969-12-16 23:00:00,105,192,130,106,101,100,99,183 +1969-12-17 00:00:00,1969-12-16 23:00:00,124,119,149,145,100,100,100,130 +1969-12-17 00:00:00,1969-12-16 23:00:00,124,151,162,0,99,99,101,197 +1969-12-17 00:00:00,1969-12-16 23:00:00,144,187,110,109,101,100,101,111 +1969-12-17 00:00:00,1969-12-16 23:00:00,119,135,130,110,99,100,100,192 +1969-12-17 00:00:00,1969-12-16 23:00:00,146,183,158,151,101,100,101,190 +1969-12-17 00:00:00,1969-12-16 23:00:00,174,130,156,161,99,100,101,150 +1969-12-17 00:00:00,1969-12-16 23:00:00,155,112,122,170,101,100,101,184 +1969-12-17 00:00:00,1969-12-16 23:00:00,171,156,192,172,101,100,99,127 +1969-12-17 00:00:00,1969-12-16 23:00:00,168,146,132,173,101,101,101,179 +1969-12-17 00:00:00,1969-12-16 23:00:00,178,178,141,191,100,101,100,143 +1969-12-17 00:00:00,1969-12-16 23:00:00,181,196,109,172,100,101,101,198 +1969-12-17 00:00:00,1969-12-16 23:00:00,155,197,168,0,99,99,100,155 +1969-12-17 00:00:00,1969-12-16 23:00:00,157,139,147,163,99,101,99,183 +1969-12-17 00:00:00,1969-12-16 23:00:00,174,128,126,125,99,101,101,130 +1969-12-17 00:00:00,1969-12-16 23:00:00,136,166,168,170,100,100,99,181 +1969-12-17 00:00:00,1969-12-16 23:00:00,188,182,199,171,101,99,100,100 +1969-12-17 00:00:00,1969-12-16 23:00:00,126,158,197,142,101,101,100,162 +1969-12-17 00:00:00,1969-12-16 23:00:00,129,196,167,147,100,99,99,106 +1969-12-17 00:00:00,1969-12-16 23:00:00,146,154,155,120,100,99,99,159 +1969-12-17 00:00:00,1969-12-16 23:00:00,133,108,180,151,101,99,99,197 +1969-12-17 00:00:00,1969-12-16 23:00:00,169,108,172,120,99,101,100,163 +1969-12-17 00:00:00,1969-12-16 23:00:00,165,197,146,118,99,99,100,122 +1969-12-17 00:00:00,1969-12-16 23:00:00,145,102,110,128,100,101,101,161 +1969-12-17 00:00:00,1969-12-16 23:00:00,152,188,189,120,99,101,100,199 +1969-12-17 00:00:00,1969-12-16 23:00:00,143,116,105,114,99,101,101,163 +1969-12-17 00:00:00,1969-12-16 23:00:00,156,174,200,106,99,101,99,141 +1969-12-17 00:00:00,1969-12-16 23:00:00,183,191,115,0,100,99,101,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,187,172,161,119,100,100,101,107 +1969-12-17 00:00:00,1969-12-16 23:00:00,118,192,175,168,99,101,99,166 +1969-12-17 00:00:00,1969-12-16 23:00:00,187,121,131,104,100,99,100,143 +1969-12-17 00:00:00,1969-12-16 23:00:00,177,112,102,0,100,100,101,180 +1969-12-17 00:00:00,1969-12-16 23:00:00,186,179,161,116,100,99,100,112 +1969-12-17 00:00:00,1969-12-16 23:00:00,148,178,148,116,101,101,99,152 +1969-12-17 00:00:00,1969-12-16 23:00:00,176,155,164,110,99,99,101,174 +1969-12-17 00:00:00,1969-12-16 23:00:00,173,167,156,153,99,101,100,188 +1969-12-17 00:00:00,1969-12-16 23:00:00,176,116,120,0,99,99,99,160 +1969-12-17 00:00:00,1969-12-16 23:00:00,122,127,160,130,101,100,99,137 +1969-12-17 00:00:00,1969-12-16 23:00:00,180,121,113,121,99,100,99,181 +1969-12-17 00:00:00,1969-12-16 23:00:00,140,198,144,164,99,99,101,123 +1969-12-17 00:00:00,1969-12-16 23:00:00,116,158,110,107,101,101,99,198 +1969-12-17 00:00:00,1969-12-16 23:00:00,140,194,143,134,100,101,101,115 +1969-12-17 00:00:00,1969-12-16 23:00:00,134,114,124,160,101,101,99,158 +1969-12-17 00:00:00,1969-12-16 23:00:00,139,117,158,114,100,99,101,128 +1969-12-17 00:00:00,1969-12-16 23:00:00,140,131,107,127,100,101,101,154 +1969-12-17 00:00:00,1969-12-16 23:00:00,200,155,102,169,100,100,100,149 +1969-12-17 00:00:00,1969-12-16 23:00:00,187,122,142,155,99,101,99,117 +1969-12-17 00:00:00,1969-12-16 23:00:00,113,141,170,129,101,99,100,140 +1969-12-17 00:00:00,1969-12-16 23:00:00,197,176,191,119,101,100,101,178 +1969-12-17 00:00:00,1969-12-16 23:00:00,131,186,184,169,99,99,100,101 +1969-12-17 00:00:00,1969-12-16 23:00:00,121,183,136,194,100,101,100,135 +1969-12-17 00:00:00,1969-12-16 23:00:00,111,109,108,190,100,101,101,150 +1969-12-17 00:00:00,1969-12-16 23:00:00,145,121,195,125,101,99,100,141 +1969-12-17 00:00:00,1969-12-16 23:00:00,134,189,194,126,100,100,100,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,103,110,127,122,101,100,99,192 +1969-12-17 00:00:00,1969-12-16 23:00:00,122,113,123,153,99,99,99,131 +1969-12-17 00:00:00,1969-12-16 23:00:00,164,134,186,153,101,101,101,175 +1969-12-17 00:00:00,1969-12-16 23:00:00,103,110,128,162,100,100,101,131 +1969-12-17 00:00:00,1969-12-16 23:00:00,122,133,126,122,101,101,101,129 +1969-12-17 00:00:00,1969-12-16 23:00:00,184,135,194,150,99,101,101,198 +1969-12-17 00:00:00,1969-12-16 23:00:00,195,159,162,192,100,100,100,175 +1969-12-17 00:00:00,1969-12-16 23:00:00,196,121,166,100,100,99,100,101 +1969-12-17 00:00:00,1969-12-16 23:00:00,148,167,130,121,99,100,99,123 +1969-12-17 00:00:00,1969-12-16 23:00:00,118,155,145,157,100,100,99,160 +1969-12-17 00:00:00,1969-12-16 23:00:00,172,192,155,199,101,100,99,125 +1969-12-17 00:00:00,1969-12-16 23:00:00,138,176,121,112,101,99,101,178 +1969-12-17 00:00:00,1969-12-16 23:00:00,138,109,172,134,99,101,101,163 +1969-12-17 00:00:00,1969-12-16 23:00:00,103,120,188,164,100,101,101,143 +1969-12-17 00:00:00,1969-12-16 23:00:00,146,162,105,112,100,100,101,108 +1969-12-17 00:00:00,1969-12-16 23:00:00,181,177,148,0,100,101,99,132 +1969-12-17 00:00:00,1969-12-16 23:00:00,146,105,131,158,99,100,100,144 +1969-12-17 00:00:00,1969-12-16 23:00:00,137,167,166,122,101,99,100,114 +1969-12-17 00:00:00,1969-12-16 23:00:00,119,188,147,119,100,99,100,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,126,150,110,164,100,100,100,139 +1969-12-17 00:00:00,1969-12-16 23:00:00,154,127,160,0,101,100,99,149 +1969-12-17 00:00:00,1969-12-16 23:00:00,191,156,197,167,100,99,100,198 +1969-12-17 00:00:00,1969-12-16 23:00:00,199,158,107,162,99,99,101,178 +1969-12-17 00:00:00,1969-12-16 23:00:00,129,106,154,154,99,101,101,158 +1969-12-17 00:00:00,1969-12-16 23:00:00,133,180,163,166,100,100,100,110 +1969-12-17 00:00:00,1969-12-16 23:00:00,182,114,190,0,101,99,99,171 +1969-12-16 00:00:00,1969-12-15 23:00:00,149,110,0,167,99,99,99,173 +1969-12-16 00:00:00,1969-12-15 23:00:00,141,156,0,167,99,100,99,126 +1969-12-16 00:00:00,1969-12-15 23:00:00,107,124,0,193,99,100,99,147 +1969-12-16 00:00:00,1969-12-15 23:00:00,162,171,0,137,99,101,99,118 +1969-12-16 00:00:00,1969-12-15 23:00:00,150,128,0,181,99,99,99,186 +1969-12-16 00:00:00,1969-12-15 23:00:00,183,110,0,161,99,101,99,162 +1969-12-16 00:00:00,1969-12-15 23:00:00,200,173,180,109,101,101,99,196 +1969-12-16 00:00:00,1969-12-15 23:00:00,180,107,114,119,100,99,99,153 +1969-12-16 00:00:00,1969-12-15 23:00:00,128,133,106,172,101,99,101,161 +1969-12-16 00:00:00,1969-12-15 23:00:00,133,141,179,115,101,100,100,180 +1969-12-16 00:00:00,1969-12-15 23:00:00,135,181,139,116,99,100,100,134 +1969-12-16 00:00:00,1969-12-15 23:00:00,192,200,192,133,99,99,99,165 +1969-12-16 00:00:00,1969-12-15 23:00:00,102,135,123,157,99,99,100,101 +1969-12-16 00:00:00,1969-12-15 23:00:00,186,192,179,0,101,100,99,117 +1969-12-16 00:00:00,1969-12-15 23:00:00,128,154,113,200,99,100,100,200 +1969-12-16 00:00:00,1969-12-15 23:00:00,131,141,114,131,100,101,101,173 +1969-12-16 00:00:00,1969-12-15 23:00:00,122,123,109,0,100,99,101,105 +1969-12-16 00:00:00,1969-12-15 23:00:00,189,164,182,158,100,101,99,107 +1969-12-16 00:00:00,1969-12-15 23:00:00,135,137,128,194,99,101,100,160 +1969-12-16 00:00:00,1969-12-15 23:00:00,165,137,185,109,101,101,100,135 +1969-12-16 00:00:00,1969-12-15 23:00:00,117,142,165,194,99,100,100,165 +1969-12-16 00:00:00,1969-12-15 23:00:00,114,188,133,114,99,100,101,109 +1969-12-16 00:00:00,1969-12-15 23:00:00,140,174,180,129,101,101,101,150 +1969-12-16 00:00:00,1969-12-15 23:00:00,135,200,152,130,100,101,100,122 +1969-12-16 00:00:00,1969-12-15 23:00:00,126,170,144,181,100,99,99,110 +1969-12-16 00:00:00,1969-12-15 23:00:00,170,162,183,161,100,99,100,101 +1969-12-16 00:00:00,1969-12-15 23:00:00,195,116,131,109,100,101,101,121 +1969-12-16 00:00:00,1969-12-15 23:00:00,111,156,136,126,99,99,100,145 +1969-12-16 00:00:00,1969-12-15 23:00:00,131,123,193,0,100,101,99,168 +1969-12-16 00:00:00,1969-12-15 23:00:00,111,137,169,122,99,99,101,148 +1969-12-16 00:00:00,1969-12-15 23:00:00,178,160,164,122,100,99,101,104 +1969-12-16 00:00:00,1969-12-15 23:00:00,150,120,100,0,99,99,101,145 +1969-12-16 00:00:00,1969-12-15 23:00:00,156,157,141,0,101,101,99,150 +1969-12-16 00:00:00,1969-12-15 23:00:00,136,173,131,174,99,101,101,193 +1969-12-16 00:00:00,1969-12-15 23:00:00,122,200,150,198,100,101,101,121 +1969-12-16 00:00:00,1969-12-15 23:00:00,125,138,131,107,99,101,100,197 +1969-12-16 00:00:00,1969-12-15 23:00:00,131,109,183,0,101,99,100,118 +1969-12-16 00:00:00,1969-12-15 23:00:00,161,111,199,155,101,99,100,106 +1969-12-16 00:00:00,1969-12-15 23:00:00,119,179,174,108,100,100,99,197 +1969-12-16 00:00:00,1969-12-15 23:00:00,136,190,132,183,101,100,101,189 +1969-12-16 00:00:00,1969-12-15 23:00:00,193,146,102,147,100,99,100,101 +1969-12-16 00:00:00,1969-12-15 23:00:00,146,187,180,193,100,100,99,198 +1969-12-16 00:00:00,1969-12-15 23:00:00,151,164,183,164,101,100,100,104 +1969-12-16 00:00:00,1969-12-15 23:00:00,107,148,118,188,99,100,100,106 +1969-12-16 00:00:00,1969-12-15 23:00:00,112,131,101,192,101,100,100,151 +1969-12-16 00:00:00,1969-12-15 23:00:00,157,171,186,160,100,99,99,136 +1969-12-16 00:00:00,1969-12-15 23:00:00,121,134,122,128,100,101,100,154 +1969-12-16 00:00:00,1969-12-15 23:00:00,199,193,174,157,101,99,99,171 +1969-12-16 00:00:00,1969-12-15 23:00:00,161,145,106,114,101,100,100,158 +1969-12-16 00:00:00,1969-12-15 23:00:00,176,184,191,112,99,99,99,133 +1969-12-16 00:00:00,1969-12-15 23:00:00,200,141,127,195,100,99,99,189 +1969-12-16 00:00:00,1969-12-15 23:00:00,120,111,121,193,99,101,101,197 +1969-12-16 00:00:00,1969-12-15 23:00:00,176,169,180,0,99,101,100,117 +1969-12-16 00:00:00,1969-12-15 23:00:00,145,147,109,0,100,101,101,105 +1969-12-16 00:00:00,1969-12-15 23:00:00,157,198,191,132,100,99,100,124 +1969-12-16 00:00:00,1969-12-15 23:00:00,130,116,131,164,100,99,101,142 +1969-12-16 00:00:00,1969-12-15 23:00:00,110,152,137,185,99,99,99,106 +1969-12-16 00:00:00,1969-12-15 23:00:00,135,179,186,0,101,99,99,107 +1969-12-16 00:00:00,1969-12-15 23:00:00,134,134,163,188,101,99,101,143 +1969-12-16 00:00:00,1969-12-15 23:00:00,191,170,106,173,99,101,101,129 +1969-12-16 00:00:00,1969-12-15 23:00:00,129,196,138,0,100,99,99,146 +1969-12-16 00:00:00,1969-12-15 23:00:00,106,175,105,177,100,99,100,108 +1969-12-16 00:00:00,1969-12-15 23:00:00,125,184,142,190,101,99,100,142 +1969-12-16 00:00:00,1969-12-15 23:00:00,137,120,132,126,99,100,99,118 +1969-12-16 00:00:00,1969-12-15 23:00:00,141,133,194,0,100,99,101,149 +1969-12-16 00:00:00,1969-12-15 23:00:00,147,112,112,121,99,101,100,104 +1969-12-16 00:00:00,1969-12-15 23:00:00,108,145,191,0,99,100,99,137 +1969-12-16 00:00:00,1969-12-15 23:00:00,104,152,157,199,101,101,99,171 +1969-12-16 00:00:00,1969-12-15 23:00:00,140,133,131,187,101,99,101,109 +1969-12-16 00:00:00,1969-12-15 23:00:00,184,144,196,0,100,100,101,123 +1969-12-16 00:00:00,1969-12-15 23:00:00,105,195,175,0,100,99,101,171 +1969-12-16 00:00:00,1969-12-15 23:00:00,174,153,147,0,99,100,101,177 +1969-12-16 00:00:00,1969-12-15 23:00:00,148,130,102,137,100,100,99,180 +1969-12-16 00:00:00,1969-12-15 23:00:00,131,179,168,169,99,101,100,102 +1969-12-16 00:00:00,1969-12-15 23:00:00,160,142,148,149,99,99,101,112 +1969-12-16 00:00:00,1969-12-15 23:00:00,124,160,166,130,99,100,99,106 +1969-12-16 00:00:00,1969-12-15 23:00:00,127,135,117,123,101,100,99,133 +1969-12-16 00:00:00,1969-12-15 23:00:00,175,121,174,0,101,100,100,120 +1969-12-16 00:00:00,1969-12-15 23:00:00,179,169,174,175,100,99,101,181 +1969-12-16 00:00:00,1969-12-15 23:00:00,164,192,146,189,99,99,101,200 +1969-12-16 00:00:00,1969-12-15 23:00:00,170,156,101,125,100,99,100,125 +1969-12-16 00:00:00,1969-12-15 23:00:00,152,140,118,192,100,101,100,154 +1969-12-16 00:00:00,1969-12-15 23:00:00,179,155,105,125,99,100,99,177 +1969-12-16 00:00:00,1969-12-15 23:00:00,190,195,180,134,101,100,99,130 +1969-12-16 00:00:00,1969-12-15 23:00:00,148,182,185,135,99,101,99,129 +1969-12-16 00:00:00,1969-12-15 23:00:00,137,125,169,154,101,101,99,186 +1969-12-16 00:00:00,1969-12-15 23:00:00,173,104,192,142,101,99,100,100 +1969-12-16 00:00:00,1969-12-15 23:00:00,187,128,161,163,100,100,101,141 +1969-12-16 00:00:00,1969-12-15 23:00:00,100,183,129,148,100,100,100,126 +1969-12-16 00:00:00,1969-12-15 23:00:00,200,168,135,123,101,100,101,180 +1969-12-16 00:00:00,1969-12-15 23:00:00,189,117,185,0,100,100,99,171 +1969-12-16 00:00:00,1969-12-15 23:00:00,142,128,106,115,101,101,101,162 +1969-12-16 00:00:00,1969-12-15 23:00:00,109,115,196,157,101,99,99,125 +1969-12-16 00:00:00,1969-12-15 23:00:00,193,180,124,188,99,99,101,144 +1969-12-16 00:00:00,1969-12-15 23:00:00,127,160,189,0,99,99,100,138 +1969-12-16 00:00:00,1969-12-15 23:00:00,120,159,122,185,99,101,101,102 +1969-12-16 00:00:00,1969-12-15 23:00:00,177,180,151,167,101,99,100,145 +1969-12-16 00:00:00,1969-12-15 23:00:00,173,124,166,178,99,100,99,123 +1969-12-16 00:00:00,1969-12-15 23:00:00,142,101,186,170,100,101,101,117 +1969-12-16 00:00:00,1969-12-15 23:00:00,157,148,102,131,101,101,99,128 +1969-12-16 00:00:00,1969-12-15 23:00:00,136,174,164,116,99,100,100,124 +1969-12-16 00:00:00,1969-12-15 23:00:00,155,134,161,110,100,99,99,157 +1969-12-16 00:00:00,1969-12-15 23:00:00,128,121,119,133,99,99,101,179 +1969-12-16 00:00:00,1969-12-15 23:00:00,136,145,171,0,99,101,100,196 +1969-12-16 00:00:00,1969-12-15 23:00:00,166,145,165,143,99,101,100,160 +1969-12-16 00:00:00,1969-12-15 23:00:00,164,171,113,132,100,101,100,195 +1969-12-16 00:00:00,1969-12-15 23:00:00,175,174,131,148,101,101,101,126 +1969-12-16 00:00:00,1969-12-15 23:00:00,158,154,120,147,101,99,100,152 +1969-12-16 00:00:00,1969-12-15 23:00:00,133,178,127,163,101,99,99,175 +1969-12-16 00:00:00,1969-12-15 23:00:00,107,120,161,0,101,101,100,166 +1969-12-16 00:00:00,1969-12-15 23:00:00,191,190,147,188,101,100,101,133 +1969-12-16 00:00:00,1969-12-15 23:00:00,113,133,178,0,99,100,101,175 +1969-12-16 00:00:00,1969-12-15 23:00:00,198,162,155,191,99,99,100,100 +1969-12-16 00:00:00,1969-12-15 23:00:00,133,181,178,197,101,100,101,126 +1969-12-16 00:00:00,1969-12-15 23:00:00,115,172,116,117,100,99,99,118 +1969-12-16 00:00:00,1969-12-15 23:00:00,176,135,143,169,100,101,99,105 +1969-12-16 00:00:00,1969-12-15 23:00:00,190,179,135,108,101,100,100,173 +1969-12-16 00:00:00,1969-12-15 23:00:00,124,113,146,197,99,101,101,102 +1969-12-16 00:00:00,1969-12-15 23:00:00,104,102,180,170,101,99,99,187 +1969-12-16 00:00:00,1969-12-15 23:00:00,174,194,160,149,100,99,100,114 +1969-12-16 00:00:00,1969-12-15 23:00:00,190,179,190,134,100,101,99,175 +1969-12-16 00:00:00,1969-12-15 23:00:00,134,116,199,116,99,100,100,176 +1969-12-16 00:00:00,1969-12-15 23:00:00,105,126,189,105,99,99,101,134 +1969-12-16 00:00:00,1969-12-15 23:00:00,182,108,118,190,100,101,101,140 +1969-12-16 00:00:00,1969-12-15 23:00:00,194,127,190,159,99,101,99,152 +1969-12-16 00:00:00,1969-12-15 23:00:00,125,161,163,135,99,99,99,143 +1969-12-16 00:00:00,1969-12-15 23:00:00,137,135,198,125,100,100,100,191 +1969-12-16 00:00:00,1969-12-15 23:00:00,190,199,146,185,99,100,99,150 +1969-12-16 00:00:00,1969-12-15 23:00:00,173,196,146,139,100,101,101,143 +1969-12-16 00:00:00,1969-12-15 23:00:00,176,155,193,0,99,100,100,179 +1969-12-16 00:00:00,1969-12-15 23:00:00,183,176,146,0,99,100,99,106 +1969-12-16 00:00:00,1969-12-15 23:00:00,195,104,121,0,100,101,100,149 +1969-12-16 00:00:00,1969-12-15 23:00:00,154,134,152,0,99,99,101,158 +1969-12-16 00:00:00,1969-12-15 23:00:00,162,101,140,153,101,100,101,147 +1969-12-16 00:00:00,1969-12-15 23:00:00,117,179,189,185,100,101,101,200 +1969-12-16 00:00:00,1969-12-15 23:00:00,119,136,179,200,101,100,101,131 +1969-12-16 00:00:00,1969-12-15 23:00:00,137,168,169,0,100,100,99,167 +1969-12-16 00:00:00,1969-12-15 23:00:00,106,158,157,199,100,100,101,112 +1969-12-16 00:00:00,1969-12-15 23:00:00,131,103,116,152,99,100,99,167 +1969-12-16 00:00:00,1969-12-15 23:00:00,129,145,179,188,101,101,100,194 +1969-12-16 00:00:00,1969-12-15 23:00:00,133,104,176,118,100,101,100,153 +1969-12-16 00:00:00,1969-12-15 23:00:00,200,170,188,178,100,99,101,124 +1969-12-16 00:00:00,1969-12-15 23:00:00,107,199,106,102,100,101,99,150 +1969-12-16 00:00:00,1969-12-15 23:00:00,114,151,130,177,99,99,99,163 +1969-12-16 00:00:00,1969-12-15 23:00:00,162,192,163,141,100,100,101,128 +1969-12-16 00:00:00,1969-12-15 23:00:00,149,180,100,0,101,100,99,188 +1969-12-16 00:00:00,1969-12-15 23:00:00,167,111,119,152,99,99,101,142 +1969-12-16 00:00:00,1969-12-15 23:00:00,159,198,187,190,101,100,100,101 +1969-12-16 00:00:00,1969-12-15 23:00:00,183,192,103,130,99,100,100,157 +1969-12-16 00:00:00,1969-12-15 23:00:00,170,146,101,198,101,101,100,136 +1969-12-16 00:00:00,1969-12-15 23:00:00,195,173,189,115,99,100,99,106 +1969-12-16 00:00:00,1969-12-15 23:00:00,118,147,135,185,101,100,100,200 +1969-12-16 00:00:00,1969-12-15 23:00:00,141,119,197,0,100,99,101,144 +1969-12-16 00:00:00,1969-12-15 23:00:00,114,188,182,149,101,99,101,147 +1969-12-16 00:00:00,1969-12-15 23:00:00,181,193,162,0,101,100,99,139 +1969-12-16 00:00:00,1969-12-15 23:00:00,159,174,133,131,100,99,99,116 +1969-12-16 00:00:00,1969-12-15 23:00:00,125,102,198,0,99,99,100,114 +1969-12-16 00:00:00,1969-12-15 23:00:00,158,144,114,147,101,99,101,138 +1969-12-16 00:00:00,1969-12-15 23:00:00,151,169,113,0,99,101,100,116 +1969-12-16 00:00:00,1969-12-15 23:00:00,103,142,175,194,99,101,100,164 +1969-12-16 00:00:00,1969-12-15 23:00:00,136,122,171,194,101,100,101,162 +1969-12-16 00:00:00,1969-12-15 23:00:00,174,155,140,147,101,100,100,115 +1969-12-16 00:00:00,1969-12-15 23:00:00,130,131,149,0,99,101,101,188 +1969-12-16 00:00:00,1969-12-15 23:00:00,111,108,146,160,100,99,99,149 +1969-12-16 00:00:00,1969-12-15 23:00:00,143,159,101,123,101,101,100,111 +1969-12-16 00:00:00,1969-12-15 23:00:00,172,164,176,0,100,100,99,164 +1969-12-16 00:00:00,1969-12-15 23:00:00,180,188,188,149,101,99,99,152 +1969-12-16 00:00:00,1969-12-15 23:00:00,176,188,116,167,99,100,99,121 +1969-12-16 00:00:00,1969-12-15 23:00:00,118,179,171,114,99,101,100,190 +1969-12-16 00:00:00,1969-12-15 23:00:00,188,181,166,137,100,99,100,129 +1969-12-16 00:00:00,1969-12-15 23:00:00,143,131,186,106,100,101,101,142 +1969-12-16 00:00:00,1969-12-15 23:00:00,144,152,162,176,100,99,101,157 +1969-12-16 00:00:00,1969-12-15 23:00:00,134,196,197,148,100,100,99,198 +1969-12-16 00:00:00,1969-12-15 23:00:00,108,124,196,178,101,100,99,155 +1969-12-16 00:00:00,1969-12-15 23:00:00,174,109,113,159,101,100,100,159 +1969-12-16 00:00:00,1969-12-15 23:00:00,187,194,133,0,99,100,99,181 +1969-12-16 00:00:00,1969-12-15 23:00:00,104,199,170,0,100,101,100,136 +1969-12-16 00:00:00,1969-12-15 23:00:00,104,131,141,189,101,99,99,180 +1969-12-16 00:00:00,1969-12-15 23:00:00,161,163,124,119,100,100,100,147 +1969-12-16 00:00:00,1969-12-15 23:00:00,120,191,197,124,101,100,101,191 +1969-12-16 00:00:00,1969-12-15 23:00:00,124,102,152,200,99,100,99,180 +1969-12-16 00:00:00,1969-12-15 23:00:00,173,197,116,115,99,99,101,173 +1969-12-16 00:00:00,1969-12-15 23:00:00,158,131,200,159,101,99,100,185 +1969-12-16 00:00:00,1969-12-15 23:00:00,158,200,136,182,101,101,99,141 +1969-12-16 00:00:00,1969-12-15 23:00:00,187,179,130,190,99,99,101,101 +1969-12-16 00:00:00,1969-12-15 23:00:00,147,185,119,181,100,99,99,125 +1969-12-16 00:00:00,1969-12-15 23:00:00,164,140,114,131,99,101,101,175 +1969-12-16 00:00:00,1969-12-15 23:00:00,139,196,191,128,100,101,100,116 +1969-12-16 00:00:00,1969-12-15 23:00:00,164,162,159,114,99,101,101,161 +1969-12-16 00:00:00,1969-12-15 23:00:00,183,163,199,118,99,99,101,125 +1969-12-16 00:00:00,1969-12-15 23:00:00,122,113,148,161,101,100,100,151 +1969-12-16 00:00:00,1969-12-15 23:00:00,178,174,187,106,99,99,101,101 +1969-12-16 00:00:00,1969-12-15 23:00:00,162,134,199,136,99,100,99,172 +1969-12-16 00:00:00,1969-12-15 23:00:00,147,192,115,156,101,100,100,127 +1969-12-16 00:00:00,1969-12-15 23:00:00,188,161,116,103,101,101,101,121 +1969-12-16 00:00:00,1969-12-15 23:00:00,187,191,107,110,100,100,101,198 +1969-12-16 00:00:00,1969-12-15 23:00:00,122,148,109,194,99,100,101,186 +1969-12-16 00:00:00,1969-12-15 23:00:00,151,150,119,131,99,100,99,129 +1969-12-16 00:00:00,1969-12-15 23:00:00,166,198,133,195,100,101,100,180 +1969-12-16 00:00:00,1969-12-15 23:00:00,186,105,153,0,101,99,100,117 +1969-12-15 00:00:00,1969-12-14 23:00:00,170,120,0,186,99,100,99,165 +1969-12-15 00:00:00,1969-12-14 23:00:00,119,180,0,0,100,99,101,124 +1969-12-15 00:00:00,1969-12-14 23:00:00,189,113,0,0,100,100,99,130 +1969-12-15 00:00:00,1969-12-14 23:00:00,171,145,0,128,99,100,101,133 +1969-12-15 00:00:00,1969-12-14 23:00:00,104,161,0,181,101,99,99,195 +1969-12-15 00:00:00,1969-12-14 23:00:00,133,136,0,155,100,99,99,185 +1969-12-15 00:00:00,1969-12-14 23:00:00,122,138,168,173,101,100,101,100 +1969-12-15 00:00:00,1969-12-14 23:00:00,112,163,200,0,100,99,101,144 +1969-12-15 00:00:00,1969-12-14 23:00:00,176,163,109,165,101,100,101,168 +1969-12-15 00:00:00,1969-12-14 23:00:00,139,195,181,186,101,99,99,102 +1969-12-15 00:00:00,1969-12-14 23:00:00,139,125,111,192,101,99,101,174 +1969-12-15 00:00:00,1969-12-14 23:00:00,131,160,147,169,101,100,100,117 +1969-12-15 00:00:00,1969-12-14 23:00:00,130,184,198,183,99,100,99,181 +1969-12-15 00:00:00,1969-12-14 23:00:00,170,106,118,135,101,99,101,177 +1969-12-15 00:00:00,1969-12-14 23:00:00,198,100,127,123,99,99,99,105 +1969-12-15 00:00:00,1969-12-14 23:00:00,127,185,111,115,101,99,101,175 +1969-12-15 00:00:00,1969-12-14 23:00:00,146,146,117,198,100,100,99,145 +1969-12-15 00:00:00,1969-12-14 23:00:00,141,107,166,186,99,100,99,176 +1969-12-15 00:00:00,1969-12-14 23:00:00,195,192,137,0,100,101,101,157 +1969-12-15 00:00:00,1969-12-14 23:00:00,126,105,116,0,99,99,101,118 +1969-12-15 00:00:00,1969-12-14 23:00:00,122,190,181,194,100,100,100,147 +1969-12-15 00:00:00,1969-12-14 23:00:00,181,119,114,147,101,100,101,130 +1969-12-15 00:00:00,1969-12-14 23:00:00,171,144,140,100,101,100,99,156 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,156,179,179,101,100,99,110 +1969-12-15 00:00:00,1969-12-14 23:00:00,126,176,200,173,99,101,99,187 +1969-12-15 00:00:00,1969-12-14 23:00:00,126,167,102,120,99,100,101,134 +1969-12-15 00:00:00,1969-12-14 23:00:00,200,173,200,119,99,99,100,130 +1969-12-15 00:00:00,1969-12-14 23:00:00,186,141,110,176,101,100,99,119 +1969-12-15 00:00:00,1969-12-14 23:00:00,168,174,110,0,101,101,99,119 +1969-12-15 00:00:00,1969-12-14 23:00:00,190,191,117,0,100,101,99,160 +1969-12-15 00:00:00,1969-12-14 23:00:00,164,126,134,128,100,100,100,117 +1969-12-15 00:00:00,1969-12-14 23:00:00,144,185,163,175,99,101,99,116 +1969-12-15 00:00:00,1969-12-14 23:00:00,119,169,101,135,99,99,101,123 +1969-12-15 00:00:00,1969-12-14 23:00:00,135,190,152,190,99,100,101,115 +1969-12-15 00:00:00,1969-12-14 23:00:00,126,123,133,172,100,101,100,169 +1969-12-15 00:00:00,1969-12-14 23:00:00,148,164,193,135,100,100,101,164 +1969-12-15 00:00:00,1969-12-14 23:00:00,130,170,132,156,99,99,99,145 +1969-12-15 00:00:00,1969-12-14 23:00:00,174,117,155,141,101,100,99,109 +1969-12-15 00:00:00,1969-12-14 23:00:00,124,182,129,137,101,101,101,117 +1969-12-15 00:00:00,1969-12-14 23:00:00,156,110,144,0,99,101,101,124 +1969-12-15 00:00:00,1969-12-14 23:00:00,153,113,176,153,101,99,100,199 +1969-12-15 00:00:00,1969-12-14 23:00:00,140,134,182,113,99,99,100,131 +1969-12-15 00:00:00,1969-12-14 23:00:00,131,144,184,196,101,100,99,180 +1969-12-15 00:00:00,1969-12-14 23:00:00,122,122,160,146,99,99,101,135 +1969-12-15 00:00:00,1969-12-14 23:00:00,140,126,191,183,99,100,101,119 +1969-12-15 00:00:00,1969-12-14 23:00:00,116,199,148,0,101,100,100,101 +1969-12-15 00:00:00,1969-12-14 23:00:00,173,190,163,182,99,99,101,190 +1969-12-15 00:00:00,1969-12-14 23:00:00,169,135,131,128,99,99,100,161 +1969-12-15 00:00:00,1969-12-14 23:00:00,108,152,116,0,100,101,101,188 +1969-12-15 00:00:00,1969-12-14 23:00:00,167,129,130,154,99,101,100,188 +1969-12-15 00:00:00,1969-12-14 23:00:00,191,128,113,190,99,99,100,149 +1969-12-15 00:00:00,1969-12-14 23:00:00,148,140,190,0,99,99,101,150 +1969-12-15 00:00:00,1969-12-14 23:00:00,194,111,160,121,101,100,99,159 +1969-12-15 00:00:00,1969-12-14 23:00:00,112,191,187,0,101,99,101,115 +1969-12-15 00:00:00,1969-12-14 23:00:00,188,125,104,131,99,101,99,116 +1969-12-15 00:00:00,1969-12-14 23:00:00,120,181,198,115,101,101,100,138 +1969-12-15 00:00:00,1969-12-14 23:00:00,154,181,168,156,100,99,100,194 +1969-12-15 00:00:00,1969-12-14 23:00:00,184,129,160,159,99,101,99,191 +1969-12-15 00:00:00,1969-12-14 23:00:00,110,150,194,104,101,100,101,135 +1969-12-15 00:00:00,1969-12-14 23:00:00,138,186,168,194,99,101,101,161 +1969-12-15 00:00:00,1969-12-14 23:00:00,100,198,110,118,100,101,101,170 +1969-12-15 00:00:00,1969-12-14 23:00:00,180,104,151,0,99,99,100,180 +1969-12-15 00:00:00,1969-12-14 23:00:00,146,183,145,0,100,100,99,184 +1969-12-15 00:00:00,1969-12-14 23:00:00,153,195,198,0,100,99,100,118 +1969-12-15 00:00:00,1969-12-14 23:00:00,140,127,122,126,99,100,100,107 +1969-12-15 00:00:00,1969-12-14 23:00:00,118,125,184,175,101,99,99,170 +1969-12-15 00:00:00,1969-12-14 23:00:00,141,175,175,0,100,100,99,172 +1969-12-15 00:00:00,1969-12-14 23:00:00,176,165,174,143,100,101,100,148 +1969-12-15 00:00:00,1969-12-14 23:00:00,116,176,118,117,99,99,99,129 +1969-12-15 00:00:00,1969-12-14 23:00:00,108,133,138,190,99,100,101,121 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,129,135,109,100,99,99,113 +1969-12-15 00:00:00,1969-12-14 23:00:00,131,134,164,130,101,100,100,112 +1969-12-15 00:00:00,1969-12-14 23:00:00,183,178,109,0,101,101,101,182 +1969-12-15 00:00:00,1969-12-14 23:00:00,170,198,179,0,101,101,101,150 +1969-12-15 00:00:00,1969-12-14 23:00:00,139,188,185,166,99,99,99,107 +1969-12-15 00:00:00,1969-12-14 23:00:00,100,124,127,172,99,101,99,105 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,105,167,142,99,99,99,114 +1969-12-15 00:00:00,1969-12-14 23:00:00,139,105,165,0,101,99,99,173 +1969-12-15 00:00:00,1969-12-14 23:00:00,197,164,185,0,100,100,101,149 +1969-12-15 00:00:00,1969-12-14 23:00:00,188,141,137,111,101,101,100,180 +1969-12-15 00:00:00,1969-12-14 23:00:00,147,173,178,166,100,101,101,112 +1969-12-15 00:00:00,1969-12-14 23:00:00,154,122,165,114,100,99,99,198 +1969-12-15 00:00:00,1969-12-14 23:00:00,118,191,192,144,99,99,100,147 +1969-12-15 00:00:00,1969-12-14 23:00:00,170,190,142,162,101,99,99,145 +1969-12-15 00:00:00,1969-12-14 23:00:00,120,167,100,148,100,101,101,158 +1969-12-15 00:00:00,1969-12-14 23:00:00,145,119,114,178,101,101,101,160 +1969-12-15 00:00:00,1969-12-14 23:00:00,126,168,134,0,99,99,101,156 +1969-12-15 00:00:00,1969-12-14 23:00:00,147,120,179,106,100,100,101,163 +1969-12-15 00:00:00,1969-12-14 23:00:00,195,103,114,111,100,101,101,175 +1969-12-15 00:00:00,1969-12-14 23:00:00,147,125,105,102,101,99,100,187 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,126,151,143,101,101,100,104 +1969-12-15 00:00:00,1969-12-14 23:00:00,194,159,118,149,100,99,99,166 +1969-12-15 00:00:00,1969-12-14 23:00:00,193,174,125,131,99,101,99,139 +1969-12-15 00:00:00,1969-12-14 23:00:00,134,127,171,139,101,101,99,171 +1969-12-15 00:00:00,1969-12-14 23:00:00,179,131,198,133,100,101,99,188 +1969-12-15 00:00:00,1969-12-14 23:00:00,126,146,155,153,99,100,100,191 +1969-12-15 00:00:00,1969-12-14 23:00:00,127,135,197,0,99,101,99,149 +1969-12-15 00:00:00,1969-12-14 23:00:00,164,116,139,186,99,100,101,111 +1969-12-15 00:00:00,1969-12-14 23:00:00,123,143,192,164,99,99,100,194 +1969-12-15 00:00:00,1969-12-14 23:00:00,107,151,116,184,101,100,101,189 +1969-12-15 00:00:00,1969-12-14 23:00:00,123,135,200,194,99,99,100,187 +1969-12-15 00:00:00,1969-12-14 23:00:00,172,162,191,179,99,99,99,147 +1969-12-15 00:00:00,1969-12-14 23:00:00,125,136,120,0,100,99,101,179 +1969-12-15 00:00:00,1969-12-14 23:00:00,200,154,123,136,100,100,99,150 +1969-12-15 00:00:00,1969-12-14 23:00:00,118,163,161,186,100,101,100,131 +1969-12-15 00:00:00,1969-12-14 23:00:00,144,100,196,177,99,99,100,113 +1969-12-15 00:00:00,1969-12-14 23:00:00,180,108,185,0,99,101,100,166 +1969-12-15 00:00:00,1969-12-14 23:00:00,103,198,185,158,101,99,99,167 +1969-12-15 00:00:00,1969-12-14 23:00:00,175,108,186,149,101,101,99,183 +1969-12-15 00:00:00,1969-12-14 23:00:00,104,148,187,0,99,100,100,171 +1969-12-15 00:00:00,1969-12-14 23:00:00,128,181,152,152,101,100,101,192 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,119,117,105,101,101,99,104 +1969-12-15 00:00:00,1969-12-14 23:00:00,200,175,198,144,100,100,101,136 +1969-12-15 00:00:00,1969-12-14 23:00:00,198,154,164,186,101,101,100,100 +1969-12-15 00:00:00,1969-12-14 23:00:00,132,145,153,123,101,99,101,118 +1969-12-15 00:00:00,1969-12-14 23:00:00,199,138,196,177,100,101,101,175 +1969-12-15 00:00:00,1969-12-14 23:00:00,145,200,123,165,99,99,99,180 +1969-12-15 00:00:00,1969-12-14 23:00:00,109,143,115,197,99,99,101,126 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,149,194,0,100,100,99,106 +1969-12-15 00:00:00,1969-12-14 23:00:00,162,151,106,0,99,101,99,119 +1969-12-15 00:00:00,1969-12-14 23:00:00,138,163,185,158,100,99,101,127 +1969-12-15 00:00:00,1969-12-14 23:00:00,163,142,168,0,101,100,101,188 +1969-12-15 00:00:00,1969-12-14 23:00:00,153,101,196,0,99,101,101,136 +1969-12-15 00:00:00,1969-12-14 23:00:00,103,147,167,121,99,100,99,164 +1969-12-15 00:00:00,1969-12-14 23:00:00,138,184,183,141,100,100,100,189 +1969-12-15 00:00:00,1969-12-14 23:00:00,178,148,192,111,101,101,99,101 +1969-12-15 00:00:00,1969-12-14 23:00:00,111,153,130,193,99,101,101,130 +1969-12-15 00:00:00,1969-12-14 23:00:00,146,178,166,124,101,100,100,165 +1969-12-15 00:00:00,1969-12-14 23:00:00,188,199,181,109,99,100,101,174 +1969-12-15 00:00:00,1969-12-14 23:00:00,115,158,184,109,99,100,100,147 +1969-12-15 00:00:00,1969-12-14 23:00:00,103,104,143,0,101,101,101,110 +1969-12-15 00:00:00,1969-12-14 23:00:00,176,104,182,164,99,101,100,188 +1969-12-15 00:00:00,1969-12-14 23:00:00,161,103,134,187,100,99,99,158 +1969-12-15 00:00:00,1969-12-14 23:00:00,103,169,193,114,101,100,100,104 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,106,147,101,99,99,101,188 +1969-12-15 00:00:00,1969-12-14 23:00:00,125,197,104,0,100,101,100,123 +1969-12-15 00:00:00,1969-12-14 23:00:00,185,117,197,199,100,100,99,191 +1969-12-15 00:00:00,1969-12-14 23:00:00,139,122,143,146,99,100,99,164 +1969-12-15 00:00:00,1969-12-14 23:00:00,148,146,162,0,99,100,100,154 +1969-12-15 00:00:00,1969-12-14 23:00:00,200,191,156,151,100,100,99,104 +1969-12-15 00:00:00,1969-12-14 23:00:00,146,178,139,166,101,101,99,113 +1969-12-15 00:00:00,1969-12-14 23:00:00,168,138,149,106,100,100,100,154 +1969-12-15 00:00:00,1969-12-14 23:00:00,194,136,110,149,99,100,100,120 +1969-12-15 00:00:00,1969-12-14 23:00:00,148,118,104,191,100,99,101,123 +1969-12-15 00:00:00,1969-12-14 23:00:00,131,100,137,180,99,100,101,158 +1969-12-15 00:00:00,1969-12-14 23:00:00,194,157,172,0,100,101,99,184 +1969-12-15 00:00:00,1969-12-14 23:00:00,111,179,189,159,99,100,101,168 +1969-12-15 00:00:00,1969-12-14 23:00:00,123,111,100,113,99,101,101,187 +1969-12-15 00:00:00,1969-12-14 23:00:00,111,139,166,147,101,101,101,187 +1969-12-15 00:00:00,1969-12-14 23:00:00,168,182,121,0,100,99,101,130 +1969-12-15 00:00:00,1969-12-14 23:00:00,161,180,162,137,100,99,101,107 +1969-12-15 00:00:00,1969-12-14 23:00:00,100,145,117,0,99,101,99,118 +1969-12-15 00:00:00,1969-12-14 23:00:00,155,145,196,194,101,99,99,148 +1969-12-15 00:00:00,1969-12-14 23:00:00,148,173,119,0,101,100,99,119 +1969-12-15 00:00:00,1969-12-14 23:00:00,192,110,124,116,100,100,99,146 +1969-12-15 00:00:00,1969-12-14 23:00:00,130,186,145,146,99,101,99,124 +1969-12-15 00:00:00,1969-12-14 23:00:00,183,176,154,120,100,100,101,169 +1969-12-15 00:00:00,1969-12-14 23:00:00,194,109,194,186,101,100,99,171 +1969-12-15 00:00:00,1969-12-14 23:00:00,140,123,132,0,101,101,101,122 +1969-12-15 00:00:00,1969-12-14 23:00:00,153,179,118,198,99,99,100,128 +1969-12-15 00:00:00,1969-12-14 23:00:00,162,115,123,127,101,100,99,134 +1969-12-15 00:00:00,1969-12-14 23:00:00,144,144,187,107,100,101,99,122 +1969-12-15 00:00:00,1969-12-14 23:00:00,176,122,182,172,99,101,99,170 +1969-12-15 00:00:00,1969-12-14 23:00:00,111,183,156,195,100,99,101,125 +1969-12-15 00:00:00,1969-12-14 23:00:00,111,153,104,135,101,101,100,189 +1969-12-15 00:00:00,1969-12-14 23:00:00,197,185,138,158,100,101,100,198 +1969-12-15 00:00:00,1969-12-14 23:00:00,159,117,173,194,99,100,101,122 +1969-12-15 00:00:00,1969-12-14 23:00:00,173,108,100,0,101,101,100,181 +1969-12-15 00:00:00,1969-12-14 23:00:00,110,155,123,169,100,101,101,120 +1969-12-15 00:00:00,1969-12-14 23:00:00,146,102,161,180,101,100,99,171 +1969-12-15 00:00:00,1969-12-14 23:00:00,190,133,179,167,101,100,100,112 +1969-12-15 00:00:00,1969-12-14 23:00:00,188,185,160,195,99,100,100,100 +1969-12-15 00:00:00,1969-12-14 23:00:00,161,137,191,111,100,99,99,158 +1969-12-15 00:00:00,1969-12-14 23:00:00,104,174,115,0,101,99,99,108 +1969-12-15 00:00:00,1969-12-14 23:00:00,121,100,195,0,101,100,101,161 +1969-12-15 00:00:00,1969-12-14 23:00:00,135,158,107,126,100,99,99,121 +1969-12-15 00:00:00,1969-12-14 23:00:00,179,163,165,187,100,101,99,181 +1969-12-15 00:00:00,1969-12-14 23:00:00,169,133,179,157,99,100,100,128 +1969-12-15 00:00:00,1969-12-14 23:00:00,165,114,168,177,100,99,99,200 +1969-12-15 00:00:00,1969-12-14 23:00:00,151,125,152,184,99,99,100,196 +1969-12-15 00:00:00,1969-12-14 23:00:00,136,132,109,103,100,101,101,151 +1969-12-15 00:00:00,1969-12-14 23:00:00,148,150,146,120,100,100,100,112 +1969-12-15 00:00:00,1969-12-14 23:00:00,199,105,182,179,101,99,101,100 +1969-12-15 00:00:00,1969-12-14 23:00:00,121,198,118,0,101,99,101,142 +1969-12-15 00:00:00,1969-12-14 23:00:00,200,141,167,164,100,101,100,103 +1969-12-15 00:00:00,1969-12-14 23:00:00,129,185,193,187,100,100,101,172 +1969-12-15 00:00:00,1969-12-14 23:00:00,182,153,158,153,101,100,100,119 +1969-12-15 00:00:00,1969-12-14 23:00:00,106,148,191,148,99,100,100,144 +1969-12-15 00:00:00,1969-12-14 23:00:00,133,146,169,176,99,100,100,198 +1969-12-15 00:00:00,1969-12-14 23:00:00,152,166,138,0,101,101,99,120 +1969-12-15 00:00:00,1969-12-14 23:00:00,185,180,169,147,100,99,101,111 +1969-12-15 00:00:00,1969-12-14 23:00:00,129,151,119,0,101,100,101,144 +1969-12-15 00:00:00,1969-12-14 23:00:00,176,111,135,0,100,99,100,187 +1969-12-15 00:00:00,1969-12-14 23:00:00,199,128,128,159,101,100,99,126 +1969-12-15 00:00:00,1969-12-14 23:00:00,125,134,124,100,100,99,99,170 +1969-12-15 00:00:00,1969-12-14 23:00:00,104,108,102,192,99,100,101,146 +1969-12-15 00:00:00,1969-12-14 23:00:00,117,109,115,166,101,101,101,161 +1969-12-15 00:00:00,1969-12-14 23:00:00,106,170,174,102,101,100,100,189 +1969-12-15 00:00:00,1969-12-14 23:00:00,180,161,149,155,99,100,101,193 +1969-12-15 00:00:00,1969-12-14 23:00:00,118,143,187,0,101,101,100,152 +1969-12-14 00:00:00,1969-12-13 23:00:00,102,188,0,100,100,100,99,186 +1969-12-14 00:00:00,1969-12-13 23:00:00,174,121,0,127,99,99,99,149 +1969-12-14 00:00:00,1969-12-13 23:00:00,122,185,0,169,101,100,99,102 +1969-12-14 00:00:00,1969-12-13 23:00:00,186,156,0,179,100,99,101,102 +1969-12-14 00:00:00,1969-12-13 23:00:00,102,173,0,0,99,101,99,137 +1969-12-14 00:00:00,1969-12-13 23:00:00,126,132,0,157,100,100,100,163 +1969-12-14 00:00:00,1969-12-13 23:00:00,123,186,164,125,101,101,100,188 +1969-12-14 00:00:00,1969-12-13 23:00:00,132,161,105,132,101,99,101,102 +1969-12-14 00:00:00,1969-12-13 23:00:00,182,163,131,121,99,101,101,105 +1969-12-14 00:00:00,1969-12-13 23:00:00,113,136,141,161,100,101,99,120 +1969-12-14 00:00:00,1969-12-13 23:00:00,173,168,181,121,99,99,101,102 +1969-12-14 00:00:00,1969-12-13 23:00:00,166,194,131,0,99,100,99,105 +1969-12-14 00:00:00,1969-12-13 23:00:00,180,182,140,189,101,101,100,124 +1969-12-14 00:00:00,1969-12-13 23:00:00,197,129,118,132,101,99,99,183 +1969-12-14 00:00:00,1969-12-13 23:00:00,120,108,153,121,101,99,101,101 +1969-12-14 00:00:00,1969-12-13 23:00:00,139,108,100,0,99,101,101,110 +1969-12-14 00:00:00,1969-12-13 23:00:00,128,183,145,190,101,101,99,168 +1969-12-14 00:00:00,1969-12-13 23:00:00,159,192,129,195,101,101,101,104 +1969-12-14 00:00:00,1969-12-13 23:00:00,143,126,170,117,101,101,99,131 +1969-12-14 00:00:00,1969-12-13 23:00:00,122,157,179,133,101,101,100,121 +1969-12-14 00:00:00,1969-12-13 23:00:00,180,152,199,126,99,101,99,155 +1969-12-14 00:00:00,1969-12-13 23:00:00,141,173,119,191,101,101,99,166 +1969-12-14 00:00:00,1969-12-13 23:00:00,121,191,114,170,99,101,100,138 +1969-12-14 00:00:00,1969-12-13 23:00:00,112,106,102,121,99,101,100,123 +1969-12-14 00:00:00,1969-12-13 23:00:00,146,200,169,165,100,99,99,143 +1969-12-14 00:00:00,1969-12-13 23:00:00,163,122,137,102,101,99,100,149 +1969-12-14 00:00:00,1969-12-13 23:00:00,188,197,168,116,101,99,100,107 +1969-12-14 00:00:00,1969-12-13 23:00:00,131,194,190,170,101,99,101,109 +1969-12-14 00:00:00,1969-12-13 23:00:00,185,160,155,194,100,100,100,164 +1969-12-14 00:00:00,1969-12-13 23:00:00,175,133,162,153,100,100,99,137 +1969-12-14 00:00:00,1969-12-13 23:00:00,141,163,113,0,99,101,100,106 +1969-12-14 00:00:00,1969-12-13 23:00:00,187,166,162,200,99,99,101,167 +1969-12-14 00:00:00,1969-12-13 23:00:00,200,182,180,192,99,101,100,100 +1969-12-14 00:00:00,1969-12-13 23:00:00,129,126,151,156,101,99,100,108 +1969-12-14 00:00:00,1969-12-13 23:00:00,161,114,146,0,99,101,99,167 +1969-12-14 00:00:00,1969-12-13 23:00:00,107,141,159,108,101,99,101,180 +1969-12-14 00:00:00,1969-12-13 23:00:00,143,106,108,169,101,99,101,135 +1969-12-14 00:00:00,1969-12-13 23:00:00,161,110,198,0,99,101,100,200 +1969-12-14 00:00:00,1969-12-13 23:00:00,137,119,139,188,99,101,99,191 +1969-12-14 00:00:00,1969-12-13 23:00:00,147,159,102,0,99,100,100,152 +1969-12-14 00:00:00,1969-12-13 23:00:00,116,107,110,0,99,101,100,111 +1969-12-14 00:00:00,1969-12-13 23:00:00,164,128,198,198,101,101,99,198 +1969-12-14 00:00:00,1969-12-13 23:00:00,154,143,187,180,99,100,100,200 +1969-12-14 00:00:00,1969-12-13 23:00:00,199,133,128,134,101,100,100,172 +1969-12-14 00:00:00,1969-12-13 23:00:00,132,188,111,145,100,100,99,169 +1969-12-14 00:00:00,1969-12-13 23:00:00,137,137,122,160,99,99,99,145 +1969-12-14 00:00:00,1969-12-13 23:00:00,129,118,102,158,99,101,101,134 +1969-12-14 00:00:00,1969-12-13 23:00:00,170,166,138,0,100,100,101,133 +1969-12-14 00:00:00,1969-12-13 23:00:00,150,178,117,188,100,101,99,151 +1969-12-14 00:00:00,1969-12-13 23:00:00,180,116,170,182,100,99,101,190 +1969-12-14 00:00:00,1969-12-13 23:00:00,117,107,128,0,101,101,99,132 +1969-12-14 00:00:00,1969-12-13 23:00:00,124,137,130,165,99,100,100,123 +1969-12-14 00:00:00,1969-12-13 23:00:00,116,166,177,173,99,100,99,131 +1969-12-14 00:00:00,1969-12-13 23:00:00,178,172,150,199,99,100,100,151 +1969-12-14 00:00:00,1969-12-13 23:00:00,101,104,136,0,100,100,101,179 +1969-12-14 00:00:00,1969-12-13 23:00:00,200,176,174,139,100,99,101,170 +1969-12-14 00:00:00,1969-12-13 23:00:00,111,160,104,156,100,101,99,114 +1969-12-14 00:00:00,1969-12-13 23:00:00,190,141,104,188,100,101,99,111 +1969-12-14 00:00:00,1969-12-13 23:00:00,149,197,115,0,100,100,99,200 +1969-12-14 00:00:00,1969-12-13 23:00:00,148,188,128,199,99,100,99,137 +1969-12-14 00:00:00,1969-12-13 23:00:00,118,116,144,130,100,100,99,192 +1969-12-14 00:00:00,1969-12-13 23:00:00,103,200,158,155,99,101,100,154 +1969-12-14 00:00:00,1969-12-13 23:00:00,153,175,161,164,100,101,101,126 +1969-12-14 00:00:00,1969-12-13 23:00:00,152,131,100,0,99,100,101,110 +1969-12-14 00:00:00,1969-12-13 23:00:00,165,150,165,103,100,101,101,152 +1969-12-14 00:00:00,1969-12-13 23:00:00,177,150,172,118,101,99,99,156 +1969-12-14 00:00:00,1969-12-13 23:00:00,199,118,187,141,99,100,100,154 +1969-12-14 00:00:00,1969-12-13 23:00:00,138,129,141,136,100,100,101,132 +1969-12-14 00:00:00,1969-12-13 23:00:00,103,182,109,108,100,99,99,168 +1969-12-14 00:00:00,1969-12-13 23:00:00,119,184,125,147,101,99,101,130 +1969-12-14 00:00:00,1969-12-13 23:00:00,139,130,114,0,100,99,101,103 +1969-12-14 00:00:00,1969-12-13 23:00:00,113,164,113,101,101,101,100,179 +1969-12-14 00:00:00,1969-12-13 23:00:00,114,106,199,100,99,99,100,167 +1969-12-14 00:00:00,1969-12-13 23:00:00,140,199,196,138,99,101,100,183 +1969-12-14 00:00:00,1969-12-13 23:00:00,143,120,154,0,99,101,101,175 +1969-12-14 00:00:00,1969-12-13 23:00:00,186,109,100,171,101,101,99,106 +1969-12-14 00:00:00,1969-12-13 23:00:00,181,119,199,0,101,100,100,140 +1969-12-14 00:00:00,1969-12-13 23:00:00,199,177,172,123,101,99,101,106 +1969-12-14 00:00:00,1969-12-13 23:00:00,131,105,195,0,101,99,100,122 +1969-12-14 00:00:00,1969-12-13 23:00:00,178,148,133,153,100,99,101,145 +1969-12-14 00:00:00,1969-12-13 23:00:00,157,162,171,177,99,99,100,191 +1969-12-14 00:00:00,1969-12-13 23:00:00,176,129,115,189,100,99,100,118 +1969-12-14 00:00:00,1969-12-13 23:00:00,118,143,156,169,99,100,99,121 +1969-12-14 00:00:00,1969-12-13 23:00:00,115,120,183,0,101,100,101,116 +1969-12-14 00:00:00,1969-12-13 23:00:00,100,186,110,174,100,101,100,142 +1969-12-14 00:00:00,1969-12-13 23:00:00,128,188,133,156,100,100,99,179 +1969-12-14 00:00:00,1969-12-13 23:00:00,142,126,190,0,100,99,99,148 +1969-12-14 00:00:00,1969-12-13 23:00:00,191,198,192,0,100,100,100,190 +1969-12-14 00:00:00,1969-12-13 23:00:00,129,167,173,0,101,99,101,129 +1969-12-14 00:00:00,1969-12-13 23:00:00,177,121,170,124,100,101,99,134 +1969-12-14 00:00:00,1969-12-13 23:00:00,104,135,192,109,101,100,99,165 +1969-12-14 00:00:00,1969-12-13 23:00:00,165,129,102,0,99,101,100,183 +1969-12-14 00:00:00,1969-12-13 23:00:00,158,147,174,146,99,100,100,128 +1969-12-14 00:00:00,1969-12-13 23:00:00,195,136,171,157,101,101,99,128 +1969-12-14 00:00:00,1969-12-13 23:00:00,116,161,149,132,100,100,100,145 +1969-12-14 00:00:00,1969-12-13 23:00:00,192,118,163,0,99,101,101,126 +1969-12-14 00:00:00,1969-12-13 23:00:00,101,125,162,111,101,100,101,138 +1969-12-14 00:00:00,1969-12-13 23:00:00,128,177,113,0,100,101,101,196 +1969-12-14 00:00:00,1969-12-13 23:00:00,104,170,162,114,99,100,99,185 +1969-12-14 00:00:00,1969-12-13 23:00:00,125,138,145,184,99,99,99,158 +1969-12-14 00:00:00,1969-12-13 23:00:00,112,128,156,100,99,99,99,122 +1969-12-14 00:00:00,1969-12-13 23:00:00,193,190,135,0,100,100,100,182 +1969-12-14 00:00:00,1969-12-13 23:00:00,155,137,184,126,99,101,101,137 +1969-12-14 00:00:00,1969-12-13 23:00:00,175,179,147,143,99,100,101,125 +1969-12-14 00:00:00,1969-12-13 23:00:00,109,103,193,116,101,99,101,195 +1969-12-14 00:00:00,1969-12-13 23:00:00,138,180,145,0,101,101,100,146 +1969-12-14 00:00:00,1969-12-13 23:00:00,150,181,127,146,101,99,99,198 +1969-12-14 00:00:00,1969-12-13 23:00:00,137,187,153,117,99,99,99,155 +1969-12-14 00:00:00,1969-12-13 23:00:00,139,199,121,0,99,100,100,198 +1969-12-14 00:00:00,1969-12-13 23:00:00,138,164,138,160,100,101,101,157 +1969-12-14 00:00:00,1969-12-13 23:00:00,179,118,187,167,101,100,99,190 +1969-12-14 00:00:00,1969-12-13 23:00:00,127,138,142,192,100,101,100,147 +1969-12-14 00:00:00,1969-12-13 23:00:00,178,138,112,160,101,101,100,154 +1969-12-14 00:00:00,1969-12-13 23:00:00,186,192,115,174,99,101,99,103 +1969-12-14 00:00:00,1969-12-13 23:00:00,156,189,158,164,99,99,101,115 +1969-12-14 00:00:00,1969-12-13 23:00:00,181,181,200,128,100,100,99,101 +1969-12-14 00:00:00,1969-12-13 23:00:00,169,192,126,0,99,100,100,116 +1969-12-14 00:00:00,1969-12-13 23:00:00,122,198,120,137,99,101,101,134 +1969-12-14 00:00:00,1969-12-13 23:00:00,153,127,108,161,100,100,99,151 +1969-12-14 00:00:00,1969-12-13 23:00:00,163,108,184,0,99,100,100,107 +1969-12-14 00:00:00,1969-12-13 23:00:00,123,113,196,107,100,99,101,101 +1969-12-14 00:00:00,1969-12-13 23:00:00,167,171,179,160,100,99,101,143 +1969-12-14 00:00:00,1969-12-13 23:00:00,191,168,138,0,101,100,100,170 +1969-12-14 00:00:00,1969-12-13 23:00:00,195,160,164,0,100,100,100,112 +1969-12-14 00:00:00,1969-12-13 23:00:00,107,149,113,0,100,99,100,180 +1969-12-14 00:00:00,1969-12-13 23:00:00,109,158,171,140,99,100,99,177 +1969-12-14 00:00:00,1969-12-13 23:00:00,133,195,176,0,100,99,101,115 +1969-12-14 00:00:00,1969-12-13 23:00:00,154,160,184,117,100,100,100,120 +1969-12-14 00:00:00,1969-12-13 23:00:00,167,194,143,0,101,100,101,149 +1969-12-14 00:00:00,1969-12-13 23:00:00,152,110,154,184,99,101,100,154 +1969-12-14 00:00:00,1969-12-13 23:00:00,158,108,121,133,100,101,100,193 +1969-12-14 00:00:00,1969-12-13 23:00:00,111,101,155,0,100,99,100,116 +1969-12-14 00:00:00,1969-12-13 23:00:00,107,151,176,147,99,99,101,138 +1969-12-14 00:00:00,1969-12-13 23:00:00,155,170,136,126,100,99,101,145 +1969-12-14 00:00:00,1969-12-13 23:00:00,180,168,113,124,99,99,99,131 +1969-12-14 00:00:00,1969-12-13 23:00:00,153,186,100,164,99,99,99,178 +1969-12-14 00:00:00,1969-12-13 23:00:00,103,109,116,0,101,100,100,111 +1969-12-14 00:00:00,1969-12-13 23:00:00,151,157,166,149,99,101,101,114 +1969-12-14 00:00:00,1969-12-13 23:00:00,122,108,178,118,99,99,101,152 +1969-12-14 00:00:00,1969-12-13 23:00:00,173,130,200,185,101,100,100,179 +1969-12-14 00:00:00,1969-12-13 23:00:00,101,120,104,128,100,101,101,148 +1969-12-14 00:00:00,1969-12-13 23:00:00,129,189,180,172,101,99,100,118 +1969-12-14 00:00:00,1969-12-13 23:00:00,175,149,171,157,100,99,99,157 +1969-12-14 00:00:00,1969-12-13 23:00:00,182,173,183,114,101,101,101,132 +1969-12-14 00:00:00,1969-12-13 23:00:00,155,191,192,0,99,100,99,161 +1969-12-14 00:00:00,1969-12-13 23:00:00,136,195,141,131,101,100,101,190 +1969-12-14 00:00:00,1969-12-13 23:00:00,166,124,178,135,100,99,100,190 +1969-12-14 00:00:00,1969-12-13 23:00:00,137,188,193,186,100,101,101,103 +1969-12-14 00:00:00,1969-12-13 23:00:00,177,128,129,127,101,99,101,173 +1969-12-14 00:00:00,1969-12-13 23:00:00,100,104,136,128,100,101,100,142 +1969-12-14 00:00:00,1969-12-13 23:00:00,143,134,102,0,101,100,100,103 +1969-12-14 00:00:00,1969-12-13 23:00:00,108,199,192,173,100,101,100,148 +1969-12-14 00:00:00,1969-12-13 23:00:00,194,195,134,195,100,99,100,154 +1969-12-14 00:00:00,1969-12-13 23:00:00,162,124,129,108,99,101,100,153 +1969-12-14 00:00:00,1969-12-13 23:00:00,180,172,175,137,101,100,101,172 +1969-12-14 00:00:00,1969-12-13 23:00:00,173,194,160,149,99,101,101,147 +1969-12-14 00:00:00,1969-12-13 23:00:00,117,175,119,0,99,101,99,152 +1969-12-14 00:00:00,1969-12-13 23:00:00,198,122,161,100,100,99,99,163 +1969-12-14 00:00:00,1969-12-13 23:00:00,175,183,146,138,99,100,100,173 +1969-12-14 00:00:00,1969-12-13 23:00:00,181,101,118,134,101,99,99,122 +1969-12-14 00:00:00,1969-12-13 23:00:00,127,129,127,130,100,101,99,200 +1969-12-14 00:00:00,1969-12-13 23:00:00,166,187,140,130,100,101,99,135 +1969-12-14 00:00:00,1969-12-13 23:00:00,195,183,136,147,99,99,100,186 +1969-12-14 00:00:00,1969-12-13 23:00:00,134,166,181,112,101,101,99,154 +1969-12-14 00:00:00,1969-12-13 23:00:00,184,109,129,189,100,100,100,110 +1969-12-14 00:00:00,1969-12-13 23:00:00,107,127,151,185,99,99,99,198 +1969-12-14 00:00:00,1969-12-13 23:00:00,115,146,132,193,101,100,99,136 +1969-12-14 00:00:00,1969-12-13 23:00:00,140,139,171,0,101,101,101,138 +1969-12-14 00:00:00,1969-12-13 23:00:00,196,156,134,113,100,100,101,196 +1969-12-14 00:00:00,1969-12-13 23:00:00,169,133,164,163,99,101,100,104 +1969-12-14 00:00:00,1969-12-13 23:00:00,163,142,161,200,99,100,99,125 +1969-12-14 00:00:00,1969-12-13 23:00:00,100,169,134,175,99,101,100,148 +1969-12-14 00:00:00,1969-12-13 23:00:00,101,169,181,106,101,99,101,149 +1969-12-14 00:00:00,1969-12-13 23:00:00,192,129,194,151,101,101,99,195 +1969-12-14 00:00:00,1969-12-13 23:00:00,125,137,152,164,101,101,99,192 +1969-12-14 00:00:00,1969-12-13 23:00:00,172,128,147,195,100,99,99,145 +1969-12-14 00:00:00,1969-12-13 23:00:00,150,140,134,145,101,101,101,190 +1969-12-14 00:00:00,1969-12-13 23:00:00,190,158,189,135,101,101,100,130 +1969-12-14 00:00:00,1969-12-13 23:00:00,184,148,177,124,101,99,101,197 +1969-12-14 00:00:00,1969-12-13 23:00:00,152,168,163,149,101,101,99,141 +1969-12-14 00:00:00,1969-12-13 23:00:00,133,119,172,0,100,100,100,128 +1969-12-14 00:00:00,1969-12-13 23:00:00,136,111,101,134,100,100,100,117 +1969-12-14 00:00:00,1969-12-13 23:00:00,138,157,128,106,100,99,101,160 +1969-12-14 00:00:00,1969-12-13 23:00:00,135,172,160,128,101,100,100,148 +1969-12-14 00:00:00,1969-12-13 23:00:00,171,111,160,100,99,101,101,186 +1969-12-14 00:00:00,1969-12-13 23:00:00,196,172,162,161,100,100,100,124 +1969-12-14 00:00:00,1969-12-13 23:00:00,192,171,191,0,100,99,100,135 +1969-12-14 00:00:00,1969-12-13 23:00:00,194,108,102,113,101,100,101,138 +1969-12-14 00:00:00,1969-12-13 23:00:00,197,136,132,172,101,99,99,168 +1969-12-14 00:00:00,1969-12-13 23:00:00,174,187,152,131,99,101,99,112 +1969-12-14 00:00:00,1969-12-13 23:00:00,179,114,189,153,101,100,100,196 +1969-12-14 00:00:00,1969-12-13 23:00:00,148,189,157,158,99,100,101,151 +1969-12-14 00:00:00,1969-12-13 23:00:00,198,104,158,0,100,99,99,171 +1969-12-14 00:00:00,1969-12-13 23:00:00,168,107,119,116,100,101,100,126 +1969-12-14 00:00:00,1969-12-13 23:00:00,153,155,167,186,100,100,101,145 +1969-12-14 00:00:00,1969-12-13 23:00:00,149,160,115,0,101,101,101,120 +1969-12-14 00:00:00,1969-12-13 23:00:00,157,128,117,164,101,99,100,121 +1969-12-14 00:00:00,1969-12-13 23:00:00,192,133,115,124,101,101,101,183 +1969-12-14 00:00:00,1969-12-13 23:00:00,136,181,128,147,100,101,100,198 +1969-12-14 00:00:00,1969-12-13 23:00:00,135,151,128,184,99,101,101,193 +1969-12-13 00:00:00,1969-12-12 23:00:00,113,127,0,103,99,100,100,132 +1969-12-13 00:00:00,1969-12-12 23:00:00,157,134,0,148,100,99,99,185 +1969-12-13 00:00:00,1969-12-12 23:00:00,120,184,0,168,99,101,99,102 +1969-12-13 00:00:00,1969-12-12 23:00:00,187,126,0,158,99,100,100,102 +1969-12-13 00:00:00,1969-12-12 23:00:00,104,188,0,132,99,100,99,162 +1969-12-13 00:00:00,1969-12-12 23:00:00,188,178,0,0,101,101,101,151 +1969-12-13 00:00:00,1969-12-12 23:00:00,146,104,129,135,100,101,100,145 +1969-12-13 00:00:00,1969-12-12 23:00:00,188,115,155,102,101,101,99,198 +1969-12-13 00:00:00,1969-12-12 23:00:00,169,126,169,164,100,99,99,117 +1969-12-13 00:00:00,1969-12-12 23:00:00,124,142,177,117,99,99,99,165 +1969-12-13 00:00:00,1969-12-12 23:00:00,104,195,168,0,101,101,99,200 +1969-12-13 00:00:00,1969-12-12 23:00:00,167,156,194,0,99,100,99,172 +1969-12-13 00:00:00,1969-12-12 23:00:00,155,119,182,0,99,99,100,181 +1969-12-13 00:00:00,1969-12-12 23:00:00,127,110,138,105,100,100,99,104 +1969-12-13 00:00:00,1969-12-12 23:00:00,147,178,118,135,101,100,101,100 +1969-12-13 00:00:00,1969-12-12 23:00:00,104,152,169,0,99,101,99,137 +1969-12-13 00:00:00,1969-12-12 23:00:00,148,179,173,125,101,101,100,177 +1969-12-13 00:00:00,1969-12-12 23:00:00,169,101,178,0,101,100,101,146 +1969-12-13 00:00:00,1969-12-12 23:00:00,150,118,195,0,99,99,100,153 +1969-12-13 00:00:00,1969-12-12 23:00:00,114,121,111,146,100,99,99,186 +1969-12-13 00:00:00,1969-12-12 23:00:00,179,167,194,137,100,99,100,197 +1969-12-13 00:00:00,1969-12-12 23:00:00,190,109,125,0,100,100,99,179 +1969-12-13 00:00:00,1969-12-12 23:00:00,113,191,186,199,99,101,99,140 +1969-12-13 00:00:00,1969-12-12 23:00:00,193,142,111,0,99,99,100,178 +1969-12-13 00:00:00,1969-12-12 23:00:00,178,165,147,0,101,99,101,118 +1969-12-13 00:00:00,1969-12-12 23:00:00,109,186,165,108,100,99,101,162 +1969-12-13 00:00:00,1969-12-12 23:00:00,177,174,175,190,101,100,101,100 +1969-12-13 00:00:00,1969-12-12 23:00:00,128,192,120,144,99,100,101,166 +1969-12-13 00:00:00,1969-12-12 23:00:00,167,177,118,108,100,101,100,180 +1969-12-13 00:00:00,1969-12-12 23:00:00,123,129,156,125,99,101,100,134 +1969-12-13 00:00:00,1969-12-12 23:00:00,111,129,146,147,99,99,100,127 +1969-12-13 00:00:00,1969-12-12 23:00:00,140,184,196,194,99,100,99,113 +1969-12-13 00:00:00,1969-12-12 23:00:00,146,197,169,191,100,101,101,182 +1969-12-13 00:00:00,1969-12-12 23:00:00,111,173,107,141,99,99,101,151 +1969-12-13 00:00:00,1969-12-12 23:00:00,147,150,161,166,99,101,100,161 +1969-12-13 00:00:00,1969-12-12 23:00:00,136,134,161,128,100,100,99,143 +1969-12-13 00:00:00,1969-12-12 23:00:00,180,159,200,0,99,101,101,179 +1969-12-13 00:00:00,1969-12-12 23:00:00,138,134,199,133,99,101,101,136 +1969-12-13 00:00:00,1969-12-12 23:00:00,178,182,117,117,100,101,101,110 +1969-12-13 00:00:00,1969-12-12 23:00:00,150,183,113,0,99,99,100,150 +1969-12-13 00:00:00,1969-12-12 23:00:00,177,192,122,176,99,99,101,133 +1969-12-13 00:00:00,1969-12-12 23:00:00,174,187,104,135,99,99,101,184 +1969-12-13 00:00:00,1969-12-12 23:00:00,172,123,166,117,100,99,99,169 +1969-12-13 00:00:00,1969-12-12 23:00:00,102,195,166,169,100,100,100,188 +1969-12-13 00:00:00,1969-12-12 23:00:00,112,177,162,0,100,100,101,124 +1969-12-13 00:00:00,1969-12-12 23:00:00,176,143,143,0,100,100,100,131 +1969-12-13 00:00:00,1969-12-12 23:00:00,180,117,174,189,100,101,100,121 +1969-12-13 00:00:00,1969-12-12 23:00:00,148,174,142,185,99,99,101,138 +1969-12-13 00:00:00,1969-12-12 23:00:00,147,161,119,176,99,101,100,170 +1969-12-13 00:00:00,1969-12-12 23:00:00,185,103,168,146,100,101,99,169 +1969-12-13 00:00:00,1969-12-12 23:00:00,149,179,177,130,101,101,99,154 +1969-12-13 00:00:00,1969-12-12 23:00:00,170,141,141,113,100,99,99,141 +1969-12-13 00:00:00,1969-12-12 23:00:00,129,130,136,0,101,100,101,127 +1969-12-13 00:00:00,1969-12-12 23:00:00,174,131,186,127,101,101,101,190 +1969-12-13 00:00:00,1969-12-12 23:00:00,126,141,101,144,101,100,100,101 +1969-12-13 00:00:00,1969-12-12 23:00:00,180,102,126,124,99,99,101,118 +1969-12-13 00:00:00,1969-12-12 23:00:00,199,162,128,177,100,101,100,169 +1969-12-13 00:00:00,1969-12-12 23:00:00,144,141,190,109,99,101,100,195 +1969-12-13 00:00:00,1969-12-12 23:00:00,133,128,105,115,101,100,99,131 +1969-12-13 00:00:00,1969-12-12 23:00:00,182,186,128,128,99,100,99,177 +1969-12-13 00:00:00,1969-12-12 23:00:00,193,145,155,0,101,100,101,165 +1969-12-13 00:00:00,1969-12-12 23:00:00,163,125,133,118,100,99,99,181 +1969-12-13 00:00:00,1969-12-12 23:00:00,185,113,105,195,99,99,100,110 +1969-12-13 00:00:00,1969-12-12 23:00:00,135,185,147,165,100,100,99,150 +1969-12-13 00:00:00,1969-12-12 23:00:00,134,180,139,187,100,100,101,187 +1969-12-13 00:00:00,1969-12-12 23:00:00,156,199,136,145,100,100,99,194 +1969-12-13 00:00:00,1969-12-12 23:00:00,152,175,155,175,99,99,100,126 +1969-12-13 00:00:00,1969-12-12 23:00:00,131,185,162,172,101,101,100,126 +1969-12-13 00:00:00,1969-12-12 23:00:00,160,170,112,107,99,101,101,171 +1969-12-13 00:00:00,1969-12-12 23:00:00,185,107,125,0,101,101,101,190 +1969-12-13 00:00:00,1969-12-12 23:00:00,162,158,169,136,100,100,100,199 +1969-12-13 00:00:00,1969-12-12 23:00:00,188,151,175,0,99,100,99,163 +1969-12-13 00:00:00,1969-12-12 23:00:00,147,193,150,194,100,99,100,181 +1969-12-13 00:00:00,1969-12-12 23:00:00,184,105,135,181,100,99,101,136 +1969-12-13 00:00:00,1969-12-12 23:00:00,143,146,114,164,99,100,100,177 +1969-12-13 00:00:00,1969-12-12 23:00:00,200,155,115,0,99,101,101,152 +1969-12-13 00:00:00,1969-12-12 23:00:00,178,156,160,150,101,99,100,168 +1969-12-13 00:00:00,1969-12-12 23:00:00,173,192,189,183,101,101,100,124 +1969-12-13 00:00:00,1969-12-12 23:00:00,122,200,195,178,99,101,100,110 +1969-12-13 00:00:00,1969-12-12 23:00:00,129,163,108,138,99,100,99,167 +1969-12-13 00:00:00,1969-12-12 23:00:00,144,150,134,124,101,99,100,126 +1969-12-13 00:00:00,1969-12-12 23:00:00,163,105,161,139,101,100,101,125 +1969-12-13 00:00:00,1969-12-12 23:00:00,191,143,182,186,99,99,100,144 +1969-12-13 00:00:00,1969-12-12 23:00:00,122,138,104,198,101,101,99,181 +1969-12-13 00:00:00,1969-12-12 23:00:00,111,199,108,153,101,100,100,135 +1969-12-13 00:00:00,1969-12-12 23:00:00,200,140,103,123,99,101,101,164 +1969-12-13 00:00:00,1969-12-12 23:00:00,183,112,145,132,100,100,99,109 +1969-12-13 00:00:00,1969-12-12 23:00:00,125,167,106,0,100,99,99,139 +1969-12-13 00:00:00,1969-12-12 23:00:00,134,166,196,167,100,99,101,132 +1969-12-13 00:00:00,1969-12-12 23:00:00,160,116,138,0,100,99,99,109 +1969-12-13 00:00:00,1969-12-12 23:00:00,159,110,126,176,100,101,101,153 +1969-12-13 00:00:00,1969-12-12 23:00:00,194,164,154,0,100,99,101,149 +1969-12-13 00:00:00,1969-12-12 23:00:00,138,172,179,180,101,99,100,132 +1969-12-13 00:00:00,1969-12-12 23:00:00,199,125,189,135,101,100,99,107 +1969-12-13 00:00:00,1969-12-12 23:00:00,183,185,125,146,101,100,99,142 +1969-12-13 00:00:00,1969-12-12 23:00:00,147,122,175,153,99,100,101,110 +1969-12-13 00:00:00,1969-12-12 23:00:00,196,148,196,179,100,101,101,143 +1969-12-13 00:00:00,1969-12-12 23:00:00,178,155,195,125,101,101,99,148 +1969-12-13 00:00:00,1969-12-12 23:00:00,158,153,154,0,100,99,99,122 +1969-12-13 00:00:00,1969-12-12 23:00:00,150,189,104,160,99,101,99,127 +1969-12-13 00:00:00,1969-12-12 23:00:00,168,109,141,112,99,99,100,135 +1969-12-13 00:00:00,1969-12-12 23:00:00,116,155,131,0,99,101,99,165 +1969-12-13 00:00:00,1969-12-12 23:00:00,121,176,142,112,101,99,99,194 +1969-12-13 00:00:00,1969-12-12 23:00:00,160,140,100,137,99,101,100,125 +1969-12-13 00:00:00,1969-12-12 23:00:00,184,111,112,149,99,99,101,133 +1969-12-13 00:00:00,1969-12-12 23:00:00,159,113,146,178,99,101,100,155 +1969-12-13 00:00:00,1969-12-12 23:00:00,104,187,173,0,101,99,99,123 +1969-12-13 00:00:00,1969-12-12 23:00:00,130,163,125,169,100,100,101,185 +1969-12-13 00:00:00,1969-12-12 23:00:00,101,121,187,106,99,99,101,177 +1969-12-13 00:00:00,1969-12-12 23:00:00,190,113,123,149,99,101,101,189 +1969-12-13 00:00:00,1969-12-12 23:00:00,165,168,141,163,101,99,100,166 +1969-12-13 00:00:00,1969-12-12 23:00:00,120,129,163,106,101,101,99,195 +1969-12-13 00:00:00,1969-12-12 23:00:00,149,114,170,0,100,99,101,188 +1969-12-13 00:00:00,1969-12-12 23:00:00,197,110,111,0,100,101,100,162 +1969-12-13 00:00:00,1969-12-12 23:00:00,196,138,195,105,100,100,101,190 +1969-12-13 00:00:00,1969-12-12 23:00:00,197,164,108,110,100,100,99,151 +1969-12-13 00:00:00,1969-12-12 23:00:00,141,114,199,0,101,99,100,149 +1969-12-13 00:00:00,1969-12-12 23:00:00,193,160,113,199,99,99,100,138 +1969-12-13 00:00:00,1969-12-12 23:00:00,107,148,122,156,99,99,100,200 +1969-12-13 00:00:00,1969-12-12 23:00:00,194,191,153,115,99,99,99,199 +1969-12-13 00:00:00,1969-12-12 23:00:00,194,133,173,172,101,100,101,155 +1969-12-13 00:00:00,1969-12-12 23:00:00,144,152,159,107,99,100,99,120 +1969-12-13 00:00:00,1969-12-12 23:00:00,147,190,168,148,101,101,99,198 +1969-12-13 00:00:00,1969-12-12 23:00:00,112,137,126,120,99,100,101,170 +1969-12-13 00:00:00,1969-12-12 23:00:00,125,101,142,165,100,100,101,116 +1969-12-13 00:00:00,1969-12-12 23:00:00,111,131,124,127,99,100,99,113 +1969-12-13 00:00:00,1969-12-12 23:00:00,176,153,142,162,99,99,99,124 +1969-12-13 00:00:00,1969-12-12 23:00:00,147,109,115,153,99,100,100,163 +1969-12-13 00:00:00,1969-12-12 23:00:00,135,171,190,167,100,101,100,111 +1969-12-13 00:00:00,1969-12-12 23:00:00,182,132,104,119,101,99,101,141 +1969-12-13 00:00:00,1969-12-12 23:00:00,156,167,166,0,101,101,101,131 +1969-12-13 00:00:00,1969-12-12 23:00:00,193,183,137,137,101,101,101,131 +1969-12-13 00:00:00,1969-12-12 23:00:00,162,144,191,0,101,100,100,154 +1969-12-13 00:00:00,1969-12-12 23:00:00,160,158,180,134,100,99,100,119 +1969-12-13 00:00:00,1969-12-12 23:00:00,168,168,179,170,100,101,101,105 +1969-12-13 00:00:00,1969-12-12 23:00:00,133,162,137,114,101,99,100,187 +1969-12-13 00:00:00,1969-12-12 23:00:00,169,124,134,144,99,99,99,175 +1969-12-13 00:00:00,1969-12-12 23:00:00,144,126,141,184,101,99,99,109 +1969-12-13 00:00:00,1969-12-12 23:00:00,179,105,152,118,99,99,100,144 +1969-12-13 00:00:00,1969-12-12 23:00:00,198,165,137,197,100,99,99,147 +1969-12-13 00:00:00,1969-12-12 23:00:00,188,197,125,139,100,99,100,144 +1969-12-13 00:00:00,1969-12-12 23:00:00,120,139,173,182,101,100,99,101 +1969-12-13 00:00:00,1969-12-12 23:00:00,143,141,149,109,99,99,100,176 +1969-12-13 00:00:00,1969-12-12 23:00:00,158,152,122,199,101,100,100,151 +1969-12-13 00:00:00,1969-12-12 23:00:00,112,180,199,175,99,100,99,199 +1969-12-13 00:00:00,1969-12-12 23:00:00,132,137,144,118,101,99,100,131 +1969-12-13 00:00:00,1969-12-12 23:00:00,166,100,148,173,100,99,99,119 +1969-12-13 00:00:00,1969-12-12 23:00:00,145,139,194,134,101,100,101,192 +1969-12-13 00:00:00,1969-12-12 23:00:00,107,149,130,139,100,101,101,124 +1969-12-13 00:00:00,1969-12-12 23:00:00,177,173,166,180,99,101,99,200 +1969-12-13 00:00:00,1969-12-12 23:00:00,185,177,100,103,100,101,99,175 +1969-12-13 00:00:00,1969-12-12 23:00:00,111,161,126,0,100,99,100,141 +1969-12-13 00:00:00,1969-12-12 23:00:00,195,106,130,101,100,101,101,192 +1969-12-13 00:00:00,1969-12-12 23:00:00,149,182,177,172,100,99,101,191 +1969-12-13 00:00:00,1969-12-12 23:00:00,155,153,143,166,101,99,100,127 +1969-12-13 00:00:00,1969-12-12 23:00:00,161,143,132,154,101,99,101,128 +1969-12-13 00:00:00,1969-12-12 23:00:00,168,128,194,0,100,100,100,193 +1969-12-13 00:00:00,1969-12-12 23:00:00,155,181,144,131,99,99,101,174 +1969-12-13 00:00:00,1969-12-12 23:00:00,110,119,175,168,100,99,101,117 +1969-12-13 00:00:00,1969-12-12 23:00:00,105,171,113,0,99,99,99,145 +1969-12-13 00:00:00,1969-12-12 23:00:00,127,177,148,113,101,101,101,178 +1969-12-13 00:00:00,1969-12-12 23:00:00,173,100,135,108,99,99,99,115 +1969-12-13 00:00:00,1969-12-12 23:00:00,189,134,111,158,101,99,101,189 +1969-12-13 00:00:00,1969-12-12 23:00:00,184,140,147,194,99,100,101,192 +1969-12-13 00:00:00,1969-12-12 23:00:00,103,199,147,162,99,101,100,179 +1969-12-13 00:00:00,1969-12-12 23:00:00,108,120,131,0,99,101,99,129 +1969-12-13 00:00:00,1969-12-12 23:00:00,193,177,186,149,99,100,101,114 +1969-12-13 00:00:00,1969-12-12 23:00:00,103,135,181,197,101,100,99,149 +1969-12-13 00:00:00,1969-12-12 23:00:00,155,162,142,145,99,100,99,181 +1969-12-13 00:00:00,1969-12-12 23:00:00,127,195,118,198,101,100,99,170 +1969-12-13 00:00:00,1969-12-12 23:00:00,140,155,154,149,101,101,100,104 +1969-12-13 00:00:00,1969-12-12 23:00:00,146,108,177,0,99,100,100,149 +1969-12-13 00:00:00,1969-12-12 23:00:00,183,126,122,168,100,99,101,200 +1969-12-13 00:00:00,1969-12-12 23:00:00,187,198,176,152,100,99,101,101 +1969-12-13 00:00:00,1969-12-12 23:00:00,168,183,147,114,100,101,100,123 +1969-12-13 00:00:00,1969-12-12 23:00:00,140,175,190,131,99,101,99,150 +1969-12-13 00:00:00,1969-12-12 23:00:00,165,106,167,142,100,101,101,161 +1969-12-13 00:00:00,1969-12-12 23:00:00,193,176,106,110,99,100,99,171 +1969-12-13 00:00:00,1969-12-12 23:00:00,145,117,101,164,99,100,99,160 +1969-12-13 00:00:00,1969-12-12 23:00:00,126,142,163,117,99,99,100,169 +1969-12-13 00:00:00,1969-12-12 23:00:00,194,101,180,155,101,101,99,129 +1969-12-13 00:00:00,1969-12-12 23:00:00,185,172,197,192,101,100,100,192 +1969-12-13 00:00:00,1969-12-12 23:00:00,159,162,118,145,99,101,101,142 +1969-12-13 00:00:00,1969-12-12 23:00:00,149,158,200,151,100,100,101,177 +1969-12-13 00:00:00,1969-12-12 23:00:00,152,102,111,161,101,99,100,125 +1969-12-13 00:00:00,1969-12-12 23:00:00,106,194,177,149,99,100,100,111 +1969-12-13 00:00:00,1969-12-12 23:00:00,191,115,103,117,99,101,100,193 +1969-12-13 00:00:00,1969-12-12 23:00:00,139,166,137,197,101,100,101,146 +1969-12-13 00:00:00,1969-12-12 23:00:00,179,137,181,180,101,101,99,140 +1969-12-13 00:00:00,1969-12-12 23:00:00,112,123,180,100,99,99,100,194 +1969-12-13 00:00:00,1969-12-12 23:00:00,120,140,108,0,101,100,101,140 +1969-12-13 00:00:00,1969-12-12 23:00:00,200,141,100,125,101,101,100,184 +1969-12-13 00:00:00,1969-12-12 23:00:00,166,120,138,166,100,100,100,101 +1969-12-13 00:00:00,1969-12-12 23:00:00,101,108,137,0,101,101,101,142 +1969-12-13 00:00:00,1969-12-12 23:00:00,193,170,163,0,100,100,99,181 +1969-12-13 00:00:00,1969-12-12 23:00:00,194,175,110,0,99,99,101,174 +1969-12-13 00:00:00,1969-12-12 23:00:00,167,131,106,192,101,99,100,196 +1969-12-13 00:00:00,1969-12-12 23:00:00,157,116,118,193,101,99,101,115 +1969-12-13 00:00:00,1969-12-12 23:00:00,194,131,191,156,99,99,100,153 +1969-12-13 00:00:00,1969-12-12 23:00:00,199,175,192,178,100,100,100,194 +1969-12-12 00:00:00,1969-12-11 23:00:00,199,126,0,0,100,101,99,184 +1969-12-12 00:00:00,1969-12-11 23:00:00,106,135,0,0,101,101,100,151 +1969-12-12 00:00:00,1969-12-11 23:00:00,188,161,0,0,99,99,101,106 +1969-12-12 00:00:00,1969-12-11 23:00:00,195,115,0,200,99,101,99,145 +1969-12-12 00:00:00,1969-12-11 23:00:00,113,169,0,122,100,101,100,146 +1969-12-12 00:00:00,1969-12-11 23:00:00,107,135,0,176,99,100,101,165 +1969-12-12 00:00:00,1969-12-11 23:00:00,181,133,154,120,100,101,101,153 +1969-12-12 00:00:00,1969-12-11 23:00:00,107,200,105,118,99,101,101,149 +1969-12-12 00:00:00,1969-12-11 23:00:00,144,125,172,173,100,99,100,116 +1969-12-12 00:00:00,1969-12-11 23:00:00,146,200,183,153,99,101,100,120 +1969-12-12 00:00:00,1969-12-11 23:00:00,158,171,158,139,101,100,100,144 +1969-12-12 00:00:00,1969-12-11 23:00:00,145,149,155,168,99,100,100,110 +1969-12-12 00:00:00,1969-12-11 23:00:00,198,157,100,170,100,100,99,185 +1969-12-12 00:00:00,1969-12-11 23:00:00,146,195,112,0,101,101,100,167 +1969-12-12 00:00:00,1969-12-11 23:00:00,161,177,114,153,99,100,100,120 +1969-12-12 00:00:00,1969-12-11 23:00:00,182,100,134,187,100,101,100,146 +1969-12-12 00:00:00,1969-12-11 23:00:00,118,112,186,175,100,100,100,182 +1969-12-12 00:00:00,1969-12-11 23:00:00,117,153,125,119,100,99,101,173 +1969-12-12 00:00:00,1969-12-11 23:00:00,161,101,111,129,100,100,99,191 +1969-12-12 00:00:00,1969-12-11 23:00:00,155,195,117,124,99,99,100,196 +1969-12-12 00:00:00,1969-12-11 23:00:00,170,169,102,133,99,99,101,143 +1969-12-12 00:00:00,1969-12-11 23:00:00,147,196,121,161,101,100,100,143 +1969-12-12 00:00:00,1969-12-11 23:00:00,147,186,186,0,101,100,101,144 +1969-12-12 00:00:00,1969-12-11 23:00:00,169,167,131,149,99,99,101,140 +1969-12-12 00:00:00,1969-12-11 23:00:00,182,186,112,0,101,100,101,166 +1969-12-12 00:00:00,1969-12-11 23:00:00,100,132,124,0,100,100,100,175 +1969-12-12 00:00:00,1969-12-11 23:00:00,138,146,189,104,99,100,99,118 +1969-12-12 00:00:00,1969-12-11 23:00:00,147,159,197,131,101,101,101,142 +1969-12-12 00:00:00,1969-12-11 23:00:00,177,159,113,120,99,99,101,157 +1969-12-12 00:00:00,1969-12-11 23:00:00,154,124,151,186,99,99,101,157 +1969-12-12 00:00:00,1969-12-11 23:00:00,177,154,126,156,99,100,101,159 +1969-12-12 00:00:00,1969-12-11 23:00:00,135,123,175,101,100,100,101,186 +1969-12-12 00:00:00,1969-12-11 23:00:00,102,154,151,178,101,101,99,174 +1969-12-12 00:00:00,1969-12-11 23:00:00,170,103,169,139,100,99,100,144 +1969-12-12 00:00:00,1969-12-11 23:00:00,127,157,187,101,99,101,100,150 +1969-12-12 00:00:00,1969-12-11 23:00:00,184,182,146,127,100,99,99,182 +1969-12-12 00:00:00,1969-12-11 23:00:00,152,187,184,133,101,101,101,199 +1969-12-12 00:00:00,1969-12-11 23:00:00,193,114,118,0,101,101,100,152 +1969-12-12 00:00:00,1969-12-11 23:00:00,177,185,135,0,101,101,99,140 +1969-12-12 00:00:00,1969-12-11 23:00:00,184,136,114,111,100,100,101,108 +1969-12-12 00:00:00,1969-12-11 23:00:00,178,190,113,123,100,99,101,199 +1969-12-12 00:00:00,1969-12-11 23:00:00,186,136,139,147,101,101,100,170 +1969-12-12 00:00:00,1969-12-11 23:00:00,151,126,127,0,99,100,101,122 +1969-12-12 00:00:00,1969-12-11 23:00:00,120,109,168,0,99,99,99,122 +1969-12-12 00:00:00,1969-12-11 23:00:00,197,125,186,184,100,99,100,118 +1969-12-12 00:00:00,1969-12-11 23:00:00,169,156,199,137,101,101,99,148 +1969-12-12 00:00:00,1969-12-11 23:00:00,126,106,174,0,99,101,100,185 +1969-12-12 00:00:00,1969-12-11 23:00:00,128,173,173,147,101,101,101,145 +1969-12-12 00:00:00,1969-12-11 23:00:00,134,110,117,109,99,99,100,184 +1969-12-12 00:00:00,1969-12-11 23:00:00,113,152,165,163,101,100,101,132 +1969-12-12 00:00:00,1969-12-11 23:00:00,131,160,130,109,101,100,101,136 +1969-12-12 00:00:00,1969-12-11 23:00:00,140,155,171,188,101,101,101,167 +1969-12-12 00:00:00,1969-12-11 23:00:00,169,136,157,178,101,101,101,142 +1969-12-12 00:00:00,1969-12-11 23:00:00,195,134,131,119,99,101,101,154 +1969-12-12 00:00:00,1969-12-11 23:00:00,103,132,200,119,100,101,100,184 +1969-12-12 00:00:00,1969-12-11 23:00:00,168,121,186,164,100,101,99,141 +1969-12-12 00:00:00,1969-12-11 23:00:00,135,184,131,193,101,99,100,107 +1969-12-12 00:00:00,1969-12-11 23:00:00,115,194,114,125,99,100,101,176 +1969-12-12 00:00:00,1969-12-11 23:00:00,118,168,123,110,99,100,99,162 +1969-12-12 00:00:00,1969-12-11 23:00:00,122,167,125,130,100,100,101,198 +1969-12-12 00:00:00,1969-12-11 23:00:00,134,123,137,159,99,100,101,112 +1969-12-12 00:00:00,1969-12-11 23:00:00,154,192,197,0,100,99,100,170 +1969-12-12 00:00:00,1969-12-11 23:00:00,128,172,160,0,100,99,99,169 +1969-12-12 00:00:00,1969-12-11 23:00:00,198,101,140,125,100,99,100,141 +1969-12-12 00:00:00,1969-12-11 23:00:00,141,140,199,116,99,101,101,112 +1969-12-12 00:00:00,1969-12-11 23:00:00,130,155,142,106,100,101,101,137 +1969-12-12 00:00:00,1969-12-11 23:00:00,140,167,190,169,101,101,100,141 +1969-12-12 00:00:00,1969-12-11 23:00:00,119,118,190,148,99,101,99,181 +1969-12-12 00:00:00,1969-12-11 23:00:00,160,174,156,0,100,100,101,165 +1969-12-12 00:00:00,1969-12-11 23:00:00,172,167,139,108,100,100,100,156 +1969-12-12 00:00:00,1969-12-11 23:00:00,123,151,174,0,101,101,99,181 +1969-12-12 00:00:00,1969-12-11 23:00:00,123,105,113,156,99,99,101,176 +1969-12-12 00:00:00,1969-12-11 23:00:00,161,157,169,141,100,99,99,122 +1969-12-12 00:00:00,1969-12-11 23:00:00,154,142,157,0,99,100,101,121 +1969-12-12 00:00:00,1969-12-11 23:00:00,116,169,181,179,101,99,101,191 +1969-12-12 00:00:00,1969-12-11 23:00:00,125,189,114,159,101,99,101,176 +1969-12-12 00:00:00,1969-12-11 23:00:00,137,110,131,143,100,99,101,165 +1969-12-12 00:00:00,1969-12-11 23:00:00,151,158,144,155,99,99,99,166 +1969-12-12 00:00:00,1969-12-11 23:00:00,191,164,159,0,100,100,99,162 +1969-12-12 00:00:00,1969-12-11 23:00:00,106,183,159,113,100,99,100,184 +1969-12-12 00:00:00,1969-12-11 23:00:00,162,200,197,116,99,101,101,140 +1969-12-12 00:00:00,1969-12-11 23:00:00,188,174,184,177,101,99,101,192 +1969-12-12 00:00:00,1969-12-11 23:00:00,170,178,135,0,100,99,101,149 +1969-12-12 00:00:00,1969-12-11 23:00:00,169,139,127,186,100,101,100,152 +1969-12-12 00:00:00,1969-12-11 23:00:00,120,168,196,171,100,99,100,115 +1969-12-12 00:00:00,1969-12-11 23:00:00,171,184,150,0,101,101,100,186 +1969-12-12 00:00:00,1969-12-11 23:00:00,148,111,155,188,101,100,100,125 +1969-12-12 00:00:00,1969-12-11 23:00:00,104,102,144,117,99,99,99,148 +1969-12-12 00:00:00,1969-12-11 23:00:00,156,145,131,176,100,99,100,129 +1969-12-12 00:00:00,1969-12-11 23:00:00,152,193,181,181,101,99,100,158 +1969-12-12 00:00:00,1969-12-11 23:00:00,125,100,144,120,99,100,101,185 +1969-12-12 00:00:00,1969-12-11 23:00:00,174,187,132,117,100,100,101,143 +1969-12-12 00:00:00,1969-12-11 23:00:00,149,129,140,153,100,100,99,132 +1969-12-12 00:00:00,1969-12-11 23:00:00,139,124,116,189,100,101,99,132 +1969-12-12 00:00:00,1969-12-11 23:00:00,187,146,158,174,100,101,99,100 +1969-12-12 00:00:00,1969-12-11 23:00:00,117,185,189,113,100,100,101,185 +1969-12-12 00:00:00,1969-12-11 23:00:00,167,112,146,0,101,101,101,196 +1969-12-12 00:00:00,1969-12-11 23:00:00,104,129,192,191,100,100,101,116 +1969-12-12 00:00:00,1969-12-11 23:00:00,110,162,135,190,99,99,101,135 +1969-12-12 00:00:00,1969-12-11 23:00:00,180,153,184,134,101,99,101,123 +1969-12-12 00:00:00,1969-12-11 23:00:00,187,174,163,162,101,101,100,192 +1969-12-12 00:00:00,1969-12-11 23:00:00,173,124,174,0,99,100,99,183 +1969-12-12 00:00:00,1969-12-11 23:00:00,172,174,166,195,99,100,99,140 +1969-12-12 00:00:00,1969-12-11 23:00:00,154,158,128,197,101,100,101,163 +1969-12-12 00:00:00,1969-12-11 23:00:00,171,155,113,198,99,99,101,113 +1969-12-12 00:00:00,1969-12-11 23:00:00,168,116,140,111,99,101,99,177 +1969-12-12 00:00:00,1969-12-11 23:00:00,145,141,145,0,99,99,101,150 +1969-12-12 00:00:00,1969-12-11 23:00:00,175,175,198,0,101,100,100,130 +1969-12-12 00:00:00,1969-12-11 23:00:00,157,112,177,147,100,100,101,150 +1969-12-12 00:00:00,1969-12-11 23:00:00,178,163,156,163,99,101,99,170 +1969-12-12 00:00:00,1969-12-11 23:00:00,120,107,192,0,99,101,100,112 +1969-12-12 00:00:00,1969-12-11 23:00:00,170,196,118,130,100,100,101,176 +1969-12-12 00:00:00,1969-12-11 23:00:00,172,132,191,185,101,100,101,189 +1969-12-12 00:00:00,1969-12-11 23:00:00,125,154,100,123,100,100,99,102 +1969-12-12 00:00:00,1969-12-11 23:00:00,182,198,151,120,99,99,99,134 +1969-12-12 00:00:00,1969-12-11 23:00:00,198,150,149,158,101,101,99,196 +1969-12-12 00:00:00,1969-12-11 23:00:00,186,148,189,101,100,100,99,151 +1969-12-12 00:00:00,1969-12-11 23:00:00,115,150,164,111,99,99,99,160 +1969-12-12 00:00:00,1969-12-11 23:00:00,171,168,104,0,100,99,99,136 +1969-12-12 00:00:00,1969-12-11 23:00:00,163,151,184,171,99,99,99,120 +1969-12-12 00:00:00,1969-12-11 23:00:00,157,143,118,157,100,101,99,115 +1969-12-12 00:00:00,1969-12-11 23:00:00,115,172,159,174,100,100,101,190 +1969-12-12 00:00:00,1969-12-11 23:00:00,166,160,193,0,99,99,99,147 +1969-12-12 00:00:00,1969-12-11 23:00:00,181,183,161,156,101,101,99,177 +1969-12-12 00:00:00,1969-12-11 23:00:00,104,140,174,115,101,99,101,181 +1969-12-12 00:00:00,1969-12-11 23:00:00,200,174,128,101,101,100,100,143 +1969-12-12 00:00:00,1969-12-11 23:00:00,183,128,165,129,100,100,100,138 +1969-12-12 00:00:00,1969-12-11 23:00:00,169,179,110,107,100,100,100,142 +1969-12-12 00:00:00,1969-12-11 23:00:00,127,167,127,188,100,101,101,127 +1969-12-12 00:00:00,1969-12-11 23:00:00,171,107,180,0,100,101,100,138 +1969-12-12 00:00:00,1969-12-11 23:00:00,100,107,123,162,101,99,100,158 +1969-12-12 00:00:00,1969-12-11 23:00:00,191,190,174,179,99,99,101,179 +1969-12-12 00:00:00,1969-12-11 23:00:00,121,174,191,197,100,99,100,195 +1969-12-12 00:00:00,1969-12-11 23:00:00,140,138,154,135,100,99,99,166 +1969-12-12 00:00:00,1969-12-11 23:00:00,132,123,193,159,101,101,100,145 +1969-12-12 00:00:00,1969-12-11 23:00:00,120,194,149,0,100,101,101,114 +1969-12-12 00:00:00,1969-12-11 23:00:00,129,121,169,163,101,100,100,153 +1969-12-12 00:00:00,1969-12-11 23:00:00,176,123,113,154,100,99,100,142 +1969-12-12 00:00:00,1969-12-11 23:00:00,105,178,195,185,100,101,100,154 +1969-12-12 00:00:00,1969-12-11 23:00:00,127,194,194,154,101,101,101,150 +1969-12-12 00:00:00,1969-12-11 23:00:00,144,112,171,189,99,101,99,164 +1969-12-12 00:00:00,1969-12-11 23:00:00,161,129,182,0,99,99,101,151 +1969-12-12 00:00:00,1969-12-11 23:00:00,104,130,162,182,100,100,99,160 +1969-12-12 00:00:00,1969-12-11 23:00:00,153,155,119,177,101,101,100,157 +1969-12-12 00:00:00,1969-12-11 23:00:00,191,122,121,151,100,99,101,135 +1969-12-12 00:00:00,1969-12-11 23:00:00,166,168,140,152,101,101,100,149 +1969-12-12 00:00:00,1969-12-11 23:00:00,118,138,194,0,99,99,99,139 +1969-12-12 00:00:00,1969-12-11 23:00:00,106,133,145,138,100,100,100,163 +1969-12-12 00:00:00,1969-12-11 23:00:00,110,139,191,103,101,101,99,155 +1969-12-12 00:00:00,1969-12-11 23:00:00,168,136,183,157,99,99,101,171 +1969-12-12 00:00:00,1969-12-11 23:00:00,115,109,151,174,99,100,99,122 +1969-12-12 00:00:00,1969-12-11 23:00:00,133,197,111,159,100,99,101,138 +1969-12-12 00:00:00,1969-12-11 23:00:00,110,174,105,169,99,100,101,167 +1969-12-12 00:00:00,1969-12-11 23:00:00,120,199,198,104,100,100,101,193 +1969-12-12 00:00:00,1969-12-11 23:00:00,116,100,187,119,100,101,101,116 +1969-12-12 00:00:00,1969-12-11 23:00:00,114,134,168,184,101,99,99,106 +1969-12-12 00:00:00,1969-12-11 23:00:00,180,133,130,127,99,101,101,163 +1969-12-12 00:00:00,1969-12-11 23:00:00,143,127,113,191,101,101,100,167 +1969-12-12 00:00:00,1969-12-11 23:00:00,174,142,159,0,101,101,100,138 +1969-12-12 00:00:00,1969-12-11 23:00:00,171,109,172,191,99,100,100,120 +1969-12-12 00:00:00,1969-12-11 23:00:00,170,100,188,165,99,101,99,197 +1969-12-12 00:00:00,1969-12-11 23:00:00,133,119,142,0,100,99,99,134 +1969-12-12 00:00:00,1969-12-11 23:00:00,135,121,199,137,100,101,101,187 +1969-12-12 00:00:00,1969-12-11 23:00:00,116,146,151,199,99,100,101,184 +1969-12-12 00:00:00,1969-12-11 23:00:00,170,162,100,0,99,101,100,102 +1969-12-12 00:00:00,1969-12-11 23:00:00,136,165,120,0,101,101,101,131 +1969-12-12 00:00:00,1969-12-11 23:00:00,181,189,101,127,100,101,99,189 +1969-12-12 00:00:00,1969-12-11 23:00:00,110,125,146,146,99,100,100,143 +1969-12-12 00:00:00,1969-12-11 23:00:00,168,116,198,127,101,100,101,166 +1969-12-12 00:00:00,1969-12-11 23:00:00,131,143,151,148,99,101,100,106 +1969-12-12 00:00:00,1969-12-11 23:00:00,194,197,110,168,99,100,99,122 +1969-12-12 00:00:00,1969-12-11 23:00:00,154,176,187,187,99,99,100,189 +1969-12-12 00:00:00,1969-12-11 23:00:00,180,106,135,197,101,100,101,136 +1969-12-12 00:00:00,1969-12-11 23:00:00,104,166,127,0,101,101,99,110 +1969-12-12 00:00:00,1969-12-11 23:00:00,187,110,125,120,100,101,99,182 +1969-12-12 00:00:00,1969-12-11 23:00:00,113,178,137,134,101,99,101,115 +1969-12-12 00:00:00,1969-12-11 23:00:00,156,199,142,173,101,101,100,116 +1969-12-12 00:00:00,1969-12-11 23:00:00,103,182,143,109,101,101,99,154 +1969-12-12 00:00:00,1969-12-11 23:00:00,197,169,137,0,100,99,99,155 +1969-12-12 00:00:00,1969-12-11 23:00:00,127,191,145,198,99,101,101,155 +1969-12-12 00:00:00,1969-12-11 23:00:00,111,115,182,172,99,100,101,136 +1969-12-12 00:00:00,1969-12-11 23:00:00,119,113,100,113,100,101,101,155 +1969-12-12 00:00:00,1969-12-11 23:00:00,138,135,105,123,99,101,101,135 +1969-12-12 00:00:00,1969-12-11 23:00:00,148,161,189,149,101,101,100,114 +1969-12-12 00:00:00,1969-12-11 23:00:00,115,190,143,0,100,99,101,100 +1969-12-12 00:00:00,1969-12-11 23:00:00,133,109,125,146,101,100,101,197 +1969-12-12 00:00:00,1969-12-11 23:00:00,133,189,123,123,99,101,99,182 +1969-12-12 00:00:00,1969-12-11 23:00:00,132,188,124,136,99,99,100,125 +1969-12-12 00:00:00,1969-12-11 23:00:00,141,116,170,108,100,99,100,125 +1969-12-12 00:00:00,1969-12-11 23:00:00,102,185,161,197,101,101,101,125 +1969-12-12 00:00:00,1969-12-11 23:00:00,107,102,128,0,100,100,101,196 +1969-12-12 00:00:00,1969-12-11 23:00:00,111,200,100,166,100,99,101,171 +1969-12-12 00:00:00,1969-12-11 23:00:00,122,134,196,151,100,99,100,182 +1969-12-12 00:00:00,1969-12-11 23:00:00,115,124,102,144,100,99,99,157 +1969-12-12 00:00:00,1969-12-11 23:00:00,188,117,198,179,99,100,100,170 +1969-12-12 00:00:00,1969-12-11 23:00:00,183,189,106,0,100,101,100,133 +1969-12-12 00:00:00,1969-12-11 23:00:00,172,187,132,0,100,100,101,108 +1969-12-12 00:00:00,1969-12-11 23:00:00,197,111,152,136,99,100,100,148 +1969-12-12 00:00:00,1969-12-11 23:00:00,108,143,139,176,99,99,99,124 +1969-12-12 00:00:00,1969-12-11 23:00:00,174,121,125,0,101,99,100,147 +1969-12-11 00:00:00,1969-12-10 23:00:00,197,114,0,197,100,100,99,136 +1969-12-11 00:00:00,1969-12-10 23:00:00,104,158,0,0,99,101,101,118 +1969-12-11 00:00:00,1969-12-10 23:00:00,158,155,0,0,101,101,100,197 +1969-12-11 00:00:00,1969-12-10 23:00:00,133,176,0,0,99,100,100,188 +1969-12-11 00:00:00,1969-12-10 23:00:00,157,175,0,0,99,101,99,146 +1969-12-11 00:00:00,1969-12-10 23:00:00,102,187,0,197,100,100,99,142 +1969-12-11 00:00:00,1969-12-10 23:00:00,135,138,117,155,99,100,101,107 +1969-12-11 00:00:00,1969-12-10 23:00:00,185,169,142,156,101,99,100,164 +1969-12-11 00:00:00,1969-12-10 23:00:00,172,200,162,0,99,99,101,145 +1969-12-11 00:00:00,1969-12-10 23:00:00,169,182,102,0,99,99,101,143 +1969-12-11 00:00:00,1969-12-10 23:00:00,172,176,106,0,100,101,100,187 +1969-12-11 00:00:00,1969-12-10 23:00:00,148,143,118,0,99,100,101,193 +1969-12-11 00:00:00,1969-12-10 23:00:00,157,193,146,191,99,101,101,162 +1969-12-11 00:00:00,1969-12-10 23:00:00,182,122,129,0,99,99,99,189 +1969-12-11 00:00:00,1969-12-10 23:00:00,168,190,104,158,100,99,101,156 +1969-12-11 00:00:00,1969-12-10 23:00:00,168,115,179,137,100,100,100,149 +1969-12-11 00:00:00,1969-12-10 23:00:00,185,154,160,186,99,99,101,196 +1969-12-11 00:00:00,1969-12-10 23:00:00,102,200,108,0,100,101,101,114 +1969-12-11 00:00:00,1969-12-10 23:00:00,132,115,178,148,101,99,99,161 +1969-12-11 00:00:00,1969-12-10 23:00:00,166,117,195,147,101,100,101,102 +1969-12-11 00:00:00,1969-12-10 23:00:00,198,164,128,111,100,101,99,120 +1969-12-11 00:00:00,1969-12-10 23:00:00,161,162,151,0,101,99,100,135 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,159,178,0,100,99,101,191 +1969-12-11 00:00:00,1969-12-10 23:00:00,105,188,182,132,100,99,101,183 +1969-12-11 00:00:00,1969-12-10 23:00:00,124,200,101,161,101,100,99,155 +1969-12-11 00:00:00,1969-12-10 23:00:00,155,153,121,166,99,99,101,175 +1969-12-11 00:00:00,1969-12-10 23:00:00,184,126,105,156,101,100,99,146 +1969-12-11 00:00:00,1969-12-10 23:00:00,144,117,141,156,100,99,101,131 +1969-12-11 00:00:00,1969-12-10 23:00:00,151,179,193,0,100,101,101,186 +1969-12-11 00:00:00,1969-12-10 23:00:00,134,101,170,199,101,101,99,119 +1969-12-11 00:00:00,1969-12-10 23:00:00,145,182,108,190,99,99,101,131 +1969-12-11 00:00:00,1969-12-10 23:00:00,109,108,111,0,101,99,100,195 +1969-12-11 00:00:00,1969-12-10 23:00:00,162,115,104,105,99,99,99,115 +1969-12-11 00:00:00,1969-12-10 23:00:00,164,106,161,135,101,99,100,104 +1969-12-11 00:00:00,1969-12-10 23:00:00,195,167,181,0,100,101,101,184 +1969-12-11 00:00:00,1969-12-10 23:00:00,112,116,104,170,99,101,99,192 +1969-12-11 00:00:00,1969-12-10 23:00:00,160,156,150,0,99,101,100,103 +1969-12-11 00:00:00,1969-12-10 23:00:00,147,147,194,184,101,99,101,111 +1969-12-11 00:00:00,1969-12-10 23:00:00,184,164,149,0,99,99,99,175 +1969-12-11 00:00:00,1969-12-10 23:00:00,191,137,154,151,100,101,101,159 +1969-12-11 00:00:00,1969-12-10 23:00:00,138,174,150,187,101,99,100,132 +1969-12-11 00:00:00,1969-12-10 23:00:00,103,199,145,116,99,100,100,170 +1969-12-11 00:00:00,1969-12-10 23:00:00,144,126,198,0,99,99,101,165 +1969-12-11 00:00:00,1969-12-10 23:00:00,102,182,125,132,101,101,99,131 +1969-12-11 00:00:00,1969-12-10 23:00:00,194,124,166,195,101,99,99,163 +1969-12-11 00:00:00,1969-12-10 23:00:00,160,185,109,156,101,100,101,166 +1969-12-11 00:00:00,1969-12-10 23:00:00,115,106,189,130,100,99,99,187 +1969-12-11 00:00:00,1969-12-10 23:00:00,126,164,194,166,100,99,101,174 +1969-12-11 00:00:00,1969-12-10 23:00:00,114,199,116,109,100,99,99,127 +1969-12-11 00:00:00,1969-12-10 23:00:00,101,132,193,198,100,100,99,194 +1969-12-11 00:00:00,1969-12-10 23:00:00,175,114,165,160,99,100,100,199 +1969-12-11 00:00:00,1969-12-10 23:00:00,116,146,142,186,101,99,100,171 +1969-12-11 00:00:00,1969-12-10 23:00:00,108,100,105,0,99,101,101,113 +1969-12-11 00:00:00,1969-12-10 23:00:00,145,198,180,104,99,101,101,164 +1969-12-11 00:00:00,1969-12-10 23:00:00,103,134,116,191,100,100,100,120 +1969-12-11 00:00:00,1969-12-10 23:00:00,190,183,192,193,99,101,101,123 +1969-12-11 00:00:00,1969-12-10 23:00:00,157,149,118,129,101,100,99,135 +1969-12-11 00:00:00,1969-12-10 23:00:00,144,171,196,138,100,100,101,113 +1969-12-11 00:00:00,1969-12-10 23:00:00,108,120,185,164,101,100,100,161 +1969-12-11 00:00:00,1969-12-10 23:00:00,144,129,170,172,99,101,101,113 +1969-12-11 00:00:00,1969-12-10 23:00:00,116,166,106,198,99,100,99,103 +1969-12-11 00:00:00,1969-12-10 23:00:00,126,139,156,152,100,101,101,123 +1969-12-11 00:00:00,1969-12-10 23:00:00,182,173,182,0,99,100,99,145 +1969-12-11 00:00:00,1969-12-10 23:00:00,174,156,130,164,100,101,101,103 +1969-12-11 00:00:00,1969-12-10 23:00:00,124,188,185,110,100,99,99,146 +1969-12-11 00:00:00,1969-12-10 23:00:00,194,189,189,162,100,101,99,125 +1969-12-11 00:00:00,1969-12-10 23:00:00,191,125,103,0,100,99,99,172 +1969-12-11 00:00:00,1969-12-10 23:00:00,191,108,102,183,101,101,101,120 +1969-12-11 00:00:00,1969-12-10 23:00:00,160,134,186,161,101,99,99,185 +1969-12-11 00:00:00,1969-12-10 23:00:00,133,164,192,152,99,101,100,200 +1969-12-11 00:00:00,1969-12-10 23:00:00,185,138,149,160,99,99,101,168 +1969-12-11 00:00:00,1969-12-10 23:00:00,115,177,110,0,100,101,99,116 +1969-12-11 00:00:00,1969-12-10 23:00:00,100,133,144,0,100,100,99,118 +1969-12-11 00:00:00,1969-12-10 23:00:00,138,134,138,0,101,99,101,183 +1969-12-11 00:00:00,1969-12-10 23:00:00,150,141,153,157,100,99,99,115 +1969-12-11 00:00:00,1969-12-10 23:00:00,172,194,104,176,99,99,100,115 +1969-12-11 00:00:00,1969-12-10 23:00:00,138,131,166,0,100,99,99,182 +1969-12-11 00:00:00,1969-12-10 23:00:00,165,134,156,0,99,100,99,146 +1969-12-11 00:00:00,1969-12-10 23:00:00,139,186,195,128,101,99,99,198 +1969-12-11 00:00:00,1969-12-10 23:00:00,193,156,187,199,101,99,99,160 +1969-12-11 00:00:00,1969-12-10 23:00:00,143,199,128,0,100,99,100,192 +1969-12-11 00:00:00,1969-12-10 23:00:00,108,144,127,113,100,101,100,136 +1969-12-11 00:00:00,1969-12-10 23:00:00,118,160,103,148,100,100,99,194 +1969-12-11 00:00:00,1969-12-10 23:00:00,106,185,170,188,100,100,100,195 +1969-12-11 00:00:00,1969-12-10 23:00:00,110,144,130,179,101,100,99,152 +1969-12-11 00:00:00,1969-12-10 23:00:00,133,172,129,128,99,100,100,108 +1969-12-11 00:00:00,1969-12-10 23:00:00,162,185,138,0,100,101,101,179 +1969-12-11 00:00:00,1969-12-10 23:00:00,118,138,152,198,100,99,99,112 +1969-12-11 00:00:00,1969-12-10 23:00:00,118,126,180,154,100,99,99,111 +1969-12-11 00:00:00,1969-12-10 23:00:00,158,172,115,106,101,99,101,191 +1969-12-11 00:00:00,1969-12-10 23:00:00,190,127,181,142,99,100,101,175 +1969-12-11 00:00:00,1969-12-10 23:00:00,163,152,119,132,101,99,99,167 +1969-12-11 00:00:00,1969-12-10 23:00:00,165,129,106,128,99,100,101,155 +1969-12-11 00:00:00,1969-12-10 23:00:00,119,101,154,113,101,101,99,149 +1969-12-11 00:00:00,1969-12-10 23:00:00,171,199,113,0,99,100,100,191 +1969-12-11 00:00:00,1969-12-10 23:00:00,159,130,115,156,101,101,99,189 +1969-12-11 00:00:00,1969-12-10 23:00:00,125,139,199,200,101,101,100,104 +1969-12-11 00:00:00,1969-12-10 23:00:00,124,181,163,132,100,100,101,142 +1969-12-11 00:00:00,1969-12-10 23:00:00,180,173,102,0,100,101,100,145 +1969-12-11 00:00:00,1969-12-10 23:00:00,122,114,155,113,99,101,101,123 +1969-12-11 00:00:00,1969-12-10 23:00:00,127,116,152,195,100,101,100,187 +1969-12-11 00:00:00,1969-12-10 23:00:00,116,119,107,115,100,99,99,111 +1969-12-11 00:00:00,1969-12-10 23:00:00,154,138,123,104,100,101,99,162 +1969-12-11 00:00:00,1969-12-10 23:00:00,113,114,102,126,99,100,99,162 +1969-12-11 00:00:00,1969-12-10 23:00:00,177,152,128,141,101,99,101,177 +1969-12-11 00:00:00,1969-12-10 23:00:00,171,131,124,137,99,101,101,156 +1969-12-11 00:00:00,1969-12-10 23:00:00,147,102,136,144,100,99,100,100 +1969-12-11 00:00:00,1969-12-10 23:00:00,115,160,129,0,99,100,99,104 +1969-12-11 00:00:00,1969-12-10 23:00:00,134,200,197,0,101,100,100,177 +1969-12-11 00:00:00,1969-12-10 23:00:00,116,188,177,116,100,100,101,187 +1969-12-11 00:00:00,1969-12-10 23:00:00,101,112,150,160,100,99,99,117 +1969-12-11 00:00:00,1969-12-10 23:00:00,134,191,170,135,99,101,99,175 +1969-12-11 00:00:00,1969-12-10 23:00:00,133,117,142,0,100,100,99,120 +1969-12-11 00:00:00,1969-12-10 23:00:00,106,137,160,124,100,100,100,159 +1969-12-11 00:00:00,1969-12-10 23:00:00,125,169,157,116,101,99,100,198 +1969-12-11 00:00:00,1969-12-10 23:00:00,146,107,105,184,100,101,101,153 +1969-12-11 00:00:00,1969-12-10 23:00:00,151,181,162,0,101,101,101,139 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,171,100,196,99,101,99,163 +1969-12-11 00:00:00,1969-12-10 23:00:00,173,148,190,146,100,101,100,198 +1969-12-11 00:00:00,1969-12-10 23:00:00,109,116,110,131,101,101,101,157 +1969-12-11 00:00:00,1969-12-10 23:00:00,101,200,178,191,101,100,99,124 +1969-12-11 00:00:00,1969-12-10 23:00:00,137,196,137,187,99,100,99,115 +1969-12-11 00:00:00,1969-12-10 23:00:00,198,178,149,142,101,100,99,124 +1969-12-11 00:00:00,1969-12-10 23:00:00,193,116,156,130,99,101,99,130 +1969-12-11 00:00:00,1969-12-10 23:00:00,151,109,112,194,101,100,100,178 +1969-12-11 00:00:00,1969-12-10 23:00:00,190,175,137,143,101,100,100,186 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,132,104,135,101,99,101,110 +1969-12-11 00:00:00,1969-12-10 23:00:00,102,163,100,102,99,99,99,123 +1969-12-11 00:00:00,1969-12-10 23:00:00,151,107,160,136,100,101,101,130 +1969-12-11 00:00:00,1969-12-10 23:00:00,115,189,181,181,99,99,99,142 +1969-12-11 00:00:00,1969-12-10 23:00:00,148,166,154,129,101,100,101,103 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,197,110,171,101,99,100,101 +1969-12-11 00:00:00,1969-12-10 23:00:00,154,125,153,0,100,100,100,128 +1969-12-11 00:00:00,1969-12-10 23:00:00,188,187,136,121,101,99,99,180 +1969-12-11 00:00:00,1969-12-10 23:00:00,139,151,188,162,99,100,100,132 +1969-12-11 00:00:00,1969-12-10 23:00:00,181,199,185,133,99,101,100,168 +1969-12-11 00:00:00,1969-12-10 23:00:00,145,158,161,181,101,99,101,151 +1969-12-11 00:00:00,1969-12-10 23:00:00,124,141,129,0,100,99,101,135 +1969-12-11 00:00:00,1969-12-10 23:00:00,103,156,130,146,100,99,100,188 +1969-12-11 00:00:00,1969-12-10 23:00:00,145,173,163,170,101,101,101,143 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,158,128,153,101,99,100,145 +1969-12-11 00:00:00,1969-12-10 23:00:00,188,135,167,156,99,99,99,147 +1969-12-11 00:00:00,1969-12-10 23:00:00,119,162,159,0,99,99,101,170 +1969-12-11 00:00:00,1969-12-10 23:00:00,105,105,110,151,101,99,99,143 +1969-12-11 00:00:00,1969-12-10 23:00:00,195,125,200,126,99,99,100,133 +1969-12-11 00:00:00,1969-12-10 23:00:00,146,181,159,181,100,101,100,187 +1969-12-11 00:00:00,1969-12-10 23:00:00,119,137,116,141,101,101,100,198 +1969-12-11 00:00:00,1969-12-10 23:00:00,116,198,117,140,100,99,101,155 +1969-12-11 00:00:00,1969-12-10 23:00:00,106,169,137,120,100,99,100,168 +1969-12-11 00:00:00,1969-12-10 23:00:00,178,170,102,119,99,101,100,169 +1969-12-11 00:00:00,1969-12-10 23:00:00,128,113,125,110,100,99,101,120 +1969-12-11 00:00:00,1969-12-10 23:00:00,157,146,190,198,101,101,99,126 +1969-12-11 00:00:00,1969-12-10 23:00:00,146,112,177,103,100,101,99,104 +1969-12-11 00:00:00,1969-12-10 23:00:00,159,162,164,101,101,100,100,103 +1969-12-11 00:00:00,1969-12-10 23:00:00,115,116,185,100,101,101,99,163 +1969-12-11 00:00:00,1969-12-10 23:00:00,173,151,133,0,101,99,99,169 +1969-12-11 00:00:00,1969-12-10 23:00:00,140,114,137,105,100,99,99,147 +1969-12-11 00:00:00,1969-12-10 23:00:00,181,104,122,193,99,100,101,158 +1969-12-11 00:00:00,1969-12-10 23:00:00,111,101,101,0,100,101,100,119 +1969-12-11 00:00:00,1969-12-10 23:00:00,120,183,158,170,101,101,101,191 +1969-12-11 00:00:00,1969-12-10 23:00:00,160,198,130,187,99,101,101,160 +1969-12-11 00:00:00,1969-12-10 23:00:00,160,134,158,162,101,99,100,172 +1969-12-11 00:00:00,1969-12-10 23:00:00,117,101,186,160,99,99,99,195 +1969-12-11 00:00:00,1969-12-10 23:00:00,189,176,119,175,100,100,101,131 +1969-12-11 00:00:00,1969-12-10 23:00:00,193,187,100,168,99,101,101,149 +1969-12-11 00:00:00,1969-12-10 23:00:00,109,132,195,176,99,99,101,188 +1969-12-11 00:00:00,1969-12-10 23:00:00,112,193,151,156,101,100,99,134 +1969-12-11 00:00:00,1969-12-10 23:00:00,146,145,127,130,99,99,100,126 +1969-12-11 00:00:00,1969-12-10 23:00:00,121,134,123,140,101,99,100,140 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,161,138,146,99,101,99,131 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,100,171,163,101,101,100,182 +1969-12-11 00:00:00,1969-12-10 23:00:00,125,114,137,0,99,100,101,106 +1969-12-11 00:00:00,1969-12-10 23:00:00,136,116,138,162,100,99,101,194 +1969-12-11 00:00:00,1969-12-10 23:00:00,102,157,160,106,101,101,100,115 +1969-12-11 00:00:00,1969-12-10 23:00:00,147,146,177,138,99,101,99,167 +1969-12-11 00:00:00,1969-12-10 23:00:00,140,182,175,103,99,101,100,109 +1969-12-11 00:00:00,1969-12-10 23:00:00,111,191,141,0,100,100,100,116 +1969-12-11 00:00:00,1969-12-10 23:00:00,103,165,124,172,101,99,101,162 +1969-12-11 00:00:00,1969-12-10 23:00:00,179,197,183,166,100,101,101,106 +1969-12-11 00:00:00,1969-12-10 23:00:00,120,109,115,0,101,99,101,172 +1969-12-11 00:00:00,1969-12-10 23:00:00,196,130,178,0,99,100,100,125 +1969-12-11 00:00:00,1969-12-10 23:00:00,133,101,105,107,101,100,99,175 +1969-12-11 00:00:00,1969-12-10 23:00:00,138,126,153,189,101,99,100,116 +1969-12-11 00:00:00,1969-12-10 23:00:00,170,100,178,184,101,101,101,119 +1969-12-11 00:00:00,1969-12-10 23:00:00,124,163,125,184,99,100,100,152 +1969-12-11 00:00:00,1969-12-10 23:00:00,121,161,106,163,100,100,100,180 +1969-12-11 00:00:00,1969-12-10 23:00:00,138,121,155,133,101,100,99,132 +1969-12-11 00:00:00,1969-12-10 23:00:00,170,159,102,136,101,101,100,119 +1969-12-11 00:00:00,1969-12-10 23:00:00,118,135,112,104,101,99,101,109 +1969-12-11 00:00:00,1969-12-10 23:00:00,129,138,146,194,101,101,101,193 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,172,174,0,100,101,100,193 +1969-12-11 00:00:00,1969-12-10 23:00:00,180,129,183,158,100,100,100,134 +1969-12-11 00:00:00,1969-12-10 23:00:00,189,158,154,122,100,99,100,115 +1969-12-11 00:00:00,1969-12-10 23:00:00,107,157,111,170,100,99,101,186 +1969-12-11 00:00:00,1969-12-10 23:00:00,176,140,121,155,101,99,101,200 +1969-12-11 00:00:00,1969-12-10 23:00:00,122,133,135,150,101,99,101,139 +1969-12-11 00:00:00,1969-12-10 23:00:00,194,155,144,122,99,99,99,200 +1969-12-11 00:00:00,1969-12-10 23:00:00,164,115,184,155,101,100,101,156 +1969-12-11 00:00:00,1969-12-10 23:00:00,127,118,132,118,100,101,100,174 +1969-12-11 00:00:00,1969-12-10 23:00:00,195,115,185,129,99,100,100,147 +1969-12-10 00:00:00,1969-12-09 23:00:00,193,180,0,149,101,101,99,131 +1969-12-10 00:00:00,1969-12-09 23:00:00,157,132,0,117,99,101,99,113 +1969-12-10 00:00:00,1969-12-09 23:00:00,152,145,0,163,99,101,101,130 +1969-12-10 00:00:00,1969-12-09 23:00:00,183,107,0,161,100,100,101,190 +1969-12-10 00:00:00,1969-12-09 23:00:00,180,119,0,153,100,100,100,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,106,108,0,189,99,100,100,154 +1969-12-10 00:00:00,1969-12-09 23:00:00,143,114,136,164,101,101,100,102 +1969-12-10 00:00:00,1969-12-09 23:00:00,120,195,126,171,101,100,99,140 +1969-12-10 00:00:00,1969-12-09 23:00:00,104,132,135,171,101,100,99,119 +1969-12-10 00:00:00,1969-12-09 23:00:00,101,163,185,192,99,99,99,173 +1969-12-10 00:00:00,1969-12-09 23:00:00,125,113,128,132,100,100,99,112 +1969-12-10 00:00:00,1969-12-09 23:00:00,148,104,160,100,101,99,101,129 +1969-12-10 00:00:00,1969-12-09 23:00:00,154,181,181,191,100,101,100,100 +1969-12-10 00:00:00,1969-12-09 23:00:00,141,148,132,153,100,99,101,153 +1969-12-10 00:00:00,1969-12-09 23:00:00,170,103,200,0,100,99,101,189 +1969-12-10 00:00:00,1969-12-09 23:00:00,193,152,136,131,101,101,99,180 +1969-12-10 00:00:00,1969-12-09 23:00:00,110,119,150,0,101,101,100,144 +1969-12-10 00:00:00,1969-12-09 23:00:00,130,150,117,175,101,100,100,150 +1969-12-10 00:00:00,1969-12-09 23:00:00,156,189,165,176,99,101,101,119 +1969-12-10 00:00:00,1969-12-09 23:00:00,193,153,196,0,99,99,101,173 +1969-12-10 00:00:00,1969-12-09 23:00:00,151,110,126,160,99,99,99,186 +1969-12-10 00:00:00,1969-12-09 23:00:00,111,149,187,122,101,101,99,167 +1969-12-10 00:00:00,1969-12-09 23:00:00,111,114,133,162,99,101,100,168 +1969-12-10 00:00:00,1969-12-09 23:00:00,127,128,181,155,101,99,101,128 +1969-12-10 00:00:00,1969-12-09 23:00:00,109,146,108,180,99,100,100,173 +1969-12-10 00:00:00,1969-12-09 23:00:00,166,134,165,109,100,99,100,136 +1969-12-10 00:00:00,1969-12-09 23:00:00,134,133,102,187,101,100,101,134 +1969-12-10 00:00:00,1969-12-09 23:00:00,156,156,164,117,99,99,99,109 +1969-12-10 00:00:00,1969-12-09 23:00:00,116,158,100,121,101,100,100,123 +1969-12-10 00:00:00,1969-12-09 23:00:00,158,155,110,0,100,100,101,156 +1969-12-10 00:00:00,1969-12-09 23:00:00,132,188,169,0,100,100,100,135 +1969-12-10 00:00:00,1969-12-09 23:00:00,193,191,191,0,99,100,100,182 +1969-12-10 00:00:00,1969-12-09 23:00:00,127,164,120,177,101,100,99,172 +1969-12-10 00:00:00,1969-12-09 23:00:00,193,183,183,118,99,100,101,134 +1969-12-10 00:00:00,1969-12-09 23:00:00,127,117,151,0,101,100,101,173 +1969-12-10 00:00:00,1969-12-09 23:00:00,125,195,151,136,100,100,100,149 +1969-12-10 00:00:00,1969-12-09 23:00:00,113,166,120,0,100,99,101,187 +1969-12-10 00:00:00,1969-12-09 23:00:00,198,102,163,165,100,101,101,161 +1969-12-10 00:00:00,1969-12-09 23:00:00,107,117,183,159,101,99,99,140 +1969-12-10 00:00:00,1969-12-09 23:00:00,148,104,179,0,100,101,99,106 +1969-12-10 00:00:00,1969-12-09 23:00:00,167,138,144,171,101,99,100,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,157,137,191,0,101,100,100,184 +1969-12-10 00:00:00,1969-12-09 23:00:00,146,195,148,160,101,101,101,126 +1969-12-10 00:00:00,1969-12-09 23:00:00,151,137,188,104,101,100,101,115 +1969-12-10 00:00:00,1969-12-09 23:00:00,132,166,179,192,101,99,101,170 +1969-12-10 00:00:00,1969-12-09 23:00:00,125,117,132,198,100,99,100,152 +1969-12-10 00:00:00,1969-12-09 23:00:00,171,123,185,0,101,100,100,153 +1969-12-10 00:00:00,1969-12-09 23:00:00,143,187,189,161,100,101,100,177 +1969-12-10 00:00:00,1969-12-09 23:00:00,120,103,118,144,99,99,100,171 +1969-12-10 00:00:00,1969-12-09 23:00:00,115,124,182,136,100,101,99,113 +1969-12-10 00:00:00,1969-12-09 23:00:00,106,156,102,101,100,99,100,160 +1969-12-10 00:00:00,1969-12-09 23:00:00,105,177,180,0,99,101,101,197 +1969-12-10 00:00:00,1969-12-09 23:00:00,117,159,168,143,99,101,100,199 +1969-12-10 00:00:00,1969-12-09 23:00:00,178,158,168,117,101,100,99,121 +1969-12-10 00:00:00,1969-12-09 23:00:00,101,129,106,191,101,101,101,185 +1969-12-10 00:00:00,1969-12-09 23:00:00,130,126,134,169,99,101,100,156 +1969-12-10 00:00:00,1969-12-09 23:00:00,163,146,164,137,99,101,99,117 +1969-12-10 00:00:00,1969-12-09 23:00:00,126,100,135,184,100,101,100,155 +1969-12-10 00:00:00,1969-12-09 23:00:00,158,150,185,178,99,99,101,144 +1969-12-10 00:00:00,1969-12-09 23:00:00,132,104,152,116,101,99,99,200 +1969-12-10 00:00:00,1969-12-09 23:00:00,132,110,145,0,100,99,100,140 +1969-12-10 00:00:00,1969-12-09 23:00:00,168,131,164,0,99,100,101,132 +1969-12-10 00:00:00,1969-12-09 23:00:00,174,119,111,132,99,99,100,149 +1969-12-10 00:00:00,1969-12-09 23:00:00,173,136,172,172,100,99,99,140 +1969-12-10 00:00:00,1969-12-09 23:00:00,144,109,165,0,101,101,99,172 +1969-12-10 00:00:00,1969-12-09 23:00:00,180,147,154,118,101,99,100,133 +1969-12-10 00:00:00,1969-12-09 23:00:00,104,106,153,110,100,101,101,177 +1969-12-10 00:00:00,1969-12-09 23:00:00,102,150,152,197,99,99,100,122 +1969-12-10 00:00:00,1969-12-09 23:00:00,134,121,169,0,99,101,101,151 +1969-12-10 00:00:00,1969-12-09 23:00:00,112,155,192,174,100,99,99,114 +1969-12-10 00:00:00,1969-12-09 23:00:00,153,178,101,168,100,100,101,168 +1969-12-10 00:00:00,1969-12-09 23:00:00,196,152,158,0,99,101,100,162 +1969-12-10 00:00:00,1969-12-09 23:00:00,172,121,163,101,100,99,101,163 +1969-12-10 00:00:00,1969-12-09 23:00:00,112,150,121,136,100,99,99,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,112,130,195,167,99,101,100,119 +1969-12-10 00:00:00,1969-12-09 23:00:00,137,121,103,189,101,100,101,118 +1969-12-10 00:00:00,1969-12-09 23:00:00,118,178,148,108,100,100,100,175 +1969-12-10 00:00:00,1969-12-09 23:00:00,104,128,148,162,101,100,101,149 +1969-12-10 00:00:00,1969-12-09 23:00:00,103,173,145,0,101,100,99,169 +1969-12-10 00:00:00,1969-12-09 23:00:00,123,118,145,165,100,99,101,151 +1969-12-10 00:00:00,1969-12-09 23:00:00,124,119,169,175,101,101,101,125 +1969-12-10 00:00:00,1969-12-09 23:00:00,175,137,137,102,99,101,99,158 +1969-12-10 00:00:00,1969-12-09 23:00:00,174,120,101,144,100,100,99,122 +1969-12-10 00:00:00,1969-12-09 23:00:00,124,155,113,161,100,99,100,137 +1969-12-10 00:00:00,1969-12-09 23:00:00,141,158,111,131,101,101,100,140 +1969-12-10 00:00:00,1969-12-09 23:00:00,164,118,186,0,99,101,99,152 +1969-12-10 00:00:00,1969-12-09 23:00:00,130,101,160,0,99,101,99,186 +1969-12-10 00:00:00,1969-12-09 23:00:00,140,148,172,0,99,101,99,114 +1969-12-10 00:00:00,1969-12-09 23:00:00,191,104,194,147,100,100,100,114 +1969-12-10 00:00:00,1969-12-09 23:00:00,116,124,195,0,99,100,100,115 +1969-12-10 00:00:00,1969-12-09 23:00:00,113,165,111,0,99,99,99,166 +1969-12-10 00:00:00,1969-12-09 23:00:00,176,168,122,121,99,99,101,156 +1969-12-10 00:00:00,1969-12-09 23:00:00,141,196,180,127,100,99,99,124 +1969-12-10 00:00:00,1969-12-09 23:00:00,186,121,109,116,101,99,100,182 +1969-12-10 00:00:00,1969-12-09 23:00:00,123,134,140,164,99,101,99,102 +1969-12-10 00:00:00,1969-12-09 23:00:00,117,159,193,0,100,101,99,154 +1969-12-10 00:00:00,1969-12-09 23:00:00,132,158,188,111,100,99,101,122 +1969-12-10 00:00:00,1969-12-09 23:00:00,157,187,200,180,100,100,99,116 +1969-12-10 00:00:00,1969-12-09 23:00:00,179,139,167,199,100,101,101,135 +1969-12-10 00:00:00,1969-12-09 23:00:00,143,193,184,189,101,99,99,188 +1969-12-10 00:00:00,1969-12-09 23:00:00,183,103,141,165,99,101,101,165 +1969-12-10 00:00:00,1969-12-09 23:00:00,103,150,138,0,99,99,101,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,172,149,101,111,99,101,101,167 +1969-12-10 00:00:00,1969-12-09 23:00:00,108,101,101,128,101,100,100,167 +1969-12-10 00:00:00,1969-12-09 23:00:00,190,106,132,190,99,100,101,121 +1969-12-10 00:00:00,1969-12-09 23:00:00,124,118,142,186,100,100,100,184 +1969-12-10 00:00:00,1969-12-09 23:00:00,188,184,120,139,99,100,100,165 +1969-12-10 00:00:00,1969-12-09 23:00:00,194,137,138,167,99,99,101,128 +1969-12-10 00:00:00,1969-12-09 23:00:00,163,106,129,118,99,99,101,135 +1969-12-10 00:00:00,1969-12-09 23:00:00,183,171,123,0,99,101,99,153 +1969-12-10 00:00:00,1969-12-09 23:00:00,107,192,189,0,100,100,101,103 +1969-12-10 00:00:00,1969-12-09 23:00:00,134,172,148,153,101,100,99,144 +1969-12-10 00:00:00,1969-12-09 23:00:00,108,175,189,0,101,100,99,200 +1969-12-10 00:00:00,1969-12-09 23:00:00,138,149,171,171,99,101,100,149 +1969-12-10 00:00:00,1969-12-09 23:00:00,140,180,129,139,100,101,99,148 +1969-12-10 00:00:00,1969-12-09 23:00:00,130,177,110,199,99,100,99,159 +1969-12-10 00:00:00,1969-12-09 23:00:00,134,198,179,159,99,101,101,163 +1969-12-10 00:00:00,1969-12-09 23:00:00,164,191,197,0,100,100,100,193 +1969-12-10 00:00:00,1969-12-09 23:00:00,119,156,181,183,99,99,100,175 +1969-12-10 00:00:00,1969-12-09 23:00:00,128,154,138,159,100,101,100,192 +1969-12-10 00:00:00,1969-12-09 23:00:00,153,156,130,192,100,100,99,187 +1969-12-10 00:00:00,1969-12-09 23:00:00,119,166,141,198,99,99,99,163 +1969-12-10 00:00:00,1969-12-09 23:00:00,188,131,132,112,101,99,100,119 +1969-12-10 00:00:00,1969-12-09 23:00:00,144,104,133,188,101,99,99,200 +1969-12-10 00:00:00,1969-12-09 23:00:00,175,101,173,158,100,101,99,200 +1969-12-10 00:00:00,1969-12-09 23:00:00,127,197,152,113,101,99,100,147 +1969-12-10 00:00:00,1969-12-09 23:00:00,113,148,183,190,100,99,99,107 +1969-12-10 00:00:00,1969-12-09 23:00:00,122,108,149,186,99,100,100,145 +1969-12-10 00:00:00,1969-12-09 23:00:00,150,133,166,160,100,99,99,165 +1969-12-10 00:00:00,1969-12-09 23:00:00,154,194,185,151,99,101,100,136 +1969-12-10 00:00:00,1969-12-09 23:00:00,145,182,119,173,101,101,100,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,109,120,171,180,101,100,100,191 +1969-12-10 00:00:00,1969-12-09 23:00:00,168,170,195,199,101,100,99,197 +1969-12-10 00:00:00,1969-12-09 23:00:00,184,177,117,158,100,99,99,129 +1969-12-10 00:00:00,1969-12-09 23:00:00,186,161,176,144,99,101,101,169 +1969-12-10 00:00:00,1969-12-09 23:00:00,177,168,197,116,99,100,99,151 +1969-12-10 00:00:00,1969-12-09 23:00:00,200,200,170,0,100,101,99,111 +1969-12-10 00:00:00,1969-12-09 23:00:00,176,126,165,180,101,100,101,193 +1969-12-10 00:00:00,1969-12-09 23:00:00,149,155,122,182,101,100,101,169 +1969-12-10 00:00:00,1969-12-09 23:00:00,128,137,105,0,99,99,100,191 +1969-12-10 00:00:00,1969-12-09 23:00:00,104,160,156,118,100,99,101,161 +1969-12-10 00:00:00,1969-12-09 23:00:00,130,150,196,188,101,99,101,124 +1969-12-10 00:00:00,1969-12-09 23:00:00,163,181,186,137,100,99,99,158 +1969-12-10 00:00:00,1969-12-09 23:00:00,132,119,195,137,99,99,101,141 +1969-12-10 00:00:00,1969-12-09 23:00:00,157,159,168,178,99,99,99,133 +1969-12-10 00:00:00,1969-12-09 23:00:00,108,124,191,173,101,100,99,147 +1969-12-10 00:00:00,1969-12-09 23:00:00,114,143,111,0,100,99,100,129 +1969-12-10 00:00:00,1969-12-09 23:00:00,105,100,105,113,100,101,99,180 +1969-12-10 00:00:00,1969-12-09 23:00:00,140,118,101,0,99,101,99,180 +1969-12-10 00:00:00,1969-12-09 23:00:00,188,159,159,143,100,101,101,195 +1969-12-10 00:00:00,1969-12-09 23:00:00,146,118,169,187,99,101,99,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,193,188,131,144,101,99,100,102 +1969-12-10 00:00:00,1969-12-09 23:00:00,104,138,174,0,99,99,100,183 +1969-12-10 00:00:00,1969-12-09 23:00:00,157,111,162,191,99,99,101,111 +1969-12-10 00:00:00,1969-12-09 23:00:00,198,121,147,193,100,100,99,167 +1969-12-10 00:00:00,1969-12-09 23:00:00,167,121,193,180,100,101,99,157 +1969-12-10 00:00:00,1969-12-09 23:00:00,179,181,127,161,100,99,99,156 +1969-12-10 00:00:00,1969-12-09 23:00:00,171,125,198,103,100,99,99,176 +1969-12-10 00:00:00,1969-12-09 23:00:00,135,155,154,0,101,100,99,150 +1969-12-10 00:00:00,1969-12-09 23:00:00,109,128,120,127,99,101,99,156 +1969-12-10 00:00:00,1969-12-09 23:00:00,166,179,103,183,100,99,100,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,154,197,114,194,99,101,101,195 +1969-12-10 00:00:00,1969-12-09 23:00:00,117,120,182,0,101,100,99,101 +1969-12-10 00:00:00,1969-12-09 23:00:00,157,109,169,165,100,99,100,172 +1969-12-10 00:00:00,1969-12-09 23:00:00,178,160,124,102,100,100,99,123 +1969-12-10 00:00:00,1969-12-09 23:00:00,176,121,167,161,99,99,100,123 +1969-12-10 00:00:00,1969-12-09 23:00:00,148,106,151,0,99,100,100,193 +1969-12-10 00:00:00,1969-12-09 23:00:00,117,153,170,128,100,99,99,196 +1969-12-10 00:00:00,1969-12-09 23:00:00,125,119,162,106,101,100,101,189 +1969-12-10 00:00:00,1969-12-09 23:00:00,183,151,151,118,100,100,101,193 +1969-12-10 00:00:00,1969-12-09 23:00:00,115,133,167,187,100,100,101,126 +1969-12-10 00:00:00,1969-12-09 23:00:00,184,179,173,191,99,100,101,197 +1969-12-10 00:00:00,1969-12-09 23:00:00,150,152,189,193,101,99,100,183 +1969-12-10 00:00:00,1969-12-09 23:00:00,154,126,105,145,99,99,100,179 +1969-12-10 00:00:00,1969-12-09 23:00:00,154,176,129,122,101,99,100,136 +1969-12-10 00:00:00,1969-12-09 23:00:00,111,148,196,134,101,99,101,195 +1969-12-10 00:00:00,1969-12-09 23:00:00,141,172,165,104,101,100,101,175 +1969-12-10 00:00:00,1969-12-09 23:00:00,194,172,133,162,99,100,99,137 +1969-12-10 00:00:00,1969-12-09 23:00:00,176,101,182,183,99,99,100,124 +1969-12-10 00:00:00,1969-12-09 23:00:00,128,106,194,158,101,99,100,151 +1969-12-10 00:00:00,1969-12-09 23:00:00,181,173,160,168,100,100,101,104 +1969-12-10 00:00:00,1969-12-09 23:00:00,115,154,110,151,101,100,101,176 +1969-12-10 00:00:00,1969-12-09 23:00:00,193,178,170,162,99,100,99,175 +1969-12-10 00:00:00,1969-12-09 23:00:00,197,101,155,131,101,100,101,138 +1969-12-10 00:00:00,1969-12-09 23:00:00,161,124,154,103,100,100,100,165 +1969-12-10 00:00:00,1969-12-09 23:00:00,107,154,138,115,101,101,99,188 +1969-12-10 00:00:00,1969-12-09 23:00:00,173,104,130,122,99,100,101,137 +1969-12-10 00:00:00,1969-12-09 23:00:00,185,130,128,157,101,99,99,141 +1969-12-10 00:00:00,1969-12-09 23:00:00,183,163,125,152,101,99,100,139 +1969-12-10 00:00:00,1969-12-09 23:00:00,190,100,152,183,99,100,101,176 +1969-12-10 00:00:00,1969-12-09 23:00:00,136,140,116,109,100,100,100,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,112,172,120,0,100,101,99,105 +1969-12-10 00:00:00,1969-12-09 23:00:00,134,196,127,194,100,101,101,188 +1969-12-10 00:00:00,1969-12-09 23:00:00,100,180,137,159,100,99,101,184 +1969-12-10 00:00:00,1969-12-09 23:00:00,160,186,194,187,99,100,101,172 +1969-12-10 00:00:00,1969-12-09 23:00:00,147,162,187,0,100,101,99,178 +1969-12-10 00:00:00,1969-12-09 23:00:00,185,142,117,172,99,101,99,106 +1969-12-10 00:00:00,1969-12-09 23:00:00,195,104,100,134,101,101,100,135 +1969-12-10 00:00:00,1969-12-09 23:00:00,143,187,192,0,99,100,99,139 +1969-12-10 00:00:00,1969-12-09 23:00:00,128,175,141,181,99,100,100,153 +1969-12-09 00:00:00,1969-12-08 23:00:00,108,161,0,164,101,100,100,177 +1969-12-09 00:00:00,1969-12-08 23:00:00,121,112,0,116,99,101,99,173 +1969-12-09 00:00:00,1969-12-08 23:00:00,132,115,0,199,101,100,100,135 +1969-12-09 00:00:00,1969-12-08 23:00:00,129,187,0,114,99,99,99,196 +1969-12-09 00:00:00,1969-12-08 23:00:00,172,149,0,165,99,101,99,181 +1969-12-09 00:00:00,1969-12-08 23:00:00,191,178,0,0,100,101,99,124 +1969-12-09 00:00:00,1969-12-08 23:00:00,160,188,133,117,99,99,99,104 +1969-12-09 00:00:00,1969-12-08 23:00:00,170,183,163,117,100,100,99,114 +1969-12-09 00:00:00,1969-12-08 23:00:00,135,146,106,194,101,99,100,186 +1969-12-09 00:00:00,1969-12-08 23:00:00,133,160,172,141,99,99,101,198 +1969-12-09 00:00:00,1969-12-08 23:00:00,171,104,168,182,101,99,101,126 +1969-12-09 00:00:00,1969-12-08 23:00:00,108,101,130,152,99,99,101,150 +1969-12-09 00:00:00,1969-12-08 23:00:00,174,194,191,196,99,101,100,165 +1969-12-09 00:00:00,1969-12-08 23:00:00,131,160,172,147,101,101,101,125 +1969-12-09 00:00:00,1969-12-08 23:00:00,190,161,170,107,101,99,99,176 +1969-12-09 00:00:00,1969-12-08 23:00:00,190,126,138,121,99,100,99,174 +1969-12-09 00:00:00,1969-12-08 23:00:00,135,200,154,0,99,101,100,152 +1969-12-09 00:00:00,1969-12-08 23:00:00,116,158,197,148,100,101,100,102 +1969-12-09 00:00:00,1969-12-08 23:00:00,185,123,135,101,99,99,101,118 +1969-12-09 00:00:00,1969-12-08 23:00:00,124,119,113,141,99,99,101,194 +1969-12-09 00:00:00,1969-12-08 23:00:00,146,145,101,139,101,101,99,141 +1969-12-09 00:00:00,1969-12-08 23:00:00,156,198,116,161,100,100,99,132 +1969-12-09 00:00:00,1969-12-08 23:00:00,161,112,197,172,100,101,101,194 +1969-12-09 00:00:00,1969-12-08 23:00:00,104,189,127,0,100,99,100,100 +1969-12-09 00:00:00,1969-12-08 23:00:00,160,196,193,146,101,99,101,193 +1969-12-09 00:00:00,1969-12-08 23:00:00,198,132,115,128,101,101,101,143 +1969-12-09 00:00:00,1969-12-08 23:00:00,134,121,145,104,101,99,100,133 +1969-12-09 00:00:00,1969-12-08 23:00:00,181,131,114,102,100,101,99,173 +1969-12-09 00:00:00,1969-12-08 23:00:00,161,105,168,0,101,100,99,155 +1969-12-09 00:00:00,1969-12-08 23:00:00,185,167,102,0,99,101,99,147 +1969-12-09 00:00:00,1969-12-08 23:00:00,192,113,146,124,101,101,99,143 +1969-12-09 00:00:00,1969-12-08 23:00:00,145,133,199,167,99,101,99,175 +1969-12-09 00:00:00,1969-12-08 23:00:00,126,159,186,177,101,100,100,156 +1969-12-09 00:00:00,1969-12-08 23:00:00,165,148,146,0,101,100,101,110 +1969-12-09 00:00:00,1969-12-08 23:00:00,182,199,190,108,100,101,99,186 +1969-12-09 00:00:00,1969-12-08 23:00:00,198,152,121,176,100,99,100,125 +1969-12-09 00:00:00,1969-12-08 23:00:00,124,180,175,150,100,100,100,168 +1969-12-09 00:00:00,1969-12-08 23:00:00,171,156,147,100,99,99,100,139 +1969-12-09 00:00:00,1969-12-08 23:00:00,104,113,148,0,100,99,100,101 +1969-12-09 00:00:00,1969-12-08 23:00:00,121,113,197,139,101,101,100,108 +1969-12-09 00:00:00,1969-12-08 23:00:00,105,175,127,0,99,100,100,113 +1969-12-09 00:00:00,1969-12-08 23:00:00,159,143,198,166,99,100,99,115 +1969-12-09 00:00:00,1969-12-08 23:00:00,147,100,130,164,100,101,100,149 +1969-12-09 00:00:00,1969-12-08 23:00:00,166,133,192,171,99,99,99,100 +1969-12-09 00:00:00,1969-12-08 23:00:00,147,127,145,113,99,99,100,144 +1969-12-09 00:00:00,1969-12-08 23:00:00,149,191,189,156,100,101,101,159 +1969-12-09 00:00:00,1969-12-08 23:00:00,163,185,174,166,101,100,99,101 +1969-12-09 00:00:00,1969-12-08 23:00:00,172,152,118,106,101,100,99,121 +1969-12-09 00:00:00,1969-12-08 23:00:00,156,106,165,118,99,100,99,150 +1969-12-09 00:00:00,1969-12-08 23:00:00,100,135,189,125,101,99,100,187 +1969-12-09 00:00:00,1969-12-08 23:00:00,112,171,113,191,101,99,101,199 +1969-12-09 00:00:00,1969-12-08 23:00:00,155,125,109,0,100,101,101,150 +1969-12-09 00:00:00,1969-12-08 23:00:00,166,128,199,111,101,100,100,130 +1969-12-09 00:00:00,1969-12-08 23:00:00,144,190,191,102,101,101,101,160 +1969-12-09 00:00:00,1969-12-08 23:00:00,121,186,146,123,100,101,100,133 +1969-12-09 00:00:00,1969-12-08 23:00:00,119,163,100,152,101,101,101,152 +1969-12-09 00:00:00,1969-12-08 23:00:00,185,187,165,175,99,99,99,163 +1969-12-09 00:00:00,1969-12-08 23:00:00,127,111,116,194,101,99,100,148 +1969-12-09 00:00:00,1969-12-08 23:00:00,153,118,176,134,101,99,99,190 +1969-12-09 00:00:00,1969-12-08 23:00:00,175,102,152,0,99,101,101,130 +1969-12-09 00:00:00,1969-12-08 23:00:00,152,124,154,104,100,100,99,152 +1969-12-09 00:00:00,1969-12-08 23:00:00,111,181,166,116,101,100,99,157 +1969-12-09 00:00:00,1969-12-08 23:00:00,165,136,129,138,101,100,100,191 +1969-12-09 00:00:00,1969-12-08 23:00:00,118,151,125,138,100,101,101,111 +1969-12-09 00:00:00,1969-12-08 23:00:00,190,163,179,0,101,101,101,138 +1969-12-09 00:00:00,1969-12-08 23:00:00,107,138,162,0,100,101,99,162 +1969-12-09 00:00:00,1969-12-08 23:00:00,119,112,108,117,99,101,100,168 +1969-12-09 00:00:00,1969-12-08 23:00:00,166,183,127,195,99,100,100,186 +1969-12-09 00:00:00,1969-12-08 23:00:00,106,114,177,156,101,100,100,107 +1969-12-09 00:00:00,1969-12-08 23:00:00,129,118,186,152,100,100,101,110 +1969-12-09 00:00:00,1969-12-08 23:00:00,114,120,156,102,100,99,100,179 +1969-12-09 00:00:00,1969-12-08 23:00:00,132,157,183,0,101,100,101,185 +1969-12-09 00:00:00,1969-12-08 23:00:00,158,188,199,147,99,100,100,197 +1969-12-09 00:00:00,1969-12-08 23:00:00,177,159,159,199,100,99,99,138 +1969-12-09 00:00:00,1969-12-08 23:00:00,125,157,198,168,99,100,99,129 +1969-12-09 00:00:00,1969-12-08 23:00:00,162,142,147,0,100,101,99,131 +1969-12-09 00:00:00,1969-12-08 23:00:00,190,158,172,179,101,101,100,174 +1969-12-09 00:00:00,1969-12-08 23:00:00,164,175,136,100,99,101,99,100 +1969-12-09 00:00:00,1969-12-08 23:00:00,111,117,191,0,100,100,99,117 +1969-12-09 00:00:00,1969-12-08 23:00:00,144,121,114,0,99,101,99,135 +1969-12-09 00:00:00,1969-12-08 23:00:00,184,117,107,0,100,101,100,140 +1969-12-09 00:00:00,1969-12-08 23:00:00,147,158,128,144,99,99,101,191 +1969-12-09 00:00:00,1969-12-08 23:00:00,170,170,194,195,101,101,100,166 +1969-12-09 00:00:00,1969-12-08 23:00:00,199,129,199,187,101,101,100,107 +1969-12-09 00:00:00,1969-12-08 23:00:00,124,166,139,137,99,99,100,159 +1969-12-09 00:00:00,1969-12-08 23:00:00,124,188,141,0,101,101,101,154 +1969-12-09 00:00:00,1969-12-08 23:00:00,114,128,106,139,100,101,99,157 +1969-12-09 00:00:00,1969-12-08 23:00:00,105,123,136,0,100,99,99,113 +1969-12-09 00:00:00,1969-12-08 23:00:00,145,136,185,179,100,101,99,197 +1969-12-09 00:00:00,1969-12-08 23:00:00,152,137,112,124,100,100,99,144 +1969-12-09 00:00:00,1969-12-08 23:00:00,181,116,173,128,100,100,100,154 +1969-12-09 00:00:00,1969-12-08 23:00:00,175,192,144,173,100,99,100,154 +1969-12-09 00:00:00,1969-12-08 23:00:00,118,104,179,129,99,101,100,200 +1969-12-09 00:00:00,1969-12-08 23:00:00,142,198,167,0,100,99,100,180 +1969-12-09 00:00:00,1969-12-08 23:00:00,130,132,199,112,100,99,99,140 +1969-12-09 00:00:00,1969-12-08 23:00:00,102,110,170,124,100,99,101,147 +1969-12-09 00:00:00,1969-12-08 23:00:00,188,107,147,196,99,100,100,129 +1969-12-09 00:00:00,1969-12-08 23:00:00,189,154,172,185,100,101,100,190 +1969-12-09 00:00:00,1969-12-08 23:00:00,121,161,137,145,101,100,101,163 +1969-12-09 00:00:00,1969-12-08 23:00:00,189,153,111,0,99,101,101,161 +1969-12-09 00:00:00,1969-12-08 23:00:00,179,199,137,121,100,100,101,170 +1969-12-09 00:00:00,1969-12-08 23:00:00,138,139,101,177,99,100,99,194 +1969-12-09 00:00:00,1969-12-08 23:00:00,192,127,137,166,99,101,100,110 +1969-12-09 00:00:00,1969-12-08 23:00:00,161,154,102,0,100,101,101,172 +1969-12-09 00:00:00,1969-12-08 23:00:00,188,124,193,113,100,100,99,125 +1969-12-09 00:00:00,1969-12-08 23:00:00,111,159,186,0,99,99,101,142 +1969-12-09 00:00:00,1969-12-08 23:00:00,190,185,189,188,99,100,101,150 +1969-12-09 00:00:00,1969-12-08 23:00:00,129,120,174,0,100,100,99,182 +1969-12-09 00:00:00,1969-12-08 23:00:00,151,117,111,101,100,100,101,184 +1969-12-09 00:00:00,1969-12-08 23:00:00,161,165,122,123,101,100,100,177 +1969-12-09 00:00:00,1969-12-08 23:00:00,168,158,172,111,101,99,99,142 +1969-12-09 00:00:00,1969-12-08 23:00:00,152,123,112,175,100,100,100,137 +1969-12-09 00:00:00,1969-12-08 23:00:00,174,178,116,149,99,101,99,162 +1969-12-09 00:00:00,1969-12-08 23:00:00,141,115,135,120,99,101,101,147 +1969-12-09 00:00:00,1969-12-08 23:00:00,180,172,154,127,101,101,100,123 +1969-12-09 00:00:00,1969-12-08 23:00:00,149,153,136,111,101,100,100,174 +1969-12-09 00:00:00,1969-12-08 23:00:00,167,196,105,154,100,101,100,136 +1969-12-09 00:00:00,1969-12-08 23:00:00,166,132,189,145,101,101,100,174 +1969-12-09 00:00:00,1969-12-08 23:00:00,165,107,182,115,99,99,100,103 +1969-12-09 00:00:00,1969-12-08 23:00:00,173,167,146,111,99,101,99,197 +1969-12-09 00:00:00,1969-12-08 23:00:00,130,191,191,172,101,99,99,116 +1969-12-09 00:00:00,1969-12-08 23:00:00,199,178,105,102,101,99,101,110 +1969-12-09 00:00:00,1969-12-08 23:00:00,176,152,139,146,101,100,100,194 +1969-12-09 00:00:00,1969-12-08 23:00:00,189,131,200,121,99,99,101,200 +1969-12-09 00:00:00,1969-12-08 23:00:00,191,128,152,0,99,101,101,169 +1969-12-09 00:00:00,1969-12-08 23:00:00,184,104,106,137,99,100,101,173 +1969-12-09 00:00:00,1969-12-08 23:00:00,179,107,200,200,100,101,101,148 +1969-12-09 00:00:00,1969-12-08 23:00:00,105,198,124,179,101,99,99,160 +1969-12-09 00:00:00,1969-12-08 23:00:00,154,109,130,160,101,99,100,102 +1969-12-09 00:00:00,1969-12-08 23:00:00,166,129,197,115,100,99,101,110 +1969-12-09 00:00:00,1969-12-08 23:00:00,189,100,156,128,101,101,101,142 +1969-12-09 00:00:00,1969-12-08 23:00:00,160,195,180,135,101,100,100,142 +1969-12-09 00:00:00,1969-12-08 23:00:00,185,166,142,121,100,101,101,165 +1969-12-09 00:00:00,1969-12-08 23:00:00,183,123,127,157,100,99,99,135 +1969-12-09 00:00:00,1969-12-08 23:00:00,173,102,119,0,99,101,99,169 +1969-12-09 00:00:00,1969-12-08 23:00:00,166,176,153,110,99,100,99,112 +1969-12-09 00:00:00,1969-12-08 23:00:00,153,198,193,146,99,99,100,194 +1969-12-09 00:00:00,1969-12-08 23:00:00,121,198,168,0,101,99,101,182 +1969-12-09 00:00:00,1969-12-08 23:00:00,141,149,161,106,101,100,99,136 +1969-12-09 00:00:00,1969-12-08 23:00:00,136,183,124,0,99,100,100,175 +1969-12-09 00:00:00,1969-12-08 23:00:00,146,182,143,0,99,101,99,121 +1969-12-09 00:00:00,1969-12-08 23:00:00,115,103,107,0,101,99,99,163 +1969-12-09 00:00:00,1969-12-08 23:00:00,135,181,199,183,100,99,100,160 +1969-12-09 00:00:00,1969-12-08 23:00:00,193,150,116,0,100,100,100,114 +1969-12-09 00:00:00,1969-12-08 23:00:00,162,137,159,182,101,100,100,147 +1969-12-09 00:00:00,1969-12-08 23:00:00,111,188,174,161,99,100,99,183 +1969-12-09 00:00:00,1969-12-08 23:00:00,119,142,118,168,101,99,99,143 +1969-12-09 00:00:00,1969-12-08 23:00:00,109,200,124,180,99,99,100,142 +1969-12-09 00:00:00,1969-12-08 23:00:00,109,192,150,115,99,100,99,124 +1969-12-09 00:00:00,1969-12-08 23:00:00,197,126,135,169,101,99,99,184 +1969-12-09 00:00:00,1969-12-08 23:00:00,149,178,177,173,99,101,99,150 +1969-12-09 00:00:00,1969-12-08 23:00:00,147,140,157,181,101,99,99,198 +1969-12-09 00:00:00,1969-12-08 23:00:00,160,195,155,180,99,100,100,172 +1969-12-09 00:00:00,1969-12-08 23:00:00,127,110,161,183,101,101,101,150 +1969-12-09 00:00:00,1969-12-08 23:00:00,167,181,136,0,101,100,99,155 +1969-12-09 00:00:00,1969-12-08 23:00:00,133,107,104,200,101,100,99,177 +1969-12-09 00:00:00,1969-12-08 23:00:00,144,107,187,108,99,101,100,140 +1969-12-09 00:00:00,1969-12-08 23:00:00,109,189,161,0,100,101,100,118 +1969-12-09 00:00:00,1969-12-08 23:00:00,171,127,191,187,101,100,101,162 +1969-12-09 00:00:00,1969-12-08 23:00:00,184,152,143,138,101,101,101,101 +1969-12-09 00:00:00,1969-12-08 23:00:00,129,135,187,127,100,100,101,129 +1969-12-09 00:00:00,1969-12-08 23:00:00,151,164,130,160,99,99,100,116 +1969-12-09 00:00:00,1969-12-08 23:00:00,146,115,108,118,101,101,101,198 +1969-12-09 00:00:00,1969-12-08 23:00:00,104,180,172,0,99,100,100,119 +1969-12-09 00:00:00,1969-12-08 23:00:00,182,138,109,156,100,101,101,139 +1969-12-09 00:00:00,1969-12-08 23:00:00,153,132,199,194,99,99,101,161 +1969-12-09 00:00:00,1969-12-08 23:00:00,163,111,129,138,101,101,99,145 +1969-12-09 00:00:00,1969-12-08 23:00:00,114,193,169,129,100,100,99,103 +1969-12-09 00:00:00,1969-12-08 23:00:00,179,100,104,120,101,99,99,137 +1969-12-09 00:00:00,1969-12-08 23:00:00,102,146,112,134,101,100,101,196 +1969-12-09 00:00:00,1969-12-08 23:00:00,199,148,136,187,99,99,100,120 +1969-12-09 00:00:00,1969-12-08 23:00:00,121,145,138,0,100,101,100,140 +1969-12-09 00:00:00,1969-12-08 23:00:00,181,163,191,0,100,100,100,168 +1969-12-09 00:00:00,1969-12-08 23:00:00,157,166,181,200,100,101,101,108 +1969-12-09 00:00:00,1969-12-08 23:00:00,128,178,135,0,99,100,101,183 +1969-12-09 00:00:00,1969-12-08 23:00:00,117,137,117,113,99,99,101,160 +1969-12-09 00:00:00,1969-12-08 23:00:00,141,103,142,175,99,99,99,146 +1969-12-09 00:00:00,1969-12-08 23:00:00,128,177,156,187,99,101,101,139 +1969-12-09 00:00:00,1969-12-08 23:00:00,137,166,125,129,100,101,100,133 +1969-12-09 00:00:00,1969-12-08 23:00:00,162,119,185,152,99,100,101,109 +1969-12-09 00:00:00,1969-12-08 23:00:00,149,128,162,0,99,99,100,196 +1969-12-09 00:00:00,1969-12-08 23:00:00,144,132,134,103,100,99,99,113 +1969-12-09 00:00:00,1969-12-08 23:00:00,104,136,167,151,100,100,99,141 +1969-12-09 00:00:00,1969-12-08 23:00:00,131,145,196,130,101,99,100,117 +1969-12-09 00:00:00,1969-12-08 23:00:00,147,112,109,158,99,100,100,101 +1969-12-09 00:00:00,1969-12-08 23:00:00,115,171,191,195,100,100,100,104 +1969-12-09 00:00:00,1969-12-08 23:00:00,100,162,135,128,99,99,99,125 +1969-12-09 00:00:00,1969-12-08 23:00:00,153,172,114,179,99,100,101,142 +1969-12-09 00:00:00,1969-12-08 23:00:00,197,168,199,0,99,101,100,165 +1969-12-09 00:00:00,1969-12-08 23:00:00,177,142,166,173,100,101,100,102 +1969-12-09 00:00:00,1969-12-08 23:00:00,138,143,121,106,100,100,99,192 +1969-12-09 00:00:00,1969-12-08 23:00:00,140,170,106,0,101,100,99,167 +1969-12-09 00:00:00,1969-12-08 23:00:00,124,131,111,0,101,101,100,100 +1969-12-09 00:00:00,1969-12-08 23:00:00,178,107,174,0,100,99,101,196 +1969-12-09 00:00:00,1969-12-08 23:00:00,167,193,140,107,101,99,101,103 +1969-12-09 00:00:00,1969-12-08 23:00:00,101,157,136,154,100,100,100,165 +1969-12-09 00:00:00,1969-12-08 23:00:00,128,117,163,101,101,99,101,155 +1969-12-09 00:00:00,1969-12-08 23:00:00,198,144,161,100,101,100,101,110 +1969-12-09 00:00:00,1969-12-08 23:00:00,191,152,166,149,100,99,100,127 +1969-12-09 00:00:00,1969-12-08 23:00:00,150,157,194,149,101,100,101,106 +1969-12-08 00:00:00,1969-12-07 23:00:00,176,150,0,100,99,100,99,195 +1969-12-08 00:00:00,1969-12-07 23:00:00,109,158,0,153,99,101,99,156 +1969-12-08 00:00:00,1969-12-07 23:00:00,126,146,0,108,101,99,101,117 +1969-12-08 00:00:00,1969-12-07 23:00:00,148,154,0,0,101,99,101,196 +1969-12-08 00:00:00,1969-12-07 23:00:00,183,183,0,200,101,100,99,164 +1969-12-08 00:00:00,1969-12-07 23:00:00,192,198,0,182,100,100,99,185 +1969-12-08 00:00:00,1969-12-07 23:00:00,164,182,107,121,101,101,101,175 +1969-12-08 00:00:00,1969-12-07 23:00:00,155,163,180,119,99,101,101,148 +1969-12-08 00:00:00,1969-12-07 23:00:00,121,143,162,193,99,100,100,182 +1969-12-08 00:00:00,1969-12-07 23:00:00,114,113,186,145,101,101,100,143 +1969-12-08 00:00:00,1969-12-07 23:00:00,106,104,128,138,100,101,99,179 +1969-12-08 00:00:00,1969-12-07 23:00:00,111,144,130,0,101,100,100,173 +1969-12-08 00:00:00,1969-12-07 23:00:00,187,149,102,174,100,101,101,138 +1969-12-08 00:00:00,1969-12-07 23:00:00,155,141,150,101,99,99,99,187 +1969-12-08 00:00:00,1969-12-07 23:00:00,182,182,186,142,99,100,100,142 +1969-12-08 00:00:00,1969-12-07 23:00:00,195,159,197,152,99,100,99,152 +1969-12-08 00:00:00,1969-12-07 23:00:00,118,146,141,143,101,101,99,164 +1969-12-08 00:00:00,1969-12-07 23:00:00,177,103,101,141,101,101,101,197 +1969-12-08 00:00:00,1969-12-07 23:00:00,191,122,175,109,100,100,99,154 +1969-12-08 00:00:00,1969-12-07 23:00:00,121,132,101,0,101,101,100,160 +1969-12-08 00:00:00,1969-12-07 23:00:00,161,101,188,134,100,99,100,163 +1969-12-08 00:00:00,1969-12-07 23:00:00,190,117,174,153,100,99,101,131 +1969-12-08 00:00:00,1969-12-07 23:00:00,158,183,132,0,99,100,99,157 +1969-12-08 00:00:00,1969-12-07 23:00:00,153,177,193,0,100,100,99,106 +1969-12-08 00:00:00,1969-12-07 23:00:00,179,124,143,154,101,100,100,146 +1969-12-08 00:00:00,1969-12-07 23:00:00,110,126,174,114,99,100,99,130 +1969-12-08 00:00:00,1969-12-07 23:00:00,106,169,141,0,99,101,100,179 +1969-12-08 00:00:00,1969-12-07 23:00:00,114,157,171,0,99,99,101,115 +1969-12-08 00:00:00,1969-12-07 23:00:00,161,166,169,160,100,99,100,186 +1969-12-08 00:00:00,1969-12-07 23:00:00,176,129,126,114,100,101,100,152 +1969-12-08 00:00:00,1969-12-07 23:00:00,133,113,144,159,99,101,101,127 +1969-12-08 00:00:00,1969-12-07 23:00:00,103,153,152,197,100,101,100,141 +1969-12-08 00:00:00,1969-12-07 23:00:00,190,162,163,107,101,99,101,114 +1969-12-08 00:00:00,1969-12-07 23:00:00,154,122,181,140,101,100,101,196 +1969-12-08 00:00:00,1969-12-07 23:00:00,188,187,173,187,100,99,100,188 +1969-12-08 00:00:00,1969-12-07 23:00:00,133,158,121,173,99,99,100,155 +1969-12-08 00:00:00,1969-12-07 23:00:00,199,104,167,146,100,100,101,192 +1969-12-08 00:00:00,1969-12-07 23:00:00,134,124,194,0,101,99,101,143 +1969-12-08 00:00:00,1969-12-07 23:00:00,137,184,149,104,99,101,100,100 +1969-12-08 00:00:00,1969-12-07 23:00:00,155,169,165,179,101,101,100,180 +1969-12-08 00:00:00,1969-12-07 23:00:00,161,149,134,137,99,99,99,193 +1969-12-08 00:00:00,1969-12-07 23:00:00,141,153,126,200,101,100,100,107 +1969-12-08 00:00:00,1969-12-07 23:00:00,176,126,181,126,99,101,100,180 +1969-12-08 00:00:00,1969-12-07 23:00:00,139,121,141,0,100,99,99,177 +1969-12-08 00:00:00,1969-12-07 23:00:00,181,126,186,184,100,101,100,124 +1969-12-08 00:00:00,1969-12-07 23:00:00,116,162,111,147,101,101,99,198 +1969-12-08 00:00:00,1969-12-07 23:00:00,115,110,198,177,99,100,100,153 +1969-12-08 00:00:00,1969-12-07 23:00:00,172,129,101,159,101,99,99,160 +1969-12-08 00:00:00,1969-12-07 23:00:00,128,191,172,122,101,101,101,160 +1969-12-08 00:00:00,1969-12-07 23:00:00,176,185,120,197,100,101,99,101 +1969-12-08 00:00:00,1969-12-07 23:00:00,171,160,138,0,100,99,100,108 +1969-12-08 00:00:00,1969-12-07 23:00:00,179,134,101,172,101,99,101,190 +1969-12-08 00:00:00,1969-12-07 23:00:00,145,189,118,198,101,100,101,132 +1969-12-08 00:00:00,1969-12-07 23:00:00,140,191,137,160,100,100,100,159 +1969-12-08 00:00:00,1969-12-07 23:00:00,190,192,170,130,101,99,99,103 +1969-12-08 00:00:00,1969-12-07 23:00:00,180,187,187,167,101,100,100,164 +1969-12-08 00:00:00,1969-12-07 23:00:00,163,141,135,131,99,101,101,100 +1969-12-08 00:00:00,1969-12-07 23:00:00,125,158,195,135,100,99,99,153 +1969-12-08 00:00:00,1969-12-07 23:00:00,115,114,130,0,100,100,100,114 +1969-12-08 00:00:00,1969-12-07 23:00:00,118,111,168,198,100,99,101,182 +1969-12-08 00:00:00,1969-12-07 23:00:00,133,175,159,0,99,100,100,104 +1969-12-08 00:00:00,1969-12-07 23:00:00,113,127,147,138,101,100,101,122 +1969-12-08 00:00:00,1969-12-07 23:00:00,177,134,178,141,101,99,99,103 +1969-12-08 00:00:00,1969-12-07 23:00:00,131,190,151,165,99,99,101,117 +1969-12-08 00:00:00,1969-12-07 23:00:00,184,163,162,108,99,99,99,155 +1969-12-08 00:00:00,1969-12-07 23:00:00,103,183,134,161,100,101,100,194 +1969-12-08 00:00:00,1969-12-07 23:00:00,134,148,146,188,100,99,100,113 +1969-12-08 00:00:00,1969-12-07 23:00:00,102,171,159,198,101,101,99,138 +1969-12-08 00:00:00,1969-12-07 23:00:00,136,130,140,142,101,101,101,147 +1969-12-08 00:00:00,1969-12-07 23:00:00,157,108,151,135,100,99,101,164 +1969-12-08 00:00:00,1969-12-07 23:00:00,118,190,109,0,101,100,99,174 +1969-12-08 00:00:00,1969-12-07 23:00:00,131,193,114,153,100,99,99,108 +1969-12-08 00:00:00,1969-12-07 23:00:00,113,103,126,117,99,100,101,164 +1969-12-08 00:00:00,1969-12-07 23:00:00,154,144,104,165,99,99,99,175 +1969-12-08 00:00:00,1969-12-07 23:00:00,111,142,188,113,99,99,99,190 +1969-12-08 00:00:00,1969-12-07 23:00:00,183,115,157,166,100,100,99,152 +1969-12-08 00:00:00,1969-12-07 23:00:00,126,173,158,0,99,100,100,168 +1969-12-08 00:00:00,1969-12-07 23:00:00,157,143,169,147,100,100,101,182 +1969-12-08 00:00:00,1969-12-07 23:00:00,194,174,182,0,100,99,101,143 +1969-12-08 00:00:00,1969-12-07 23:00:00,132,139,107,0,99,101,99,158 +1969-12-08 00:00:00,1969-12-07 23:00:00,111,194,111,139,101,100,99,134 +1969-12-08 00:00:00,1969-12-07 23:00:00,110,157,161,0,101,101,101,162 +1969-12-08 00:00:00,1969-12-07 23:00:00,124,171,145,179,99,100,101,103 +1969-12-08 00:00:00,1969-12-07 23:00:00,184,143,152,114,99,101,100,139 +1969-12-08 00:00:00,1969-12-07 23:00:00,186,118,177,0,101,99,99,154 +1969-12-08 00:00:00,1969-12-07 23:00:00,196,135,141,0,100,99,99,142 +1969-12-08 00:00:00,1969-12-07 23:00:00,180,169,170,0,99,100,100,187 +1969-12-08 00:00:00,1969-12-07 23:00:00,174,176,111,192,99,99,100,120 +1969-12-08 00:00:00,1969-12-07 23:00:00,169,121,196,115,101,101,100,158 +1969-12-08 00:00:00,1969-12-07 23:00:00,197,121,198,139,101,100,99,166 +1969-12-08 00:00:00,1969-12-07 23:00:00,187,189,178,153,101,101,101,177 +1969-12-08 00:00:00,1969-12-07 23:00:00,165,170,127,121,101,99,100,131 +1969-12-08 00:00:00,1969-12-07 23:00:00,115,127,197,141,101,101,101,172 +1969-12-08 00:00:00,1969-12-07 23:00:00,163,124,197,117,101,101,101,144 +1969-12-08 00:00:00,1969-12-07 23:00:00,169,111,100,0,101,99,100,194 +1969-12-08 00:00:00,1969-12-07 23:00:00,161,159,172,122,101,101,101,127 +1969-12-08 00:00:00,1969-12-07 23:00:00,170,107,180,127,99,101,99,116 +1969-12-08 00:00:00,1969-12-07 23:00:00,164,149,138,0,99,100,101,168 +1969-12-08 00:00:00,1969-12-07 23:00:00,124,193,153,128,101,100,99,157 +1969-12-08 00:00:00,1969-12-07 23:00:00,143,188,149,198,101,99,99,117 +1969-12-08 00:00:00,1969-12-07 23:00:00,116,137,130,133,100,99,101,163 +1969-12-08 00:00:00,1969-12-07 23:00:00,120,168,155,0,101,101,100,113 +1969-12-08 00:00:00,1969-12-07 23:00:00,136,109,185,110,99,101,101,130 +1969-12-08 00:00:00,1969-12-07 23:00:00,152,120,167,169,101,101,99,114 +1969-12-08 00:00:00,1969-12-07 23:00:00,148,163,104,0,101,101,100,177 +1969-12-08 00:00:00,1969-12-07 23:00:00,150,169,136,0,100,99,100,172 +1969-12-08 00:00:00,1969-12-07 23:00:00,137,137,147,0,100,99,99,135 +1969-12-08 00:00:00,1969-12-07 23:00:00,142,155,113,0,101,99,101,140 +1969-12-08 00:00:00,1969-12-07 23:00:00,145,189,110,154,99,101,101,197 +1969-12-08 00:00:00,1969-12-07 23:00:00,129,164,179,0,99,101,100,181 +1969-12-08 00:00:00,1969-12-07 23:00:00,102,170,140,128,100,99,101,127 +1969-12-08 00:00:00,1969-12-07 23:00:00,144,179,159,140,99,100,101,129 +1969-12-08 00:00:00,1969-12-07 23:00:00,146,150,171,165,99,99,101,137 +1969-12-08 00:00:00,1969-12-07 23:00:00,194,143,177,118,100,100,101,117 +1969-12-08 00:00:00,1969-12-07 23:00:00,131,136,127,176,99,101,100,200 +1969-12-08 00:00:00,1969-12-07 23:00:00,139,132,178,127,99,100,100,104 +1969-12-08 00:00:00,1969-12-07 23:00:00,165,124,113,0,101,100,99,127 +1969-12-08 00:00:00,1969-12-07 23:00:00,103,179,157,106,100,101,99,132 +1969-12-08 00:00:00,1969-12-07 23:00:00,122,156,172,0,101,99,101,141 +1969-12-08 00:00:00,1969-12-07 23:00:00,113,146,193,183,101,101,99,167 +1969-12-08 00:00:00,1969-12-07 23:00:00,198,113,140,144,100,99,99,149 +1969-12-08 00:00:00,1969-12-07 23:00:00,180,123,169,197,99,100,99,165 +1969-12-08 00:00:00,1969-12-07 23:00:00,149,118,108,121,100,100,101,120 +1969-12-08 00:00:00,1969-12-07 23:00:00,166,146,109,0,101,101,101,187 +1969-12-08 00:00:00,1969-12-07 23:00:00,189,177,185,186,100,99,99,197 +1969-12-08 00:00:00,1969-12-07 23:00:00,111,187,137,156,99,100,100,187 +1969-12-08 00:00:00,1969-12-07 23:00:00,129,134,122,152,99,99,101,144 +1969-12-08 00:00:00,1969-12-07 23:00:00,197,116,173,174,101,100,101,108 +1969-12-08 00:00:00,1969-12-07 23:00:00,172,184,131,130,99,101,101,161 +1969-12-08 00:00:00,1969-12-07 23:00:00,130,181,111,107,99,99,101,163 +1969-12-08 00:00:00,1969-12-07 23:00:00,178,132,107,0,101,100,100,167 +1969-12-08 00:00:00,1969-12-07 23:00:00,165,197,127,144,99,100,100,165 +1969-12-08 00:00:00,1969-12-07 23:00:00,171,169,163,130,99,99,100,190 +1969-12-08 00:00:00,1969-12-07 23:00:00,181,117,152,142,101,101,101,123 +1969-12-08 00:00:00,1969-12-07 23:00:00,154,159,173,0,99,99,101,178 +1969-12-08 00:00:00,1969-12-07 23:00:00,146,153,138,162,100,100,100,112 +1969-12-08 00:00:00,1969-12-07 23:00:00,115,156,145,0,100,99,101,117 +1969-12-08 00:00:00,1969-12-07 23:00:00,120,100,138,0,100,101,101,111 +1969-12-08 00:00:00,1969-12-07 23:00:00,158,183,184,152,99,101,99,167 +1969-12-08 00:00:00,1969-12-07 23:00:00,177,136,156,155,99,99,99,171 +1969-12-08 00:00:00,1969-12-07 23:00:00,147,103,150,119,100,99,101,118 +1969-12-08 00:00:00,1969-12-07 23:00:00,122,172,150,169,101,99,100,126 +1969-12-08 00:00:00,1969-12-07 23:00:00,121,182,190,152,100,100,101,107 +1969-12-08 00:00:00,1969-12-07 23:00:00,200,134,189,134,100,100,101,169 +1969-12-08 00:00:00,1969-12-07 23:00:00,124,189,140,138,101,100,100,102 +1969-12-08 00:00:00,1969-12-07 23:00:00,156,113,188,116,99,101,100,108 +1969-12-08 00:00:00,1969-12-07 23:00:00,108,163,149,124,99,99,101,107 +1969-12-08 00:00:00,1969-12-07 23:00:00,165,187,163,104,100,100,101,168 +1969-12-08 00:00:00,1969-12-07 23:00:00,108,146,162,178,101,101,100,155 +1969-12-08 00:00:00,1969-12-07 23:00:00,193,107,194,117,99,99,100,150 +1969-12-08 00:00:00,1969-12-07 23:00:00,110,159,185,155,100,101,100,168 +1969-12-08 00:00:00,1969-12-07 23:00:00,200,135,121,144,100,101,99,168 +1969-12-08 00:00:00,1969-12-07 23:00:00,174,124,114,114,101,101,100,113 +1969-12-08 00:00:00,1969-12-07 23:00:00,191,158,169,125,99,101,100,102 +1969-12-08 00:00:00,1969-12-07 23:00:00,200,151,153,115,99,100,100,100 +1969-12-08 00:00:00,1969-12-07 23:00:00,116,129,115,127,101,101,99,138 +1969-12-08 00:00:00,1969-12-07 23:00:00,167,146,138,160,99,101,101,111 +1969-12-08 00:00:00,1969-12-07 23:00:00,120,169,197,171,100,101,100,158 +1969-12-08 00:00:00,1969-12-07 23:00:00,142,167,193,0,99,101,99,108 +1969-12-08 00:00:00,1969-12-07 23:00:00,128,163,139,187,100,100,99,141 +1969-12-08 00:00:00,1969-12-07 23:00:00,133,113,198,108,101,99,100,178 +1969-12-08 00:00:00,1969-12-07 23:00:00,119,149,158,160,101,99,101,110 +1969-12-08 00:00:00,1969-12-07 23:00:00,187,123,154,187,101,101,101,153 +1969-12-08 00:00:00,1969-12-07 23:00:00,191,198,122,142,99,100,100,160 +1969-12-08 00:00:00,1969-12-07 23:00:00,189,135,115,0,101,99,101,190 +1969-12-08 00:00:00,1969-12-07 23:00:00,159,171,130,188,101,101,100,153 +1969-12-08 00:00:00,1969-12-07 23:00:00,103,182,107,122,100,100,100,174 +1969-12-08 00:00:00,1969-12-07 23:00:00,188,135,151,123,100,101,100,159 +1969-12-08 00:00:00,1969-12-07 23:00:00,105,192,171,162,99,100,100,157 +1969-12-08 00:00:00,1969-12-07 23:00:00,170,185,100,160,99,101,100,135 +1969-12-08 00:00:00,1969-12-07 23:00:00,146,123,135,0,101,101,99,149 +1969-12-08 00:00:00,1969-12-07 23:00:00,147,164,189,112,101,99,100,136 +1969-12-08 00:00:00,1969-12-07 23:00:00,127,183,199,132,99,99,101,173 +1969-12-08 00:00:00,1969-12-07 23:00:00,139,137,146,118,100,99,101,161 +1969-12-08 00:00:00,1969-12-07 23:00:00,109,178,148,0,100,99,101,167 +1969-12-08 00:00:00,1969-12-07 23:00:00,116,145,108,185,99,99,101,105 +1969-12-08 00:00:00,1969-12-07 23:00:00,200,155,194,0,101,101,101,187 +1969-12-08 00:00:00,1969-12-07 23:00:00,159,106,181,151,100,99,101,137 +1969-12-08 00:00:00,1969-12-07 23:00:00,100,189,118,184,100,99,99,162 +1969-12-08 00:00:00,1969-12-07 23:00:00,177,146,188,119,100,99,99,108 +1969-12-08 00:00:00,1969-12-07 23:00:00,164,117,165,102,99,99,101,148 +1969-12-08 00:00:00,1969-12-07 23:00:00,171,189,185,0,101,101,100,199 +1969-12-08 00:00:00,1969-12-07 23:00:00,176,144,111,130,101,100,99,151 +1969-12-08 00:00:00,1969-12-07 23:00:00,146,107,127,152,101,99,100,190 +1969-12-08 00:00:00,1969-12-07 23:00:00,187,155,165,161,99,99,101,145 +1969-12-08 00:00:00,1969-12-07 23:00:00,153,109,131,182,100,99,99,135 +1969-12-08 00:00:00,1969-12-07 23:00:00,108,104,167,167,99,100,101,180 +1969-12-08 00:00:00,1969-12-07 23:00:00,120,186,109,160,99,101,101,131 +1969-12-08 00:00:00,1969-12-07 23:00:00,180,165,131,188,99,101,101,118 +1969-12-08 00:00:00,1969-12-07 23:00:00,157,134,129,180,99,101,101,124 +1969-12-08 00:00:00,1969-12-07 23:00:00,199,186,100,101,99,100,99,105 +1969-12-08 00:00:00,1969-12-07 23:00:00,132,188,160,159,99,99,100,197 +1969-12-08 00:00:00,1969-12-07 23:00:00,178,131,188,0,99,99,101,145 +1969-12-08 00:00:00,1969-12-07 23:00:00,161,125,187,150,101,100,99,112 +1969-12-08 00:00:00,1969-12-07 23:00:00,191,190,132,100,101,101,99,153 +1969-12-08 00:00:00,1969-12-07 23:00:00,131,113,163,119,99,99,99,123 +1969-12-08 00:00:00,1969-12-07 23:00:00,189,171,164,149,101,101,99,179 +1969-12-08 00:00:00,1969-12-07 23:00:00,117,156,169,0,100,99,100,155 +1969-12-08 00:00:00,1969-12-07 23:00:00,156,173,196,193,100,100,101,189 +1969-12-08 00:00:00,1969-12-07 23:00:00,160,197,139,109,100,101,101,176 +1969-12-07 00:00:00,1969-12-06 23:00:00,131,174,0,0,100,101,99,102 +1969-12-07 00:00:00,1969-12-06 23:00:00,148,106,0,0,99,101,100,180 +1969-12-07 00:00:00,1969-12-06 23:00:00,135,182,0,126,100,100,100,175 +1969-12-07 00:00:00,1969-12-06 23:00:00,180,124,0,128,101,100,101,109 +1969-12-07 00:00:00,1969-12-06 23:00:00,178,157,0,181,101,99,101,127 +1969-12-07 00:00:00,1969-12-06 23:00:00,184,156,0,108,101,100,99,166 +1969-12-07 00:00:00,1969-12-06 23:00:00,138,105,131,145,101,101,101,167 +1969-12-07 00:00:00,1969-12-06 23:00:00,152,144,191,196,100,100,100,197 +1969-12-07 00:00:00,1969-12-06 23:00:00,172,173,143,197,101,99,100,102 +1969-12-07 00:00:00,1969-12-06 23:00:00,146,176,158,173,99,99,99,176 +1969-12-07 00:00:00,1969-12-06 23:00:00,118,129,125,192,100,101,100,116 +1969-12-07 00:00:00,1969-12-06 23:00:00,157,121,103,184,101,100,100,100 +1969-12-07 00:00:00,1969-12-06 23:00:00,113,110,109,195,101,99,100,141 +1969-12-07 00:00:00,1969-12-06 23:00:00,189,191,133,105,101,100,100,144 +1969-12-07 00:00:00,1969-12-06 23:00:00,149,130,188,110,100,99,100,186 +1969-12-07 00:00:00,1969-12-06 23:00:00,152,181,127,144,100,100,99,175 +1969-12-07 00:00:00,1969-12-06 23:00:00,164,167,132,177,101,99,99,189 +1969-12-07 00:00:00,1969-12-06 23:00:00,101,163,155,143,101,101,100,145 +1969-12-07 00:00:00,1969-12-06 23:00:00,150,120,115,137,101,101,99,179 +1969-12-07 00:00:00,1969-12-06 23:00:00,148,177,116,103,101,100,101,149 +1969-12-07 00:00:00,1969-12-06 23:00:00,150,155,182,162,101,101,99,121 +1969-12-07 00:00:00,1969-12-06 23:00:00,162,153,133,169,100,101,101,115 +1969-12-07 00:00:00,1969-12-06 23:00:00,178,114,190,192,100,100,100,179 +1969-12-07 00:00:00,1969-12-06 23:00:00,153,101,156,110,100,99,99,145 +1969-12-07 00:00:00,1969-12-06 23:00:00,162,122,182,190,101,100,99,142 +1969-12-07 00:00:00,1969-12-06 23:00:00,167,158,177,181,100,99,101,162 +1969-12-07 00:00:00,1969-12-06 23:00:00,118,133,162,170,100,101,99,166 +1969-12-07 00:00:00,1969-12-06 23:00:00,127,165,114,0,101,100,100,198 +1969-12-07 00:00:00,1969-12-06 23:00:00,127,199,199,0,101,99,100,173 +1969-12-07 00:00:00,1969-12-06 23:00:00,148,199,100,154,101,101,101,105 +1969-12-07 00:00:00,1969-12-06 23:00:00,177,127,134,132,99,99,101,115 +1969-12-07 00:00:00,1969-12-06 23:00:00,137,196,157,118,100,99,99,147 +1969-12-07 00:00:00,1969-12-06 23:00:00,162,183,163,128,99,99,101,110 +1969-12-07 00:00:00,1969-12-06 23:00:00,150,108,135,0,101,99,99,153 +1969-12-07 00:00:00,1969-12-06 23:00:00,160,115,149,0,99,101,99,195 +1969-12-07 00:00:00,1969-12-06 23:00:00,179,147,144,126,99,100,99,156 +1969-12-07 00:00:00,1969-12-06 23:00:00,124,109,187,153,100,101,99,134 +1969-12-07 00:00:00,1969-12-06 23:00:00,142,106,177,0,100,99,100,165 +1969-12-07 00:00:00,1969-12-06 23:00:00,179,122,172,136,100,101,99,176 +1969-12-07 00:00:00,1969-12-06 23:00:00,199,112,142,0,101,99,99,103 +1969-12-07 00:00:00,1969-12-06 23:00:00,101,185,103,184,101,100,99,191 +1969-12-07 00:00:00,1969-12-06 23:00:00,107,107,117,179,100,101,99,128 +1969-12-07 00:00:00,1969-12-06 23:00:00,115,151,148,173,101,100,100,103 +1969-12-07 00:00:00,1969-12-06 23:00:00,180,187,145,112,101,101,100,174 +1969-12-07 00:00:00,1969-12-06 23:00:00,146,198,171,136,101,99,101,190 +1969-12-07 00:00:00,1969-12-06 23:00:00,145,120,154,102,99,99,100,185 +1969-12-07 00:00:00,1969-12-06 23:00:00,140,147,133,143,99,99,100,104 +1969-12-07 00:00:00,1969-12-06 23:00:00,130,106,158,0,100,101,100,184 +1969-12-07 00:00:00,1969-12-06 23:00:00,175,130,100,110,101,100,99,183 +1969-12-07 00:00:00,1969-12-06 23:00:00,137,133,120,135,101,101,101,119 +1969-12-07 00:00:00,1969-12-06 23:00:00,111,147,129,131,99,101,100,131 +1969-12-07 00:00:00,1969-12-06 23:00:00,119,197,156,192,100,101,100,147 +1969-12-07 00:00:00,1969-12-06 23:00:00,141,172,109,182,100,101,100,156 +1969-12-07 00:00:00,1969-12-06 23:00:00,134,128,152,0,99,101,101,110 +1969-12-07 00:00:00,1969-12-06 23:00:00,113,126,169,144,100,101,101,158 +1969-12-07 00:00:00,1969-12-06 23:00:00,165,194,169,150,100,100,100,183 +1969-12-07 00:00:00,1969-12-06 23:00:00,153,134,173,142,100,100,100,140 +1969-12-07 00:00:00,1969-12-06 23:00:00,197,196,157,0,101,100,101,175 +1969-12-07 00:00:00,1969-12-06 23:00:00,128,179,144,195,100,100,101,173 +1969-12-07 00:00:00,1969-12-06 23:00:00,156,115,138,0,99,99,101,167 +1969-12-07 00:00:00,1969-12-06 23:00:00,149,159,186,0,101,99,101,140 +1969-12-07 00:00:00,1969-12-06 23:00:00,156,200,120,137,101,100,100,109 +1969-12-07 00:00:00,1969-12-06 23:00:00,139,138,163,192,101,99,100,160 +1969-12-07 00:00:00,1969-12-06 23:00:00,113,157,121,176,100,101,100,131 +1969-12-07 00:00:00,1969-12-06 23:00:00,118,124,174,172,99,101,100,156 +1969-12-07 00:00:00,1969-12-06 23:00:00,118,142,163,134,101,99,99,164 +1969-12-07 00:00:00,1969-12-06 23:00:00,122,109,167,148,101,101,101,190 +1969-12-07 00:00:00,1969-12-06 23:00:00,119,117,170,114,99,101,100,118 +1969-12-07 00:00:00,1969-12-06 23:00:00,189,176,107,0,101,100,101,169 +1969-12-07 00:00:00,1969-12-06 23:00:00,124,168,113,129,101,99,100,153 +1969-12-07 00:00:00,1969-12-06 23:00:00,151,108,184,131,99,101,100,160 +1969-12-07 00:00:00,1969-12-06 23:00:00,141,161,191,164,101,100,99,126 +1969-12-07 00:00:00,1969-12-06 23:00:00,108,108,128,174,101,101,100,102 +1969-12-07 00:00:00,1969-12-06 23:00:00,137,189,200,0,99,101,101,160 +1969-12-07 00:00:00,1969-12-06 23:00:00,180,160,113,170,99,99,100,186 +1969-12-07 00:00:00,1969-12-06 23:00:00,139,119,114,0,99,99,99,132 +1969-12-07 00:00:00,1969-12-06 23:00:00,189,104,146,103,100,99,99,182 +1969-12-07 00:00:00,1969-12-06 23:00:00,198,148,141,183,99,99,100,106 +1969-12-07 00:00:00,1969-12-06 23:00:00,146,196,190,199,100,99,100,192 +1969-12-07 00:00:00,1969-12-06 23:00:00,143,139,181,189,101,101,101,196 +1969-12-07 00:00:00,1969-12-06 23:00:00,128,197,173,186,99,99,100,145 +1969-12-07 00:00:00,1969-12-06 23:00:00,151,175,196,134,99,100,99,135 +1969-12-07 00:00:00,1969-12-06 23:00:00,152,175,137,189,99,100,101,186 +1969-12-07 00:00:00,1969-12-06 23:00:00,159,126,186,140,100,100,101,191 +1969-12-07 00:00:00,1969-12-06 23:00:00,113,149,171,140,100,100,100,102 +1969-12-07 00:00:00,1969-12-06 23:00:00,166,117,168,117,99,99,100,103 +1969-12-07 00:00:00,1969-12-06 23:00:00,138,155,126,193,101,99,100,190 +1969-12-07 00:00:00,1969-12-06 23:00:00,171,164,153,154,99,100,100,161 +1969-12-07 00:00:00,1969-12-06 23:00:00,193,101,164,0,100,99,101,185 +1969-12-07 00:00:00,1969-12-06 23:00:00,109,108,140,0,100,99,99,137 +1969-12-07 00:00:00,1969-12-06 23:00:00,192,182,174,139,100,99,100,146 +1969-12-07 00:00:00,1969-12-06 23:00:00,198,116,180,141,101,99,99,175 +1969-12-07 00:00:00,1969-12-06 23:00:00,103,126,127,116,100,101,101,145 +1969-12-07 00:00:00,1969-12-06 23:00:00,158,147,171,179,100,99,100,139 +1969-12-07 00:00:00,1969-12-06 23:00:00,134,100,190,142,99,101,100,169 +1969-12-07 00:00:00,1969-12-06 23:00:00,176,190,157,134,101,100,100,103 +1969-12-07 00:00:00,1969-12-06 23:00:00,170,147,126,104,99,101,99,170 +1969-12-07 00:00:00,1969-12-06 23:00:00,146,182,181,173,100,101,100,164 +1969-12-07 00:00:00,1969-12-06 23:00:00,173,179,147,165,100,100,99,126 +1969-12-07 00:00:00,1969-12-06 23:00:00,104,100,173,187,101,100,101,193 +1969-12-07 00:00:00,1969-12-06 23:00:00,161,195,152,187,100,101,99,107 +1969-12-07 00:00:00,1969-12-06 23:00:00,119,160,135,102,100,100,99,127 +1969-12-07 00:00:00,1969-12-06 23:00:00,131,198,125,144,99,100,100,125 +1969-12-07 00:00:00,1969-12-06 23:00:00,192,183,111,161,99,100,100,123 +1969-12-07 00:00:00,1969-12-06 23:00:00,150,167,132,0,99,100,101,152 +1969-12-07 00:00:00,1969-12-06 23:00:00,170,110,118,149,100,101,99,199 +1969-12-07 00:00:00,1969-12-06 23:00:00,150,152,102,108,101,100,100,117 +1969-12-07 00:00:00,1969-12-06 23:00:00,129,185,189,120,100,100,100,188 +1969-12-07 00:00:00,1969-12-06 23:00:00,130,127,161,118,99,99,99,141 +1969-12-07 00:00:00,1969-12-06 23:00:00,110,199,121,146,100,100,101,185 +1969-12-07 00:00:00,1969-12-06 23:00:00,189,144,121,0,101,101,99,190 +1969-12-07 00:00:00,1969-12-06 23:00:00,159,122,112,107,100,99,99,112 +1969-12-07 00:00:00,1969-12-06 23:00:00,178,178,141,137,101,100,101,180 +1969-12-07 00:00:00,1969-12-06 23:00:00,100,177,180,107,99,101,99,122 +1969-12-07 00:00:00,1969-12-06 23:00:00,188,191,191,106,101,101,101,197 +1969-12-07 00:00:00,1969-12-06 23:00:00,190,172,162,133,101,101,99,104 +1969-12-07 00:00:00,1969-12-06 23:00:00,102,163,135,125,101,99,101,192 +1969-12-07 00:00:00,1969-12-06 23:00:00,130,139,137,131,100,99,99,130 +1969-12-07 00:00:00,1969-12-06 23:00:00,137,185,141,165,99,99,100,104 +1969-12-07 00:00:00,1969-12-06 23:00:00,170,111,127,194,99,101,99,142 +1969-12-07 00:00:00,1969-12-06 23:00:00,157,200,114,148,99,99,101,174 +1969-12-07 00:00:00,1969-12-06 23:00:00,151,194,198,136,99,101,101,146 +1969-12-07 00:00:00,1969-12-06 23:00:00,111,199,153,111,99,100,101,174 +1969-12-07 00:00:00,1969-12-06 23:00:00,171,183,174,160,99,99,100,158 +1969-12-07 00:00:00,1969-12-06 23:00:00,154,173,151,128,99,100,101,143 +1969-12-07 00:00:00,1969-12-06 23:00:00,192,124,136,0,100,100,101,115 +1969-12-07 00:00:00,1969-12-06 23:00:00,149,132,171,136,101,99,100,130 +1969-12-07 00:00:00,1969-12-06 23:00:00,108,147,169,198,99,100,99,104 +1969-12-07 00:00:00,1969-12-06 23:00:00,171,161,187,188,101,99,101,174 +1969-12-07 00:00:00,1969-12-06 23:00:00,193,112,106,0,101,101,101,108 +1969-12-07 00:00:00,1969-12-06 23:00:00,117,112,124,160,101,100,99,180 +1969-12-07 00:00:00,1969-12-06 23:00:00,137,163,163,198,101,101,99,102 +1969-12-07 00:00:00,1969-12-06 23:00:00,174,147,177,145,100,100,99,120 +1969-12-07 00:00:00,1969-12-06 23:00:00,125,187,177,156,100,100,100,117 +1969-12-07 00:00:00,1969-12-06 23:00:00,113,195,151,136,100,101,99,141 +1969-12-07 00:00:00,1969-12-06 23:00:00,175,103,193,187,99,101,100,139 +1969-12-07 00:00:00,1969-12-06 23:00:00,139,168,180,0,99,99,99,176 +1969-12-07 00:00:00,1969-12-06 23:00:00,148,177,189,111,99,99,99,143 +1969-12-07 00:00:00,1969-12-06 23:00:00,196,182,183,165,100,100,100,151 +1969-12-07 00:00:00,1969-12-06 23:00:00,110,199,192,174,101,101,100,108 +1969-12-07 00:00:00,1969-12-06 23:00:00,148,197,140,0,100,99,99,188 +1969-12-07 00:00:00,1969-12-06 23:00:00,189,194,109,185,100,100,99,106 +1969-12-07 00:00:00,1969-12-06 23:00:00,173,138,149,171,99,99,100,104 +1969-12-07 00:00:00,1969-12-06 23:00:00,185,106,134,0,100,101,101,113 +1969-12-07 00:00:00,1969-12-06 23:00:00,184,119,106,102,100,101,101,151 +1969-12-07 00:00:00,1969-12-06 23:00:00,145,140,104,138,100,100,99,151 +1969-12-07 00:00:00,1969-12-06 23:00:00,146,145,195,0,100,100,100,142 +1969-12-07 00:00:00,1969-12-06 23:00:00,151,118,142,0,100,100,101,157 +1969-12-07 00:00:00,1969-12-06 23:00:00,157,157,153,150,101,100,101,133 +1969-12-07 00:00:00,1969-12-06 23:00:00,102,142,164,133,101,101,101,191 +1969-12-07 00:00:00,1969-12-06 23:00:00,171,108,134,180,99,100,100,188 +1969-12-07 00:00:00,1969-12-06 23:00:00,140,115,114,171,99,101,100,159 +1969-12-07 00:00:00,1969-12-06 23:00:00,116,144,107,181,101,101,100,143 +1969-12-07 00:00:00,1969-12-06 23:00:00,174,169,161,189,99,100,101,108 +1969-12-07 00:00:00,1969-12-06 23:00:00,111,133,183,150,99,99,99,124 +1969-12-07 00:00:00,1969-12-06 23:00:00,149,123,163,0,99,99,101,189 +1969-12-07 00:00:00,1969-12-06 23:00:00,128,192,191,135,101,101,99,133 +1969-12-07 00:00:00,1969-12-06 23:00:00,107,186,151,122,99,99,99,155 +1969-12-07 00:00:00,1969-12-06 23:00:00,147,107,177,0,100,100,100,181 +1969-12-07 00:00:00,1969-12-06 23:00:00,148,101,157,0,101,99,100,120 +1969-12-07 00:00:00,1969-12-06 23:00:00,157,162,113,163,99,100,99,198 +1969-12-07 00:00:00,1969-12-06 23:00:00,195,170,110,119,101,100,100,176 +1969-12-07 00:00:00,1969-12-06 23:00:00,132,188,101,101,101,101,99,126 +1969-12-07 00:00:00,1969-12-06 23:00:00,115,169,131,125,100,99,101,124 +1969-12-07 00:00:00,1969-12-06 23:00:00,191,197,123,167,100,99,99,180 +1969-12-07 00:00:00,1969-12-06 23:00:00,159,183,103,0,101,101,100,180 +1969-12-07 00:00:00,1969-12-06 23:00:00,194,180,128,159,100,100,100,109 +1969-12-07 00:00:00,1969-12-06 23:00:00,192,106,159,158,101,100,99,194 +1969-12-07 00:00:00,1969-12-06 23:00:00,128,156,161,151,100,100,100,161 +1969-12-07 00:00:00,1969-12-06 23:00:00,119,162,128,149,100,99,99,102 +1969-12-07 00:00:00,1969-12-06 23:00:00,198,121,157,130,100,100,100,168 +1969-12-07 00:00:00,1969-12-06 23:00:00,134,112,121,123,99,100,100,111 +1969-12-07 00:00:00,1969-12-06 23:00:00,161,183,110,0,100,100,101,148 +1969-12-07 00:00:00,1969-12-06 23:00:00,160,196,138,180,100,100,99,105 +1969-12-07 00:00:00,1969-12-06 23:00:00,156,108,129,162,100,101,99,182 +1969-12-07 00:00:00,1969-12-06 23:00:00,158,132,194,173,99,99,99,117 +1969-12-07 00:00:00,1969-12-06 23:00:00,131,151,171,0,101,101,101,148 +1969-12-07 00:00:00,1969-12-06 23:00:00,171,153,116,175,100,100,99,142 +1969-12-07 00:00:00,1969-12-06 23:00:00,156,137,184,128,100,100,99,139 +1969-12-07 00:00:00,1969-12-06 23:00:00,111,181,178,105,99,101,100,121 +1969-12-07 00:00:00,1969-12-06 23:00:00,114,105,184,188,100,99,100,161 +1969-12-07 00:00:00,1969-12-06 23:00:00,192,189,132,169,99,100,100,121 +1969-12-07 00:00:00,1969-12-06 23:00:00,178,135,146,122,101,101,101,123 +1969-12-07 00:00:00,1969-12-06 23:00:00,160,144,166,185,99,101,99,118 +1969-12-07 00:00:00,1969-12-06 23:00:00,137,114,102,0,101,100,99,198 +1969-12-07 00:00:00,1969-12-06 23:00:00,141,183,120,139,101,99,101,183 +1969-12-07 00:00:00,1969-12-06 23:00:00,181,161,129,115,99,100,101,199 +1969-12-07 00:00:00,1969-12-06 23:00:00,118,171,131,138,100,100,99,163 +1969-12-07 00:00:00,1969-12-06 23:00:00,191,154,192,138,99,100,99,123 +1969-12-07 00:00:00,1969-12-06 23:00:00,199,111,183,148,100,100,101,133 +1969-12-07 00:00:00,1969-12-06 23:00:00,157,125,135,140,101,99,101,142 +1969-12-07 00:00:00,1969-12-06 23:00:00,180,125,127,175,99,101,100,187 +1969-12-07 00:00:00,1969-12-06 23:00:00,112,165,137,100,100,100,99,139 +1969-12-07 00:00:00,1969-12-06 23:00:00,174,169,134,144,99,100,99,168 +1969-12-07 00:00:00,1969-12-06 23:00:00,102,134,103,184,101,99,100,189 +1969-12-07 00:00:00,1969-12-06 23:00:00,196,196,199,173,99,100,101,146 +1969-12-07 00:00:00,1969-12-06 23:00:00,120,134,118,112,101,99,99,114 +1969-12-07 00:00:00,1969-12-06 23:00:00,151,191,108,145,99,101,101,170 +1969-12-07 00:00:00,1969-12-06 23:00:00,131,149,121,194,99,100,100,155 +1969-12-07 00:00:00,1969-12-06 23:00:00,141,147,106,130,100,100,101,179 +1969-12-06 00:00:00,1969-12-05 23:00:00,132,166,0,0,101,99,101,187 +1969-12-06 00:00:00,1969-12-05 23:00:00,140,117,0,181,100,101,101,198 +1969-12-06 00:00:00,1969-12-05 23:00:00,104,188,0,0,99,99,100,100 +1969-12-06 00:00:00,1969-12-05 23:00:00,117,174,0,0,99,100,101,185 +1969-12-06 00:00:00,1969-12-05 23:00:00,167,119,0,187,99,99,100,139 +1969-12-06 00:00:00,1969-12-05 23:00:00,176,133,0,0,101,99,101,200 +1969-12-06 00:00:00,1969-12-05 23:00:00,122,111,144,0,99,100,99,147 +1969-12-06 00:00:00,1969-12-05 23:00:00,118,144,130,182,100,100,99,191 +1969-12-06 00:00:00,1969-12-05 23:00:00,130,171,136,143,101,99,100,164 +1969-12-06 00:00:00,1969-12-05 23:00:00,121,173,121,111,101,100,100,181 +1969-12-06 00:00:00,1969-12-05 23:00:00,135,134,118,138,100,100,100,175 +1969-12-06 00:00:00,1969-12-05 23:00:00,114,101,124,168,101,100,99,108 +1969-12-06 00:00:00,1969-12-05 23:00:00,147,106,149,0,100,100,100,180 +1969-12-06 00:00:00,1969-12-05 23:00:00,126,167,119,149,99,99,100,184 +1969-12-06 00:00:00,1969-12-05 23:00:00,196,116,191,117,99,100,101,187 +1969-12-06 00:00:00,1969-12-05 23:00:00,148,182,131,0,99,99,101,194 +1969-12-06 00:00:00,1969-12-05 23:00:00,106,108,114,0,100,99,99,123 +1969-12-06 00:00:00,1969-12-05 23:00:00,122,104,150,168,100,101,101,184 +1969-12-06 00:00:00,1969-12-05 23:00:00,194,180,195,162,99,99,100,153 +1969-12-06 00:00:00,1969-12-05 23:00:00,194,138,186,145,101,99,99,192 +1969-12-06 00:00:00,1969-12-05 23:00:00,197,112,178,109,99,101,100,153 +1969-12-06 00:00:00,1969-12-05 23:00:00,200,170,101,190,99,99,99,143 +1969-12-06 00:00:00,1969-12-05 23:00:00,144,177,122,104,100,99,99,128 +1969-12-06 00:00:00,1969-12-05 23:00:00,161,129,108,156,99,99,100,159 +1969-12-06 00:00:00,1969-12-05 23:00:00,161,116,181,193,101,99,100,119 +1969-12-06 00:00:00,1969-12-05 23:00:00,112,102,193,139,101,99,99,168 +1969-12-06 00:00:00,1969-12-05 23:00:00,178,167,154,0,100,101,100,198 +1969-12-06 00:00:00,1969-12-05 23:00:00,111,157,109,162,101,100,99,186 +1969-12-06 00:00:00,1969-12-05 23:00:00,164,110,180,138,99,100,101,171 +1969-12-06 00:00:00,1969-12-05 23:00:00,175,112,114,140,101,101,99,123 +1969-12-06 00:00:00,1969-12-05 23:00:00,200,158,139,152,101,101,99,104 +1969-12-06 00:00:00,1969-12-05 23:00:00,188,141,174,0,100,101,99,190 +1969-12-06 00:00:00,1969-12-05 23:00:00,122,180,179,174,100,99,100,179 +1969-12-06 00:00:00,1969-12-05 23:00:00,195,154,191,109,100,101,99,126 +1969-12-06 00:00:00,1969-12-05 23:00:00,157,117,156,0,99,99,101,156 +1969-12-06 00:00:00,1969-12-05 23:00:00,111,132,156,167,101,100,100,115 +1969-12-06 00:00:00,1969-12-05 23:00:00,107,130,159,186,99,101,101,198 +1969-12-06 00:00:00,1969-12-05 23:00:00,153,196,177,155,101,101,101,112 +1969-12-06 00:00:00,1969-12-05 23:00:00,172,129,200,171,99,100,101,130 +1969-12-06 00:00:00,1969-12-05 23:00:00,155,133,179,181,99,99,101,108 +1969-12-06 00:00:00,1969-12-05 23:00:00,161,165,140,157,100,100,101,126 +1969-12-06 00:00:00,1969-12-05 23:00:00,133,165,188,100,101,99,101,110 +1969-12-06 00:00:00,1969-12-05 23:00:00,191,171,152,146,100,100,100,118 +1969-12-06 00:00:00,1969-12-05 23:00:00,142,118,182,164,101,99,99,119 +1969-12-06 00:00:00,1969-12-05 23:00:00,112,171,155,189,99,101,101,191 +1969-12-06 00:00:00,1969-12-05 23:00:00,103,151,146,161,100,101,99,184 +1969-12-06 00:00:00,1969-12-05 23:00:00,120,132,126,0,100,100,100,155 +1969-12-06 00:00:00,1969-12-05 23:00:00,163,101,177,143,101,101,100,144 +1969-12-06 00:00:00,1969-12-05 23:00:00,170,130,144,155,100,100,99,175 +1969-12-06 00:00:00,1969-12-05 23:00:00,163,131,193,0,101,100,100,135 +1969-12-06 00:00:00,1969-12-05 23:00:00,179,113,159,0,100,101,100,196 +1969-12-06 00:00:00,1969-12-05 23:00:00,109,166,141,185,99,101,101,193 +1969-12-06 00:00:00,1969-12-05 23:00:00,142,137,155,112,99,101,101,166 +1969-12-06 00:00:00,1969-12-05 23:00:00,169,128,186,182,99,101,100,142 +1969-12-06 00:00:00,1969-12-05 23:00:00,132,198,137,135,99,101,100,166 +1969-12-06 00:00:00,1969-12-05 23:00:00,152,141,146,162,100,99,99,162 +1969-12-06 00:00:00,1969-12-05 23:00:00,116,140,170,197,101,100,100,178 +1969-12-06 00:00:00,1969-12-05 23:00:00,190,119,103,146,99,99,99,160 +1969-12-06 00:00:00,1969-12-05 23:00:00,181,195,159,179,100,101,100,140 +1969-12-06 00:00:00,1969-12-05 23:00:00,172,164,178,138,99,101,101,153 +1969-12-06 00:00:00,1969-12-05 23:00:00,151,187,196,199,99,100,99,114 +1969-12-06 00:00:00,1969-12-05 23:00:00,196,134,145,183,100,99,99,172 +1969-12-06 00:00:00,1969-12-05 23:00:00,197,189,134,173,100,101,101,191 +1969-12-06 00:00:00,1969-12-05 23:00:00,195,119,179,137,99,100,99,106 +1969-12-06 00:00:00,1969-12-05 23:00:00,155,131,159,185,100,101,101,162 +1969-12-06 00:00:00,1969-12-05 23:00:00,128,193,169,128,101,99,100,171 +1969-12-06 00:00:00,1969-12-05 23:00:00,193,123,148,0,101,101,100,169 +1969-12-06 00:00:00,1969-12-05 23:00:00,160,198,180,166,101,100,100,184 +1969-12-06 00:00:00,1969-12-05 23:00:00,156,192,130,0,99,99,99,170 +1969-12-06 00:00:00,1969-12-05 23:00:00,135,200,187,131,100,100,100,172 +1969-12-06 00:00:00,1969-12-05 23:00:00,136,177,104,167,101,100,101,121 +1969-12-06 00:00:00,1969-12-05 23:00:00,197,108,103,0,101,100,101,160 +1969-12-06 00:00:00,1969-12-05 23:00:00,153,130,179,126,100,99,101,146 +1969-12-06 00:00:00,1969-12-05 23:00:00,129,147,163,170,101,99,100,144 +1969-12-06 00:00:00,1969-12-05 23:00:00,171,158,173,106,100,100,100,176 +1969-12-06 00:00:00,1969-12-05 23:00:00,129,104,185,151,101,99,101,117 +1969-12-06 00:00:00,1969-12-05 23:00:00,172,141,178,0,101,100,100,103 +1969-12-06 00:00:00,1969-12-05 23:00:00,118,102,194,0,101,100,99,188 +1969-12-06 00:00:00,1969-12-05 23:00:00,105,149,174,0,101,100,99,142 +1969-12-06 00:00:00,1969-12-05 23:00:00,174,142,139,109,99,101,101,146 +1969-12-06 00:00:00,1969-12-05 23:00:00,153,152,157,163,99,101,101,188 +1969-12-06 00:00:00,1969-12-05 23:00:00,104,121,123,147,101,101,100,157 +1969-12-06 00:00:00,1969-12-05 23:00:00,180,104,114,189,101,99,101,135 +1969-12-06 00:00:00,1969-12-05 23:00:00,125,160,188,105,100,99,99,187 +1969-12-06 00:00:00,1969-12-05 23:00:00,136,136,155,126,99,100,100,171 +1969-12-06 00:00:00,1969-12-05 23:00:00,161,176,134,188,100,100,100,130 +1969-12-06 00:00:00,1969-12-05 23:00:00,154,104,139,0,100,99,100,116 +1969-12-06 00:00:00,1969-12-05 23:00:00,143,138,199,0,101,99,99,141 +1969-12-06 00:00:00,1969-12-05 23:00:00,184,145,124,111,99,99,99,164 +1969-12-06 00:00:00,1969-12-05 23:00:00,121,149,189,154,100,101,99,146 +1969-12-06 00:00:00,1969-12-05 23:00:00,120,185,169,181,101,100,99,162 +1969-12-06 00:00:00,1969-12-05 23:00:00,169,137,128,137,100,101,101,109 +1969-12-06 00:00:00,1969-12-05 23:00:00,147,149,169,163,101,101,101,100 +1969-12-06 00:00:00,1969-12-05 23:00:00,145,166,148,132,100,101,101,113 +1969-12-06 00:00:00,1969-12-05 23:00:00,115,184,159,150,101,100,99,160 +1969-12-06 00:00:00,1969-12-05 23:00:00,108,126,104,197,101,101,101,145 +1969-12-06 00:00:00,1969-12-05 23:00:00,112,106,137,0,99,101,101,149 +1969-12-06 00:00:00,1969-12-05 23:00:00,116,176,121,158,101,99,101,189 +1969-12-06 00:00:00,1969-12-05 23:00:00,114,187,164,165,101,99,100,113 +1969-12-06 00:00:00,1969-12-05 23:00:00,191,196,130,161,100,99,101,144 +1969-12-06 00:00:00,1969-12-05 23:00:00,112,161,162,189,101,99,100,197 +1969-12-06 00:00:00,1969-12-05 23:00:00,187,178,173,181,101,101,100,116 +1969-12-06 00:00:00,1969-12-05 23:00:00,182,127,166,117,99,101,101,180 +1969-12-06 00:00:00,1969-12-05 23:00:00,193,128,162,172,101,100,100,192 +1969-12-06 00:00:00,1969-12-05 23:00:00,128,124,145,0,100,100,100,126 +1969-12-06 00:00:00,1969-12-05 23:00:00,107,173,122,166,100,100,99,186 +1969-12-06 00:00:00,1969-12-05 23:00:00,107,163,138,184,101,99,99,135 +1969-12-06 00:00:00,1969-12-05 23:00:00,177,160,179,122,100,101,99,188 +1969-12-06 00:00:00,1969-12-05 23:00:00,165,186,177,107,99,99,100,148 +1969-12-06 00:00:00,1969-12-05 23:00:00,140,173,177,156,100,101,100,186 +1969-12-06 00:00:00,1969-12-05 23:00:00,108,172,117,196,100,100,100,153 +1969-12-06 00:00:00,1969-12-05 23:00:00,197,113,200,116,101,100,101,137 +1969-12-06 00:00:00,1969-12-05 23:00:00,112,125,172,189,101,100,101,112 +1969-12-06 00:00:00,1969-12-05 23:00:00,152,107,192,153,99,99,101,112 +1969-12-06 00:00:00,1969-12-05 23:00:00,120,158,146,0,100,100,100,166 +1969-12-06 00:00:00,1969-12-05 23:00:00,103,127,164,195,100,99,99,177 +1969-12-06 00:00:00,1969-12-05 23:00:00,142,158,100,164,99,100,100,101 +1969-12-06 00:00:00,1969-12-05 23:00:00,180,133,151,198,99,99,99,174 +1969-12-06 00:00:00,1969-12-05 23:00:00,111,182,111,107,99,100,99,114 +1969-12-06 00:00:00,1969-12-05 23:00:00,178,109,137,137,99,101,101,182 +1969-12-06 00:00:00,1969-12-05 23:00:00,115,132,158,110,101,101,101,152 +1969-12-06 00:00:00,1969-12-05 23:00:00,178,134,141,104,101,100,101,133 +1969-12-06 00:00:00,1969-12-05 23:00:00,184,159,126,196,100,99,99,143 +1969-12-06 00:00:00,1969-12-05 23:00:00,148,187,190,120,99,100,99,196 +1969-12-06 00:00:00,1969-12-05 23:00:00,186,192,148,151,100,100,101,111 +1969-12-06 00:00:00,1969-12-05 23:00:00,175,145,116,100,99,100,101,152 +1969-12-06 00:00:00,1969-12-05 23:00:00,112,121,143,182,101,100,100,189 +1969-12-06 00:00:00,1969-12-05 23:00:00,148,113,185,182,100,101,101,175 +1969-12-06 00:00:00,1969-12-05 23:00:00,139,137,136,189,99,100,101,183 +1969-12-06 00:00:00,1969-12-05 23:00:00,196,147,131,189,100,101,101,151 +1969-12-06 00:00:00,1969-12-05 23:00:00,140,133,107,167,101,100,99,143 +1969-12-06 00:00:00,1969-12-05 23:00:00,140,197,145,147,99,101,99,185 +1969-12-06 00:00:00,1969-12-05 23:00:00,104,168,134,164,101,101,101,166 +1969-12-06 00:00:00,1969-12-05 23:00:00,169,154,162,0,101,101,99,170 +1969-12-06 00:00:00,1969-12-05 23:00:00,105,164,180,0,101,99,99,169 +1969-12-06 00:00:00,1969-12-05 23:00:00,187,131,191,136,99,101,101,191 +1969-12-06 00:00:00,1969-12-05 23:00:00,183,167,192,150,101,99,99,138 +1969-12-06 00:00:00,1969-12-05 23:00:00,137,131,195,106,99,101,99,176 +1969-12-06 00:00:00,1969-12-05 23:00:00,171,124,157,149,99,100,100,124 +1969-12-06 00:00:00,1969-12-05 23:00:00,145,168,113,157,100,101,100,144 +1969-12-06 00:00:00,1969-12-05 23:00:00,180,141,124,193,101,99,101,172 +1969-12-06 00:00:00,1969-12-05 23:00:00,138,140,197,161,101,101,100,173 +1969-12-06 00:00:00,1969-12-05 23:00:00,191,114,193,0,99,100,100,178 +1969-12-06 00:00:00,1969-12-05 23:00:00,186,149,119,142,99,99,99,168 +1969-12-06 00:00:00,1969-12-05 23:00:00,107,129,179,0,101,100,101,152 +1969-12-06 00:00:00,1969-12-05 23:00:00,122,139,185,174,99,101,100,156 +1969-12-06 00:00:00,1969-12-05 23:00:00,130,180,195,0,99,100,101,181 +1969-12-06 00:00:00,1969-12-05 23:00:00,138,148,108,101,100,101,100,161 +1969-12-06 00:00:00,1969-12-05 23:00:00,195,195,186,148,100,99,101,199 +1969-12-06 00:00:00,1969-12-05 23:00:00,182,161,147,107,101,101,99,102 +1969-12-06 00:00:00,1969-12-05 23:00:00,147,138,113,110,101,99,100,172 +1969-12-06 00:00:00,1969-12-05 23:00:00,183,193,107,173,101,100,100,181 +1969-12-06 00:00:00,1969-12-05 23:00:00,105,140,161,186,101,101,100,101 +1969-12-06 00:00:00,1969-12-05 23:00:00,100,113,117,134,99,101,100,146 +1969-12-06 00:00:00,1969-12-05 23:00:00,146,100,162,104,101,100,100,132 +1969-12-06 00:00:00,1969-12-05 23:00:00,125,199,122,136,101,100,101,179 +1969-12-06 00:00:00,1969-12-05 23:00:00,134,129,158,126,101,101,99,192 +1969-12-06 00:00:00,1969-12-05 23:00:00,103,147,141,198,100,99,101,161 +1969-12-06 00:00:00,1969-12-05 23:00:00,132,149,117,112,99,100,99,103 +1969-12-06 00:00:00,1969-12-05 23:00:00,135,177,155,106,99,99,99,188 +1969-12-06 00:00:00,1969-12-05 23:00:00,159,200,193,141,100,101,100,194 +1969-12-06 00:00:00,1969-12-05 23:00:00,126,199,113,0,99,101,99,121 +1969-12-06 00:00:00,1969-12-05 23:00:00,168,167,128,194,100,99,101,200 +1969-12-06 00:00:00,1969-12-05 23:00:00,121,173,156,124,101,100,101,151 +1969-12-06 00:00:00,1969-12-05 23:00:00,110,127,126,0,100,101,100,150 +1969-12-06 00:00:00,1969-12-05 23:00:00,155,166,108,105,99,100,100,184 +1969-12-06 00:00:00,1969-12-05 23:00:00,105,160,156,153,99,100,100,109 +1969-12-06 00:00:00,1969-12-05 23:00:00,150,189,148,117,101,100,99,162 +1969-12-06 00:00:00,1969-12-05 23:00:00,165,151,181,118,101,101,99,100 +1969-12-06 00:00:00,1969-12-05 23:00:00,195,161,153,125,100,100,99,123 +1969-12-06 00:00:00,1969-12-05 23:00:00,110,161,151,0,100,100,101,168 +1969-12-06 00:00:00,1969-12-05 23:00:00,192,177,146,116,99,99,99,150 +1969-12-06 00:00:00,1969-12-05 23:00:00,152,105,191,107,100,99,101,140 +1969-12-06 00:00:00,1969-12-05 23:00:00,198,146,161,0,101,99,99,180 +1969-12-06 00:00:00,1969-12-05 23:00:00,115,103,105,0,101,100,100,164 +1969-12-06 00:00:00,1969-12-05 23:00:00,128,131,110,104,100,101,101,149 +1969-12-06 00:00:00,1969-12-05 23:00:00,197,115,167,142,100,101,99,115 +1969-12-06 00:00:00,1969-12-05 23:00:00,168,110,108,105,100,100,100,181 +1969-12-06 00:00:00,1969-12-05 23:00:00,165,149,119,0,100,99,100,140 +1969-12-06 00:00:00,1969-12-05 23:00:00,117,140,146,176,99,100,101,179 +1969-12-06 00:00:00,1969-12-05 23:00:00,124,154,110,180,101,99,100,110 +1969-12-06 00:00:00,1969-12-05 23:00:00,133,129,176,0,99,100,99,183 +1969-12-06 00:00:00,1969-12-05 23:00:00,178,146,137,0,100,99,101,195 +1969-12-06 00:00:00,1969-12-05 23:00:00,137,119,100,115,99,101,100,172 +1969-12-06 00:00:00,1969-12-05 23:00:00,193,138,121,174,101,100,100,136 +1969-12-06 00:00:00,1969-12-05 23:00:00,114,185,162,141,100,101,99,135 +1969-12-06 00:00:00,1969-12-05 23:00:00,168,143,145,154,100,101,99,177 +1969-12-06 00:00:00,1969-12-05 23:00:00,194,109,125,141,101,101,99,101 +1969-12-06 00:00:00,1969-12-05 23:00:00,135,185,128,143,99,99,101,151 +1969-12-06 00:00:00,1969-12-05 23:00:00,107,161,125,170,100,101,101,113 +1969-12-06 00:00:00,1969-12-05 23:00:00,160,154,199,125,99,101,101,124 +1969-12-06 00:00:00,1969-12-05 23:00:00,179,142,131,0,99,99,99,182 +1969-12-06 00:00:00,1969-12-05 23:00:00,101,155,181,196,101,101,99,104 +1969-12-06 00:00:00,1969-12-05 23:00:00,100,199,175,0,101,99,100,184 +1969-12-06 00:00:00,1969-12-05 23:00:00,114,143,106,145,101,101,100,156 +1969-12-06 00:00:00,1969-12-05 23:00:00,159,169,200,190,101,99,99,149 +1969-12-06 00:00:00,1969-12-05 23:00:00,102,182,139,155,100,100,100,109 +1969-12-06 00:00:00,1969-12-05 23:00:00,196,158,108,126,100,101,99,102 +1969-12-06 00:00:00,1969-12-05 23:00:00,122,182,180,188,99,99,100,116 +1969-12-06 00:00:00,1969-12-05 23:00:00,140,187,195,128,99,99,100,191 +1969-12-05 00:00:00,1969-12-04 23:00:00,134,169,0,169,100,100,99,153 +1969-12-05 00:00:00,1969-12-04 23:00:00,199,195,0,146,100,99,99,140 +1969-12-05 00:00:00,1969-12-04 23:00:00,164,166,0,183,101,101,99,140 +1969-12-05 00:00:00,1969-12-04 23:00:00,196,189,0,127,99,101,101,193 +1969-12-05 00:00:00,1969-12-04 23:00:00,192,163,0,0,100,100,100,114 +1969-12-05 00:00:00,1969-12-04 23:00:00,138,123,0,0,100,100,100,139 +1969-12-05 00:00:00,1969-12-04 23:00:00,155,193,190,0,99,99,99,106 +1969-12-05 00:00:00,1969-12-04 23:00:00,174,160,158,146,99,100,100,140 +1969-12-05 00:00:00,1969-12-04 23:00:00,184,146,107,199,101,101,99,198 +1969-12-05 00:00:00,1969-12-04 23:00:00,108,199,179,0,99,100,99,124 +1969-12-05 00:00:00,1969-12-04 23:00:00,123,184,159,136,101,101,100,142 +1969-12-05 00:00:00,1969-12-04 23:00:00,113,163,157,0,100,99,101,157 +1969-12-05 00:00:00,1969-12-04 23:00:00,154,192,163,153,99,101,101,100 +1969-12-05 00:00:00,1969-12-04 23:00:00,147,150,130,162,100,101,99,103 +1969-12-05 00:00:00,1969-12-04 23:00:00,195,150,118,138,100,101,99,186 +1969-12-05 00:00:00,1969-12-04 23:00:00,199,172,163,183,99,101,99,135 +1969-12-05 00:00:00,1969-12-04 23:00:00,199,123,151,116,100,100,100,119 +1969-12-05 00:00:00,1969-12-04 23:00:00,110,147,110,106,101,100,101,129 +1969-12-05 00:00:00,1969-12-04 23:00:00,191,149,160,171,99,99,100,148 +1969-12-05 00:00:00,1969-12-04 23:00:00,139,182,135,111,100,100,99,119 +1969-12-05 00:00:00,1969-12-04 23:00:00,153,115,197,172,99,101,100,184 +1969-12-05 00:00:00,1969-12-04 23:00:00,150,154,152,151,99,99,101,150 +1969-12-05 00:00:00,1969-12-04 23:00:00,112,103,141,0,101,99,99,122 +1969-12-05 00:00:00,1969-12-04 23:00:00,159,133,129,163,101,99,100,184 +1969-12-05 00:00:00,1969-12-04 23:00:00,173,187,127,114,101,100,99,193 +1969-12-05 00:00:00,1969-12-04 23:00:00,116,200,146,0,101,99,100,101 +1969-12-05 00:00:00,1969-12-04 23:00:00,176,157,110,135,101,99,101,159 +1969-12-05 00:00:00,1969-12-04 23:00:00,103,158,185,128,99,99,100,183 +1969-12-05 00:00:00,1969-12-04 23:00:00,174,169,122,169,99,100,101,138 +1969-12-05 00:00:00,1969-12-04 23:00:00,176,175,163,0,101,100,101,100 +1969-12-05 00:00:00,1969-12-04 23:00:00,193,136,103,127,100,100,101,198 +1969-12-05 00:00:00,1969-12-04 23:00:00,200,168,194,0,100,101,101,195 +1969-12-05 00:00:00,1969-12-04 23:00:00,116,106,162,111,101,101,99,198 +1969-12-05 00:00:00,1969-12-04 23:00:00,106,121,200,146,99,100,101,167 +1969-12-05 00:00:00,1969-12-04 23:00:00,163,119,152,104,100,101,101,155 +1969-12-05 00:00:00,1969-12-04 23:00:00,170,154,192,0,99,100,101,192 +1969-12-05 00:00:00,1969-12-04 23:00:00,110,101,127,107,101,101,100,180 +1969-12-05 00:00:00,1969-12-04 23:00:00,173,177,126,160,101,99,100,173 +1969-12-05 00:00:00,1969-12-04 23:00:00,153,172,160,171,99,99,101,199 +1969-12-05 00:00:00,1969-12-04 23:00:00,122,110,102,139,100,101,100,114 +1969-12-05 00:00:00,1969-12-04 23:00:00,117,151,131,134,100,99,100,110 +1969-12-05 00:00:00,1969-12-04 23:00:00,190,177,139,102,100,101,99,106 +1969-12-05 00:00:00,1969-12-04 23:00:00,184,195,162,198,101,99,99,163 +1969-12-05 00:00:00,1969-12-04 23:00:00,103,177,171,155,100,101,100,126 +1969-12-05 00:00:00,1969-12-04 23:00:00,117,152,134,152,100,99,101,184 +1969-12-05 00:00:00,1969-12-04 23:00:00,198,118,101,149,99,100,99,177 +1969-12-05 00:00:00,1969-12-04 23:00:00,168,179,151,131,101,101,99,176 +1969-12-05 00:00:00,1969-12-04 23:00:00,116,108,118,127,99,99,99,182 +1969-12-05 00:00:00,1969-12-04 23:00:00,189,156,174,199,100,100,100,145 +1969-12-05 00:00:00,1969-12-04 23:00:00,152,191,198,0,100,101,100,190 +1969-12-05 00:00:00,1969-12-04 23:00:00,200,151,178,0,99,100,99,112 +1969-12-05 00:00:00,1969-12-04 23:00:00,135,167,103,0,100,101,99,132 +1969-12-05 00:00:00,1969-12-04 23:00:00,154,161,148,185,99,101,100,176 +1969-12-05 00:00:00,1969-12-04 23:00:00,111,143,148,177,100,99,99,168 +1969-12-05 00:00:00,1969-12-04 23:00:00,187,151,196,155,99,99,101,145 +1969-12-05 00:00:00,1969-12-04 23:00:00,117,117,145,0,100,100,101,174 +1969-12-05 00:00:00,1969-12-04 23:00:00,153,170,184,123,101,100,101,163 +1969-12-05 00:00:00,1969-12-04 23:00:00,169,194,124,136,100,100,100,157 +1969-12-05 00:00:00,1969-12-04 23:00:00,118,178,177,183,99,101,99,150 +1969-12-05 00:00:00,1969-12-04 23:00:00,145,162,191,176,99,99,100,184 +1969-12-05 00:00:00,1969-12-04 23:00:00,119,180,144,157,100,99,99,182 +1969-12-05 00:00:00,1969-12-04 23:00:00,133,128,190,116,101,101,101,141 +1969-12-05 00:00:00,1969-12-04 23:00:00,193,162,101,170,100,99,101,135 +1969-12-05 00:00:00,1969-12-04 23:00:00,129,125,168,101,100,99,101,176 +1969-12-05 00:00:00,1969-12-04 23:00:00,146,153,114,0,99,99,99,141 +1969-12-05 00:00:00,1969-12-04 23:00:00,176,109,196,143,101,101,100,120 +1969-12-05 00:00:00,1969-12-04 23:00:00,190,193,191,0,99,99,99,155 +1969-12-05 00:00:00,1969-12-04 23:00:00,177,146,188,156,99,100,99,162 +1969-12-05 00:00:00,1969-12-04 23:00:00,164,188,157,131,101,99,99,163 +1969-12-05 00:00:00,1969-12-04 23:00:00,165,178,156,196,101,101,101,159 +1969-12-05 00:00:00,1969-12-04 23:00:00,196,164,188,0,99,101,101,131 +1969-12-05 00:00:00,1969-12-04 23:00:00,191,118,108,161,100,100,100,121 +1969-12-05 00:00:00,1969-12-04 23:00:00,175,136,111,133,101,99,99,168 +1969-12-05 00:00:00,1969-12-04 23:00:00,187,124,102,0,100,100,100,126 +1969-12-05 00:00:00,1969-12-04 23:00:00,120,158,124,124,100,99,100,176 +1969-12-05 00:00:00,1969-12-04 23:00:00,112,145,169,138,100,99,101,173 +1969-12-05 00:00:00,1969-12-04 23:00:00,158,161,172,134,101,99,101,110 +1969-12-05 00:00:00,1969-12-04 23:00:00,153,186,123,0,100,101,100,182 +1969-12-05 00:00:00,1969-12-04 23:00:00,124,139,186,161,100,99,99,159 +1969-12-05 00:00:00,1969-12-04 23:00:00,111,113,122,145,99,99,99,133 +1969-12-05 00:00:00,1969-12-04 23:00:00,175,181,176,154,100,101,99,107 +1969-12-05 00:00:00,1969-12-04 23:00:00,146,198,105,198,101,99,99,104 +1969-12-05 00:00:00,1969-12-04 23:00:00,121,118,195,118,100,99,99,170 +1969-12-05 00:00:00,1969-12-04 23:00:00,121,161,121,0,100,99,100,112 +1969-12-05 00:00:00,1969-12-04 23:00:00,171,150,131,177,99,99,99,170 +1969-12-05 00:00:00,1969-12-04 23:00:00,177,135,169,184,99,100,99,116 +1969-12-05 00:00:00,1969-12-04 23:00:00,113,172,113,170,99,100,101,150 +1969-12-05 00:00:00,1969-12-04 23:00:00,197,103,185,108,101,100,101,187 +1969-12-05 00:00:00,1969-12-04 23:00:00,129,142,161,177,100,99,101,197 +1969-12-05 00:00:00,1969-12-04 23:00:00,145,155,188,0,101,101,99,155 +1969-12-05 00:00:00,1969-12-04 23:00:00,114,185,182,124,99,99,100,194 +1969-12-05 00:00:00,1969-12-04 23:00:00,119,107,152,101,101,100,100,137 +1969-12-05 00:00:00,1969-12-04 23:00:00,108,119,190,125,99,99,101,137 +1969-12-05 00:00:00,1969-12-04 23:00:00,155,195,106,148,99,100,101,145 +1969-12-05 00:00:00,1969-12-04 23:00:00,177,145,141,157,99,99,99,112 +1969-12-05 00:00:00,1969-12-04 23:00:00,125,104,142,0,101,100,100,107 +1969-12-05 00:00:00,1969-12-04 23:00:00,158,187,151,155,101,101,99,200 +1969-12-05 00:00:00,1969-12-04 23:00:00,148,188,119,105,101,99,101,140 +1969-12-05 00:00:00,1969-12-04 23:00:00,142,151,132,111,100,101,100,141 +1969-12-05 00:00:00,1969-12-04 23:00:00,140,166,133,176,101,101,99,180 +1969-12-05 00:00:00,1969-12-04 23:00:00,175,161,165,0,101,101,101,106 +1969-12-05 00:00:00,1969-12-04 23:00:00,166,182,149,177,101,100,99,102 +1969-12-05 00:00:00,1969-12-04 23:00:00,178,131,148,159,99,101,99,106 +1969-12-05 00:00:00,1969-12-04 23:00:00,150,114,148,113,100,99,99,186 +1969-12-05 00:00:00,1969-12-04 23:00:00,154,152,132,155,99,101,101,136 +1969-12-05 00:00:00,1969-12-04 23:00:00,171,138,106,180,99,99,100,101 +1969-12-05 00:00:00,1969-12-04 23:00:00,131,131,186,195,99,100,99,163 +1969-12-05 00:00:00,1969-12-04 23:00:00,142,135,192,111,101,99,100,190 +1969-12-05 00:00:00,1969-12-04 23:00:00,160,179,185,145,101,99,101,180 +1969-12-05 00:00:00,1969-12-04 23:00:00,130,143,113,101,101,100,100,133 +1969-12-05 00:00:00,1969-12-04 23:00:00,137,143,125,0,100,99,101,118 +1969-12-05 00:00:00,1969-12-04 23:00:00,109,140,150,179,100,101,100,145 +1969-12-05 00:00:00,1969-12-04 23:00:00,104,113,119,0,99,99,101,110 +1969-12-05 00:00:00,1969-12-04 23:00:00,147,175,169,126,99,100,101,105 +1969-12-05 00:00:00,1969-12-04 23:00:00,107,200,190,104,100,100,99,146 +1969-12-05 00:00:00,1969-12-04 23:00:00,147,157,119,140,101,99,100,170 +1969-12-05 00:00:00,1969-12-04 23:00:00,173,120,160,0,99,100,101,163 +1969-12-05 00:00:00,1969-12-04 23:00:00,117,180,183,155,101,99,100,188 +1969-12-05 00:00:00,1969-12-04 23:00:00,111,102,106,0,100,100,101,120 +1969-12-05 00:00:00,1969-12-04 23:00:00,199,114,150,0,100,99,101,147 +1969-12-05 00:00:00,1969-12-04 23:00:00,144,114,154,103,99,99,100,122 +1969-12-05 00:00:00,1969-12-04 23:00:00,180,116,198,116,100,101,100,122 +1969-12-05 00:00:00,1969-12-04 23:00:00,164,176,100,194,101,99,100,181 +1969-12-05 00:00:00,1969-12-04 23:00:00,160,116,108,154,100,99,101,157 +1969-12-05 00:00:00,1969-12-04 23:00:00,110,163,106,185,99,101,101,179 +1969-12-05 00:00:00,1969-12-04 23:00:00,193,130,181,173,100,101,99,125 +1969-12-05 00:00:00,1969-12-04 23:00:00,179,138,132,142,100,101,99,147 +1969-12-05 00:00:00,1969-12-04 23:00:00,156,157,134,121,101,99,101,175 +1969-12-05 00:00:00,1969-12-04 23:00:00,116,185,149,155,99,99,100,199 +1969-12-05 00:00:00,1969-12-04 23:00:00,159,175,104,0,101,101,101,120 +1969-12-05 00:00:00,1969-12-04 23:00:00,186,176,200,152,100,100,99,175 +1969-12-05 00:00:00,1969-12-04 23:00:00,129,175,120,133,101,101,100,175 +1969-12-05 00:00:00,1969-12-04 23:00:00,100,123,131,159,101,101,101,132 +1969-12-05 00:00:00,1969-12-04 23:00:00,192,167,141,0,100,99,99,147 +1969-12-05 00:00:00,1969-12-04 23:00:00,180,146,116,124,99,99,99,130 +1969-12-05 00:00:00,1969-12-04 23:00:00,188,148,115,105,100,100,100,130 +1969-12-05 00:00:00,1969-12-04 23:00:00,129,158,103,130,100,100,100,104 +1969-12-05 00:00:00,1969-12-04 23:00:00,121,199,168,130,101,101,99,159 +1969-12-05 00:00:00,1969-12-04 23:00:00,170,120,198,111,101,100,101,114 +1969-12-05 00:00:00,1969-12-04 23:00:00,138,101,199,133,101,101,99,199 +1969-12-05 00:00:00,1969-12-04 23:00:00,168,123,180,171,99,100,99,181 +1969-12-05 00:00:00,1969-12-04 23:00:00,189,153,149,121,100,101,101,128 +1969-12-05 00:00:00,1969-12-04 23:00:00,172,120,141,197,99,101,100,189 +1969-12-05 00:00:00,1969-12-04 23:00:00,114,132,168,108,99,99,99,121 +1969-12-05 00:00:00,1969-12-04 23:00:00,197,189,175,145,99,99,100,172 +1969-12-05 00:00:00,1969-12-04 23:00:00,150,135,200,140,99,101,100,127 +1969-12-05 00:00:00,1969-12-04 23:00:00,171,139,148,0,100,101,100,108 +1969-12-05 00:00:00,1969-12-04 23:00:00,149,161,143,198,101,101,100,181 +1969-12-05 00:00:00,1969-12-04 23:00:00,161,137,162,176,100,100,101,195 +1969-12-05 00:00:00,1969-12-04 23:00:00,176,128,139,123,99,100,101,143 +1969-12-05 00:00:00,1969-12-04 23:00:00,173,198,185,113,100,99,99,182 +1969-12-05 00:00:00,1969-12-04 23:00:00,175,153,117,115,101,100,100,109 +1969-12-05 00:00:00,1969-12-04 23:00:00,171,109,127,176,100,99,99,115 +1969-12-05 00:00:00,1969-12-04 23:00:00,172,150,192,0,99,101,101,111 +1969-12-05 00:00:00,1969-12-04 23:00:00,178,180,200,179,101,100,100,105 +1969-12-05 00:00:00,1969-12-04 23:00:00,115,108,133,0,101,99,99,127 +1969-12-05 00:00:00,1969-12-04 23:00:00,107,149,100,150,101,101,99,130 +1969-12-05 00:00:00,1969-12-04 23:00:00,120,180,161,176,99,100,101,179 +1969-12-05 00:00:00,1969-12-04 23:00:00,179,168,177,114,101,99,99,129 +1969-12-05 00:00:00,1969-12-04 23:00:00,161,155,161,156,101,99,99,113 +1969-12-05 00:00:00,1969-12-04 23:00:00,156,143,100,170,100,99,101,175 +1969-12-05 00:00:00,1969-12-04 23:00:00,131,112,191,151,100,99,100,144 +1969-12-05 00:00:00,1969-12-04 23:00:00,127,156,145,159,99,101,101,133 +1969-12-05 00:00:00,1969-12-04 23:00:00,140,115,199,155,99,99,99,198 +1969-12-05 00:00:00,1969-12-04 23:00:00,124,158,123,177,99,99,100,142 +1969-12-05 00:00:00,1969-12-04 23:00:00,125,144,191,195,101,99,101,170 +1969-12-05 00:00:00,1969-12-04 23:00:00,145,182,148,0,99,100,101,200 +1969-12-05 00:00:00,1969-12-04 23:00:00,180,167,175,200,99,99,101,146 +1969-12-05 00:00:00,1969-12-04 23:00:00,196,147,179,164,101,101,101,184 +1969-12-05 00:00:00,1969-12-04 23:00:00,135,164,118,136,100,99,100,183 +1969-12-05 00:00:00,1969-12-04 23:00:00,145,185,133,179,100,100,100,141 +1969-12-05 00:00:00,1969-12-04 23:00:00,182,108,195,142,101,100,100,186 +1969-12-05 00:00:00,1969-12-04 23:00:00,110,144,174,107,101,101,99,109 +1969-12-05 00:00:00,1969-12-04 23:00:00,198,177,175,188,101,99,99,150 +1969-12-05 00:00:00,1969-12-04 23:00:00,122,173,170,0,100,99,100,188 +1969-12-05 00:00:00,1969-12-04 23:00:00,171,177,166,196,99,101,99,123 +1969-12-05 00:00:00,1969-12-04 23:00:00,166,184,141,101,99,100,101,115 +1969-12-05 00:00:00,1969-12-04 23:00:00,157,188,128,102,101,101,101,115 +1969-12-05 00:00:00,1969-12-04 23:00:00,121,193,187,150,101,99,100,165 +1969-12-05 00:00:00,1969-12-04 23:00:00,131,157,181,139,101,101,100,180 +1969-12-05 00:00:00,1969-12-04 23:00:00,145,149,191,149,100,101,100,183 +1969-12-05 00:00:00,1969-12-04 23:00:00,193,137,177,122,99,99,99,178 +1969-12-05 00:00:00,1969-12-04 23:00:00,180,108,191,114,99,99,101,160 +1969-12-05 00:00:00,1969-12-04 23:00:00,183,187,199,126,101,101,101,132 +1969-12-05 00:00:00,1969-12-04 23:00:00,175,117,115,159,99,101,99,120 +1969-12-05 00:00:00,1969-12-04 23:00:00,168,124,110,167,100,100,101,176 +1969-12-05 00:00:00,1969-12-04 23:00:00,166,174,118,146,101,100,99,181 +1969-12-05 00:00:00,1969-12-04 23:00:00,115,145,139,183,101,100,99,117 +1969-12-05 00:00:00,1969-12-04 23:00:00,159,131,155,143,100,101,100,136 +1969-12-05 00:00:00,1969-12-04 23:00:00,189,190,172,150,100,100,101,114 +1969-12-05 00:00:00,1969-12-04 23:00:00,149,198,169,107,101,100,100,127 +1969-12-05 00:00:00,1969-12-04 23:00:00,154,119,101,167,101,101,99,113 +1969-12-05 00:00:00,1969-12-04 23:00:00,178,192,197,0,101,99,101,124 +1969-12-05 00:00:00,1969-12-04 23:00:00,167,152,128,0,99,100,100,109 +1969-12-05 00:00:00,1969-12-04 23:00:00,194,196,121,163,101,101,100,131 +1969-12-05 00:00:00,1969-12-04 23:00:00,185,162,121,174,99,101,100,108 +1969-12-05 00:00:00,1969-12-04 23:00:00,115,113,163,109,99,101,101,113 +1969-12-05 00:00:00,1969-12-04 23:00:00,123,129,150,115,100,99,100,100 +1969-12-05 00:00:00,1969-12-04 23:00:00,155,150,196,0,100,100,99,199 +1969-12-05 00:00:00,1969-12-04 23:00:00,192,171,122,0,100,101,100,184 +1969-12-04 00:00:00,1969-12-03 23:00:00,177,176,0,0,100,101,101,164 +1969-12-04 00:00:00,1969-12-03 23:00:00,127,179,0,198,100,100,100,136 +1969-12-04 00:00:00,1969-12-03 23:00:00,110,150,0,116,99,99,100,162 +1969-12-04 00:00:00,1969-12-03 23:00:00,200,148,0,169,101,101,101,197 +1969-12-04 00:00:00,1969-12-03 23:00:00,133,142,0,165,99,100,101,170 +1969-12-04 00:00:00,1969-12-03 23:00:00,177,154,0,178,100,100,99,119 +1969-12-04 00:00:00,1969-12-03 23:00:00,167,157,144,0,99,101,99,109 +1969-12-04 00:00:00,1969-12-03 23:00:00,177,181,154,153,101,99,99,145 +1969-12-04 00:00:00,1969-12-03 23:00:00,147,156,102,0,99,100,99,151 +1969-12-04 00:00:00,1969-12-03 23:00:00,190,151,116,144,101,101,100,127 +1969-12-04 00:00:00,1969-12-03 23:00:00,177,169,190,178,100,100,100,167 +1969-12-04 00:00:00,1969-12-03 23:00:00,156,187,190,189,99,101,100,159 +1969-12-04 00:00:00,1969-12-03 23:00:00,146,129,127,0,99,99,100,158 +1969-12-04 00:00:00,1969-12-03 23:00:00,111,139,135,106,99,99,99,169 +1969-12-04 00:00:00,1969-12-03 23:00:00,126,178,117,0,99,100,101,116 +1969-12-04 00:00:00,1969-12-03 23:00:00,164,163,111,145,100,100,99,108 +1969-12-04 00:00:00,1969-12-03 23:00:00,182,112,149,0,101,101,100,180 +1969-12-04 00:00:00,1969-12-03 23:00:00,104,179,141,113,101,99,101,140 +1969-12-04 00:00:00,1969-12-03 23:00:00,160,132,160,104,101,99,99,193 +1969-12-04 00:00:00,1969-12-03 23:00:00,142,110,139,133,99,100,99,151 +1969-12-04 00:00:00,1969-12-03 23:00:00,101,106,200,170,99,99,99,106 +1969-12-04 00:00:00,1969-12-03 23:00:00,181,102,197,0,100,99,99,138 +1969-12-04 00:00:00,1969-12-03 23:00:00,194,171,185,200,99,100,99,105 +1969-12-04 00:00:00,1969-12-03 23:00:00,127,172,118,119,101,99,101,112 +1969-12-04 00:00:00,1969-12-03 23:00:00,155,189,172,129,101,100,101,162 +1969-12-04 00:00:00,1969-12-03 23:00:00,193,144,187,160,100,99,101,123 +1969-12-04 00:00:00,1969-12-03 23:00:00,134,123,165,129,99,99,99,137 +1969-12-04 00:00:00,1969-12-03 23:00:00,187,184,161,138,99,99,100,126 +1969-12-04 00:00:00,1969-12-03 23:00:00,131,172,129,0,99,99,101,176 +1969-12-04 00:00:00,1969-12-03 23:00:00,161,127,127,159,101,101,99,181 +1969-12-04 00:00:00,1969-12-03 23:00:00,141,110,158,0,100,101,101,151 +1969-12-04 00:00:00,1969-12-03 23:00:00,191,191,100,112,101,100,100,148 +1969-12-04 00:00:00,1969-12-03 23:00:00,183,110,189,0,99,101,99,118 +1969-12-04 00:00:00,1969-12-03 23:00:00,177,146,143,173,100,99,101,109 +1969-12-04 00:00:00,1969-12-03 23:00:00,161,104,128,146,99,101,101,114 +1969-12-04 00:00:00,1969-12-03 23:00:00,191,140,189,0,101,100,101,172 +1969-12-04 00:00:00,1969-12-03 23:00:00,190,175,161,154,100,101,101,193 +1969-12-04 00:00:00,1969-12-03 23:00:00,117,139,186,164,100,99,99,126 +1969-12-04 00:00:00,1969-12-03 23:00:00,160,113,139,159,101,99,99,112 +1969-12-04 00:00:00,1969-12-03 23:00:00,151,170,159,120,101,100,101,184 +1969-12-04 00:00:00,1969-12-03 23:00:00,154,140,188,0,100,99,100,180 +1969-12-04 00:00:00,1969-12-03 23:00:00,190,121,129,0,101,101,99,146 +1969-12-04 00:00:00,1969-12-03 23:00:00,156,186,200,123,99,99,100,131 +1969-12-04 00:00:00,1969-12-03 23:00:00,197,138,109,157,101,101,100,170 +1969-12-04 00:00:00,1969-12-03 23:00:00,133,189,166,151,101,99,101,141 +1969-12-04 00:00:00,1969-12-03 23:00:00,138,135,139,159,100,100,100,126 +1969-12-04 00:00:00,1969-12-03 23:00:00,103,156,140,121,100,100,101,142 +1969-12-04 00:00:00,1969-12-03 23:00:00,171,101,178,0,101,101,99,173 +1969-12-04 00:00:00,1969-12-03 23:00:00,113,147,171,0,101,99,100,135 +1969-12-04 00:00:00,1969-12-03 23:00:00,189,187,147,0,99,100,101,102 +1969-12-04 00:00:00,1969-12-03 23:00:00,191,138,166,197,100,100,99,171 +1969-12-04 00:00:00,1969-12-03 23:00:00,190,123,160,141,100,99,100,118 +1969-12-04 00:00:00,1969-12-03 23:00:00,171,135,149,168,101,99,100,187 +1969-12-04 00:00:00,1969-12-03 23:00:00,143,147,194,116,99,101,99,146 +1969-12-04 00:00:00,1969-12-03 23:00:00,104,102,142,117,100,100,100,107 +1969-12-04 00:00:00,1969-12-03 23:00:00,113,156,151,125,101,101,101,196 +1969-12-04 00:00:00,1969-12-03 23:00:00,111,142,192,0,100,101,101,187 +1969-12-04 00:00:00,1969-12-03 23:00:00,179,189,171,177,99,99,101,182 +1969-12-04 00:00:00,1969-12-03 23:00:00,132,172,173,186,100,100,101,143 +1969-12-04 00:00:00,1969-12-03 23:00:00,154,190,143,103,100,100,101,117 +1969-12-04 00:00:00,1969-12-03 23:00:00,194,190,196,121,101,99,99,108 +1969-12-04 00:00:00,1969-12-03 23:00:00,122,122,127,195,100,99,100,153 +1969-12-04 00:00:00,1969-12-03 23:00:00,148,104,197,166,101,100,101,174 +1969-12-04 00:00:00,1969-12-03 23:00:00,106,200,149,191,99,100,101,184 +1969-12-04 00:00:00,1969-12-03 23:00:00,106,145,109,0,100,100,99,131 +1969-12-04 00:00:00,1969-12-03 23:00:00,106,172,181,193,101,99,99,176 +1969-12-04 00:00:00,1969-12-03 23:00:00,188,182,130,186,99,101,99,199 +1969-12-04 00:00:00,1969-12-03 23:00:00,191,168,105,191,101,101,99,144 +1969-12-04 00:00:00,1969-12-03 23:00:00,149,183,168,0,99,99,100,103 +1969-12-04 00:00:00,1969-12-03 23:00:00,166,129,153,185,99,99,100,161 +1969-12-04 00:00:00,1969-12-03 23:00:00,179,142,196,152,100,99,100,107 +1969-12-04 00:00:00,1969-12-03 23:00:00,183,110,185,149,100,100,100,125 +1969-12-04 00:00:00,1969-12-03 23:00:00,127,162,153,0,101,100,100,160 +1969-12-04 00:00:00,1969-12-03 23:00:00,129,133,132,105,100,101,101,195 +1969-12-04 00:00:00,1969-12-03 23:00:00,200,198,170,158,99,101,101,145 +1969-12-04 00:00:00,1969-12-03 23:00:00,183,146,119,136,101,100,101,102 +1969-12-04 00:00:00,1969-12-03 23:00:00,118,112,184,154,100,100,99,107 +1969-12-04 00:00:00,1969-12-03 23:00:00,158,185,167,0,101,100,100,159 +1969-12-04 00:00:00,1969-12-03 23:00:00,200,147,104,0,99,99,99,182 +1969-12-04 00:00:00,1969-12-03 23:00:00,174,103,166,161,100,99,99,200 +1969-12-04 00:00:00,1969-12-03 23:00:00,172,150,169,135,99,101,100,131 +1969-12-04 00:00:00,1969-12-03 23:00:00,149,192,133,153,100,99,99,178 +1969-12-04 00:00:00,1969-12-03 23:00:00,185,163,157,122,99,100,101,115 +1969-12-04 00:00:00,1969-12-03 23:00:00,140,158,105,145,99,99,100,109 +1969-12-04 00:00:00,1969-12-03 23:00:00,155,128,123,132,101,99,101,132 +1969-12-04 00:00:00,1969-12-03 23:00:00,139,189,124,118,100,101,101,172 +1969-12-04 00:00:00,1969-12-03 23:00:00,126,162,100,123,100,101,101,173 +1969-12-04 00:00:00,1969-12-03 23:00:00,130,128,156,178,99,101,99,133 +1969-12-04 00:00:00,1969-12-03 23:00:00,143,104,114,0,100,99,99,179 +1969-12-04 00:00:00,1969-12-03 23:00:00,131,183,161,0,99,100,100,165 +1969-12-04 00:00:00,1969-12-03 23:00:00,131,180,103,0,99,101,99,160 +1969-12-04 00:00:00,1969-12-03 23:00:00,200,200,137,0,100,101,99,146 +1969-12-04 00:00:00,1969-12-03 23:00:00,110,128,104,178,100,100,100,186 +1969-12-04 00:00:00,1969-12-03 23:00:00,107,178,134,188,100,100,101,177 +1969-12-04 00:00:00,1969-12-03 23:00:00,192,100,103,113,99,101,99,118 +1969-12-04 00:00:00,1969-12-03 23:00:00,162,108,112,166,99,101,101,146 +1969-12-04 00:00:00,1969-12-03 23:00:00,119,112,181,170,100,99,100,190 +1969-12-04 00:00:00,1969-12-03 23:00:00,147,199,160,103,99,100,99,160 +1969-12-04 00:00:00,1969-12-03 23:00:00,139,193,139,105,101,99,100,192 +1969-12-04 00:00:00,1969-12-03 23:00:00,143,189,133,199,99,101,101,195 +1969-12-04 00:00:00,1969-12-03 23:00:00,121,130,178,0,99,99,99,184 +1969-12-04 00:00:00,1969-12-03 23:00:00,200,105,181,120,100,100,100,185 +1969-12-04 00:00:00,1969-12-03 23:00:00,199,159,152,175,100,99,100,100 +1969-12-04 00:00:00,1969-12-03 23:00:00,138,144,186,193,100,100,101,185 +1969-12-04 00:00:00,1969-12-03 23:00:00,120,194,200,0,101,99,99,166 +1969-12-04 00:00:00,1969-12-03 23:00:00,169,181,123,174,101,99,100,170 +1969-12-04 00:00:00,1969-12-03 23:00:00,183,163,118,167,100,101,99,148 +1969-12-04 00:00:00,1969-12-03 23:00:00,153,197,163,122,99,99,101,143 +1969-12-04 00:00:00,1969-12-03 23:00:00,196,191,145,159,100,100,100,174 +1969-12-04 00:00:00,1969-12-03 23:00:00,101,178,158,134,99,100,101,198 +1969-12-04 00:00:00,1969-12-03 23:00:00,109,133,160,117,100,99,101,175 +1969-12-04 00:00:00,1969-12-03 23:00:00,187,175,109,130,101,101,100,199 +1969-12-04 00:00:00,1969-12-03 23:00:00,162,133,158,182,99,100,100,129 +1969-12-04 00:00:00,1969-12-03 23:00:00,196,168,100,142,101,99,101,135 +1969-12-04 00:00:00,1969-12-03 23:00:00,108,175,142,196,100,99,100,173 +1969-12-04 00:00:00,1969-12-03 23:00:00,163,109,166,0,99,101,101,168 +1969-12-04 00:00:00,1969-12-03 23:00:00,149,100,187,162,99,99,101,167 +1969-12-04 00:00:00,1969-12-03 23:00:00,143,190,116,0,100,100,101,159 +1969-12-04 00:00:00,1969-12-03 23:00:00,121,120,173,144,101,101,100,179 +1969-12-04 00:00:00,1969-12-03 23:00:00,150,120,123,140,101,101,101,147 +1969-12-04 00:00:00,1969-12-03 23:00:00,189,170,130,175,101,100,100,136 +1969-12-04 00:00:00,1969-12-03 23:00:00,111,174,109,129,101,99,100,133 +1969-12-04 00:00:00,1969-12-03 23:00:00,121,150,168,101,100,99,99,192 +1969-12-04 00:00:00,1969-12-03 23:00:00,179,198,166,182,101,101,99,135 +1969-12-04 00:00:00,1969-12-03 23:00:00,131,199,136,100,101,100,100,142 +1969-12-04 00:00:00,1969-12-03 23:00:00,189,197,115,152,100,101,101,139 +1969-12-04 00:00:00,1969-12-03 23:00:00,128,165,171,136,99,99,100,141 +1969-12-04 00:00:00,1969-12-03 23:00:00,139,183,104,159,101,100,100,135 +1969-12-04 00:00:00,1969-12-03 23:00:00,191,145,173,175,99,99,100,106 +1969-12-04 00:00:00,1969-12-03 23:00:00,117,136,181,150,99,99,101,143 +1969-12-04 00:00:00,1969-12-03 23:00:00,175,183,119,193,101,101,99,138 +1969-12-04 00:00:00,1969-12-03 23:00:00,179,162,111,142,101,99,99,134 +1969-12-04 00:00:00,1969-12-03 23:00:00,197,141,111,100,100,100,99,163 +1969-12-04 00:00:00,1969-12-03 23:00:00,162,176,153,183,99,99,99,117 +1969-12-04 00:00:00,1969-12-03 23:00:00,143,119,199,0,99,100,100,133 +1969-12-04 00:00:00,1969-12-03 23:00:00,197,175,162,165,100,101,100,172 +1969-12-04 00:00:00,1969-12-03 23:00:00,119,138,154,179,101,100,100,143 +1969-12-04 00:00:00,1969-12-03 23:00:00,153,199,106,0,99,100,100,169 +1969-12-04 00:00:00,1969-12-03 23:00:00,113,147,140,103,99,100,101,101 +1969-12-04 00:00:00,1969-12-03 23:00:00,155,151,179,190,101,100,101,176 +1969-12-04 00:00:00,1969-12-03 23:00:00,145,156,183,120,101,100,99,124 +1969-12-04 00:00:00,1969-12-03 23:00:00,128,133,175,0,100,101,101,141 +1969-12-04 00:00:00,1969-12-03 23:00:00,125,169,169,0,101,99,101,122 +1969-12-04 00:00:00,1969-12-03 23:00:00,112,132,115,166,101,101,100,168 +1969-12-04 00:00:00,1969-12-03 23:00:00,168,128,199,155,99,100,100,120 +1969-12-04 00:00:00,1969-12-03 23:00:00,188,130,140,112,100,99,99,192 +1969-12-04 00:00:00,1969-12-03 23:00:00,181,130,109,0,99,100,100,106 +1969-12-04 00:00:00,1969-12-03 23:00:00,110,130,177,0,99,99,99,132 +1969-12-04 00:00:00,1969-12-03 23:00:00,187,118,192,167,101,100,100,197 +1969-12-04 00:00:00,1969-12-03 23:00:00,107,123,189,125,101,99,100,140 +1969-12-04 00:00:00,1969-12-03 23:00:00,120,191,117,152,101,100,101,101 +1969-12-04 00:00:00,1969-12-03 23:00:00,185,182,185,0,100,101,100,142 +1969-12-04 00:00:00,1969-12-03 23:00:00,147,190,125,161,101,101,101,139 +1969-12-04 00:00:00,1969-12-03 23:00:00,164,185,179,176,101,99,99,140 +1969-12-04 00:00:00,1969-12-03 23:00:00,200,154,167,119,99,100,101,101 +1969-12-04 00:00:00,1969-12-03 23:00:00,168,112,185,148,101,100,101,109 +1969-12-04 00:00:00,1969-12-03 23:00:00,100,108,152,198,100,101,99,194 +1969-12-04 00:00:00,1969-12-03 23:00:00,120,118,199,161,99,100,99,155 +1969-12-04 00:00:00,1969-12-03 23:00:00,162,137,129,199,100,100,100,113 +1969-12-04 00:00:00,1969-12-03 23:00:00,123,199,116,104,100,100,101,191 +1969-12-04 00:00:00,1969-12-03 23:00:00,136,132,147,131,101,100,100,187 +1969-12-04 00:00:00,1969-12-03 23:00:00,186,136,121,0,99,101,100,161 +1969-12-04 00:00:00,1969-12-03 23:00:00,115,161,103,0,101,101,99,148 +1969-12-04 00:00:00,1969-12-03 23:00:00,150,195,148,181,99,101,101,154 +1969-12-04 00:00:00,1969-12-03 23:00:00,164,130,192,106,99,100,101,163 +1969-12-04 00:00:00,1969-12-03 23:00:00,101,152,190,165,99,101,99,127 +1969-12-04 00:00:00,1969-12-03 23:00:00,117,105,192,157,100,101,99,143 +1969-12-04 00:00:00,1969-12-03 23:00:00,126,179,135,117,101,100,100,197 +1969-12-04 00:00:00,1969-12-03 23:00:00,151,157,171,116,101,99,101,158 +1969-12-04 00:00:00,1969-12-03 23:00:00,163,134,115,125,101,100,99,146 +1969-12-04 00:00:00,1969-12-03 23:00:00,180,134,126,140,101,100,99,174 +1969-12-04 00:00:00,1969-12-03 23:00:00,195,176,170,0,99,101,101,116 +1969-12-04 00:00:00,1969-12-03 23:00:00,178,159,114,0,101,101,101,100 +1969-12-04 00:00:00,1969-12-03 23:00:00,178,193,135,145,99,100,99,131 +1969-12-04 00:00:00,1969-12-03 23:00:00,146,128,187,188,99,101,100,139 +1969-12-04 00:00:00,1969-12-03 23:00:00,140,120,144,181,101,99,101,137 +1969-12-04 00:00:00,1969-12-03 23:00:00,187,171,163,187,101,101,101,131 +1969-12-04 00:00:00,1969-12-03 23:00:00,193,175,168,189,100,101,100,135 +1969-12-04 00:00:00,1969-12-03 23:00:00,125,168,119,136,100,99,100,107 +1969-12-04 00:00:00,1969-12-03 23:00:00,194,162,103,175,100,101,99,171 +1969-12-04 00:00:00,1969-12-03 23:00:00,169,113,192,192,99,99,100,140 +1969-12-04 00:00:00,1969-12-03 23:00:00,117,184,158,153,99,99,101,142 +1969-12-04 00:00:00,1969-12-03 23:00:00,153,176,109,191,101,101,100,172 +1969-12-04 00:00:00,1969-12-03 23:00:00,115,170,134,101,101,100,99,185 +1969-12-04 00:00:00,1969-12-03 23:00:00,157,104,137,193,101,100,101,116 +1969-12-04 00:00:00,1969-12-03 23:00:00,169,152,198,197,100,99,100,127 +1969-12-04 00:00:00,1969-12-03 23:00:00,105,137,158,165,99,101,101,176 +1969-12-04 00:00:00,1969-12-03 23:00:00,173,104,138,181,101,100,100,192 +1969-12-04 00:00:00,1969-12-03 23:00:00,117,162,108,200,100,101,101,150 +1969-12-04 00:00:00,1969-12-03 23:00:00,106,130,168,0,100,100,100,190 +1969-12-04 00:00:00,1969-12-03 23:00:00,184,136,116,183,100,100,100,172 +1969-12-04 00:00:00,1969-12-03 23:00:00,126,157,154,0,100,101,100,165 +1969-12-04 00:00:00,1969-12-03 23:00:00,199,194,119,127,99,100,99,135 +1969-12-04 00:00:00,1969-12-03 23:00:00,117,135,188,181,100,101,101,129 +1969-12-04 00:00:00,1969-12-03 23:00:00,188,144,108,115,100,101,101,139 +1969-12-04 00:00:00,1969-12-03 23:00:00,133,135,174,123,101,99,100,176 +1969-12-04 00:00:00,1969-12-03 23:00:00,162,198,152,165,100,99,99,135 +1969-12-04 00:00:00,1969-12-03 23:00:00,197,109,125,101,99,101,101,155 +1969-12-04 00:00:00,1969-12-03 23:00:00,114,170,121,154,100,101,100,170 +1969-12-04 00:00:00,1969-12-03 23:00:00,192,105,157,188,99,99,100,121 +1969-12-03 00:00:00,1969-12-02 23:00:00,166,142,0,136,100,100,101,141 +1969-12-03 00:00:00,1969-12-02 23:00:00,180,198,0,0,100,99,99,144 +1969-12-03 00:00:00,1969-12-02 23:00:00,198,116,0,107,99,99,99,140 +1969-12-03 00:00:00,1969-12-02 23:00:00,117,128,0,121,99,101,99,148 +1969-12-03 00:00:00,1969-12-02 23:00:00,161,147,0,191,100,101,100,148 +1969-12-03 00:00:00,1969-12-02 23:00:00,122,101,0,130,99,101,101,101 +1969-12-03 00:00:00,1969-12-02 23:00:00,198,112,149,155,101,100,101,147 +1969-12-03 00:00:00,1969-12-02 23:00:00,156,185,152,173,100,101,99,183 +1969-12-03 00:00:00,1969-12-02 23:00:00,102,192,119,115,101,99,100,148 +1969-12-03 00:00:00,1969-12-02 23:00:00,129,117,145,192,101,99,101,131 +1969-12-03 00:00:00,1969-12-02 23:00:00,123,143,174,146,100,99,99,110 +1969-12-03 00:00:00,1969-12-02 23:00:00,100,192,187,136,100,100,99,117 +1969-12-03 00:00:00,1969-12-02 23:00:00,173,152,116,140,99,101,99,200 +1969-12-03 00:00:00,1969-12-02 23:00:00,184,171,181,194,100,100,99,116 +1969-12-03 00:00:00,1969-12-02 23:00:00,109,116,181,183,99,101,100,159 +1969-12-03 00:00:00,1969-12-02 23:00:00,153,127,119,193,99,101,100,194 +1969-12-03 00:00:00,1969-12-02 23:00:00,174,173,137,0,101,101,101,158 +1969-12-03 00:00:00,1969-12-02 23:00:00,179,163,157,158,101,100,101,101 +1969-12-03 00:00:00,1969-12-02 23:00:00,179,153,114,195,99,100,101,109 +1969-12-03 00:00:00,1969-12-02 23:00:00,170,184,131,197,100,100,101,179 +1969-12-03 00:00:00,1969-12-02 23:00:00,145,182,144,180,100,101,101,173 +1969-12-03 00:00:00,1969-12-02 23:00:00,157,104,117,186,101,100,101,144 +1969-12-03 00:00:00,1969-12-02 23:00:00,130,159,116,118,99,101,100,141 +1969-12-03 00:00:00,1969-12-02 23:00:00,197,169,148,172,100,100,100,123 +1969-12-03 00:00:00,1969-12-02 23:00:00,172,167,187,144,101,100,100,158 +1969-12-03 00:00:00,1969-12-02 23:00:00,148,164,157,162,100,101,100,198 +1969-12-03 00:00:00,1969-12-02 23:00:00,142,146,191,155,101,100,100,188 +1969-12-03 00:00:00,1969-12-02 23:00:00,167,113,142,0,101,101,100,115 +1969-12-03 00:00:00,1969-12-02 23:00:00,127,120,138,199,101,99,101,170 +1969-12-03 00:00:00,1969-12-02 23:00:00,147,131,145,0,99,101,100,136 +1969-12-03 00:00:00,1969-12-02 23:00:00,135,176,150,181,101,99,100,115 +1969-12-03 00:00:00,1969-12-02 23:00:00,162,136,154,0,101,101,100,150 +1969-12-03 00:00:00,1969-12-02 23:00:00,190,150,124,0,99,100,99,124 +1969-12-03 00:00:00,1969-12-02 23:00:00,145,195,168,181,100,99,101,132 +1969-12-03 00:00:00,1969-12-02 23:00:00,110,106,186,0,100,100,101,127 +1969-12-03 00:00:00,1969-12-02 23:00:00,119,190,122,190,101,101,101,115 +1969-12-03 00:00:00,1969-12-02 23:00:00,112,190,165,0,100,101,99,134 +1969-12-03 00:00:00,1969-12-02 23:00:00,125,155,124,130,100,100,101,175 +1969-12-03 00:00:00,1969-12-02 23:00:00,167,106,132,156,99,100,100,174 +1969-12-03 00:00:00,1969-12-02 23:00:00,111,166,190,113,99,99,99,115 +1969-12-03 00:00:00,1969-12-02 23:00:00,193,142,191,165,100,101,101,166 +1969-12-03 00:00:00,1969-12-02 23:00:00,138,162,158,152,99,101,100,173 +1969-12-03 00:00:00,1969-12-02 23:00:00,102,149,170,167,100,101,101,150 +1969-12-03 00:00:00,1969-12-02 23:00:00,109,200,168,187,101,99,100,197 +1969-12-03 00:00:00,1969-12-02 23:00:00,137,148,129,118,101,99,99,196 +1969-12-03 00:00:00,1969-12-02 23:00:00,196,143,166,167,100,100,100,104 +1969-12-03 00:00:00,1969-12-02 23:00:00,162,172,180,168,101,101,101,181 +1969-12-03 00:00:00,1969-12-02 23:00:00,185,126,156,137,100,101,100,187 +1969-12-03 00:00:00,1969-12-02 23:00:00,137,149,164,131,99,100,101,199 +1969-12-03 00:00:00,1969-12-02 23:00:00,186,120,164,101,99,99,99,141 +1969-12-03 00:00:00,1969-12-02 23:00:00,188,123,135,136,99,100,99,167 +1969-12-03 00:00:00,1969-12-02 23:00:00,172,109,110,169,101,99,99,171 +1969-12-03 00:00:00,1969-12-02 23:00:00,137,106,153,111,101,101,99,128 +1969-12-03 00:00:00,1969-12-02 23:00:00,142,173,155,0,100,99,100,124 +1969-12-03 00:00:00,1969-12-02 23:00:00,200,152,126,182,101,101,100,172 +1969-12-03 00:00:00,1969-12-02 23:00:00,119,146,118,0,99,99,100,195 +1969-12-03 00:00:00,1969-12-02 23:00:00,102,157,168,133,99,99,99,185 +1969-12-03 00:00:00,1969-12-02 23:00:00,151,158,105,104,100,99,99,146 +1969-12-03 00:00:00,1969-12-02 23:00:00,116,184,173,104,101,100,100,167 +1969-12-03 00:00:00,1969-12-02 23:00:00,197,147,171,158,100,99,99,134 +1969-12-03 00:00:00,1969-12-02 23:00:00,149,187,158,162,101,99,100,192 +1969-12-03 00:00:00,1969-12-02 23:00:00,157,172,200,164,99,101,101,167 +1969-12-03 00:00:00,1969-12-02 23:00:00,128,184,153,170,101,101,99,101 +1969-12-03 00:00:00,1969-12-02 23:00:00,184,187,177,156,99,99,100,160 +1969-12-03 00:00:00,1969-12-02 23:00:00,149,132,158,147,101,99,101,125 +1969-12-03 00:00:00,1969-12-02 23:00:00,131,140,145,156,99,100,99,123 +1969-12-03 00:00:00,1969-12-02 23:00:00,157,196,133,135,100,99,99,105 +1969-12-03 00:00:00,1969-12-02 23:00:00,106,126,120,0,101,100,100,152 +1969-12-03 00:00:00,1969-12-02 23:00:00,159,167,178,107,99,99,101,165 +1969-12-03 00:00:00,1969-12-02 23:00:00,104,127,124,141,100,101,99,155 +1969-12-03 00:00:00,1969-12-02 23:00:00,136,120,197,154,101,100,99,155 +1969-12-03 00:00:00,1969-12-02 23:00:00,100,110,124,200,101,99,100,189 +1969-12-03 00:00:00,1969-12-02 23:00:00,127,107,152,101,100,99,100,106 +1969-12-03 00:00:00,1969-12-02 23:00:00,106,118,138,0,99,100,99,143 +1969-12-03 00:00:00,1969-12-02 23:00:00,150,187,178,0,99,101,99,130 +1969-12-03 00:00:00,1969-12-02 23:00:00,149,100,164,0,101,99,100,118 +1969-12-03 00:00:00,1969-12-02 23:00:00,160,128,180,102,99,100,100,185 +1969-12-03 00:00:00,1969-12-02 23:00:00,197,159,131,184,99,99,100,194 +1969-12-03 00:00:00,1969-12-02 23:00:00,180,126,103,146,100,99,101,138 +1969-12-03 00:00:00,1969-12-02 23:00:00,106,142,180,136,99,100,100,124 +1969-12-03 00:00:00,1969-12-02 23:00:00,160,131,109,182,100,99,99,199 +1969-12-03 00:00:00,1969-12-02 23:00:00,181,155,138,200,99,99,99,169 +1969-12-03 00:00:00,1969-12-02 23:00:00,191,101,130,0,100,101,99,119 +1969-12-03 00:00:00,1969-12-02 23:00:00,127,175,180,180,99,99,100,191 +1969-12-03 00:00:00,1969-12-02 23:00:00,148,102,124,199,100,101,99,147 +1969-12-03 00:00:00,1969-12-02 23:00:00,142,173,115,165,101,101,100,128 +1969-12-03 00:00:00,1969-12-02 23:00:00,176,179,123,129,99,101,100,161 +1969-12-03 00:00:00,1969-12-02 23:00:00,196,114,151,126,101,100,100,109 +1969-12-03 00:00:00,1969-12-02 23:00:00,128,159,116,0,99,99,99,179 +1969-12-03 00:00:00,1969-12-02 23:00:00,141,131,192,167,101,101,100,199 +1969-12-03 00:00:00,1969-12-02 23:00:00,164,148,138,121,99,99,101,179 +1969-12-03 00:00:00,1969-12-02 23:00:00,103,169,133,177,99,99,100,187 +1969-12-03 00:00:00,1969-12-02 23:00:00,166,119,195,102,100,99,101,155 +1969-12-03 00:00:00,1969-12-02 23:00:00,195,146,193,132,100,99,100,102 +1969-12-03 00:00:00,1969-12-02 23:00:00,105,170,118,185,100,99,99,188 +1969-12-03 00:00:00,1969-12-02 23:00:00,128,115,102,0,99,100,100,194 +1969-12-03 00:00:00,1969-12-02 23:00:00,164,111,162,193,100,99,100,174 +1969-12-03 00:00:00,1969-12-02 23:00:00,154,127,122,193,99,100,99,138 +1969-12-03 00:00:00,1969-12-02 23:00:00,175,143,117,126,100,101,101,128 +1969-12-03 00:00:00,1969-12-02 23:00:00,151,160,180,170,101,101,101,145 +1969-12-03 00:00:00,1969-12-02 23:00:00,167,148,175,188,101,100,100,180 +1969-12-03 00:00:00,1969-12-02 23:00:00,121,144,122,200,101,101,100,195 +1969-12-03 00:00:00,1969-12-02 23:00:00,122,192,148,179,99,100,101,111 +1969-12-03 00:00:00,1969-12-02 23:00:00,166,119,115,0,99,101,99,113 +1969-12-03 00:00:00,1969-12-02 23:00:00,180,198,145,180,100,99,101,168 +1969-12-03 00:00:00,1969-12-02 23:00:00,123,105,128,167,99,99,101,111 +1969-12-03 00:00:00,1969-12-02 23:00:00,188,193,153,110,99,100,101,102 +1969-12-03 00:00:00,1969-12-02 23:00:00,166,119,167,0,99,101,100,152 +1969-12-03 00:00:00,1969-12-02 23:00:00,131,195,153,130,99,99,101,195 +1969-12-03 00:00:00,1969-12-02 23:00:00,192,159,167,159,99,100,101,119 +1969-12-03 00:00:00,1969-12-02 23:00:00,186,110,115,0,99,99,99,162 +1969-12-03 00:00:00,1969-12-02 23:00:00,112,142,106,137,99,99,101,113 +1969-12-03 00:00:00,1969-12-02 23:00:00,125,101,171,103,101,100,99,157 +1969-12-03 00:00:00,1969-12-02 23:00:00,116,194,132,125,101,100,99,131 +1969-12-03 00:00:00,1969-12-02 23:00:00,113,155,192,155,99,99,100,175 +1969-12-03 00:00:00,1969-12-02 23:00:00,110,157,184,151,101,101,101,152 +1969-12-03 00:00:00,1969-12-02 23:00:00,124,131,159,182,99,99,99,134 +1969-12-03 00:00:00,1969-12-02 23:00:00,125,117,190,176,101,99,101,130 +1969-12-03 00:00:00,1969-12-02 23:00:00,192,135,178,166,100,101,100,170 +1969-12-03 00:00:00,1969-12-02 23:00:00,105,169,180,121,99,101,101,162 +1969-12-03 00:00:00,1969-12-02 23:00:00,171,140,107,138,100,101,99,163 +1969-12-03 00:00:00,1969-12-02 23:00:00,166,131,105,152,99,101,100,130 +1969-12-03 00:00:00,1969-12-02 23:00:00,172,160,168,109,100,101,101,151 +1969-12-03 00:00:00,1969-12-02 23:00:00,100,199,180,186,99,101,101,199 +1969-12-03 00:00:00,1969-12-02 23:00:00,130,177,133,109,99,101,101,111 +1969-12-03 00:00:00,1969-12-02 23:00:00,197,150,190,0,100,101,101,105 +1969-12-03 00:00:00,1969-12-02 23:00:00,129,134,164,173,99,100,101,200 +1969-12-03 00:00:00,1969-12-02 23:00:00,109,138,126,102,100,99,101,199 +1969-12-03 00:00:00,1969-12-02 23:00:00,171,138,116,162,101,101,99,136 +1969-12-03 00:00:00,1969-12-02 23:00:00,186,196,107,183,99,99,99,192 +1969-12-03 00:00:00,1969-12-02 23:00:00,116,179,183,109,101,101,99,174 +1969-12-03 00:00:00,1969-12-02 23:00:00,198,159,127,0,101,100,100,160 +1969-12-03 00:00:00,1969-12-02 23:00:00,127,154,100,200,100,100,99,160 +1969-12-03 00:00:00,1969-12-02 23:00:00,168,122,197,164,100,99,101,106 +1969-12-03 00:00:00,1969-12-02 23:00:00,171,104,163,189,101,100,99,151 +1969-12-03 00:00:00,1969-12-02 23:00:00,138,132,166,0,100,99,101,127 +1969-12-03 00:00:00,1969-12-02 23:00:00,144,174,186,111,101,101,101,167 +1969-12-03 00:00:00,1969-12-02 23:00:00,143,144,113,189,99,101,99,136 +1969-12-03 00:00:00,1969-12-02 23:00:00,157,172,178,160,99,101,99,124 +1969-12-03 00:00:00,1969-12-02 23:00:00,156,145,157,193,100,99,99,169 +1969-12-03 00:00:00,1969-12-02 23:00:00,108,144,121,183,101,101,101,181 +1969-12-03 00:00:00,1969-12-02 23:00:00,169,148,166,113,101,101,99,131 +1969-12-03 00:00:00,1969-12-02 23:00:00,191,127,142,116,101,101,100,178 +1969-12-03 00:00:00,1969-12-02 23:00:00,128,128,161,136,99,101,99,183 +1969-12-03 00:00:00,1969-12-02 23:00:00,159,155,174,185,99,99,101,168 +1969-12-03 00:00:00,1969-12-02 23:00:00,187,154,148,0,100,101,100,135 +1969-12-03 00:00:00,1969-12-02 23:00:00,119,165,188,135,99,100,99,108 +1969-12-03 00:00:00,1969-12-02 23:00:00,159,165,106,117,99,101,99,170 +1969-12-03 00:00:00,1969-12-02 23:00:00,135,171,178,161,101,101,100,197 +1969-12-03 00:00:00,1969-12-02 23:00:00,149,107,179,151,101,100,99,157 +1969-12-03 00:00:00,1969-12-02 23:00:00,122,189,156,142,99,100,101,115 +1969-12-03 00:00:00,1969-12-02 23:00:00,187,117,147,191,101,101,99,100 +1969-12-03 00:00:00,1969-12-02 23:00:00,182,171,193,109,100,100,99,178 +1969-12-03 00:00:00,1969-12-02 23:00:00,139,102,164,187,101,100,101,184 +1969-12-03 00:00:00,1969-12-02 23:00:00,187,112,135,109,99,100,101,126 +1969-12-03 00:00:00,1969-12-02 23:00:00,180,137,144,138,99,101,100,109 +1969-12-03 00:00:00,1969-12-02 23:00:00,196,108,136,161,101,100,100,156 +1969-12-03 00:00:00,1969-12-02 23:00:00,127,182,199,122,99,101,99,196 +1969-12-03 00:00:00,1969-12-02 23:00:00,115,130,135,159,100,100,100,108 +1969-12-03 00:00:00,1969-12-02 23:00:00,151,146,161,170,100,99,99,128 +1969-12-03 00:00:00,1969-12-02 23:00:00,181,147,189,165,101,101,100,154 +1969-12-03 00:00:00,1969-12-02 23:00:00,133,127,102,104,100,99,99,185 +1969-12-03 00:00:00,1969-12-02 23:00:00,159,101,123,127,99,101,100,152 +1969-12-03 00:00:00,1969-12-02 23:00:00,146,156,146,176,101,99,99,167 +1969-12-03 00:00:00,1969-12-02 23:00:00,122,155,143,191,101,101,99,177 +1969-12-03 00:00:00,1969-12-02 23:00:00,194,158,173,137,100,99,101,189 +1969-12-03 00:00:00,1969-12-02 23:00:00,123,111,126,0,100,101,100,125 +1969-12-03 00:00:00,1969-12-02 23:00:00,180,105,114,113,99,99,101,147 +1969-12-03 00:00:00,1969-12-02 23:00:00,114,102,162,101,101,100,99,132 +1969-12-03 00:00:00,1969-12-02 23:00:00,145,196,171,168,101,101,100,188 +1969-12-03 00:00:00,1969-12-02 23:00:00,200,109,121,196,99,101,101,177 +1969-12-03 00:00:00,1969-12-02 23:00:00,113,199,168,170,101,99,99,132 +1969-12-03 00:00:00,1969-12-02 23:00:00,170,129,198,165,101,100,101,101 +1969-12-03 00:00:00,1969-12-02 23:00:00,125,104,147,195,99,99,101,141 +1969-12-03 00:00:00,1969-12-02 23:00:00,177,177,152,145,99,101,101,140 +1969-12-03 00:00:00,1969-12-02 23:00:00,107,142,171,136,101,101,100,171 +1969-12-03 00:00:00,1969-12-02 23:00:00,146,139,170,151,101,101,99,109 +1969-12-03 00:00:00,1969-12-02 23:00:00,158,165,180,101,100,100,100,110 +1969-12-03 00:00:00,1969-12-02 23:00:00,151,134,194,182,101,100,101,150 +1969-12-03 00:00:00,1969-12-02 23:00:00,153,190,155,128,101,99,101,111 +1969-12-03 00:00:00,1969-12-02 23:00:00,100,149,166,171,101,99,99,120 +1969-12-03 00:00:00,1969-12-02 23:00:00,145,132,144,200,101,99,101,186 +1969-12-03 00:00:00,1969-12-02 23:00:00,167,140,138,156,99,101,99,136 +1969-12-03 00:00:00,1969-12-02 23:00:00,119,186,144,195,101,100,100,179 +1969-12-03 00:00:00,1969-12-02 23:00:00,199,116,185,182,99,99,99,142 +1969-12-03 00:00:00,1969-12-02 23:00:00,147,143,147,179,100,101,101,185 +1969-12-03 00:00:00,1969-12-02 23:00:00,140,162,195,166,100,101,100,132 +1969-12-03 00:00:00,1969-12-02 23:00:00,158,119,103,178,100,101,100,102 +1969-12-03 00:00:00,1969-12-02 23:00:00,150,150,119,114,100,100,101,116 +1969-12-03 00:00:00,1969-12-02 23:00:00,122,114,145,182,100,100,101,164 +1969-12-03 00:00:00,1969-12-02 23:00:00,199,136,166,104,99,100,100,198 +1969-12-03 00:00:00,1969-12-02 23:00:00,101,180,118,189,99,101,99,150 +1969-12-03 00:00:00,1969-12-02 23:00:00,167,142,186,116,101,101,101,110 +1969-12-03 00:00:00,1969-12-02 23:00:00,177,137,123,163,101,101,100,181 +1969-12-03 00:00:00,1969-12-02 23:00:00,169,119,127,0,99,100,99,187 +1969-12-03 00:00:00,1969-12-02 23:00:00,162,143,130,0,100,101,100,189 +1969-12-03 00:00:00,1969-12-02 23:00:00,184,114,191,167,99,99,101,162 +1969-12-03 00:00:00,1969-12-02 23:00:00,158,156,158,124,101,100,99,154 +1969-12-03 00:00:00,1969-12-02 23:00:00,193,101,200,127,100,100,100,154 +1969-12-03 00:00:00,1969-12-02 23:00:00,108,188,171,194,100,99,100,154 +1969-12-02 00:00:00,1969-12-01 23:00:00,152,196,0,199,99,100,100,126 +1969-12-02 00:00:00,1969-12-01 23:00:00,178,146,0,0,100,100,99,154 +1969-12-02 00:00:00,1969-12-01 23:00:00,190,148,0,0,99,101,100,189 +1969-12-02 00:00:00,1969-12-01 23:00:00,115,144,0,0,101,100,101,137 +1969-12-02 00:00:00,1969-12-01 23:00:00,183,148,0,101,99,101,101,125 +1969-12-02 00:00:00,1969-12-01 23:00:00,125,185,0,161,99,101,101,143 +1969-12-02 00:00:00,1969-12-01 23:00:00,134,147,200,186,99,101,100,146 +1969-12-02 00:00:00,1969-12-01 23:00:00,104,157,158,166,101,99,100,187 +1969-12-02 00:00:00,1969-12-01 23:00:00,118,130,124,139,100,100,99,144 +1969-12-02 00:00:00,1969-12-01 23:00:00,197,185,195,116,101,100,101,185 +1969-12-02 00:00:00,1969-12-01 23:00:00,151,129,199,198,99,101,99,106 +1969-12-02 00:00:00,1969-12-01 23:00:00,161,119,159,151,100,99,101,118 +1969-12-02 00:00:00,1969-12-01 23:00:00,157,117,116,151,101,101,101,200 +1969-12-02 00:00:00,1969-12-01 23:00:00,174,184,192,0,99,101,101,137 +1969-12-02 00:00:00,1969-12-01 23:00:00,116,166,159,164,101,101,100,173 +1969-12-02 00:00:00,1969-12-01 23:00:00,107,101,108,0,100,99,101,149 +1969-12-02 00:00:00,1969-12-01 23:00:00,107,159,176,148,99,99,100,193 +1969-12-02 00:00:00,1969-12-01 23:00:00,162,159,114,0,99,101,99,183 +1969-12-02 00:00:00,1969-12-01 23:00:00,115,112,192,125,100,101,101,108 +1969-12-02 00:00:00,1969-12-01 23:00:00,151,190,187,0,101,100,101,195 +1969-12-02 00:00:00,1969-12-01 23:00:00,174,116,174,142,99,100,100,117 +1969-12-02 00:00:00,1969-12-01 23:00:00,153,125,171,149,99,101,100,126 +1969-12-02 00:00:00,1969-12-01 23:00:00,157,103,195,167,100,99,101,154 +1969-12-02 00:00:00,1969-12-01 23:00:00,143,157,157,108,99,101,100,194 +1969-12-02 00:00:00,1969-12-01 23:00:00,108,116,177,177,99,101,99,171 +1969-12-02 00:00:00,1969-12-01 23:00:00,189,165,200,0,101,100,101,195 +1969-12-02 00:00:00,1969-12-01 23:00:00,175,166,148,102,99,99,101,127 +1969-12-02 00:00:00,1969-12-01 23:00:00,140,111,128,104,99,99,100,126 +1969-12-02 00:00:00,1969-12-01 23:00:00,102,110,174,170,101,100,99,193 +1969-12-02 00:00:00,1969-12-01 23:00:00,185,108,119,146,100,101,100,165 +1969-12-02 00:00:00,1969-12-01 23:00:00,153,145,138,113,99,100,99,178 +1969-12-02 00:00:00,1969-12-01 23:00:00,183,141,122,150,101,99,100,104 +1969-12-02 00:00:00,1969-12-01 23:00:00,149,192,143,193,100,99,100,110 +1969-12-02 00:00:00,1969-12-01 23:00:00,118,155,114,121,101,99,100,190 +1969-12-02 00:00:00,1969-12-01 23:00:00,185,103,140,200,100,100,101,142 +1969-12-02 00:00:00,1969-12-01 23:00:00,101,190,115,156,99,99,101,105 +1969-12-02 00:00:00,1969-12-01 23:00:00,162,100,116,190,101,100,100,132 +1969-12-02 00:00:00,1969-12-01 23:00:00,135,192,115,171,99,100,100,118 +1969-12-02 00:00:00,1969-12-01 23:00:00,191,137,115,123,99,101,99,166 +1969-12-02 00:00:00,1969-12-01 23:00:00,146,172,191,187,99,100,100,179 +1969-12-02 00:00:00,1969-12-01 23:00:00,171,100,130,0,99,99,99,114 +1969-12-02 00:00:00,1969-12-01 23:00:00,124,168,191,106,99,99,99,197 +1969-12-02 00:00:00,1969-12-01 23:00:00,136,155,191,187,100,101,101,164 +1969-12-02 00:00:00,1969-12-01 23:00:00,115,146,115,111,99,100,101,102 +1969-12-02 00:00:00,1969-12-01 23:00:00,152,172,134,144,101,100,101,171 +1969-12-02 00:00:00,1969-12-01 23:00:00,109,117,180,164,99,101,100,155 +1969-12-02 00:00:00,1969-12-01 23:00:00,113,103,184,129,100,100,99,189 +1969-12-02 00:00:00,1969-12-01 23:00:00,179,181,191,161,101,101,99,129 +1969-12-02 00:00:00,1969-12-01 23:00:00,116,155,182,0,101,101,100,183 +1969-12-02 00:00:00,1969-12-01 23:00:00,198,198,175,196,101,100,100,119 +1969-12-02 00:00:00,1969-12-01 23:00:00,145,114,102,105,99,101,99,154 +1969-12-02 00:00:00,1969-12-01 23:00:00,167,122,164,0,99,100,101,117 +1969-12-02 00:00:00,1969-12-01 23:00:00,169,172,138,181,99,100,99,171 +1969-12-02 00:00:00,1969-12-01 23:00:00,143,132,150,197,99,101,100,131 +1969-12-02 00:00:00,1969-12-01 23:00:00,171,144,190,119,101,99,100,192 +1969-12-02 00:00:00,1969-12-01 23:00:00,182,126,114,0,101,100,100,170 +1969-12-02 00:00:00,1969-12-01 23:00:00,170,106,112,144,101,101,100,129 +1969-12-02 00:00:00,1969-12-01 23:00:00,161,159,101,122,99,99,99,185 +1969-12-02 00:00:00,1969-12-01 23:00:00,126,113,125,130,99,99,101,171 +1969-12-02 00:00:00,1969-12-01 23:00:00,112,195,183,0,99,101,99,164 +1969-12-02 00:00:00,1969-12-01 23:00:00,171,162,131,193,100,99,99,188 +1969-12-02 00:00:00,1969-12-01 23:00:00,152,137,146,125,100,101,99,106 +1969-12-02 00:00:00,1969-12-01 23:00:00,106,172,128,107,101,100,100,130 +1969-12-02 00:00:00,1969-12-01 23:00:00,150,198,131,137,99,99,101,127 +1969-12-02 00:00:00,1969-12-01 23:00:00,107,191,110,181,100,101,101,145 +1969-12-02 00:00:00,1969-12-01 23:00:00,103,161,162,152,99,99,101,139 +1969-12-02 00:00:00,1969-12-01 23:00:00,164,193,178,173,99,100,101,134 +1969-12-02 00:00:00,1969-12-01 23:00:00,200,133,145,101,99,100,100,103 +1969-12-02 00:00:00,1969-12-01 23:00:00,157,179,167,0,99,99,101,194 +1969-12-02 00:00:00,1969-12-01 23:00:00,120,181,135,116,99,99,99,173 +1969-12-02 00:00:00,1969-12-01 23:00:00,160,108,101,193,101,100,100,147 +1969-12-02 00:00:00,1969-12-01 23:00:00,181,152,124,130,101,101,100,111 +1969-12-02 00:00:00,1969-12-01 23:00:00,170,106,112,168,99,99,99,173 +1969-12-02 00:00:00,1969-12-01 23:00:00,162,191,132,194,99,101,99,118 +1969-12-02 00:00:00,1969-12-01 23:00:00,188,102,166,103,100,101,100,191 +1969-12-02 00:00:00,1969-12-01 23:00:00,194,136,190,199,101,99,101,109 +1969-12-02 00:00:00,1969-12-01 23:00:00,161,146,158,143,99,99,101,175 +1969-12-02 00:00:00,1969-12-01 23:00:00,169,126,178,111,100,101,101,145 +1969-12-02 00:00:00,1969-12-01 23:00:00,129,159,163,125,99,101,100,120 +1969-12-02 00:00:00,1969-12-01 23:00:00,168,189,158,167,100,100,101,128 +1969-12-02 00:00:00,1969-12-01 23:00:00,102,172,120,153,99,101,99,114 +1969-12-02 00:00:00,1969-12-01 23:00:00,129,124,193,137,99,99,99,132 +1969-12-02 00:00:00,1969-12-01 23:00:00,172,189,184,147,100,101,100,109 +1969-12-02 00:00:00,1969-12-01 23:00:00,148,105,163,129,99,100,99,122 +1969-12-02 00:00:00,1969-12-01 23:00:00,112,123,180,150,100,100,100,134 +1969-12-02 00:00:00,1969-12-01 23:00:00,116,124,173,0,100,101,100,114 +1969-12-02 00:00:00,1969-12-01 23:00:00,116,188,124,200,101,99,101,157 +1969-12-02 00:00:00,1969-12-01 23:00:00,168,184,197,124,99,101,101,141 +1969-12-02 00:00:00,1969-12-01 23:00:00,127,167,180,143,100,101,99,174 +1969-12-02 00:00:00,1969-12-01 23:00:00,198,176,199,148,101,100,100,191 +1969-12-02 00:00:00,1969-12-01 23:00:00,193,143,138,149,99,100,99,111 +1969-12-02 00:00:00,1969-12-01 23:00:00,165,159,122,0,99,99,101,124 +1969-12-02 00:00:00,1969-12-01 23:00:00,163,103,179,139,100,100,100,189 +1969-12-02 00:00:00,1969-12-01 23:00:00,122,148,192,145,99,101,100,135 +1969-12-02 00:00:00,1969-12-01 23:00:00,185,146,168,0,99,100,101,126 +1969-12-02 00:00:00,1969-12-01 23:00:00,132,132,171,154,99,101,101,146 +1969-12-02 00:00:00,1969-12-01 23:00:00,150,120,199,0,100,99,101,189 +1969-12-02 00:00:00,1969-12-01 23:00:00,143,160,131,168,99,100,99,147 +1969-12-02 00:00:00,1969-12-01 23:00:00,182,147,170,131,100,100,100,170 +1969-12-02 00:00:00,1969-12-01 23:00:00,136,132,129,111,100,101,101,143 +1969-12-02 00:00:00,1969-12-01 23:00:00,181,171,177,143,101,100,100,192 +1969-12-02 00:00:00,1969-12-01 23:00:00,166,106,190,0,99,99,100,199 +1969-12-02 00:00:00,1969-12-01 23:00:00,121,112,104,152,100,99,100,104 +1969-12-02 00:00:00,1969-12-01 23:00:00,145,190,195,129,100,100,100,182 +1969-12-02 00:00:00,1969-12-01 23:00:00,139,173,125,0,99,99,101,133 +1969-12-02 00:00:00,1969-12-01 23:00:00,117,189,113,141,101,100,101,123 +1969-12-02 00:00:00,1969-12-01 23:00:00,166,139,188,188,100,101,101,126 +1969-12-02 00:00:00,1969-12-01 23:00:00,189,194,178,158,99,99,101,193 +1969-12-02 00:00:00,1969-12-01 23:00:00,190,155,200,199,101,101,99,148 +1969-12-02 00:00:00,1969-12-01 23:00:00,147,200,122,156,99,100,101,124 +1969-12-02 00:00:00,1969-12-01 23:00:00,186,130,116,190,101,100,100,167 +1969-12-02 00:00:00,1969-12-01 23:00:00,159,199,160,114,99,99,99,164 +1969-12-02 00:00:00,1969-12-01 23:00:00,110,164,126,123,101,99,99,125 +1969-12-02 00:00:00,1969-12-01 23:00:00,189,191,187,162,100,99,101,156 +1969-12-02 00:00:00,1969-12-01 23:00:00,182,174,185,197,99,99,99,161 +1969-12-02 00:00:00,1969-12-01 23:00:00,116,104,120,0,101,99,101,193 +1969-12-02 00:00:00,1969-12-01 23:00:00,100,156,115,194,101,101,100,120 +1969-12-02 00:00:00,1969-12-01 23:00:00,136,184,179,124,99,101,99,180 +1969-12-02 00:00:00,1969-12-01 23:00:00,115,181,117,0,100,99,101,192 +1969-12-02 00:00:00,1969-12-01 23:00:00,160,165,171,0,100,99,99,191 +1969-12-02 00:00:00,1969-12-01 23:00:00,183,156,131,168,100,99,101,110 +1969-12-02 00:00:00,1969-12-01 23:00:00,200,177,149,192,100,101,100,177 +1969-12-02 00:00:00,1969-12-01 23:00:00,178,164,102,187,101,99,101,138 +1969-12-02 00:00:00,1969-12-01 23:00:00,129,190,120,129,101,101,101,141 +1969-12-02 00:00:00,1969-12-01 23:00:00,198,106,152,129,100,101,99,123 +1969-12-02 00:00:00,1969-12-01 23:00:00,149,136,143,176,100,101,101,124 +1969-12-02 00:00:00,1969-12-01 23:00:00,192,122,146,0,100,99,101,105 +1969-12-02 00:00:00,1969-12-01 23:00:00,166,130,166,120,100,100,100,199 +1969-12-02 00:00:00,1969-12-01 23:00:00,131,138,187,175,99,99,101,135 +1969-12-02 00:00:00,1969-12-01 23:00:00,107,199,177,197,100,100,101,122 +1969-12-02 00:00:00,1969-12-01 23:00:00,131,174,116,161,100,101,99,186 +1969-12-02 00:00:00,1969-12-01 23:00:00,117,182,101,136,99,100,99,189 +1969-12-02 00:00:00,1969-12-01 23:00:00,141,154,166,119,99,101,99,112 +1969-12-02 00:00:00,1969-12-01 23:00:00,153,148,168,0,99,101,99,149 +1969-12-02 00:00:00,1969-12-01 23:00:00,142,113,154,180,99,100,100,182 +1969-12-02 00:00:00,1969-12-01 23:00:00,129,115,137,185,101,101,101,196 +1969-12-02 00:00:00,1969-12-01 23:00:00,156,128,135,0,101,101,100,109 +1969-12-02 00:00:00,1969-12-01 23:00:00,127,165,120,160,101,100,99,200 +1969-12-02 00:00:00,1969-12-01 23:00:00,194,165,196,196,99,99,101,103 +1969-12-02 00:00:00,1969-12-01 23:00:00,164,189,168,129,101,100,101,116 +1969-12-02 00:00:00,1969-12-01 23:00:00,171,200,155,171,101,101,100,160 +1969-12-02 00:00:00,1969-12-01 23:00:00,183,178,119,100,101,100,101,161 +1969-12-02 00:00:00,1969-12-01 23:00:00,194,100,174,135,101,100,99,113 +1969-12-02 00:00:00,1969-12-01 23:00:00,187,104,109,0,101,100,100,120 +1969-12-02 00:00:00,1969-12-01 23:00:00,200,174,191,0,100,99,101,153 +1969-12-02 00:00:00,1969-12-01 23:00:00,130,152,198,123,101,99,101,158 +1969-12-02 00:00:00,1969-12-01 23:00:00,108,157,150,158,99,100,99,200 +1969-12-02 00:00:00,1969-12-01 23:00:00,122,123,157,0,99,99,101,199 +1969-12-02 00:00:00,1969-12-01 23:00:00,135,107,140,0,99,101,99,168 +1969-12-02 00:00:00,1969-12-01 23:00:00,190,160,120,187,100,101,101,194 +1969-12-02 00:00:00,1969-12-01 23:00:00,199,126,191,142,100,100,100,185 +1969-12-02 00:00:00,1969-12-01 23:00:00,149,138,151,185,100,100,100,106 +1969-12-02 00:00:00,1969-12-01 23:00:00,103,185,182,0,100,101,101,118 +1969-12-02 00:00:00,1969-12-01 23:00:00,104,146,163,120,101,100,100,188 +1969-12-02 00:00:00,1969-12-01 23:00:00,163,161,126,153,101,101,100,171 +1969-12-02 00:00:00,1969-12-01 23:00:00,121,168,172,135,99,100,99,139 +1969-12-02 00:00:00,1969-12-01 23:00:00,115,140,139,110,99,99,101,142 +1969-12-02 00:00:00,1969-12-01 23:00:00,194,178,155,108,101,100,100,101 +1969-12-02 00:00:00,1969-12-01 23:00:00,124,182,173,144,99,100,99,166 +1969-12-02 00:00:00,1969-12-01 23:00:00,193,198,126,133,100,99,100,105 +1969-12-02 00:00:00,1969-12-01 23:00:00,166,103,116,0,100,100,99,167 +1969-12-02 00:00:00,1969-12-01 23:00:00,141,191,172,101,101,101,100,129 +1969-12-02 00:00:00,1969-12-01 23:00:00,171,138,111,154,100,99,100,145 +1969-12-02 00:00:00,1969-12-01 23:00:00,115,100,165,0,99,100,101,166 +1969-12-02 00:00:00,1969-12-01 23:00:00,182,182,122,0,100,100,99,125 +1969-12-02 00:00:00,1969-12-01 23:00:00,159,149,158,122,100,101,101,198 +1969-12-02 00:00:00,1969-12-01 23:00:00,165,174,110,178,100,99,99,100 +1969-12-02 00:00:00,1969-12-01 23:00:00,131,181,175,131,99,101,99,119 +1969-12-02 00:00:00,1969-12-01 23:00:00,130,117,138,141,101,100,99,174 +1969-12-02 00:00:00,1969-12-01 23:00:00,145,156,122,186,101,101,100,106 +1969-12-02 00:00:00,1969-12-01 23:00:00,144,160,138,169,101,100,100,131 +1969-12-02 00:00:00,1969-12-01 23:00:00,126,129,126,135,101,100,101,103 +1969-12-02 00:00:00,1969-12-01 23:00:00,196,125,165,193,101,100,99,200 +1969-12-02 00:00:00,1969-12-01 23:00:00,164,200,144,129,99,101,101,118 +1969-12-02 00:00:00,1969-12-01 23:00:00,152,138,188,143,101,100,99,176 +1969-12-02 00:00:00,1969-12-01 23:00:00,113,138,182,171,100,99,100,177 +1969-12-02 00:00:00,1969-12-01 23:00:00,145,114,197,156,100,101,99,168 +1969-12-02 00:00:00,1969-12-01 23:00:00,191,106,136,0,101,100,101,137 +1969-12-02 00:00:00,1969-12-01 23:00:00,188,103,183,181,101,99,101,196 +1969-12-02 00:00:00,1969-12-01 23:00:00,196,189,193,184,101,101,99,167 +1969-12-02 00:00:00,1969-12-01 23:00:00,174,140,113,134,99,99,100,100 +1969-12-02 00:00:00,1969-12-01 23:00:00,187,136,167,116,99,99,99,199 +1969-12-02 00:00:00,1969-12-01 23:00:00,100,153,124,184,99,100,100,179 +1969-12-02 00:00:00,1969-12-01 23:00:00,118,188,193,163,101,101,99,109 +1969-12-02 00:00:00,1969-12-01 23:00:00,185,126,148,169,100,99,100,173 +1969-12-02 00:00:00,1969-12-01 23:00:00,179,110,187,172,100,100,101,103 +1969-12-02 00:00:00,1969-12-01 23:00:00,115,169,124,159,100,100,100,133 +1969-12-02 00:00:00,1969-12-01 23:00:00,106,159,157,109,99,99,99,159 +1969-12-02 00:00:00,1969-12-01 23:00:00,121,153,124,193,99,100,100,177 +1969-12-02 00:00:00,1969-12-01 23:00:00,134,199,189,105,99,100,99,173 +1969-12-02 00:00:00,1969-12-01 23:00:00,117,123,147,163,99,100,99,104 +1969-12-02 00:00:00,1969-12-01 23:00:00,168,194,177,0,99,100,101,135 +1969-12-02 00:00:00,1969-12-01 23:00:00,167,112,150,142,100,99,99,167 +1969-12-02 00:00:00,1969-12-01 23:00:00,193,145,159,149,100,101,101,128 +1969-12-02 00:00:00,1969-12-01 23:00:00,177,184,114,162,101,99,101,163 +1969-12-02 00:00:00,1969-12-01 23:00:00,181,148,125,158,100,100,99,157 +1969-12-02 00:00:00,1969-12-01 23:00:00,176,126,119,180,99,101,100,162 +1969-12-02 00:00:00,1969-12-01 23:00:00,116,154,120,163,100,100,100,101 +1969-12-02 00:00:00,1969-12-01 23:00:00,197,135,149,155,101,101,101,172 +1969-12-02 00:00:00,1969-12-01 23:00:00,137,142,108,160,101,100,100,101 +1969-12-01 00:00:00,1969-11-30 23:00:00,175,128,0,142,100,99,99,124 +1969-12-01 00:00:00,1969-11-30 23:00:00,126,107,0,178,100,99,101,104 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,175,0,163,99,101,101,160 +1969-12-01 00:00:00,1969-11-30 23:00:00,192,152,0,196,99,101,99,200 +1969-12-01 00:00:00,1969-11-30 23:00:00,195,164,0,127,99,100,100,116 +1969-12-01 00:00:00,1969-11-30 23:00:00,184,189,0,120,101,99,101,181 +1969-12-01 00:00:00,1969-11-30 23:00:00,133,193,194,124,101,100,99,141 +1969-12-01 00:00:00,1969-11-30 23:00:00,133,102,134,0,99,99,100,163 +1969-12-01 00:00:00,1969-11-30 23:00:00,118,114,148,159,99,100,99,101 +1969-12-01 00:00:00,1969-11-30 23:00:00,136,195,112,0,101,100,99,144 +1969-12-01 00:00:00,1969-11-30 23:00:00,138,184,186,144,100,100,101,163 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,120,187,175,101,101,100,136 +1969-12-01 00:00:00,1969-11-30 23:00:00,183,157,123,132,99,99,101,123 +1969-12-01 00:00:00,1969-11-30 23:00:00,183,200,114,137,99,101,99,117 +1969-12-01 00:00:00,1969-11-30 23:00:00,106,174,142,153,101,100,99,107 +1969-12-01 00:00:00,1969-11-30 23:00:00,176,102,150,192,100,100,99,108 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,131,149,196,99,101,101,146 +1969-12-01 00:00:00,1969-11-30 23:00:00,141,150,118,133,99,101,100,156 +1969-12-01 00:00:00,1969-11-30 23:00:00,121,180,199,0,101,100,100,116 +1969-12-01 00:00:00,1969-11-30 23:00:00,159,135,160,199,101,99,101,113 +1969-12-01 00:00:00,1969-11-30 23:00:00,176,139,160,116,99,99,101,110 +1969-12-01 00:00:00,1969-11-30 23:00:00,102,102,115,108,99,101,100,160 +1969-12-01 00:00:00,1969-11-30 23:00:00,167,118,157,0,99,101,101,122 +1969-12-01 00:00:00,1969-11-30 23:00:00,176,199,186,111,99,99,100,181 +1969-12-01 00:00:00,1969-11-30 23:00:00,151,174,126,115,101,100,101,147 +1969-12-01 00:00:00,1969-11-30 23:00:00,121,104,101,152,100,100,99,148 +1969-12-01 00:00:00,1969-11-30 23:00:00,121,198,169,0,99,101,99,153 +1969-12-01 00:00:00,1969-11-30 23:00:00,131,109,113,133,101,101,100,128 +1969-12-01 00:00:00,1969-11-30 23:00:00,107,128,178,189,100,99,101,152 +1969-12-01 00:00:00,1969-11-30 23:00:00,134,113,186,114,99,100,99,163 +1969-12-01 00:00:00,1969-11-30 23:00:00,151,188,106,124,99,100,101,129 +1969-12-01 00:00:00,1969-11-30 23:00:00,110,125,129,188,99,99,99,135 +1969-12-01 00:00:00,1969-11-30 23:00:00,125,111,197,145,99,99,99,179 +1969-12-01 00:00:00,1969-11-30 23:00:00,138,192,104,179,99,101,99,185 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,191,151,0,100,99,101,132 +1969-12-01 00:00:00,1969-11-30 23:00:00,180,105,127,106,99,99,101,111 +1969-12-01 00:00:00,1969-11-30 23:00:00,196,161,110,121,100,99,99,112 +1969-12-01 00:00:00,1969-11-30 23:00:00,116,142,168,106,99,101,99,105 +1969-12-01 00:00:00,1969-11-30 23:00:00,175,121,142,165,101,99,101,173 +1969-12-01 00:00:00,1969-11-30 23:00:00,147,106,184,107,99,99,101,192 +1969-12-01 00:00:00,1969-11-30 23:00:00,123,159,164,180,100,100,99,154 +1969-12-01 00:00:00,1969-11-30 23:00:00,106,163,162,146,100,101,100,169 +1969-12-01 00:00:00,1969-11-30 23:00:00,160,119,165,0,100,101,100,191 +1969-12-01 00:00:00,1969-11-30 23:00:00,125,164,141,125,99,101,99,165 +1969-12-01 00:00:00,1969-11-30 23:00:00,120,115,165,180,101,100,99,199 +1969-12-01 00:00:00,1969-11-30 23:00:00,119,170,158,150,101,99,99,117 +1969-12-01 00:00:00,1969-11-30 23:00:00,123,173,121,171,101,101,99,195 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,136,198,0,100,99,99,189 +1969-12-01 00:00:00,1969-11-30 23:00:00,108,149,154,175,99,101,101,145 +1969-12-01 00:00:00,1969-11-30 23:00:00,136,171,116,122,99,99,99,136 +1969-12-01 00:00:00,1969-11-30 23:00:00,173,165,119,184,99,101,100,145 +1969-12-01 00:00:00,1969-11-30 23:00:00,194,125,165,0,101,99,99,159 +1969-12-01 00:00:00,1969-11-30 23:00:00,152,162,145,0,100,100,100,157 +1969-12-01 00:00:00,1969-11-30 23:00:00,189,143,139,154,100,99,100,136 +1969-12-01 00:00:00,1969-11-30 23:00:00,167,148,139,159,100,100,101,191 +1969-12-01 00:00:00,1969-11-30 23:00:00,140,113,103,0,101,100,100,151 +1969-12-01 00:00:00,1969-11-30 23:00:00,176,179,118,103,100,101,99,156 +1969-12-01 00:00:00,1969-11-30 23:00:00,109,123,185,0,99,99,100,103 +1969-12-01 00:00:00,1969-11-30 23:00:00,176,126,105,169,99,99,99,122 +1969-12-01 00:00:00,1969-11-30 23:00:00,154,153,190,108,100,101,101,122 +1969-12-01 00:00:00,1969-11-30 23:00:00,163,179,189,155,99,101,99,161 +1969-12-01 00:00:00,1969-11-30 23:00:00,109,122,199,0,101,99,100,174 +1969-12-01 00:00:00,1969-11-30 23:00:00,116,160,184,151,100,100,101,159 +1969-12-01 00:00:00,1969-11-30 23:00:00,166,154,136,177,100,99,99,150 +1969-12-01 00:00:00,1969-11-30 23:00:00,112,168,194,0,99,99,101,118 +1969-12-01 00:00:00,1969-11-30 23:00:00,178,193,188,183,101,101,100,159 +1969-12-01 00:00:00,1969-11-30 23:00:00,180,126,123,152,99,100,101,151 +1969-12-01 00:00:00,1969-11-30 23:00:00,169,128,200,109,99,101,101,149 +1969-12-01 00:00:00,1969-11-30 23:00:00,153,182,156,140,100,101,101,150 +1969-12-01 00:00:00,1969-11-30 23:00:00,155,110,190,147,101,100,99,144 +1969-12-01 00:00:00,1969-11-30 23:00:00,195,169,136,172,99,99,100,175 +1969-12-01 00:00:00,1969-11-30 23:00:00,172,157,149,177,99,100,100,134 +1969-12-01 00:00:00,1969-11-30 23:00:00,148,136,140,129,101,99,101,143 +1969-12-01 00:00:00,1969-11-30 23:00:00,132,117,110,0,100,99,101,187 +1969-12-01 00:00:00,1969-11-30 23:00:00,162,168,164,185,101,100,101,149 +1969-12-01 00:00:00,1969-11-30 23:00:00,143,168,155,0,99,100,99,170 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,179,178,0,101,101,100,190 +1969-12-01 00:00:00,1969-11-30 23:00:00,199,141,197,160,100,100,99,175 +1969-12-01 00:00:00,1969-11-30 23:00:00,189,113,195,189,101,101,99,193 +1969-12-01 00:00:00,1969-11-30 23:00:00,114,151,149,136,99,99,100,125 +1969-12-01 00:00:00,1969-11-30 23:00:00,190,116,100,180,100,100,101,185 +1969-12-01 00:00:00,1969-11-30 23:00:00,198,182,167,179,101,99,100,167 +1969-12-01 00:00:00,1969-11-30 23:00:00,164,192,176,0,101,99,100,171 +1969-12-01 00:00:00,1969-11-30 23:00:00,199,106,131,0,99,100,100,143 +1969-12-01 00:00:00,1969-11-30 23:00:00,138,124,150,161,99,99,101,152 +1969-12-01 00:00:00,1969-11-30 23:00:00,112,181,188,119,101,100,99,159 +1969-12-01 00:00:00,1969-11-30 23:00:00,107,106,188,0,99,100,99,122 +1969-12-01 00:00:00,1969-11-30 23:00:00,132,122,127,168,99,100,100,153 +1969-12-01 00:00:00,1969-11-30 23:00:00,170,129,183,156,100,101,101,135 +1969-12-01 00:00:00,1969-11-30 23:00:00,148,144,106,141,99,101,101,145 +1969-12-01 00:00:00,1969-11-30 23:00:00,140,166,198,136,99,101,99,154 +1969-12-01 00:00:00,1969-11-30 23:00:00,138,138,156,162,100,100,100,106 +1969-12-01 00:00:00,1969-11-30 23:00:00,126,192,144,137,99,101,100,154 +1969-12-01 00:00:00,1969-11-30 23:00:00,146,158,108,0,100,101,99,168 +1969-12-01 00:00:00,1969-11-30 23:00:00,152,104,137,171,100,101,100,153 +1969-12-01 00:00:00,1969-11-30 23:00:00,106,161,130,140,99,101,101,195 +1969-12-01 00:00:00,1969-11-30 23:00:00,172,145,154,187,99,101,101,119 +1969-12-01 00:00:00,1969-11-30 23:00:00,142,152,171,186,99,100,101,173 +1969-12-01 00:00:00,1969-11-30 23:00:00,128,162,156,160,101,99,99,101 +1969-12-01 00:00:00,1969-11-30 23:00:00,179,164,110,157,100,100,100,168 +1969-12-01 00:00:00,1969-11-30 23:00:00,177,181,136,106,101,101,100,157 +1969-12-01 00:00:00,1969-11-30 23:00:00,172,108,153,0,101,99,101,176 +1969-12-01 00:00:00,1969-11-30 23:00:00,162,120,164,0,101,100,99,178 +1969-12-01 00:00:00,1969-11-30 23:00:00,147,112,200,0,100,99,101,141 +1969-12-01 00:00:00,1969-11-30 23:00:00,151,108,135,112,101,101,100,142 +1969-12-01 00:00:00,1969-11-30 23:00:00,102,125,183,0,100,99,100,127 +1969-12-01 00:00:00,1969-11-30 23:00:00,131,170,168,0,100,99,101,116 +1969-12-01 00:00:00,1969-11-30 23:00:00,120,162,160,195,101,100,99,103 +1969-12-01 00:00:00,1969-11-30 23:00:00,140,105,110,182,99,101,99,182 +1969-12-01 00:00:00,1969-11-30 23:00:00,132,103,147,124,100,101,101,108 +1969-12-01 00:00:00,1969-11-30 23:00:00,188,180,145,0,100,100,100,122 +1969-12-01 00:00:00,1969-11-30 23:00:00,107,111,158,168,99,100,99,190 +1969-12-01 00:00:00,1969-11-30 23:00:00,131,187,168,149,101,100,99,104 +1969-12-01 00:00:00,1969-11-30 23:00:00,122,108,137,101,100,101,100,176 +1969-12-01 00:00:00,1969-11-30 23:00:00,197,159,173,0,99,100,101,106 +1969-12-01 00:00:00,1969-11-30 23:00:00,130,105,127,147,100,99,99,198 +1969-12-01 00:00:00,1969-11-30 23:00:00,107,165,170,180,101,101,101,113 +1969-12-01 00:00:00,1969-11-30 23:00:00,130,182,159,127,99,100,101,186 +1969-12-01 00:00:00,1969-11-30 23:00:00,158,123,149,159,99,99,99,185 +1969-12-01 00:00:00,1969-11-30 23:00:00,141,194,185,124,100,99,101,106 +1969-12-01 00:00:00,1969-11-30 23:00:00,132,153,128,166,99,100,99,103 +1969-12-01 00:00:00,1969-11-30 23:00:00,122,163,146,0,99,99,100,135 +1969-12-01 00:00:00,1969-11-30 23:00:00,174,157,182,135,99,100,100,151 +1969-12-01 00:00:00,1969-11-30 23:00:00,162,105,100,168,101,101,99,153 +1969-12-01 00:00:00,1969-11-30 23:00:00,102,124,180,135,101,99,99,124 +1969-12-01 00:00:00,1969-11-30 23:00:00,187,168,127,0,101,100,101,131 +1969-12-01 00:00:00,1969-11-30 23:00:00,140,199,186,158,100,101,101,110 +1969-12-01 00:00:00,1969-11-30 23:00:00,114,162,150,0,99,100,99,168 +1969-12-01 00:00:00,1969-11-30 23:00:00,119,150,128,168,100,100,100,120 +1969-12-01 00:00:00,1969-11-30 23:00:00,115,179,158,0,99,100,101,125 +1969-12-01 00:00:00,1969-11-30 23:00:00,142,157,122,126,101,99,100,172 +1969-12-01 00:00:00,1969-11-30 23:00:00,113,114,102,0,100,100,100,125 +1969-12-01 00:00:00,1969-11-30 23:00:00,185,115,193,0,101,100,101,194 +1969-12-01 00:00:00,1969-11-30 23:00:00,174,173,117,138,99,100,99,138 +1969-12-01 00:00:00,1969-11-30 23:00:00,164,115,103,160,99,100,101,196 +1969-12-01 00:00:00,1969-11-30 23:00:00,189,148,145,189,99,99,101,116 +1969-12-01 00:00:00,1969-11-30 23:00:00,197,135,133,194,100,99,100,108 +1969-12-01 00:00:00,1969-11-30 23:00:00,179,139,175,0,99,99,99,141 +1969-12-01 00:00:00,1969-11-30 23:00:00,129,153,154,161,100,100,101,176 +1969-12-01 00:00:00,1969-11-30 23:00:00,194,130,120,187,101,100,100,132 +1969-12-01 00:00:00,1969-11-30 23:00:00,141,154,198,175,100,101,99,138 +1969-12-01 00:00:00,1969-11-30 23:00:00,188,132,153,113,99,101,99,134 +1969-12-01 00:00:00,1969-11-30 23:00:00,131,156,107,178,99,100,100,100 +1969-12-01 00:00:00,1969-11-30 23:00:00,200,117,179,0,99,100,101,142 +1969-12-01 00:00:00,1969-11-30 23:00:00,121,197,123,0,100,101,100,151 +1969-12-01 00:00:00,1969-11-30 23:00:00,161,124,192,192,100,100,99,187 +1969-12-01 00:00:00,1969-11-30 23:00:00,102,175,157,161,101,99,99,174 +1969-12-01 00:00:00,1969-11-30 23:00:00,115,186,169,109,99,100,99,110 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,120,104,162,101,100,101,126 +1969-12-01 00:00:00,1969-11-30 23:00:00,192,136,191,170,100,99,100,185 +1969-12-01 00:00:00,1969-11-30 23:00:00,125,193,162,168,101,99,99,147 +1969-12-01 00:00:00,1969-11-30 23:00:00,173,153,127,166,100,101,99,104 +1969-12-01 00:00:00,1969-11-30 23:00:00,112,109,148,0,101,100,101,119 +1969-12-01 00:00:00,1969-11-30 23:00:00,117,104,195,161,99,100,99,103 +1969-12-01 00:00:00,1969-11-30 23:00:00,126,119,171,117,99,99,101,108 +1969-12-01 00:00:00,1969-11-30 23:00:00,114,159,143,184,100,99,99,186 +1969-12-01 00:00:00,1969-11-30 23:00:00,128,129,114,186,99,100,100,193 +1969-12-01 00:00:00,1969-11-30 23:00:00,183,150,133,165,99,100,101,119 +1969-12-01 00:00:00,1969-11-30 23:00:00,105,103,156,111,100,101,99,156 +1969-12-01 00:00:00,1969-11-30 23:00:00,110,115,146,124,101,100,100,159 +1969-12-01 00:00:00,1969-11-30 23:00:00,171,110,100,113,99,100,101,113 +1969-12-01 00:00:00,1969-11-30 23:00:00,100,121,112,178,100,101,99,191 +1969-12-01 00:00:00,1969-11-30 23:00:00,161,135,173,151,99,100,99,146 +1969-12-01 00:00:00,1969-11-30 23:00:00,196,162,138,143,100,99,100,152 +1969-12-01 00:00:00,1969-11-30 23:00:00,182,157,192,170,100,99,101,105 +1969-12-01 00:00:00,1969-11-30 23:00:00,188,142,197,114,101,100,100,166 +1969-12-01 00:00:00,1969-11-30 23:00:00,195,189,161,182,99,100,99,103 +1969-12-01 00:00:00,1969-11-30 23:00:00,176,131,119,114,100,99,99,122 +1969-12-01 00:00:00,1969-11-30 23:00:00,155,200,136,141,101,101,99,175 +1969-12-01 00:00:00,1969-11-30 23:00:00,124,142,102,0,101,99,100,182 +1969-12-01 00:00:00,1969-11-30 23:00:00,151,197,155,0,101,99,100,194 +1969-12-01 00:00:00,1969-11-30 23:00:00,136,101,137,100,100,100,100,115 +1969-12-01 00:00:00,1969-11-30 23:00:00,143,180,114,102,101,101,99,179 +1969-12-01 00:00:00,1969-11-30 23:00:00,144,198,160,121,99,99,99,200 +1969-12-01 00:00:00,1969-11-30 23:00:00,181,101,198,179,101,100,101,163 +1969-12-01 00:00:00,1969-11-30 23:00:00,113,198,121,199,99,99,100,151 +1969-12-01 00:00:00,1969-11-30 23:00:00,158,124,100,166,100,99,101,155 +1969-12-01 00:00:00,1969-11-30 23:00:00,161,191,188,0,99,101,99,185 +1969-12-01 00:00:00,1969-11-30 23:00:00,194,102,151,157,99,101,101,103 +1969-12-01 00:00:00,1969-11-30 23:00:00,175,185,173,182,99,101,99,199 +1969-12-01 00:00:00,1969-11-30 23:00:00,124,192,136,161,99,100,99,173 +1969-12-01 00:00:00,1969-11-30 23:00:00,103,115,186,195,100,101,99,174 +1969-12-01 00:00:00,1969-11-30 23:00:00,178,126,171,0,99,101,99,146 +1969-12-01 00:00:00,1969-11-30 23:00:00,103,147,112,174,101,101,99,122 +1969-12-01 00:00:00,1969-11-30 23:00:00,191,131,197,0,99,99,99,145 +1969-12-01 00:00:00,1969-11-30 23:00:00,151,191,102,135,101,100,101,135 +1969-12-01 00:00:00,1969-11-30 23:00:00,178,195,192,102,101,100,100,190 +1969-12-01 00:00:00,1969-11-30 23:00:00,140,101,155,100,101,100,100,131 +1969-12-01 00:00:00,1969-11-30 23:00:00,146,125,101,168,99,101,101,139 +1969-12-01 00:00:00,1969-11-30 23:00:00,181,133,117,112,101,100,99,108 +1969-12-01 00:00:00,1969-11-30 23:00:00,131,107,124,0,101,101,101,139 +1969-12-01 00:00:00,1969-11-30 23:00:00,162,161,189,127,101,101,99,114 +1969-12-01 00:00:00,1969-11-30 23:00:00,169,169,187,200,101,100,101,126 +1969-12-01 00:00:00,1969-11-30 23:00:00,115,191,182,150,100,99,99,116 +1969-12-01 00:00:00,1969-11-30 23:00:00,141,152,169,187,100,100,101,176 +1969-12-01 00:00:00,1969-11-30 23:00:00,136,178,122,198,100,100,100,126 +1969-12-01 00:00:00,1969-11-30 23:00:00,133,116,163,120,99,100,101,179 +1969-12-01 00:00:00,1969-11-30 23:00:00,105,106,122,0,99,101,99,178 +1969-12-01 00:00:00,1969-11-30 23:00:00,107,141,161,148,101,101,99,152 +1969-12-01 00:00:00,1969-11-30 23:00:00,111,181,187,104,99,101,100,125 diff --git a/tests/e2e_dbt_project/data/validation/numeric_column_anomalies_validation.csv b/tests/e2e_dbt_project/data/validation/numeric_column_anomalies_validation.csv index e69de29bb..2eb2e3978 100644 --- a/tests/e2e_dbt_project/data/validation/numeric_column_anomalies_validation.csv +++ b/tests/e2e_dbt_project/data/validation/numeric_column_anomalies_validation.csv @@ -0,0 +1,201 @@ +updated_at,occurred_at,min_val,max_val,zero_count,zero_percent,average,standard_deviation,variance,sum_val +1969-12-31 00:00:00,1969-12-30 17:00:00,128,235,0,132,110,112,120,343 +1969-12-31 00:00:00,1969-12-30 17:00:00,190,242,0,0,102,111,115,308 +1969-12-31 00:00:00,1969-12-30 17:00:00,172,112,0,0,102,108,116,337 +1969-12-31 00:00:00,1969-12-30 17:00:00,45,272,0,0,101,102,105,393 +1969-12-31 00:00:00,1969-12-30 17:00:00,125,112,0,0,103,111,105,368 +1969-12-31 00:00:00,1969-12-30 17:00:00,150,278,0,0,110,88,117,394 +1969-12-31 00:00:00,1969-12-30 17:00:00,24,294,0,186,103,112,83,397 +1969-12-31 00:00:00,1969-12-30 17:00:00,61,107,0,170,101,82,96,335 +1969-12-31 00:00:00,1969-12-30 17:00:00,50,133,0,126,110,91,114,366 +1969-12-31 00:00:00,1969-12-30 17:00:00,91,153,0,0,102,84,115,377 +1969-12-31 00:00:00,1969-12-30 17:00:00,174,242,0,0,108,93,96,312 +1969-12-31 00:00:00,1969-12-30 17:00:00,95,213,0,104,101,105,120,313 +1969-12-31 00:00:00,1969-12-30 17:00:00,161,105,0,144,109,81,88,350 +1969-12-31 00:00:00,1969-12-30 17:00:00,11,158,0,0,105,96,110,301 +1969-12-31 00:00:00,1969-12-30 17:00:00,103,144,0,180,102,116,97,362 +1969-12-31 00:00:00,1969-12-30 17:00:00,116,249,0,130,104,90,112,395 +1969-12-31 00:00:00,1969-12-30 17:00:00,42,127,0,0,108,103,111,337 +1969-12-31 00:00:00,1969-12-30 17:00:00,162,256,0,0,104,107,83,332 +1969-12-31 00:00:00,1969-12-30 17:00:00,189,136,0,0,104,89,98,313 +1969-12-31 00:00:00,1969-12-30 17:00:00,59,275,0,163,105,117,108,330 +1969-12-31 00:00:00,1969-12-30 17:00:00,195,255,0,0,108,115,84,308 +1969-12-31 00:00:00,1969-12-30 17:00:00,99,254,0,186,102,118,87,399 +1969-12-31 00:00:00,1969-12-30 17:00:00,160,299,0,115,106,101,94,342 +1969-12-31 00:00:00,1969-12-30 17:00:00,70,160,0,193,105,99,98,384 +1969-12-31 00:00:00,1969-12-30 17:00:00,81,176,0,153,103,114,81,334 +1969-12-31 00:00:00,1969-12-30 17:00:00,130,121,0,107,104,98,95,376 +1969-12-31 00:00:00,1969-12-30 17:00:00,22,159,0,0,109,102,95,369 +1969-12-31 00:00:00,1969-12-30 17:00:00,54,246,0,194,109,90,88,383 +1969-12-31 00:00:00,1969-12-30 17:00:00,158,130,0,169,110,85,94,390 +1969-12-31 00:00:00,1969-12-30 17:00:00,189,183,0,138,104,110,97,351 +1969-12-31 00:00:00,1969-12-30 17:00:00,82,291,0,0,107,97,113,386 +1969-12-31 00:00:00,1969-12-30 17:00:00,23,191,0,0,110,92,102,374 +1969-12-31 00:00:00,1969-12-30 17:00:00,158,103,0,0,102,86,109,394 +1969-12-31 00:00:00,1969-12-30 17:00:00,34,267,0,0,109,85,107,339 +1969-12-31 00:00:00,1969-12-30 17:00:00,149,165,0,0,105,112,94,367 +1969-12-31 00:00:00,1969-12-30 17:00:00,143,208,0,145,110,109,116,347 +1969-12-31 00:00:00,1969-12-30 17:00:00,64,109,0,0,104,93,110,310 +1969-12-31 00:00:00,1969-12-30 17:00:00,84,213,0,108,106,99,118,385 +1969-12-31 00:00:00,1969-12-30 17:00:00,118,138,0,0,104,113,119,309 +1969-12-31 00:00:00,1969-12-30 17:00:00,112,274,0,160,105,105,84,335 +1969-12-31 00:00:00,1969-12-30 17:00:00,88,229,0,0,104,107,111,373 +1969-12-31 00:00:00,1969-12-30 17:00:00,45,228,0,106,109,117,87,309 +1969-12-31 00:00:00,1969-12-30 17:00:00,198,118,0,0,108,83,119,329 +1969-12-31 00:00:00,1969-12-30 17:00:00,90,172,0,0,105,84,113,367 +1969-12-31 00:00:00,1969-12-30 17:00:00,107,148,0,0,104,118,100,381 +1969-12-31 00:00:00,1969-12-30 17:00:00,136,270,0,0,108,90,84,339 +1969-12-31 00:00:00,1969-12-30 17:00:00,131,271,0,0,101,108,105,300 +1969-12-31 00:00:00,1969-12-30 17:00:00,146,237,0,0,107,86,106,365 +1969-12-31 00:00:00,1969-12-30 17:00:00,153,120,0,0,109,93,84,348 +1969-12-31 00:00:00,1969-12-30 17:00:00,183,196,0,0,102,94,110,398 +1969-12-31 00:00:00,1969-12-30 17:00:00,69,104,0,144,103,90,92,377 +1969-12-31 00:00:00,1969-12-30 17:00:00,69,184,0,0,101,108,91,349 +1969-12-31 00:00:00,1969-12-30 17:00:00,57,156,0,0,102,87,88,326 +1969-12-31 00:00:00,1969-12-30 17:00:00,157,265,0,139,110,117,103,324 +1969-12-31 00:00:00,1969-12-30 17:00:00,158,145,0,0,102,84,105,327 +1969-12-31 00:00:00,1969-12-30 17:00:00,145,241,0,103,106,115,100,371 +1969-12-31 00:00:00,1969-12-30 17:00:00,92,116,0,118,101,93,89,356 +1969-12-31 00:00:00,1969-12-30 17:00:00,138,283,0,0,103,94,94,370 +1969-12-31 00:00:00,1969-12-30 17:00:00,82,122,0,0,104,100,96,335 +1969-12-31 00:00:00,1969-12-30 17:00:00,103,116,0,0,103,91,82,393 +1969-12-31 00:00:00,1969-12-30 17:00:00,41,275,0,0,106,103,104,314 +1969-12-31 00:00:00,1969-12-30 17:00:00,156,174,0,0,107,110,113,321 +1969-12-31 00:00:00,1969-12-30 17:00:00,192,224,0,142,110,112,105,302 +1969-12-31 00:00:00,1969-12-30 17:00:00,172,201,0,194,110,93,81,307 +1969-12-31 00:00:00,1969-12-30 17:00:00,195,226,0,124,109,110,88,319 +1969-12-31 00:00:00,1969-12-30 17:00:00,196,160,0,133,101,91,114,301 +1969-12-31 00:00:00,1969-12-30 17:00:00,83,232,0,0,105,89,80,305 +1969-12-31 00:00:00,1969-12-30 17:00:00,39,279,0,0,107,110,103,388 +1969-12-31 00:00:00,1969-12-30 17:00:00,67,259,0,0,108,100,85,343 +1969-12-31 00:00:00,1969-12-30 17:00:00,55,275,0,108,110,103,116,343 +1969-12-31 00:00:00,1969-12-30 17:00:00,80,262,0,142,105,109,80,370 +1969-12-31 00:00:00,1969-12-30 17:00:00,27,209,0,198,101,104,88,369 +1969-12-31 00:00:00,1969-12-30 17:00:00,131,229,0,149,106,101,105,393 +1969-12-31 00:00:00,1969-12-30 17:00:00,123,120,0,0,104,99,95,309 +1969-12-31 00:00:00,1969-12-30 17:00:00,54,141,0,0,101,110,93,374 +1969-12-31 00:00:00,1969-12-30 17:00:00,73,222,0,196,109,84,101,304 +1969-12-31 00:00:00,1969-12-30 17:00:00,111,225,0,154,108,114,102,357 +1969-12-31 00:00:00,1969-12-30 17:00:00,33,235,0,0,105,82,118,396 +1969-12-31 00:00:00,1969-12-30 17:00:00,54,202,0,0,107,97,98,326 +1969-12-31 00:00:00,1969-12-30 17:00:00,63,111,0,0,103,104,118,348 +1969-12-31 00:00:00,1969-12-30 17:00:00,192,157,0,102,108,116,96,351 +1969-12-31 00:00:00,1969-12-30 17:00:00,18,195,0,0,102,83,88,313 +1969-12-31 00:00:00,1969-12-30 17:00:00,127,277,0,138,108,119,83,397 +1969-12-31 00:00:00,1969-12-30 17:00:00,19,268,0,170,110,113,111,352 +1969-12-31 00:00:00,1969-12-30 17:00:00,123,160,0,177,109,87,110,399 +1969-12-31 00:00:00,1969-12-30 17:00:00,133,265,0,192,102,98,118,400 +1969-12-31 00:00:00,1969-12-30 17:00:00,107,208,0,0,102,106,117,352 +1969-12-31 00:00:00,1969-12-30 17:00:00,39,238,0,145,110,99,117,337 +1969-12-31 00:00:00,1969-12-30 17:00:00,63,194,0,183,104,95,84,324 +1969-12-31 00:00:00,1969-12-30 17:00:00,114,289,0,0,104,112,86,381 +1969-12-31 00:00:00,1969-12-30 17:00:00,14,231,0,136,104,97,119,380 +1969-12-31 00:00:00,1969-12-30 17:00:00,173,253,0,183,106,114,85,346 +1969-12-31 00:00:00,1969-12-30 17:00:00,179,134,0,0,108,105,81,385 +1969-12-31 00:00:00,1969-12-30 17:00:00,10,265,0,180,103,105,116,371 +1969-12-31 00:00:00,1969-12-30 17:00:00,67,113,0,106,106,104,97,307 +1969-12-31 00:00:00,1969-12-30 17:00:00,42,281,0,0,110,91,113,379 +1969-12-31 00:00:00,1969-12-30 17:00:00,27,294,0,115,105,118,105,357 +1969-12-31 00:00:00,1969-12-30 17:00:00,117,261,0,0,108,104,101,342 +1969-12-31 00:00:00,1969-12-30 17:00:00,71,237,0,0,102,90,88,397 +1969-12-31 00:00:00,1969-12-30 17:00:00,102,285,0,0,109,96,120,350 +1969-12-31 00:00:00,1969-12-30 17:00:00,170,253,0,0,103,92,84,330 +1969-12-31 00:00:00,1969-12-30 17:00:00,117,283,0,123,109,86,98,381 +1969-12-31 00:00:00,1969-12-30 17:00:00,181,267,0,185,102,102,116,382 +1969-12-31 00:00:00,1969-12-30 17:00:00,70,116,0,0,104,115,115,381 +1969-12-31 00:00:00,1969-12-30 17:00:00,14,257,0,179,110,84,110,352 +1969-12-31 00:00:00,1969-12-30 17:00:00,28,124,0,0,110,113,107,322 +1969-12-31 00:00:00,1969-12-30 17:00:00,98,229,0,0,101,112,105,377 +1969-12-31 00:00:00,1969-12-30 17:00:00,98,245,0,155,104,93,102,302 +1969-12-31 00:00:00,1969-12-30 17:00:00,87,245,0,0,106,96,105,380 +1969-12-31 00:00:00,1969-12-30 17:00:00,67,210,0,0,109,119,81,318 +1969-12-31 00:00:00,1969-12-30 17:00:00,92,297,0,123,106,111,90,390 +1969-12-31 00:00:00,1969-12-30 17:00:00,184,119,0,121,109,106,93,323 +1969-12-31 00:00:00,1969-12-30 17:00:00,183,276,0,174,108,85,117,380 +1969-12-31 00:00:00,1969-12-30 17:00:00,151,108,0,142,101,99,120,319 +1969-12-31 00:00:00,1969-12-30 17:00:00,73,191,0,192,107,102,120,361 +1969-12-31 00:00:00,1969-12-30 17:00:00,116,268,0,0,105,116,82,382 +1969-12-31 00:00:00,1969-12-30 17:00:00,118,283,0,0,107,100,117,302 +1969-12-31 00:00:00,1969-12-30 17:00:00,164,149,0,0,101,91,113,313 +1969-12-31 00:00:00,1969-12-30 17:00:00,155,106,0,0,103,92,94,367 +1969-12-31 00:00:00,1969-12-30 17:00:00,179,149,0,168,104,114,106,376 +1969-12-31 00:00:00,1969-12-30 17:00:00,115,276,0,0,108,97,119,339 +1969-12-31 00:00:00,1969-12-30 17:00:00,10,207,0,0,106,114,92,316 +1969-12-31 00:00:00,1969-12-30 17:00:00,78,220,0,0,104,119,109,330 +1969-12-31 00:00:00,1969-12-30 17:00:00,148,215,0,119,101,118,82,324 +1969-12-31 00:00:00,1969-12-30 17:00:00,133,295,0,0,101,87,96,336 +1969-12-31 00:00:00,1969-12-30 17:00:00,66,210,0,0,104,100,107,334 +1969-12-31 00:00:00,1969-12-30 17:00:00,34,167,0,0,106,91,96,370 +1969-12-31 00:00:00,1969-12-30 17:00:00,172,274,0,0,109,97,120,397 +1969-12-31 00:00:00,1969-12-30 17:00:00,106,247,0,0,104,112,120,307 +1969-12-31 00:00:00,1969-12-30 17:00:00,74,217,0,0,104,113,97,355 +1969-12-31 00:00:00,1969-12-30 17:00:00,135,229,0,151,108,98,99,392 +1969-12-31 00:00:00,1969-12-30 17:00:00,112,210,0,0,104,103,120,396 +1969-12-31 00:00:00,1969-12-30 17:00:00,92,108,0,0,110,111,89,371 +1969-12-31 00:00:00,1969-12-30 17:00:00,70,294,0,0,109,99,106,345 +1969-12-31 00:00:00,1969-12-30 17:00:00,96,151,0,0,102,109,92,329 +1969-12-31 00:00:00,1969-12-30 17:00:00,143,141,0,116,105,116,97,337 +1969-12-31 00:00:00,1969-12-30 17:00:00,59,188,0,0,106,89,87,344 +1969-12-31 00:00:00,1969-12-30 17:00:00,199,236,0,0,106,97,80,317 +1969-12-31 00:00:00,1969-12-30 17:00:00,182,121,0,198,107,109,120,344 +1969-12-31 00:00:00,1969-12-30 17:00:00,156,120,0,0,110,109,120,333 +1969-12-31 00:00:00,1969-12-30 17:00:00,122,173,0,0,105,114,120,343 +1969-12-31 00:00:00,1969-12-30 17:00:00,190,156,0,115,106,114,81,368 +1969-12-31 00:00:00,1969-12-30 17:00:00,25,237,0,169,109,103,86,386 +1969-12-31 00:00:00,1969-12-30 17:00:00,95,164,0,131,108,105,117,302 +1969-12-31 00:00:00,1969-12-30 17:00:00,57,189,0,0,109,117,117,309 +1969-12-31 00:00:00,1969-12-30 17:00:00,20,295,0,0,110,109,93,366 +1969-12-31 00:00:00,1969-12-30 17:00:00,179,182,0,0,110,88,91,346 +1969-12-31 00:00:00,1969-12-30 17:00:00,141,213,0,152,109,101,114,350 +1969-12-31 00:00:00,1969-12-30 17:00:00,23,126,0,0,110,86,102,385 +1969-12-31 00:00:00,1969-12-30 17:00:00,185,103,0,0,109,89,118,395 +1969-12-31 00:00:00,1969-12-30 17:00:00,18,226,0,113,103,85,85,352 +1969-12-31 00:00:00,1969-12-30 17:00:00,199,125,0,0,108,93,102,321 +1969-12-31 00:00:00,1969-12-30 17:00:00,62,130,0,156,107,118,96,337 +1969-12-31 00:00:00,1969-12-30 17:00:00,172,234,0,109,110,108,114,360 +1969-12-31 00:00:00,1969-12-30 17:00:00,178,188,0,142,106,86,103,345 +1969-12-31 00:00:00,1969-12-30 17:00:00,32,111,0,0,108,106,80,354 +1969-12-31 00:00:00,1969-12-30 17:00:00,181,255,0,0,103,95,119,315 +1969-12-31 00:00:00,1969-12-30 17:00:00,135,150,0,0,107,80,110,360 +1969-12-31 00:00:00,1969-12-30 17:00:00,183,211,0,0,107,110,111,357 +1969-12-31 00:00:00,1969-12-30 17:00:00,87,296,0,0,108,91,96,339 +1969-12-31 00:00:00,1969-12-30 17:00:00,153,230,0,0,103,109,82,370 +1969-12-31 00:00:00,1969-12-30 17:00:00,133,201,0,187,109,109,86,368 +1969-12-31 00:00:00,1969-12-30 17:00:00,69,247,0,111,101,97,92,330 +1969-12-31 00:00:00,1969-12-30 17:00:00,19,155,0,0,108,107,85,387 +1969-12-31 00:00:00,1969-12-30 17:00:00,19,143,0,0,109,93,115,337 +1969-12-31 00:00:00,1969-12-30 17:00:00,170,246,0,127,109,100,89,329 +1969-12-31 00:00:00,1969-12-30 17:00:00,85,260,0,0,109,103,104,390 +1969-12-31 00:00:00,1969-12-30 17:00:00,42,291,0,176,107,114,113,350 +1969-12-31 00:00:00,1969-12-30 17:00:00,62,168,0,0,102,96,101,324 +1969-12-31 00:00:00,1969-12-30 17:00:00,185,112,0,0,104,99,102,362 +1969-12-31 00:00:00,1969-12-30 17:00:00,126,168,0,156,105,91,96,387 +1969-12-31 00:00:00,1969-12-30 17:00:00,99,108,0,0,110,109,84,362 +1969-12-31 00:00:00,1969-12-30 17:00:00,29,254,0,0,103,95,108,328 +1969-12-31 00:00:00,1969-12-30 17:00:00,40,235,0,0,102,85,81,389 +1969-12-31 00:00:00,1969-12-30 17:00:00,101,168,0,126,102,90,89,372 +1969-12-31 00:00:00,1969-12-30 17:00:00,124,222,0,167,102,103,113,372 +1969-12-31 00:00:00,1969-12-30 17:00:00,149,103,0,148,104,94,113,374 +1969-12-31 00:00:00,1969-12-30 17:00:00,162,244,0,147,110,102,95,364 +1969-12-31 00:00:00,1969-12-30 17:00:00,72,189,0,0,102,84,92,333 +1969-12-31 00:00:00,1969-12-30 17:00:00,10,212,0,0,102,81,117,367 +1969-12-31 00:00:00,1969-12-30 17:00:00,78,149,0,125,103,113,108,397 +1969-12-31 00:00:00,1969-12-30 17:00:00,64,275,0,0,107,95,96,388 +1969-12-31 00:00:00,1969-12-30 17:00:00,189,153,0,0,104,94,81,323 +1969-12-31 00:00:00,1969-12-30 17:00:00,20,182,0,0,109,105,87,349 +1969-12-31 00:00:00,1969-12-30 17:00:00,86,290,0,0,106,82,112,308 +1969-12-31 00:00:00,1969-12-30 17:00:00,38,207,0,0,108,102,116,360 +1969-12-31 00:00:00,1969-12-30 17:00:00,42,232,0,0,109,85,98,303 +1969-12-31 00:00:00,1969-12-30 17:00:00,62,300,0,0,105,96,85,368 +1969-12-31 00:00:00,1969-12-30 17:00:00,111,107,0,0,105,114,106,329 +1969-12-31 00:00:00,1969-12-30 17:00:00,181,265,0,0,108,88,97,305 +1969-12-31 00:00:00,1969-12-30 17:00:00,68,192,0,0,103,88,91,344 +1969-12-31 00:00:00,1969-12-30 17:00:00,182,135,0,127,101,94,102,309 +1969-12-31 00:00:00,1969-12-30 17:00:00,51,300,0,0,104,109,98,347 +1969-12-31 00:00:00,1969-12-30 17:00:00,55,164,0,0,103,83,81,330 +1969-12-31 00:00:00,1969-12-30 17:00:00,155,174,0,178,101,98,97,343 +1969-12-31 00:00:00,1969-12-30 17:00:00,191,216,0,0,106,110,89,322 +1969-12-31 00:00:00,1969-12-30 17:00:00,50,248,0,195,108,109,86,321 +1969-12-31 00:00:00,1969-12-30 17:00:00,188,300,0,198,106,102,111,306 +1969-12-31 00:00:00,1969-12-30 17:00:00,13,272,0,0,103,92,101,330 +1969-12-31 00:00:00,1969-12-30 17:00:00,33,233,0,146,102,105,95,349 diff --git a/tests/e2e_dbt_project/dbt_project.yml b/tests/e2e_dbt_project/dbt_project.yml index a3a2d135d..4562c2c20 100644 --- a/tests/e2e_dbt_project/dbt_project.yml +++ b/tests/e2e_dbt_project/dbt_project.yml @@ -27,5 +27,9 @@ seeds: +schema: test_seeds models: + elementary_integration_tests: + +file_format: "{{ 'delta' if target.type == 'spark' else none }}" + elementary: +schema: elementary + +file_format: "{{ 'delta' if target.type == 'spark' else none }}" diff --git a/tests/e2e_dbt_project/docker-compose.yml b/tests/e2e_dbt_project/docker-compose.yml index 97a3152ac..47b4c4bb7 100644 --- a/tests/e2e_dbt_project/docker-compose.yml +++ b/tests/e2e_dbt_project/docker-compose.yml @@ -7,27 +7,296 @@ services: - "127.0.0.1:5432:5432" command: postgres -c max_connections=500 environment: - POSTGRES_USER: admin - POSTGRES_PASSWORD: admin + POSTGRES_USER: ${POSTGRES_USER:-admin} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-admin} volumes: - postgres:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-admin}"] + interval: 5s + timeout: 5s + retries: 10 clickhouse: - image: clickhouse/clickhouse-server:latest + image: clickhouse/clickhouse-server:24.3 container_name: clickhouse ports: - "8123:8123" - "9000:9000" volumes: - - ./clickhouse-data:/var/lib/clickhouse + - clickhouse-data:/var/lib/clickhouse environment: CLICKHOUSE_DB: default CLICKHOUSE_USER: default - CLICKHOUSE_PASSWORD: "default" + CLICKHOUSE_PASSWORD: ${CLICKHOUSE_PASSWORD:-default} ulimits: nofile: soft: 262144 hard: 262144 + healthcheck: + test: ["CMD-SHELL", "curl -sf http://localhost:8123/ping"] + interval: 5s + timeout: 5s + retries: 10 + + # ── Trino (with Iceberg + Hive Metastore + MinIO) ────────────────── + trino: + image: "trinodb/trino:439" + ports: + - "8086:8080" + volumes: + - ./docker/trino/etc:/usr/lib/trino/etc:ro + - ./docker/trino/catalog:/etc/trino/catalog + depends_on: + hive-metastore: + condition: service_healthy + trino-mc-job: + condition: service_completed_successfully + healthcheck: + test: + [ + "CMD-SHELL", + 'curl -sf http://localhost:8080/v1/info | grep -q ''"starting":false''', + ] + interval: 5s + timeout: 5s + retries: 60 + start_period: 10s + + trino-metastore-db: + image: postgres:11 + hostname: metastore_db + environment: + POSTGRES_USER: ${HIVE_METASTORE_USER:-hive} + POSTGRES_PASSWORD: ${HIVE_METASTORE_PASSWORD:-hive} + POSTGRES_DB: metastore + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${HIVE_METASTORE_USER:-hive}"] + interval: 5s + timeout: 5s + retries: 10 + + hive-metastore: + hostname: hive-metastore + image: "starburstdata/hive:3.1.2-e.18" + ports: + - "9083:9083" + environment: + HIVE_METASTORE_DRIVER: org.postgresql.Driver + HIVE_METASTORE_JDBC_URL: jdbc:postgresql://metastore_db:5432/metastore + HIVE_METASTORE_USER: ${HIVE_METASTORE_USER:-hive} + HIVE_METASTORE_PASSWORD: ${HIVE_METASTORE_PASSWORD:-hive} + HIVE_METASTORE_WAREHOUSE_DIR: s3://datalake/ + S3_ENDPOINT: http://trino-minio:9000 + S3_ACCESS_KEY: ${TRINO_MINIO_ACCESS_KEY:-minio} + S3_SECRET_KEY: ${TRINO_MINIO_SECRET_KEY:-minio123} + S3_PATH_STYLE_ACCESS: "true" + REGION: "" + GOOGLE_CLOUD_KEY_FILE_PATH: "" + AZURE_ADL_CLIENT_ID: "" + AZURE_ADL_CREDENTIAL: "" + AZURE_ADL_REFRESH_URL: "" + AZURE_ABFS_STORAGE_ACCOUNT: "" + AZURE_ABFS_ACCESS_KEY: "" + AZURE_WASB_STORAGE_ACCOUNT: "" + AZURE_ABFS_OAUTH: "" + AZURE_ABFS_OAUTH_TOKEN_PROVIDER: "" + AZURE_ABFS_OAUTH_CLIENT_ID: "" + AZURE_ABFS_OAUTH_SECRET: "" + AZURE_ABFS_OAUTH_ENDPOINT: "" + AZURE_WASB_ACCESS_KEY: "" + HIVE_METASTORE_USERS_IN_ADMIN_ROLE: "admin" + depends_on: + trino-metastore-db: + condition: service_healthy + trino-minio: + condition: service_healthy + healthcheck: + test: ["CMD-SHELL", "bash -c 'echo > /dev/tcp/localhost/9083'"] + interval: 10s + timeout: 5s + retries: 60 + start_period: 60s + + trino-minio: + hostname: minio + image: "minio/minio:RELEASE.2022-05-26T05-48-41Z" + ports: + - "9002:9000" + - "9003:9001" + environment: + MINIO_ACCESS_KEY: ${TRINO_MINIO_ACCESS_KEY:-minio} + MINIO_SECRET_KEY: ${TRINO_MINIO_SECRET_KEY:-minio123} + command: server /data --console-address ":9001" + healthcheck: + test: ["CMD-SHELL", "curl -sf http://localhost:9000/minio/health/live"] + interval: 5s + timeout: 5s + retries: 10 + + trino-mc-job: + image: "minio/mc:RELEASE.2022-05-09T04-08-26Z" + entrypoint: | + /bin/bash -c " + until /usr/bin/mc config --quiet host add myminio http://minio:9000 $${TRINO_MINIO_ACCESS_KEY:-minio} $${TRINO_MINIO_SECRET_KEY:-minio123}; do + sleep 2; + done; + /usr/bin/mc mb --quiet --ignore-existing myminio/datalake + " + depends_on: + trino-minio: + condition: service_healthy + + # ── Dremio (with Nessie + MinIO) ─────────────────────────────────── + nessie: + image: ghcr.io/projectnessie/nessie:0.80.0 + container_name: catalog + networks: + - dremio-lakehouse + ports: + - "19120:19120" + healthcheck: + test: + ["CMD-SHELL", "curl -sf http://localhost:19120/api/v2/config || exit 1"] + interval: 5s + timeout: 5s + retries: 10 + + dremio-minio: + image: minio/minio:RELEASE.2024-01-18T22-51-28Z + container_name: dremio-storage + environment: + - MINIO_ROOT_USER=${DREMIO_MINIO_ROOT_USER:-admin} + - MINIO_ROOT_PASSWORD=${DREMIO_MINIO_ROOT_PASSWORD:-password} + - MINIO_DOMAIN=storage + - MINIO_REGION_NAME=us-east-1 + - MINIO_REGION=us-east-1 + networks: + - dremio-lakehouse + ports: + - "9004:9000" + - "9005:9001" + command: ["server", "/data", "--console-address", ":9001"] + volumes: + - dremio-minio-data:/data + healthcheck: + test: ["CMD-SHELL", "bash -c 'echo > /dev/tcp/localhost/9000'"] + interval: 5s + timeout: 5s + retries: 10 + + dremio-minio-setup: + image: minio/mc:RELEASE.2024-01-18T07-03-39Z + container_name: dremio-minio-setup + depends_on: + dremio-minio: + condition: service_healthy + entrypoint: > + /bin/sh -c " + mc alias set myminio http://dremio-storage:9000 $${DREMIO_MINIO_ROOT_USER:-admin} $${DREMIO_MINIO_ROOT_PASSWORD:-password}; + mc mb --ignore-existing myminio/datalake; + mc ls myminio; + " + networks: + - dremio-lakehouse + + dremio: + image: dremio/dremio-oss:25.1.0 + platform: linux/amd64 + ports: + - "9047:9047" + - "31010:31010" + - "32010:32010" + - "45678:45678" + container_name: dremio + environment: + - DREMIO_JAVA_SERVER_EXTRA_OPTS=-Dpaths.dist=file:///opt/dremio/data/dist -Ddebug.addDefaultUser=true + - SERVICES_COORDINATOR_ENABLED=true + - SERVICES_EXECUTOR_ENABLED=true + networks: + - dremio-lakehouse + volumes: + - dremio-data:/opt/dremio/data:rw + user: "0" + healthcheck: + test: ["CMD-SHELL", "curl -sf http://localhost:9047 || exit 1"] + interval: 5s + timeout: 5s + retries: 60 + start_period: 15s + + dremio-setup: + image: alpine:3.19 + container_name: dremio-setup + depends_on: + dremio: + condition: service_healthy + nessie: + condition: service_healthy + dremio-minio-setup: + condition: service_completed_successfully + environment: + DREMIO_USER: ${DREMIO_USER:-dremio} + DREMIO_PASS: ${DREMIO_PASS:-dremio123} + MINIO_ROOT_USER: ${DREMIO_MINIO_ROOT_USER:-admin} + MINIO_ROOT_PASSWORD: ${DREMIO_MINIO_ROOT_PASSWORD:-password} + volumes: + - ./docker/dremio/dremio-setup.sh:/dremio-setup.sh + command: sh /dremio-setup.sh + networks: + - dremio-lakehouse + + # ── Spark Thrift Server (with Delta Lake + Hive Metastore) ───────── + spark-thrift: + container_name: spark-thrift + build: + context: ./docker/spark + dockerfile: Dockerfile + ports: + - "10000:10000" + - "4040:4040" + depends_on: + spark-hive-metastore: + condition: service_healthy + command: > + --class org.apache.spark.sql.hive.thriftserver.HiveThriftServer2 + --name Thrift JDBC/ODBC Server + healthcheck: + test: ["CMD-SHELL", "nc -z localhost 10000"] + interval: 10s + timeout: 5s + retries: 20 + start_period: 30s + user: "0" + volumes: + - spark-warehouse:/spark-warehouse/ + - ./docker/spark/hive-site.xml:/usr/spark/conf/hive-site.xml + - ./docker/spark/spark-defaults.conf:/usr/spark/conf/spark-defaults.conf + - ./data:/seed-data:ro + environment: + - WAIT_FOR=spark-hive-metastore:5432 + + spark-hive-metastore: + image: postgres:15-alpine + volumes: + - spark-hive-metastore:/var/lib/postgresql/data + environment: + - POSTGRES_USER=${SPARK_METASTORE_USER:-dbt} + - POSTGRES_PASSWORD=${SPARK_METASTORE_PASSWORD:-dbt} + - POSTGRES_DB=metastore + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${SPARK_METASTORE_USER:-dbt}"] + interval: 5s + timeout: 5s + retries: 10 + +networks: + dremio-lakehouse: volumes: postgres: + clickhouse-data: + dremio-data: + dremio-minio-data: + spark-warehouse: + spark-hive-metastore: diff --git a/tests/e2e_dbt_project/docker/dremio/dremio-setup.sh b/tests/e2e_dbt_project/docker/dremio/dremio-setup.sh new file mode 100644 index 000000000..eb77d9210 --- /dev/null +++ b/tests/e2e_dbt_project/docker/dremio/dremio-setup.sh @@ -0,0 +1,51 @@ +#!/bin/sh +set -e + +# Install required tools +apk add --no-cache curl jq + +# Wait for Dremio to be ready (bounded to avoid CI hangs) +max_attempts=60 +attempt=1 +until curl --silent --fail --max-time 3 http://dremio:9047 >/dev/null; do + if [ "$attempt" -ge "$max_attempts" ]; then + echo "Dremio did not become ready after $max_attempts attempts" >&2 + exit 1 + fi + echo "Waiting for Dremio... ($attempt/$max_attempts)" + sleep 5 + attempt=$((attempt + 1)) +done + +echo "Dremio is up. Proceeding with configuration..." + +# Log in to Dremio to get the auth token +# Credentials are passed via environment variables from docker-compose.yml +DREMIO_USER="${DREMIO_USER:-dremio}" +DREMIO_PASS="${DREMIO_PASS:-dremio123}" +AUTH_TOKEN=$(curl -s -X POST "http://dremio:9047/apiv2/login" \ + -H "Content-Type: application/json" \ + --data "{\"userName\":\"$DREMIO_USER\", \"password\":\"$DREMIO_PASS\"}" | jq -r '.token // empty') + +# Check if AUTH_TOKEN is not empty or null +if [ -z "$AUTH_TOKEN" ] || [ "$AUTH_TOKEN" = "null" ]; then + echo "Failed to obtain Dremio auth token" + exit 1 +fi + +echo "Obtained Dremio auth token" + +# Create a Nessie catalog source in Dremio (used as "database" for views) +HTTP_CODE=$(curl -s -o /tmp/dremio_source_response.json -w "%{http_code}" -X PUT "http://dremio:9047/apiv2/source/NessieSource" \ + -H "Content-Type: application/json" \ + -H "Authorization: _dremio$AUTH_TOKEN" \ + --data "{\"name\":\"NessieSource\",\"config\":{\"nessieEndpoint\":\"http://catalog:19120/api/v2\",\"nessieAuthType\":\"NONE\",\"credentialType\":\"ACCESS_KEY\",\"awsAccessKey\":\"${MINIO_ROOT_USER:-admin}\",\"awsAccessSecret\":\"${MINIO_ROOT_PASSWORD:-password}\",\"awsRootPath\":\"datalake\",\"secure\":false,\"propertyList\":[{\"name\":\"fs.s3a.path.style.access\",\"value\":\"true\"},{\"name\":\"fs.s3a.endpoint\",\"value\":\"dremio-storage:9000\"},{\"name\":\"dremio.s3.compat\",\"value\":\"true\"}]},\"type\":\"NESSIE\",\"metadataPolicy\":{\"deleteUnavailableDatasets\":true,\"autoPromoteDatasets\":false,\"namesRefreshMillis\":3600000,\"datasetDefinitionRefreshAfterMillis\":3600000,\"datasetDefinitionExpireAfterMillis\":10800000,\"authTTLMillis\":86400000,\"updateMode\":\"PREFETCH_QUERIED\"}}") + + +if [ "$HTTP_CODE" -lt 200 ] || [ "$HTTP_CODE" -ge 300 ]; then + echo "Failed to create Nessie Source in Dremio (HTTP $HTTP_CODE)" + cat /tmp/dremio_source_response.json + exit 1 +fi + +echo "Nessie Source created in Dremio" diff --git a/tests/e2e_dbt_project/docker/spark/Dockerfile b/tests/e2e_dbt_project/docker/spark/Dockerfile new file mode 100644 index 000000000..aab2ab394 --- /dev/null +++ b/tests/e2e_dbt_project/docker/spark/Dockerfile @@ -0,0 +1,33 @@ +ARG OPENJDK_VERSION=8 +FROM eclipse-temurin:${OPENJDK_VERSION}-jre + +ARG SPARK_VERSION=3.3.2 +ARG HADOOP_VERSION=3 +ARG DELTA_VERSION=2.2.0 + +ENV SPARK_HOME /usr/spark +ENV PATH="/usr/spark/bin:/usr/spark/sbin:${PATH}" + +RUN apt-get update && \ + apt-get install -y --no-install-recommends wget netcat-openbsd procps libpostgresql-jdbc-java && \ + wget -q "https://archive.apache.org/dist/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz" && \ + tar xzf "spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz" && \ + rm "spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz" && \ + mv "spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}" /usr/spark && \ + ln -s /usr/share/java/postgresql-jdbc4.jar /usr/spark/jars/postgresql-jdbc4.jar && \ + wget -q "https://repo1.maven.org/maven2/io/delta/delta-core_2.12/${DELTA_VERSION}/delta-core_2.12-${DELTA_VERSION}.jar" \ + -P /usr/spark/jars/ && \ + wget -q "https://repo1.maven.org/maven2/io/delta/delta-storage/${DELTA_VERSION}/delta-storage-${DELTA_VERSION}.jar" \ + -P /usr/spark/jars/ && \ + apt-get remove -y wget && \ + apt-get autoremove -y && \ + apt-get clean + +COPY entrypoint.sh /scripts/ +RUN chmod +x /scripts/entrypoint.sh && \ + groupadd -r spark && useradd -r -g spark -m spark && \ + chown -R spark:spark /usr/spark /scripts + +USER spark +ENTRYPOINT ["/scripts/entrypoint.sh"] +CMD ["--help"] diff --git a/tests/e2e_dbt_project/docker/spark/entrypoint.sh b/tests/e2e_dbt_project/docker/spark/entrypoint.sh new file mode 100644 index 000000000..36b8174c9 --- /dev/null +++ b/tests/e2e_dbt_project/docker/spark/entrypoint.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +if [ -n "$WAIT_FOR" ]; then + WAIT_FOR_TIMEOUT_SECONDS="${WAIT_FOR_TIMEOUT_SECONDS:-180}" + IFS=';' read -a HOSTPORT_ARRAY <<< "$WAIT_FOR" + for HOSTPORT in "${HOSTPORT_ARRAY[@]}" + do + WAIT_FOR_HOST=${HOSTPORT%:*} + WAIT_FOR_PORT=${HOSTPORT#*:} + START_TS=$(date +%s) + + echo Waiting for $WAIT_FOR_HOST to listen on $WAIT_FOR_PORT... + while ! nc -z "$WAIT_FOR_HOST" "$WAIT_FOR_PORT"; do + if [ $(( $(date +%s) - START_TS )) -ge "$WAIT_FOR_TIMEOUT_SECONDS" ]; then + echo "Timed out waiting for $WAIT_FOR_HOST:$WAIT_FOR_PORT after ${WAIT_FOR_TIMEOUT_SECONDS}s" + exit 1 + fi + sleep 2 + done + done +fi + +exec spark-submit "$@" diff --git a/tests/e2e_dbt_project/docker/spark/hive-site.xml b/tests/e2e_dbt_project/docker/spark/hive-site.xml new file mode 100644 index 000000000..de4e50685 --- /dev/null +++ b/tests/e2e_dbt_project/docker/spark/hive-site.xml @@ -0,0 +1,26 @@ + + + javax.jdo.option.ConnectionURL + jdbc:postgresql://spark-hive-metastore/metastore + + + + javax.jdo.option.ConnectionDriverName + org.postgresql.Driver + + + + javax.jdo.option.ConnectionUserName + dbt + + + + javax.jdo.option.ConnectionPassword + dbt + + + + hive.metastore.schema.verification + false + + diff --git a/tests/e2e_dbt_project/docker/spark/spark-defaults.conf b/tests/e2e_dbt_project/docker/spark/spark-defaults.conf new file mode 100644 index 000000000..80caa2162 --- /dev/null +++ b/tests/e2e_dbt_project/docker/spark/spark-defaults.conf @@ -0,0 +1,14 @@ +spark.driver.memory 2g +spark.executor.memory 2g +spark.executor.cores 1 +spark.hadoop.datanucleus.autoCreateTables true +spark.hadoop.datanucleus.schema.autoCreateTables true +spark.hadoop.datanucleus.fixedDatastore false +spark.serializer org.apache.spark.serializer.KryoSerializer +spark.driver.userClassPathFirst true +spark.sql.extensions io.delta.sql.DeltaSparkSessionExtension +spark.sql.catalog.spark_catalog org.apache.spark.sql.delta.catalog.DeltaCatalog +spark.sql.shuffle.partitions 2 +spark.default.parallelism 2 +spark.ui.enabled false +spark.sql.adaptive.enabled true diff --git a/tests/e2e_dbt_project/docker/trino/catalog/iceberg.properties b/tests/e2e_dbt_project/docker/trino/catalog/iceberg.properties new file mode 100644 index 000000000..c43f07e7f --- /dev/null +++ b/tests/e2e_dbt_project/docker/trino/catalog/iceberg.properties @@ -0,0 +1,9 @@ +connector.name=iceberg +hive.metastore.uri=thrift://hive-metastore:9083 +hive.s3.endpoint=http://minio:9000 +hive.s3.path-style-access=true +hive.s3.aws-access-key=minio +hive.s3.aws-secret-key=minio123 +hive.metastore-cache-ttl=0s +hive.metastore-refresh-interval=5s +hive.metastore-timeout=60s diff --git a/tests/e2e_dbt_project/docker/trino/catalog/memory.properties b/tests/e2e_dbt_project/docker/trino/catalog/memory.properties new file mode 100644 index 000000000..56b3b5e6a --- /dev/null +++ b/tests/e2e_dbt_project/docker/trino/catalog/memory.properties @@ -0,0 +1,2 @@ +connector.name=memory +memory.max-data-per-node=128MB diff --git a/tests/e2e_dbt_project/docker/trino/etc/config.properties b/tests/e2e_dbt_project/docker/trino/etc/config.properties new file mode 100644 index 000000000..0b4b617ce --- /dev/null +++ b/tests/e2e_dbt_project/docker/trino/etc/config.properties @@ -0,0 +1,4 @@ +coordinator=true +node-scheduler.include-coordinator=true +http-server.http.port=8080 +discovery.uri=http://localhost:8080 diff --git a/tests/e2e_dbt_project/docker/trino/etc/jvm.config b/tests/e2e_dbt_project/docker/trino/etc/jvm.config new file mode 100644 index 000000000..087fd09e0 --- /dev/null +++ b/tests/e2e_dbt_project/docker/trino/etc/jvm.config @@ -0,0 +1,13 @@ +-server +-XX:InitialRAMPercentage=80 +-XX:MaxRAMPercentage=80 +-XX:G1HeapRegionSize=32M +-XX:+ExplicitGCInvokesConcurrent +-XX:+HeapDumpOnOutOfMemoryError +-XX:+ExitOnOutOfMemoryError +-XX:-OmitStackTraceInFastThrow +-XX:ReservedCodeCacheSize=256M +-XX:PerMethodRecompilationCutoff=10000 +-XX:PerBytecodeRecompilationCutoff=10000 +-Djdk.attach.allowAttachSelf=true +-Djdk.nio.maxCachedBufferSize=2000000 diff --git a/tests/e2e_dbt_project/docker/trino/etc/node.properties b/tests/e2e_dbt_project/docker/trino/etc/node.properties new file mode 100644 index 000000000..5b02ff7f0 --- /dev/null +++ b/tests/e2e_dbt_project/docker/trino/etc/node.properties @@ -0,0 +1,2 @@ +node.environment=docker +node.data-dir=/data/trino diff --git a/tests/e2e_dbt_project/external_seeders/__init__.py b/tests/e2e_dbt_project/external_seeders/__init__.py new file mode 100644 index 000000000..f7707b5ac --- /dev/null +++ b/tests/e2e_dbt_project/external_seeders/__init__.py @@ -0,0 +1,5 @@ +from external_seeders.base import ExternalSeeder +from external_seeders.dremio import DremioExternalSeeder +from external_seeders.spark import SparkExternalSeeder + +__all__ = ["ExternalSeeder", "DremioExternalSeeder", "SparkExternalSeeder"] diff --git a/tests/e2e_dbt_project/external_seeders/base.py b/tests/e2e_dbt_project/external_seeders/base.py new file mode 100644 index 000000000..c79de9be2 --- /dev/null +++ b/tests/e2e_dbt_project/external_seeders/base.py @@ -0,0 +1,67 @@ +"""Base class for external seed loaders.""" + +from __future__ import annotations + +import csv +import glob +import os +import shlex +import subprocess +from abc import ABC, abstractmethod + + +class ExternalSeeder(ABC): + """Common interface for loading seed CSVs into a warehouse externally.""" + + def __init__(self, data_dir: str, schema_name: str) -> None: + self.data_dir = os.path.abspath(data_dir) + self.schema_name = schema_name + + # ------------------------------------------------------------------ + # Helpers + # ------------------------------------------------------------------ + + @staticmethod + def run(cmd: list[str], check: bool = True, **kw: object) -> subprocess.CompletedProcess: # type: ignore[type-arg] + """Run a command, printing it first.""" + print(f" -> {shlex.join(cmd)}") + return subprocess.run(cmd, check=check, **kw) + + @staticmethod + def csv_has_data(path: str) -> bool: + """Return *True* when the CSV has a header AND at least one data row.""" + with open(path) as f: + reader = csv.reader(f) + try: + next(reader) # header + next(reader) # first data row + return True + except StopIteration: + return False + + @staticmethod + def csv_columns(path: str) -> list[str]: + """Return the header row of a CSV (empty list when file is empty).""" + with open(path) as f: + reader = csv.reader(f) + try: + return next(reader) + except StopIteration: + return [] + + def iter_seed_csvs(self): + """Yield ``(subdir, csv_path, table_name)`` for every seed CSV.""" + for subdir in ("training", "validation"): + csv_dir = os.path.join(self.data_dir, subdir) + for csv_path in sorted(glob.glob(os.path.join(csv_dir, "*.csv"))): + fname = os.path.basename(csv_path) + table_name, _ = os.path.splitext(fname) + yield subdir, csv_path, table_name + + # ------------------------------------------------------------------ + # Public API + # ------------------------------------------------------------------ + + @abstractmethod + def load(self) -> None: + """Load all seed CSVs into the target warehouse.""" diff --git a/tests/e2e_dbt_project/external_seeders/dremio.py b/tests/e2e_dbt_project/external_seeders/dremio.py new file mode 100644 index 000000000..949e8bdaa --- /dev/null +++ b/tests/e2e_dbt_project/external_seeders/dremio.py @@ -0,0 +1,422 @@ +"""Dremio external seed loader – uploads CSVs to MinIO and creates Iceberg tables.""" + +from __future__ import annotations + +import os +import re +import time + +from external_seeders.base import ExternalSeeder +from ruamel.yaml import YAML + + +def _docker_defaults() -> dict[str, str]: + """Read default credentials from docker-compose.yml and dremio-setup.sh. + + These are local Docker test credentials, not production secrets. + """ + project_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + defaults: dict[str, str] = {} + + # --- docker-compose.yml: MinIO credentials --- + compose_path = os.path.join(project_dir, "docker-compose.yml") + try: + _yaml = YAML() + with open(compose_path) as fh: + cfg = _yaml.load(fh) + services = cfg.get("services", {}) + for item in services.get("dremio-minio", {}).get("environment", []): + if isinstance(item, str) and "=" in item: + k, v = item.split("=", 1) + # Resolve ${VAR:-default} patterns to just the default value + m = re.match(r"\$\{[^:}]+:-([^}]+)\}", v) + if m: + v = m.group(1) + if k == "MINIO_ROOT_USER": + defaults["MINIO_ACCESS_KEY"] = v + elif k == "MINIO_ROOT_PASSWORD": + defaults["MINIO_SECRET_KEY"] = v + except FileNotFoundError: + pass + except Exception as e: + print(f" Warning: failed parsing docker defaults from {compose_path}: {e}") + + # --- dremio-setup.sh: Dremio login credentials --- + # Extract default values from bash variable assignments like: + # DREMIO_PASS="${DREMIO_PASS:-dremio123}" + setup_path = os.path.join(project_dir, "docker", "dremio", "dremio-setup.sh") + try: + with open(setup_path) as fh: + content = fh.read() + m = re.search(r'DREMIO_PASS="\$\{DREMIO_PASS:-([^}]+)\}"', content) + if m: + defaults["DREMIO_PASS"] = m.group(1) + m = re.search(r'DREMIO_USER="\$\{DREMIO_USER:-([^}]+)\}"', content) + if m: + defaults["DREMIO_USER"] = m.group(1) + except FileNotFoundError: + pass + except Exception as e: + print(f" Warning: failed parsing dremio defaults from {setup_path}: {e}") + + return defaults + + +class DremioExternalSeeder(ExternalSeeder): + """Load seeds into Dremio via MinIO S3 + Nessie Iceberg tables. + + Credentials are read from environment variables. If not set, defaults + are extracted from the sibling ``docker-compose.yml`` file so the script + works out-of-the-box in the CI Docker environment. + """ + + HTTP_TIMEOUT = (5, 30) # (connect, read) in seconds + + def __init__(self, data_dir: str, schema_name: str) -> None: + super().__init__(data_dir, schema_name) + _defaults = _docker_defaults() + self.dremio_host = os.environ.get("DREMIO_HOST", "localhost") + self.dremio_port = int(os.environ.get("DREMIO_PORT", "9047")) + self.dremio_user = os.environ.get( + "DREMIO_USER", _defaults.get("DREMIO_USER", "dremio") + ) + self.dremio_pass = os.environ.get( + "DREMIO_PASS", _defaults.get("DREMIO_PASS", "") + ) + self.minio_access_key = os.environ.get( + "MINIO_ACCESS_KEY", _defaults.get("MINIO_ACCESS_KEY", "") + ) + self.minio_secret_key = os.environ.get( + "MINIO_SECRET_KEY", _defaults.get("MINIO_SECRET_KEY", "") + ) + + # ------------------------------------------------------------------ + # Helpers + # ------------------------------------------------------------------ + + @staticmethod + def _quote_ident(name: str) -> str: + """Double-quote a SQL identifier, escaping embedded double-quotes.""" + return '"' + name.replace('"', '""') + '"' + + def _headers(self, token: str) -> dict[str, str]: + return { + "Content-Type": "application/json", + "Authorization": f"_dremio{token}", + } + + def _get_token(self) -> str: + import requests + + resp = requests.post( + f"http://{self.dremio_host}:{self.dremio_port}/apiv2/login", + json={"userName": self.dremio_user, "password": self.dremio_pass}, + timeout=self.HTTP_TIMEOUT, + ) + resp.raise_for_status() + return resp.json()["token"] + + def _sql(self, token: str, sql: str, *, timeout: int = 120) -> dict: + """Execute SQL on Dremio and block until the job finishes.""" + import requests + + headers = self._headers(token) + resp = requests.post( + f"http://{self.dremio_host}:{self.dremio_port}/api/v3/sql", + headers=headers, + json={"sql": sql}, + timeout=self.HTTP_TIMEOUT, + ) + resp.raise_for_status() + job_id = resp.json()["id"] + + deadline = time.time() + timeout + while time.time() < deadline: + resp = requests.get( + f"http://{self.dremio_host}:{self.dremio_port}/api/v3/job/{job_id}", + headers=headers, + timeout=self.HTTP_TIMEOUT, + ) + resp.raise_for_status() + state = resp.json()["jobState"] + if state == "COMPLETED": + return resp.json() + if state in ("FAILED", "CANCELED", "CANCELLED"): + raise RuntimeError( + f"Dremio SQL failed ({state}): {resp.json()}\nSQL: {sql}" + ) + time.sleep(1) + raise TimeoutError(f"Dremio job {job_id} timed out after {timeout}s") + + # ------------------------------------------------------------------ + # Nessie namespace creation + # ------------------------------------------------------------------ + + def _create_nessie_namespace(self, token: str, namespace: str) -> None: + """Create a Nessie namespace via Dremio SQL. + + Uses ``CREATE FOLDER IF NOT EXISTS`` which goes through the + Dremio-Nessie integration and is more reliable than calling + the Nessie REST API directly. + """ + qi = self._quote_ident + folder_sql = f"CREATE FOLDER IF NOT EXISTS NessieSource.{qi(namespace)}" + try: + self._sql(token, folder_sql, timeout=30) + print(f" Created Nessie namespace '{namespace}' via CREATE FOLDER") + except Exception as e: + # Not fatal – CREATE TABLE may implicitly create the namespace + print(f" Warning: CREATE FOLDER failed ({e}), continuing...") + + # ------------------------------------------------------------------ + # MinIO upload + # ------------------------------------------------------------------ + + def _upload_csvs_to_minio(self) -> None: + """Upload seed CSVs to the Dremio MinIO bucket. + + Mounts the local ``data_dir`` into a temporary ``minio/mc`` container + and copies files directly into the MinIO bucket. + """ + import shlex + + network = os.environ.get("DREMIO_NETWORK", "e2e_dbt_project_dremio-lakehouse") + mc_cmds = " && ".join( + [ + "mc alias set myminio http://dremio-storage:9000" + f" {shlex.quote(self.minio_access_key)}" + f" {shlex.quote(self.minio_secret_key)}", + "mc mb --ignore-existing myminio/datalake/seeds/training", + "mc mb --ignore-existing myminio/datalake/seeds/validation", + "mc cp --recursive /seed-data/training/ myminio/datalake/seeds/training/", + "mc cp --recursive /seed-data/validation/ myminio/datalake/seeds/validation/", + "echo Upload complete", + ] + ) + self.run( + [ + "docker", + "run", + "--rm", + "--network", + network, + "-v", + f"{self.data_dir}:/seed-data:ro", + "--entrypoint", + "/bin/sh", + "minio/mc", + "-c", + mc_cmds, + ] + ) + + # ------------------------------------------------------------------ + # S3 source creation + # ------------------------------------------------------------------ + + def _create_s3_source(self, token: str) -> None: + import requests + + headers = self._headers(token) + # Dremio OSS uses the Catalog API (v3) for source management. + # For MinIO compatibility we must set compatibilityMode, path-style + # access, and point the endpoint at the Docker-internal hostname. + payload = { + "entityType": "source", + "name": "SeedFiles", + "config": { + "credentialType": "ACCESS_KEY", + "accessKey": self.minio_access_key, + "accessSecret": self.minio_secret_key, + "secure": False, + "externalBucketList": ["datalake"], + "rootPath": "/", + "compatibilityMode": True, + "enableAsync": True, + "propertyList": [ + {"name": "fs.s3a.path.style.access", "value": "true"}, + {"name": "fs.s3a.endpoint", "value": "dremio-storage:9000"}, + ], + "whitelistedBuckets": ["datalake"], + "isCachingEnabled": False, + "defaultCtasFormat": "ICEBERG", + }, + "type": "S3", + "metadataPolicy": { + "deleteUnavailableDatasets": True, + "autoPromoteDatasets": True, + "namesRefreshMillis": 3600000, + "datasetDefinitionRefreshAfterMillis": 3600000, + "datasetDefinitionExpireAfterMillis": 10800000, + "authTTLMillis": 86400000, + "updateMode": "PREFETCH_QUERIED", + }, + } + + # Try the v3 Catalog API first (Dremio OSS ≥ 24), fall back to v2. + for attempt in range(3): + # v3 catalog API – POST to create + resp = requests.post( + f"http://{self.dremio_host}:{self.dremio_port}/api/v3/catalog", + headers=headers, + json=payload, + timeout=self.HTTP_TIMEOUT, + ) + if resp.status_code in (200, 201): + print(" SeedFiles S3 source created via v3 Catalog API") + return + if resp.status_code == 409: + # Source already exists – update it with PUT + print(" SeedFiles source exists, updating...") + # Get the existing source id + tag for the update + get_resp = requests.get( + f"http://{self.dremio_host}:{self.dremio_port}/api/v3/catalog/by-path/SeedFiles", + headers=headers, + timeout=self.HTTP_TIMEOUT, + ) + if get_resp.status_code == 200: + existing = get_resp.json() + payload["id"] = existing["id"] + payload["tag"] = existing.get("tag", "") + put_resp = requests.put( + f"http://{self.dremio_host}:{self.dremio_port}/api/v3/catalog/{existing['id']}", + headers=headers, + json=payload, + timeout=self.HTTP_TIMEOUT, + ) + if put_resp.status_code == 200: + print(" SeedFiles S3 source updated") + return + print( + f" Warning: update returned {put_resp.status_code}: {put_resp.text}" + ) + else: + print( + f" Warning: failed fetching existing source " + f"({get_resp.status_code}: {get_resp.text[:200]})" + ) + # Continue to v2 fallback / retry. + + # v2 fallback + resp2 = requests.put( + f"http://{self.dremio_host}:{self.dremio_port}/apiv2/source/SeedFiles", + headers=headers, + json=payload, + timeout=self.HTTP_TIMEOUT, + ) + if resp2.status_code in (200, 409): + print(" SeedFiles S3 source created/updated via v2 API") + return + + print( + f" Attempt {attempt + 1}/3: source creation failed " + f"(v3={resp.status_code}: {resp.text[:200]}, " + f"v2={resp2.status_code}: {resp2.text[:200]})" + ) + time.sleep(5) + + raise RuntimeError("Failed to create SeedFiles source after 3 attempts") + + # ------------------------------------------------------------------ + # Public API + # ------------------------------------------------------------------ + + def load(self) -> None: + """Load seeds using COPY INTO (no fragile CSV promotion needed). + + 1. Upload CSVs to MinIO. + 2. Create an S3 source so Dremio can read those files. + 3. Create Nessie namespace via CREATE FOLDER. + 4. For each CSV, CREATE TABLE in Nessie + COPY INTO from S3. + 5. Refresh source metadata so the VDS validator can see new tables. + + Seeds are placed in the *same* Nessie namespace as models (the + target schema, e.g. ``elementary_tests``) because the dbt-dremio + REST API is stateless and the VDS view validator cannot resolve + cross-namespace Nessie references. + """ + failures: list[str] = [] + # For Dremio, seeds must live in the same Nessie namespace as models + # because the REST API is stateless (no persistent USE BRANCH) and + # the VDS view validator cannot resolve cross-namespace references. + # self.schema_name is the target schema (e.g. "elementary_tests"). + seed_schema = self.schema_name + + print("\n=== Loading Dremio seeds via MinIO + COPY INTO ===") + + print("\nStep 1: Uploading CSVs to MinIO...") + self._upload_csvs_to_minio() + + print("\nStep 2: Creating SeedFiles S3 source...") + token = self._get_token() + self._create_s3_source(token) + + # Explicitly create the Nessie namespace before creating tables. + # Uses CREATE FOLDER via Dremio SQL (more reliable than Nessie REST API). + print("\nStep 3: Creating Nessie namespace...") + self._create_nessie_namespace(token, seed_schema) + + qi = self._quote_ident + nessie_ns = f"NessieSource.{qi(seed_schema)}" + + print(f"\nStep 4: Creating Iceberg tables at '{nessie_ns}'...") + created_tables: list[str] = [] + for subdir, csv_path, table_name in self.iter_seed_csvs(): + cols = self.csv_columns(csv_path) + if not cols: + print(f" Skipping {table_name} (completely empty file)") + continue + + fqn = f"{nessie_ns}.{qi(table_name)}" + + # Drop + recreate to ensure idempotent seeding (no stale data) + col_defs = ", ".join(f"{qi(c)} VARCHAR" for c in cols) + try: + self._sql(token, f"DROP TABLE IF EXISTS {fqn}", timeout=30) + except Exception: + pass # Table may not exist yet + create_sql = f"CREATE TABLE {fqn} ({col_defs})" + try: + self._sql(token, create_sql, timeout=60) + created_tables.append(table_name) + except Exception as e: + failures.append(f"create {table_name}: {e}") + continue + + if not self.csv_has_data(csv_path): + print(f" Created empty table: {table_name}") + continue + + # Load CSV data using COPY INTO from the S3 source + fname = os.path.basename(csv_path) + s3_path = f"@SeedFiles/datalake/seeds/{subdir}/{fname}" + copy_sql = ( + f"COPY INTO {fqn} " + f"FROM '{s3_path}' " + f"FILE_FORMAT 'csv' " + f"(EXTRACT_HEADER 'true', TRIM_SPACE 'true')" + ) + print(f" COPY INTO: {table_name}") + try: + self._sql(token, copy_sql, timeout=120) + except Exception as e: + failures.append(f"copy {table_name}: {e}") + + # Force Dremio to refresh its metadata cache for the Nessie source. + # The VDS view validator uses a separate metadata system that may not + # immediately see tables created via the SQL API. Without this, + # CREATE VIEW statements fail with "Object ... not found". + print("\nStep 5: Refreshing NessieSource metadata...") + try: + self._sql(token, "ALTER SOURCE NessieSource REFRESH STATUS", timeout=30) + print(" Metadata refresh triggered") + except Exception as e: + failures.append(f"metadata refresh: {e}") + + # Give Dremio a moment to complete the background metadata scan. + print(" Waiting 10s for metadata propagation...") + time.sleep(10) + + if failures: + raise RuntimeError("Dremio seeding failed:\n - " + "\n - ".join(failures)) + print("\nDremio seed loading complete.") diff --git a/tests/e2e_dbt_project/external_seeders/spark.py b/tests/e2e_dbt_project/external_seeders/spark.py new file mode 100644 index 000000000..3d9be0e72 --- /dev/null +++ b/tests/e2e_dbt_project/external_seeders/spark.py @@ -0,0 +1,103 @@ +"""Spark external seed loader – reads CSVs from a volume mount and creates Delta tables.""" + +from __future__ import annotations + +import os + +from external_seeders.base import ExternalSeeder + + +class SparkExternalSeeder(ExternalSeeder): + """Load seeds into Spark via PyHive from CSV files mounted in the container.""" + + # dbt_project.yml sets ``+schema: test_seeds`` for seeds and the default + # ``generate_schema_name`` macro returns that verbatim, so the actual seed + # schema is always ``test_seeds`` regardless of the target schema name. + SEED_SCHEMA = "test_seeds" + + @staticmethod + def _q(name: str) -> str: + """Quote a Spark SQL identifier, escaping any embedded backticks.""" + return f"`{name.replace('`', '``')}`" + + def load(self) -> None: + failures: list[str] = [] + q = self._q + seed_schema = self.SEED_SCHEMA + print( + f"\n=== Loading Spark seeds via external CSV tables " + f"(schema={seed_schema}) ===" + ) + + try: + from pyhive import hive + except ImportError as e: + raise RuntimeError( + "pyhive is required for SparkExternalSeeder. Install dbt-spark[PyHive] (CI does this automatically)." + ) from e + + host = os.environ.get("SPARK_HOST", "127.0.0.1") + port = int(os.environ.get("SPARK_PORT", "10000")) + + print(f"Connecting to Spark Thrift at {host}:{port}...") + conn = None + cursor = None + try: + conn = hive.Connection(host=host, port=port, username="dbt") + cursor = conn.cursor() + print(f"Creating schema '{seed_schema}'...") + cursor.execute(f"CREATE DATABASE IF NOT EXISTS `{seed_schema}`") + + for subdir, csv_path, table_name in self.iter_seed_csvs(): + fname = os.path.basename(csv_path) + + if not self.csv_has_data(csv_path): + cols = self.csv_columns(csv_path) + if not cols: + print(f" Skipping {table_name} (completely empty file)") + continue + col_defs = ", ".join(f"{q(c)} STRING" for c in cols) + print(f" Creating empty table: {table_name}") + try: + cursor.execute( + f"DROP TABLE IF EXISTS {q(seed_schema)}.{q(table_name)}" + ) + cursor.execute( + f"CREATE TABLE {q(seed_schema)}.{q(table_name)} " + f"({col_defs}) USING delta" + ) + except Exception as e: + failures.append(f"{table_name}: {e}") + continue + + container_path = f"/seed-data/{subdir}/{fname}" + # Escape single quotes in path to prevent SQL injection + safe_path = container_path.replace("'", "''") + tmp_view = f"_tmp_csv_{table_name}" + print(f" Loading: {table_name}") + try: + cursor.execute( + f"CREATE OR REPLACE TEMPORARY VIEW {q(tmp_view)} " + f"USING csv " + f"OPTIONS (path '{safe_path}', header 'true', " + f"inferSchema 'true')" + ) + cursor.execute( + f"DROP TABLE IF EXISTS {q(seed_schema)}.{q(table_name)}" + ) + cursor.execute( + f"CREATE TABLE {q(seed_schema)}.{q(table_name)} " + f"USING delta AS SELECT * FROM {q(tmp_view)}" + ) + except Exception as e: + failures.append(f"{table_name}: {e}") + finally: + if cursor is not None: + cursor.close() + if conn is not None: + conn.close() + if failures: + raise RuntimeError( + "Spark seed loading failed:\n - " + "\n - ".join(failures) + ) + print("\nSpark seed loading complete.") diff --git a/tests/e2e_dbt_project/generate_data.py b/tests/e2e_dbt_project/generate_data.py index e6b3f8faf..6acf56b15 100644 --- a/tests/e2e_dbt_project/generate_data.py +++ b/tests/e2e_dbt_project/generate_data.py @@ -11,8 +11,12 @@ EPOCH = datetime.utcfromtimestamp(0) DATE_FORMAT = "%Y-%m-%d %H:%M:%S" +# Fixed seed so that generated CSVs are deterministic and cacheable across CI runs. +RANDOM_SEED = 42 + def generate_fake_data(): + random.seed(RANDOM_SEED) generate_string_anomalies_training_and_validation_files() generate_numeric_anomalies_training_and_validation_files() generate_any_type_anomalies_training_and_validation_files() @@ -128,8 +132,8 @@ def get_training_row(date, row_index, rows_count): return { "updated_at": date.strftime(DATE_FORMAT), "occurred_at": (date - timedelta(hours=1)).strftime(DATE_FORMAT), - "min": random.randint(100, 200), - "max": random.randint(100, 200), + "min_val": random.randint(100, 200), + "max_val": random.randint(100, 200), "zero_count": 0 if row_index < (3 / 100 * rows_count) else random.randint(100, 200), @@ -139,7 +143,7 @@ def get_training_row(date, row_index, rows_count): "average": random.randint(99, 101), "standard_deviation": random.randint(99, 101), "variance": random.randint(99, 101), - "sum": random.randint(100, 200), + "sum_val": random.randint(100, 200), } def get_validation_row(date, row_index, rows_count): @@ -147,8 +151,8 @@ def get_validation_row(date, row_index, rows_count): return { "updated_at": date.strftime(DATE_FORMAT), "occurred_at": (date - timedelta(hours=7)).strftime(DATE_FORMAT), - "min": random.randint(10, 200), - "max": random.randint(100, 300), + "min_val": random.randint(10, 200), + "max_val": random.randint(100, 300), "zero_count": 0 if row_index < (80 / 100 * rows_count) else random.randint(100, 200), @@ -158,20 +162,20 @@ def get_validation_row(date, row_index, rows_count): "average": random.randint(101, 110), "standard_deviation": random.randint(80, 120), "variance": random.randint(80, 120), - "sum": random.randint(300, 400), + "sum_val": random.randint(300, 400), } numeric_columns = [ "updated_at", "occurred_at", - "min", - "max", + "min_val", + "max_val", "zero_count", "zero_percent", "average", "standard_deviation", "variance", - "sum", + "sum_val", ] dates = generate_rows_timestamps(base_date=EPOCH - timedelta(days=2)) training_rows = generate_rows(rows_count_per_day, dates, get_training_row) diff --git a/tests/e2e_dbt_project/load_seeds_external.py b/tests/e2e_dbt_project/load_seeds_external.py new file mode 100644 index 000000000..b4fe28068 --- /dev/null +++ b/tests/e2e_dbt_project/load_seeds_external.py @@ -0,0 +1,52 @@ +#!/usr/bin/env python3 +"""Load seed data via external files instead of ``dbt seed``. + +Delegates to adapter-specific seeders defined in the ``external_seeders`` +package. Run ``python load_seeds_external.py --help`` for usage. +""" + +from __future__ import annotations + +import os +import sys + +import click + +# Ensure the script's directory is on sys.path so that the +# ``external_seeders`` package can be imported regardless of cwd. +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) + +from external_seeders import DremioExternalSeeder, SparkExternalSeeder # noqa: E402 + +SEEDERS = { + "dremio": DremioExternalSeeder, + "spark": SparkExternalSeeder, +} + + +@click.command() +@click.argument("adapter", type=click.Choice(list(SEEDERS.keys()))) +@click.argument("schema_name") +@click.argument( + "data_dir", + type=click.Path(exists=True, file_okay=False, resolve_path=True), +) +def main(adapter: str, schema_name: str, data_dir: str) -> None: + """Load seed CSVs into ADAPTER using external tables. + + \b + ADAPTER Target warehouse adapter (dremio | spark). + SCHEMA_NAME Target schema / namespace for the seed tables. + NOTE: Spark ignores this value and always uses the fixed + schema defined in SparkExternalSeeder.SEED_SCHEMA (currently + "test_seeds") because the generate_schema_name macro returns + that name verbatim. + DATA_DIR Path to the directory containing training/ and validation/ CSVs. + """ + seeder_cls = SEEDERS[adapter] + seeder = seeder_cls(data_dir=data_dir, schema_name=schema_name) + seeder.load() + + +if __name__ == "__main__": + main() diff --git a/tests/e2e_dbt_project/macros/system/drop_test_schemas.sql b/tests/e2e_dbt_project/macros/system/drop_test_schemas.sql index cfa924660..225405063 100644 --- a/tests/e2e_dbt_project/macros/system/drop_test_schemas.sql +++ b/tests/e2e_dbt_project/macros/system/drop_test_schemas.sql @@ -34,3 +34,23 @@ {% set schema_relation = api.Relation.create(database=target.database, schema=schema_name) %} {% do dbt.drop_schema(schema_relation) %} {% endmacro %} + +{% macro trino__edr_drop_schema(schema_name) %} + {% set schema_relation = api.Relation.create(database=target.database, schema=schema_name) %} + {% do dbt.drop_schema(schema_relation) %} +{% endmacro %} + +{% macro dremio__edr_drop_schema(schema_name) %} + {# Dremio does not support DROP SCHEMA; Docker container cleanup handles this in CI #} + {% do log("Skipping schema drop for Dremio (not supported); Docker cleanup handles this.", info=true) %} +{% endmacro %} + +{% macro duckdb__edr_drop_schema(schema_name) %} + {% set quoted_schema = adapter.quote(schema_name) %} + {% do run_query("DROP SCHEMA IF EXISTS " ~ quoted_schema ~ " CASCADE") %} +{% endmacro %} + +{% macro spark__edr_drop_schema(schema_name) %} + {% set quoted_schema = adapter.quote(schema_name) %} + {% do run_query("DROP DATABASE IF EXISTS " ~ quoted_schema ~ " CASCADE") %} +{% endmacro %} diff --git a/tests/e2e_dbt_project/macros/system/generate_schema_name.sql b/tests/e2e_dbt_project/macros/system/generate_schema_name.sql index e30a0e706..0d4f7d59e 100644 --- a/tests/e2e_dbt_project/macros/system/generate_schema_name.sql +++ b/tests/e2e_dbt_project/macros/system/generate_schema_name.sql @@ -5,8 +5,23 @@ {% endif %} {% if node.resource_type == "seed" %} + {#- For Dremio with enterprise_catalog_namespace, seeds must live in the + same Nessie namespace as models. The REST API is stateless so + session-level USE BRANCH does not persist, and the VDS view + validator cannot resolve cross-namespace Nessie references. -#} + {% if target.type == 'dremio' %} + {% do return(default_schema) %} + {% endif %} {% do return(custom_schema_name) %} {% endif %} + {#- For Dremio with enterprise_catalog_namespace, delegate to the adapter's + generate_schema_name for non-seed nodes (views/tables) so that + root_path is correctly applied. Seeds use flat schema (e.g. test_seeds) + to avoid nested Nessie namespaces that Dremio can't create folders for. -#} + {% if target.type == 'dremio' %} + {{ return(dremio__generate_schema_name(custom_schema_name, node)) }} + {% endif %} + {% do return("{}_{}".format(default_schema, custom_schema_name)) %} {%- endmacro %} diff --git a/tests/e2e_dbt_project/models/nested/models/tree/nested.sql b/tests/e2e_dbt_project/models/nested/models/tree/nested.sql index ec17f8541..7a76dd150 100644 --- a/tests/e2e_dbt_project/models/nested/models/tree/nested.sql +++ b/tests/e2e_dbt_project/models/nested/models/tree/nested.sql @@ -1 +1 @@ -select 1 as one +select 1 as col1 diff --git a/tests/e2e_dbt_project/models/numeric_column_anomalies.sql b/tests/e2e_dbt_project/models/numeric_column_anomalies.sql index 8eebe37d8..a547d7f5c 100644 --- a/tests/e2e_dbt_project/models/numeric_column_anomalies.sql +++ b/tests/e2e_dbt_project/models/numeric_column_anomalies.sql @@ -16,14 +16,14 @@ source as ( select updated_at, occurred_at, - min, - max, + min_val, + max_val, zero_count, zero_percent, average, standard_deviation, variance, - sum + sum_val from source ) diff --git a/tests/e2e_dbt_project/models/one.sql b/tests/e2e_dbt_project/models/one.sql index ec17f8541..7a76dd150 100644 --- a/tests/e2e_dbt_project/models/one.sql +++ b/tests/e2e_dbt_project/models/one.sql @@ -1 +1 @@ -select 1 as one +select 1 as col1 diff --git a/tests/e2e_dbt_project/models/schema.yml b/tests/e2e_dbt_project/models/schema.yml index 31f376284..7934fae2a 100644 --- a/tests/e2e_dbt_project/models/schema.yml +++ b/tests/e2e_dbt_project/models/schema.yml @@ -7,7 +7,7 @@ models: meta: owner: "{{ var('one_owner', none) }}" columns: - - name: one + - name: col1 tests: - accepted_values: meta: @@ -255,7 +255,7 @@ models: - average_length - null_count columns: - - name: min + - name: min_val tests: - elementary.column_anomalies: tags: ["numeric_column_anomalies", "column_anomalies"] @@ -269,7 +269,7 @@ models: tags: ["numeric_column_anomalies", "column_anomalies"] column_anomalies: - average - - name: max + - name: max_val tests: - elementary.column_anomalies: tags: ["numeric_column_anomalies", "column_anomalies"] @@ -327,7 +327,7 @@ models: tests: - elementary.column_anomalies: tags: ["numeric_column_anomalies", "column_anomalies"] - - name: sum + - name: sum_val tests: - elementary.column_anomalies: column_anomalies: @@ -347,7 +347,7 @@ models: - name: groups columns: - name: group_a - data_type: "{{ 'strIng' if (target.type == 'bigquery' or target.type == 'databricks' or target.type == 'athena') else 'CHArACTER varying' if target.type == 'redshift' else 'teXt' }}" + data_type: "{{ 'strIng' if (target.type == 'bigquery' or target.type == 'databricks' or target.type == 'athena' or target.type == 'spark') else 'varchar' if (target.type == 'trino' or target.type == 'dremio' or target.type == 'duckdb') else 'CHArACTER varying' if target.type == 'redshift' else 'teXt' }}" - name: group_b data_type: double - name: group_c @@ -365,7 +365,7 @@ models: - name: stats_players columns: - name: player - data_type: "{{ 'STRING' if (target.type == 'bigquery' or target.type == 'databricks' or target.type == 'athena') else 'character varying' if target.type == 'redshift' else 'TEXT' }}" + data_type: "{{ 'STRING' if (target.type == 'bigquery' or target.type == 'databricks' or target.type == 'athena' or target.type == 'spark') else 'varchar' if (target.type == 'trino' or target.type == 'dremio' or target.type == 'duckdb') else 'character varying' if target.type == 'redshift' else 'TEXT' }}" - name: goals data_type: BOOLEAN - name: coffee_cups_consumed @@ -530,7 +530,7 @@ models: sources: - name: training - schema: test_seeds + schema: "{{ target.schema if target.type == 'dremio' else 'test_seeds' }}" tables: - name: users_per_hour_daily_seasonal_training columns: @@ -633,7 +633,7 @@ sources: - name: users_per_day_weekly_seasonal_training - name: validation - schema: test_seeds + schema: "{{ target.schema if target.type == 'dremio' else 'test_seeds' }}" tables: - name: users_per_hour_daily_seasonal_validation - name: any_type_column_anomalies_validation diff --git a/tests/e2e_dbt_project/models/test_alerts_union.sql b/tests/e2e_dbt_project/models/test_alerts_union.sql index 0567ab927..0970cdae3 100644 --- a/tests/e2e_dbt_project/models/test_alerts_union.sql +++ b/tests/e2e_dbt_project/models/test_alerts_union.sql @@ -1,7 +1,7 @@ with dbt as ( select * from {{ ref('alerts_dbt_tests') }} ), -{%- if target.type != 'databricks' %} +{%- if target.type not in ['databricks', 'spark'] %} schema_changes as ( select * from {{ ref('alerts_schema_changes') }} ), @@ -12,7 +12,7 @@ anomalies as ( select * from dbt union all select * from anomalies -{%- if target.type != 'databricks' %} +{%- if target.type not in ['databricks', 'spark'] %} union all select * from schema_changes {%- endif %} diff --git a/tests/e2e_dbt_project/tests/singular_test_with_no_ref.sql b/tests/e2e_dbt_project/tests/singular_test_with_no_ref.sql index f7dfdc589..c6b54244e 100644 --- a/tests/e2e_dbt_project/tests/singular_test_with_no_ref.sql +++ b/tests/e2e_dbt_project/tests/singular_test_with_no_ref.sql @@ -1,2 +1,2 @@ {% set relation = api.Relation.create(database=elementary.target_database(), schema=target.schema, identifier='numeric_column_anomalies') %} -select min from {{ relation }} where min < 100 +select min_val from {{ relation }} where min_val < 100 diff --git a/tests/e2e_dbt_project/tests/singular_test_with_one_ref.sql b/tests/e2e_dbt_project/tests/singular_test_with_one_ref.sql index 22931a7fb..3e72d931e 100644 --- a/tests/e2e_dbt_project/tests/singular_test_with_one_ref.sql +++ b/tests/e2e_dbt_project/tests/singular_test_with_one_ref.sql @@ -1 +1 @@ -select min from {{ ref('numeric_column_anomalies') }} where min < 100 \ No newline at end of file +select min_val from {{ ref('numeric_column_anomalies') }} where min_val < 100 diff --git a/tests/e2e_dbt_project/tests/singular_test_with_source_ref.sql b/tests/e2e_dbt_project/tests/singular_test_with_source_ref.sql index 2d61ce9a1..230939c27 100644 --- a/tests/e2e_dbt_project/tests/singular_test_with_source_ref.sql +++ b/tests/e2e_dbt_project/tests/singular_test_with_source_ref.sql @@ -1 +1 @@ -select min from {{ source('training', 'numeric_column_anomalies_training') }} where min < 105 \ No newline at end of file +select min_val from {{ source('training', 'numeric_column_anomalies_training') }} where min_val < 105 diff --git a/tests/e2e_dbt_project/tests/singular_test_with_two_refs.sql b/tests/e2e_dbt_project/tests/singular_test_with_two_refs.sql index 2524955af..4837270e8 100644 --- a/tests/e2e_dbt_project/tests/singular_test_with_two_refs.sql +++ b/tests/e2e_dbt_project/tests/singular_test_with_two_refs.sql @@ -3,7 +3,7 @@ with min_len_issues as ( ), min_issues as ( - select min as min_issue from {{ ref('numeric_column_anomalies') }} where min < 100 + select min_val as min_issue from {{ ref('numeric_column_anomalies') }} where min_val < 100 ), all_issues as ( diff --git a/tests/profiles/profiles.yml.j2 b/tests/profiles/profiles.yml.j2 index c1c2accf7..77138bf93 100644 --- a/tests/profiles/profiles.yml.j2 +++ b/tests/profiles/profiles.yml.j2 @@ -23,6 +23,43 @@ elementary_tests: schema: {{ schema_name }} threads: 4 + trino: &trino + type: trino + method: none + host: localhost + port: 8086 + user: admin + database: iceberg + schema: {{ schema_name }} + threads: 4 + + dremio: &dremio + type: dremio + software_host: localhost + port: 9047 + user: dremio + password: dremio123 + use_ssl: false + enterprise_catalog_namespace: NessieSource + enterprise_catalog_folder: {{ schema_name }} + threads: 4 + + duckdb: &duckdb + type: duckdb + path: /tmp/elementary_test.duckdb + schema: {{ schema_name }} + threads: 1 + + spark: &spark + type: spark + method: thrift + host: 127.0.0.1 + port: 10000 + user: dbt + schema: {{ schema_name }} + file_format: delta + threads: 4 + # ── Cloud targets (secrets substituted at CI time) ───────────────── snowflake: &snowflake @@ -83,9 +120,9 @@ elementary_tests: elementary: target: postgres outputs: -{%- set targets = ['postgres', 'clickhouse', 'snowflake', 'bigquery', 'redshift', 'databricks_catalog', 'athena'] %} +{%- set targets = ['postgres', 'clickhouse', 'trino', 'dremio', 'duckdb', 'spark', 'snowflake', 'bigquery', 'redshift', 'databricks_catalog', 'athena'] %} {%- for t in targets %} {{ t }}: <<: *{{ t }} - {{ 'dataset' if t == 'bigquery' else 'schema' }}: {{ schema_name }}_elementary + {{ 'dataset' if t == 'bigquery' else ('enterprise_catalog_folder' if t == 'dremio' else 'schema') }}: {% if t == 'dremio' %}{{ schema_name }}.elementary{% else %}{{ schema_name }}_elementary{% endif %} {%- endfor %}