diff --git a/.flake8 b/.flake8 index 7a728698..3ca34d5b 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] -ignore = C901, E203, E501, W503, W291 +ignore = C901, E203, E501, F401, W503, W291, select = B,C,E,F,W,T4 exclude = .env, diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index af4e4093..bc99a8dc 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -23,6 +23,12 @@ jobs: uses: actions/checkout@v3 ### Caching + - name: Overwrite version number from pyproject.toml, so it doesn't invalidate cache + id: remove-version-from-toml + run: | + sed -i "s/version = \".*\"/version = \"0.0.0\"/g" pyproject.toml + cat pyproject.toml + - name: Load cached $HOME/.local (cache poetry) uses: actions/cache@v2.1.6 with: @@ -51,6 +57,11 @@ jobs: run: poetry install ### Run tests + - name: Parralelise pytest + run: | + echo -e "[pytest]\naddopts='-n 2'" > pytest.ini + cat pytest.ini + - name: Source .venv run: | source $VENV diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b5932c9f..f6581d77 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,6 +17,7 @@ repos: rev: 1208357bcc569b86a4a0dc69b108cbe28f190f54 hooks: - id: pybetter + args: [--select, "B002,B007"] - repo: https://github.com/bwhmather/ssort rev: v0.11.6 diff --git a/docs/conf.py b/docs/conf.py index 559f8ebd..5a9f66a8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -96,20 +96,3 @@ "navigation_with_keys": True, "top_of_page_button": "edit", } - - -__all__ = [ - "author", - "exclude_patterns", - "extensions", - "html_context", - "html_favicon", - "html_show_sourcelink", - "html_static_path", - "html_theme", - "html_theme_options", - "project", - "release", - "source_suffix", - "templates_path", -] diff --git a/example/loaders/debug_loader_function.py b/example/loaders/debug_loader_function.py index 7604260a..536fdab5 100644 --- a/example/loaders/debug_loader_function.py +++ b/example/loaders/debug_loader_function.py @@ -94,11 +94,3 @@ def get_prop_of_each_unique_value_for_non_floats(series: pd.Series) -> pd.Series subset_duplicates_columns=["dw_ek_borger", "timestamp", "value"], ) print(errors) - - -__all__ = [ - "df", - "get_prop_of_each_unique_value_for_non_floats", - "value_props", - "will_it_float", -] diff --git a/example/loaders/load_coercion.py b/example/loaders/load_coercion.py index e1d15d82..dd4ab16a 100644 --- a/example/loaders/load_coercion.py +++ b/example/loaders/load_coercion.py @@ -8,10 +8,3 @@ df = c.coercion_duration(n_rows=100) farlighed = c.farlighed(n_rows=20) baelte = c.baelte(n_rows=100) - - -__all__ = [ - "baelte", - "df", - "farlighed", -] diff --git a/example/loaders/load_diagnoses.py b/example/loaders/load_diagnoses.py index bde8ac78..6e6ecef5 100644 --- a/example/loaders/load_diagnoses.py +++ b/example/loaders/load_diagnoses.py @@ -14,9 +14,3 @@ predictor_dict_list=input_dict, n_rows=100, ) - - -__all__ = [ - "df", - "input_dict", -] diff --git a/example/loaders/load_medications.py b/example/loaders/load_medications.py index 2b554d20..72d7d8d2 100644 --- a/example/loaders/load_medications.py +++ b/example/loaders/load_medications.py @@ -4,8 +4,3 @@ if __name__ == "__main__": df = m.antipsychotics() - - -__all__ = [ - "df", -] diff --git a/example/loaders/load_physical_visits.py b/example/loaders/load_physical_visits.py index 03d5e527..671b432b 100644 --- a/example/loaders/load_physical_visits.py +++ b/example/loaders/load_physical_visits.py @@ -3,8 +3,3 @@ if __name__ == "__main__": df = r.load_visits.physical_visits_to_psychiatry() - - -__all__ = [ - "df", -] diff --git a/example/loaders/load_sql.py b/example/loaders/load_sql.py index 6d9664d8..6f12fc92 100644 --- a/example/loaders/load_sql.py +++ b/example/loaders/load_sql.py @@ -6,10 +6,3 @@ VIEW = "[psycop_t2d_train]" SQL = "SELECT * FROM [fct]." + VIEW df = sql_load(SQL, chunksize=None, format_timestamp_cols_to_datetime=False) - - -__all__ = [ - "SQL", - "VIEW", - "df", -] diff --git a/pyproject.toml b/pyproject.toml index e03ab99e..6086e276 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ deepchecks = "^0.8.3" psutil = "5.9.1" dill = "^0.3.5" + [tool.poetry.dev-dependencies] black = "22.3.*" pre-commit = "2.19.*" @@ -48,7 +49,11 @@ docformatter = "1.4" darglint = "^1.8.1" SQLAlchemy = "^1.4.40" pyodbc = "^4.0.34" +tqdm = "^4.64.1" +dask = "^2022.9.0" transformers = "^4.22.0" +mypy = "^0.971" +pytest-xdist = "^2.5.0" [tool.coverage.run] omit = [ @@ -90,4 +95,6 @@ known_third_party = ["wandb"] [tool.pylint] load-plugins = "pylint.extensions.docparams,pylint.extensions.code_style,pylint.extensions.for_any_all,pylint.extensions.typing" good-names = "df,p,f,d,e,n,k,i,v" -disable = "too-many-lines,line-too-long,missing-raises-doc,no-self-argument,unused-wildcard-import,wildcard-import,no-else-return,too-many-arguments" +disable = "too-many-lines,line-too-long,missing-raises-doc,no-self-argument,unused-wildcard-import,wildcard-import,no-else-return,too-many-arguments,redefined-outer-name" + +[tool.pyright] # Added because of weird pylance error, issue here: https://github.com/microsoft/pylance-release/issues/3366 \ No newline at end of file diff --git a/src/application/t2d/check_feature_set_integrity.py b/src/application/t2d/check_feature_set_integrity.py index 62c8ba8f..0eec9f5d 100644 --- a/src/application/t2d/check_feature_set_integrity.py +++ b/src/application/t2d/check_feature_set_integrity.py @@ -3,7 +3,7 @@ from pathlib import Path from psycopmlutils.data_checks.flattened.data_integrity import ( - check_feature_set_integrity_from_dir, + save_feature_set_integrity_from_dir, ) if __name__ == "__main__": @@ -11,12 +11,7 @@ "E:/shared_resources/feature_sets/t2d/adminmanber_260_features_2022_08_26_14_10/", ) - check_feature_set_integrity_from_dir( + save_feature_set_integrity_from_dir( feature_set_csv_dir=subdir, split_names=["train", "val", "test"], ) - - -__all__ = [ - "subdir", -] diff --git a/src/application/t2d/describe_features.py b/src/application/t2d/describe_features.py index 15b5f02e..3e39dd28 100644 --- a/src/application/t2d/describe_features.py +++ b/src/application/t2d/describe_features.py @@ -3,7 +3,7 @@ from pathlib import Path from psycopmlutils.data_checks.flattened.feature_describer import ( - create_feature_description_from_dir, + save_feature_description_from_dir, ) from src.application.t2d.features_blood_samples import get_lab_feature_spec from src.application.t2d.features_diagnoses import get_diagnosis_feature_spec @@ -42,20 +42,7 @@ PREDICTOR_LIST = MEDICATION_PREDICTORS + DIAGNOSIS_PREDICTORS + LAB_PREDICTORS - create_feature_description_from_dir( - path=feature_set_dir, + save_feature_description_from_dir( + feature_set_csv_dir=feature_set_dir, predictor_dicts=PREDICTOR_LIST, ) - - -__all__ = [ - "DIAGNOSIS_PREDICTORS", - "LAB_PREDICTORS", - "MEDICATION_PREDICTORS", - "PREDICTOR_LIST", - "feature_set_dir", - "feature_set_path", - "lookbehind_days", - "out_dir", - "resolve_multiple", -] diff --git a/src/application/t2d/features_blood_samples.py b/src/application/t2d/features_blood_samples.py index a4f57cbb..0ecbd653 100644 --- a/src/application/t2d/features_blood_samples.py +++ b/src/application/t2d/features_blood_samples.py @@ -1,19 +1,21 @@ """Feature specificatin for T2D blood samples.""" +from typing import Optional + import numpy as np def get_lab_feature_spec( # pylint: disable=dangerous-default-value # Not a problem since the function is only called once. - lookbehind_days: int = None, - resolve_multiple: str = None, + lookbehind_days: Optional[list[int]] = None, + resolve_multiple: Optional[list[str]] = None, values_to_load="all", ) -> list: """Get feature specification for T2D blood samples. Args: - lookbehind_days (int, optional): Defaults to None. - resolve_multiple (str, optional): Defaults to None. + lookbehind_days (list[int], optional): Defaults to None. + resolve_multiple (list[str], optional): Defaults to None. values_to_load (str, optional): Defaults to "all". Returns: @@ -57,8 +59,3 @@ def get_lab_feature_spec( # pylint: disable=dangerous-default-value } for df in dfs ] - - -__all__ = [ - "get_lab_feature_spec", -] diff --git a/src/application/t2d/features_diagnoses.py b/src/application/t2d/features_diagnoses.py index 27ada5d9..d46b8ee2 100644 --- a/src/application/t2d/features_diagnoses.py +++ b/src/application/t2d/features_diagnoses.py @@ -48,8 +48,3 @@ def get_diagnosis_feature_spec( # pylint: disable=dangerous-default-value } for df in dfs ] - - -__all__ = [ - "get_diagnosis_feature_spec", -] diff --git a/src/application/t2d/features_medications.py b/src/application/t2d/features_medications.py index 1f624023..a109685f 100644 --- a/src/application/t2d/features_medications.py +++ b/src/application/t2d/features_medications.py @@ -1,17 +1,20 @@ """Loaders for T2D medication feature spec.""" +from typing import Any, Optional + + def get_medication_feature_spec( # pylint: disable=dangerous-default-value - lookbehind_days: int = None, - resolve_multiple: str = None, - fallback=0, -): + lookbehind_days: Optional[list[int]] = None, + resolve_multiple: Optional[list[str]] = None, + fallback: Any = 0, +) -> list: """Get feature specification for T2D medications. Args: - lookbehind_days (int, optional): Defaults to None. - resolve_multiple (str, optional): Defaults to None. - fallback (int, optional): Defaults to 0. + lookbehind_days (list[int], optional): Defaults to None. + resolve_multiple (list[str], optional): Defaults to None. + fallback (Any, optional): Defaults to 0. Returns: list: Feature specification. @@ -32,8 +35,3 @@ def get_medication_feature_spec( # pylint: disable=dangerous-default-value "allowed_nan_value_prop": 0.0, }, ] - - -__all__ = [ - "get_medication_feature_spec", -] diff --git a/src/application/t2d/generate_features_and_write_to_disk.py b/src/application/t2d/generate_features_and_write_to_disk.py index d533e705..6e1c8ed5 100644 --- a/src/application/t2d/generate_features_and_write_to_disk.py +++ b/src/application/t2d/generate_features_and_write_to_disk.py @@ -7,6 +7,7 @@ import random import time from pathlib import Path +from typing import Any, Optional, Union import numpy as np import pandas as pd @@ -19,10 +20,10 @@ from application.t2d.features_diagnoses import get_diagnosis_feature_spec from application.t2d.features_medications import get_medication_feature_spec from psycopmlutils.data_checks.flattened.data_integrity import ( - check_feature_set_integrity_from_dir, + save_feature_set_integrity_from_dir, ) from psycopmlutils.data_checks.flattened.feature_describer import ( - create_feature_description_from_dir, + save_feature_description_from_dir, ) from psycopmlutils.loaders.raw.pre_load_dfs import pre_load_unique_dfs from psycopmlutils.timeseriesflattener import ( @@ -31,100 +32,225 @@ ) from psycopmlutils.utils import FEATURE_SETS_PATH -if __name__ == "__main__": - msg = Printer(timestamp=True) - # set path to save features to - PROJ_PATH = FEATURE_SETS_PATH / "t2d" - if not PROJ_PATH.exists(): - PROJ_PATH.mkdir() +def log_to_wandb(wandb_project_name, predictor_combinations, save_dir): + """Log poetry lock file and file prefix to WandB for reproducibility.""" - RESOLVE_MULTIPLE = ["max", "min", "mean", "latest"] - LOOKBEHIND_DAYS = [365, 1825, 9999] + feature_settings = { + "save_path": save_dir, + "predictor_list": predictor_combinations, + } - LAB_PREDICTORS = get_lab_feature_spec( - resolve_multiple=RESOLVE_MULTIPLE, - lookbehind_days=LOOKBEHIND_DAYS, - values_to_load="numerical_and_coerce", - ) + run = wandb.init(project=wandb_project_name, config=feature_settings) + run.log_artifact("poetry.lock", name="poetry_lock_file", type="poetry_lock") - DIAGNOSIS_PREDICTORS = get_diagnosis_feature_spec( - resolve_multiple=RESOLVE_MULTIPLE, - lookbehind_days=LOOKBEHIND_DAYS, - fallback=0, + run.finish() + + +def save_feature_set_description_to_disk( + predictor_combinations: list, + flattened_csv_dir: Path, + out_dir: Path, +): + """Describe output. + + Args: + predictor_combinations (list): List of predictor specs. + flattened_csv_dir (Path): Path to flattened csv dir. + out_dir (Path): Path to output dir. + """ + + # Create data integrity report + save_feature_description_from_dir( + feature_set_csv_dir=flattened_csv_dir, + predictor_dicts=predictor_combinations, + splits=["train"], + out_dir=out_dir, ) - MEDICATION_PREDICTORS = get_medication_feature_spec( - lookbehind_days=LOOKBEHIND_DAYS, - resolve_multiple=["count"], - fallback=0, + save_feature_set_integrity_from_dir( + feature_set_csv_dir=flattened_csv_dir, + split_names=["train", "val", "test"], + out_dir=out_dir, ) - PREDICTOR_SPEC_LIST = DIAGNOSIS_PREDICTORS + LAB_PREDICTORS + MEDICATION_PREDICTORS - PREDICTOR_COMBINATIONS = create_feature_combinations(PREDICTOR_SPEC_LIST) - # Some predictors take way longer to complete. Shuffling ensures that e.g. the ones that take the longest aren't all - # at the end of the list. - random.shuffle(PREDICTOR_SPEC_LIST) - random.shuffle(PREDICTOR_COMBINATIONS) +def create_save_dir_path( + proj_path: Path, + feature_set_id: str, +) -> Path: + """Create save directory. - # Many features will use the same dataframes, so we can load them once and reuse them. - pre_loaded_dfs = pre_load_unique_dfs( - unique_predictor_dict_list=PREDICTOR_SPEC_LIST, - ) + Args: + proj_path (Path): Path to project. + feature_set_id (str): Feature set id. - event_times = psycopmlutils.loaders.raw.t2d() + Returns: + Path: Path to sub directory. + """ - msg.info(f"Generating {len(PREDICTOR_COMBINATIONS)} features") + # Split and save to disk + # Create directory to store all files related to this run + save_dir = proj_path / feature_set_id - msg.info("Loading prediction times") - prediction_times = psycopmlutils.loaders.raw.physical_visits_to_psychiatry() + if not save_dir.exists(): + save_dir.mkdir() - msg.info("Initialising flattened dataset") - flattened_df = FlattenedDataset( - prediction_times_df=prediction_times, - n_workers=min( - len(PREDICTOR_COMBINATIONS), - psutil.cpu_count(logical=False) * 3, - ), # * 3 since dataframe loading is IO intensive, cores are likely to wait for a lot of them. - feature_cache_dir=PROJ_PATH / "feature_cache", + return save_dir + + +def split_and_save_to_disk( + flattened_df: pd.DataFrame, + out_dir: Path, + file_prefix: str, + split_ids_dict: Optional[dict[str, pd.Series]] = None, + splits: Optional[list[str]] = None, +): + """Split and save to disk. + + Args: + flattened_df (pd.DataFrame): Flattened dataframe. + out_dir (Path): Path to output directory. + file_prefix (str): File prefix. + split_ids_dict (Optional[dict[str, list[str]]]): Dictionary of split ids, like {"train": pd.Series with ids}. + splits (list, optional): Which splits to create. Defaults to ["train", "val", "test"]. + """ + + if splits is None: + splits = ["train", "val", "test"] + + msg = Printer(timestamp=True) + + flattened_df_ids = flattened_df["dw_ek_borger"].unique() + + # Version table with current date and time + # prefix with user name to avoid potential clashes + + # Create splits + for dataset_name in splits: + if split_ids_dict is None: + df_split_ids = psycopmlutils.loaders.raw.load_ids(split=dataset_name) + else: + df_split_ids = split_ids_dict[dataset_name] + + # Find IDs which are in split_ids, but not in flattened_df + split_ids = df_split_ids["dw_ek_borger"].unique() + flattened_df_ids = flattened_df["dw_ek_borger"].unique() + + ids_in_split_but_not_in_flattened_df = split_ids[ + ~np.isin(split_ids, flattened_df_ids) + ] + + msg.warn( + f"{dataset_name}: There are {len(ids_in_split_but_not_in_flattened_df)} ({round(len(ids_in_split_but_not_in_flattened_df)/len(split_ids)*100, 2)}%) ids which are in {dataset_name}_ids but not in flattened_df_ids, will get dropped during merge. If examining patients based on physical visits, see 'OBS: Patients without physical visits' on the wiki for more info.", + ) + + split_df = pd.merge(flattened_df, df_split_ids, how="inner", validate="m:1") + + # Version table with current date and time + filename = f"{file_prefix}_{dataset_name}.csv" + msg.info(f"Saving {filename} to disk") + + file_path = out_dir / filename + + split_df.to_csv(file_path, index=False) + + msg.good(f"{dataset_name}: Succesfully saved to {file_path}") + + +def add_metadata( + outcome_loader_str: str, + pre_loaded_dfs: dict[str, pd.DataFrame], + flattened_dataset: FlattenedDataset, +) -> FlattenedDataset: + """Add metadata. + + Args: + outcome_loader_str (str): String to lookup in catalogue to load outcome. + pre_loaded_dfs (dict[str, pd.DataFrame]): Dictionary of pre-loaded dataframes. + flattened_dataset (FlattenedDataset): Flattened dataset. + + Returns: + FlattenedDataset: Flattened dataset. + """ + + # Add timestamp from outcomes + flattened_dataset.add_static_info( + info_df=pre_loaded_dfs[outcome_loader_str], + prefix="", + input_col_name="timestamp", + output_col_name="timestamp_first_t2d", ) - flattened_df.add_age(psycopmlutils.loaders.raw.birthdays()) - # Outcome + return flattened_dataset + + +def add_outcomes( + outcome_loader_str: str, + pre_loaded_dfs: dict[str, pd.DataFrame], + flattened_dataset: FlattenedDataset, + lookahead_years: list[Union[int, float]], +) -> FlattenedDataset: + """Add outcomes. + + Args: + outcome_loader_str (str): String to lookup in catalogue to load outcome. + pre_loaded_dfs (dict[str, pd.DataFrame]): Dictionary of pre-loaded dataframes. + flattened_dataset (FlattenedDataset): Flattened dataset. + lookahead_years (list[Union[int, float]]): List of lookahead years. + + Returns: + FlattenedDataset: Flattened dataset. + """ + + msg = Printer(timestamp=True) msg.info("Adding outcome") - for i in [1, 3, 5]: - LOOKAHEAD_DAYS = int(i * 365) - msg.info(f"Adding outcome with {LOOKAHEAD_DAYS} days of lookahead") - flattened_df.add_temporal_outcome( - outcome_df=event_times, - lookahead_days=LOOKAHEAD_DAYS, + + for i in lookahead_years: + lookahead_days = int(i * 365) + msg.info(f"Adding outcome with {lookahead_days} days of lookahead") + flattened_dataset.add_temporal_outcome( + outcome_df=pre_loaded_dfs[outcome_loader_str], + lookahead_days=lookahead_days, resolve_multiple="max", fallback=0, - new_col_name="t2d", + pred_name="t2d", incident=True, dichotomous=True, ) - # Add timestamp from outcomes - flattened_df.add_static_info( - info_df=event_times, - prefix="", - input_col_name="timestamp", - output_col_name="timestamp_first_t2d", - ) msg.good("Finished adding outcome") - # Predictors + return flattened_dataset + + +def add_predictors( + pre_loaded_dfs: dict[str, pd.DataFrame], + predictor_combinations: list[dict[str, dict[str, Any]]], + flattened_dataset: FlattenedDataset, +): + """Add predictors. + + Args: + pre_loaded_dfs (dict[str, pd.DataFrame]): Dictionary of pre-loaded dataframes. + predictor_combinations (list[dict[str, dict[str, Any]]]): List of predictor combinations. + flattened_dataset (FlattenedDataset): Flattened dataset. + """ + + msg = Printer(timestamp=True) + msg.info("Adding static predictors") - flattened_df.add_static_info(psycopmlutils.loaders.raw.sex_female()) + flattened_dataset.add_static_info( + info_df=pre_loaded_dfs["sex_female"], + input_col_name="sex_female", + ) + flattened_dataset.add_age(pre_loaded_dfs["birthdays"]) start_time = time.time() msg.info("Adding temporal predictors") - - flattened_df.add_temporal_predictors_from_list_of_argument_dictionaries( - predictors=PREDICTOR_COMBINATIONS, + flattened_dataset.add_temporal_predictors_from_list_of_argument_dictionaries( + predictors=predictor_combinations, predictor_dfs=pre_loaded_dfs, ) @@ -132,111 +258,233 @@ # Finish msg.good( - f"Finished adding {len(PREDICTOR_COMBINATIONS)} predictors, took {round((end_time - start_time)/60, 1)} minutes", + f"Finished adding {len(predictor_combinations)} predictors, took {round((end_time - start_time)/60, 1)} minutes", + ) + + return flattened_dataset + + +def create_full_flattened_dataset( + outcome_loader_str: str, + prediction_time_loader_str: str, + pre_loaded_dfs: dict[str, pd.DataFrame], + predictor_combinations: list[dict[str, dict[str, Any]]], + proj_path: Path, + lookahead_years: list[Union[int, float]], +) -> pd.DataFrame: + """Create flattened dataset. + + Args: + outcome_loader_str (str): String to lookup in catalogue to load outcome. + prediction_time_loader_str (str): String to lookup in catalogue to load prediction time. + pre_loaded_dfs (dict[str, pd.DataFrame]): Dictionary of pre-loaded dataframes. + predictor_combinations (list[dict[str, dict[str, Any]]]): List of predictor combinations. + proj_path (Path): Path to project directory. + lookahead_years (list[Union[int,float]]): List of lookahead years. + + Returns: + FlattenedDataset: Flattened dataset. + """ + msg = Printer(timestamp=True) + + msg.info(f"Generating {len(predictor_combinations)} features") + + msg.info("Initialising flattened dataset") + + flattened_dataset = FlattenedDataset( + prediction_times_df=pre_loaded_dfs[prediction_time_loader_str], + n_workers=min( + len(predictor_combinations), + psutil.cpu_count(logical=False), + ), + feature_cache_dir=proj_path / "feature_cache", + ) + + # Outcome + flattened_dataset = add_outcomes( + pre_loaded_dfs=pre_loaded_dfs, + outcome_loader_str=outcome_loader_str, + flattened_dataset=flattened_dataset, + lookahead_years=lookahead_years, + ) + + flattened_dataset = add_predictors( + pre_loaded_dfs=pre_loaded_dfs, + predictor_combinations=predictor_combinations, + flattened_dataset=flattened_dataset, + ) + + flattened_dataset = add_metadata( + pre_loaded_dfs=pre_loaded_dfs, + outcome_loader_str=outcome_loader_str, + flattened_dataset=flattened_dataset, ) msg.info( - f"Dataframe size is {int(flattened_df.df.memory_usage(index=True, deep=True).sum() / 1024 / 102)} MiB", + f"Dataframe size is {int(flattened_dataset.df.memory_usage(index=True, deep=True).sum() / 1024 / 1024)} MiB", # type: ignore ) - msg.good("Done!") + return flattened_dataset.df - # Split and save to disk - splits = ["test", "val", "train"] - flattened_df_ids = flattened_df.df["dw_ek_borger"].unique() +def setup_for_main( + predictor_spec_list: list[dict[str, dict[str, Any]]], + feature_sets_path: Path, + proj_name: str, +) -> tuple[list[dict[str, dict[str, Any]]], Path, str]: + """Setup for main. + + Args: + predictor_spec_list (list[dict[str, dict[str, Any]]]): List of predictor specifications. + feature_sets_path (Path): Path to feature sets. + proj_name (str): Name of project. + + Returns: + tuple[list[dict[str, dict[str, Any]]], dict[str, pd.DataFrame], Path]: Tuple of predictor combinations, pre-loaded dataframes, and project path. + """ + predictor_combinations = create_feature_combinations(arg_sets=predictor_spec_list) + + # Some predictors take way longer to complete. Shuffling ensures that e.g. the ones that take the longest aren't all + # at the end of the list. + random.shuffle(predictor_spec_list) + random.shuffle(predictor_combinations) + + proj_path = feature_sets_path / proj_name + + if not proj_path.exists(): + proj_path.mkdir() - # Version table with current date and time - # prefix with user name to avoid potential clashes current_user = Path().home().name + feature_set_id = f"psycop_{proj_name}_{current_user}_{len(predictor_combinations)}_features_{time.strftime('%Y_%m_%d_%H_%M')}" - # Create directory to store all files related to this run - sub_dir = ( - PROJ_PATH - / f"{current_user}_{len(PREDICTOR_COMBINATIONS)}_features_{time.strftime('%Y_%m_%d_%H_%M')}" + return predictor_combinations, proj_path, feature_set_id + + +def pre_load_project_dfs( + predictor_spec_list: list[dict[str, Any]], + outcome_loader_str: str, + prediction_time_loader_str: str, +) -> dict[str, pd.DataFrame]: + """Pre-load dataframes for project. + + Args: + predictor_spec_list (list[dict[str, dict[str, Any]]]): List of predictor specs. + outcome_loader_str (str): Outcome loader string. + prediction_time_loader_str (str): Prediction time loader string. + + Returns: + dict[str, pd.DataFrame]: Dictionary of pre-loaded dataframes. + """ + + dfs_to_preload = predictor_spec_list + [ + {"predictor_df": outcome_loader_str}, + {"predictor_df": prediction_time_loader_str}, + {"predictor_df": "birthdays"}, + {"predictor_df": "sex_female"}, + ] + + # Many features will use the same dataframes, so we can load them once and reuse them. + pre_loaded_dfs = pre_load_unique_dfs( + unique_predictor_dict_list=dfs_to_preload, ) - sub_dir.mkdir() - file_prefix = f"psycop_t2d_{current_user}_{len(PREDICTOR_COMBINATIONS)}_predictors_{time.strftime('%Y_%m_%d_%H_%M')}" + return pre_loaded_dfs + + +def main( + proj_name: str, + feature_sets_path: Path, + prediction_time_loader_str: str, + outcome_loader_str: str, + predictor_spec_list: list[dict[str, dict[str, Any]]], + lookahead_years: list[Union[int, float]], +): + """Main function for loading, generating and evaluating a flattened + dataset. + + Args: + proj_name (str): Name of project. + feature_sets_path (Path): Path to where feature sets should be stored. + prediction_time_loader_str (str): Key to lookup in data_loaders registry for prediction time dataframe. + outcome_loader_str (str): Key to lookup in data_loaders registry for outcome dataframe. + predictor_spec_list (list[dict[str, dict[str, Any]]]): List of predictor specs. + lookahead_years (list[Union[int,float]]): List of lookahead years. + """ + + predictor_combinations, proj_path, feature_set_id = setup_for_main( + predictor_spec_list=predictor_spec_list, + feature_sets_path=feature_sets_path, + proj_name=proj_name, + ) - # Create splits - for dataset_name in splits: - df_split_ids = psycopmlutils.loaders.raw.load_ids(split=dataset_name) + pre_loaded_dfs = pre_load_project_dfs( + predictor_spec_list=predictor_spec_list, + outcome_loader_str=outcome_loader_str, + prediction_time_loader_str=prediction_time_loader_str, + ) - # Find IDs which are in split_ids, but not in flattened_df - split_ids = df_split_ids["dw_ek_borger"].unique() - flattened_df_ids = flattened_df.df["dw_ek_borger"].unique() + flattened_df = create_full_flattened_dataset( + outcome_loader_str=outcome_loader_str, + prediction_time_loader_str=prediction_time_loader_str, + pre_loaded_dfs=pre_loaded_dfs, + predictor_combinations=predictor_combinations, + proj_path=proj_path, + lookahead_years=lookahead_years, + ) - ids_in_split_but_not_in_flattened_df = split_ids[ - ~np.isin(split_ids, flattened_df_ids) - ] + out_dir = create_save_dir_path( + feature_set_id=feature_set_id, + proj_path=proj_path, + ) - msg.warn( - f"{dataset_name}: There are {len(ids_in_split_but_not_in_flattened_df)} ({round(len(ids_in_split_but_not_in_flattened_df)/len(split_ids)*100, 2)}%) ids which are in {dataset_name}_ids but not in flattened_df_ids, will get dropped during merge. If examining patients based on physical visits, see 'OBS: Patients without physical visits' on the wiki for more info.", - ) + split_and_save_to_disk( + flattened_df=flattened_df, + out_dir=out_dir, + file_prefix=feature_set_id, + ) - split_df = pd.merge(flattened_df.df, df_split_ids, how="inner", validate="m:1") + log_to_wandb( + predictor_combinations=predictor_combinations, + save_dir=out_dir, # Save-dir as argument because we want to log the path + wandb_project_name=proj_name, + ) - # Version table with current date and time - filename = f"{file_prefix}_{dataset_name}.csv" - msg.info(f"Saving {filename} to disk") + save_feature_set_description_to_disk( + predictor_combinations=predictor_combinations, + flattened_csv_dir=out_dir, + out_dir=out_dir, + ) - file_path = sub_dir / filename - split_df.to_csv(file_path, index=False) +if __name__ == "__main__": + RESOLVE_MULTIPLE = ["max", "min", "mean", "latest"] + LOOKBEHIND_DAYS = [365, 1825, 9999] - msg.good(f"{dataset_name}: Succesfully saved to {file_path}") + LAB_PREDICTORS = get_lab_feature_spec( + resolve_multiple=RESOLVE_MULTIPLE, + lookbehind_days=LOOKBEHIND_DAYS, + values_to_load="numerical_and_coerce", + ) - # Log poetry lock file and file prefix to WandB for reproducibility - feature_settings = { - "file_prefix": file_prefix, - "save_path": sub_dir / file_prefix, - "predictor_list": PREDICTOR_COMBINATIONS, - } + DIAGNOSIS_PREDICTORS = get_diagnosis_feature_spec( + resolve_multiple=RESOLVE_MULTIPLE, + lookbehind_days=LOOKBEHIND_DAYS, + fallback=0, + ) - # Create data integrity report - create_feature_description_from_dir( - path=sub_dir, - predictor_dicts=PREDICTOR_COMBINATIONS, - splits=["train"], + MEDICATION_PREDICTORS = get_medication_feature_spec( + lookbehind_days=LOOKBEHIND_DAYS, + resolve_multiple=["count"], + fallback=0, ) - check_feature_set_integrity_from_dir(path=sub_dir, splits=["train", "val", "test"]) - - run = wandb.init(project="psycop-feature-files", config=feature_settings) - wandb.log_artifact("poetry.lock", name="poetry_lock_file", type="poetry_lock") - - wandb.finish() - - -__all__ = [ - "DIAGNOSIS_PREDICTORS", - "LAB_PREDICTORS", - "LOOKAHEAD_DAYS", - "LOOKBEHIND_DAYS", - "MEDICATION_PREDICTORS", - "PREDICTOR_COMBINATIONS", - "PREDICTOR_SPEC_LIST", - "PROJ_PATH", - "RESOLVE_MULTIPLE", - "current_user", - "df_split_ids", - "end_time", - "event_times", - "feature_settings", - "file_path", - "file_prefix", - "filename", - "flattened_df", - "flattened_df_ids", - "ids_in_split_but_not_in_flattened_df", - "msg", - "pre_loaded_dfs", - "prediction_times", - "run", - "split_df", - "split_ids", - "splits", - "start_time", - "sub_dir", -] + PREDICTOR_SPEC_LIST = DIAGNOSIS_PREDICTORS + LAB_PREDICTORS + MEDICATION_PREDICTORS + + main( + feature_sets_path=FEATURE_SETS_PATH, + predictor_spec_list=PREDICTOR_SPEC_LIST, + proj_name="t2d", + outcome_loader_str="t2d", + prediction_time_loader_str="physical_visits_to_psychiatry", + lookahead_years=[1, 3, 5], + ) diff --git a/src/psycopmlutils/data_checks/flattened/data_integrity.py b/src/psycopmlutils/data_checks/flattened/data_integrity.py index 61a92a8a..3034f160 100644 --- a/src/psycopmlutils/data_checks/flattened/data_integrity.py +++ b/src/psycopmlutils/data_checks/flattened/data_integrity.py @@ -127,20 +127,20 @@ def get_failed_check_names(result: SuiteResult) -> list[str]: def check_train_data_integrity( feature_set_csv_dir: Path, - nrows: int, out_dir: Path, train_outcomes_df: pd.DataFrame, outcome_checks_dir: Path, + n_rows: Optional[int] = None, ): """Runs Deepcheck data integrity checks for the train split. Args: feature_set_csv_dir (Path): Path to a directory containing train/val/test files - nrows (int): Whether to only load a subset of the data. - Should only be used for debugging. out_dir (Path): Path to the directory where the reports should be saved train_outcomes_df (pd.DataFrame): The train outcomes dataframe outcome_checks_dir (Path): Path to the directory where the outcome specific reports should be saved + n_rows (Optional[int]): Whether to only load a subset of the data. + Should only be used for debugging. Returns: failures (dict): A dictionary containing the failed checks @@ -157,7 +157,7 @@ def check_train_data_integrity( feature_set_csv_dir=feature_set_csv_dir, split="train", include_id=True, - nrows=nrows, + nrows=n_rows, ) data_s = Dataset( @@ -208,7 +208,7 @@ def get_suite_results_for_split_pair_and_save_to_disk( out_dir: Path, deepchecks_suite: Any, split_dicts: dict[str, dict[str, Any]], - split_pair: tuple[str], + split_pair: tuple[str, str], file_suffix: str = "", ) -> SuiteResult: """Runs a Deepchecks suite on a given split and saves the results to a @@ -218,7 +218,7 @@ def get_suite_results_for_split_pair_and_save_to_disk( out_dir (Path): Path to the directory where the results should be saved deepchecks_suite (Any): Deepchecks suite to run split_dicts (dict[str, dict[str, Any]]): Dictionary containing the splits. - split_pair (tuple[str]): Splits to run the suite on + split_pair (tuple[str, str]): Splits to run the suite on file_suffix (str, optional): Suffix to add to the file name. Defaults to "". Returns: @@ -282,19 +282,19 @@ def get_split_as_ds_dict( def run_validation_requiring_split_comparison( feature_set_csv_dir: Path, split_names: list[str], - n_rows: int, out_dir: Path, train_outcome_df: pd.DataFrame, -) -> dict: + n_rows: Optional[int] = None, +): """Runs Deepcheck data validation checks for the train/val/test splits. Args: feature_set_csv_dir (Path): Path to a directory containing train/val/test files split_names (list[str]): list of splits to check (train, val, test) - n_rows (int): Whether to only load a subset of the data. - Should only be used for debugging. out_dir (Path): Path to the directory where the reports should be saved train_outcome_df (pd.DataFrame): The train outcomes. + n_rows (int): Whether to only load a subset of the data. + Should only be used for debugging. """ msg = Printer(timestamp=True) @@ -367,10 +367,11 @@ def run_validation_requiring_split_comparison( msg.warn(f"Failed checks: {failed_checks}") -def check_feature_set_integrity_from_dir( # noqa pylint: disable=too-many-statements +def save_feature_set_integrity_from_dir( # noqa pylint: disable=too-many-statements feature_set_csv_dir: Path, - split_names: Optional[list[str]] = None, n_rows: Optional[int] = None, + split_names: Optional[list[str]] = None, + out_dir: Optional[Path] = None, ) -> None: """Runs Deepcheck data integrity and train/val/test checks for a given directory containing train/val/test files. Splits indicates which data. @@ -380,13 +381,22 @@ def check_feature_set_integrity_from_dir( # noqa pylint: disable=too-many-state Args: feature_set_csv_dir (Path): Path to a directory containing train/val/test files - split_names (list[str]): list of splits to check (train, val, test) n_rows (Optional[int]): Whether to only load a subset of the data. Should only be used for debugging. + split_names (list[str]): list of splits to check (train, val, test) + out_dir (Optional[Path]): Path to the directory where the reports should be saved """ if split_names is None: split_names = ["train", "val", "test"] + if out_dir is None: + out_dir = feature_set_csv_dir / "deepchecks" + else: + out_dir = out_dir / "deepchecks" + + if not out_dir.exists(): + out_dir.mkdir() + train_outcomes_df = load_split_outcomes( feature_set_csv_dir=feature_set_csv_dir, split="train", @@ -400,12 +410,13 @@ def check_feature_set_integrity_from_dir( # noqa pylint: disable=too-many-state # Check if file splits exist before running checks for split_name in split_names: file = list(feature_set_csv_dir.glob(f"*{split_name}*.csv")) - if not file or len(file) > 1: - raise ValueError(f"{split_name} split not found in {feature_set_csv_dir}") - out_dir = feature_set_csv_dir / "deepchecks" - if not out_dir.exists(): - out_dir.mkdir() + if not file: + raise ValueError(f"{split_name} split not found in {feature_set_csv_dir}") + if len(file) > 1: + raise ValueError( + f"Multiple {split_name} files found in {feature_set_csv_dir}", + ) # Create subfolder for outcome specific checks outcome_checks_dir = out_dir / "outcomes" @@ -416,14 +427,14 @@ def check_feature_set_integrity_from_dir( # noqa pylint: disable=too-many-state if "train" in split_names: failures = check_train_data_integrity( feature_set_csv_dir=feature_set_csv_dir, - nrows=n_rows, + n_rows=n_rows, out_dir=out_dir, outcome_checks_dir=outcome_checks_dir, train_outcomes_df=train_outcomes_df, ) # Add all keys in failures to failed_checks - for k, v in failures: + for k, v in failures.items(): failed_checks[k] = v # Running data validation checks on train/val and train/test splits that do not @@ -435,16 +446,3 @@ def check_feature_set_integrity_from_dir( # noqa pylint: disable=too-many-state out_dir=out_dir, train_outcome_df=train_outcomes_df, ) - - -__all__ = [ - "check_train_data_integrity", - "custom_train_test_validation", - "get_failed_check_names", - "get_split_as_ds_dict", - "get_suite_results_for_split_pair_and_save_to_disk", - "label_integrity_checks", - "label_split_checks", - "pruned_data_integrity_checks", - "run_validation_requiring_split_comparison", -] diff --git a/src/psycopmlutils/data_checks/flattened/feature_describer.py b/src/psycopmlutils/data_checks/flattened/feature_describer.py index ea3046f9..60657cba 100644 --- a/src/psycopmlutils/data_checks/flattened/feature_describer.py +++ b/src/psycopmlutils/data_checks/flattened/feature_describer.py @@ -112,7 +112,7 @@ def generate_feature_description_row( ), } - for percentile in [0.01, 0.25, 0.5, 0.75, 0.99]: + for percentile in (0.01, 0.25, 0.5, 0.75, 0.99): # Get the value representing the percentile d[f"{percentile*100}-percentile"] = round(series.quantile(percentile), 1) @@ -156,23 +156,30 @@ def generate_feature_description_df( return feature_description_df -def create_feature_description_from_dir( - path: Path, +def save_feature_description_from_dir( + feature_set_csv_dir: Path, predictor_dicts: list[dict[str, str]], splits: Optional[list[str]] = None, -) -> pd.DataFrame: + out_dir: Path = None, +): """Write a csv with feature descriptions in the directory. Args: - path (Path): Path to directory with data frames. + feature_set_csv_dir (Path): Path to directory with data frames. predictor_dicts (list[dict[str, str]]): list of dictionaries with predictor information. splits (list[str]): list of splits to include in the description. Defaults to ["train"]. + out_dir (Path): Path to directory where to save the feature description. Defaults to None. """ if splits is None: splits = ["train"] msg = Printer(timestamp=True) - save_dir = path / "feature_descriptions" + + if out_dir is None: + save_dir = feature_set_csv_dir / "feature_descriptions" + + else: + save_dir = out_dir / "feature_descriptions" if not save_dir.exists(): save_dir.mkdir() @@ -181,7 +188,7 @@ def create_feature_description_from_dir( msg.info(f"{split}: Creating feature description") predictors = load_split_predictors( - feature_set_csv_dir=path, + feature_set_csv_dir=feature_set_csv_dir, split=split, include_id=False, ) @@ -204,14 +211,3 @@ def create_feature_description_from_dir( title="Feature description", df=feature_description_df, ) - - -__all__ = [ - "HIST_BINS", - "UNICODE_HIST", - "create_feature_description_from_dir", - "create_unicode_hist", - "generate_feature_description_df", - "generate_feature_description_row", - "get_value_proportion", -] diff --git a/src/psycopmlutils/data_checks/raw/check_predictor_lists.py b/src/psycopmlutils/data_checks/raw/check_predictor_lists.py index 590d60f0..0e94b748 100644 --- a/src/psycopmlutils/data_checks/raw/check_predictor_lists.py +++ b/src/psycopmlutils/data_checks/raw/check_predictor_lists.py @@ -192,10 +192,3 @@ def check_feature_combinations_return_correct_dfs( # noqa pylint: disable=too-m ) else: raise ValueError(f"{failure_dicts}") - - -__all__ = [ - "check_df_conforms_to_arg_dict", - "get_predictor_df_with_loader_fn", - "get_unique_predictor_dfs", -] diff --git a/src/psycopmlutils/data_checks/raw/check_raw_df.py b/src/psycopmlutils/data_checks/raw/check_raw_df.py index 97a4ab40..8ea069ac 100644 --- a/src/psycopmlutils/data_checks/raw/check_raw_df.py +++ b/src/psycopmlutils/data_checks/raw/check_raw_df.py @@ -1,6 +1,6 @@ """Check that any raw df conforms to the required format.""" -from typing import Optional +from typing import Optional, Union import pandas as pd @@ -8,7 +8,7 @@ def check_for_duplicates( df: pd.DataFrame, subset_duplicates_columns: list[str], -) -> list[str]: +) -> tuple[pd.Series, list[str]]: """Check for duplicates in the dataframe. Args: @@ -16,7 +16,7 @@ def check_for_duplicates( subset_duplicates_columns (list[str]): list of columns to subset on when checking for duplicates. Returns: - list[str]: list of errors. + tuple(pd.Series, list[str]): duplicates and list of errors. """ source_failures = [] @@ -36,7 +36,7 @@ def get_column_dtype_failures( df: pd.DataFrame, expected_val_dtypes: list[str], col: str, -) -> str: +) -> Union[str, None]: """Check that the column is of the correct dtype. Args: @@ -56,6 +56,8 @@ def get_column_dtype_failures( # Check that column has a valid numeric format if df[col].dtype not in expected_val_dtypes: return f"{col}: dtype {df[col].dtype}, expected {expected_val_dtypes}" + else: + return None def get_na_prop_failures( @@ -160,10 +162,17 @@ def check_raw_df( # pylint: disable=too-many-branches source_failures = [] if required_columns is None: - required_columns = ["dw_ek_borger", "timestamp", "value"] + if "value" in df.columns: + required_columns = ["dw_ek_borger", "timestamp", "value"] + elif "date_of_birth" in df.columns: + required_columns = ["dw_ek_borger", "date_of_birth"] + elif "sex_female" in df.columns: + required_columns = ["dw_ek_borger", "sex_female"] + else: + required_columns = ["dw_ek_borger", "timestamp"] if subset_duplicates_columns is None: - subset_duplicates_columns = ["dw_ek_borger", "timestamp", "value"] + subset_duplicates_columns = required_columns if expected_val_dtypes is None: expected_val_dtypes = ["float64", "int64"] @@ -190,12 +199,3 @@ def check_raw_df( # pylint: disable=too-many-branches raise ValueError(source_failures) return source_failures, duplicates - - -__all__ = [ - "check_for_duplicates", - "check_raw_df", - "check_required_columns", - "get_column_dtype_failures", - "get_na_prop_failures", -] diff --git a/src/psycopmlutils/data_checks/raw/validate_raw_data.py b/src/psycopmlutils/data_checks/raw/validate_raw_data.py index 6232511e..25c801e9 100644 --- a/src/psycopmlutils/data_checks/raw/validate_raw_data.py +++ b/src/psycopmlutils/data_checks/raw/validate_raw_data.py @@ -196,12 +196,3 @@ def validate_raw_data( print( f"The following checks failed - look through the generated reports!\n{failed_checks}", ) - - -__all__ = [ - "generate_column_description", - "get_na_prob", - "highlight_large_deviation", - "median_absolute_deviation", - "validate_raw_data", -] diff --git a/src/psycopmlutils/data_checks/utils.py b/src/psycopmlutils/data_checks/utils.py index a33b7d5f..4752820a 100644 --- a/src/psycopmlutils/data_checks/utils.py +++ b/src/psycopmlutils/data_checks/utils.py @@ -71,10 +71,3 @@ def save_df_to_pretty_html_table( with open(path, "w", encoding="utf-8") as f: f.write(HTML_TEMPLATE1 + html + HTML_TEMPLATE2) - - -__all__ = [ - "HTML_TEMPLATE1", - "HTML_TEMPLATE2", - "save_df_to_pretty_html_table", -] diff --git a/src/psycopmlutils/featurizers/tfidf.py b/src/psycopmlutils/featurizers/tfidf.py index 18a134ef..ed0e97dc 100644 --- a/src/psycopmlutils/featurizers/tfidf.py +++ b/src/psycopmlutils/featurizers/tfidf.py @@ -100,18 +100,3 @@ def whitespace_tokenizer(string: str) -> list[str]: with open(save_dir / "tfidf_10.pkl", "wb") as f: pkl.dump(vectorizer, f) - - -__all__ = [ - "OVERTACI", - "SYNTHETIC", - "create_tfidf_vectorizer", - "msg", - "save_dir", - "test_path", - "text", - "train_ids", - "vectorizer", - "vocab", - "whitespace_tokenizer", -] diff --git a/src/psycopmlutils/loaders/flattened/local_feature_loaders.py b/src/psycopmlutils/loaders/flattened/local_feature_loaders.py index ab1617c0..39e75353 100644 --- a/src/psycopmlutils/loaders/flattened/local_feature_loaders.py +++ b/src/psycopmlutils/loaders/flattened/local_feature_loaders.py @@ -97,12 +97,3 @@ def load_split_outcomes( pd.DataFrame: The loaded dataframe """ return get_outcomes(load_split(feature_set_csv_dir, split, nrows=nrows)) - - -__all__ = [ - "get_outcomes", - "get_predictors", - "load_split", - "load_split_outcomes", - "load_split_predictors", -] diff --git a/src/psycopmlutils/loaders/non_numerical_coercer.py b/src/psycopmlutils/loaders/non_numerical_coercer.py index 26153a22..f636191e 100644 --- a/src/psycopmlutils/loaders/non_numerical_coercer.py +++ b/src/psycopmlutils/loaders/non_numerical_coercer.py @@ -62,8 +62,3 @@ def multiply_inequalities_in_df( df[col_to_multiply] = df[col_to_multiply].astype(float) return df - - -__all__ = [ - "multiply_inequalities_in_df", -] diff --git a/src/psycopmlutils/loaders/raw/load_coercion.py b/src/psycopmlutils/loaders/raw/load_coercion.py index b81bbc73..f0fd2deb 100644 --- a/src/psycopmlutils/loaders/raw/load_coercion.py +++ b/src/psycopmlutils/loaders/raw/load_coercion.py @@ -314,27 +314,3 @@ def af_legemlig_lidelse(n_rows: Optional[int] = None) -> pd.DataFrame: coercion_type="Af legemlig lidelse", n_rows=n_rows, ) - - -__all__ = [ - "af_helbredsmaessige_grunde", - "anden_begrundelse", - "beroligende_medicin", - "baelte", - "coercion_duration", - "ect", - "ernaering", - "af_legemlig_lidelse", - "farlighed", - "fastholden", - "skema_1", - "handsker", - "skema_3", - "medicinering", - "naerliggende_fare", - "remme", - "skema_3", - "tvangsindlaeggelse", - "tvangstilbageholdelse", - "urolig_tilstand", -] diff --git a/src/psycopmlutils/loaders/raw/load_demographic.py b/src/psycopmlutils/loaders/raw/load_demographic.py index ed348770..715051c1 100644 --- a/src/psycopmlutils/loaders/raw/load_demographic.py +++ b/src/psycopmlutils/loaders/raw/load_demographic.py @@ -45,9 +45,3 @@ def sex_female(n_rows: Optional[int] = None) -> pd.DataFrame: ) return df.reset_index(drop=True) - - -__all__ = [ - "birthdays", - "sex_female", -] diff --git a/src/psycopmlutils/loaders/raw/load_diagnoses.py b/src/psycopmlutils/loaders/raw/load_diagnoses.py index c515b18d..f145d582 100644 --- a/src/psycopmlutils/loaders/raw/load_diagnoses.py +++ b/src/psycopmlutils/loaders/raw/load_diagnoses.py @@ -716,62 +716,3 @@ def tics_and_misc(n_rows: Optional[int] = None) -> pd.DataFrame: wildcard_icd_code=True, n_rows=n_rows, ) - - -__all__ = [ - "alcohol_dependency", - "behavioural_disorders", - "cannabinoid_dependency", - "cluster_a", - "cluster_b", - "cluster_c", - "concat_from_physical_visits", - "delirium", - "dementia", - "depressive_disorders", - "dissociative_somatoform_and_misc", - "eating_disorders", - "essential_hypertension", - "f0_disorders", - "f1_disorders", - "f2_disorders", - "f3_disorders", - "f4_disorders", - "f5_disorders", - "f6_disorders", - "f7_disorders", - "f8_disorders", - "f9_disorders", - "from_physical_visits", - "hallucinogen_dependency", - "hyperkinetic_disorders", - "hyperlipidemia", - "liverdisease_unspecified", - "manic_and_bipolar", - "mild_mental_retardation", - "misc_affective_disorders", - "misc_drugs", - "misc_f5", - "misc_f8", - "misc_mental_retardation", - "misc_organic_mental_disorders", - "misc_personality", - "misc_personality_disorders", - "misc_psychosis", - "moderate_mental_retardation", - "opioids_and_sedatives", - "pervasive_developmental_disorders", - "phobic_and_anxiety", - "polycystic_ovarian_syndrome", - "schizoaffective", - "schizophrenia", - "sedative_dependency", - "severe_mental_retardation", - "sleep_apnea", - "sleep_problems_unspecified", - "sleeping_and_sexual_disorders", - "stimulant_deo", - "stress_and_adjustment", - "tics_and_misc", - "tobacco_dependency", -] diff --git a/src/psycopmlutils/loaders/raw/load_ids.py b/src/psycopmlutils/loaders/raw/load_ids.py index b6720cf6..619ddc83 100644 --- a/src/psycopmlutils/loaders/raw/load_ids.py +++ b/src/psycopmlutils/loaders/raw/load_ids.py @@ -24,8 +24,3 @@ def load_ids(split: str, n_rows: Optional[int] = None) -> pd.DataFrame: df = sql_load(sql, database="USR_PS_FORSK", chunksize=None, n_rows=n_rows) return df.reset_index(drop=True) - - -__all__ = [ - "load_ids", -] diff --git a/src/psycopmlutils/loaders/raw/load_lab_results.py b/src/psycopmlutils/loaders/raw/load_lab_results.py index 2b6ff65f..f579a4e7 100644 --- a/src/psycopmlutils/loaders/raw/load_lab_results.py +++ b/src/psycopmlutils/loaders/raw/load_lab_results.py @@ -487,28 +487,3 @@ def albumine_creatinine_ratio( n_rows=n_rows, values_to_load=values_to_load, ) - - -__all__ = [ - "alat", - "albumine_creatinine_ratio", - "asat", - "blood_sample", - "creatinine", - "crp", - "egfr", - "fasting_ldl", - "fasting_triglycerides", - "hba1c", - "hdl", - "ldl", - "leukocytes", - "load_all_values", - "load_cancelled", - "load_non_numerical_values_and_coerce_inequalities", - "load_numerical_values", - "lymphocytes", - "scheduled_glc", - "triglycerides", - "unscheduled_p_glc", -] diff --git a/src/psycopmlutils/loaders/raw/load_medications.py b/src/psycopmlutils/loaders/raw/load_medications.py index d84bb84e..b2157315 100644 --- a/src/psycopmlutils/loaders/raw/load_medications.py +++ b/src/psycopmlutils/loaders/raw/load_medications.py @@ -547,30 +547,3 @@ def various_medications(n_rows: Optional[int] = None) -> pd.DataFrame: wildcard_icd_code=True, n_rows=n_rows, ) - - -__all__ = [ - "alimentary_medications", - "anti_epileptics", - "antidepressives", - "antiinfectives", - "antineoplastic", - "antiparasitic", - "antipsychotics", - "anxiolytics", - "blood_medications", - "cardiovascular_medications", - "concat_medications", - "dementia_medications", - "dermatological_medications", - "genito_sex_medications", - "hormonal_medications", - "hyperactive_disorders_medications", - "hypnotics", - "load", - "musculoskeletal_medications", - "nervous_system_medications", - "respiratory_medications", - "sensory_medications", - "various_medications", -] diff --git a/src/psycopmlutils/loaders/raw/load_t2d_outcomes.py b/src/psycopmlutils/loaders/raw/load_t2d_outcomes.py index 057f4a5f..30f4ae18 100644 --- a/src/psycopmlutils/loaders/raw/load_t2d_outcomes.py +++ b/src/psycopmlutils/loaders/raw/load_t2d_outcomes.py @@ -49,9 +49,3 @@ def any_diabetes(n_rows: Optional[int] = None): msg.good("Finished loading any_diabetes event times") output = df[["dw_ek_borger", "timestamp", "value"]] return output.reset_index(drop=True) - - -__all__ = [ - "any_diabetes", - "t2d", -] diff --git a/src/psycopmlutils/loaders/raw/load_text.py b/src/psycopmlutils/loaders/raw/load_text.py index 6454b95c..7534356f 100644 --- a/src/psycopmlutils/loaders/raw/load_text.py +++ b/src/psycopmlutils/loaders/raw/load_text.py @@ -323,7 +323,7 @@ def load_synth_notes(featurizer: str) -> pd.DataFrame: pd.DataFrame: (Featurized) synthetic notes """ p = Path("tests") / "test_data" - df = pd.read_csv(p / "synth_txt_data.csv") + df = pd.read_csv(p / "raw" / "synth_txt_data.csv") df = df.dropna() df["timestamp"] = pd.to_datetime(df["timestamp"]) @@ -334,13 +334,3 @@ def load_synth_notes(featurizer: str) -> pd.DataFrame: ) raise ValueError("Only tfidf featurizer supported for synth notes") - - -__all__ = [ - "get_all_valid_note_types", - "load_aktuel_psykisk", - "load_all_notes", - "load_and_featurize_notes", - "load_arbitrary_notes", - "load_synth_notes", -] diff --git a/src/psycopmlutils/loaders/raw/load_visits.py b/src/psycopmlutils/loaders/raw/load_visits.py index 0c301ac1..a4ba9442 100644 --- a/src/psycopmlutils/loaders/raw/load_visits.py +++ b/src/psycopmlutils/loaders/raw/load_visits.py @@ -6,10 +6,12 @@ from wasabi import msg from psycopmlutils.loaders.raw.sql_load import sql_load +from psycopmlutils.utils import data_loaders +@data_loaders.register("physical_visits_to_psychiatry") def physical_visits_to_psychiatry( - where_clause: Optional[str] = None, # noqa: DAR102 + where_clause: Optional[str] = None, where_separator: Optional[str] = "AND", n_rows: Optional[int] = None, ) -> pd.DataFrame: @@ -77,8 +79,3 @@ def physical_visits_to_psychiatry( msg.good("Loaded physical visits") return output_df.reset_index(drop=True) - - -__all__ = [ - "physical_visits_to_psychiatry", -] diff --git a/src/psycopmlutils/loaders/raw/pre_load_dfs.py b/src/psycopmlutils/loaders/raw/pre_load_dfs.py index d40ec3a9..f3d09a38 100644 --- a/src/psycopmlutils/loaders/raw/pre_load_dfs.py +++ b/src/psycopmlutils/loaders/raw/pre_load_dfs.py @@ -1,7 +1,7 @@ """Pre-load dataframes to avoid duplicate loading.""" from multiprocessing import Pool -from typing import Union +from typing import Any, Union import pandas as pd from wasabi import Printer @@ -10,11 +10,11 @@ from psycopmlutils.utils import data_loaders -def load_df(predictor_df: str, values_to_load: str = None) -> pd.DataFrame: +def load_df(predictor_df: str, values_to_load: Union[str, None] = None) -> pd.DataFrame: """Load a dataframe from a SQL database. Args: - predictor_df (str): The name of the SQL database. + predictor_df (str): The name of the loader function which calls the SQL database. values_to_load (dict): Which values to load for medications. Takes "all", "numerical" or "numerical_and_coerce". Defaults to None. Returns: @@ -22,6 +22,8 @@ def load_df(predictor_df: str, values_to_load: str = None) -> pd.DataFrame: """ msg = Printer(timestamp=True) + df = pd.DataFrame() + msg.info(f"Loading {predictor_df}") loader_fns = data_loaders.get_all() @@ -35,27 +37,59 @@ def load_df(predictor_df: str, values_to_load: str = None) -> pd.DataFrame: else: df = loader_fns[predictor_df]() + # Check that df is a dataframe + if df.shape[0] == 0: + raise ValueError(f"Loaded dataframe {predictor_df} is empty.") + msg.info(f"Loaded {predictor_df} with {len(df)} rows") - return {predictor_df: df} + return df -def load_df_wrapper(predictor_dict: dict[str, Union[str, float, int]]) -> pd.DataFrame: +def load_df_wrapper(predictor_dict: dict[str, Any]) -> dict[str, pd.DataFrame]: """Wrapper to load a dataframe from a dictionary. Args: - predictor_dict (dict[str, Union[str, float, int]]): dictionary where the key predictor_df maps to an SQL database. + predictor_dict (dict[str, Any]): dictionary where the key predictor_df maps to an SQL database. Returns: pd.DataFrame: The loaded dataframe. """ - return load_df( - predictor_df=predictor_dict["predictor_df"], - values_to_load=predictor_dict.get("values_to_load"), - ) + return { + predictor_dict["predictor_df"]: load_df( + predictor_df=predictor_dict["predictor_df"], + values_to_load=predictor_dict.get("values_to_load"), + ), + } + + +def error_check_dfs(pre_loaded_dfs: list[dict[str, pd.DataFrame]]) -> None: + """Error check the pre-loaded dataframes. + + Args: + pre_loaded_dfs (list): list of pre-loaded dataframes. + """ + # Error check the laoded dfs + failures = [] + + msg = Printer(timestamp=True) + + for d in pre_loaded_dfs: + for k in d.keys(): + source_failures, _ = check_raw_df(df=d[k], raise_error=False) + + if len(source_failures) > 0: + failures.append({k: source_failures}) + + if len(failures) > 0: + raise ValueError( + f"Pre-loaded dataframes failed source checks. {source_failures}", + ) + + msg.info(f"Pre-loaded {len(pre_loaded_dfs)} dataframes, all conformed to criteria") def pre_load_unique_dfs( - unique_predictor_dict_list: list[dict[str, Union[str, float, int]]], + unique_predictor_dict_list: list[dict[str, Any]], ) -> dict[str, pd.DataFrame]: """Pre-load unique dataframes to avoid duplicate loading. @@ -77,33 +111,9 @@ def pre_load_unique_dfs( with Pool(n_workers) as p: pre_loaded_dfs = p.map(load_df_wrapper, unique_predictor_dict_list) - # Error check the laoded dfs - failures = [] - - for d in pre_loaded_dfs: - for k in d.keys(): - ( - source_failures, - duplicates, # pylint: disable = unused-variable - ) = check_raw_df(df=d[k], raise_error=False) - - if len(source_failures) > 0: - failures.append({k: source_failures}) - - if len(failures) > 0: - raise ValueError( - f"Pre-loaded dataframes failed source checks. {source_failures}", - ) - msg.info(f"Pre-loaded {len(unique_dfs)} dataframes, all conformed to criteria") + error_check_dfs(pre_loaded_dfs=pre_loaded_dfs) # Combined pre_loaded dfs into one dictionary - pre_loaded_dfs = {k: v for d in pre_loaded_dfs for k, v in d.items()} - - return pre_loaded_dfs - + pre_loaded_dfs = {k: v for d in pre_loaded_dfs for k, v in d.items()} # type: ignore -__all__ = [ - "load_df", - "load_df_wrapper", - "pre_load_unique_dfs", -] + return pre_loaded_dfs # type: ignore diff --git a/src/psycopmlutils/loaders/raw/sql_load.py b/src/psycopmlutils/loaders/raw/sql_load.py index dc8c6336..7c3c19b3 100644 --- a/src/psycopmlutils/loaders/raw/sql_load.py +++ b/src/psycopmlutils/loaders/raw/sql_load.py @@ -69,8 +69,3 @@ def sql_load( engine.dispose() return df - - -__all__ = [ - "sql_load", -] diff --git a/src/psycopmlutils/loaders/synth/raw/load_synth_data.py b/src/psycopmlutils/loaders/synth/raw/load_synth_data.py new file mode 100644 index 00000000..b5035027 --- /dev/null +++ b/src/psycopmlutils/loaders/synth/raw/load_synth_data.py @@ -0,0 +1,86 @@ +"""Loaders for synth data.""" + +from typing import Optional + +import pandas as pd + +from psycopmlutils.utils import PROJECT_ROOT, data_loaders + + +def load_raw_test_csv(filename: str, n_rows: Optional[int] = None) -> pd.DataFrame: + """Load raw csv. + + Args: + filename (str): Name of the file to load. + n_rows (int, optional): Number of rows to load. Defaults to None. + """ + df = pd.read_csv( + PROJECT_ROOT / "tests" / "test_data" / "raw" / filename, + nrows=n_rows, + ) + + # Convert timestamp col to datetime + if "timestamp" in df.columns: + df["timestamp"] = pd.to_datetime(df["timestamp"]) + + return df + + +@data_loaders.register("synth_predictor_float") +def synth_predictor_float( + n_rows: Optional[int] = None, +) -> pd.DataFrame: + """Load synth predictor data.". + + Args: + n_rows: Number of rows to return. Defaults to None which returns entire coercion data view. + + Returns: + pd.DataFrame + """ + return load_raw_test_csv("synth_raw_float_1.csv", n_rows=n_rows) + + +@data_loaders.register("synth_predictor_binary") +def synth_predictor_binary( + n_rows: Optional[int] = None, +) -> pd.DataFrame: + """Load synth predictor data.". + + Args: + n_rows: Number of rows to return. Defaults to None which returns entire coercion data view. + + Returns: + pd.DataFrame + """ + return load_raw_test_csv("synth_raw_binary_1.csv", n_rows=n_rows) + + +@data_loaders.register("synth_outcome") +def load_synth_outcome( + n_rows: Optional[int] = None, +) -> pd.DataFrame: + """Load synth predictor data.". + + Args: + n_rows: Number of rows to return. Defaults to None which returns entire coercion data view. + + Returns: + pd.DataFrame + """ + return load_raw_test_csv("synth_raw_float_2.csv", n_rows=n_rows) + + +@data_loaders.register("synth_prediction_times") +def load_synth_prediction_times( + n_rows: Optional[int] = None, +) -> pd.DataFrame: + """Load synth predictor data.". + + Args: + n_rows: Number of rows to return. Defaults to None which returns entire coercion data view. + + Returns: + pd.DataFrame + """ + return load_raw_test_csv("synth_prediction_times.csv", n_rows=n_rows) diff --git a/src/psycopmlutils/loaders/utils.py b/src/psycopmlutils/loaders/utils.py index 40707fc1..0d03f153 100644 --- a/src/psycopmlutils/loaders/utils.py +++ b/src/psycopmlutils/loaders/utils.py @@ -16,9 +16,3 @@ def get_tfidf_vocab( TFIDF_VOCAB = {n: get_tfidf_vocab(n) for n in [100, 500, 1000]} - - -__all__ = [ - "TFIDF_VOCAB", - "get_tfidf_vocab", -] diff --git a/src/psycopmlutils/model_performance/model_performance.py b/src/psycopmlutils/model_performance/model_performance.py index 76b08bbe..091333b2 100644 --- a/src/psycopmlutils/model_performance/model_performance.py +++ b/src/psycopmlutils/model_performance/model_performance.py @@ -463,13 +463,3 @@ def compute_metrics( metadata_col_names=None, to_wide=True, ) - - -__all__ = [ - "ModelPerformance", - "binary_df", - "binary_res", - "id2label", - "multiclass_df", - "multiclass_res", -] diff --git a/src/psycopmlutils/model_performance/utils.py b/src/psycopmlutils/model_performance/utils.py index e3e4f34b..0ecacf1d 100644 --- a/src/psycopmlutils/model_performance/utils.py +++ b/src/psycopmlutils/model_performance/utils.py @@ -152,13 +152,3 @@ def add_metadata_cols(df: pd.DataFrame, metadata: pd.DataFrame) -> pd.DataFrame: meta_df = pd.DataFrame.from_records(meta_dict) return df.reset_index(drop=True).join(meta_df) - - -__all__ = [ - "add_metadata_cols", - "aggregate_predictions", - "idx_to_class", - "labels_to_int", - "scores_to_probs", - "select_metadata_cols", -] diff --git a/src/psycopmlutils/synth_data_generator/synth_col_generators.py b/src/psycopmlutils/synth_data_generator/synth_col_generators.py index 6f0c89d5..cb9502a5 100644 --- a/src/psycopmlutils/synth_data_generator/synth_col_generators.py +++ b/src/psycopmlutils/synth_data_generator/synth_col_generators.py @@ -1,5 +1,4 @@ """Column generators for synthetic data.""" - from collections.abc import Iterable from typing import Any, Optional @@ -8,13 +7,15 @@ from scipy import stats from transformers import GPT2LMHeadModel, GPT2Tokenizer +from psycopmlutils.utils import PROJECT_ROOT + def create_outcome_values( - df: pd.DataFrame, + df: pd.DataFrame, # pylint: disable=redefined-outer-name n_samples: int, logistic_outcome_model: str, - intercept: Optional[float] = 0, - noise_mean_sd: Optional[tuple[float, float]] = (0, 1), + intercept: float = 0, + noise_mean_sd: tuple[float, float] = (0, 1), ): """Create outcome values for a column. @@ -100,14 +101,14 @@ def generate_col_from_specs( column_type: str, n_samples: int, col_specs: dict, - sequence: str, + sequence: Optional[str], tokenizer: Optional[Any] = None, model: Optional[Any] = None, ) -> Iterable: """Generate a column of data. Args: - column_type (str): Type of column to generate. Either uniform_int, text, or datetime_uniform. + column_type (str): Type of column to generate. Either uniform_int, text, id or datetime_uniform. n_samples (int): Number of rows to generate. col_specs (dict): A dict representing each column. Key is col_name (str), values is a dict with column_type (str), min (int) and max(int). sequence (str): Text prompt to use for generating text data. Defaults to "The quick brown fox jumps over the lazy dog". @@ -122,6 +123,8 @@ def generate_col_from_specs( """ if column_type == "text": + if sequence is None: + raise ValueError("If column_type is text, sequence must be specified.") generated_texts = generate_text_data( n_samples=n_samples, sequence=sequence, @@ -130,7 +133,8 @@ def generate_col_from_specs( ) return generated_texts - + elif column_type == "id": + return -np.arange(n_samples) elif column_type == "uniform_int": return np.random.randint( low=col_specs["min"], @@ -165,7 +169,7 @@ def generate_col_from_specs( def generate_data_columns( predictors: Iterable[dict], n_samples: int, - df: pd.DataFrame, + df: Optional[pd.DataFrame] = None, # pylint: disable=redefined-outer-name text_prompt: Optional[str] = None, ) -> pd.DataFrame: """Generate a dataframe with columns from the predictors iterable. @@ -173,7 +177,7 @@ def generate_data_columns( Args: predictors (iter[dict]): A dict representing each column. Key is col_name (str), values is a dict with column_type (str), min (int) and max(int). n_samples (int): Number of rows to generate. - df (pd.DataFrame): Dataframe to append to + df (pd.DataFrame): Dataframe to append to. text_prompt (str): Text prompt to use for generating text data. Defaults to "The quick brown fox jumps over the lazy dog". Raises: @@ -198,35 +202,50 @@ def generate_data_columns( """ sequence = text_prompt if text_prompt else None - for col_name, col_props in predictors.items(): - # np.nan objects turn into "nan" strings in the real life dataframe. - # imitate this in the synthetic data as well. - if "nan" in col_name: - df = df.rename({col_name: col_name.replace("np.nan", "nan")}, axis=1) - col_name = col_name.replace("np.nan", "nan") - - column_type = col_props["column_type"] - - df[col_name] = generate_col_from_specs( - column_type=column_type, - n_samples=n_samples, - sequence=sequence, - col_specs=col_props, - ) - - # If column has min and/or max, floor and ceil appropriately - if df[col_name].dtype not in ["datetime64[ns]"]: - if "min" in col_props: - df[col_name] = df[col_name].clip(lower=col_props["min"]) - if "max" in col_props: - df[col_name] = df[col_name].clip(upper=col_props["max"]) + if df is None: + df = pd.DataFrame() + + for predictor_spec in predictors: + for col_name, col_props in predictor_spec.items(): + # np.nan objects turn into "nan" strings in the real life dataframe. + # imitate this in the synthetic data as well. + if "nan" in col_name: + df = df.rename({col_name: col_name.replace("np.nan", "nan")}, axis=1) + col_name = col_name.replace("np.nan", "nan") + + column_type = col_props["column_type"] + + df[col_name] = generate_col_from_specs( + column_type=column_type, + n_samples=n_samples, + sequence=sequence, + col_specs=col_props, + ) + + # If column has min and/or max, floor and ceil appropriately + if df[col_name].dtype not in ["datetime64[ns]"]: + if "min" in col_props: + df[col_name] = df[col_name].clip(lower=col_props["min"]) + if "max" in col_props: + df[col_name] = df[col_name].clip(upper=col_props["max"]) return df -__all__ = [ - "create_outcome_values", - "generate_col_from_specs", - "generate_data_columns", - "generate_text_data", -] +if __name__ == "__main__": + # Get project root directory + column_specs = [ + { + "dw_ek_borger": { + "column_type": "id", + }, + "raw_predictor": {"column_type": "uniform_float", "min": 0, "max": 10}, + }, + ] + + df = generate_data_columns( + predictors=column_specs, + n_samples=10_000, + ) + + df.to_csv(PROJECT_ROOT / "tests" / "test_data" / "synth_raw.csv", index=False) diff --git a/src/psycopmlutils/synth_data_generator/synth_prediction_times_generator.py b/src/psycopmlutils/synth_data_generator/synth_prediction_times_generator.py index 28f9d8ed..36c6117b 100644 --- a/src/psycopmlutils/synth_data_generator/synth_prediction_times_generator.py +++ b/src/psycopmlutils/synth_data_generator/synth_prediction_times_generator.py @@ -1,5 +1,4 @@ """Generator for synth prediction data.""" -from pathlib import Path from typing import Optional import numpy as np @@ -64,49 +63,3 @@ def generate_synth_data( df = replace_vals_with_na(na_prob=na_prob, na_ignore_cols=na_ignore_cols, df=df) return df - - -if __name__ == "__main__": - column_specifications = { - "citizen_ids": {"column_type": "uniform_int", "min": 0, "max": 1_200_001}, - "timestamp": {"column_type": "datetime_uniform", "min": 0, "max": 5 * 365}, - "timestamp_outcome": { - "column_type": "datetime_uniform", - "min": 1 * 365, - "max": 6 * 365, - }, - "pred_hba1c_within_100_days_max_fallback_np.nan": { - "column_type": "normal", - "mean": 48, - "sd": 5, - "fallback": np.nan, - }, - "pred_hdl_within_100_days_max_fallback_np.nan": { - "column_type": "normal", - "mean": 1, - "sd": 0.5, - "min": 0, - "fallback": np.nan, - }, - } - - synth_df = generate_synth_data( - predictors=column_specifications, - outcome_column_name="outc_dichotomous_t2d_within_30_days_max_fallback_0", - n_samples=10_000, - logistic_outcome_model="1*pred_hba1c_within_100_days_max_fallback_nan+1*pred_hdl_within_100_days_max_fallback_nan", - prob_outcome=0.08, - ) - - synth_df.describe() - - save_path = Path(__file__).parent.parent.parent.parent - synth_df.to_csv(save_path / "tests" / "test_data" / "synth_prediction_data.csv") - - -__all__ = [ - "column_specifications", - "generate_synth_data", - "save_path", - "synth_df", -] diff --git a/src/psycopmlutils/synth_data_generator/synth_txt_data_generator.py b/src/psycopmlutils/synth_data_generator/synth_txt_data_generator.py index c20f5738..33517679 100644 --- a/src/psycopmlutils/synth_data_generator/synth_txt_data_generator.py +++ b/src/psycopmlutils/synth_data_generator/synth_txt_data_generator.py @@ -67,11 +67,3 @@ def generate_synth_txt_data( save_path = Path(__file__).parent.parent.parent.parent out_df.to_csv(save_path / "tests" / "test_data" / "synth_txt_data.csv") - - -__all__ = [ - "column_specifications", - "generate_synth_txt_data", - "out_df", - "save_path", -] diff --git a/src/psycopmlutils/synth_data_generator/utils.py b/src/psycopmlutils/synth_data_generator/utils.py index 4dcc5c88..40cf34eb 100644 --- a/src/psycopmlutils/synth_data_generator/utils.py +++ b/src/psycopmlutils/synth_data_generator/utils.py @@ -24,8 +24,3 @@ def replace_vals_with_na(df: pd.DataFrame, na_prob: float, na_ignore_cols: list[ df[col] = df_[col] return df - - -__all__ = [ - "replace_vals_with_na", -] diff --git a/src/psycopmlutils/timeseriesflattener/create_feature_combinations.py b/src/psycopmlutils/timeseriesflattener/create_feature_combinations.py index 73185054..40312347 100644 --- a/src/psycopmlutils/timeseriesflattener/create_feature_combinations.py +++ b/src/psycopmlutils/timeseriesflattener/create_feature_combinations.py @@ -2,12 +2,12 @@ are lists, and then creating each possible permutation.""" import itertools -from typing import Union +from typing import Any def create_feature_combinations_from_dict( - d: dict[str, Union[str, list]], -) -> list[dict[str, Union[str, float, int]]]: + d: dict[str, Any], +) -> list[dict[str, Any]]: """Create feature combinations from a dictionary of feature specifications. Only unpacks the top level of lists. @@ -23,12 +23,13 @@ def create_feature_combinations_from_dict( keys, values = zip(*d.items()) # Create all combinations of top level elements permutations_dicts = [dict(zip(keys, v)) for v in itertools.product(*values)] + return permutations_dicts def create_feature_combinations( - arg_sets: Union[list[dict[str, Union[str, list]]], dict[str, Union[str, list]]], -) -> list[dict[str, Union[str, float, int]]]: + arg_sets: list[dict[str, Any]], +) -> list[dict[str, Any]]: """Create feature combinations from a dictionary or list of dictionaries of feature specifications. @@ -74,9 +75,3 @@ def create_feature_combinations( for arg_set in arg_sets: feature_combinations.extend(create_feature_combinations_from_dict(arg_set)) return feature_combinations - - -__all__ = [ - "create_feature_combinations", - "create_feature_combinations_from_dict", -] diff --git a/src/psycopmlutils/timeseriesflattener/flattened_dataset.py b/src/psycopmlutils/timeseriesflattener/flattened_dataset.py index 1b8590bf..4c4acb8f 100644 --- a/src/psycopmlutils/timeseriesflattener/flattened_dataset.py +++ b/src/psycopmlutils/timeseriesflattener/flattened_dataset.py @@ -2,17 +2,19 @@ describing values.""" import datetime as dt -import os from collections.abc import Callable from datetime import timedelta from multiprocessing import Pool from pathlib import Path from typing import Any, Optional, Union +import dask.dataframe as dd import numpy as np import pandas as pd from catalogue import Registry # noqa # pylint: disable=unused-import +from dask.diagnostics.progress import ProgressBar from pandas import DataFrame +from tqdm.dask import TqdmCallback from wasabi import Printer, msg from psycopmlutils.timeseriesflattener.resolve_multiple_functions import resolve_fns @@ -20,8 +22,11 @@ data_loaders, df_contains_duplicates, generate_feature_colname, + load_most_recent_csv_matching_pattern_as_df, ) +ProgressBar().register() + def select_and_assert_keys(dictionary: dict, key_list: list[str]) -> dict: """Keep only the keys in the dictionary that are in key_order, and orders @@ -47,12 +52,12 @@ class FlattenedDataset: # pylint: disable=too-many-instance-attributes def __init__( # pylint: disable=too-many-arguments self, prediction_times_df: DataFrame, - id_col_name: Optional[str] = "dw_ek_borger", - timestamp_col_name: Optional[str] = "timestamp", + id_col_name: str = "dw_ek_borger", + timestamp_col_name: str = "timestamp", min_date: Optional[pd.Timestamp] = None, - n_workers: Optional[int] = 60, - predictor_col_name_prefix: Optional[str] = "pred", - outcome_col_name_prefix: Optional[str] = "outc", + n_workers: int = 60, + predictor_col_name_prefix: str = "pred", + outcome_col_name_prefix: str = "outc", feature_cache_dir: Optional[Path] = None, ): """Class containing a time-series, flattened. @@ -100,9 +105,9 @@ def __init__( # pylint: disable=too-many-arguments self.predictor_col_name_prefix = predictor_col_name_prefix self.outcome_col_name_prefix = outcome_col_name_prefix self.min_date = min_date + self.feature_cache_dir = feature_cache_dir - if feature_cache_dir: - self.feature_cache_dir = feature_cache_dir + if self.feature_cache_dir: if not self.feature_cache_dir.exists(): self.feature_cache_dir.mkdir() @@ -116,7 +121,7 @@ def __init__( # pylint: disable=too-many-arguments # Drop prediction times before min_date if min_date is not None: - self.df = self.df[self.df[self.timestamp_col_name] > self.min_date] + self.df = self.df[self.df[self.timestamp_col_name] > self.min_date] # type: ignore # Create pred_time_uuid_columne self.df[self.pred_time_uuid_col_name] = self.df[self.id_col_name].astype( @@ -161,7 +166,7 @@ def check_that_timestamp_and_id_columns_exist(self): """Check that the required columns are present in the initial dataframe.""" - for col_name in [self.timestamp_col_name, self.id_col_name]: + for col_name in (self.timestamp_col_name, self.id_col_name): if col_name not in self.df.columns: raise ValueError( f"{col_name} does not exist in prediction_times_df, change the df or set another argument", @@ -171,7 +176,7 @@ def _validate_processed_arg_dicts(self, arg_dicts: list): warnings = [] for d in arg_dicts: - if not isinstance(d["values_df"], (DataFrame, Callable)): + if not (isinstance(d["values_df"], DataFrame) or callable(d["values_df"])): warnings.append( f"values_df resolves to neither a Callable nor a DataFrame in {d}", ) @@ -187,32 +192,6 @@ def _validate_processed_arg_dicts(self, arg_dicts: list): f"Didn't generate any features because: {warnings}", ) - def _load_most_recent_df_matching_pattern( - self, - dir_path: Path, - file_pattern: str, - ) -> DataFrame: - """Load most recent df matching pattern. - - Args: - dir (Path): Directory to search - file_pattern (str): Pattern to match - - Returns: - DataFrame: DataFrame matching pattern - - Raises: - FileNotFoundError: If no file matching pattern is found - """ - files = list(dir_path.glob(f"*{file_pattern}*.csv")) - - if len(files) == 0: - raise FileNotFoundError(f"No files matching pattern {file_pattern} found") - - most_recent_file = max(files, key=os.path.getctime) - - return pd.read_csv(most_recent_file) - def _load_cached_df_and_expand_fallback( self, file_pattern: str, @@ -230,8 +209,8 @@ def _load_cached_df_and_expand_fallback( Returns: DataFrame: DataFrame with fallback column expanded """ - df = self._load_most_recent_df_matching_pattern( - dir_path=self.feature_cache_dir, + df = load_most_recent_csv_matching_pattern_as_df( + dir_path=self.feature_cache_dir, # type: ignore file_pattern=file_pattern, ) @@ -266,6 +245,11 @@ def _cache_is_hit( bool: True if cache is hit, False otherwise """ # Check that file exists + if self.feature_cache_dir is None: + raise ValueError( + "feature_cache_dir is None", + ) + file_pattern_hits = list(self.feature_cache_dir.glob(f"*{file_pattern}*.csv")) if len(file_pattern_hits) == 0: @@ -273,7 +257,7 @@ def _cache_is_hit( return False # Check that file contents match expected - cache_df = self._load_most_recent_df_matching_pattern( + cache_df = load_most_recent_csv_matching_pattern_as_df( dir_path=self.feature_cache_dir, file_pattern=file_pattern, ) @@ -283,13 +267,9 @@ def _cache_is_hit( # Check that some values in generated_df differ from fallback # Otherwise, comparison to cache is meaningless n_to_generate = 1_000 - while not any( generated_df[full_col_str] != kwargs_dict["fallback"], ): - self.msg.info( - f"{full_col_str}: Generated_df was all fallback values, regenerating", - ) generated_df = self.flatten_temporal_values_to_df( prediction_times_with_uuid_df=self.df.sample(n_to_generate), @@ -299,33 +279,51 @@ def _cache_is_hit( **kwargs_dict, ) - n_to_generate = ( - n_to_generate**1.5 - ) # Increase n_to_generate by 1.5x each time to increase chance of non_fallback values + # Keep only values in generated_df which are not the fallback + generated_df = generated_df[generated_df[full_col_str].notna()] - cached_suffix = "_c" - generated_suffix = "_g" + # Saving to csv rounds floats, so we need to round here too + # to avoid false negatives. Otherwise, it thinks the .csv + # file has different values from the generated_df, simply because + # generated_df has more decimal places. + generated_df = generated_df.round(5) + cache_df = cache_df.round(5) + + if not any( + generated_df[full_col_str] != kwargs_dict["fallback"], + ): + self.msg.info( + f"{full_col_str}: Generated_df was all fallback values, regenerating", + ) + + n_to_generate = ( + n_to_generate**1.5 + ) # Increase n_to_generate by 1.5x each time to increase chance of non_fallback values + + cached_suffix = "_c" + generated_suffix = "_g" # Merge cache_df onto generated_df merged_df = pd.merge( left=generated_df, right=cache_df, how="left", - on=self.pred_time_uuid_col_name, + on=[self.pred_time_uuid_col_name, full_col_str], suffixes=(generated_suffix, cached_suffix), validate="1:1", indicator=True, ) - # Check that all rows in generated_df are in cache_df - if not merged_df[full_col_str + generated_suffix].equals( - merged_df[full_col_str + cached_suffix], - ): + msg.info("Merge complete") + + # Check that all rows in merged_df have the indicator == "both" + if not all(merged_df["_merge"] == "both"): self.msg.info(f"Cache miss, computed values didn't match {file_pattern}") return False # If all checks passed, return true msg.good(f"Cache hit for {full_col_str}") + return True def _get_feature(self, kwargs_dict: dict) -> DataFrame: @@ -347,8 +345,7 @@ def _get_feature(self, kwargs_dict: dict) -> DataFrame: file_pattern = f"{full_col_str}_{self.n_uuids}_uuids" - if hasattr(self, "feature_cache_dir"): - + if self.feature_cache_dir: if self._cache_is_hit( file_pattern=file_pattern, full_col_str=full_col_str, @@ -380,11 +377,15 @@ def _get_feature(self, kwargs_dict: dict) -> DataFrame: ) # Write df to cache if exists - if hasattr(self, "feature_cache_dir"): + if self.feature_cache_dir: cache_df = df[[self.pred_time_uuid_col_name, full_col_str]] # Drop rows containing fallback, since it's non-informative - cache_df = cache_df[cache_df[full_col_str] != kwargs_dict["fallback"]] + # Handle NA separately since it can never pass equality check + if np.isnan(kwargs_dict["fallback"]): + cache_df = cache_df[~cache_df[full_col_str].isna()] + else: + cache_df = cache_df[(cache_df[full_col_str] != kwargs_dict["fallback"])] # Write df to cache timestamp = dt.datetime.now().strftime("%Y-%m-%d_%H-%M-%S") @@ -512,14 +513,14 @@ def _set_kwargs_for_create_flattened_df_for_val(self, arg_dict): def add_temporal_predictors_from_list_of_argument_dictionaries( # pylint: disable=too-many-branches self, predictors: list[dict[str, str]], - predictor_dfs: dict[str, DataFrame] = None, + predictor_dfs: Optional[dict[str, DataFrame]] = None, resolve_multiple_fns: Optional[dict[str, Callable]] = None, ): """Add predictors to the flattened dataframe from a list. Args: predictors (list[dict[str, str]]): A list of dictionaries describing the prediction_features you'd like to generate. - predictor_dfs (dict[str, DataFrame], optional): If wanting to pass already resolved dataframes. + predictor_dfs (Optional[dict[str, DataFrame]]): If wanting to pass already resolved dataframes. By default, you should add your dataframes to the @data_loaders registry. Then the the predictor_df value in the predictor dict will map to a callable which returns the dataframe. Optionally, you can map the string to a dataframe in predictor_dfs. @@ -556,9 +557,9 @@ def add_temporal_predictors_from_list_of_argument_dictionaries( # pylint: disab Raises: ValueError: If predictor_df is not in the data_loaders registry or predictor_dfs. """ - processed_arg_dicts = [] + processed_arg_dicts: list = [] - dicts_found_in_predictor_dfs = [] + dicts_found_in_predictor_dfs: list = [] # Replace strings with objects as relevant for arg_dict in predictors: @@ -571,6 +572,13 @@ def add_temporal_predictors_from_list_of_argument_dictionaries( # pylint: disab arg_dict=arg_dict, ) + # Convert fallback to float64 if NaN to avoid type issues. + # If np.Nan is passed to a float64 column, its type changes from float to float64. + if isinstance(arg_dict["fallback"], float) and np.isnan( + arg_dict["fallback"], + ): + arg_dict["fallback"] = np.float64(np.nan) + # Rename arguments for create_flattened_df_for_val arg_dict = self._set_kwargs_for_create_flattened_df_for_val( arg_dict=arg_dict, @@ -588,8 +596,8 @@ def add_temporal_predictors_from_list_of_argument_dictionaries( # pylint: disab arg_dict=arg_dict, ) - # Validate dicts before starting pool, saves time if errors! - self._validate_processed_arg_dicts(processed_arg_dicts) + # Validate dicts before starting pool, saves time if errors! + self._validate_processed_arg_dicts(processed_arg_dicts) with Pool(self.n_workers) as p: flattened_predictor_dfs = p.map( @@ -598,14 +606,23 @@ def add_temporal_predictors_from_list_of_argument_dictionaries( # pylint: disab ) flattened_predictor_dfs = [ - df.set_index(self.pred_time_uuid_col_name) for df in flattened_predictor_dfs + dd.from_pandas(df.set_index(self.pred_time_uuid_col_name), npartitions=200) + for df in flattened_predictor_dfs ] - msg.info("Feature generation complete, concatenating") - concatenated_dfs = pd.concat( - flattened_predictor_dfs, - axis=1, - ).reset_index() + msg.info( + f"Feature generation complete, concatenating {len(flattened_predictor_dfs)} dataframes", + ) + with TqdmCallback(desc="compute"): + concatenated_dfs = dd.concat( + flattened_predictor_dfs, + axis=1, + interleave_partitions=True, + ).compute() + + msg.info("Concatenation complete, resetting index") + + msg.info("Starting merge with self.df") self.df = pd.merge( self.df, @@ -683,21 +700,17 @@ def add_static_info( Raises: ValueError: If input_col_name does not match a column in info_df. """ - - value_col_name = [col for col in info_df.columns if col not in self.id_col_name] - - # Try to infer value col name if not provided if input_col_name is None: - if len(value_col_name) == 1: - value_col_name = value_col_name[0] - elif len(value_col_name) > 1: - raise ValueError( - f"Only one value column can be added to static info, found multiple: {value_col_name}", - ) - elif len(value_col_name) == 0: - raise ValueError("No value column found in info_df, please check.") + value_col_names = [ + col for col in info_df.columns if col not in self.id_col_name + ] else: - value_col_name = input_col_name + value_col_names = [input_col_name] + + if len(value_col_names) > 1: + raise ValueError("info_df must contain only id_col_name and value_col_name") + + value_col_name = value_col_names[0] # Find output_col_name if prefix == "self.predictor_col_name_prefix": @@ -728,10 +741,10 @@ def add_temporal_outcome( self, outcome_df: DataFrame, lookahead_days: float, - resolve_multiple: Union[Callable, str], + resolve_multiple: Callable, fallback: float, incident: Optional[bool] = False, - new_col_name: Optional[Union[str, list]] = "value", + pred_name: Union[str, list] = "value", dichotomous: Optional[bool] = False, ): """Add an outcome-column to the dataset. @@ -739,10 +752,10 @@ def add_temporal_outcome( Args: outcome_df (DataFrame): A table in wide format. Required columns: patient_id, timestamp, value. lookahead_days (float): How far ahead to look for an outcome in days. If none found, use fallback. - resolve_multiple (Callable, str): How to handle multiple values within the lookahead window. Takes either i) a function that takes a list as an argument and returns a float, or ii) a str mapping to a callable from the resolve_multiple_fn catalogue. + resolve_multiple (Callable): How to handle multiple values within the lookahead window. Takes either i) a function that takes a list as an argument and returns a float, or ii) a str mapping to a callable from the resolve_multiple_fn catalogue. fallback (float): What to do if no value within the lookahead. incident (Optional[bool], optional): Whether looking for an incident outcome. If true, removes all prediction times after the outcome time. Defaults to false. - new_col_name (Optional[Union[str, list]]): Name to use for new column(s). Automatically generated as '{new_col_name}_within_{lookahead_days}_days'. Defaults to "value". + pred_name (Optional[Union[str, list]]): Name to use for new column(s). Automatically generated as '{pred_name}_within_{lookahead_days}_days'. Defaults to "value". dichotomous (bool, optional): Whether the outcome is dichotomous. Allows computational shortcuts, making adding an outcome _much_ faster. Defaults to False. """ prediction_timestamp_col_name = f"{self.timestamp_col_name}_prediction" @@ -764,7 +777,7 @@ def add_temporal_outcome( ) if dichotomous: - full_col_str = f"{self.outcome_col_name_prefix}_dichotomous_{new_col_name}_within_{lookahead_days}_days_{resolve_multiple}_fallback_{fallback}" + full_col_str = f"{self.outcome_col_name_prefix}_dichotomous_{pred_name}_within_{lookahead_days}_days_{resolve_multiple}_fallback_{fallback}" df[full_col_str] = ( df[prediction_timestamp_col_name] + timedelta(days=lookahead_days) @@ -789,16 +802,16 @@ def add_temporal_outcome( interval_days=lookahead_days, resolve_multiple=resolve_multiple, fallback=fallback, - new_col_name=new_col_name, + pred_name=pred_name, ) def add_temporal_predictor( self, predictor_df: DataFrame, lookbehind_days: float, - resolve_multiple: Union[Callable, str], + resolve_multiple: Callable, fallback: float, - new_col_name: str = None, + pred_name: str, ): """Add a column with predictor values to the flattened dataset (e.g. "average value of bloodsample within n days"). @@ -808,7 +821,7 @@ def add_temporal_predictor( lookbehind_days (float): How far behind to look for a predictor value in days. If none found, use fallback. resolve_multiple (Callable, str): How to handle multiple values within the lookbehind window. Takes either i) a function that takes a list as an argument and returns a float, or ii) a str mapping to a callable from the resolve_multiple_fn catalogue. fallback (float): What to do if no value within the lookahead. - new_col_name (str): Name to use for new col. Automatically generated as '{new_col_name}_within_{lookahead_days}_days'. + pred_name (Optional[str]): Name to use for new col. Automatically generated as '{pred_name}_within_{lookahead_days}_days'. """ self.add_temporal_col_to_flattened_dataset( values_df=predictor_df, @@ -816,17 +829,17 @@ def add_temporal_predictor( interval_days=lookbehind_days, resolve_multiple=resolve_multiple, fallback=fallback, - new_col_name=new_col_name, + pred_name=pred_name, ) def add_temporal_col_to_flattened_dataset( self, - values_df: Union[DataFrame, str], + values_df: DataFrame, direction: str, interval_days: float, - resolve_multiple: Union[Callable, str], + resolve_multiple: Callable, fallback: float, - new_col_name: Optional[Union[str, list]] = None, + pred_name: Optional[Union[str, list]] = None, ): """Add a column to the dataset (either predictor or outcome depending on the value of "direction"). @@ -837,9 +850,10 @@ def add_temporal_col_to_flattened_dataset( interval_days (float): How far to look in direction. resolve_multiple (Callable, str): How to handle multiple values within interval_days. Takes either i) a function that takes a list as an argument and returns a float, or ii) a str mapping to a callable from the resolve_multiple_fn catalogue. fallback (float): What to do if no value within the lookahead. - new_col_name (Optional[Union[str, list]]): Name to use for new column(s). Automatically generated as '{new_col_name}_within_{lookahead_days}_days'. + pred_name (Optional[Union[str, list]]): Name to use for new column(s). Automatically generated as '{pred_name}_within_{lookahead_days}_days'. """ - timestamp_col_type = type(values_df[self.timestamp_col_name][0]).__name__ + + timestamp_col_type = type(values_df[self.timestamp_col_name].iloc[0]).__name__ if timestamp_col_type not in ["Timestamp"]: raise ValueError( @@ -864,7 +878,7 @@ def add_temporal_col_to_flattened_dataset( interval_days=interval_days, resolve_multiple=resolve_multiple, fallback=fallback, - new_col_name=new_col_name, + new_col_name=pred_name, id_col_name=self.id_col_name, timestamp_col_name=self.timestamp_col_name, pred_time_uuid_col_name=self.pred_time_uuid_col_name, @@ -885,12 +899,12 @@ def flatten_temporal_values_to_df( # noqa pylint: disable=too-many-locals values_df: Union[Callable, DataFrame], direction: str, interval_days: float, - resolve_multiple: Union[Callable, str], + resolve_multiple: Callable, fallback: Union[float, str], id_col_name: str, timestamp_col_name: str, pred_time_uuid_col_name: str, - new_col_name: Union[str, list], + new_col_name: Optional[Union[str, list]] = None, new_col_name_prefix: Optional[str] = None, loader_kwargs: Optional[dict] = None, ) -> DataFrame: @@ -918,8 +932,7 @@ def flatten_temporal_values_to_df( # noqa pylint: disable=too-many-locals static method. pred_time_uuid_col_name (str): Name of uuid column in prediction_times_with_uuid_df. Required because this is a static method. - new_col_name (Union[str, list]): Name of new column(s) in returned - dataframe. + new_col_name (Union[str, list]): Name of the predictor to generate column(s) for. new_col_name_prefix (str, optional): Prefix to use for new column name. loader_kwargs (dict, optional): Keyword arguments to pass to the loader @@ -927,6 +940,7 @@ def flatten_temporal_values_to_df( # noqa pylint: disable=too-many-locals Returns: DataFrame """ + msg = Printer(timestamp=True) # pylint: disable=redefined-outer-name # Rename column if new_col_name is None: @@ -942,7 +956,7 @@ def flatten_temporal_values_to_df( # noqa pylint: disable=too-many-locals ) # Resolve values_df if not already a dataframe. - if isinstance(values_df, Callable): + if callable(values_df): if loader_kwargs: values_df = values_df(**loader_kwargs) else: @@ -951,7 +965,7 @@ def flatten_temporal_values_to_df( # noqa pylint: disable=too-many-locals if not isinstance(values_df, DataFrame): raise ValueError("values_df is not a dataframe") - for col_name in [timestamp_col_name, id_col_name]: + for col_name in (timestamp_col_name, id_col_name): if col_name not in values_df.columns: raise ValueError( f"{col_name} does not exist in df_prediction_times, change the df or set another argument", @@ -1072,7 +1086,7 @@ def resolve_multiple_values_within_interval_days( if isinstance(resolve_multiple, str): resolve_multiple = resolve_fns.get(resolve_multiple) - if isinstance(resolve_multiple, Callable): + if callable(resolve_multiple): df = resolve_multiple(df).reset_index() else: raise ValueError("resolve_multiple must be or resolve to a Callable") @@ -1125,9 +1139,3 @@ def drop_records_outside_interval_days( ["is_in_interval", "time_from_pred_to_val_in_days"], axis=1, ) - - -__all__ = [ - "FlattenedDataset", - "select_and_assert_keys", -] diff --git a/src/psycopmlutils/timeseriesflattener/resolve_multiple_functions.py b/src/psycopmlutils/timeseriesflattener/resolve_multiple_functions.py index c8ef8dd0..e361912c 100644 --- a/src/psycopmlutils/timeseriesflattener/resolve_multiple_functions.py +++ b/src/psycopmlutils/timeseriesflattener/resolve_multiple_functions.py @@ -82,17 +82,3 @@ def get_change_in_value_per_day(grouped_df: DataFrame) -> DataFrame: return grouped_df.apply( lambda x: Series({"value": stats.linregress(x.val, x.timestamp_val)[0]}), ) - - -__all__ = [ - "get_bool_in_group", - "get_change_in_value_per_day", - "get_count_in_group", - "get_earliest_value_in_group", - "get_latest_value_in_group", - "get_max_in_group", - "get_mean_in_group", - "get_min_in_group", - "get_sum_in_group", - "resolve_fns", -] diff --git a/src/psycopmlutils/utils.py b/src/psycopmlutils/utils.py index 6e1ed457..e64ec1b7 100644 --- a/src/psycopmlutils/utils.py +++ b/src/psycopmlutils/utils.py @@ -3,6 +3,7 @@ utilities. If this file grows, consider splitting it up. """ +import os from pathlib import Path from typing import Optional, Union @@ -17,6 +18,7 @@ RAW_DATA_VALIDATION_PATH = SHARED_RESOURCES_PATH / "raw_data_validation" FEATURIZERS_PATH = SHARED_RESOURCES_PATH / "featurizers" MODEL_PREDICTIONS_PATH = SHARED_RESOURCES_PATH / "model_predictions" +PROJECT_ROOT = Path(__file__).resolve().parents[2] def format_dict_for_printing(d: dict) -> str: @@ -53,7 +55,9 @@ def generate_feature_colname( fallback: str, loader_kwargs: Optional[dict] = None, ) -> Union[str, list[str]]: - """Generates standardized column name from feature collapse information. + """Generates standardized column name from feature collapse information. If + passed a string, generates a single column name. If passed a list of + strings, generates a list of column names. Args: prefix (str): Prefix (typically either "pred" or "outc") @@ -79,12 +83,40 @@ def generate_feature_colname( col_name = [ f"{col}_{format_dict_for_printing(loader_kwargs)}" for col in col_name ] + if len(col_name) == 1: - col_name = col_name[0] + col_name = col_name[0] # type: ignore + return col_name -def df_contains_duplicates(df=pd.DataFrame, col_subset=list[str]): +def load_most_recent_csv_matching_pattern_as_df( + dir_path: Path, + file_pattern: str, +) -> pd.DataFrame: + """Load most recent df matching pattern. + + Args: + dir_path (Path): Directory to search + file_pattern (str): Pattern to match + + Returns: + pd.DataFrame: DataFrame matching pattern + + Raises: + FileNotFoundError: If no file matching pattern is found + """ + files = list(dir_path.glob(f"*{file_pattern}*.csv")) + + if len(files) == 0: + raise FileNotFoundError(f"No files matching pattern {file_pattern} found") + + most_recent_file = max(files, key=os.path.getctime) + + return pd.read_csv(most_recent_file) + + +def df_contains_duplicates(df: pd.DataFrame, col_subset: list[str]): """Check if a dataframe contains duplicates. Args: @@ -95,16 +127,3 @@ def df_contains_duplicates(df=pd.DataFrame, col_subset=list[str]): bool: True if duplicates are found. """ return df.duplicated(subset=col_subset).any() - - -__all__ = [ - "FEATURE_SETS_PATH", - "FEATURIZERS_PATH", - "OUTCOME_DATA_PATH", - "RAW_DATA_VALIDATION_PATH", - "SHARED_RESOURCES_PATH", - "data_loaders", - "df_contains_duplicates", - "format_dict_for_printing", - "generate_feature_colname", -] diff --git a/src/psycopmlutils/writers/sql_writer.py b/src/psycopmlutils/writers/sql_writer.py index 24075050..6ba6632e 100644 --- a/src/psycopmlutils/writers/sql_writer.py +++ b/src/psycopmlutils/writers/sql_writer.py @@ -94,10 +94,3 @@ def write_df_to_sql( conn.close() engine.dispose() - - -__all__ = [ - "chunker", - "insert_with_progress", - "write_df_to_sql", -] diff --git a/tests/helpers/utils_for_testing.py b/tests/helpers/utils_for_testing.py index 1f3d5569..20f3aac6 100644 --- a/tests/helpers/utils_for_testing.py +++ b/tests/helpers/utils_for_testing.py @@ -121,7 +121,7 @@ def assert_flattened_values_as_expected( lookbehind_days=interval_days, resolve_multiple=resolve_multiple, fallback=fallback, - new_col_name=values_colname, + pred_name=values_colname, ) elif direction == "ahead": new_col_name_prefix = "outc" @@ -130,7 +130,7 @@ def assert_flattened_values_as_expected( lookahead_days=interval_days, resolve_multiple=resolve_multiple, fallback=fallback, - new_col_name=values_colname, + pred_name=values_colname, ) else: raise ValueError("direction only takes look ahead or behind") @@ -285,14 +285,3 @@ def check_any_item_in_list_has_str(list_of_str: list, str_: str): bool: True if any item in the list contains the string. """ return any(str_ in item for item in list_of_str) - - -__all__ = [ - "assert_flattened_outcome_as_expected", - "assert_flattened_predictor_as_expected", - "assert_flattened_values_as_expected", - "check_any_item_in_list_has_str", - "convert_cols_with_matching_colnames_to_datetime", - "load_event_times", - "str_to_df", -] diff --git a/tests/test_check_raw_df/test_check_raw_df.py b/tests/test_check_raw_df/test_check_raw_df.py index 90abcf15..262f7231 100644 --- a/tests/test_check_raw_df/test_check_raw_df.py +++ b/tests/test_check_raw_df/test_check_raw_df.py @@ -72,13 +72,3 @@ def test_raw_df_has_duplicates(): with pytest.raises(ValueError, match="NaN"): check_raw_df(df) - - -__all__ = [ - "test_raw_df_has_datetime_formatting", - "test_raw_df_has_duplicates", - "test_raw_df_has_expected_val_dtype", - "test_raw_df_has_invalid_na_prop", - "test_raw_df_has_required_cols", - "test_raw_df_has_rows", -] diff --git a/tests/test_data/flattened/generated_with_outcome/create_synth_flattened_with_outcome.py b/tests/test_data/flattened/generated_with_outcome/create_synth_flattened_with_outcome.py new file mode 100644 index 00000000..346298b2 --- /dev/null +++ b/tests/test_data/flattened/generated_with_outcome/create_synth_flattened_with_outcome.py @@ -0,0 +1,45 @@ +"""Generate synth data with outcome.""" +from pathlib import Path + +import numpy as np + +from psycopmlutils.synth_data_generator.synth_prediction_times_generator import ( + generate_synth_data, +) + +if __name__ == "__main__": + column_specifications = { + "citizen_ids": {"column_type": "uniform_int", "min": 0, "max": 1_200_001}, + "timestamp": {"column_type": "datetime_uniform", "min": 0, "max": 5 * 365}, + "timestamp_outcome": { + "column_type": "datetime_uniform", + "min": 1 * 365, + "max": 6 * 365, + }, + "pred_hba1c_within_100_days_max_fallback_np.nan": { + "column_type": "normal", + "mean": 48, + "sd": 5, + "fallback": np.nan, + }, + "pred_hdl_within_100_days_max_fallback_np.nan": { + "column_type": "normal", + "mean": 1, + "sd": 0.5, + "min": 0, + "fallback": np.nan, + }, + } + + synth_df = generate_synth_data( + predictors=column_specifications, + outcome_column_name="outc_dichotomous_t2d_within_30_days_max_fallback_0", + n_samples=10_000, + logistic_outcome_model="1*pred_hba1c_within_100_days_max_fallback_nan+1*pred_hdl_within_100_days_max_fallback_nan", + prob_outcome=0.08, + ) + + synth_df.describe() + + save_path = Path(__file__).parent.parent.parent.parent + synth_df.to_csv(save_path / "tests" / "test_data" / "synth_prediction_data.csv") diff --git a/tests/test_data/synth_prediction_data.csv b/tests/test_data/flattened/generated_with_outcome/synth_flattened_with_outcome.csv similarity index 100% rename from tests/test_data/synth_prediction_data.csv rename to tests/test_data/flattened/generated_with_outcome/synth_flattened_with_outcome.csv diff --git a/tests/test_data/raw/create_synth_prediction_times.py b/tests/test_data/raw/create_synth_prediction_times.py new file mode 100644 index 00000000..9b75afb3 --- /dev/null +++ b/tests/test_data/raw/create_synth_prediction_times.py @@ -0,0 +1,32 @@ +"""Generate dataframe with prediction times.""" + +from psycopmlutils.synth_data_generator.synth_col_generators import ( + generate_data_columns, +) +from psycopmlutils.utils import PROJECT_ROOT + +if __name__ == "__main__": + # Get project root directory + + column_specs = { + "dw_ek_borger": { + "column_type": "uniform_int", + "min": 0, + "max": 10_000, + }, + "timestamp": { + "column_type": "datetime_uniform", + "min": -5 * 365, + "max": 0 * 365, + }, + } + + df = generate_data_columns( + predictors=column_specs, + n_samples=10_000, + ) + + df.to_csv( + PROJECT_ROOT / "tests" / "test_data" / "raw" / "synth_prediction_times.csv", + index=False, + ) diff --git a/tests/test_data/raw/create_synth_raw_binary.py b/tests/test_data/raw/create_synth_raw_binary.py new file mode 100644 index 00000000..271e340b --- /dev/null +++ b/tests/test_data/raw/create_synth_raw_binary.py @@ -0,0 +1,36 @@ +"""Generate raw binary dataframe.""" + +from pathlib import Path + +from psycopmlutils.synth_data_generator.synth_col_generators import ( + generate_data_columns, +) + +if __name__ == "__main__": + # Get project root directory + project_root = Path(__file__).resolve().parents[3] + + column_specs = { + "dw_ek_borger": { + "column_type": "uniform_int", + "min": 0, + "max": 10_000, + }, + "timestamp": { + "column_type": "datetime_uniform", + "min": -5 * 365, + "max": 0 * 365, + }, + "value": {"column_type": "uniform_int", "min": 0, "max": 1}, + } + + for i in (1, 2): + df = generate_data_columns( + predictors=column_specs, + n_samples=10_000, + ) + + df.to_csv( + project_root / "tests" / "test_data" / "raw" / f"synth_raw_binary_{i}.csv", + index=False, + ) diff --git a/tests/test_data/raw/create_synth_raw_float.py b/tests/test_data/raw/create_synth_raw_float.py new file mode 100644 index 00000000..53795c97 --- /dev/null +++ b/tests/test_data/raw/create_synth_raw_float.py @@ -0,0 +1,34 @@ +"""Generate raw float dataframe.""" + +from psycopmlutils.synth_data_generator.synth_col_generators import ( + generate_data_columns, +) +from psycopmlutils.utils import PROJECT_ROOT + +if __name__ == "__main__": + # Get project root directory + + column_specs = { + "dw_ek_borger": { + "column_type": "uniform_int", + "min": 0, + "max": 10_000, + }, + "timestamp": { + "column_type": "datetime_uniform", + "min": -5 * 365, + "max": 0 * 365, + }, + "value": {"column_type": "uniform_float", "min": 0, "max": 10}, + } + + for i in (1, 2): + df = generate_data_columns( + predictors=column_specs, + n_samples=10_000, + ) + + df.to_csv( + PROJECT_ROOT / "tests" / "test_data" / "raw" / f"synth_raw_float_{i}.csv", + index=False, + ) diff --git a/tests/test_data/raw/create_synth_txt_data.py b/tests/test_data/raw/create_synth_txt_data.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/test_data/raw/synth_prediction_times.csv b/tests/test_data/raw/synth_prediction_times.csv new file mode 100644 index 00000000..abfc2925 --- /dev/null +++ b/tests/test_data/raw/synth_prediction_times.csv @@ -0,0 +1,10001 @@ +dw_ek_borger,timestamp +9903,1968-05-09 21:24:00 +7465,1966-05-24 01:23:00 +6447,1967-09-25 18:08:00 +2121,1966-05-05 20:52:00 +4927,1968-06-30 12:13:00 +5475,1967-01-09 03:09:00 +3157,1969-10-07 05:01:00 +9793,1968-12-15 12:59:00 +5962,1965-11-08 17:03:00 +9768,1967-07-04 23:09:00 +9861,1969-01-22 17:34:00 +657,1969-04-14 15:47:00 +9255,1966-12-18 03:53:00 +2446,1965-01-11 16:25:00 +7916,1968-12-20 03:38:00 +9542,1966-09-25 20:43:00 +33,1967-07-28 03:16:00 +3428,1966-09-20 19:42:00 +2883,1968-01-28 21:50:00 +1460,1965-02-02 15:19:00 +1515,1968-07-18 08:28:00 +3583,1965-03-08 12:14:00 +6754,1968-09-21 01:27:00 +7718,1968-07-06 21:24:00 +9372,1969-12-01 17:15:00 +8040,1968-08-29 15:55:00 +5734,1967-12-29 20:49:00 +3880,1967-08-19 14:10:00 +1660,1968-08-04 02:05:00 +1513,1968-09-27 07:44:00 +5500,1965-10-04 19:12:00 +5486,1965-06-28 09:04:00 +2882,1966-08-23 14:50:00 +544,1969-12-16 08:38:00 +5980,1968-10-14 14:30:00 +2914,1965-09-30 05:04:00 +5435,1968-08-25 14:52:00 +9584,1968-04-29 05:33:00 +4176,1969-08-29 23:20:00 +1127,1967-11-18 20:07:00 +7655,1966-10-16 10:44:00 +9478,1967-08-22 15:21:00 +51,1968-06-08 13:20:00 +2661,1968-10-10 08:44:00 +623,1967-07-09 21:01:00 +2729,1968-12-29 07:39:00 +9065,1965-12-19 18:59:00 +7083,1965-01-17 00:11:00 +9468,1969-02-21 00:50:00 +3825,1968-06-12 04:54:00 +9547,1967-07-13 11:13:00 +2948,1966-08-30 22:30:00 +2885,1967-11-17 11:50:00 +2704,1968-01-29 11:16:00 +7993,1966-01-23 11:03:00 +2709,1969-05-23 06:44:00 +1403,1967-11-11 16:20:00 +5520,1966-06-04 12:50:00 +4169,1969-11-19 20:04:00 +3682,1965-09-27 02:35:00 +649,1965-01-02 14:01:00 +256,1969-09-01 18:22:00 +9809,1965-09-26 11:50:00 +5941,1965-09-08 00:37:00 +3736,1965-08-26 13:25:00 +7885,1966-03-20 02:55:00 +7585,1966-12-12 11:50:00 +8491,1969-07-11 13:34:00 +4982,1967-08-22 20:25:00 +4453,1969-08-31 12:16:00 +4812,1965-06-20 15:41:00 +1049,1965-11-14 05:59:00 +9451,1968-12-18 11:40:00 +414,1966-11-14 11:59:00 +3118,1968-04-23 19:44:00 +1189,1966-10-15 16:23:00 +7539,1968-05-31 22:51:00 +6340,1965-11-19 06:50:00 +3306,1965-06-26 18:02:00 +2378,1966-07-13 20:36:00 +835,1965-01-05 04:35:00 +8273,1965-04-03 08:14:00 +7211,1967-07-28 04:54:00 +2728,1969-02-02 06:36:00 +5305,1969-03-31 16:24:00 +9088,1969-10-22 04:09:00 +4909,1968-01-13 23:44:00 +9869,1965-03-16 14:53:00 +5982,1966-10-22 07:08:00 +2940,1965-08-03 18:21:00 +3151,1968-12-11 00:51:00 +7867,1969-07-30 13:15:00 +2357,1966-02-21 10:30:00 +2361,1968-10-16 19:29:00 +4922,1966-09-22 07:25:00 +1239,1969-07-10 01:40:00 +6455,1966-05-27 19:15:00 +8667,1969-01-30 02:00:00 +1794,1965-02-05 03:29:00 +9231,1967-08-07 14:08:00 +664,1965-07-25 04:01:00 +3516,1967-02-03 14:58:00 +1040,1969-09-27 22:04:00 +7170,1969-09-21 05:12:00 +371,1967-06-13 06:32:00 +2232,1966-05-24 00:23:00 +9943,1969-07-26 18:14:00 +9745,1965-05-22 23:35:00 +7507,1969-05-30 14:39:00 +6395,1968-01-21 17:48:00 +2331,1969-07-25 17:01:00 +4383,1965-03-31 21:28:00 +7935,1967-02-01 12:12:00 +5181,1966-03-06 21:18:00 +1519,1969-08-06 14:50:00 +8218,1966-03-13 05:37:00 +2454,1969-10-10 01:24:00 +5184,1968-01-09 23:40:00 +2860,1967-11-25 05:50:00 +4038,1967-02-14 03:45:00 +7673,1968-08-25 03:58:00 +1036,1968-01-19 11:47:00 +720,1966-03-03 08:24:00 +7019,1965-09-06 06:50:00 +4870,1969-09-27 04:47:00 +4156,1969-10-13 23:45:00 +5708,1965-04-06 11:38:00 +7575,1968-12-03 06:40:00 +2482,1967-06-15 09:21:00 +1932,1969-09-01 08:58:00 +8635,1967-10-23 07:30:00 +7052,1968-08-24 12:34:00 +2511,1966-06-22 08:26:00 +898,1966-04-10 10:38:00 +5793,1969-10-27 04:40:00 +9177,1966-08-01 07:43:00 +2764,1967-11-27 21:37:00 +7365,1968-09-28 07:00:00 +1825,1968-06-30 15:38:00 +6756,1969-08-23 23:32:00 +5574,1967-06-13 21:08:00 +5664,1969-05-21 20:22:00 +6781,1966-08-31 08:38:00 +795,1966-08-01 15:12:00 +454,1965-11-23 17:58:00 +9753,1966-09-17 00:43:00 +6552,1967-02-12 02:19:00 +7940,1969-08-18 18:36:00 +6311,1967-11-05 05:49:00 +4548,1967-07-16 06:36:00 +7106,1969-08-29 05:13:00 +2892,1968-06-10 18:02:00 +1603,1965-04-27 07:55:00 +3350,1967-06-02 16:17:00 +3201,1969-05-09 09:28:00 +3552,1965-03-07 07:33:00 +1130,1965-01-08 05:11:00 +1189,1966-06-07 15:29:00 +9328,1968-04-30 15:58:00 +4701,1966-06-19 22:22:00 +5861,1967-01-09 23:13:00 +2176,1966-02-07 00:04:00 +8186,1969-10-16 21:32:00 +6171,1968-01-10 18:36:00 +6561,1965-06-18 10:39:00 +6310,1968-01-23 16:57:00 +5367,1967-05-18 12:54:00 +8539,1966-02-23 14:55:00 +9372,1967-08-08 11:31:00 +2860,1965-09-26 10:04:00 +3017,1967-08-05 20:04:00 +5169,1965-07-01 03:51:00 +5570,1966-07-12 10:54:00 +8697,1967-08-18 14:38:00 +2618,1968-12-04 07:09:00 +2257,1968-08-02 22:46:00 +1617,1967-06-18 16:50:00 +9795,1969-03-10 04:42:00 +9585,1966-12-05 08:00:00 +812,1967-07-17 12:39:00 +6896,1967-01-11 04:18:00 +44,1967-10-19 23:34:00 +480,1968-06-27 20:12:00 +751,1969-11-16 08:46:00 +7303,1967-11-19 12:31:00 +8568,1966-03-27 09:23:00 +2687,1966-11-25 15:15:00 +8968,1965-12-17 13:36:00 +5995,1968-12-31 15:20:00 +3736,1965-09-10 05:20:00 +5668,1967-12-13 12:39:00 +3275,1965-06-30 23:55:00 +6460,1965-05-06 02:19:00 +2457,1967-06-13 02:55:00 +2704,1968-02-24 05:40:00 +7423,1969-05-09 19:06:00 +517,1969-05-08 09:43:00 +7606,1965-04-18 06:11:00 +1339,1965-12-03 03:19:00 +6689,1967-03-22 22:42:00 +6668,1967-10-08 03:43:00 +3718,1965-07-18 17:19:00 +5599,1968-05-10 09:19:00 +8945,1968-03-31 22:45:00 +6922,1967-07-04 07:19:00 +3848,1968-07-11 18:14:00 +8885,1969-11-28 10:51:00 +7095,1969-10-25 23:59:00 +1249,1968-07-16 21:31:00 +9087,1966-11-22 03:46:00 +1678,1965-09-06 10:41:00 +3379,1966-12-28 12:26:00 +9860,1968-08-29 13:19:00 +4227,1966-08-10 21:07:00 +5814,1966-08-23 19:11:00 +9777,1967-04-22 19:43:00 +2168,1966-11-20 15:15:00 +4996,1966-03-29 05:19:00 +6883,1965-03-12 02:13:00 +3186,1967-06-15 06:16:00 +3868,1969-05-03 06:38:00 +7920,1968-08-27 14:37:00 +2678,1966-04-23 20:01:00 +1657,1969-09-11 03:44:00 +6488,1969-04-03 21:48:00 +4931,1965-01-31 19:12:00 +455,1969-12-30 00:35:00 +896,1968-09-05 12:44:00 +9169,1969-04-05 01:01:00 +1895,1968-03-03 07:37:00 +1966,1968-06-25 05:13:00 +5359,1968-02-12 21:56:00 +2920,1969-09-22 10:50:00 +2715,1968-01-24 14:53:00 +4119,1965-06-11 03:41:00 +9859,1966-04-11 23:13:00 +9700,1967-03-29 20:52:00 +6035,1965-10-11 22:09:00 +8235,1965-11-06 12:36:00 +3143,1966-09-17 14:05:00 +452,1968-10-18 22:29:00 +641,1967-10-08 13:12:00 +4650,1965-12-29 18:17:00 +2941,1968-12-22 02:18:00 +7337,1966-06-28 10:34:00 +3969,1969-04-05 01:35:00 +4777,1965-07-20 18:15:00 +6205,1965-01-11 12:42:00 +6860,1967-10-01 10:27:00 +7408,1967-08-13 17:18:00 +2225,1967-09-27 00:15:00 +1237,1966-04-13 22:24:00 +54,1968-10-27 13:42:00 +4994,1966-07-15 07:55:00 +6268,1965-12-28 12:16:00 +5269,1967-01-09 15:18:00 +624,1968-11-11 11:17:00 +2515,1968-08-15 19:56:00 +5168,1966-01-30 12:16:00 +5403,1968-07-30 20:38:00 +7834,1967-04-07 23:33:00 +5050,1969-04-15 06:29:00 +4217,1968-03-21 10:35:00 +8554,1969-04-06 14:02:00 +9545,1968-10-05 15:42:00 +867,1969-03-09 19:16:00 +3891,1965-07-25 06:59:00 +6999,1967-12-04 05:12:00 +9537,1968-05-10 05:36:00 +7275,1966-05-23 17:14:00 +6343,1968-10-21 23:25:00 +3499,1969-04-09 03:12:00 +2151,1965-12-04 05:08:00 +6139,1969-06-04 19:15:00 +5224,1968-07-29 01:42:00 +6315,1968-03-21 01:53:00 +8578,1969-10-07 21:39:00 +1300,1969-06-28 18:04:00 +9912,1966-09-25 22:02:00 +7876,1965-02-13 18:48:00 +2567,1968-02-22 23:19:00 +2802,1968-06-25 01:53:00 +9844,1966-05-25 16:49:00 +5033,1968-07-11 07:13:00 +3841,1969-03-22 04:40:00 +6480,1966-02-17 16:02:00 +586,1967-06-01 22:56:00 +426,1968-06-23 15:12:00 +206,1967-12-16 00:52:00 +3296,1968-10-02 13:37:00 +5671,1969-08-18 12:36:00 +4334,1966-11-10 13:08:00 +4360,1969-10-23 15:10:00 +550,1968-07-09 09:50:00 +2285,1967-01-17 19:18:00 +4381,1965-11-04 18:39:00 +112,1966-08-12 18:00:00 +4144,1966-05-10 20:15:00 +8242,1968-08-30 20:24:00 +4094,1967-02-10 14:36:00 +6110,1968-03-14 09:43:00 +8086,1968-06-02 16:57:00 +7742,1967-06-26 19:43:00 +7253,1969-10-18 15:12:00 +9597,1966-05-18 09:29:00 +3623,1966-08-19 07:28:00 +8885,1968-11-03 23:55:00 +4774,1968-05-17 20:43:00 +8538,1969-05-18 22:15:00 +482,1966-11-23 03:37:00 +4101,1969-04-14 03:37:00 +5404,1967-09-26 22:10:00 +5804,1966-10-25 09:13:00 +8743,1965-12-23 06:53:00 +7151,1967-12-08 08:02:00 +8583,1965-11-04 07:10:00 +5405,1967-11-25 10:20:00 +7931,1967-05-27 00:00:00 +6641,1967-06-23 21:26:00 +2037,1967-08-07 09:12:00 +8332,1968-08-04 22:25:00 +3199,1965-03-10 16:36:00 +8939,1966-03-15 18:17:00 +3463,1965-08-20 19:44:00 +7897,1965-07-01 03:20:00 +8605,1967-06-11 23:47:00 +6441,1965-03-17 06:10:00 +3785,1966-06-19 07:54:00 +1589,1966-12-16 19:01:00 +7314,1966-12-25 11:41:00 +5371,1967-02-06 14:08:00 +5719,1967-08-15 12:04:00 +3434,1969-03-01 23:48:00 +9007,1969-08-19 23:01:00 +2338,1967-03-19 17:55:00 +1560,1965-11-21 15:17:00 +1373,1967-03-31 19:28:00 +7762,1967-03-22 14:27:00 +6642,1965-10-03 00:34:00 +5643,1965-08-19 14:46:00 +7896,1969-10-10 22:11:00 +9636,1967-08-28 16:29:00 +6498,1969-10-17 20:36:00 +1276,1969-05-08 22:54:00 +6002,1969-12-31 20:07:00 +1305,1966-12-02 21:45:00 +886,1969-09-29 04:17:00 +8161,1965-09-02 20:54:00 +8779,1965-12-25 19:38:00 +3018,1965-07-13 12:34:00 +3945,1968-02-19 13:17:00 +2760,1967-06-09 00:15:00 +7229,1966-03-30 14:22:00 +1800,1968-09-28 06:14:00 +6691,1969-12-04 06:12:00 +8714,1966-06-26 16:41:00 +173,1967-07-02 16:18:00 +5291,1965-08-31 13:34:00 +7582,1968-06-16 03:11:00 +6555,1969-10-27 03:29:00 +8686,1967-05-09 15:54:00 +6261,1966-10-20 07:59:00 +8912,1967-11-21 23:57:00 +4552,1966-10-10 00:23:00 +5360,1967-04-24 00:57:00 +3557,1968-09-30 14:23:00 +7797,1968-02-14 08:56:00 +1741,1969-11-19 08:47:00 +5501,1966-12-11 09:59:00 +9209,1965-05-06 09:47:00 +4645,1968-03-13 11:03:00 +9376,1969-01-16 09:49:00 +7214,1966-07-22 16:13:00 +1578,1966-10-15 04:16:00 +2712,1966-09-07 15:35:00 +5218,1968-06-30 09:51:00 +1362,1965-12-05 18:33:00 +6627,1965-11-22 02:24:00 +70,1968-09-13 17:31:00 +5232,1968-09-16 22:29:00 +9101,1966-03-28 07:38:00 +3470,1966-02-28 23:55:00 +4234,1969-08-09 12:46:00 +3661,1969-04-21 00:13:00 +5799,1966-12-15 08:15:00 +8410,1965-02-01 08:24:00 +2425,1969-10-21 00:20:00 +8553,1965-10-17 01:11:00 +1552,1966-02-18 16:20:00 +6604,1968-11-21 22:20:00 +1859,1966-06-05 23:44:00 +1339,1966-05-13 21:14:00 +6662,1969-07-08 21:49:00 +8229,1969-06-03 12:51:00 +2635,1967-01-05 09:30:00 +7728,1965-04-10 18:14:00 +4610,1969-03-27 05:17:00 +5296,1965-07-07 16:26:00 +1386,1967-11-13 16:25:00 +3736,1969-11-02 18:02:00 +8756,1965-01-15 12:59:00 +6315,1967-04-06 15:47:00 +2845,1966-10-18 12:12:00 +9374,1966-11-24 04:17:00 +9148,1967-07-28 13:51:00 +7520,1969-04-20 22:50:00 +4674,1969-12-22 03:18:00 +1722,1968-02-04 06:21:00 +4225,1966-09-07 12:11:00 +2305,1969-10-15 19:12:00 +269,1966-04-07 13:51:00 +7753,1967-06-03 21:53:00 +4294,1966-04-05 13:08:00 +4625,1969-07-08 08:12:00 +3015,1969-09-15 06:51:00 +1932,1965-11-22 05:20:00 +3534,1966-04-16 21:16:00 +5667,1969-04-11 14:14:00 +470,1965-11-23 03:00:00 +1349,1965-07-30 02:07:00 +9419,1966-05-08 10:20:00 +3368,1967-03-27 09:05:00 +5297,1966-02-19 04:22:00 +8482,1968-12-17 19:33:00 +1721,1967-11-26 06:14:00 +2897,1969-03-01 11:57:00 +7110,1969-07-07 09:35:00 +421,1965-03-21 14:40:00 +2754,1969-05-02 12:17:00 +3943,1969-09-12 22:41:00 +3790,1965-05-10 19:47:00 +6344,1966-08-31 09:08:00 +7876,1965-03-27 00:29:00 +9357,1965-11-23 13:43:00 +472,1966-07-06 00:25:00 +8468,1969-06-25 22:44:00 +1772,1969-08-21 22:25:00 +6100,1969-02-13 17:17:00 +5572,1965-05-21 05:04:00 +2423,1967-09-04 18:27:00 +642,1965-08-14 12:51:00 +943,1969-01-19 14:58:00 +4365,1966-10-10 03:42:00 +4071,1969-06-03 01:57:00 +3605,1969-12-09 20:49:00 +6145,1969-04-26 23:04:00 +2668,1969-02-14 02:40:00 +2592,1969-09-15 17:50:00 +2651,1966-03-23 15:39:00 +706,1966-10-23 12:00:00 +4151,1965-08-11 05:45:00 +9345,1965-10-03 10:47:00 +6917,1965-08-24 03:37:00 +8504,1965-12-02 01:41:00 +9729,1967-03-08 09:44:00 +9026,1967-03-21 03:21:00 +6562,1965-05-11 02:40:00 +8860,1968-11-26 06:09:00 +8516,1967-02-24 22:19:00 +5474,1965-05-23 12:50:00 +9615,1966-08-17 23:56:00 +1231,1965-11-27 23:05:00 +6828,1969-02-01 07:44:00 +1151,1968-07-22 11:35:00 +8816,1967-10-05 16:39:00 +6719,1968-01-07 04:40:00 +115,1965-05-25 23:55:00 +660,1965-11-20 11:03:00 +4357,1965-01-26 09:48:00 +4758,1967-07-16 12:42:00 +6982,1968-11-13 15:12:00 +7605,1969-11-24 04:26:00 +7771,1966-05-02 23:05:00 +4884,1967-04-24 14:00:00 +1119,1967-11-14 12:55:00 +3610,1965-04-20 20:08:00 +3306,1967-03-24 15:30:00 +9185,1966-12-30 22:01:00 +1613,1966-11-04 09:17:00 +481,1969-06-29 07:15:00 +1687,1968-09-27 15:44:00 +3843,1966-07-20 10:14:00 +9614,1969-05-08 17:27:00 +6367,1968-01-24 04:09:00 +526,1967-02-25 18:37:00 +8642,1965-05-08 08:26:00 +5740,1969-12-20 14:43:00 +446,1968-05-26 20:10:00 +8269,1968-01-14 07:22:00 +5054,1968-01-22 06:06:00 +5347,1967-07-10 07:53:00 +9508,1965-05-31 10:04:00 +1284,1965-10-06 21:40:00 +4431,1969-01-23 19:57:00 +825,1965-07-31 22:09:00 +8729,1967-12-29 11:45:00 +7065,1969-04-16 10:36:00 +5198,1968-03-18 15:19:00 +9810,1968-10-05 09:58:00 +2661,1969-02-25 20:52:00 +3351,1966-12-30 21:47:00 +8389,1968-11-03 09:57:00 +6811,1967-01-14 04:37:00 +505,1967-02-01 07:49:00 +8018,1969-03-10 22:46:00 +6703,1967-12-26 01:11:00 +620,1966-11-02 07:50:00 +5447,1965-10-16 21:13:00 +5091,1968-11-23 22:14:00 +5462,1969-08-06 06:59:00 +5175,1968-12-19 22:24:00 +514,1967-01-11 11:24:00 +9225,1968-03-14 00:04:00 +8231,1965-09-21 11:16:00 +1471,1965-12-28 13:51:00 +7770,1968-09-08 06:47:00 +333,1966-02-17 23:37:00 +6744,1968-05-28 14:45:00 +1376,1966-01-25 21:28:00 +9939,1968-01-22 13:58:00 +2712,1967-02-28 08:58:00 +796,1966-03-09 16:58:00 +9767,1968-06-17 19:52:00 +8268,1969-08-07 22:10:00 +5773,1967-10-04 23:27:00 +5967,1968-06-25 19:49:00 +2548,1968-09-15 16:01:00 +7400,1965-12-15 17:02:00 +3156,1968-11-17 05:44:00 +3792,1969-04-01 02:07:00 +5823,1966-10-02 07:53:00 +8478,1969-06-17 18:39:00 +5712,1967-02-28 03:33:00 +9070,1969-12-04 04:00:00 +8245,1969-10-25 18:53:00 +6241,1968-02-17 06:46:00 +3347,1966-07-14 11:18:00 +4093,1969-12-16 05:48:00 +8031,1967-12-29 19:25:00 +5454,1967-12-25 12:31:00 +1160,1968-06-02 17:55:00 +4196,1966-07-02 13:08:00 +3294,1965-12-20 21:11:00 +7123,1965-09-14 12:17:00 +5605,1965-03-27 06:03:00 +6610,1968-07-14 04:14:00 +140,1966-08-04 15:47:00 +3464,1968-01-27 07:44:00 +5819,1965-01-16 18:29:00 +9382,1968-06-02 06:05:00 +2224,1966-04-26 21:00:00 +5136,1967-02-10 18:44:00 +7233,1965-11-16 02:29:00 +2598,1969-08-10 00:10:00 +6423,1968-01-10 12:34:00 +330,1965-03-27 21:24:00 +504,1969-07-18 10:11:00 +3716,1968-01-27 00:43:00 +1462,1968-07-26 03:24:00 +6591,1969-01-12 13:23:00 +6022,1967-04-21 00:27:00 +486,1967-02-22 19:08:00 +7103,1969-10-21 19:10:00 +4026,1968-06-21 18:12:00 +7259,1967-03-24 23:46:00 +4504,1966-06-17 00:30:00 +4485,1965-06-28 11:27:00 +2602,1966-05-10 09:22:00 +8235,1966-08-22 23:55:00 +1341,1966-02-06 20:38:00 +4499,1969-07-09 14:31:00 +5408,1965-04-12 11:52:00 +6809,1966-06-20 02:24:00 +281,1967-03-10 11:06:00 +354,1966-03-25 00:16:00 +4696,1966-02-11 19:43:00 +4407,1969-12-30 19:18:00 +8654,1967-10-03 09:51:00 +1460,1968-02-03 01:04:00 +4653,1967-10-16 21:39:00 +2132,1967-03-11 20:30:00 +9798,1969-12-17 11:33:00 +3134,1969-07-09 17:20:00 +6563,1969-04-04 15:42:00 +9374,1969-11-05 18:13:00 +1356,1969-10-27 10:33:00 +5350,1968-01-12 19:20:00 +7137,1966-01-19 01:12:00 +4025,1967-12-30 14:59:00 +9867,1968-07-03 21:55:00 +2745,1967-08-11 02:11:00 +5622,1967-05-18 16:08:00 +1198,1968-03-02 07:38:00 +7903,1967-03-01 18:16:00 +2038,1967-09-11 07:17:00 +4286,1966-12-03 20:24:00 +8245,1968-09-18 04:06:00 +2182,1966-09-14 22:32:00 +9421,1967-03-08 23:43:00 +8504,1969-09-15 20:22:00 +9040,1968-05-17 08:09:00 +6843,1965-06-24 02:01:00 +622,1965-04-12 06:22:00 +2098,1967-05-25 07:12:00 +4375,1966-01-15 22:55:00 +6221,1967-02-14 04:09:00 +7797,1968-12-10 19:56:00 +2785,1969-08-27 05:07:00 +9150,1967-06-22 13:39:00 +8658,1969-05-11 21:50:00 +619,1969-05-06 15:37:00 +9303,1966-06-18 19:41:00 +5151,1965-10-24 18:55:00 +3235,1965-03-06 06:47:00 +6909,1969-10-19 02:14:00 +4179,1965-07-29 06:53:00 +8910,1965-03-17 23:44:00 +5670,1969-05-19 22:56:00 +7297,1968-01-22 04:53:00 +9774,1968-12-27 21:33:00 +1468,1965-06-19 05:06:00 +1332,1967-05-29 06:39:00 +8087,1965-02-11 23:55:00 +2712,1967-04-14 12:49:00 +7631,1968-08-12 06:24:00 +6517,1967-04-02 02:34:00 +2321,1968-06-08 07:48:00 +6812,1969-06-15 04:24:00 +0,1969-01-11 09:55:00 +9775,1969-06-20 01:02:00 +1283,1966-05-08 18:57:00 +1943,1965-04-13 15:48:00 +639,1968-07-03 18:17:00 +5151,1967-11-17 22:46:00 +7382,1965-11-24 06:17:00 +8131,1968-06-10 03:57:00 +4193,1968-09-17 11:20:00 +9089,1967-05-23 01:29:00 +9591,1969-03-14 03:00:00 +4320,1969-01-18 13:15:00 +2206,1968-03-08 22:25:00 +2187,1965-11-05 02:44:00 +2371,1968-05-24 08:40:00 +8552,1966-08-01 08:11:00 +5585,1969-02-26 13:23:00 +7998,1968-08-10 06:48:00 +9146,1969-11-07 02:12:00 +4131,1965-10-02 12:53:00 +636,1965-01-27 08:44:00 +5808,1967-03-16 19:08:00 +4292,1966-03-27 06:27:00 +9980,1965-03-25 20:03:00 +1613,1966-05-16 15:43:00 +810,1969-02-06 06:52:00 +7852,1966-01-01 03:24:00 +9340,1967-06-12 19:12:00 +5634,1966-07-19 09:10:00 +2240,1969-02-21 06:44:00 +3069,1969-03-17 04:00:00 +3775,1968-11-22 16:53:00 +4002,1968-12-01 07:04:00 +9,1965-08-21 22:00:00 +9571,1969-05-02 02:43:00 +8803,1966-09-11 01:00:00 +652,1969-04-14 11:06:00 +587,1969-11-22 05:45:00 +4439,1966-12-02 00:28:00 +7913,1967-05-27 18:47:00 +8712,1966-12-08 17:41:00 +8510,1968-07-11 19:34:00 +6832,1966-05-29 16:48:00 +2606,1965-11-12 00:03:00 +7204,1967-10-14 01:06:00 +5591,1969-06-21 07:40:00 +9775,1966-05-04 01:04:00 +6373,1969-06-21 07:06:00 +9523,1968-07-19 13:45:00 +1793,1967-10-04 02:56:00 +8168,1965-02-03 09:08:00 +2080,1968-02-28 00:20:00 +4529,1965-09-26 10:06:00 +181,1969-09-20 09:01:00 +1579,1969-12-20 23:47:00 +8994,1967-05-06 06:44:00 +7231,1968-12-08 15:33:00 +104,1968-05-11 15:39:00 +9632,1965-09-07 18:02:00 +9030,1966-03-03 02:55:00 +2360,1967-09-24 06:44:00 +1206,1966-04-24 19:02:00 +5078,1966-02-01 12:44:00 +6657,1968-12-16 04:32:00 +9660,1969-02-08 11:46:00 +5595,1968-07-27 09:05:00 +216,1965-07-31 15:02:00 +2017,1967-11-20 14:45:00 +6725,1967-04-09 19:23:00 +11,1966-07-09 13:54:00 +9670,1968-11-29 07:11:00 +3329,1967-08-15 20:17:00 +851,1967-11-03 13:48:00 +143,1969-06-07 09:26:00 +3648,1966-05-21 06:17:00 +3443,1966-05-28 08:34:00 +1743,1966-04-07 10:28:00 +5212,1969-12-31 08:04:00 +4590,1969-08-25 21:27:00 +3087,1969-05-22 06:24:00 +3075,1967-12-12 18:52:00 +3316,1969-03-20 10:14:00 +4624,1965-11-21 09:26:00 +4357,1969-06-25 08:14:00 +901,1967-03-28 01:13:00 +6102,1967-08-28 07:18:00 +61,1968-07-10 08:42:00 +4257,1968-03-05 10:07:00 +3206,1965-09-02 13:32:00 +7698,1967-02-07 14:25:00 +801,1965-01-08 13:39:00 +8080,1969-07-26 17:35:00 +7347,1969-10-22 15:55:00 +7195,1966-01-17 20:33:00 +41,1968-06-12 16:04:00 +3574,1967-09-25 17:06:00 +4842,1969-08-05 03:29:00 +2526,1965-05-07 08:43:00 +5264,1966-05-16 13:36:00 +4478,1965-12-13 18:31:00 +1034,1966-11-05 01:17:00 +4842,1966-10-16 09:40:00 +945,1966-07-28 22:42:00 +3837,1969-05-06 18:34:00 +2915,1967-10-06 13:04:00 +1200,1967-04-26 00:13:00 +1493,1967-01-29 20:54:00 +5058,1967-01-03 21:04:00 +5338,1966-02-28 03:48:00 +6543,1969-04-10 16:54:00 +5750,1968-12-04 17:30:00 +425,1967-04-17 04:57:00 +7317,1965-03-20 15:39:00 +4793,1965-05-02 20:50:00 +290,1965-10-18 23:40:00 +2711,1967-01-01 22:19:00 +7291,1965-11-16 03:40:00 +7179,1966-01-15 17:08:00 +5163,1968-02-24 07:26:00 +5406,1967-10-15 20:23:00 +3680,1965-02-12 05:53:00 +8908,1969-03-18 11:51:00 +2145,1967-01-30 11:34:00 +461,1967-06-30 05:03:00 +9956,1967-06-28 04:59:00 +4577,1967-06-19 20:13:00 +7798,1969-05-17 02:24:00 +8951,1969-12-22 16:32:00 +8175,1967-11-30 17:24:00 +1123,1967-06-09 05:14:00 +8058,1966-06-12 22:34:00 +175,1968-08-09 14:38:00 +271,1969-03-22 05:36:00 +2025,1966-06-27 18:03:00 +1421,1966-08-02 19:39:00 +4169,1965-11-28 01:07:00 +2033,1969-01-12 18:50:00 +2503,1969-07-18 11:42:00 +7249,1969-11-10 08:12:00 +3894,1966-07-25 23:11:00 +4182,1965-07-03 16:30:00 +6613,1966-03-12 21:47:00 +7943,1965-03-27 05:58:00 +4088,1968-07-21 16:22:00 +267,1967-01-01 14:57:00 +5780,1968-04-11 18:45:00 +9987,1967-03-25 01:33:00 +1653,1968-01-23 15:20:00 +7871,1967-08-15 18:19:00 +2674,1966-12-28 20:58:00 +5913,1966-12-06 02:07:00 +9494,1968-07-04 21:32:00 +130,1966-04-14 09:33:00 +1916,1968-06-17 23:05:00 +3624,1965-07-31 13:08:00 +5418,1969-06-04 02:25:00 +7280,1968-10-31 20:57:00 +1890,1966-08-18 06:13:00 +7976,1966-04-06 10:23:00 +4750,1967-06-29 10:31:00 +5109,1967-04-23 15:51:00 +5583,1965-05-10 07:15:00 +3934,1966-07-25 05:33:00 +3458,1969-07-24 12:37:00 +8619,1969-12-24 00:47:00 +4094,1965-03-25 09:52:00 +1649,1969-07-26 18:09:00 +391,1966-12-04 15:50:00 +2780,1967-10-16 06:42:00 +767,1969-02-09 21:22:00 +3997,1965-05-18 04:05:00 +2335,1965-09-05 03:43:00 +2322,1966-03-26 03:02:00 +5962,1965-11-09 04:53:00 +315,1965-04-02 21:36:00 +3005,1967-04-08 22:18:00 +8621,1965-09-13 11:16:00 +1632,1969-11-07 18:53:00 +2521,1967-08-11 17:24:00 +7800,1968-05-26 04:42:00 +8794,1966-09-12 02:58:00 +8793,1966-02-03 06:08:00 +3794,1968-04-11 05:47:00 +4754,1969-06-06 15:34:00 +7849,1969-11-24 02:41:00 +9130,1966-03-03 16:11:00 +3068,1967-06-09 17:39:00 +2271,1969-07-01 23:46:00 +2153,1965-09-25 00:47:00 +6699,1966-02-20 15:29:00 +2840,1967-10-09 10:45:00 +4179,1968-08-18 20:55:00 +9291,1969-09-08 08:58:00 +8522,1966-04-20 13:58:00 +7230,1965-10-25 21:07:00 +7121,1969-07-16 05:22:00 +7479,1967-08-27 10:09:00 +5430,1969-03-30 11:37:00 +681,1969-02-08 21:53:00 +7066,1967-07-05 14:47:00 +1666,1967-05-20 16:23:00 +895,1966-05-06 16:05:00 +8557,1967-08-14 14:12:00 +544,1965-06-24 02:54:00 +4211,1967-09-02 10:32:00 +8062,1967-02-10 07:59:00 +1218,1965-01-20 07:04:00 +3064,1968-08-29 01:45:00 +876,1966-06-14 11:38:00 +9827,1966-07-15 22:23:00 +5491,1967-08-05 04:41:00 +9623,1968-07-30 06:59:00 +9544,1967-11-15 23:01:00 +9474,1965-08-10 23:18:00 +1639,1968-06-07 06:17:00 +9051,1966-10-10 06:50:00 +7217,1966-05-05 01:26:00 +448,1966-08-30 20:33:00 +2488,1967-01-24 07:53:00 +32,1969-10-28 14:36:00 +7260,1965-01-14 02:03:00 +1003,1965-03-23 14:28:00 +9544,1967-12-25 14:20:00 +2441,1969-05-22 23:59:00 +2429,1966-06-16 05:18:00 +6318,1965-06-18 21:54:00 +9901,1969-08-06 10:38:00 +8812,1966-04-22 23:12:00 +701,1966-10-26 13:06:00 +2109,1967-07-28 22:33:00 +2795,1965-03-28 00:10:00 +859,1966-05-14 22:25:00 +3684,1968-02-25 03:10:00 +288,1965-05-30 22:17:00 +9484,1967-04-08 14:53:00 +1653,1968-11-06 12:02:00 +3013,1968-05-06 20:11:00 +3526,1966-01-27 03:57:00 +1998,1965-12-21 08:39:00 +7410,1968-11-20 07:05:00 +5509,1968-12-11 20:43:00 +9094,1965-07-24 20:57:00 +3794,1967-05-14 01:56:00 +4574,1967-12-01 14:22:00 +1474,1968-07-24 23:18:00 +399,1966-01-22 13:35:00 +8739,1968-11-22 01:51:00 +250,1966-09-17 06:42:00 +8673,1968-09-12 15:39:00 +5379,1967-09-22 07:44:00 +729,1965-06-07 10:24:00 +2038,1965-01-28 08:42:00 +5442,1965-07-21 18:51:00 +4699,1965-06-26 04:12:00 +8827,1967-02-17 07:31:00 +9824,1966-12-20 15:22:00 +9735,1965-11-21 13:50:00 +4234,1969-10-08 17:28:00 +5596,1969-09-04 04:41:00 +7626,1967-04-03 17:09:00 +1500,1968-03-06 09:24:00 +2226,1968-06-26 12:38:00 +686,1967-04-27 19:08:00 +7630,1967-01-09 10:05:00 +1672,1965-05-29 11:31:00 +4742,1966-11-01 03:45:00 +6638,1966-01-14 07:36:00 +6890,1969-05-20 01:03:00 +2007,1968-10-15 14:12:00 +716,1969-01-05 10:56:00 +1683,1969-07-30 13:02:00 +2115,1966-03-10 03:44:00 +7335,1968-08-12 18:15:00 +4524,1966-04-23 16:27:00 +1448,1967-07-23 16:15:00 +4645,1967-03-06 19:38:00 +4553,1968-07-04 11:57:00 +5838,1969-04-08 08:18:00 +831,1965-12-29 22:44:00 +9752,1969-11-10 01:55:00 +4453,1967-09-19 12:02:00 +4528,1968-10-30 02:30:00 +6193,1967-11-16 07:49:00 +3973,1965-11-23 08:51:00 +6408,1967-07-29 06:15:00 +202,1965-02-20 20:57:00 +991,1966-06-27 20:09:00 +8312,1967-11-15 16:10:00 +3696,1965-07-24 11:35:00 +6698,1969-11-10 00:35:00 +870,1967-04-11 05:57:00 +121,1969-05-23 05:09:00 +477,1965-04-29 13:07:00 +1567,1965-10-24 12:01:00 +4483,1965-06-06 16:44:00 +1421,1965-05-06 01:58:00 +3502,1967-09-06 10:43:00 +5840,1967-07-30 01:57:00 +6938,1966-08-17 00:06:00 +3945,1967-06-13 18:00:00 +1450,1965-06-27 07:35:00 +7040,1966-01-02 06:42:00 +4691,1966-06-22 03:05:00 +2229,1968-04-04 21:14:00 +7494,1969-05-26 20:52:00 +6620,1968-12-11 08:06:00 +6456,1965-01-05 10:41:00 +7272,1967-10-13 18:53:00 +6901,1969-09-29 09:04:00 +4559,1968-09-13 12:27:00 +772,1969-09-25 14:10:00 +6786,1965-08-31 10:50:00 +1585,1966-08-24 19:37:00 +5108,1967-12-30 20:10:00 +7420,1965-03-12 20:35:00 +4248,1965-03-02 06:05:00 +9690,1965-08-06 20:01:00 +2118,1966-03-23 17:59:00 +2981,1967-09-20 15:10:00 +3670,1966-01-01 20:37:00 +4307,1966-11-12 23:33:00 +1524,1966-06-03 17:16:00 +1566,1967-06-06 12:15:00 +6500,1967-11-26 15:06:00 +8062,1967-09-23 04:05:00 +2751,1967-07-17 20:41:00 +608,1967-05-04 23:24:00 +3159,1966-03-18 11:47:00 +9243,1968-08-29 13:03:00 +9505,1969-12-20 01:45:00 +6524,1966-12-08 16:20:00 +4875,1969-06-29 09:59:00 +4048,1965-07-13 12:03:00 +3654,1965-07-19 09:02:00 +3093,1965-05-14 11:22:00 +5974,1968-08-22 02:07:00 +9898,1969-04-09 15:34:00 +3749,1967-12-28 20:07:00 +5370,1966-05-31 18:52:00 +3465,1965-08-08 07:29:00 +8998,1965-09-09 19:54:00 +4194,1969-12-14 22:56:00 +3398,1967-09-20 22:28:00 +6085,1967-08-30 23:41:00 +946,1966-08-07 11:25:00 +1047,1968-09-12 16:19:00 +7650,1968-02-24 00:29:00 +5854,1969-06-22 04:52:00 +4965,1969-02-26 12:25:00 +5174,1967-09-20 09:52:00 +8007,1968-05-31 20:26:00 +3281,1966-02-12 04:34:00 +3610,1965-09-02 22:53:00 +9715,1966-03-15 08:35:00 +4642,1966-11-29 15:48:00 +4014,1966-11-14 12:34:00 +1350,1968-06-03 09:24:00 +7938,1967-11-13 20:51:00 +8816,1968-07-23 02:01:00 +9860,1967-09-07 08:08:00 +913,1967-04-10 08:08:00 +5841,1966-08-09 01:11:00 +1133,1966-09-26 13:51:00 +8932,1968-12-29 21:18:00 +6633,1965-10-17 21:04:00 +2525,1965-04-05 06:30:00 +4331,1966-01-23 06:01:00 +9116,1969-06-14 07:57:00 +7280,1967-12-14 06:01:00 +6926,1965-12-04 12:57:00 +8249,1967-01-27 17:26:00 +4869,1965-11-19 15:08:00 +1324,1966-11-22 05:09:00 +5468,1965-06-21 22:31:00 +3036,1966-06-23 23:56:00 +4427,1966-05-01 07:05:00 +6951,1965-04-08 23:22:00 +8483,1968-05-04 05:14:00 +1489,1969-10-05 02:55:00 +4031,1967-05-17 03:12:00 +5171,1967-03-25 01:43:00 +8060,1967-03-19 13:48:00 +8335,1967-10-28 22:20:00 +3464,1967-12-14 15:55:00 +1093,1969-11-24 15:20:00 +4574,1969-04-03 15:44:00 +1649,1965-09-14 17:27:00 +8641,1967-03-18 01:28:00 +1147,1969-11-11 00:44:00 +2547,1966-03-17 16:38:00 +4687,1969-06-30 13:59:00 +8578,1966-11-15 23:48:00 +6415,1965-04-24 07:26:00 +5925,1966-12-12 22:11:00 +8512,1965-01-15 23:47:00 +7264,1965-01-06 17:31:00 +6411,1967-09-12 21:54:00 +7900,1966-04-15 17:01:00 +1463,1968-01-20 21:45:00 +5525,1967-07-15 03:45:00 +1911,1967-06-21 10:58:00 +2659,1968-12-17 21:03:00 +178,1965-03-27 01:01:00 +6039,1965-10-15 07:41:00 +6048,1966-12-16 07:32:00 +5728,1966-12-26 16:50:00 +3326,1966-12-02 02:49:00 +4934,1966-06-19 20:22:00 +9750,1966-03-27 01:37:00 +7944,1966-01-31 14:00:00 +6016,1966-11-28 12:53:00 +8868,1965-03-02 18:02:00 +8234,1967-02-25 22:54:00 +6961,1966-11-02 22:43:00 +9060,1969-08-19 18:22:00 +9570,1969-01-06 10:25:00 +4830,1965-07-23 22:58:00 +9953,1969-02-21 21:05:00 +6121,1968-03-23 14:33:00 +5062,1967-05-25 08:07:00 +7964,1965-10-13 06:59:00 +8687,1967-09-17 03:24:00 +2931,1969-04-20 22:37:00 +7234,1968-02-17 03:16:00 +6142,1969-03-27 13:14:00 +6870,1965-05-16 15:24:00 +7564,1969-02-13 11:21:00 +6421,1966-09-30 23:13:00 +145,1968-01-23 03:49:00 +6170,1969-11-22 14:30:00 +8004,1966-04-11 09:54:00 +4200,1967-10-27 13:12:00 +7402,1967-10-10 14:39:00 +1309,1965-02-28 02:01:00 +2340,1968-04-15 18:35:00 +117,1966-09-06 19:42:00 +1279,1966-02-24 07:48:00 +6181,1966-03-23 20:12:00 +1646,1969-03-10 13:55:00 +7292,1968-03-05 06:57:00 +63,1966-03-11 18:07:00 +7104,1966-05-15 15:28:00 +730,1965-12-09 05:54:00 +9473,1968-09-07 12:52:00 +160,1968-12-16 17:12:00 +3513,1967-03-22 19:53:00 +4828,1965-04-23 01:59:00 +9726,1968-08-07 23:53:00 +9941,1968-10-04 18:32:00 +5471,1965-04-20 13:07:00 +4024,1966-09-11 13:28:00 +6578,1967-03-08 01:39:00 +6593,1966-12-30 10:16:00 +4102,1967-11-30 06:07:00 +4856,1965-07-30 03:49:00 +4537,1969-04-29 19:10:00 +2731,1969-03-21 07:31:00 +8454,1965-07-27 05:49:00 +4967,1968-08-22 15:09:00 +1271,1969-11-18 08:44:00 +2879,1965-07-20 12:28:00 +8520,1969-03-15 10:36:00 +9785,1967-06-21 22:11:00 +7501,1966-05-14 05:18:00 +5738,1969-09-26 13:37:00 +2226,1967-06-09 15:58:00 +9814,1968-01-08 04:06:00 +3019,1965-03-24 14:22:00 +731,1969-01-26 06:27:00 +1964,1968-01-16 15:23:00 +7271,1968-09-21 10:12:00 +5618,1968-08-06 11:34:00 +1078,1966-09-09 05:25:00 +8168,1966-02-03 08:27:00 +4375,1967-01-13 10:44:00 +4421,1966-11-23 08:51:00 +1269,1966-06-15 05:37:00 +9327,1967-09-17 16:16:00 +4987,1968-09-08 21:46:00 +9837,1969-04-08 09:33:00 +5343,1969-06-29 22:30:00 +522,1969-11-16 10:31:00 +4810,1967-10-13 09:29:00 +6161,1968-11-01 12:46:00 +6002,1968-04-16 18:42:00 +1622,1969-09-19 15:57:00 +4811,1967-03-25 05:07:00 +171,1965-03-15 04:26:00 +8048,1969-03-16 08:37:00 +1312,1966-08-31 20:51:00 +919,1966-10-30 18:55:00 +3639,1968-01-23 02:51:00 +6747,1967-09-16 12:10:00 +1394,1969-09-04 07:05:00 +8843,1968-01-21 14:43:00 +8904,1966-10-24 00:31:00 +1782,1965-05-10 05:45:00 +7890,1968-07-23 23:46:00 +9143,1966-06-15 07:47:00 +1467,1965-04-16 01:46:00 +7371,1968-11-13 02:46:00 +400,1967-02-23 15:46:00 +8391,1969-10-08 08:10:00 +9941,1969-11-19 09:38:00 +6652,1965-08-14 14:22:00 +1274,1968-12-26 01:26:00 +5460,1968-05-13 01:56:00 +2906,1967-03-08 02:47:00 +2737,1967-03-28 13:52:00 +2398,1965-07-28 01:32:00 +6464,1968-05-27 20:50:00 +8133,1966-06-24 16:35:00 +7836,1969-07-06 23:02:00 +5647,1969-03-04 23:53:00 +5433,1966-03-29 04:25:00 +6052,1967-11-17 02:31:00 +9219,1969-03-14 15:57:00 +9856,1969-07-27 22:28:00 +1457,1967-08-08 06:07:00 +5670,1967-04-29 23:35:00 +599,1969-05-18 11:01:00 +8082,1969-12-11 23:45:00 +7618,1968-11-06 21:37:00 +7189,1969-06-19 20:26:00 +4700,1965-10-11 22:39:00 +1785,1965-03-11 12:56:00 +6304,1969-11-03 02:12:00 +3532,1966-07-20 10:15:00 +3092,1965-04-07 04:26:00 +5550,1968-09-09 12:34:00 +6507,1968-07-13 13:09:00 +601,1968-03-18 04:04:00 +8852,1966-04-04 13:33:00 +8033,1969-08-09 17:23:00 +8411,1965-09-21 09:17:00 +1923,1965-01-16 14:35:00 +4355,1965-09-05 03:06:00 +4992,1968-08-31 11:25:00 +9958,1967-01-02 05:05:00 +7213,1969-04-22 13:21:00 +2123,1966-06-17 22:25:00 +7024,1968-12-15 20:33:00 +2834,1967-11-22 00:43:00 +471,1967-02-20 22:37:00 +8168,1967-06-10 05:36:00 +9600,1965-04-04 14:38:00 +3656,1967-07-25 15:48:00 +3112,1965-07-22 20:41:00 +8756,1968-10-30 23:23:00 +7162,1969-06-20 22:43:00 +8505,1967-03-28 21:49:00 +3526,1965-09-15 07:00:00 +9844,1965-06-03 19:20:00 +9820,1969-01-04 05:42:00 +1266,1965-04-23 18:31:00 +825,1969-10-20 15:11:00 +532,1967-11-30 16:17:00 +637,1969-09-26 22:03:00 +8239,1968-03-07 13:37:00 +5743,1967-06-14 14:32:00 +6933,1969-03-25 20:50:00 +3208,1967-12-29 20:16:00 +7511,1969-12-16 21:23:00 +18,1967-04-07 22:56:00 +7578,1966-05-01 01:59:00 +1538,1966-01-12 21:00:00 +2174,1966-02-26 03:56:00 +3407,1968-02-20 06:05:00 +4156,1966-02-05 02:12:00 +5068,1966-09-03 22:38:00 +5582,1968-10-02 11:17:00 +4343,1966-07-03 02:20:00 +1933,1967-12-04 00:33:00 +4666,1967-01-06 13:27:00 +8630,1968-11-14 04:51:00 +387,1965-04-15 00:22:00 +5269,1966-09-01 09:30:00 +1382,1965-06-17 17:39:00 +5125,1968-11-16 08:37:00 +1436,1969-09-09 05:46:00 +4864,1968-10-02 13:25:00 +3425,1966-12-26 12:49:00 +4958,1967-10-28 20:10:00 +2795,1969-02-13 15:41:00 +308,1968-04-01 11:50:00 +9928,1968-04-07 22:00:00 +603,1969-07-22 19:38:00 +4693,1969-06-02 22:30:00 +7866,1967-07-18 09:58:00 +4332,1969-04-03 21:57:00 +4758,1968-11-12 22:37:00 +4555,1967-05-13 07:44:00 +7678,1965-05-07 17:04:00 +7083,1965-08-18 20:04:00 +8772,1965-01-08 12:05:00 +929,1967-02-16 20:12:00 +7834,1968-09-29 21:38:00 +3473,1967-01-14 16:52:00 +8052,1968-10-30 05:08:00 +7260,1966-06-30 16:31:00 +3773,1966-02-04 10:36:00 +2809,1969-01-11 01:15:00 +2677,1968-07-01 01:25:00 +6421,1966-08-07 15:38:00 +601,1966-12-01 10:29:00 +6706,1968-06-27 16:02:00 +1278,1967-01-12 00:56:00 +5744,1967-03-23 13:10:00 +971,1969-09-21 19:31:00 +8444,1969-10-09 05:50:00 +409,1965-08-05 06:13:00 +4050,1969-01-27 01:08:00 +6593,1969-10-06 18:47:00 +3612,1969-07-13 23:39:00 +5007,1969-02-13 15:32:00 +3212,1967-09-06 10:34:00 +6249,1967-08-30 08:13:00 +5355,1968-11-24 10:47:00 +598,1969-07-29 13:10:00 +2641,1968-01-14 10:20:00 +491,1965-08-23 00:14:00 +9841,1965-03-30 05:52:00 +9462,1968-02-05 02:40:00 +5445,1966-09-26 21:41:00 +3239,1965-02-16 20:14:00 +7928,1969-06-21 14:28:00 +2180,1967-05-10 20:28:00 +2765,1968-11-13 17:37:00 +1770,1968-11-05 13:47:00 +9799,1968-02-24 04:31:00 +1790,1968-06-19 00:12:00 +6617,1969-09-08 10:09:00 +3910,1967-07-05 04:35:00 +4403,1969-09-09 11:38:00 +67,1969-05-15 14:29:00 +9523,1967-02-10 22:32:00 +3840,1967-02-16 05:08:00 +1110,1966-02-09 11:39:00 +4018,1968-07-27 14:53:00 +8467,1968-03-05 14:06:00 +6294,1967-01-22 13:05:00 +1810,1968-03-16 11:34:00 +4598,1967-09-19 20:14:00 +9588,1965-06-25 05:41:00 +3122,1969-01-20 22:03:00 +470,1967-12-12 06:05:00 +3294,1969-12-09 02:05:00 +5126,1966-01-16 00:07:00 +3268,1966-09-25 13:52:00 +5287,1967-09-13 03:12:00 +2803,1967-08-31 22:23:00 +755,1969-10-14 13:45:00 +229,1968-03-22 12:37:00 +2966,1968-03-28 00:04:00 +2482,1967-11-26 16:40:00 +3334,1965-11-30 21:50:00 +7324,1968-12-31 15:57:00 +8120,1969-08-09 11:14:00 +3810,1968-09-05 12:27:00 +7623,1965-08-10 06:51:00 +7965,1965-08-21 04:57:00 +1954,1969-12-13 19:13:00 +5196,1969-02-04 17:14:00 +8152,1965-09-25 21:09:00 +8454,1965-07-07 03:12:00 +27,1966-02-11 08:13:00 +841,1969-11-09 08:50:00 +1081,1966-09-01 04:30:00 +4160,1969-09-07 18:32:00 +6105,1968-08-24 05:08:00 +4430,1966-10-14 22:03:00 +6102,1969-02-19 23:23:00 +7996,1965-12-08 15:15:00 +6527,1966-04-14 00:50:00 +4734,1968-11-30 18:55:00 +7171,1965-12-23 10:14:00 +7069,1966-09-18 06:35:00 +3954,1967-01-05 01:19:00 +4384,1966-04-15 21:28:00 +3409,1968-02-19 11:29:00 +2055,1966-10-03 03:31:00 +3771,1966-06-18 00:27:00 +6073,1968-09-05 01:38:00 +2647,1968-03-05 13:07:00 +2197,1965-11-03 03:09:00 +9775,1968-09-03 06:36:00 +7972,1969-08-21 09:36:00 +9357,1968-03-13 15:46:00 +4253,1966-10-31 21:25:00 +7201,1968-12-21 03:03:00 +6873,1967-01-12 08:19:00 +5974,1966-05-01 21:26:00 +1520,1969-05-08 23:15:00 +834,1966-04-17 00:09:00 +7918,1966-06-15 20:05:00 +6340,1969-10-07 10:15:00 +5713,1965-06-18 19:37:00 +9780,1965-08-25 05:16:00 +928,1965-01-21 02:18:00 +322,1965-08-30 16:09:00 +7342,1969-08-02 08:07:00 +3168,1965-09-26 12:25:00 +145,1966-03-27 00:57:00 +7450,1965-11-29 11:17:00 +9123,1966-08-06 14:10:00 +6427,1968-05-13 22:11:00 +7184,1969-10-10 23:17:00 +2728,1968-08-12 04:42:00 +6458,1967-02-06 06:18:00 +3054,1969-04-20 20:58:00 +3119,1968-01-02 19:56:00 +5353,1965-05-11 01:48:00 +338,1969-05-16 06:17:00 +4786,1965-04-13 09:49:00 +4159,1969-02-05 15:05:00 +5452,1968-02-18 18:38:00 +4536,1967-08-04 05:41:00 +5208,1966-11-08 09:36:00 +9212,1965-10-24 06:46:00 +7480,1969-06-15 18:33:00 +536,1968-11-28 11:35:00 +5367,1965-04-15 03:59:00 +8478,1969-09-18 14:51:00 +3999,1969-02-10 08:47:00 +2915,1966-09-10 05:04:00 +9286,1965-11-10 19:23:00 +7278,1965-07-16 21:37:00 +8033,1967-10-01 20:10:00 +3654,1965-07-05 08:24:00 +245,1967-07-03 01:26:00 +1224,1966-09-02 21:51:00 +8397,1967-11-30 15:00:00 +7205,1965-01-04 02:11:00 +7752,1965-01-17 17:14:00 +643,1966-01-25 17:35:00 +5000,1966-05-06 08:06:00 +7317,1967-04-16 01:44:00 +2853,1969-12-26 02:36:00 +6912,1969-01-27 08:32:00 +5452,1969-09-03 22:48:00 +6870,1969-09-01 00:23:00 +6473,1968-10-16 09:15:00 +1232,1966-03-19 20:37:00 +6671,1966-03-29 03:24:00 +2346,1968-04-06 01:56:00 +9496,1968-10-26 15:47:00 +9647,1968-07-27 01:10:00 +5170,1967-09-06 09:44:00 +909,1966-08-30 19:36:00 +3010,1969-07-20 04:04:00 +6244,1966-10-06 13:06:00 +2366,1966-08-28 19:50:00 +2016,1965-05-02 23:10:00 +1207,1968-10-07 15:35:00 +2981,1967-01-05 19:09:00 +3929,1967-02-01 22:43:00 +1134,1967-08-30 17:11:00 +9082,1969-12-24 09:45:00 +8209,1967-11-06 21:28:00 +3256,1965-11-29 23:06:00 +1400,1965-09-29 21:48:00 +8929,1965-03-29 20:50:00 +7178,1968-09-22 16:52:00 +4639,1967-03-17 21:25:00 +5339,1968-03-25 21:41:00 +5572,1966-08-07 02:06:00 +5738,1967-04-10 16:55:00 +6977,1967-09-05 00:01:00 +8,1965-12-11 02:17:00 +3093,1965-05-04 23:28:00 +1082,1968-09-09 18:53:00 +6745,1968-04-27 11:23:00 +3132,1969-10-11 17:17:00 +6459,1967-02-12 08:14:00 +4068,1967-02-23 13:39:00 +7725,1965-08-12 06:31:00 +7070,1969-05-20 05:11:00 +6783,1966-06-05 20:53:00 +1123,1967-05-17 01:31:00 +5399,1967-05-24 05:14:00 +722,1966-06-03 01:24:00 +3282,1969-05-06 12:53:00 +1336,1967-09-21 13:38:00 +5610,1967-12-04 02:10:00 +7928,1969-10-17 13:14:00 +8399,1967-07-03 11:04:00 +5721,1969-05-18 11:47:00 +7091,1966-05-05 22:52:00 +9632,1968-11-06 21:33:00 +6950,1965-07-04 07:21:00 +2855,1967-08-27 01:45:00 +4517,1967-04-30 10:31:00 +1179,1967-09-30 19:43:00 +876,1968-03-09 10:16:00 +5408,1967-07-06 23:16:00 +2819,1968-10-17 03:57:00 +1102,1969-05-05 09:47:00 +2612,1967-08-04 07:38:00 +1137,1969-04-01 13:51:00 +3806,1967-09-16 14:24:00 +9877,1968-11-09 01:18:00 +4153,1967-07-15 15:01:00 +9497,1966-03-29 23:33:00 +9905,1969-08-11 11:06:00 +2923,1965-02-28 11:00:00 +1087,1968-11-28 19:33:00 +8138,1968-11-22 01:57:00 +5198,1968-11-03 23:12:00 +8459,1967-09-07 22:32:00 +7792,1966-11-26 14:18:00 +645,1969-01-22 04:44:00 +7309,1968-11-27 20:11:00 +7933,1967-05-02 07:23:00 +6926,1969-12-07 10:46:00 +169,1968-08-18 14:34:00 +1964,1968-05-28 17:56:00 +6102,1968-09-08 11:02:00 +6157,1968-09-11 07:14:00 +7373,1969-08-26 17:07:00 +3543,1969-02-06 11:26:00 +2181,1966-11-15 17:45:00 +7738,1965-02-14 04:27:00 +2886,1969-04-17 08:21:00 +609,1967-04-12 07:45:00 +1678,1965-11-27 06:17:00 +3864,1965-08-02 08:21:00 +2817,1968-10-30 21:27:00 +3933,1968-05-17 12:15:00 +8043,1967-08-02 17:54:00 +4656,1969-03-01 06:45:00 +3670,1969-08-09 08:34:00 +2772,1965-11-29 12:47:00 +7015,1965-07-25 13:27:00 +9603,1965-05-30 03:28:00 +2647,1966-09-21 20:44:00 +9996,1965-01-30 17:19:00 +3462,1965-07-04 10:18:00 +7198,1969-03-11 17:27:00 +3526,1965-09-29 18:38:00 +3064,1968-05-29 01:27:00 +8362,1969-01-19 13:15:00 +3512,1969-07-26 14:18:00 +403,1966-08-03 00:33:00 +7101,1969-08-15 19:21:00 +8518,1965-08-17 00:52:00 +4436,1967-03-26 20:53:00 +7523,1965-04-30 02:27:00 +9682,1968-04-09 14:41:00 +9363,1966-11-05 15:12:00 +5629,1967-04-10 21:16:00 +6359,1968-11-30 12:49:00 +4321,1966-06-10 15:31:00 +1274,1967-10-04 11:21:00 +1261,1966-02-01 22:11:00 +8505,1966-03-28 19:23:00 +4565,1968-02-05 09:51:00 +6153,1965-03-20 23:47:00 +5450,1966-09-13 21:49:00 +5480,1966-01-20 02:18:00 +3214,1965-06-30 22:04:00 +9066,1969-12-14 19:50:00 +9386,1965-02-24 12:33:00 +8253,1967-07-25 09:55:00 +3907,1965-10-30 17:53:00 +5127,1969-12-16 18:09:00 +8976,1968-12-06 13:31:00 +4744,1966-05-27 16:48:00 +1965,1966-05-08 01:13:00 +1465,1966-12-22 18:30:00 +7897,1968-05-29 15:23:00 +5170,1966-01-15 03:52:00 +7040,1969-01-10 13:54:00 +796,1969-11-23 19:16:00 +5978,1968-09-21 09:27:00 +4318,1965-01-11 05:00:00 +2140,1969-08-01 09:10:00 +8506,1969-07-17 19:47:00 +49,1968-09-03 15:14:00 +6178,1968-11-29 11:05:00 +2022,1966-06-11 23:02:00 +3802,1967-01-01 16:22:00 +9368,1965-07-26 03:18:00 +1681,1965-07-15 09:36:00 +7812,1965-08-23 12:21:00 +8623,1967-08-11 16:00:00 +6177,1965-12-14 09:46:00 +78,1967-06-02 03:18:00 +7282,1967-09-06 05:37:00 +1755,1965-07-15 18:26:00 +1728,1968-05-29 12:27:00 +8780,1966-04-09 04:08:00 +3396,1965-08-17 04:40:00 +1006,1969-02-11 23:08:00 +2072,1968-11-28 02:05:00 +4000,1965-06-25 00:09:00 +1741,1965-10-11 08:43:00 +5187,1967-08-03 18:25:00 +5698,1967-02-13 23:25:00 +6738,1968-05-13 12:00:00 +2242,1966-01-10 17:00:00 +7103,1966-02-26 08:49:00 +8319,1968-08-22 10:17:00 +9780,1969-07-18 01:18:00 +4543,1968-07-31 02:54:00 +3254,1967-10-20 06:50:00 +6082,1966-07-08 07:30:00 +3304,1967-09-24 15:19:00 +1373,1969-01-27 21:04:00 +2715,1966-07-12 04:47:00 +5771,1965-08-17 10:01:00 +7211,1967-09-14 07:42:00 +2949,1967-10-07 03:50:00 +9181,1967-12-23 21:36:00 +4247,1968-03-14 17:22:00 +9007,1966-09-24 09:49:00 +2565,1966-02-02 17:11:00 +3189,1967-08-14 13:15:00 +7051,1968-07-31 03:48:00 +3953,1965-07-18 13:00:00 +4827,1965-06-22 03:18:00 +4385,1965-08-03 16:30:00 +4318,1968-03-04 18:15:00 +9980,1968-01-17 04:06:00 +9231,1965-12-14 22:33:00 +9414,1967-11-05 12:18:00 +4149,1969-06-14 18:31:00 +32,1966-02-20 09:20:00 +6330,1969-01-14 01:03:00 +714,1969-05-18 22:06:00 +2502,1967-11-07 22:22:00 +5642,1968-09-20 02:53:00 +8976,1966-08-14 05:46:00 +3786,1969-04-17 14:41:00 +5655,1968-12-21 14:57:00 +3126,1968-11-25 03:52:00 +8999,1968-05-13 20:12:00 +7001,1967-09-08 19:09:00 +4096,1968-05-04 15:41:00 +8454,1966-09-30 16:38:00 +7806,1967-07-29 01:49:00 +2316,1967-07-27 10:27:00 +5196,1968-07-02 21:54:00 +4412,1967-06-13 05:37:00 +1529,1965-05-16 06:07:00 +5356,1969-05-01 10:13:00 +1956,1969-07-17 06:21:00 +9360,1967-12-09 07:04:00 +7700,1966-11-16 07:32:00 +5911,1965-08-29 02:01:00 +5512,1968-03-08 12:13:00 +950,1965-05-30 00:01:00 +165,1967-06-23 10:56:00 +197,1967-12-23 00:49:00 +5608,1968-01-07 00:00:00 +9621,1967-08-17 05:00:00 +81,1965-12-30 17:42:00 +4701,1965-07-03 08:38:00 +6042,1967-10-05 16:24:00 +6337,1968-12-16 12:09:00 +6400,1966-04-17 15:56:00 +8404,1966-03-07 17:24:00 +4250,1966-10-07 02:39:00 +4010,1966-06-15 05:23:00 +5954,1966-06-28 06:15:00 +4021,1968-11-14 14:30:00 +416,1965-03-30 15:34:00 +8210,1968-08-01 06:17:00 +6918,1967-11-14 19:10:00 +3655,1967-01-21 20:02:00 +9269,1965-01-03 14:58:00 +8509,1969-01-12 19:44:00 +5912,1965-06-14 11:50:00 +5740,1967-08-01 17:28:00 +9911,1965-03-02 05:40:00 +1453,1966-12-13 19:34:00 +975,1967-06-10 02:22:00 +6285,1968-01-28 12:05:00 +6480,1967-06-19 23:50:00 +8602,1968-09-16 01:50:00 +9553,1969-02-05 11:54:00 +6190,1967-10-10 19:20:00 +6480,1967-01-01 11:12:00 +8036,1966-07-25 00:34:00 +8638,1968-06-03 22:37:00 +707,1967-05-07 07:13:00 +7141,1969-10-22 06:33:00 +3205,1967-07-17 02:12:00 +8368,1967-10-13 03:29:00 +3544,1965-10-31 06:35:00 +9735,1969-09-12 11:26:00 +2090,1968-01-22 17:03:00 +562,1968-11-10 18:58:00 +7256,1968-04-30 00:23:00 +8447,1968-04-24 02:47:00 +961,1966-02-05 22:40:00 +1544,1968-01-25 09:53:00 +9115,1966-08-19 18:46:00 +6214,1965-03-28 17:53:00 +3334,1967-02-15 20:26:00 +2028,1968-09-21 03:30:00 +7315,1966-11-10 13:30:00 +8471,1968-04-02 03:05:00 +9273,1965-03-24 19:17:00 +9256,1968-03-03 04:23:00 +8775,1965-05-05 04:18:00 +334,1969-12-31 16:32:00 +8692,1969-12-30 01:27:00 +4197,1965-07-28 06:40:00 +7287,1966-09-15 14:11:00 +8296,1968-06-10 06:16:00 +535,1965-03-18 06:17:00 +1076,1967-02-02 04:34:00 +9439,1968-08-09 12:47:00 +6210,1969-02-13 12:52:00 +4879,1968-10-05 05:58:00 +3419,1965-05-16 09:28:00 +7493,1966-01-05 20:51:00 +1108,1969-07-01 17:19:00 +2196,1967-04-03 16:03:00 +2009,1968-10-16 19:56:00 +3645,1969-01-07 09:58:00 +6760,1968-07-08 00:11:00 +5854,1968-11-26 00:35:00 +5944,1966-05-09 06:01:00 +4611,1969-02-20 01:26:00 +5976,1966-02-25 05:16:00 +5930,1969-04-11 07:15:00 +1139,1966-07-08 22:34:00 +6386,1966-10-23 23:54:00 +8009,1967-08-26 01:34:00 +8269,1969-06-15 03:54:00 +8737,1967-10-22 18:38:00 +3929,1965-11-16 22:28:00 +5064,1969-07-26 04:58:00 +7682,1969-11-03 13:58:00 +3221,1966-03-16 16:59:00 +5093,1965-08-19 05:54:00 +2513,1967-02-14 02:39:00 +589,1967-05-27 23:54:00 +1613,1965-07-08 17:02:00 +1195,1967-11-06 00:09:00 +7683,1967-10-04 22:47:00 +850,1967-03-25 13:00:00 +7750,1969-08-01 21:54:00 +7989,1966-06-27 08:06:00 +251,1967-08-06 20:10:00 +3352,1967-09-08 15:29:00 +683,1968-02-01 19:42:00 +8049,1968-01-24 10:17:00 +2714,1965-02-15 22:16:00 +6997,1966-02-24 19:55:00 +4554,1965-06-20 20:15:00 +6376,1968-04-28 13:22:00 +7749,1968-10-27 11:23:00 +6989,1966-07-17 21:24:00 +541,1966-11-18 23:06:00 +9593,1965-10-07 13:43:00 +3455,1969-07-01 05:43:00 +821,1968-12-21 08:46:00 +8677,1966-06-08 06:20:00 +3781,1965-06-06 20:15:00 +6723,1966-05-21 14:45:00 +3101,1966-08-09 07:56:00 +9263,1966-01-24 12:59:00 +8781,1969-06-14 01:35:00 +7730,1965-04-04 05:36:00 +4338,1968-11-12 13:50:00 +3152,1968-03-20 13:35:00 +9916,1968-08-07 01:27:00 +6710,1967-12-24 15:39:00 +4620,1967-07-15 16:46:00 +4599,1967-05-29 10:39:00 +7256,1969-12-10 11:49:00 +7325,1969-01-03 11:00:00 +8933,1965-11-16 12:10:00 +9148,1968-04-04 13:42:00 +430,1967-05-22 13:50:00 +6817,1969-12-30 09:54:00 +323,1965-08-13 07:57:00 +732,1969-03-13 12:40:00 +9567,1969-07-26 06:51:00 +3813,1967-06-28 12:32:00 +449,1969-04-25 06:01:00 +7094,1965-08-30 20:09:00 +3102,1965-04-07 10:57:00 +7222,1967-01-29 23:18:00 +2160,1966-02-21 20:43:00 +5315,1968-06-28 22:21:00 +3717,1965-05-08 09:09:00 +8249,1969-01-08 21:16:00 +9301,1968-06-30 05:09:00 +9573,1969-08-04 03:23:00 +4081,1968-02-24 20:52:00 +2781,1969-09-04 14:31:00 +9560,1968-09-09 19:16:00 +9370,1969-10-09 04:49:00 +35,1966-07-20 23:15:00 +8496,1966-10-04 22:05:00 +1014,1967-04-25 04:56:00 +1561,1968-05-24 03:26:00 +5575,1966-11-03 04:39:00 +1783,1967-05-01 02:14:00 +7349,1965-09-03 14:20:00 +475,1966-10-14 03:41:00 +7498,1968-11-02 00:50:00 +1172,1967-01-27 14:43:00 +1978,1966-04-24 08:07:00 +2654,1967-06-08 08:47:00 +8140,1966-12-31 05:01:00 +1739,1968-04-29 16:41:00 +3867,1965-06-22 20:02:00 +6281,1965-11-19 00:55:00 +5903,1969-11-16 01:19:00 +3315,1968-08-17 06:55:00 +6893,1969-01-27 09:49:00 +3125,1965-03-31 16:01:00 +5898,1966-04-13 06:27:00 +9907,1969-02-07 16:50:00 +6795,1966-09-14 11:55:00 +6182,1969-03-10 14:21:00 +9637,1966-08-04 08:38:00 +1901,1969-12-12 17:36:00 +289,1967-10-05 05:38:00 +4063,1967-05-14 04:09:00 +2305,1968-08-06 10:08:00 +3292,1969-05-17 16:21:00 +347,1968-02-01 16:08:00 +3328,1965-08-28 04:12:00 +8737,1969-05-05 07:49:00 +531,1966-04-15 11:32:00 +2489,1965-04-09 00:39:00 +7632,1968-08-08 03:57:00 +9828,1966-07-02 20:56:00 +365,1969-07-19 23:30:00 +2910,1966-10-13 17:27:00 +1279,1965-02-24 00:02:00 +2688,1968-11-10 16:38:00 +289,1967-10-16 21:22:00 +2132,1967-05-19 07:34:00 +5929,1969-01-18 08:31:00 +3877,1969-11-12 04:11:00 +1363,1966-05-30 13:41:00 +6687,1968-06-20 01:35:00 +8765,1968-09-17 00:15:00 +7297,1968-06-22 10:29:00 +8986,1966-04-18 17:31:00 +9673,1968-02-08 13:46:00 +7056,1967-12-08 17:22:00 +1488,1965-02-18 05:46:00 +1566,1969-02-28 05:41:00 +2832,1965-01-27 04:52:00 +3992,1967-06-10 18:40:00 +8917,1968-01-16 21:08:00 +5939,1966-06-15 06:02:00 +1746,1968-04-03 05:21:00 +6565,1966-06-28 14:19:00 +1555,1967-07-06 17:43:00 +7271,1965-06-17 10:44:00 +8297,1967-04-05 12:24:00 +7093,1969-08-16 08:25:00 +3715,1965-03-22 11:32:00 +2804,1968-10-25 13:43:00 +8304,1967-04-06 09:00:00 +8315,1969-01-27 12:27:00 +5939,1966-06-29 06:21:00 +2639,1969-03-13 13:06:00 +228,1965-01-22 13:52:00 +8372,1967-08-22 17:52:00 +2161,1966-01-07 04:26:00 +3062,1968-09-28 14:16:00 +3872,1965-11-23 09:39:00 +289,1967-03-08 09:47:00 +8036,1968-07-27 13:59:00 +4109,1965-01-25 02:49:00 +1453,1969-08-14 10:20:00 +4387,1966-01-01 13:42:00 +4764,1967-07-03 03:53:00 +2975,1966-05-09 03:02:00 +9437,1967-07-31 14:47:00 +8433,1967-02-15 07:41:00 +8796,1965-10-15 17:20:00 +4404,1966-08-29 03:42:00 +7130,1965-12-01 15:37:00 +6770,1968-06-20 13:41:00 +1951,1966-02-23 12:14:00 +8122,1965-09-16 21:48:00 +7219,1965-08-09 07:51:00 +259,1966-05-28 07:57:00 +9855,1966-04-29 16:48:00 +6126,1968-03-05 00:11:00 +4390,1968-03-20 09:58:00 +6416,1968-11-16 19:30:00 +6703,1967-10-15 02:06:00 +5001,1965-02-15 11:17:00 +4562,1969-05-02 23:32:00 +370,1966-05-23 22:47:00 +8191,1967-07-14 09:15:00 +2147,1968-07-05 20:49:00 +9362,1968-12-21 18:59:00 +5343,1969-11-07 19:34:00 +4829,1965-01-03 11:33:00 +6462,1966-09-07 18:10:00 +3653,1968-06-10 13:11:00 +7054,1968-12-20 16:39:00 +398,1966-03-21 22:45:00 +2427,1965-08-05 00:51:00 +6059,1969-04-21 23:45:00 +9390,1966-12-04 13:51:00 +3257,1966-12-08 02:30:00 +7440,1969-06-13 09:28:00 +5104,1965-01-23 20:24:00 +139,1969-05-20 12:57:00 +6307,1966-07-08 16:01:00 +5972,1968-02-22 09:53:00 +8171,1968-10-31 12:27:00 +6444,1969-07-29 02:23:00 +3948,1966-04-19 15:43:00 +9443,1968-10-16 17:31:00 +573,1969-11-11 19:18:00 +3981,1965-06-30 01:21:00 +8219,1967-02-14 00:20:00 +6969,1967-10-15 18:14:00 +6020,1968-08-04 16:48:00 +9757,1969-10-23 03:43:00 +5236,1965-10-13 01:21:00 +4579,1969-10-18 01:50:00 +3561,1968-02-07 03:53:00 +5503,1969-04-20 05:11:00 +6592,1966-02-15 09:34:00 +2177,1966-11-02 08:43:00 +9697,1965-12-12 13:07:00 +4184,1966-03-15 18:46:00 +1589,1968-07-04 11:39:00 +2721,1968-09-20 15:49:00 +6245,1969-03-08 14:11:00 +6026,1966-03-15 12:44:00 +9801,1967-05-06 15:23:00 +1676,1967-03-09 19:12:00 +4823,1965-06-13 16:25:00 +2685,1969-02-08 17:14:00 +7014,1966-08-11 10:11:00 +5287,1966-01-27 10:50:00 +2486,1967-02-23 11:37:00 +6981,1965-07-21 11:01:00 +2025,1967-10-13 21:31:00 +3182,1968-05-02 01:48:00 +4492,1965-04-05 15:20:00 +1912,1969-02-27 16:55:00 +6286,1968-10-31 13:55:00 +3931,1965-12-04 20:38:00 +7719,1966-07-01 00:05:00 +6192,1966-06-25 04:17:00 +4181,1965-06-11 18:30:00 +6397,1966-07-16 20:04:00 +1595,1966-09-15 17:39:00 +5646,1965-02-28 21:07:00 +2864,1967-09-29 05:23:00 +1149,1967-08-04 13:19:00 +1099,1965-09-10 23:34:00 +245,1965-07-09 05:29:00 +146,1968-03-12 06:28:00 +5196,1967-09-18 03:55:00 +2679,1967-07-17 23:27:00 +3051,1969-01-30 00:58:00 +2507,1966-12-05 04:00:00 +2766,1966-12-09 05:24:00 +7061,1965-12-11 09:45:00 +2396,1968-07-22 07:00:00 +4600,1965-12-26 10:50:00 +4247,1968-11-16 13:26:00 +7902,1968-11-26 21:43:00 +729,1967-11-05 01:38:00 +7447,1967-01-31 07:21:00 +2404,1966-07-18 15:24:00 +1633,1969-12-24 19:13:00 +3262,1969-08-30 05:06:00 +1817,1968-06-16 13:07:00 +2154,1965-01-26 12:20:00 +9073,1967-08-25 09:54:00 +2884,1968-10-06 13:14:00 +8529,1967-06-29 15:28:00 +1203,1967-11-27 08:36:00 +705,1969-04-28 08:10:00 +6234,1969-07-30 18:07:00 +9785,1965-06-20 14:55:00 +9816,1969-06-06 06:02:00 +7193,1966-05-29 15:51:00 +3412,1968-04-10 18:19:00 +1672,1966-12-09 05:18:00 +4977,1968-11-28 16:05:00 +5536,1967-03-23 12:13:00 +941,1968-07-19 21:31:00 +3143,1968-02-19 22:00:00 +3239,1967-04-26 12:04:00 +1540,1967-01-17 07:21:00 +5460,1965-12-19 21:36:00 +4353,1965-12-18 21:38:00 +3593,1967-08-25 15:47:00 +4756,1967-10-21 03:51:00 +793,1965-03-13 04:11:00 +708,1969-05-04 06:13:00 +2037,1966-07-05 05:53:00 +2666,1969-12-13 04:51:00 +9817,1965-10-20 09:23:00 +8719,1967-05-11 03:46:00 +4775,1965-05-01 08:39:00 +8702,1969-02-06 12:05:00 +8840,1965-07-12 19:35:00 +9229,1965-10-29 18:04:00 +9210,1969-01-14 22:21:00 +5233,1969-08-14 04:22:00 +8537,1966-07-15 21:04:00 +4975,1966-02-10 11:16:00 +7251,1968-05-27 15:13:00 +6476,1968-12-25 14:12:00 +8306,1967-12-30 19:36:00 +7957,1969-10-13 07:57:00 +69,1967-02-13 04:46:00 +6364,1967-02-27 02:54:00 +7694,1965-09-28 10:24:00 +4633,1968-07-16 15:05:00 +375,1965-01-11 09:39:00 +7618,1967-09-12 10:44:00 +6936,1968-06-28 18:09:00 +1231,1969-09-24 10:10:00 +6712,1965-04-26 12:39:00 +3257,1969-08-10 09:12:00 +18,1965-01-12 13:15:00 +5974,1967-01-30 04:34:00 +8767,1966-04-18 06:07:00 +1765,1965-03-02 22:41:00 +7593,1969-03-21 14:17:00 +555,1969-08-13 19:51:00 +5591,1965-02-16 08:24:00 +4361,1965-03-05 02:29:00 +9148,1966-06-21 06:58:00 +6956,1968-06-08 16:29:00 +7476,1969-04-14 21:11:00 +5795,1966-08-12 10:16:00 +5896,1965-08-21 15:13:00 +7746,1965-06-13 07:49:00 +6877,1968-10-08 12:45:00 +4426,1965-09-09 03:46:00 +3183,1969-10-14 20:16:00 +3395,1965-12-29 08:48:00 +5455,1966-02-01 13:29:00 +3612,1969-04-02 06:04:00 +1701,1965-09-12 10:09:00 +689,1968-05-24 07:16:00 +8583,1965-07-11 19:46:00 +1621,1965-11-16 14:13:00 +2121,1967-11-02 17:53:00 +8995,1965-10-03 04:25:00 +1948,1966-03-08 10:26:00 +5825,1968-06-21 16:15:00 +2989,1969-04-19 00:57:00 +594,1966-03-19 06:02:00 +5905,1969-04-13 12:37:00 +300,1965-07-31 05:54:00 +9366,1966-12-04 20:43:00 +4059,1966-05-07 01:47:00 +4750,1969-07-07 08:59:00 +4205,1967-02-17 11:37:00 +4701,1966-07-30 07:39:00 +8651,1966-07-21 22:26:00 +8482,1966-01-17 19:36:00 +7221,1968-01-08 10:15:00 +371,1966-02-07 18:23:00 +4066,1969-03-09 03:52:00 +8006,1966-10-27 17:23:00 +6414,1969-11-17 20:05:00 +6396,1968-03-16 05:52:00 +4673,1968-05-31 00:10:00 +9780,1967-05-27 12:35:00 +4424,1967-09-01 04:57:00 +2964,1967-06-19 04:23:00 +406,1966-02-20 18:01:00 +1,1965-03-15 07:16:00 +3770,1968-05-29 12:20:00 +4716,1966-02-15 08:08:00 +576,1969-07-22 01:47:00 +7385,1966-08-15 01:05:00 +4388,1969-12-08 06:23:00 +9665,1968-07-06 15:52:00 +8449,1966-03-06 02:06:00 +7619,1966-02-15 02:22:00 +1664,1967-07-13 07:12:00 +1997,1965-12-14 00:36:00 +3166,1967-07-01 04:09:00 +8229,1967-03-10 22:29:00 +6241,1969-05-30 16:30:00 +8944,1966-04-22 12:30:00 +6186,1969-10-16 07:07:00 +3055,1965-09-14 08:44:00 +4111,1967-04-17 18:54:00 +2374,1967-02-25 05:50:00 +8338,1969-11-24 12:25:00 +7297,1965-12-23 22:28:00 +2604,1968-11-03 00:33:00 +909,1967-03-02 02:51:00 +3465,1968-06-10 06:09:00 +4345,1968-07-16 10:17:00 +3953,1968-03-29 03:58:00 +3205,1969-06-11 06:02:00 +5665,1965-06-10 16:03:00 +1057,1969-08-08 19:57:00 +6664,1965-10-02 19:10:00 +3905,1966-10-27 04:55:00 +9961,1969-02-13 17:47:00 +9032,1966-08-21 08:01:00 +1875,1968-04-18 21:26:00 +1033,1967-09-20 12:44:00 +9987,1967-05-30 15:18:00 +3547,1965-07-01 09:34:00 +6090,1965-08-21 18:24:00 +8001,1969-05-24 20:58:00 +6561,1969-05-20 23:22:00 +4796,1966-03-22 01:28:00 +5770,1968-01-09 17:19:00 +3919,1965-03-19 19:05:00 +390,1966-10-30 23:00:00 +8952,1969-07-29 06:56:00 +6095,1965-05-17 04:01:00 +4318,1967-02-15 06:19:00 +3462,1969-09-19 19:04:00 +6726,1965-09-03 20:48:00 +477,1967-06-12 14:08:00 +1387,1968-04-28 01:29:00 +2398,1965-08-20 10:12:00 +1232,1966-06-11 19:00:00 +1136,1969-11-28 15:30:00 +5197,1969-08-12 12:11:00 +6222,1966-02-15 11:31:00 +5967,1967-10-20 22:26:00 +2940,1969-08-19 00:49:00 +9494,1965-06-15 12:45:00 +5524,1967-07-19 13:02:00 +2715,1965-11-13 05:47:00 +8375,1965-07-27 08:04:00 +3537,1967-03-11 17:27:00 +7206,1968-12-16 19:00:00 +6692,1965-04-15 14:18:00 +8821,1967-04-26 14:58:00 +280,1968-11-24 05:47:00 +7296,1965-12-06 17:27:00 +9630,1969-06-09 05:20:00 +3493,1968-12-19 11:14:00 +7835,1965-05-09 13:28:00 +4826,1965-02-01 14:24:00 +6213,1967-01-12 08:07:00 +9104,1968-06-28 11:35:00 +5724,1969-01-06 22:14:00 +7271,1967-02-11 01:14:00 +6838,1967-12-19 08:38:00 +3088,1968-04-06 08:42:00 +9430,1967-03-28 22:32:00 +7413,1969-06-18 12:39:00 +2757,1967-02-24 12:39:00 +4718,1965-03-19 15:17:00 +6038,1965-06-18 08:04:00 +4215,1965-08-08 20:14:00 +5813,1968-09-14 07:35:00 +1028,1969-10-06 11:04:00 +7875,1966-07-27 12:26:00 +1251,1968-08-13 16:33:00 +9146,1965-10-24 21:38:00 +1539,1968-05-07 14:26:00 +358,1966-07-25 08:13:00 +7627,1968-03-05 22:27:00 +6966,1966-09-26 23:50:00 +8120,1968-04-15 14:26:00 +9842,1967-07-09 22:05:00 +8640,1966-05-13 00:44:00 +989,1969-05-24 15:08:00 +2003,1966-11-09 22:14:00 +2523,1969-10-04 21:18:00 +3302,1969-05-22 10:12:00 +9103,1969-06-06 03:59:00 +7667,1969-10-04 08:15:00 +1126,1965-05-07 22:51:00 +7900,1965-02-15 04:05:00 +717,1967-09-07 09:24:00 +4090,1969-07-21 15:19:00 +3437,1965-07-22 06:06:00 +3258,1966-11-22 07:33:00 +5881,1965-10-29 12:02:00 +670,1965-03-15 21:32:00 +106,1966-03-29 16:42:00 +5424,1969-09-10 12:04:00 +3076,1969-11-27 02:13:00 +1756,1966-02-25 00:42:00 +8958,1967-12-12 20:28:00 +3037,1968-03-13 16:15:00 +8953,1966-01-01 10:15:00 +7976,1966-06-18 00:01:00 +4253,1969-02-14 22:59:00 +3348,1967-10-19 08:31:00 +1566,1966-03-25 04:02:00 +1106,1966-09-10 01:17:00 +5647,1968-09-26 02:22:00 +3989,1967-07-03 06:12:00 +7905,1967-05-17 03:02:00 +2064,1969-02-07 13:28:00 +5390,1968-08-28 16:26:00 +3019,1967-11-02 09:41:00 +4352,1969-09-12 12:50:00 +449,1968-07-16 19:36:00 +568,1966-07-09 06:52:00 +9511,1969-03-07 14:25:00 +4180,1967-02-28 11:29:00 +9689,1968-09-17 01:23:00 +780,1967-10-27 17:08:00 +1413,1969-03-17 17:50:00 +5873,1966-10-31 02:12:00 +2079,1965-01-25 23:38:00 +2029,1966-01-20 15:09:00 +3638,1968-03-04 01:20:00 +4200,1966-12-08 10:00:00 +669,1967-09-21 18:40:00 +9662,1967-12-06 09:35:00 +5304,1967-08-18 05:11:00 +2175,1965-05-05 04:49:00 +38,1968-09-03 04:58:00 +5280,1965-10-08 21:52:00 +5022,1969-02-10 00:17:00 +7998,1967-07-21 14:26:00 +1444,1965-10-05 01:44:00 +1495,1968-09-29 22:47:00 +7717,1966-03-11 08:49:00 +3058,1965-06-02 18:48:00 +7655,1966-06-12 11:46:00 +5315,1965-01-24 22:52:00 +2634,1969-06-07 06:23:00 +4568,1969-11-30 12:33:00 +1059,1965-09-02 05:04:00 +5035,1966-01-24 00:29:00 +443,1966-11-16 07:35:00 +7484,1968-04-20 21:42:00 +8742,1967-01-27 14:21:00 +7148,1968-05-06 11:45:00 +1910,1969-09-02 12:13:00 +9781,1969-03-09 20:53:00 +9097,1967-08-06 19:54:00 +1415,1968-08-08 18:35:00 +5311,1967-12-09 19:50:00 +2067,1969-11-12 02:23:00 +5499,1968-08-17 13:06:00 +6074,1969-04-10 03:45:00 +9801,1969-04-05 21:53:00 +1906,1969-12-26 03:43:00 +5120,1969-08-15 18:06:00 +9727,1967-11-29 06:21:00 +2228,1965-07-09 02:04:00 +6450,1968-05-17 21:57:00 +5566,1965-10-19 14:37:00 +5171,1965-09-06 02:18:00 +706,1966-09-14 17:24:00 +1853,1968-08-17 08:36:00 +5701,1966-01-08 16:29:00 +9150,1969-09-15 07:28:00 +2766,1969-12-24 20:42:00 +5796,1967-02-16 21:33:00 +2096,1969-07-30 18:43:00 +5428,1969-06-30 00:44:00 +241,1967-04-07 01:37:00 +8312,1965-01-23 00:57:00 +9415,1966-06-12 23:57:00 +2731,1968-12-05 17:38:00 +7225,1969-01-24 19:41:00 +8252,1967-12-13 11:27:00 +9050,1966-03-17 07:29:00 +5778,1965-10-03 16:32:00 +6253,1969-06-22 21:45:00 +5482,1969-10-24 16:59:00 +5968,1968-10-10 13:04:00 +4706,1968-11-25 11:24:00 +39,1968-05-14 00:11:00 +4164,1969-03-02 07:15:00 +1928,1966-01-14 11:57:00 +5666,1966-09-07 23:22:00 +4438,1965-04-05 01:23:00 +609,1966-01-13 05:40:00 +2420,1966-02-27 01:18:00 +6746,1967-07-01 08:21:00 +9248,1968-05-06 22:00:00 +1394,1969-07-30 11:40:00 +1476,1966-03-05 06:00:00 +9290,1968-02-06 21:14:00 +9931,1967-04-06 03:17:00 +1404,1966-01-03 13:22:00 +927,1968-04-14 11:10:00 +6988,1968-09-18 06:04:00 +4914,1968-02-16 15:14:00 +4424,1969-05-16 09:21:00 +2069,1965-07-23 18:57:00 +3625,1968-12-01 18:45:00 +9065,1965-06-11 13:04:00 +679,1969-07-11 07:07:00 +1792,1969-05-25 13:22:00 +4696,1969-10-26 17:58:00 +5718,1968-07-29 11:34:00 +2124,1969-10-28 02:29:00 +4188,1967-03-16 06:39:00 +1593,1966-10-31 15:23:00 +8563,1967-07-01 07:41:00 +2225,1968-07-25 14:02:00 +1865,1969-07-26 23:51:00 +4944,1969-05-07 20:09:00 +6902,1966-11-25 04:22:00 +2191,1966-06-05 16:10:00 +3375,1968-07-04 21:45:00 +9399,1965-04-30 17:48:00 +370,1967-03-18 15:27:00 +354,1967-07-05 18:54:00 +7591,1969-09-26 01:16:00 +3748,1966-04-01 22:54:00 +6939,1968-11-22 19:01:00 +6313,1969-08-21 12:16:00 +8219,1967-01-24 11:57:00 +6391,1968-03-31 05:32:00 +1903,1966-07-26 19:30:00 +4640,1965-11-05 01:39:00 +2604,1968-06-23 06:26:00 +773,1967-07-12 11:50:00 +6204,1969-07-30 21:39:00 +9638,1965-01-29 03:56:00 +3275,1966-12-08 11:22:00 +6176,1965-12-02 13:15:00 +6801,1966-11-10 07:23:00 +4354,1967-06-02 04:52:00 +1923,1967-07-02 08:25:00 +7305,1967-08-08 11:10:00 +9278,1967-12-28 08:41:00 +5394,1966-08-10 13:09:00 +2655,1965-10-10 23:24:00 +5860,1965-09-23 14:06:00 +8677,1969-10-14 16:30:00 +4717,1969-08-30 00:14:00 +3132,1966-04-02 23:13:00 +7044,1969-09-16 21:09:00 +3105,1968-11-28 11:58:00 +7738,1966-01-16 12:07:00 +9082,1969-11-04 20:44:00 +8712,1968-03-27 03:34:00 +9358,1967-03-21 08:23:00 +1128,1967-08-01 20:10:00 +5602,1965-07-29 15:44:00 +2656,1969-02-22 21:46:00 +3077,1966-01-25 19:40:00 +4400,1965-07-03 16:45:00 +3619,1968-05-14 14:36:00 +2503,1965-07-11 09:28:00 +3014,1966-01-16 06:26:00 +9592,1966-11-19 15:34:00 +1397,1967-12-30 19:13:00 +973,1966-04-15 01:23:00 +2116,1968-05-31 15:01:00 +167,1969-07-27 08:00:00 +2803,1966-02-06 20:25:00 +6595,1967-01-13 05:01:00 +863,1969-02-24 11:35:00 +1112,1965-07-29 17:30:00 +8646,1969-02-01 09:42:00 +8686,1969-12-17 10:14:00 +4641,1967-07-17 03:30:00 +1275,1965-07-28 16:41:00 +9959,1965-05-01 00:20:00 +2914,1969-03-01 07:44:00 +4602,1967-07-16 11:21:00 +4391,1969-11-14 04:05:00 +6053,1967-06-11 04:21:00 +6933,1965-04-19 09:02:00 +550,1965-01-30 15:49:00 +200,1967-06-21 21:56:00 +3990,1965-12-22 16:34:00 +4649,1967-08-31 14:09:00 +3286,1969-12-05 07:14:00 +7523,1965-03-12 11:07:00 +9975,1966-11-24 00:44:00 +5406,1969-11-24 09:50:00 +3552,1968-04-18 05:05:00 +683,1968-09-08 02:54:00 +419,1968-10-24 00:00:00 +1125,1965-01-02 12:55:00 +8344,1965-10-30 13:44:00 +5083,1966-06-19 19:32:00 +6161,1966-02-09 06:07:00 +6301,1968-08-01 22:25:00 +4597,1967-07-23 16:30:00 +7118,1965-05-13 12:39:00 +6282,1966-01-30 14:24:00 +4084,1969-09-13 06:22:00 +5466,1969-10-12 13:55:00 +603,1965-04-02 15:10:00 +9929,1967-03-30 00:27:00 +3293,1966-11-10 01:55:00 +7834,1965-10-06 14:50:00 +5726,1967-10-14 18:09:00 +8231,1967-10-27 19:03:00 +7437,1966-03-01 04:38:00 +7501,1965-09-09 16:15:00 +2363,1968-06-04 03:53:00 +8274,1967-08-23 09:05:00 +3707,1967-06-15 05:03:00 +7340,1966-07-04 16:43:00 +3378,1965-02-03 14:58:00 +7800,1966-11-28 19:44:00 +8900,1965-03-10 21:55:00 +250,1965-10-15 07:17:00 +4500,1965-09-16 10:34:00 +7989,1969-11-20 12:27:00 +9774,1966-08-29 16:52:00 +8323,1965-03-23 08:49:00 +5888,1966-06-26 05:17:00 +8407,1968-01-30 19:25:00 +6080,1965-05-02 15:54:00 +2194,1966-05-20 05:39:00 +2789,1968-07-27 05:28:00 +123,1966-11-03 07:34:00 +4114,1965-04-13 06:42:00 +8820,1966-09-14 23:34:00 +4086,1965-09-19 10:09:00 +2013,1965-09-18 16:31:00 +5714,1966-11-20 13:35:00 +368,1966-06-10 04:45:00 +3561,1969-02-04 06:02:00 +9255,1968-09-18 02:12:00 +7987,1968-08-18 22:32:00 +3496,1965-02-16 06:36:00 +8029,1967-06-06 20:30:00 +6037,1968-02-18 05:15:00 +1426,1968-10-15 07:33:00 +4235,1967-03-29 17:24:00 +9168,1967-12-03 13:49:00 +6312,1968-04-30 19:19:00 +8531,1969-09-28 04:11:00 +4428,1968-09-24 22:57:00 +1865,1965-01-28 23:57:00 +2940,1969-08-05 20:31:00 +9383,1967-02-09 21:04:00 +6157,1965-10-16 15:22:00 +4738,1966-01-16 07:56:00 +6728,1969-08-31 11:20:00 +7280,1967-05-24 06:49:00 +8440,1965-03-19 09:27:00 +8527,1966-03-16 18:56:00 +8670,1965-09-08 12:59:00 +7408,1969-08-09 16:38:00 +6018,1966-03-09 05:09:00 +8935,1965-04-11 19:14:00 +7072,1969-09-11 04:34:00 +2558,1965-03-18 10:43:00 +5994,1969-12-22 01:25:00 +5641,1968-08-15 16:40:00 +8648,1969-07-06 18:35:00 +6392,1965-11-05 11:57:00 +3712,1968-12-06 01:31:00 +4584,1968-04-01 09:23:00 +7309,1967-07-21 00:36:00 +8578,1965-09-21 20:47:00 +6002,1969-02-25 19:21:00 +2667,1968-10-09 00:40:00 +1048,1965-01-09 09:26:00 +7449,1966-10-22 12:47:00 +5386,1965-03-12 14:16:00 +7192,1967-05-10 06:43:00 +5170,1968-02-24 08:11:00 +1110,1965-12-16 08:51:00 +3721,1968-04-29 02:00:00 +71,1966-07-14 00:59:00 +5662,1965-07-25 02:49:00 +8865,1967-04-19 08:04:00 +2546,1966-09-22 10:49:00 +9115,1968-10-10 13:28:00 +3710,1967-11-10 13:39:00 +4655,1967-01-28 03:21:00 +6179,1966-07-22 03:14:00 +3046,1968-11-09 12:30:00 +7461,1966-07-27 21:21:00 +6227,1968-07-10 17:16:00 +637,1968-02-09 20:04:00 +4918,1965-04-01 15:58:00 +4101,1968-12-12 07:10:00 +1991,1967-02-14 16:13:00 +56,1969-06-06 05:05:00 +811,1969-06-11 16:26:00 +4918,1967-03-13 07:00:00 +6777,1969-02-09 01:30:00 +8571,1968-08-08 23:35:00 +2849,1969-07-05 01:05:00 +8789,1966-11-04 12:16:00 +8082,1968-02-23 01:20:00 +6111,1965-11-04 05:29:00 +5848,1969-09-02 10:43:00 +1481,1967-07-13 01:45:00 +3778,1965-11-20 18:18:00 +6865,1968-11-07 05:22:00 +2955,1966-11-24 09:53:00 +917,1968-12-22 22:39:00 +2723,1969-09-19 06:19:00 +5931,1969-01-03 20:30:00 +2661,1968-12-26 07:47:00 +9812,1969-11-04 14:18:00 +8569,1966-11-16 09:08:00 +9701,1967-08-30 00:10:00 +5043,1966-05-26 02:01:00 +5957,1968-05-23 11:12:00 +3513,1967-11-02 01:43:00 +4462,1968-05-25 00:01:00 +2664,1967-01-01 07:06:00 +717,1969-11-22 08:37:00 +6649,1968-06-08 07:12:00 +8062,1969-07-20 13:08:00 +5246,1968-02-27 11:02:00 +9311,1969-04-07 20:15:00 +4745,1965-06-22 07:25:00 +8296,1968-07-13 15:52:00 +1247,1967-09-25 01:35:00 +5088,1968-02-29 11:51:00 +3145,1967-06-14 18:26:00 +9329,1968-07-05 20:00:00 +6888,1968-03-04 17:24:00 +6129,1967-12-05 19:58:00 +5308,1965-09-24 18:22:00 +5683,1969-01-22 16:06:00 +4795,1969-12-04 04:26:00 +8971,1968-08-06 15:10:00 +4415,1967-01-15 18:48:00 +4514,1966-06-24 22:10:00 +1012,1965-07-30 09:13:00 +9480,1965-09-11 05:14:00 +8955,1967-04-22 03:36:00 +5086,1967-01-11 01:19:00 +5736,1969-04-23 15:45:00 +9288,1965-08-22 11:06:00 +6840,1965-11-02 07:17:00 +707,1968-08-26 17:26:00 +7686,1966-11-21 22:43:00 +4236,1969-11-05 21:39:00 +1080,1966-12-21 12:27:00 +5805,1966-04-08 13:45:00 +1487,1969-11-19 05:29:00 +7602,1965-03-09 13:34:00 +3885,1969-04-24 22:08:00 +9421,1966-10-13 22:17:00 +7351,1969-01-25 01:00:00 +8887,1968-05-11 18:30:00 +6666,1965-05-19 14:15:00 +7006,1965-07-27 02:11:00 +6084,1965-10-22 21:21:00 +1832,1969-09-04 05:37:00 +9257,1965-08-03 20:41:00 +3745,1969-03-24 03:39:00 +2887,1966-03-15 09:23:00 +8046,1967-04-09 08:52:00 +7989,1965-09-15 22:34:00 +2317,1968-05-28 06:18:00 +864,1969-12-31 21:42:00 +635,1967-08-16 20:35:00 +1280,1968-05-15 23:03:00 +8087,1967-03-10 18:49:00 +167,1965-04-10 00:19:00 +1582,1968-12-04 07:27:00 +9021,1965-03-20 11:09:00 +6554,1968-07-29 11:18:00 +5794,1968-04-19 08:53:00 +9677,1968-03-09 16:49:00 +6451,1969-11-14 12:40:00 +2525,1967-09-12 09:32:00 +6099,1966-12-20 19:09:00 +776,1966-11-14 09:52:00 +708,1968-05-18 04:23:00 +3814,1967-03-22 05:29:00 +6665,1969-11-04 22:44:00 +2791,1968-02-25 09:12:00 +1848,1968-10-14 08:34:00 +1928,1967-11-24 14:04:00 +5158,1969-10-12 05:29:00 +4492,1967-11-27 20:05:00 +6682,1967-03-06 23:38:00 +3747,1967-01-20 20:52:00 +9571,1967-03-11 17:16:00 +5981,1967-04-01 06:10:00 +1733,1968-10-25 09:33:00 +5651,1969-04-23 19:47:00 +5515,1967-08-10 21:12:00 +1169,1967-10-13 11:35:00 +7455,1965-12-09 19:21:00 +9195,1968-06-01 15:17:00 +6406,1968-12-25 05:04:00 +5862,1965-06-24 22:12:00 +5412,1969-02-20 07:44:00 +4199,1966-03-08 10:51:00 +6082,1967-08-15 06:18:00 +3300,1968-05-21 05:01:00 +152,1965-02-03 23:52:00 +3934,1969-07-08 13:07:00 +9466,1965-07-02 18:54:00 +78,1968-06-27 18:20:00 +6725,1969-02-23 17:35:00 +3441,1968-03-02 21:59:00 +1840,1967-11-07 23:49:00 +2523,1969-06-18 01:22:00 +1633,1965-08-04 14:10:00 +1546,1969-10-19 23:56:00 +9385,1967-04-01 03:21:00 +1677,1967-01-16 10:40:00 +9453,1966-09-16 14:17:00 +7642,1965-09-05 23:43:00 +1173,1969-08-05 13:11:00 +4314,1968-09-09 11:06:00 +3729,1967-10-01 08:46:00 +97,1967-11-29 01:54:00 +2752,1969-01-11 09:08:00 +8903,1966-08-05 08:11:00 +5479,1969-11-03 14:05:00 +1254,1967-02-17 15:29:00 +5060,1966-12-28 13:26:00 +2358,1968-04-17 03:42:00 +8289,1968-12-09 22:24:00 +1293,1965-04-04 08:32:00 +7178,1968-04-13 10:23:00 +2255,1969-06-20 23:07:00 +5176,1969-11-24 23:25:00 +3027,1969-02-09 21:00:00 +5740,1969-12-20 07:19:00 +2541,1966-10-15 14:15:00 +4463,1968-07-21 07:59:00 +6437,1966-08-16 18:54:00 +968,1965-05-25 17:17:00 +1012,1966-01-29 13:30:00 +8532,1968-05-23 02:52:00 +6325,1968-10-08 18:52:00 +75,1966-01-01 19:13:00 +7058,1969-11-06 23:51:00 +7607,1969-01-27 16:42:00 +2573,1966-05-17 21:38:00 +8487,1965-10-29 14:46:00 +3443,1969-01-19 17:17:00 +419,1966-11-16 04:34:00 +1397,1966-12-07 02:12:00 +8210,1965-10-18 14:29:00 +47,1965-06-12 19:34:00 +3268,1967-01-08 07:46:00 +6927,1969-11-10 22:28:00 +7636,1967-07-10 10:55:00 +7349,1967-04-06 17:58:00 +7970,1966-01-10 16:47:00 +294,1966-06-24 22:13:00 +935,1969-04-16 23:48:00 +3903,1966-01-02 01:51:00 +4077,1965-08-29 19:09:00 +18,1968-08-26 15:19:00 +1895,1966-03-11 15:23:00 +354,1968-05-29 23:20:00 +9346,1967-08-31 22:33:00 +2525,1968-04-07 01:49:00 +494,1965-04-08 09:17:00 +683,1966-01-07 02:30:00 +4799,1967-09-16 06:59:00 +5806,1969-02-03 10:15:00 +4669,1968-06-25 08:24:00 +462,1969-12-28 10:18:00 +474,1968-01-17 13:05:00 +9657,1967-04-20 13:41:00 +164,1968-09-02 17:16:00 +5259,1966-12-31 19:07:00 +3297,1966-07-24 20:09:00 +3665,1966-09-14 13:56:00 +772,1967-01-08 15:04:00 +4023,1966-11-04 09:58:00 +7906,1968-08-20 04:00:00 +6859,1968-12-04 04:58:00 +8894,1969-11-06 06:21:00 +4107,1966-09-17 10:20:00 +1932,1965-04-16 16:19:00 +4338,1965-05-01 01:31:00 +648,1965-05-23 21:00:00 +1180,1965-05-29 08:16:00 +1619,1969-08-04 11:06:00 +5750,1968-04-25 08:08:00 +2243,1966-09-27 14:33:00 +4724,1967-02-25 03:28:00 +9324,1968-02-11 11:05:00 +2214,1966-05-30 06:03:00 +8837,1967-09-06 04:32:00 +1255,1969-11-06 02:12:00 +4886,1965-04-20 15:24:00 +5880,1966-05-10 10:52:00 +894,1967-01-11 21:28:00 +446,1967-03-03 08:22:00 +1689,1967-03-20 00:35:00 +2528,1965-07-15 15:29:00 +1966,1969-08-28 06:01:00 +5172,1965-05-22 20:00:00 +4879,1966-12-16 07:15:00 +211,1966-05-11 20:02:00 +8021,1968-05-09 21:13:00 +7184,1967-08-01 02:55:00 +4605,1969-06-30 18:47:00 +7987,1965-08-23 03:39:00 +2994,1969-11-20 17:01:00 +1786,1966-12-28 01:08:00 +4243,1966-05-07 10:12:00 +343,1965-08-16 10:08:00 +5720,1967-11-28 17:32:00 +9608,1969-06-21 03:28:00 +5640,1966-11-13 10:52:00 +2970,1969-12-19 17:12:00 +1428,1967-02-26 09:18:00 +8870,1969-04-17 11:56:00 +2408,1966-02-20 00:52:00 +6419,1967-03-22 07:43:00 +194,1965-09-29 11:46:00 +9403,1968-10-15 10:02:00 +8766,1968-06-18 06:12:00 +3375,1969-06-17 21:02:00 +5340,1967-07-10 04:30:00 +1762,1969-09-14 05:55:00 +516,1965-02-23 09:40:00 +9566,1966-01-27 03:40:00 +6009,1968-04-15 15:42:00 +2509,1965-03-16 00:02:00 +4925,1967-09-12 13:19:00 +9741,1969-05-27 01:04:00 +7820,1968-03-03 03:15:00 +9829,1965-10-19 03:22:00 +7239,1967-03-13 09:39:00 +2384,1967-12-24 01:46:00 +5371,1965-05-07 15:57:00 +5153,1967-05-23 02:10:00 +4019,1965-10-15 21:14:00 +9718,1968-05-09 10:13:00 +5829,1966-03-29 04:09:00 +3633,1967-08-16 12:22:00 +6706,1967-02-27 16:15:00 +5294,1966-03-23 02:52:00 +8848,1965-04-21 01:59:00 +459,1965-06-19 12:09:00 +5983,1968-07-03 20:22:00 +1894,1967-01-09 14:38:00 +5538,1968-09-22 03:27:00 +8407,1965-10-24 00:53:00 +772,1965-02-27 11:05:00 +6205,1968-07-24 17:35:00 +8909,1966-10-08 22:55:00 +5176,1968-04-13 14:17:00 +8764,1967-11-07 16:31:00 +8870,1966-12-23 14:28:00 +4518,1965-01-13 10:31:00 +8576,1966-08-10 01:20:00 +7882,1968-10-16 13:41:00 +1973,1967-04-25 09:55:00 +2032,1966-05-23 12:56:00 +2958,1966-08-23 19:18:00 +9244,1969-12-10 19:52:00 +3599,1968-12-18 20:42:00 +4523,1968-10-20 07:20:00 +3453,1967-09-18 09:20:00 +5749,1967-10-28 08:47:00 +7516,1969-08-10 17:26:00 +2468,1969-01-11 14:03:00 +7670,1968-01-05 14:19:00 +873,1966-11-10 03:36:00 +8343,1965-11-25 21:58:00 +4115,1967-07-14 10:48:00 +4303,1967-06-23 11:24:00 +2030,1969-07-25 10:46:00 +8800,1965-08-12 15:15:00 +510,1966-03-27 17:05:00 +7838,1965-11-02 05:45:00 +9634,1968-04-20 02:08:00 +8876,1967-11-24 09:59:00 +4077,1968-02-18 05:44:00 +3893,1969-10-31 00:16:00 +3846,1969-05-17 14:44:00 +8331,1965-01-07 09:38:00 +1473,1966-11-23 13:31:00 +9199,1965-01-27 19:46:00 +4023,1969-06-04 16:36:00 +9087,1965-02-03 18:47:00 +6745,1968-04-05 21:28:00 +4206,1969-03-26 04:28:00 +9292,1968-05-29 09:49:00 +3013,1965-08-07 18:24:00 +5556,1965-10-04 15:43:00 +9853,1967-12-20 06:51:00 +4255,1967-04-28 16:55:00 +9174,1966-01-24 14:17:00 +3484,1966-10-06 03:35:00 +5870,1967-02-16 19:03:00 +2378,1968-07-08 08:55:00 +3948,1966-10-08 07:36:00 +6565,1968-04-19 15:27:00 +8940,1967-10-04 21:34:00 +9796,1966-07-06 09:47:00 +2815,1967-07-16 00:55:00 +9108,1967-01-13 22:04:00 +45,1967-04-23 02:26:00 +7530,1966-09-26 01:02:00 +7676,1969-10-04 22:07:00 +7827,1967-09-07 23:23:00 +9884,1966-04-01 06:08:00 +3865,1967-12-22 13:36:00 +9357,1969-08-29 03:48:00 +2570,1966-06-01 04:39:00 +4605,1965-12-17 20:22:00 +4932,1969-09-17 22:05:00 +2868,1967-11-08 16:34:00 +6439,1969-08-31 13:54:00 +8902,1967-10-15 16:23:00 +3531,1967-04-25 21:40:00 +9339,1967-01-07 15:10:00 +9832,1969-06-03 04:36:00 +1867,1966-02-21 02:42:00 +7867,1968-09-30 07:28:00 +422,1966-08-27 03:01:00 +1026,1966-03-15 14:22:00 +1192,1968-12-26 15:39:00 +2600,1969-11-11 05:25:00 +5888,1965-12-19 06:13:00 +9534,1967-03-16 16:22:00 +3415,1969-11-14 01:35:00 +2893,1966-07-29 05:56:00 +8033,1967-10-18 06:59:00 +4665,1968-10-14 14:30:00 +4770,1969-07-08 18:57:00 +7172,1966-10-13 14:16:00 +6633,1968-06-01 04:30:00 +3621,1969-01-10 21:51:00 +2930,1965-12-05 12:43:00 +4724,1965-08-21 04:36:00 +911,1966-04-18 02:39:00 +3829,1968-04-26 02:50:00 +5282,1967-11-15 21:01:00 +6254,1965-05-04 12:15:00 +9099,1969-08-04 10:06:00 +1060,1965-07-09 16:13:00 +4346,1969-07-10 02:12:00 +5582,1968-11-26 04:11:00 +9974,1965-07-12 12:10:00 +4504,1965-08-13 15:23:00 +5326,1969-01-20 21:05:00 +542,1969-08-14 19:57:00 +3581,1967-12-05 13:21:00 +3237,1968-05-25 19:08:00 +5117,1966-11-02 08:24:00 +4272,1967-05-09 03:42:00 +2521,1969-12-08 20:02:00 +2577,1966-06-13 23:28:00 +614,1968-11-08 07:02:00 +3602,1965-03-03 02:47:00 +459,1969-09-30 17:58:00 +5579,1966-12-10 04:54:00 +941,1968-08-23 23:09:00 +4671,1965-03-01 23:31:00 +6808,1967-08-19 13:33:00 +5277,1965-03-26 13:44:00 +6532,1966-02-01 18:10:00 +6963,1967-07-06 21:06:00 +8654,1969-06-08 06:05:00 +7919,1967-01-05 09:53:00 +4988,1965-05-18 03:09:00 +7603,1966-03-11 10:08:00 +4800,1966-11-10 11:41:00 +8732,1966-02-12 18:45:00 +3710,1967-07-14 21:21:00 +6004,1968-06-25 18:35:00 +4526,1968-08-30 01:03:00 +3300,1968-04-26 21:47:00 +42,1966-02-01 20:03:00 +1671,1968-10-28 19:20:00 +7236,1968-12-25 00:37:00 +8917,1967-03-02 04:26:00 +8003,1965-11-13 07:14:00 +6388,1969-09-07 16:47:00 +7489,1967-07-26 20:00:00 +7168,1965-11-24 23:47:00 +4190,1966-05-12 08:06:00 +1273,1967-05-15 13:46:00 +5013,1965-11-05 19:13:00 +9408,1967-07-24 11:34:00 +7563,1968-05-09 19:22:00 +7048,1966-03-23 04:07:00 +5573,1969-03-20 08:11:00 +6007,1969-02-24 21:11:00 +9297,1965-10-19 16:16:00 +7063,1966-04-26 17:15:00 +3630,1966-08-19 02:35:00 +4204,1967-03-09 14:26:00 +3467,1969-03-21 21:45:00 +4624,1965-08-11 18:27:00 +5034,1969-09-21 05:20:00 +6140,1969-09-30 11:06:00 +6503,1968-10-06 14:34:00 +4985,1969-10-21 06:50:00 +5480,1967-12-27 16:37:00 +2103,1967-05-01 21:34:00 +7169,1968-09-29 06:03:00 +3565,1966-05-12 11:30:00 +4327,1968-06-09 01:18:00 +7488,1966-06-16 19:35:00 +516,1966-12-08 07:53:00 +8491,1965-03-03 16:06:00 +9058,1966-09-26 00:55:00 +4378,1966-10-10 02:50:00 +8732,1969-05-04 03:17:00 +1235,1965-11-09 17:37:00 +166,1966-09-14 06:25:00 +8716,1966-05-22 22:20:00 +3994,1968-01-23 17:06:00 +5504,1969-06-28 20:18:00 +3446,1966-12-15 17:34:00 +8549,1968-02-12 16:50:00 +7612,1969-02-07 14:29:00 +3891,1968-11-22 14:51:00 +4670,1966-10-06 03:50:00 +6103,1965-04-06 07:20:00 +1705,1969-05-17 09:20:00 +7882,1968-11-06 07:40:00 +4613,1965-09-17 04:06:00 +234,1966-05-11 04:55:00 +1112,1967-09-22 18:25:00 +2737,1967-12-06 23:31:00 +3375,1969-03-19 10:43:00 +597,1967-10-09 13:18:00 +7700,1967-06-13 20:50:00 +6686,1966-02-26 04:06:00 +1334,1968-10-12 00:33:00 +8915,1966-09-17 07:00:00 +7969,1968-04-15 07:06:00 +2714,1968-11-29 11:27:00 +9202,1968-06-05 17:27:00 +8219,1969-05-07 06:35:00 +3689,1969-09-18 01:37:00 +1327,1967-02-14 06:18:00 +4622,1967-02-18 09:55:00 +6878,1965-11-27 05:06:00 +124,1965-09-30 18:47:00 +1737,1967-02-17 15:48:00 +7301,1968-05-26 05:48:00 +8329,1968-08-25 15:07:00 +1158,1967-01-27 11:40:00 +3456,1967-12-12 13:02:00 +2606,1968-03-17 04:07:00 +4754,1967-09-16 00:40:00 +9195,1967-06-21 10:42:00 +2175,1968-02-17 13:16:00 +7466,1965-01-22 04:27:00 +7509,1967-03-10 20:43:00 +6264,1966-08-03 21:52:00 +8520,1969-11-13 13:40:00 +529,1967-09-20 02:11:00 +3595,1968-09-02 13:50:00 +4055,1965-11-21 03:28:00 +917,1967-06-29 13:34:00 +6196,1966-06-17 20:01:00 +3188,1968-04-05 13:15:00 +3743,1969-05-09 20:50:00 +9907,1965-05-23 16:07:00 +5770,1966-04-27 11:53:00 +7255,1966-06-04 03:25:00 +7649,1965-01-09 15:06:00 +3148,1968-01-08 03:19:00 +1053,1968-01-17 05:31:00 +3045,1968-08-26 08:56:00 +6047,1966-01-09 09:41:00 +9060,1965-07-17 15:00:00 +3760,1969-03-19 18:46:00 +7405,1969-09-16 14:59:00 +1421,1969-09-24 09:56:00 +8619,1968-02-19 15:57:00 +9920,1968-01-03 17:31:00 +818,1968-08-18 18:49:00 +8116,1965-05-01 01:48:00 +6262,1969-01-03 03:23:00 +3118,1965-04-08 19:57:00 +1691,1966-11-22 13:54:00 +2987,1969-09-25 18:30:00 +2048,1967-05-04 14:11:00 +9201,1966-09-14 01:17:00 +1134,1967-09-18 21:35:00 +3723,1969-12-18 06:02:00 +3544,1968-12-21 14:33:00 +1983,1967-04-05 02:27:00 +5477,1967-05-24 18:19:00 +7683,1969-04-12 15:45:00 +4670,1969-01-09 20:14:00 +7105,1966-03-06 22:43:00 +1313,1967-08-05 11:40:00 +3639,1967-07-26 04:08:00 +6004,1969-08-27 01:21:00 +3873,1969-11-03 00:24:00 +2283,1968-10-20 04:53:00 +4719,1966-11-24 18:14:00 +870,1968-11-30 02:52:00 +989,1969-06-21 10:42:00 +5678,1968-03-30 10:08:00 +8554,1965-05-17 02:57:00 +8152,1966-10-27 14:52:00 +4776,1969-04-01 00:39:00 +8317,1965-08-14 00:30:00 +8046,1966-09-19 04:12:00 +7281,1967-06-05 00:41:00 +1458,1965-01-29 22:30:00 +6689,1969-08-13 08:29:00 +8826,1967-08-30 20:14:00 +3362,1966-08-23 08:57:00 +3243,1969-11-15 12:37:00 +9827,1969-09-27 08:19:00 +9818,1966-07-26 05:11:00 +5770,1965-03-23 11:37:00 +5598,1968-07-12 20:55:00 +8720,1969-03-26 19:53:00 +1753,1969-03-05 15:14:00 +4445,1969-04-08 06:44:00 +6140,1967-12-11 22:09:00 +209,1966-03-20 01:13:00 +8903,1967-12-10 07:46:00 +1281,1969-05-28 01:47:00 +4130,1967-12-01 05:41:00 +1415,1967-04-17 05:22:00 +886,1965-08-25 03:37:00 +1199,1967-11-03 10:04:00 +4137,1969-05-12 14:30:00 +2782,1968-11-15 20:22:00 +8045,1969-03-24 08:04:00 +2729,1968-06-04 01:08:00 +4054,1968-08-15 08:15:00 +9944,1968-01-06 01:52:00 +3927,1969-01-22 06:27:00 +4393,1965-02-27 16:45:00 +1414,1969-04-10 10:25:00 +4542,1968-07-26 06:46:00 +5993,1965-09-12 03:51:00 +4147,1969-06-25 20:16:00 +5647,1965-09-15 22:33:00 +4952,1967-02-08 03:30:00 +1955,1968-08-21 16:13:00 +6714,1969-01-20 16:01:00 +6584,1966-06-02 21:21:00 +7016,1966-04-21 08:28:00 +520,1969-04-16 17:06:00 +4414,1968-08-03 00:34:00 +7654,1969-12-03 23:34:00 +4842,1968-09-26 03:13:00 +6735,1965-01-21 00:37:00 +3211,1967-06-20 21:48:00 +864,1968-06-14 16:51:00 +2640,1965-11-25 22:06:00 +8013,1967-04-01 14:31:00 +9913,1966-12-24 04:35:00 +2368,1968-01-24 19:12:00 +1341,1965-06-08 13:38:00 +8743,1967-07-20 19:11:00 +7519,1966-07-16 23:28:00 +3648,1967-04-12 15:13:00 +224,1969-11-20 10:01:00 +6624,1966-06-18 04:24:00 +2042,1967-06-03 22:32:00 +7416,1969-07-05 05:48:00 +2847,1966-04-10 13:34:00 +707,1965-09-26 02:42:00 +6347,1967-02-09 22:19:00 +4309,1966-11-01 16:39:00 +5032,1966-08-06 07:10:00 +5524,1965-05-27 20:38:00 +2202,1968-03-31 15:25:00 +3568,1967-07-21 04:23:00 +3382,1968-03-08 00:09:00 +2248,1968-06-24 10:05:00 +193,1968-02-07 19:46:00 +7892,1965-02-13 16:28:00 +1793,1969-07-16 11:40:00 +4766,1966-06-04 11:28:00 +8320,1967-04-18 19:01:00 +9362,1967-01-15 01:55:00 +4032,1967-05-15 20:31:00 +5849,1965-04-06 22:54:00 +400,1965-04-04 11:36:00 +419,1965-06-13 06:02:00 +4527,1967-03-06 11:35:00 +2915,1969-08-13 17:13:00 +9775,1965-07-16 09:24:00 +1792,1969-11-28 18:10:00 +2437,1969-01-22 17:19:00 +553,1967-04-20 10:22:00 +4453,1965-10-18 18:24:00 +724,1969-10-04 16:32:00 +2027,1968-09-30 13:38:00 +6513,1968-10-11 01:40:00 +6854,1967-10-17 09:39:00 +4219,1965-04-20 19:25:00 +9516,1968-02-24 10:48:00 +1002,1966-02-07 02:51:00 +9017,1967-07-23 21:32:00 +5569,1967-04-24 09:44:00 +7743,1965-02-24 14:52:00 +1749,1965-08-18 16:57:00 +104,1966-05-16 04:18:00 +1008,1965-03-07 21:32:00 +1921,1969-08-28 22:04:00 +1667,1966-03-21 07:00:00 +5832,1968-06-29 09:00:00 +4178,1965-12-23 01:33:00 +3152,1968-05-06 05:17:00 +1682,1965-02-14 04:11:00 +8756,1968-10-04 13:15:00 +7700,1969-11-02 14:08:00 +3426,1965-01-21 18:52:00 +4085,1968-11-03 04:14:00 +3240,1966-12-12 00:47:00 +9982,1966-07-17 06:55:00 +3238,1965-12-21 09:31:00 +3486,1969-06-24 00:27:00 +1758,1967-03-11 20:44:00 +1568,1965-03-02 04:49:00 +3490,1968-04-19 00:26:00 +7823,1969-10-09 17:35:00 +153,1969-09-27 05:31:00 +79,1968-03-09 19:03:00 +5702,1965-12-29 21:47:00 +6695,1967-02-18 14:11:00 +1849,1965-04-08 18:53:00 +6366,1968-03-06 02:24:00 +8160,1966-12-11 17:39:00 +1934,1968-02-20 07:55:00 +5209,1969-07-05 12:40:00 +7540,1969-03-10 09:04:00 +5944,1966-07-29 04:24:00 +6411,1965-09-09 00:52:00 +3073,1967-06-05 20:18:00 +7439,1965-02-17 15:03:00 +357,1968-03-20 11:55:00 +2596,1967-05-12 06:49:00 +7997,1967-12-03 15:51:00 +5736,1967-03-26 22:47:00 +3870,1969-09-25 16:41:00 +3745,1967-11-18 21:38:00 +4840,1965-10-09 21:43:00 +9943,1966-06-12 08:54:00 +723,1969-10-19 05:14:00 +5677,1966-10-12 19:30:00 +7869,1968-01-20 04:02:00 +4379,1966-06-26 10:05:00 +3226,1969-06-21 15:04:00 +6766,1965-03-28 05:07:00 +7018,1969-11-09 12:25:00 +2915,1968-09-12 23:16:00 +4046,1968-11-23 16:27:00 +7251,1966-06-28 08:12:00 +4138,1965-01-12 01:35:00 +345,1969-11-01 23:32:00 +17,1968-08-05 20:25:00 +4520,1969-09-30 06:07:00 +4226,1969-04-25 07:42:00 +1887,1966-05-25 07:56:00 +9326,1966-04-15 14:13:00 +693,1966-09-26 02:00:00 +5275,1965-12-02 10:30:00 +2560,1967-02-08 03:26:00 +7317,1966-06-19 06:31:00 +2079,1966-01-16 04:58:00 +1582,1968-07-20 08:44:00 +5350,1969-03-02 11:45:00 +5443,1966-04-06 19:07:00 +1869,1966-09-16 02:26:00 +7623,1967-08-28 01:06:00 +7241,1966-12-15 18:59:00 +8620,1967-08-17 21:57:00 +831,1965-01-10 18:28:00 +2850,1966-12-05 08:09:00 +918,1969-11-17 15:39:00 +3382,1969-04-02 22:52:00 +6352,1966-09-24 14:02:00 +4158,1966-10-14 18:55:00 +3645,1967-07-06 06:20:00 +7202,1968-09-14 19:24:00 +7525,1969-12-05 14:02:00 +1268,1967-05-26 18:54:00 +253,1969-06-07 11:15:00 +6314,1966-01-16 15:48:00 +8647,1968-08-17 09:19:00 +543,1968-04-02 14:23:00 +2004,1968-12-06 23:08:00 +8924,1967-02-21 00:45:00 +4767,1967-05-07 13:59:00 +9749,1967-04-03 14:28:00 +9709,1965-08-30 14:45:00 +8756,1968-01-03 18:31:00 +4027,1969-05-11 22:11:00 +3995,1968-07-11 22:23:00 +4268,1965-01-17 13:16:00 +363,1966-03-27 09:10:00 +6491,1965-12-26 22:56:00 +9194,1965-11-29 11:48:00 +9793,1969-09-19 21:11:00 +6726,1967-01-14 15:12:00 +8155,1968-03-22 12:56:00 +936,1967-01-19 12:12:00 +3816,1969-10-29 06:57:00 +5493,1969-02-15 19:49:00 +5504,1967-08-31 11:38:00 +3389,1969-05-18 13:10:00 +8934,1968-04-06 19:38:00 +3897,1967-11-03 16:36:00 +2255,1966-06-30 18:35:00 +7503,1968-05-10 13:03:00 +2419,1968-01-19 23:56:00 +3114,1965-08-17 23:15:00 +699,1967-01-09 14:18:00 +1890,1967-05-31 23:47:00 +7242,1968-05-20 13:52:00 +3615,1969-01-08 01:43:00 +7963,1967-05-07 15:47:00 +2898,1965-02-26 12:57:00 +3855,1965-07-20 11:11:00 +4578,1968-06-21 19:44:00 +9542,1965-07-13 22:19:00 +4498,1967-01-26 13:01:00 +8997,1965-02-14 11:39:00 +605,1969-09-06 09:31:00 +8580,1965-07-11 06:14:00 +5398,1968-09-13 17:03:00 +6932,1968-12-22 11:24:00 +2582,1965-03-06 22:05:00 +4226,1969-01-18 06:40:00 +4204,1965-06-16 18:56:00 +3854,1968-08-10 18:37:00 +3923,1968-08-03 23:16:00 +4937,1965-05-06 10:58:00 +5632,1967-07-18 13:55:00 +9034,1968-11-27 00:23:00 +1284,1965-11-10 13:24:00 +1465,1965-11-27 13:14:00 +553,1966-06-28 12:43:00 +9025,1966-07-20 09:30:00 +8296,1967-11-07 07:32:00 +5008,1968-08-26 18:53:00 +8946,1965-12-28 15:09:00 +8325,1969-07-12 20:20:00 +9990,1965-11-16 21:02:00 +1430,1965-01-04 16:51:00 +3211,1966-10-31 08:09:00 +9308,1969-03-31 06:52:00 +8959,1966-07-11 11:16:00 +2414,1966-12-26 08:26:00 +8605,1966-07-19 23:23:00 +8384,1968-04-13 07:12:00 +5627,1965-03-13 09:42:00 +1929,1968-08-10 21:45:00 +1311,1967-02-28 20:23:00 +9631,1967-05-24 15:48:00 +794,1966-06-14 19:21:00 +7171,1968-09-23 03:55:00 +5,1967-10-09 06:22:00 +2855,1966-07-05 15:45:00 +1536,1969-07-16 09:53:00 +8511,1966-01-03 18:40:00 +2836,1969-06-19 22:09:00 +3874,1966-11-26 17:56:00 +6623,1969-06-20 06:15:00 +4009,1965-03-21 15:06:00 +4603,1967-10-31 10:04:00 +2353,1967-07-04 06:27:00 +9937,1969-03-20 09:46:00 +9305,1967-12-29 07:26:00 +3996,1965-01-30 20:45:00 +1544,1967-12-26 20:09:00 +8289,1968-09-29 13:05:00 +7501,1969-03-25 07:53:00 +3972,1965-09-18 16:00:00 +4704,1969-09-16 07:24:00 +9423,1965-11-10 07:56:00 +1782,1968-01-21 02:22:00 +7065,1965-06-12 17:18:00 +5065,1968-03-07 17:37:00 +957,1965-05-10 09:32:00 +7089,1967-02-22 08:53:00 +2615,1969-05-10 14:32:00 +1732,1968-07-10 20:39:00 +9060,1968-10-18 10:07:00 +5534,1969-10-16 17:51:00 +267,1967-06-24 07:55:00 +1375,1965-06-23 20:08:00 +9348,1966-05-27 18:02:00 +6268,1967-08-05 15:27:00 +7645,1968-03-25 22:29:00 +5431,1968-10-30 23:33:00 +7137,1969-05-26 07:10:00 +4614,1969-05-28 21:40:00 +8846,1969-05-03 15:29:00 +4182,1967-11-12 01:50:00 +2883,1965-02-25 22:44:00 +9374,1967-05-18 08:33:00 +3215,1965-02-14 05:52:00 +2330,1966-12-28 17:58:00 +3386,1967-12-01 16:54:00 +1221,1969-08-10 23:06:00 +1054,1969-10-09 19:43:00 +1648,1968-09-04 22:45:00 +2846,1965-05-02 09:14:00 +3396,1969-02-19 05:52:00 +515,1967-03-27 09:53:00 +3388,1969-06-22 04:44:00 +2459,1968-11-29 20:16:00 +2308,1965-03-13 05:01:00 +477,1968-04-01 13:21:00 +6205,1966-03-08 11:54:00 +5747,1965-08-24 06:36:00 +1003,1966-01-28 02:49:00 +49,1966-07-24 04:02:00 +6902,1967-10-08 02:03:00 +3804,1966-12-08 05:35:00 +3185,1966-02-20 22:52:00 +246,1966-08-28 20:57:00 +9528,1969-08-13 09:36:00 +9535,1967-12-06 21:00:00 +1696,1966-01-02 00:09:00 +3550,1967-07-02 23:16:00 +6550,1965-10-01 17:05:00 +5058,1968-12-07 23:01:00 +4041,1969-10-27 08:57:00 +7101,1968-10-11 08:02:00 +3803,1969-05-07 05:15:00 +9829,1967-01-12 16:44:00 +5578,1965-11-04 07:06:00 +1071,1967-01-15 20:54:00 +3670,1966-06-23 19:48:00 +9896,1968-08-19 21:51:00 +4646,1969-02-09 06:06:00 +7014,1967-12-22 19:15:00 +600,1969-06-11 05:50:00 +8723,1965-04-17 17:07:00 +3795,1966-07-31 14:05:00 +78,1966-08-05 15:32:00 +9183,1968-08-04 18:30:00 +9866,1968-04-25 20:52:00 +4523,1965-05-09 17:30:00 +3773,1968-12-02 14:14:00 +3897,1969-03-04 18:41:00 +6721,1968-05-21 00:06:00 +1733,1967-01-15 17:41:00 +4636,1968-04-10 10:28:00 +7574,1967-08-08 04:05:00 +8401,1967-10-27 05:51:00 +7792,1969-08-16 22:02:00 +6015,1966-01-16 18:45:00 +4858,1967-03-29 22:41:00 +6719,1968-09-18 18:22:00 +8320,1969-12-22 08:47:00 +7989,1969-05-15 10:31:00 +6950,1968-09-07 07:55:00 +3680,1967-04-01 13:18:00 +5782,1966-08-17 16:09:00 +7630,1965-07-29 19:58:00 +2783,1969-03-18 04:25:00 +1096,1968-05-07 18:06:00 +8029,1968-09-18 17:29:00 +7021,1966-11-11 08:54:00 +1875,1966-11-15 17:49:00 +2182,1966-05-18 12:52:00 +4255,1966-11-23 15:54:00 +1018,1967-05-08 17:49:00 +1443,1967-11-19 19:31:00 +1420,1966-08-09 07:25:00 +1317,1969-10-13 16:48:00 +2950,1968-07-21 06:02:00 +7716,1966-10-16 06:39:00 +1703,1966-11-03 01:22:00 +1998,1968-10-30 04:24:00 +8937,1968-09-30 13:50:00 +9850,1968-04-09 00:59:00 +2105,1966-06-15 03:13:00 +6809,1965-08-01 05:59:00 +4419,1967-08-12 05:53:00 +806,1965-05-23 22:46:00 +4407,1967-10-20 04:39:00 +5660,1967-07-14 01:25:00 +434,1965-12-16 01:11:00 +8050,1966-06-17 09:44:00 +5743,1965-10-19 14:49:00 +7013,1965-05-03 15:11:00 +5642,1969-11-15 20:05:00 +7109,1965-09-12 01:03:00 +8348,1966-08-05 17:19:00 +2212,1965-05-02 06:05:00 +127,1967-03-06 02:19:00 +2056,1966-11-28 13:00:00 +6411,1969-04-06 13:10:00 +6160,1969-09-02 13:23:00 +481,1968-04-20 13:02:00 +1385,1969-09-27 19:26:00 +6072,1966-06-17 09:04:00 +4948,1966-07-13 20:46:00 +443,1968-01-08 20:03:00 +6766,1965-06-20 16:55:00 +4981,1967-12-17 07:37:00 +3788,1966-10-26 15:31:00 +882,1968-11-28 04:39:00 +1749,1967-08-04 10:56:00 +7135,1965-11-13 04:37:00 +9632,1968-10-19 14:12:00 +7389,1966-02-04 08:47:00 +7343,1967-02-26 01:48:00 +2986,1966-09-15 19:25:00 +7938,1966-05-18 16:37:00 +448,1969-02-14 05:58:00 +5199,1966-02-12 09:50:00 +5607,1969-12-27 01:46:00 +8238,1965-08-24 14:55:00 +9665,1965-03-03 10:21:00 +9755,1967-08-02 17:40:00 +6946,1966-10-26 20:51:00 +1448,1966-08-13 09:46:00 +4753,1966-07-17 23:20:00 +205,1969-01-14 05:13:00 +8349,1965-06-01 07:45:00 +835,1965-10-24 16:13:00 +3651,1969-11-20 22:28:00 +8476,1966-04-30 06:43:00 +5863,1968-10-26 20:03:00 +1501,1967-04-18 05:57:00 +9981,1969-05-11 18:43:00 +773,1965-02-25 23:30:00 +1515,1967-09-27 09:31:00 +4112,1968-03-16 09:35:00 +9986,1967-11-29 12:20:00 +9892,1965-01-14 04:10:00 +4877,1965-04-23 23:35:00 +5741,1968-03-09 22:21:00 +3490,1969-05-20 21:26:00 +6105,1965-10-15 10:03:00 +376,1969-10-24 03:16:00 +2686,1968-02-23 01:03:00 +5202,1966-01-16 09:11:00 +5355,1967-03-08 06:01:00 +936,1968-06-27 22:14:00 +9561,1966-08-21 19:56:00 +9737,1965-01-26 20:58:00 +8648,1967-09-17 03:37:00 +3911,1968-02-01 17:11:00 +496,1967-10-28 19:08:00 +5897,1966-03-23 23:12:00 +9401,1966-02-08 16:43:00 +8266,1967-08-29 22:36:00 +2628,1967-02-07 02:04:00 +4270,1966-10-11 23:05:00 +387,1966-08-08 13:10:00 +9959,1965-12-24 07:56:00 +4376,1966-09-03 13:24:00 +1536,1967-09-07 18:35:00 +6382,1966-10-03 16:41:00 +2134,1966-12-12 20:18:00 +948,1965-04-11 20:13:00 +7189,1969-05-28 14:37:00 +4827,1965-09-17 04:42:00 +2342,1967-03-12 21:19:00 +2548,1969-05-30 19:11:00 +9222,1967-03-02 15:01:00 +5092,1968-04-21 09:49:00 +4717,1966-02-28 19:49:00 +7032,1968-05-14 10:33:00 +4066,1966-02-08 01:49:00 +8648,1967-08-30 05:12:00 +6702,1966-09-27 11:41:00 +4928,1967-01-19 05:27:00 +5391,1965-09-21 12:05:00 +9815,1966-10-25 05:15:00 +6789,1967-12-02 08:03:00 +2204,1968-01-14 03:03:00 +4955,1966-05-25 09:26:00 +7688,1966-08-10 23:48:00 +7372,1966-10-27 03:42:00 +9841,1965-07-22 20:27:00 +8545,1968-10-14 14:15:00 +2640,1965-03-05 03:38:00 +9357,1969-01-18 18:13:00 +9265,1966-08-03 00:24:00 +8895,1966-09-12 23:39:00 +2732,1966-02-23 22:48:00 +5187,1966-03-17 19:50:00 +5192,1965-08-06 23:59:00 +6949,1965-03-31 12:38:00 +4082,1969-07-02 23:59:00 +6730,1969-08-03 15:18:00 +2055,1965-07-17 10:08:00 +1066,1969-08-28 18:44:00 +8839,1966-07-19 09:13:00 +1621,1969-02-23 23:15:00 +9261,1968-11-10 01:31:00 +5415,1969-06-17 06:16:00 +306,1965-05-12 21:07:00 +5976,1965-09-17 20:54:00 +4801,1966-05-18 04:18:00 +206,1968-07-21 19:05:00 +2049,1969-11-24 22:34:00 +7177,1966-01-01 10:02:00 +9230,1968-12-30 19:50:00 +1827,1967-01-20 10:09:00 +4179,1967-08-07 16:05:00 +975,1965-11-18 06:11:00 +9952,1966-11-28 16:10:00 +2981,1965-08-31 13:37:00 +2715,1967-02-03 08:45:00 +3190,1969-06-24 00:53:00 +4005,1969-11-19 15:05:00 +5234,1967-12-15 19:50:00 +4827,1968-02-26 04:46:00 +6341,1965-11-10 23:24:00 +4496,1965-02-20 21:44:00 +5187,1967-06-02 06:15:00 +1532,1967-08-20 12:44:00 +758,1969-11-29 16:00:00 +4360,1966-03-06 00:03:00 +7031,1967-08-06 09:29:00 +7450,1965-11-23 16:40:00 +530,1966-08-21 11:01:00 +3057,1969-12-29 04:46:00 +4114,1967-01-07 15:30:00 +6259,1965-08-25 07:59:00 +8891,1966-10-28 15:39:00 +8049,1967-02-27 05:31:00 +1618,1966-04-28 17:59:00 +6620,1967-03-13 21:32:00 +1857,1966-05-31 22:34:00 +9789,1968-04-21 01:00:00 +3610,1969-01-26 22:09:00 +3570,1966-11-17 12:22:00 +839,1967-03-13 17:36:00 +5900,1969-12-20 21:54:00 +83,1968-03-06 19:52:00 +2136,1969-10-26 03:54:00 +1238,1967-02-21 05:54:00 +2879,1965-08-07 13:14:00 +8303,1968-01-14 05:34:00 +6374,1969-12-25 22:27:00 +3727,1967-10-23 02:50:00 +6890,1965-10-26 10:49:00 +2554,1968-10-15 01:15:00 +5108,1965-02-17 16:57:00 +3977,1968-09-10 22:28:00 +4843,1966-01-08 14:03:00 +6489,1968-03-29 19:28:00 +4693,1965-10-30 02:22:00 +3715,1969-01-26 05:52:00 +6300,1968-11-05 09:25:00 +5738,1969-04-04 19:56:00 +3493,1965-04-29 09:12:00 +7479,1968-06-03 16:09:00 +4779,1968-03-19 01:00:00 +2941,1969-10-10 21:13:00 +1253,1965-04-26 06:56:00 +8701,1969-03-29 01:22:00 +854,1965-05-22 06:10:00 +1892,1969-08-10 17:57:00 +1496,1967-12-05 00:35:00 +689,1967-12-05 12:19:00 +2208,1965-04-28 04:06:00 +409,1966-11-29 17:51:00 +7689,1969-12-25 18:32:00 +3275,1969-04-06 19:31:00 +8626,1969-01-24 22:08:00 +9938,1968-10-01 22:07:00 +6820,1968-04-09 04:13:00 +767,1965-03-01 00:36:00 +9235,1967-11-06 15:49:00 +9826,1969-04-17 10:59:00 +2539,1967-12-29 06:52:00 +3930,1965-11-09 02:05:00 +9287,1965-04-07 10:28:00 +8368,1967-11-21 16:32:00 +4399,1969-10-13 18:29:00 +706,1968-06-26 10:44:00 +1142,1969-01-15 02:56:00 +3614,1968-05-25 16:03:00 +3046,1965-06-15 03:04:00 +1284,1967-09-21 06:38:00 +2984,1968-03-04 20:55:00 +6164,1967-03-16 21:27:00 +9159,1968-01-22 15:34:00 +115,1966-05-05 14:25:00 +70,1965-05-25 03:10:00 +8999,1968-07-20 09:03:00 +8644,1967-06-18 13:09:00 +3742,1965-09-27 21:23:00 +4975,1965-11-09 07:36:00 +5423,1967-02-10 23:56:00 +2808,1965-08-02 20:09:00 +5895,1967-08-16 03:26:00 +5722,1967-06-15 02:47:00 +1254,1967-04-24 12:49:00 +2556,1969-08-31 19:36:00 +2140,1969-04-06 07:18:00 +143,1967-06-23 09:20:00 +6024,1967-10-13 18:39:00 +9603,1966-09-25 06:12:00 +49,1966-08-31 18:45:00 +343,1965-06-08 20:01:00 +9689,1965-11-28 17:46:00 +404,1969-10-01 05:04:00 +2488,1967-04-13 10:45:00 +9900,1969-02-19 21:52:00 +7087,1966-10-14 11:55:00 +433,1965-03-16 16:06:00 +3216,1968-10-27 15:01:00 +7328,1965-11-19 21:05:00 +9376,1965-01-20 05:04:00 +9359,1967-07-11 18:36:00 +976,1967-01-08 03:17:00 +8065,1969-04-26 20:46:00 +6459,1969-02-25 00:07:00 +5874,1968-09-29 06:53:00 +3752,1965-08-23 02:13:00 +570,1966-11-29 09:11:00 +1601,1966-01-23 03:37:00 +8853,1969-04-06 15:56:00 +7941,1967-04-04 09:39:00 +7670,1966-03-04 18:46:00 +852,1965-02-14 07:19:00 +2552,1967-01-03 21:48:00 +470,1969-05-03 20:56:00 +8112,1968-10-12 22:20:00 +73,1969-08-13 04:29:00 +9901,1966-03-31 04:19:00 +4259,1965-10-16 12:32:00 +8553,1965-11-25 16:09:00 +3239,1968-04-13 19:36:00 +9085,1969-04-14 03:59:00 +4899,1967-11-01 21:43:00 +6160,1965-08-31 21:10:00 +5805,1967-01-05 19:35:00 +5388,1968-01-01 21:00:00 +6037,1967-12-21 18:59:00 +7890,1966-12-22 06:51:00 +9843,1965-03-30 06:47:00 +8986,1967-03-23 11:30:00 +2608,1968-03-15 14:22:00 +9161,1969-04-11 02:47:00 +2688,1966-08-08 07:37:00 +4354,1967-04-30 19:36:00 +4200,1965-12-26 05:32:00 +2285,1967-10-08 23:15:00 +654,1965-10-14 07:53:00 +5809,1968-06-29 09:00:00 +4827,1968-08-22 17:24:00 +116,1967-10-25 18:37:00 +1905,1968-03-21 19:52:00 +797,1966-02-01 17:09:00 +5610,1967-05-14 12:51:00 +4815,1965-07-06 05:33:00 +4939,1967-09-12 15:56:00 +9263,1966-05-29 22:11:00 +1157,1965-05-31 22:23:00 +4654,1966-12-17 19:46:00 +2464,1967-04-29 21:35:00 +9488,1967-01-03 12:43:00 +7448,1968-08-15 00:21:00 +1946,1965-11-18 22:26:00 +6029,1965-03-20 07:36:00 +3528,1969-06-11 07:43:00 +4416,1966-10-26 05:42:00 +2842,1965-01-30 02:57:00 +2356,1967-02-05 19:35:00 +650,1969-02-22 10:42:00 +2985,1967-04-03 08:01:00 +5391,1965-05-25 18:15:00 +8260,1969-06-05 04:39:00 +5637,1969-07-25 07:40:00 +7150,1969-04-17 22:21:00 +4018,1967-03-31 22:38:00 +4886,1969-01-28 04:57:00 +2603,1968-03-29 12:41:00 +8914,1966-09-28 15:08:00 +6906,1968-09-17 22:35:00 +6239,1969-04-23 08:27:00 +3033,1967-05-04 17:06:00 +1942,1967-03-17 18:07:00 +7767,1969-02-07 18:19:00 +9045,1965-07-25 03:16:00 +8810,1966-03-28 19:51:00 +7656,1966-10-03 01:05:00 +1120,1967-03-25 09:23:00 +3782,1968-06-16 22:38:00 +2361,1965-12-19 21:54:00 +9475,1966-04-06 21:33:00 +4134,1965-03-24 17:37:00 +2693,1966-06-10 16:53:00 +7822,1969-05-13 18:54:00 +807,1967-09-28 17:55:00 +4942,1968-05-19 21:57:00 +1459,1965-04-11 11:08:00 +8020,1968-04-18 04:35:00 +8956,1965-03-11 02:45:00 +6270,1967-06-21 07:54:00 +1491,1968-01-31 16:49:00 +5344,1969-06-16 04:28:00 +6417,1965-10-08 15:59:00 +6250,1965-05-16 00:29:00 +1689,1969-05-10 10:21:00 +1784,1968-04-10 11:38:00 +9473,1968-11-09 02:18:00 +4837,1965-08-22 17:37:00 +5413,1967-08-25 02:26:00 +4304,1968-09-13 00:17:00 +1488,1968-04-26 17:12:00 +8534,1965-12-17 03:10:00 +281,1966-01-01 20:11:00 +1686,1965-09-26 13:52:00 +2236,1969-05-17 07:11:00 +4441,1969-03-05 03:16:00 +7938,1967-10-20 02:57:00 +5584,1968-11-16 09:57:00 +3706,1969-05-16 03:18:00 +2124,1969-12-24 09:40:00 +3293,1968-07-15 20:34:00 +2824,1965-09-19 13:04:00 +7055,1966-05-09 18:26:00 +3305,1967-07-30 12:33:00 +2363,1966-11-29 06:04:00 +107,1968-09-12 12:36:00 +2369,1968-01-02 10:17:00 +952,1967-12-26 13:49:00 +8375,1968-11-29 22:29:00 +9821,1966-07-21 11:45:00 +3021,1968-04-25 04:31:00 +4951,1966-03-10 10:08:00 +2456,1967-11-27 08:34:00 +8343,1968-09-23 12:41:00 +1625,1967-02-11 20:01:00 +7846,1965-08-28 22:20:00 +1272,1967-01-13 00:01:00 +5006,1965-02-08 21:32:00 +4183,1966-12-10 10:24:00 +1780,1968-06-03 08:06:00 +102,1965-10-24 23:45:00 +5421,1967-10-13 00:51:00 +817,1968-03-23 17:43:00 +1238,1966-07-23 21:30:00 +521,1969-04-27 14:27:00 +8349,1966-06-10 06:53:00 +3997,1965-06-09 02:35:00 +5851,1967-06-05 08:38:00 +7480,1966-12-13 14:40:00 +370,1965-03-13 13:19:00 +9397,1968-11-14 23:07:00 +6677,1966-09-29 10:08:00 +8924,1968-02-08 01:27:00 +6786,1965-09-11 17:19:00 +2370,1968-05-25 12:23:00 +4923,1969-05-23 10:43:00 +9105,1965-07-27 03:44:00 +2202,1967-04-09 02:48:00 +1792,1969-08-25 12:41:00 +2203,1967-08-13 23:04:00 +3372,1969-07-04 08:57:00 +3474,1968-12-27 18:33:00 +3817,1965-08-03 22:41:00 +5099,1968-04-23 18:56:00 +8010,1969-11-09 08:24:00 +6981,1967-05-18 07:37:00 +9142,1967-11-28 23:21:00 +5343,1965-09-28 23:28:00 +938,1968-12-19 12:30:00 +4143,1965-07-24 15:36:00 +7343,1969-07-21 12:37:00 +7697,1969-07-19 15:41:00 +8196,1968-02-11 21:10:00 +774,1968-11-20 09:04:00 +2233,1967-03-01 22:33:00 +7069,1966-03-03 07:31:00 +532,1969-12-24 04:32:00 +8590,1969-09-28 04:49:00 +8543,1965-11-11 01:49:00 +4638,1965-10-14 14:46:00 +3301,1967-05-29 12:49:00 +2205,1967-04-20 16:58:00 +5904,1969-05-19 14:42:00 +6347,1966-12-06 20:13:00 +3645,1969-04-28 02:25:00 +7131,1965-09-27 17:06:00 +5995,1967-07-03 14:23:00 +7809,1967-01-04 16:37:00 +7073,1969-04-05 04:23:00 +9520,1968-09-29 12:28:00 +5414,1966-08-22 16:45:00 +9283,1966-12-29 14:46:00 +9407,1966-03-18 06:55:00 +1728,1969-02-23 13:10:00 +1471,1967-01-02 01:16:00 +2802,1966-12-10 22:54:00 +852,1966-12-16 07:41:00 +9072,1965-12-17 01:58:00 +6037,1969-07-23 05:21:00 +1048,1966-11-18 21:18:00 +5971,1965-07-14 15:29:00 +1260,1969-08-01 01:29:00 +7986,1965-05-20 16:07:00 +6126,1966-06-28 07:13:00 +2039,1966-04-20 05:06:00 +8874,1965-04-11 16:22:00 +6007,1969-02-21 15:59:00 +2749,1967-01-07 09:19:00 +1776,1967-09-06 17:56:00 +6376,1965-03-31 12:41:00 +953,1969-06-14 09:30:00 +4956,1966-06-16 12:09:00 +3891,1965-03-25 15:51:00 +2666,1965-06-01 11:41:00 +5002,1969-03-28 22:34:00 +5584,1968-11-19 20:17:00 +7300,1965-07-10 13:16:00 +8320,1966-11-25 23:48:00 +6882,1968-07-27 13:36:00 +4566,1967-07-23 09:50:00 +52,1967-12-02 01:15:00 +4887,1968-06-17 00:53:00 +7824,1969-01-28 12:27:00 +2035,1966-05-11 08:07:00 +938,1968-09-08 15:24:00 +7031,1968-09-25 23:38:00 +9840,1969-01-24 07:00:00 +2320,1966-05-23 19:51:00 +9703,1967-08-22 18:26:00 +4680,1968-03-13 04:52:00 +743,1967-01-18 17:07:00 +7330,1969-02-12 12:11:00 +9738,1968-07-31 12:10:00 +8996,1969-08-04 19:52:00 +4362,1968-10-06 12:11:00 +3912,1966-12-13 02:03:00 +4836,1969-09-29 18:16:00 +4450,1965-11-18 17:07:00 +9226,1969-08-08 17:31:00 +9878,1969-05-24 15:03:00 +436,1967-08-03 15:44:00 +4891,1967-10-29 08:55:00 +9240,1968-10-17 03:34:00 +5343,1967-10-03 05:34:00 +4922,1968-08-25 18:27:00 +6464,1968-09-21 13:14:00 +1268,1966-06-23 22:43:00 +4604,1968-09-07 05:52:00 +1673,1965-04-28 02:50:00 +1839,1965-08-25 12:42:00 +5763,1967-08-03 02:46:00 +2000,1965-07-20 14:01:00 +3379,1966-10-01 20:14:00 +1058,1966-04-26 03:23:00 +1466,1967-03-05 12:59:00 +4802,1967-02-22 03:49:00 +1283,1965-09-23 07:11:00 +2726,1966-08-21 15:24:00 +5141,1966-07-29 01:31:00 +5433,1969-09-08 01:22:00 +6572,1966-06-22 16:06:00 +5321,1966-03-31 15:44:00 +8808,1966-01-13 14:06:00 +5147,1968-08-11 20:02:00 +5988,1966-03-31 06:11:00 +2158,1965-01-10 00:14:00 +1877,1966-03-10 12:39:00 +5108,1967-07-29 06:22:00 +8191,1966-05-06 10:14:00 +5810,1965-09-13 19:57:00 +2606,1966-12-30 04:57:00 +1837,1969-09-11 14:25:00 +3849,1968-12-22 23:21:00 +2853,1968-11-29 07:35:00 +2844,1967-10-19 06:19:00 +604,1969-07-08 08:18:00 +4400,1969-01-13 09:49:00 +6738,1968-06-07 00:28:00 +3085,1965-04-02 23:39:00 +5151,1965-08-09 13:15:00 +3070,1969-11-08 01:09:00 +6731,1967-08-01 08:21:00 +9036,1969-02-09 11:36:00 +4302,1966-11-06 14:52:00 +8468,1966-07-22 05:45:00 +2427,1966-09-17 12:10:00 +7528,1967-07-24 18:19:00 +890,1967-12-11 07:26:00 +6924,1969-07-01 12:05:00 +754,1969-05-21 12:10:00 +1102,1966-10-27 09:44:00 +2228,1969-12-01 10:14:00 +2345,1965-03-10 11:44:00 +1339,1966-07-30 08:39:00 +4747,1968-02-20 20:46:00 +533,1968-03-23 05:17:00 +6313,1965-06-23 18:23:00 +9327,1968-08-09 18:18:00 +4895,1965-11-04 05:47:00 +8487,1966-04-15 23:06:00 +1532,1968-01-07 19:24:00 +1339,1967-03-07 17:24:00 +3310,1966-07-22 13:48:00 +7501,1968-03-27 14:24:00 +8327,1967-07-20 01:34:00 +5183,1966-10-24 10:08:00 +3810,1968-07-24 19:26:00 +5187,1968-12-19 11:43:00 +845,1967-08-22 16:16:00 +4252,1966-01-04 04:08:00 +7707,1968-05-19 03:23:00 +1497,1967-04-05 19:28:00 +8826,1968-08-08 23:42:00 +2577,1965-01-22 09:39:00 +7454,1968-03-06 00:13:00 +6628,1966-05-02 14:20:00 +8730,1966-07-18 09:44:00 +5328,1969-02-09 11:21:00 +4572,1965-01-04 08:52:00 +534,1967-04-25 03:09:00 +8851,1965-02-28 22:48:00 +6309,1965-04-06 02:27:00 +6922,1969-06-26 18:11:00 +7622,1966-09-29 06:43:00 +2105,1966-08-27 14:09:00 +7647,1968-11-12 05:40:00 +4478,1965-12-02 03:57:00 +1493,1967-08-06 19:13:00 +2834,1968-02-12 21:55:00 +161,1969-09-12 07:20:00 +609,1965-04-16 05:54:00 +1410,1969-10-01 04:24:00 +4221,1969-10-25 05:28:00 +136,1969-06-10 04:34:00 +3566,1969-04-04 00:50:00 +3303,1966-08-13 01:05:00 +8933,1965-06-21 20:23:00 +3086,1967-03-19 08:20:00 +9695,1966-06-22 22:16:00 +1928,1968-12-22 15:40:00 +6270,1968-06-27 14:32:00 +5007,1968-10-23 12:21:00 +4878,1967-06-14 03:28:00 +4968,1969-01-13 00:10:00 +8811,1965-10-29 15:58:00 +63,1966-04-18 08:01:00 +7223,1969-02-08 21:15:00 +3346,1969-03-27 20:44:00 +1658,1966-04-21 21:43:00 +5594,1968-03-17 21:34:00 +3596,1965-01-05 03:53:00 +5272,1966-11-03 15:44:00 +577,1965-07-07 09:51:00 +7567,1968-05-07 12:35:00 +7298,1968-08-09 14:05:00 +303,1968-08-04 06:21:00 +79,1968-12-04 20:17:00 +3704,1969-05-23 22:58:00 +6780,1968-08-16 18:52:00 +3193,1967-03-21 22:18:00 +4647,1967-02-05 16:34:00 +3591,1966-02-18 14:22:00 +8082,1967-03-17 18:13:00 +4578,1967-03-26 06:02:00 +751,1969-03-04 01:59:00 +9597,1967-04-11 22:09:00 +6805,1966-09-01 21:54:00 +7338,1967-10-29 01:46:00 +8810,1968-11-02 02:41:00 +2056,1965-10-01 19:47:00 +2570,1968-09-18 02:51:00 +7254,1965-06-02 18:17:00 +3735,1969-01-09 23:28:00 +6815,1966-02-11 08:23:00 +5856,1966-11-15 13:03:00 +2409,1968-02-20 20:15:00 +6548,1967-08-04 00:10:00 +9738,1969-01-19 05:35:00 +5816,1967-12-14 11:15:00 +2259,1968-07-15 07:16:00 +2194,1967-06-29 00:25:00 +5107,1969-08-17 18:30:00 +5839,1969-11-13 14:33:00 +2109,1966-03-10 04:54:00 +7007,1966-08-03 14:26:00 +7466,1968-08-02 23:35:00 +2872,1969-08-25 12:58:00 +1391,1965-07-29 05:20:00 +8602,1968-12-11 00:44:00 +6530,1965-07-11 03:35:00 +3129,1968-10-20 20:24:00 +5134,1969-08-20 11:38:00 +8640,1965-08-23 03:23:00 +2076,1966-01-02 07:53:00 +9792,1967-11-05 12:14:00 +8018,1969-09-03 09:51:00 +2610,1965-06-04 08:22:00 +5943,1965-07-16 02:36:00 +9291,1965-04-07 15:04:00 +1877,1967-08-09 00:22:00 +9010,1968-07-22 14:51:00 +5615,1967-07-29 04:07:00 +3305,1969-02-04 00:43:00 +6940,1968-12-29 07:45:00 +2960,1968-02-20 17:01:00 +8555,1966-06-11 23:52:00 +560,1965-03-03 06:16:00 +2385,1968-07-22 06:21:00 +2452,1968-12-08 05:37:00 +1866,1968-03-16 14:00:00 +9795,1965-09-10 18:02:00 +5511,1968-07-20 07:25:00 +7701,1968-10-22 08:51:00 +351,1969-03-24 09:24:00 +7311,1965-05-15 04:11:00 +4459,1968-02-13 22:47:00 +7437,1966-10-01 19:16:00 +6184,1968-08-19 10:42:00 +4595,1965-10-14 06:21:00 +8861,1966-02-02 02:14:00 +7284,1966-08-24 14:41:00 +3865,1969-12-13 05:43:00 +1693,1965-05-30 20:10:00 +331,1969-03-05 02:29:00 +4928,1967-10-05 05:22:00 +5376,1966-10-07 09:52:00 +3511,1965-07-09 01:24:00 +1360,1966-07-03 11:07:00 +624,1967-12-03 09:12:00 +9997,1967-06-08 07:52:00 +8241,1966-04-02 04:46:00 +4245,1965-05-02 22:00:00 +7682,1967-02-28 02:14:00 +7771,1966-05-18 16:55:00 +2002,1965-12-10 00:52:00 +7409,1967-10-12 04:47:00 +607,1965-01-11 05:17:00 +5637,1966-02-15 19:42:00 +2624,1967-04-24 09:11:00 +2317,1969-03-08 18:15:00 +8429,1966-04-05 18:00:00 +4490,1968-04-12 01:08:00 +4058,1969-10-05 17:32:00 +1629,1968-04-08 16:15:00 +4321,1969-12-09 01:31:00 +3848,1966-05-05 02:44:00 +503,1967-07-18 05:23:00 +434,1968-11-19 16:09:00 +2528,1965-07-04 09:17:00 +9267,1969-02-23 10:25:00 +2543,1969-03-20 03:54:00 +6832,1966-02-15 07:14:00 +4772,1967-03-01 05:06:00 +8332,1967-07-12 04:26:00 +4216,1968-11-28 10:01:00 +506,1966-11-13 09:57:00 +2551,1967-04-05 09:13:00 +6819,1966-02-20 08:00:00 +8403,1966-12-19 22:54:00 +833,1969-10-19 14:01:00 +5894,1968-01-11 06:57:00 +6893,1968-05-19 15:29:00 +263,1965-04-08 20:48:00 +6901,1965-11-22 15:20:00 +9809,1965-02-21 14:09:00 +5279,1965-01-14 10:38:00 +527,1965-12-22 12:58:00 +2778,1967-12-29 00:13:00 +3814,1969-05-24 08:18:00 +8662,1968-09-24 04:24:00 +3522,1966-07-26 15:01:00 +7133,1967-12-27 19:47:00 +4996,1965-01-31 01:49:00 +9115,1967-12-17 08:16:00 +6113,1966-09-28 22:05:00 +7451,1969-09-19 23:45:00 +9403,1968-12-11 23:41:00 +4370,1968-08-27 03:23:00 +8658,1966-12-17 18:52:00 +3216,1965-04-09 01:44:00 +9768,1969-12-06 04:48:00 +8509,1969-06-29 21:08:00 +9215,1968-12-26 05:56:00 +319,1967-12-17 10:28:00 +3195,1966-05-25 05:17:00 +3322,1965-05-17 05:08:00 +1387,1968-07-15 18:16:00 +626,1967-02-06 10:34:00 +1202,1968-08-31 09:37:00 +1049,1969-04-21 19:40:00 +9793,1967-06-21 08:53:00 +2267,1965-04-26 20:02:00 +6248,1965-02-11 22:25:00 +4071,1969-01-21 09:15:00 +1140,1968-03-10 07:59:00 +1735,1967-08-29 13:15:00 +4917,1966-11-10 15:50:00 +285,1965-06-22 19:49:00 +7488,1969-08-24 06:49:00 +2282,1965-01-18 21:16:00 +8794,1966-05-09 21:19:00 +650,1969-06-23 16:49:00 +5048,1966-08-10 05:45:00 +9230,1969-07-09 06:14:00 +6685,1968-01-18 09:38:00 +5430,1965-06-14 18:25:00 +4882,1965-12-30 13:55:00 +1142,1968-06-16 15:10:00 +4008,1968-04-19 21:59:00 +5033,1966-05-03 20:14:00 +5161,1967-09-15 09:32:00 +1533,1967-07-20 04:30:00 +7816,1965-08-22 23:05:00 +3319,1966-09-22 19:19:00 +8043,1966-06-08 02:12:00 +8921,1966-06-28 19:29:00 +2016,1968-11-16 05:41:00 +1516,1965-05-21 15:25:00 +5016,1965-12-24 13:54:00 +8505,1968-10-02 06:48:00 +8516,1966-04-22 14:45:00 +8283,1967-12-20 18:34:00 +6154,1967-07-21 01:38:00 +6432,1966-07-17 10:02:00 +332,1965-09-07 11:55:00 +116,1966-09-21 17:43:00 +1622,1967-05-24 00:02:00 +5049,1968-01-09 05:55:00 +4949,1968-07-22 13:53:00 +497,1968-02-07 21:56:00 +6438,1967-07-02 08:31:00 +8938,1968-11-22 16:47:00 +3077,1969-03-15 15:26:00 +2807,1965-07-09 21:36:00 +5966,1967-06-01 07:21:00 +478,1965-10-11 12:53:00 +6636,1965-05-04 19:06:00 +4160,1965-12-15 12:05:00 +2671,1967-05-31 08:58:00 +7499,1966-09-24 05:43:00 +3034,1965-03-01 07:44:00 +3977,1969-03-28 22:32:00 +1325,1967-12-04 00:07:00 +6125,1966-02-28 17:33:00 +424,1969-06-10 09:53:00 +141,1969-05-20 11:32:00 +3809,1969-09-01 08:13:00 +9903,1965-11-14 00:33:00 +493,1969-02-17 09:37:00 +3426,1969-03-20 22:42:00 +6005,1966-08-30 20:51:00 +2997,1969-11-11 00:07:00 +8479,1967-08-21 19:28:00 +5696,1967-12-29 08:38:00 +9341,1969-07-10 07:08:00 +9062,1967-08-11 20:02:00 +239,1969-11-26 02:47:00 +5850,1965-10-20 14:05:00 +8440,1966-01-11 06:37:00 +5681,1968-04-02 03:39:00 +8020,1969-12-29 08:07:00 +3138,1967-06-16 18:49:00 +270,1965-09-23 15:12:00 +7323,1966-12-22 19:51:00 +8404,1968-06-12 10:27:00 +1371,1967-03-06 21:09:00 +7929,1968-07-08 18:37:00 +7586,1967-08-19 00:49:00 +2291,1969-02-16 23:47:00 +4286,1966-12-20 16:04:00 +2678,1969-11-05 21:31:00 +618,1969-02-07 03:11:00 +4095,1967-10-07 14:48:00 +9773,1966-09-28 05:33:00 +2138,1965-07-02 18:04:00 +2249,1965-07-03 23:27:00 +7578,1967-12-13 10:52:00 +3811,1968-06-03 07:55:00 +6509,1966-11-27 00:56:00 +8956,1968-02-03 22:00:00 +6218,1965-10-22 01:41:00 +8580,1967-01-12 03:22:00 +2370,1966-12-10 01:22:00 +7057,1966-10-12 06:18:00 +2681,1965-02-09 23:36:00 +9468,1969-07-22 04:56:00 +2511,1969-11-22 02:27:00 +644,1966-08-22 10:35:00 +9241,1967-08-07 14:47:00 +5093,1968-08-02 04:41:00 +8993,1967-05-25 16:44:00 +1002,1965-12-17 15:50:00 +7350,1969-08-28 11:20:00 +9234,1969-11-21 21:15:00 +9325,1966-08-21 01:50:00 +4318,1967-02-20 10:42:00 +624,1966-08-11 13:34:00 +6050,1967-05-12 06:44:00 +9968,1968-09-27 03:52:00 +4678,1967-09-18 04:03:00 +9858,1968-07-23 02:44:00 +858,1968-01-16 16:59:00 +9794,1968-12-30 18:29:00 +569,1967-05-18 07:40:00 +5145,1966-03-01 04:45:00 +7432,1968-08-03 04:10:00 +4841,1966-05-11 21:32:00 +4509,1966-03-09 10:11:00 +3989,1966-07-21 23:26:00 +29,1965-09-05 22:07:00 +3481,1965-07-20 02:54:00 +4553,1967-02-08 14:55:00 +2410,1966-09-09 19:51:00 +4056,1969-09-21 07:01:00 +6512,1968-01-19 10:48:00 +9952,1967-01-24 12:17:00 +4706,1968-12-22 00:32:00 +1944,1965-10-10 23:47:00 +2741,1969-10-27 23:50:00 +4139,1968-06-15 03:29:00 +860,1966-02-24 19:03:00 +5474,1965-11-30 21:35:00 +3398,1969-05-20 09:06:00 +6574,1969-10-18 10:46:00 +6893,1968-04-01 09:32:00 +7157,1966-10-28 07:37:00 +9893,1968-09-13 06:43:00 +7945,1968-05-22 04:05:00 +1887,1966-07-19 03:08:00 +5898,1965-02-22 03:23:00 +8461,1965-06-08 12:20:00 +4054,1968-07-23 07:34:00 +968,1967-06-20 13:49:00 +905,1968-02-20 10:56:00 +8674,1965-02-26 11:26:00 +9004,1965-12-15 21:05:00 +9642,1967-11-02 01:33:00 +1728,1966-03-15 05:03:00 +6677,1968-04-17 09:10:00 +8107,1969-03-31 14:09:00 +703,1965-01-23 03:01:00 +1566,1965-03-18 23:37:00 +1721,1967-04-02 09:12:00 +2633,1968-04-13 12:26:00 +9370,1968-08-30 05:01:00 +9784,1965-10-30 03:37:00 +1502,1968-06-15 15:06:00 +1798,1965-10-28 14:57:00 +6125,1965-06-22 05:56:00 +6126,1965-02-06 16:05:00 +5701,1965-09-20 08:45:00 +4784,1965-03-25 11:09:00 +6898,1966-08-14 03:39:00 +1595,1966-08-11 15:53:00 +8390,1968-03-26 00:26:00 +2883,1967-11-11 16:00:00 +1077,1969-11-04 03:37:00 +7367,1967-05-21 08:09:00 +9954,1965-02-08 11:31:00 +572,1965-01-10 06:12:00 +4863,1969-02-21 17:43:00 +4838,1967-10-14 10:26:00 +3064,1969-06-04 05:15:00 +3752,1966-10-06 06:39:00 +7162,1969-10-22 09:29:00 +6373,1968-08-14 02:40:00 +9965,1966-10-25 23:48:00 +2341,1968-04-14 19:16:00 +8549,1966-03-24 18:01:00 +5130,1965-06-12 18:42:00 +520,1968-10-13 14:10:00 +6049,1965-12-18 07:18:00 +2736,1966-09-14 12:45:00 +3055,1966-01-06 05:18:00 +8960,1965-08-30 04:07:00 +8434,1969-07-11 04:45:00 +6693,1968-08-17 11:01:00 +5654,1967-06-15 22:53:00 +7260,1966-02-03 22:48:00 +7457,1969-09-26 03:17:00 +7800,1967-12-03 10:00:00 +7435,1967-02-13 07:25:00 +9261,1969-07-16 19:21:00 +1903,1965-09-08 22:53:00 +8944,1969-01-17 20:04:00 +9913,1969-02-15 10:30:00 +8915,1967-10-11 18:18:00 +5004,1969-01-26 04:57:00 +200,1965-09-30 20:29:00 +5456,1967-01-09 23:18:00 +2078,1969-08-27 16:50:00 +1720,1966-01-02 08:45:00 +4391,1968-07-16 18:33:00 +1973,1968-05-01 01:57:00 +9230,1965-12-29 16:17:00 +3220,1967-03-10 22:44:00 +176,1965-07-06 09:10:00 +8986,1967-02-28 14:04:00 +9455,1969-05-11 04:29:00 +9597,1968-04-10 12:57:00 +970,1968-03-19 12:59:00 +625,1969-04-19 22:12:00 +8721,1967-08-23 05:48:00 +5579,1965-12-29 22:39:00 +6031,1969-01-26 18:21:00 +1443,1968-08-24 12:27:00 +1470,1966-04-01 10:57:00 +3257,1968-02-17 03:38:00 +2718,1968-06-05 12:59:00 +7655,1966-10-26 00:52:00 +3152,1966-08-02 04:35:00 +822,1969-08-16 00:06:00 +7110,1968-10-14 06:12:00 +2423,1967-08-25 07:15:00 +3411,1965-10-10 19:48:00 +3098,1966-01-14 02:20:00 +6975,1968-01-26 17:37:00 +7597,1968-07-28 15:28:00 +8352,1966-07-03 00:11:00 +9959,1966-08-23 14:02:00 +4200,1966-08-17 21:42:00 +9489,1968-01-19 15:15:00 +6038,1969-09-28 16:31:00 +7856,1966-11-10 16:30:00 +8652,1966-11-28 22:19:00 +694,1968-06-28 16:12:00 +312,1965-01-07 20:56:00 +5380,1967-08-02 00:21:00 +7693,1967-11-09 07:51:00 +8624,1967-01-13 11:08:00 +4121,1969-12-31 13:29:00 +21,1966-02-20 16:33:00 +5463,1969-02-07 06:16:00 +9850,1969-04-21 17:43:00 +4166,1968-12-02 01:59:00 +2917,1969-11-28 19:05:00 +5783,1968-10-25 15:20:00 +1701,1969-10-29 21:39:00 +2242,1968-08-09 11:11:00 +5463,1969-06-17 09:55:00 +1842,1966-12-10 18:27:00 +9573,1966-03-12 16:27:00 +5609,1967-11-11 00:09:00 +4273,1969-02-13 18:16:00 +4165,1966-11-03 02:43:00 +3752,1965-02-24 15:04:00 +1523,1968-11-22 02:30:00 +1124,1966-10-27 16:28:00 +7560,1966-04-12 18:09:00 +9224,1968-07-01 00:50:00 +6843,1967-02-03 03:35:00 +6065,1967-10-22 07:48:00 +2719,1966-08-31 14:05:00 +4000,1965-02-02 02:30:00 +231,1969-10-21 11:13:00 +5115,1966-07-31 17:06:00 +2991,1966-01-01 18:31:00 +9618,1965-09-09 22:49:00 +2627,1967-05-04 17:46:00 +9201,1967-05-16 18:08:00 +1985,1965-03-13 21:58:00 +6552,1968-08-19 04:04:00 +9371,1969-08-06 09:37:00 +7443,1966-01-18 17:26:00 +6085,1966-08-20 02:19:00 +8155,1966-11-07 14:08:00 +914,1966-01-25 10:02:00 +2066,1968-06-10 03:25:00 +2949,1968-12-21 11:31:00 +9602,1967-09-05 15:39:00 +5411,1966-10-17 19:20:00 +4476,1967-02-19 07:11:00 +4656,1966-03-08 19:39:00 +181,1965-09-14 11:53:00 +6865,1965-12-05 12:01:00 +7064,1969-12-16 02:11:00 +509,1969-09-02 14:21:00 +5505,1965-04-18 14:55:00 +2383,1967-11-07 13:58:00 +7351,1969-02-24 09:07:00 +1803,1968-10-06 21:33:00 +9400,1969-12-28 07:30:00 +7166,1967-06-08 02:31:00 +6398,1968-10-11 05:08:00 +3469,1967-04-09 16:23:00 +3400,1967-03-17 02:58:00 +8655,1966-05-24 17:22:00 +7315,1968-09-19 19:46:00 +5381,1966-07-29 09:13:00 +7064,1967-05-13 17:57:00 +6610,1966-03-13 14:03:00 +1603,1965-02-27 11:28:00 +986,1967-11-05 11:02:00 +3862,1965-07-29 10:02:00 +5045,1967-10-07 19:57:00 +5294,1965-02-06 02:06:00 +2044,1969-06-07 15:10:00 +4741,1968-08-10 04:09:00 +6968,1966-11-16 14:40:00 +9209,1969-12-20 16:30:00 +2329,1965-07-31 10:03:00 +6143,1967-08-29 22:10:00 +5223,1967-02-04 15:53:00 +5966,1969-07-12 13:06:00 +7762,1967-10-05 06:55:00 +1082,1968-02-28 11:58:00 +9181,1968-08-30 01:08:00 +8639,1969-03-18 14:12:00 +1884,1966-03-13 08:25:00 +5372,1965-08-13 12:12:00 +427,1966-01-23 21:28:00 +9600,1966-02-10 23:08:00 +582,1965-05-29 08:24:00 +2814,1966-02-28 17:29:00 +4056,1968-10-10 15:10:00 +9340,1967-07-29 05:11:00 +1551,1968-10-25 22:30:00 +4148,1966-10-13 07:19:00 +9328,1965-11-01 06:57:00 +48,1967-07-28 15:14:00 +7524,1965-10-07 18:52:00 +1105,1966-09-21 20:48:00 +7630,1969-10-24 05:45:00 +2858,1967-11-29 16:35:00 +266,1968-10-28 00:49:00 +8287,1966-02-12 04:46:00 +3858,1967-03-02 22:41:00 +5010,1965-04-18 04:44:00 +8618,1967-04-30 04:04:00 +8643,1966-02-25 06:15:00 +3215,1968-02-10 03:45:00 +40,1966-02-08 14:42:00 +4861,1966-09-02 23:17:00 +1072,1966-08-21 23:28:00 +3529,1965-04-28 17:04:00 +4556,1966-08-25 11:01:00 +1891,1969-02-11 01:53:00 +6351,1969-03-10 05:39:00 +9801,1966-06-11 18:28:00 +5896,1967-05-29 12:59:00 +4147,1967-09-04 08:02:00 +397,1966-01-11 14:11:00 +8967,1965-03-23 05:26:00 +6307,1968-11-09 12:36:00 +1321,1969-01-24 06:14:00 +9602,1968-03-13 18:10:00 +3122,1969-06-08 14:39:00 +2,1969-09-13 23:18:00 +7772,1969-08-05 11:43:00 +2754,1969-06-02 12:15:00 +962,1968-07-13 18:36:00 +2415,1967-02-01 23:24:00 +9857,1968-06-26 17:25:00 +6909,1967-12-13 19:52:00 +2078,1968-10-07 19:15:00 +3661,1968-12-20 23:19:00 +6430,1967-11-12 20:59:00 +1387,1968-08-17 15:40:00 +8280,1969-08-20 06:46:00 +8505,1969-02-13 13:41:00 +3969,1967-01-29 19:59:00 +3100,1967-04-08 21:20:00 +390,1966-02-08 06:37:00 +2898,1968-11-29 10:44:00 +7657,1966-02-28 00:06:00 +3410,1967-05-16 15:11:00 +8703,1966-10-26 00:14:00 +5027,1969-09-21 19:43:00 +8212,1969-06-04 02:45:00 +2374,1965-10-24 06:51:00 +4931,1967-03-26 14:49:00 +7485,1966-10-01 14:00:00 +8681,1969-12-25 07:29:00 +2278,1969-05-02 03:25:00 +6364,1967-10-26 07:37:00 +530,1968-07-22 08:11:00 +4070,1969-12-26 11:53:00 +4526,1967-10-30 11:40:00 +6201,1969-06-17 15:51:00 +6871,1968-01-02 05:12:00 +3888,1969-11-12 13:49:00 +6108,1967-12-07 17:46:00 +3906,1966-05-28 07:42:00 +7541,1967-03-12 08:19:00 +2233,1965-09-05 13:42:00 +4355,1968-04-04 14:07:00 +6251,1967-08-17 21:45:00 +834,1969-03-23 22:15:00 +7969,1968-05-28 02:45:00 +8775,1965-06-15 20:32:00 +7863,1965-10-02 00:15:00 +4145,1969-12-22 06:00:00 +8202,1965-11-15 19:50:00 +3423,1968-01-10 14:39:00 +8720,1966-01-14 23:58:00 +5544,1966-10-28 22:19:00 +601,1967-12-03 17:47:00 +3363,1969-12-31 17:52:00 +2622,1965-02-12 13:48:00 +1857,1966-11-10 19:11:00 +680,1968-11-29 15:47:00 +2995,1968-01-12 02:52:00 +4838,1967-06-06 03:39:00 +263,1969-09-22 08:33:00 +3484,1967-05-23 22:48:00 +2801,1967-04-12 11:55:00 +6623,1966-10-17 03:18:00 +9847,1967-02-09 13:55:00 +8224,1966-01-17 13:16:00 +5196,1968-10-02 05:34:00 +2087,1968-12-19 15:48:00 +5196,1965-03-27 15:39:00 +4078,1966-05-12 08:21:00 +9753,1967-02-11 09:16:00 +5881,1965-12-19 08:38:00 +7674,1967-02-22 06:25:00 +7241,1969-12-13 23:02:00 +2816,1966-06-13 12:04:00 +3250,1968-07-15 19:55:00 +5579,1965-04-17 09:33:00 +2834,1969-03-31 15:48:00 +8321,1966-05-25 21:59:00 +1501,1965-11-29 00:53:00 +8227,1967-09-28 07:22:00 +6113,1965-06-04 19:00:00 +6496,1966-09-20 03:15:00 +8501,1966-12-28 16:11:00 +8828,1969-05-06 09:48:00 +6359,1966-09-26 10:16:00 +5573,1968-04-06 16:00:00 +4216,1965-01-12 02:59:00 +8435,1968-05-03 19:43:00 +6934,1965-05-24 18:02:00 +6785,1966-04-21 18:59:00 +4827,1966-07-11 21:10:00 +8276,1966-02-05 17:36:00 +9785,1965-02-15 17:48:00 +3709,1966-03-16 02:38:00 +1979,1965-04-17 06:30:00 +6862,1967-01-19 09:49:00 +1613,1969-11-25 11:00:00 +8498,1968-11-19 00:22:00 +7466,1965-03-11 21:45:00 +5820,1968-09-23 07:36:00 +176,1969-07-23 01:02:00 +3102,1966-08-07 15:52:00 +8032,1966-09-25 04:26:00 +1371,1969-07-10 14:30:00 +3541,1967-05-11 20:49:00 +8480,1966-12-29 05:29:00 +1202,1967-04-28 11:20:00 +7114,1966-07-03 06:01:00 +9966,1967-08-09 12:12:00 +7708,1969-07-16 02:18:00 +6959,1969-09-25 20:42:00 +5379,1969-06-13 18:16:00 +2631,1965-04-13 12:05:00 +1224,1968-09-26 05:47:00 +5247,1966-07-25 19:26:00 +1487,1967-07-18 19:28:00 +7934,1966-08-20 17:44:00 +7836,1966-11-28 05:33:00 +4738,1967-11-11 20:47:00 +7717,1965-10-27 08:08:00 +3562,1967-09-29 08:26:00 +3964,1967-03-25 18:52:00 +1958,1967-04-02 20:56:00 +6365,1965-01-15 05:45:00 +7529,1968-06-18 15:17:00 +1116,1969-02-19 13:39:00 +6194,1965-04-12 20:40:00 +9419,1969-09-11 16:14:00 +2291,1969-01-27 22:22:00 +1716,1969-02-16 17:37:00 +4932,1969-08-31 21:27:00 +9282,1965-08-01 08:01:00 +8098,1965-04-09 16:00:00 +8164,1968-02-03 19:29:00 +7484,1966-11-07 09:11:00 +9846,1966-12-05 02:39:00 +4280,1967-04-12 13:43:00 +7100,1966-03-16 21:25:00 +4459,1969-09-11 14:30:00 +9073,1969-10-29 09:24:00 +1467,1967-07-26 20:46:00 +1233,1969-12-13 20:34:00 +1352,1966-01-23 20:33:00 +656,1968-01-23 07:20:00 +1174,1969-12-01 09:08:00 +2468,1967-11-23 18:44:00 +7192,1967-03-03 03:34:00 +3719,1965-02-20 00:04:00 +828,1965-06-29 02:24:00 +3219,1968-06-23 02:33:00 +8828,1968-08-16 15:40:00 +6184,1965-03-07 18:21:00 +9299,1969-11-05 08:52:00 +9517,1968-09-19 17:25:00 +9769,1966-06-23 02:13:00 +2526,1965-10-09 16:09:00 +238,1966-08-18 08:00:00 +5827,1969-03-19 10:38:00 +378,1966-01-23 18:57:00 +5276,1968-01-31 22:38:00 +2815,1969-12-17 23:03:00 +2945,1967-01-25 12:25:00 +383,1965-01-10 20:54:00 +6890,1969-03-27 05:52:00 +4538,1965-01-24 02:53:00 +1085,1966-12-26 05:50:00 +6811,1969-08-16 02:45:00 +5813,1967-04-24 21:20:00 +5456,1968-05-07 13:13:00 +3687,1966-01-05 00:18:00 +6933,1968-07-07 22:41:00 +8416,1968-12-28 10:32:00 +4741,1966-10-18 01:24:00 +6906,1969-04-30 18:09:00 +3750,1969-09-22 06:04:00 +1581,1965-07-11 09:36:00 +719,1968-04-27 19:34:00 +9565,1968-03-26 11:04:00 +1657,1969-11-26 06:57:00 +3663,1968-01-22 21:04:00 +2011,1969-04-30 15:43:00 +8433,1965-03-30 11:34:00 +3259,1968-06-07 06:07:00 +8918,1966-08-30 07:39:00 +1195,1966-06-25 09:23:00 +2774,1966-11-29 22:26:00 +9947,1966-01-29 16:38:00 +9184,1969-05-18 15:20:00 +5735,1966-10-11 03:02:00 +1943,1965-12-07 23:43:00 +5528,1966-04-20 01:29:00 +649,1967-01-14 19:34:00 +9900,1967-09-12 08:36:00 +221,1965-03-20 08:56:00 +8359,1968-03-15 00:51:00 +5809,1969-06-24 17:20:00 +8043,1965-01-12 03:11:00 +6205,1968-01-12 15:28:00 +6208,1968-08-31 07:20:00 +5059,1965-11-15 05:40:00 +6315,1967-04-24 21:21:00 +6003,1967-11-16 12:18:00 +7531,1965-07-12 09:11:00 +9384,1965-10-18 23:53:00 +2673,1966-03-05 07:46:00 +6728,1968-06-16 16:08:00 +1617,1968-09-25 05:24:00 +9783,1969-02-10 00:02:00 +5967,1967-03-25 15:18:00 +7804,1968-05-05 16:32:00 +3704,1969-12-07 09:27:00 +7534,1969-01-19 05:29:00 +1034,1967-09-25 07:23:00 +4875,1969-11-02 03:08:00 +4627,1966-03-09 20:14:00 +7981,1968-10-21 17:22:00 +318,1969-02-09 21:35:00 +9806,1967-02-25 22:33:00 +6380,1967-06-24 15:10:00 +1141,1966-07-03 17:44:00 +3549,1967-04-03 17:05:00 +1471,1966-01-10 14:21:00 +6058,1969-04-03 09:16:00 +3487,1967-01-08 21:34:00 +810,1968-03-05 14:02:00 +6181,1966-06-26 04:24:00 +4304,1966-08-22 15:27:00 +7722,1966-02-24 00:39:00 +5247,1967-04-08 08:09:00 +3766,1966-11-13 18:01:00 +3254,1965-09-13 21:44:00 +251,1968-08-08 01:54:00 +430,1966-09-03 12:01:00 +9916,1967-09-19 12:37:00 +1841,1965-11-26 13:04:00 +8911,1969-09-04 13:34:00 +7563,1967-09-28 04:48:00 +6201,1966-05-03 14:54:00 +9055,1965-06-16 04:46:00 +8570,1966-10-03 01:32:00 +4222,1968-01-13 07:48:00 +414,1969-09-04 03:14:00 +473,1967-03-10 20:04:00 +3353,1965-03-10 19:52:00 +8059,1968-06-30 21:06:00 +2816,1967-04-28 18:20:00 +1591,1966-09-23 15:19:00 +652,1968-06-11 01:50:00 +2641,1969-04-18 07:10:00 +7369,1967-02-05 10:11:00 +1490,1965-12-10 00:06:00 +5362,1966-11-11 21:37:00 +5498,1966-03-28 06:34:00 +9158,1966-08-06 23:02:00 +3394,1968-05-28 18:16:00 +4901,1966-12-23 15:08:00 +9227,1968-01-02 22:41:00 +747,1967-10-18 07:45:00 +1304,1969-05-20 11:24:00 +6300,1965-02-17 03:29:00 +6918,1969-03-05 22:42:00 +6320,1965-08-13 20:32:00 +5921,1969-06-16 06:26:00 +7471,1965-02-16 11:17:00 +156,1969-09-02 08:13:00 +6616,1968-11-18 04:18:00 +1261,1966-10-20 05:37:00 +4287,1967-12-25 15:14:00 +9700,1965-09-24 07:52:00 +2611,1969-12-29 22:27:00 +7146,1966-04-20 00:05:00 +8270,1969-07-21 12:31:00 +2335,1965-08-12 01:42:00 +9033,1965-11-03 02:31:00 +2763,1969-04-09 02:06:00 +8496,1968-04-30 06:24:00 +6882,1968-05-25 17:47:00 +4932,1969-04-24 02:54:00 +885,1969-07-23 04:22:00 +568,1966-03-29 23:42:00 +3097,1965-05-21 14:12:00 +7696,1969-04-13 06:59:00 +5560,1967-04-02 09:03:00 +7157,1966-11-26 00:08:00 +7204,1965-11-28 20:59:00 +7646,1969-11-16 02:47:00 +4862,1968-03-31 02:36:00 +7381,1968-03-01 08:50:00 +485,1967-09-11 03:45:00 +9072,1966-04-06 22:01:00 +8150,1965-08-27 12:08:00 +7279,1969-03-20 20:19:00 +5940,1965-06-20 07:15:00 +3904,1968-08-30 09:44:00 +4519,1965-10-22 01:10:00 +335,1965-01-25 15:48:00 +5253,1965-02-01 11:10:00 +4235,1966-10-15 20:22:00 +8550,1966-08-07 19:53:00 +6588,1965-02-15 18:53:00 +5554,1968-03-11 03:02:00 +2713,1968-03-15 18:03:00 +4884,1968-10-18 11:51:00 +6521,1968-06-10 23:59:00 +8731,1968-05-17 03:28:00 +1492,1966-08-24 01:12:00 +2610,1966-02-26 02:39:00 +3645,1969-01-07 14:26:00 +3723,1968-03-09 20:46:00 +7746,1965-06-12 06:48:00 +9306,1969-04-04 08:39:00 +4891,1967-04-08 05:02:00 +1779,1968-02-14 19:21:00 +4868,1969-04-15 03:24:00 +2965,1967-01-17 09:05:00 +12,1968-01-26 22:35:00 +6485,1967-02-24 01:40:00 +1423,1969-01-26 04:35:00 +4707,1965-09-17 20:11:00 +8747,1966-08-24 04:00:00 +3773,1969-09-02 10:30:00 +4646,1967-08-12 11:32:00 +4519,1966-07-09 18:44:00 +5291,1966-10-10 07:12:00 +7467,1969-05-30 22:39:00 +6562,1965-08-04 11:38:00 +1537,1967-12-01 13:58:00 +6987,1967-11-30 02:27:00 +9015,1967-09-10 07:34:00 +8841,1967-07-11 04:08:00 +1134,1967-12-14 07:31:00 +6104,1968-07-14 10:44:00 +637,1969-07-02 03:00:00 +849,1966-04-22 04:27:00 +5412,1969-07-06 11:02:00 +5912,1965-07-14 23:02:00 +4388,1968-11-22 15:38:00 +3927,1965-10-01 03:13:00 +4524,1965-04-30 05:25:00 +8906,1965-03-29 17:34:00 +8580,1965-09-28 17:09:00 +1562,1967-07-14 05:53:00 +9788,1965-07-17 01:54:00 +5673,1967-06-09 00:19:00 +7525,1969-06-02 15:12:00 +4482,1965-10-19 18:46:00 +2362,1968-12-14 15:27:00 +9851,1968-11-19 01:58:00 +5425,1968-11-05 06:54:00 +6967,1965-08-12 07:35:00 +2607,1969-10-15 06:23:00 +5294,1966-12-02 22:57:00 +9308,1965-12-12 06:16:00 +5731,1969-05-02 03:29:00 +1140,1965-02-21 23:55:00 +5644,1969-06-19 19:00:00 +7500,1968-10-06 09:33:00 +5865,1965-11-17 09:41:00 +3510,1968-03-18 10:32:00 +7853,1967-11-23 19:48:00 +2691,1966-01-13 15:42:00 +767,1969-06-18 01:20:00 +7057,1969-02-02 04:35:00 +2132,1966-11-15 06:17:00 +1425,1965-03-20 23:09:00 +1562,1965-03-01 18:44:00 +4388,1966-01-27 00:10:00 +6989,1969-08-03 21:05:00 +3923,1969-04-12 14:00:00 +2826,1966-01-12 01:06:00 +6065,1969-10-17 04:33:00 +2680,1965-12-10 20:07:00 +2766,1968-10-31 04:44:00 +3164,1967-06-27 04:08:00 +1401,1968-01-10 03:54:00 +9394,1965-08-21 03:40:00 +7813,1967-05-04 14:36:00 +309,1968-04-11 21:06:00 +3835,1967-04-17 00:11:00 +7407,1965-09-12 23:27:00 +2471,1969-07-24 12:03:00 +7415,1969-07-29 17:26:00 +140,1966-03-05 12:36:00 +3924,1967-12-01 07:25:00 +8068,1969-12-01 00:57:00 +8719,1965-05-12 05:50:00 +571,1967-08-21 21:28:00 +5732,1968-05-04 13:51:00 +3882,1968-05-21 07:36:00 +6364,1968-01-11 03:26:00 +2419,1968-10-28 13:13:00 +3880,1965-11-28 00:19:00 +6809,1966-11-06 09:17:00 +6663,1967-05-26 10:12:00 +3589,1966-12-18 21:10:00 +9147,1966-03-16 06:11:00 +8806,1965-12-26 15:41:00 +7757,1968-05-19 23:47:00 +3478,1967-11-02 20:41:00 +220,1968-10-03 09:57:00 +5196,1966-05-30 01:03:00 +7804,1965-08-09 20:08:00 +3488,1966-08-14 15:15:00 +5541,1968-04-20 20:34:00 +5480,1967-09-21 19:48:00 +9980,1965-01-06 08:11:00 +2304,1968-11-12 02:19:00 +9918,1968-05-26 05:02:00 +6706,1966-06-05 01:04:00 +1112,1965-03-22 07:38:00 +9621,1967-06-05 07:57:00 +7073,1966-04-22 07:17:00 +4988,1966-03-27 09:43:00 +7206,1969-05-19 14:20:00 +5817,1966-04-30 05:52:00 +4499,1967-02-15 16:21:00 +9879,1966-10-12 18:33:00 +3043,1969-08-21 03:09:00 +135,1969-09-20 21:55:00 +9122,1968-04-08 17:54:00 +9237,1968-11-22 13:34:00 +7957,1965-01-26 11:06:00 +4066,1968-06-03 18:59:00 +1977,1966-07-04 07:23:00 +7400,1967-09-14 01:33:00 +2046,1969-06-10 20:09:00 +322,1969-01-08 03:57:00 +2167,1967-03-09 23:50:00 +1469,1967-02-09 11:32:00 +3947,1968-07-10 17:16:00 +9806,1968-03-23 17:18:00 +6684,1965-06-17 04:09:00 +8677,1965-09-29 16:40:00 +2214,1966-12-03 23:55:00 +659,1966-06-04 08:32:00 +322,1965-10-02 19:26:00 +7572,1967-04-16 17:22:00 +9721,1969-04-14 02:53:00 +2918,1969-07-31 13:11:00 +205,1969-10-11 18:13:00 +5143,1965-03-10 18:41:00 +8075,1967-12-14 10:51:00 +5031,1966-09-19 20:17:00 +1061,1965-12-29 14:11:00 +4174,1969-01-29 02:25:00 +818,1965-09-15 13:04:00 +9916,1965-07-01 07:17:00 +3727,1966-06-21 20:32:00 +9417,1966-10-29 13:27:00 +9755,1968-03-27 08:18:00 +9052,1967-06-20 16:49:00 +1476,1966-06-19 13:52:00 +7816,1968-10-15 03:01:00 +9885,1967-12-15 15:51:00 +6776,1967-01-10 03:04:00 +5761,1968-08-02 16:32:00 +4064,1967-09-13 05:00:00 +6966,1966-03-07 22:34:00 +7995,1969-07-31 19:17:00 +6120,1968-06-28 04:21:00 +443,1968-05-17 20:29:00 +4105,1965-02-25 19:40:00 +5056,1965-12-25 18:02:00 +8140,1966-10-21 03:25:00 +720,1968-06-11 20:06:00 +9896,1966-06-18 12:37:00 +3013,1965-07-23 15:22:00 +4458,1965-10-12 21:30:00 +1694,1969-07-20 06:46:00 +9601,1968-10-01 13:57:00 +1958,1965-07-04 09:05:00 +8120,1966-02-14 21:15:00 +9495,1966-06-17 02:53:00 +2101,1968-05-02 14:49:00 +3085,1969-05-30 18:37:00 +2292,1968-01-18 22:15:00 +7261,1969-09-04 18:24:00 +496,1967-03-23 01:23:00 +6789,1965-11-17 03:26:00 +7485,1965-04-26 03:50:00 +7265,1966-02-15 13:37:00 +5662,1968-06-26 16:01:00 +7338,1965-07-13 23:43:00 +5067,1969-03-04 11:06:00 +4185,1968-03-06 00:57:00 +6402,1969-06-22 16:48:00 +4622,1968-08-16 22:59:00 +6865,1966-07-22 01:51:00 +2463,1965-08-04 03:34:00 +6799,1967-11-07 22:00:00 +2600,1967-02-04 18:53:00 +7285,1966-11-06 09:41:00 +5483,1965-07-04 07:53:00 +3383,1965-12-03 16:13:00 +2440,1967-07-10 08:54:00 +7750,1968-02-05 06:37:00 +5388,1965-05-18 20:17:00 +1312,1965-07-09 07:08:00 +9408,1969-05-25 07:44:00 +775,1969-09-21 03:42:00 +3327,1969-12-02 14:15:00 +3548,1965-07-06 20:31:00 +8865,1966-02-07 18:41:00 +6925,1967-12-13 02:12:00 +1290,1969-01-06 15:39:00 +4093,1967-06-27 10:43:00 +683,1967-04-04 02:57:00 +7770,1969-09-16 22:09:00 +7731,1968-08-29 16:42:00 +2200,1969-03-18 06:50:00 +5994,1966-06-05 10:20:00 +3577,1966-08-08 15:51:00 +2336,1967-04-09 02:23:00 +8170,1968-11-05 01:28:00 +7527,1969-06-07 20:53:00 +955,1965-02-04 16:23:00 +9189,1967-06-11 12:36:00 +8125,1967-11-01 04:46:00 +6358,1966-09-17 05:27:00 +3305,1966-10-05 11:23:00 +314,1965-11-24 07:05:00 +3763,1966-08-27 11:00:00 +4375,1969-05-09 09:28:00 +7417,1966-07-20 21:07:00 +608,1969-11-04 13:59:00 +8914,1968-08-23 09:31:00 +9748,1969-05-23 06:49:00 +2645,1968-07-28 23:56:00 +4776,1965-07-15 20:14:00 +136,1965-02-22 03:58:00 +9977,1965-08-30 14:48:00 +7070,1967-04-06 06:57:00 +7470,1966-08-29 05:27:00 +6235,1968-04-11 22:21:00 +6574,1968-01-01 18:13:00 +2061,1965-01-07 13:47:00 +1920,1967-05-05 19:21:00 +7701,1969-10-11 06:52:00 +2966,1967-01-17 02:01:00 +3501,1967-08-20 17:55:00 +9277,1968-05-24 11:57:00 +6230,1965-06-30 17:48:00 +4131,1967-03-03 15:51:00 +2200,1965-04-25 16:30:00 +3611,1967-03-16 14:27:00 +8896,1967-05-12 21:57:00 +1056,1969-03-01 21:24:00 +7156,1966-05-27 01:22:00 +4325,1969-05-17 06:49:00 +5054,1967-07-21 23:54:00 +1187,1965-06-27 01:27:00 +2079,1968-07-06 15:03:00 +2028,1965-11-01 04:25:00 +9169,1965-09-07 02:39:00 +5322,1967-09-03 13:36:00 +1039,1967-12-05 17:25:00 +3280,1968-01-11 23:53:00 +4220,1969-05-16 07:20:00 +3068,1968-05-09 11:28:00 +2410,1967-03-07 21:33:00 +5324,1969-06-11 16:15:00 +7483,1969-01-14 11:48:00 +8089,1967-03-06 01:09:00 +9698,1969-02-11 05:48:00 +1084,1969-09-16 20:50:00 +8455,1967-04-01 13:55:00 +2177,1967-05-14 10:27:00 +4385,1966-11-16 18:13:00 +5484,1967-04-10 12:37:00 +6565,1967-10-23 15:49:00 +3000,1966-10-04 16:09:00 +4208,1969-08-22 03:54:00 +4761,1967-03-20 05:52:00 +4525,1965-01-12 18:37:00 +3362,1969-02-08 04:00:00 +715,1968-05-24 07:55:00 +173,1966-10-09 03:51:00 +3590,1968-08-27 02:48:00 +2751,1965-07-04 16:28:00 +80,1967-08-03 00:31:00 +2363,1969-07-01 00:54:00 +4565,1968-04-10 23:23:00 +4308,1965-12-31 00:13:00 +3472,1966-03-12 19:02:00 +7235,1966-07-22 17:49:00 +6797,1968-09-27 19:23:00 +9232,1965-10-27 01:07:00 +3638,1966-09-27 05:58:00 +9959,1968-12-07 15:37:00 +2175,1965-08-16 23:15:00 +8143,1968-03-30 22:45:00 +6523,1968-07-22 08:24:00 +4501,1967-11-15 01:23:00 +895,1969-11-18 09:41:00 +94,1965-03-02 08:41:00 +1167,1967-05-02 15:24:00 +3956,1967-04-26 18:08:00 +3517,1968-06-01 07:59:00 +3717,1967-05-04 16:34:00 +553,1969-09-29 00:39:00 +7398,1965-04-20 09:37:00 +1395,1966-02-09 05:29:00 +1620,1968-11-10 02:25:00 +3602,1965-04-13 22:52:00 +2673,1967-03-08 07:36:00 +9873,1965-06-22 06:04:00 +46,1966-08-05 10:46:00 +3844,1969-07-23 03:56:00 +6270,1965-09-19 15:42:00 +2760,1969-12-12 22:31:00 +2395,1965-10-06 02:27:00 +2522,1965-02-06 08:39:00 +3722,1969-10-21 03:35:00 +6246,1969-09-26 21:57:00 +413,1966-08-16 07:48:00 +3457,1965-07-12 15:16:00 +2801,1969-03-01 00:25:00 +36,1968-04-08 15:06:00 +3089,1968-02-24 20:10:00 +599,1969-04-17 12:55:00 +9968,1965-08-29 01:00:00 +879,1968-02-07 10:04:00 +1094,1969-03-26 18:47:00 +6299,1966-07-19 04:06:00 +8924,1966-08-28 18:27:00 +3168,1965-04-06 17:11:00 +594,1968-02-07 13:36:00 +3785,1965-10-02 18:37:00 +9910,1966-05-01 13:41:00 +9027,1968-11-23 15:13:00 +2996,1968-05-04 22:59:00 +5705,1968-06-30 11:47:00 +4953,1967-10-24 21:18:00 +5696,1968-01-01 22:10:00 +7879,1968-01-10 00:23:00 +2891,1969-08-02 20:15:00 +9941,1968-03-27 22:27:00 +9806,1969-02-04 15:16:00 +9446,1968-11-11 02:07:00 +95,1967-01-13 23:18:00 +503,1965-11-06 00:42:00 +5053,1968-10-16 12:13:00 +1150,1969-09-20 03:47:00 +6200,1968-11-07 16:48:00 +9686,1966-03-01 14:08:00 +9121,1967-09-13 16:17:00 +3672,1968-01-02 07:49:00 +7262,1965-05-14 14:00:00 +7691,1967-07-10 10:54:00 +1358,1967-06-03 17:21:00 +9856,1966-12-01 06:29:00 +396,1966-03-07 05:58:00 +4696,1968-06-06 11:09:00 +1382,1969-08-17 18:25:00 +4349,1968-11-05 18:44:00 +8404,1965-01-11 04:50:00 +2954,1966-09-26 20:17:00 +6341,1968-08-21 12:13:00 +9758,1969-01-04 00:27:00 +8468,1967-04-04 15:54:00 +193,1965-10-09 13:09:00 +9127,1965-12-14 19:38:00 +3280,1966-08-23 15:07:00 +9297,1967-09-25 22:12:00 +3887,1967-05-08 19:38:00 +9538,1965-08-28 01:28:00 +1261,1969-12-11 12:08:00 +4242,1967-07-28 00:05:00 +2031,1965-08-04 19:06:00 +1171,1966-12-10 07:34:00 +730,1969-06-22 18:22:00 +7639,1968-01-16 09:26:00 +1927,1966-04-07 15:53:00 +4524,1968-02-04 22:04:00 +3739,1967-08-04 07:00:00 +4135,1966-03-21 16:43:00 +2505,1968-02-05 12:04:00 +7492,1967-12-16 09:10:00 +889,1965-02-23 21:19:00 +2470,1967-11-09 18:16:00 +3835,1965-06-11 19:26:00 +3282,1969-04-18 12:36:00 +4058,1969-04-02 21:01:00 +2359,1965-09-14 03:58:00 +7917,1968-11-05 13:48:00 +3728,1968-09-28 07:26:00 +3356,1967-12-07 14:13:00 +1449,1968-11-23 17:26:00 +6554,1965-03-10 20:27:00 +3218,1966-02-06 20:25:00 +3685,1966-10-24 11:21:00 +4802,1969-04-15 08:50:00 +5368,1967-04-08 21:19:00 +7944,1969-10-05 20:05:00 +7753,1968-06-09 13:24:00 +9200,1965-11-21 10:44:00 +3290,1965-04-25 20:27:00 +3681,1966-09-07 22:01:00 +9082,1968-07-16 14:12:00 +9865,1967-07-13 01:10:00 +5689,1969-09-29 09:32:00 +6724,1969-08-10 17:05:00 +4361,1968-03-15 12:29:00 +8863,1965-03-19 01:13:00 +1505,1966-12-02 19:14:00 +1332,1965-01-08 14:21:00 +9645,1966-03-28 19:08:00 +2618,1966-02-21 04:10:00 +5658,1967-08-07 17:08:00 +8520,1967-08-19 20:39:00 +7235,1968-10-30 04:17:00 +8001,1965-06-10 12:12:00 +6142,1969-03-04 09:35:00 +2587,1966-12-21 07:35:00 +6645,1966-11-13 13:23:00 +982,1967-04-28 03:39:00 +6621,1969-08-17 09:57:00 +7371,1965-12-16 01:08:00 +3191,1966-08-03 18:59:00 +2318,1966-06-12 20:42:00 +4054,1965-01-26 08:46:00 +5261,1967-10-28 05:36:00 +9443,1967-04-11 00:41:00 +9302,1968-02-27 18:15:00 +9055,1967-12-10 14:14:00 +8463,1969-04-28 22:35:00 +1785,1966-08-15 08:06:00 +6724,1967-10-20 22:03:00 +825,1966-03-12 04:10:00 +569,1967-10-08 16:58:00 +8027,1965-08-17 17:16:00 +6699,1968-04-04 04:38:00 +8126,1967-01-15 22:14:00 +991,1968-03-19 06:08:00 +5586,1968-07-14 13:09:00 +4864,1969-07-09 17:01:00 +6492,1968-11-10 18:39:00 +7959,1968-10-22 16:07:00 +199,1967-07-05 23:00:00 +2196,1969-01-21 23:16:00 +9745,1967-03-20 17:43:00 +2274,1966-12-28 07:48:00 +638,1967-08-08 05:36:00 +4825,1967-06-05 21:41:00 +8857,1969-05-01 05:52:00 +5436,1968-02-25 03:18:00 +5334,1968-09-23 16:33:00 +3537,1965-09-30 04:46:00 +1436,1965-09-14 00:24:00 +148,1967-11-10 13:20:00 +7212,1968-10-19 11:05:00 +3385,1967-02-11 07:16:00 +1617,1969-05-07 21:06:00 +1729,1968-01-24 21:07:00 +3389,1968-12-22 16:40:00 +2429,1965-04-24 03:04:00 +1528,1965-10-02 01:01:00 +7292,1969-11-20 21:27:00 +3180,1966-09-07 14:35:00 +495,1966-05-05 02:34:00 +2508,1966-09-20 00:34:00 +9522,1968-07-16 04:14:00 +2667,1967-12-02 17:17:00 +1751,1966-04-29 03:06:00 +4081,1967-11-26 14:02:00 +7850,1966-02-06 02:03:00 +7836,1965-09-26 08:34:00 +2793,1965-08-15 16:08:00 +3094,1967-01-17 10:50:00 +1408,1966-04-10 19:44:00 +828,1969-06-09 12:56:00 +3181,1968-11-21 11:40:00 +1128,1966-11-09 07:10:00 +1905,1965-10-02 23:30:00 +9698,1969-05-12 03:49:00 +3345,1967-08-28 03:25:00 +2412,1967-11-22 07:48:00 +4816,1969-06-08 15:46:00 +4232,1969-01-10 11:47:00 +8872,1968-06-30 15:30:00 +1294,1966-05-20 00:31:00 +7969,1967-07-15 13:59:00 +7894,1966-06-30 06:43:00 +3852,1967-09-03 13:39:00 +1918,1966-07-26 00:18:00 +5662,1965-02-07 00:02:00 +1530,1968-10-20 08:04:00 +7966,1968-08-12 07:58:00 +9450,1966-11-28 15:25:00 +6104,1968-06-15 12:08:00 +3132,1969-02-02 15:30:00 +8481,1969-10-24 11:17:00 +8521,1967-09-21 10:42:00 +5693,1969-03-11 17:04:00 +5159,1969-10-17 02:43:00 +8207,1968-05-28 08:20:00 +8879,1967-04-27 04:48:00 +9706,1969-09-02 04:36:00 +5790,1969-11-19 07:44:00 +8828,1965-08-26 08:04:00 +3652,1969-10-30 11:55:00 +2577,1966-10-31 15:42:00 +7406,1968-02-29 06:06:00 +7200,1965-04-06 09:19:00 +998,1965-06-19 08:25:00 +1533,1966-06-05 03:18:00 +900,1969-06-01 12:45:00 +582,1966-01-09 07:16:00 +55,1966-08-04 14:18:00 +2814,1969-03-28 08:04:00 +9762,1968-06-17 11:42:00 +7625,1969-11-23 15:29:00 +6393,1965-05-12 14:10:00 +1942,1968-08-20 01:33:00 +3228,1965-08-19 21:34:00 +183,1969-07-23 00:49:00 +5326,1968-10-12 16:40:00 +5065,1966-07-18 19:05:00 +41,1968-03-06 10:31:00 +5833,1969-07-07 15:44:00 +5544,1966-06-25 10:57:00 +5915,1967-03-31 19:38:00 +2281,1966-05-05 17:39:00 +2838,1969-09-29 18:52:00 +5343,1965-05-15 01:22:00 +627,1969-11-27 15:34:00 +5146,1968-04-14 11:01:00 +4762,1968-01-05 01:22:00 +7997,1966-09-10 22:39:00 +277,1967-04-17 19:19:00 +3021,1965-12-21 08:46:00 +4349,1967-08-19 06:08:00 +4344,1967-11-10 22:30:00 +9763,1965-08-20 14:44:00 +9171,1967-07-10 14:21:00 +5714,1967-10-07 17:49:00 +6798,1966-08-24 14:27:00 +2271,1968-02-06 09:16:00 +7457,1967-05-15 14:28:00 +1051,1967-06-18 00:49:00 +965,1968-09-28 13:00:00 +9489,1967-09-27 14:30:00 +8813,1969-12-29 11:52:00 +1365,1968-02-02 03:39:00 +9416,1967-09-06 15:28:00 +8309,1969-06-15 19:26:00 +273,1968-12-11 10:39:00 +9144,1966-09-11 11:25:00 +7399,1967-04-12 14:19:00 +9480,1966-04-23 20:14:00 +761,1968-09-02 10:20:00 +2710,1965-12-30 03:23:00 +3476,1969-08-15 09:14:00 +8269,1966-07-31 08:14:00 +9182,1967-06-12 11:32:00 +6175,1967-12-18 12:46:00 +3753,1965-08-01 03:33:00 +7336,1966-03-16 17:57:00 +112,1967-07-25 18:29:00 +6299,1965-01-10 12:48:00 +6265,1966-05-02 02:57:00 +7533,1965-06-02 21:00:00 +9826,1965-08-24 02:20:00 +9045,1969-04-18 09:55:00 +9621,1965-06-05 22:41:00 +6171,1969-04-07 21:09:00 +136,1966-10-23 06:46:00 +2060,1969-05-16 05:44:00 +2753,1967-06-14 08:17:00 +6750,1966-07-26 22:03:00 +8049,1968-04-13 17:08:00 +6039,1969-11-09 16:04:00 +7800,1965-05-19 20:03:00 +9125,1969-04-03 22:23:00 +2253,1966-07-27 03:37:00 +7447,1967-06-19 23:42:00 +2327,1969-09-03 13:56:00 +5605,1967-04-08 08:13:00 +8353,1966-03-16 15:13:00 +4948,1968-04-18 06:21:00 +6776,1966-07-05 20:36:00 +4908,1968-01-02 08:54:00 +9815,1968-06-25 20:59:00 +7347,1966-07-21 23:37:00 +8758,1966-05-10 20:17:00 +2224,1967-05-18 06:59:00 +8682,1966-02-13 17:00:00 +3650,1966-06-04 13:46:00 +7868,1965-02-23 20:04:00 +8599,1965-02-16 08:18:00 +9247,1968-07-16 10:28:00 +2493,1966-05-22 04:17:00 +8153,1966-07-23 21:30:00 +3486,1965-12-29 17:10:00 +894,1968-05-06 08:24:00 +2801,1966-10-09 06:55:00 +5458,1967-01-05 09:39:00 +2164,1969-05-13 02:13:00 +3806,1967-09-30 02:06:00 +7515,1966-03-01 04:47:00 +6848,1968-09-26 03:21:00 +773,1965-07-27 07:36:00 +9127,1967-11-02 09:14:00 +2797,1968-04-04 02:09:00 +9845,1968-07-04 01:12:00 +6619,1969-07-27 15:41:00 +1820,1969-12-21 12:28:00 +2996,1965-05-07 07:24:00 +3268,1968-09-15 06:44:00 +4524,1969-03-22 04:48:00 +794,1969-10-13 13:26:00 +946,1968-06-29 07:02:00 +6202,1966-05-23 20:28:00 +6129,1967-08-29 03:56:00 +6470,1967-07-20 11:47:00 +3411,1968-03-05 07:05:00 +5326,1969-04-28 17:03:00 +306,1967-10-24 10:19:00 +8322,1967-06-22 09:47:00 +70,1966-12-28 04:06:00 +6158,1969-04-06 15:23:00 +391,1965-04-06 03:34:00 +1959,1968-04-25 17:06:00 +3298,1965-11-12 16:32:00 +5345,1968-12-10 20:48:00 +816,1965-04-30 14:47:00 +2128,1967-08-05 11:35:00 +3245,1966-06-17 22:11:00 +4249,1965-11-17 03:06:00 +8886,1969-05-02 05:20:00 +8938,1968-10-30 22:54:00 +8090,1965-08-30 09:07:00 +5410,1965-01-10 23:56:00 +9290,1969-06-24 13:28:00 +8399,1965-09-25 08:14:00 +6819,1967-12-20 14:51:00 +7950,1966-08-23 03:59:00 +3714,1966-03-02 02:09:00 +746,1965-01-06 23:45:00 +6447,1969-04-06 23:16:00 +4983,1965-06-03 11:21:00 +4724,1967-09-14 19:24:00 +7447,1966-05-20 03:07:00 +1689,1965-08-03 21:57:00 +936,1965-02-26 22:25:00 +744,1965-02-17 00:23:00 +5881,1968-01-13 02:34:00 +4611,1969-02-23 22:15:00 +878,1965-03-26 23:14:00 +5594,1966-11-10 01:18:00 +7814,1969-06-06 00:32:00 +6738,1967-01-08 15:23:00 +3613,1969-04-20 20:35:00 +6577,1966-10-24 03:30:00 +2542,1968-01-07 17:36:00 +5552,1967-05-10 17:20:00 +6742,1966-08-08 14:23:00 +5730,1965-05-20 17:30:00 +2408,1969-01-31 05:22:00 +7981,1965-05-03 08:11:00 +128,1968-06-02 15:18:00 +9314,1968-01-12 15:37:00 +3865,1966-07-18 02:43:00 +9329,1967-06-30 12:22:00 +5382,1966-05-24 09:47:00 +1781,1969-02-25 18:41:00 +5778,1968-10-30 18:41:00 +6256,1969-06-07 22:14:00 +9163,1968-03-21 12:57:00 +7666,1968-03-10 04:05:00 +3695,1969-06-28 15:14:00 +4275,1969-08-13 11:27:00 +7029,1969-12-27 16:24:00 +2607,1967-08-09 21:31:00 +7453,1967-04-15 23:13:00 +1790,1966-01-19 22:16:00 +6140,1967-09-17 13:27:00 +9713,1965-10-01 13:19:00 +1658,1967-08-09 08:56:00 +5771,1968-03-19 03:10:00 +3577,1966-02-13 00:40:00 +7796,1966-05-15 21:42:00 +4473,1969-01-02 06:27:00 +7611,1968-01-09 16:32:00 +4371,1966-02-10 19:03:00 +1676,1968-02-10 15:14:00 +1940,1965-05-12 13:49:00 +274,1969-11-02 23:39:00 +9806,1965-04-01 06:42:00 +5516,1966-12-31 03:20:00 +9576,1966-04-30 12:09:00 +6745,1965-11-09 07:58:00 +3872,1967-05-24 17:34:00 +5390,1967-11-04 04:07:00 +1922,1966-06-19 16:38:00 +8010,1968-09-11 18:24:00 +6626,1968-01-04 01:30:00 +7984,1969-09-26 04:21:00 +6272,1967-02-24 18:47:00 +5638,1967-02-07 10:54:00 +8618,1966-09-16 18:09:00 +3748,1965-10-31 06:39:00 +8235,1969-11-16 18:22:00 +282,1968-06-26 06:22:00 +2135,1968-04-21 18:53:00 +9779,1966-12-25 16:52:00 +3937,1966-10-15 15:04:00 +100,1969-12-15 10:26:00 +5143,1966-04-21 16:30:00 +8827,1967-03-27 22:01:00 +6603,1969-01-24 11:42:00 +4883,1969-01-09 22:35:00 +3408,1966-02-05 22:57:00 +968,1968-05-14 07:34:00 +1150,1968-08-03 02:19:00 +2033,1967-10-01 16:00:00 +9888,1965-07-15 22:48:00 +3943,1968-09-29 04:44:00 +8389,1966-10-31 13:11:00 +7732,1966-07-24 17:34:00 +3208,1965-11-25 16:56:00 +4226,1965-02-13 09:25:00 +4604,1967-11-22 20:01:00 +5672,1967-06-09 07:47:00 +6826,1966-12-14 13:28:00 +5921,1968-12-12 23:21:00 +6619,1967-06-19 06:39:00 +9685,1965-05-16 10:34:00 +6809,1969-02-08 12:50:00 +1549,1965-08-27 08:17:00 +7334,1965-07-13 00:06:00 +8862,1967-12-20 13:15:00 +3740,1967-07-16 22:57:00 +8367,1967-10-07 21:08:00 +4834,1969-07-16 19:07:00 +2828,1969-05-17 04:44:00 +5734,1966-08-03 12:46:00 +1099,1969-05-09 08:24:00 +59,1966-01-20 19:15:00 +9487,1968-12-01 18:53:00 +9766,1966-01-19 10:34:00 +6562,1968-05-20 23:20:00 +3379,1966-05-25 00:58:00 +4955,1966-04-09 17:48:00 +537,1969-03-09 14:00:00 +1818,1966-06-09 03:09:00 +9214,1968-03-26 10:46:00 +7612,1967-11-20 22:02:00 +6076,1967-07-18 21:36:00 +9349,1968-07-02 08:37:00 +7460,1969-10-19 19:26:00 +140,1968-05-06 05:54:00 +2211,1969-05-17 17:46:00 +8068,1969-09-04 14:09:00 +9356,1969-06-16 22:49:00 +605,1968-03-26 15:42:00 +1486,1965-12-22 19:51:00 +9717,1965-06-19 02:42:00 +8388,1966-12-05 23:17:00 +4402,1969-11-05 01:29:00 +5841,1969-06-27 19:53:00 +4600,1965-12-06 09:45:00 +2446,1969-06-10 02:51:00 +2275,1966-02-24 04:41:00 +4738,1965-12-30 01:06:00 +9890,1968-07-29 08:08:00 +8734,1968-12-22 06:47:00 +4642,1969-06-11 19:09:00 +4379,1967-01-22 14:40:00 +9542,1969-07-31 19:38:00 +6825,1965-07-29 23:16:00 +4321,1969-01-09 22:03:00 +2097,1967-12-15 06:27:00 +5699,1966-05-29 19:02:00 +5603,1965-09-29 16:04:00 +4727,1965-03-05 05:06:00 +4368,1967-04-12 17:40:00 +101,1968-07-18 02:54:00 +4491,1968-04-23 12:00:00 +1904,1965-07-12 23:30:00 +9036,1966-09-12 20:01:00 +3088,1969-06-30 23:05:00 +6237,1969-11-09 09:46:00 +1447,1966-10-14 22:40:00 +8891,1965-03-03 14:44:00 +3005,1966-12-07 03:06:00 +138,1968-06-13 02:55:00 +5007,1967-07-28 00:35:00 +7875,1969-02-19 14:03:00 +1760,1966-04-09 08:43:00 +7709,1969-01-20 08:23:00 +8763,1967-07-16 22:13:00 +4171,1969-04-11 02:27:00 +401,1966-10-01 19:51:00 +7496,1967-09-10 15:10:00 +2588,1968-10-16 10:00:00 +6843,1966-03-24 22:03:00 +3573,1966-11-14 12:16:00 +3400,1967-10-12 11:55:00 +9754,1966-07-20 20:48:00 +7810,1969-10-19 19:07:00 +2439,1966-11-08 07:20:00 +2603,1968-11-21 02:09:00 +7152,1967-12-07 01:40:00 +6524,1965-07-01 03:23:00 +4790,1967-07-15 23:06:00 +5585,1966-06-18 06:50:00 +5887,1969-12-09 07:33:00 +3741,1965-08-24 09:46:00 +3202,1967-04-04 22:58:00 +4671,1969-08-01 17:35:00 +6825,1968-01-25 20:10:00 +9940,1969-10-26 02:56:00 +9585,1968-06-25 08:59:00 +3016,1966-11-23 00:31:00 +9030,1969-09-29 11:02:00 +1180,1965-07-11 16:23:00 +1136,1969-01-23 15:34:00 +8282,1969-11-17 12:16:00 +1056,1967-05-07 06:21:00 +6901,1965-08-07 16:20:00 +2872,1965-03-10 08:02:00 +9264,1967-02-17 23:55:00 +9741,1969-11-01 20:41:00 +8356,1965-05-27 07:18:00 +1498,1969-06-10 07:38:00 +8170,1969-07-03 12:17:00 +8334,1969-02-27 17:54:00 +9888,1965-07-30 17:41:00 +2318,1967-12-12 23:24:00 +3074,1966-09-26 16:53:00 +8178,1965-02-20 11:08:00 +6117,1969-06-03 15:16:00 +8489,1965-03-21 20:32:00 +7277,1968-09-16 22:35:00 +2606,1968-02-02 16:50:00 +251,1969-07-24 19:16:00 +5318,1968-04-11 01:34:00 +8273,1966-11-05 15:22:00 +8851,1967-04-03 15:53:00 +6779,1968-12-30 21:07:00 +2633,1969-10-11 10:13:00 +5080,1967-12-29 03:26:00 +6656,1969-08-20 01:19:00 +4187,1965-10-17 14:34:00 +6150,1969-12-29 18:55:00 +4346,1969-12-28 14:25:00 +1943,1968-01-23 23:26:00 +3469,1967-07-17 11:45:00 +1599,1966-10-15 20:08:00 +5900,1968-06-05 00:45:00 +4751,1965-12-06 14:54:00 +8929,1968-10-02 01:30:00 +4894,1968-03-22 01:55:00 +6062,1969-09-13 02:46:00 +1931,1967-11-15 00:20:00 +5065,1968-09-22 16:13:00 +3653,1968-11-22 08:56:00 +6655,1968-11-12 12:29:00 +2963,1968-07-27 15:52:00 +2964,1969-02-02 12:14:00 +1514,1965-12-21 07:16:00 +6173,1968-05-08 00:23:00 +9262,1969-05-08 04:30:00 +2964,1965-08-01 03:59:00 +4609,1969-11-17 07:07:00 +2791,1965-05-24 13:33:00 +4050,1969-09-22 03:14:00 +2343,1965-04-21 08:07:00 +5749,1968-01-30 03:14:00 +302,1965-09-30 17:14:00 +7182,1968-12-13 00:30:00 +1572,1967-11-06 20:06:00 +2217,1965-05-28 22:31:00 +2134,1966-06-30 05:42:00 +4716,1967-08-04 21:56:00 +4446,1969-08-16 03:06:00 +4290,1969-04-07 17:26:00 +5188,1967-10-05 03:14:00 +4549,1968-09-04 19:31:00 +8465,1968-05-25 12:35:00 +6232,1968-01-01 00:20:00 +7482,1966-06-16 14:37:00 +3623,1965-03-07 00:45:00 +9932,1968-04-21 04:51:00 +9376,1969-03-29 07:17:00 +1906,1968-03-22 09:59:00 +7787,1966-02-27 23:37:00 +1801,1967-02-14 19:07:00 +8414,1966-09-21 08:46:00 +7028,1969-11-06 10:03:00 +1094,1967-05-17 12:12:00 +118,1965-10-23 12:02:00 +3172,1965-09-23 08:20:00 +2614,1967-01-21 03:31:00 +835,1966-11-14 00:39:00 +5038,1965-12-11 12:27:00 +2753,1965-08-21 14:59:00 +2126,1965-10-16 10:05:00 +4762,1968-03-14 04:50:00 +4158,1968-11-13 00:08:00 +601,1969-05-24 00:33:00 +5573,1966-09-23 07:50:00 +5661,1965-08-22 18:42:00 +6411,1968-07-05 22:52:00 +7896,1968-08-21 22:22:00 +4535,1967-01-07 02:54:00 +7012,1966-08-02 14:21:00 +2299,1965-11-07 22:22:00 +3217,1966-07-22 01:39:00 +3333,1967-07-31 14:30:00 +1987,1967-08-14 22:07:00 +7559,1966-07-15 21:35:00 +2875,1967-02-04 16:18:00 +4178,1967-12-15 18:57:00 +1284,1969-06-16 20:41:00 +134,1969-12-10 16:23:00 +6618,1966-06-03 19:31:00 +7655,1969-04-05 14:14:00 +3233,1968-07-06 14:11:00 +7719,1967-08-12 18:10:00 +7806,1965-03-19 17:44:00 +4211,1967-06-26 19:10:00 +7712,1965-06-24 19:25:00 +2923,1966-01-28 04:42:00 +4377,1968-04-26 13:55:00 +5611,1967-01-23 10:59:00 +8120,1966-08-29 08:39:00 +4280,1968-03-31 00:07:00 +9641,1966-03-08 13:29:00 +4944,1966-03-12 15:52:00 +9351,1969-05-12 09:50:00 +5247,1968-02-19 18:20:00 +9893,1968-01-08 20:41:00 +2708,1968-04-25 06:50:00 +3985,1967-12-02 09:30:00 +3276,1968-05-06 08:28:00 +9607,1968-12-31 04:39:00 +2122,1968-05-24 19:40:00 +9784,1968-04-21 15:37:00 +7314,1965-05-09 13:12:00 +8474,1968-06-27 08:34:00 +5791,1965-11-17 10:28:00 +5217,1967-02-09 10:19:00 +9412,1966-07-19 07:20:00 +437,1965-02-12 19:52:00 +7090,1968-04-04 14:18:00 +6766,1965-07-04 08:48:00 +8353,1967-02-16 13:11:00 +5503,1969-08-03 13:40:00 +3464,1968-01-15 15:50:00 +2644,1965-09-02 02:28:00 +166,1967-07-14 03:23:00 +7415,1966-07-23 12:40:00 +2332,1968-02-06 15:53:00 +5710,1967-05-18 08:49:00 +2037,1968-03-25 03:40:00 +7999,1965-12-08 15:00:00 +2748,1968-04-22 05:03:00 +6452,1967-12-12 06:12:00 +5379,1967-04-14 05:06:00 +4162,1969-09-15 15:43:00 +4951,1968-09-07 14:21:00 +5156,1968-02-15 23:22:00 +9877,1969-01-10 18:23:00 +5932,1969-08-30 23:23:00 +6490,1965-03-15 12:01:00 +547,1968-04-10 16:04:00 +3979,1965-06-08 22:40:00 +6140,1967-11-16 07:46:00 +6920,1965-12-27 03:32:00 +3145,1968-04-19 14:40:00 +176,1967-03-23 03:33:00 +6636,1966-10-18 23:11:00 +6865,1966-04-17 16:14:00 +3384,1966-07-12 22:47:00 +4493,1968-01-03 10:44:00 +5277,1969-08-11 11:51:00 +261,1968-08-06 00:01:00 +8556,1969-11-19 03:41:00 +3371,1966-12-06 03:04:00 +2882,1965-02-26 01:36:00 +4977,1967-12-03 23:07:00 +4555,1965-05-04 00:53:00 +2248,1968-05-18 07:34:00 +6203,1969-12-25 19:34:00 +5272,1969-01-29 17:30:00 +8594,1966-10-04 15:14:00 +9488,1967-01-27 22:01:00 +4839,1966-12-06 17:32:00 +8666,1969-05-29 10:00:00 +6541,1966-07-06 10:51:00 +903,1965-11-27 09:50:00 +8274,1966-02-09 15:44:00 +531,1967-06-16 17:04:00 +5259,1965-09-24 04:15:00 +6496,1969-07-30 08:27:00 +9549,1968-11-24 12:26:00 +7530,1966-09-30 20:57:00 +1420,1967-10-27 23:25:00 +8527,1967-11-01 23:13:00 +8419,1969-04-30 03:53:00 +4226,1968-10-30 15:08:00 +9612,1968-06-13 15:17:00 +428,1968-04-11 05:14:00 +7021,1968-03-29 05:58:00 +4882,1966-02-24 16:52:00 +7649,1967-02-12 11:03:00 +5132,1969-01-17 20:48:00 +936,1969-06-06 18:14:00 +4350,1968-12-28 03:14:00 +8299,1965-01-31 22:10:00 +5244,1968-06-26 07:08:00 +6906,1966-01-07 07:45:00 +1638,1967-11-07 19:18:00 +9388,1968-04-29 20:57:00 +1160,1969-04-24 14:49:00 +7067,1967-09-29 14:16:00 +7104,1967-08-21 01:47:00 +6396,1967-02-22 03:22:00 +901,1966-06-08 04:09:00 +4250,1968-03-09 16:41:00 +3286,1968-11-18 07:53:00 +259,1966-11-06 20:33:00 +754,1966-11-19 01:41:00 +9581,1967-04-08 09:22:00 +4243,1968-02-19 08:57:00 +6571,1965-04-16 21:19:00 +9235,1965-10-01 05:07:00 +2677,1967-04-19 14:15:00 +7730,1969-06-06 19:22:00 +3534,1965-10-15 07:43:00 +6927,1969-08-25 17:18:00 +2121,1966-12-10 05:15:00 +7273,1965-11-23 04:59:00 +1712,1965-02-20 01:22:00 +4433,1965-12-09 06:23:00 +6932,1969-10-08 03:04:00 +2912,1969-07-19 11:44:00 +9225,1968-09-20 03:57:00 +7269,1966-07-31 17:38:00 +1608,1969-09-16 11:45:00 +7088,1968-07-28 17:50:00 +7800,1968-05-28 16:03:00 +1322,1966-03-03 14:50:00 +7480,1969-05-09 20:12:00 +9965,1967-11-27 00:26:00 +5806,1966-10-28 06:09:00 +4918,1965-09-25 20:24:00 +6866,1968-12-08 06:09:00 +9413,1968-05-10 19:02:00 +5583,1969-10-19 14:07:00 +3256,1967-07-24 09:52:00 +9999,1965-07-19 14:59:00 +2746,1966-07-04 09:03:00 +5286,1965-11-04 02:27:00 +6855,1968-06-19 10:34:00 +118,1968-01-16 22:47:00 +1151,1968-08-17 21:43:00 +4020,1968-05-04 06:18:00 +4402,1966-06-14 16:05:00 +3917,1966-10-29 02:11:00 +7405,1968-12-09 16:17:00 +3981,1968-01-09 02:17:00 +1001,1969-03-11 14:39:00 +3097,1966-12-15 21:37:00 +8943,1967-06-07 21:53:00 +1272,1967-06-29 11:00:00 +662,1969-01-27 20:45:00 +3679,1965-08-29 02:32:00 +4205,1965-10-13 05:44:00 +9261,1969-08-31 01:05:00 +415,1967-08-03 03:13:00 +772,1969-08-20 12:46:00 +7598,1968-12-25 06:29:00 +8601,1969-01-08 00:09:00 +7923,1965-07-21 00:40:00 +1501,1967-04-03 03:06:00 +9527,1966-05-29 13:34:00 +8562,1967-08-18 10:09:00 +5918,1965-04-09 19:06:00 +6757,1969-06-29 04:59:00 +5460,1969-03-31 03:02:00 +4910,1969-05-22 13:39:00 +3928,1965-11-20 09:34:00 +406,1968-01-27 10:44:00 +324,1969-08-26 17:58:00 +2663,1968-05-30 23:48:00 +9505,1965-03-13 12:52:00 +5987,1969-01-06 20:05:00 +5134,1966-10-13 01:50:00 +9233,1965-08-27 14:24:00 +3315,1968-04-02 23:39:00 +1573,1967-06-11 23:50:00 +2777,1966-04-14 12:49:00 +1142,1966-10-19 16:12:00 +3929,1968-01-08 02:19:00 +9776,1965-07-16 04:26:00 +8070,1967-04-06 23:54:00 +4489,1965-01-17 18:10:00 +5555,1965-08-18 05:14:00 +8039,1968-04-03 05:13:00 +5033,1969-02-28 10:11:00 +6699,1966-07-02 16:10:00 +7322,1969-01-08 15:48:00 +6861,1967-02-14 17:06:00 +8566,1967-10-08 09:00:00 +9359,1965-11-06 06:19:00 +3748,1966-05-19 14:43:00 +5010,1966-11-20 17:27:00 +5567,1966-12-11 05:59:00 +6638,1969-02-10 20:38:00 +2942,1965-05-17 14:47:00 +8807,1966-12-18 22:49:00 +5142,1968-03-09 17:37:00 +1229,1966-09-23 03:55:00 +4436,1969-02-05 18:46:00 +7756,1968-01-30 02:05:00 +5647,1967-10-08 09:41:00 +358,1969-05-14 19:16:00 +6326,1965-07-06 05:50:00 +9448,1969-10-11 21:21:00 +459,1968-09-19 03:16:00 +1036,1966-02-05 07:07:00 +6359,1969-02-24 18:33:00 +2295,1965-08-31 10:53:00 +2733,1965-06-30 04:59:00 +82,1968-10-05 11:26:00 +8458,1966-09-04 00:12:00 +5763,1968-02-18 18:01:00 +2845,1968-09-20 06:25:00 +8196,1965-11-02 11:25:00 +6168,1966-08-25 09:53:00 +9724,1968-07-22 11:10:00 +3334,1965-02-23 11:08:00 +3649,1966-12-11 16:00:00 +1658,1965-08-17 19:40:00 +3660,1965-06-27 05:09:00 +7700,1969-03-11 10:35:00 +7638,1967-02-18 10:05:00 +7710,1966-06-30 04:29:00 +3268,1968-10-15 22:40:00 +1851,1967-02-06 22:14:00 +5251,1965-08-10 04:00:00 +4188,1965-08-02 19:07:00 +7653,1969-06-09 04:42:00 +191,1965-03-11 21:32:00 +3082,1965-04-14 10:41:00 +6731,1966-05-29 11:21:00 +4344,1965-04-01 23:12:00 +876,1967-12-24 14:49:00 +9478,1965-05-12 21:02:00 +8308,1968-10-10 15:01:00 +6441,1968-05-30 15:08:00 +1489,1966-12-22 08:07:00 +8511,1969-10-28 13:32:00 +6611,1968-09-19 05:32:00 +5417,1967-09-10 17:16:00 +5826,1968-06-24 22:40:00 +84,1969-04-19 16:30:00 +7043,1967-08-03 20:35:00 +8647,1967-04-09 00:51:00 +1233,1967-01-03 09:12:00 +6542,1968-05-20 17:45:00 +1460,1969-05-22 05:48:00 +6287,1967-10-27 17:13:00 +7009,1967-10-31 23:13:00 +792,1965-11-07 17:34:00 +4647,1965-01-09 13:34:00 +6932,1969-10-07 21:42:00 +7672,1969-06-04 11:20:00 +2726,1967-09-04 15:54:00 +171,1969-03-29 00:39:00 +6732,1968-06-29 13:49:00 +5087,1967-04-29 22:32:00 +3845,1965-08-02 21:10:00 +9460,1968-06-29 01:07:00 +1158,1969-05-25 03:23:00 +2370,1966-05-08 13:50:00 +2982,1965-12-27 20:21:00 +4161,1967-10-30 17:32:00 +4965,1967-03-20 11:19:00 +3441,1967-09-18 07:32:00 +8116,1967-08-24 11:13:00 +3585,1968-09-20 11:27:00 +3615,1967-12-05 11:46:00 +4507,1966-06-08 08:15:00 +290,1966-08-23 09:44:00 +2984,1965-09-13 19:54:00 +8746,1969-10-31 20:03:00 +4852,1969-03-14 09:32:00 +1637,1965-08-01 20:40:00 +9428,1965-05-08 19:24:00 +3543,1967-09-23 09:30:00 +2925,1967-12-04 21:53:00 +7277,1969-06-14 13:31:00 +4784,1969-08-17 11:37:00 +7574,1965-08-10 21:09:00 +2061,1966-11-20 21:34:00 +1957,1966-08-22 00:14:00 +5169,1966-07-06 04:28:00 +2640,1967-10-10 16:53:00 +1109,1969-03-19 08:30:00 +7312,1965-02-10 23:53:00 +5926,1968-06-28 09:16:00 +3496,1967-05-27 12:42:00 +5016,1968-05-16 04:58:00 +3046,1967-02-11 10:15:00 +3298,1969-02-12 19:08:00 +3044,1967-06-07 19:45:00 +7812,1969-10-09 00:24:00 +5071,1965-07-21 06:35:00 +3727,1967-09-11 23:12:00 +6835,1968-12-22 15:49:00 +8823,1968-07-13 23:53:00 +4475,1966-07-27 23:29:00 +5768,1966-09-30 22:01:00 +2664,1968-01-06 06:13:00 +9002,1966-07-24 03:14:00 +4756,1966-10-13 15:46:00 +2971,1966-05-28 19:55:00 +6198,1967-03-02 00:11:00 +7751,1966-08-19 11:40:00 +4129,1965-06-19 15:50:00 +5689,1968-07-19 19:52:00 +153,1969-04-01 03:39:00 +7514,1968-11-16 11:31:00 +2348,1967-02-14 00:08:00 +7352,1966-05-25 07:44:00 +3751,1965-02-22 05:46:00 +4095,1967-02-11 14:01:00 +3995,1965-03-18 02:57:00 +6108,1967-01-06 18:20:00 +7858,1965-05-10 22:41:00 +9270,1966-12-27 04:16:00 +379,1965-06-22 01:28:00 +2671,1965-06-10 00:16:00 +8313,1967-06-18 15:00:00 +1971,1965-10-09 00:14:00 +6209,1965-12-21 11:29:00 +3593,1968-10-06 18:47:00 +2704,1969-11-13 15:15:00 +252,1967-02-08 03:00:00 +1747,1967-04-03 17:41:00 +8970,1969-05-04 06:05:00 +5507,1967-01-04 21:45:00 +9184,1966-02-09 00:25:00 +6480,1969-08-06 13:45:00 +4812,1965-05-02 18:56:00 +1970,1969-05-04 03:25:00 +4446,1968-03-01 16:48:00 +3246,1967-08-17 11:01:00 +8209,1965-12-21 19:10:00 +9533,1969-05-16 19:59:00 +3942,1965-02-02 21:07:00 +6792,1968-09-30 15:18:00 +1080,1965-11-11 09:37:00 +6571,1968-07-22 07:05:00 +9450,1967-05-10 10:25:00 +4950,1969-12-01 00:36:00 +7293,1966-06-03 17:14:00 +8898,1969-02-20 11:47:00 +6626,1968-10-28 14:29:00 +2619,1969-06-16 11:38:00 +3477,1969-09-21 02:28:00 +5670,1966-07-26 23:46:00 +1358,1965-08-26 03:37:00 +1658,1969-07-29 15:57:00 +2721,1969-08-11 05:24:00 +1570,1969-01-25 23:00:00 +436,1966-01-25 01:49:00 +3875,1969-12-30 19:12:00 +1136,1967-10-30 10:48:00 +5091,1965-08-17 07:17:00 +9845,1967-01-05 15:04:00 +4237,1967-03-06 01:26:00 +9768,1969-12-11 02:37:00 +1236,1967-12-20 15:18:00 +8095,1965-06-09 01:39:00 +4985,1968-10-17 19:33:00 +7287,1969-07-25 11:38:00 +2770,1965-11-10 21:35:00 +8371,1965-07-24 20:39:00 +915,1969-07-18 08:26:00 +7785,1966-03-21 18:17:00 +7736,1965-04-07 07:04:00 +3942,1969-09-30 15:41:00 +5344,1965-06-14 20:26:00 +2779,1968-06-20 06:30:00 +5010,1966-07-18 08:45:00 +9433,1966-01-01 10:57:00 +5861,1967-04-08 07:31:00 +8889,1968-12-30 22:35:00 +3286,1969-11-17 03:39:00 +8146,1967-04-27 03:45:00 +8209,1966-03-05 10:50:00 +6180,1966-12-12 11:07:00 +7193,1969-12-12 03:54:00 +5074,1968-05-14 15:01:00 +8988,1966-06-17 18:26:00 +5152,1968-10-18 04:35:00 +5451,1965-01-23 18:02:00 +8696,1966-08-03 14:31:00 +8340,1969-08-19 10:25:00 +2339,1969-02-27 14:36:00 +9299,1968-12-14 14:43:00 +3595,1966-09-16 18:20:00 +9010,1966-04-15 06:45:00 +7072,1966-07-06 22:30:00 +7235,1969-06-04 12:21:00 +6213,1966-01-05 16:10:00 +7621,1967-04-14 07:21:00 +1872,1965-05-20 03:54:00 +9972,1968-01-29 19:48:00 +4089,1969-12-23 19:38:00 +3509,1968-05-01 09:18:00 +364,1969-03-03 05:48:00 +4203,1968-09-30 07:42:00 +7771,1968-08-29 16:56:00 +4939,1968-11-11 20:14:00 +355,1969-03-11 14:41:00 +4808,1968-12-23 10:34:00 +8697,1968-05-25 18:41:00 +3970,1969-07-25 08:18:00 +7113,1966-11-10 05:41:00 +5567,1966-08-07 20:39:00 +3910,1967-09-09 17:12:00 +4388,1965-11-12 19:41:00 +5631,1965-07-17 07:40:00 +8471,1967-10-28 22:55:00 +6483,1967-06-04 15:08:00 +7779,1965-10-03 20:36:00 +5195,1969-03-17 15:23:00 +6868,1966-01-21 04:09:00 +4398,1966-03-18 02:21:00 +2426,1965-06-07 17:59:00 +3127,1968-05-29 13:20:00 +8376,1966-05-29 15:12:00 +8242,1966-11-25 09:41:00 +822,1966-10-09 18:55:00 +3968,1969-06-23 08:42:00 +577,1965-02-02 15:51:00 +8571,1966-03-14 23:33:00 +1608,1965-11-29 03:09:00 +5975,1968-03-19 15:31:00 +2669,1965-05-08 17:15:00 +7339,1968-05-30 10:24:00 +3559,1968-12-12 03:46:00 +6069,1965-10-01 13:43:00 +1399,1968-02-22 12:33:00 +9802,1969-03-17 20:55:00 +1259,1965-04-16 10:24:00 +7864,1968-06-14 10:41:00 +3663,1969-10-11 18:15:00 +6009,1968-04-29 06:57:00 +4580,1965-03-29 19:41:00 +1746,1969-12-23 21:53:00 +5493,1969-02-26 21:13:00 +9733,1969-01-07 13:13:00 +1252,1966-05-30 02:14:00 +113,1968-03-01 08:10:00 +5163,1965-06-08 18:14:00 +2099,1968-11-16 08:25:00 +8152,1969-11-19 09:02:00 +8427,1965-02-09 05:34:00 +9727,1966-08-25 19:47:00 +5315,1965-07-03 23:52:00 +5126,1967-08-03 05:42:00 +2672,1965-10-28 17:44:00 +4179,1967-12-31 19:07:00 +3146,1967-02-21 16:24:00 +5381,1965-05-28 08:51:00 +5488,1967-09-28 01:45:00 +2426,1965-10-02 16:00:00 +624,1966-12-21 21:07:00 +6474,1968-03-04 23:23:00 +20,1965-01-11 15:28:00 +562,1967-01-15 18:51:00 +1094,1965-08-21 05:18:00 +1400,1965-02-16 20:24:00 +1467,1965-01-02 10:05:00 +3812,1967-05-20 04:11:00 +6937,1968-04-27 16:35:00 +2342,1968-10-31 14:49:00 +4673,1967-10-23 19:32:00 +4134,1965-10-24 06:00:00 +5373,1969-11-02 07:28:00 +2362,1967-07-23 21:37:00 +8309,1968-04-26 08:20:00 +1683,1967-01-26 02:08:00 +7562,1969-11-25 12:52:00 +7853,1965-05-22 05:57:00 +719,1966-08-07 09:34:00 +1391,1969-07-21 20:58:00 +4517,1967-09-02 21:50:00 +2551,1965-09-19 11:18:00 +9344,1965-04-21 03:47:00 +3856,1968-07-26 08:38:00 +3120,1966-06-04 09:24:00 +8925,1968-09-27 02:46:00 +1133,1967-08-20 07:11:00 +5202,1969-04-19 08:25:00 +5838,1968-02-04 16:07:00 +5909,1969-09-12 11:41:00 +3553,1968-01-18 06:24:00 +6750,1965-09-22 22:30:00 +7259,1966-12-29 06:05:00 +565,1969-11-13 09:13:00 +9891,1966-06-14 11:08:00 +3262,1967-02-04 10:37:00 +5211,1968-10-02 22:08:00 +5521,1969-12-11 18:36:00 +6140,1969-04-16 20:12:00 +6038,1968-04-26 09:17:00 +5527,1969-12-21 16:30:00 +8689,1968-01-03 09:32:00 +5181,1969-06-07 18:27:00 +6712,1968-09-29 07:09:00 +5372,1967-01-17 19:02:00 +6474,1965-06-04 23:57:00 +7507,1966-01-20 12:40:00 +6808,1966-05-23 11:36:00 +1161,1969-04-18 23:51:00 +9852,1968-03-26 19:58:00 +4600,1968-12-09 05:13:00 +4674,1968-09-11 10:42:00 +997,1966-07-04 03:19:00 +8845,1967-01-21 18:29:00 +5649,1969-12-04 14:03:00 +9248,1966-06-10 19:56:00 +8425,1965-02-17 11:24:00 +127,1968-06-18 02:01:00 +9459,1966-07-29 11:38:00 +3933,1968-06-05 06:31:00 +3189,1968-07-30 20:13:00 +9778,1968-12-08 16:23:00 +6110,1969-05-16 22:01:00 +6585,1965-11-14 05:33:00 +9991,1966-07-05 03:18:00 +9850,1969-09-28 07:19:00 +9901,1966-11-15 07:41:00 +4430,1967-11-21 02:21:00 +2413,1966-12-20 12:05:00 +7661,1965-05-26 12:08:00 +1102,1969-11-04 07:05:00 +4950,1969-01-30 20:31:00 +4801,1965-05-01 20:02:00 +4027,1968-10-20 21:24:00 +4657,1965-02-20 04:23:00 +3484,1968-12-08 00:32:00 +4574,1967-03-04 23:49:00 +5938,1968-09-27 05:58:00 +2067,1967-02-15 08:21:00 +9332,1966-12-26 01:59:00 +2299,1968-06-24 13:24:00 +9970,1967-08-12 10:42:00 +296,1966-06-07 10:23:00 +2120,1969-12-21 10:22:00 +2105,1968-04-06 08:24:00 +8251,1965-08-13 08:30:00 +9080,1966-11-18 07:56:00 +5376,1967-11-04 23:50:00 +1303,1969-03-01 18:41:00 +3956,1965-12-15 17:00:00 +6942,1969-08-30 23:09:00 +4071,1969-10-23 21:26:00 +5153,1969-03-24 23:06:00 +8735,1969-12-18 07:13:00 +9505,1965-06-30 13:22:00 +8227,1968-05-03 15:07:00 +6176,1968-07-21 18:07:00 +2997,1967-12-07 10:37:00 +1587,1965-08-04 09:08:00 +4268,1969-04-03 23:22:00 +8094,1969-05-24 01:49:00 +3694,1966-03-17 14:20:00 +6724,1965-05-09 04:24:00 +2225,1967-08-26 03:49:00 +1594,1968-07-29 21:39:00 +2894,1966-12-06 19:48:00 +4671,1966-03-10 03:36:00 +4164,1968-09-24 21:17:00 +3709,1966-12-03 08:39:00 +9339,1967-02-01 13:55:00 +9202,1968-12-16 06:53:00 +3,1968-02-04 16:16:00 +7894,1968-05-14 08:32:00 +7745,1966-08-09 02:28:00 +7821,1969-12-29 16:52:00 +6497,1967-06-06 15:14:00 +74,1966-02-26 19:06:00 +4510,1965-07-22 20:02:00 +9994,1965-04-20 06:19:00 +5819,1965-07-24 14:00:00 +2463,1965-12-20 22:11:00 +649,1965-07-16 21:40:00 +101,1965-02-07 15:33:00 +5493,1966-04-24 22:08:00 +9716,1966-12-12 18:07:00 +6430,1965-11-30 10:34:00 +4403,1969-02-15 14:36:00 +8895,1966-04-22 22:17:00 +6317,1968-11-02 12:34:00 +4757,1965-03-19 20:13:00 +3225,1966-07-20 12:13:00 +3132,1965-07-17 21:28:00 +8187,1968-07-17 11:32:00 +2344,1966-05-24 11:57:00 +9439,1969-06-13 07:08:00 +1877,1969-12-14 10:01:00 +4186,1968-10-10 10:39:00 +8780,1967-03-14 20:05:00 +8030,1967-07-23 08:06:00 +9114,1967-02-19 20:28:00 +4084,1966-01-20 09:42:00 +4121,1968-10-01 11:16:00 +7146,1969-07-08 16:31:00 +3344,1968-07-02 01:28:00 +497,1965-07-08 00:21:00 +8178,1966-11-16 11:21:00 +3815,1967-08-30 18:25:00 +290,1969-01-29 20:52:00 +3871,1965-08-28 09:50:00 +7911,1965-05-15 00:54:00 +2794,1965-09-10 19:59:00 +2252,1969-09-11 02:21:00 +8998,1968-07-16 03:24:00 +3494,1969-10-30 04:34:00 +5510,1965-03-13 14:05:00 +4833,1966-04-05 12:21:00 +1242,1966-03-29 14:40:00 +9965,1967-08-13 02:22:00 +9907,1966-10-29 14:31:00 +5108,1967-08-29 18:35:00 +5449,1966-11-22 12:50:00 +8478,1966-10-25 06:15:00 +4458,1967-11-08 00:31:00 +5494,1966-06-03 01:14:00 +9638,1965-08-06 16:29:00 +5300,1968-03-15 20:52:00 +5327,1965-05-04 14:04:00 +8870,1969-06-26 08:17:00 +8716,1969-01-13 05:21:00 +2569,1966-03-25 22:48:00 +7496,1966-06-20 16:28:00 +9062,1966-07-27 19:02:00 +4889,1966-04-25 14:44:00 +1277,1969-08-27 08:33:00 +305,1967-07-06 22:08:00 +1606,1969-08-22 18:24:00 +7291,1969-07-12 13:27:00 +3816,1966-11-20 20:13:00 +9217,1968-02-07 04:39:00 +8422,1967-09-24 13:41:00 +2024,1967-10-08 20:56:00 +9600,1965-02-05 06:53:00 +8361,1966-06-30 14:36:00 +9028,1965-09-03 02:23:00 +1998,1967-05-24 00:56:00 +2745,1966-08-02 23:37:00 +8678,1967-10-15 07:43:00 +9946,1965-04-07 11:48:00 +9376,1965-05-03 11:14:00 +1561,1967-09-29 12:45:00 +1267,1968-06-06 10:03:00 +2998,1968-07-17 23:40:00 +6462,1965-10-08 18:18:00 +9521,1965-04-24 09:02:00 +5346,1965-11-22 14:14:00 +4975,1967-09-25 03:25:00 +7321,1968-01-17 19:30:00 +7214,1966-06-27 13:37:00 +296,1967-10-02 10:31:00 +1568,1966-07-27 22:25:00 +1385,1967-11-24 09:22:00 +6730,1965-10-30 13:16:00 +7684,1969-10-15 07:55:00 +7831,1968-04-13 22:38:00 +1820,1966-09-25 09:47:00 +3511,1966-07-20 06:53:00 +9633,1965-11-21 07:30:00 +5563,1965-04-15 10:04:00 +3609,1965-09-16 10:17:00 +3838,1968-09-05 07:01:00 +9249,1968-10-07 16:24:00 +7820,1967-12-18 20:41:00 +4362,1966-04-12 20:31:00 +7796,1967-03-08 11:04:00 +5231,1968-03-04 04:24:00 +9839,1965-10-16 09:35:00 +8515,1967-05-30 08:46:00 +8484,1966-02-28 16:40:00 +3007,1965-11-30 00:40:00 +4732,1965-10-23 22:12:00 +5612,1969-05-19 13:55:00 +3061,1967-10-17 02:45:00 +9034,1965-06-17 12:06:00 +7396,1969-02-09 11:23:00 +2589,1969-08-06 15:37:00 +5391,1968-08-04 13:40:00 +3701,1966-04-15 09:18:00 +8674,1966-05-16 07:10:00 +5101,1965-01-06 08:11:00 +5763,1966-02-20 20:22:00 +1973,1968-08-24 01:45:00 +8881,1966-10-09 21:15:00 +2775,1968-10-17 18:59:00 +2661,1965-04-01 12:47:00 +4370,1968-11-13 12:50:00 +7926,1967-02-18 14:42:00 +5452,1968-08-12 20:31:00 +575,1965-02-19 12:09:00 +5021,1966-11-05 13:55:00 +6003,1966-01-29 18:41:00 +9391,1965-06-29 15:27:00 +4614,1965-03-25 17:19:00 +7050,1969-05-03 06:20:00 +7165,1968-04-04 22:56:00 +7597,1968-07-12 13:33:00 +706,1968-02-17 16:55:00 +7509,1966-06-14 07:10:00 +7343,1969-04-02 05:21:00 +1881,1965-09-25 19:55:00 +8844,1966-03-02 09:54:00 +6212,1969-03-09 14:40:00 +776,1965-07-10 10:54:00 +1630,1967-08-15 00:11:00 +6181,1969-03-04 02:50:00 +4344,1968-07-31 03:49:00 +4492,1966-09-27 01:59:00 +9661,1969-01-26 15:07:00 +4412,1967-09-10 10:34:00 +2085,1968-05-15 04:54:00 +7551,1966-09-29 19:23:00 +8995,1966-05-07 17:31:00 +9120,1967-05-24 00:20:00 +7903,1968-10-28 11:16:00 +9890,1965-01-28 02:34:00 +8260,1968-01-20 19:01:00 +661,1966-11-25 23:06:00 +4922,1966-12-05 19:40:00 +6825,1967-12-31 19:40:00 +1094,1969-08-07 11:39:00 +7511,1967-02-13 08:33:00 +1536,1969-09-19 17:51:00 +5546,1969-08-03 23:24:00 +1919,1968-01-15 18:35:00 +4048,1966-06-10 07:54:00 +1938,1969-06-20 08:09:00 +4988,1968-10-12 04:56:00 +7913,1965-12-11 00:41:00 +2137,1966-04-17 07:31:00 +4699,1968-07-20 00:47:00 +4790,1965-06-03 17:32:00 +2424,1967-09-01 04:15:00 +2477,1965-08-21 18:41:00 +2746,1969-02-22 20:23:00 +888,1968-10-18 16:13:00 +6308,1966-07-07 03:54:00 +519,1968-08-13 12:50:00 +5104,1967-10-11 21:37:00 +7852,1969-01-24 08:01:00 +8421,1966-12-15 21:29:00 +4908,1965-06-16 04:39:00 +373,1968-09-12 04:24:00 +5918,1969-08-07 15:46:00 +3771,1966-03-31 09:11:00 +5308,1966-07-19 04:53:00 +295,1968-07-29 05:02:00 +4964,1965-10-08 00:51:00 +3777,1969-02-06 05:45:00 +5862,1967-09-16 10:17:00 +4531,1966-02-03 01:09:00 +6401,1965-12-15 06:00:00 +284,1967-07-04 02:40:00 +9852,1965-01-02 09:35:00 +7274,1968-08-28 05:34:00 +9212,1968-02-24 02:35:00 +9854,1968-06-03 17:12:00 +3973,1968-08-23 23:05:00 +3983,1968-11-29 02:59:00 +8635,1968-06-22 05:41:00 +4449,1969-05-18 20:45:00 +5840,1965-07-26 20:54:00 +9640,1966-12-31 13:55:00 +4400,1965-02-21 17:18:00 +6657,1966-11-16 06:53:00 +2201,1969-08-21 20:48:00 +7233,1969-06-17 12:44:00 +8812,1969-11-09 18:50:00 +8926,1966-02-03 08:02:00 +5347,1965-05-30 08:15:00 +8545,1966-02-12 14:59:00 +4800,1965-06-20 07:05:00 +4096,1967-11-10 05:02:00 +539,1967-03-26 08:49:00 +7043,1966-05-23 10:58:00 +6212,1969-09-20 19:11:00 +5976,1965-09-08 16:03:00 +1181,1966-07-10 04:52:00 +3828,1966-09-15 13:43:00 +222,1969-03-26 09:38:00 +1529,1969-09-16 00:32:00 +2303,1966-10-11 02:17:00 +6581,1968-03-19 14:01:00 +2380,1968-01-25 05:45:00 +3842,1966-07-05 15:16:00 +1074,1965-01-11 10:28:00 +6716,1969-07-06 09:32:00 +7606,1968-03-15 15:30:00 +2808,1969-10-25 21:32:00 +2444,1968-07-06 15:03:00 +4424,1969-10-23 15:18:00 +2244,1968-10-17 10:32:00 +2620,1968-08-09 14:02:00 +3621,1969-05-17 15:06:00 +14,1969-02-02 13:55:00 +3285,1966-05-16 17:40:00 +540,1965-03-28 16:15:00 +1003,1969-08-04 13:30:00 +9854,1969-08-31 07:41:00 +1741,1968-07-16 03:54:00 +932,1965-08-24 11:14:00 +1978,1969-12-08 22:26:00 +5595,1965-05-13 17:51:00 +6256,1967-03-02 23:33:00 +9818,1969-04-24 22:58:00 +3884,1967-01-05 02:59:00 +4183,1968-06-18 07:01:00 +4445,1968-02-14 02:26:00 +4492,1966-07-28 07:01:00 +7960,1967-07-01 22:01:00 +443,1968-04-27 09:31:00 +8991,1969-05-16 10:42:00 +3532,1969-01-02 20:43:00 +7024,1969-03-08 06:11:00 +5141,1968-03-30 10:23:00 +4061,1968-04-14 04:30:00 +774,1966-04-11 05:09:00 +7585,1965-11-17 00:00:00 +559,1967-08-05 03:58:00 +4418,1967-11-09 21:39:00 +8259,1968-04-13 04:35:00 +6578,1969-08-25 16:11:00 +4520,1968-11-24 19:13:00 +1958,1966-12-17 07:33:00 +1503,1965-07-13 15:59:00 +3119,1969-09-04 15:55:00 +608,1967-01-03 21:05:00 +7830,1967-07-04 03:49:00 +4130,1968-02-22 08:46:00 +9691,1965-04-11 04:21:00 +7958,1965-10-07 15:08:00 +9646,1966-09-01 01:26:00 +4278,1967-09-17 19:16:00 +6121,1965-08-18 19:39:00 +9061,1965-08-23 19:24:00 +5854,1968-05-17 23:46:00 +3628,1966-03-11 19:50:00 +3280,1968-06-11 12:10:00 +2442,1969-12-15 08:53:00 +6327,1967-10-23 19:40:00 +2853,1968-12-26 03:47:00 +7169,1969-08-04 23:11:00 +6760,1968-01-02 09:03:00 +8736,1966-06-10 16:05:00 +5919,1965-12-13 14:50:00 +9396,1969-10-02 15:40:00 +2624,1967-03-08 19:55:00 +845,1969-11-13 01:54:00 +6078,1967-07-25 06:45:00 +2825,1966-12-13 19:26:00 +1038,1968-06-09 05:16:00 +1410,1968-02-04 00:05:00 +9134,1967-12-28 15:51:00 +1717,1965-09-13 15:02:00 +3536,1968-01-10 12:19:00 +9009,1967-12-23 13:16:00 +8687,1969-03-28 00:45:00 +243,1969-10-29 01:30:00 +9628,1966-11-08 11:52:00 +4589,1966-08-18 20:50:00 +3388,1967-03-28 11:42:00 +8385,1968-05-14 02:49:00 +8948,1969-04-19 08:07:00 +3693,1966-08-16 11:59:00 +2291,1968-01-29 09:23:00 +34,1966-05-28 05:04:00 +8641,1969-11-05 22:31:00 +5402,1967-09-24 04:30:00 +1988,1968-06-26 07:43:00 +7124,1966-08-30 00:30:00 +434,1969-08-05 22:23:00 +6392,1967-07-12 18:26:00 +1888,1965-09-18 04:09:00 +7062,1966-03-17 14:33:00 +8838,1966-02-22 05:13:00 +4509,1968-07-05 07:25:00 +8890,1969-12-22 19:08:00 +7793,1966-07-08 09:12:00 +2091,1968-11-24 10:39:00 +7374,1967-12-01 08:20:00 +6443,1969-01-05 01:33:00 +1094,1967-08-15 06:20:00 +2869,1968-11-05 13:37:00 +6487,1967-03-29 10:01:00 +890,1965-07-11 22:38:00 +2348,1965-05-12 17:30:00 +5996,1966-01-11 18:46:00 +8002,1968-07-16 21:43:00 +5523,1965-08-17 11:55:00 +2027,1967-01-11 01:38:00 +9306,1967-07-25 05:20:00 +9628,1968-04-27 22:56:00 +5859,1966-06-17 16:28:00 +9613,1965-04-03 01:10:00 +8260,1965-10-05 15:11:00 +4649,1968-06-19 21:43:00 +9377,1968-03-19 23:25:00 +5262,1967-01-20 16:33:00 +8922,1965-02-28 18:26:00 +6601,1967-09-27 14:53:00 +6352,1967-06-02 06:24:00 +5343,1969-05-10 19:06:00 +4145,1969-10-14 04:19:00 +1938,1968-01-28 00:03:00 +4691,1969-06-16 05:24:00 +498,1967-03-05 19:25:00 +2121,1965-04-16 10:10:00 +1874,1968-05-18 02:04:00 +4280,1967-01-28 21:25:00 +3291,1966-12-13 12:37:00 +832,1968-11-15 19:12:00 +9116,1967-07-01 17:41:00 +7160,1968-11-05 11:11:00 +4735,1969-10-14 00:16:00 +5641,1967-12-02 23:19:00 +2212,1969-12-13 20:04:00 +2435,1965-11-26 09:39:00 +9164,1965-10-07 22:07:00 +1608,1969-01-22 02:50:00 +1259,1965-10-17 00:45:00 +5398,1969-04-15 12:39:00 +1439,1968-06-21 12:48:00 +8433,1966-08-24 13:24:00 +5274,1966-04-08 05:17:00 +9499,1967-04-20 20:19:00 +1587,1966-08-14 17:11:00 +5756,1965-07-29 04:31:00 +24,1965-08-18 01:55:00 +8297,1969-03-17 15:19:00 +5221,1967-10-30 22:10:00 +3064,1966-11-29 09:35:00 +1259,1966-04-05 08:16:00 +6303,1968-11-26 09:00:00 +3096,1969-05-02 09:35:00 +2117,1966-04-05 15:53:00 +293,1969-04-22 04:16:00 +3068,1965-04-06 16:38:00 +3351,1965-11-27 02:15:00 +7302,1969-02-24 08:22:00 +9588,1966-11-25 14:16:00 +3034,1966-10-03 01:56:00 +617,1965-06-01 09:47:00 +8707,1965-10-22 08:46:00 +7038,1965-09-09 04:36:00 +877,1966-09-15 06:50:00 +8590,1968-01-29 20:27:00 +3194,1968-03-07 09:22:00 +5717,1965-11-24 10:47:00 +5532,1965-02-14 09:41:00 +9575,1966-05-09 02:01:00 +122,1968-10-11 22:14:00 +4104,1969-07-14 09:35:00 +8312,1965-04-12 04:49:00 +2034,1968-09-11 01:37:00 +1876,1968-10-21 05:33:00 +3969,1969-07-01 08:26:00 +7744,1969-06-18 02:48:00 +3159,1967-11-05 23:02:00 +5207,1968-10-10 08:00:00 +5400,1968-06-27 06:15:00 +7941,1969-02-17 10:36:00 +3291,1966-12-17 10:37:00 +1975,1968-05-05 09:02:00 +6164,1969-06-24 15:16:00 +9131,1967-10-15 02:30:00 +4815,1969-07-30 07:15:00 +4314,1968-07-01 21:46:00 +1274,1966-07-05 00:41:00 +5155,1968-07-04 12:23:00 +4372,1968-03-21 00:26:00 +8489,1968-08-10 15:53:00 +1007,1966-05-16 17:25:00 +6468,1968-08-04 04:55:00 +2454,1969-02-09 11:18:00 +7511,1967-04-13 17:46:00 +4291,1968-03-05 09:55:00 +3348,1968-11-02 23:49:00 +9238,1965-09-06 01:57:00 +1413,1966-07-09 17:46:00 +9179,1967-09-26 10:54:00 +9088,1967-04-19 15:48:00 +5860,1967-10-02 20:41:00 +6225,1968-07-20 08:53:00 +8940,1969-01-18 19:58:00 +5957,1967-02-16 17:10:00 +6010,1965-03-31 15:05:00 +6951,1968-04-17 17:59:00 +2295,1966-12-21 00:33:00 +8196,1968-12-18 09:42:00 +573,1965-09-27 14:43:00 +2723,1965-11-06 10:30:00 +9322,1967-06-30 21:25:00 +5331,1967-01-02 14:05:00 +7563,1965-11-02 11:37:00 +3221,1965-10-26 06:05:00 +4438,1965-08-31 21:17:00 +4956,1967-02-03 05:47:00 +2436,1966-03-19 20:21:00 +1619,1969-05-26 23:59:00 +6756,1966-04-29 09:25:00 +8326,1965-05-26 23:34:00 +6671,1968-07-24 13:26:00 +5245,1966-03-18 17:25:00 +6538,1967-11-24 22:07:00 +6586,1967-12-28 00:55:00 +781,1966-01-18 03:14:00 +3511,1969-11-12 06:59:00 +9784,1966-02-12 14:09:00 +6142,1968-07-24 05:38:00 +5006,1967-03-20 22:07:00 +5017,1967-10-20 07:28:00 +9857,1965-07-22 10:08:00 +1217,1967-09-22 13:08:00 +8118,1967-10-30 00:18:00 +1089,1967-02-07 00:39:00 +2913,1965-09-26 09:58:00 +6782,1965-05-24 12:09:00 +1006,1967-04-06 16:54:00 +7817,1966-04-21 02:01:00 +1485,1967-09-05 15:05:00 +1254,1968-08-14 06:57:00 +3446,1967-03-14 17:35:00 +958,1967-05-19 07:08:00 +8023,1967-10-08 13:47:00 +6054,1968-04-16 06:07:00 +7332,1967-02-27 22:19:00 +3983,1968-10-17 08:51:00 +548,1967-07-08 02:09:00 +8429,1969-01-30 04:51:00 +8897,1969-06-09 21:20:00 +352,1967-04-25 22:29:00 +5536,1969-06-09 12:54:00 +8146,1966-11-03 18:51:00 +3581,1965-09-01 08:49:00 +342,1968-09-17 05:46:00 +8529,1968-11-19 12:59:00 +1514,1969-07-11 16:53:00 +5976,1966-11-18 07:38:00 +7597,1967-12-30 22:43:00 +2035,1969-06-17 05:18:00 +4685,1967-11-24 17:46:00 +3660,1966-10-16 14:29:00 +4780,1968-05-11 22:04:00 +1607,1969-09-04 11:10:00 +2966,1966-05-14 02:44:00 +6079,1968-11-01 05:26:00 +5317,1966-09-01 21:50:00 +3551,1966-10-25 06:29:00 +3950,1967-09-09 02:03:00 +8241,1966-05-17 00:49:00 +6402,1965-09-06 20:44:00 +6048,1965-03-29 14:40:00 +3744,1965-10-18 02:05:00 +2779,1967-12-28 17:32:00 +9627,1969-01-23 10:19:00 +6788,1968-07-20 12:44:00 +1574,1969-03-18 06:27:00 +1580,1967-01-08 04:58:00 +5993,1966-09-03 15:10:00 +6826,1968-03-28 17:48:00 +2704,1968-05-22 22:39:00 +8536,1968-08-12 07:19:00 +6315,1969-07-10 12:48:00 +3848,1965-12-30 01:21:00 +2016,1966-05-10 12:22:00 +4330,1967-09-02 05:34:00 +106,1967-12-26 06:05:00 +3186,1969-07-17 08:19:00 +6404,1965-07-10 11:29:00 +9114,1966-01-19 15:22:00 +7577,1969-11-05 11:51:00 +8015,1966-05-21 15:21:00 +1662,1968-03-11 15:30:00 +8975,1969-01-16 04:37:00 +3977,1968-05-10 07:50:00 +8935,1965-12-02 10:05:00 +8604,1968-10-25 20:36:00 +4157,1966-12-22 02:17:00 +1950,1965-07-27 06:50:00 +7089,1967-06-05 01:46:00 +148,1966-01-02 22:43:00 +2278,1969-06-25 01:42:00 +2125,1968-03-13 13:14:00 +7038,1967-02-19 01:30:00 +836,1966-10-25 22:40:00 +7220,1966-12-12 00:29:00 +7743,1965-04-07 08:29:00 +9641,1967-11-03 22:14:00 +6314,1968-08-25 13:04:00 +2442,1967-05-03 21:12:00 +4713,1966-02-21 02:53:00 +4393,1968-08-02 03:05:00 +8174,1966-11-03 05:48:00 +6971,1968-08-26 08:50:00 +610,1968-10-31 15:08:00 +5988,1968-05-13 02:21:00 +894,1965-12-30 00:55:00 +1167,1966-05-19 21:11:00 +2056,1966-02-17 22:38:00 +7527,1965-02-16 10:15:00 +7650,1966-07-10 02:17:00 +7434,1966-04-08 09:38:00 +8980,1968-05-25 01:33:00 +50,1968-10-11 17:14:00 +2936,1965-06-03 20:28:00 +504,1965-05-04 04:27:00 +5486,1969-01-17 14:56:00 +4327,1968-09-26 15:44:00 +5650,1968-01-13 12:13:00 +5419,1969-01-21 16:33:00 +1511,1965-11-28 03:35:00 +9136,1968-07-28 08:43:00 +5164,1969-08-02 08:03:00 +9864,1965-06-03 01:29:00 +5425,1965-08-10 19:56:00 +921,1968-10-23 04:44:00 +7373,1965-03-20 10:36:00 +5102,1965-07-21 21:58:00 +7958,1966-10-09 01:48:00 +7524,1969-11-12 09:19:00 +6249,1968-02-08 00:36:00 +9863,1966-03-22 16:51:00 +1291,1966-02-15 16:08:00 +6925,1967-06-03 19:00:00 +1876,1969-04-14 16:43:00 +3178,1965-06-01 15:24:00 +9444,1969-02-21 19:43:00 +4539,1966-08-08 05:21:00 +995,1966-09-09 18:33:00 +2578,1968-07-03 22:36:00 +759,1968-10-17 01:15:00 +5872,1969-12-08 21:58:00 +4633,1968-11-02 10:06:00 +4753,1969-11-30 04:47:00 +9311,1966-08-10 23:10:00 +3529,1969-06-12 03:42:00 +5915,1965-10-25 12:47:00 +7107,1967-12-20 09:41:00 +8738,1968-06-13 13:51:00 +4953,1968-05-15 00:02:00 +7728,1969-02-09 10:09:00 +6182,1966-09-02 21:35:00 +3341,1966-08-13 11:11:00 +3510,1965-08-05 19:39:00 +6868,1965-03-24 23:15:00 +6638,1967-01-11 01:56:00 +3410,1968-08-20 04:04:00 +1977,1968-01-14 11:16:00 +4394,1966-11-09 04:34:00 +9342,1965-04-20 00:15:00 +9285,1965-01-16 04:32:00 +5529,1967-07-09 07:13:00 +4478,1967-05-20 12:14:00 +8712,1969-01-09 13:52:00 +5344,1966-10-03 02:53:00 +5958,1968-11-12 14:18:00 +8006,1969-01-02 22:58:00 +4438,1967-10-01 08:25:00 +9856,1967-02-28 06:47:00 +8188,1967-02-05 22:31:00 +6860,1969-06-19 22:29:00 +7095,1968-06-13 15:32:00 +996,1967-04-05 03:56:00 +3932,1968-02-01 18:38:00 +2689,1965-03-24 15:36:00 +550,1967-06-26 13:42:00 +2312,1968-12-09 12:58:00 +6729,1967-11-21 18:39:00 +3935,1966-01-19 16:22:00 +7514,1968-04-16 12:48:00 +6967,1969-09-01 11:35:00 +4209,1968-10-25 18:15:00 +4454,1965-05-25 01:48:00 +9949,1965-12-23 18:57:00 +981,1965-04-07 13:17:00 +7469,1965-07-31 18:34:00 +5572,1966-08-16 13:20:00 +3440,1969-07-21 15:18:00 +436,1968-10-28 19:01:00 +866,1968-12-09 20:10:00 +2201,1966-05-24 20:44:00 +7744,1969-07-24 14:21:00 +8046,1968-07-23 11:18:00 +3489,1965-11-19 00:28:00 +3261,1969-10-05 22:26:00 +4736,1969-12-01 21:45:00 +8740,1965-12-28 19:31:00 +2195,1969-06-03 07:49:00 +1290,1968-12-09 13:42:00 +170,1966-05-03 20:28:00 +4569,1967-12-21 14:22:00 +3043,1967-11-04 14:17:00 +6970,1968-10-29 20:26:00 +5408,1968-06-22 00:37:00 +5608,1965-12-18 19:43:00 +6142,1966-12-29 09:25:00 +1641,1966-11-23 21:32:00 +3318,1968-11-19 02:56:00 +1997,1965-02-06 11:53:00 +5357,1969-12-18 16:20:00 +6509,1968-10-23 12:03:00 +727,1967-08-26 20:52:00 +3660,1967-10-17 23:00:00 +4255,1969-02-16 22:32:00 +3608,1969-07-18 03:05:00 +5817,1966-01-09 10:52:00 +664,1966-01-03 21:38:00 +1658,1967-04-28 06:48:00 +5719,1967-10-28 15:34:00 +7191,1969-01-24 21:15:00 +3135,1965-06-09 19:48:00 +9510,1965-03-26 09:53:00 +5750,1967-02-01 13:41:00 +2844,1967-04-28 19:05:00 +9323,1967-04-30 08:45:00 +6681,1966-01-27 11:42:00 +350,1965-09-28 00:57:00 +279,1967-02-17 22:10:00 +6557,1969-02-28 18:26:00 +1089,1965-01-05 08:03:00 +2815,1967-09-03 12:36:00 +6335,1968-07-20 22:21:00 +6955,1969-11-06 09:36:00 +2916,1968-05-12 20:22:00 +4284,1967-07-08 07:43:00 +1352,1969-03-11 03:13:00 +3812,1969-07-29 11:46:00 +3719,1967-01-04 17:04:00 +4853,1966-03-28 23:11:00 +5798,1967-05-03 07:06:00 +3392,1965-10-25 11:10:00 +2145,1969-07-04 04:25:00 +2376,1968-07-31 03:56:00 +7725,1968-11-04 12:06:00 +7480,1965-01-13 06:44:00 +1707,1965-12-20 09:48:00 +2468,1967-12-17 02:32:00 +6087,1967-04-25 21:05:00 +3503,1969-11-13 05:11:00 +3658,1969-06-30 01:14:00 +1328,1969-05-23 08:05:00 +7940,1967-04-12 18:32:00 +5484,1969-04-05 10:12:00 +4983,1969-10-01 16:48:00 +1319,1969-06-06 07:39:00 +4624,1965-05-12 07:39:00 +3842,1967-03-25 17:38:00 +2310,1966-03-09 22:42:00 +7067,1968-08-17 05:12:00 +1509,1968-02-20 00:24:00 +7156,1967-07-22 02:13:00 +1810,1965-10-26 03:10:00 +970,1969-03-21 02:17:00 +7068,1965-05-16 07:48:00 +5356,1965-04-27 08:42:00 +3280,1965-09-04 07:59:00 +9392,1968-06-28 23:48:00 +8100,1968-08-27 13:43:00 +3488,1969-10-12 12:16:00 +1293,1966-12-09 13:43:00 +4099,1967-08-21 06:00:00 +3115,1965-10-06 12:38:00 +8285,1968-11-13 08:28:00 +9963,1965-02-01 02:16:00 +7840,1966-05-07 12:06:00 +9747,1965-07-07 01:29:00 +8576,1966-09-04 05:55:00 +7290,1965-06-02 17:47:00 +6329,1967-02-21 00:48:00 +225,1966-02-22 08:50:00 +6604,1966-09-19 19:17:00 +7799,1966-09-11 08:36:00 +4923,1969-01-06 17:50:00 +2087,1968-07-31 17:45:00 +4782,1968-07-09 15:55:00 +9179,1966-05-24 23:34:00 +3586,1966-12-11 02:35:00 +8928,1969-08-15 09:36:00 +5061,1966-04-30 02:13:00 +1995,1965-05-21 12:06:00 +9895,1969-05-25 12:57:00 +5615,1969-07-21 10:35:00 +264,1965-04-05 18:23:00 +2261,1968-02-07 08:50:00 +4,1965-01-28 12:33:00 +7704,1967-01-18 15:44:00 +6651,1967-11-09 18:15:00 +4463,1966-04-25 03:22:00 +3230,1968-06-02 09:47:00 +599,1968-12-20 09:38:00 +6420,1965-12-07 17:31:00 +6729,1968-11-09 04:59:00 +3884,1965-12-18 07:33:00 +5620,1968-05-10 22:44:00 +7578,1966-09-17 17:56:00 +7739,1968-09-23 06:13:00 +9783,1966-11-21 23:51:00 +9943,1967-03-17 23:12:00 +3064,1967-12-11 22:44:00 +4177,1965-05-07 16:25:00 +158,1965-08-31 00:07:00 +4008,1968-01-11 21:04:00 +3447,1969-10-03 13:21:00 +8432,1966-04-18 14:43:00 +130,1966-03-26 20:18:00 +4011,1969-03-18 08:33:00 +9924,1969-05-16 03:03:00 +1289,1966-05-21 02:51:00 +8103,1967-01-26 02:07:00 +4802,1966-10-12 07:27:00 +6464,1967-03-01 04:47:00 +4003,1965-01-21 09:01:00 +1210,1966-06-16 09:15:00 +2327,1969-07-20 12:22:00 +6937,1966-04-26 11:07:00 +5416,1966-10-17 06:28:00 +6315,1965-12-02 12:34:00 +9563,1968-04-10 08:12:00 +6463,1966-11-02 21:50:00 +1164,1967-09-13 10:54:00 +4632,1968-08-28 12:02:00 +6707,1966-04-24 08:05:00 +6833,1966-09-25 19:41:00 +3207,1967-04-30 01:34:00 +2886,1965-08-14 17:13:00 +7114,1968-08-13 19:53:00 +9967,1969-01-05 09:29:00 +8957,1967-02-05 12:08:00 +9765,1968-03-12 12:04:00 +1934,1968-11-28 09:35:00 +5833,1968-03-14 15:14:00 +8021,1967-03-03 19:01:00 +2553,1969-08-17 15:16:00 +5094,1969-08-16 14:59:00 +2159,1965-04-20 05:32:00 +7340,1967-06-15 09:47:00 +4980,1967-12-09 13:42:00 +6979,1968-07-15 23:04:00 +3927,1968-09-10 10:58:00 +7906,1969-04-11 06:56:00 +528,1969-10-24 16:40:00 +244,1969-05-31 18:45:00 +4019,1966-09-09 23:28:00 +7599,1968-11-18 16:02:00 +2475,1966-06-13 07:54:00 +4499,1966-02-10 15:20:00 +7085,1965-02-20 07:15:00 +6045,1966-04-16 10:27:00 +5132,1966-08-08 07:26:00 +7718,1968-01-19 08:04:00 +1446,1967-12-08 16:01:00 +8550,1969-03-24 18:09:00 +8495,1968-03-25 02:03:00 +3278,1969-07-15 06:44:00 +8932,1967-03-28 11:21:00 +623,1969-05-01 10:52:00 +330,1966-01-27 21:50:00 +6552,1969-12-01 09:12:00 +5952,1969-02-09 08:06:00 +2049,1965-03-31 07:54:00 +3183,1969-06-02 05:44:00 +342,1969-10-17 20:19:00 +8386,1965-09-08 20:32:00 +4117,1969-05-25 14:45:00 +3892,1966-11-23 08:14:00 +7272,1967-03-06 05:11:00 +1943,1968-04-13 03:40:00 +639,1967-06-24 08:11:00 +9345,1969-09-17 00:35:00 +6493,1966-03-30 16:44:00 +1797,1968-11-04 01:45:00 +3672,1966-05-08 06:36:00 +3099,1969-08-22 19:48:00 +1243,1967-12-25 15:56:00 +4998,1968-05-14 01:46:00 +5629,1968-06-06 15:41:00 +9917,1969-06-12 12:57:00 +6973,1968-12-06 06:12:00 +6963,1967-12-05 21:56:00 +4571,1967-06-08 14:57:00 +771,1966-01-24 23:52:00 +8758,1969-04-25 16:34:00 +4061,1969-07-21 17:24:00 +4391,1965-01-05 13:24:00 +7890,1968-10-15 10:45:00 +7239,1966-08-28 17:26:00 +5610,1967-02-22 21:33:00 +2404,1967-10-19 06:30:00 +9878,1967-10-25 00:37:00 +232,1965-09-20 12:53:00 +4119,1968-10-20 15:17:00 +6382,1967-05-30 04:19:00 +2057,1967-12-15 07:55:00 +8273,1968-08-20 14:34:00 +5882,1968-03-25 14:30:00 +2948,1967-09-17 17:31:00 +3011,1966-01-15 22:11:00 +8609,1969-10-04 22:10:00 +9598,1968-08-17 19:51:00 +89,1967-01-01 23:49:00 +5250,1967-09-27 15:11:00 +5620,1966-06-20 16:50:00 +8385,1965-12-10 08:45:00 +6898,1965-03-06 23:33:00 +6658,1966-08-18 19:05:00 +134,1968-10-26 14:06:00 +5407,1966-09-11 18:51:00 +7081,1967-11-14 16:10:00 +6826,1966-02-26 12:39:00 +4715,1966-07-29 19:31:00 +7734,1967-10-10 09:14:00 +204,1966-06-08 10:50:00 +2268,1966-11-08 01:54:00 +8520,1966-03-06 07:42:00 +7214,1967-04-08 07:00:00 +5631,1969-01-04 20:28:00 +6395,1968-12-19 23:40:00 +2755,1969-09-04 20:27:00 +4714,1965-09-30 21:19:00 +8395,1965-06-12 02:26:00 +7877,1967-05-29 16:26:00 +2070,1965-01-31 19:07:00 +629,1967-03-08 01:38:00 +4215,1965-04-20 20:12:00 +8673,1966-10-04 23:06:00 +6746,1968-08-24 17:51:00 +8369,1966-02-04 10:44:00 +1838,1968-08-11 18:00:00 +3499,1966-03-28 08:06:00 +3317,1965-11-20 08:22:00 +9289,1969-04-21 18:05:00 +256,1965-12-14 23:24:00 +7306,1968-12-15 04:17:00 +8974,1966-08-15 03:01:00 +5148,1965-05-31 16:22:00 +117,1969-08-19 06:04:00 +811,1966-10-18 22:10:00 +5447,1965-01-24 05:57:00 +904,1965-01-11 10:38:00 +5189,1965-02-06 04:13:00 +1647,1969-08-27 13:34:00 +4596,1967-10-15 09:07:00 +7175,1965-08-07 07:42:00 +8164,1968-05-07 16:30:00 +6022,1969-08-21 16:02:00 +7893,1966-04-28 07:16:00 +2902,1968-11-10 22:52:00 +4988,1967-09-01 02:13:00 +3421,1967-10-02 12:23:00 +2407,1966-08-18 05:29:00 +1886,1969-05-26 04:47:00 +6400,1969-07-07 13:59:00 +845,1966-11-14 05:58:00 +9072,1968-05-23 14:18:00 +2089,1965-07-28 14:05:00 +9759,1969-08-24 05:57:00 +1413,1965-06-30 10:00:00 +6298,1967-10-10 17:14:00 +693,1968-08-23 22:45:00 +5886,1966-09-23 16:05:00 +4666,1965-03-22 23:54:00 +3983,1966-08-10 17:45:00 +8512,1965-03-15 01:09:00 +5941,1966-04-17 11:16:00 +5701,1965-03-26 11:32:00 +9757,1967-08-31 12:48:00 +4577,1969-12-12 09:01:00 +5518,1965-08-12 22:48:00 +2176,1968-06-06 12:48:00 +112,1969-11-21 20:19:00 +7189,1967-09-19 21:09:00 +8701,1965-01-06 23:40:00 +7974,1968-05-18 14:40:00 +2658,1969-08-07 03:36:00 +5657,1968-12-09 19:33:00 +2880,1966-11-10 19:24:00 +3777,1967-03-30 09:20:00 +7594,1966-01-28 03:19:00 +6553,1969-12-15 10:09:00 +6201,1965-08-22 19:24:00 +3139,1969-11-01 16:21:00 +9722,1966-12-21 09:32:00 +4379,1966-01-04 11:53:00 +9110,1965-09-10 09:28:00 +4062,1965-03-09 07:37:00 +9463,1969-10-18 15:42:00 +9415,1965-02-08 23:26:00 +4136,1968-03-03 11:50:00 +2411,1969-04-27 07:17:00 +1466,1968-09-03 04:14:00 +9670,1966-05-30 01:42:00 +3350,1967-07-10 12:23:00 +6813,1967-08-24 10:25:00 +558,1967-01-23 20:02:00 +3410,1967-05-27 13:16:00 +2295,1966-08-28 13:05:00 +3849,1966-10-13 11:46:00 +539,1969-05-12 20:43:00 +1602,1966-09-22 17:00:00 +7903,1967-10-09 17:38:00 +7520,1968-11-02 21:02:00 +817,1967-04-17 12:28:00 +8677,1966-01-25 15:41:00 +9105,1965-09-11 17:02:00 +7710,1968-11-26 15:49:00 +6022,1967-10-15 14:17:00 +8547,1968-12-14 07:56:00 +887,1968-05-01 19:31:00 +966,1969-09-28 09:32:00 +7438,1968-01-03 12:34:00 +9049,1965-09-01 06:19:00 +6979,1969-12-17 04:30:00 +9199,1966-05-03 12:15:00 +6399,1968-10-18 22:11:00 +3224,1969-05-17 14:27:00 +699,1967-07-16 23:05:00 +905,1965-10-23 08:10:00 +4135,1968-02-20 13:27:00 +4234,1967-06-06 20:45:00 +4327,1969-02-13 07:17:00 +7666,1969-11-24 21:16:00 +9533,1965-07-17 09:46:00 +3653,1967-10-12 09:50:00 +9272,1967-06-08 21:15:00 +312,1969-06-01 08:50:00 +7443,1968-07-30 05:51:00 +8656,1966-08-06 10:04:00 +9142,1965-12-03 05:42:00 +2004,1969-12-21 15:29:00 +1641,1967-12-09 20:10:00 +5213,1965-11-15 08:28:00 +1203,1965-02-28 23:11:00 +4656,1967-05-29 00:10:00 +3057,1967-04-09 18:53:00 +1464,1968-06-07 18:49:00 +3424,1968-12-18 07:26:00 +4499,1965-09-16 03:11:00 +4396,1965-06-24 16:19:00 +3072,1966-07-09 00:57:00 +4873,1965-10-17 10:58:00 +8312,1966-07-30 00:03:00 +6523,1969-08-05 22:33:00 +3150,1967-09-09 20:21:00 +6849,1967-06-16 13:50:00 +7896,1965-02-07 03:53:00 +2628,1968-10-06 12:55:00 +2928,1968-10-23 10:18:00 +9327,1966-10-08 08:40:00 +2799,1965-01-29 14:51:00 +6437,1967-03-27 10:38:00 +6311,1966-06-23 13:29:00 +7006,1966-11-25 00:32:00 +5231,1968-06-14 18:09:00 +1683,1965-10-23 01:36:00 +9028,1966-12-04 09:50:00 +2026,1965-05-06 16:11:00 +3281,1968-07-25 08:30:00 +3692,1966-04-15 04:49:00 +9203,1969-07-31 02:30:00 +1312,1969-05-18 01:39:00 +3984,1965-11-02 04:36:00 +2936,1965-05-26 23:04:00 +7645,1965-07-25 01:38:00 +1483,1965-05-19 22:24:00 +3171,1968-09-05 07:56:00 +1403,1965-07-14 03:19:00 +4515,1967-03-18 05:25:00 +569,1966-06-16 02:48:00 +3344,1968-07-24 04:34:00 +5628,1969-02-07 01:13:00 +8231,1965-01-08 08:08:00 +8350,1965-02-28 15:39:00 +3708,1968-08-23 22:00:00 +8758,1969-07-08 15:46:00 +9838,1966-11-11 23:08:00 +2935,1968-04-29 23:06:00 +9350,1965-11-28 04:52:00 +4423,1965-02-12 10:00:00 +5450,1965-06-07 02:16:00 +6093,1965-08-09 06:13:00 +4837,1967-03-05 21:19:00 +8578,1966-06-18 10:43:00 +2977,1969-08-25 23:44:00 +1040,1967-03-28 20:46:00 +7170,1969-08-07 09:00:00 +6787,1966-05-14 12:24:00 +655,1968-02-22 06:18:00 +6900,1966-01-15 02:22:00 +9232,1969-08-20 01:32:00 +710,1968-04-17 09:39:00 +4789,1969-04-16 02:28:00 +4372,1966-01-11 16:56:00 +5545,1968-06-29 07:29:00 +1911,1967-10-23 21:57:00 +7112,1965-03-06 20:13:00 +5594,1968-06-29 20:13:00 +775,1967-08-22 03:12:00 +2303,1967-10-06 23:17:00 +4698,1969-05-04 20:28:00 +6705,1969-08-08 07:39:00 +227,1967-12-18 11:49:00 +3501,1965-12-04 22:45:00 +5242,1965-12-05 09:27:00 +9914,1967-12-13 18:48:00 +7415,1967-07-07 07:45:00 +7769,1967-09-13 20:41:00 +6183,1969-02-04 02:02:00 +1830,1965-03-17 22:45:00 +2849,1965-11-04 20:16:00 +8789,1965-02-26 05:19:00 +3125,1967-10-16 14:24:00 +3016,1967-10-19 19:13:00 +6718,1967-05-23 20:15:00 +691,1969-05-25 05:32:00 +9146,1966-10-12 23:39:00 +4276,1965-10-04 12:21:00 +7732,1968-12-05 03:40:00 +3232,1968-06-02 23:51:00 +4061,1965-07-16 20:55:00 +9767,1966-01-04 12:01:00 +7743,1968-09-12 08:20:00 +1401,1965-04-19 17:09:00 +764,1965-06-25 08:54:00 +9184,1969-05-11 11:17:00 +796,1965-08-14 19:00:00 +6251,1967-02-06 11:15:00 +6972,1966-04-09 22:20:00 +87,1969-12-02 10:35:00 +5362,1968-07-19 08:10:00 +7781,1965-04-07 14:11:00 +3450,1965-07-17 08:21:00 +2628,1969-07-06 18:20:00 +4177,1966-12-31 02:24:00 +7906,1967-11-03 15:17:00 +8942,1967-06-24 00:06:00 +6991,1966-09-24 11:13:00 +4494,1969-02-21 05:37:00 +2843,1968-09-09 17:28:00 +1338,1968-11-11 01:48:00 +7705,1968-09-22 11:31:00 +8514,1967-06-26 12:16:00 +6026,1967-06-22 16:02:00 +3665,1965-10-09 02:06:00 +7642,1966-11-20 18:56:00 +5708,1966-10-20 15:17:00 +473,1968-08-14 22:22:00 +8237,1967-07-26 09:12:00 +9745,1969-09-25 14:16:00 +5675,1967-09-28 06:07:00 +149,1967-03-24 12:10:00 +949,1968-09-04 08:43:00 +2891,1966-04-04 03:08:00 +8383,1967-04-18 07:00:00 +2795,1965-12-14 14:15:00 +8879,1969-09-01 06:00:00 +3583,1965-11-05 19:04:00 +1359,1969-10-31 06:54:00 +3201,1965-06-09 14:18:00 +1833,1968-03-19 19:38:00 +2380,1966-10-21 18:11:00 +2398,1968-07-10 16:17:00 +7977,1967-08-02 10:21:00 +5213,1967-12-16 20:50:00 +9470,1965-01-05 01:35:00 +760,1969-03-01 05:11:00 +865,1969-03-16 00:55:00 +8767,1968-01-10 14:50:00 +1484,1968-06-15 17:48:00 +937,1967-12-24 18:01:00 +15,1965-06-12 12:24:00 +4077,1965-09-17 20:34:00 +4177,1968-03-24 03:40:00 +1248,1969-12-21 00:12:00 +4923,1966-02-27 12:43:00 +6704,1968-09-06 15:19:00 +1765,1967-11-21 07:12:00 +5880,1968-10-22 01:57:00 +3567,1967-07-02 10:37:00 +1689,1968-05-05 21:36:00 +4154,1965-12-20 16:50:00 +1198,1969-06-10 19:44:00 +7578,1969-11-28 23:57:00 +8928,1968-04-03 05:57:00 +2405,1967-07-07 08:47:00 +2015,1968-10-28 17:30:00 +207,1967-09-04 11:24:00 +6963,1966-01-02 06:14:00 +1433,1966-10-27 10:40:00 +7906,1966-02-15 19:25:00 +496,1969-07-10 09:20:00 +9800,1965-10-04 16:11:00 +4210,1969-02-21 08:02:00 +5419,1966-07-31 22:00:00 +965,1965-06-14 14:39:00 +2161,1965-12-07 20:15:00 +5646,1969-03-02 06:06:00 +2531,1968-01-10 17:18:00 +4691,1968-01-02 11:12:00 +7194,1967-10-26 12:39:00 +7365,1965-10-31 09:04:00 +5960,1968-07-18 09:14:00 +4754,1969-04-02 00:46:00 +1127,1965-06-03 20:57:00 +2093,1965-03-30 09:35:00 +8265,1965-12-10 14:27:00 +4566,1966-01-27 10:14:00 +4627,1969-05-01 23:16:00 +88,1969-09-04 02:24:00 +8190,1965-05-03 22:46:00 +7020,1966-03-19 14:22:00 +7200,1965-05-10 17:47:00 +6255,1967-03-08 15:34:00 +6903,1969-09-01 14:12:00 +9797,1969-08-28 05:21:00 +9742,1965-11-03 12:26:00 +2641,1965-06-29 22:32:00 +8127,1968-11-28 19:31:00 +3110,1966-05-27 08:02:00 +8348,1966-01-17 19:40:00 +3934,1965-08-31 01:56:00 +8338,1966-06-23 05:11:00 +8735,1969-03-02 23:35:00 +8827,1967-02-22 04:45:00 +310,1968-10-20 17:02:00 +4675,1965-03-21 18:58:00 +3585,1967-06-23 03:33:00 +2538,1969-04-01 13:14:00 +1684,1968-05-07 09:34:00 +1913,1965-02-07 12:28:00 +4064,1967-10-20 17:17:00 +7961,1965-07-07 00:29:00 +3701,1965-03-28 22:35:00 +8164,1967-05-29 11:37:00 +3539,1969-07-13 19:33:00 +6281,1969-07-29 20:00:00 +2677,1968-04-27 17:04:00 +2221,1966-07-18 22:08:00 +563,1966-02-05 10:54:00 +2987,1965-11-20 21:51:00 +6889,1965-04-09 05:44:00 +1787,1969-03-27 15:40:00 +9086,1965-04-20 13:48:00 +7777,1969-12-27 16:20:00 +7044,1969-10-15 03:09:00 +4986,1966-09-06 21:41:00 +7881,1965-05-18 14:13:00 +4597,1968-08-02 04:53:00 +9942,1968-04-10 17:39:00 +4334,1968-03-25 21:42:00 +4177,1968-12-25 18:07:00 +474,1969-04-07 19:41:00 +6683,1968-12-02 05:39:00 +3367,1967-06-11 05:06:00 +8739,1969-06-13 00:51:00 +7655,1965-10-11 21:25:00 +7654,1967-08-16 18:36:00 +4136,1969-12-09 15:36:00 +843,1965-09-26 05:30:00 +7246,1967-07-24 21:37:00 +2916,1969-12-25 18:06:00 +6448,1965-10-05 21:51:00 +2988,1965-08-03 10:06:00 +5481,1966-06-24 21:44:00 +3902,1967-12-03 09:30:00 +8747,1965-05-15 02:58:00 +1505,1968-08-20 11:07:00 +3058,1968-03-28 22:28:00 +7823,1969-03-08 00:23:00 +6953,1967-09-08 11:49:00 +236,1965-02-14 08:52:00 +4553,1965-09-22 16:38:00 +250,1968-10-04 21:37:00 +4290,1966-07-04 21:01:00 +8757,1965-10-09 17:57:00 +3929,1969-04-05 03:55:00 +9959,1966-06-18 15:07:00 +936,1969-11-13 21:57:00 +3853,1965-01-22 06:16:00 +9637,1968-05-18 12:45:00 +6090,1965-02-01 20:06:00 +8336,1966-09-09 19:56:00 +8239,1968-09-08 02:06:00 +7010,1965-03-11 07:20:00 +1328,1969-05-20 08:39:00 +5681,1967-07-04 20:09:00 +2002,1967-12-04 03:10:00 +7480,1969-08-27 04:37:00 +8377,1966-01-03 21:41:00 +9345,1965-07-29 07:50:00 +6546,1967-05-12 01:43:00 +7720,1969-02-06 03:59:00 +3987,1967-03-07 19:55:00 +5136,1965-01-19 15:36:00 +6583,1967-01-21 22:31:00 +287,1966-08-09 15:02:00 +6901,1967-11-02 12:16:00 +5139,1969-10-27 02:45:00 +3251,1966-12-03 20:06:00 +4530,1967-06-26 03:33:00 +5354,1965-03-16 02:41:00 +4251,1969-09-30 02:35:00 +4370,1965-08-18 05:37:00 +795,1965-02-14 09:44:00 +517,1965-02-01 07:11:00 +1471,1969-09-01 04:43:00 +8660,1965-04-25 06:03:00 +6716,1969-03-21 04:41:00 +610,1967-02-03 07:26:00 +4310,1968-09-30 22:59:00 +6915,1969-10-03 21:45:00 +7831,1968-11-07 12:04:00 +7897,1968-09-15 21:58:00 +5946,1969-03-25 06:27:00 +7816,1965-12-14 22:51:00 +9673,1968-02-15 16:24:00 +4117,1969-04-28 22:15:00 +3708,1968-08-18 17:32:00 +9872,1968-08-02 13:18:00 +9759,1965-10-22 13:07:00 +6523,1968-03-19 07:01:00 +3349,1969-06-29 08:25:00 +5033,1967-08-25 09:32:00 +4604,1965-05-30 08:46:00 +8417,1966-06-02 07:01:00 +9950,1965-04-02 09:00:00 +8585,1966-12-27 02:17:00 +5722,1966-07-08 01:20:00 +3272,1965-10-09 02:21:00 +1421,1967-11-27 16:53:00 +8571,1965-01-11 10:37:00 +6660,1969-08-30 06:20:00 +3402,1967-11-13 12:24:00 +7894,1965-09-05 17:52:00 +6735,1969-07-14 19:39:00 +6610,1966-10-17 14:29:00 +7939,1965-07-19 13:17:00 +481,1965-01-24 13:37:00 +8073,1969-09-23 02:34:00 +1651,1968-10-13 22:28:00 +192,1965-02-24 12:24:00 +1346,1969-08-18 13:22:00 +7977,1965-02-25 08:33:00 +8882,1965-08-30 14:32:00 +3632,1966-08-05 20:22:00 +9707,1965-06-21 12:47:00 +3957,1967-01-03 04:40:00 +385,1967-06-10 08:36:00 +906,1969-06-15 07:53:00 +3784,1965-06-03 18:23:00 +23,1967-10-24 04:34:00 +1221,1966-03-22 05:00:00 +1409,1967-09-06 04:32:00 +4101,1967-01-14 01:01:00 +7812,1967-07-09 16:25:00 +9895,1966-07-19 10:37:00 +1577,1969-05-15 07:35:00 +3311,1969-08-27 18:11:00 +1907,1968-11-15 23:26:00 +5282,1966-09-19 22:17:00 +621,1966-04-07 01:58:00 +6087,1969-12-03 20:55:00 +9120,1966-12-30 07:48:00 +3145,1967-12-22 16:12:00 +8236,1967-09-22 06:36:00 +5156,1966-05-17 02:49:00 +701,1965-02-27 09:06:00 +1063,1966-07-22 02:21:00 +4517,1968-09-05 21:04:00 +4771,1968-11-18 01:20:00 +6463,1967-04-07 16:04:00 +2809,1965-12-11 07:55:00 +6749,1965-03-10 22:46:00 +8070,1965-07-30 05:53:00 +1541,1969-03-19 18:51:00 +7440,1968-08-08 07:53:00 +8692,1969-12-22 12:22:00 +3137,1965-11-12 23:49:00 +706,1969-01-07 20:39:00 +7161,1967-12-23 08:15:00 +3517,1967-01-15 11:46:00 +1993,1969-09-25 06:38:00 +4286,1967-06-24 04:42:00 +7033,1967-07-16 07:57:00 +8901,1965-04-14 14:24:00 +9165,1967-11-11 20:25:00 +1386,1965-11-16 19:47:00 +6201,1965-06-26 13:15:00 +2670,1968-01-13 07:23:00 +7216,1969-11-29 07:22:00 +5058,1966-06-11 22:49:00 +2819,1966-10-17 23:33:00 +4060,1969-09-23 13:54:00 +4442,1965-03-06 09:52:00 +1240,1969-11-11 09:06:00 +1332,1966-09-09 11:43:00 +891,1967-04-14 10:30:00 +2478,1965-03-16 08:26:00 +7511,1967-12-08 02:15:00 +6548,1965-12-23 11:47:00 +2291,1966-08-17 11:26:00 +2878,1967-08-26 08:21:00 +1327,1969-10-11 01:59:00 +3102,1965-10-30 20:14:00 +2871,1965-11-23 18:20:00 +6512,1965-05-25 22:54:00 +9516,1967-02-26 23:05:00 +3699,1969-01-27 20:26:00 +4308,1967-08-21 09:36:00 +9974,1965-05-05 13:27:00 +1637,1967-11-05 12:00:00 +7120,1969-11-27 00:47:00 +5493,1968-10-20 06:02:00 +7548,1968-03-24 06:19:00 +483,1967-07-12 12:26:00 +38,1969-07-27 05:17:00 +4616,1967-08-27 17:39:00 +6781,1968-01-09 11:39:00 +5363,1967-03-19 12:28:00 +2455,1968-06-05 10:53:00 +5915,1965-04-20 18:25:00 +6366,1967-01-03 21:31:00 +6565,1966-09-06 03:17:00 +2580,1965-03-02 14:31:00 +597,1965-10-10 13:46:00 +6673,1967-09-23 17:57:00 +5305,1965-10-08 10:55:00 +5629,1967-02-06 20:04:00 +1192,1967-11-07 16:16:00 +5412,1967-09-14 09:38:00 +4216,1968-04-09 21:35:00 +4722,1968-11-28 21:23:00 +6076,1968-04-02 22:20:00 +9990,1967-06-09 02:48:00 +4194,1968-03-30 15:58:00 +6442,1968-06-23 04:16:00 +7196,1967-11-28 07:15:00 +880,1966-02-15 04:33:00 +1153,1967-11-30 12:31:00 +1231,1967-07-28 16:47:00 +8330,1967-05-11 10:39:00 +8646,1966-03-03 03:30:00 +4329,1968-07-20 00:44:00 +5796,1969-06-07 09:22:00 +4701,1966-10-13 13:00:00 +5056,1969-05-05 19:10:00 +8212,1966-03-01 00:56:00 +648,1965-03-30 07:22:00 +8393,1965-12-12 05:35:00 +5926,1965-10-20 08:38:00 +6691,1966-07-26 17:55:00 +197,1968-05-27 09:56:00 +8896,1965-06-30 01:04:00 +9135,1968-06-11 09:06:00 +6424,1968-01-25 04:06:00 +5890,1965-10-03 04:44:00 +922,1969-10-04 07:01:00 +186,1965-08-24 23:49:00 +1227,1969-03-02 11:18:00 +9575,1965-11-24 01:21:00 +5758,1967-03-10 05:39:00 +2432,1969-09-28 23:34:00 +8832,1969-10-29 14:42:00 +9435,1969-05-30 12:20:00 +1993,1966-07-12 03:19:00 +4846,1966-03-21 17:04:00 +9344,1965-04-19 01:28:00 +5548,1965-04-15 19:29:00 +5050,1966-07-13 11:42:00 +2129,1965-08-23 23:25:00 +416,1967-12-21 06:40:00 +2225,1967-02-05 01:24:00 +6233,1968-05-18 11:28:00 +4359,1966-10-06 10:11:00 +4685,1967-06-10 23:40:00 +6288,1965-08-14 15:09:00 +1093,1969-12-01 12:55:00 +9065,1968-05-05 00:13:00 +4307,1968-07-10 05:05:00 +6103,1966-09-01 01:45:00 +5324,1967-04-24 16:02:00 +4516,1966-04-17 12:07:00 +1461,1966-05-09 02:45:00 +6934,1969-12-04 12:14:00 +5299,1969-11-04 21:06:00 +1918,1967-04-12 15:31:00 +6573,1966-02-11 16:37:00 +6106,1969-10-17 01:11:00 +8782,1967-11-29 10:06:00 +3776,1965-05-19 08:54:00 +4588,1965-04-21 03:24:00 +1692,1968-04-20 18:03:00 +7526,1965-09-03 03:14:00 +2450,1966-07-04 10:56:00 +8080,1969-11-21 13:29:00 +6593,1968-11-07 14:36:00 +4663,1969-10-22 18:05:00 +3243,1967-02-25 13:18:00 +6171,1965-05-08 15:29:00 +7827,1967-01-03 20:54:00 +2187,1965-08-21 08:45:00 +2846,1967-09-28 10:46:00 +8603,1967-06-22 02:06:00 +4984,1968-08-26 15:02:00 +8654,1965-02-05 01:33:00 +432,1967-11-27 02:15:00 +3648,1966-08-16 04:17:00 +9285,1969-02-21 22:12:00 +4835,1965-02-23 00:35:00 +5382,1967-12-30 20:36:00 +7618,1969-04-05 08:34:00 +2307,1967-08-14 07:38:00 +8449,1967-09-23 00:28:00 +444,1966-06-18 02:48:00 +7333,1969-08-29 21:56:00 +421,1966-07-25 02:02:00 +5530,1969-11-11 00:55:00 +3682,1968-07-14 14:56:00 +271,1965-10-09 05:42:00 +6404,1966-08-06 22:17:00 +6604,1968-04-13 02:30:00 +6354,1965-09-11 23:40:00 +8013,1967-02-25 06:07:00 +1988,1966-02-07 19:06:00 +1584,1969-06-23 11:25:00 +6257,1968-11-11 06:39:00 +8259,1966-06-27 20:14:00 +32,1968-01-27 10:36:00 +9851,1966-01-20 15:51:00 +8422,1968-08-15 04:07:00 +2445,1967-10-08 18:36:00 +6224,1966-01-22 07:00:00 +5463,1966-09-20 15:08:00 +5752,1969-04-08 00:46:00 +1805,1966-03-03 13:16:00 +119,1969-09-30 19:52:00 +2265,1967-11-29 00:15:00 +7337,1969-07-31 06:17:00 +523,1967-06-13 04:55:00 +7703,1965-12-04 05:51:00 +4379,1969-08-11 07:57:00 +897,1966-05-10 10:56:00 +1198,1968-12-06 19:50:00 +7157,1967-03-11 03:06:00 +2899,1967-07-23 17:21:00 +9106,1966-07-06 11:32:00 +6667,1967-09-30 09:03:00 +3618,1968-02-29 17:17:00 +7530,1969-01-09 01:30:00 +8690,1966-05-29 02:49:00 +3511,1966-07-01 19:14:00 +1912,1969-02-12 11:50:00 +4863,1965-04-26 05:41:00 +5020,1969-11-12 14:13:00 +8089,1967-09-13 13:46:00 +6334,1966-12-17 14:55:00 +3383,1968-09-03 03:07:00 +7569,1966-01-22 13:49:00 +7937,1968-04-26 11:23:00 +9291,1966-03-04 07:27:00 +1868,1966-09-13 18:49:00 +5054,1968-06-16 09:10:00 +2914,1968-11-22 08:59:00 +8181,1966-05-27 17:39:00 +7966,1969-08-09 20:20:00 +9843,1969-03-26 10:02:00 +3503,1965-10-10 08:08:00 +9137,1967-04-23 16:33:00 +3802,1966-12-28 12:07:00 +9664,1965-09-03 21:13:00 +386,1969-11-25 04:46:00 +6638,1968-11-07 18:08:00 +8264,1969-09-14 09:57:00 +1707,1966-03-01 14:40:00 +40,1967-06-27 19:04:00 +2130,1966-10-13 05:47:00 +9724,1967-11-23 05:58:00 +6340,1969-11-23 09:00:00 +1082,1969-03-21 17:01:00 +1627,1968-01-01 10:45:00 +5152,1966-04-18 11:51:00 +7454,1967-04-01 10:10:00 +8911,1966-10-16 06:43:00 +6431,1966-05-04 21:17:00 +2187,1965-03-20 12:51:00 +8242,1967-07-10 06:54:00 +7712,1967-06-14 13:22:00 +3101,1968-01-14 14:05:00 +5040,1969-10-27 18:20:00 +6013,1965-03-22 00:42:00 +9496,1966-12-06 06:44:00 +5466,1967-06-12 23:58:00 +8287,1967-05-19 11:04:00 +3793,1968-04-21 23:21:00 +2748,1968-09-04 11:01:00 +2841,1969-01-18 01:16:00 +4388,1968-10-22 05:35:00 +4373,1969-11-02 10:34:00 +407,1967-08-12 03:00:00 +511,1966-10-26 07:13:00 +1089,1965-03-27 21:32:00 +1641,1967-02-28 08:44:00 +1432,1965-07-01 01:15:00 +4702,1965-12-13 02:03:00 +2595,1969-04-16 08:34:00 +3816,1967-03-09 07:58:00 +6933,1966-01-18 08:44:00 +51,1968-03-11 21:31:00 +6239,1965-02-05 02:06:00 +1937,1969-10-07 07:45:00 +925,1966-01-26 19:01:00 +3828,1969-06-02 04:42:00 +2183,1967-02-12 15:40:00 +1487,1966-02-10 13:52:00 +8031,1966-04-30 11:10:00 +5248,1967-07-07 16:39:00 +3995,1967-04-03 12:31:00 +9531,1968-06-17 20:10:00 +285,1969-04-01 17:42:00 +8701,1965-01-25 07:32:00 +7732,1968-07-15 18:46:00 +6971,1969-11-12 08:50:00 +9149,1969-05-19 15:10:00 +9398,1965-07-31 02:20:00 +3493,1968-08-23 00:22:00 +6794,1968-05-31 09:17:00 +7619,1966-05-13 14:39:00 +9967,1965-10-18 06:50:00 +4231,1967-12-29 08:04:00 +1051,1965-05-23 02:45:00 +2232,1965-04-27 00:31:00 +4788,1966-05-27 11:23:00 +5659,1966-07-22 15:51:00 +8490,1969-05-16 21:29:00 +4211,1967-06-11 16:35:00 +5194,1966-01-25 18:41:00 +3968,1965-10-28 13:54:00 +3517,1968-08-21 16:21:00 +4369,1969-04-02 02:58:00 +2412,1965-02-13 10:15:00 +7284,1966-10-20 03:05:00 +985,1967-06-20 10:30:00 +1127,1966-09-21 03:36:00 +6524,1967-10-04 12:54:00 +795,1969-07-26 06:05:00 +9413,1969-02-11 00:29:00 +5378,1968-01-29 07:34:00 +5158,1967-04-11 20:56:00 +2842,1966-01-01 01:44:00 +8082,1966-02-11 01:24:00 +5489,1968-03-15 13:26:00 +2241,1966-09-27 13:10:00 +1618,1967-03-18 17:24:00 +8193,1968-12-14 05:59:00 +4142,1969-01-01 07:48:00 +7460,1969-10-21 14:28:00 +4437,1966-11-29 16:25:00 +2786,1965-10-22 16:00:00 +6582,1966-03-03 15:23:00 +6282,1965-04-02 21:54:00 +5951,1968-03-12 05:48:00 +3036,1965-12-02 16:13:00 +9687,1966-04-15 03:02:00 +6037,1966-01-30 05:45:00 +3792,1966-03-01 16:24:00 +9798,1969-12-22 14:17:00 +7873,1968-06-11 14:02:00 +2396,1968-05-13 18:05:00 +1618,1967-11-28 09:56:00 +2217,1968-10-23 03:17:00 +8831,1965-09-06 17:44:00 +6762,1965-02-08 15:33:00 +4486,1967-07-26 16:03:00 +1558,1967-09-29 05:31:00 +3137,1966-10-09 15:42:00 +9469,1967-08-17 17:12:00 +1230,1967-10-15 03:39:00 +8110,1966-10-26 06:59:00 +7184,1968-06-05 00:11:00 +6457,1966-10-21 11:48:00 +6882,1967-10-16 10:20:00 +2704,1967-11-01 18:32:00 +2524,1967-05-09 03:52:00 +146,1967-12-19 12:06:00 +9489,1965-06-08 00:53:00 +41,1965-04-10 16:57:00 +9931,1967-10-06 11:32:00 +1039,1967-03-25 05:21:00 +3901,1965-09-09 22:50:00 +8294,1966-04-30 20:56:00 +116,1965-05-23 07:45:00 +5634,1967-06-05 05:38:00 +8302,1965-11-06 08:28:00 +7526,1965-04-21 17:28:00 +323,1968-09-24 02:28:00 +9851,1965-09-12 09:57:00 +265,1967-09-18 01:01:00 +7667,1968-09-30 19:27:00 +9950,1966-02-13 13:09:00 +6359,1965-05-24 16:03:00 +5608,1967-03-11 21:19:00 +1315,1966-03-09 01:10:00 +4230,1965-11-25 05:48:00 +3519,1966-07-25 08:19:00 +6168,1967-01-14 11:24:00 +674,1966-01-02 14:19:00 +2611,1966-07-13 21:10:00 +6648,1968-10-06 12:29:00 +5543,1966-05-22 12:17:00 +4861,1965-07-30 06:55:00 +4942,1969-05-11 10:51:00 +4855,1967-11-14 11:39:00 +2216,1969-04-04 12:17:00 +3181,1966-02-04 13:13:00 +1462,1967-03-31 15:21:00 +4136,1967-01-19 22:30:00 +4464,1967-02-09 09:01:00 +2827,1965-12-26 00:04:00 +8391,1967-05-22 11:53:00 +2428,1969-10-03 04:27:00 +5224,1966-07-05 19:39:00 +3046,1969-05-08 13:11:00 +789,1965-01-27 06:51:00 +7683,1968-07-22 03:37:00 +4017,1969-06-13 10:54:00 +2562,1967-11-12 20:28:00 +7824,1966-07-25 18:45:00 +6717,1965-08-21 14:12:00 +9407,1967-12-17 07:31:00 +6906,1966-02-12 14:05:00 +3762,1969-08-22 07:12:00 +8622,1965-06-16 05:35:00 +2644,1965-05-21 07:30:00 +7283,1968-01-11 00:17:00 +6857,1966-11-11 08:19:00 +8462,1966-11-30 03:54:00 +7942,1967-06-16 04:42:00 +8934,1965-04-21 06:37:00 +2289,1969-10-13 10:20:00 +2399,1967-04-17 22:30:00 +4468,1968-08-21 06:58:00 +8187,1967-11-04 00:51:00 +1859,1966-03-04 17:37:00 +3389,1966-09-21 05:32:00 +7071,1965-12-15 23:59:00 +7533,1967-01-04 19:47:00 +3123,1965-08-28 06:38:00 +4456,1966-09-30 04:00:00 +5238,1968-09-18 09:18:00 +2107,1965-09-27 14:21:00 +1006,1969-10-15 16:02:00 +1689,1967-03-22 19:46:00 +4158,1965-12-14 13:10:00 +8201,1967-07-08 12:07:00 +7162,1968-11-29 22:03:00 +4246,1966-10-02 13:12:00 +7495,1967-07-25 14:48:00 +8456,1965-07-04 01:35:00 +7669,1967-06-06 06:05:00 +3287,1969-03-03 03:32:00 +1573,1969-02-05 23:18:00 +4420,1965-07-29 00:56:00 +2887,1969-12-27 22:30:00 +8180,1967-01-30 06:34:00 +8466,1965-07-10 17:53:00 +2035,1967-07-20 15:05:00 +1786,1965-04-09 19:40:00 +707,1967-09-16 17:03:00 +6488,1965-09-12 18:28:00 +7385,1969-03-09 18:30:00 +4606,1969-02-09 23:50:00 +466,1966-07-20 21:53:00 +2055,1966-12-23 01:09:00 +7985,1968-03-13 22:26:00 +2989,1966-07-25 02:47:00 +4969,1967-01-17 08:53:00 +7797,1965-01-29 15:36:00 +7727,1966-08-01 23:05:00 +1293,1965-06-06 15:55:00 +3420,1968-10-12 06:23:00 +9924,1967-10-08 00:23:00 +824,1968-09-19 18:43:00 +5743,1965-12-30 19:51:00 +1798,1969-05-13 10:00:00 +1187,1969-04-19 04:50:00 +7291,1966-02-06 06:09:00 +8393,1968-09-20 12:38:00 +7829,1966-11-15 20:49:00 +5266,1969-08-06 05:46:00 +8355,1969-10-20 14:35:00 +5865,1969-04-01 08:22:00 +3235,1968-04-20 13:48:00 +7793,1968-06-07 06:43:00 +846,1966-12-22 20:36:00 +4788,1965-10-19 03:46:00 +7922,1966-05-16 16:30:00 +4007,1967-12-11 03:46:00 +3518,1969-03-25 15:15:00 +7243,1968-03-16 07:47:00 +8314,1968-08-21 12:29:00 +3503,1967-06-04 10:21:00 +7118,1965-06-11 06:21:00 +1816,1965-06-24 20:22:00 +3593,1966-07-31 05:52:00 +1607,1969-03-28 03:48:00 +2738,1967-11-22 11:32:00 +3973,1967-03-04 18:53:00 +7618,1967-07-26 02:11:00 +3055,1969-06-14 08:09:00 +2366,1967-07-10 15:16:00 +2421,1966-11-29 03:40:00 +520,1967-08-30 20:45:00 +4540,1968-03-17 08:33:00 +6025,1968-03-19 07:12:00 +1658,1969-07-10 05:18:00 +6118,1967-04-30 21:26:00 +6498,1965-07-06 23:34:00 +9201,1967-04-23 05:10:00 +2169,1967-05-07 15:13:00 +6955,1968-01-21 21:56:00 +3390,1967-12-29 21:08:00 +6120,1965-07-02 23:58:00 +3425,1968-08-30 14:38:00 +980,1965-04-09 14:00:00 +150,1968-05-15 04:42:00 +1278,1965-11-01 15:59:00 +138,1969-08-25 23:42:00 +8073,1966-09-09 17:45:00 +442,1966-07-07 01:37:00 +5017,1969-11-19 01:06:00 +9193,1967-04-03 23:50:00 +5161,1966-05-15 00:11:00 +874,1966-06-14 04:36:00 +5782,1969-11-26 08:17:00 +1647,1969-04-08 13:39:00 +1823,1969-06-01 22:15:00 +2766,1969-05-24 11:59:00 +5792,1965-12-05 00:16:00 +9999,1968-02-07 22:24:00 +6694,1969-03-29 11:49:00 +286,1967-02-18 04:43:00 +7481,1965-05-04 22:44:00 +233,1966-01-09 19:37:00 +3875,1969-08-08 17:40:00 +6981,1966-02-18 07:42:00 +8006,1965-10-11 04:43:00 +3158,1969-02-15 18:31:00 +4132,1967-01-16 11:53:00 +3424,1967-05-01 17:45:00 +2696,1969-10-25 15:20:00 +9635,1969-05-19 01:08:00 +2417,1967-02-04 08:39:00 +9622,1966-05-15 11:31:00 +7588,1966-11-26 12:14:00 +902,1966-01-22 08:58:00 +798,1965-11-07 02:30:00 +2963,1965-08-28 19:11:00 +1081,1968-12-16 21:44:00 +2225,1967-10-29 05:42:00 +8036,1968-08-24 20:05:00 +9571,1969-05-17 11:27:00 +2985,1965-12-03 01:39:00 +2394,1965-06-12 06:39:00 +3193,1967-02-17 06:23:00 +88,1967-09-09 18:38:00 +29,1965-01-18 11:23:00 +4093,1969-07-27 18:57:00 +6089,1966-10-12 14:33:00 +7797,1966-03-23 21:11:00 +8371,1968-11-20 12:56:00 +4998,1967-09-10 16:53:00 +4870,1968-09-14 23:18:00 +5143,1969-09-10 07:33:00 +8233,1966-04-05 20:43:00 +563,1966-05-24 23:03:00 +6891,1965-06-22 00:21:00 +9866,1967-07-21 03:09:00 +7294,1969-05-15 13:00:00 +8077,1968-07-21 07:44:00 +6963,1968-03-17 10:16:00 +8453,1967-12-25 03:41:00 +4998,1966-01-18 23:56:00 +8670,1969-10-28 19:34:00 +9131,1967-10-09 08:22:00 +2218,1966-02-17 20:27:00 +3173,1969-10-28 07:00:00 +1408,1968-06-07 22:18:00 +9926,1969-01-03 12:51:00 +4582,1969-05-16 02:13:00 +6710,1967-05-13 00:54:00 +9856,1967-07-25 10:26:00 +2185,1966-10-01 09:02:00 +4743,1969-09-14 05:15:00 +2434,1967-12-13 15:24:00 +3319,1967-12-08 20:33:00 +5602,1968-11-23 01:20:00 +4012,1967-11-05 15:53:00 +4547,1966-07-15 02:49:00 +878,1966-04-24 15:23:00 +8046,1969-10-12 09:11:00 +3163,1966-12-28 10:20:00 +8685,1967-12-18 02:57:00 +4088,1966-08-25 19:11:00 +507,1968-06-17 13:46:00 +2813,1965-08-29 13:04:00 +3773,1967-10-17 17:20:00 +3310,1968-05-11 04:54:00 +1744,1966-01-26 23:49:00 +2748,1965-10-20 08:42:00 +6748,1968-08-18 16:23:00 +2314,1966-02-13 18:39:00 +1236,1968-01-23 15:31:00 +2370,1968-12-03 17:11:00 +8507,1965-12-06 17:48:00 +7151,1968-06-06 15:10:00 +4013,1966-09-24 20:37:00 +3339,1968-05-28 05:52:00 +4287,1966-09-15 03:40:00 +9247,1965-02-25 06:02:00 +9476,1966-01-26 07:25:00 +8956,1966-02-12 19:45:00 +8933,1965-09-23 02:30:00 +2255,1966-04-19 21:25:00 +4836,1969-11-09 04:38:00 +4100,1969-10-20 17:42:00 +50,1969-11-23 12:42:00 +9677,1968-12-25 02:09:00 +7994,1965-05-16 10:52:00 +898,1965-03-20 19:30:00 +1999,1968-10-14 16:48:00 +2825,1965-11-23 20:11:00 +5892,1965-10-15 20:28:00 +1417,1968-12-25 18:06:00 +5631,1969-05-07 02:36:00 +332,1967-08-15 12:01:00 +124,1967-08-13 03:25:00 +8887,1969-07-09 12:21:00 +2099,1965-11-12 18:50:00 +728,1966-03-28 19:45:00 +9647,1967-05-02 20:42:00 +6001,1966-02-10 22:18:00 +9251,1969-01-24 05:13:00 +9533,1966-04-21 02:58:00 +4801,1966-02-27 07:21:00 +809,1968-04-14 04:40:00 +1195,1968-07-19 05:53:00 +7474,1969-01-28 08:09:00 +9182,1967-11-19 10:48:00 +9389,1969-07-06 05:28:00 +6293,1968-07-19 09:03:00 +1974,1969-08-26 23:58:00 +2287,1966-06-06 01:40:00 +5472,1966-02-19 22:04:00 +1271,1968-07-29 08:03:00 +1978,1966-03-25 23:43:00 +204,1968-09-26 02:19:00 +2622,1965-06-03 16:27:00 +4741,1968-05-13 20:28:00 +9282,1969-04-20 16:45:00 +4724,1969-02-19 18:09:00 +442,1965-03-06 00:01:00 +5529,1966-09-17 02:07:00 +2762,1965-02-02 14:05:00 +7639,1968-01-04 20:18:00 +1935,1967-06-10 08:58:00 +71,1969-06-21 08:14:00 +4599,1966-12-06 00:16:00 +5970,1966-04-23 07:45:00 +6341,1968-07-07 06:53:00 +1763,1968-08-21 22:50:00 +9980,1968-01-19 18:50:00 +8104,1969-10-20 03:25:00 +3943,1965-01-04 03:15:00 +3393,1968-01-29 17:38:00 +7288,1965-01-28 08:54:00 +7256,1966-09-04 04:50:00 +150,1969-12-10 04:01:00 +9594,1968-10-24 01:35:00 +4988,1965-07-10 03:32:00 +856,1966-01-15 08:31:00 +8984,1968-01-10 20:50:00 +7497,1965-07-27 18:11:00 +1559,1967-12-12 19:28:00 +2912,1967-04-17 20:33:00 +2060,1967-07-13 13:14:00 +8623,1968-07-25 03:50:00 +8372,1965-12-13 05:33:00 +561,1966-08-17 08:22:00 +7716,1966-05-31 10:47:00 +7766,1967-08-21 02:14:00 +1741,1969-04-23 11:28:00 +3288,1966-09-29 15:00:00 +6301,1969-04-04 02:23:00 +711,1965-10-29 11:34:00 +2187,1967-03-26 22:34:00 +9951,1967-01-17 06:57:00 +6266,1967-01-28 08:09:00 +6952,1968-04-26 14:01:00 +1591,1965-09-24 12:34:00 +412,1969-03-13 12:20:00 +9658,1966-08-07 01:29:00 +4555,1966-07-23 11:40:00 +7798,1969-04-09 19:46:00 +6972,1968-05-30 01:48:00 +5921,1966-02-21 14:30:00 +1911,1965-02-02 14:24:00 +6863,1966-05-06 03:49:00 +4920,1967-11-28 22:11:00 +4104,1967-09-02 20:25:00 +1512,1965-05-16 10:58:00 +6576,1967-01-03 19:41:00 +4828,1967-07-28 11:26:00 +8823,1967-03-06 00:07:00 +659,1965-05-04 22:38:00 +1727,1968-11-13 04:56:00 +4428,1968-03-05 10:58:00 +2103,1969-05-09 23:29:00 +6065,1968-03-17 18:55:00 +160,1966-03-30 13:17:00 +5999,1967-01-11 21:14:00 +7405,1965-01-12 16:24:00 +5849,1966-01-26 13:43:00 +3500,1965-12-07 12:08:00 +934,1967-11-20 19:46:00 +3704,1966-07-28 18:35:00 +3573,1969-01-29 01:40:00 +3227,1968-01-14 21:40:00 +449,1968-04-04 18:18:00 +7468,1967-04-24 18:41:00 +6161,1968-12-22 12:22:00 +3934,1967-10-04 04:40:00 +6029,1968-04-06 07:57:00 +6075,1965-11-13 10:10:00 +9585,1966-05-25 23:24:00 +9304,1965-11-03 23:13:00 +6464,1966-09-08 15:36:00 +8425,1965-05-05 19:40:00 +3612,1966-11-28 09:11:00 +808,1969-05-23 07:48:00 +1020,1967-07-23 05:46:00 +8669,1969-07-25 16:07:00 +2229,1968-08-21 16:52:00 +3027,1968-05-01 06:15:00 +8365,1969-08-09 10:25:00 +396,1966-06-05 22:39:00 +5414,1967-08-15 00:08:00 +5740,1966-04-07 10:59:00 +9611,1968-03-31 16:21:00 +6075,1966-06-04 16:04:00 +4257,1965-11-08 08:14:00 +1574,1966-02-16 04:52:00 +5150,1969-11-11 06:57:00 +1973,1969-04-28 00:07:00 +3686,1965-09-17 19:38:00 +4192,1966-03-14 23:09:00 +260,1967-09-21 10:23:00 +5225,1965-09-18 00:09:00 +8554,1967-08-02 12:28:00 +8875,1968-02-02 23:09:00 +5805,1965-08-27 10:07:00 +3360,1968-07-11 12:26:00 +56,1968-06-25 23:39:00 +5556,1968-07-29 04:37:00 +9646,1966-12-23 21:41:00 +4006,1966-01-13 04:16:00 +6975,1966-12-14 10:06:00 +9738,1966-04-21 13:14:00 +8269,1967-06-14 19:51:00 +7608,1966-11-24 01:35:00 +5761,1966-03-20 00:05:00 +3087,1969-04-21 00:07:00 +8203,1968-01-14 21:52:00 +6305,1968-10-09 18:36:00 +4507,1967-11-05 23:52:00 +8738,1967-07-16 20:52:00 +6543,1966-04-20 19:51:00 +1220,1967-01-06 00:09:00 +8306,1966-10-16 01:54:00 +7543,1969-01-10 12:42:00 +6937,1967-03-25 07:00:00 +5194,1969-05-11 00:18:00 +9395,1967-10-24 11:12:00 +511,1966-10-02 04:25:00 +2884,1965-10-19 10:54:00 +2407,1968-09-15 15:55:00 +367,1967-09-10 05:49:00 +472,1967-03-11 15:33:00 +2997,1965-04-06 02:33:00 +8287,1968-09-02 22:50:00 +5685,1966-01-02 03:17:00 +8465,1966-11-24 07:41:00 +3987,1967-10-01 11:05:00 +6578,1966-07-03 07:08:00 +3527,1969-04-20 17:29:00 +6420,1966-08-05 22:52:00 +2192,1969-04-16 06:00:00 +6453,1968-08-21 05:34:00 +8942,1968-07-27 19:12:00 +6016,1969-08-24 01:26:00 +2813,1966-06-09 22:07:00 +5825,1968-03-07 09:31:00 +2007,1968-07-28 13:07:00 +5165,1968-02-20 23:10:00 +715,1969-09-02 14:23:00 +5369,1965-02-16 23:23:00 +7114,1966-08-01 05:42:00 +2978,1967-12-30 12:07:00 +9938,1965-01-07 03:13:00 +7215,1967-08-26 09:25:00 +9245,1967-02-20 07:26:00 +1176,1965-07-26 03:38:00 +6287,1968-02-06 09:02:00 +5559,1965-05-23 01:04:00 +8247,1968-12-05 04:53:00 +2209,1969-04-17 06:05:00 +6060,1967-10-19 10:02:00 +8931,1965-05-28 00:53:00 +5433,1965-02-09 08:08:00 +9604,1966-05-28 10:24:00 +4027,1969-05-16 00:22:00 +5433,1965-01-11 11:16:00 +7196,1969-12-19 23:02:00 +1771,1966-03-21 13:36:00 +7486,1966-05-17 16:37:00 +4369,1967-05-05 14:46:00 +3144,1966-12-29 19:18:00 +6639,1966-01-27 17:46:00 +908,1967-03-26 15:27:00 +8898,1969-08-10 10:47:00 +9981,1967-01-03 02:59:00 +731,1968-12-28 04:41:00 +9486,1967-10-23 23:10:00 +2707,1966-03-25 09:04:00 +8839,1966-06-29 09:09:00 +9404,1966-05-20 06:44:00 +978,1965-11-02 11:57:00 +1684,1965-10-25 16:24:00 +7866,1968-01-27 07:24:00 +708,1965-08-04 01:19:00 +4133,1967-03-29 17:03:00 +3244,1966-11-24 22:30:00 +7932,1965-04-25 07:06:00 +3111,1966-09-29 19:44:00 +2311,1965-03-14 04:29:00 +8929,1965-04-05 21:50:00 +8313,1967-08-21 17:55:00 +794,1967-11-25 05:00:00 +1867,1969-11-02 01:22:00 +9234,1968-06-11 16:03:00 +9039,1967-09-26 04:37:00 +6734,1969-06-04 20:53:00 +5446,1966-02-08 08:22:00 +6573,1969-06-08 18:21:00 +8733,1965-01-22 12:28:00 +338,1966-12-03 09:59:00 +7772,1966-05-28 09:21:00 +619,1966-05-15 16:30:00 +7150,1966-06-08 08:31:00 +2747,1967-03-16 10:38:00 +2373,1965-05-01 09:18:00 +357,1967-04-12 03:53:00 +1251,1965-02-05 12:15:00 +3859,1965-05-26 12:36:00 +2775,1967-10-21 12:24:00 +4729,1966-07-09 10:19:00 +2584,1968-08-26 17:33:00 +7931,1966-10-09 19:49:00 +3593,1969-07-09 04:27:00 +405,1968-02-24 20:18:00 +5487,1968-11-18 05:11:00 +2259,1966-07-06 06:13:00 +2895,1968-03-09 04:50:00 +9995,1968-08-23 11:30:00 +6641,1968-03-15 07:35:00 +5715,1967-11-20 01:54:00 +4471,1967-02-16 03:15:00 +7723,1966-12-03 13:39:00 +9995,1965-11-24 05:42:00 +3734,1965-09-23 09:44:00 +3630,1967-12-29 05:14:00 +9989,1967-05-29 17:15:00 +2528,1969-03-31 20:38:00 +6077,1968-11-02 19:08:00 +6069,1967-03-19 21:21:00 +2335,1967-09-17 09:53:00 +2490,1966-07-06 15:44:00 +7683,1968-04-24 02:12:00 +3680,1969-07-03 22:08:00 +2106,1967-07-02 07:52:00 +4250,1969-07-19 14:56:00 +9329,1968-01-11 09:21:00 +4080,1968-01-18 00:25:00 +6959,1966-12-28 14:52:00 +616,1967-08-21 19:30:00 +3632,1967-10-24 18:29:00 +5991,1967-06-27 01:59:00 +8558,1966-02-17 13:06:00 +693,1965-09-23 15:33:00 +9099,1969-05-29 14:07:00 +5908,1967-10-27 14:02:00 +5341,1965-05-24 07:14:00 +1678,1965-08-23 04:57:00 +3778,1967-05-06 13:25:00 +7204,1968-08-05 18:52:00 +5725,1968-11-24 21:13:00 +5059,1965-01-19 11:15:00 +9645,1968-12-06 02:12:00 +9763,1969-08-18 09:17:00 +7193,1966-04-25 03:02:00 +6551,1969-06-09 02:47:00 +1116,1965-08-01 13:31:00 +819,1968-03-24 23:41:00 +5069,1965-10-25 13:24:00 +387,1967-07-15 01:56:00 +7176,1968-10-05 08:15:00 +4251,1969-05-11 14:53:00 +4597,1966-10-06 07:55:00 +4204,1969-07-28 12:58:00 +9858,1965-12-18 20:51:00 +2027,1969-01-12 05:12:00 +463,1967-10-21 20:44:00 +3313,1969-12-12 08:08:00 +4007,1967-10-09 19:57:00 +9597,1967-09-27 12:20:00 +9870,1969-02-27 05:41:00 +9920,1966-01-20 19:53:00 +9499,1965-05-10 15:56:00 +8267,1965-07-21 04:19:00 +1652,1969-02-20 22:17:00 +9880,1967-11-01 05:41:00 +2722,1965-07-01 12:57:00 +6609,1965-11-22 18:25:00 +5801,1966-07-27 16:59:00 +2866,1965-10-11 11:52:00 +2827,1965-02-05 04:35:00 +4059,1966-02-15 07:37:00 +5982,1968-05-16 09:24:00 +2670,1967-07-13 14:34:00 +7847,1966-03-28 19:10:00 +4802,1968-09-21 09:59:00 +7064,1966-03-21 08:14:00 +4147,1966-06-11 04:17:00 +2955,1965-05-11 11:40:00 +6845,1966-09-03 01:01:00 +4921,1966-09-08 23:38:00 +7302,1966-01-19 06:47:00 +253,1969-05-17 20:01:00 +1333,1965-12-03 19:43:00 +9938,1965-09-13 19:07:00 +3549,1967-12-03 06:03:00 +7716,1965-02-24 03:47:00 +9616,1967-02-28 04:35:00 +7437,1965-02-24 07:58:00 +9360,1968-01-18 07:42:00 +2242,1967-07-01 07:29:00 +5945,1969-04-28 14:22:00 +7227,1967-10-02 05:49:00 +538,1965-09-12 06:00:00 +1062,1968-09-29 12:40:00 +5809,1968-03-19 16:03:00 +7704,1967-08-25 14:39:00 +3969,1967-09-24 17:17:00 +2806,1966-05-12 02:23:00 +528,1967-10-08 23:10:00 +1361,1966-09-02 05:24:00 +2768,1965-06-13 11:58:00 +3401,1969-03-19 08:13:00 +3496,1965-10-29 00:41:00 +7826,1965-12-24 21:18:00 +2604,1969-03-27 18:17:00 +1461,1969-05-28 06:12:00 +8961,1969-04-27 23:29:00 +1317,1967-02-02 12:13:00 +2749,1967-12-06 14:09:00 +6487,1968-08-09 17:58:00 +3890,1966-09-20 15:43:00 +2319,1969-06-13 12:57:00 +6524,1966-01-01 05:36:00 +3280,1967-01-14 21:55:00 +7075,1965-02-18 21:53:00 +9958,1965-11-30 19:41:00 +5901,1966-05-27 19:39:00 +4991,1965-08-08 06:54:00 +7876,1967-05-11 18:12:00 +5325,1968-06-07 13:59:00 +7173,1968-03-16 10:11:00 +9861,1966-04-22 13:14:00 +3157,1967-12-29 08:30:00 +9586,1969-08-04 12:33:00 +7452,1966-03-20 17:11:00 +7107,1966-10-17 00:36:00 +6239,1967-06-10 00:34:00 +9435,1966-08-24 01:12:00 +8465,1969-10-10 05:53:00 +9780,1967-01-28 02:19:00 +3965,1966-01-08 12:02:00 +2376,1967-01-08 22:28:00 +6328,1968-01-03 18:50:00 +3950,1965-07-15 06:45:00 +4376,1966-11-02 18:58:00 +5286,1969-08-29 16:22:00 +1472,1969-05-10 21:03:00 +5334,1966-06-18 00:56:00 +9521,1965-03-25 09:58:00 +5523,1965-04-07 02:29:00 +9450,1969-05-26 00:12:00 +1029,1965-09-17 22:49:00 +752,1965-12-08 17:54:00 +1885,1968-06-16 07:18:00 +6498,1966-06-30 11:34:00 +9711,1968-10-26 09:21:00 +2392,1965-06-25 00:59:00 +3064,1968-01-25 17:11:00 +7136,1966-05-06 05:46:00 +6704,1969-07-10 01:16:00 +9969,1966-03-27 11:37:00 +761,1967-11-23 21:55:00 +3928,1969-10-13 01:03:00 +5431,1965-06-01 04:00:00 +1153,1968-09-21 23:16:00 +4761,1969-03-30 06:34:00 +5319,1965-08-22 17:47:00 +4609,1965-07-25 17:22:00 +2896,1967-10-02 21:50:00 +8829,1968-05-02 23:34:00 +749,1968-12-15 08:40:00 +3402,1968-02-14 18:49:00 +6971,1967-08-19 14:22:00 +7787,1965-01-10 03:22:00 +3349,1965-12-01 11:20:00 +6584,1966-07-14 13:21:00 +6499,1965-07-06 09:24:00 +6699,1965-10-14 10:52:00 +6620,1967-07-07 14:26:00 +4467,1967-12-15 21:51:00 +8810,1967-08-28 00:37:00 +1957,1965-03-17 03:50:00 +1716,1966-08-22 09:10:00 +811,1968-01-11 14:02:00 +7979,1969-02-04 02:44:00 +435,1966-06-03 17:06:00 +2246,1967-07-29 06:55:00 +6946,1968-05-13 19:43:00 +8170,1967-11-18 13:29:00 +4378,1965-07-26 17:37:00 +4878,1965-03-14 13:51:00 +9671,1965-11-11 20:06:00 +5441,1969-03-15 14:50:00 +5428,1968-05-23 23:44:00 +6723,1967-07-24 06:47:00 +6096,1968-08-26 23:43:00 +8939,1968-05-26 12:54:00 +4596,1969-05-10 16:41:00 +3359,1965-05-09 23:20:00 +2674,1966-04-28 09:56:00 +3449,1966-08-26 18:44:00 +8705,1969-02-18 04:08:00 +1565,1967-09-08 10:44:00 +3857,1967-07-14 13:25:00 +9401,1968-12-04 17:19:00 +8194,1967-05-23 12:02:00 +171,1965-05-16 14:39:00 +9221,1966-10-09 09:00:00 +2903,1968-11-27 10:05:00 +8984,1969-03-07 04:40:00 +1125,1967-01-08 08:06:00 +148,1968-09-06 00:07:00 +9479,1967-04-02 13:39:00 +3022,1966-08-19 17:01:00 +4737,1968-07-01 17:24:00 +4914,1965-05-22 22:33:00 +711,1968-09-23 16:06:00 +8524,1966-02-19 13:41:00 +9814,1967-01-24 11:08:00 +3505,1968-05-06 18:32:00 +570,1969-10-19 19:01:00 +4037,1969-02-08 14:43:00 +9366,1969-01-07 12:46:00 +2383,1965-01-16 13:58:00 +8662,1965-12-26 01:34:00 +1101,1966-10-20 11:08:00 +1870,1966-05-29 23:51:00 +5536,1967-02-04 04:50:00 +9082,1966-06-11 19:22:00 +7143,1968-01-07 00:36:00 +2456,1965-12-08 21:34:00 +6939,1965-02-24 13:43:00 +5584,1967-04-09 16:40:00 +9009,1967-07-17 14:28:00 +9530,1967-07-18 16:33:00 +9367,1965-03-27 19:14:00 +4934,1968-11-02 21:02:00 +5814,1969-12-05 06:08:00 +9268,1968-08-06 14:05:00 +1585,1967-04-21 02:38:00 +3634,1968-07-22 23:24:00 +9579,1968-08-20 09:16:00 +3248,1966-09-28 15:26:00 +3278,1968-08-06 16:23:00 +664,1966-04-18 16:08:00 +8618,1965-05-21 02:20:00 +6000,1967-12-24 10:42:00 +2234,1966-12-07 03:34:00 +5959,1968-12-20 22:10:00 +9274,1966-05-11 23:08:00 +8585,1969-03-13 03:39:00 +8970,1966-05-19 22:39:00 +4802,1967-02-19 11:47:00 +694,1968-07-18 22:08:00 +2023,1968-07-04 19:26:00 +5692,1967-12-01 06:06:00 +5633,1967-03-07 15:30:00 +4526,1967-10-29 18:02:00 +4040,1966-12-05 14:19:00 +1026,1967-12-16 07:12:00 +1759,1966-10-02 08:06:00 +662,1965-07-19 12:01:00 +3438,1965-10-04 17:25:00 +8279,1969-03-02 08:23:00 +1822,1967-07-10 22:26:00 +4109,1966-05-10 19:31:00 +2424,1968-01-31 05:18:00 +9676,1968-02-14 04:37:00 +3529,1966-03-16 11:23:00 +5447,1966-05-21 06:46:00 +6395,1967-06-28 15:08:00 +7668,1968-06-02 07:17:00 +8911,1969-11-23 19:17:00 +5102,1965-02-10 17:37:00 +7603,1969-06-08 15:14:00 +1328,1967-12-23 17:22:00 +9911,1965-11-21 06:34:00 +9189,1968-04-30 23:17:00 +6115,1968-07-07 10:34:00 +4027,1968-02-18 12:53:00 +7939,1968-06-15 04:43:00 +2703,1969-04-21 20:24:00 +9747,1969-04-15 17:56:00 +5294,1965-08-26 13:56:00 +9654,1966-12-10 13:18:00 +3840,1966-06-19 10:26:00 +6165,1969-05-16 08:52:00 +9230,1965-04-05 09:44:00 +5402,1967-08-27 23:06:00 +4534,1966-11-18 17:09:00 +8622,1969-09-17 04:38:00 +5526,1966-04-21 04:13:00 +8438,1969-03-03 20:02:00 +2164,1965-08-14 21:35:00 +9479,1966-09-09 01:49:00 +4691,1965-06-17 21:29:00 +3598,1965-10-20 18:59:00 +6011,1966-07-24 23:31:00 +2279,1967-05-18 08:10:00 +5962,1969-02-28 17:58:00 +280,1965-06-24 19:05:00 +7990,1969-04-25 22:13:00 +5524,1966-12-02 14:47:00 +7896,1965-08-29 18:13:00 +8114,1965-02-09 15:38:00 +8440,1966-09-27 23:25:00 +1621,1968-06-30 13:38:00 +6693,1969-09-09 10:58:00 +343,1966-07-25 18:43:00 +3095,1968-06-23 05:16:00 +8017,1966-04-22 13:20:00 +3679,1968-01-30 14:22:00 +9365,1965-08-15 18:19:00 +9890,1965-05-20 03:50:00 +3341,1965-07-18 09:46:00 +9613,1969-11-07 22:59:00 +3823,1967-07-23 16:43:00 +7809,1969-03-16 13:13:00 +1560,1969-09-02 04:19:00 +9003,1966-10-20 01:34:00 +5162,1967-09-14 00:38:00 +3897,1967-03-22 17:26:00 +7111,1967-02-28 14:54:00 +7670,1969-10-27 04:02:00 +2603,1968-03-30 19:18:00 +3912,1967-09-08 14:24:00 +3813,1966-02-25 10:50:00 +141,1968-08-15 04:34:00 +4200,1968-11-12 04:24:00 +157,1967-12-04 15:38:00 +3431,1965-09-15 16:56:00 +7203,1967-09-18 00:48:00 +8710,1965-11-08 06:45:00 +2772,1969-02-20 05:39:00 +1689,1968-11-27 02:56:00 +1705,1966-10-11 06:47:00 +5459,1968-09-29 17:08:00 +2419,1967-12-29 13:58:00 +9401,1968-04-01 07:46:00 +448,1966-12-28 07:09:00 +8557,1966-01-12 15:47:00 +2331,1968-04-18 01:16:00 +9747,1967-10-27 06:02:00 +2858,1968-10-16 02:14:00 +7750,1967-06-12 18:11:00 +307,1967-05-13 10:57:00 +869,1968-11-01 13:17:00 +5985,1968-04-08 03:11:00 +644,1965-10-04 07:44:00 +8339,1965-12-14 23:40:00 +9940,1966-08-11 21:42:00 +4158,1967-12-11 17:54:00 +614,1965-04-22 03:34:00 +686,1967-05-14 00:02:00 +2127,1968-03-27 10:20:00 +6107,1968-11-29 07:01:00 +6456,1967-04-02 04:17:00 +7712,1965-10-11 10:32:00 +6471,1967-03-25 09:26:00 +8184,1967-12-13 03:01:00 +5336,1969-05-15 04:36:00 +9282,1967-03-02 08:48:00 +1697,1969-02-03 15:06:00 +4091,1965-03-21 20:50:00 +5691,1967-12-14 21:00:00 +3929,1967-01-27 05:38:00 +3667,1968-04-03 18:45:00 +4444,1968-01-10 23:41:00 +5437,1968-04-21 13:15:00 +4038,1966-03-19 16:32:00 +1393,1965-08-22 04:25:00 +1104,1969-03-10 05:19:00 +9698,1968-12-29 18:37:00 +879,1966-10-19 09:40:00 +7479,1966-01-30 02:56:00 +7666,1969-03-08 12:47:00 +7274,1969-01-29 22:10:00 +2256,1967-08-03 13:18:00 +111,1967-02-26 18:44:00 +7518,1969-09-24 18:14:00 +827,1965-03-20 06:07:00 +8286,1969-02-17 20:31:00 +4077,1968-04-22 06:26:00 +3005,1965-12-13 09:42:00 +3090,1965-11-25 12:02:00 +1276,1966-05-10 23:56:00 +8371,1967-11-14 22:24:00 +5614,1966-08-02 10:39:00 +7550,1969-05-18 03:17:00 +4715,1967-04-08 20:40:00 +7078,1969-03-25 12:57:00 +1414,1966-06-28 09:20:00 +8618,1965-05-10 13:55:00 +225,1968-09-19 07:06:00 +9622,1967-11-09 20:12:00 +3020,1968-05-09 10:09:00 +7464,1969-03-28 00:45:00 +8035,1966-07-31 22:56:00 +2520,1969-05-17 09:21:00 +7571,1967-06-01 04:37:00 +3556,1969-11-01 18:54:00 +613,1965-02-27 00:45:00 +9917,1966-09-12 18:56:00 +9854,1967-12-04 07:37:00 +89,1968-01-16 21:30:00 +111,1969-08-28 07:34:00 +6810,1968-10-13 09:51:00 +1495,1966-10-31 13:45:00 +7243,1968-07-14 13:35:00 +6303,1965-10-15 15:18:00 +9272,1967-05-11 21:11:00 +7794,1966-01-30 23:56:00 +4717,1968-10-14 20:36:00 +2549,1968-06-03 05:25:00 +6915,1969-03-03 06:12:00 +6535,1969-01-11 14:35:00 +1226,1966-03-30 18:15:00 +3061,1965-10-04 18:03:00 +107,1965-11-06 05:05:00 +990,1966-08-18 13:29:00 +6793,1966-06-22 00:51:00 +7011,1965-02-14 06:00:00 +1414,1968-07-17 16:51:00 +1443,1969-11-28 01:24:00 +8481,1966-11-10 20:05:00 +9623,1969-06-23 16:23:00 +9799,1969-10-24 12:38:00 +5514,1967-09-21 12:41:00 +1624,1969-07-02 11:12:00 +7423,1966-04-05 17:16:00 +1888,1965-09-06 05:11:00 +4262,1969-12-31 15:23:00 +9637,1966-01-17 09:40:00 +6684,1968-12-17 14:16:00 +7579,1966-08-15 20:09:00 +234,1967-06-29 11:36:00 +2780,1969-11-25 07:57:00 +1577,1967-04-10 09:01:00 +9855,1967-12-23 10:38:00 +9153,1967-11-07 10:34:00 +3928,1969-03-09 18:26:00 +128,1969-07-01 23:03:00 +8546,1969-05-25 01:42:00 +3381,1966-08-25 20:04:00 +8358,1965-05-23 05:26:00 +5726,1965-07-24 05:12:00 +9530,1969-01-31 02:09:00 +90,1968-12-11 17:32:00 +841,1966-09-05 21:23:00 +6291,1967-03-30 14:13:00 +1265,1966-08-11 15:13:00 +4968,1969-01-22 12:33:00 +9258,1965-06-02 00:36:00 +8649,1969-07-11 06:32:00 +947,1968-07-05 21:18:00 +3441,1966-05-23 16:15:00 +6163,1966-06-19 19:02:00 +3231,1967-12-10 07:13:00 +6392,1968-08-01 13:11:00 +1951,1966-04-18 08:18:00 +5465,1967-12-14 23:33:00 +7276,1966-01-28 03:36:00 +3617,1967-04-22 14:56:00 +1213,1966-08-30 12:41:00 +5933,1967-06-13 06:46:00 +4800,1968-04-30 18:02:00 +5289,1965-04-22 04:33:00 +615,1967-09-10 04:59:00 +7484,1967-01-05 07:45:00 +3385,1965-05-19 02:13:00 +2893,1965-04-04 04:45:00 +1491,1965-11-09 21:48:00 +2355,1967-04-28 07:29:00 +6865,1966-08-10 01:08:00 +9635,1968-12-07 07:23:00 +4804,1965-07-15 05:22:00 +1907,1968-04-05 00:54:00 +2460,1966-11-05 13:51:00 +9123,1968-10-26 13:02:00 +2588,1966-05-07 05:44:00 +1503,1968-07-12 07:10:00 +287,1965-06-08 23:07:00 +1284,1968-03-15 15:17:00 +6102,1968-06-04 15:19:00 +4457,1969-12-06 05:24:00 +5316,1968-03-16 00:58:00 +9173,1967-03-05 05:50:00 +1401,1966-08-08 22:39:00 +8860,1965-03-23 19:32:00 +7518,1966-12-23 13:48:00 +887,1965-08-04 21:42:00 +446,1967-03-15 21:39:00 +9465,1969-09-04 05:55:00 +5916,1966-12-28 10:03:00 +76,1967-02-08 16:35:00 +9334,1966-12-16 05:16:00 +2627,1967-12-01 08:11:00 +2395,1965-06-21 14:02:00 +9079,1965-01-04 04:22:00 +2838,1969-11-24 06:24:00 +2752,1969-11-28 19:05:00 +2259,1966-02-24 14:15:00 +3521,1967-11-18 17:53:00 +579,1966-04-02 23:14:00 +8230,1965-01-22 06:56:00 +1902,1966-05-13 22:02:00 +3415,1969-05-18 11:13:00 +2005,1966-12-26 16:46:00 +5845,1968-07-05 09:38:00 +5664,1966-10-02 04:16:00 +151,1968-02-14 22:34:00 +7954,1969-01-04 11:55:00 +7405,1965-06-27 05:22:00 +9770,1967-03-18 09:38:00 +6551,1968-01-07 23:50:00 +6165,1967-04-25 13:43:00 +443,1966-11-20 16:34:00 +1560,1965-10-17 01:47:00 +9781,1968-01-05 02:18:00 +5461,1965-05-27 11:14:00 +5614,1969-07-06 18:03:00 +9145,1969-05-24 02:23:00 +5882,1969-11-24 01:35:00 +2162,1968-12-14 23:11:00 +4546,1966-08-29 01:52:00 +9066,1965-07-28 00:05:00 +7116,1965-03-02 15:59:00 +6554,1968-02-20 09:28:00 +8824,1969-05-02 12:16:00 +7288,1966-12-29 20:53:00 +9761,1969-01-11 14:08:00 +7662,1965-03-03 02:09:00 +3456,1966-12-09 01:01:00 +4663,1969-10-14 03:38:00 +9147,1968-11-24 19:03:00 +6453,1968-01-05 07:18:00 +3708,1969-08-05 12:03:00 +8520,1968-01-30 16:06:00 +4301,1966-11-13 18:46:00 +2155,1967-04-23 00:41:00 +169,1965-01-27 08:12:00 +3935,1969-01-05 19:35:00 +9214,1966-09-01 08:31:00 +8221,1965-01-21 12:50:00 +4174,1967-11-12 03:59:00 +3175,1965-07-17 06:15:00 +247,1969-04-14 01:27:00 +6504,1967-06-28 00:29:00 +714,1965-02-28 06:21:00 +6719,1969-02-25 02:18:00 +4402,1967-04-14 14:35:00 +7720,1967-09-17 10:15:00 +6064,1969-12-22 18:18:00 +1918,1966-04-14 21:52:00 +8350,1968-06-28 23:11:00 +4782,1968-02-08 11:08:00 +958,1968-03-01 22:21:00 +6163,1967-07-10 06:11:00 +6218,1965-05-12 17:26:00 +371,1969-10-10 19:53:00 +9617,1967-08-10 09:24:00 +4968,1966-02-06 21:40:00 +646,1967-07-04 05:30:00 +8735,1969-04-20 23:52:00 +8996,1967-03-21 05:45:00 +4269,1966-09-06 17:02:00 +5690,1969-12-15 22:46:00 +8649,1966-08-31 19:49:00 +2077,1966-01-12 02:52:00 +4746,1966-09-10 17:27:00 +2611,1968-11-14 05:51:00 +2062,1969-07-29 01:20:00 +6103,1966-04-18 14:52:00 +9145,1969-02-02 13:17:00 +6304,1966-01-11 02:07:00 +2887,1969-01-28 02:22:00 +5968,1968-06-27 17:40:00 +3817,1969-09-12 17:32:00 +6160,1967-05-09 14:33:00 +6479,1965-04-05 13:31:00 +1119,1968-09-02 12:37:00 +6631,1965-01-19 11:21:00 +1002,1967-05-30 12:46:00 +9551,1969-05-03 09:08:00 +4567,1968-01-22 19:34:00 +1132,1967-09-06 14:13:00 +7647,1965-08-07 02:47:00 +5810,1966-07-13 14:46:00 +5079,1967-09-07 23:34:00 +953,1967-11-06 16:47:00 +4592,1969-07-03 02:14:00 +6379,1965-08-07 02:17:00 +8797,1969-02-04 02:17:00 +5752,1969-07-21 12:43:00 +945,1969-05-20 09:05:00 +2749,1967-07-20 21:34:00 +3010,1966-04-05 12:30:00 +7836,1966-06-08 16:06:00 +3490,1965-04-29 06:04:00 +6597,1968-09-06 10:23:00 +3725,1967-08-28 02:17:00 +7962,1969-05-08 16:31:00 +3274,1966-08-15 00:12:00 +4368,1966-12-30 06:32:00 +5534,1968-09-23 12:21:00 +7508,1966-11-30 19:26:00 +8600,1965-12-30 07:12:00 +4492,1965-03-20 19:49:00 +4005,1968-11-10 11:50:00 +3010,1969-11-25 21:53:00 +263,1969-10-12 13:09:00 +4564,1966-11-06 08:51:00 +8185,1965-07-27 16:54:00 +3425,1969-05-02 20:19:00 +7695,1969-02-28 11:04:00 +7981,1967-04-06 22:28:00 +7564,1966-09-29 05:52:00 +4932,1965-11-18 21:36:00 +9495,1969-01-06 04:36:00 +5186,1967-11-28 23:00:00 +319,1965-09-21 07:19:00 +1677,1966-10-04 11:38:00 +4479,1967-12-14 00:52:00 +2719,1966-02-19 08:47:00 +8640,1966-07-10 05:25:00 +5198,1969-05-28 07:15:00 +9319,1967-02-10 04:53:00 +8527,1968-05-18 23:53:00 +9668,1968-04-14 09:36:00 +2984,1969-01-02 06:08:00 +1238,1966-11-06 03:20:00 +5269,1966-11-02 20:40:00 +8350,1965-01-14 14:12:00 +3395,1965-01-22 03:50:00 +4053,1967-07-12 07:41:00 +3902,1968-06-12 01:24:00 +10,1965-12-26 16:45:00 +1431,1965-06-18 01:06:00 +8751,1965-04-07 02:54:00 +5046,1966-06-29 03:48:00 +617,1968-10-03 09:26:00 +6474,1966-10-21 01:18:00 +5581,1968-04-09 18:46:00 +3606,1965-03-23 03:27:00 +7830,1969-02-07 16:35:00 +1496,1967-07-25 18:31:00 +2429,1966-07-06 23:14:00 +6891,1966-12-04 11:37:00 +1516,1966-10-09 02:17:00 +4808,1965-04-25 08:30:00 +2448,1969-12-04 19:57:00 +3320,1965-01-20 16:18:00 +666,1966-07-10 19:12:00 +2070,1965-01-03 08:01:00 +3605,1968-11-28 02:02:00 +1419,1968-05-06 22:24:00 +9388,1968-02-06 19:23:00 +714,1969-07-09 23:28:00 +8493,1969-02-18 22:44:00 +3301,1968-03-05 05:25:00 +120,1967-02-21 08:05:00 +1566,1968-01-17 20:00:00 +5678,1969-03-07 08:53:00 +7336,1967-08-25 19:05:00 +3617,1966-07-22 09:45:00 +628,1966-05-05 09:52:00 +7400,1965-03-03 14:24:00 +6519,1968-06-12 15:06:00 +3108,1969-12-12 10:35:00 +7396,1966-12-08 12:48:00 +9729,1967-11-18 10:46:00 +6644,1968-03-29 10:13:00 +3052,1965-12-10 18:28:00 +9168,1969-09-27 01:08:00 +9541,1967-09-19 19:00:00 +1901,1965-11-29 10:54:00 +5211,1966-04-23 22:44:00 +1597,1965-03-27 19:21:00 +2310,1969-07-18 06:28:00 +6747,1965-12-04 20:30:00 +5488,1965-07-10 22:35:00 +6730,1968-01-25 03:38:00 +538,1968-03-14 20:55:00 +6544,1965-02-26 20:43:00 +8488,1965-01-17 08:40:00 +9277,1966-01-16 07:47:00 +9803,1968-01-13 14:58:00 +1493,1967-12-22 18:26:00 +2966,1966-01-12 03:41:00 +3556,1965-03-28 01:46:00 +6826,1966-08-10 02:47:00 +9134,1965-06-27 16:48:00 +7902,1966-06-15 11:56:00 +4076,1969-09-26 16:35:00 +6155,1969-12-26 22:33:00 +809,1969-02-19 04:36:00 +1175,1965-09-05 14:16:00 +7468,1965-01-15 23:59:00 +1859,1969-06-27 10:10:00 +6721,1966-03-30 10:13:00 +2223,1966-09-23 03:40:00 +9145,1968-07-28 10:16:00 +3236,1966-01-09 22:09:00 +861,1966-08-17 07:33:00 +1917,1965-09-21 17:43:00 +762,1968-03-21 01:28:00 +1091,1969-08-15 09:28:00 +108,1966-01-31 06:01:00 +9197,1967-11-25 08:59:00 +5860,1967-07-16 05:05:00 +3130,1969-07-23 00:29:00 +5175,1965-11-29 19:39:00 +7705,1966-06-29 22:30:00 +2496,1965-10-29 07:05:00 +2298,1967-11-04 09:40:00 +3522,1966-07-25 15:18:00 +7529,1966-05-15 07:56:00 +9490,1965-09-02 01:12:00 +4393,1968-05-03 21:08:00 +4527,1966-01-24 10:12:00 +9586,1966-07-21 13:23:00 +3362,1966-08-27 01:47:00 +9213,1965-11-03 19:01:00 +5489,1966-04-06 04:58:00 +237,1965-08-31 00:29:00 +6755,1967-11-14 23:39:00 +5834,1965-07-21 13:02:00 +2410,1966-05-03 03:10:00 +2203,1966-05-15 07:45:00 +6433,1967-08-14 11:36:00 +3327,1968-02-19 11:25:00 +7032,1968-04-19 06:14:00 +8713,1965-09-04 17:38:00 +1634,1969-02-22 20:08:00 +5805,1969-02-20 11:45:00 +5600,1966-09-27 04:09:00 +7403,1968-09-07 11:14:00 +8524,1965-05-21 17:55:00 +3375,1967-08-04 15:44:00 +1277,1967-11-18 03:33:00 +3367,1965-08-04 08:19:00 +7180,1968-03-15 10:14:00 +6561,1967-09-10 00:39:00 +7566,1967-05-27 08:40:00 +4178,1969-09-01 09:25:00 +4110,1969-11-06 15:28:00 +4199,1967-05-28 05:21:00 +7691,1965-02-10 18:54:00 +5928,1969-10-06 17:26:00 +155,1967-03-14 23:37:00 +9888,1965-01-25 01:48:00 +3289,1966-03-05 08:08:00 +8872,1965-08-03 14:30:00 +8363,1967-05-02 20:21:00 +9320,1968-01-22 13:04:00 +811,1968-05-28 03:40:00 +1729,1965-01-05 02:24:00 +9878,1965-05-22 06:24:00 +7377,1966-08-25 09:10:00 +5890,1967-04-06 22:12:00 +648,1967-05-07 18:01:00 +2659,1969-08-26 10:51:00 +8255,1967-01-23 08:51:00 +7197,1969-07-15 15:16:00 +6909,1965-09-03 20:40:00 +932,1965-07-13 07:43:00 +9680,1965-10-25 05:39:00 +7899,1968-08-21 17:29:00 +2871,1965-08-07 17:11:00 +2034,1967-07-05 01:43:00 +475,1966-05-03 11:22:00 +4300,1966-03-08 15:05:00 +6246,1968-05-02 14:24:00 +2696,1968-07-01 03:36:00 +7701,1967-11-15 14:12:00 +5154,1966-06-29 07:16:00 +5402,1965-09-09 08:02:00 +9883,1965-01-19 21:27:00 +1197,1969-05-08 03:03:00 +1108,1967-05-03 08:25:00 +710,1968-09-01 04:31:00 +7321,1968-08-15 00:36:00 +6992,1969-07-01 04:31:00 +3522,1969-11-24 14:32:00 +4963,1967-07-25 16:40:00 +7859,1966-12-06 02:28:00 +1156,1968-12-07 19:40:00 +1739,1966-11-26 14:19:00 +1156,1969-01-14 15:27:00 +3950,1969-02-13 13:28:00 +7443,1967-03-20 17:10:00 +1714,1969-11-03 15:56:00 +4473,1968-04-15 22:11:00 +9263,1967-11-18 01:16:00 +3134,1966-04-05 12:12:00 +986,1967-06-22 19:43:00 +1952,1965-05-23 00:16:00 +8241,1967-06-05 17:22:00 +5673,1966-02-24 21:40:00 +7584,1967-09-15 08:47:00 +6791,1967-12-11 06:25:00 +4391,1968-03-21 08:16:00 +8121,1969-04-12 15:48:00 +4372,1966-12-31 23:49:00 +7029,1969-12-17 07:17:00 +7386,1968-04-05 06:15:00 +5977,1965-01-29 16:07:00 +24,1966-08-23 15:07:00 +9896,1969-05-23 04:10:00 +1404,1965-05-13 06:19:00 +9316,1967-07-21 02:38:00 +3740,1969-12-08 06:00:00 +1089,1969-05-10 20:29:00 +8712,1967-08-25 08:00:00 +5208,1968-04-29 21:36:00 +2536,1968-12-20 19:25:00 +5943,1968-03-09 00:58:00 +7733,1967-12-02 11:15:00 +8448,1968-06-11 07:04:00 +2949,1967-09-02 17:34:00 +5675,1965-03-22 23:36:00 +2734,1967-07-23 18:12:00 +9259,1966-04-04 16:58:00 +2641,1969-12-17 06:17:00 +8423,1966-05-27 21:01:00 +694,1965-09-11 17:10:00 +868,1968-03-01 07:54:00 +638,1968-02-08 06:08:00 +5898,1965-07-22 12:55:00 +6491,1968-02-28 06:34:00 +3873,1966-02-06 00:44:00 +7298,1967-08-25 02:32:00 +2746,1968-05-06 11:26:00 +8438,1966-02-15 12:34:00 +5041,1967-01-29 23:33:00 +799,1969-08-31 15:22:00 +8899,1965-06-21 10:51:00 +9885,1965-07-18 14:01:00 +8682,1965-08-26 04:23:00 +9375,1968-06-23 22:34:00 +7815,1968-06-24 21:55:00 +8322,1966-07-25 14:49:00 +896,1967-02-28 16:51:00 +3325,1969-08-22 03:07:00 +6801,1967-02-10 09:28:00 +2592,1965-01-20 11:21:00 +5086,1968-09-18 10:05:00 +2557,1965-02-19 13:41:00 +5795,1966-11-11 14:59:00 +8607,1967-09-19 23:28:00 +407,1965-11-12 18:51:00 +633,1967-11-01 01:34:00 +1956,1967-12-20 14:30:00 +3014,1967-10-11 05:35:00 +9326,1968-08-11 22:15:00 +1380,1968-04-29 18:06:00 +4684,1968-04-11 22:37:00 +5898,1965-11-07 14:25:00 +3478,1966-06-07 00:36:00 +604,1967-08-15 06:43:00 +3332,1966-11-28 02:10:00 +1073,1967-12-07 10:21:00 +778,1966-11-10 05:50:00 +5094,1966-10-08 20:07:00 +8441,1965-10-12 08:00:00 +3088,1965-08-11 11:07:00 +6635,1967-12-22 19:47:00 +7487,1966-01-12 20:03:00 +1487,1966-06-14 20:04:00 +3229,1966-06-25 06:39:00 +2267,1967-10-14 02:11:00 +4116,1968-10-27 08:06:00 +5234,1968-07-25 16:19:00 +5453,1965-01-24 19:42:00 +2559,1969-06-19 21:09:00 +7971,1965-07-03 21:22:00 +2569,1969-06-10 05:45:00 +3312,1966-12-12 04:56:00 +484,1969-03-07 04:45:00 +8462,1967-12-03 15:28:00 +4294,1966-02-12 06:15:00 +7474,1968-11-05 15:45:00 +3734,1966-09-29 08:59:00 +3038,1965-09-23 16:59:00 +840,1969-02-10 14:53:00 +7236,1969-01-29 03:39:00 +5984,1966-06-25 07:52:00 +2918,1965-03-05 05:12:00 +7489,1965-11-23 04:35:00 +7781,1969-06-17 23:18:00 +7452,1967-03-01 17:19:00 +6346,1965-12-25 20:50:00 +4666,1969-06-06 14:19:00 +4361,1965-05-20 12:15:00 +8036,1967-10-30 18:40:00 +8566,1965-03-07 01:27:00 +3679,1969-10-31 03:29:00 +5933,1968-04-18 15:39:00 +2458,1965-08-01 14:57:00 +1639,1969-03-20 02:18:00 +2209,1966-09-16 12:41:00 +8429,1966-02-05 02:33:00 +3014,1965-11-20 17:30:00 +6235,1969-04-20 10:09:00 +3007,1965-10-14 07:52:00 +879,1966-03-25 22:22:00 +7738,1965-03-01 10:41:00 +5366,1966-09-26 15:08:00 +2873,1968-07-16 06:45:00 +7346,1966-03-31 20:29:00 +271,1969-02-13 22:44:00 +6749,1968-09-26 08:22:00 +2115,1965-08-08 02:49:00 +2410,1969-04-20 15:25:00 +7482,1968-08-22 01:05:00 +1817,1967-08-21 23:33:00 +6473,1965-02-05 10:51:00 +8215,1968-06-19 10:24:00 +1491,1966-11-07 14:46:00 +5483,1966-03-14 15:20:00 +20,1967-01-30 08:11:00 +913,1967-08-07 15:19:00 +9482,1968-09-03 14:31:00 +8125,1968-07-09 01:00:00 +5901,1968-05-19 13:01:00 +5260,1968-11-20 20:03:00 +7258,1966-08-18 05:23:00 +9078,1968-01-08 17:30:00 +8070,1969-02-03 02:20:00 +953,1969-10-02 13:23:00 +4081,1965-01-23 12:27:00 +9426,1967-09-29 18:25:00 +4553,1968-01-17 20:48:00 +5738,1969-10-06 11:04:00 +4178,1965-05-13 00:01:00 +9423,1969-03-13 16:14:00 +7853,1967-09-04 16:15:00 +3350,1968-05-07 21:19:00 +517,1967-12-07 16:46:00 +9076,1969-05-27 07:13:00 +6389,1965-08-07 08:42:00 +4402,1969-06-28 16:13:00 +4615,1968-09-02 08:33:00 +6847,1965-09-23 20:47:00 +5048,1965-09-11 10:37:00 +5736,1966-05-04 10:14:00 +5020,1965-06-24 11:26:00 +3606,1969-11-25 13:15:00 +2522,1968-07-03 12:40:00 +6050,1966-01-04 10:29:00 +6387,1969-11-11 08:49:00 +302,1969-11-28 16:11:00 +5753,1967-12-29 02:53:00 +9025,1969-01-01 05:46:00 +7486,1969-03-29 05:40:00 +975,1965-03-26 22:26:00 +3984,1968-06-26 23:44:00 +529,1967-05-15 01:46:00 +2183,1965-09-17 22:32:00 +5570,1965-03-21 09:12:00 +6110,1969-06-28 11:06:00 +8829,1968-03-09 13:14:00 +5297,1965-05-01 20:49:00 +5798,1965-06-16 09:25:00 +2638,1968-06-09 20:15:00 +9395,1965-02-08 16:03:00 +9293,1966-07-06 07:18:00 +6611,1969-05-20 07:33:00 +7632,1968-01-25 14:01:00 +8266,1965-02-28 11:42:00 +5940,1969-12-20 01:21:00 +4427,1966-07-15 00:40:00 +3229,1965-08-23 08:12:00 +6424,1968-03-08 20:46:00 +7272,1967-03-19 21:53:00 +9262,1968-09-27 05:11:00 +7414,1969-10-31 13:43:00 +6226,1966-12-22 04:58:00 +4984,1966-05-13 11:25:00 +49,1967-05-07 09:43:00 +3790,1966-04-29 04:35:00 +6922,1966-11-21 11:41:00 +3224,1965-10-02 16:01:00 +7,1969-11-17 02:50:00 +6330,1967-08-04 08:25:00 +5404,1969-09-30 03:52:00 +479,1967-11-19 07:13:00 +1679,1967-09-15 18:50:00 +9497,1966-03-24 13:02:00 +2190,1967-03-17 23:38:00 +7194,1967-06-28 20:40:00 +4758,1968-06-23 07:29:00 +7091,1969-11-26 15:21:00 +9649,1967-06-27 22:09:00 +6119,1968-08-26 23:33:00 +7343,1969-01-31 10:27:00 +4013,1966-06-27 07:55:00 +4345,1968-08-17 01:44:00 +7794,1965-11-24 10:13:00 +3533,1966-05-25 12:47:00 +6872,1967-03-17 19:34:00 +4738,1969-03-28 01:06:00 +9836,1965-07-25 09:56:00 +8601,1968-10-17 11:32:00 +1465,1969-05-06 23:37:00 +2165,1969-07-19 17:44:00 +410,1969-10-07 09:55:00 +8968,1965-12-03 06:20:00 +8228,1966-01-25 10:16:00 +9510,1965-09-09 22:06:00 +8398,1967-07-29 05:12:00 +9274,1969-02-25 08:00:00 +9331,1969-02-16 13:07:00 +1891,1969-12-16 22:58:00 +1486,1969-03-08 18:11:00 +8547,1969-11-04 11:59:00 +1414,1966-09-18 14:08:00 +9380,1967-09-12 17:12:00 +5739,1966-12-24 23:29:00 +5931,1967-01-10 06:27:00 +6473,1965-12-19 04:32:00 +4340,1965-01-25 22:42:00 +583,1969-05-07 19:45:00 +2155,1966-01-27 23:39:00 +669,1965-11-15 18:44:00 +7256,1969-02-05 21:11:00 +814,1966-05-19 20:52:00 +2083,1968-04-25 20:34:00 +6840,1969-06-05 20:12:00 +9096,1968-10-22 21:25:00 +9051,1967-01-23 20:55:00 +1693,1968-06-08 04:12:00 +3806,1966-07-25 00:02:00 +3913,1967-09-03 00:50:00 +6997,1968-07-26 01:12:00 +3091,1968-11-10 18:03:00 +2042,1965-02-02 00:54:00 +1847,1965-10-15 11:33:00 +8231,1968-11-18 18:24:00 +5838,1965-07-25 13:36:00 +2410,1967-01-07 19:51:00 +710,1966-04-24 18:10:00 +5602,1966-10-27 17:05:00 +5653,1967-01-08 22:56:00 +5774,1967-04-28 05:43:00 +7240,1967-06-18 07:46:00 +5236,1969-06-03 15:21:00 +1714,1967-04-03 01:50:00 +9008,1965-08-31 19:55:00 +734,1969-10-12 23:09:00 +2157,1968-07-27 09:36:00 +3820,1968-11-30 12:02:00 +2166,1969-03-18 22:57:00 +5552,1968-02-14 03:07:00 +8429,1965-08-08 14:26:00 +7708,1966-12-11 13:39:00 +9824,1968-12-17 23:52:00 +2297,1965-07-24 03:29:00 +8520,1967-11-09 09:40:00 +291,1968-02-18 23:54:00 +4504,1965-12-11 22:37:00 +4867,1967-03-26 14:10:00 +2657,1967-05-16 07:05:00 +7483,1965-06-26 11:37:00 +4450,1966-05-22 01:49:00 +7588,1966-11-12 05:53:00 +8565,1969-12-25 20:51:00 +7283,1966-04-15 03:50:00 +8997,1967-02-15 17:42:00 +3862,1969-05-01 09:26:00 +2516,1967-01-17 00:51:00 +2670,1965-03-08 04:38:00 +4495,1968-12-05 18:15:00 +5004,1967-07-07 21:57:00 +2897,1969-11-20 13:08:00 +8616,1967-01-15 19:26:00 +9383,1967-08-09 11:09:00 +3852,1965-04-27 03:06:00 +4820,1966-10-15 07:15:00 +7228,1969-02-25 09:09:00 +6372,1966-08-17 22:56:00 +6406,1966-09-04 05:06:00 +4007,1969-05-22 19:39:00 +8434,1966-06-24 19:34:00 +2406,1969-02-06 05:38:00 +6846,1965-07-25 09:23:00 +9249,1967-10-25 19:42:00 +3244,1967-10-07 05:45:00 +5660,1966-12-19 08:50:00 +5837,1965-05-22 21:49:00 +2170,1966-11-04 16:02:00 +6630,1968-12-07 10:53:00 +172,1965-09-22 20:30:00 +7649,1967-07-25 08:43:00 +766,1969-05-03 13:21:00 +9512,1969-04-02 22:04:00 +4581,1965-05-02 20:45:00 +1961,1967-04-20 04:00:00 +3714,1967-12-15 06:09:00 +5951,1965-10-07 09:23:00 +2216,1967-07-10 05:08:00 +1858,1968-09-30 12:52:00 +170,1965-04-17 04:56:00 +9581,1965-10-05 21:52:00 +1924,1968-02-11 17:05:00 +7150,1969-10-19 08:22:00 +1598,1969-03-10 13:15:00 +2327,1965-05-07 05:18:00 +2819,1967-06-09 13:37:00 +4322,1966-11-22 21:04:00 +9608,1967-04-14 07:33:00 +5846,1969-06-02 20:52:00 +3626,1967-04-21 10:22:00 +7597,1965-05-20 18:29:00 +8642,1966-03-09 12:09:00 +4898,1968-10-03 11:46:00 +6194,1969-02-01 03:42:00 +595,1967-05-20 17:41:00 +4596,1967-10-25 09:20:00 +1161,1968-09-01 01:44:00 +8106,1966-10-28 09:13:00 +9549,1966-07-15 23:59:00 +330,1968-12-27 08:18:00 +5396,1969-09-22 09:55:00 +4525,1967-05-11 03:36:00 +1032,1969-09-23 22:58:00 +550,1969-11-27 12:41:00 +3800,1965-06-20 05:45:00 +1401,1969-01-06 06:59:00 +8408,1968-09-26 08:11:00 +135,1965-05-29 01:23:00 +2630,1968-06-04 18:53:00 +4580,1966-05-23 04:10:00 +6278,1969-06-01 05:12:00 +803,1965-05-09 18:20:00 +1700,1968-01-24 07:41:00 +3490,1965-10-18 08:38:00 +265,1965-08-17 09:32:00 +5183,1967-04-28 09:43:00 +1179,1966-08-04 04:24:00 +8435,1967-01-07 05:24:00 +7435,1965-11-06 13:03:00 +8653,1967-04-29 04:02:00 +5088,1966-01-26 11:06:00 +8191,1968-12-15 07:41:00 +5066,1969-02-22 11:07:00 +2662,1967-09-13 09:24:00 +6758,1966-07-26 20:43:00 +8197,1966-11-20 05:31:00 +139,1966-04-22 18:20:00 +5416,1967-07-08 05:40:00 +8734,1965-04-14 16:22:00 +9010,1965-06-05 02:09:00 +2242,1969-11-22 02:13:00 +1378,1965-01-06 23:14:00 +3617,1966-05-03 23:48:00 +2994,1969-10-14 17:43:00 +2562,1966-02-08 09:59:00 +689,1968-02-04 09:02:00 +757,1968-07-06 03:58:00 +3691,1966-05-21 05:06:00 +1347,1965-04-11 18:02:00 +6236,1965-02-05 18:49:00 +1434,1969-02-28 14:49:00 +1029,1968-06-13 19:50:00 +6990,1965-07-26 09:57:00 +439,1969-04-06 03:38:00 +4325,1969-01-24 17:01:00 +1970,1966-04-30 14:41:00 +4984,1966-05-04 21:50:00 +2113,1968-01-05 03:16:00 +5955,1965-03-06 23:15:00 +3006,1968-06-03 16:08:00 +9974,1969-05-24 19:22:00 +3684,1966-06-11 01:13:00 +1617,1967-04-21 14:54:00 +7223,1965-04-17 15:32:00 +6860,1965-10-26 09:49:00 +5794,1967-03-03 00:53:00 +3996,1968-02-28 11:48:00 +3471,1967-08-04 15:28:00 +8793,1968-01-22 23:20:00 +726,1968-07-10 05:16:00 +6191,1965-04-27 06:19:00 +7157,1967-05-15 21:08:00 +9214,1968-10-26 16:05:00 +8670,1968-10-18 02:50:00 +8023,1966-10-11 19:28:00 +2567,1969-06-28 08:17:00 +2227,1965-03-30 21:50:00 +4058,1965-03-03 20:41:00 +7459,1966-07-18 08:25:00 +9476,1969-11-29 18:12:00 +1336,1966-04-13 01:51:00 +8977,1965-04-05 08:05:00 +4323,1965-08-20 08:50:00 +9091,1968-05-17 02:34:00 +5670,1965-11-13 13:37:00 +2748,1968-07-05 06:26:00 +6140,1965-09-23 21:15:00 +8445,1968-06-13 12:27:00 +6992,1965-12-22 22:51:00 +5554,1966-12-13 06:49:00 +4169,1966-11-13 23:21:00 +2893,1967-08-10 03:41:00 +3657,1967-02-28 00:42:00 +417,1965-10-21 08:56:00 +1854,1966-05-24 23:37:00 +4147,1965-04-14 15:25:00 +7188,1967-03-21 16:17:00 +43,1966-04-07 03:03:00 +3055,1968-11-17 00:39:00 +1839,1969-02-23 19:43:00 +6283,1969-04-29 21:33:00 +7376,1965-07-05 19:18:00 +2967,1966-01-23 07:24:00 +8045,1968-06-24 18:28:00 +9936,1967-10-12 06:20:00 +1258,1968-01-17 06:58:00 +2295,1968-01-06 20:08:00 +391,1965-10-05 13:39:00 +7043,1967-02-03 10:23:00 +9820,1966-11-25 17:28:00 +450,1965-03-20 21:09:00 +4065,1967-10-06 09:49:00 +4746,1967-05-07 18:52:00 +9435,1967-04-08 22:58:00 +769,1966-10-30 19:37:00 +2858,1969-03-09 05:36:00 +7061,1966-12-02 12:55:00 +6957,1965-04-03 05:07:00 +6186,1968-08-10 16:52:00 +7302,1969-05-10 23:24:00 +6400,1967-12-11 06:15:00 +5934,1968-12-14 03:27:00 +4473,1965-08-27 18:39:00 +1176,1967-07-31 15:11:00 +4127,1968-02-28 03:06:00 +101,1966-08-24 07:45:00 +1227,1969-05-12 18:41:00 +6449,1966-07-06 15:12:00 +9799,1967-07-31 10:53:00 +7792,1966-02-06 21:53:00 +8349,1967-03-03 01:54:00 +1094,1969-12-30 00:24:00 +8509,1966-12-29 07:29:00 +4296,1966-06-26 01:06:00 +8576,1965-10-29 00:23:00 +6000,1966-11-30 19:55:00 +7908,1966-12-15 11:09:00 +5674,1969-06-24 12:21:00 +245,1965-09-15 09:17:00 +5179,1967-02-06 15:36:00 +488,1967-10-16 06:41:00 +2489,1965-01-13 18:32:00 +9248,1966-06-11 16:18:00 +8229,1969-05-05 15:28:00 +8449,1967-01-12 14:00:00 +9105,1968-02-19 14:19:00 +5730,1965-02-18 04:33:00 +3047,1969-03-25 18:44:00 +8725,1967-05-13 07:53:00 +7438,1969-12-01 02:30:00 +1144,1969-09-09 16:21:00 +2150,1965-10-22 11:40:00 +4687,1969-11-13 18:55:00 +8791,1966-02-07 19:32:00 +4324,1965-01-10 21:01:00 +7231,1967-11-23 23:51:00 +2748,1966-12-12 12:10:00 +155,1969-07-26 13:45:00 +7903,1969-12-25 04:41:00 +8520,1968-11-07 15:58:00 +9653,1967-10-10 21:39:00 +5733,1968-04-16 05:20:00 +8802,1967-08-11 23:58:00 +5138,1968-06-28 13:31:00 +392,1965-07-27 22:28:00 +2611,1965-06-16 07:02:00 +1287,1965-03-20 21:07:00 +3575,1968-01-16 07:08:00 +3438,1969-02-01 15:40:00 +7781,1965-12-16 04:34:00 +1165,1969-08-31 02:40:00 +2562,1968-12-25 21:30:00 +5839,1965-05-16 04:43:00 +6540,1965-11-16 07:01:00 +6733,1967-02-10 02:33:00 +4704,1969-03-18 11:00:00 +3142,1966-02-06 19:37:00 +5872,1965-06-02 02:08:00 +5457,1966-04-05 05:13:00 +90,1968-10-09 00:30:00 +4284,1968-12-14 04:42:00 +6002,1966-09-25 04:27:00 +6743,1968-01-06 09:48:00 +499,1965-04-02 23:21:00 +5184,1965-10-24 07:25:00 +7679,1967-04-12 13:24:00 +7916,1965-02-13 01:28:00 +8823,1968-06-25 15:38:00 +4703,1965-08-08 00:41:00 +6609,1968-06-10 07:10:00 +7870,1965-08-22 21:43:00 +6779,1969-05-03 04:31:00 +5158,1968-03-28 08:25:00 +3810,1966-11-18 22:12:00 +959,1966-02-02 02:03:00 +2064,1965-11-02 07:50:00 +7095,1965-07-23 09:26:00 +5752,1965-05-04 06:25:00 +9414,1966-07-31 09:04:00 +506,1968-12-19 07:39:00 +8520,1965-07-16 16:14:00 +7905,1967-05-02 16:37:00 +7588,1969-07-25 18:18:00 +1162,1969-07-14 08:12:00 +1988,1966-06-21 16:42:00 +9582,1965-01-26 04:02:00 +1896,1969-04-11 11:24:00 +7749,1967-11-03 02:38:00 +7989,1966-09-02 06:23:00 +5379,1967-03-14 20:31:00 +1919,1968-03-27 08:57:00 +8715,1965-10-18 08:49:00 +255,1967-11-14 06:32:00 +8525,1965-01-04 04:23:00 +2347,1965-07-07 22:53:00 +4980,1967-08-24 16:09:00 +1321,1969-09-06 01:25:00 +7692,1965-03-26 08:44:00 +4731,1968-09-11 10:58:00 +3708,1969-03-07 02:11:00 +3075,1968-12-01 18:04:00 +6043,1965-06-15 21:33:00 +739,1969-11-24 22:01:00 +5879,1965-07-16 08:27:00 +144,1967-01-27 07:26:00 +3677,1967-02-06 16:58:00 +7137,1965-06-02 18:15:00 +133,1968-07-14 11:29:00 +6891,1966-12-16 03:29:00 +3394,1966-07-30 22:59:00 +6675,1965-12-30 05:19:00 +4600,1969-11-06 08:57:00 +1224,1965-08-26 00:56:00 +8518,1966-08-13 07:21:00 +7529,1966-07-30 16:10:00 +6215,1968-12-15 17:50:00 +9643,1967-11-03 22:27:00 +9882,1967-04-12 18:11:00 +1613,1967-05-13 05:01:00 +5161,1967-02-19 02:00:00 +6839,1969-09-19 21:33:00 +6882,1966-02-11 04:42:00 +2476,1969-03-05 21:09:00 +3657,1968-10-12 17:14:00 +78,1968-11-11 22:48:00 +2651,1968-01-30 09:30:00 +7585,1966-10-08 15:59:00 +7917,1967-06-25 10:46:00 +2914,1968-06-29 12:12:00 +7407,1966-01-18 14:32:00 +4661,1967-09-13 15:40:00 +3739,1969-10-11 07:49:00 +5169,1968-01-22 01:41:00 +9141,1966-01-25 00:45:00 +7813,1966-07-11 09:16:00 +3217,1969-05-08 01:12:00 +9241,1968-07-02 01:35:00 +7248,1968-07-17 04:04:00 +9660,1966-11-30 16:08:00 +5948,1967-03-13 02:05:00 +7977,1969-02-23 05:53:00 +7414,1967-07-30 14:32:00 +7092,1965-11-06 02:33:00 +4278,1966-10-26 22:44:00 +3399,1969-01-04 01:10:00 +4344,1967-05-21 15:53:00 +9811,1969-09-21 07:17:00 +3998,1969-08-27 15:48:00 +2516,1966-07-17 18:11:00 +5202,1966-10-03 22:48:00 +9723,1967-05-15 18:03:00 +1741,1966-09-16 14:14:00 +9253,1967-02-24 18:56:00 +1940,1966-07-31 04:35:00 +9979,1968-01-12 19:33:00 +6375,1968-08-02 06:39:00 +167,1965-01-30 07:39:00 +6814,1965-12-24 06:09:00 +7485,1967-01-26 03:48:00 +7467,1969-05-30 15:37:00 +6545,1965-03-28 13:41:00 +3740,1967-10-05 09:29:00 +8682,1968-07-27 02:30:00 +9911,1966-06-03 07:22:00 +4932,1965-05-05 18:37:00 +7188,1967-12-31 20:53:00 +4749,1968-07-24 13:14:00 +1171,1967-07-07 21:39:00 +9488,1968-03-05 22:32:00 +9009,1966-04-15 16:33:00 +7197,1965-08-01 07:28:00 +7347,1969-08-16 04:46:00 +4088,1968-01-21 02:12:00 +7463,1969-01-07 20:09:00 +5281,1967-02-28 14:41:00 +4287,1968-11-09 05:08:00 +7020,1968-12-20 18:57:00 +6992,1969-01-17 14:06:00 +4040,1967-12-11 10:13:00 +9785,1968-03-02 09:19:00 +4661,1967-08-26 10:57:00 +5896,1967-09-30 02:00:00 +70,1967-11-23 05:42:00 +9384,1965-09-23 16:16:00 +1986,1968-06-25 13:23:00 +4973,1969-03-01 18:53:00 +8716,1968-07-23 09:09:00 +3126,1968-07-08 18:34:00 +8022,1966-08-31 11:03:00 +1784,1965-11-05 11:32:00 +8652,1969-09-15 07:30:00 +1096,1968-01-17 01:43:00 +5466,1969-03-22 18:58:00 +3499,1969-03-05 12:52:00 +7725,1967-08-10 09:21:00 +9395,1965-02-02 17:37:00 +3143,1969-04-03 03:19:00 +3821,1966-03-30 04:42:00 +3795,1965-12-23 09:12:00 +9737,1968-06-03 19:21:00 +5659,1969-01-18 19:01:00 +4799,1968-05-18 12:27:00 +6302,1968-05-19 12:23:00 +4723,1968-02-21 12:35:00 +2004,1967-07-01 03:59:00 +7212,1969-09-14 19:17:00 +6202,1969-12-12 23:45:00 +4338,1969-09-01 13:12:00 +7891,1965-08-29 19:18:00 +180,1965-10-14 03:00:00 +4781,1967-06-03 14:08:00 +8687,1967-11-24 12:13:00 +9996,1965-07-18 17:12:00 +3698,1967-03-11 14:31:00 +1640,1965-03-06 22:11:00 +6994,1968-03-23 19:15:00 +2360,1967-04-25 16:11:00 +7695,1968-08-04 19:36:00 +2715,1965-01-07 15:24:00 +6821,1969-11-24 03:15:00 +8532,1967-06-19 11:49:00 +3787,1965-04-14 11:40:00 +9327,1967-04-02 23:31:00 +9811,1965-07-01 05:41:00 +3280,1965-04-12 15:00:00 +683,1967-09-14 16:21:00 +4373,1968-09-22 00:30:00 +4358,1966-03-24 06:56:00 +7424,1967-07-13 15:01:00 +3637,1968-12-18 22:02:00 +6045,1969-04-22 00:28:00 +4456,1965-11-02 18:57:00 +2474,1969-03-15 15:56:00 +2309,1969-01-01 02:10:00 +757,1965-06-11 23:29:00 +3701,1967-03-15 09:29:00 +3069,1969-02-25 11:43:00 +3796,1968-11-30 03:32:00 +4390,1967-12-02 04:03:00 +3503,1966-05-24 02:23:00 +1320,1966-04-11 07:38:00 +3618,1967-05-28 19:17:00 +7505,1968-10-25 08:27:00 +9008,1969-05-16 02:16:00 +3237,1967-01-15 05:48:00 +6240,1969-08-19 22:13:00 +9359,1966-12-09 18:41:00 +4403,1967-06-30 20:20:00 +3711,1965-07-22 04:14:00 +5879,1965-01-22 16:52:00 +5331,1967-07-07 10:34:00 +5119,1965-12-22 01:32:00 +252,1968-12-16 09:06:00 +3061,1965-01-22 11:24:00 +1525,1967-01-20 07:51:00 +6554,1968-01-25 00:19:00 +1998,1965-01-14 08:30:00 +2886,1965-06-27 00:34:00 +8528,1966-09-12 06:23:00 +3117,1965-06-30 21:56:00 +8450,1969-10-11 08:00:00 +1068,1966-12-24 12:17:00 +1289,1966-01-22 18:47:00 +2650,1967-11-24 07:08:00 +8653,1969-09-29 14:38:00 +3549,1968-07-01 20:14:00 +1239,1968-08-28 04:30:00 +6292,1969-10-12 15:19:00 +6292,1965-11-25 15:08:00 +3741,1967-11-04 18:33:00 +5085,1969-10-03 17:25:00 +1461,1967-08-26 11:53:00 +908,1966-01-24 04:00:00 +7793,1968-05-13 01:10:00 +7915,1965-07-19 11:22:00 +9579,1969-04-17 22:26:00 +9248,1969-05-04 13:58:00 +5655,1969-10-26 19:43:00 +4387,1966-06-27 05:58:00 +1819,1966-12-13 14:02:00 +860,1966-07-19 03:22:00 +5184,1969-06-13 02:15:00 +5703,1965-09-10 05:45:00 +3858,1965-08-24 10:43:00 +7143,1965-01-30 03:52:00 +3884,1967-11-15 11:36:00 +9811,1967-06-05 02:31:00 +2009,1969-02-22 07:24:00 +1682,1966-09-23 13:23:00 +6389,1966-03-26 16:33:00 +8120,1967-11-25 11:47:00 +539,1965-02-05 21:53:00 +6916,1966-04-24 06:13:00 +7168,1966-03-05 13:03:00 +5253,1967-03-07 13:03:00 +7189,1967-10-13 10:40:00 +5462,1969-10-07 02:36:00 +534,1967-01-14 03:39:00 +3163,1966-07-28 15:13:00 +4162,1968-01-22 07:22:00 +6320,1969-09-26 11:09:00 +1045,1966-05-28 06:25:00 +5047,1968-12-16 09:20:00 +5745,1965-12-25 00:11:00 +4975,1968-03-09 12:42:00 +7440,1967-04-02 16:55:00 +4639,1965-10-14 13:49:00 +692,1967-12-11 13:40:00 +2619,1965-06-29 15:55:00 +8547,1965-05-13 03:56:00 +4136,1969-09-14 09:54:00 +1868,1968-08-20 04:43:00 +5531,1968-11-22 21:18:00 +7564,1966-10-01 17:25:00 +9520,1967-05-06 03:08:00 +2383,1969-01-22 04:42:00 +2140,1967-02-05 19:11:00 +1912,1965-10-05 23:11:00 +2390,1965-11-27 07:02:00 +4372,1965-07-15 06:46:00 +955,1965-11-11 11:05:00 +9897,1965-04-22 05:05:00 +6147,1967-11-08 10:41:00 +4976,1965-02-13 12:55:00 +7843,1968-12-03 15:04:00 +5600,1968-12-17 13:04:00 +7000,1967-08-22 12:23:00 +2785,1967-02-02 11:36:00 +5388,1969-07-12 05:56:00 +6220,1967-04-14 08:59:00 +3287,1967-01-15 15:06:00 +7124,1966-03-28 23:35:00 +9303,1968-08-13 15:34:00 +6709,1965-01-22 23:45:00 +6377,1967-09-20 01:53:00 +8788,1965-08-02 12:47:00 +3935,1968-10-07 12:33:00 +7948,1968-08-01 04:09:00 +3193,1965-09-29 14:03:00 +2858,1969-12-27 09:33:00 +3609,1965-09-20 13:13:00 +4667,1969-09-18 05:30:00 +8599,1967-12-10 12:35:00 +9092,1967-11-01 08:18:00 +2192,1966-08-22 08:08:00 +3433,1965-11-19 03:49:00 +8150,1965-09-25 16:59:00 +7605,1967-07-05 18:33:00 +4563,1968-08-22 17:22:00 +4544,1966-03-07 07:56:00 +8296,1968-12-10 06:11:00 +1962,1967-11-21 02:50:00 +4374,1969-01-22 12:29:00 +5662,1967-04-04 04:50:00 +2510,1966-05-04 02:34:00 +6612,1967-06-18 03:26:00 +6713,1965-06-09 17:39:00 +6702,1967-09-04 02:23:00 +3179,1965-03-15 03:10:00 +9970,1969-12-09 18:03:00 +5031,1969-06-04 08:09:00 +6874,1965-05-10 00:59:00 +693,1969-11-25 11:19:00 +7508,1969-10-10 21:22:00 +6985,1967-07-03 23:29:00 +5466,1967-06-04 20:50:00 +8103,1967-01-20 06:59:00 +1723,1968-11-16 17:02:00 +4126,1968-10-14 13:31:00 +2964,1966-05-08 18:59:00 +4808,1968-10-08 06:25:00 +2224,1968-12-13 04:28:00 +9301,1967-09-25 08:36:00 +1369,1966-12-24 07:41:00 +4569,1965-01-17 17:01:00 +5415,1965-03-15 01:21:00 +9994,1967-05-07 04:44:00 +5393,1969-06-20 14:48:00 +53,1965-08-07 21:52:00 +8752,1968-03-25 12:31:00 +4142,1967-09-03 09:23:00 +6424,1968-07-03 07:55:00 +1989,1969-08-31 23:47:00 +411,1967-02-12 10:55:00 +1990,1967-07-27 22:34:00 +1360,1966-01-01 03:00:00 +7042,1968-05-21 22:27:00 +3413,1969-07-14 08:38:00 +9013,1967-09-05 05:18:00 +5279,1966-05-28 15:32:00 +6012,1968-12-14 23:07:00 +362,1968-01-25 14:14:00 +8866,1966-05-17 05:41:00 +4049,1969-07-08 02:24:00 +7349,1966-04-07 13:49:00 +8158,1965-09-17 12:33:00 +3462,1969-08-04 01:30:00 +6714,1968-10-28 18:29:00 +2037,1967-11-05 08:20:00 +9763,1967-12-03 23:47:00 +3632,1966-03-12 08:45:00 +2001,1969-05-07 00:28:00 +6609,1969-04-07 15:06:00 +4655,1968-04-28 07:21:00 +8134,1968-11-30 18:33:00 +6900,1968-12-09 00:40:00 +3683,1965-03-08 11:40:00 +7060,1965-05-15 07:28:00 +1309,1967-12-27 09:36:00 +7808,1965-09-18 01:16:00 +1914,1966-07-04 06:49:00 +6588,1966-12-23 20:38:00 +2910,1969-07-26 22:32:00 +9113,1967-08-30 12:10:00 +249,1968-06-03 05:58:00 +5887,1966-04-28 23:26:00 +7800,1969-02-28 23:50:00 +2445,1967-07-08 14:54:00 +1184,1965-09-30 15:24:00 +8095,1967-05-22 02:25:00 +7929,1969-12-31 18:22:00 +7998,1969-02-27 01:22:00 +3408,1969-05-20 04:40:00 +610,1968-02-25 18:55:00 +9705,1969-11-03 05:15:00 +4417,1968-10-31 02:44:00 +9730,1965-02-21 08:23:00 +2298,1966-09-13 13:16:00 +5466,1969-08-28 12:18:00 +3371,1968-08-23 15:46:00 +4172,1969-01-26 05:00:00 +3834,1966-05-30 14:15:00 +3470,1969-01-12 09:50:00 +3198,1968-06-19 08:18:00 +3401,1969-07-03 22:11:00 +5381,1965-01-24 20:18:00 +4574,1966-02-07 19:46:00 +6042,1967-12-08 15:18:00 +7339,1969-12-21 07:11:00 +2124,1967-10-08 17:43:00 +168,1965-08-15 13:31:00 +3632,1968-12-17 07:18:00 +3703,1965-02-16 02:54:00 +7390,1965-10-07 11:57:00 +4231,1968-04-04 10:15:00 +1048,1969-01-10 11:33:00 +1114,1966-10-08 01:39:00 +4647,1965-10-05 17:18:00 +2105,1965-07-24 14:07:00 +3945,1967-05-29 21:19:00 +675,1967-03-31 08:34:00 +931,1967-09-11 01:40:00 +6386,1966-08-16 03:30:00 +7071,1969-07-14 00:43:00 +5764,1965-09-07 01:04:00 +6930,1965-10-24 17:26:00 +3448,1969-04-22 02:47:00 +6460,1969-07-26 00:58:00 +9874,1966-08-16 01:21:00 +4665,1969-02-28 19:14:00 +7079,1968-04-30 23:28:00 +3693,1966-10-11 04:47:00 +2935,1965-12-20 00:26:00 +7466,1966-01-27 05:31:00 +4205,1967-02-01 03:47:00 +9753,1965-09-28 13:41:00 +7756,1967-08-15 16:00:00 +5195,1967-11-20 15:15:00 +6242,1966-02-16 16:33:00 +8445,1968-04-02 11:13:00 +2585,1967-03-12 00:30:00 +7162,1965-08-05 19:10:00 +7262,1967-04-19 13:05:00 +3982,1968-11-04 23:24:00 +1156,1968-05-14 04:28:00 +3305,1968-08-18 16:15:00 +3111,1966-03-25 08:07:00 +4144,1967-08-07 11:51:00 +7699,1966-11-28 14:15:00 +8415,1968-02-22 04:43:00 +1882,1966-04-22 14:59:00 +8033,1965-02-15 14:23:00 +5882,1969-11-30 21:45:00 +977,1965-06-17 14:37:00 +1281,1967-03-11 16:18:00 +1675,1966-05-03 07:15:00 +4447,1966-06-11 09:06:00 +5222,1966-01-30 16:10:00 +925,1969-11-29 05:11:00 +5620,1969-03-05 01:13:00 +4924,1967-02-23 03:41:00 +5645,1965-12-21 08:16:00 +3501,1969-11-30 07:05:00 +557,1965-06-09 01:39:00 +5610,1965-07-09 04:43:00 +880,1966-12-08 11:00:00 +9865,1968-09-26 04:00:00 +6071,1965-12-20 19:04:00 +5298,1969-01-21 20:47:00 +1554,1968-11-14 06:33:00 +4363,1968-02-11 13:32:00 +206,1967-11-11 03:34:00 +1954,1967-10-31 22:54:00 +5102,1965-09-26 01:52:00 +2845,1968-07-04 16:10:00 +1840,1968-05-08 21:24:00 +7313,1969-12-11 06:12:00 +4443,1969-01-29 23:16:00 +6088,1968-01-27 00:23:00 +2042,1968-05-24 06:20:00 +4812,1968-12-09 21:04:00 +1266,1966-09-08 18:19:00 +6542,1967-04-15 14:37:00 +5607,1966-02-14 02:15:00 +4228,1967-02-26 05:45:00 +8337,1965-07-14 08:14:00 +9745,1969-02-04 01:18:00 +7222,1966-06-07 16:10:00 +3385,1967-07-17 19:18:00 +7159,1966-12-12 16:32:00 +147,1965-03-12 05:32:00 +1421,1968-04-15 15:53:00 +3353,1966-01-15 10:04:00 +1940,1968-05-17 10:49:00 diff --git a/tests/test_data/raw/synth_raw_binary_1.csv b/tests/test_data/raw/synth_raw_binary_1.csv new file mode 100644 index 00000000..fa153898 --- /dev/null +++ b/tests/test_data/raw/synth_raw_binary_1.csv @@ -0,0 +1,10001 @@ +dw_ek_borger,timestamp,value +1520,1969-11-16 15:27:00,0 +2384,1966-09-04 17:03:00,0 +7623,1969-06-13 13:45:00,0 +3922,1965-06-30 04:12:00,0 +2995,1965-12-17 19:36:00,0 +628,1967-11-19 18:46:00,0 +3102,1965-07-26 23:07:00,0 +353,1967-02-11 19:28:00,0 +5521,1969-12-22 00:19:00,0 +6063,1969-12-22 21:56:00,0 +160,1968-07-25 08:25:00,0 +9967,1965-01-11 23:38:00,0 +6032,1965-05-08 17:58:00,0 +4755,1969-11-19 07:32:00,0 +4697,1969-09-17 08:36:00,0 +8280,1966-09-30 20:59:00,0 +7660,1966-02-20 09:42:00,0 +6011,1969-01-12 01:59:00,0 +7124,1968-11-27 15:03:00,0 +347,1969-08-11 13:30:00,0 +2454,1966-09-05 22:15:00,0 +1932,1965-08-06 07:30:00,0 +8198,1968-10-09 17:15:00,0 +242,1967-08-28 05:14:00,0 +8472,1965-03-31 00:30:00,0 +3217,1965-06-18 03:33:00,0 +8467,1967-12-12 23:40:00,0 +3449,1966-03-12 07:35:00,0 +8991,1967-09-19 23:47:00,0 +504,1969-07-08 02:02:00,0 +9329,1967-04-03 22:52:00,0 +9817,1969-09-18 20:24:00,0 +1677,1967-02-24 08:29:00,0 +1305,1965-06-03 04:03:00,0 +9260,1965-04-27 06:27:00,0 +9222,1969-05-29 21:29:00,0 +4798,1965-05-24 11:32:00,0 +353,1969-06-03 08:54:00,0 +4447,1965-01-28 06:20:00,0 +4776,1968-10-08 22:11:00,0 +9549,1968-03-27 04:14:00,0 +6291,1967-02-13 04:34:00,0 +6044,1965-03-21 16:48:00,0 +5144,1969-09-02 08:24:00,0 +1588,1967-07-15 15:17:00,0 +2275,1967-05-09 05:31:00,0 +2725,1965-09-01 22:32:00,0 +3112,1965-01-10 02:16:00,0 +6744,1969-05-28 08:50:00,0 +8197,1968-03-20 16:08:00,0 +2479,1969-10-16 11:53:00,0 +3593,1967-08-15 09:25:00,0 +5713,1966-08-31 03:39:00,0 +5781,1965-03-02 00:24:00,0 +3212,1965-11-04 22:39:00,0 +5466,1967-03-05 08:01:00,0 +7161,1969-11-13 23:16:00,0 +2532,1968-01-20 08:48:00,0 +7019,1967-05-01 09:29:00,0 +2432,1965-10-27 18:48:00,0 +353,1966-03-20 04:40:00,0 +9058,1968-01-08 21:36:00,0 +2788,1966-01-06 15:48:00,0 +8041,1966-11-27 00:13:00,0 +8609,1967-06-29 02:22:00,0 +8648,1965-11-02 21:34:00,0 +9374,1968-06-27 20:26:00,0 +1921,1965-02-21 09:18:00,0 +2834,1966-03-10 18:21:00,0 +8950,1968-09-22 11:25:00,0 +6508,1967-11-04 13:05:00,0 +7352,1968-08-15 20:02:00,0 +7398,1968-04-04 22:59:00,0 +381,1968-05-19 04:49:00,0 +3565,1966-09-24 16:00:00,0 +1157,1966-09-12 20:45:00,0 +7189,1967-03-02 19:06:00,0 +6239,1965-10-31 22:24:00,0 +7530,1967-11-04 17:15:00,0 +1846,1967-12-31 06:47:00,0 +4798,1965-12-01 00:36:00,0 +8374,1968-04-24 00:00:00,0 +9646,1967-11-13 03:43:00,0 +3559,1965-07-09 10:23:00,0 +9292,1967-12-17 14:11:00,0 +1221,1967-02-16 11:19:00,0 +5696,1966-12-14 09:45:00,0 +4602,1968-01-18 20:05:00,0 +6507,1966-12-03 04:49:00,0 +3868,1969-07-27 01:57:00,0 +2071,1965-07-28 00:23:00,0 +7061,1966-03-29 05:10:00,0 +4513,1967-11-15 17:00:00,0 +2479,1967-04-30 08:04:00,0 +13,1969-06-17 16:48:00,0 +560,1965-08-06 15:15:00,0 +4668,1969-04-19 18:23:00,0 +6413,1966-07-23 23:12:00,0 +6897,1969-06-03 05:26:00,0 +9587,1967-10-27 11:06:00,0 +3456,1966-12-01 10:35:00,0 +8434,1965-07-06 10:30:00,0 +4118,1968-10-13 07:11:00,0 +1404,1969-06-13 03:46:00,0 +7777,1968-06-16 07:11:00,0 +9697,1968-09-17 00:09:00,0 +61,1969-07-07 02:44:00,0 +1080,1965-08-27 19:34:00,0 +2245,1966-03-11 13:07:00,0 +9403,1969-04-04 17:49:00,0 +5157,1969-09-13 07:21:00,0 +1432,1965-01-14 02:55:00,0 +3354,1965-05-12 13:51:00,0 +5292,1969-03-03 12:51:00,0 +2592,1969-07-11 21:55:00,0 +5232,1969-10-17 13:23:00,0 +8208,1969-03-27 12:50:00,0 +6194,1967-07-20 09:57:00,0 +2996,1969-08-13 12:38:00,0 +5475,1969-06-11 16:12:00,0 +9867,1967-06-17 01:30:00,0 +228,1966-01-23 07:54:00,0 +854,1969-05-26 17:58:00,0 +5155,1968-04-20 06:36:00,0 +5606,1965-02-27 23:49:00,0 +6424,1969-11-16 11:50:00,0 +280,1967-04-18 18:50:00,0 +3534,1967-06-21 07:49:00,0 +6049,1965-05-30 11:09:00,0 +7090,1965-10-07 18:26:00,0 +9939,1969-03-22 20:25:00,0 +4488,1967-08-23 13:56:00,0 +7813,1967-08-12 04:24:00,0 +4542,1965-09-03 05:15:00,0 +1197,1967-06-05 09:35:00,0 +2132,1965-07-21 04:16:00,0 +9473,1965-12-30 18:58:00,0 +2307,1968-06-03 01:39:00,0 +2927,1969-06-19 13:23:00,0 +4350,1965-09-10 04:24:00,0 +96,1966-03-11 18:51:00,0 +5751,1965-10-09 01:02:00,0 +2757,1966-03-26 16:41:00,0 +2199,1965-10-10 03:59:00,0 +5827,1965-07-03 13:07:00,0 +1756,1968-07-14 04:24:00,0 +8234,1967-10-21 08:22:00,0 +5785,1966-02-12 02:54:00,0 +6309,1969-09-22 14:25:00,0 +6287,1966-11-12 05:50:00,0 +6734,1969-08-21 12:50:00,0 +3533,1967-08-31 21:47:00,0 +576,1969-02-13 19:05:00,0 +100,1969-04-25 20:00:00,0 +6047,1966-08-26 13:57:00,0 +3666,1966-10-10 15:13:00,0 +2485,1969-04-27 21:51:00,0 +4782,1966-12-12 12:38:00,0 +2444,1965-04-03 01:05:00,0 +3518,1967-06-27 04:20:00,0 +2567,1967-06-03 04:57:00,0 +817,1965-12-20 03:53:00,0 +3452,1968-02-10 08:14:00,0 +9709,1965-08-30 10:04:00,0 +1482,1965-04-29 16:14:00,0 +2182,1967-06-21 23:23:00,0 +5188,1967-11-22 02:59:00,0 +4088,1967-06-06 22:07:00,0 +8704,1965-06-13 11:39:00,0 +8163,1967-07-30 18:30:00,0 +1500,1969-06-12 02:19:00,0 +5132,1967-10-17 18:15:00,0 +727,1969-08-07 07:42:00,0 +8444,1965-05-19 16:25:00,0 +3921,1968-08-09 20:24:00,0 +4913,1969-04-17 09:02:00,0 +6801,1967-03-20 07:20:00,0 +694,1968-05-09 20:59:00,0 +3134,1967-12-13 06:39:00,0 +3308,1966-01-10 12:19:00,0 +8336,1968-12-04 01:52:00,0 +407,1967-01-07 13:14:00,0 +2074,1969-04-23 03:31:00,0 +3432,1967-09-02 00:54:00,0 +9544,1967-02-04 05:37:00,0 +4853,1969-07-28 12:27:00,0 +8031,1965-01-04 10:45:00,0 +2583,1968-03-01 06:28:00,0 +3946,1966-08-26 08:39:00,0 +6726,1965-01-27 17:33:00,0 +9200,1968-04-06 07:22:00,0 +8407,1967-05-13 06:24:00,0 +7746,1968-06-29 05:49:00,0 +3887,1966-01-25 16:44:00,0 +5169,1968-04-07 03:32:00,0 +9755,1966-05-07 00:25:00,0 +5153,1969-08-22 01:58:00,0 +5142,1967-07-19 06:21:00,0 +5066,1968-12-23 03:17:00,0 +8173,1968-09-14 03:31:00,0 +2080,1967-05-11 15:34:00,0 +8791,1965-01-23 02:15:00,0 +3415,1967-04-02 06:40:00,0 +7978,1968-08-27 08:34:00,0 +6712,1967-06-15 04:44:00,0 +7170,1965-06-30 15:54:00,0 +3680,1966-08-31 13:46:00,0 +425,1966-12-03 20:03:00,0 +7026,1967-02-03 19:52:00,0 +3671,1968-10-27 18:56:00,0 +8415,1969-06-09 14:58:00,0 +9375,1965-04-21 12:29:00,0 +1702,1969-07-24 22:46:00,0 +4393,1967-07-02 07:26:00,0 +6821,1966-02-07 03:09:00,0 +2973,1965-05-08 05:22:00,0 +1392,1965-10-21 22:21:00,0 +6214,1966-08-01 21:48:00,0 +4529,1968-06-08 15:04:00,0 +9793,1965-05-14 09:29:00,0 +8034,1965-03-28 22:29:00,0 +1431,1965-04-30 18:46:00,0 +4549,1968-12-24 15:51:00,0 +3269,1966-04-09 21:35:00,0 +5764,1969-07-01 20:46:00,0 +3579,1968-11-06 18:02:00,0 +8639,1966-07-02 15:16:00,0 +6110,1965-03-18 19:36:00,0 +4114,1966-01-19 15:12:00,0 +8159,1967-07-02 17:17:00,0 +8584,1969-10-16 04:01:00,0 +4296,1966-07-19 01:59:00,0 +5471,1967-03-12 15:29:00,0 +9893,1965-04-18 06:30:00,0 +5735,1966-02-20 04:05:00,0 +2622,1968-04-15 02:36:00,0 +4795,1967-10-20 12:23:00,0 +3474,1967-06-26 11:59:00,0 +148,1965-05-03 08:41:00,0 +6869,1965-05-22 22:45:00,0 +1500,1969-08-09 09:01:00,0 +2199,1965-11-15 20:41:00,0 +1786,1966-02-24 10:49:00,0 +6765,1969-02-15 13:34:00,0 +1326,1968-01-01 06:31:00,0 +6600,1969-01-02 04:20:00,0 +5153,1969-01-15 05:16:00,0 +9709,1966-04-03 06:35:00,0 +1834,1969-02-03 08:47:00,0 +2044,1966-05-06 16:30:00,0 +9208,1965-01-09 04:08:00,0 +4803,1967-05-18 10:35:00,0 +8341,1967-02-03 22:46:00,0 +8474,1967-12-04 10:29:00,0 +8797,1965-06-06 22:27:00,0 +4400,1967-11-29 23:30:00,0 +2924,1967-01-16 22:47:00,0 +4888,1968-04-15 03:07:00,0 +8255,1965-01-21 20:07:00,0 +5178,1969-08-11 07:12:00,0 +7797,1967-05-05 03:39:00,0 +6299,1966-09-02 21:40:00,0 +4680,1969-01-22 10:45:00,0 +8490,1965-10-24 20:11:00,0 +6265,1965-07-21 12:43:00,0 +5754,1966-06-24 13:49:00,0 +4790,1965-08-11 16:57:00,0 +2337,1969-05-07 08:36:00,0 +5717,1965-05-10 01:49:00,0 +8792,1968-06-15 23:56:00,0 +154,1968-02-10 15:04:00,0 +7054,1968-10-18 18:04:00,0 +8040,1965-09-15 02:39:00,0 +7093,1965-01-09 22:52:00,0 +5697,1965-01-12 13:54:00,0 +4113,1967-06-26 11:01:00,0 +4112,1966-02-06 00:12:00,0 +2141,1965-07-30 04:45:00,0 +5765,1969-10-29 01:34:00,0 +9903,1969-04-12 22:22:00,0 +4425,1965-03-05 16:09:00,0 +3651,1966-05-01 08:53:00,0 +6658,1969-05-10 07:41:00,0 +1754,1968-07-07 08:56:00,0 +850,1968-12-09 23:16:00,0 +6874,1968-12-09 21:46:00,0 +8268,1968-09-21 00:15:00,0 +9684,1966-04-11 03:08:00,0 +840,1969-02-21 11:32:00,0 +3702,1965-08-11 16:56:00,0 +8924,1965-01-29 12:05:00,0 +3143,1968-12-02 17:00:00,0 +9104,1968-04-13 03:25:00,0 +2588,1966-05-10 23:44:00,0 +7863,1967-12-20 10:44:00,0 +3670,1966-12-12 05:20:00,0 +6156,1968-08-05 21:41:00,0 +169,1969-07-21 23:27:00,0 +4402,1965-04-30 02:32:00,0 +4034,1969-01-31 11:00:00,0 +7750,1966-05-22 00:03:00,0 +3107,1969-05-16 19:20:00,0 +961,1967-07-01 09:43:00,0 +6565,1965-11-19 01:38:00,0 +2877,1969-11-25 23:33:00,0 +5749,1966-03-12 13:15:00,0 +1478,1966-09-22 15:15:00,0 +9141,1969-01-13 10:26:00,0 +6134,1968-08-28 06:51:00,0 +3795,1966-03-10 07:47:00,0 +5649,1967-08-21 17:26:00,0 +6535,1965-06-21 06:59:00,0 +8304,1967-04-25 06:59:00,0 +6314,1965-07-11 08:11:00,0 +8811,1967-12-07 23:39:00,0 +4106,1968-03-23 19:41:00,0 +7390,1968-09-01 00:29:00,0 +6666,1969-12-25 20:27:00,0 +7069,1968-10-04 20:03:00,0 +2334,1967-08-30 06:31:00,0 +5593,1968-10-22 08:57:00,0 +3180,1968-08-08 00:06:00,0 +6889,1969-10-02 11:31:00,0 +9042,1965-06-24 00:08:00,0 +6087,1968-05-21 11:10:00,0 +9608,1969-10-23 19:01:00,0 +1950,1969-03-04 15:52:00,0 +3916,1967-01-15 14:51:00,0 +9103,1969-11-06 08:33:00,0 +7665,1966-04-20 01:26:00,0 +1590,1965-04-10 09:49:00,0 +155,1967-06-26 16:41:00,0 +152,1966-07-03 14:50:00,0 +258,1968-11-16 18:44:00,0 +9746,1965-03-13 08:15:00,0 +3101,1966-12-02 07:53:00,0 +1586,1966-03-31 14:03:00,0 +1915,1966-11-29 22:08:00,0 +4986,1968-02-10 08:22:00,0 +3567,1968-09-23 13:02:00,0 +903,1967-02-11 10:36:00,0 +8362,1967-10-08 15:01:00,0 +4899,1967-07-23 18:50:00,0 +1055,1968-11-03 00:53:00,0 +2771,1968-03-26 11:30:00,0 +4562,1965-12-30 05:06:00,0 +5733,1969-08-28 22:04:00,0 +3036,1967-12-10 13:10:00,0 +2457,1968-09-05 18:53:00,0 +6647,1967-10-14 23:28:00,0 +4477,1966-05-27 19:32:00,0 +3076,1968-08-31 11:10:00,0 +2863,1965-05-25 18:02:00,0 +197,1967-05-05 02:54:00,0 +3099,1966-12-28 08:25:00,0 +8857,1966-06-17 12:52:00,0 +8426,1965-02-09 16:09:00,0 +8875,1968-02-24 06:07:00,0 +57,1965-11-28 19:37:00,0 +6586,1966-11-11 19:39:00,0 +9083,1968-06-27 23:41:00,0 +4985,1968-01-31 14:55:00,0 +1720,1967-02-21 00:57:00,0 +2797,1969-08-02 17:24:00,0 +4230,1967-09-09 07:45:00,0 +3365,1968-08-29 11:59:00,0 +3506,1969-11-30 07:03:00,0 +3637,1967-03-10 05:44:00,0 +6911,1967-08-09 09:33:00,0 +6089,1968-06-04 19:01:00,0 +7921,1966-02-18 00:16:00,0 +527,1967-03-05 01:00:00,0 +6110,1968-05-24 05:38:00,0 +3446,1966-01-11 17:53:00,0 +9626,1968-09-17 20:29:00,0 +9983,1969-10-16 17:55:00,0 +6364,1967-03-11 05:29:00,0 +7561,1965-01-19 11:05:00,0 +688,1968-10-26 08:26:00,0 +41,1969-10-18 16:51:00,0 +3230,1965-07-24 10:18:00,0 +924,1969-12-13 14:55:00,0 +6268,1969-07-21 11:28:00,0 +3502,1969-11-08 11:32:00,0 +9305,1969-04-29 18:12:00,0 +7085,1965-10-12 07:55:00,0 +1562,1967-04-19 14:31:00,0 +6358,1969-08-12 07:52:00,0 +6961,1969-09-11 07:17:00,0 +8339,1965-12-31 16:01:00,0 +9979,1969-12-10 18:31:00,0 +6854,1969-07-19 01:11:00,0 +3291,1965-08-27 06:14:00,0 +6490,1966-04-14 20:24:00,0 +235,1968-01-08 14:55:00,0 +1949,1967-11-11 22:39:00,0 +8286,1968-07-18 09:35:00,0 +7554,1966-10-18 23:44:00,0 +3991,1969-01-18 15:16:00,0 +6328,1969-12-31 03:17:00,0 +7776,1967-02-02 10:45:00,0 +6361,1969-03-21 11:48:00,0 +4883,1968-02-11 12:58:00,0 +7518,1966-02-04 23:56:00,0 +8909,1965-10-19 09:04:00,0 +172,1967-10-27 23:41:00,0 +9110,1968-01-28 20:02:00,0 +4496,1968-02-24 06:13:00,0 +8633,1967-02-23 17:40:00,0 +6931,1965-12-23 21:40:00,0 +6966,1968-05-26 20:17:00,0 +8197,1966-02-05 23:17:00,0 +9499,1966-01-31 23:16:00,0 +9042,1968-01-23 14:11:00,0 +9899,1968-03-31 23:21:00,0 +5127,1965-04-25 02:20:00,0 +9889,1965-04-07 05:56:00,0 +6058,1968-11-21 15:23:00,0 +3225,1965-04-08 09:02:00,0 +6283,1969-12-02 14:08:00,0 +9953,1969-08-16 22:05:00,0 +4260,1967-07-14 02:51:00,0 +9447,1966-04-07 12:20:00,0 +4052,1968-10-08 02:44:00,0 +516,1965-04-21 19:33:00,0 +1114,1968-07-07 14:49:00,0 +9866,1969-04-19 01:06:00,0 +4566,1965-03-13 11:12:00,0 +3313,1965-07-28 07:01:00,0 +227,1966-10-17 23:45:00,0 +2424,1967-06-23 00:44:00,0 +3246,1967-01-17 17:55:00,0 +7900,1965-01-23 04:40:00,0 +8970,1968-04-01 07:42:00,0 +7937,1967-05-02 16:57:00,0 +8233,1965-07-04 17:29:00,0 +4613,1966-04-01 08:37:00,0 +8477,1968-02-06 13:38:00,0 +7378,1965-12-08 04:34:00,0 +6155,1967-09-03 20:52:00,0 +8452,1965-04-09 15:23:00,0 +2280,1966-03-31 17:24:00,0 +1900,1967-08-17 07:15:00,0 +7816,1968-07-06 09:31:00,0 +8401,1969-09-12 23:38:00,0 +3632,1967-04-17 18:30:00,0 +7050,1968-05-30 06:40:00,0 +6735,1967-12-02 08:15:00,0 +5554,1968-05-09 16:18:00,0 +4810,1965-08-30 07:46:00,0 +1817,1969-03-02 00:42:00,0 +918,1968-12-02 07:20:00,0 +7397,1968-06-02 23:46:00,0 +8631,1968-09-03 05:04:00,0 +7567,1967-03-10 06:38:00,0 +3180,1965-09-20 09:04:00,0 +6296,1969-11-10 13:13:00,0 +8787,1965-12-25 13:43:00,0 +2181,1967-01-20 00:42:00,0 +1001,1966-07-13 20:59:00,0 +5874,1969-02-07 10:23:00,0 +2254,1967-08-24 12:31:00,0 +9983,1966-11-11 00:53:00,0 +7270,1966-07-05 04:04:00,0 +7595,1968-05-24 22:02:00,0 +7554,1967-03-01 10:14:00,0 +1347,1969-06-24 14:48:00,0 +8763,1965-01-14 21:15:00,0 +1455,1966-11-13 15:26:00,0 +2849,1967-02-18 14:19:00,0 +5957,1967-08-07 14:37:00,0 +853,1966-10-08 23:17:00,0 +1997,1966-01-03 00:19:00,0 +6619,1965-03-04 15:49:00,0 +1961,1967-12-12 18:54:00,0 +9585,1967-08-29 04:08:00,0 +2845,1968-04-04 13:53:00,0 +6269,1968-11-01 14:37:00,0 +6953,1969-04-23 17:18:00,0 +8968,1966-05-02 13:04:00,0 +591,1968-04-29 22:37:00,0 +5865,1966-01-02 21:21:00,0 +6104,1965-05-30 16:45:00,0 +6383,1966-07-02 09:48:00,0 +8472,1967-06-12 14:18:00,0 +9744,1969-02-08 18:35:00,0 +9732,1966-06-02 04:52:00,0 +4169,1969-04-21 12:00:00,0 +5500,1967-06-25 07:49:00,0 +8706,1965-01-18 22:58:00,0 +2232,1967-06-29 06:22:00,0 +9534,1969-09-09 07:08:00,0 +924,1965-09-13 08:09:00,0 +4417,1965-11-05 01:42:00,0 +1024,1969-12-21 07:31:00,0 +2819,1966-06-04 21:07:00,0 +8063,1969-11-12 20:12:00,0 +2012,1967-07-03 09:02:00,0 +38,1966-02-27 12:20:00,0 +5609,1969-07-31 13:28:00,0 +2789,1966-06-21 13:19:00,0 +8917,1965-09-27 05:22:00,0 +6618,1965-09-05 06:07:00,0 +4681,1969-10-13 11:20:00,0 +7881,1969-12-14 18:52:00,0 +7465,1969-08-01 19:21:00,0 +5494,1967-08-29 21:37:00,0 +6930,1968-10-19 02:24:00,0 +2063,1966-01-30 11:43:00,0 +79,1968-08-30 11:08:00,0 +9662,1968-06-29 17:28:00,0 +8501,1965-02-06 23:42:00,0 +2599,1965-09-18 01:30:00,0 +6627,1966-03-31 11:09:00,0 +2249,1967-01-18 14:27:00,0 +9492,1966-11-04 06:57:00,0 +5490,1966-04-16 14:46:00,0 +4228,1968-12-22 22:24:00,0 +7929,1967-11-18 16:36:00,0 +1416,1968-01-23 10:28:00,0 +3394,1965-09-18 12:32:00,0 +9236,1969-10-01 12:31:00,0 +5966,1969-12-11 18:40:00,0 +9717,1967-07-31 13:45:00,0 +9030,1966-09-07 15:51:00,0 +5731,1968-08-13 20:26:00,0 +3713,1968-04-12 06:05:00,0 +2636,1965-07-27 20:30:00,0 +6294,1966-10-17 05:08:00,0 +880,1966-12-15 04:47:00,0 +7104,1966-04-04 16:27:00,0 +382,1969-04-24 14:37:00,0 +7012,1969-05-09 07:54:00,0 +6851,1967-07-22 01:45:00,0 +7267,1968-07-18 14:41:00,0 +2,1968-05-08 19:36:00,0 +6313,1967-12-06 02:16:00,0 +900,1965-05-19 17:54:00,0 +7805,1969-07-28 19:41:00,0 +9510,1968-08-22 16:10:00,0 +6759,1967-08-10 10:34:00,0 +9423,1968-09-24 20:50:00,0 +6888,1965-10-09 21:04:00,0 +1902,1966-01-05 16:34:00,0 +5614,1969-05-23 07:20:00,0 +1656,1965-07-17 09:23:00,0 +9564,1968-05-14 09:17:00,0 +2176,1967-05-05 08:05:00,0 +1651,1968-12-22 18:14:00,0 +7661,1969-09-12 18:18:00,0 +5491,1966-03-16 03:01:00,0 +157,1967-12-09 11:08:00,0 +7803,1967-04-02 02:37:00,0 +8863,1967-02-07 08:45:00,0 +3675,1969-01-27 08:45:00,0 +8455,1969-05-02 08:27:00,0 +6249,1969-12-20 17:07:00,0 +8187,1965-07-13 23:07:00,0 +1169,1967-10-08 00:20:00,0 +5183,1965-07-21 08:36:00,0 +1542,1969-05-22 08:10:00,0 +3586,1966-03-11 05:15:00,0 +2026,1965-01-09 23:33:00,0 +8479,1967-01-15 18:32:00,0 +8540,1969-05-26 15:05:00,0 +9033,1967-11-26 22:54:00,0 +636,1966-11-25 14:20:00,0 +3319,1968-04-14 07:15:00,0 +388,1966-08-15 00:29:00,0 +7966,1969-07-27 02:39:00,0 +7371,1965-08-02 07:53:00,0 +6801,1967-06-20 13:52:00,0 +8600,1968-08-30 12:27:00,0 +3194,1967-06-12 07:25:00,0 +2436,1969-03-19 16:46:00,0 +6837,1966-08-16 15:32:00,0 +8046,1965-06-10 02:25:00,0 +5172,1969-10-04 19:22:00,0 +6631,1968-03-31 11:45:00,0 +851,1969-07-01 02:56:00,0 +3799,1967-02-24 20:10:00,0 +9545,1969-02-24 02:42:00,0 +1234,1966-03-07 12:25:00,0 +6009,1969-02-13 21:28:00,0 +893,1967-10-18 10:07:00,0 +2107,1966-05-12 05:11:00,0 +2174,1967-11-17 16:15:00,0 +1802,1967-01-21 03:47:00,0 +8923,1965-06-20 23:01:00,0 +7361,1965-02-28 13:33:00,0 +3922,1969-08-29 18:48:00,0 +4970,1968-05-18 21:21:00,0 +5459,1969-08-05 07:58:00,0 +1206,1968-08-07 07:12:00,0 +8841,1968-10-11 09:56:00,0 +5553,1966-10-30 04:14:00,0 +7189,1968-09-12 01:48:00,0 +9921,1965-02-20 17:36:00,0 +6184,1969-03-03 13:27:00,0 +5943,1967-09-15 16:09:00,0 +1655,1969-04-26 05:21:00,0 +1982,1968-07-04 06:20:00,0 +801,1965-09-07 16:56:00,0 +5888,1965-07-03 07:02:00,0 +3635,1965-04-14 09:22:00,0 +5527,1967-01-26 01:15:00,0 +4339,1969-04-12 12:56:00,0 +1150,1965-08-01 06:59:00,0 +9636,1968-11-24 23:33:00,0 +2292,1967-05-23 12:40:00,0 +9491,1969-03-18 05:25:00,0 +8113,1967-08-16 07:01:00,0 +7459,1969-10-09 01:14:00,0 +6573,1968-04-06 21:58:00,0 +7669,1967-07-23 12:46:00,0 +3444,1969-12-30 05:43:00,0 +8901,1969-10-10 07:53:00,0 +3807,1968-11-25 09:58:00,0 +6751,1969-03-03 20:12:00,0 +9136,1967-12-07 01:32:00,0 +5138,1965-04-07 10:11:00,0 +2189,1968-02-04 09:33:00,0 +3876,1966-10-27 18:51:00,0 +4423,1965-09-28 14:21:00,0 +4678,1967-03-19 21:44:00,0 +2008,1967-10-11 05:07:00,0 +8613,1967-01-16 04:07:00,0 +3583,1965-05-20 06:52:00,0 +6452,1967-10-30 12:25:00,0 +3618,1968-11-29 22:30:00,0 +4863,1969-10-28 02:51:00,0 +523,1965-10-20 10:21:00,0 +5152,1968-09-20 19:07:00,0 +4558,1968-09-23 06:30:00,0 +4600,1965-09-07 08:11:00,0 +4011,1968-04-07 05:51:00,0 +7486,1966-12-11 22:10:00,0 +532,1966-09-25 16:23:00,0 +919,1967-12-01 05:07:00,0 +1464,1969-07-14 06:10:00,0 +3362,1966-03-18 11:59:00,0 +9950,1969-07-19 11:46:00,0 +2195,1966-08-04 03:54:00,0 +129,1968-10-17 02:24:00,0 +1626,1969-10-10 08:10:00,0 +8571,1965-10-02 05:00:00,0 +595,1965-04-30 12:49:00,0 +9811,1965-04-01 08:00:00,0 +9086,1969-03-25 13:02:00,0 +2817,1969-12-18 16:25:00,0 +4659,1969-02-18 08:35:00,0 +6303,1965-08-19 13:17:00,0 +3784,1966-03-18 07:30:00,0 +9601,1969-08-25 00:12:00,0 +5637,1966-01-15 04:14:00,0 +7102,1967-01-30 08:44:00,0 +9428,1968-12-15 04:36:00,0 +9282,1967-10-19 17:18:00,0 +5307,1967-03-20 22:13:00,0 +70,1968-02-17 02:41:00,0 +1749,1967-01-04 09:30:00,0 +1508,1968-08-21 23:47:00,0 +868,1967-01-04 04:46:00,0 +3360,1968-04-30 01:01:00,0 +8461,1965-10-15 09:25:00,0 +9877,1965-05-05 07:35:00,0 +61,1965-09-01 07:32:00,0 +4951,1969-05-26 01:00:00,0 +5253,1967-12-18 06:20:00,0 +5495,1966-05-26 12:42:00,0 +4984,1966-12-31 12:49:00,0 +5855,1969-10-04 01:47:00,0 +5184,1967-09-02 20:56:00,0 +8493,1969-02-03 15:00:00,0 +9484,1966-06-14 04:10:00,0 +3140,1969-12-18 18:20:00,0 +6285,1969-03-28 11:36:00,0 +6353,1968-04-08 11:05:00,0 +4071,1965-12-06 07:06:00,0 +7889,1965-04-19 16:53:00,0 +5298,1966-11-08 09:59:00,0 +424,1965-04-10 01:32:00,0 +2982,1966-03-18 14:58:00,0 +619,1965-06-19 16:31:00,0 +2328,1968-01-13 17:08:00,0 +7667,1968-07-27 01:16:00,0 +5973,1965-02-10 13:18:00,0 +555,1969-07-23 17:23:00,0 +3046,1966-10-17 08:39:00,0 +6772,1967-08-28 10:34:00,0 +8783,1969-07-03 16:42:00,0 +2185,1969-12-22 23:12:00,0 +7170,1965-03-05 17:57:00,0 +3547,1966-03-25 00:37:00,0 +7121,1965-01-06 07:54:00,0 +896,1965-05-30 15:47:00,0 +1117,1967-11-16 17:45:00,0 +6192,1965-02-06 20:56:00,0 +8792,1968-07-02 21:10:00,0 +4528,1966-09-23 21:43:00,0 +458,1966-09-25 13:20:00,0 +8994,1969-03-11 06:44:00,0 +3043,1969-07-08 11:33:00,0 +389,1965-10-06 09:47:00,0 +1606,1965-06-02 17:36:00,0 +269,1967-09-27 22:10:00,0 +1945,1967-11-21 05:04:00,0 +336,1965-06-23 00:54:00,0 +9205,1969-02-19 01:58:00,0 +8225,1969-01-07 08:55:00,0 +5249,1966-02-23 06:10:00,0 +9597,1969-01-17 22:38:00,0 +9892,1967-03-22 11:23:00,0 +6237,1969-06-22 09:07:00,0 +8441,1969-12-04 01:07:00,0 +4013,1969-02-17 21:54:00,0 +5552,1965-02-06 15:19:00,0 +4221,1968-10-16 01:20:00,0 +7809,1969-04-09 06:38:00,0 +4948,1965-11-18 12:20:00,0 +5846,1967-04-05 12:25:00,0 +8571,1965-09-02 15:58:00,0 +6251,1969-06-17 21:47:00,0 +5037,1965-01-21 04:30:00,0 +6683,1968-02-24 02:53:00,0 +1622,1968-08-29 06:41:00,0 +6609,1969-11-10 10:37:00,0 +6942,1968-02-05 03:44:00,0 +6331,1969-07-03 08:05:00,0 +9958,1965-07-23 12:02:00,0 +3963,1969-10-01 14:02:00,0 +3641,1966-10-18 05:32:00,0 +6326,1968-11-30 12:34:00,0 +8957,1967-03-18 20:01:00,0 +9578,1966-11-24 13:36:00,0 +6923,1966-05-24 16:21:00,0 +4325,1965-07-18 14:25:00,0 +891,1968-10-25 16:43:00,0 +532,1967-07-11 09:00:00,0 +6731,1969-11-21 07:27:00,0 +4915,1967-05-09 00:30:00,0 +2069,1966-06-27 23:17:00,0 +85,1966-10-31 06:36:00,0 +5116,1968-12-29 18:19:00,0 +2651,1967-07-01 09:45:00,0 +6172,1966-10-18 06:52:00,0 +7957,1967-01-06 00:38:00,0 +1693,1969-08-29 01:50:00,0 +4435,1969-03-18 18:46:00,0 +8813,1968-03-10 04:44:00,0 +6040,1969-07-24 12:01:00,0 +5546,1965-11-14 08:27:00,0 +6063,1966-11-18 15:17:00,0 +9162,1965-05-01 11:31:00,0 +3615,1968-08-15 00:03:00,0 +492,1968-11-24 04:58:00,0 +4775,1969-05-29 03:57:00,0 +6052,1965-06-04 10:49:00,0 +3668,1969-07-19 18:20:00,0 +257,1968-01-29 12:18:00,0 +5909,1967-08-20 20:40:00,0 +9104,1967-01-07 07:37:00,0 +8999,1965-06-04 06:39:00,0 +2435,1965-03-30 05:45:00,0 +5541,1966-10-14 09:55:00,0 +3303,1965-03-28 01:17:00,0 +4638,1969-01-24 22:02:00,0 +9632,1965-06-25 16:39:00,0 +4961,1966-08-09 19:14:00,0 +5473,1966-03-04 15:00:00,0 +1514,1969-10-19 22:53:00,0 +2232,1968-06-17 08:25:00,0 +451,1967-10-07 19:32:00,0 +5679,1965-08-23 15:07:00,0 +8167,1966-03-04 23:34:00,0 +9833,1969-01-13 06:57:00,0 +9566,1965-03-23 01:35:00,0 +9670,1967-06-11 16:53:00,0 +500,1967-09-25 01:31:00,0 +3249,1965-02-16 18:52:00,0 +6208,1966-08-30 09:58:00,0 +5335,1968-11-23 07:01:00,0 +3096,1968-11-19 09:55:00,0 +5278,1968-06-28 18:38:00,0 +7603,1969-08-04 13:02:00,0 +2946,1965-10-19 18:02:00,0 +4012,1965-12-13 13:02:00,0 +1458,1969-05-15 02:47:00,0 +6137,1969-07-05 03:44:00,0 +2278,1965-09-18 23:01:00,0 +9461,1965-08-31 04:01:00,0 +6245,1969-11-29 10:20:00,0 +3467,1968-03-31 08:52:00,0 +4761,1965-10-10 08:37:00,0 +5517,1967-02-16 17:26:00,0 +5903,1966-05-07 18:17:00,0 +5288,1967-11-25 00:57:00,0 +4009,1968-04-09 05:00:00,0 +8074,1968-09-24 17:51:00,0 +4511,1965-02-20 14:45:00,0 +9073,1969-03-16 20:44:00,0 +806,1965-07-18 00:40:00,0 +4701,1967-04-20 16:25:00,0 +1798,1966-12-26 04:44:00,0 +6661,1967-04-14 07:00:00,0 +5449,1965-08-13 10:09:00,0 +6090,1965-08-10 10:01:00,0 +241,1967-11-21 04:56:00,0 +6402,1966-05-31 09:16:00,0 +3414,1965-11-30 18:25:00,0 +6774,1968-04-16 00:10:00,0 +3820,1967-10-20 18:42:00,0 +5157,1965-07-29 18:45:00,0 +4682,1967-10-11 23:54:00,0 +4908,1966-05-21 22:17:00,0 +3796,1965-12-08 07:52:00,0 +2494,1965-09-10 04:11:00,0 +579,1965-01-28 12:33:00,0 +9866,1969-08-22 14:52:00,0 +2406,1965-12-29 19:42:00,0 +4337,1969-02-08 05:40:00,0 +27,1966-05-17 18:43:00,0 +748,1968-01-01 11:19:00,0 +5980,1968-12-03 10:13:00,0 +6356,1967-04-06 23:21:00,0 +3814,1969-01-05 12:41:00,0 +4760,1965-02-05 02:22:00,0 +52,1969-01-19 09:49:00,0 +8598,1968-09-19 09:35:00,0 +6591,1969-03-15 15:51:00,0 +9383,1967-08-11 13:22:00,0 +1579,1965-04-29 05:43:00,0 +7351,1966-12-16 17:38:00,0 +285,1967-01-07 06:54:00,0 +2842,1965-11-11 01:06:00,0 +139,1967-05-31 06:26:00,0 +5561,1968-03-21 18:57:00,0 +994,1966-08-26 18:14:00,0 +5059,1969-07-20 14:48:00,0 +9323,1967-06-30 15:50:00,0 +8952,1967-04-12 16:36:00,0 +6941,1966-12-04 05:03:00,0 +4601,1967-12-17 15:27:00,0 +1052,1969-05-04 10:39:00,0 +7361,1966-09-27 03:32:00,0 +9720,1968-01-24 16:10:00,0 +2313,1969-01-30 16:39:00,0 +7894,1969-01-31 20:05:00,0 +4825,1966-03-12 07:58:00,0 +936,1966-11-15 04:35:00,0 +4856,1968-02-17 11:47:00,0 +4333,1969-11-18 07:01:00,0 +3342,1969-07-09 21:43:00,0 +7914,1966-06-09 22:53:00,0 +2468,1967-01-24 14:06:00,0 +6430,1969-04-06 18:38:00,0 +5132,1969-02-12 08:36:00,0 +1053,1968-09-17 14:17:00,0 +9870,1967-03-11 10:11:00,0 +6545,1968-02-05 16:53:00,0 +8643,1969-09-19 00:43:00,0 +3550,1965-07-12 21:40:00,0 +861,1965-05-22 08:39:00,0 +6218,1966-11-23 03:59:00,0 +2087,1967-04-04 08:29:00,0 +1845,1967-08-10 14:13:00,0 +6191,1965-04-22 00:34:00,0 +7224,1968-03-14 04:27:00,0 +2139,1967-10-29 15:55:00,0 +2,1969-07-02 23:22:00,0 +4954,1968-09-11 18:31:00,0 +8745,1966-06-06 20:52:00,0 +4513,1968-10-23 17:56:00,0 +8898,1967-01-29 08:32:00,0 +3120,1968-09-02 02:06:00,0 +4697,1966-12-11 15:30:00,0 +8302,1968-08-12 20:37:00,0 +2020,1965-07-14 14:30:00,0 +8746,1967-04-21 07:25:00,0 +8189,1968-09-03 21:04:00,0 +5239,1965-11-24 03:12:00,0 +3273,1965-06-03 14:12:00,0 +8939,1969-07-05 04:51:00,0 +3070,1969-03-19 01:36:00,0 +3343,1967-11-14 16:15:00,0 +6099,1968-05-08 21:00:00,0 +5078,1965-10-18 06:37:00,0 +9256,1969-01-24 08:56:00,0 +7273,1968-05-01 15:20:00,0 +6351,1967-06-07 04:09:00,0 +6390,1969-11-27 09:33:00,0 +2263,1968-02-02 17:24:00,0 +6942,1969-09-09 13:02:00,0 +2081,1966-12-06 18:35:00,0 +867,1966-05-16 03:47:00,0 +7787,1966-10-02 09:43:00,0 +7257,1965-01-10 15:29:00,0 +4669,1967-12-02 14:18:00,0 +6319,1969-06-03 16:19:00,0 +4949,1965-06-16 08:09:00,0 +2946,1966-04-01 06:12:00,0 +64,1967-04-17 11:16:00,0 +4492,1969-02-03 11:47:00,0 +7126,1968-12-07 17:11:00,0 +5834,1969-07-29 01:11:00,0 +2105,1967-02-14 11:30:00,0 +4237,1965-12-06 22:35:00,0 +6530,1969-03-25 23:22:00,0 +1507,1968-09-24 17:28:00,0 +2363,1966-06-13 12:50:00,0 +8889,1966-03-07 05:19:00,0 +8506,1969-04-09 06:16:00,0 +9565,1969-07-27 18:40:00,0 +8999,1968-07-19 07:11:00,0 +3672,1969-08-06 06:37:00,0 +5232,1968-10-02 01:32:00,0 +5221,1967-11-09 12:55:00,0 +2010,1968-11-26 17:20:00,0 +8446,1966-01-11 19:56:00,0 +9163,1965-12-10 11:17:00,0 +2511,1967-09-21 19:39:00,0 +721,1967-10-06 06:32:00,0 +3088,1967-02-27 04:55:00,0 +5830,1968-05-03 16:20:00,0 +5845,1968-09-17 08:07:00,0 +2568,1967-06-10 08:32:00,0 +1904,1967-09-15 20:04:00,0 +4965,1965-06-20 03:11:00,0 +7720,1968-06-30 21:47:00,0 +6774,1965-12-30 12:33:00,0 +3396,1969-04-17 03:48:00,0 +3740,1969-02-13 21:45:00,0 +704,1969-06-11 14:22:00,0 +2494,1965-03-03 21:59:00,0 +5099,1965-12-31 07:14:00,0 +336,1967-04-02 14:30:00,0 +2429,1966-09-14 05:15:00,0 +9111,1969-11-21 08:43:00,0 +9575,1969-11-26 03:04:00,0 +2825,1965-05-16 07:57:00,0 +3623,1967-07-10 00:50:00,0 +2331,1967-10-08 09:10:00,0 +3030,1969-08-07 19:42:00,0 +4561,1966-03-01 14:51:00,0 +4229,1968-11-24 03:59:00,0 +4894,1967-03-30 23:52:00,0 +7829,1968-08-25 03:14:00,0 +5591,1969-11-06 21:16:00,0 +9550,1969-05-28 07:00:00,0 +714,1967-02-27 03:34:00,0 +2545,1965-05-12 06:42:00,0 +2286,1965-05-14 17:17:00,0 +5283,1966-07-22 19:21:00,0 +1761,1969-06-11 18:37:00,0 +4007,1969-06-27 23:19:00,0 +4892,1967-03-04 20:09:00,0 +9720,1966-01-01 03:58:00,0 +6726,1966-06-13 05:24:00,0 +3085,1966-10-14 04:03:00,0 +4497,1966-07-16 07:37:00,0 +1995,1966-02-23 06:05:00,0 +3178,1969-04-30 21:59:00,0 +3780,1969-05-08 16:50:00,0 +1287,1968-04-04 09:43:00,0 +6420,1965-12-29 12:56:00,0 +3614,1966-03-15 18:53:00,0 +5880,1966-07-13 02:50:00,0 +4491,1969-10-21 11:16:00,0 +2892,1968-10-26 23:52:00,0 +2977,1969-04-12 13:03:00,0 +7968,1966-02-15 11:35:00,0 +3237,1968-12-12 06:07:00,0 +7899,1968-06-08 22:17:00,0 +7833,1965-05-13 16:39:00,0 +757,1967-09-03 07:47:00,0 +9007,1969-03-28 08:52:00,0 +8491,1969-11-22 19:17:00,0 +9023,1969-08-26 13:49:00,0 +1065,1968-05-17 22:17:00,0 +5878,1967-08-27 20:33:00,0 +4076,1966-02-22 11:50:00,0 +5749,1969-02-10 00:40:00,0 +7288,1969-10-19 19:46:00,0 +5132,1965-07-07 03:13:00,0 +7168,1965-01-02 00:20:00,0 +8976,1968-09-07 22:59:00,0 +5510,1966-11-11 04:52:00,0 +2529,1966-06-13 11:12:00,0 +1039,1966-08-08 14:15:00,0 +1364,1969-07-06 13:33:00,0 +3397,1968-05-04 05:13:00,0 +2112,1968-07-08 13:37:00,0 +6537,1968-06-01 08:28:00,0 +569,1969-01-17 22:06:00,0 +8289,1969-11-16 05:14:00,0 +666,1967-06-23 05:18:00,0 +4376,1968-03-01 17:15:00,0 +2737,1965-12-29 11:45:00,0 +9690,1968-10-08 08:25:00,0 +7671,1965-12-01 18:55:00,0 +9652,1967-12-15 11:27:00,0 +8919,1966-10-19 03:05:00,0 +4176,1969-03-04 07:05:00,0 +8476,1968-03-05 13:04:00,0 +4383,1965-06-06 13:34:00,0 +6343,1967-09-05 00:16:00,0 +3322,1969-03-12 16:05:00,0 +8652,1965-08-04 09:35:00,0 +7720,1968-09-04 19:35:00,0 +2869,1968-06-11 20:53:00,0 +9466,1965-03-17 01:24:00,0 +5877,1966-10-08 05:13:00,0 +3256,1968-11-02 07:55:00,0 +4465,1968-03-10 23:39:00,0 +5593,1965-03-03 15:55:00,0 +881,1969-03-15 06:55:00,0 +729,1965-04-28 08:50:00,0 +5569,1969-03-19 19:15:00,0 +5988,1967-08-01 15:43:00,0 +3623,1968-11-16 18:44:00,0 +3859,1967-05-14 15:25:00,0 +2813,1969-12-31 19:41:00,0 +8802,1965-08-04 09:39:00,0 +4902,1968-03-24 19:24:00,0 +9692,1965-08-31 16:58:00,0 +1159,1968-02-06 20:33:00,0 +7454,1969-03-19 12:18:00,0 +2039,1968-01-17 18:07:00,0 +6820,1965-08-06 14:22:00,0 +8932,1969-11-11 20:39:00,0 +2365,1965-04-03 13:32:00,0 +4129,1965-04-10 16:53:00,0 +8221,1968-08-06 17:14:00,0 +7248,1969-05-20 17:29:00,0 +4443,1966-12-17 03:39:00,0 +7105,1969-03-14 23:01:00,0 +6739,1966-05-06 00:22:00,0 +9724,1966-05-13 21:24:00,0 +3674,1968-04-20 10:16:00,0 +1330,1969-12-27 15:20:00,0 +7813,1969-04-12 19:53:00,0 +5432,1965-01-18 18:38:00,0 +1290,1965-04-25 09:30:00,0 +5378,1968-10-25 19:50:00,0 +377,1968-08-04 19:33:00,0 +5831,1965-03-07 17:40:00,0 +2679,1968-06-10 19:59:00,0 +2564,1966-05-08 03:21:00,0 +6080,1968-05-18 22:23:00,0 +2479,1965-02-09 04:17:00,0 +7237,1965-12-14 06:56:00,0 +4294,1965-07-07 14:31:00,0 +3913,1966-09-24 22:37:00,0 +5436,1968-03-16 00:05:00,0 +5033,1968-04-30 11:14:00,0 +3729,1969-08-25 19:55:00,0 +3883,1969-10-04 13:21:00,0 +6584,1968-09-07 06:41:00,0 +6370,1966-05-16 17:24:00,0 +4280,1969-08-07 19:00:00,0 +7014,1965-05-06 21:17:00,0 +5271,1966-07-20 21:32:00,0 +5664,1965-05-03 06:59:00,0 +2832,1965-06-01 17:38:00,0 +9182,1965-04-01 03:53:00,0 +4478,1967-03-03 08:48:00,0 +7711,1967-05-14 20:45:00,0 +5020,1966-01-14 15:23:00,0 +4249,1968-12-06 07:38:00,0 +4400,1966-05-24 07:05:00,0 +8615,1965-12-18 08:59:00,0 +642,1967-07-17 11:42:00,0 +2542,1968-02-14 19:17:00,0 +4487,1968-05-05 23:59:00,0 +3480,1968-09-21 12:58:00,0 +5597,1968-01-29 14:31:00,0 +9991,1965-11-05 19:48:00,0 +6561,1968-06-30 08:59:00,0 +3207,1965-12-21 08:20:00,0 +1055,1967-11-25 06:44:00,0 +807,1969-02-26 13:25:00,0 +3649,1968-11-28 20:12:00,0 +2967,1968-07-09 04:33:00,0 +8403,1967-01-07 22:41:00,0 +7627,1968-11-19 14:15:00,0 +4972,1967-12-02 00:14:00,0 +5574,1969-10-07 18:10:00,0 +1372,1969-06-25 02:48:00,0 +6617,1965-10-05 11:22:00,0 +487,1965-10-15 13:25:00,0 +6664,1969-02-05 10:33:00,0 +7077,1965-11-22 12:15:00,0 +6953,1969-09-30 08:40:00,0 +1993,1968-06-13 02:59:00,0 +4392,1966-09-04 00:35:00,0 +6290,1966-06-05 06:18:00,0 +6854,1968-01-12 21:12:00,0 +6513,1967-10-04 16:14:00,0 +5604,1967-06-28 23:53:00,0 +9272,1966-08-11 17:32:00,0 +7438,1968-07-08 08:46:00,0 +3369,1969-06-05 18:25:00,0 +8410,1965-05-22 20:36:00,0 +5163,1967-02-21 11:04:00,0 +1248,1966-10-10 12:47:00,0 +2148,1968-05-10 18:11:00,0 +6673,1967-03-03 08:23:00,0 +7944,1968-04-03 18:04:00,0 +399,1967-04-03 00:03:00,0 +2926,1966-09-28 06:56:00,0 +2131,1968-03-16 15:43:00,0 +2661,1967-09-12 13:59:00,0 +462,1967-04-16 00:28:00,0 +4241,1969-12-16 05:12:00,0 +3616,1968-11-06 12:16:00,0 +6792,1969-09-07 17:00:00,0 +3704,1968-01-27 17:01:00,0 +4810,1968-10-30 09:19:00,0 +1499,1968-10-13 19:15:00,0 +2037,1967-06-25 08:23:00,0 +5059,1965-01-22 19:46:00,0 +7335,1968-07-29 11:44:00,0 +4568,1968-05-16 13:53:00,0 +6306,1965-06-19 00:48:00,0 +9866,1969-07-11 14:13:00,0 +1134,1966-04-02 02:36:00,0 +1462,1965-07-30 07:37:00,0 +9707,1969-06-30 08:43:00,0 +5753,1967-06-12 15:00:00,0 +2687,1968-03-01 19:41:00,0 +3410,1966-11-21 14:05:00,0 +2431,1966-02-19 19:54:00,0 +7918,1966-10-11 21:26:00,0 +5882,1967-12-03 02:36:00,0 +2120,1969-04-07 17:39:00,0 +5717,1969-02-20 17:09:00,0 +840,1968-08-15 18:32:00,0 +8407,1965-08-21 06:15:00,0 +7940,1968-01-28 18:25:00,0 +6442,1966-08-11 18:16:00,0 +6497,1969-03-28 22:30:00,0 +7397,1965-05-26 21:23:00,0 +4337,1969-06-23 15:56:00,0 +6563,1969-04-09 08:34:00,0 +2561,1965-02-11 03:59:00,0 +4267,1968-03-29 17:19:00,0 +2885,1966-11-03 16:49:00,0 +1088,1967-06-11 12:49:00,0 +1536,1968-05-27 01:02:00,0 +1450,1966-02-16 18:11:00,0 +6825,1966-11-19 22:56:00,0 +8127,1968-03-21 15:12:00,0 +339,1967-12-24 04:28:00,0 +720,1967-03-11 22:58:00,0 +5474,1969-06-29 14:37:00,0 +2534,1968-05-24 20:53:00,0 +8170,1967-01-13 05:33:00,0 +9645,1966-05-16 18:32:00,0 +5423,1966-10-20 10:56:00,0 +9421,1965-04-25 13:25:00,0 +4343,1969-01-12 05:40:00,0 +6721,1967-05-04 22:49:00,0 +289,1968-07-06 18:21:00,0 +3824,1966-09-13 18:13:00,0 +7913,1967-04-25 10:30:00,0 +7621,1966-05-30 06:50:00,0 +4603,1967-09-29 08:48:00,0 +231,1965-02-24 01:52:00,0 +633,1965-01-09 03:55:00,0 +2606,1968-02-07 00:48:00,0 +6927,1968-12-27 01:23:00,0 +7750,1968-08-30 22:38:00,0 +6489,1967-06-08 12:45:00,0 +380,1967-07-24 12:45:00,0 +7006,1969-09-27 07:57:00,0 +4447,1969-04-09 09:46:00,0 +503,1965-09-01 10:37:00,0 +6964,1969-10-31 19:30:00,0 +1565,1968-03-23 23:08:00,0 +5322,1965-08-11 17:16:00,0 +7395,1967-05-27 06:07:00,0 +6025,1968-09-01 23:42:00,0 +3649,1969-07-20 18:21:00,0 +8826,1965-07-29 04:24:00,0 +2226,1965-11-25 00:57:00,0 +2333,1969-05-30 11:44:00,0 +5131,1969-03-26 09:02:00,0 +7230,1965-07-27 14:20:00,0 +7014,1966-03-28 16:21:00,0 +4606,1969-09-07 10:57:00,0 +3035,1969-10-17 13:13:00,0 +8441,1969-02-13 20:11:00,0 +6257,1967-09-15 07:26:00,0 +1981,1968-05-26 17:48:00,0 +9697,1966-10-17 18:25:00,0 +1568,1966-05-17 16:10:00,0 +1582,1966-12-05 10:55:00,0 +3070,1969-04-25 08:10:00,0 +6338,1968-01-14 18:04:00,0 +2443,1966-02-03 02:18:00,0 +4709,1967-07-05 08:57:00,0 +8363,1969-11-07 07:07:00,0 +7172,1966-12-07 20:57:00,0 +213,1968-03-13 20:56:00,0 +4550,1966-06-25 09:46:00,0 +9301,1966-09-29 03:18:00,0 +9339,1965-10-30 04:38:00,0 +1152,1965-12-18 15:58:00,0 +6473,1966-01-18 19:04:00,0 +5841,1969-09-04 13:12:00,0 +7806,1969-03-29 00:08:00,0 +3953,1966-04-15 05:40:00,0 +3101,1966-10-18 07:07:00,0 +3797,1965-06-09 01:01:00,0 +5378,1967-10-24 17:09:00,0 +1244,1969-09-25 06:53:00,0 +3691,1969-12-13 06:51:00,0 +6640,1967-05-18 10:40:00,0 +8344,1966-06-15 19:04:00,0 +8569,1969-05-21 05:01:00,0 +4447,1968-10-17 15:31:00,0 +3189,1968-12-19 21:14:00,0 +4873,1968-04-19 21:38:00,0 +3718,1966-06-16 05:31:00,0 +3407,1965-06-18 19:35:00,0 +7638,1966-02-24 07:53:00,0 +8667,1969-08-18 12:45:00,0 +5295,1969-02-01 01:06:00,0 +2114,1968-07-19 03:23:00,0 +7695,1965-12-19 11:20:00,0 +3885,1965-08-27 10:10:00,0 +7203,1968-08-18 08:07:00,0 +9279,1966-11-29 03:01:00,0 +8701,1965-05-20 21:09:00,0 +1225,1967-01-22 23:15:00,0 +7190,1966-10-04 22:50:00,0 +8770,1968-04-22 00:29:00,0 +9314,1966-10-11 04:56:00,0 +6571,1965-01-17 22:29:00,0 +7627,1967-01-25 07:46:00,0 +4022,1965-02-21 07:22:00,0 +1968,1969-06-21 15:02:00,0 +3149,1966-10-23 11:08:00,0 +3480,1965-03-17 03:26:00,0 +8912,1969-03-06 14:15:00,0 +6363,1965-11-28 20:45:00,0 +9631,1965-08-03 12:12:00,0 +1872,1968-01-30 11:07:00,0 +5353,1969-05-12 05:47:00,0 +1702,1966-09-02 10:56:00,0 +6268,1967-07-16 19:04:00,0 +3616,1969-09-14 12:28:00,0 +4039,1969-04-12 08:38:00,0 +4671,1966-10-14 21:25:00,0 +7696,1968-10-13 09:53:00,0 +9020,1968-06-03 01:57:00,0 +3075,1969-12-04 13:55:00,0 +6150,1966-04-15 10:11:00,0 +327,1969-05-26 14:40:00,0 +1727,1968-10-17 05:50:00,0 +5211,1965-06-25 13:57:00,0 +2754,1965-01-29 18:03:00,0 +538,1966-01-19 21:58:00,0 +719,1966-10-14 01:47:00,0 +347,1967-01-12 22:06:00,0 +3020,1968-11-02 01:16:00,0 +9003,1966-03-23 19:14:00,0 +1684,1968-07-21 05:04:00,0 +7885,1968-12-26 02:55:00,0 +8856,1969-03-14 11:59:00,0 +9251,1968-06-18 21:42:00,0 +3016,1965-08-22 06:37:00,0 +4590,1969-01-06 08:36:00,0 +9813,1969-06-12 04:14:00,0 +3659,1965-05-25 01:53:00,0 +9899,1965-09-17 07:30:00,0 +7761,1965-12-15 15:21:00,0 +8879,1969-01-10 07:41:00,0 +4194,1965-01-21 15:58:00,0 +3615,1965-04-29 10:50:00,0 +1835,1967-12-16 18:50:00,0 +8284,1965-06-18 09:12:00,0 +116,1968-07-02 00:19:00,0 +8802,1968-08-27 22:42:00,0 +6965,1965-05-17 08:40:00,0 +8314,1966-05-27 03:11:00,0 +4109,1968-08-17 14:07:00,0 +5193,1968-09-14 21:03:00,0 +4218,1967-01-15 20:05:00,0 +4923,1969-01-01 19:03:00,0 +9520,1969-09-30 20:22:00,0 +774,1967-10-28 20:58:00,0 +3811,1965-11-14 20:57:00,0 +3164,1969-04-22 12:30:00,0 +4778,1966-09-24 18:22:00,0 +4188,1969-10-01 13:17:00,0 +6728,1969-09-20 18:52:00,0 +8838,1967-03-14 04:54:00,0 +3715,1968-04-01 13:51:00,0 +9238,1965-10-29 05:38:00,0 +6405,1966-02-26 03:56:00,0 +6693,1967-08-12 09:52:00,0 +632,1969-10-22 00:35:00,0 +1604,1968-07-09 21:27:00,0 +9400,1968-12-10 02:04:00,0 +7842,1966-08-24 23:02:00,0 +763,1969-05-20 17:05:00,0 +6631,1965-06-16 14:25:00,0 +8090,1969-09-02 08:42:00,0 +2127,1966-05-21 11:13:00,0 +4602,1969-09-18 18:13:00,0 +6696,1965-04-02 08:00:00,0 +9507,1968-05-15 12:14:00,0 +756,1969-10-14 09:44:00,0 +5192,1967-06-29 00:05:00,0 +3663,1966-10-09 00:25:00,0 +4117,1965-06-13 22:43:00,0 +2835,1967-09-25 23:23:00,0 +8664,1967-08-25 21:05:00,0 +2733,1967-03-19 00:13:00,0 +7917,1968-01-23 19:42:00,0 +6242,1965-10-30 03:41:00,0 +3278,1966-07-20 12:57:00,0 +8533,1966-06-27 22:23:00,0 +9330,1969-11-18 23:35:00,0 +6084,1969-11-07 04:28:00,0 +998,1969-12-02 17:17:00,0 +8766,1965-02-21 00:10:00,0 +662,1965-09-16 15:10:00,0 +256,1966-02-26 10:43:00,0 +4556,1967-08-31 21:19:00,0 +8898,1966-12-19 17:49:00,0 +4511,1965-09-24 10:22:00,0 +9157,1968-01-16 12:20:00,0 +8439,1967-10-13 11:11:00,0 +9170,1965-09-27 16:06:00,0 +3316,1968-01-28 03:49:00,0 +9423,1969-11-25 09:25:00,0 +6465,1969-07-23 16:20:00,0 +3849,1965-05-16 12:32:00,0 +3804,1965-11-29 15:29:00,0 +6226,1968-04-16 02:15:00,0 +9870,1967-11-05 19:29:00,0 +8733,1969-05-16 05:53:00,0 +2256,1969-01-02 19:51:00,0 +2023,1966-07-27 10:23:00,0 +717,1965-01-30 14:15:00,0 +5746,1968-04-09 19:40:00,0 +6254,1966-08-02 15:35:00,0 +5581,1966-02-15 06:41:00,0 +8408,1968-06-24 14:32:00,0 +3683,1965-06-26 23:24:00,0 +7549,1969-02-24 01:26:00,0 +1030,1966-11-26 05:16:00,0 +7668,1969-05-04 22:37:00,0 +8081,1966-02-28 00:52:00,0 +3843,1968-06-03 21:31:00,0 +5250,1967-02-13 06:33:00,0 +3231,1967-06-20 13:36:00,0 +805,1967-01-06 23:46:00,0 +1613,1966-08-20 11:07:00,0 +2858,1969-04-11 04:47:00,0 +6717,1968-06-09 01:09:00,0 +6620,1965-01-10 21:56:00,0 +9075,1969-04-07 03:03:00,0 +9477,1966-07-21 14:56:00,0 +8807,1969-08-07 10:25:00,0 +1938,1966-09-07 21:36:00,0 +2695,1966-09-03 11:14:00,0 +806,1965-08-01 09:12:00,0 +3654,1966-09-22 13:42:00,0 +7562,1966-12-19 19:16:00,0 +5818,1969-01-06 03:38:00,0 +9133,1965-08-14 23:35:00,0 +3271,1967-05-10 21:24:00,0 +1502,1968-08-25 10:07:00,0 +6248,1966-12-10 01:41:00,0 +7929,1966-11-09 22:08:00,0 +6807,1966-08-03 16:29:00,0 +7,1968-08-17 07:52:00,0 +9091,1965-07-10 07:06:00,0 +6306,1966-08-19 09:13:00,0 +903,1968-10-16 14:12:00,0 +8921,1966-08-17 03:39:00,0 +6224,1969-09-01 13:54:00,0 +7150,1965-04-24 02:53:00,0 +6298,1967-01-16 05:18:00,0 +3866,1967-11-16 14:13:00,0 +9062,1965-03-24 18:25:00,0 +6243,1965-06-09 17:32:00,0 +2365,1965-05-26 09:04:00,0 +6733,1967-05-31 09:51:00,0 +6907,1966-11-01 04:29:00,0 +2075,1968-02-04 03:53:00,0 +7176,1969-12-12 04:17:00,0 +9405,1965-10-27 07:33:00,0 +3542,1967-02-22 05:42:00,0 +9948,1969-08-14 08:45:00,0 +2978,1965-07-07 08:47:00,0 +4062,1965-06-24 08:55:00,0 +4781,1969-03-04 04:40:00,0 +3633,1966-01-02 22:29:00,0 +1561,1968-02-24 18:10:00,0 +7374,1968-04-20 15:38:00,0 +1291,1965-01-22 16:17:00,0 +2864,1969-07-10 19:16:00,0 +5090,1968-08-30 16:38:00,0 +2096,1969-07-18 21:56:00,0 +1126,1966-06-12 00:31:00,0 +3092,1967-06-06 05:49:00,0 +4309,1968-11-08 12:52:00,0 +9617,1968-01-27 22:13:00,0 +2766,1967-05-26 08:25:00,0 +8902,1967-11-09 21:16:00,0 +9499,1967-07-15 18:06:00,0 +9699,1965-03-17 07:36:00,0 +8577,1966-07-08 07:59:00,0 +6362,1965-12-24 22:33:00,0 +247,1966-08-05 17:41:00,0 +2747,1969-03-11 10:22:00,0 +7377,1968-07-16 08:48:00,0 +9624,1967-01-13 09:18:00,0 +9211,1968-12-13 05:31:00,0 +1689,1968-06-11 21:52:00,0 +8638,1968-01-19 22:05:00,0 +3269,1967-04-22 12:08:00,0 +6412,1969-05-01 15:37:00,0 +4200,1968-11-02 16:57:00,0 +5232,1966-07-04 18:29:00,0 +3482,1966-04-05 07:01:00,0 +863,1966-02-14 16:21:00,0 +8336,1967-04-24 21:00:00,0 +8668,1965-09-01 20:32:00,0 +5116,1968-11-29 13:55:00,0 +5656,1966-11-18 00:58:00,0 +6609,1967-05-19 15:31:00,0 +3931,1966-09-14 23:07:00,0 +3763,1965-08-14 22:09:00,0 +149,1965-02-10 20:11:00,0 +5365,1969-08-13 04:09:00,0 +8024,1967-01-04 14:57:00,0 +1458,1966-12-23 04:37:00,0 +9743,1967-07-09 15:24:00,0 +9534,1967-10-02 01:28:00,0 +1474,1969-12-30 13:45:00,0 +8831,1965-05-30 22:28:00,0 +3204,1965-03-21 12:21:00,0 +4758,1969-07-24 08:09:00,0 +7296,1968-11-03 02:53:00,0 +3946,1966-07-13 08:11:00,0 +8874,1969-02-13 05:50:00,0 +6136,1967-11-20 22:12:00,0 +6352,1966-05-20 23:25:00,0 +1222,1969-04-28 18:01:00,0 +619,1966-03-18 16:45:00,0 +8906,1966-05-04 23:43:00,0 +1424,1968-12-30 06:52:00,0 +2363,1967-12-17 20:08:00,0 +4121,1967-05-01 08:08:00,0 +8245,1968-10-12 05:27:00,0 +346,1967-01-23 06:16:00,0 +6486,1966-06-08 12:12:00,0 +7612,1966-05-26 20:13:00,0 +8364,1966-04-09 17:43:00,0 +5846,1968-09-13 16:35:00,0 +9735,1967-09-09 13:53:00,0 +4315,1968-02-01 19:43:00,0 +3718,1968-10-09 06:37:00,0 +8791,1969-05-01 23:25:00,0 +7864,1966-05-09 08:36:00,0 +3910,1968-12-02 11:27:00,0 +4742,1966-11-17 10:31:00,0 +358,1969-08-22 05:25:00,0 +8328,1967-02-08 06:30:00,0 +2061,1965-11-06 14:30:00,0 +503,1968-12-24 17:22:00,0 +7956,1969-09-23 21:38:00,0 +5879,1967-08-18 08:57:00,0 +2763,1967-09-09 00:51:00,0 +7671,1969-04-10 18:27:00,0 +9248,1967-06-03 01:15:00,0 +6059,1966-03-12 01:05:00,0 +4737,1967-01-24 21:07:00,0 +5421,1968-12-24 23:26:00,0 +7220,1967-06-07 21:23:00,0 +338,1966-04-25 08:14:00,0 +2302,1966-06-22 12:29:00,0 +9363,1965-08-12 03:31:00,0 +3371,1967-01-19 05:42:00,0 +6581,1967-07-27 10:27:00,0 +1534,1967-06-28 06:47:00,0 +8295,1968-05-11 03:02:00,0 +8099,1965-05-03 01:51:00,0 +8872,1967-03-17 17:41:00,0 +6651,1967-12-13 04:39:00,0 +5220,1968-04-24 05:04:00,0 +9703,1966-12-23 01:10:00,0 +8145,1969-08-23 03:11:00,0 +288,1967-02-27 18:15:00,0 +5196,1969-08-30 16:25:00,0 +5987,1965-04-29 00:09:00,0 +6005,1967-02-07 02:18:00,0 +1884,1968-10-12 13:29:00,0 +5278,1967-05-15 15:35:00,0 +7087,1966-07-17 08:14:00,0 +6898,1965-05-25 02:02:00,0 +2554,1967-02-02 09:53:00,0 +8401,1965-06-06 12:46:00,0 +9840,1969-02-12 10:39:00,0 +4986,1968-09-02 18:18:00,0 +1020,1969-02-02 20:46:00,0 +8872,1969-06-11 03:49:00,0 +6176,1969-03-29 08:40:00,0 +5628,1965-08-29 00:30:00,0 +4604,1967-08-12 10:21:00,0 +4918,1965-02-28 10:55:00,0 +6525,1969-06-30 21:26:00,0 +6108,1966-09-17 16:15:00,0 +9854,1967-04-24 23:44:00,0 +9240,1969-02-28 18:23:00,0 +1814,1965-07-30 07:37:00,0 +9802,1968-08-28 08:05:00,0 +2364,1966-09-13 18:10:00,0 +3315,1965-05-30 18:26:00,0 +3029,1967-05-24 14:05:00,0 +4386,1966-01-27 11:38:00,0 +9738,1967-06-03 19:24:00,0 +9036,1965-02-27 18:48:00,0 +199,1966-05-14 09:45:00,0 +5319,1969-09-05 19:12:00,0 +6830,1966-12-09 13:12:00,0 +7935,1966-02-26 21:18:00,0 +6366,1965-06-19 16:40:00,0 +1536,1969-09-15 21:35:00,0 +6874,1965-09-03 15:26:00,0 +9123,1965-07-27 22:17:00,0 +5217,1966-06-29 14:18:00,0 +1482,1967-11-05 03:13:00,0 +1105,1969-12-07 05:01:00,0 +1930,1967-08-20 17:21:00,0 +4038,1965-06-07 10:01:00,0 +8949,1965-02-03 18:00:00,0 +7943,1967-07-12 00:11:00,0 +4364,1966-11-04 23:44:00,0 +5765,1968-12-13 19:42:00,0 +4448,1968-11-27 04:09:00,0 +5790,1968-07-25 01:53:00,0 +4091,1967-09-23 08:41:00,0 +901,1965-10-13 03:56:00,0 +6516,1968-06-10 14:58:00,0 +2183,1967-06-12 10:30:00,0 +6589,1967-01-18 20:40:00,0 +6742,1969-03-30 13:59:00,0 +6066,1966-08-19 21:10:00,0 +4973,1966-10-20 07:44:00,0 +9479,1966-02-02 04:43:00,0 +8605,1967-03-08 09:42:00,0 +935,1967-06-10 14:49:00,0 +1255,1968-08-24 19:40:00,0 +2295,1968-10-25 16:48:00,0 +7904,1968-03-01 09:19:00,0 +6386,1967-07-11 15:36:00,0 +6842,1966-07-08 14:15:00,0 +5802,1967-09-13 22:42:00,0 +4718,1966-05-06 07:54:00,0 +2488,1966-11-05 01:00:00,0 +4597,1967-12-23 02:41:00,0 +5735,1965-01-25 00:50:00,0 +81,1969-06-19 11:30:00,0 +319,1968-06-15 23:51:00,0 +8698,1966-06-03 16:48:00,0 +5215,1965-07-31 00:27:00,0 +6184,1967-09-06 21:05:00,0 +439,1969-10-21 19:11:00,0 +608,1968-08-24 10:36:00,0 +1488,1965-09-08 12:53:00,0 +8567,1967-07-28 13:42:00,0 +9787,1969-03-31 06:49:00,0 +824,1965-03-30 01:47:00,0 +9608,1967-03-13 17:38:00,0 +4982,1968-06-19 07:25:00,0 +4713,1969-03-13 11:04:00,0 +2908,1969-02-25 01:08:00,0 +468,1965-02-11 15:47:00,0 +9828,1969-06-25 14:35:00,0 +5619,1968-03-07 02:03:00,0 +7033,1967-09-12 12:27:00,0 +6567,1968-11-02 09:41:00,0 +2776,1967-07-13 19:59:00,0 +9847,1968-06-27 11:56:00,0 +7423,1965-01-17 22:32:00,0 +3757,1965-03-26 00:54:00,0 +9831,1968-03-09 21:46:00,0 +7554,1966-06-15 11:14:00,0 +6532,1966-04-18 04:06:00,0 +359,1969-10-05 23:52:00,0 +1730,1967-07-23 14:02:00,0 +1111,1965-03-31 10:38:00,0 +1108,1965-05-14 02:45:00,0 +6252,1965-07-21 05:37:00,0 +7421,1965-06-24 14:12:00,0 +2726,1969-05-23 18:21:00,0 +7346,1965-03-12 16:41:00,0 +6979,1966-11-28 01:16:00,0 +9735,1967-11-16 07:11:00,0 +7552,1969-03-16 23:51:00,0 +4559,1969-12-09 22:12:00,0 +1303,1968-07-24 01:31:00,0 +5165,1965-11-09 03:20:00,0 +6035,1969-07-01 21:10:00,0 +6593,1968-05-15 22:39:00,0 +9702,1966-02-23 12:32:00,0 +657,1969-09-12 05:46:00,0 +6494,1965-08-27 07:54:00,0 +4552,1965-10-12 14:48:00,0 +2542,1968-03-16 00:47:00,0 +2091,1967-09-19 18:08:00,0 +2909,1966-12-05 04:28:00,0 +4293,1967-05-07 14:38:00,0 +5889,1968-11-24 21:16:00,0 +9868,1967-11-12 17:33:00,0 +2609,1967-06-15 11:19:00,0 +1649,1967-09-29 02:23:00,0 +1038,1968-08-29 13:47:00,0 +4236,1965-01-21 13:06:00,0 +3956,1967-01-18 02:53:00,0 +9662,1965-03-14 08:15:00,0 +1478,1967-06-17 02:35:00,0 +5991,1966-05-11 04:13:00,0 +8731,1967-11-28 17:40:00,0 +3095,1968-05-06 15:53:00,0 +4302,1966-05-18 09:52:00,0 +2769,1965-03-30 02:01:00,0 +8568,1967-03-27 11:06:00,0 +8843,1965-11-16 20:16:00,0 +3731,1967-10-18 19:19:00,0 +792,1969-11-27 04:44:00,0 +1428,1969-03-24 05:11:00,0 +5168,1968-05-22 14:11:00,0 +6429,1969-10-30 13:57:00,0 +7110,1965-10-22 20:09:00,0 +4313,1965-12-17 21:18:00,0 +333,1968-06-19 23:45:00,0 +7683,1966-12-06 22:56:00,0 +211,1969-11-09 21:20:00,0 +6376,1966-05-06 21:45:00,0 +9406,1965-01-25 02:19:00,0 +5954,1967-04-15 16:16:00,0 +3412,1968-10-19 09:41:00,0 +7844,1965-04-02 21:32:00,0 +2817,1966-09-27 04:33:00,0 +2525,1968-04-13 04:47:00,0 +7338,1968-07-10 14:45:00,0 +1258,1968-10-08 02:12:00,0 +5205,1966-12-02 04:09:00,0 +714,1968-12-24 17:19:00,0 +2697,1966-01-24 05:35:00,0 +7113,1967-12-23 15:00:00,0 +7566,1969-03-02 20:27:00,0 +1077,1965-02-10 01:51:00,0 +5874,1969-08-12 09:06:00,0 +6924,1967-09-23 02:06:00,0 +4839,1967-03-29 20:46:00,0 +7750,1969-11-02 19:48:00,0 +9524,1965-01-09 19:48:00,0 +1521,1966-03-15 13:01:00,0 +6866,1965-09-25 17:08:00,0 +7201,1966-06-26 03:30:00,0 +9915,1967-12-10 04:53:00,0 +2968,1966-09-06 10:38:00,0 +4629,1968-03-18 22:42:00,0 +5091,1965-09-08 12:59:00,0 +5483,1965-04-21 12:21:00,0 +6914,1965-11-13 02:58:00,0 +1079,1966-03-31 10:30:00,0 +905,1965-09-18 07:34:00,0 +2398,1967-07-07 05:26:00,0 +3313,1968-11-21 14:34:00,0 +9588,1965-03-07 19:07:00,0 +764,1966-11-01 04:17:00,0 +9553,1966-09-27 16:12:00,0 +8099,1968-03-24 07:48:00,0 +2817,1965-01-02 04:22:00,0 +4700,1967-03-15 15:06:00,0 +2013,1969-04-28 15:54:00,0 +5635,1969-06-06 14:36:00,0 +5444,1967-07-28 06:20:00,0 +5120,1967-11-20 01:48:00,0 +1188,1966-02-18 03:23:00,0 +8072,1969-07-10 22:30:00,0 +5635,1965-03-21 12:58:00,0 +390,1966-04-26 14:09:00,0 +4115,1965-12-13 10:26:00,0 +5611,1968-05-17 02:25:00,0 +2990,1969-05-02 13:13:00,0 +2853,1966-06-27 03:48:00,0 +3681,1966-06-16 00:24:00,0 +9075,1966-05-19 18:12:00,0 +2282,1967-08-11 23:36:00,0 +4869,1969-01-02 01:38:00,0 +5184,1966-06-21 10:44:00,0 +7643,1967-01-08 02:14:00,0 +3202,1968-04-18 11:28:00,0 +9035,1969-08-09 04:27:00,0 +9848,1966-12-18 01:40:00,0 +1713,1968-07-29 13:25:00,0 +3744,1969-10-05 20:02:00,0 +9421,1969-09-26 19:45:00,0 +8920,1968-07-24 17:05:00,0 +3798,1966-04-06 09:17:00,0 +3165,1967-09-29 21:58:00,0 +6153,1968-09-23 16:02:00,0 +1364,1967-10-16 14:33:00,0 +4770,1966-05-02 14:00:00,0 +9165,1968-04-24 06:30:00,0 +8834,1967-07-30 22:30:00,0 +8136,1965-04-26 11:49:00,0 +7482,1968-04-15 14:05:00,0 +8965,1966-03-04 19:54:00,0 +1638,1969-11-08 16:23:00,0 +5621,1969-12-27 06:32:00,0 +9696,1967-09-05 05:19:00,0 +7736,1969-04-07 15:42:00,0 +2972,1967-02-10 02:10:00,0 +6766,1965-11-05 07:22:00,0 +8351,1967-02-06 00:35:00,0 +8153,1969-11-18 09:29:00,0 +8526,1966-04-19 07:13:00,0 +1839,1969-01-24 11:29:00,0 +2207,1969-11-15 15:57:00,0 +4738,1969-01-18 05:47:00,0 +8261,1967-03-28 20:53:00,0 +9429,1969-05-05 13:39:00,0 +9331,1969-02-13 09:59:00,0 +536,1969-06-11 14:05:00,0 +6365,1969-03-29 01:25:00,0 +2558,1965-10-04 09:09:00,0 +6403,1969-02-15 02:57:00,0 +6144,1967-09-20 00:09:00,0 +9318,1966-11-10 10:34:00,0 +6226,1966-06-12 05:14:00,0 +3830,1968-05-11 07:09:00,0 +9470,1967-07-19 18:20:00,0 +1639,1967-09-10 13:40:00,0 +9186,1969-08-20 22:58:00,0 +6216,1966-12-11 11:49:00,0 +3769,1965-09-25 16:26:00,0 +3412,1968-11-08 19:47:00,0 +2478,1965-04-03 08:30:00,0 +3956,1966-07-07 10:51:00,0 +6675,1967-04-19 16:18:00,0 +6980,1969-06-11 23:03:00,0 +3241,1969-03-13 12:27:00,0 +7829,1967-03-06 09:37:00,0 +3942,1969-02-19 15:31:00,0 +4494,1966-04-14 05:10:00,0 +997,1967-05-05 11:46:00,0 +3697,1965-02-21 11:21:00,0 +5997,1965-01-17 02:49:00,0 +343,1967-11-26 07:20:00,0 +4872,1968-05-21 17:26:00,0 +8735,1966-03-30 02:47:00,0 +1383,1965-04-16 11:54:00,0 +9486,1968-04-13 23:56:00,0 +4001,1965-04-20 22:56:00,0 +7795,1967-06-16 06:32:00,0 +8181,1969-12-25 11:09:00,0 +991,1968-06-08 03:37:00,0 +2594,1967-04-13 14:17:00,0 +4411,1968-03-06 07:03:00,0 +5497,1968-07-08 14:05:00,0 +7076,1967-06-23 05:17:00,0 +9738,1969-01-25 08:01:00,0 +9075,1966-07-01 00:12:00,0 +8902,1965-10-23 23:13:00,0 +5016,1965-02-09 22:44:00,0 +5980,1965-01-06 09:49:00,0 +1527,1969-03-15 00:46:00,0 +9559,1965-11-01 20:01:00,0 +8522,1967-02-27 01:27:00,0 +3608,1969-09-01 03:54:00,0 +7696,1969-06-13 17:15:00,0 +806,1969-01-08 16:16:00,0 +1019,1966-03-21 15:07:00,0 +103,1966-09-02 01:04:00,0 +1366,1967-07-23 11:50:00,0 +7508,1966-03-19 07:38:00,0 +6176,1969-04-13 07:08:00,0 +2558,1967-06-25 02:50:00,0 +8866,1965-09-24 11:43:00,0 +9093,1965-06-23 22:17:00,0 +5900,1968-03-22 17:44:00,0 +3984,1968-06-16 09:47:00,0 +3380,1965-09-06 18:41:00,0 +5697,1966-12-21 09:06:00,0 +5339,1966-07-26 13:19:00,0 +1585,1965-01-15 13:22:00,0 +4134,1967-08-05 08:13:00,0 +6281,1966-11-14 13:26:00,0 +4808,1967-06-19 00:30:00,0 +3992,1967-10-19 18:21:00,0 +428,1967-05-02 06:50:00,0 +1308,1967-07-16 04:54:00,0 +8091,1966-06-10 06:49:00,0 +8798,1968-06-10 12:44:00,0 +7153,1968-02-17 11:30:00,0 +4835,1969-11-26 08:59:00,0 +1477,1969-07-03 13:39:00,0 +7447,1969-04-14 16:22:00,0 +4111,1965-02-27 09:34:00,0 +7740,1965-07-04 16:47:00,0 +7091,1965-03-20 21:13:00,0 +9160,1965-04-14 04:51:00,0 +307,1968-10-12 06:26:00,0 +2145,1966-10-20 04:19:00,0 +5827,1968-07-22 02:39:00,0 +6729,1967-07-23 05:14:00,0 +1812,1969-03-02 02:36:00,0 +6475,1969-05-24 22:47:00,0 +1286,1969-12-06 13:56:00,0 +833,1966-02-17 00:44:00,0 +2318,1969-04-07 00:36:00,0 +9626,1967-12-22 20:17:00,0 +5312,1969-06-18 16:11:00,0 +9547,1966-02-10 05:19:00,0 +7242,1968-07-25 00:25:00,0 +955,1965-12-06 21:09:00,0 +358,1967-01-04 12:09:00,0 +8221,1969-08-23 02:21:00,0 +2174,1966-05-16 01:10:00,0 +8248,1968-07-11 23:28:00,0 +1155,1969-06-10 16:16:00,0 +2261,1965-05-22 03:54:00,0 +747,1968-01-26 06:54:00,0 +8172,1965-12-06 20:35:00,0 +4189,1966-11-25 00:34:00,0 +4795,1966-10-18 07:24:00,0 +8709,1966-05-18 08:48:00,0 +1990,1968-01-29 00:01:00,0 +7069,1968-11-06 14:09:00,0 +8845,1969-07-22 22:03:00,0 +9362,1969-04-16 13:53:00,0 +3539,1968-02-06 11:10:00,0 +6299,1965-04-11 11:26:00,0 +9536,1968-11-02 15:36:00,0 +3830,1968-05-28 22:57:00,0 +5736,1966-06-21 22:01:00,0 +8886,1966-11-07 11:37:00,0 +1201,1968-04-30 01:19:00,0 +6725,1966-03-21 09:46:00,0 +7846,1965-06-28 21:16:00,0 +4510,1968-05-04 21:39:00,0 +4656,1966-04-20 06:52:00,0 +8262,1965-02-22 17:38:00,0 +6010,1965-07-09 23:40:00,0 +9996,1967-12-07 14:22:00,0 +2009,1967-12-28 11:37:00,0 +9583,1965-08-17 14:30:00,0 +7154,1966-01-17 08:21:00,0 +8816,1965-09-19 23:46:00,0 +9607,1968-12-05 04:05:00,0 +8759,1967-11-24 09:34:00,0 +2581,1967-11-26 21:53:00,0 +272,1968-02-04 14:20:00,0 +6602,1969-02-03 08:42:00,0 +9708,1966-05-13 14:26:00,0 +9420,1966-06-17 11:59:00,0 +1847,1968-03-26 21:57:00,0 +7895,1969-02-11 13:43:00,0 +4287,1969-12-30 06:20:00,0 +26,1967-12-12 12:49:00,0 +6775,1969-07-18 19:34:00,0 +1789,1969-04-01 19:56:00,0 +1007,1965-01-04 10:57:00,0 +5755,1967-04-01 05:44:00,0 +1935,1966-01-04 19:41:00,0 +8869,1969-03-29 21:51:00,0 +4696,1968-10-15 03:36:00,0 +8101,1966-06-05 14:58:00,0 +8827,1966-06-23 20:11:00,0 +5160,1966-08-09 00:00:00,0 +7657,1967-01-30 19:49:00,0 +9793,1967-04-29 06:49:00,0 +3867,1966-09-04 23:48:00,0 +176,1967-10-10 18:48:00,0 +3220,1968-06-15 02:27:00,0 +6301,1969-09-30 06:02:00,0 +3630,1967-01-29 10:06:00,0 +6152,1967-06-24 12:13:00,0 +7635,1969-02-09 21:45:00,0 +9221,1969-10-24 14:58:00,0 +5553,1968-03-20 10:01:00,0 +207,1968-12-07 02:59:00,0 +4709,1968-10-25 12:05:00,0 +3295,1968-07-01 07:39:00,0 +2536,1965-09-07 19:16:00,0 +8558,1965-05-09 05:49:00,0 +7329,1968-08-14 07:29:00,0 +2915,1969-04-17 17:28:00,0 +2464,1966-12-26 12:43:00,0 +5890,1969-03-02 10:17:00,0 +1382,1968-07-05 22:13:00,0 +7370,1967-06-17 05:17:00,0 +3928,1968-10-16 01:02:00,0 +133,1969-11-09 00:47:00,0 +1568,1966-12-31 12:17:00,0 +1677,1968-02-07 23:00:00,0 +3611,1967-08-13 01:09:00,0 +3812,1967-06-12 02:31:00,0 +7417,1966-10-05 01:48:00,0 +6864,1965-08-29 22:16:00,0 +9757,1968-01-31 11:04:00,0 +3193,1967-08-09 06:32:00,0 +1568,1967-12-22 07:06:00,0 +6019,1967-03-19 01:56:00,0 +8131,1965-08-25 18:45:00,0 +1835,1966-08-22 14:23:00,0 +4323,1968-01-04 06:04:00,0 +4107,1965-11-20 14:56:00,0 +8800,1968-10-17 03:11:00,0 +2915,1965-11-28 02:32:00,0 +7148,1967-10-01 00:51:00,0 +123,1965-05-15 18:11:00,0 +5488,1965-04-25 12:07:00,0 +925,1969-09-01 18:24:00,0 +4877,1967-02-20 02:48:00,0 +648,1966-10-23 19:10:00,0 +3046,1967-12-23 19:52:00,0 +240,1967-11-01 03:41:00,0 +2072,1966-06-19 15:24:00,0 +6920,1966-09-11 07:25:00,0 +9797,1965-07-30 19:46:00,0 +6384,1967-03-31 14:21:00,0 +4108,1967-01-23 15:28:00,0 +5621,1968-07-15 12:14:00,0 +5568,1967-09-08 20:58:00,0 +6138,1968-10-27 19:03:00,0 +7908,1967-12-29 06:58:00,0 +5633,1966-10-16 02:05:00,0 +7649,1965-11-07 00:45:00,0 +7347,1969-08-31 22:28:00,0 +5879,1966-11-02 04:25:00,0 +2960,1967-11-01 21:16:00,0 +6263,1966-01-12 11:38:00,0 +4371,1967-11-10 02:37:00,0 +4091,1967-10-15 07:38:00,0 +2180,1965-03-12 20:52:00,0 +2546,1965-05-11 15:47:00,0 +2992,1969-03-03 14:27:00,0 +3089,1965-03-24 08:02:00,0 +4697,1969-07-24 23:31:00,0 +9246,1969-11-18 16:12:00,0 +1625,1965-08-11 10:24:00,0 +5257,1969-08-25 17:42:00,0 +6858,1966-10-11 03:44:00,0 +5173,1966-12-02 12:51:00,0 +7570,1965-05-08 06:28:00,0 +9807,1969-09-19 16:11:00,0 +1365,1969-07-28 14:41:00,0 +892,1967-07-31 01:59:00,0 +8792,1967-01-28 01:23:00,0 +1671,1968-03-06 13:37:00,0 +4617,1966-05-30 05:46:00,0 +2009,1969-04-23 05:13:00,0 +471,1967-09-13 03:41:00,0 +9673,1966-06-09 07:40:00,0 +5472,1969-07-31 01:28:00,0 +3050,1969-02-26 17:19:00,0 +3724,1965-11-26 00:27:00,0 +9414,1966-10-02 14:56:00,0 +3645,1966-01-15 16:08:00,0 +3859,1967-12-23 05:46:00,0 +2231,1969-07-05 18:03:00,0 +1067,1965-05-05 14:56:00,0 +242,1966-06-22 20:16:00,0 +1900,1969-12-12 09:05:00,0 +7879,1965-02-28 22:50:00,0 +324,1966-11-19 10:40:00,0 +6908,1969-11-14 01:58:00,0 +2020,1965-12-27 10:47:00,0 +8987,1966-01-20 10:42:00,0 +4294,1969-09-09 14:10:00,0 +5931,1969-12-10 20:25:00,0 +7193,1968-12-29 01:58:00,0 +9349,1965-06-22 09:30:00,0 +1591,1967-11-16 22:34:00,0 +6065,1965-07-24 06:34:00,0 +5470,1969-09-01 17:02:00,0 +3400,1967-01-06 05:29:00,0 +9616,1967-04-25 05:24:00,0 +8576,1966-09-01 17:33:00,0 +7674,1968-05-29 03:47:00,0 +9012,1965-07-18 17:11:00,0 +5483,1965-07-21 03:26:00,0 +571,1969-11-30 16:18:00,0 +6470,1968-11-24 14:13:00,0 +2248,1968-01-30 20:39:00,0 +8745,1967-01-14 17:42:00,0 +8272,1968-11-04 03:15:00,0 +2535,1965-12-26 15:08:00,0 +7455,1965-04-15 23:46:00,0 +8226,1969-10-23 10:24:00,0 +2755,1967-12-12 04:03:00,0 +7878,1968-12-24 19:34:00,0 +2639,1969-01-11 21:06:00,0 +8980,1969-06-19 00:15:00,0 +3201,1966-06-29 22:07:00,0 +9918,1965-01-23 13:29:00,0 +1402,1968-01-06 04:57:00,0 +6577,1967-02-04 08:16:00,0 +4073,1967-11-06 06:30:00,0 +901,1969-01-26 19:45:00,0 +9884,1965-08-22 19:38:00,0 +8182,1968-10-11 09:35:00,0 +2923,1969-06-30 20:46:00,0 +939,1966-11-11 02:44:00,0 +8593,1966-08-25 14:14:00,0 +6918,1969-12-14 01:40:00,0 +8615,1965-05-29 19:21:00,0 +3646,1969-12-07 22:07:00,0 +1006,1968-03-24 16:12:00,0 +5713,1968-09-02 00:28:00,0 +3843,1968-10-14 09:35:00,0 +7505,1969-02-11 17:35:00,0 +4415,1968-08-09 01:09:00,0 +5520,1969-08-12 11:13:00,0 +3223,1969-05-30 05:32:00,0 +3338,1969-02-27 08:41:00,0 +1762,1968-10-27 12:23:00,0 +1922,1967-01-30 14:45:00,0 +4649,1968-04-28 13:50:00,0 +692,1966-07-23 02:28:00,0 +8865,1969-08-27 06:51:00,0 +6380,1967-09-09 12:38:00,0 +4152,1966-07-07 11:06:00,0 +3864,1969-01-07 23:15:00,0 +7299,1965-01-09 03:17:00,0 +5345,1967-07-23 16:38:00,0 +6979,1968-01-21 20:01:00,0 +9578,1966-02-21 21:27:00,0 +7227,1969-06-07 16:48:00,0 +549,1969-07-12 02:34:00,0 +6879,1966-06-12 01:31:00,0 +2619,1968-12-12 01:40:00,0 +4942,1968-06-25 22:53:00,0 +1076,1967-07-09 09:31:00,0 +2315,1967-05-03 02:19:00,0 +5317,1967-03-28 20:28:00,0 +3723,1969-01-23 22:49:00,0 +5437,1965-04-07 08:43:00,0 +7130,1965-06-26 18:30:00,0 +4011,1965-12-12 23:35:00,0 +1692,1966-07-08 13:44:00,0 +200,1969-03-10 07:45:00,0 +7617,1966-11-03 10:22:00,0 +7784,1966-02-07 16:07:00,0 +6255,1966-08-21 13:05:00,0 +5018,1966-02-04 05:53:00,0 +6485,1966-04-13 10:34:00,0 +618,1969-11-27 20:06:00,0 +9867,1965-02-25 06:11:00,0 +1276,1965-06-13 01:17:00,0 +4623,1967-09-09 04:11:00,0 +5808,1966-01-28 06:14:00,0 +4812,1969-09-20 23:06:00,0 +8924,1967-01-31 07:19:00,0 +3351,1966-10-02 17:57:00,0 +7109,1967-12-07 16:39:00,0 +3742,1966-09-27 06:51:00,0 +2680,1966-11-05 12:42:00,0 +909,1968-10-02 07:41:00,0 +8261,1966-10-26 11:40:00,0 +8092,1968-06-18 18:20:00,0 +5594,1969-09-22 18:13:00,0 +5710,1965-03-25 17:24:00,0 +1578,1969-03-14 07:52:00,0 +870,1965-12-13 02:51:00,0 +3971,1967-09-04 02:32:00,0 +1873,1968-05-05 14:45:00,0 +2920,1969-06-20 18:59:00,0 +3504,1969-08-19 22:27:00,0 +8940,1968-03-23 15:44:00,0 +6452,1965-06-07 00:52:00,0 +7410,1969-10-09 18:22:00,0 +3783,1967-08-09 17:40:00,0 +253,1965-05-03 22:53:00,0 +7524,1966-03-28 23:06:00,0 +6642,1969-11-26 19:24:00,0 +9667,1968-06-20 16:41:00,0 +8560,1969-05-21 17:02:00,0 +2946,1967-02-14 10:40:00,0 +7560,1966-11-25 20:26:00,0 +6682,1967-11-12 15:10:00,0 +1283,1966-01-17 03:11:00,0 +3943,1967-03-23 20:20:00,0 +3391,1965-06-29 06:46:00,0 +3150,1969-10-28 22:13:00,0 +1313,1965-02-01 13:30:00,0 +9415,1966-09-30 22:48:00,0 +1530,1969-01-24 18:25:00,0 +2274,1969-03-15 11:25:00,0 +3291,1969-01-27 18:29:00,0 +6095,1969-03-09 07:55:00,0 +7209,1969-02-27 21:28:00,0 +6696,1967-11-11 01:24:00,0 +8773,1965-10-03 13:19:00,0 +6256,1967-06-23 11:18:00,0 +5293,1968-11-29 20:59:00,0 +8790,1968-01-11 21:21:00,0 +4576,1965-03-25 08:54:00,0 +8242,1967-03-29 05:56:00,0 +8901,1969-09-13 19:10:00,0 +61,1967-12-10 22:19:00,0 +2549,1968-11-02 03:47:00,0 +3666,1967-10-09 21:10:00,0 +8753,1968-10-18 17:57:00,0 +9855,1968-03-22 06:38:00,0 +7841,1965-07-22 07:03:00,0 +605,1969-10-05 00:28:00,0 +4041,1969-07-26 04:13:00,0 +756,1969-09-11 14:43:00,0 +1217,1966-09-10 12:58:00,0 +9776,1967-05-30 02:45:00,0 +19,1965-08-15 14:59:00,0 +7567,1965-08-27 21:28:00,0 +6887,1968-04-27 09:21:00,0 +9594,1966-04-10 18:57:00,0 +9046,1967-08-03 17:02:00,0 +4178,1965-09-29 03:22:00,0 +1573,1966-09-16 19:07:00,0 +3684,1969-05-19 18:41:00,0 +6228,1967-07-15 10:37:00,0 +5865,1968-09-29 16:14:00,0 +7290,1969-03-12 21:03:00,0 +2827,1965-12-08 06:29:00,0 +5214,1966-10-07 09:06:00,0 +1424,1966-08-16 21:09:00,0 +41,1967-12-08 11:01:00,0 +526,1968-10-11 14:20:00,0 +7359,1968-02-10 16:30:00,0 +4138,1965-01-09 07:47:00,0 +5383,1965-06-06 02:38:00,0 +7159,1968-07-16 03:32:00,0 +5039,1966-03-26 10:17:00,0 +8195,1969-10-01 10:47:00,0 +7379,1968-08-18 10:57:00,0 +4449,1968-04-11 23:59:00,0 +6785,1968-01-22 09:05:00,0 +5928,1968-06-01 14:18:00,0 +4820,1968-06-12 20:14:00,0 +2059,1968-02-14 06:15:00,0 +6806,1967-08-22 10:45:00,0 +907,1966-09-09 22:10:00,0 +4261,1967-09-09 03:14:00,0 +8910,1968-08-29 03:48:00,0 +9521,1967-07-03 07:47:00,0 +2377,1966-07-03 08:20:00,0 +6406,1967-05-30 12:04:00,0 +231,1968-09-16 02:59:00,0 +8199,1968-12-07 15:20:00,0 +7437,1965-04-03 03:19:00,0 +8806,1967-01-04 08:09:00,0 +3805,1966-04-01 02:51:00,0 +7305,1965-01-16 07:41:00,0 +6512,1966-03-08 22:44:00,0 +8685,1966-09-08 04:53:00,0 +9444,1967-01-12 22:46:00,0 +1790,1969-03-06 09:20:00,0 +9653,1968-07-18 03:19:00,0 +4796,1969-02-17 12:29:00,0 +7051,1966-07-29 06:53:00,0 +1326,1968-04-20 03:40:00,0 +9960,1968-09-29 08:42:00,0 +2817,1965-03-26 15:57:00,0 +3344,1966-12-01 17:39:00,0 +8641,1968-05-06 05:10:00,0 +75,1968-03-12 07:32:00,0 +822,1969-02-26 12:43:00,0 +7931,1965-07-05 23:46:00,0 +6864,1969-09-11 00:48:00,0 +7321,1969-04-17 09:04:00,0 +3975,1966-12-05 10:09:00,0 +7039,1967-01-14 02:53:00,0 +5656,1969-05-26 03:29:00,0 +2223,1968-09-20 20:09:00,0 +8624,1966-07-08 01:48:00,0 +5251,1968-08-05 14:18:00,0 +1121,1968-05-30 09:22:00,0 +5718,1968-03-20 23:19:00,0 +5628,1968-08-02 16:35:00,0 +9837,1969-12-02 18:36:00,0 +4576,1966-08-13 10:57:00,0 +9596,1968-10-24 01:23:00,0 +2071,1968-09-21 07:21:00,0 +8902,1967-12-18 08:14:00,0 +8501,1968-03-09 16:39:00,0 +9023,1966-10-27 03:14:00,0 +4543,1969-08-27 23:01:00,0 +7668,1969-11-29 06:36:00,0 +770,1966-09-06 23:37:00,0 +4138,1969-09-18 11:04:00,0 +3572,1969-04-07 00:12:00,0 +243,1965-02-28 07:19:00,0 +9717,1969-10-16 13:20:00,0 +5948,1968-12-16 23:46:00,0 +4780,1965-09-02 06:08:00,0 +4023,1966-12-14 12:27:00,0 +7185,1969-03-07 06:45:00,0 +6899,1967-07-25 23:34:00,0 +9210,1968-12-30 04:04:00,0 +9954,1965-07-02 05:12:00,0 +6119,1969-04-15 05:38:00,0 +8994,1968-09-05 01:19:00,0 +4360,1967-08-26 17:03:00,0 +1836,1968-09-22 13:59:00,0 +7496,1967-10-11 03:20:00,0 +7965,1969-03-25 21:46:00,0 +5191,1965-09-10 00:45:00,0 +2779,1965-02-21 20:48:00,0 +2012,1968-12-12 00:18:00,0 +8484,1968-07-23 14:32:00,0 +4351,1967-12-31 20:12:00,0 +6168,1968-07-18 01:46:00,0 +1311,1969-06-28 08:21:00,0 +9162,1966-09-19 15:01:00,0 +7760,1966-10-06 01:11:00,0 +238,1966-11-02 06:02:00,0 +6723,1966-08-23 03:58:00,0 +8086,1965-02-08 09:09:00,0 +4547,1969-12-27 22:17:00,0 +1687,1968-05-26 08:44:00,0 +7502,1968-09-20 04:56:00,0 +8092,1967-10-02 18:37:00,0 +2479,1967-05-26 16:06:00,0 +747,1968-09-17 14:38:00,0 +1366,1965-01-24 18:09:00,0 +4488,1968-10-04 08:22:00,0 +6761,1967-04-04 23:06:00,0 +226,1965-03-31 10:56:00,0 +5867,1968-10-21 18:18:00,0 +7421,1968-09-10 01:28:00,0 +6413,1967-11-05 05:07:00,0 +781,1965-10-05 16:33:00,0 +3072,1967-01-12 07:19:00,0 +1391,1967-05-22 22:04:00,0 +1141,1969-01-07 22:18:00,0 +4240,1965-01-27 11:02:00,0 +6440,1969-02-16 17:31:00,0 +1358,1965-08-07 20:26:00,0 +5726,1967-09-22 13:04:00,0 +8641,1966-07-07 18:55:00,0 +4163,1967-12-14 14:19:00,0 +2432,1969-11-08 15:21:00,0 +8499,1969-06-27 05:33:00,0 +2658,1968-05-14 06:58:00,0 +8839,1968-07-05 08:45:00,0 +30,1965-07-03 06:23:00,0 +8045,1968-03-23 06:16:00,0 +3367,1968-12-25 09:46:00,0 +4227,1969-08-10 19:13:00,0 +9793,1967-01-13 15:02:00,0 +1269,1969-01-21 11:19:00,0 +7868,1965-04-25 00:00:00,0 +9385,1968-09-28 10:39:00,0 +1020,1967-10-13 01:23:00,0 +6589,1966-07-29 02:43:00,0 +8965,1969-08-15 06:38:00,0 +1396,1965-08-03 22:10:00,0 +9745,1968-02-24 13:30:00,0 +1931,1965-11-09 10:10:00,0 +6838,1968-06-22 12:17:00,0 +548,1967-04-25 01:33:00,0 +9431,1966-10-24 18:07:00,0 +7645,1967-03-22 05:01:00,0 +4858,1966-06-12 14:55:00,0 +9836,1967-08-19 16:02:00,0 +8393,1968-08-28 06:17:00,0 +3995,1967-09-15 06:27:00,0 +6613,1969-05-31 14:02:00,0 +6645,1968-07-09 05:41:00,0 +3917,1968-04-02 02:21:00,0 +9188,1969-07-06 13:04:00,0 +4366,1966-08-09 02:33:00,0 +7652,1968-11-22 09:04:00,0 +2662,1967-05-13 05:13:00,0 +9435,1966-05-19 13:17:00,0 +3596,1965-06-22 12:40:00,0 +1148,1967-02-10 10:33:00,0 +3523,1968-07-25 12:33:00,0 +8878,1967-02-03 20:50:00,0 +2499,1966-02-24 14:46:00,0 +8334,1965-09-13 01:27:00,0 +7943,1967-06-27 07:39:00,0 +9651,1969-01-05 09:57:00,0 +1022,1966-06-15 09:00:00,0 +4584,1965-10-02 00:36:00,0 +676,1969-11-07 18:11:00,0 +5639,1965-03-17 11:29:00,0 +9488,1966-03-27 20:46:00,0 +554,1966-08-18 15:53:00,0 +1182,1969-08-26 14:42:00,0 +7020,1966-09-13 12:20:00,0 +5715,1966-10-19 01:04:00,0 +5535,1965-06-30 13:29:00,0 +9331,1968-06-14 07:40:00,0 +4105,1967-10-11 01:55:00,0 +7706,1967-03-14 18:57:00,0 +311,1966-04-13 23:43:00,0 +4969,1969-02-01 07:06:00,0 +497,1969-09-22 07:38:00,0 +6754,1968-05-07 20:25:00,0 +3915,1965-05-09 15:43:00,0 +4669,1965-06-07 23:16:00,0 +6663,1968-02-20 16:04:00,0 +563,1968-05-31 11:38:00,0 +1681,1966-02-08 00:55:00,0 +3,1967-07-21 22:45:00,0 +2905,1966-04-29 03:13:00,0 +9425,1966-02-01 09:49:00,0 +932,1967-09-25 18:02:00,0 +704,1967-11-11 06:37:00,0 +3359,1967-03-22 17:20:00,0 +9280,1967-06-08 18:01:00,0 +642,1968-12-01 06:55:00,0 +5635,1967-02-02 23:30:00,0 +4788,1969-10-19 12:40:00,0 +7771,1967-08-28 08:47:00,0 +638,1965-06-28 22:15:00,0 +4245,1965-04-10 09:17:00,0 +2297,1965-08-06 06:13:00,0 +6220,1966-05-15 20:32:00,0 +1413,1965-02-18 06:13:00,0 +1783,1968-07-21 16:15:00,0 +519,1967-09-08 07:36:00,0 +922,1967-02-06 04:19:00,0 +8851,1969-01-27 16:20:00,0 +3019,1969-11-14 03:48:00,0 +3623,1968-11-22 15:56:00,0 +6422,1965-01-12 01:35:00,0 +2758,1967-03-19 13:25:00,0 +4728,1969-04-07 22:27:00,0 +4782,1968-04-10 03:49:00,0 +6704,1967-06-13 09:10:00,0 +5241,1967-06-03 19:40:00,0 +8929,1966-07-10 04:38:00,0 +6705,1969-02-09 20:08:00,0 +3071,1965-09-24 11:54:00,0 +5250,1968-04-06 11:33:00,0 +537,1965-03-02 06:24:00,0 +9341,1966-04-17 12:27:00,0 +5465,1966-04-24 07:15:00,0 +5429,1969-02-02 09:38:00,0 +6523,1966-12-11 16:49:00,0 +2926,1968-06-20 10:47:00,0 +4105,1966-11-15 01:09:00,0 +3382,1966-03-08 06:41:00,0 +1413,1965-01-22 09:07:00,0 +8677,1967-02-16 14:04:00,0 +42,1967-04-21 19:05:00,0 +7551,1967-02-06 21:15:00,0 +8990,1965-09-06 10:14:00,0 +8328,1969-09-26 02:46:00,0 +4433,1969-03-18 17:08:00,0 +819,1968-10-21 12:14:00,0 +4922,1969-12-05 14:01:00,0 +8086,1968-05-16 05:45:00,0 +7365,1969-06-01 17:16:00,0 +7997,1966-11-01 17:34:00,0 +9009,1969-08-24 05:34:00,0 +3087,1965-08-19 22:28:00,0 +5971,1966-02-24 08:06:00,0 +6297,1968-04-07 10:46:00,0 +7984,1966-09-24 22:07:00,0 +3752,1969-05-09 01:06:00,0 +3808,1965-01-06 22:34:00,0 +2973,1965-04-11 14:01:00,0 +3136,1967-10-20 21:38:00,0 +8838,1968-02-20 21:32:00,0 +6954,1966-03-03 17:46:00,0 +9740,1966-08-01 23:58:00,0 +9315,1968-01-03 20:55:00,0 +2302,1968-12-06 20:30:00,0 +6851,1969-02-16 09:10:00,0 +4348,1969-07-08 14:15:00,0 +6999,1965-06-25 01:19:00,0 +2996,1965-12-30 09:38:00,0 +4426,1968-06-15 22:29:00,0 +6130,1969-03-22 05:01:00,0 +3347,1966-08-28 16:16:00,0 +5453,1967-08-29 02:48:00,0 +721,1967-02-15 10:58:00,0 +5849,1965-02-13 13:28:00,0 +1155,1965-07-26 08:47:00,0 +325,1966-09-09 13:19:00,0 +3592,1967-05-13 14:10:00,0 +2927,1968-07-22 12:03:00,0 +576,1967-12-22 13:56:00,0 +5531,1969-03-22 06:24:00,0 +9241,1968-06-28 21:56:00,0 +3031,1965-09-04 20:10:00,0 +5220,1968-06-14 09:28:00,0 +1118,1967-06-23 17:15:00,0 +586,1965-10-05 11:17:00,0 +4251,1967-12-26 14:53:00,0 +6155,1969-11-05 11:25:00,0 +751,1969-12-22 19:45:00,0 +1118,1965-03-19 17:36:00,0 +1781,1969-12-25 12:24:00,0 +1696,1969-07-01 14:03:00,0 +1312,1968-05-08 03:02:00,0 +4690,1965-08-06 07:59:00,0 +8765,1969-01-08 03:50:00,0 +7100,1965-06-08 09:43:00,0 +4815,1968-01-09 15:10:00,0 +7731,1968-08-02 05:04:00,0 +8673,1969-02-07 22:41:00,0 +4937,1968-08-18 03:49:00,0 +6337,1965-09-02 11:22:00,0 +8597,1968-09-08 10:38:00,0 +3989,1967-11-17 03:29:00,0 +2877,1969-01-08 01:23:00,0 +7816,1968-06-10 00:00:00,0 +9995,1967-12-10 05:10:00,0 +8586,1969-04-10 21:02:00,0 +5375,1965-11-22 09:28:00,0 +2764,1969-12-31 07:30:00,0 +1273,1969-04-14 22:20:00,0 +6676,1968-09-01 00:17:00,0 +1801,1967-03-24 22:16:00,0 +5189,1969-10-07 12:47:00,0 +2949,1968-07-18 17:57:00,0 +7340,1969-09-29 12:56:00,0 +3462,1969-11-06 02:15:00,0 +432,1969-08-09 07:40:00,0 +5044,1965-08-25 05:57:00,0 +6210,1967-04-20 13:23:00,0 +8011,1966-09-28 12:41:00,0 +5903,1965-03-25 23:44:00,0 +8865,1967-02-25 23:43:00,0 +1116,1968-11-13 10:01:00,0 +7082,1969-11-14 02:54:00,0 +7134,1967-04-14 01:48:00,0 +1808,1965-12-13 16:01:00,0 +653,1965-07-22 18:50:00,0 +6716,1966-03-18 11:18:00,0 +6508,1968-02-20 12:33:00,0 +1916,1965-10-15 10:03:00,0 +7275,1968-07-23 22:07:00,0 +315,1966-07-07 16:57:00,0 +397,1965-08-07 15:14:00,0 +3495,1968-11-17 06:49:00,0 +9294,1966-11-29 19:05:00,0 +9984,1969-09-03 05:30:00,0 +6849,1968-09-15 09:50:00,0 +2471,1965-12-29 17:34:00,0 +3729,1966-10-11 03:49:00,0 +2715,1968-08-01 22:17:00,0 +4831,1966-06-05 12:50:00,0 +5571,1966-05-20 13:58:00,0 +8296,1968-09-19 09:23:00,0 +2400,1967-12-09 12:39:00,0 +6148,1969-03-13 15:35:00,0 +8621,1967-03-19 06:31:00,0 +633,1968-01-08 07:48:00,0 +942,1967-04-23 20:24:00,0 +2429,1968-12-01 17:59:00,0 +2270,1965-01-21 00:48:00,0 +4150,1969-05-10 07:54:00,0 +389,1966-11-09 03:47:00,0 +7442,1968-02-14 17:40:00,0 +1718,1968-10-11 05:00:00,0 +1408,1969-10-13 18:10:00,0 +7779,1969-05-04 08:05:00,0 +5502,1966-03-12 07:01:00,0 +6860,1969-01-03 23:28:00,0 +485,1968-11-15 19:05:00,0 +7753,1968-04-24 20:11:00,0 +2457,1966-12-28 01:15:00,0 +24,1967-08-30 08:53:00,0 +8114,1967-08-14 08:45:00,0 +336,1965-09-25 15:50:00,0 +1669,1966-10-28 18:18:00,0 +3558,1966-04-18 18:43:00,0 +8013,1967-06-26 21:24:00,0 +18,1966-09-06 21:53:00,0 +7395,1965-07-05 12:15:00,0 +9150,1969-03-24 13:21:00,0 +749,1965-07-14 14:58:00,0 +5105,1968-05-26 11:46:00,0 +5855,1969-11-30 12:34:00,0 +3416,1966-08-28 08:19:00,0 +8103,1969-01-18 08:25:00,0 +5383,1965-04-30 05:52:00,0 +7576,1966-07-25 16:33:00,0 +465,1967-07-08 00:02:00,0 +3216,1967-12-01 20:29:00,0 +1980,1966-07-31 06:00:00,0 +4675,1967-07-09 08:07:00,0 +7996,1966-07-23 22:14:00,0 +3969,1967-02-14 14:59:00,0 +4343,1968-09-27 02:41:00,0 +2160,1969-10-30 00:46:00,0 +9294,1969-08-14 07:13:00,0 +4545,1969-09-18 09:24:00,0 +9632,1968-09-18 17:12:00,0 +215,1968-11-09 14:11:00,0 +7946,1965-11-23 02:28:00,0 +5521,1969-04-08 08:24:00,0 +836,1965-08-22 21:48:00,0 +950,1965-06-02 08:28:00,0 +8301,1965-04-30 13:10:00,0 +62,1968-10-25 07:49:00,0 +7639,1966-05-21 20:54:00,0 +5574,1966-01-31 21:27:00,0 +2882,1967-06-29 13:18:00,0 +126,1968-08-01 13:22:00,0 +8838,1969-12-14 13:57:00,0 +1955,1967-08-01 17:27:00,0 +8869,1968-12-03 06:37:00,0 +9256,1966-10-14 18:52:00,0 +5732,1968-08-10 20:19:00,0 +5397,1966-01-28 02:34:00,0 +8537,1969-01-18 17:24:00,0 +6494,1966-01-15 16:11:00,0 +4763,1965-05-16 02:53:00,0 +6721,1965-03-22 13:03:00,0 +6603,1967-03-26 21:54:00,0 +6920,1967-03-30 04:41:00,0 +1623,1965-10-14 14:05:00,0 +1941,1969-02-21 03:30:00,0 +6403,1969-08-31 00:27:00,0 +4439,1969-06-19 12:36:00,0 +6750,1965-10-30 04:23:00,0 +1018,1968-10-23 09:16:00,0 +9545,1967-09-16 20:53:00,0 +477,1969-06-11 11:25:00,0 +3058,1969-01-28 17:04:00,0 +2951,1965-10-08 20:02:00,0 +5904,1967-01-02 15:05:00,0 +4711,1968-03-18 23:23:00,0 +6121,1965-04-13 20:17:00,0 +4547,1969-03-26 10:42:00,0 +3997,1965-12-16 05:35:00,0 +2897,1969-12-23 19:09:00,0 +3095,1966-09-25 09:34:00,0 +3928,1967-10-04 06:54:00,0 +39,1969-11-30 14:29:00,0 +310,1965-08-21 18:03:00,0 +8563,1966-02-01 16:11:00,0 +2160,1968-11-10 19:28:00,0 +2623,1967-11-18 20:26:00,0 +653,1966-05-04 03:26:00,0 +4838,1966-08-21 21:14:00,0 +8834,1966-12-20 20:48:00,0 +9505,1968-04-20 15:38:00,0 +6052,1965-05-04 08:59:00,0 +3539,1967-11-17 06:57:00,0 +4357,1969-01-13 02:03:00,0 +5569,1968-12-14 07:23:00,0 +7690,1965-07-25 22:04:00,0 +6617,1966-04-10 10:36:00,0 +1083,1965-08-06 10:31:00,0 +8898,1966-08-27 22:18:00,0 +3558,1967-04-07 04:17:00,0 +2962,1969-07-20 22:56:00,0 +7997,1965-04-08 22:01:00,0 +2920,1969-01-05 05:13:00,0 +8185,1968-08-21 02:20:00,0 +6762,1968-03-27 03:48:00,0 +4610,1966-01-11 21:01:00,0 +9461,1968-07-07 13:52:00,0 +5337,1968-08-17 05:23:00,0 +3127,1967-09-17 01:02:00,0 +107,1965-12-29 01:43:00,0 +4140,1965-01-21 01:45:00,0 +4070,1969-01-30 08:46:00,0 +4350,1965-04-06 14:16:00,0 +3521,1969-05-04 12:35:00,0 +2302,1969-08-14 13:43:00,0 +5945,1965-03-19 07:17:00,0 +8676,1965-05-24 10:22:00,0 +4351,1967-10-16 06:19:00,0 +3085,1967-11-11 12:20:00,0 +904,1969-12-08 14:54:00,0 +1781,1965-11-16 14:52:00,0 +7226,1965-10-22 15:59:00,0 +4574,1969-09-23 03:26:00,0 +3618,1967-10-15 06:12:00,0 +1061,1965-01-10 09:09:00,0 +3482,1968-11-15 23:17:00,0 +1996,1968-03-01 02:34:00,0 +9602,1967-05-16 22:23:00,0 +4125,1965-08-30 18:04:00,0 +7785,1965-09-18 15:40:00,0 +848,1965-09-10 06:25:00,0 +1000,1967-06-22 19:16:00,0 +9422,1965-08-30 17:08:00,0 +3780,1969-06-15 07:41:00,0 +621,1968-05-07 03:13:00,0 +9000,1969-04-01 17:26:00,0 +4405,1968-03-15 11:46:00,0 +9989,1969-05-16 23:09:00,0 +3801,1967-08-06 23:37:00,0 +5400,1968-08-23 19:37:00,0 +3808,1968-10-27 14:23:00,0 +1749,1969-04-21 07:31:00,0 +5211,1969-04-29 08:29:00,0 +8977,1969-12-04 21:30:00,0 +9843,1968-12-29 02:53:00,0 +4579,1968-11-12 23:12:00,0 +3066,1965-01-12 11:52:00,0 +8176,1969-03-19 08:04:00,0 +7463,1968-10-08 01:47:00,0 +5349,1967-06-16 08:58:00,0 +5323,1965-01-07 17:03:00,0 +5692,1965-02-10 06:53:00,0 +3130,1969-06-17 01:02:00,0 +8369,1967-05-23 05:15:00,0 +6786,1965-11-19 23:27:00,0 +869,1967-08-30 17:45:00,0 +4671,1966-05-25 06:01:00,0 +2930,1968-05-01 02:20:00,0 +8377,1967-02-01 09:06:00,0 +7889,1969-06-17 03:34:00,0 +9347,1967-04-14 09:59:00,0 +8886,1965-09-12 22:39:00,0 +9758,1967-06-07 22:52:00,0 +2058,1969-08-11 20:59:00,0 +7570,1966-09-01 03:59:00,0 +417,1966-12-30 08:25:00,0 +4105,1969-06-02 08:42:00,0 +4367,1965-02-06 00:45:00,0 +3558,1968-02-14 03:52:00,0 +8680,1967-12-01 13:52:00,0 +5097,1965-12-17 14:11:00,0 +4172,1966-09-03 04:03:00,0 +9742,1966-02-18 16:20:00,0 +7956,1965-04-17 04:44:00,0 +9773,1966-01-02 07:27:00,0 +124,1966-07-27 17:54:00,0 +6864,1969-12-17 07:14:00,0 +4036,1966-05-08 07:51:00,0 +5704,1968-03-04 22:29:00,0 +7265,1967-11-05 05:35:00,0 +1564,1968-01-28 06:24:00,0 +2784,1968-10-11 13:18:00,0 +3361,1967-12-04 22:43:00,0 +425,1968-09-04 16:45:00,0 +5654,1967-04-19 11:47:00,0 +1336,1969-10-14 09:49:00,0 +9585,1968-01-18 12:35:00,0 +7250,1969-12-01 00:34:00,0 +8268,1969-01-29 14:06:00,0 +5791,1968-09-25 04:18:00,0 +3520,1969-08-07 13:04:00,0 +2979,1965-09-29 15:33:00,0 +8430,1967-03-31 03:25:00,0 +1349,1966-01-12 23:03:00,0 +6156,1969-08-11 03:19:00,0 +2112,1969-04-20 07:20:00,0 +9257,1969-05-15 01:56:00,0 +3006,1966-08-07 15:34:00,0 +4567,1968-10-21 04:46:00,0 +9086,1969-03-07 15:46:00,0 +4412,1968-04-07 19:37:00,0 +3111,1968-04-07 12:09:00,0 +8472,1965-01-09 14:32:00,0 +8605,1967-10-03 22:01:00,0 +6178,1966-04-27 06:47:00,0 +4067,1966-05-06 11:01:00,0 +754,1966-04-06 02:44:00,0 +2522,1969-04-15 20:29:00,0 +9979,1967-01-31 19:39:00,0 +7005,1967-05-05 13:14:00,0 +2219,1965-09-14 21:53:00,0 +3241,1968-06-23 20:32:00,0 +2877,1968-09-14 03:34:00,0 +6742,1968-04-23 03:59:00,0 +4005,1965-08-13 06:46:00,0 +112,1969-11-22 14:29:00,0 +304,1966-11-06 01:43:00,0 +4914,1967-03-25 08:15:00,0 +1122,1966-11-08 07:29:00,0 +1288,1967-11-30 01:16:00,0 +7796,1966-01-27 06:04:00,0 +4398,1966-07-08 03:14:00,0 +4603,1965-08-19 07:56:00,0 +6075,1965-05-05 11:53:00,0 +4040,1969-07-03 10:50:00,0 +1839,1969-08-04 15:08:00,0 +2392,1965-04-23 21:38:00,0 +3867,1966-08-17 05:26:00,0 +6751,1967-06-05 09:32:00,0 +9871,1966-03-11 13:19:00,0 +7663,1967-06-18 04:39:00,0 +3623,1965-05-05 13:55:00,0 +8212,1965-06-10 09:58:00,0 +7372,1968-12-11 13:06:00,0 +9918,1966-04-07 22:25:00,0 +8179,1965-07-11 20:21:00,0 +3251,1968-08-17 15:30:00,0 +3113,1968-05-21 09:53:00,0 +177,1966-10-03 12:12:00,0 +4255,1966-03-01 08:50:00,0 +3554,1966-02-27 11:08:00,0 +378,1966-02-24 11:56:00,0 +7411,1966-08-22 01:16:00,0 +8473,1966-08-26 17:16:00,0 +7600,1966-02-16 11:04:00,0 +1070,1967-10-28 19:23:00,0 +513,1965-10-04 22:47:00,0 +95,1966-03-15 11:33:00,0 +3343,1965-10-03 14:25:00,0 +4121,1969-12-06 23:57:00,0 +8891,1968-10-22 07:10:00,0 +5164,1968-06-19 03:49:00,0 +7099,1969-07-09 08:09:00,0 +9095,1969-03-11 19:19:00,0 +5680,1968-01-08 09:32:00,0 +9583,1969-08-21 23:40:00,0 +1007,1969-09-09 17:38:00,0 +8796,1969-09-28 01:32:00,0 +2908,1969-05-17 09:47:00,0 +3103,1967-10-30 20:36:00,0 +5238,1968-10-16 18:10:00,0 +841,1967-11-04 00:34:00,0 +3465,1969-09-26 17:34:00,0 +4513,1966-09-08 02:48:00,0 +1343,1966-07-04 22:18:00,0 +3897,1969-03-31 07:30:00,0 +3864,1965-05-08 11:08:00,0 +6633,1968-11-03 08:51:00,0 +4182,1969-06-13 05:14:00,0 +8978,1966-06-19 21:50:00,0 +1318,1966-09-07 15:34:00,0 +1308,1967-09-13 09:55:00,0 +7716,1966-10-30 20:15:00,0 +2815,1969-03-16 20:00:00,0 +8811,1966-05-12 15:30:00,0 +6129,1967-12-22 04:59:00,0 +7614,1965-03-26 11:06:00,0 +3446,1969-02-20 21:43:00,0 +5540,1965-04-10 22:20:00,0 +5437,1968-03-25 23:57:00,0 +8570,1967-09-06 18:35:00,0 +5978,1966-10-10 00:51:00,0 +6956,1965-06-28 08:11:00,0 +9053,1967-10-04 10:16:00,0 +8369,1969-02-03 22:43:00,0 +1385,1968-01-07 21:56:00,0 +1498,1966-03-13 20:11:00,0 +975,1966-05-09 04:06:00,0 +9233,1967-12-05 06:36:00,0 +561,1966-06-19 23:34:00,0 +7123,1966-12-13 06:10:00,0 +9687,1966-12-05 14:56:00,0 +5778,1965-11-18 23:10:00,0 +3613,1968-11-17 21:49:00,0 +1807,1969-01-22 08:49:00,0 +5915,1965-01-02 08:31:00,0 +5498,1968-09-14 10:23:00,0 +5762,1965-06-27 07:37:00,0 +304,1969-02-01 12:56:00,0 +6059,1966-06-16 17:48:00,0 +799,1965-02-13 01:00:00,0 +1204,1969-09-28 19:34:00,0 +3683,1968-05-30 03:53:00,0 +5947,1969-04-23 11:59:00,0 +5891,1969-04-17 11:02:00,0 +111,1965-09-17 14:44:00,0 +8787,1966-08-19 12:19:00,0 +2976,1969-09-13 01:14:00,0 +9359,1966-08-25 16:55:00,0 +6888,1969-06-03 06:50:00,0 +1552,1965-05-31 22:51:00,0 +5638,1965-08-28 04:50:00,0 +3097,1966-01-18 04:30:00,0 +7788,1968-03-05 06:45:00,0 +6769,1968-10-11 17:53:00,0 +3021,1969-11-12 11:15:00,0 +2734,1969-07-12 05:10:00,0 +1603,1968-01-02 07:30:00,0 +3815,1967-06-21 20:02:00,0 +7593,1966-12-23 18:09:00,0 +860,1969-01-26 23:24:00,0 +8156,1968-06-26 11:59:00,0 +1074,1968-06-05 01:28:00,0 +7672,1969-07-01 00:06:00,0 +2452,1968-11-20 20:47:00,0 +6856,1965-12-20 02:05:00,0 +5083,1965-03-29 09:13:00,0 +4067,1965-12-23 07:55:00,0 +725,1969-01-01 07:17:00,0 +1519,1968-01-28 01:14:00,0 +7390,1965-03-29 03:57:00,0 +5865,1969-10-30 05:41:00,0 +406,1965-03-17 02:28:00,0 +1684,1968-03-10 08:37:00,0 +8557,1967-06-04 10:28:00,0 +4306,1969-10-30 11:21:00,0 +1598,1967-08-03 21:07:00,0 +395,1965-07-30 09:21:00,0 +7301,1968-07-14 22:50:00,0 +1358,1969-01-16 00:21:00,0 +6247,1969-08-10 08:44:00,0 +8031,1966-08-01 06:02:00,0 +821,1966-12-02 09:53:00,0 +2362,1966-11-27 05:13:00,0 +8867,1969-12-30 00:24:00,0 +8888,1968-03-06 23:42:00,0 +9436,1965-06-14 22:11:00,0 +4621,1969-11-08 14:01:00,0 +259,1965-11-12 18:45:00,0 +5749,1966-07-30 03:26:00,0 +3757,1966-06-27 05:11:00,0 +5460,1966-06-02 15:33:00,0 +2505,1966-02-04 10:32:00,0 +8952,1968-03-03 03:13:00,0 +3540,1969-08-01 17:19:00,0 +6140,1969-01-05 19:17:00,0 +8614,1969-04-02 18:55:00,0 +6850,1969-09-01 09:05:00,0 +2495,1968-07-27 00:07:00,0 +8334,1969-09-10 11:00:00,0 +6804,1968-02-22 11:30:00,0 +4111,1966-08-17 05:40:00,0 +5832,1966-03-11 21:42:00,0 +2673,1965-08-19 05:31:00,0 +1990,1968-02-14 01:42:00,0 +197,1969-05-26 23:58:00,0 +1839,1968-02-02 13:15:00,0 +704,1969-05-02 11:22:00,0 +2194,1967-06-16 15:03:00,0 +4760,1969-03-10 17:06:00,0 +6027,1965-07-17 21:18:00,0 +7147,1968-01-12 14:53:00,0 +1242,1965-02-15 21:55:00,0 +2584,1965-07-08 22:04:00,0 +5570,1965-11-17 18:01:00,0 +8106,1967-07-31 07:26:00,0 +1054,1968-11-28 19:24:00,0 +3586,1966-09-20 17:49:00,0 +7234,1967-11-03 18:03:00,0 +2859,1968-09-30 20:00:00,0 +1074,1965-07-17 19:52:00,0 +5339,1967-02-21 14:26:00,0 +5244,1969-12-04 23:11:00,0 +791,1969-03-13 22:15:00,0 +773,1969-08-03 08:19:00,0 +3800,1965-12-05 01:18:00,0 +4542,1968-10-17 09:45:00,0 +9589,1965-08-25 15:27:00,0 +875,1969-03-21 03:20:00,0 +4514,1967-04-30 13:36:00,0 +9665,1969-07-22 00:08:00,0 +1884,1969-04-12 00:08:00,0 +9524,1969-03-06 14:41:00,0 +3492,1966-04-30 18:24:00,0 +2378,1965-02-13 01:38:00,0 +7511,1968-04-20 21:24:00,0 +7470,1966-04-22 20:46:00,0 +9777,1968-03-23 15:17:00,0 +6313,1966-02-22 08:53:00,0 +730,1968-04-12 00:04:00,0 +2291,1966-12-17 09:26:00,0 +9441,1967-06-14 08:26:00,0 +3747,1966-09-26 08:51:00,0 +5325,1969-05-15 06:44:00,0 +3691,1967-11-09 20:47:00,0 +2933,1966-05-16 10:08:00,0 +9989,1967-08-28 09:14:00,0 +2540,1967-05-22 20:26:00,0 +5170,1968-05-21 13:03:00,0 +2244,1968-05-29 16:44:00,0 +1868,1966-11-28 05:40:00,0 +7951,1968-12-02 23:22:00,0 +2097,1967-03-08 17:16:00,0 +8150,1965-07-04 07:11:00,0 +1566,1969-07-20 19:28:00,0 +4660,1969-11-03 12:08:00,0 +4454,1967-11-04 00:30:00,0 +4071,1968-06-28 18:22:00,0 +5166,1966-01-29 09:00:00,0 +4226,1966-05-07 16:40:00,0 +5672,1965-01-17 20:25:00,0 +9521,1967-01-12 17:43:00,0 +3566,1967-04-29 15:20:00,0 +7436,1969-09-17 22:13:00,0 +2366,1969-07-26 19:19:00,0 +9645,1969-12-13 22:43:00,0 +2833,1965-09-24 00:21:00,0 +4786,1966-07-10 06:38:00,0 +6230,1969-12-17 21:58:00,0 +394,1968-03-15 11:53:00,0 +5018,1967-01-13 03:51:00,0 +1967,1967-10-19 16:31:00,0 +5750,1969-09-02 01:56:00,0 +4576,1965-04-15 20:28:00,0 +598,1968-10-29 01:56:00,0 +8763,1965-11-08 04:36:00,0 +2633,1969-07-12 16:14:00,0 +4450,1968-11-26 16:49:00,0 +5600,1968-05-29 00:42:00,0 +9088,1969-12-27 06:17:00,0 +2882,1965-04-18 23:48:00,0 +9287,1966-07-19 15:48:00,0 +4152,1969-01-31 00:55:00,0 +44,1969-06-12 01:20:00,0 +1102,1967-11-20 08:11:00,0 +8906,1965-05-16 15:12:00,0 +1995,1967-10-25 09:20:00,0 +111,1965-02-23 02:27:00,0 +2019,1966-11-25 09:10:00,0 +790,1965-01-31 20:47:00,0 +6849,1967-02-18 15:54:00,0 +6907,1966-03-29 02:40:00,0 +5978,1967-08-02 10:09:00,0 +8054,1968-08-04 01:15:00,0 +2555,1969-09-05 21:19:00,0 +2777,1968-08-26 16:06:00,0 +8142,1966-09-24 14:46:00,0 +2756,1967-01-30 17:34:00,0 +7630,1968-11-14 03:22:00,0 +9353,1969-09-20 16:04:00,0 +9878,1968-08-07 22:19:00,0 +9597,1967-08-10 00:54:00,0 +4395,1968-06-26 07:22:00,0 +3473,1969-01-10 22:25:00,0 +6361,1969-07-06 17:58:00,0 +2966,1968-06-16 14:01:00,0 +1428,1968-07-06 04:22:00,0 +9271,1967-05-17 05:46:00,0 +7923,1966-04-24 04:36:00,0 +5412,1966-03-28 21:43:00,0 +1959,1969-01-25 01:32:00,0 +5764,1967-07-16 07:43:00,0 +5589,1969-05-17 19:31:00,0 +9480,1969-08-16 13:34:00,0 +9791,1966-05-04 02:51:00,0 +7189,1969-12-01 07:44:00,0 +3519,1966-11-08 10:26:00,0 +4721,1966-03-17 11:25:00,0 +8219,1969-01-16 19:39:00,0 +2774,1966-06-01 11:10:00,0 +49,1969-12-31 18:43:00,0 +6004,1966-12-02 04:41:00,0 +1255,1967-11-08 05:57:00,0 +2219,1966-11-21 04:40:00,0 +2142,1969-11-14 23:47:00,0 +7856,1965-02-16 01:32:00,0 +5844,1965-01-17 21:32:00,0 +4105,1966-05-17 15:02:00,0 +7748,1965-12-07 12:45:00,0 +3044,1969-08-11 12:02:00,0 +8174,1966-02-01 02:41:00,0 +2392,1965-06-11 14:32:00,0 +6169,1966-11-09 01:56:00,0 +2262,1969-12-03 06:50:00,0 +8657,1966-06-02 22:59:00,0 +7191,1968-04-18 15:02:00,0 +7658,1965-06-19 05:07:00,0 +6211,1968-04-20 23:45:00,0 +9622,1965-08-28 12:54:00,0 +1304,1965-12-08 11:37:00,0 +1224,1965-08-30 12:23:00,0 +4543,1966-07-01 15:13:00,0 +2826,1967-08-08 20:01:00,0 +8392,1965-08-17 23:58:00,0 +4723,1966-08-27 00:53:00,0 +5810,1966-06-16 22:46:00,0 +4023,1967-09-27 07:37:00,0 +2807,1967-03-05 13:25:00,0 +7593,1967-06-16 06:07:00,0 +9653,1966-10-28 00:43:00,0 +4508,1965-09-05 11:12:00,0 +6458,1966-07-08 18:40:00,0 +2918,1968-04-06 19:47:00,0 +3516,1967-06-16 17:51:00,0 +5215,1965-10-11 09:04:00,0 +6750,1969-11-04 23:16:00,0 +1104,1969-08-05 19:52:00,0 +4136,1968-12-26 11:23:00,0 +9504,1965-07-18 06:03:00,0 +5299,1969-04-25 04:11:00,0 +6610,1966-05-24 04:33:00,0 +4921,1968-10-15 02:14:00,0 +9659,1968-07-26 02:55:00,0 +6610,1965-05-31 09:39:00,0 +1676,1969-08-24 04:30:00,0 +6417,1965-11-05 02:01:00,0 +6199,1967-08-03 21:02:00,0 +8542,1968-02-13 06:47:00,0 +5457,1968-06-08 21:32:00,0 +8240,1965-09-28 04:32:00,0 +9467,1965-02-24 10:43:00,0 +3739,1968-11-08 05:07:00,0 +4618,1968-06-12 14:52:00,0 +5739,1965-12-22 19:58:00,0 +5155,1968-08-31 18:48:00,0 +4193,1967-11-19 01:16:00,0 +1097,1967-11-02 13:40:00,0 +2773,1969-05-03 20:37:00,0 +9531,1967-10-17 04:59:00,0 +1157,1969-04-16 21:52:00,0 +1517,1966-05-15 02:22:00,0 +2479,1966-04-30 22:12:00,0 +9473,1967-10-20 21:47:00,0 +1267,1965-08-29 23:31:00,0 +7202,1967-11-20 13:32:00,0 +8200,1965-06-14 19:20:00,0 +6171,1967-11-26 06:16:00,0 +7441,1965-01-10 20:38:00,0 +9341,1965-03-05 14:39:00,0 +5828,1968-08-02 00:27:00,0 +6711,1967-12-10 17:51:00,0 +9291,1969-05-27 00:56:00,0 +3808,1967-01-22 03:39:00,0 +9996,1969-10-07 22:25:00,0 +65,1969-09-03 13:51:00,0 +3435,1966-07-09 07:42:00,0 +5889,1965-03-02 02:09:00,0 +4734,1965-06-03 07:25:00,0 +4448,1969-01-08 08:22:00,0 +9619,1967-10-28 08:47:00,0 +5373,1966-01-15 01:37:00,0 +2538,1968-03-06 15:15:00,0 +4831,1965-03-09 04:28:00,0 +9442,1968-03-31 00:09:00,0 +2893,1968-11-12 14:33:00,0 +8553,1967-04-07 23:44:00,0 +3285,1969-01-01 02:36:00,0 +9461,1965-02-21 18:54:00,0 +73,1969-12-17 14:29:00,0 +7048,1969-08-07 02:02:00,0 +9830,1968-07-23 18:06:00,0 +7416,1966-07-28 03:52:00,0 +5377,1968-03-27 17:03:00,0 +8759,1968-02-26 16:16:00,0 +6547,1966-01-20 22:09:00,0 +3800,1966-07-01 01:07:00,0 +3831,1967-07-11 09:06:00,0 +3400,1969-04-14 12:33:00,0 +3770,1969-03-15 20:13:00,0 +2265,1967-08-23 16:59:00,0 +2745,1967-03-30 18:14:00,0 +2654,1965-08-18 22:24:00,0 +9833,1965-06-09 02:07:00,0 +9596,1967-01-27 07:57:00,0 +4636,1969-11-25 00:21:00,0 +3253,1965-06-12 15:11:00,0 +4349,1967-10-02 08:21:00,0 +3986,1967-11-25 01:57:00,0 +3177,1968-05-31 15:58:00,0 +2631,1965-10-09 11:45:00,0 +1570,1969-05-01 03:47:00,0 +1275,1969-06-29 22:39:00,0 +3617,1969-07-03 02:26:00,0 +956,1966-08-10 17:24:00,0 +9510,1969-06-04 12:37:00,0 +9550,1965-03-21 13:47:00,0 +931,1968-08-12 06:42:00,0 +9375,1968-07-21 12:35:00,0 +7877,1967-02-14 04:44:00,0 +2854,1969-12-18 23:13:00,0 +8381,1969-11-27 14:46:00,0 +906,1966-07-06 05:53:00,0 +5182,1968-06-05 22:33:00,0 +3321,1968-08-11 15:46:00,0 +8669,1967-08-05 03:24:00,0 +9232,1969-05-01 21:30:00,0 +6464,1967-09-19 07:50:00,0 +9818,1967-11-21 16:11:00,0 +7927,1965-10-08 23:36:00,0 +469,1966-02-18 05:55:00,0 +2149,1969-10-29 08:20:00,0 +381,1967-12-22 15:33:00,0 +9593,1969-06-07 19:10:00,0 +4992,1966-03-25 19:38:00,0 +3537,1969-06-20 18:11:00,0 +3673,1968-03-23 17:45:00,0 +9899,1968-09-17 04:15:00,0 +2321,1967-04-27 05:18:00,0 +8137,1966-07-31 11:20:00,0 +1494,1969-07-04 00:35:00,0 +8448,1965-09-01 02:36:00,0 +2678,1966-04-30 12:37:00,0 +9889,1967-04-03 13:27:00,0 +5675,1968-03-25 21:23:00,0 +3927,1969-07-26 22:02:00,0 +3798,1965-06-11 22:32:00,0 +4380,1969-10-29 22:54:00,0 +643,1969-09-25 12:45:00,0 +1517,1967-11-15 01:36:00,0 +9771,1965-02-15 23:36:00,0 +4952,1968-05-05 12:55:00,0 +8043,1966-09-04 14:08:00,0 +2734,1966-05-21 08:34:00,0 +9857,1968-11-12 08:58:00,0 +93,1966-01-05 17:07:00,0 +8060,1966-02-02 11:59:00,0 +369,1968-07-11 10:09:00,0 +590,1968-11-26 22:11:00,0 +2102,1966-05-19 01:38:00,0 +3802,1969-01-27 23:52:00,0 +4653,1967-12-07 13:28:00,0 +4138,1967-01-01 20:40:00,0 +6446,1969-04-20 07:42:00,0 +6132,1968-03-21 03:42:00,0 +5019,1969-10-26 11:00:00,0 +5510,1967-02-22 10:15:00,0 +3080,1968-08-02 16:07:00,0 +7282,1969-07-30 10:59:00,0 +279,1968-07-09 19:22:00,0 +5827,1967-09-20 17:41:00,0 +2433,1967-10-11 04:08:00,0 +8012,1965-11-04 21:35:00,0 +2993,1968-12-13 16:05:00,0 +8472,1967-03-29 10:57:00,0 +5740,1969-09-24 23:00:00,0 +8380,1967-05-28 21:33:00,0 +8327,1967-01-11 23:53:00,0 +9429,1966-09-01 14:43:00,0 +1581,1965-10-05 15:16:00,0 +1982,1968-04-02 05:25:00,0 +2585,1966-11-03 12:06:00,0 +7911,1969-06-20 00:17:00,0 +8775,1969-08-15 15:39:00,0 +8843,1965-09-13 02:13:00,0 +1948,1968-03-08 18:57:00,0 +5457,1968-06-28 08:21:00,0 +6632,1965-11-01 17:05:00,0 +810,1969-12-06 14:42:00,0 +3802,1969-08-26 09:49:00,0 +4618,1966-06-05 04:50:00,0 +5010,1969-01-04 18:54:00,0 +1666,1966-02-03 04:44:00,0 +4914,1967-06-05 09:51:00,0 +7101,1967-11-25 11:11:00,0 +7673,1965-08-11 22:30:00,0 +4271,1967-05-15 10:56:00,0 +5715,1966-10-11 00:36:00,0 +5530,1969-12-20 06:42:00,0 +4596,1968-08-27 11:02:00,0 +6927,1966-07-23 14:16:00,0 +5659,1966-02-17 05:55:00,0 +109,1968-07-10 06:03:00,0 +2653,1967-06-13 05:32:00,0 +2567,1965-10-16 09:42:00,0 +7671,1968-07-05 05:43:00,0 +4306,1968-04-05 04:27:00,0 +4588,1968-07-01 22:18:00,0 +3326,1965-01-27 03:24:00,0 +6945,1968-11-07 16:30:00,0 +1295,1969-04-16 11:55:00,0 +5550,1968-11-03 09:51:00,0 +3519,1966-01-26 13:29:00,0 +5965,1965-01-24 23:30:00,0 +8157,1968-09-02 14:40:00,0 +5703,1966-04-03 22:49:00,0 +1317,1969-02-23 17:01:00,0 +2501,1966-02-13 22:16:00,0 +4121,1969-07-16 15:48:00,0 +8437,1966-08-23 10:58:00,0 +5253,1967-04-22 13:38:00,0 +6574,1966-11-14 08:30:00,0 +8482,1969-12-25 13:53:00,0 +3693,1965-01-28 16:22:00,0 +2,1966-10-29 13:46:00,0 +7674,1967-05-07 20:29:00,0 +6021,1968-12-13 15:09:00,0 +339,1965-09-04 09:49:00,0 +2851,1967-07-08 17:25:00,0 +9912,1968-08-03 21:58:00,0 +1888,1965-07-28 07:58:00,0 +2082,1967-11-28 14:15:00,0 +2372,1967-02-20 23:15:00,0 +4620,1969-05-03 04:22:00,0 +3125,1969-09-26 00:17:00,0 +9160,1965-12-16 03:02:00,0 +1050,1968-01-17 10:01:00,0 +1164,1965-09-14 11:42:00,0 +9234,1965-07-30 02:33:00,0 +2116,1969-10-17 09:29:00,0 +5218,1966-07-20 17:16:00,0 +6364,1968-03-04 17:13:00,0 +5042,1967-05-13 18:31:00,0 +8311,1967-09-29 00:51:00,0 +3056,1965-05-02 11:38:00,0 +7841,1969-03-16 22:58:00,0 +8172,1968-09-20 06:00:00,0 +3450,1965-01-21 01:32:00,0 +6802,1966-05-21 17:48:00,0 +907,1965-05-28 09:36:00,0 +2937,1969-05-23 15:18:00,0 +7910,1965-06-11 00:02:00,0 +3836,1966-09-07 16:56:00,0 +5702,1967-05-19 02:14:00,0 +6247,1967-02-10 09:14:00,0 +1619,1966-02-05 08:12:00,0 +7720,1969-12-03 02:02:00,0 +2607,1968-08-06 01:43:00,0 +5843,1967-10-20 03:45:00,0 +1651,1966-08-04 21:56:00,0 +7048,1965-04-17 20:30:00,0 +5946,1967-07-20 21:58:00,0 +4624,1966-05-06 20:32:00,0 +683,1967-05-10 19:15:00,0 +9446,1969-01-13 09:48:00,0 +2381,1965-05-24 22:27:00,0 +3974,1965-09-20 09:33:00,0 +4802,1966-09-16 02:17:00,0 +2944,1967-12-26 13:22:00,0 +3169,1968-12-02 12:25:00,0 +1554,1965-07-04 02:20:00,0 +7111,1965-10-01 16:36:00,0 +541,1965-02-10 06:35:00,0 +8237,1969-08-21 08:13:00,0 +3206,1969-11-12 09:10:00,0 +4519,1968-04-04 18:35:00,0 +6039,1966-12-13 15:12:00,0 +7009,1965-04-12 03:01:00,0 +1822,1966-01-04 04:33:00,0 +9691,1965-07-08 02:43:00,0 +1233,1968-03-19 14:00:00,0 +4117,1969-06-11 06:34:00,0 +8602,1968-12-15 17:28:00,0 +6437,1969-07-15 20:47:00,0 +9576,1965-01-14 22:32:00,0 +9646,1966-08-26 22:55:00,0 +59,1965-06-03 11:26:00,0 +3782,1966-11-15 08:16:00,0 +6055,1969-10-20 17:46:00,0 +5,1968-10-28 11:51:00,0 +6139,1965-04-08 16:51:00,0 +2074,1966-10-01 02:30:00,0 +1230,1967-01-02 05:49:00,0 +5785,1969-12-28 06:18:00,0 +1147,1966-10-05 00:29:00,0 +1998,1967-05-26 04:24:00,0 +1932,1966-11-23 19:03:00,0 +6884,1969-12-20 07:22:00,0 +8252,1966-03-11 23:05:00,0 +6251,1965-05-13 23:04:00,0 +716,1967-06-16 05:29:00,0 +1461,1965-11-19 10:43:00,0 +2431,1969-06-26 14:35:00,0 +9940,1965-12-02 07:35:00,0 +7132,1968-07-29 20:01:00,0 +4159,1968-08-07 03:01:00,0 +2194,1967-02-11 06:35:00,0 +2654,1965-01-28 07:19:00,0 +989,1968-04-09 14:00:00,0 +6823,1967-02-09 10:57:00,0 +6868,1966-03-02 00:59:00,0 +1408,1965-12-15 06:19:00,0 +4677,1968-01-31 20:12:00,0 +2023,1966-04-01 17:59:00,0 +6417,1968-12-13 04:23:00,0 +7581,1967-03-03 12:55:00,0 +6719,1967-08-21 02:49:00,0 +4501,1967-08-12 04:16:00,0 +506,1967-12-19 09:42:00,0 +3379,1967-04-19 23:52:00,0 +5914,1969-11-13 13:36:00,0 +391,1969-12-31 13:19:00,0 +9453,1966-02-20 01:52:00,0 +5636,1966-06-17 19:39:00,0 +7790,1969-08-24 04:24:00,0 +7269,1965-08-02 16:23:00,0 +9418,1969-02-12 13:37:00,0 +5732,1969-07-05 10:47:00,0 +3392,1968-02-01 01:54:00,0 +7643,1966-10-24 21:33:00,0 +5749,1967-02-09 01:45:00,0 +1217,1965-06-10 10:00:00,0 +8373,1965-03-10 05:01:00,0 +6019,1967-10-30 19:13:00,0 +1060,1966-01-30 14:19:00,0 +5243,1967-01-05 06:48:00,0 +6627,1967-08-07 01:40:00,0 +5292,1966-09-22 20:15:00,0 +6484,1966-05-09 23:50:00,0 +9359,1968-12-16 08:10:00,0 +851,1966-09-06 02:25:00,0 +9052,1969-08-23 18:51:00,0 +627,1968-10-04 04:30:00,0 +95,1965-10-18 01:27:00,0 +1632,1966-11-16 09:33:00,0 +5352,1969-08-05 18:12:00,0 +354,1966-04-06 02:31:00,0 +2925,1966-08-12 03:33:00,0 +4064,1966-05-13 00:46:00,0 +6775,1965-02-09 20:03:00,0 +5360,1965-06-27 04:09:00,0 +7527,1967-08-10 19:45:00,0 +4902,1967-11-12 19:54:00,0 +3863,1966-08-12 08:15:00,0 +6797,1968-05-15 08:47:00,0 +8416,1965-08-06 18:11:00,0 +9133,1968-05-28 10:01:00,0 +3611,1966-06-21 16:23:00,0 +1036,1965-11-05 15:27:00,0 +3539,1969-11-02 15:10:00,0 +4745,1967-09-16 00:51:00,0 +4363,1968-03-21 07:43:00,0 +2197,1969-06-30 23:30:00,0 +9090,1965-10-03 03:23:00,0 +8044,1969-08-02 01:09:00,0 +3087,1965-02-06 12:42:00,0 +2135,1969-08-05 23:47:00,0 +9882,1969-03-17 01:10:00,0 +9488,1967-03-28 10:33:00,0 +9501,1968-09-23 13:03:00,0 +8081,1968-05-04 13:15:00,0 +2858,1967-08-27 17:21:00,0 +3625,1965-06-19 23:10:00,0 +8449,1968-07-28 22:37:00,0 +9396,1965-05-03 18:43:00,0 +3029,1966-12-01 14:40:00,0 +3900,1968-10-04 19:51:00,0 +9550,1965-12-11 05:27:00,0 +3348,1969-10-20 22:52:00,0 +6919,1967-12-26 15:11:00,0 +1894,1968-07-19 00:57:00,0 +1735,1969-02-10 18:18:00,0 +5023,1967-06-26 09:12:00,0 +8769,1966-03-08 23:53:00,0 +2896,1966-05-26 19:22:00,0 +7309,1966-07-23 17:42:00,0 +4077,1969-06-10 03:42:00,0 +3743,1968-02-18 00:30:00,0 +665,1968-12-18 08:16:00,0 +2974,1965-08-27 22:27:00,0 +5294,1967-03-12 12:49:00,0 +9757,1966-07-18 22:23:00,0 +3212,1965-02-17 22:24:00,0 +1109,1969-11-09 14:26:00,0 +282,1968-10-13 04:19:00,0 +3505,1968-06-12 20:23:00,0 +3219,1968-03-15 12:23:00,0 +2437,1966-06-05 11:33:00,0 +8602,1967-03-28 13:14:00,0 +6471,1966-06-29 11:48:00,0 +5339,1965-07-18 07:13:00,0 +6241,1965-01-15 20:56:00,0 +7704,1969-01-08 18:07:00,0 +3074,1968-09-08 22:06:00,0 +4624,1965-08-20 21:16:00,0 +4267,1969-03-07 06:28:00,0 +379,1968-08-11 01:35:00,0 +85,1967-09-08 19:33:00,0 +3288,1969-06-27 11:29:00,0 +2507,1969-12-24 18:22:00,0 +1836,1968-03-21 18:31:00,0 +2322,1965-10-28 04:49:00,0 +5849,1967-10-13 14:25:00,0 +6892,1967-02-26 02:46:00,0 +6734,1967-05-31 02:50:00,0 +2778,1968-04-20 15:42:00,0 +1990,1965-04-08 23:00:00,0 +692,1966-01-29 04:10:00,0 +9083,1967-04-25 00:10:00,0 +5273,1967-07-20 09:33:00,0 +5425,1968-01-13 03:04:00,0 +2680,1965-09-07 05:34:00,0 +4320,1966-09-23 07:32:00,0 +1525,1969-06-15 07:34:00,0 +2829,1968-11-30 13:12:00,0 +8473,1966-09-20 19:50:00,0 +203,1967-03-03 16:26:00,0 +4331,1967-07-21 11:07:00,0 +7043,1965-01-11 19:06:00,0 +1024,1966-05-14 05:49:00,0 +5055,1967-04-17 00:44:00,0 +3377,1968-03-01 09:15:00,0 +9512,1966-08-12 23:26:00,0 +42,1969-05-05 21:51:00,0 +6609,1969-01-13 16:31:00,0 +9748,1966-10-23 12:21:00,0 +942,1969-06-19 19:40:00,0 +3826,1969-10-04 23:19:00,0 +4987,1967-12-10 20:39:00,0 +2614,1968-11-20 21:20:00,0 +7044,1969-07-23 14:40:00,0 +3808,1969-12-25 01:13:00,0 +4907,1969-08-09 17:35:00,0 +8447,1967-03-12 21:34:00,0 +7669,1965-11-14 00:39:00,0 +7624,1968-03-28 23:58:00,0 +5955,1968-07-12 18:03:00,0 +1716,1966-04-03 03:22:00,0 +4158,1969-05-21 18:28:00,0 +1717,1966-05-17 15:36:00,0 +2700,1965-02-26 21:40:00,0 +9835,1966-02-01 08:07:00,0 +3621,1967-06-17 11:15:00,0 +2206,1967-08-24 23:08:00,0 +6069,1969-10-31 21:08:00,0 +5622,1969-04-02 23:42:00,0 +6533,1968-04-26 18:02:00,0 +7840,1965-08-03 07:00:00,0 +3012,1965-08-01 02:00:00,0 +119,1969-03-31 14:50:00,0 +3294,1968-03-08 21:08:00,0 +5336,1967-02-13 04:41:00,0 +9422,1965-12-25 11:28:00,0 +7781,1966-12-28 09:22:00,0 +3998,1969-08-08 22:21:00,0 +3424,1966-01-27 06:32:00,0 +8916,1966-08-17 13:21:00,0 +2631,1967-02-10 08:58:00,0 +1285,1966-01-05 03:05:00,0 +7242,1969-10-13 19:43:00,0 +6302,1967-11-12 22:44:00,0 +2658,1965-08-27 00:31:00,0 +4642,1965-09-19 22:51:00,0 +3381,1968-03-07 18:16:00,0 +1812,1969-03-05 22:34:00,0 +7992,1968-09-04 13:11:00,0 +5896,1965-01-29 22:16:00,0 +1705,1968-12-19 07:59:00,0 +3651,1966-12-20 12:45:00,0 +3637,1967-09-24 23:15:00,0 +5061,1966-08-15 18:07:00,0 +3430,1968-03-24 22:49:00,0 +1144,1968-10-31 12:59:00,0 +9303,1965-05-21 03:36:00,0 +9336,1966-02-16 11:59:00,0 +9617,1967-04-01 03:30:00,0 +3110,1969-02-08 01:08:00,0 +4218,1969-09-29 01:33:00,0 +2856,1968-03-13 18:37:00,0 +7550,1968-02-10 02:35:00,0 +2868,1968-11-28 15:25:00,0 +6000,1966-03-19 21:08:00,0 +5370,1968-04-19 01:18:00,0 +4617,1969-11-08 08:58:00,0 +3916,1968-02-18 15:14:00,0 +2264,1965-10-16 14:20:00,0 +2983,1966-10-10 16:50:00,0 +6665,1966-01-09 21:28:00,0 +2755,1968-05-15 05:14:00,0 +6671,1966-05-29 18:24:00,0 +8475,1968-02-18 22:06:00,0 +2838,1969-12-11 02:19:00,0 +1180,1968-12-28 09:36:00,0 +2008,1968-09-18 09:28:00,0 +8362,1968-11-22 14:26:00,0 +900,1965-05-13 23:05:00,0 +693,1966-06-03 02:59:00,0 +8637,1968-05-08 11:55:00,0 +4598,1966-03-20 12:12:00,0 +1105,1968-12-31 04:50:00,0 +2012,1969-09-13 03:33:00,0 +7710,1969-08-23 22:19:00,0 +2108,1969-08-08 14:57:00,0 +8300,1967-12-17 12:52:00,0 +9595,1967-07-08 20:55:00,0 +4017,1969-02-24 11:48:00,0 +2357,1969-04-19 00:48:00,0 +3733,1966-07-30 04:17:00,0 +793,1968-05-09 13:14:00,0 +8549,1965-10-12 14:06:00,0 +2656,1967-07-16 08:33:00,0 +1321,1967-11-04 23:11:00,0 +6788,1967-09-28 07:56:00,0 +7450,1966-08-17 11:43:00,0 +9025,1968-05-17 07:27:00,0 +8654,1965-05-21 19:03:00,0 +5047,1965-02-04 11:39:00,0 +7312,1969-05-29 20:47:00,0 +1692,1967-12-17 18:02:00,0 +9244,1969-02-20 15:07:00,0 +1451,1966-10-11 04:41:00,0 +1006,1968-09-03 16:18:00,0 +1906,1966-12-11 18:38:00,0 +4436,1965-05-12 08:07:00,0 +5657,1966-09-11 13:36:00,0 +3706,1968-11-16 11:53:00,0 +2236,1966-01-09 04:18:00,0 +2317,1968-10-14 13:25:00,0 +9113,1969-01-07 03:03:00,0 +4565,1968-12-27 22:58:00,0 +7451,1967-05-25 17:22:00,0 +3057,1968-08-06 07:18:00,0 +4776,1968-10-13 11:43:00,0 +2020,1967-12-17 08:56:00,0 +6282,1968-06-01 08:10:00,0 +2006,1967-08-21 16:26:00,0 +5563,1968-07-01 02:17:00,0 +6639,1967-10-14 11:10:00,0 +9295,1965-12-20 06:59:00,0 +7906,1966-02-13 22:38:00,0 +8401,1965-08-28 01:19:00,0 +8566,1967-11-18 00:54:00,0 +8587,1965-05-15 11:55:00,0 +3981,1966-03-13 21:28:00,0 +3035,1966-02-20 05:34:00,0 +4434,1969-02-05 08:01:00,0 +7270,1965-03-25 06:03:00,0 +6189,1968-02-19 09:18:00,0 +6617,1966-09-15 05:25:00,0 +4101,1968-06-23 03:03:00,0 +7862,1966-10-24 07:45:00,0 +740,1966-11-10 04:57:00,0 +5303,1969-02-17 00:15:00,0 +8009,1968-12-02 09:16:00,0 +79,1969-12-26 12:16:00,0 +2584,1966-11-15 17:20:00,0 +297,1966-08-19 04:15:00,0 +8312,1966-01-01 16:34:00,0 +6019,1966-01-23 16:33:00,0 +9780,1969-12-07 21:40:00,0 +228,1967-06-27 01:48:00,0 +8534,1968-09-18 04:32:00,0 +593,1967-09-10 10:32:00,0 +5251,1966-08-24 15:11:00,0 +8070,1969-01-25 21:13:00,0 +7891,1967-09-02 07:28:00,0 +7869,1965-08-03 11:23:00,0 +7770,1969-05-12 05:52:00,0 +8288,1968-05-04 23:40:00,0 +6193,1965-07-15 06:29:00,0 +8059,1968-07-28 13:09:00,0 +8923,1965-12-12 03:01:00,0 +1728,1968-06-23 08:06:00,0 +7556,1967-08-26 22:08:00,0 +461,1965-06-13 18:23:00,0 +7464,1966-07-22 05:49:00,0 +3079,1969-03-05 08:06:00,0 +8763,1965-12-25 22:36:00,0 +5694,1965-10-26 15:44:00,0 +5877,1968-10-18 00:26:00,0 +3901,1965-05-21 17:53:00,0 +9784,1965-03-13 18:02:00,0 +3410,1965-04-13 13:51:00,0 +8867,1969-08-03 22:07:00,0 +5940,1968-05-13 13:12:00,0 +9221,1965-06-23 23:14:00,0 +2001,1969-08-18 11:19:00,0 +5143,1967-11-18 16:45:00,0 +7161,1969-11-09 00:17:00,0 +2672,1967-06-03 21:48:00,0 +3080,1966-06-16 23:39:00,0 +3955,1966-09-06 04:48:00,0 +2645,1966-04-20 21:59:00,0 +416,1968-05-23 23:49:00,0 +913,1965-06-16 07:57:00,0 +3146,1969-05-08 21:26:00,0 +1635,1966-03-02 04:44:00,0 +3315,1966-08-24 18:04:00,0 +8678,1967-07-10 09:53:00,0 +7642,1965-10-03 20:21:00,0 +2144,1966-06-22 18:30:00,0 +4014,1965-06-08 07:18:00,0 +1178,1965-08-03 07:31:00,0 +9161,1965-05-22 10:36:00,0 +6363,1968-05-23 23:37:00,0 +5986,1966-03-17 09:33:00,0 +9870,1967-08-14 09:31:00,0 +5812,1966-04-28 19:12:00,0 +6433,1967-02-04 10:15:00,0 +5175,1967-05-20 16:30:00,0 +7557,1967-07-13 04:24:00,0 +8466,1968-03-08 13:09:00,0 +274,1967-05-15 15:55:00,0 +7359,1966-08-27 19:43:00,0 +6876,1968-12-09 11:49:00,0 +781,1967-12-31 16:41:00,0 +7045,1968-02-05 14:38:00,0 +3004,1965-02-14 03:30:00,0 +8809,1967-05-30 09:20:00,0 +1542,1966-05-30 07:40:00,0 +6132,1965-02-24 03:59:00,0 +84,1969-04-22 20:50:00,0 +6225,1969-03-04 03:53:00,0 +8508,1965-07-24 04:00:00,0 +5903,1966-02-03 02:18:00,0 +9340,1965-03-28 02:02:00,0 +8755,1968-03-23 11:28:00,0 +2527,1967-03-10 01:23:00,0 +6582,1966-01-25 13:37:00,0 +8177,1967-05-31 14:16:00,0 +6407,1968-01-24 18:01:00,0 +5527,1967-06-05 21:05:00,0 +9570,1969-01-04 12:30:00,0 +1049,1965-04-25 14:38:00,0 +6108,1965-07-20 19:55:00,0 +9874,1967-09-19 12:45:00,0 +2742,1966-05-21 23:18:00,0 +389,1969-05-19 14:36:00,0 +812,1969-11-30 22:18:00,0 +4637,1968-03-01 15:00:00,0 +9141,1965-12-11 01:38:00,0 +4133,1965-03-08 17:43:00,0 +9524,1966-01-17 03:28:00,0 +2508,1967-01-27 03:26:00,0 +126,1967-03-16 16:59:00,0 +8747,1969-01-30 16:33:00,0 +4659,1966-09-12 07:32:00,0 +762,1967-06-03 12:16:00,0 +9284,1966-10-03 08:39:00,0 +5441,1967-02-25 21:02:00,0 +9720,1965-04-08 16:15:00,0 +1915,1967-02-01 20:48:00,0 +5903,1965-11-24 09:24:00,0 +8822,1969-10-12 18:50:00,0 +5802,1968-07-18 22:38:00,0 +6311,1968-03-21 08:12:00,0 +170,1968-05-16 02:48:00,0 +6170,1967-03-23 01:39:00,0 +1789,1967-11-01 04:43:00,0 +2463,1966-06-01 13:13:00,0 +9933,1969-09-10 14:53:00,0 +4329,1965-02-01 11:45:00,0 +7262,1969-09-02 04:37:00,0 +9687,1967-09-02 12:46:00,0 +4576,1966-07-03 18:30:00,0 +7418,1967-11-03 16:23:00,0 +9054,1968-06-14 03:57:00,0 +329,1969-11-15 15:14:00,0 +7685,1966-11-27 12:31:00,0 +5441,1969-06-05 05:24:00,0 +3261,1965-02-11 00:52:00,0 +47,1968-10-25 23:10:00,0 +8062,1966-01-07 04:53:00,0 +9134,1967-09-20 15:29:00,0 +4796,1967-06-11 06:18:00,0 +170,1966-10-31 23:17:00,0 +5109,1967-09-13 13:43:00,0 +7523,1968-01-31 13:22:00,0 +8408,1965-12-08 05:53:00,0 +785,1965-09-07 03:34:00,0 +3725,1965-10-08 04:56:00,0 +5578,1969-08-28 10:41:00,0 +1009,1969-10-01 04:42:00,0 +8212,1965-01-31 11:18:00,0 +3855,1967-11-07 20:33:00,0 +6734,1969-02-14 01:15:00,0 +3970,1969-03-27 05:23:00,0 +5311,1967-03-04 21:17:00,0 +96,1968-06-08 17:36:00,0 +8604,1968-01-24 21:31:00,0 +7822,1969-01-27 04:30:00,0 +8708,1969-07-19 18:46:00,0 +6859,1968-08-05 20:56:00,0 +2400,1965-05-21 05:45:00,0 +7385,1967-06-16 08:11:00,0 +8520,1966-04-28 04:34:00,0 +2639,1965-01-04 20:24:00,0 +448,1968-07-30 15:44:00,0 +3701,1968-07-17 00:55:00,0 +9274,1967-11-20 07:15:00,0 +7640,1966-01-16 17:46:00,0 +2798,1968-03-10 19:57:00,0 +8171,1965-05-29 17:10:00,0 +1367,1965-02-19 19:34:00,0 +9274,1969-03-02 08:28:00,0 +6598,1968-09-27 18:07:00,0 +6110,1969-09-16 00:45:00,0 +4925,1968-09-08 23:09:00,0 +8504,1967-05-21 19:17:00,0 +6586,1967-09-29 02:34:00,0 +2306,1968-12-12 21:05:00,0 +8592,1968-01-24 22:18:00,0 +2524,1967-07-16 03:37:00,0 +4949,1968-10-30 11:59:00,0 +9610,1969-06-21 05:13:00,0 +5024,1968-02-27 15:57:00,0 +5223,1968-08-29 14:25:00,0 +9063,1966-04-20 05:11:00,0 +6874,1965-02-20 15:19:00,0 +898,1969-02-05 06:17:00,0 +1160,1969-10-06 13:17:00,0 +1907,1967-06-30 16:09:00,0 +7470,1968-05-20 06:03:00,0 +6856,1966-01-11 09:33:00,0 +8945,1969-03-05 23:14:00,0 +8336,1967-10-09 15:47:00,0 +875,1968-07-17 13:42:00,0 +7129,1968-12-12 23:27:00,0 +7904,1969-09-02 07:18:00,0 +3905,1967-09-10 23:14:00,0 +5494,1967-12-29 01:11:00,0 +9082,1967-12-21 21:02:00,0 +884,1965-06-24 08:15:00,0 +3382,1968-09-26 15:24:00,0 +726,1966-07-27 17:56:00,0 +3121,1965-09-25 10:29:00,0 +2252,1968-09-10 13:37:00,0 +2371,1966-07-29 14:03:00,0 +5589,1969-06-25 16:14:00,0 +1717,1965-08-21 08:19:00,0 +9087,1967-12-02 14:18:00,0 +9481,1968-06-10 15:32:00,0 +9121,1965-12-14 02:05:00,0 +354,1968-10-01 19:47:00,0 +1263,1968-08-26 09:42:00,0 +9629,1966-08-29 04:03:00,0 +4437,1967-06-22 04:34:00,0 +3180,1968-11-07 17:18:00,0 +5196,1966-05-18 00:31:00,0 +6189,1965-10-09 10:23:00,0 +7722,1969-08-17 21:30:00,0 +6386,1968-12-31 23:42:00,0 +7385,1968-11-07 15:48:00,0 +8913,1965-05-23 01:41:00,0 +4165,1965-01-10 15:24:00,0 +1676,1966-11-13 20:25:00,0 +6641,1968-12-18 10:33:00,0 +7276,1967-10-21 21:26:00,0 +7099,1968-08-10 12:03:00,0 +6812,1966-08-12 12:10:00,0 +1339,1965-08-31 01:51:00,0 +8483,1965-04-05 01:24:00,0 +8988,1966-01-10 14:17:00,0 +2639,1969-06-06 14:21:00,0 +8691,1969-05-20 08:17:00,0 +9483,1968-12-06 13:57:00,0 +1825,1967-07-22 06:28:00,0 +2308,1969-06-14 16:11:00,0 +1521,1969-08-31 08:07:00,0 +7964,1966-10-15 08:23:00,0 +962,1969-04-11 05:20:00,0 +8656,1966-08-25 19:58:00,0 +8077,1968-04-28 10:38:00,0 +2041,1967-03-06 06:37:00,0 +6458,1968-04-23 23:21:00,0 +6592,1965-07-31 14:20:00,0 +9106,1967-05-03 05:30:00,0 +7029,1969-02-01 00:35:00,0 +6521,1969-03-23 22:00:00,0 +5089,1966-01-18 06:02:00,0 +1316,1969-05-20 01:37:00,0 +2638,1967-05-22 21:11:00,0 +5381,1967-01-31 21:54:00,0 +8116,1969-03-06 13:55:00,0 +6715,1965-03-10 14:26:00,0 +2329,1966-02-05 20:32:00,0 +145,1966-10-30 09:33:00,0 +1939,1967-10-08 03:44:00,0 +1143,1967-12-11 17:24:00,0 +3763,1965-01-06 18:50:00,0 +7862,1968-02-03 20:47:00,0 +284,1968-10-27 19:03:00,0 +4554,1969-12-08 19:52:00,0 +326,1968-11-01 17:01:00,0 +7526,1965-07-17 16:40:00,0 +8199,1968-06-02 22:57:00,0 +535,1966-01-11 07:22:00,0 +3039,1966-10-14 07:20:00,0 +3213,1966-03-15 14:54:00,0 +9283,1968-12-20 08:02:00,0 +4376,1967-02-27 01:32:00,0 +9353,1965-07-07 17:58:00,0 +1779,1965-10-27 11:25:00,0 +2729,1965-09-13 08:26:00,0 +1970,1969-08-11 17:18:00,0 +1479,1966-06-26 16:24:00,0 +2590,1968-03-28 13:57:00,0 +2216,1968-11-17 20:34:00,0 +9158,1965-11-19 02:39:00,0 +3308,1968-04-19 04:21:00,0 +4192,1966-10-22 02:43:00,0 +8948,1969-11-08 18:24:00,0 +4411,1965-09-15 02:00:00,0 +3881,1966-06-10 16:11:00,0 +8303,1967-04-21 00:14:00,0 +5184,1966-01-04 01:28:00,0 +2624,1968-12-30 00:09:00,0 +6211,1968-02-10 16:53:00,0 +6181,1966-01-21 21:46:00,0 +9134,1968-01-03 22:58:00,0 +2905,1969-09-12 12:48:00,0 +73,1966-04-12 19:40:00,0 +4966,1966-05-21 12:27:00,0 +3841,1967-02-28 18:00:00,0 +7448,1968-07-12 17:08:00,0 +3237,1967-10-05 18:04:00,0 +3520,1965-10-04 09:43:00,0 +3227,1967-06-15 13:51:00,0 +8181,1969-12-18 16:00:00,0 +2435,1968-09-05 02:17:00,0 +9204,1966-10-18 01:46:00,0 +31,1969-11-01 18:24:00,0 +7674,1966-07-20 09:28:00,0 +6364,1966-07-24 13:18:00,0 +8337,1968-02-26 21:40:00,0 +8315,1968-05-30 22:44:00,0 +4949,1966-10-04 07:27:00,0 +6963,1966-10-22 18:57:00,0 +5085,1967-01-19 17:40:00,0 +2850,1968-08-15 00:56:00,0 +117,1967-10-22 01:16:00,0 +584,1968-06-26 12:29:00,0 +1394,1967-12-01 10:40:00,0 +3429,1968-10-30 09:38:00,0 +9524,1969-04-22 12:55:00,0 +3984,1966-06-02 04:32:00,0 +8118,1967-09-02 11:32:00,0 +8636,1965-01-11 02:28:00,0 +2917,1969-07-04 15:57:00,0 +4945,1966-06-13 12:56:00,0 +2214,1968-03-01 17:41:00,0 +6441,1965-06-02 01:27:00,0 +4982,1967-11-24 23:21:00,0 +5067,1965-11-26 14:36:00,0 +3282,1966-08-28 08:20:00,0 +859,1969-08-26 23:51:00,0 +562,1968-03-14 04:44:00,0 +6006,1967-07-27 10:15:00,0 +809,1969-10-20 18:41:00,0 +2688,1968-05-13 17:38:00,0 +7749,1966-05-28 06:01:00,0 +7270,1966-07-06 19:48:00,0 +1547,1965-06-19 20:35:00,0 +3453,1967-06-08 12:05:00,0 +6807,1968-08-22 18:50:00,0 +7832,1969-12-14 07:03:00,0 +345,1966-12-15 08:18:00,0 +2174,1965-10-02 15:31:00,0 +539,1968-03-30 08:06:00,0 +8994,1966-08-31 21:20:00,0 +1513,1965-07-21 02:06:00,0 +7086,1969-03-10 05:54:00,0 +8426,1966-03-25 11:44:00,0 +7571,1966-03-20 01:46:00,0 +1706,1967-04-27 08:14:00,0 +7919,1969-07-13 17:46:00,0 +7133,1968-06-10 08:26:00,0 +4223,1968-01-14 19:16:00,0 +2149,1967-06-05 13:18:00,0 +5864,1967-08-20 22:16:00,0 +9264,1966-11-04 10:20:00,0 +3642,1969-08-19 05:01:00,0 +4841,1967-02-09 07:31:00,0 +5319,1967-11-07 19:03:00,0 +4569,1969-12-01 19:26:00,0 +6021,1965-02-09 10:42:00,0 +7265,1965-02-12 13:15:00,0 +1010,1965-04-19 18:20:00,0 +8235,1968-07-09 01:47:00,0 +3226,1969-06-06 14:50:00,0 +227,1967-11-06 17:04:00,0 +9844,1965-10-31 08:47:00,0 +6559,1969-01-29 08:14:00,0 +8708,1966-09-04 09:16:00,0 +1186,1969-01-08 03:07:00,0 +6545,1968-05-09 07:56:00,0 +9333,1969-05-08 22:36:00,0 +8970,1965-03-16 10:14:00,0 +6325,1969-07-21 14:15:00,0 +8537,1969-09-26 00:07:00,0 +4343,1968-08-03 23:21:00,0 +1255,1967-07-24 03:47:00,0 +9192,1968-10-05 16:26:00,0 +8010,1969-10-24 09:33:00,0 +9394,1966-07-19 01:13:00,0 +7436,1969-08-27 14:52:00,0 +6379,1968-12-21 21:53:00,0 +7348,1965-12-06 12:39:00,0 +8502,1969-06-23 11:35:00,0 +8357,1967-06-10 18:39:00,0 +8961,1968-09-14 19:56:00,0 +8231,1967-09-03 13:24:00,0 +5519,1966-01-11 05:54:00,0 +6375,1965-04-30 19:17:00,0 +1577,1969-05-20 10:48:00,0 +868,1965-09-09 00:35:00,0 +2832,1969-04-15 16:06:00,0 +1282,1969-11-20 17:15:00,0 +3028,1969-01-06 03:08:00,0 +9329,1969-11-10 01:41:00,0 +8798,1967-05-11 14:39:00,0 +948,1965-11-09 00:35:00,0 +6500,1967-10-23 18:12:00,0 +4155,1967-06-17 19:35:00,0 +7349,1966-03-19 03:34:00,0 +114,1967-08-01 19:20:00,0 +2850,1969-09-02 10:07:00,0 +270,1965-04-06 08:41:00,0 +1367,1966-06-18 00:40:00,0 +8667,1968-05-18 16:41:00,0 +9453,1968-10-15 21:50:00,0 +4766,1966-04-13 23:05:00,0 +2008,1968-10-23 21:53:00,0 +2025,1968-05-15 08:22:00,0 +849,1967-05-02 10:14:00,0 +1948,1966-05-09 07:49:00,0 +9136,1967-06-22 04:49:00,0 +5784,1966-10-13 02:26:00,0 +9954,1969-06-28 21:06:00,0 +3420,1966-04-20 09:30:00,0 +3771,1965-11-30 11:26:00,0 +6888,1969-03-17 03:19:00,0 +7647,1968-10-07 03:31:00,0 +1394,1966-11-14 22:32:00,0 +9695,1968-04-25 00:19:00,0 +8806,1966-02-13 12:18:00,0 +4605,1967-03-10 23:37:00,0 +1050,1969-06-30 21:18:00,0 +1949,1968-11-07 03:02:00,0 +4678,1968-04-27 05:21:00,0 +2460,1969-06-30 00:21:00,0 +702,1966-03-28 19:43:00,0 +9387,1967-03-14 00:28:00,0 +7540,1965-06-15 13:27:00,0 +6757,1965-09-12 11:17:00,0 +7417,1967-03-10 03:28:00,0 +456,1966-10-03 03:46:00,0 +7345,1965-05-16 04:10:00,0 +3144,1968-08-31 03:38:00,0 +1402,1965-07-15 21:56:00,0 +817,1965-05-02 03:47:00,0 +7876,1966-11-30 14:33:00,0 +4970,1967-06-17 20:53:00,0 +7314,1968-06-19 04:16:00,0 +7372,1968-10-06 00:41:00,0 +6362,1968-09-23 00:36:00,0 +7655,1967-09-29 03:51:00,0 +4354,1965-10-22 16:19:00,0 +1919,1968-08-19 20:57:00,0 +3216,1968-12-03 04:01:00,0 +5852,1965-04-08 20:51:00,0 +1319,1967-10-14 20:00:00,0 +8612,1969-04-12 18:51:00,0 +6460,1966-06-28 21:40:00,0 +9947,1966-11-13 04:08:00,0 +4552,1966-07-20 05:08:00,0 +9941,1965-08-30 19:56:00,0 +8489,1966-08-30 08:09:00,0 +9833,1967-12-07 23:22:00,0 +8332,1968-06-07 08:23:00,0 +3806,1969-07-11 12:57:00,0 +9227,1968-06-19 14:06:00,0 +7144,1967-06-06 14:11:00,0 +6762,1966-12-15 01:35:00,0 +6441,1965-05-22 04:48:00,0 +7130,1965-06-20 22:04:00,0 +3412,1965-01-08 18:56:00,0 +202,1969-10-19 16:15:00,0 +3471,1968-04-23 10:33:00,0 +1019,1966-03-18 21:26:00,0 +1894,1967-02-28 06:39:00,0 +8636,1968-11-16 07:57:00,0 +6442,1968-05-10 01:20:00,0 +6620,1965-03-22 15:15:00,0 +9210,1965-12-21 04:03:00,0 +2958,1966-05-26 19:36:00,0 +3526,1969-12-20 12:44:00,0 +4898,1965-02-08 13:20:00,0 +7485,1966-09-19 00:39:00,0 +4928,1965-03-26 23:31:00,0 +1991,1969-12-04 02:33:00,0 +9155,1965-06-08 17:57:00,0 +7825,1965-04-06 22:56:00,0 +4720,1969-01-04 08:40:00,0 +8253,1969-11-02 11:10:00,0 +9689,1969-05-30 06:32:00,0 +2110,1966-11-14 07:41:00,0 +6992,1969-07-26 01:56:00,0 +2904,1967-07-27 01:59:00,0 +4089,1966-10-10 10:51:00,0 +3595,1965-06-02 23:37:00,0 +3637,1967-05-01 00:48:00,0 +8796,1966-04-30 04:51:00,0 +4250,1967-12-24 01:15:00,0 +1110,1967-05-29 20:00:00,0 +6478,1967-11-08 14:05:00,0 +1911,1969-12-20 15:36:00,0 +743,1969-08-29 10:17:00,0 +7419,1969-09-24 12:16:00,0 +1273,1966-03-11 03:49:00,0 +6708,1969-11-08 21:26:00,0 +231,1967-05-05 05:49:00,0 +5759,1966-02-16 17:14:00,0 +7915,1968-09-21 07:03:00,0 +2680,1968-01-09 09:29:00,0 +8742,1967-03-02 01:19:00,0 +9778,1966-03-17 06:54:00,0 +4115,1968-02-10 05:00:00,0 +9913,1968-02-09 18:38:00,0 +8627,1965-04-17 21:50:00,0 +134,1969-07-11 01:14:00,0 +4156,1965-01-12 03:25:00,0 +5014,1969-03-13 00:46:00,0 +36,1969-03-06 10:58:00,0 +9222,1967-12-06 20:03:00,0 +1583,1969-11-04 21:05:00,0 +4010,1968-03-17 03:22:00,0 +664,1967-12-08 13:00:00,0 +9661,1968-03-14 06:52:00,0 +4289,1967-02-04 23:00:00,0 +8936,1967-11-12 19:13:00,0 +4519,1965-04-08 12:20:00,0 +6796,1969-05-31 18:41:00,0 +4308,1966-07-01 21:54:00,0 +5140,1968-06-01 08:04:00,0 +1152,1966-03-06 16:23:00,0 +1189,1967-09-01 21:33:00,0 +1292,1965-01-31 18:34:00,0 +8059,1965-12-27 01:28:00,0 +3419,1967-06-29 23:50:00,0 +3797,1968-06-21 11:22:00,0 +5201,1969-12-27 07:44:00,0 +7236,1966-07-28 04:01:00,0 +8266,1966-06-18 01:58:00,0 +4382,1967-09-04 18:28:00,0 +5486,1968-12-03 17:26:00,0 +3245,1966-09-08 08:56:00,0 +24,1965-11-19 03:27:00,0 +6740,1968-09-29 11:39:00,0 +7288,1967-02-12 14:03:00,0 +3439,1966-12-21 12:17:00,0 +8203,1967-10-02 20:14:00,0 +2589,1969-08-19 11:24:00,0 +465,1968-06-13 08:06:00,0 +9090,1968-01-29 18:14:00,0 +8933,1969-03-24 01:58:00,0 +1543,1968-10-15 17:12:00,0 +7637,1967-11-14 14:27:00,0 +7443,1965-03-15 05:01:00,0 +2666,1966-10-09 08:43:00,0 +7518,1968-12-27 01:05:00,0 +8785,1968-05-23 15:47:00,0 +1389,1965-07-23 14:01:00,0 +7607,1968-10-19 23:26:00,0 +4592,1967-03-05 11:23:00,0 +8964,1969-07-09 13:59:00,0 +359,1968-07-27 17:29:00,0 +3940,1966-06-10 14:17:00,0 +9309,1965-10-16 17:52:00,0 +1489,1965-12-02 02:33:00,0 +6217,1968-06-14 23:18:00,0 +1327,1969-01-10 20:07:00,0 +5727,1966-08-02 18:25:00,0 +9170,1969-05-03 00:34:00,0 +6755,1968-02-25 18:51:00,0 +4779,1967-04-15 08:00:00,0 +3551,1966-11-13 22:49:00,0 +6220,1966-08-15 10:18:00,0 +6700,1967-07-15 04:44:00,0 +9395,1967-06-26 07:57:00,0 +2617,1969-11-21 14:53:00,0 +942,1965-09-12 02:42:00,0 +2596,1969-05-07 13:20:00,0 +2695,1968-02-11 00:55:00,0 +1114,1965-07-29 17:16:00,0 +8312,1969-07-13 23:25:00,0 +3702,1967-11-14 04:39:00,0 +666,1966-06-24 14:34:00,0 +9166,1967-08-05 00:35:00,0 +505,1966-07-15 22:00:00,0 +7576,1969-04-05 13:23:00,0 +7247,1965-12-21 19:54:00,0 +5737,1965-07-16 11:36:00,0 +7107,1966-03-21 19:38:00,0 +3001,1966-01-13 09:27:00,0 +6057,1967-06-18 13:21:00,0 +6787,1965-02-12 18:56:00,0 +9694,1967-11-24 22:41:00,0 +7480,1966-09-25 00:27:00,0 +2262,1966-03-14 23:19:00,0 +6578,1969-05-03 04:51:00,0 +7838,1969-11-18 03:46:00,0 +1849,1969-06-18 09:36:00,0 +2286,1966-01-05 07:24:00,0 +1611,1969-12-21 16:51:00,0 +1628,1965-06-26 13:33:00,0 +1137,1965-04-02 05:36:00,0 +5801,1967-07-21 06:53:00,0 +9876,1966-10-07 13:35:00,0 +9810,1968-10-27 01:37:00,0 +9499,1968-12-21 15:59:00,0 +523,1967-05-21 15:46:00,0 +9322,1966-05-07 09:57:00,0 +6638,1966-07-22 04:35:00,0 +4978,1968-04-12 03:25:00,0 +8518,1967-02-22 22:07:00,0 +8561,1965-05-16 18:55:00,0 +1869,1965-12-13 20:15:00,0 +2625,1965-01-15 14:29:00,0 +1218,1968-05-21 18:55:00,0 +7408,1966-03-19 14:26:00,0 +5374,1966-02-24 00:43:00,0 +4536,1968-10-05 15:45:00,0 +6523,1967-01-18 05:34:00,0 +2898,1969-12-12 20:55:00,0 +2220,1967-07-05 08:00:00,0 +5252,1969-08-09 04:56:00,0 +7635,1968-03-25 03:39:00,0 +6007,1967-04-09 09:32:00,0 +2511,1969-02-15 15:17:00,0 +3103,1969-10-08 22:15:00,0 +5684,1968-07-12 06:25:00,0 +2614,1967-05-09 13:47:00,0 +3096,1966-07-15 09:02:00,0 +5491,1966-05-02 08:47:00,0 +8945,1967-02-16 22:44:00,0 +5052,1965-04-23 03:10:00,0 +1062,1968-09-21 19:43:00,0 +3232,1967-08-21 06:25:00,0 +425,1968-02-12 06:54:00,0 +7122,1969-08-02 20:11:00,0 +9822,1965-04-21 18:38:00,0 +7124,1966-02-16 20:48:00,0 +7304,1969-07-21 23:50:00,0 +7992,1965-01-23 05:10:00,0 +6169,1969-12-30 14:41:00,0 +5329,1965-01-02 11:36:00,0 +6614,1967-06-12 14:28:00,0 +786,1969-03-30 13:18:00,0 +6466,1965-03-11 05:57:00,0 +5037,1967-09-27 13:06:00,0 +921,1967-04-12 04:07:00,0 +2637,1969-11-01 23:16:00,0 +5602,1968-01-09 02:57:00,0 +4628,1968-06-24 19:24:00,0 +6149,1969-12-26 06:11:00,0 +3726,1965-09-06 12:58:00,0 +2027,1969-10-13 01:19:00,0 +9520,1969-01-05 03:11:00,0 +6814,1969-06-03 03:35:00,0 +3536,1967-09-30 12:39:00,0 +2573,1965-03-07 19:22:00,0 +3799,1969-08-14 19:22:00,0 +6760,1968-01-01 10:15:00,0 +7826,1968-02-03 00:52:00,0 +4749,1969-10-15 10:36:00,0 +5416,1969-08-10 13:31:00,0 +5699,1968-12-25 13:45:00,0 +6033,1967-01-31 04:09:00,0 +8036,1969-10-05 11:54:00,0 +152,1969-12-10 11:14:00,0 +7346,1969-03-26 14:37:00,0 +3959,1966-03-11 06:16:00,0 +6802,1967-04-25 01:00:00,0 +5600,1965-11-13 01:12:00,0 +8372,1968-11-06 17:17:00,0 +9980,1968-02-22 23:01:00,0 +3610,1968-08-09 06:57:00,0 +5448,1969-08-11 15:35:00,0 +846,1965-06-29 14:26:00,0 +4369,1965-04-07 09:54:00,0 +3595,1967-09-26 20:10:00,0 +4066,1966-07-01 19:03:00,0 +5251,1968-10-30 08:55:00,0 +5392,1967-01-14 14:34:00,0 +4711,1966-01-29 23:20:00,0 +6315,1969-06-26 18:13:00,0 +805,1965-07-21 07:26:00,0 +4358,1967-05-26 17:53:00,0 +7732,1969-09-14 09:08:00,0 +8901,1966-10-21 05:24:00,0 +5412,1965-07-07 23:08:00,0 +1899,1968-10-11 04:40:00,0 +5612,1969-09-17 07:24:00,0 +3655,1966-10-10 16:30:00,0 +276,1967-07-11 03:12:00,0 +7464,1965-01-14 13:30:00,0 +9081,1969-06-16 04:30:00,0 +5257,1969-10-12 04:12:00,0 +6015,1968-12-17 13:09:00,0 +7394,1967-02-09 17:54:00,0 +4779,1968-10-20 05:33:00,0 +8346,1969-01-29 09:49:00,0 +6576,1968-01-13 21:51:00,0 +7313,1965-03-10 01:01:00,0 +7062,1967-04-13 18:46:00,0 +9674,1969-12-27 16:43:00,0 +2498,1969-03-03 19:35:00,0 +98,1966-06-28 11:38:00,0 +4399,1969-01-05 10:33:00,0 +8960,1969-02-17 11:03:00,0 +4587,1968-04-02 08:13:00,0 +4263,1966-05-06 04:06:00,0 +7290,1968-10-29 19:52:00,0 +55,1966-03-27 23:02:00,0 +7028,1968-12-18 04:18:00,0 +8385,1965-02-01 03:05:00,0 +6844,1968-03-24 18:46:00,0 +8578,1967-08-01 15:46:00,0 +6468,1967-01-06 16:50:00,0 +9006,1967-11-20 08:35:00,0 +740,1968-05-30 03:42:00,0 +5568,1968-05-25 05:46:00,0 +9066,1967-05-06 01:47:00,0 +2591,1968-06-20 19:59:00,0 +4035,1969-03-11 01:19:00,0 +1209,1965-03-28 19:37:00,0 +8803,1965-04-25 04:13:00,0 +9201,1968-08-17 10:15:00,0 +6889,1969-11-16 13:15:00,0 +5300,1967-02-05 07:56:00,0 +9425,1966-10-17 15:42:00,0 +3223,1968-10-29 08:43:00,0 +8383,1965-11-26 20:06:00,0 +5693,1967-03-22 18:02:00,0 +685,1967-04-17 06:58:00,0 +2751,1965-04-22 18:24:00,0 +4249,1968-10-02 17:47:00,0 +2792,1967-02-11 22:34:00,0 +6413,1968-06-26 08:12:00,0 +7570,1968-03-20 17:49:00,0 +4802,1966-06-07 18:22:00,0 +486,1968-07-21 22:00:00,0 +6766,1965-07-13 01:01:00,0 +7706,1967-12-17 19:06:00,0 +2053,1969-08-10 22:36:00,0 +5017,1966-06-09 17:57:00,0 +6283,1969-05-01 08:43:00,0 +1604,1965-02-12 22:09:00,0 +2623,1967-11-18 17:54:00,0 +3460,1966-12-01 20:16:00,0 +8419,1966-01-10 00:38:00,0 +2898,1969-01-31 02:24:00,0 +194,1967-11-13 22:33:00,0 +7898,1967-05-19 22:01:00,0 +4390,1967-06-27 21:14:00,0 +1797,1966-06-24 03:36:00,0 +734,1967-05-19 09:42:00,0 +3265,1966-06-08 15:08:00,0 +7927,1968-12-27 11:30:00,0 +3162,1965-11-01 02:13:00,0 +2779,1966-01-20 09:32:00,0 +4612,1965-07-16 14:24:00,0 +4779,1966-10-22 04:44:00,0 +2353,1966-01-07 08:52:00,0 +8205,1967-02-19 11:10:00,0 +8683,1965-09-27 05:25:00,0 +3093,1966-11-27 00:32:00,0 +1627,1966-04-20 01:25:00,0 +6427,1968-12-04 08:02:00,0 +7139,1965-06-10 15:49:00,0 +673,1965-08-25 18:06:00,0 +9681,1967-02-28 15:06:00,0 +4010,1968-07-08 23:00:00,0 +2832,1966-11-04 08:13:00,0 +8822,1969-12-31 00:48:00,0 +1926,1966-02-16 18:07:00,0 +1966,1966-04-10 13:54:00,0 +5520,1966-01-12 07:25:00,0 +611,1969-08-03 09:03:00,0 +4847,1966-02-02 12:33:00,0 +5251,1966-08-29 16:47:00,0 +3799,1968-04-21 04:26:00,0 +1022,1968-03-02 15:50:00,0 +4811,1969-03-07 00:35:00,0 +465,1968-05-19 01:49:00,0 +9728,1966-07-04 11:25:00,0 +4745,1965-01-06 21:43:00,0 +7535,1965-12-18 14:17:00,0 +17,1965-08-11 10:28:00,0 +3556,1967-04-15 12:38:00,0 +7352,1967-04-15 12:40:00,0 +1365,1969-12-12 19:08:00,0 +6557,1967-08-04 00:20:00,0 +7131,1967-07-04 07:19:00,0 +7788,1969-11-24 19:51:00,0 +1544,1968-10-01 07:57:00,0 +1101,1968-03-19 11:12:00,0 +3773,1967-11-01 11:03:00,0 +224,1965-03-22 01:24:00,0 +7706,1965-03-15 21:48:00,0 +1799,1968-05-18 13:23:00,0 +1636,1966-04-18 18:03:00,0 +1819,1969-12-16 23:05:00,0 +6544,1967-11-19 14:15:00,0 +7941,1967-03-17 11:04:00,0 +2909,1965-10-31 20:19:00,0 +6834,1969-10-29 09:55:00,0 +5026,1966-01-15 22:39:00,0 +7003,1968-08-31 21:38:00,0 +3017,1968-01-15 17:00:00,0 +8154,1968-01-30 07:40:00,0 +990,1967-11-20 03:27:00,0 +8644,1966-05-26 10:11:00,0 +3195,1966-04-29 04:41:00,0 +4025,1968-01-14 15:20:00,0 +4924,1967-02-01 07:46:00,0 +4848,1965-07-26 12:41:00,0 +6961,1966-11-16 00:43:00,0 +375,1965-12-28 05:32:00,0 +6037,1969-08-16 11:56:00,0 +9430,1967-08-16 19:50:00,0 +8618,1965-12-07 16:47:00,0 +6835,1966-08-13 02:39:00,0 +9238,1968-10-12 15:56:00,0 +8825,1968-05-30 09:04:00,0 +739,1965-01-06 23:06:00,0 +1732,1967-12-24 08:06:00,0 +240,1968-08-12 04:30:00,0 +4499,1969-07-23 18:20:00,0 +4888,1967-09-13 09:29:00,0 +3616,1968-05-15 00:02:00,0 +5856,1965-12-20 11:08:00,0 +9558,1965-03-30 02:43:00,0 +7066,1966-05-17 02:59:00,0 +536,1967-02-08 20:12:00,0 +3723,1967-12-11 08:32:00,0 +9991,1969-09-28 17:54:00,0 +7852,1966-11-14 14:09:00,0 +7436,1968-12-20 07:14:00,0 +4896,1968-07-03 08:57:00,0 +5714,1967-05-09 11:18:00,0 +2144,1968-12-27 12:01:00,0 +9514,1968-11-16 08:45:00,0 +1970,1965-02-07 22:04:00,0 +5149,1966-05-02 21:15:00,0 +3349,1966-11-13 07:10:00,0 +9850,1967-04-14 15:55:00,0 +9326,1967-04-06 13:11:00,0 +43,1967-08-29 02:15:00,0 +982,1967-07-08 11:19:00,0 +2138,1965-01-18 20:57:00,0 +4213,1968-05-06 00:43:00,0 +4824,1968-06-05 20:38:00,0 +2640,1966-01-19 21:43:00,0 +6601,1966-03-28 08:27:00,0 +9443,1967-12-23 18:53:00,0 +3032,1968-10-07 08:42:00,0 +202,1968-09-20 06:40:00,0 +7145,1965-03-06 20:35:00,0 +350,1966-01-20 06:24:00,0 +980,1966-03-05 04:13:00,0 +6720,1966-11-16 14:05:00,0 +2138,1969-07-06 08:24:00,0 +6322,1969-12-29 06:26:00,0 +9701,1965-12-06 23:09:00,0 +2773,1968-06-21 05:45:00,0 +6984,1968-11-19 09:27:00,0 +5944,1966-11-15 23:00:00,0 +1138,1967-09-18 04:57:00,0 +8086,1966-12-04 21:55:00,0 +2088,1968-05-31 08:28:00,0 +4248,1966-10-02 23:09:00,0 +5313,1967-06-02 21:14:00,0 +6416,1966-06-24 00:12:00,0 +5052,1967-02-18 02:16:00,0 +1050,1966-11-01 12:53:00,0 +8260,1967-04-12 10:14:00,0 +8254,1966-04-10 02:01:00,0 +1367,1965-09-24 11:04:00,0 +2096,1965-09-10 04:05:00,0 +4645,1966-07-24 10:45:00,0 +9468,1967-05-13 15:13:00,0 +2270,1966-12-27 11:18:00,0 +5533,1967-08-22 10:20:00,0 +3630,1966-09-25 17:40:00,0 +3490,1968-05-15 05:31:00,0 +9871,1966-05-23 00:53:00,0 +7710,1965-06-09 15:44:00,0 +3727,1967-11-11 11:08:00,0 +2192,1968-01-06 02:47:00,0 +5013,1967-12-29 11:36:00,0 +8873,1967-02-18 16:34:00,0 +1545,1969-10-26 10:25:00,0 +2631,1969-10-16 16:23:00,0 +7025,1967-07-15 17:10:00,0 +9790,1967-05-16 18:26:00,0 +1139,1967-03-09 10:38:00,0 +2211,1968-02-18 16:53:00,0 +4557,1965-04-02 07:04:00,0 +1543,1967-09-16 22:11:00,0 +3697,1969-09-01 09:48:00,0 +3381,1968-08-17 03:00:00,0 +1774,1968-08-25 22:09:00,0 +6071,1966-08-07 17:19:00,0 +2584,1965-03-23 23:39:00,0 +4423,1965-12-18 19:11:00,0 +7450,1969-11-25 21:26:00,0 +2945,1969-08-04 12:23:00,0 +630,1966-07-09 07:30:00,0 +4538,1969-01-25 23:36:00,0 +8901,1967-12-07 11:15:00,0 +7636,1965-10-02 08:25:00,0 +688,1969-07-02 10:17:00,0 +5490,1969-08-25 08:40:00,0 +5974,1968-02-15 03:46:00,0 +1319,1966-02-21 06:22:00,0 +5303,1966-06-01 03:47:00,0 +9774,1968-11-13 01:16:00,0 +8372,1967-02-08 04:17:00,0 +7797,1968-09-13 12:13:00,0 +9306,1967-08-14 08:23:00,0 +836,1969-12-11 03:56:00,0 +4251,1965-07-21 08:40:00,0 +5576,1966-02-23 00:35:00,0 +9781,1965-08-03 06:30:00,0 +7179,1965-07-18 22:51:00,0 +2434,1969-02-11 05:57:00,0 +6799,1969-08-27 07:31:00,0 +798,1966-10-31 06:32:00,0 +5619,1967-04-07 15:07:00,0 +845,1966-09-09 06:25:00,0 +449,1965-10-18 13:53:00,0 +5204,1967-05-27 00:50:00,0 +2659,1965-07-04 14:12:00,0 +5817,1967-05-20 12:20:00,0 +4538,1969-07-07 20:39:00,0 +8813,1965-09-07 18:56:00,0 +9986,1967-10-16 09:18:00,0 +5734,1969-06-26 23:30:00,0 +9965,1966-11-02 01:41:00,0 +8743,1969-06-26 20:52:00,0 +6015,1968-01-31 16:06:00,0 +1314,1969-12-29 16:27:00,0 +49,1965-10-09 03:25:00,0 +3842,1965-03-27 04:00:00,0 +6378,1969-11-09 22:40:00,0 +4153,1966-05-12 15:00:00,0 +2502,1969-01-08 13:21:00,0 +7765,1969-12-01 11:26:00,0 +570,1966-04-29 06:39:00,0 +9498,1969-07-26 21:19:00,0 +7113,1969-02-17 21:05:00,0 +49,1965-11-01 02:21:00,0 +9718,1965-04-16 17:54:00,0 +1990,1967-08-24 17:33:00,0 +1012,1965-04-23 06:47:00,0 +2849,1965-08-29 06:07:00,0 +7081,1966-07-23 09:34:00,0 +4102,1968-04-27 03:50:00,0 +2105,1969-09-21 06:29:00,0 +7506,1966-12-29 14:55:00,0 +6218,1967-09-24 07:46:00,0 +1732,1966-12-18 20:04:00,0 +3943,1965-02-06 18:39:00,0 +7763,1966-03-29 07:33:00,0 +9503,1969-03-23 14:35:00,0 +1296,1968-07-18 03:51:00,0 +9345,1966-02-15 05:46:00,0 +8778,1969-04-09 00:08:00,0 +5690,1969-12-04 06:00:00,0 +9695,1966-01-18 12:43:00,0 +9526,1966-10-01 19:52:00,0 +4568,1965-02-10 11:56:00,0 +199,1968-09-08 19:40:00,0 +7513,1969-12-17 14:58:00,0 +6955,1966-08-30 20:01:00,0 +7043,1965-03-19 17:12:00,0 +2619,1969-04-20 19:48:00,0 +9455,1966-06-25 12:44:00,0 +9836,1965-06-04 11:14:00,0 +2507,1968-06-26 13:36:00,0 +573,1966-07-26 16:56:00,0 +799,1969-01-14 13:26:00,0 +252,1968-12-19 13:04:00,0 +5573,1965-08-02 20:24:00,0 +2913,1969-06-03 23:05:00,0 +2404,1968-10-02 00:07:00,0 +7939,1967-05-27 09:20:00,0 +4374,1967-10-15 20:26:00,0 +5896,1966-12-11 13:16:00,0 +457,1969-04-03 06:27:00,0 +1894,1966-03-20 10:31:00,0 +8575,1967-02-28 12:54:00,0 +7719,1966-07-11 19:48:00,0 +8678,1966-12-27 21:19:00,0 +4791,1967-11-16 10:53:00,0 +1938,1969-04-25 16:53:00,0 +4426,1967-02-16 11:42:00,0 +3936,1965-06-16 02:08:00,0 +9939,1968-12-31 00:32:00,0 +6550,1965-03-16 01:12:00,0 +2720,1966-12-12 23:33:00,0 +8495,1969-07-15 11:27:00,0 +6040,1966-02-27 12:08:00,0 +6126,1966-03-06 04:33:00,0 +9240,1969-06-29 18:37:00,0 +6034,1965-04-15 14:25:00,0 +9348,1966-10-21 09:12:00,0 +4815,1966-05-07 17:19:00,0 +9671,1967-04-16 15:15:00,0 +6318,1966-05-12 01:19:00,0 +6688,1968-01-07 17:28:00,0 +8274,1965-02-16 14:36:00,0 +7908,1966-08-13 23:46:00,0 +3912,1969-09-08 12:21:00,0 +4133,1965-08-26 13:01:00,0 +9308,1969-11-01 10:00:00,0 +9044,1969-06-22 04:51:00,0 +6105,1966-03-06 16:47:00,0 +7223,1969-03-07 07:37:00,0 +4078,1969-06-30 01:59:00,0 +3895,1966-01-29 12:49:00,0 +905,1969-02-21 22:21:00,0 +9689,1965-11-27 01:21:00,0 +379,1967-02-13 13:50:00,0 +6580,1966-07-24 02:31:00,0 +1111,1968-12-13 23:15:00,0 +1546,1966-07-01 21:21:00,0 +4477,1969-04-20 18:31:00,0 +20,1968-06-12 11:14:00,0 +2697,1967-10-06 14:19:00,0 +8884,1969-09-04 10:40:00,0 +3219,1967-10-31 10:54:00,0 +299,1969-05-28 00:16:00,0 +7595,1966-12-23 08:05:00,0 +384,1965-01-28 03:02:00,0 +9754,1966-09-12 17:06:00,0 +2118,1965-11-18 13:00:00,0 +4254,1969-03-24 04:30:00,0 +5911,1965-03-21 12:05:00,0 +2385,1969-05-24 02:44:00,0 +2741,1967-10-23 01:40:00,0 +5710,1967-02-14 12:52:00,0 +2970,1968-07-28 18:01:00,0 +5987,1968-11-08 15:43:00,0 +4152,1966-12-25 07:12:00,0 +4611,1969-11-06 06:25:00,0 +744,1966-10-10 04:21:00,0 +2856,1967-11-18 03:28:00,0 +6691,1966-01-24 05:22:00,0 +5883,1966-05-23 21:23:00,0 +3421,1968-06-11 06:43:00,0 +514,1967-02-16 03:03:00,0 +8322,1967-06-15 18:32:00,0 +5335,1965-01-13 07:12:00,0 +6608,1969-12-01 17:46:00,0 +7531,1969-12-25 21:44:00,0 +7069,1969-11-22 13:44:00,0 +7826,1965-08-09 03:17:00,0 +7851,1969-11-22 21:20:00,0 +1508,1966-10-31 06:50:00,0 +6832,1969-09-02 04:22:00,0 +5123,1967-02-21 12:23:00,0 +6836,1967-09-20 00:06:00,0 +4471,1966-05-02 13:26:00,0 +9915,1967-11-06 02:57:00,0 +4612,1965-07-25 00:29:00,0 +352,1968-04-27 15:32:00,0 +7293,1969-06-05 11:56:00,0 +6338,1967-08-22 17:42:00,0 +5095,1966-03-11 09:09:00,0 +517,1967-01-28 12:05:00,0 +5344,1968-01-28 02:14:00,0 +5369,1967-09-19 10:30:00,0 +8612,1969-10-19 14:22:00,0 +7491,1965-10-16 14:58:00,0 +8417,1967-09-13 20:19:00,0 +4524,1968-04-24 21:25:00,0 +6906,1966-10-11 08:24:00,0 +7607,1966-10-17 06:16:00,0 +3359,1965-06-09 19:58:00,0 +7145,1966-01-11 22:37:00,0 +5038,1966-03-14 18:57:00,0 +4565,1966-07-03 02:58:00,0 +3571,1969-10-23 10:39:00,0 +4579,1969-08-03 23:18:00,0 +8100,1966-03-25 20:36:00,0 +5348,1968-04-08 21:08:00,0 +8077,1969-11-04 07:56:00,0 +1050,1969-02-14 02:30:00,0 +4703,1968-07-19 22:45:00,0 +1284,1966-07-26 08:02:00,0 +5031,1965-06-02 12:52:00,0 +4921,1966-04-02 05:27:00,0 +5400,1965-01-25 11:40:00,0 +6233,1968-03-10 22:35:00,0 +3244,1967-12-21 11:48:00,0 +6031,1967-01-05 11:57:00,0 +7866,1965-03-19 22:33:00,0 +4921,1969-01-11 10:18:00,0 +7450,1967-10-13 03:00:00,0 +5452,1965-10-14 16:46:00,0 +3689,1969-09-11 17:08:00,0 +9156,1965-08-17 07:40:00,0 +5149,1969-03-28 14:24:00,0 +141,1969-09-10 12:33:00,0 +7717,1969-03-15 20:13:00,0 +8292,1966-09-19 23:08:00,0 +2386,1968-03-04 08:53:00,0 +6742,1969-11-29 05:24:00,0 +8836,1967-08-31 22:03:00,0 +3374,1968-12-02 00:56:00,0 +8957,1965-11-09 20:26:00,0 +5790,1966-04-19 22:56:00,0 +4718,1968-09-02 08:06:00,0 +1212,1968-01-16 12:46:00,0 +7094,1966-10-26 14:54:00,0 +76,1965-09-24 02:39:00,0 +2762,1967-11-19 20:16:00,0 +5865,1967-07-30 22:09:00,0 +4815,1967-12-08 15:22:00,0 +9936,1965-01-06 02:57:00,0 +8790,1967-04-16 14:53:00,0 +8983,1969-04-17 02:03:00,0 +1857,1969-07-10 16:27:00,0 +8124,1966-05-12 10:18:00,0 +8761,1968-09-05 05:51:00,0 +3510,1969-04-11 03:50:00,0 +6380,1965-10-30 13:31:00,0 +3525,1967-08-21 09:04:00,0 +7938,1965-11-16 02:07:00,0 +6228,1966-09-08 12:49:00,0 +4781,1968-04-26 17:27:00,0 +2743,1968-10-25 21:43:00,0 +9624,1966-10-15 07:44:00,0 +7736,1966-07-01 11:00:00,0 +361,1968-06-15 23:48:00,0 +5443,1967-10-01 21:45:00,0 +8505,1965-03-21 03:21:00,0 +8481,1966-01-14 06:21:00,0 +6791,1965-07-14 05:20:00,0 +8728,1967-06-07 21:48:00,0 +1443,1968-03-26 09:12:00,0 +8162,1968-09-06 08:12:00,0 +1258,1969-11-19 23:46:00,0 +6182,1965-04-08 23:47:00,0 +808,1967-09-26 03:42:00,0 +1548,1969-11-27 22:25:00,0 +7662,1966-11-19 15:49:00,0 +8071,1966-10-17 20:10:00,0 +9334,1968-02-01 17:47:00,0 +1673,1965-06-15 00:56:00,0 +7838,1967-04-08 21:05:00,0 +9018,1965-03-07 07:46:00,0 +8125,1969-04-15 07:59:00,0 +5748,1968-01-09 06:13:00,0 +2727,1968-04-07 13:04:00,0 +3184,1969-03-15 04:10:00,0 +7501,1966-08-18 18:01:00,0 +4882,1966-07-09 04:01:00,0 +2909,1969-12-28 08:19:00,0 +5216,1969-07-11 19:50:00,0 +9193,1965-01-25 00:43:00,0 +421,1967-04-04 23:52:00,0 +8122,1965-12-11 09:59:00,0 +3777,1965-10-30 21:17:00,0 +7570,1968-12-08 07:04:00,0 +8570,1969-12-18 19:10:00,0 +6714,1967-11-10 12:00:00,0 +5301,1966-03-17 03:03:00,0 +1552,1968-05-21 08:18:00,0 +9916,1965-12-10 05:24:00,0 +6050,1968-08-11 02:56:00,0 +3503,1969-12-15 14:45:00,0 +803,1968-12-10 10:27:00,0 +9344,1968-03-24 16:51:00,0 +5890,1965-05-23 20:19:00,0 +7271,1966-11-29 04:47:00,0 +400,1966-06-18 16:05:00,0 +7723,1966-02-18 14:19:00,0 +4737,1969-04-02 22:59:00,0 +7245,1969-09-03 15:09:00,0 +4481,1969-08-13 16:32:00,0 +20,1967-10-08 17:21:00,0 +2622,1967-09-25 19:05:00,0 +5978,1969-03-27 14:30:00,0 +8406,1968-03-21 12:28:00,0 +7585,1969-02-21 22:50:00,0 +5944,1967-05-18 12:37:00,0 +3089,1967-11-19 20:00:00,0 +7762,1968-04-21 20:07:00,0 +3259,1965-07-23 21:47:00,0 +839,1967-10-27 00:12:00,0 +3733,1967-02-05 12:45:00,0 +587,1967-05-28 05:02:00,0 +343,1968-09-10 09:55:00,0 +5250,1969-01-15 00:10:00,0 +1108,1965-11-28 20:21:00,0 +3410,1968-10-01 13:00:00,0 +6456,1968-05-16 09:32:00,0 +3647,1966-03-19 12:02:00,0 +8528,1965-10-09 09:03:00,0 +9029,1968-12-03 22:11:00,0 +7166,1966-01-24 04:10:00,0 +7780,1968-01-26 19:57:00,0 +8922,1967-09-09 16:05:00,0 +4226,1967-09-20 15:24:00,0 +3744,1969-02-27 16:59:00,0 +2106,1965-01-05 17:53:00,0 +9481,1966-12-11 17:18:00,0 +3182,1965-09-16 10:06:00,0 +2269,1969-09-24 11:55:00,0 +1859,1965-06-19 10:54:00,0 +6274,1967-10-19 13:54:00,0 +1736,1967-07-14 23:22:00,0 +2789,1968-07-02 07:11:00,0 +2697,1965-11-12 23:50:00,0 +5999,1967-11-01 09:54:00,0 +3026,1969-09-19 15:29:00,0 +4105,1969-03-06 19:41:00,0 +9206,1966-08-09 21:18:00,0 +2199,1968-05-07 21:43:00,0 +9916,1966-04-26 05:49:00,0 +5705,1967-10-18 08:24:00,0 +3411,1967-11-09 21:34:00,0 +6023,1965-12-01 10:46:00,0 +146,1967-02-24 03:19:00,0 +92,1965-07-02 16:47:00,0 +6760,1969-10-17 21:39:00,0 +9702,1969-07-05 07:04:00,0 +1413,1965-03-29 15:27:00,0 +7522,1969-12-04 02:55:00,0 +2953,1965-07-28 10:56:00,0 +8048,1967-12-08 15:50:00,0 +4712,1966-08-01 00:04:00,0 +5451,1969-06-11 10:41:00,0 +3615,1967-01-01 07:14:00,0 +4862,1969-09-26 23:52:00,0 +492,1968-03-18 10:34:00,0 +441,1967-11-08 14:38:00,0 +4979,1968-08-20 23:05:00,0 +1461,1965-05-25 00:40:00,0 +1684,1966-08-03 02:34:00,0 +1903,1968-11-26 18:53:00,0 +4676,1968-08-13 00:22:00,0 +5461,1969-06-20 22:14:00,0 +9840,1966-03-26 01:00:00,0 +7284,1967-07-13 12:23:00,0 +7158,1965-08-12 21:50:00,0 +6019,1969-08-26 05:36:00,0 +3300,1966-05-14 09:12:00,0 +4264,1966-05-05 16:22:00,0 +6510,1966-09-20 09:13:00,0 +236,1965-05-23 20:21:00,0 +5419,1965-03-09 07:53:00,0 +4147,1966-12-15 09:55:00,0 +4239,1969-01-01 02:27:00,0 +2021,1966-09-22 10:29:00,0 +52,1967-08-25 08:42:00,0 +5426,1969-07-30 12:46:00,0 +3820,1966-05-05 15:41:00,0 +5092,1967-04-30 15:30:00,0 +3306,1967-11-27 08:26:00,0 +1121,1966-10-08 21:23:00,0 +5394,1965-12-21 12:47:00,0 +34,1965-10-11 02:24:00,0 +3190,1966-12-15 11:29:00,0 +693,1968-06-18 08:44:00,0 +4080,1966-05-29 06:14:00,0 +1765,1969-06-03 08:12:00,0 +6477,1965-03-02 16:45:00,0 +8328,1965-05-10 20:19:00,0 +8785,1967-02-01 05:13:00,0 +96,1968-12-15 14:01:00,0 +1216,1968-01-17 04:03:00,0 +5598,1968-10-15 08:10:00,0 +7922,1966-09-29 21:49:00,0 +8404,1968-01-20 18:37:00,0 +2646,1966-10-03 10:52:00,0 +6567,1969-11-01 06:56:00,0 +5350,1969-03-02 16:47:00,0 +6942,1969-04-14 20:08:00,0 +2314,1969-05-03 16:38:00,0 +6724,1968-03-05 23:52:00,0 +6834,1965-06-19 04:32:00,0 +7738,1967-11-10 01:56:00,0 +433,1967-01-27 17:14:00,0 +3447,1966-12-30 15:22:00,0 +8749,1969-12-05 20:46:00,0 +4814,1967-02-17 19:31:00,0 +3241,1966-07-25 09:18:00,0 +5710,1969-07-07 01:33:00,0 +2481,1965-01-10 01:58:00,0 +6277,1968-10-13 09:04:00,0 +481,1966-04-22 10:11:00,0 +9838,1967-10-28 07:34:00,0 +6424,1968-07-11 07:46:00,0 +1696,1968-07-30 02:25:00,0 +6622,1966-08-13 14:16:00,0 +3442,1969-06-12 17:53:00,0 +6884,1968-09-11 21:37:00,0 +233,1968-03-29 04:33:00,0 +541,1966-07-28 09:18:00,0 +8525,1965-05-21 11:48:00,0 +3607,1967-11-08 23:05:00,0 +7273,1965-03-05 15:27:00,0 +3349,1969-05-11 04:39:00,0 +9605,1968-03-11 06:24:00,0 +8585,1969-01-10 06:33:00,0 +8171,1967-04-21 01:34:00,0 +5239,1966-10-18 05:55:00,0 +2223,1966-02-18 07:34:00,0 +5241,1967-01-31 21:14:00,0 +7568,1966-03-26 01:15:00,0 +9414,1969-05-02 19:00:00,0 +5031,1965-05-21 19:46:00,0 +9929,1968-12-10 14:21:00,0 +1989,1965-12-04 18:29:00,0 +8259,1966-09-04 15:17:00,0 +1347,1968-08-07 17:42:00,0 +3926,1969-12-21 11:42:00,0 +6708,1965-11-21 10:44:00,0 +5638,1966-08-31 10:00:00,0 +1102,1965-05-14 15:22:00,0 +1296,1967-12-06 15:45:00,0 +118,1968-06-14 23:20:00,0 +5743,1967-04-27 07:52:00,0 +4554,1969-02-24 23:26:00,0 +3996,1966-11-07 23:05:00,0 +3792,1967-10-19 21:43:00,0 +4952,1965-09-14 12:16:00,0 +7145,1965-03-10 10:28:00,0 +3738,1969-09-25 11:25:00,0 +7377,1967-12-03 15:51:00,0 +8945,1969-12-08 09:38:00,0 +1081,1968-11-26 16:42:00,0 +9360,1969-02-16 07:29:00,0 +5134,1965-03-30 06:36:00,0 +2694,1965-05-10 13:40:00,0 +3655,1966-11-07 23:04:00,0 +6437,1965-04-04 21:10:00,0 +7666,1966-10-02 08:23:00,0 +2463,1967-01-20 18:04:00,0 +4682,1968-03-04 10:24:00,0 +5306,1968-04-16 01:57:00,0 +5775,1965-07-15 16:04:00,0 +3477,1968-05-27 20:38:00,0 +6742,1968-07-02 23:00:00,0 +7519,1965-06-19 03:44:00,0 +688,1967-01-16 03:08:00,0 +1472,1967-03-16 06:03:00,0 +7635,1965-02-02 22:57:00,0 +3448,1969-04-29 20:46:00,0 +2397,1966-03-21 20:54:00,0 +2935,1968-05-15 13:55:00,0 +5964,1969-12-16 15:54:00,0 +7724,1966-09-11 19:31:00,0 +9817,1968-04-02 20:34:00,0 +6900,1968-06-25 14:22:00,0 +3018,1967-04-30 10:17:00,0 +8591,1969-09-25 13:51:00,0 +7983,1967-08-03 06:39:00,0 +1097,1966-09-10 02:22:00,0 +8097,1967-12-18 05:56:00,0 +1148,1966-09-17 00:58:00,0 +7465,1968-10-18 21:26:00,0 +456,1966-03-10 23:36:00,0 +9528,1967-01-15 13:47:00,0 +152,1966-06-18 23:40:00,0 +9589,1968-10-13 10:46:00,0 +8823,1966-06-12 15:51:00,0 +8199,1966-09-19 16:52:00,0 +9344,1967-08-02 17:47:00,0 +7700,1968-05-26 18:48:00,0 +1275,1966-09-22 04:05:00,0 +1015,1967-05-12 22:01:00,0 +9435,1968-10-17 13:28:00,0 +6508,1969-10-22 16:02:00,0 +302,1968-11-13 22:48:00,0 +525,1969-06-22 14:32:00,0 +3281,1965-08-13 18:31:00,0 +409,1965-01-06 03:29:00,0 +1935,1969-10-03 10:40:00,0 +9158,1965-02-22 11:09:00,0 +3578,1966-01-28 16:22:00,0 +450,1969-10-28 22:26:00,0 +6428,1965-02-12 12:52:00,0 +3044,1967-01-03 06:19:00,0 +5976,1969-09-20 22:48:00,0 +9023,1969-04-21 03:10:00,0 +2941,1967-02-18 08:41:00,0 +4306,1967-11-07 01:44:00,0 +6047,1965-06-06 08:02:00,0 +1384,1966-08-05 00:39:00,0 +7729,1967-03-28 11:37:00,0 +5027,1969-09-25 03:40:00,0 +535,1967-02-25 02:34:00,0 +1567,1965-04-28 00:08:00,0 +2029,1965-09-25 03:20:00,0 +145,1965-11-26 05:38:00,0 +9805,1966-02-16 00:22:00,0 +5723,1969-11-09 07:59:00,0 +4807,1965-12-24 17:53:00,0 +9970,1967-11-16 22:07:00,0 +5336,1966-10-25 06:58:00,0 +4287,1969-02-19 02:54:00,0 +7497,1966-04-10 08:06:00,0 +3499,1965-07-15 11:12:00,0 +8814,1965-04-09 13:41:00,0 +6260,1969-03-02 09:03:00,0 +241,1969-06-16 13:23:00,0 +4595,1969-07-21 17:39:00,0 +551,1969-06-01 06:27:00,0 +6778,1968-04-23 18:28:00,0 +9730,1969-03-15 22:16:00,0 +5889,1965-06-24 22:12:00,0 +7896,1967-10-21 22:11:00,0 +2558,1966-12-03 11:26:00,0 +6180,1967-04-24 21:03:00,0 +4974,1965-10-25 07:56:00,0 +7306,1966-07-08 23:52:00,0 +6591,1968-05-17 13:40:00,0 +217,1969-08-11 13:20:00,0 +1697,1967-09-16 20:54:00,0 +866,1969-11-09 18:03:00,0 +733,1966-04-05 16:22:00,0 +8105,1966-02-25 12:03:00,0 +9216,1969-12-28 04:01:00,0 +8095,1966-10-21 06:11:00,0 +62,1967-06-07 04:47:00,0 +7935,1967-09-01 05:11:00,0 +6856,1969-05-06 11:40:00,0 +7009,1967-01-05 03:04:00,0 +1099,1969-08-05 01:48:00,0 +1002,1968-01-10 19:23:00,0 +3355,1968-06-05 00:15:00,0 +2230,1967-03-08 09:46:00,0 +9470,1966-12-18 05:35:00,0 +834,1966-08-02 23:41:00,0 +5640,1969-11-26 02:59:00,0 +9112,1968-03-22 06:25:00,0 +2226,1965-03-26 08:02:00,0 +1660,1967-01-24 06:34:00,0 +2172,1968-12-25 13:03:00,0 +4273,1966-08-13 05:10:00,0 +3898,1969-10-16 15:06:00,0 +8343,1968-04-14 09:50:00,0 +9227,1968-01-21 06:32:00,0 +900,1968-04-20 22:54:00,0 +4124,1968-02-27 01:55:00,0 +8439,1968-06-14 01:02:00,0 +5837,1967-10-04 07:07:00,0 +8087,1968-11-20 10:37:00,0 +2620,1965-11-27 22:53:00,0 +6740,1968-03-04 11:28:00,0 +9875,1966-07-04 22:46:00,0 +7626,1966-08-30 11:51:00,0 +2236,1969-10-12 07:33:00,0 +8286,1969-06-11 07:57:00,0 +6704,1966-06-10 03:57:00,0 +7804,1967-08-18 04:32:00,0 +7604,1969-09-20 00:13:00,0 +9596,1968-07-07 15:50:00,0 +6984,1969-07-09 22:41:00,0 +4730,1969-05-13 22:14:00,0 +731,1969-06-13 04:56:00,0 +5353,1969-12-22 09:09:00,0 +3917,1965-10-24 04:22:00,0 +150,1966-08-06 12:11:00,0 +1137,1965-08-19 07:44:00,0 +3768,1965-02-02 11:17:00,0 +4910,1967-01-30 08:22:00,0 +7949,1967-08-27 18:24:00,0 +3283,1969-01-04 17:46:00,0 +9283,1966-02-06 06:43:00,0 +3595,1967-01-07 04:37:00,0 +3071,1969-05-13 12:58:00,0 +7271,1968-08-16 15:43:00,0 +1225,1969-03-29 12:19:00,0 +7850,1969-11-06 18:55:00,0 +7902,1968-08-08 19:52:00,0 +118,1966-09-24 06:10:00,0 +9720,1965-05-20 21:51:00,0 +6034,1967-01-16 07:23:00,0 +6459,1968-07-14 10:20:00,0 +9117,1965-05-26 19:23:00,0 +8901,1965-12-28 19:38:00,0 +5099,1967-08-02 12:14:00,0 +271,1969-07-17 13:34:00,0 +8201,1969-04-23 07:14:00,0 +7446,1966-06-23 20:56:00,0 +3999,1966-12-29 05:34:00,0 +9674,1966-06-03 09:48:00,0 +198,1966-10-30 07:37:00,0 +5432,1967-11-03 06:32:00,0 +4206,1966-05-31 01:58:00,0 +7118,1966-01-04 11:36:00,0 +6887,1965-07-07 15:51:00,0 +313,1965-11-20 16:36:00,0 +1749,1968-01-11 16:01:00,0 +8393,1968-06-18 21:56:00,0 +2127,1969-03-09 05:06:00,0 +4696,1965-06-05 16:57:00,0 +8979,1968-01-22 07:15:00,0 +8733,1966-05-12 06:26:00,0 +7693,1969-06-24 01:44:00,0 +6784,1969-02-15 18:34:00,0 +1328,1968-04-26 09:40:00,0 +6263,1968-05-13 04:13:00,0 +3588,1966-08-31 16:08:00,0 +597,1969-11-08 17:05:00,0 +900,1966-06-01 05:35:00,0 +3574,1967-03-04 03:29:00,0 +9802,1965-04-27 19:32:00,0 +4813,1969-09-28 15:38:00,0 +6772,1966-07-21 21:11:00,0 +4168,1969-10-28 13:42:00,0 +7063,1968-12-18 21:53:00,0 +9868,1965-08-24 02:13:00,0 +2366,1968-06-20 08:29:00,0 +8032,1966-04-11 20:53:00,0 +8001,1965-01-14 05:54:00,0 +6735,1968-01-17 23:58:00,0 +3310,1966-03-11 22:42:00,0 +3745,1969-05-20 14:55:00,0 +7015,1967-01-04 18:14:00,0 +5176,1969-07-15 10:20:00,0 +9071,1969-10-04 06:51:00,0 +9444,1969-04-05 14:50:00,0 +8606,1966-03-31 15:14:00,0 +360,1965-11-14 20:27:00,0 +8126,1966-08-17 16:01:00,0 +7609,1965-11-21 22:02:00,0 +731,1969-05-08 13:24:00,0 +4792,1968-03-20 02:26:00,0 +3609,1968-06-03 17:14:00,0 +2026,1967-08-18 07:42:00,0 +659,1969-12-26 19:50:00,0 +7652,1969-05-05 19:06:00,0 +2069,1968-10-11 21:36:00,0 +6655,1965-10-25 17:18:00,0 +9722,1967-04-22 13:28:00,0 +9792,1967-01-10 21:33:00,0 +3772,1965-08-06 00:54:00,0 +5103,1969-07-27 14:31:00,0 +2717,1965-03-04 03:09:00,0 +8712,1968-02-03 21:39:00,0 +5399,1968-05-14 02:42:00,0 +2913,1968-10-19 17:22:00,0 +8246,1969-01-20 09:44:00,0 +6152,1968-10-08 05:44:00,0 +772,1965-03-01 11:52:00,0 +3829,1967-12-08 09:00:00,0 +9529,1966-05-07 14:25:00,0 +1377,1969-02-13 19:35:00,0 +6085,1967-07-17 07:28:00,0 +6231,1967-05-08 20:03:00,0 +906,1965-02-15 22:01:00,0 +8973,1968-08-31 18:25:00,0 +8834,1966-08-22 08:08:00,0 +7354,1969-05-02 06:24:00,0 +5186,1968-02-13 04:38:00,0 +7856,1969-01-20 14:09:00,0 +129,1968-09-17 20:44:00,0 +1273,1968-12-25 02:31:00,0 +2714,1966-12-20 01:38:00,0 +8002,1967-09-25 05:57:00,0 +6347,1968-04-01 01:31:00,0 +8852,1966-10-31 23:23:00,0 +4043,1969-12-05 06:56:00,0 +8731,1965-06-06 18:38:00,0 +6227,1969-06-06 11:30:00,0 +8611,1968-09-14 04:20:00,0 +3961,1968-06-25 17:12:00,0 +6709,1968-08-12 10:14:00,0 +8063,1965-07-19 09:28:00,0 +3470,1966-08-21 23:38:00,0 +794,1967-07-01 10:04:00,0 +6801,1966-06-22 15:13:00,0 +9330,1965-08-05 00:06:00,0 +141,1967-03-03 14:00:00,0 +2161,1967-09-04 21:10:00,0 +6826,1965-03-19 00:03:00,0 +4678,1968-05-03 12:56:00,0 +3175,1965-03-03 00:59:00,0 +5094,1965-06-03 12:01:00,0 +9477,1969-09-16 01:54:00,0 +693,1965-09-13 02:37:00,0 +2983,1965-08-26 16:06:00,0 +9796,1968-11-30 12:22:00,0 +8924,1966-02-23 11:33:00,0 +4895,1968-01-10 02:18:00,0 +1158,1968-02-06 01:16:00,0 +1376,1968-09-03 08:15:00,0 +2696,1966-06-06 11:44:00,0 +9289,1966-01-30 20:51:00,0 +7958,1966-11-02 08:49:00,0 +3148,1965-12-20 23:52:00,0 +19,1966-03-02 16:56:00,0 +9412,1968-05-21 12:33:00,0 +8089,1967-01-05 00:52:00,0 +1673,1966-05-24 07:46:00,0 +1459,1969-06-19 11:18:00,0 +6370,1968-09-07 14:27:00,0 +5491,1966-08-29 06:21:00,0 +2860,1968-09-27 01:41:00,0 +1521,1969-01-14 20:46:00,0 +6245,1967-01-17 02:58:00,0 +74,1967-11-23 10:56:00,0 +486,1969-11-29 03:34:00,0 +4184,1969-01-14 21:26:00,0 +613,1968-05-07 22:19:00,0 +1938,1965-06-21 19:37:00,0 +8059,1966-02-19 13:30:00,0 +7123,1968-02-10 05:43:00,0 +8563,1968-12-05 23:31:00,0 +7958,1968-03-19 21:40:00,0 +2363,1965-08-04 13:04:00,0 +3264,1965-06-02 14:39:00,0 +315,1967-07-10 17:58:00,0 +125,1969-08-26 05:11:00,0 +5371,1967-01-11 03:44:00,0 +5065,1965-02-12 03:21:00,0 +5157,1969-01-10 03:33:00,0 +3966,1965-02-28 10:13:00,0 +5775,1966-02-28 08:01:00,0 +5616,1965-01-18 07:54:00,0 +6088,1966-09-02 18:34:00,0 +5281,1969-10-02 22:59:00,0 +4116,1966-07-17 04:28:00,0 +9584,1967-06-05 19:46:00,0 +594,1966-07-01 12:59:00,0 +7176,1965-03-14 23:24:00,0 +7557,1968-12-11 04:41:00,0 +4811,1966-08-04 02:26:00,0 +8896,1967-06-29 08:46:00,0 +9503,1966-08-09 19:52:00,0 +3162,1967-05-13 18:55:00,0 +7290,1969-07-01 01:44:00,0 +8173,1968-12-02 10:43:00,0 +3602,1968-05-26 05:30:00,0 +9579,1966-10-14 14:11:00,0 +8727,1968-01-15 18:59:00,0 +1111,1966-08-14 18:21:00,0 +8847,1965-06-08 16:48:00,0 +401,1965-04-05 16:14:00,0 +2261,1967-12-23 15:47:00,0 +6832,1965-12-19 01:56:00,0 +798,1965-08-29 14:15:00,0 +9620,1966-05-14 19:48:00,0 +2730,1965-10-03 12:17:00,0 +9965,1966-11-10 15:20:00,0 +7953,1966-04-03 03:50:00,0 +4291,1969-08-16 15:35:00,0 +2278,1968-06-18 04:46:00,0 +8968,1965-02-22 17:27:00,0 +4705,1966-03-30 16:23:00,0 +6851,1966-08-29 04:32:00,0 +3047,1969-07-24 19:36:00,0 +2160,1968-10-30 22:05:00,0 +4683,1967-08-08 01:45:00,0 +3072,1969-07-30 18:05:00,0 +2344,1968-12-16 10:23:00,0 +7743,1966-02-17 20:20:00,0 +9501,1967-06-15 20:41:00,0 +6775,1967-10-28 14:05:00,0 +8484,1967-08-29 14:00:00,0 +5955,1969-08-14 05:08:00,0 +5190,1968-12-29 21:21:00,0 +415,1968-05-26 02:28:00,0 +1666,1965-07-06 09:28:00,0 +5187,1966-08-11 12:19:00,0 +1559,1968-07-15 21:42:00,0 +3899,1966-05-12 00:00:00,0 +7346,1967-05-02 11:19:00,0 +7794,1968-07-12 01:54:00,0 +5935,1966-08-23 03:44:00,0 +3608,1968-07-19 15:37:00,0 +2734,1967-01-31 04:56:00,0 +4787,1969-12-01 15:17:00,0 +4245,1969-12-01 09:30:00,0 +1549,1965-03-27 20:27:00,0 +3012,1968-05-18 06:53:00,0 +6465,1968-02-04 02:02:00,0 +4339,1969-10-09 20:24:00,0 +3118,1965-06-14 16:53:00,0 +1399,1968-05-31 00:41:00,0 +2673,1966-06-09 15:08:00,0 +8219,1968-11-08 08:58:00,0 +7083,1969-02-18 23:44:00,0 +3887,1969-04-14 12:25:00,0 +1940,1966-12-05 17:34:00,0 +4343,1969-05-19 07:36:00,0 +4748,1969-06-21 22:31:00,0 +5578,1965-02-22 18:58:00,0 +2766,1969-09-29 23:16:00,0 +8331,1967-03-28 11:03:00,0 +7677,1969-11-21 23:31:00,0 +4929,1966-01-01 15:35:00,0 +4685,1967-04-12 18:34:00,0 +4928,1965-07-03 04:25:00,0 +7778,1967-09-12 22:24:00,0 +6280,1968-02-14 10:37:00,0 +2573,1968-07-13 09:28:00,0 +5956,1966-10-24 06:24:00,0 +5699,1966-09-07 21:11:00,0 +6271,1967-08-28 10:22:00,0 +2977,1969-03-01 18:59:00,0 +3070,1965-02-15 17:33:00,0 +1340,1968-03-03 22:42:00,0 +4600,1967-09-30 07:28:00,0 +1770,1968-03-20 18:02:00,0 +8407,1968-08-05 16:08:00,0 +7942,1969-11-17 08:53:00,0 +712,1965-10-25 01:31:00,0 +8584,1966-06-28 05:04:00,0 +4562,1969-12-07 13:55:00,0 +649,1969-12-12 07:28:00,0 +8837,1969-04-26 02:50:00,0 +3809,1967-10-30 03:09:00,0 +2752,1965-01-25 22:48:00,0 +1191,1965-03-23 07:40:00,0 +9819,1969-07-16 13:06:00,0 +5074,1965-07-22 06:05:00,0 +7324,1965-12-01 05:15:00,0 +7152,1967-04-06 11:55:00,0 +6411,1965-07-16 00:18:00,0 +3368,1968-01-23 10:50:00,0 +8714,1969-03-20 22:56:00,0 +8214,1968-06-29 22:31:00,0 +7962,1967-11-10 17:36:00,0 +8762,1965-04-18 15:51:00,0 +2468,1969-04-16 05:47:00,0 +9278,1965-12-31 12:01:00,0 +721,1969-11-12 11:44:00,0 +2403,1969-01-27 16:09:00,0 +3579,1967-07-05 22:47:00,0 +6380,1966-06-16 01:02:00,0 +3680,1968-10-11 12:53:00,0 +4603,1965-12-25 11:19:00,0 +6810,1969-05-31 07:49:00,0 +3956,1967-06-07 09:46:00,0 +6514,1967-03-19 05:28:00,0 +9932,1969-08-24 02:52:00,0 +1282,1969-01-25 16:39:00,0 +7915,1966-10-13 13:48:00,0 +7686,1967-08-11 09:05:00,0 +1451,1967-08-23 15:33:00,0 +898,1967-08-29 19:08:00,0 +4369,1968-11-03 16:22:00,0 +7888,1969-02-16 05:15:00,0 +8387,1968-07-16 01:58:00,0 +3860,1969-08-22 01:22:00,0 +158,1968-11-15 20:36:00,0 +5851,1967-04-08 23:43:00,0 +8088,1965-10-06 01:42:00,0 +1346,1969-12-21 13:49:00,0 +4360,1965-11-09 17:10:00,0 +9720,1966-07-17 04:19:00,0 +784,1966-05-25 20:07:00,0 +7200,1966-11-18 16:41:00,0 +9262,1965-08-18 04:36:00,0 +4639,1968-05-09 05:51:00,0 +9005,1968-05-13 12:44:00,0 +524,1968-01-11 19:11:00,0 +5086,1969-08-17 05:23:00,0 +847,1969-07-03 23:39:00,0 +3060,1967-09-30 23:01:00,0 +9420,1968-03-31 15:56:00,0 +6205,1969-10-23 16:20:00,0 +6374,1969-10-26 11:59:00,0 +9722,1969-06-26 11:19:00,0 +8256,1966-10-25 17:06:00,0 +7408,1965-01-13 14:40:00,0 +3422,1965-11-23 07:19:00,0 +9664,1965-10-19 13:26:00,0 +6356,1969-11-13 05:17:00,0 +7259,1965-05-06 20:36:00,0 +7707,1969-08-15 19:32:00,0 +7987,1967-08-05 06:56:00,0 +688,1968-04-30 15:33:00,0 +1254,1965-05-20 18:48:00,0 +8308,1965-02-02 05:26:00,0 +920,1965-03-03 22:06:00,0 +1303,1968-10-14 20:51:00,0 +2078,1968-03-14 21:17:00,0 +8992,1969-09-23 03:34:00,0 +5638,1967-04-27 17:21:00,0 +31,1967-03-12 11:54:00,0 +2620,1969-04-23 01:36:00,0 +3072,1969-05-23 09:49:00,0 +4247,1966-08-04 10:56:00,0 +9946,1966-08-31 06:41:00,0 +1689,1967-12-08 21:38:00,0 +8830,1968-05-28 20:32:00,0 +9821,1968-09-06 04:46:00,0 +2792,1968-12-11 15:13:00,0 +8475,1965-08-31 07:33:00,0 +704,1967-08-24 08:05:00,0 +7629,1967-10-26 09:21:00,0 +7422,1968-12-24 06:00:00,0 +3159,1965-08-06 05:49:00,0 +7294,1968-06-14 22:51:00,0 +3320,1969-03-15 12:11:00,0 +199,1968-12-28 02:13:00,0 +8035,1966-02-28 00:00:00,0 +6798,1966-02-10 18:05:00,0 +3935,1968-12-06 01:56:00,0 +1092,1967-04-26 18:00:00,0 +7350,1965-03-23 02:24:00,0 +7223,1965-02-18 02:43:00,0 +5522,1965-09-26 11:03:00,0 +591,1967-01-10 22:49:00,0 +2767,1967-09-01 12:10:00,0 +6923,1969-07-20 17:37:00,0 +474,1965-11-18 22:43:00,0 +177,1968-03-12 20:17:00,0 +508,1968-07-06 14:30:00,0 +5274,1965-01-29 05:59:00,0 +2114,1966-07-06 04:29:00,0 +8076,1965-12-15 23:18:00,0 +3493,1969-10-22 03:00:00,0 +9141,1966-05-04 11:00:00,0 +2005,1965-09-21 01:56:00,0 +7411,1965-09-13 18:58:00,0 +1868,1967-07-26 21:59:00,0 +7423,1965-04-21 05:29:00,0 +8116,1966-08-12 02:19:00,0 +4227,1967-08-01 08:46:00,0 +1796,1969-11-08 18:16:00,0 +1752,1966-11-17 07:38:00,0 +5155,1967-12-05 22:02:00,0 +5015,1967-08-05 23:40:00,0 +9005,1965-01-09 19:02:00,0 +3170,1966-10-04 10:54:00,0 +7244,1966-06-09 22:41:00,0 +8783,1965-10-24 08:11:00,0 +2819,1969-05-05 05:32:00,0 +8436,1967-01-05 19:25:00,0 +1301,1965-09-16 16:27:00,0 +2820,1968-09-29 02:23:00,0 +542,1965-12-15 11:57:00,0 +3788,1967-01-24 03:27:00,0 +6172,1968-04-19 16:37:00,0 +5793,1967-04-07 00:25:00,0 +5918,1968-09-19 22:29:00,0 +9895,1967-07-14 14:15:00,0 +1529,1968-04-30 13:23:00,0 +5481,1968-10-02 12:46:00,0 +8378,1967-10-01 14:56:00,0 +2903,1966-07-23 05:00:00,0 +9722,1966-11-27 04:41:00,0 +323,1969-08-23 23:46:00,0 +8897,1965-08-06 10:16:00,0 +756,1968-01-02 08:43:00,0 +6076,1968-05-01 13:56:00,0 +6804,1966-01-24 19:40:00,0 +8367,1965-10-04 14:18:00,0 +1053,1966-09-27 05:52:00,0 +2580,1966-02-12 11:58:00,0 +7836,1965-08-12 14:25:00,0 +2551,1967-08-31 05:03:00,0 +9,1969-01-08 22:43:00,0 +4952,1968-11-25 01:46:00,0 +1595,1965-02-01 22:50:00,0 +9280,1966-02-18 21:41:00,0 +2846,1967-08-08 23:12:00,0 +3067,1967-01-21 19:04:00,0 +3691,1968-07-03 04:26:00,0 +6266,1967-06-06 17:21:00,0 +8083,1967-07-26 07:33:00,0 +7900,1968-04-21 21:27:00,0 +5465,1969-09-14 11:48:00,0 +3298,1966-06-02 05:59:00,0 +3334,1969-08-13 13:17:00,0 +209,1965-04-03 21:09:00,0 +5153,1969-07-29 04:49:00,0 +1878,1968-07-18 00:40:00,0 +6826,1968-09-22 13:19:00,0 +9708,1967-12-30 12:00:00,0 +2811,1969-07-25 09:24:00,0 +7706,1968-12-22 02:31:00,0 +7148,1966-09-06 18:16:00,0 +9590,1967-08-02 19:29:00,0 +1398,1968-05-05 05:05:00,0 +1377,1966-10-14 21:48:00,0 +4403,1969-05-19 12:07:00,0 +9332,1965-06-15 05:22:00,0 +49,1966-03-10 06:58:00,0 +7281,1969-09-27 06:00:00,0 +4150,1967-10-14 13:20:00,0 +1200,1967-11-01 10:41:00,0 +5313,1965-01-10 11:59:00,0 +1549,1967-04-04 07:07:00,0 +720,1968-06-06 04:54:00,0 +8991,1966-04-26 13:18:00,0 +8774,1968-10-12 17:04:00,0 +5309,1967-01-21 12:45:00,0 +2395,1969-08-07 10:52:00,0 +2534,1965-01-18 13:02:00,0 +315,1965-09-22 23:18:00,0 +2770,1969-12-23 20:15:00,0 +8924,1966-04-05 16:38:00,0 +842,1969-07-25 04:49:00,0 +803,1965-02-14 12:49:00,0 +9537,1969-03-26 18:32:00,0 +7549,1967-03-16 15:56:00,0 +2312,1966-10-28 13:40:00,0 +9316,1965-02-18 17:13:00,0 +3639,1967-10-19 07:53:00,0 +4603,1966-05-24 20:05:00,0 +854,1968-11-13 14:48:00,0 +4981,1967-07-16 03:32:00,0 +8855,1965-08-22 04:10:00,0 +3404,1968-06-11 09:47:00,0 +6423,1966-01-15 20:07:00,0 +531,1965-06-24 11:50:00,0 +1824,1967-02-11 11:51:00,0 +9412,1969-12-09 05:24:00,0 +3351,1965-02-25 11:54:00,0 +1896,1968-10-07 23:08:00,0 +878,1968-04-29 11:20:00,0 +2962,1968-06-18 00:03:00,0 +8575,1969-12-26 00:27:00,0 +5966,1967-04-08 04:39:00,0 +7429,1966-09-05 15:06:00,0 +4701,1967-02-23 22:52:00,0 +927,1968-09-13 05:59:00,0 +9174,1966-04-20 23:22:00,0 +1989,1965-08-03 19:34:00,0 +8031,1966-05-20 21:57:00,0 +9031,1969-03-30 14:11:00,0 +9553,1965-10-01 05:36:00,0 +1694,1967-09-24 10:29:00,0 +6973,1965-12-18 03:43:00,0 +3651,1965-10-22 06:21:00,0 +901,1969-10-19 13:13:00,0 +5011,1965-08-12 16:02:00,0 +9159,1966-09-17 05:17:00,0 +4602,1969-05-19 05:45:00,0 +9190,1966-02-11 16:24:00,0 +465,1967-07-11 04:02:00,0 +9243,1969-12-09 15:52:00,0 +1642,1969-05-24 16:23:00,0 +3147,1969-07-18 10:19:00,0 +5804,1968-02-11 06:21:00,0 +9242,1969-11-17 04:23:00,0 +5774,1969-08-19 12:18:00,0 +1519,1969-06-09 05:03:00,0 +9540,1966-01-15 08:22:00,0 +5938,1968-04-03 21:00:00,0 +4025,1966-11-10 05:45:00,0 +1158,1965-09-23 18:27:00,0 +7280,1968-02-14 01:45:00,0 +5484,1969-05-10 08:33:00,0 +8835,1965-06-11 01:27:00,0 +1567,1965-08-30 11:49:00,0 +8817,1968-12-13 07:03:00,0 +153,1966-07-29 01:28:00,0 +4153,1966-09-07 08:35:00,0 +520,1966-09-29 14:17:00,0 +1228,1967-10-22 08:24:00,0 +4559,1967-08-27 05:10:00,0 +4533,1968-09-21 03:47:00,0 +8708,1967-07-09 01:43:00,0 +2026,1969-02-03 15:21:00,0 +6533,1965-06-01 06:56:00,0 +1907,1967-09-05 04:41:00,0 +5922,1967-12-18 06:42:00,0 +3863,1965-08-16 20:08:00,0 +4390,1967-11-07 01:00:00,0 +9999,1967-03-15 08:53:00,0 +3244,1969-08-31 02:09:00,0 +8978,1968-12-30 15:10:00,0 +9541,1965-11-19 07:50:00,0 +8565,1968-06-16 13:19:00,0 +3117,1968-04-09 11:03:00,0 +7431,1969-11-21 23:58:00,0 +386,1969-11-09 07:09:00,0 +842,1968-11-10 07:56:00,0 +7584,1965-05-02 12:20:00,0 +3294,1969-05-21 06:39:00,0 +2984,1966-12-22 04:12:00,0 +2576,1968-05-29 16:51:00,0 +2282,1965-02-28 17:25:00,0 +2656,1966-05-23 04:20:00,0 +8260,1968-12-21 19:19:00,0 +4873,1968-06-20 09:39:00,0 +819,1967-10-08 09:58:00,0 +7322,1968-03-14 07:01:00,0 +5752,1966-07-18 11:05:00,0 +6247,1967-11-26 17:01:00,0 +8833,1969-10-19 23:31:00,0 +4422,1966-07-19 09:01:00,0 +9675,1966-09-06 15:25:00,0 +2199,1966-05-25 06:46:00,0 +7682,1967-03-29 20:13:00,0 +9365,1965-08-18 12:41:00,0 +8281,1967-10-17 01:11:00,0 +5201,1969-02-13 12:52:00,0 +6141,1968-10-31 17:39:00,0 +871,1966-10-08 14:34:00,0 +8195,1967-04-18 20:02:00,0 +9242,1968-10-08 19:31:00,0 +113,1967-12-25 22:08:00,0 +8939,1965-03-09 22:03:00,0 +2039,1967-07-14 17:30:00,0 +4226,1969-06-20 06:08:00,0 +1752,1967-01-05 12:03:00,0 +5038,1966-01-18 19:22:00,0 +3555,1965-04-24 22:21:00,0 +5480,1969-06-20 19:33:00,0 +1079,1968-05-22 00:15:00,0 +4751,1967-02-03 10:16:00,0 +7388,1965-05-14 21:08:00,0 +2073,1967-03-22 13:05:00,0 +4520,1969-09-25 12:54:00,0 +4712,1969-01-10 20:43:00,0 +6924,1968-04-13 21:33:00,0 +5204,1966-04-09 22:57:00,0 +8059,1965-04-21 17:02:00,0 +2944,1968-10-27 05:25:00,0 +3553,1966-10-10 21:22:00,0 +3839,1969-06-05 07:28:00,0 +1183,1966-12-30 06:49:00,0 +3472,1966-09-21 04:20:00,0 +8891,1969-08-26 19:25:00,0 +4968,1965-06-03 11:42:00,0 +8799,1966-05-23 14:08:00,0 +5908,1965-03-04 18:45:00,0 +9058,1966-12-16 08:35:00,0 +5907,1969-02-28 07:43:00,0 +6197,1967-10-13 13:29:00,0 +4719,1968-06-23 08:32:00,0 +9818,1967-05-28 11:40:00,0 +8030,1966-11-15 07:58:00,0 +6895,1966-04-25 11:39:00,0 +4669,1967-10-20 07:03:00,0 +1257,1966-10-14 05:27:00,0 +1775,1968-05-19 04:50:00,0 +899,1969-10-03 05:18:00,0 +6525,1965-11-16 08:00:00,0 +3339,1966-10-05 13:53:00,0 +4649,1965-01-29 00:51:00,0 +4362,1969-06-03 08:56:00,0 +1423,1968-05-18 03:02:00,0 +5480,1968-05-03 08:28:00,0 +7891,1967-03-06 12:43:00,0 +5490,1967-06-17 07:40:00,0 +1427,1966-07-11 09:13:00,0 +6768,1965-11-11 02:18:00,0 +1817,1967-04-13 23:14:00,0 +4660,1965-12-08 09:53:00,0 +8436,1968-08-03 22:49:00,0 +8525,1968-11-08 00:27:00,0 +5592,1965-01-21 12:51:00,0 +1501,1969-10-09 12:30:00,0 +3395,1969-09-22 10:54:00,0 +1718,1967-01-29 15:32:00,0 +9484,1966-05-11 22:59:00,0 +5930,1965-03-08 18:50:00,0 +8692,1966-06-06 00:59:00,0 +593,1965-10-16 07:44:00,0 +5523,1968-02-16 11:20:00,0 +9058,1969-02-01 01:03:00,0 +8033,1968-05-22 09:07:00,0 +1329,1967-04-12 12:53:00,0 +6268,1965-11-16 11:49:00,0 +5156,1966-02-15 18:13:00,0 +2174,1967-06-30 19:13:00,0 +3272,1967-02-19 11:49:00,0 +3768,1965-04-28 18:26:00,0 +930,1969-03-09 23:56:00,0 +2852,1969-04-05 02:46:00,0 +3340,1967-11-07 03:51:00,0 +963,1967-02-01 07:00:00,0 +2652,1965-05-30 21:37:00,0 +1681,1967-05-04 15:06:00,0 +414,1965-05-20 05:49:00,0 +9434,1966-02-26 15:58:00,0 +1909,1968-09-27 08:21:00,0 +3219,1966-07-10 17:47:00,0 +1797,1968-03-17 19:00:00,0 +6003,1967-04-07 07:11:00,0 +8700,1967-06-12 03:58:00,0 +2193,1969-03-19 18:18:00,0 +2286,1968-10-31 04:46:00,0 +4739,1968-02-06 15:14:00,0 +5762,1966-09-05 06:51:00,0 +3069,1966-04-25 19:58:00,0 +6298,1967-06-11 21:19:00,0 +6406,1969-10-16 01:48:00,0 +5051,1969-10-12 03:09:00,0 +266,1965-01-30 23:42:00,0 +603,1967-09-07 01:37:00,0 +29,1965-09-05 06:37:00,0 +5328,1966-09-01 23:24:00,0 +9191,1968-04-04 01:32:00,0 +6524,1969-01-24 05:01:00,0 +1613,1965-08-15 04:51:00,0 +8698,1965-06-29 23:01:00,0 +7822,1969-06-01 15:56:00,0 +7345,1969-12-02 10:29:00,0 +7559,1968-12-08 01:55:00,0 +3762,1969-10-27 01:52:00,0 +5798,1969-06-04 18:25:00,0 +1258,1969-07-25 16:29:00,0 +8723,1966-09-13 23:47:00,0 +5544,1968-08-22 02:49:00,0 +6571,1969-05-12 11:07:00,0 +1098,1968-10-17 20:30:00,0 +9833,1966-05-23 06:08:00,0 +1916,1967-02-06 16:23:00,0 +7680,1965-09-06 17:28:00,0 +3126,1965-06-22 02:36:00,0 +4556,1968-02-25 07:30:00,0 +1515,1967-12-28 04:54:00,0 +444,1969-04-05 19:50:00,0 +7137,1966-12-11 21:44:00,0 +6874,1965-07-26 09:55:00,0 +8227,1967-05-30 22:57:00,0 +8719,1965-11-12 08:18:00,0 +8751,1968-01-29 16:37:00,0 +4494,1965-10-14 02:03:00,0 +4231,1966-05-16 18:31:00,0 +819,1966-07-17 02:17:00,0 +7889,1968-10-12 08:21:00,0 +4586,1968-09-15 14:26:00,0 +7772,1968-08-11 02:42:00,0 +5998,1966-06-14 16:02:00,0 +8312,1969-07-20 11:35:00,0 +7721,1968-03-03 00:32:00,0 +7536,1965-01-05 19:21:00,0 +9012,1967-10-10 00:58:00,0 +7701,1969-07-28 01:42:00,0 +841,1966-03-30 09:58:00,0 +8605,1967-03-12 23:21:00,0 +4396,1968-02-29 23:54:00,0 +7725,1967-10-30 07:35:00,0 +4186,1967-06-21 03:28:00,0 +6227,1969-02-14 22:07:00,0 +2454,1968-06-10 14:47:00,0 +7242,1966-03-14 15:56:00,0 +8714,1966-07-05 17:19:00,0 +1472,1968-05-01 01:51:00,0 +8006,1967-09-03 02:30:00,0 +9616,1969-11-21 03:06:00,0 +9491,1967-08-28 17:03:00,0 +7003,1966-12-08 10:25:00,0 +4623,1968-01-25 13:50:00,0 +9782,1965-03-04 03:55:00,0 +7682,1969-05-23 11:00:00,0 +6686,1969-07-14 03:18:00,0 +2214,1969-06-10 15:08:00,0 +2342,1968-08-30 16:55:00,0 +5117,1968-09-05 11:44:00,0 +5773,1967-01-05 12:37:00,0 +1507,1966-08-28 21:39:00,0 +9906,1965-07-06 08:50:00,0 +1095,1967-08-19 19:24:00,0 +1056,1965-01-10 07:50:00,0 +9167,1969-11-06 03:05:00,0 +5406,1969-06-01 18:34:00,0 +8584,1966-11-16 09:31:00,0 +8439,1968-10-11 05:49:00,0 +8991,1966-01-18 21:43:00,0 +2655,1967-12-01 16:52:00,0 +8070,1967-05-24 01:16:00,0 +6292,1965-03-23 09:04:00,0 +6973,1969-07-16 04:55:00,0 +7442,1967-04-03 18:02:00,0 +1991,1966-04-07 06:58:00,0 +5036,1965-08-25 08:59:00,0 +3379,1967-12-20 17:22:00,0 +1110,1965-02-24 01:02:00,0 +3018,1967-08-19 21:32:00,0 +3665,1967-11-22 01:13:00,0 +5056,1967-05-28 14:22:00,0 +1796,1968-06-28 19:20:00,0 +2883,1968-02-05 09:33:00,0 +4349,1969-11-18 15:41:00,0 +1832,1968-10-20 03:27:00,0 +3436,1967-05-17 13:10:00,0 +1607,1968-10-29 22:40:00,0 +284,1967-03-24 15:17:00,0 +9139,1967-08-28 16:06:00,0 +1406,1969-04-10 21:14:00,0 +8660,1967-10-27 03:35:00,0 +2930,1965-09-03 14:34:00,0 +5735,1965-05-07 18:39:00,0 +924,1967-06-17 00:59:00,0 +227,1967-09-23 02:14:00,0 +9474,1968-12-16 16:31:00,0 +7094,1966-12-15 21:13:00,0 +3841,1967-11-26 18:53:00,0 +2502,1967-02-22 19:33:00,0 +9649,1967-08-07 04:25:00,0 +9294,1968-07-18 17:36:00,0 +8045,1966-04-09 20:39:00,0 +6827,1968-07-27 15:21:00,0 +1461,1968-11-29 17:31:00,0 +7324,1965-09-12 09:51:00,0 +3689,1967-11-28 23:01:00,0 +5317,1965-12-31 09:26:00,0 +7197,1969-10-10 22:45:00,0 +8778,1968-08-25 03:21:00,0 +1042,1965-05-11 19:10:00,0 +9875,1969-12-06 03:07:00,0 +7523,1965-03-14 08:10:00,0 +3376,1967-02-07 14:14:00,0 +8720,1967-12-05 07:27:00,0 +4911,1965-03-16 23:37:00,0 +7542,1965-10-29 02:20:00,0 +3174,1969-03-17 22:53:00,0 +303,1968-10-25 23:18:00,0 +8024,1965-07-09 12:59:00,0 +1162,1965-12-04 10:50:00,0 +292,1969-02-09 10:32:00,0 +6682,1969-02-01 10:04:00,0 +6161,1967-08-23 10:55:00,0 +1819,1966-09-18 04:53:00,0 +7392,1967-07-28 15:56:00,0 +7081,1967-02-28 06:32:00,0 +5410,1966-05-01 21:38:00,0 +9714,1968-03-14 17:49:00,0 +6395,1969-07-08 22:05:00,0 +5322,1965-09-22 17:38:00,0 +929,1965-01-06 06:11:00,0 +925,1969-07-30 09:33:00,0 +2137,1965-07-08 20:44:00,0 +2656,1967-12-18 09:01:00,0 +1112,1969-03-28 18:21:00,0 +4991,1969-06-30 15:15:00,0 +1654,1966-12-17 05:34:00,0 +7392,1968-07-20 12:50:00,0 +6216,1965-10-07 11:07:00,0 +4667,1965-12-17 21:55:00,0 +693,1965-07-14 03:03:00,0 +6761,1966-05-08 22:26:00,0 +4637,1969-08-17 15:12:00,0 +3795,1965-12-08 03:49:00,0 +3313,1966-12-31 02:20:00,0 +646,1966-03-20 12:54:00,0 +6410,1968-10-27 22:06:00,0 +6221,1969-03-07 23:44:00,0 +5545,1965-02-07 04:14:00,0 +6683,1968-08-21 19:43:00,0 +2614,1969-10-01 22:26:00,0 +3673,1965-12-23 23:25:00,0 +3020,1967-09-03 17:16:00,0 +1029,1969-08-12 15:45:00,0 +4308,1969-03-02 20:07:00,0 +4335,1966-02-10 14:40:00,0 +7516,1968-06-05 02:56:00,0 +9341,1968-04-24 03:20:00,0 +7381,1968-09-08 09:23:00,0 +9049,1965-10-04 07:29:00,0 +9208,1969-08-30 03:25:00,0 +4245,1967-08-09 05:17:00,0 +4488,1966-01-14 04:31:00,0 +426,1969-08-21 07:30:00,0 +854,1968-10-19 07:54:00,0 +7395,1969-05-25 09:16:00,0 +4021,1966-04-21 09:30:00,0 +8528,1965-09-02 23:58:00,0 +2298,1966-02-17 09:19:00,0 +5292,1968-03-31 15:30:00,0 +2237,1966-09-05 15:25:00,0 +4418,1965-05-24 08:33:00,0 +6521,1966-09-17 05:28:00,0 +1148,1969-10-21 07:48:00,0 +4476,1965-05-02 08:18:00,0 +1931,1965-03-22 22:02:00,0 +5875,1968-03-23 10:46:00,0 +3524,1966-12-21 18:38:00,0 +1205,1969-11-08 22:19:00,0 +7967,1968-02-18 13:45:00,0 +3964,1965-12-26 06:24:00,0 +1689,1966-09-29 16:03:00,0 +3891,1969-12-16 13:20:00,0 +9798,1965-01-28 19:29:00,0 +3240,1969-05-14 22:37:00,0 +8504,1966-03-10 14:20:00,0 +7505,1967-08-05 20:16:00,0 +6420,1966-08-20 05:37:00,0 +5333,1967-12-04 14:43:00,0 +9002,1968-07-05 02:20:00,0 +2861,1965-04-03 01:53:00,0 +3270,1965-12-02 21:38:00,0 +5867,1967-05-24 10:11:00,0 +9820,1965-11-19 01:30:00,0 +1633,1965-11-22 08:45:00,0 +7857,1966-03-30 06:15:00,0 +7414,1966-11-16 06:17:00,0 +3206,1966-10-14 13:44:00,0 +4785,1969-03-08 01:58:00,0 +6914,1968-09-11 05:39:00,0 +9191,1969-12-17 21:42:00,0 +4639,1965-10-21 14:01:00,0 +8881,1965-04-09 13:12:00,0 +6166,1968-02-12 16:03:00,0 +3384,1968-03-10 14:39:00,0 +2877,1968-06-04 03:55:00,0 +8233,1965-12-13 11:03:00,0 +2731,1968-09-18 16:12:00,0 +3591,1965-03-26 06:45:00,0 +803,1965-07-02 06:16:00,0 +4054,1968-02-27 15:49:00,0 +1854,1967-10-30 05:38:00,0 +8677,1965-02-20 23:17:00,0 +1028,1968-10-25 01:38:00,0 +1193,1968-10-04 22:51:00,0 +46,1967-09-29 04:24:00,0 +8211,1966-07-30 04:15:00,0 +9561,1967-08-18 18:56:00,0 +4241,1968-09-19 04:46:00,0 +6590,1967-11-22 19:12:00,0 +322,1967-05-23 23:17:00,0 +3091,1965-05-30 21:33:00,0 +4009,1966-07-31 12:19:00,0 +5914,1968-05-06 16:24:00,0 +8558,1969-11-18 12:01:00,0 +3466,1965-03-31 15:43:00,0 +3068,1967-06-28 19:29:00,0 +7246,1966-03-14 07:55:00,0 +6570,1965-01-06 12:12:00,0 +2964,1967-06-24 03:20:00,0 +8483,1969-07-05 23:59:00,0 +8440,1966-09-11 08:51:00,0 +1990,1966-11-07 07:25:00,0 +662,1968-04-02 04:21:00,0 +5184,1966-01-02 15:49:00,0 +9901,1969-08-30 03:48:00,0 +4369,1965-04-01 02:49:00,0 +845,1965-04-18 12:46:00,0 +6318,1965-08-29 00:09:00,0 +9777,1969-12-12 15:48:00,0 +4900,1966-02-17 04:42:00,0 +9692,1967-06-18 05:09:00,0 +785,1966-02-13 00:56:00,0 +3910,1967-10-20 17:40:00,0 +4510,1966-12-02 11:19:00,0 +2940,1965-03-03 22:01:00,0 +5223,1967-09-02 04:05:00,0 +6665,1965-06-10 19:32:00,0 +6637,1965-05-16 02:23:00,0 +7740,1965-03-03 13:06:00,0 +2485,1966-09-22 21:02:00,0 +2726,1968-12-15 21:27:00,0 +2609,1966-12-13 11:46:00,0 +5127,1967-02-07 14:17:00,0 +4263,1969-03-03 20:47:00,0 +3188,1967-11-22 01:33:00,0 +9280,1968-10-02 09:01:00,0 +905,1968-10-11 15:49:00,0 +6204,1966-06-23 18:34:00,0 +2240,1968-03-02 21:34:00,0 +4375,1969-02-14 11:38:00,0 +2814,1965-11-16 15:53:00,0 +5135,1969-03-31 09:25:00,0 +2126,1967-11-24 05:25:00,0 +4416,1967-05-26 22:57:00,0 +6625,1966-04-26 09:18:00,0 +510,1969-07-18 21:56:00,0 +9797,1966-12-13 02:12:00,0 +8212,1969-11-08 00:18:00,0 +5052,1969-09-21 15:37:00,0 +2114,1969-04-26 00:54:00,0 +8249,1966-10-01 20:29:00,0 +8985,1966-11-10 07:53:00,0 +1998,1967-03-06 22:21:00,0 +6304,1965-05-21 01:35:00,0 +4024,1965-08-08 11:11:00,0 +1503,1966-05-15 15:57:00,0 +5944,1966-08-05 15:38:00,0 +5442,1966-10-23 06:52:00,0 +7007,1969-05-03 00:27:00,0 +7659,1966-05-18 11:36:00,0 +5640,1968-05-19 11:15:00,0 +285,1967-12-10 08:02:00,0 +8643,1965-08-29 04:40:00,0 +3022,1965-10-21 10:08:00,0 +6126,1969-11-01 17:50:00,0 +5594,1969-04-26 21:25:00,0 +353,1966-05-28 16:55:00,0 +8594,1968-01-02 16:00:00,0 +8751,1967-09-09 07:39:00,0 +4729,1965-04-01 02:03:00,0 +6961,1966-03-15 11:04:00,0 +764,1967-12-13 21:55:00,0 +2099,1968-03-27 23:03:00,0 +2821,1965-01-06 18:27:00,0 +212,1968-04-04 17:56:00,0 +8991,1965-03-04 06:59:00,0 +3149,1967-11-01 15:46:00,0 +3224,1965-06-27 19:11:00,0 +4516,1969-05-11 06:14:00,0 +7439,1969-01-09 18:25:00,0 +9371,1967-08-02 02:54:00,0 +1903,1968-02-03 10:02:00,0 +8399,1965-03-05 22:07:00,0 +3017,1969-04-01 03:47:00,0 +5441,1967-08-11 17:15:00,0 +846,1968-07-12 22:51:00,0 +8453,1966-12-08 21:03:00,0 +1173,1966-03-12 12:38:00,0 +5931,1965-01-25 16:10:00,0 +3854,1969-02-07 00:27:00,0 +6502,1966-03-23 02:54:00,0 +9714,1969-09-04 07:08:00,0 +5982,1965-04-23 04:30:00,0 +3475,1966-08-07 03:15:00,0 +1857,1968-10-05 07:56:00,0 +1319,1966-03-30 10:23:00,0 +9641,1965-08-30 08:24:00,0 +2285,1969-04-10 05:09:00,0 +3673,1966-10-13 05:29:00,0 +4455,1967-07-27 13:20:00,0 +3098,1967-07-22 21:24:00,0 +1824,1967-05-17 11:25:00,0 +471,1967-12-12 19:38:00,0 +3077,1967-12-13 02:12:00,0 +1987,1969-07-31 22:52:00,0 +2394,1966-03-24 19:02:00,0 +2499,1969-08-01 17:50:00,0 +1322,1968-09-26 18:24:00,0 +5742,1967-01-01 19:04:00,0 +9585,1967-05-14 00:32:00,0 +7335,1968-05-28 06:01:00,0 +8993,1968-07-19 01:02:00,0 +8783,1969-09-27 08:34:00,0 +329,1967-12-06 15:35:00,0 +9732,1969-09-18 01:02:00,0 +5544,1968-04-24 08:23:00,0 +1568,1968-01-25 16:20:00,0 +6195,1967-08-19 21:01:00,0 +1687,1969-10-07 01:10:00,0 +9967,1965-04-16 00:50:00,0 +8682,1965-06-29 00:12:00,0 +6031,1965-05-01 22:49:00,0 +5491,1965-06-10 15:56:00,0 +2241,1967-05-18 17:00:00,0 +9323,1967-10-02 23:37:00,0 +2555,1969-06-22 07:11:00,0 +3928,1969-05-20 02:25:00,0 +9941,1967-03-21 00:16:00,0 +9700,1965-05-05 14:02:00,0 +5425,1965-02-11 15:37:00,0 +6705,1967-03-03 07:59:00,0 +8269,1968-07-17 00:01:00,0 +4879,1966-05-26 22:25:00,0 +6075,1966-09-11 22:31:00,0 +9121,1969-01-26 10:59:00,0 +1819,1965-03-20 15:53:00,0 +9225,1965-02-25 08:35:00,0 +9591,1969-01-07 11:09:00,0 +4486,1966-10-11 10:22:00,0 +9325,1965-10-17 11:56:00,0 +3535,1969-02-24 23:52:00,0 +1360,1969-02-26 10:43:00,0 +7227,1966-01-02 20:48:00,0 +5187,1969-05-27 17:08:00,0 +9930,1966-03-06 23:42:00,0 +5984,1967-02-14 11:23:00,0 +6227,1966-11-04 09:25:00,0 +1201,1969-06-12 13:02:00,0 +3116,1968-01-13 00:35:00,0 +143,1966-08-16 12:03:00,0 +2903,1968-09-20 04:59:00,0 +798,1968-11-11 02:54:00,0 +299,1966-06-14 16:01:00,0 +7313,1967-07-26 16:59:00,0 +1163,1967-10-29 14:24:00,0 +2582,1966-07-13 08:50:00,0 +8747,1965-01-15 11:01:00,0 +4650,1969-11-12 08:56:00,0 +2413,1969-02-16 22:24:00,0 +2282,1968-10-26 07:04:00,0 +9356,1968-06-30 12:10:00,0 +5223,1968-11-15 14:21:00,0 +796,1966-10-22 13:21:00,0 +8914,1968-09-02 22:40:00,0 +9565,1966-10-11 01:38:00,0 +1693,1965-05-16 02:44:00,0 +7640,1969-07-29 07:34:00,0 +6175,1968-02-08 11:40:00,0 +3555,1965-12-28 06:06:00,0 +5066,1966-03-22 02:51:00,0 +3030,1965-08-23 18:36:00,0 +5794,1969-01-15 15:35:00,0 +7521,1966-09-06 17:16:00,0 +993,1965-09-03 10:15:00,0 +8675,1969-01-14 06:13:00,0 +5699,1966-02-15 13:10:00,0 +5426,1967-01-28 18:04:00,0 +4143,1967-02-15 21:08:00,0 +7325,1967-02-17 18:06:00,0 +5627,1969-05-08 22:48:00,0 +8128,1966-09-14 14:08:00,0 +5738,1969-06-23 23:00:00,0 +2954,1965-02-09 03:02:00,0 +836,1969-03-13 00:58:00,0 +9336,1965-01-10 13:01:00,0 +7104,1969-08-19 17:05:00,0 +9654,1969-03-31 12:02:00,0 +6080,1966-11-12 23:23:00,0 +3191,1967-03-12 15:46:00,0 +5667,1968-02-19 23:19:00,0 +964,1969-07-18 03:29:00,0 +3547,1969-10-26 09:50:00,0 +6144,1968-03-17 04:02:00,0 +8821,1968-02-23 05:52:00,0 +8294,1966-11-29 07:42:00,0 +137,1969-08-25 19:01:00,0 +3758,1969-10-21 16:25:00,0 +3389,1965-01-06 15:47:00,0 +5615,1965-08-03 14:50:00,0 +6638,1967-07-25 00:24:00,0 +2696,1966-07-15 08:34:00,0 +1276,1967-08-21 21:57:00,0 +5210,1967-03-28 02:17:00,0 +9378,1969-05-02 13:30:00,0 +3598,1965-08-23 07:46:00,0 +8923,1965-07-27 22:21:00,0 +9162,1969-02-20 18:04:00,0 +4172,1968-11-08 15:36:00,0 +9577,1969-09-09 08:22:00,0 +8816,1968-08-10 22:30:00,0 +4472,1969-04-28 16:03:00,0 +3781,1967-03-26 05:30:00,0 +7824,1968-06-27 10:37:00,0 +6502,1967-06-01 13:55:00,0 +2724,1966-08-26 07:20:00,0 +7055,1965-05-25 06:27:00,0 +5932,1965-01-26 10:22:00,0 +2109,1968-12-09 03:00:00,0 +8332,1965-08-22 04:50:00,0 +9546,1965-11-01 03:33:00,0 +6214,1966-11-10 02:55:00,0 +8481,1967-01-11 06:40:00,0 +9118,1969-07-18 16:22:00,0 +3344,1968-03-24 05:48:00,0 +3376,1966-08-30 03:29:00,0 +6428,1968-05-27 11:57:00,0 +8857,1965-02-27 14:39:00,0 +4950,1967-01-13 10:19:00,0 +7865,1969-04-26 06:40:00,0 +2601,1967-10-18 19:58:00,0 +4984,1969-06-17 23:02:00,0 +8357,1969-11-15 12:07:00,0 +3447,1965-09-10 20:16:00,0 +2065,1966-04-06 01:26:00,0 +1491,1967-03-15 07:02:00,0 +9897,1966-03-04 21:03:00,0 +6768,1966-02-17 13:59:00,0 +465,1969-03-23 14:22:00,0 +2430,1965-08-22 22:40:00,0 +2803,1966-02-23 08:21:00,0 +3359,1967-08-19 14:27:00,0 +9918,1968-08-18 00:43:00,0 +5676,1969-12-06 06:29:00,0 +1772,1965-01-21 19:18:00,0 +7841,1968-02-02 14:49:00,0 +1574,1968-06-12 09:05:00,0 +3035,1967-08-07 20:43:00,0 +2941,1969-05-18 12:53:00,0 +9301,1968-06-10 08:50:00,0 +2916,1965-10-05 20:40:00,0 +8897,1967-09-20 21:12:00,0 +6193,1966-01-19 16:23:00,0 +7937,1968-02-24 21:54:00,0 +4592,1967-09-28 20:26:00,0 +4637,1966-09-06 02:48:00,0 +4747,1968-08-11 01:40:00,0 +8559,1966-10-25 02:22:00,0 +722,1966-12-06 08:33:00,0 +5812,1965-04-24 19:00:00,0 +6550,1967-11-19 03:03:00,0 +8290,1965-06-11 07:02:00,0 +3501,1969-12-07 19:04:00,0 +5744,1967-12-29 04:01:00,0 +6316,1968-10-18 18:39:00,0 +7236,1968-10-21 02:41:00,0 +4144,1968-04-15 01:09:00,0 +5429,1966-12-08 02:11:00,0 +1688,1967-01-09 07:24:00,0 +1787,1968-11-16 19:56:00,0 +7298,1967-09-06 10:13:00,0 +2249,1967-09-14 08:25:00,0 +7252,1966-06-27 00:37:00,0 +7744,1965-06-14 12:06:00,0 +5415,1967-09-12 04:14:00,0 +6693,1966-06-05 17:40:00,0 +819,1966-10-06 04:05:00,0 +4489,1966-12-12 15:40:00,0 +1225,1969-09-16 19:51:00,0 +4600,1967-09-13 05:23:00,0 +3540,1965-07-25 07:19:00,0 +5683,1966-05-28 06:56:00,0 +2,1969-11-20 23:17:00,0 +7071,1965-03-02 14:11:00,0 +7524,1967-11-07 07:56:00,0 +6283,1968-12-10 02:26:00,0 +6174,1969-03-11 00:32:00,0 +2993,1965-01-14 17:40:00,0 +4862,1966-01-04 04:22:00,0 +1127,1965-11-06 09:35:00,0 +6842,1965-02-03 09:44:00,0 +8421,1969-11-23 04:43:00,0 +7137,1965-07-28 09:25:00,0 +4545,1965-03-06 17:43:00,0 +8355,1966-12-17 04:07:00,0 +2846,1968-11-06 23:28:00,0 +1373,1968-11-22 02:33:00,0 +6539,1966-12-09 20:34:00,0 +8374,1969-10-17 02:42:00,0 +9501,1967-01-30 02:25:00,0 +1430,1969-04-26 04:48:00,0 +8441,1967-09-06 02:53:00,0 +3893,1965-02-28 07:17:00,0 +7375,1967-05-23 00:29:00,0 +5399,1968-03-22 23:08:00,0 +3582,1967-09-23 15:28:00,0 +9407,1967-04-29 18:56:00,0 +2655,1966-06-22 21:27:00,0 +3454,1969-02-14 18:03:00,0 +6650,1965-12-20 12:04:00,0 +9238,1965-12-25 10:27:00,0 +8281,1967-04-02 23:18:00,0 +336,1969-02-01 17:42:00,0 +2081,1966-02-03 06:39:00,0 +5329,1965-09-06 10:19:00,0 +3900,1969-10-24 09:12:00,0 +3500,1968-03-21 23:52:00,0 +5408,1968-04-07 11:26:00,0 +6211,1967-08-03 11:10:00,0 +6493,1966-06-27 22:29:00,0 +6579,1965-02-15 22:59:00,0 +8476,1969-08-21 15:16:00,0 +8701,1966-10-03 05:15:00,0 +8716,1965-11-02 13:16:00,0 +3446,1967-05-27 13:04:00,0 +2277,1965-10-21 02:22:00,0 +5216,1968-03-04 18:51:00,0 +2711,1966-09-21 08:36:00,0 +3281,1968-10-26 09:26:00,0 +4861,1966-11-05 11:42:00,0 +2989,1969-12-03 00:03:00,0 +1714,1967-12-15 15:21:00,0 +365,1967-11-13 10:26:00,0 +1440,1965-12-07 00:43:00,0 +7866,1967-12-11 09:19:00,0 +7397,1967-02-11 23:12:00,0 +8987,1966-05-21 11:32:00,0 +9068,1968-01-05 01:37:00,0 +9874,1966-10-21 20:29:00,0 +4055,1968-02-12 07:54:00,0 +1621,1967-09-22 13:56:00,0 +1340,1969-10-16 17:15:00,0 +6649,1967-01-03 14:55:00,0 +3559,1968-06-17 11:16:00,0 +83,1967-11-12 01:04:00,0 +4804,1968-07-07 21:22:00,0 +4552,1969-03-13 02:23:00,0 +5718,1965-11-21 14:22:00,0 +6042,1967-09-21 16:46:00,0 +1411,1966-11-03 03:49:00,0 +9530,1965-09-09 00:49:00,0 +6104,1965-05-31 11:03:00,0 +430,1966-04-25 23:45:00,0 +1388,1967-11-28 12:29:00,0 +1128,1967-05-07 11:51:00,0 +7141,1968-03-25 13:08:00,0 +7044,1967-07-22 14:09:00,0 +6613,1965-05-21 08:45:00,0 +3569,1969-03-21 16:09:00,0 +4426,1968-05-18 04:54:00,0 +8937,1968-01-21 08:41:00,0 +2169,1967-01-16 00:22:00,0 +2250,1966-09-29 20:49:00,0 +8825,1969-04-02 05:04:00,0 +1234,1966-08-04 11:32:00,0 +9247,1969-10-01 15:10:00,0 +8416,1968-09-18 20:00:00,0 +6261,1965-07-14 08:08:00,0 +324,1966-12-12 07:18:00,0 +4305,1969-07-02 00:31:00,0 +2135,1967-11-13 03:18:00,0 +8689,1966-05-24 17:57:00,0 +168,1969-02-15 10:06:00,0 +1125,1968-10-23 22:19:00,0 +6984,1966-09-14 14:38:00,0 +6584,1968-09-02 00:51:00,0 +7006,1969-07-02 11:57:00,0 +782,1968-11-18 17:43:00,0 +7209,1965-07-10 21:44:00,0 +3364,1968-12-28 21:03:00,0 +9452,1965-03-02 04:16:00,0 +9993,1969-12-24 23:14:00,0 +9159,1969-12-09 04:48:00,0 +5585,1966-08-01 01:20:00,0 +4134,1965-08-15 01:21:00,0 +2116,1968-02-05 15:34:00,0 +6075,1968-12-21 06:13:00,0 +6236,1969-03-11 00:08:00,0 +9122,1966-02-12 14:26:00,0 +5613,1965-05-16 13:21:00,0 +3341,1967-10-05 16:23:00,0 +3006,1966-08-09 02:29:00,0 +3189,1967-08-14 06:20:00,0 +398,1965-11-20 20:22:00,0 +6739,1966-12-26 08:17:00,0 +4662,1965-06-30 18:54:00,0 +1874,1969-08-19 12:01:00,0 +4700,1965-11-26 18:21:00,0 +3953,1969-04-03 14:17:00,0 +809,1969-05-11 10:33:00,0 +9522,1967-10-23 04:42:00,0 +8956,1967-08-02 18:05:00,0 +1670,1969-07-17 21:47:00,0 +8760,1966-08-08 06:51:00,0 +1182,1969-08-07 05:48:00,0 +512,1967-10-17 04:46:00,0 +9426,1967-12-09 09:50:00,0 +9554,1965-01-30 23:34:00,0 +4029,1967-12-23 17:35:00,0 +1270,1968-10-28 23:52:00,0 +3554,1968-08-09 05:35:00,0 +2894,1967-08-21 10:45:00,0 +1814,1969-07-07 23:35:00,0 +4273,1966-11-13 22:37:00,0 +4270,1966-10-02 06:36:00,0 +8745,1967-06-24 14:52:00,0 +5570,1965-08-22 15:37:00,0 +4780,1968-02-02 09:54:00,0 +9767,1966-11-04 06:11:00,0 +2965,1968-05-27 07:52:00,0 +6233,1965-11-13 22:52:00,0 +1437,1968-06-08 06:40:00,0 +9246,1965-08-21 18:51:00,0 +9419,1966-04-24 14:34:00,0 +6034,1968-06-03 09:42:00,0 +708,1969-11-15 09:01:00,0 +732,1965-01-07 21:45:00,0 +2035,1966-07-17 11:01:00,0 +8326,1965-06-10 18:19:00,0 +6175,1967-04-07 23:41:00,0 +223,1965-05-07 05:51:00,0 +4115,1965-05-10 17:17:00,0 +3886,1969-06-30 23:57:00,0 +7516,1967-10-26 11:37:00,0 +3061,1966-03-24 14:15:00,0 +6099,1968-09-02 11:56:00,0 +3915,1966-03-10 09:34:00,0 +4075,1965-07-02 22:22:00,0 +8038,1967-01-04 11:28:00,0 +6691,1969-05-05 13:03:00,0 +8220,1966-04-02 06:09:00,0 +7561,1965-05-05 07:42:00,0 +7479,1966-01-11 16:54:00,0 +5473,1966-01-05 02:26:00,0 +2316,1968-10-01 07:32:00,0 +5649,1965-07-10 05:30:00,0 +9562,1967-08-14 09:07:00,0 +6094,1969-08-03 07:35:00,0 +2361,1965-09-10 05:13:00,0 +9556,1969-09-20 23:44:00,0 +6483,1965-06-22 18:40:00,0 +573,1968-11-29 09:00:00,0 +6893,1967-11-08 12:37:00,0 +3998,1967-11-03 23:11:00,0 +3324,1969-06-08 11:32:00,0 +2668,1965-02-23 13:20:00,0 +6187,1969-12-23 13:15:00,0 +9617,1969-03-29 18:37:00,0 +1374,1966-01-28 08:25:00,0 +348,1968-04-09 01:59:00,0 +2063,1967-10-25 14:48:00,0 +6326,1965-01-16 01:15:00,0 +4492,1965-05-03 22:41:00,0 +6474,1967-09-11 08:13:00,0 +7402,1968-07-19 21:52:00,0 +8029,1965-10-22 01:48:00,0 +8945,1969-07-27 04:03:00,0 +5033,1966-09-17 06:19:00,0 +3222,1968-01-28 13:47:00,0 +5134,1967-11-26 00:50:00,0 +9536,1968-10-24 14:08:00,0 +6033,1969-01-08 17:49:00,0 +9348,1965-05-12 23:19:00,0 +8378,1969-04-01 00:03:00,0 +9735,1969-09-12 07:11:00,0 +5274,1969-02-06 11:15:00,0 +53,1966-05-15 07:12:00,0 +8486,1967-04-24 01:52:00,0 +8515,1968-07-23 15:15:00,0 +4985,1966-06-06 09:12:00,0 +778,1965-01-15 17:42:00,0 +5835,1968-10-17 10:37:00,0 +410,1966-05-17 15:40:00,0 +5169,1965-03-15 21:50:00,0 +9718,1967-03-17 11:22:00,0 +7539,1965-07-20 09:39:00,0 +1802,1966-10-31 14:44:00,0 +1604,1969-03-31 00:49:00,0 +9369,1968-07-19 02:20:00,0 +3664,1965-03-21 07:59:00,0 +9408,1965-07-18 11:25:00,0 +7841,1967-09-03 18:53:00,0 +855,1965-04-17 10:24:00,0 +54,1966-01-03 08:53:00,0 +3118,1967-04-17 13:03:00,0 +1520,1966-12-27 21:32:00,0 +3692,1968-01-01 23:11:00,0 +9778,1968-10-04 17:10:00,0 +6600,1966-04-19 15:00:00,0 +4686,1968-08-23 04:59:00,0 +706,1965-08-12 11:17:00,0 +4214,1968-10-14 12:45:00,0 +2078,1969-03-22 22:42:00,0 +1201,1966-07-31 06:56:00,0 +2526,1967-04-16 10:58:00,0 +1849,1967-07-08 00:55:00,0 +4751,1968-10-11 12:39:00,0 +3093,1965-04-08 03:26:00,0 +5315,1967-09-11 10:42:00,0 +6410,1968-02-24 12:05:00,0 +6741,1969-03-03 16:06:00,0 +1419,1965-03-08 07:37:00,0 +5248,1967-10-21 16:22:00,0 +4209,1968-08-12 15:30:00,0 +6015,1968-11-16 05:24:00,0 +2333,1967-12-25 11:25:00,0 +9219,1968-04-09 21:56:00,0 +8120,1969-08-24 18:13:00,0 +7306,1965-11-30 03:38:00,0 +3451,1965-09-28 07:53:00,0 +7445,1968-09-14 15:33:00,0 +4290,1967-04-25 00:13:00,0 +6735,1965-12-26 11:03:00,0 +9708,1968-12-17 10:52:00,0 +3569,1968-10-29 14:20:00,0 +5677,1965-04-23 12:04:00,0 +4996,1966-08-06 06:36:00,0 +7856,1965-02-28 17:25:00,0 +7383,1969-03-28 03:42:00,0 +387,1965-10-11 23:13:00,0 +7142,1965-05-05 06:33:00,0 +251,1965-02-03 06:07:00,0 +3894,1969-08-01 13:39:00,0 +7323,1968-07-10 00:39:00,0 +9195,1966-09-04 18:25:00,0 +8249,1967-10-19 13:39:00,0 +105,1966-06-07 17:35:00,0 +7235,1969-07-27 22:26:00,0 +5971,1969-07-25 17:29:00,0 +6638,1965-01-29 04:57:00,0 +4359,1965-08-21 23:10:00,0 +5388,1967-08-11 04:07:00,0 +6719,1968-06-09 19:37:00,0 +8645,1965-09-20 13:54:00,0 +3470,1966-05-08 04:35:00,0 +8740,1968-10-05 09:49:00,0 +3607,1965-01-24 06:43:00,0 +6866,1969-04-23 05:33:00,0 +2367,1967-11-08 23:42:00,0 +5195,1966-09-21 14:49:00,0 +4738,1966-03-28 20:05:00,0 +9038,1968-11-19 21:20:00,0 +148,1965-02-12 14:53:00,0 +930,1969-09-06 10:02:00,0 +4656,1969-06-03 02:05:00,0 +6042,1966-12-13 16:39:00,0 +77,1968-03-02 10:02:00,0 +4792,1965-08-12 06:46:00,0 +34,1965-06-23 23:31:00,0 +9325,1968-07-15 06:57:00,0 +1952,1969-07-26 21:30:00,0 +134,1968-08-28 16:30:00,0 +3044,1969-02-23 06:38:00,0 +9668,1969-01-13 09:27:00,0 +8064,1966-10-16 14:44:00,0 +9143,1969-04-16 13:40:00,0 +8446,1966-11-29 02:16:00,0 +2129,1966-03-18 20:23:00,0 +3089,1967-04-28 06:51:00,0 +742,1967-12-22 23:12:00,0 +4994,1966-02-21 01:33:00,0 +7959,1966-09-25 18:10:00,0 +1210,1967-02-03 08:52:00,0 +195,1968-09-30 10:43:00,0 +9843,1968-03-07 03:44:00,0 +3800,1969-04-10 05:01:00,0 +844,1966-01-21 02:55:00,0 +6854,1969-11-10 12:46:00,0 +9839,1968-03-07 23:11:00,0 +4315,1968-04-29 10:50:00,0 +1478,1966-12-27 09:37:00,0 +5359,1969-12-15 19:03:00,0 +366,1969-05-15 03:58:00,0 +3326,1965-09-19 00:11:00,0 +9835,1965-04-24 00:28:00,0 +521,1965-08-31 14:24:00,0 +3327,1967-04-11 00:35:00,0 +2585,1968-12-18 23:46:00,0 +8163,1966-11-06 21:44:00,0 +3187,1965-06-01 15:12:00,0 +56,1966-09-18 23:25:00,0 +3017,1966-08-01 21:30:00,0 +5113,1967-09-22 03:08:00,0 +5331,1966-11-01 05:38:00,0 +9082,1968-03-30 00:38:00,0 +1163,1968-03-02 07:30:00,0 +4364,1968-06-26 03:48:00,0 +1942,1967-07-18 04:50:00,0 +4915,1966-12-01 23:39:00,0 +4223,1968-05-20 19:51:00,0 +282,1969-10-15 06:00:00,0 +2435,1968-02-12 18:23:00,0 +2165,1968-07-11 11:40:00,0 +7343,1969-02-18 08:29:00,0 +4212,1969-02-19 18:16:00,0 +5416,1968-06-16 19:25:00,0 +9023,1969-07-17 23:14:00,0 +5504,1967-08-20 22:44:00,0 +3805,1965-12-16 16:03:00,0 +2315,1969-01-26 00:52:00,0 +6525,1969-02-12 07:13:00,0 +8090,1967-07-13 13:10:00,0 +7749,1968-08-24 03:45:00,0 +2377,1967-07-09 19:46:00,0 +8020,1969-09-28 10:00:00,0 +7187,1967-10-21 07:50:00,0 +6575,1968-03-20 05:10:00,0 +9814,1967-05-09 01:42:00,0 +4415,1966-05-26 17:33:00,0 +7328,1965-04-28 16:08:00,0 +2890,1967-05-20 02:03:00,0 +1818,1967-07-12 09:54:00,0 +4676,1969-05-06 01:40:00,0 +1890,1965-04-19 13:00:00,0 +3734,1967-05-23 10:34:00,0 +532,1967-10-22 00:40:00,0 +8854,1969-06-10 00:36:00,0 +1534,1968-04-10 04:20:00,0 +2971,1968-06-03 14:59:00,0 +3595,1965-04-26 09:07:00,0 +8090,1966-05-14 09:56:00,0 +1433,1966-07-03 09:04:00,0 +9925,1966-11-19 00:43:00,0 +4042,1969-03-10 02:21:00,0 +7656,1969-06-14 02:14:00,0 +1440,1968-04-24 11:19:00,0 +367,1967-10-11 04:36:00,0 +5074,1967-11-24 18:50:00,0 +4946,1968-06-06 16:10:00,0 +1751,1968-08-29 11:25:00,0 +9453,1969-09-16 00:02:00,0 +1457,1966-11-22 23:18:00,0 +3535,1968-11-09 08:46:00,0 +7993,1968-01-04 20:43:00,0 +5516,1966-03-24 05:42:00,0 +9788,1967-12-19 21:17:00,0 +6490,1966-06-09 05:42:00,0 +6913,1966-08-18 02:17:00,0 +4601,1968-09-20 06:37:00,0 +9151,1968-10-18 00:07:00,0 +3781,1967-06-15 17:28:00,0 +1245,1968-02-17 16:57:00,0 +9889,1965-11-20 08:43:00,0 +4209,1968-01-16 15:57:00,0 +4811,1966-11-13 05:48:00,0 +7446,1967-01-13 13:01:00,0 +5212,1969-12-20 09:29:00,0 +6145,1965-06-22 09:17:00,0 +1641,1968-05-10 21:05:00,0 +5115,1968-01-29 01:42:00,0 +9622,1968-07-17 12:53:00,0 +8445,1968-07-21 08:21:00,0 +4831,1969-12-09 14:43:00,0 +5295,1969-09-01 01:52:00,0 +373,1967-08-02 07:08:00,0 +1842,1967-08-21 05:37:00,0 +5851,1965-11-08 09:37:00,0 +7067,1969-07-05 20:48:00,0 +2856,1965-03-17 19:39:00,0 +4823,1967-09-09 10:03:00,0 +5510,1966-01-13 14:26:00,0 +3736,1966-06-22 16:38:00,0 +6466,1969-09-04 23:13:00,0 +9821,1967-07-29 05:44:00,0 +9262,1966-05-25 07:50:00,0 +9246,1967-04-03 04:02:00,0 +2327,1966-11-09 07:17:00,0 +5571,1965-03-12 03:44:00,0 +9049,1967-12-12 04:37:00,0 +1081,1969-05-08 05:55:00,0 +7531,1965-05-25 05:18:00,0 +4561,1967-06-20 23:44:00,0 +9403,1965-04-13 00:43:00,0 +8683,1969-02-04 18:33:00,0 +323,1968-09-22 08:19:00,0 +9659,1969-05-22 12:55:00,0 +4213,1967-08-16 11:56:00,0 +7535,1966-05-07 01:08:00,0 +5003,1968-06-29 16:47:00,0 +634,1969-10-14 12:21:00,0 +4581,1967-10-22 23:12:00,0 +8629,1965-06-21 07:57:00,0 +4279,1965-08-01 21:35:00,0 +4040,1969-10-11 09:37:00,0 +1101,1967-02-08 12:16:00,0 +6297,1969-06-18 05:32:00,0 +1112,1967-10-22 05:46:00,0 +6556,1969-05-08 07:23:00,0 +6993,1969-07-26 20:14:00,0 +1472,1967-03-18 13:29:00,0 +624,1969-10-18 18:52:00,0 +8232,1966-11-11 08:18:00,0 +9541,1966-08-05 03:17:00,0 +2230,1969-04-29 23:37:00,0 +1514,1965-12-11 14:35:00,0 +1770,1969-10-18 10:13:00,0 +5991,1965-05-17 11:05:00,0 +7204,1967-08-20 19:10:00,0 +3467,1965-07-01 21:49:00,0 +7919,1968-07-02 08:48:00,0 +274,1968-05-02 10:35:00,0 +6007,1965-05-07 19:42:00,0 +3302,1965-09-02 09:58:00,0 +4345,1967-09-20 03:51:00,0 +7455,1966-09-09 07:31:00,0 +713,1967-08-12 12:23:00,0 +2593,1966-05-16 03:37:00,0 +4599,1966-05-08 23:44:00,0 +4069,1965-11-26 11:08:00,0 +8889,1967-06-19 02:05:00,0 +2563,1965-07-17 06:22:00,0 +4910,1965-09-18 07:08:00,0 +8958,1967-04-11 02:22:00,0 +258,1966-09-04 10:03:00,0 +9408,1968-05-13 21:52:00,0 +3676,1965-08-22 08:38:00,0 +382,1966-08-21 05:27:00,0 +5967,1967-08-03 18:58:00,0 +4956,1965-12-16 09:33:00,0 +7914,1965-03-20 08:48:00,0 +4639,1965-01-29 20:28:00,0 +8631,1969-12-16 22:09:00,0 +1658,1967-06-15 19:37:00,0 +3069,1969-11-19 22:03:00,0 +8910,1965-01-28 10:17:00,0 +7223,1969-09-21 18:37:00,0 +4143,1968-11-08 08:13:00,0 +8016,1965-11-25 07:28:00,0 +2360,1967-09-21 16:00:00,0 +5516,1969-10-18 21:31:00,0 +8808,1965-07-30 04:50:00,0 +9020,1967-02-02 16:26:00,0 +5170,1965-10-15 16:44:00,0 +797,1966-06-10 04:36:00,0 +6792,1967-01-19 07:17:00,0 +6084,1968-03-26 22:31:00,0 +8644,1965-04-02 13:28:00,0 +4066,1969-02-15 15:59:00,0 +5925,1967-11-04 12:26:00,0 +7516,1965-08-19 20:08:00,0 +5819,1967-11-02 20:44:00,0 +2042,1967-05-17 15:17:00,0 +1446,1969-12-28 20:04:00,0 +7593,1967-12-02 23:27:00,0 +6247,1966-03-30 17:50:00,0 +1021,1969-04-27 02:04:00,0 +2859,1969-05-03 19:58:00,0 +9670,1967-06-06 10:35:00,0 +9049,1966-07-20 21:20:00,0 +6158,1967-01-09 00:27:00,0 +1659,1966-04-05 08:54:00,0 +7835,1968-05-23 08:26:00,0 +3808,1965-08-12 21:40:00,0 +510,1967-06-01 03:28:00,0 +628,1965-07-06 06:10:00,0 +1280,1969-07-18 18:09:00,0 +7484,1966-12-08 23:06:00,0 +1042,1966-03-25 17:47:00,0 +8996,1967-11-04 03:40:00,0 +1217,1969-12-15 06:44:00,0 +4042,1966-11-07 14:03:00,0 +3371,1966-11-03 07:11:00,0 +296,1969-01-15 17:47:00,0 +9239,1968-01-02 03:38:00,0 +5725,1967-06-26 23:38:00,0 +9370,1969-09-27 04:20:00,0 +3154,1968-05-30 07:36:00,0 +3919,1967-04-03 16:28:00,0 +4678,1969-04-07 16:14:00,0 +5557,1967-06-07 21:50:00,0 +3022,1969-04-01 23:27:00,0 +1495,1966-09-25 21:17:00,0 +9390,1966-09-28 20:43:00,0 +1802,1969-07-21 10:40:00,0 +5184,1965-05-30 21:36:00,0 +1841,1965-09-20 22:41:00,0 +512,1967-05-06 12:37:00,0 +6036,1969-02-28 00:40:00,0 +4197,1968-07-15 17:14:00,0 +2532,1968-07-24 13:37:00,0 +7929,1967-09-28 18:16:00,0 +1606,1968-02-28 03:31:00,0 +8711,1968-07-06 03:24:00,0 +4665,1967-06-16 20:25:00,0 +3168,1967-06-14 06:02:00,0 +4039,1965-05-10 05:05:00,0 +5654,1965-03-08 00:47:00,0 +3024,1965-09-03 19:42:00,0 +5119,1968-10-06 13:23:00,0 +2092,1967-04-19 12:10:00,0 +3620,1969-09-18 08:39:00,0 +5183,1965-03-25 10:24:00,0 +9982,1967-06-11 10:55:00,0 +1481,1969-09-14 08:00:00,0 +5320,1968-04-30 03:07:00,0 +7797,1968-01-16 10:11:00,0 +7078,1967-01-24 01:46:00,0 +1943,1966-07-22 21:56:00,0 +2327,1969-10-22 21:36:00,0 +7125,1969-12-16 23:00:00,0 +8496,1968-03-20 12:03:00,0 +2671,1969-05-26 19:58:00,0 +7287,1965-07-02 21:04:00,0 +9017,1966-04-03 16:43:00,0 +4727,1967-11-29 06:30:00,0 +7650,1965-10-24 15:22:00,0 +6215,1967-12-04 14:37:00,0 +6013,1968-06-14 15:34:00,0 +4,1969-06-10 13:23:00,0 +3435,1965-04-29 18:18:00,0 +2965,1966-03-01 12:21:00,0 +7663,1967-05-10 05:05:00,0 +122,1969-06-13 22:53:00,0 +1806,1969-07-30 19:08:00,0 +3294,1968-08-01 14:21:00,0 +8713,1968-10-16 23:57:00,0 +3497,1969-03-28 23:22:00,0 +2002,1969-03-21 17:02:00,0 +93,1969-09-09 17:08:00,0 +8256,1965-02-14 06:33:00,0 +983,1965-05-19 05:14:00,0 +4091,1969-12-21 00:23:00,0 +6489,1967-01-09 07:06:00,0 +4524,1968-05-31 21:10:00,0 +8257,1967-07-27 02:03:00,0 +490,1968-01-18 15:40:00,0 +7663,1967-02-22 17:14:00,0 +5157,1965-11-14 02:01:00,0 +2846,1968-12-16 10:08:00,0 +5773,1967-07-27 13:46:00,0 +6037,1965-10-18 12:17:00,0 +1982,1966-09-21 03:36:00,0 +8149,1966-04-14 00:42:00,0 +5324,1969-01-30 23:11:00,0 +4682,1969-07-27 23:27:00,0 +7907,1969-03-22 21:03:00,0 +9925,1965-06-17 17:13:00,0 +4559,1966-03-07 01:50:00,0 +9480,1969-03-25 00:34:00,0 +8841,1966-06-19 07:57:00,0 +6549,1965-08-12 13:59:00,0 +6226,1969-12-20 16:33:00,0 +1037,1965-02-16 05:12:00,0 +2937,1966-02-17 18:16:00,0 +8300,1966-01-24 07:23:00,0 +873,1969-01-21 23:18:00,0 +9588,1967-11-11 11:28:00,0 +969,1969-07-03 12:35:00,0 +5554,1967-01-17 11:17:00,0 +7068,1968-09-09 02:29:00,0 +9832,1967-05-17 17:20:00,0 +9966,1965-10-02 06:36:00,0 +5240,1968-12-21 13:48:00,0 +7221,1965-10-30 11:45:00,0 +153,1968-05-22 21:47:00,0 +6016,1969-08-16 01:26:00,0 +8436,1966-02-02 08:31:00,0 +7668,1968-10-20 07:45:00,0 +997,1969-10-10 06:30:00,0 +7873,1966-08-12 01:30:00,0 +9038,1966-10-11 20:28:00,0 +3404,1969-09-29 04:00:00,0 +9373,1969-02-04 00:59:00,0 +35,1969-09-03 13:47:00,0 +2546,1966-10-31 15:54:00,0 +2257,1968-03-20 17:46:00,0 +6991,1968-04-02 01:04:00,0 +4206,1968-08-15 22:54:00,0 +2303,1968-10-20 13:08:00,0 +1837,1965-07-22 15:39:00,0 +8921,1968-08-30 20:53:00,0 +3139,1965-01-10 08:16:00,0 +7052,1968-10-11 07:09:00,0 +1876,1965-09-04 09:41:00,0 +2974,1969-08-22 07:43:00,0 +853,1968-04-03 19:27:00,0 +6998,1968-11-24 21:49:00,0 +4380,1965-09-28 03:28:00,0 +1650,1967-08-13 02:30:00,0 +7105,1967-02-24 09:47:00,0 +7939,1969-06-14 19:16:00,0 +9999,1965-06-03 03:20:00,0 +1125,1966-10-12 22:26:00,0 +2075,1965-11-22 15:19:00,0 +6367,1965-03-01 05:37:00,0 +2938,1968-10-03 13:42:00,0 +8772,1969-02-20 00:17:00,0 +3209,1966-09-03 02:56:00,0 +7603,1967-11-21 05:43:00,0 +8640,1965-01-11 00:53:00,0 +7654,1966-08-19 10:19:00,0 +8863,1967-08-03 13:41:00,0 +61,1967-07-09 09:35:00,0 +2772,1969-01-04 00:17:00,0 +2894,1966-03-29 16:00:00,0 +7446,1967-05-11 02:43:00,0 +1512,1967-05-19 10:24:00,0 +582,1968-01-22 23:57:00,0 +6447,1966-11-09 01:06:00,0 +8351,1965-05-21 18:38:00,0 +4580,1968-03-22 13:24:00,0 +3492,1965-02-10 15:15:00,0 +9841,1969-07-28 11:42:00,0 +2582,1968-03-25 10:57:00,0 +5277,1965-10-29 19:46:00,0 +826,1969-03-28 17:16:00,0 +5074,1965-04-04 17:34:00,0 +6306,1966-12-16 05:35:00,0 +6757,1965-12-26 05:50:00,0 +3228,1966-03-15 07:55:00,0 +6387,1969-06-05 07:47:00,0 +4540,1968-03-26 01:34:00,0 +7417,1968-07-14 09:43:00,0 +1812,1968-08-21 01:21:00,0 +8457,1965-02-02 23:04:00,0 +6084,1966-11-11 20:03:00,0 +9861,1967-01-26 14:36:00,0 +1522,1968-11-23 09:55:00,0 +4280,1967-02-18 11:06:00,0 +7994,1965-10-22 10:29:00,0 +6101,1965-11-10 16:47:00,0 +8747,1966-03-31 22:47:00,0 +4511,1969-05-29 00:22:00,0 +2291,1969-03-11 03:26:00,0 +6721,1969-11-04 23:03:00,0 +9973,1965-05-30 17:57:00,0 +6720,1966-09-15 21:28:00,0 +7261,1967-03-29 13:00:00,0 +1468,1968-02-22 10:09:00,0 +8312,1968-07-31 23:57:00,0 +2528,1967-01-26 08:34:00,0 +4606,1969-03-09 08:56:00,0 +9168,1965-03-02 23:57:00,0 +8824,1967-08-02 00:33:00,0 +2762,1967-12-16 20:46:00,0 +770,1967-06-04 19:25:00,0 +5400,1965-01-22 02:23:00,0 +5713,1969-01-07 08:07:00,0 +5755,1968-02-15 14:10:00,0 +1153,1965-11-03 18:02:00,0 +7890,1965-06-05 08:15:00,0 +6610,1966-02-06 15:28:00,0 +9700,1969-02-11 08:33:00,0 +30,1968-01-27 13:08:00,0 +9863,1969-03-28 22:07:00,0 +6690,1965-04-07 12:41:00,0 +3824,1968-12-27 09:18:00,0 +9898,1966-06-10 20:30:00,0 +4882,1968-03-04 14:26:00,0 +684,1968-07-13 09:23:00,0 +1200,1965-12-21 23:05:00,0 +3902,1965-11-18 19:28:00,0 +3813,1967-07-21 14:31:00,0 +411,1965-09-15 21:13:00,0 +4879,1968-02-05 19:36:00,0 +3356,1965-07-06 09:28:00,0 +4342,1969-11-29 21:50:00,0 +5062,1968-03-25 11:55:00,0 +6432,1967-09-07 15:15:00,0 +9801,1968-05-04 17:44:00,0 +3479,1966-08-16 21:39:00,0 +5125,1966-11-01 22:20:00,0 +3848,1967-10-17 09:02:00,0 +6769,1967-06-19 09:45:00,0 +7770,1969-11-23 16:32:00,0 +7851,1969-12-22 16:57:00,0 +6196,1965-11-03 03:20:00,0 +1136,1967-09-30 00:16:00,0 +8666,1968-04-01 13:28:00,0 +6338,1969-12-16 20:31:00,0 +2997,1966-11-26 10:42:00,0 +7055,1969-12-14 11:28:00,0 +4783,1965-12-06 16:43:00,0 +8686,1965-06-08 15:54:00,0 +9428,1965-06-24 23:31:00,0 +515,1967-10-02 21:09:00,0 +6903,1965-09-03 04:24:00,0 +851,1966-01-19 07:14:00,0 +6846,1965-08-14 19:07:00,0 +1313,1967-05-22 10:36:00,0 +4872,1969-08-30 14:38:00,0 +6100,1969-06-29 11:23:00,0 +2610,1967-10-27 10:25:00,0 +899,1965-11-08 02:12:00,0 +1471,1968-02-27 07:33:00,0 +228,1965-09-25 05:56:00,0 +2158,1967-07-02 15:15:00,0 +7903,1965-04-22 14:35:00,0 +7280,1969-06-10 06:08:00,0 +555,1966-09-12 06:13:00,0 +7467,1968-12-12 17:43:00,0 +5617,1968-09-26 04:42:00,0 +2936,1968-11-11 23:14:00,0 +4242,1967-01-12 03:38:00,0 +1370,1968-07-10 11:11:00,0 +4015,1968-06-30 03:30:00,0 +2104,1968-03-11 14:51:00,0 +3777,1966-01-09 07:53:00,0 +4154,1969-12-05 08:21:00,0 +1015,1968-12-02 13:58:00,0 +5126,1966-04-15 14:22:00,0 +5642,1965-10-13 23:26:00,0 +3960,1969-01-01 14:18:00,0 +832,1968-07-26 16:54:00,0 +2803,1967-10-14 01:53:00,0 +8815,1969-05-01 10:29:00,0 +9459,1967-09-07 11:30:00,0 +671,1969-07-18 16:33:00,0 +8108,1966-05-26 10:45:00,0 +1152,1965-06-09 17:34:00,0 +9883,1968-10-02 21:37:00,0 +4292,1969-06-05 13:10:00,0 +350,1965-09-28 01:36:00,0 +6835,1969-09-28 23:07:00,0 +6142,1967-06-17 11:35:00,0 +8186,1968-03-31 21:20:00,0 +337,1967-11-07 14:46:00,0 +5357,1967-05-30 11:36:00,0 +3422,1965-02-09 08:59:00,0 +16,1967-10-30 17:46:00,0 +5728,1969-03-29 12:30:00,0 +9549,1968-11-23 05:14:00,0 +1549,1965-04-14 03:32:00,0 +8852,1969-05-29 06:57:00,0 +2768,1966-08-15 09:02:00,0 +4886,1966-06-05 21:52:00,0 +7457,1969-02-21 04:11:00,0 +7495,1969-04-02 14:11:00,0 +5102,1966-05-12 07:45:00,0 +3826,1966-06-19 12:07:00,0 +1372,1967-01-09 15:30:00,0 +2704,1967-08-14 07:49:00,0 +5839,1969-07-23 00:09:00,0 +8894,1968-02-02 00:05:00,0 +393,1965-01-03 00:48:00,0 +6227,1966-05-07 09:46:00,0 +6515,1968-11-15 12:52:00,0 +7233,1968-06-05 21:30:00,0 +7486,1966-11-10 20:03:00,0 +4588,1969-04-11 23:26:00,0 +2924,1969-09-14 16:32:00,0 +4678,1966-12-22 08:25:00,0 +1397,1968-02-02 15:20:00,0 +6251,1965-05-24 09:12:00,0 +8026,1967-04-09 16:59:00,0 +3162,1967-06-02 20:07:00,0 +1433,1965-03-10 04:39:00,0 +6972,1969-12-10 07:30:00,0 +1930,1968-11-24 18:03:00,0 +3560,1965-08-20 14:46:00,0 +8364,1967-10-16 03:37:00,0 +5748,1967-06-08 01:33:00,0 +7933,1966-05-01 15:21:00,0 +3160,1967-07-18 01:29:00,0 +4676,1965-05-13 04:22:00,0 +4961,1968-02-09 16:47:00,0 +1286,1968-01-23 17:27:00,0 +4062,1966-09-06 23:40:00,0 +5514,1965-02-25 22:42:00,0 +1535,1966-10-15 00:30:00,0 +7850,1967-12-30 12:56:00,0 +1953,1969-07-10 22:26:00,0 +512,1966-03-23 04:15:00,0 +7250,1966-12-02 12:40:00,0 +2743,1969-08-27 22:30:00,0 +4356,1966-10-19 12:17:00,0 +5224,1969-03-19 17:46:00,0 +5983,1968-11-23 23:10:00,0 +258,1967-01-23 05:56:00,0 +8627,1968-11-22 19:43:00,0 +6640,1965-11-18 05:05:00,0 +7022,1965-11-28 09:52:00,0 +6786,1967-06-09 15:27:00,0 +8166,1965-04-30 10:02:00,0 +5587,1966-07-25 05:24:00,0 +8723,1967-06-03 04:19:00,0 +4586,1967-10-29 09:46:00,0 +9557,1969-05-03 16:04:00,0 +9549,1965-04-27 23:11:00,0 +4371,1969-05-31 17:28:00,0 +7683,1968-12-21 21:42:00,0 +1077,1967-02-17 10:26:00,0 +5410,1969-08-08 22:39:00,0 +5321,1965-09-21 12:29:00,0 +5751,1966-05-05 02:33:00,0 +5572,1965-02-04 08:42:00,0 +5287,1968-04-27 04:23:00,0 +6908,1966-06-10 15:21:00,0 +9246,1968-12-30 21:10:00,0 +524,1968-05-06 01:54:00,0 +2567,1965-03-10 05:16:00,0 +7716,1965-11-30 06:36:00,0 +7238,1968-07-19 03:49:00,0 +6906,1967-03-30 01:43:00,0 +5593,1966-08-02 00:46:00,0 +1754,1965-11-29 05:19:00,0 +2132,1969-06-08 22:39:00,0 +2214,1968-11-04 17:43:00,0 +3895,1965-08-29 23:56:00,0 +4063,1965-04-13 19:45:00,0 +3489,1969-08-31 00:31:00,0 +2444,1966-02-13 19:28:00,0 +7,1968-07-14 02:45:00,0 +235,1968-09-23 02:02:00,0 +3755,1967-05-27 23:08:00,0 +2088,1965-12-07 16:39:00,0 +3123,1969-11-01 10:21:00,0 +5642,1967-05-20 05:26:00,0 +6885,1967-01-07 13:56:00,0 +4080,1966-11-05 00:57:00,0 +7700,1969-04-13 05:13:00,0 +5242,1967-07-25 11:50:00,0 +8735,1965-04-03 00:12:00,0 +5638,1966-03-23 14:27:00,0 +1884,1965-01-27 13:02:00,0 +8216,1965-01-24 04:48:00,0 +1400,1966-10-07 05:31:00,0 +8819,1965-08-05 03:44:00,0 +4907,1969-02-09 10:43:00,0 +932,1965-02-11 20:43:00,0 +9902,1966-01-15 20:59:00,0 +544,1967-02-18 12:09:00,0 +356,1968-01-09 21:01:00,0 +2476,1967-11-11 08:13:00,0 +649,1969-12-03 21:32:00,0 +8091,1967-11-06 10:22:00,0 +6430,1966-05-11 23:10:00,0 +1969,1969-01-31 04:33:00,0 +4010,1965-06-06 07:20:00,0 +2535,1969-11-26 19:49:00,0 +3000,1969-05-25 11:23:00,0 +3535,1968-03-03 08:31:00,0 +4431,1965-11-24 03:42:00,0 +5834,1969-07-11 11:49:00,0 +2528,1965-11-23 10:26:00,0 +8156,1965-02-06 14:22:00,0 +261,1968-02-08 13:09:00,0 +2105,1966-11-20 12:06:00,0 +1780,1966-04-18 09:39:00,0 +5402,1968-11-12 10:31:00,0 +9569,1969-09-04 14:31:00,0 +7631,1968-02-28 18:11:00,0 +7209,1965-02-27 15:56:00,0 +2790,1965-06-23 15:06:00,0 +7755,1966-10-07 04:24:00,0 +8924,1965-10-26 08:13:00,0 +9548,1968-03-15 15:41:00,0 +1553,1967-06-27 03:45:00,0 +2558,1968-09-03 14:40:00,0 +3368,1968-10-02 13:26:00,0 +4052,1967-09-01 02:05:00,0 +2894,1965-10-17 06:55:00,0 +1383,1966-06-28 04:45:00,0 +3804,1966-03-01 23:51:00,0 +2833,1965-11-02 08:35:00,0 +7014,1968-02-16 14:52:00,0 +330,1968-10-18 04:48:00,0 +1913,1965-04-16 21:54:00,0 +9025,1968-02-18 12:26:00,0 +4790,1968-01-24 19:05:00,0 +8226,1965-01-22 20:26:00,0 +6043,1966-04-21 15:32:00,0 +6274,1969-12-16 17:40:00,0 +6264,1966-04-04 08:50:00,0 +7384,1965-04-29 04:09:00,0 +9444,1968-03-11 22:14:00,0 +3956,1967-10-16 08:58:00,0 +4742,1969-09-16 22:49:00,0 +7289,1968-05-07 22:44:00,0 +2865,1968-07-29 22:28:00,0 +4121,1966-12-31 13:26:00,0 +7407,1966-07-16 05:19:00,0 +9152,1969-06-05 02:29:00,0 +2620,1966-12-28 09:30:00,0 +3695,1966-09-18 09:51:00,0 +5502,1965-04-25 15:14:00,0 +9032,1968-03-03 12:56:00,0 +2415,1967-05-15 09:25:00,0 +8442,1968-06-18 10:17:00,0 +8355,1968-01-18 07:27:00,0 +1933,1965-05-08 06:57:00,0 +9838,1966-05-27 11:54:00,0 +6896,1969-04-23 08:20:00,0 +2342,1968-10-16 20:22:00,0 +9064,1969-09-29 20:03:00,0 +7955,1967-07-27 15:39:00,0 +7661,1965-01-05 02:58:00,0 +5430,1966-03-29 01:05:00,0 +8589,1966-07-28 08:26:00,0 +2465,1968-11-29 20:58:00,0 +2714,1967-09-29 06:52:00,0 +5061,1968-06-04 01:16:00,0 +3473,1965-12-02 13:11:00,0 +7272,1965-05-14 21:58:00,0 +3225,1965-09-27 08:16:00,0 +1485,1965-06-07 04:38:00,0 +9330,1969-08-12 06:22:00,0 +2535,1968-01-25 07:17:00,0 +4343,1967-08-27 18:47:00,0 +9175,1966-05-12 11:20:00,0 +233,1969-05-08 09:04:00,0 +3610,1965-02-10 03:08:00,0 +3011,1967-07-03 21:43:00,0 +1632,1965-11-01 18:47:00,0 +6801,1967-04-15 10:22:00,0 +1466,1965-06-14 15:34:00,0 +2476,1968-12-27 19:35:00,0 +5276,1966-09-22 06:40:00,0 +5467,1966-08-06 04:53:00,0 +9238,1968-07-18 14:26:00,0 +1873,1965-06-01 22:23:00,0 +6008,1966-12-24 06:33:00,0 +2013,1966-06-29 09:37:00,0 +1548,1966-03-28 15:01:00,0 +7173,1967-10-05 08:09:00,0 +6381,1965-01-26 21:00:00,0 +1166,1966-03-11 03:07:00,0 +3326,1966-09-02 16:59:00,0 +525,1966-06-27 06:16:00,0 +7147,1966-10-20 23:18:00,0 +2515,1966-10-03 02:41:00,0 +4700,1966-11-15 03:38:00,0 +3186,1965-11-22 18:46:00,0 +5694,1968-10-06 20:19:00,0 +5402,1969-11-16 16:19:00,0 +5105,1969-05-22 13:22:00,0 +68,1965-12-14 14:18:00,0 +3786,1967-05-25 05:37:00,0 +483,1968-10-17 10:59:00,0 +5628,1969-07-31 06:53:00,0 +869,1967-09-24 00:25:00,0 +4577,1969-05-30 00:01:00,0 +7129,1968-10-21 16:46:00,0 +7424,1966-01-25 13:33:00,0 +4342,1965-06-27 13:52:00,0 +4171,1968-07-19 15:03:00,0 +4698,1969-07-18 00:22:00,0 +574,1967-01-27 01:34:00,0 +8663,1968-03-11 12:30:00,0 +962,1966-06-17 16:27:00,0 +1757,1969-09-08 06:16:00,0 +6708,1967-11-08 02:05:00,0 +6178,1966-08-06 13:39:00,0 +5955,1967-09-05 00:45:00,0 +8401,1965-10-12 13:56:00,0 +9883,1969-11-15 16:50:00,0 +5384,1969-07-14 05:15:00,0 +7370,1967-08-24 23:35:00,0 +1969,1967-12-05 22:28:00,0 +5119,1968-09-22 14:57:00,0 +9337,1969-11-23 17:39:00,0 +7594,1968-05-28 18:02:00,0 +9279,1969-05-02 11:21:00,0 +8151,1966-07-30 02:54:00,0 +1007,1966-05-16 09:26:00,0 +9416,1966-11-07 01:42:00,0 +6954,1968-10-05 14:35:00,0 +9232,1969-03-05 22:39:00,0 +662,1969-04-19 11:09:00,0 +9868,1967-02-08 12:29:00,0 +7078,1966-04-03 11:35:00,0 +1361,1965-08-01 08:00:00,0 +9924,1965-03-20 07:26:00,0 +9507,1966-12-03 02:31:00,0 +8504,1969-10-01 22:10:00,0 +3838,1965-11-02 18:22:00,0 +2033,1968-07-13 22:09:00,0 +8065,1969-09-10 20:36:00,0 +8360,1966-05-28 11:21:00,0 +9784,1966-05-11 15:24:00,0 +6725,1969-09-02 20:51:00,0 +384,1965-01-19 23:14:00,0 +4512,1965-11-12 08:54:00,0 +8998,1966-08-20 13:18:00,0 +1291,1969-03-30 23:04:00,0 +8373,1969-07-30 15:20:00,0 +9546,1967-11-28 20:52:00,0 +3935,1966-08-16 08:42:00,0 +1923,1968-09-12 12:29:00,0 +9002,1966-12-21 10:05:00,0 +9211,1967-08-13 08:54:00,0 +5062,1965-10-23 16:26:00,0 +8379,1965-06-10 11:56:00,0 +8305,1968-12-15 06:04:00,0 +3195,1968-04-30 20:42:00,0 +389,1969-07-23 12:55:00,0 +8341,1967-10-24 13:27:00,0 +9871,1966-08-28 02:51:00,0 +3435,1967-06-12 17:54:00,0 +8111,1969-09-29 17:14:00,0 +8261,1967-08-01 21:49:00,0 +945,1967-04-01 03:50:00,0 +2642,1967-12-08 10:43:00,0 +3241,1966-01-12 21:54:00,0 +3685,1967-05-02 08:54:00,0 +7926,1966-08-17 08:42:00,0 +2615,1968-05-17 04:34:00,0 +5983,1969-04-23 16:42:00,0 +4381,1968-02-05 04:24:00,0 +1844,1969-02-25 17:32:00,0 +2187,1965-10-16 03:23:00,0 +3803,1967-11-09 16:00:00,0 +5082,1966-09-29 12:57:00,0 +5531,1968-02-04 18:25:00,0 +1672,1967-09-21 22:05:00,0 +8501,1967-03-18 17:48:00,0 +9536,1969-09-02 10:07:00,0 +7472,1968-01-16 05:46:00,0 +5191,1966-01-07 17:38:00,0 +3254,1966-01-21 19:06:00,0 +5150,1965-11-10 07:39:00,0 +9343,1969-04-09 08:19:00,0 +825,1969-07-26 19:23:00,0 +7265,1965-12-04 14:47:00,0 +4109,1965-08-06 04:38:00,0 +5945,1968-09-05 04:46:00,0 +5760,1967-11-11 07:10:00,0 +2486,1969-01-22 19:49:00,0 +7795,1966-12-23 15:11:00,0 +1749,1969-06-26 09:22:00,0 +403,1965-01-15 23:06:00,0 +6524,1969-05-18 10:10:00,0 +6336,1967-07-15 15:04:00,0 +896,1968-05-06 10:08:00,0 +7834,1969-12-04 04:44:00,0 +5825,1967-10-14 01:06:00,0 +4434,1966-06-18 06:56:00,0 +1539,1966-08-01 22:55:00,0 +5394,1966-08-26 16:21:00,0 +3592,1966-04-24 05:09:00,0 +1063,1967-06-09 16:11:00,0 +1724,1969-12-31 11:01:00,0 +9727,1968-03-29 16:46:00,0 +6870,1968-01-31 04:03:00,0 +2502,1968-10-03 00:05:00,0 +7717,1969-05-16 02:20:00,0 +8453,1965-10-13 23:36:00,0 +8623,1967-08-22 13:18:00,0 +7721,1967-09-24 03:38:00,0 +6099,1969-09-29 01:56:00,0 +7593,1967-07-10 13:41:00,0 +442,1965-11-11 06:17:00,0 +6758,1967-09-18 06:30:00,0 +4873,1969-04-22 18:04:00,0 +5376,1968-02-12 02:28:00,0 +932,1966-04-02 04:42:00,0 +7917,1968-08-19 17:12:00,0 +8089,1965-02-16 17:40:00,0 +3089,1968-05-22 23:12:00,0 +3293,1965-05-19 06:33:00,0 +9204,1967-07-22 12:05:00,0 +6902,1967-07-07 15:02:00,0 +90,1965-08-17 14:35:00,0 +586,1965-09-25 17:49:00,0 +7325,1965-07-17 07:17:00,0 +6767,1969-10-02 16:33:00,0 +982,1966-10-28 13:18:00,0 +3266,1965-07-13 06:50:00,0 +2290,1965-04-17 01:41:00,0 +185,1966-02-03 22:17:00,0 +2009,1967-09-24 07:57:00,0 +3061,1968-09-02 08:48:00,0 +9442,1966-02-03 15:28:00,0 +8507,1969-05-25 05:04:00,0 +8546,1967-02-14 09:05:00,0 +7979,1966-02-04 21:07:00,0 +7128,1969-11-06 00:10:00,0 +6740,1969-09-19 18:36:00,0 +8468,1967-09-16 09:49:00,0 +8572,1967-04-03 14:29:00,0 +5659,1968-07-31 02:47:00,0 +1223,1969-08-14 21:59:00,0 +1848,1968-07-05 12:42:00,0 +813,1965-06-23 16:33:00,0 +2763,1969-07-12 19:12:00,0 +6047,1965-03-07 14:28:00,0 +3159,1965-12-01 05:34:00,0 +4640,1966-09-20 19:13:00,0 +9242,1965-08-27 16:04:00,0 +5295,1965-03-18 12:01:00,0 +8465,1965-04-09 04:44:00,0 +7445,1965-07-27 10:54:00,0 +2383,1969-02-07 14:32:00,0 +2720,1969-06-13 21:37:00,0 +8521,1968-03-26 07:15:00,0 +5417,1969-04-16 11:34:00,0 +6267,1966-05-25 11:22:00,0 +6365,1965-10-24 06:56:00,0 +7957,1966-02-08 17:16:00,0 +302,1968-07-14 08:47:00,0 +3591,1968-01-17 17:40:00,0 +4303,1965-08-02 22:35:00,0 +7647,1968-07-14 01:10:00,0 +840,1967-09-14 06:29:00,0 +6388,1967-09-21 21:47:00,0 +1453,1965-05-13 19:30:00,0 +9902,1966-08-15 19:13:00,0 +1320,1965-07-29 00:47:00,0 +1270,1966-01-12 18:56:00,0 +5832,1966-04-13 20:38:00,0 +9305,1965-09-26 10:17:00,0 +6385,1968-04-06 15:39:00,0 +4509,1966-10-29 17:53:00,0 +4969,1966-05-18 08:42:00,0 +6984,1968-03-14 07:31:00,0 +232,1965-02-23 16:15:00,0 +5803,1965-12-12 23:46:00,0 +7261,1967-07-04 09:27:00,0 +4567,1966-04-24 13:23:00,0 +5941,1966-03-06 21:36:00,0 +6512,1965-05-02 17:50:00,0 +9820,1969-05-04 11:26:00,0 +8148,1968-01-21 20:04:00,0 +7721,1966-10-14 11:45:00,0 +7616,1966-10-30 15:46:00,0 +6828,1966-02-17 18:37:00,0 +982,1967-07-03 21:55:00,0 +9405,1965-08-14 23:17:00,0 +5098,1969-08-23 19:16:00,0 +1589,1967-08-05 18:43:00,0 +6875,1966-03-02 18:26:00,0 +9178,1967-07-28 23:24:00,0 +7330,1968-02-18 21:35:00,0 +8370,1968-11-07 20:50:00,0 +2834,1967-05-14 17:08:00,0 +4997,1968-06-28 18:58:00,0 +3731,1967-03-17 18:59:00,0 +9977,1966-11-07 16:36:00,0 +5060,1965-09-09 20:10:00,0 +6795,1967-10-02 07:19:00,0 +4401,1965-11-10 19:46:00,0 +2744,1967-09-20 20:36:00,0 +4370,1966-12-12 18:45:00,0 +7704,1968-01-30 00:19:00,0 +5255,1968-12-25 22:31:00,0 +7770,1967-09-30 02:04:00,0 +3030,1969-05-29 12:43:00,0 +1788,1966-04-24 09:08:00,0 +49,1967-03-11 03:58:00,0 +2574,1969-07-19 05:50:00,0 +3841,1965-10-17 14:11:00,0 +6212,1968-11-16 14:55:00,0 +4925,1969-06-20 12:42:00,0 +1761,1965-08-10 06:09:00,0 +9782,1965-04-05 21:06:00,0 +8196,1966-06-23 07:06:00,0 +1147,1967-02-05 07:29:00,0 +9295,1967-08-29 13:27:00,0 +7304,1968-12-12 17:14:00,0 +4748,1969-04-12 03:20:00,0 +9392,1969-10-14 01:13:00,0 +4545,1968-02-19 17:54:00,0 +2419,1966-06-19 15:10:00,0 +4642,1968-07-30 14:38:00,0 +8258,1966-04-26 12:41:00,0 +7265,1965-01-13 12:18:00,0 +9897,1969-09-30 12:42:00,0 +6135,1966-05-13 01:46:00,0 +7950,1965-12-20 14:28:00,0 +7381,1965-12-29 03:00:00,0 +1831,1966-12-25 07:33:00,0 +4034,1965-04-27 11:13:00,0 +9121,1968-12-04 02:29:00,0 +4582,1968-07-31 15:54:00,0 +6348,1965-05-17 15:47:00,0 +1700,1966-04-23 14:24:00,0 +9659,1966-12-01 09:48:00,0 +4158,1965-11-05 08:57:00,0 +7653,1966-02-12 00:37:00,0 +6977,1965-09-02 02:04:00,0 +3111,1965-07-12 07:49:00,0 +1079,1965-11-22 09:36:00,0 +5449,1967-03-23 02:10:00,0 +623,1966-11-23 19:26:00,0 +1880,1967-11-09 02:20:00,0 +3532,1965-11-23 23:56:00,0 +8520,1966-10-25 13:24:00,0 +2628,1968-04-27 18:27:00,0 +6985,1969-05-13 18:41:00,0 +1607,1967-02-18 08:47:00,0 +9486,1965-04-23 23:57:00,0 +5628,1965-06-09 11:32:00,0 +3090,1968-10-18 14:05:00,0 +9265,1965-11-27 15:32:00,0 +6326,1966-04-19 21:58:00,0 +1492,1967-11-21 00:37:00,0 +4737,1967-12-16 12:34:00,0 +1597,1965-02-04 09:38:00,0 +2625,1965-05-23 01:35:00,0 +6459,1968-10-04 21:03:00,0 +2455,1965-09-12 02:18:00,0 +1160,1965-04-18 02:15:00,0 +661,1967-06-19 11:26:00,0 +6889,1969-08-16 07:00:00,0 +4139,1969-04-20 22:24:00,0 +6815,1968-06-28 03:48:00,0 +1800,1968-12-06 22:28:00,0 +7265,1965-04-20 14:49:00,0 +1580,1965-07-26 07:36:00,0 +4507,1966-12-18 01:19:00,0 +2578,1965-06-13 15:51:00,0 +8940,1965-11-21 12:47:00,0 +6137,1966-10-05 21:21:00,0 +2691,1967-09-27 02:53:00,0 +5149,1966-06-08 13:25:00,0 +1321,1967-03-20 19:58:00,0 +7564,1965-08-19 15:52:00,0 +5697,1967-10-13 09:42:00,0 +8217,1968-02-13 13:00:00,0 +309,1969-10-15 04:24:00,0 +2078,1967-03-06 21:09:00,0 +9106,1967-05-22 17:39:00,0 +7216,1966-07-26 14:48:00,0 +4228,1967-09-06 10:17:00,0 +5930,1968-09-12 07:40:00,0 +7923,1968-02-25 23:29:00,0 +9531,1969-01-01 02:20:00,0 +3887,1968-09-13 01:43:00,0 +1675,1965-11-04 14:33:00,0 +476,1966-11-14 17:17:00,0 +2358,1967-01-11 05:07:00,0 +7235,1967-05-09 01:15:00,0 +4360,1968-12-21 04:14:00,0 +5217,1967-08-13 09:14:00,0 +3986,1966-06-22 06:31:00,0 +2722,1968-03-01 01:49:00,0 +5684,1966-04-16 23:00:00,0 +889,1969-10-01 06:31:00,0 +6404,1965-11-10 07:48:00,0 +1072,1969-03-12 18:19:00,0 +8568,1966-11-03 05:12:00,0 +8222,1969-02-16 05:27:00,0 +9071,1968-03-28 05:47:00,0 +7815,1968-02-14 00:50:00,0 +7416,1969-06-01 16:00:00,0 +9103,1965-11-14 11:51:00,0 +364,1967-08-30 00:59:00,0 +8785,1967-01-15 12:06:00,0 +2477,1968-01-19 00:56:00,0 +882,1965-12-08 06:12:00,0 +943,1969-01-03 00:06:00,0 +3420,1965-12-07 19:51:00,0 +5235,1965-12-30 18:34:00,0 +4410,1967-10-26 12:35:00,0 +903,1968-02-10 09:59:00,0 +8215,1969-03-04 03:58:00,0 +7839,1969-02-04 15:44:00,0 +176,1967-06-29 22:12:00,0 +748,1968-10-07 13:24:00,0 +6679,1969-06-04 11:07:00,0 +4930,1968-01-12 01:55:00,0 +6046,1967-05-09 12:00:00,0 +9579,1969-01-20 20:39:00,0 +4021,1969-10-22 16:37:00,0 +4245,1966-10-06 06:49:00,0 +2084,1968-01-15 04:43:00,0 +9027,1968-02-07 17:33:00,0 +513,1968-07-11 15:27:00,0 +6891,1966-07-05 17:46:00,0 +2671,1966-10-05 07:06:00,0 +8899,1969-10-22 19:21:00,0 +2208,1965-01-19 20:35:00,0 +3232,1968-08-08 03:38:00,0 +8901,1969-03-15 14:14:00,0 +9854,1967-09-05 01:56:00,0 +1432,1969-03-09 09:06:00,0 +6350,1965-07-08 05:31:00,0 +3750,1966-11-27 20:48:00,0 +9596,1965-04-16 19:21:00,0 +8591,1968-03-21 05:13:00,0 +1178,1969-02-17 06:45:00,0 +8687,1967-11-25 17:40:00,0 +802,1969-01-09 23:23:00,0 +704,1965-06-01 10:09:00,0 +5876,1966-06-18 22:45:00,0 +376,1966-11-28 22:15:00,0 +5724,1968-08-16 14:01:00,0 +1234,1965-06-17 23:17:00,0 +1119,1968-07-03 14:57:00,0 +8675,1966-03-11 12:50:00,0 +7700,1968-10-06 18:00:00,0 +3728,1967-09-19 04:21:00,0 +2899,1965-06-08 04:50:00,0 +9959,1965-03-25 10:24:00,0 +9748,1969-08-27 04:45:00,0 +7713,1965-10-02 14:06:00,0 +8693,1967-11-01 22:52:00,0 +7958,1969-12-12 13:56:00,0 +3407,1969-09-23 12:06:00,0 +5951,1965-03-11 21:53:00,0 +3591,1966-01-25 12:38:00,0 +163,1967-01-13 10:11:00,0 +1958,1969-04-10 21:53:00,0 +8220,1966-07-11 17:58:00,0 +6720,1967-05-20 07:20:00,0 +6373,1968-05-05 14:56:00,0 +4979,1968-08-14 20:33:00,0 +4186,1967-08-31 12:19:00,0 +9716,1965-03-30 23:34:00,0 +5092,1967-03-25 21:21:00,0 +3442,1966-05-21 22:38:00,0 +7642,1967-09-05 16:31:00,0 +5740,1968-10-08 07:13:00,0 +6820,1968-11-03 10:28:00,0 +3595,1967-01-16 08:03:00,0 +6315,1968-04-21 03:02:00,0 +3071,1966-01-01 23:50:00,0 +5196,1969-03-07 02:02:00,0 +4212,1968-11-04 04:02:00,0 +471,1969-08-27 10:35:00,0 +4291,1969-10-29 20:35:00,0 +9273,1966-08-16 07:15:00,0 +1895,1968-03-13 12:06:00,0 +3863,1966-01-31 13:52:00,0 +7141,1967-12-02 09:16:00,0 +979,1968-05-26 01:00:00,0 +9802,1969-08-27 00:43:00,0 +9025,1968-11-13 13:52:00,0 +3508,1969-12-05 13:23:00,0 +3774,1966-09-25 08:39:00,0 +1289,1965-08-01 11:31:00,0 +5446,1967-09-30 07:33:00,0 +3791,1968-04-27 01:16:00,0 +3469,1967-12-20 15:26:00,0 +9387,1965-03-08 13:58:00,0 +4544,1965-10-05 02:19:00,0 +1781,1968-07-13 22:36:00,0 +6937,1965-03-19 14:50:00,0 +1367,1966-09-09 21:13:00,0 +3263,1966-07-06 17:42:00,0 +2645,1966-04-03 04:01:00,0 +6290,1965-06-16 07:22:00,0 +3664,1965-09-22 22:28:00,0 +9009,1965-12-21 22:01:00,0 +683,1968-12-02 06:17:00,0 +9015,1967-01-26 13:51:00,0 +2830,1965-09-28 06:12:00,0 +5527,1966-10-26 05:32:00,0 +9600,1968-01-19 13:14:00,0 +950,1966-11-07 23:32:00,0 +4740,1967-09-28 22:17:00,0 +7803,1965-03-08 23:09:00,0 +3976,1966-04-02 15:39:00,0 +8413,1966-08-27 19:37:00,0 +244,1965-07-27 04:49:00,0 +4621,1968-04-26 19:26:00,0 +7947,1967-05-01 00:42:00,0 +8822,1969-09-12 21:41:00,0 +1611,1969-10-19 12:39:00,0 +8706,1967-11-04 08:44:00,0 +3627,1967-06-06 22:02:00,0 +2520,1965-10-17 21:35:00,0 +1335,1969-07-02 18:01:00,0 +7739,1969-04-03 16:26:00,0 +7640,1966-01-02 19:45:00,0 +8687,1969-06-24 04:03:00,0 +3534,1967-06-15 13:30:00,0 +3228,1966-12-02 11:29:00,0 +2815,1968-11-07 22:23:00,0 +7840,1968-12-14 05:03:00,0 +4285,1968-10-09 05:27:00,0 +4480,1966-09-01 20:34:00,0 +9688,1969-01-22 23:48:00,0 +3253,1966-04-29 18:56:00,0 +2922,1965-07-28 06:13:00,0 +2802,1968-11-19 04:44:00,0 +350,1965-04-02 19:18:00,0 +4181,1967-01-15 10:57:00,0 +7686,1967-02-09 11:20:00,0 +1346,1968-03-03 08:54:00,0 +725,1969-02-24 08:36:00,0 +5379,1969-03-31 03:21:00,0 +5468,1968-03-30 20:32:00,0 +5051,1967-07-07 05:19:00,0 +2934,1969-01-23 19:16:00,0 +2032,1965-05-13 04:12:00,0 +8333,1967-02-26 14:31:00,0 +5080,1966-11-08 00:53:00,0 +7688,1967-06-23 03:28:00,0 +6235,1966-01-16 23:23:00,0 +5765,1966-06-06 03:00:00,0 +9007,1969-11-05 17:12:00,0 +579,1965-01-05 12:28:00,0 +4318,1966-05-10 16:22:00,0 +5734,1968-12-04 17:00:00,0 +7304,1965-03-25 15:50:00,0 +1246,1968-11-28 17:17:00,0 +8312,1965-12-28 07:51:00,0 +3824,1969-10-25 18:44:00,0 +4174,1968-05-25 17:40:00,0 +3905,1965-10-03 21:35:00,0 +1802,1965-05-27 00:47:00,0 +2145,1965-06-08 07:12:00,0 +3744,1968-04-01 07:27:00,0 +6370,1969-11-14 01:36:00,0 +9544,1966-04-27 20:28:00,0 +7200,1967-06-03 07:37:00,0 +8081,1967-12-15 12:54:00,0 +8832,1967-11-16 06:26:00,0 +3491,1966-01-03 15:34:00,0 +6250,1968-03-26 01:40:00,0 +7174,1967-06-10 21:52:00,0 +2404,1969-08-07 09:02:00,0 +4556,1968-12-04 02:21:00,0 +4419,1969-09-13 05:55:00,0 +6058,1966-08-06 00:32:00,0 +361,1965-04-28 21:53:00,0 +6523,1968-03-28 14:59:00,0 +7649,1969-11-09 14:48:00,0 +8031,1965-03-29 06:11:00,0 +8371,1969-08-15 13:38:00,0 +3280,1968-11-15 02:55:00,0 +3541,1965-10-04 13:57:00,0 +1608,1967-03-15 08:40:00,0 +6148,1969-08-17 22:22:00,0 +1121,1969-09-10 14:40:00,0 +6037,1969-06-26 03:36:00,0 +5531,1965-06-04 15:41:00,0 +5253,1965-11-07 03:42:00,0 +8902,1967-07-30 12:49:00,0 +8871,1965-12-20 17:13:00,0 +3701,1969-02-11 04:57:00,0 +6791,1965-06-12 02:19:00,0 +6362,1966-06-03 13:51:00,0 +7810,1965-10-08 19:16:00,0 +1001,1968-07-10 03:11:00,0 +9136,1965-11-12 17:25:00,0 +5052,1965-06-22 15:48:00,0 +7631,1966-08-01 15:55:00,0 +6774,1965-10-28 07:14:00,0 +3470,1965-03-31 02:12:00,0 +9600,1967-08-31 22:00:00,0 +6153,1965-04-02 06:57:00,0 +9773,1969-07-04 22:14:00,0 +5218,1968-02-28 22:27:00,0 +2374,1966-07-04 14:01:00,0 +8554,1968-08-17 22:18:00,0 +6055,1965-09-21 06:22:00,0 +1762,1966-07-28 00:02:00,0 +3199,1967-11-22 13:32:00,0 +744,1969-09-16 02:28:00,0 +5999,1967-12-26 01:52:00,0 +7573,1969-03-10 07:02:00,0 +8712,1969-01-02 19:36:00,0 +5586,1965-03-29 03:26:00,0 +1986,1967-08-20 12:29:00,0 +6211,1968-06-28 23:46:00,0 +240,1969-05-01 10:19:00,0 +8974,1965-12-16 17:16:00,0 +9631,1965-05-23 07:38:00,0 +308,1967-02-19 20:49:00,0 +9582,1968-07-26 08:16:00,0 +7342,1969-06-06 04:37:00,0 +3129,1969-09-20 05:34:00,0 +4979,1967-04-08 18:24:00,0 +275,1967-01-05 14:34:00,0 +6224,1969-03-28 18:59:00,0 +8294,1967-12-13 02:03:00,0 +5699,1966-11-22 21:18:00,0 +2908,1965-07-22 15:39:00,0 +4854,1966-03-13 15:06:00,0 +2552,1969-04-28 12:37:00,0 +2703,1968-04-06 07:57:00,0 +8007,1967-10-19 08:18:00,0 +9476,1969-10-24 14:58:00,0 +1420,1968-06-24 07:44:00,0 +8840,1968-07-15 14:41:00,0 +3744,1965-02-06 15:58:00,0 +4142,1968-07-27 22:13:00,0 +3531,1969-05-24 15:26:00,0 +4302,1967-02-05 01:34:00,0 +3086,1968-12-24 03:27:00,0 +3168,1969-02-18 17:23:00,0 +3710,1967-03-24 03:08:00,0 +1709,1969-04-23 03:31:00,0 +4535,1969-07-17 14:22:00,0 +4205,1968-10-13 10:21:00,0 +8973,1966-01-01 18:22:00,0 +7251,1966-01-30 13:47:00,0 +1979,1969-04-23 14:25:00,0 +4171,1966-12-21 11:46:00,0 +675,1966-03-13 02:09:00,0 +11,1968-03-12 14:00:00,0 +3771,1968-06-17 16:51:00,0 +73,1968-06-20 02:35:00,0 +3306,1967-09-20 00:45:00,0 +5711,1969-03-16 13:42:00,0 +6427,1969-11-28 19:07:00,0 +6663,1965-06-24 23:33:00,0 +864,1967-05-17 22:01:00,0 +3132,1965-09-18 10:34:00,0 +1182,1965-03-29 10:15:00,0 +8904,1965-03-09 08:02:00,0 +9818,1966-04-08 19:03:00,0 +1532,1969-01-19 08:37:00,0 +2860,1966-03-03 05:14:00,0 +5554,1965-06-02 11:50:00,0 +2373,1969-05-26 04:43:00,0 +6982,1966-11-19 16:24:00,0 +8532,1967-11-16 23:51:00,0 +5543,1967-03-11 10:00:00,0 +4206,1966-01-17 19:22:00,0 +9295,1969-02-26 10:39:00,0 +3275,1965-07-03 22:30:00,0 +8918,1968-03-21 13:48:00,0 +7313,1968-09-19 09:17:00,0 +765,1969-04-04 17:34:00,0 +9494,1967-03-01 06:43:00,0 +7624,1966-10-06 13:46:00,0 +6760,1967-10-24 08:51:00,0 +6213,1968-03-18 11:02:00,0 +877,1968-07-28 17:27:00,0 +6670,1968-08-20 13:18:00,0 +4902,1967-08-31 07:09:00,0 +9030,1969-03-19 08:50:00,0 +4510,1968-10-11 11:12:00,0 +4784,1966-06-21 18:20:00,0 +2049,1968-10-31 14:44:00,0 +5795,1967-11-29 00:09:00,0 +4739,1967-08-02 18:18:00,0 +8128,1966-10-31 10:23:00,0 +4487,1965-03-10 01:40:00,0 +3258,1967-12-13 14:07:00,0 +6365,1969-12-11 20:51:00,0 +5390,1965-09-16 05:59:00,0 +5265,1967-02-13 12:21:00,0 +4715,1966-01-11 21:49:00,0 +8185,1969-10-09 07:40:00,0 +4184,1969-05-15 06:27:00,0 +3427,1969-01-23 18:04:00,0 +5918,1965-08-23 23:03:00,0 +9244,1965-01-24 03:55:00,0 +9379,1969-12-15 00:31:00,0 +944,1965-03-01 07:26:00,0 +1856,1966-06-28 16:52:00,0 +8161,1967-08-07 04:03:00,0 +3497,1966-04-20 18:00:00,0 +6872,1965-11-09 12:22:00,0 +4782,1965-05-12 13:37:00,0 +6082,1969-02-08 14:53:00,0 +6362,1969-01-30 20:37:00,0 +3484,1968-04-11 00:34:00,0 +3290,1966-07-12 19:15:00,0 +5868,1966-08-22 03:06:00,0 +8072,1966-05-25 08:08:00,0 +6484,1969-07-05 02:15:00,0 +9295,1968-09-13 15:50:00,0 +9284,1967-08-06 16:23:00,0 +2834,1967-03-28 04:08:00,0 +3464,1967-10-30 04:30:00,0 +1064,1969-10-21 18:00:00,0 +1032,1967-10-27 16:25:00,0 +7553,1969-10-23 12:42:00,0 +3054,1966-01-11 13:54:00,0 +6975,1969-01-12 05:56:00,0 +9354,1967-09-03 17:17:00,0 +6847,1966-10-22 05:39:00,0 +8135,1968-07-05 22:15:00,0 +5747,1965-08-07 23:23:00,0 +5103,1969-02-10 12:33:00,0 +1704,1966-11-15 14:28:00,0 +2985,1968-09-11 22:35:00,0 +5541,1969-12-17 14:13:00,0 +6739,1968-01-29 23:10:00,0 +7382,1969-09-13 05:09:00,0 +9700,1969-10-07 23:30:00,0 +8082,1966-02-23 01:54:00,0 +9989,1969-02-13 17:17:00,0 +8856,1968-11-16 04:51:00,0 +3957,1965-06-27 00:05:00,0 +3432,1965-10-17 14:34:00,0 +7840,1967-07-04 09:11:00,0 +3994,1969-06-10 16:06:00,0 +5708,1966-07-11 22:54:00,0 +8474,1967-08-11 12:18:00,0 +5158,1969-06-08 05:04:00,0 +8536,1969-01-08 16:57:00,0 +4277,1965-01-08 02:01:00,0 +2732,1969-03-19 00:12:00,0 +5516,1968-12-01 00:49:00,0 +8833,1969-08-07 21:03:00,0 +9691,1967-02-27 02:00:00,0 +5031,1969-12-13 04:07:00,0 +7427,1967-07-13 10:34:00,0 +4588,1965-03-01 01:18:00,0 +1945,1969-03-28 23:29:00,0 +7725,1968-06-04 22:18:00,0 +310,1969-12-06 13:36:00,0 +1341,1965-06-21 00:16:00,0 +8938,1965-12-28 00:24:00,0 +1280,1965-12-29 00:36:00,0 +2660,1969-09-02 12:20:00,0 +6334,1966-01-03 06:14:00,0 +5756,1965-08-14 20:53:00,0 +7554,1967-08-06 06:48:00,0 +5075,1969-04-19 04:17:00,0 +4371,1967-01-20 19:05:00,0 +6033,1967-07-20 17:56:00,0 +1151,1967-11-24 21:56:00,0 +2614,1965-09-29 12:19:00,0 +2473,1965-12-11 05:20:00,0 +1264,1967-11-27 07:18:00,0 +9047,1965-05-17 05:22:00,0 +4860,1965-01-14 13:37:00,0 +569,1965-03-22 08:50:00,0 +7166,1968-06-13 04:00:00,0 +2500,1969-07-27 03:34:00,0 +3019,1965-04-11 05:34:00,0 +9466,1966-01-28 23:31:00,0 +826,1969-05-25 14:50:00,0 +4534,1966-12-14 04:42:00,0 +7490,1968-10-20 22:33:00,0 +1381,1969-07-28 12:05:00,0 +5351,1966-09-05 03:48:00,0 +2804,1968-08-06 00:21:00,0 +6459,1969-10-28 14:01:00,0 +1903,1967-06-14 14:50:00,0 +2842,1969-10-15 22:40:00,0 +4695,1965-04-14 14:31:00,0 +7139,1967-10-15 18:09:00,0 +7226,1969-04-28 19:55:00,0 +3998,1968-06-22 22:06:00,0 +536,1966-10-27 08:12:00,0 +9960,1965-06-02 20:44:00,0 +9154,1967-10-14 14:32:00,0 +3481,1969-07-03 12:06:00,0 +6810,1965-09-21 00:19:00,0 +777,1965-06-25 06:47:00,0 +7004,1965-08-08 08:38:00,0 +7710,1967-12-25 20:10:00,0 +3735,1965-01-13 11:54:00,0 +6871,1965-08-28 03:41:00,0 +883,1967-08-31 13:10:00,0 +6020,1969-05-26 11:17:00,0 +9833,1965-06-24 10:32:00,0 +1435,1969-10-24 13:43:00,0 +9793,1967-01-02 08:45:00,0 +4753,1969-05-17 12:10:00,0 +8456,1965-10-12 11:08:00,0 +3165,1966-04-06 21:52:00,0 +309,1966-12-25 23:01:00,0 +8496,1965-02-04 23:21:00,0 +177,1968-06-05 22:12:00,0 +2150,1966-05-05 15:36:00,0 +5664,1967-10-01 16:10:00,0 +9305,1969-09-23 09:34:00,0 +1970,1969-05-18 11:51:00,0 +9877,1967-10-16 12:24:00,0 +8045,1969-06-12 08:04:00,0 +2810,1965-12-24 08:02:00,0 +6211,1968-11-10 23:19:00,0 +4514,1967-10-15 20:42:00,0 +7170,1966-05-23 13:25:00,0 +8093,1968-02-19 13:38:00,0 +5097,1968-09-07 04:43:00,0 +9030,1966-01-02 03:42:00,0 +8969,1966-01-23 19:08:00,0 +4278,1968-09-03 01:19:00,0 +5982,1966-12-12 16:54:00,0 +5411,1965-06-22 13:05:00,0 +7093,1969-01-28 03:27:00,0 +5861,1969-04-26 19:29:00,0 +4416,1968-05-17 00:19:00,0 +9723,1968-01-02 17:21:00,0 +8360,1969-07-03 03:00:00,0 +5792,1966-01-14 09:51:00,0 +3392,1965-11-10 09:54:00,0 +5531,1967-01-31 01:50:00,0 +933,1967-07-27 19:22:00,0 +3488,1969-07-17 16:29:00,0 +3751,1968-12-16 00:15:00,0 +3083,1968-08-01 19:58:00,0 +4824,1966-11-19 20:51:00,0 +9694,1969-10-25 22:07:00,0 +2318,1965-02-20 04:51:00,0 +449,1966-02-17 13:20:00,0 +1238,1969-09-15 05:24:00,0 +9124,1969-10-14 07:32:00,0 +50,1969-09-17 17:24:00,0 +862,1966-10-04 18:34:00,0 +4164,1968-06-27 04:41:00,0 +5602,1968-01-29 02:29:00,0 +6376,1968-07-02 10:47:00,0 +6051,1967-09-25 17:21:00,0 +6813,1969-11-04 21:30:00,0 +6037,1969-05-26 10:32:00,0 +9961,1967-07-13 12:33:00,0 +8685,1969-08-21 09:31:00,0 +4234,1965-10-20 08:25:00,0 +1974,1966-03-26 04:23:00,0 +8055,1967-06-08 03:16:00,0 +8686,1969-09-08 12:46:00,0 +8448,1967-10-18 10:53:00,0 +4956,1969-10-09 01:55:00,0 +6162,1968-10-27 11:40:00,0 +9424,1968-12-27 14:05:00,0 +7712,1967-08-23 20:27:00,0 +1514,1966-08-03 10:04:00,0 +5431,1968-06-03 08:31:00,0 +1044,1966-12-28 03:11:00,0 +9259,1969-01-07 17:03:00,0 +8380,1967-08-13 14:39:00,0 +3625,1968-02-17 08:45:00,0 +4580,1968-10-24 03:46:00,0 +3680,1969-02-14 14:31:00,0 +4740,1967-02-14 18:26:00,0 +9465,1968-04-22 17:38:00,0 +5401,1968-07-25 00:47:00,0 +7138,1969-04-12 07:10:00,0 +1425,1969-12-06 21:59:00,0 +7296,1969-04-29 15:33:00,0 +7886,1969-11-13 16:08:00,0 +6941,1968-03-05 17:08:00,0 +7203,1969-01-04 23:12:00,0 +1161,1967-03-25 17:49:00,0 +5210,1965-12-01 17:52:00,0 +4691,1968-03-09 23:01:00,0 +698,1968-09-15 15:21:00,0 +8031,1966-05-22 09:40:00,0 +4584,1967-12-07 21:10:00,0 +7444,1965-03-29 08:13:00,0 +3506,1965-06-08 17:27:00,0 +7875,1969-02-20 07:17:00,0 +2144,1966-03-26 07:01:00,0 +354,1969-09-02 01:19:00,0 +7799,1969-06-23 01:52:00,0 +5840,1965-04-24 01:35:00,0 +4123,1965-01-15 03:22:00,0 +4972,1968-01-25 04:21:00,0 +8820,1967-05-10 14:23:00,0 +4622,1969-11-20 03:18:00,0 +7933,1965-02-03 09:29:00,0 +5496,1968-07-16 07:17:00,0 +8877,1966-09-18 03:52:00,0 +1171,1967-05-09 21:27:00,0 +5789,1968-03-02 15:30:00,0 +9792,1967-02-05 03:59:00,0 +3900,1969-02-22 19:57:00,0 +575,1965-01-16 04:44:00,0 +2101,1969-12-27 05:54:00,0 +2659,1969-06-25 12:31:00,0 +3305,1968-04-01 15:49:00,0 +3568,1967-07-20 23:53:00,0 +8695,1966-08-31 23:44:00,0 +1363,1968-04-17 14:50:00,0 +5313,1969-06-23 20:16:00,0 +1873,1969-04-04 07:16:00,0 +3752,1968-09-01 15:31:00,0 +2069,1967-01-06 13:20:00,0 +7325,1968-04-18 08:23:00,0 +5152,1966-04-18 02:22:00,0 +4779,1966-09-26 13:31:00,0 +4573,1966-10-01 17:10:00,0 +233,1965-09-09 10:45:00,0 +6455,1966-12-28 14:50:00,0 +5805,1966-06-07 05:45:00,0 +394,1966-01-05 10:49:00,0 +2140,1966-10-06 18:34:00,0 +7451,1965-07-30 15:23:00,0 +4727,1965-01-06 23:32:00,0 +6220,1967-01-16 11:37:00,0 +7165,1968-09-17 03:46:00,0 +8674,1967-06-13 11:47:00,0 +7170,1966-11-07 05:29:00,0 +7347,1968-05-14 16:43:00,0 +7192,1966-02-27 10:19:00,0 +1290,1966-02-11 20:22:00,0 +1301,1967-09-13 23:04:00,0 +7066,1969-01-21 17:09:00,0 +2065,1965-11-03 22:18:00,0 +3481,1966-05-08 01:22:00,0 +6360,1968-08-29 10:27:00,0 +4150,1967-01-10 19:39:00,0 +6084,1966-01-22 20:01:00,0 +1011,1968-07-16 17:05:00,0 +7849,1969-05-01 06:30:00,0 +8905,1966-11-07 18:30:00,0 +5484,1967-11-13 07:38:00,0 +5075,1965-04-23 04:42:00,0 +7117,1968-01-02 06:11:00,0 +6153,1967-12-06 15:13:00,0 +7080,1966-09-30 05:09:00,0 +6242,1967-01-24 08:44:00,0 +1986,1967-09-05 03:56:00,0 +5323,1966-04-26 16:22:00,0 +4232,1966-09-24 20:27:00,0 +5283,1968-08-07 11:01:00,0 +5001,1968-10-07 17:58:00,0 +4565,1969-09-13 14:49:00,0 +336,1967-04-02 07:08:00,0 +9353,1966-12-07 23:08:00,0 +2695,1965-01-18 07:25:00,0 +4233,1965-07-15 20:32:00,0 +7140,1967-05-15 16:20:00,0 +2845,1965-01-08 01:20:00,0 +2444,1969-08-12 10:00:00,0 +1092,1965-09-28 16:40:00,0 +6942,1968-05-03 03:33:00,0 +5654,1965-01-11 00:19:00,0 +4794,1967-03-05 08:32:00,0 +2464,1969-06-28 17:28:00,0 +6881,1969-05-24 02:34:00,0 +7757,1967-08-16 11:46:00,0 +7164,1968-08-31 01:42:00,0 +2600,1965-02-13 14:31:00,0 +465,1967-03-19 09:56:00,0 +2449,1966-03-05 02:27:00,0 +1781,1965-04-14 18:03:00,0 +5067,1965-12-11 13:18:00,0 +2928,1969-03-21 07:31:00,0 +6287,1969-08-23 19:09:00,0 +5497,1967-03-26 12:35:00,0 +9045,1968-05-06 02:02:00,0 +2706,1965-03-15 09:04:00,0 +870,1965-05-20 19:24:00,0 +3494,1966-08-16 05:10:00,0 +7178,1969-08-15 02:27:00,0 +9488,1969-01-10 22:13:00,0 +6123,1968-01-12 09:18:00,0 +1786,1966-02-01 22:14:00,0 +9060,1966-10-06 16:12:00,0 +8442,1969-05-30 07:39:00,0 +948,1965-06-01 04:54:00,0 +1619,1968-03-08 20:03:00,0 +370,1966-10-21 03:02:00,0 +2203,1966-12-09 19:46:00,0 +7196,1966-02-03 10:09:00,0 +5390,1969-08-29 18:28:00,0 +7700,1968-03-19 18:14:00,0 +1441,1968-08-13 08:33:00,0 +5754,1967-05-15 09:46:00,0 +845,1968-07-08 17:35:00,0 +347,1968-10-30 11:46:00,0 +7298,1967-11-26 12:17:00,0 +6376,1965-09-08 21:25:00,0 +7830,1966-09-08 20:09:00,0 +540,1965-03-09 04:12:00,0 +5750,1966-01-03 03:25:00,0 +8122,1967-08-28 02:55:00,0 +8734,1966-11-30 12:31:00,0 +8995,1965-05-16 19:58:00,0 +9466,1968-05-24 12:33:00,0 +4467,1965-07-10 03:32:00,0 +4213,1965-11-16 03:49:00,0 +3247,1969-05-10 14:58:00,0 +4531,1966-04-28 18:15:00,0 +9271,1968-10-15 13:23:00,0 +8841,1969-12-12 06:27:00,0 +2947,1966-08-09 18:45:00,0 +8,1967-03-26 05:59:00,0 +1408,1966-08-26 05:19:00,0 +610,1968-04-28 04:05:00,0 +5207,1965-07-25 19:12:00,0 +4499,1966-11-16 07:29:00,0 +9507,1966-02-06 14:28:00,0 +3047,1968-01-11 15:52:00,0 +7812,1969-02-17 07:02:00,0 +9967,1967-04-26 22:30:00,0 +5929,1965-07-15 07:53:00,0 +8264,1965-11-21 19:28:00,0 +2289,1969-09-19 20:39:00,0 +6284,1965-02-06 22:55:00,0 +3383,1968-07-17 00:07:00,0 +2095,1968-05-06 20:15:00,0 +508,1967-01-27 16:14:00,0 +2591,1968-10-11 12:59:00,0 +2038,1969-07-01 16:38:00,0 +556,1969-07-30 16:10:00,0 +5172,1965-02-23 15:36:00,0 +9297,1968-02-26 14:44:00,0 +6802,1969-06-17 00:46:00,0 +9386,1968-12-26 12:10:00,0 +1316,1966-04-10 00:57:00,0 +8445,1969-01-29 22:52:00,0 +8436,1967-05-06 03:15:00,0 +7160,1967-01-16 09:08:00,0 +3482,1968-07-31 17:37:00,0 +9757,1965-01-04 19:22:00,0 +5648,1966-08-03 19:01:00,0 +3740,1967-09-02 00:19:00,0 +3624,1966-10-03 04:46:00,0 +3096,1965-09-10 04:42:00,0 +797,1966-07-15 16:18:00,0 +8782,1969-04-23 03:12:00,0 +1283,1968-01-27 03:01:00,0 +189,1967-05-22 22:33:00,0 +7847,1967-08-16 14:25:00,0 +8647,1965-09-01 05:07:00,0 +4960,1966-11-01 08:51:00,0 +1134,1968-10-05 23:38:00,0 +1209,1969-10-04 17:32:00,0 +1710,1965-07-25 10:39:00,0 +4249,1966-09-21 20:49:00,0 +7932,1966-01-15 18:48:00,0 +6839,1966-08-25 21:11:00,0 +4509,1967-01-20 04:37:00,0 +3873,1966-01-31 16:09:00,0 +6967,1965-03-30 14:04:00,0 +1762,1969-12-05 17:28:00,0 +226,1966-06-13 08:38:00,0 +6602,1969-06-09 14:44:00,0 +8867,1967-12-31 17:03:00,0 +9063,1965-08-11 23:01:00,0 +6209,1966-02-15 20:06:00,0 +8905,1969-07-20 07:24:00,0 +948,1968-03-10 16:26:00,0 +2303,1967-08-25 22:09:00,0 +6072,1968-08-24 01:11:00,0 +538,1969-08-20 05:23:00,0 +8454,1967-12-22 12:26:00,0 +855,1966-08-29 19:24:00,0 +2473,1969-05-26 07:01:00,0 +7677,1969-10-16 03:50:00,0 +5367,1965-01-17 16:07:00,0 +2881,1968-10-17 19:41:00,0 +6321,1967-04-16 07:53:00,0 +9434,1966-12-26 02:12:00,0 +9274,1968-03-14 04:05:00,0 +768,1968-06-16 14:58:00,0 +3127,1969-10-01 12:57:00,0 +4841,1967-04-09 10:05:00,0 +7079,1969-06-24 01:12:00,0 +2242,1969-02-26 00:17:00,0 +8274,1967-07-02 00:45:00,0 +3422,1966-04-21 08:54:00,0 +2888,1966-04-21 11:41:00,0 +8554,1965-11-23 10:15:00,0 +2326,1968-08-29 20:04:00,0 +1071,1967-03-08 02:25:00,0 +7698,1965-01-26 01:57:00,0 +312,1967-04-05 14:06:00,0 +6542,1965-06-23 20:59:00,0 +9061,1967-06-28 14:36:00,0 +6359,1968-01-08 21:49:00,0 +5358,1967-12-26 07:42:00,0 +1523,1966-02-19 08:40:00,0 +8634,1965-05-23 15:43:00,0 +3160,1969-07-03 14:15:00,0 +5981,1967-02-23 12:49:00,0 +2988,1968-05-14 03:58:00,0 +6491,1967-05-19 13:09:00,0 +4321,1965-03-03 22:18:00,0 +9736,1969-10-22 14:34:00,0 +3818,1967-09-17 01:24:00,0 +5170,1965-04-25 19:31:00,0 +4884,1969-04-24 18:43:00,0 +6199,1969-11-24 18:44:00,0 +9979,1965-02-28 17:29:00,0 +9101,1966-10-24 11:10:00,0 +4984,1966-07-17 00:11:00,0 +4920,1969-08-12 07:44:00,0 +7945,1967-05-10 08:45:00,0 +6533,1966-12-13 21:44:00,0 +9320,1965-06-16 17:39:00,0 +4542,1968-03-09 19:29:00,0 +3225,1968-08-04 15:19:00,0 +2016,1969-12-05 10:16:00,0 +3744,1965-02-14 10:44:00,0 +593,1966-09-25 05:38:00,0 +7996,1965-07-18 02:53:00,0 +4995,1968-06-11 14:16:00,0 +8112,1965-05-02 08:19:00,0 +8100,1968-02-08 18:44:00,0 +5059,1968-07-10 22:14:00,0 +8572,1966-06-13 22:36:00,0 +6618,1967-02-25 02:58:00,0 +6046,1965-07-23 17:57:00,0 +2008,1968-08-22 14:44:00,0 +5477,1965-01-02 06:35:00,0 +7157,1967-01-14 04:44:00,0 +1734,1969-12-26 17:11:00,0 +4184,1968-09-11 19:37:00,0 +5000,1965-04-10 20:37:00,0 +3519,1969-09-19 00:20:00,0 +2971,1966-02-27 02:56:00,0 +1384,1968-04-28 05:33:00,0 +981,1967-04-04 04:24:00,0 +8622,1966-11-04 11:05:00,0 +711,1965-04-06 14:18:00,0 +4762,1969-05-11 18:26:00,0 +1263,1965-11-04 23:23:00,0 +4337,1967-11-16 08:25:00,0 +2120,1965-07-01 15:15:00,0 +7703,1967-12-15 09:13:00,0 +1644,1968-12-11 04:52:00,0 +4473,1965-04-10 02:47:00,0 +7892,1967-08-15 20:02:00,0 +1378,1966-12-19 04:24:00,0 +4233,1968-07-20 20:11:00,0 +5431,1967-06-17 08:25:00,0 +1267,1969-07-29 23:08:00,0 +4894,1969-07-01 02:51:00,0 +4337,1965-06-11 01:57:00,0 +5545,1965-06-05 21:42:00,0 +6360,1966-12-12 21:57:00,0 +6386,1965-09-08 23:02:00,0 +9454,1968-02-22 14:17:00,0 +2846,1969-06-30 14:25:00,0 +8250,1967-09-13 06:28:00,0 +8775,1968-11-16 20:34:00,0 +3553,1969-07-02 22:47:00,0 +995,1965-01-22 22:02:00,0 +6038,1965-01-22 00:47:00,0 +9940,1966-02-09 04:39:00,0 +795,1967-12-06 03:46:00,0 +6688,1966-02-23 18:54:00,0 +1103,1965-02-24 09:31:00,0 +9970,1965-08-06 03:41:00,0 +7813,1967-01-16 23:00:00,0 +2379,1967-09-15 13:01:00,0 +1002,1968-06-15 06:15:00,0 +1657,1968-01-27 12:08:00,0 +9304,1967-10-07 05:26:00,0 +6198,1968-03-30 23:21:00,0 +6796,1965-03-15 08:42:00,0 +9759,1966-07-22 10:18:00,0 +6473,1965-11-27 13:37:00,0 +7790,1967-04-01 11:12:00,0 +6191,1967-09-22 04:35:00,0 +9037,1965-06-22 03:50:00,0 +6426,1966-03-12 04:31:00,0 +41,1968-11-27 20:47:00,0 +6805,1965-06-28 02:19:00,0 +4538,1966-09-11 23:07:00,0 +2676,1967-08-24 02:07:00,0 +7905,1969-12-04 15:11:00,0 +6381,1967-07-20 23:36:00,0 +5133,1967-08-28 17:15:00,0 +7268,1965-07-27 02:35:00,0 +579,1965-02-01 10:53:00,0 +5794,1965-09-17 15:21:00,0 +1696,1966-11-12 19:47:00,0 +2396,1969-02-04 08:27:00,0 +9076,1967-09-15 05:48:00,0 +469,1965-07-29 12:51:00,0 +5228,1969-11-27 03:44:00,0 +6552,1967-03-02 22:24:00,0 +8374,1968-03-21 01:23:00,0 +4045,1965-08-31 15:49:00,0 +2030,1969-10-26 07:16:00,0 +9992,1967-08-02 08:41:00,0 +5727,1968-06-05 21:12:00,0 +779,1969-10-02 04:51:00,0 +6163,1967-01-31 21:13:00,0 +7753,1965-10-14 21:56:00,0 +7659,1966-01-18 03:01:00,0 +4272,1969-11-26 19:53:00,0 +7874,1968-10-21 08:33:00,0 +1593,1967-08-26 06:37:00,0 +9974,1968-08-12 17:35:00,0 +22,1967-02-26 08:24:00,0 +9712,1966-06-13 22:14:00,0 +5405,1969-06-21 08:48:00,0 +3852,1968-03-02 13:40:00,0 +8228,1965-06-10 12:54:00,0 +4355,1969-02-15 05:59:00,0 +7756,1969-12-19 19:12:00,0 +7775,1966-09-06 02:21:00,0 +7388,1967-09-06 00:38:00,0 +5869,1967-04-16 20:28:00,0 +3838,1966-06-07 07:08:00,0 +3588,1966-11-19 04:39:00,0 +4762,1968-01-06 21:42:00,0 +4451,1966-07-28 09:20:00,0 +6421,1965-11-19 03:43:00,0 +1314,1967-09-25 19:08:00,0 +4220,1969-08-26 20:02:00,0 +6982,1967-12-26 21:43:00,0 +4961,1966-02-26 13:58:00,0 +2686,1965-09-23 16:45:00,0 +6842,1966-09-29 14:43:00,0 +2007,1965-10-02 12:58:00,0 +3176,1967-10-05 06:11:00,0 +1548,1965-04-14 16:57:00,0 +297,1966-05-22 03:40:00,0 +1395,1967-12-27 05:20:00,0 +7159,1966-07-24 06:26:00,0 +2019,1965-05-23 05:16:00,0 +4411,1965-09-26 13:51:00,0 +7652,1967-12-26 12:36:00,0 +6545,1966-04-30 08:52:00,0 +4329,1967-12-16 01:33:00,0 +2092,1968-07-28 05:29:00,0 +7662,1966-01-18 00:22:00,0 +7269,1966-09-03 21:57:00,0 +8988,1969-11-24 05:49:00,0 +739,1965-10-14 01:44:00,0 +3998,1965-10-23 06:57:00,0 +8281,1968-03-27 13:29:00,0 +5611,1968-07-18 08:23:00,0 +9176,1965-04-11 03:16:00,0 +3631,1967-11-13 12:50:00,0 +2714,1966-05-21 09:32:00,0 +8476,1968-02-18 23:31:00,0 +9499,1967-01-11 22:46:00,0 +1722,1965-05-31 06:04:00,0 +2853,1967-02-19 22:08:00,0 +3236,1966-11-08 14:37:00,0 +5149,1966-12-25 19:13:00,0 +6623,1966-01-22 19:50:00,0 +5239,1967-04-20 17:19:00,0 +4570,1967-05-29 08:19:00,0 +7842,1965-01-24 01:13:00,0 +4995,1967-09-03 09:42:00,0 +5481,1967-12-21 13:14:00,0 +2750,1969-12-07 20:11:00,0 +9248,1967-10-14 01:26:00,0 +1732,1968-10-17 03:08:00,0 +3568,1965-06-13 20:24:00,0 +3365,1966-07-23 23:16:00,0 +8000,1968-10-08 01:42:00,0 +7597,1965-05-31 22:23:00,0 +8758,1969-06-14 17:09:00,0 +1211,1966-12-29 01:58:00,0 +9368,1968-10-23 17:06:00,0 +7858,1969-10-02 21:00:00,0 +4167,1966-08-29 18:41:00,0 +2746,1965-10-08 15:38:00,0 +5525,1965-02-01 13:29:00,0 +1540,1968-06-27 18:43:00,0 +6108,1967-09-19 02:36:00,0 +8748,1966-03-21 21:53:00,0 +3705,1969-08-24 10:24:00,0 +171,1968-09-03 03:14:00,0 +2951,1965-05-14 03:36:00,0 +8044,1969-03-19 08:15:00,0 +5413,1966-05-03 02:00:00,0 +8242,1967-08-11 19:55:00,0 +1988,1965-11-26 14:07:00,0 +9382,1968-09-14 06:39:00,0 +9711,1967-11-30 03:05:00,0 +6498,1969-12-21 11:27:00,0 +2539,1968-03-31 22:01:00,0 +3589,1969-09-16 12:15:00,0 +4851,1968-12-24 22:16:00,0 +2274,1966-05-11 04:50:00,0 +9715,1966-02-05 10:39:00,0 +5449,1965-05-11 04:01:00,0 +9004,1965-07-27 13:37:00,0 +3453,1965-04-01 11:12:00,0 +2580,1969-07-23 03:05:00,0 +8142,1968-02-23 03:02:00,0 +8571,1969-11-28 19:32:00,0 +7386,1966-04-22 03:35:00,0 +5297,1966-08-08 12:22:00,0 +5,1965-03-13 11:07:00,0 +3741,1966-07-23 19:55:00,0 +6606,1969-07-06 23:52:00,0 +1910,1967-02-03 11:35:00,0 +9541,1969-08-28 09:38:00,0 +2341,1968-02-18 20:25:00,0 +2352,1966-01-22 04:52:00,0 +1488,1966-12-06 09:41:00,0 +9688,1965-03-16 20:19:00,0 +3082,1969-06-02 12:35:00,0 +5298,1968-09-26 08:55:00,0 +8030,1965-10-19 06:22:00,0 +3023,1965-07-31 20:02:00,0 +4704,1967-01-09 23:18:00,0 +8145,1966-02-01 04:44:00,0 +8925,1968-11-06 07:41:00,0 +2697,1966-08-28 05:46:00,0 +185,1965-12-25 18:22:00,0 +7810,1969-10-14 11:57:00,0 +9723,1967-09-03 23:53:00,0 +6199,1967-06-14 21:56:00,0 +1828,1966-03-16 14:50:00,0 +3484,1968-04-24 21:09:00,0 +3843,1967-06-07 12:29:00,0 +5655,1968-12-01 15:07:00,0 +8811,1968-03-11 19:35:00,0 +5213,1968-02-21 00:16:00,0 +3663,1968-04-27 02:32:00,0 +4011,1966-08-30 10:50:00,0 +8672,1967-07-16 21:56:00,0 +5660,1969-02-13 11:37:00,0 +1277,1965-11-27 18:37:00,0 +4869,1965-12-02 13:43:00,0 +9097,1965-03-08 23:17:00,0 +3320,1965-10-21 13:37:00,0 +3989,1968-01-12 18:23:00,0 +9858,1965-10-15 01:20:00,0 +239,1967-04-15 22:55:00,0 +8314,1966-12-26 07:06:00,0 +8359,1968-09-26 08:16:00,0 +3482,1967-02-23 20:46:00,0 +4881,1968-01-30 02:01:00,0 +1139,1968-08-19 09:48:00,0 +573,1968-01-05 05:14:00,0 +1787,1968-07-31 19:31:00,0 +6699,1965-08-21 19:56:00,0 +8255,1968-03-17 12:28:00,0 +1570,1967-10-10 06:17:00,0 +6474,1968-03-14 22:45:00,0 +5281,1966-08-26 17:21:00,0 +9223,1968-08-31 18:22:00,0 +9692,1965-11-11 08:43:00,0 +3291,1965-04-25 07:32:00,0 +5577,1969-01-18 17:52:00,0 +4666,1968-01-29 09:28:00,0 +4924,1966-12-05 09:42:00,0 +5062,1969-10-02 05:31:00,0 +7216,1967-03-20 00:16:00,0 +9969,1965-07-25 20:10:00,0 +537,1967-02-14 16:33:00,0 +9753,1967-07-10 01:21:00,0 +2165,1965-04-16 14:25:00,0 +7683,1965-12-04 06:43:00,0 +6977,1967-05-24 07:16:00,0 +1596,1966-02-18 22:50:00,0 +9841,1966-05-24 21:55:00,0 +2883,1966-01-07 06:21:00,0 +3418,1969-07-30 10:40:00,0 +5553,1967-07-30 06:05:00,0 +2267,1965-11-07 21:33:00,0 +492,1969-10-24 23:48:00,0 +208,1965-01-16 16:46:00,0 +5888,1967-03-21 02:06:00,0 +889,1967-01-01 18:04:00,0 +2048,1967-01-05 17:51:00,0 +4532,1966-11-30 10:46:00,0 +3559,1969-10-29 10:14:00,0 +6847,1965-12-05 11:16:00,0 +2690,1967-11-07 07:41:00,0 +575,1967-08-15 10:58:00,0 +976,1969-11-14 15:39:00,0 +8550,1966-12-20 03:38:00,0 +287,1965-02-10 17:40:00,0 +1881,1968-11-24 22:40:00,0 +5688,1967-06-28 10:55:00,0 +8832,1965-03-04 15:41:00,0 +9430,1966-04-04 07:17:00,0 +1755,1967-07-22 03:32:00,0 +42,1967-07-25 06:11:00,0 +1430,1967-10-22 16:45:00,0 +1245,1968-12-07 16:58:00,0 +368,1966-03-20 22:49:00,0 +6365,1967-06-21 04:02:00,0 +599,1969-01-19 01:30:00,0 +7141,1969-03-06 05:38:00,0 +4612,1966-02-02 19:37:00,0 +8289,1967-02-21 16:44:00,0 +6107,1965-02-09 09:54:00,0 +420,1967-01-03 03:20:00,0 +2997,1965-10-06 08:45:00,0 +8779,1965-09-06 05:41:00,0 +9114,1966-07-11 12:09:00,0 +204,1966-05-18 12:47:00,0 +6365,1967-07-08 22:13:00,0 +1065,1967-12-22 21:11:00,0 +9911,1967-07-30 08:04:00,0 +5536,1965-02-19 15:33:00,0 +7960,1965-04-20 02:59:00,0 +4482,1967-11-20 06:40:00,0 +6235,1967-03-20 04:01:00,0 +7674,1968-07-06 03:12:00,0 +8051,1969-05-13 20:17:00,0 +8698,1969-04-08 08:17:00,0 +6275,1966-10-05 01:50:00,0 +5885,1969-11-01 13:21:00,0 +6836,1967-02-02 15:21:00,0 +8362,1967-07-21 14:32:00,0 +6904,1969-10-26 09:50:00,0 +4103,1968-09-05 20:27:00,0 +5114,1967-03-04 07:26:00,0 +7234,1967-08-04 05:44:00,0 +8013,1966-06-24 20:00:00,0 +9948,1967-03-16 16:37:00,0 +7614,1967-01-15 05:46:00,0 +5951,1969-11-18 12:11:00,0 +7067,1966-12-09 00:11:00,0 +4390,1968-03-22 03:28:00,0 +8686,1967-09-03 10:50:00,0 +5873,1966-11-16 08:39:00,0 +2501,1969-06-10 02:12:00,0 +2779,1968-07-18 02:36:00,0 +5048,1966-03-09 12:32:00,0 +70,1969-12-08 15:33:00,0 +9465,1967-01-30 02:59:00,0 +7651,1969-07-29 15:21:00,0 +6012,1967-09-28 13:06:00,0 +5521,1966-03-28 02:36:00,0 +5620,1965-10-07 08:32:00,0 +5521,1969-08-17 05:00:00,0 +8840,1967-12-14 06:43:00,0 +889,1969-01-15 10:51:00,0 +749,1969-01-28 23:27:00,0 +7292,1968-02-20 19:59:00,0 +6667,1967-04-21 22:46:00,0 +1698,1967-05-25 02:38:00,0 +4442,1965-11-13 17:32:00,0 +1951,1967-04-15 22:59:00,0 +9005,1969-10-30 12:19:00,0 +6401,1967-03-10 19:26:00,0 +8381,1968-02-18 04:24:00,0 +4797,1966-10-12 17:46:00,0 +4841,1969-11-07 03:38:00,0 +6418,1965-07-28 02:57:00,0 +2610,1967-05-18 03:48:00,0 +6877,1968-10-08 23:35:00,0 +7823,1965-08-18 13:41:00,0 +7290,1969-09-19 04:18:00,0 +5475,1965-03-06 08:07:00,0 +4928,1966-10-05 17:22:00,0 +7421,1968-12-06 12:03:00,0 +7753,1967-07-07 00:55:00,0 +2747,1968-02-02 21:34:00,0 +1129,1969-01-12 08:47:00,0 +1417,1965-12-03 13:02:00,0 +1512,1965-07-12 13:49:00,0 +9705,1967-04-15 08:48:00,0 +2357,1966-08-06 19:01:00,0 +6429,1965-09-06 13:45:00,0 +1949,1967-04-23 06:00:00,0 +7052,1969-08-23 11:11:00,0 +8865,1966-03-02 06:31:00,0 +1073,1965-01-26 16:14:00,0 +890,1966-08-07 08:18:00,0 +8494,1967-08-04 15:18:00,0 +3263,1966-08-09 17:08:00,0 +4333,1967-03-02 01:32:00,0 +1708,1965-06-15 12:55:00,0 +6384,1965-04-12 00:32:00,0 +5769,1966-03-27 10:09:00,0 +2325,1965-04-28 16:37:00,0 +1814,1969-07-24 02:33:00,0 +2321,1966-03-14 23:20:00,0 +8817,1968-01-27 18:40:00,0 +6369,1966-01-12 20:30:00,0 +1247,1966-11-15 12:05:00,0 +3457,1969-09-28 19:51:00,0 +9515,1965-04-13 22:21:00,0 +4460,1966-09-29 13:25:00,0 +5239,1968-12-26 12:44:00,0 +3784,1967-01-04 10:24:00,0 +1999,1967-11-22 08:15:00,0 +6034,1967-05-20 23:38:00,0 +4208,1968-06-29 06:00:00,0 +9470,1967-08-19 11:10:00,0 +1254,1969-06-23 23:33:00,0 +9341,1968-05-03 23:29:00,0 +7045,1969-08-24 04:00:00,0 +1657,1965-10-18 02:43:00,0 +5147,1968-09-06 19:17:00,0 +8008,1969-04-14 02:46:00,0 +1344,1966-04-08 19:16:00,0 +6192,1967-02-21 22:00:00,0 +4758,1967-04-02 20:40:00,0 +3761,1965-10-19 04:43:00,0 +2720,1968-07-24 10:47:00,0 +7341,1968-04-21 14:28:00,0 +5696,1966-03-22 07:27:00,0 +6650,1966-06-22 13:13:00,0 +8476,1966-11-08 18:17:00,0 +2861,1966-06-03 15:56:00,0 +6801,1967-01-31 11:43:00,0 +7949,1965-03-11 18:51:00,0 +7503,1969-04-03 03:29:00,0 +8415,1969-05-31 13:02:00,0 +2243,1967-09-20 10:56:00,0 +5254,1968-09-30 11:28:00,0 +4186,1966-04-26 06:06:00,0 +7923,1967-01-16 20:52:00,0 +4468,1966-06-09 01:28:00,0 +3231,1967-05-09 23:21:00,0 +206,1969-10-15 17:59:00,0 +3083,1969-07-17 14:17:00,0 +1659,1967-12-18 10:42:00,0 +3868,1966-05-08 14:45:00,0 +1638,1969-01-08 15:08:00,0 +7769,1965-02-08 01:46:00,0 +2703,1969-08-08 07:56:00,0 +3096,1969-03-31 13:55:00,0 +5849,1966-11-05 20:01:00,0 +9556,1967-01-15 23:54:00,0 +7098,1967-10-28 06:07:00,0 +8605,1967-01-21 21:55:00,0 +6546,1967-02-18 03:38:00,0 +7033,1965-06-16 23:50:00,0 +5076,1966-09-28 11:33:00,0 +4607,1969-02-28 11:04:00,0 +9188,1968-02-24 14:16:00,0 +8310,1968-09-02 23:35:00,0 +2507,1966-10-24 14:39:00,0 +3396,1965-11-07 07:39:00,0 +5758,1967-12-11 16:35:00,0 +6509,1967-02-03 09:38:00,0 +7165,1969-03-13 00:19:00,0 +5337,1965-04-18 20:07:00,0 +2738,1968-04-26 12:52:00,0 +2962,1969-06-23 21:09:00,0 +1756,1967-04-01 09:51:00,0 +1594,1965-11-24 21:53:00,0 +5033,1968-08-28 00:05:00,0 +7033,1969-09-02 23:06:00,0 +8215,1968-05-14 04:10:00,0 +2100,1965-02-28 20:39:00,0 +6877,1968-01-29 00:34:00,0 +6261,1969-05-04 14:18:00,0 +5448,1969-08-30 09:22:00,0 +9443,1967-08-22 17:32:00,0 +2642,1968-05-21 20:52:00,0 +5498,1965-06-19 19:08:00,0 +1941,1967-04-29 10:32:00,0 +605,1967-06-20 11:00:00,0 +1455,1966-08-14 07:06:00,0 +9912,1966-12-17 06:03:00,0 +3186,1968-10-08 08:52:00,0 +3294,1967-09-09 14:09:00,0 +2770,1967-12-05 18:49:00,0 +5782,1967-08-27 11:19:00,0 +1333,1968-05-20 14:53:00,0 +5053,1965-12-05 20:23:00,0 +6757,1969-10-30 20:31:00,0 +1395,1969-11-06 18:30:00,0 +6430,1969-11-07 01:11:00,0 +4841,1965-01-06 05:28:00,0 +7146,1965-02-21 00:34:00,0 +9778,1967-11-21 10:35:00,0 +336,1967-11-19 06:24:00,0 +6919,1966-05-18 17:03:00,0 +9779,1968-04-19 15:32:00,0 +1850,1965-06-12 15:53:00,0 +8035,1966-06-29 00:12:00,0 +7654,1968-11-27 02:02:00,0 +9646,1968-06-30 01:38:00,0 +9620,1969-06-15 23:08:00,0 +3207,1969-06-05 00:25:00,0 +6496,1969-11-19 13:23:00,0 +6355,1965-11-03 06:17:00,0 +9853,1966-08-17 22:51:00,0 +313,1967-02-24 05:40:00,0 +2484,1968-05-23 11:00:00,0 +7622,1968-11-21 13:24:00,0 +9912,1968-04-02 07:29:00,0 +2795,1966-09-26 00:16:00,0 +9675,1969-04-15 23:40:00,0 +7325,1969-03-18 04:31:00,0 +5290,1966-08-21 01:30:00,0 +9438,1969-12-04 16:41:00,0 +5639,1968-11-26 01:56:00,0 +790,1966-06-23 23:38:00,0 +9083,1968-08-30 09:01:00,0 +4826,1966-08-03 16:36:00,0 +598,1968-12-07 07:00:00,0 +7108,1969-03-17 09:01:00,0 +5770,1968-04-03 17:33:00,0 +1221,1967-10-10 20:29:00,0 +6345,1969-01-16 13:55:00,0 +9339,1967-10-24 03:08:00,0 +2352,1965-02-27 17:52:00,0 +5682,1968-11-15 20:22:00,0 +6137,1969-06-22 04:02:00,0 +981,1967-09-14 03:48:00,0 +5722,1968-11-29 06:54:00,0 +2534,1967-03-31 00:24:00,0 +2706,1966-01-29 21:24:00,0 +3618,1965-08-29 05:41:00,0 +2158,1968-08-12 14:11:00,0 +1374,1967-02-24 07:19:00,0 +8399,1969-07-24 21:38:00,0 +1921,1965-10-26 10:42:00,0 +1148,1965-02-07 16:06:00,0 +9653,1966-02-16 21:10:00,0 +7964,1966-08-29 10:24:00,0 +4181,1967-10-30 02:23:00,0 +2047,1968-11-03 10:57:00,0 +6968,1965-03-03 06:53:00,0 +3106,1965-11-06 16:58:00,0 +6420,1966-03-09 00:54:00,0 +187,1965-08-25 22:59:00,0 +6701,1966-02-02 17:29:00,0 +3121,1969-09-15 03:17:00,0 +9681,1966-07-17 18:28:00,0 +2041,1965-10-27 02:45:00,0 +3855,1966-09-26 11:33:00,0 +5263,1965-02-05 12:55:00,0 +6879,1965-01-23 05:55:00,0 +6935,1965-07-17 04:40:00,0 +4790,1966-12-20 05:59:00,0 +3379,1966-02-02 00:01:00,0 +1630,1967-05-03 18:39:00,0 +4593,1966-05-07 04:35:00,0 +3961,1966-11-29 02:08:00,0 +4626,1966-05-03 00:20:00,0 +6945,1967-04-18 01:03:00,0 +1381,1969-08-05 09:17:00,0 +2027,1965-12-07 20:55:00,0 +1153,1965-04-22 05:03:00,0 +3532,1968-01-25 09:29:00,0 +269,1965-04-17 03:52:00,0 +2977,1966-11-23 05:09:00,0 +758,1969-09-08 16:25:00,0 +7911,1967-02-07 12:51:00,0 +313,1967-05-20 08:24:00,0 +2128,1966-05-03 12:55:00,0 +4903,1967-12-03 10:52:00,0 +2083,1965-10-14 03:16:00,0 +1828,1966-10-15 21:27:00,0 +8404,1967-02-14 15:51:00,0 +2045,1968-02-23 01:25:00,0 +584,1968-07-31 13:59:00,0 +8166,1966-10-25 17:20:00,0 +3855,1965-09-29 19:33:00,0 +8540,1966-08-16 10:50:00,0 +8782,1965-08-02 01:05:00,0 +1254,1965-07-09 00:35:00,0 +2785,1966-05-20 17:14:00,0 +302,1965-10-29 18:35:00,0 +6082,1965-11-30 03:00:00,0 +2336,1965-09-14 19:34:00,0 +5297,1969-04-06 05:42:00,0 +8818,1966-06-27 17:15:00,0 +6379,1966-12-05 09:45:00,0 +9636,1965-08-08 17:51:00,0 +6580,1967-03-25 11:01:00,0 +7472,1965-11-10 00:37:00,0 +587,1969-05-05 17:43:00,0 +7103,1969-06-06 21:36:00,0 +102,1969-02-25 21:58:00,0 +5736,1965-04-11 00:46:00,0 +9611,1967-09-29 13:18:00,0 +4737,1968-04-06 04:13:00,0 +5239,1965-01-20 01:12:00,0 +2292,1965-09-12 20:03:00,0 +246,1965-11-02 16:52:00,0 +4672,1966-06-17 09:05:00,0 +4526,1968-05-02 09:19:00,0 +8186,1966-10-27 09:23:00,0 +6623,1969-12-03 20:03:00,0 +6677,1967-12-27 15:28:00,0 +9046,1966-05-12 00:33:00,0 +3566,1967-11-13 05:10:00,0 +1412,1969-07-13 10:00:00,0 +8927,1968-03-12 00:34:00,0 +3966,1965-08-20 15:09:00,0 +4937,1965-05-20 13:08:00,0 +3406,1965-08-17 20:12:00,0 +7423,1966-07-30 20:13:00,0 +9133,1966-01-30 06:02:00,0 +488,1965-01-23 06:23:00,0 +4564,1966-08-11 20:49:00,0 +7497,1969-04-19 00:25:00,0 +406,1965-07-23 18:11:00,0 +450,1969-12-29 19:01:00,0 +9966,1967-03-21 12:13:00,0 +9922,1967-09-25 10:46:00,0 +3443,1966-12-18 09:06:00,0 +7584,1966-12-31 18:58:00,0 +7825,1966-11-22 02:48:00,0 +5777,1965-09-02 10:29:00,0 +1731,1969-04-10 02:46:00,0 +7288,1969-07-12 13:49:00,0 +4734,1966-11-06 10:10:00,0 +1565,1969-10-30 19:56:00,0 +1447,1966-02-02 20:14:00,0 +8929,1967-05-19 12:45:00,0 +3396,1965-08-16 06:22:00,0 +1027,1967-09-17 17:17:00,0 +3178,1965-11-06 18:08:00,0 +7678,1969-02-19 23:19:00,0 +8116,1968-04-25 05:11:00,0 +1075,1966-02-10 02:28:00,0 +9064,1968-10-31 13:48:00,0 +4262,1968-12-20 09:35:00,0 +5610,1969-07-19 19:18:00,0 +491,1965-06-06 00:41:00,0 +3939,1968-07-21 14:14:00,0 +992,1965-08-12 21:58:00,0 +8590,1966-11-17 16:05:00,0 +2963,1968-11-28 01:34:00,0 +6655,1968-03-22 21:04:00,0 +9688,1967-01-06 13:22:00,0 +2235,1965-07-25 14:16:00,0 +3433,1968-11-26 19:41:00,0 +9273,1968-06-05 12:04:00,0 +127,1967-10-11 00:58:00,0 +9591,1969-03-29 04:08:00,0 +3441,1965-11-09 07:02:00,0 +309,1967-09-18 00:59:00,0 +3741,1965-04-30 08:02:00,0 +458,1968-12-09 23:55:00,0 +5479,1965-08-24 06:12:00,0 +9818,1967-04-25 06:44:00,0 +7665,1966-04-14 21:49:00,0 +3940,1969-09-26 01:25:00,0 +1817,1969-08-19 17:16:00,0 +507,1967-11-15 08:28:00,0 +845,1968-05-24 14:13:00,0 +5647,1968-01-01 19:58:00,0 +3493,1968-08-22 21:26:00,0 +7002,1969-02-02 00:02:00,0 +9684,1969-09-27 05:45:00,0 +7259,1965-02-21 00:44:00,0 +3794,1967-03-16 18:34:00,0 +3079,1966-12-12 00:17:00,0 +7185,1967-11-29 21:56:00,0 +1656,1969-12-14 00:18:00,0 +1338,1966-06-25 09:41:00,0 +1525,1969-10-31 05:07:00,0 +9686,1967-03-01 15:28:00,0 +2092,1966-08-31 03:39:00,0 +2605,1968-11-12 17:44:00,0 +7049,1969-06-22 10:11:00,0 +6996,1965-10-15 01:19:00,0 +1899,1965-05-31 20:35:00,0 +3553,1968-02-10 10:49:00,0 +1331,1967-12-18 11:18:00,0 +7261,1968-10-20 10:23:00,0 +3415,1967-07-20 16:37:00,0 +7327,1965-11-20 07:29:00,0 +1244,1969-03-28 21:20:00,0 +1680,1968-03-27 21:44:00,0 +9267,1965-06-22 05:09:00,0 +807,1969-12-14 04:29:00,0 +7339,1967-08-09 10:14:00,0 +6130,1965-06-07 13:56:00,0 +9980,1968-12-20 20:15:00,0 +9080,1967-05-23 11:19:00,0 +202,1965-06-11 04:22:00,0 +4702,1969-07-27 00:33:00,0 +4702,1965-12-16 01:32:00,0 +65,1967-05-14 01:14:00,0 +3572,1965-04-23 10:29:00,0 +8970,1967-02-19 22:16:00,0 +3112,1968-10-02 13:50:00,0 +7306,1968-06-16 21:37:00,0 +3000,1965-01-18 03:09:00,0 +4362,1966-07-27 04:51:00,0 +347,1965-10-27 23:49:00,0 +7127,1967-04-20 08:51:00,0 +3580,1968-06-17 18:26:00,0 +2159,1968-01-23 08:41:00,0 +6323,1969-12-16 16:25:00,0 +3341,1968-08-18 22:34:00,0 +1660,1965-03-03 15:12:00,0 +7732,1968-05-16 20:32:00,0 +9763,1966-01-07 13:34:00,0 +9693,1968-12-06 23:19:00,0 +7664,1968-02-04 23:57:00,0 +8358,1967-09-21 18:02:00,0 +2878,1967-05-17 16:09:00,0 +9805,1969-09-01 06:39:00,0 +8765,1968-07-17 11:57:00,0 +3522,1965-07-07 04:20:00,0 +1011,1969-01-13 16:48:00,0 +8441,1968-10-13 22:51:00,0 +2726,1969-04-05 17:05:00,0 +396,1967-01-26 06:16:00,0 +3848,1969-10-11 08:30:00,0 +5166,1966-09-27 16:37:00,0 +2800,1969-01-11 06:34:00,0 +8276,1967-09-19 06:28:00,0 +7769,1967-11-02 01:52:00,0 +979,1967-10-27 15:31:00,0 +2588,1965-03-02 21:28:00,0 +247,1968-08-09 21:50:00,0 +8088,1966-10-29 14:17:00,0 +6046,1966-06-03 23:19:00,0 +7729,1968-03-06 20:18:00,0 +4252,1968-09-21 11:00:00,0 +677,1967-11-27 12:23:00,0 +1500,1968-05-26 06:30:00,0 +9017,1967-09-02 03:29:00,0 +9884,1966-10-19 15:30:00,0 +853,1969-10-28 08:40:00,0 +5425,1969-07-24 07:36:00,0 +8126,1969-11-25 12:17:00,0 +5074,1967-12-03 17:47:00,0 +4874,1965-01-08 18:40:00,0 +4441,1965-12-13 19:51:00,0 +2989,1966-05-01 00:56:00,0 +3403,1966-06-30 06:37:00,0 +8348,1966-07-07 05:49:00,0 +6338,1967-12-27 00:00:00,0 +8844,1965-05-30 09:07:00,0 +6064,1965-05-31 02:38:00,0 +4946,1968-08-18 08:42:00,0 +6149,1966-01-15 12:28:00,0 +6920,1967-07-29 10:37:00,0 +7748,1969-08-16 08:49:00,0 +2947,1969-12-11 23:42:00,0 +315,1969-06-07 13:59:00,0 +9190,1965-04-22 00:23:00,0 +8573,1966-06-26 21:59:00,0 +8569,1967-10-07 16:45:00,0 +7058,1965-09-09 04:58:00,0 +7138,1966-05-15 03:14:00,0 +81,1967-11-23 02:59:00,0 +5845,1969-12-31 10:03:00,0 +9865,1968-10-21 04:30:00,0 +5561,1966-03-04 02:34:00,0 +3685,1967-05-12 06:17:00,0 +8335,1967-12-05 04:00:00,0 +8837,1968-01-03 07:48:00,0 +6580,1966-10-10 02:04:00,0 +3890,1969-11-30 18:58:00,0 +1888,1967-05-10 06:16:00,0 +2368,1969-07-09 16:40:00,0 +6964,1969-11-01 00:07:00,0 +9919,1965-01-17 18:33:00,0 +7303,1966-02-02 12:55:00,0 +237,1965-06-04 13:27:00,0 +1087,1965-10-31 07:35:00,0 +264,1966-03-23 20:51:00,0 +3468,1967-11-06 10:02:00,0 +3319,1969-06-10 06:13:00,0 +4136,1967-08-26 21:07:00,0 +6063,1967-02-08 22:36:00,0 +9782,1966-09-20 00:17:00,0 +6891,1968-12-23 21:07:00,0 +5821,1965-06-27 15:57:00,0 +5746,1965-04-10 07:50:00,0 +4412,1968-03-08 20:42:00,0 +9561,1965-02-03 19:29:00,0 +940,1966-02-01 21:47:00,0 +4264,1967-07-31 03:33:00,0 +1310,1967-04-01 00:12:00,0 +9854,1969-07-08 10:32:00,0 +2240,1966-01-12 22:23:00,0 +6255,1969-02-24 17:15:00,0 +2860,1967-04-12 01:09:00,0 +487,1967-08-18 22:41:00,0 +5363,1969-02-19 15:03:00,0 +1568,1966-07-10 22:04:00,0 +4225,1966-10-10 01:01:00,0 +1793,1968-01-02 11:23:00,0 +7032,1966-10-07 03:21:00,0 +6457,1965-11-22 10:33:00,0 +5962,1965-01-19 00:21:00,0 +3977,1967-01-12 01:49:00,0 +7260,1966-11-19 14:34:00,0 +8182,1965-04-03 13:47:00,0 +8393,1967-02-14 01:14:00,0 +2345,1965-07-04 04:02:00,0 +3393,1968-05-03 15:21:00,0 +6866,1966-12-22 00:16:00,0 +7745,1968-03-26 05:53:00,0 +4437,1965-01-02 06:03:00,0 +1948,1967-02-09 17:44:00,0 +3530,1967-05-16 17:40:00,0 +9171,1965-03-07 04:54:00,0 +1314,1966-05-04 13:51:00,0 +8061,1967-02-08 06:30:00,0 +1790,1968-09-28 20:04:00,0 +5047,1969-02-23 20:02:00,0 +6481,1967-02-10 22:59:00,0 +3297,1969-09-07 09:02:00,0 +6528,1969-08-19 08:48:00,0 +3249,1969-09-03 01:54:00,0 +2467,1968-04-17 22:53:00,0 +9003,1966-01-19 08:00:00,0 +9852,1969-06-06 02:44:00,0 +7441,1966-10-27 22:57:00,0 +9597,1968-02-17 17:33:00,0 +1111,1969-09-10 01:53:00,0 +3939,1968-10-25 23:45:00,0 +8645,1966-08-09 16:34:00,0 +1572,1968-12-14 04:07:00,0 +6144,1965-04-09 19:50:00,0 +4429,1967-07-27 23:23:00,0 +1742,1966-08-15 04:57:00,0 +3319,1966-10-09 13:47:00,0 +4484,1966-03-03 03:18:00,0 +6083,1965-12-02 14:24:00,0 +3875,1965-09-05 16:47:00,0 +411,1969-03-07 22:44:00,0 +6086,1968-08-19 03:24:00,0 +4570,1969-06-13 06:17:00,0 +3306,1969-08-08 08:08:00,0 +4715,1966-06-28 22:47:00,0 +6934,1968-08-09 15:01:00,0 +9179,1965-08-17 14:39:00,0 +8070,1966-07-01 00:51:00,0 +9859,1966-11-29 00:50:00,0 +1058,1965-11-29 03:59:00,0 +128,1966-07-14 15:05:00,0 +6207,1965-07-29 16:08:00,0 +9976,1969-04-14 06:37:00,0 +8637,1966-03-12 15:53:00,0 +9590,1969-07-29 13:14:00,0 +6845,1968-09-15 23:54:00,0 +6089,1969-02-27 06:33:00,0 +3363,1969-10-21 23:16:00,0 +6997,1968-09-04 00:21:00,0 +421,1968-06-08 20:51:00,0 +9657,1968-10-17 20:47:00,0 +1015,1965-09-24 16:51:00,0 +2924,1966-12-30 16:08:00,0 +8410,1969-12-30 03:43:00,0 +35,1968-05-08 18:00:00,0 +3937,1968-03-21 13:52:00,0 +8539,1965-04-17 23:38:00,0 +6354,1968-09-28 02:57:00,0 +4537,1966-01-11 17:29:00,0 +6340,1969-06-21 22:05:00,0 +1422,1966-03-18 16:32:00,0 +2389,1967-12-17 18:33:00,0 +9766,1966-02-15 22:45:00,0 +5382,1966-07-15 19:17:00,0 +2418,1968-07-16 18:38:00,0 +4033,1969-03-23 02:33:00,0 +4671,1967-08-18 07:14:00,0 +6663,1967-10-14 13:52:00,0 +6298,1968-01-24 06:06:00,0 +598,1965-09-08 19:02:00,0 +7680,1969-02-12 23:41:00,0 +7828,1966-06-23 21:24:00,0 +4657,1965-10-29 15:16:00,0 +8963,1965-08-12 19:07:00,0 +189,1967-05-05 15:05:00,0 +4021,1965-10-15 12:36:00,0 +4730,1965-12-17 02:38:00,0 +9443,1968-09-24 07:19:00,0 +4801,1968-12-26 10:05:00,0 +7027,1965-02-14 03:57:00,0 +2653,1965-11-10 22:31:00,0 +1374,1967-04-25 19:41:00,0 +1610,1967-04-29 07:30:00,0 +5896,1965-08-23 18:00:00,0 +7988,1966-06-14 21:33:00,0 +2860,1966-12-31 15:46:00,0 +7828,1966-01-12 00:35:00,0 +1397,1969-12-01 15:09:00,0 +662,1967-02-07 12:32:00,0 +6684,1966-05-01 06:07:00,0 +8778,1967-05-04 09:30:00,0 +975,1966-08-01 02:23:00,0 +3759,1967-01-20 04:40:00,0 +7961,1966-06-08 15:25:00,0 +6078,1966-10-12 15:45:00,0 +1916,1967-01-12 19:22:00,0 +3045,1966-01-25 08:12:00,0 +5823,1967-11-14 17:46:00,0 +5168,1966-02-11 12:17:00,0 +1834,1968-09-04 22:38:00,0 +4255,1966-04-19 16:17:00,0 +6055,1967-07-14 04:07:00,0 +6264,1969-01-06 21:31:00,0 +6424,1965-02-07 17:38:00,0 +6446,1967-07-21 13:27:00,0 +9259,1968-02-16 08:05:00,0 +4597,1965-11-10 18:49:00,0 +5045,1965-06-29 21:37:00,0 +9737,1968-06-28 00:35:00,0 +8524,1969-11-10 07:40:00,0 +2409,1968-03-07 03:35:00,0 +2427,1968-02-13 20:20:00,0 +9994,1969-12-30 22:08:00,0 +5134,1968-06-09 20:31:00,0 +7810,1968-03-12 10:37:00,0 +2391,1967-04-27 08:55:00,0 +245,1969-11-09 06:42:00,0 +1562,1968-11-08 06:32:00,0 +4831,1969-12-24 11:06:00,0 +1160,1968-05-23 06:17:00,0 +1932,1966-02-11 07:51:00,0 +6673,1968-08-12 03:33:00,0 +3173,1969-09-09 01:56:00,0 +5219,1968-10-27 09:58:00,0 +6320,1965-12-16 06:10:00,0 +926,1966-06-02 15:13:00,0 +9360,1965-07-23 09:30:00,0 +3114,1967-03-04 01:13:00,0 +8251,1967-09-27 20:35:00,0 +1749,1966-12-07 14:18:00,0 +1691,1965-11-24 06:06:00,0 +6383,1969-09-11 22:11:00,0 +5264,1966-09-17 23:38:00,0 +1597,1965-01-27 09:43:00,0 +2605,1965-02-28 17:54:00,0 +2788,1967-03-10 10:32:00,0 +9038,1969-06-11 04:52:00,0 +2088,1967-10-30 15:39:00,0 +9607,1966-07-16 10:32:00,0 +2894,1966-02-21 11:12:00,0 +4440,1967-05-09 17:11:00,0 +9902,1966-08-20 13:00:00,0 +6130,1968-07-29 03:41:00,0 +4727,1967-05-27 10:21:00,0 +1345,1967-10-16 11:43:00,0 +5135,1965-11-29 11:30:00,0 +7897,1965-04-13 09:36:00,0 +3510,1965-05-14 18:08:00,0 +5648,1965-08-19 23:00:00,0 +3769,1966-10-02 00:06:00,0 +5467,1969-09-19 16:22:00,0 +167,1967-01-31 04:41:00,0 +2575,1967-03-31 12:57:00,0 +7674,1965-02-14 21:11:00,0 +8071,1965-12-17 11:41:00,0 +2168,1969-03-11 23:52:00,0 +682,1967-07-17 08:53:00,0 +5927,1966-06-24 13:40:00,0 +4052,1965-09-06 18:56:00,0 +8917,1965-12-24 21:59:00,0 +5312,1969-09-28 02:57:00,0 +5711,1965-09-20 21:14:00,0 +1070,1966-03-15 14:04:00,0 +1169,1967-11-26 13:14:00,0 +6140,1968-06-21 02:51:00,0 +14,1967-07-31 12:06:00,0 +7620,1965-12-01 21:48:00,0 +8917,1969-11-23 12:06:00,0 +8351,1969-08-04 06:16:00,0 +2864,1965-12-24 21:16:00,0 +7541,1969-08-04 10:42:00,0 +2994,1966-12-16 00:19:00,0 +3339,1965-04-20 11:34:00,0 +3971,1966-03-21 08:31:00,0 +9976,1969-08-25 06:37:00,0 +1446,1965-05-19 14:32:00,0 +5449,1965-01-13 11:55:00,0 +9196,1967-02-14 10:21:00,0 +7214,1966-04-16 09:27:00,0 +4402,1969-05-04 17:52:00,0 +2850,1968-07-08 10:21:00,0 +7123,1968-10-09 19:28:00,0 +6667,1968-01-03 10:39:00,0 +6279,1967-07-08 06:06:00,0 +5434,1967-11-18 05:43:00,0 +8041,1968-07-11 18:28:00,0 +1186,1969-04-19 13:19:00,0 +3015,1965-06-26 20:19:00,0 +5105,1966-01-19 11:53:00,0 +4079,1968-11-30 02:51:00,0 +7686,1969-10-27 21:45:00,0 +9337,1968-02-06 21:28:00,0 +181,1969-10-15 09:06:00,0 +6014,1965-06-25 05:43:00,0 +9018,1969-05-29 02:57:00,0 +3717,1969-08-14 22:52:00,0 +9785,1967-09-16 04:50:00,0 +700,1968-06-16 16:31:00,0 +1869,1967-03-10 07:22:00,0 +7149,1968-11-06 22:42:00,0 +5890,1969-05-10 11:16:00,0 +1073,1969-05-14 01:27:00,0 +7078,1968-10-25 04:36:00,0 +6125,1968-06-13 22:09:00,0 +362,1966-06-09 05:22:00,0 +2859,1965-12-18 01:12:00,0 +6453,1966-05-21 18:48:00,0 +5129,1965-01-10 14:07:00,0 +8602,1968-07-24 12:28:00,0 +8387,1965-02-24 02:17:00,0 +3473,1969-09-16 02:07:00,0 +4005,1965-07-31 09:45:00,0 +1821,1966-06-13 16:23:00,0 +4452,1966-07-28 20:04:00,0 +311,1967-04-14 17:05:00,0 +8816,1965-12-13 13:43:00,0 +9270,1969-08-31 11:38:00,0 +3112,1965-02-03 11:11:00,0 +1757,1966-08-17 21:27:00,0 +513,1968-06-12 19:32:00,0 +1415,1965-04-27 22:05:00,0 +6805,1969-02-08 07:54:00,0 +5253,1969-08-02 19:43:00,0 +1145,1967-05-30 17:14:00,0 +2318,1967-01-09 19:49:00,0 +2748,1967-04-02 05:45:00,0 +219,1966-02-10 06:11:00,0 +3904,1966-03-15 02:51:00,0 +4158,1968-09-22 06:35:00,0 +4522,1969-02-22 04:23:00,0 +8100,1966-09-20 07:46:00,0 +4520,1967-05-21 06:30:00,0 +2524,1965-09-27 17:21:00,0 +6656,1968-04-08 21:43:00,0 +2325,1967-05-03 21:42:00,0 +9976,1969-06-27 19:52:00,0 +6279,1966-07-28 07:54:00,0 +919,1967-05-01 09:44:00,0 +429,1969-12-26 11:50:00,0 +1938,1965-08-21 04:14:00,0 +8263,1968-05-22 06:19:00,0 +6782,1966-05-30 17:45:00,0 +757,1966-05-29 03:38:00,0 +746,1966-12-30 21:29:00,0 +4970,1967-08-29 22:49:00,0 +7681,1969-04-15 07:04:00,0 +5491,1966-06-22 05:48:00,0 +5954,1968-05-04 04:16:00,0 +327,1965-10-23 00:08:00,0 +729,1967-02-06 03:08:00,0 +4172,1966-05-10 19:33:00,0 +2613,1969-01-22 23:20:00,0 +3021,1965-09-06 13:43:00,0 +8771,1966-07-04 15:07:00,0 +2940,1966-01-01 09:21:00,0 +8725,1968-05-16 00:24:00,0 +153,1967-10-24 03:11:00,0 +2370,1966-07-07 06:53:00,0 +2439,1965-07-31 05:11:00,0 +3219,1965-03-18 18:44:00,0 +775,1967-11-19 19:01:00,0 +6635,1967-07-05 15:16:00,0 +1728,1967-12-05 04:11:00,0 +9865,1969-06-03 23:40:00,0 +503,1966-01-11 05:14:00,0 +2404,1967-11-30 05:04:00,0 +3247,1969-04-27 07:07:00,0 +116,1968-06-23 01:58:00,0 +6309,1968-12-02 18:05:00,0 +5758,1965-08-16 22:13:00,0 +2604,1969-05-25 08:42:00,0 +5337,1966-04-08 08:31:00,0 +7837,1968-06-23 12:31:00,0 +3593,1969-02-05 15:11:00,0 +502,1967-08-02 03:44:00,0 +3574,1969-10-04 21:22:00,0 +9766,1968-11-20 16:35:00,0 +8357,1967-03-02 18:35:00,0 +6464,1967-09-20 23:19:00,0 +6857,1966-05-19 22:08:00,0 +8720,1968-03-31 02:15:00,0 +9976,1965-03-16 16:52:00,0 +1750,1965-11-18 07:10:00,0 +2887,1966-10-18 12:56:00,0 +6326,1965-08-20 08:05:00,0 +7209,1965-01-10 13:53:00,0 +3114,1969-06-06 09:30:00,0 +8865,1967-09-18 01:52:00,0 +9218,1965-05-28 08:55:00,0 +8021,1966-01-20 23:17:00,0 +9333,1967-08-10 01:09:00,0 +465,1967-06-14 11:14:00,0 +3419,1969-04-29 09:40:00,0 +7452,1967-04-26 11:32:00,0 +1391,1969-01-13 22:33:00,0 +2978,1968-11-12 21:58:00,0 +1433,1965-03-14 01:30:00,0 +6862,1965-02-16 04:07:00,0 +4819,1967-05-29 01:25:00,0 +1614,1969-10-19 01:05:00,0 +7701,1967-07-09 19:35:00,0 +2210,1969-08-09 08:19:00,0 +5387,1965-01-07 21:45:00,0 +3439,1969-07-18 13:52:00,0 +7882,1967-07-17 00:35:00,0 +994,1968-12-27 10:28:00,0 +2823,1965-07-02 11:05:00,0 +7947,1969-08-26 19:06:00,0 +3809,1967-05-16 08:57:00,0 +958,1968-08-16 18:02:00,0 +201,1968-10-03 01:11:00,0 +7219,1965-07-10 18:08:00,0 +9049,1968-07-31 19:14:00,0 +1325,1969-03-25 00:33:00,0 +9118,1966-09-29 09:55:00,0 +8066,1967-06-16 05:22:00,0 +3966,1966-10-26 06:22:00,0 +6999,1967-08-02 09:43:00,0 +4305,1966-05-12 01:12:00,0 +3100,1966-10-14 14:50:00,0 +3931,1966-12-16 05:26:00,0 +7524,1966-12-21 22:20:00,0 +2128,1969-10-03 07:46:00,0 +1102,1968-03-24 22:51:00,0 +9487,1968-03-01 15:29:00,0 +544,1966-06-22 14:20:00,0 +2481,1967-11-26 06:47:00,0 +237,1968-07-04 04:08:00,0 +1713,1966-10-15 19:06:00,0 +6193,1969-09-19 04:20:00,0 +4593,1969-11-10 23:12:00,0 +115,1969-05-07 22:33:00,0 +3455,1967-06-08 04:45:00,0 +1931,1969-01-13 19:09:00,0 +2216,1965-07-31 05:04:00,0 +1677,1968-04-08 06:54:00,0 +4996,1968-09-23 17:56:00,0 +4591,1968-06-10 13:11:00,0 +5609,1969-05-14 01:33:00,0 +4283,1969-12-27 19:37:00,0 +139,1965-11-01 12:48:00,0 +9327,1969-03-18 21:54:00,0 +7849,1968-02-29 11:38:00,0 +7853,1965-03-12 17:32:00,0 +1737,1965-03-10 22:58:00,0 +1252,1969-01-15 05:09:00,0 +6473,1967-08-13 18:23:00,0 +7098,1966-07-15 01:58:00,0 +6042,1965-10-12 15:28:00,0 +2430,1967-03-27 13:14:00,0 +7918,1969-03-14 03:58:00,0 +6916,1965-09-19 02:00:00,0 +603,1969-01-05 16:41:00,0 +3689,1966-12-28 04:09:00,0 +1579,1967-06-12 23:50:00,0 +3744,1966-06-07 09:17:00,0 +1157,1969-05-22 16:54:00,0 +6072,1965-04-06 10:20:00,0 +8141,1966-12-27 01:28:00,0 +5471,1968-05-25 17:35:00,0 +7850,1966-11-08 19:09:00,0 +7167,1966-08-04 04:52:00,0 +3781,1966-06-06 20:38:00,0 +2724,1966-12-27 14:11:00,0 +1459,1966-07-10 08:27:00,0 +353,1965-05-30 22:22:00,0 +5333,1969-07-13 00:48:00,0 +5533,1965-06-28 12:14:00,0 +1154,1968-12-11 06:34:00,0 +4634,1969-06-17 02:24:00,0 +7053,1969-08-20 07:34:00,0 +5456,1968-09-29 14:33:00,0 +1265,1966-02-10 21:45:00,0 +7022,1965-08-14 15:42:00,0 +5643,1966-06-22 06:26:00,0 +5376,1965-09-15 04:37:00,0 +717,1965-01-22 21:45:00,0 +2491,1969-11-05 15:20:00,0 +6497,1967-02-16 12:13:00,0 +3038,1969-09-30 15:00:00,0 +4091,1968-05-30 01:09:00,0 +9013,1966-06-19 06:16:00,0 +8643,1969-07-13 14:03:00,0 +4469,1965-04-06 18:24:00,0 +8304,1969-05-27 19:03:00,0 +5204,1969-07-26 06:28:00,0 +7233,1969-07-08 22:41:00,0 +149,1968-09-20 23:00:00,0 +716,1967-08-13 20:31:00,0 +6194,1968-04-15 14:13:00,0 +9840,1967-05-17 02:18:00,0 +128,1966-09-20 01:00:00,0 +1775,1968-03-27 04:02:00,0 +7370,1966-08-28 15:55:00,0 +3114,1969-07-05 09:30:00,0 +4116,1969-06-10 15:02:00,0 +2634,1969-04-25 14:52:00,0 +287,1969-05-14 22:09:00,0 +9726,1969-10-18 06:08:00,0 +3997,1965-01-25 11:05:00,0 +6761,1965-07-09 09:31:00,0 +123,1965-02-02 13:20:00,0 +4849,1969-08-24 23:24:00,0 +6085,1969-05-19 21:19:00,0 +3191,1966-09-28 05:00:00,0 +1197,1967-09-25 19:05:00,0 +6851,1969-03-11 03:31:00,0 +5454,1968-08-12 17:37:00,0 +5018,1965-03-22 21:17:00,0 +3998,1967-09-09 16:14:00,0 +1807,1969-09-27 22:27:00,0 +6599,1965-02-09 14:53:00,0 +6553,1966-02-09 01:32:00,0 +8097,1966-04-20 22:56:00,0 +7230,1967-12-13 02:42:00,0 +2772,1966-06-13 04:04:00,0 +4681,1968-07-11 09:05:00,0 +811,1966-07-15 01:03:00,0 +9547,1965-12-21 12:37:00,0 +9518,1965-05-17 23:23:00,0 +3970,1966-07-24 01:27:00,0 +3886,1966-06-13 11:30:00,0 +4672,1969-06-09 15:14:00,0 +3777,1967-10-25 22:14:00,0 +1456,1966-06-18 02:33:00,0 +3975,1967-04-10 21:34:00,0 +229,1965-11-04 10:24:00,0 +7175,1965-10-10 02:02:00,0 +1889,1965-11-11 07:13:00,0 +2846,1965-02-02 10:57:00,0 +9668,1966-12-21 21:31:00,0 +7422,1965-12-31 22:17:00,0 +8929,1967-02-20 13:29:00,0 +8795,1965-12-08 09:21:00,0 +154,1969-07-07 22:54:00,0 +7970,1966-04-03 17:40:00,0 +4566,1969-10-23 00:38:00,0 +9341,1965-02-11 13:38:00,0 +3863,1969-02-08 17:19:00,0 +7372,1967-10-04 00:57:00,0 +9352,1965-05-14 17:44:00,0 +7577,1968-09-14 21:37:00,0 +784,1966-01-01 00:05:00,0 +6380,1969-10-16 03:22:00,0 +1429,1965-08-06 07:52:00,0 +2861,1968-09-17 08:18:00,0 +5231,1967-08-26 02:05:00,0 +1333,1965-12-09 18:25:00,0 +1475,1966-03-03 23:31:00,0 +4419,1965-07-31 06:00:00,0 +9050,1965-11-03 16:08:00,0 +6506,1969-04-26 12:28:00,0 +5536,1966-03-18 10:07:00,0 +5177,1967-01-19 10:24:00,0 +2303,1968-04-30 21:55:00,0 +9817,1965-04-06 17:29:00,0 +1815,1965-09-24 23:23:00,0 +6742,1967-07-17 08:18:00,0 +239,1969-10-07 12:48:00,0 +3262,1969-04-20 20:09:00,0 +1587,1965-11-26 02:13:00,0 +8026,1966-10-14 04:20:00,0 +4736,1966-11-02 03:01:00,0 +9801,1967-01-06 14:21:00,0 +3426,1965-04-29 16:03:00,0 +6428,1966-05-29 06:27:00,0 +3103,1968-12-18 22:14:00,0 +9178,1966-06-11 23:53:00,0 +386,1968-08-10 03:29:00,0 +3075,1967-02-15 08:11:00,0 +8516,1965-11-19 11:26:00,0 +7495,1968-07-21 07:58:00,0 +3319,1967-07-29 11:23:00,0 +5238,1968-06-17 07:41:00,0 +3144,1967-12-27 01:55:00,0 +1822,1968-07-22 05:03:00,0 +2921,1967-11-23 02:41:00,0 +1575,1969-11-17 10:48:00,0 +4295,1969-07-18 14:51:00,0 +4081,1967-09-16 04:37:00,0 +4540,1965-07-04 09:42:00,0 +6139,1965-07-28 06:04:00,0 +1738,1965-03-13 08:08:00,0 +6023,1966-08-26 07:53:00,0 +6161,1966-08-24 16:16:00,0 +1322,1965-06-18 16:37:00,0 +6272,1967-01-29 21:56:00,0 +7321,1968-10-01 00:34:00,0 +7352,1965-01-26 10:38:00,0 +4803,1967-11-01 13:55:00,0 +8931,1968-08-25 14:08:00,0 +9919,1965-02-02 11:11:00,0 +633,1967-02-19 09:52:00,0 +9286,1968-03-01 04:51:00,0 +8512,1969-05-01 14:57:00,0 +3278,1967-05-26 18:16:00,0 +8895,1967-10-25 11:50:00,0 +7686,1968-08-24 19:37:00,0 +1327,1966-11-26 20:52:00,0 +9002,1965-10-09 22:35:00,0 +6952,1967-02-05 05:03:00,0 +4286,1967-02-14 16:11:00,0 +2059,1965-07-05 09:18:00,0 +2473,1968-04-21 15:26:00,0 +3344,1968-12-21 05:42:00,0 +1714,1968-01-22 11:57:00,0 +9978,1966-02-14 00:00:00,0 +4152,1965-06-01 22:46:00,0 +1174,1969-06-11 11:53:00,0 +445,1967-02-11 16:09:00,0 +4996,1965-01-17 09:11:00,0 +4250,1969-06-24 20:39:00,0 +2269,1966-03-15 15:40:00,0 +5352,1966-08-05 02:49:00,0 +2714,1965-01-12 16:52:00,0 +7083,1969-10-01 05:29:00,0 +6392,1966-09-09 04:14:00,0 +6210,1966-10-02 05:59:00,0 +3273,1967-04-11 05:53:00,0 +6394,1966-09-05 00:05:00,0 +4048,1969-08-15 20:56:00,0 +7364,1968-10-27 08:46:00,0 +7217,1965-02-21 07:23:00,0 +3068,1968-05-13 09:22:00,0 +8216,1967-07-14 11:26:00,0 +2137,1966-06-03 06:02:00,0 +8253,1966-05-03 23:00:00,0 +4253,1968-08-12 11:36:00,0 +1689,1965-01-10 19:03:00,0 +6216,1968-11-28 10:20:00,0 +5709,1965-10-18 06:12:00,0 +4566,1966-03-08 01:04:00,0 +8034,1968-02-22 16:45:00,0 +8392,1965-08-18 04:42:00,0 +1502,1967-12-01 19:02:00,0 +4011,1965-01-06 02:38:00,0 +8018,1965-10-26 12:34:00,0 +2633,1969-04-28 22:22:00,0 +5927,1966-12-11 14:49:00,0 +6833,1965-07-18 11:27:00,0 +386,1965-11-14 00:01:00,0 +1851,1968-09-10 19:15:00,0 +8619,1966-10-01 23:30:00,0 +1447,1966-11-02 17:36:00,0 +5462,1968-08-14 16:20:00,0 +7061,1966-07-13 03:16:00,0 +7729,1969-09-18 06:10:00,0 +6162,1965-01-25 21:57:00,0 +7840,1966-07-31 13:44:00,0 +9600,1966-11-06 16:45:00,0 +4810,1967-11-16 15:44:00,0 +1083,1966-07-27 17:49:00,0 +8859,1965-02-23 17:19:00,0 +7738,1966-08-05 08:31:00,0 +8588,1968-05-29 11:33:00,0 +4309,1968-07-18 13:10:00,0 +2593,1969-05-03 11:02:00,0 +5724,1968-10-11 04:35:00,0 +738,1968-08-27 17:35:00,0 +1737,1967-08-01 22:47:00,0 +7429,1966-01-23 18:48:00,0 +1089,1969-01-23 12:33:00,0 +5180,1968-08-13 03:07:00,0 +7994,1967-03-20 00:45:00,0 +7974,1966-05-04 16:35:00,0 +670,1966-05-28 07:04:00,0 +1654,1965-11-07 08:04:00,0 +2546,1969-05-17 06:34:00,0 +5032,1965-11-30 05:25:00,0 +5727,1967-10-30 00:03:00,0 +1970,1968-03-16 19:48:00,0 +1858,1969-03-20 20:31:00,0 +7802,1966-07-06 01:22:00,0 +4652,1968-05-01 20:38:00,0 +3114,1965-10-29 13:10:00,0 +5805,1968-09-03 05:27:00,0 +4868,1966-06-27 08:11:00,0 +9430,1968-10-19 02:13:00,0 +5611,1967-07-11 15:55:00,0 +6703,1968-09-30 02:51:00,0 +2548,1967-04-11 12:03:00,0 +3370,1967-10-18 03:31:00,0 +2191,1968-04-09 23:28:00,0 +8399,1967-09-27 08:25:00,0 +9662,1969-09-22 03:37:00,0 +8015,1965-08-05 08:31:00,0 +4148,1968-08-25 07:29:00,0 +946,1965-10-09 07:51:00,0 +7236,1965-10-01 19:43:00,0 +7353,1966-09-14 09:17:00,0 +4782,1969-10-21 13:07:00,0 +9965,1969-02-08 06:43:00,0 +1909,1969-01-03 01:15:00,0 +1269,1966-02-15 22:39:00,0 +9532,1966-08-03 21:35:00,0 +5957,1968-06-01 07:18:00,0 +4030,1968-08-29 22:11:00,0 +985,1969-08-18 10:15:00,0 +7072,1966-06-06 03:45:00,0 +8484,1969-08-13 06:34:00,0 +8359,1967-01-04 12:50:00,0 +5866,1965-07-20 07:22:00,0 +1158,1969-03-25 16:40:00,0 +8361,1969-07-09 14:55:00,0 +732,1969-02-27 12:12:00,0 +5658,1965-05-22 06:55:00,0 +8548,1967-05-21 03:35:00,0 +1082,1969-04-28 12:03:00,0 +4492,1968-02-24 22:14:00,0 +6823,1966-08-11 20:06:00,0 +7305,1966-02-13 12:02:00,0 +8071,1968-06-09 13:19:00,0 +5096,1969-01-15 19:01:00,0 +3164,1965-05-25 20:30:00,0 +9613,1967-09-13 14:47:00,0 +1701,1965-03-26 04:33:00,0 +1163,1966-02-04 01:16:00,0 +3945,1967-08-13 23:41:00,0 +8986,1965-12-31 21:57:00,0 +5867,1968-06-14 10:11:00,0 +635,1969-03-11 20:24:00,0 +8704,1966-08-30 03:11:00,0 +3128,1966-04-21 03:00:00,0 +742,1965-01-25 14:28:00,0 +8458,1966-07-01 19:18:00,0 +6777,1966-08-15 22:27:00,0 +9222,1966-03-11 10:24:00,0 +8739,1969-09-16 05:49:00,0 +4317,1968-08-19 18:24:00,0 +7920,1969-08-11 13:00:00,0 +5787,1965-11-10 21:57:00,0 +9469,1965-02-14 10:11:00,0 +3382,1966-11-06 10:06:00,0 +5140,1966-08-25 21:08:00,0 +6255,1968-06-05 10:19:00,0 +5975,1966-02-27 19:18:00,0 +8848,1968-02-17 11:55:00,0 +5150,1967-09-19 23:31:00,0 +5558,1965-02-08 04:42:00,0 +1374,1966-08-15 19:59:00,0 +8592,1966-03-26 12:50:00,0 +580,1966-06-09 05:49:00,0 +7500,1967-03-09 18:37:00,0 +9120,1968-02-19 22:27:00,0 +8339,1965-02-27 16:06:00,0 +9943,1968-09-03 12:56:00,0 +1404,1969-07-07 10:46:00,0 +1174,1968-10-03 06:11:00,0 +6246,1968-06-28 10:16:00,0 +8214,1965-12-13 10:34:00,0 +6473,1968-08-26 05:57:00,0 +5042,1967-06-02 20:21:00,0 +1340,1967-04-08 14:47:00,0 +9031,1967-11-19 13:23:00,0 +6860,1965-09-10 22:09:00,0 +5498,1965-07-04 14:23:00,0 +551,1967-12-06 22:10:00,0 +2760,1967-08-28 09:42:00,0 +7113,1967-07-12 08:24:00,0 +534,1969-07-14 14:53:00,0 +9323,1967-12-05 01:10:00,0 +2865,1968-02-12 11:42:00,0 +5851,1968-07-24 06:03:00,0 +8187,1965-09-30 21:44:00,0 +1730,1967-05-01 18:57:00,0 +403,1965-06-15 14:11:00,0 +9333,1967-12-23 10:00:00,0 +9268,1966-01-26 10:34:00,0 +1772,1965-03-07 17:44:00,0 +7996,1966-03-06 14:40:00,0 +7574,1968-03-28 16:57:00,0 +7930,1967-07-14 22:57:00,0 +1024,1966-07-05 21:12:00,0 +9266,1966-05-08 08:58:00,0 +9125,1966-07-01 13:27:00,0 +261,1966-10-09 21:37:00,0 +1552,1968-01-06 02:13:00,0 +3217,1965-02-06 16:37:00,0 +4657,1965-06-02 16:54:00,0 +5447,1965-09-14 15:38:00,0 +9491,1968-04-30 20:54:00,0 +8288,1968-05-18 07:42:00,0 +1590,1966-01-21 03:39:00,0 +4172,1969-09-27 12:51:00,0 +3724,1969-03-12 13:16:00,0 +5905,1969-02-02 10:51:00,0 +6474,1967-06-04 20:54:00,0 +5260,1965-02-01 16:18:00,0 +9554,1969-11-26 23:50:00,0 +4219,1967-09-11 18:31:00,0 +1668,1967-03-23 10:39:00,0 +1594,1966-09-20 14:12:00,0 +4102,1965-12-09 01:56:00,0 +4926,1968-12-09 07:08:00,0 +5156,1966-05-22 22:07:00,0 +7124,1969-02-01 11:32:00,0 +4042,1968-02-26 18:35:00,0 +44,1965-01-14 01:33:00,0 +3726,1965-05-25 12:29:00,0 +1724,1968-10-02 07:54:00,0 +147,1966-12-17 23:50:00,0 +8610,1969-01-05 02:46:00,0 +3486,1965-10-18 03:23:00,0 +3535,1965-02-07 11:48:00,0 +4677,1968-06-14 09:27:00,0 +9658,1965-04-17 22:55:00,0 +8249,1967-01-26 05:07:00,0 +8069,1967-08-27 18:01:00,0 +1887,1965-09-09 05:59:00,0 +3276,1966-05-15 00:03:00,0 +5240,1968-05-23 17:59:00,0 +9318,1967-12-22 05:31:00,0 +2692,1969-05-09 11:05:00,0 +6560,1966-07-21 04:20:00,0 +9146,1966-10-02 11:22:00,0 +514,1967-10-19 17:11:00,0 +909,1969-05-21 21:56:00,0 +5455,1967-05-05 09:28:00,0 +7337,1968-02-12 07:15:00,0 +4346,1968-10-08 17:35:00,0 +2368,1967-12-01 07:37:00,0 +8403,1968-10-22 23:47:00,0 +3378,1966-06-06 10:02:00,0 +9738,1965-09-04 08:23:00,0 +2166,1968-02-27 02:11:00,0 +7920,1967-12-07 01:50:00,0 +6168,1965-09-21 21:35:00,0 +8508,1965-08-18 03:13:00,0 +6666,1969-06-16 00:05:00,0 +5071,1968-07-17 16:56:00,0 +898,1968-08-07 04:51:00,0 +6706,1966-03-20 14:48:00,0 +1153,1967-02-27 00:57:00,0 +3629,1968-06-19 03:12:00,0 +2050,1969-04-13 14:54:00,0 +9951,1966-06-17 13:28:00,0 +6093,1969-08-22 10:40:00,0 +9715,1969-05-10 00:26:00,0 +2353,1969-01-27 13:15:00,0 +4577,1969-07-31 09:16:00,0 +5946,1969-03-25 22:49:00,0 +1362,1968-02-17 07:49:00,0 +8594,1969-12-25 00:22:00,0 +748,1969-10-08 05:14:00,0 +530,1969-01-16 08:38:00,0 +4171,1965-01-27 08:52:00,0 +1856,1966-02-18 14:28:00,0 +5846,1967-06-09 12:04:00,0 +4461,1968-04-09 23:36:00,0 +6570,1968-07-17 12:15:00,0 +9907,1969-02-19 18:48:00,0 +4831,1965-05-23 00:27:00,0 +2537,1967-03-31 03:03:00,0 +2196,1969-08-11 15:06:00,0 +8778,1968-05-16 20:01:00,0 +7458,1967-07-06 22:42:00,0 +9619,1968-12-01 05:31:00,0 +3184,1965-07-01 20:37:00,0 +3755,1969-08-19 21:12:00,0 +2894,1968-03-03 16:05:00,0 +1249,1965-11-24 21:20:00,0 +1369,1968-02-24 13:25:00,0 +2500,1966-04-03 01:34:00,0 +9257,1967-11-16 11:22:00,0 +2062,1967-09-07 09:15:00,0 +1151,1969-08-09 20:08:00,0 +4081,1967-01-02 14:40:00,0 +1053,1968-01-28 17:05:00,0 +1263,1967-11-06 07:16:00,0 +4232,1966-10-25 01:12:00,0 +9400,1965-03-26 12:10:00,0 +168,1967-09-05 08:17:00,0 +6316,1968-03-07 03:05:00,0 +7124,1966-11-15 22:52:00,0 +5206,1969-09-26 21:38:00,0 +6579,1969-03-08 21:15:00,0 +7484,1966-06-05 22:15:00,0 +3607,1965-06-03 13:35:00,0 +282,1967-08-20 14:30:00,0 +9769,1969-04-30 14:39:00,0 +6658,1966-05-17 20:41:00,0 +4597,1969-01-09 08:09:00,0 +5699,1968-06-09 07:38:00,0 +5281,1966-08-16 06:16:00,0 +8631,1965-12-25 13:52:00,0 +5415,1969-06-20 14:39:00,0 +8265,1969-01-06 18:38:00,0 +488,1968-03-07 18:30:00,0 +2331,1966-09-08 06:39:00,0 +1327,1965-11-24 02:20:00,0 +7168,1966-12-09 22:00:00,0 +3992,1968-07-06 04:50:00,0 +8091,1965-12-15 14:02:00,0 +8929,1967-10-29 05:21:00,0 +4738,1967-12-30 04:56:00,0 +3941,1966-11-23 17:49:00,0 +5108,1969-06-13 20:08:00,0 +2746,1966-08-17 21:55:00,0 +702,1965-09-09 23:02:00,0 +6429,1968-05-11 09:16:00,0 +794,1965-02-15 20:12:00,0 +7694,1969-09-30 06:06:00,0 +3082,1969-01-21 00:36:00,0 +5176,1968-03-23 07:30:00,0 +5574,1965-02-21 04:50:00,0 +9379,1966-09-18 20:26:00,0 +8042,1968-08-06 22:11:00,0 +8745,1966-05-08 17:09:00,0 +9957,1966-09-04 09:34:00,0 +159,1968-01-02 06:35:00,0 +7387,1969-10-05 15:07:00,0 +1045,1965-10-03 15:31:00,0 +3,1968-08-18 18:11:00,0 +3848,1969-07-22 02:37:00,0 +2091,1968-12-07 16:22:00,0 +4735,1966-02-21 06:31:00,0 +3779,1969-07-27 01:21:00,0 +4451,1965-01-17 04:19:00,0 +3202,1968-05-02 16:27:00,0 +467,1965-02-21 03:29:00,0 +3986,1966-06-30 02:42:00,0 +7421,1967-04-22 11:43:00,0 +5631,1966-01-10 18:42:00,0 +2710,1967-03-23 16:07:00,0 +7947,1966-07-05 09:32:00,0 +8348,1969-11-15 12:41:00,0 +8255,1965-05-05 02:26:00,0 +3888,1968-08-20 18:31:00,0 +4673,1967-11-30 16:32:00,0 +7897,1968-10-07 01:09:00,0 +9199,1965-03-27 07:06:00,0 +9480,1967-06-03 18:22:00,0 +987,1966-06-28 07:15:00,0 +1729,1966-06-11 17:06:00,0 +3292,1969-04-22 23:58:00,0 +4198,1966-03-20 20:50:00,0 +2869,1965-06-04 18:17:00,0 +8847,1967-10-12 18:29:00,0 +2950,1968-03-30 23:08:00,0 +6212,1969-07-05 17:05:00,0 +5053,1965-07-19 12:31:00,0 +3781,1968-01-10 16:40:00,0 +6384,1967-05-21 08:26:00,0 +8615,1967-08-07 22:29:00,0 +1770,1967-08-23 04:53:00,0 +6141,1967-12-07 02:25:00,0 +9385,1965-09-23 14:03:00,0 +6694,1967-02-25 16:21:00,0 +3802,1968-02-12 13:30:00,0 +643,1967-06-02 16:41:00,0 +9910,1967-06-08 18:40:00,0 +2532,1967-02-04 09:35:00,0 +599,1967-11-11 12:35:00,0 +6352,1968-12-30 06:06:00,0 +950,1965-05-11 02:55:00,0 +6837,1966-12-16 09:13:00,0 +7825,1967-01-14 18:48:00,0 +7162,1968-09-22 11:25:00,0 +6335,1965-12-02 17:59:00,0 +1584,1968-06-23 05:22:00,0 +6253,1965-11-16 10:50:00,0 +2405,1967-01-22 21:05:00,0 +6202,1968-10-17 22:41:00,0 +8359,1966-09-19 22:19:00,0 +2174,1965-09-11 20:51:00,0 +1099,1967-07-10 14:36:00,0 +8699,1966-12-24 18:36:00,0 +6708,1968-01-07 14:47:00,0 +8097,1967-09-19 10:44:00,0 +3445,1969-07-04 23:15:00,0 +8412,1967-01-29 09:23:00,0 +9054,1965-05-23 16:56:00,0 +6984,1969-06-05 15:21:00,0 +6896,1968-07-15 05:47:00,0 +6148,1967-03-10 01:14:00,0 +8685,1966-07-09 13:30:00,0 +305,1965-11-14 16:00:00,0 +866,1965-01-18 23:42:00,0 +4771,1965-10-26 00:39:00,0 +1093,1965-08-07 14:35:00,0 +7301,1966-03-14 05:22:00,0 +5833,1967-11-22 15:54:00,0 +1983,1969-12-31 05:36:00,0 +7323,1965-11-24 12:51:00,0 +8615,1967-04-09 16:00:00,0 +5047,1968-06-08 20:50:00,0 +954,1969-12-24 03:27:00,0 +6056,1966-01-29 17:58:00,0 +829,1968-03-10 16:02:00,0 +4671,1968-02-19 08:03:00,0 +2777,1965-10-14 11:23:00,0 +3862,1966-06-30 20:07:00,0 +1863,1968-08-21 07:28:00,0 +8777,1968-03-03 16:01:00,0 +6096,1966-11-05 12:49:00,0 +7932,1966-04-04 18:03:00,0 +9641,1967-09-06 03:35:00,0 +5147,1969-07-20 16:53:00,0 +2177,1966-03-02 14:54:00,0 +1064,1966-09-10 14:10:00,0 +2672,1969-05-31 17:33:00,0 +3723,1968-07-06 10:02:00,0 +6978,1966-10-10 21:31:00,0 +3422,1968-05-22 11:03:00,0 +798,1966-03-11 21:24:00,0 +3935,1967-03-15 13:10:00,0 +7667,1965-05-20 14:02:00,0 +9342,1969-06-22 13:15:00,0 +4491,1965-08-23 16:00:00,0 +6371,1969-02-20 03:03:00,0 +3315,1967-10-22 05:45:00,0 +5252,1967-12-02 18:41:00,0 +8795,1969-02-24 06:19:00,0 +4315,1969-10-29 23:26:00,0 +3849,1967-08-29 21:13:00,0 +9799,1968-02-03 22:05:00,0 +5280,1968-01-26 09:53:00,0 +1997,1968-08-12 16:51:00,0 +2100,1966-10-21 06:19:00,0 +7585,1966-09-19 15:21:00,0 +3822,1965-11-03 13:07:00,0 +5684,1967-03-29 15:11:00,0 +6723,1967-04-07 07:56:00,0 +7408,1968-12-31 05:16:00,0 +1382,1965-10-01 04:35:00,0 +8066,1966-06-25 20:45:00,0 +4440,1965-05-11 08:19:00,0 +2127,1968-10-22 07:49:00,0 +3817,1966-03-16 14:40:00,0 +5932,1966-12-01 14:02:00,0 +2656,1965-02-01 07:17:00,0 +9380,1969-03-26 11:38:00,0 +4097,1969-07-04 02:07:00,0 +7769,1967-06-05 05:03:00,0 +5888,1968-02-09 03:13:00,0 +7378,1968-06-10 19:28:00,0 +712,1965-12-14 07:47:00,0 +5145,1966-05-31 00:34:00,0 +3152,1969-07-30 20:24:00,0 +3482,1968-02-12 22:57:00,0 +9392,1967-06-24 14:11:00,0 +113,1965-11-25 04:33:00,0 +6565,1968-12-12 04:22:00,0 +6370,1969-11-23 11:23:00,0 +7563,1965-05-16 00:04:00,0 +7883,1966-07-28 05:32:00,0 +8178,1969-03-30 17:06:00,0 +6615,1966-10-24 10:37:00,0 +1668,1966-09-21 06:50:00,0 +742,1969-10-13 11:29:00,0 +7626,1968-02-03 09:28:00,0 +7543,1965-01-04 11:57:00,0 +8408,1969-03-17 10:22:00,0 +4650,1965-04-19 23:36:00,0 +358,1967-06-22 14:42:00,0 +3313,1968-09-24 08:25:00,0 +5927,1966-04-21 19:10:00,0 +6257,1969-06-18 03:01:00,0 +7895,1965-10-17 20:35:00,0 +6703,1965-11-07 03:26:00,0 +5525,1965-11-28 07:23:00,0 +4023,1965-06-18 18:53:00,0 +4608,1969-06-03 09:07:00,0 +5194,1967-10-20 00:36:00,0 +4839,1965-11-16 10:09:00,0 +5487,1965-12-31 04:10:00,0 +8162,1965-12-22 16:06:00,0 +7750,1965-11-05 00:46:00,0 +1891,1965-08-06 16:40:00,0 +6526,1965-08-18 20:41:00,0 +8851,1969-01-29 03:41:00,0 +7989,1967-06-22 05:00:00,0 +7211,1966-07-20 03:24:00,0 +5714,1968-04-10 18:42:00,0 +4345,1966-12-02 18:13:00,0 +8607,1966-06-14 19:59:00,0 +1047,1966-08-03 20:33:00,0 +6731,1967-07-11 11:58:00,0 +9277,1969-02-02 16:02:00,0 +4808,1969-03-18 18:02:00,0 +3490,1966-10-14 00:30:00,0 +1297,1968-04-11 21:47:00,0 +6677,1967-12-25 22:45:00,0 +9072,1967-11-07 06:28:00,0 +8520,1965-07-10 09:57:00,0 +3524,1965-02-26 22:18:00,0 +2343,1966-03-01 09:06:00,0 +1364,1965-08-12 16:25:00,0 +9246,1968-05-18 20:10:00,0 +6657,1967-06-07 00:04:00,0 +8971,1969-08-11 11:50:00,0 +6089,1967-07-15 07:16:00,0 +607,1967-12-21 00:48:00,0 +9161,1967-09-04 13:22:00,0 +1820,1969-11-27 05:57:00,0 +4940,1969-02-28 23:45:00,0 +9573,1969-10-14 20:12:00,0 +3742,1968-12-22 07:26:00,0 +1517,1967-06-25 15:31:00,0 +7866,1968-02-23 12:21:00,0 +354,1969-06-24 11:55:00,0 +2483,1967-10-13 11:04:00,0 +218,1967-01-01 16:52:00,0 +5716,1967-02-18 19:07:00,0 +1395,1969-05-10 15:34:00,0 +2552,1967-12-02 01:14:00,0 +4250,1965-01-26 07:35:00,0 +7659,1968-12-27 08:18:00,0 +7652,1965-04-27 19:38:00,0 +9137,1965-01-23 21:55:00,0 +1873,1968-05-28 00:23:00,0 +3518,1969-05-14 23:34:00,0 +8301,1966-03-28 15:47:00,0 +5178,1965-04-22 12:55:00,0 +3909,1966-05-07 02:06:00,0 +4161,1968-10-08 12:34:00,0 +3649,1965-05-17 17:20:00,0 +6174,1969-10-01 01:12:00,0 +8362,1969-02-10 18:00:00,0 +5490,1968-09-11 02:01:00,0 +1510,1967-05-31 07:08:00,0 +5344,1967-04-04 02:35:00,0 +5341,1966-05-15 09:15:00,0 +7009,1968-12-20 12:20:00,0 +5341,1968-04-28 15:08:00,0 +7140,1968-10-20 12:30:00,0 +4618,1966-01-04 12:18:00,0 +1029,1969-03-06 17:05:00,0 +2219,1968-07-24 22:28:00,0 +9967,1967-04-13 11:35:00,0 +9123,1969-12-03 14:16:00,0 +6234,1969-10-02 08:32:00,0 +9102,1967-11-11 20:31:00,0 +3325,1967-10-19 05:32:00,0 +1544,1965-06-11 05:31:00,0 +3616,1966-11-21 23:57:00,0 +1922,1965-06-30 07:22:00,0 +9061,1968-11-24 23:35:00,0 +3005,1965-05-16 21:25:00,0 +7277,1969-10-10 02:49:00,0 +553,1965-04-12 20:41:00,0 +4446,1966-05-31 21:50:00,0 +118,1968-02-27 04:18:00,0 +482,1969-12-28 21:14:00,0 +4278,1969-08-24 18:10:00,0 +6346,1968-07-02 03:55:00,0 +17,1965-06-16 07:00:00,0 +154,1968-04-11 22:39:00,0 +9135,1965-05-08 03:23:00,0 +6041,1969-01-29 22:05:00,0 +7472,1969-06-10 01:25:00,0 +3501,1965-03-17 21:00:00,0 +6187,1966-11-22 20:08:00,0 +6915,1968-12-17 17:37:00,0 +4022,1966-05-29 22:34:00,0 +9738,1965-05-01 13:59:00,0 +6264,1969-07-18 05:18:00,0 +251,1967-10-11 14:18:00,0 +1045,1965-10-01 02:27:00,0 +5974,1966-01-05 17:12:00,0 +2208,1966-08-23 22:44:00,0 +7185,1968-04-09 03:07:00,0 +2147,1969-01-30 10:06:00,0 +9699,1969-07-25 12:01:00,0 +309,1965-06-28 13:46:00,0 +8002,1967-08-30 22:23:00,0 +9821,1965-05-05 02:10:00,0 +621,1966-01-01 14:49:00,0 +1922,1969-06-07 03:41:00,0 +6475,1967-01-23 02:24:00,0 +6105,1966-03-15 07:33:00,0 +2082,1966-03-13 10:12:00,0 +7390,1969-12-07 06:12:00,0 +6494,1966-12-11 12:24:00,0 +2942,1965-10-31 13:49:00,0 +1141,1965-06-21 11:39:00,0 +3556,1968-07-25 10:44:00,0 +1399,1965-07-26 15:01:00,0 +2399,1968-01-24 04:19:00,0 +2811,1969-09-10 09:38:00,0 +5385,1969-10-24 23:28:00,0 +410,1968-07-09 05:48:00,0 +6082,1969-01-19 17:05:00,0 +9366,1967-06-13 22:22:00,0 +7611,1966-05-08 10:18:00,0 +8593,1967-04-25 02:49:00,0 +1179,1969-01-02 20:22:00,0 +5059,1967-12-22 21:28:00,0 +4861,1966-02-10 03:15:00,0 +1897,1965-01-25 05:23:00,0 +7707,1965-03-22 05:59:00,0 +9853,1968-09-09 02:51:00,0 +9859,1969-11-14 08:37:00,0 +1857,1965-04-28 17:42:00,0 +490,1968-12-20 15:49:00,0 +200,1967-12-22 22:09:00,0 +1721,1966-06-25 00:26:00,0 +1368,1965-05-08 18:38:00,0 +7855,1967-03-03 12:32:00,0 +279,1968-07-28 20:08:00,0 +275,1965-06-16 19:29:00,0 +366,1965-09-06 22:08:00,0 +3782,1965-02-10 01:13:00,0 +3521,1968-12-25 16:55:00,0 +1661,1965-02-12 02:40:00,0 +4721,1966-12-12 22:40:00,0 +9263,1965-03-08 02:43:00,0 +5438,1969-04-05 00:07:00,0 +1718,1967-08-22 22:27:00,0 +6256,1968-12-12 18:49:00,0 +5287,1969-04-01 12:01:00,0 +2734,1965-01-31 02:31:00,0 +9399,1967-09-13 04:38:00,0 +5506,1966-03-31 09:37:00,0 +2994,1966-09-01 13:07:00,0 +7773,1968-02-22 05:15:00,0 +5391,1969-01-01 00:38:00,0 +7712,1965-02-09 00:33:00,0 +4962,1968-05-03 02:24:00,0 +53,1965-10-22 05:32:00,0 +4264,1968-08-03 00:04:00,0 +6137,1968-07-09 22:44:00,0 +5850,1965-05-29 08:53:00,0 +5168,1969-05-15 09:17:00,0 +440,1969-10-18 18:19:00,0 +1545,1969-05-04 02:41:00,0 +714,1965-04-23 22:00:00,0 +976,1968-11-10 17:46:00,0 +7235,1967-01-09 14:18:00,0 +5692,1965-12-04 00:45:00,0 +8318,1968-12-08 07:56:00,0 +5046,1965-01-28 08:55:00,0 +5112,1969-09-06 23:05:00,0 +5872,1965-09-09 01:11:00,0 +6255,1969-02-26 09:00:00,0 +5681,1966-10-14 20:37:00,0 +2238,1968-05-14 01:32:00,0 +6416,1965-02-13 10:44:00,0 +4942,1967-12-20 21:04:00,0 +7696,1967-08-21 01:34:00,0 +6874,1969-09-26 01:08:00,0 +5949,1965-11-10 10:05:00,0 +2864,1966-07-19 19:35:00,0 +1473,1967-08-25 03:12:00,0 +6180,1966-03-06 07:13:00,0 +8420,1969-06-18 02:28:00,0 +6558,1968-06-03 11:52:00,0 +3786,1965-12-25 15:36:00,0 +9640,1966-10-23 02:32:00,0 +3859,1965-06-15 20:46:00,0 +8690,1967-09-21 19:26:00,0 +1368,1965-01-06 20:10:00,0 +4129,1965-09-01 12:13:00,0 +8637,1966-02-01 15:07:00,0 +2540,1967-11-17 08:20:00,0 +4969,1965-07-04 09:10:00,0 +9280,1966-04-13 07:35:00,0 +1465,1967-07-07 04:11:00,0 +7952,1965-05-20 14:28:00,0 +1920,1965-09-07 03:06:00,0 +9184,1969-04-21 09:37:00,0 +1277,1966-03-09 12:15:00,0 +1352,1965-10-16 09:23:00,0 +5958,1967-08-16 10:48:00,0 +9527,1968-03-10 16:43:00,0 +3942,1969-07-05 14:17:00,0 +2735,1966-08-06 23:19:00,0 +5323,1965-10-22 23:06:00,0 +8549,1967-01-23 10:42:00,0 +4056,1965-11-07 04:01:00,0 +3815,1969-06-27 03:01:00,0 +9192,1967-01-13 21:05:00,0 +92,1966-12-18 19:03:00,0 diff --git a/tests/test_data/raw/synth_raw_binary_2.csv b/tests/test_data/raw/synth_raw_binary_2.csv new file mode 100644 index 00000000..1d3919a8 --- /dev/null +++ b/tests/test_data/raw/synth_raw_binary_2.csv @@ -0,0 +1,10001 @@ +dw_ek_borger,timestamp,value +1265,1965-12-24 11:06:00,0 +3006,1969-02-18 00:45:00,0 +4287,1967-06-12 06:22:00,0 +2067,1969-10-26 13:10:00,0 +6889,1967-02-25 08:37:00,0 +8108,1965-06-18 07:03:00,0 +2855,1966-08-29 20:04:00,0 +7271,1966-12-27 13:52:00,0 +6769,1965-09-07 04:07:00,0 +8255,1968-11-06 14:31:00,0 +3583,1965-02-26 15:41:00,0 +2419,1968-01-10 14:05:00,0 +8430,1968-10-01 07:39:00,0 +2948,1967-06-17 14:33:00,0 +6975,1967-01-23 17:31:00,0 +7508,1967-07-22 18:33:00,0 +5211,1966-03-07 14:19:00,0 +2708,1966-03-12 15:58:00,0 +7528,1966-09-26 23:33:00,0 +2722,1968-03-07 02:44:00,0 +2908,1965-06-02 02:41:00,0 +7129,1969-12-06 05:38:00,0 +8241,1968-05-25 17:14:00,0 +4801,1965-08-26 16:55:00,0 +1766,1966-12-10 11:11:00,0 +8785,1965-04-07 14:59:00,0 +4168,1969-01-12 07:45:00,0 +1405,1966-01-06 05:28:00,0 +5791,1967-05-01 21:29:00,0 +4258,1969-08-14 19:08:00,0 +8455,1969-04-17 18:12:00,0 +6496,1965-01-23 02:34:00,0 +9143,1965-09-05 06:52:00,0 +4622,1967-09-21 04:47:00,0 +9769,1966-05-18 18:28:00,0 +3349,1969-06-18 01:30:00,0 +1837,1967-09-14 14:37:00,0 +1896,1967-09-12 12:29:00,0 +8924,1965-10-23 07:20:00,0 +656,1969-01-01 10:57:00,0 +6874,1965-07-09 14:59:00,0 +4547,1967-08-29 18:12:00,0 +9946,1966-02-27 13:56:00,0 +9144,1967-09-13 07:16:00,0 +5087,1967-06-27 02:39:00,0 +3521,1965-06-28 11:47:00,0 +1637,1969-02-05 19:06:00,0 +4305,1969-11-02 20:53:00,0 +6673,1967-10-01 04:49:00,0 +5022,1969-07-03 01:58:00,0 +4506,1965-03-03 12:18:00,0 +690,1967-03-31 21:23:00,0 +4900,1967-03-29 06:29:00,0 +3885,1965-07-02 00:58:00,0 +5812,1965-08-11 07:19:00,0 +529,1969-11-01 15:08:00,0 +9621,1968-02-20 23:23:00,0 +2475,1967-03-30 13:35:00,0 +9517,1968-01-02 05:20:00,0 +6173,1969-09-27 03:00:00,0 +3927,1969-03-27 07:31:00,0 +221,1969-08-01 06:09:00,0 +9633,1966-12-27 05:16:00,0 +3578,1966-09-07 08:54:00,0 +8909,1967-12-09 16:58:00,0 +2727,1965-02-03 12:04:00,0 +4000,1969-10-03 04:11:00,0 +9817,1969-07-31 06:32:00,0 +2659,1965-01-06 05:51:00,0 +9632,1966-09-02 16:47:00,0 +6574,1969-06-03 09:44:00,0 +8448,1969-01-20 11:30:00,0 +3283,1967-08-11 00:47:00,0 +7150,1967-09-25 09:26:00,0 +7044,1965-02-24 05:05:00,0 +5546,1966-10-09 11:37:00,0 +6667,1965-08-03 07:33:00,0 +1516,1969-03-10 21:50:00,0 +8476,1967-10-12 13:09:00,0 +3558,1966-06-01 15:00:00,0 +8997,1965-11-28 05:10:00,0 +3153,1969-05-16 22:31:00,0 +5194,1965-04-15 12:51:00,0 +6486,1968-04-26 20:17:00,0 +8341,1969-12-10 15:27:00,0 +8757,1966-01-01 11:24:00,0 +6805,1967-09-12 10:26:00,0 +6646,1966-08-02 20:08:00,0 +7082,1966-12-26 15:10:00,0 +1072,1969-04-07 20:16:00,0 +9869,1967-06-04 05:29:00,0 +5395,1967-01-28 03:52:00,0 +1300,1965-08-23 18:31:00,0 +2139,1967-06-27 19:19:00,0 +1052,1966-04-01 14:32:00,0 +2187,1966-09-08 05:54:00,0 +7003,1968-12-19 08:33:00,0 +8661,1967-05-25 19:41:00,0 +895,1968-02-28 10:19:00,0 +2961,1966-01-09 14:23:00,0 +3827,1968-04-23 23:35:00,0 +4442,1966-11-03 13:18:00,0 +1092,1967-02-18 17:07:00,0 +3338,1968-06-04 00:12:00,0 +4868,1967-06-29 08:19:00,0 +7923,1967-12-07 15:21:00,0 +2816,1968-08-30 12:09:00,0 +4754,1968-02-22 07:53:00,0 +9018,1968-04-09 06:25:00,0 +5376,1965-05-10 06:43:00,0 +7165,1965-03-21 02:52:00,0 +9667,1965-12-29 14:03:00,0 +8556,1965-12-15 15:14:00,0 +9918,1967-03-27 13:52:00,0 +104,1965-01-14 06:34:00,0 +2535,1969-06-08 15:42:00,0 +2629,1969-02-20 15:36:00,0 +6816,1965-08-03 17:41:00,0 +9575,1966-03-12 04:17:00,0 +5194,1969-04-15 04:52:00,0 +1305,1967-01-10 10:55:00,0 +6606,1969-06-27 04:00:00,0 +2022,1966-12-25 21:31:00,0 +7499,1966-12-09 21:25:00,0 +2586,1965-07-31 12:05:00,0 +4206,1966-03-09 18:21:00,0 +4893,1967-09-15 11:06:00,0 +7017,1966-01-02 14:44:00,0 +6553,1969-03-21 15:59:00,0 +1127,1967-07-28 01:27:00,0 +232,1968-09-07 10:42:00,0 +8340,1966-10-22 22:54:00,0 +1842,1967-02-17 12:40:00,0 +3289,1969-09-19 18:38:00,0 +352,1968-09-04 22:47:00,0 +615,1969-08-24 18:53:00,0 +3148,1966-03-11 04:44:00,0 +5507,1967-10-07 02:59:00,0 +1723,1969-07-03 13:49:00,0 +225,1965-10-10 21:10:00,0 +684,1967-02-13 03:19:00,0 +6469,1965-10-31 02:35:00,0 +9584,1966-05-13 13:51:00,0 +2508,1968-10-19 22:05:00,0 +3410,1969-10-31 07:37:00,0 +4198,1969-07-31 11:06:00,0 +8460,1966-02-03 11:45:00,0 +2498,1969-12-21 01:44:00,0 +3619,1966-10-26 08:31:00,0 +8887,1965-01-24 00:07:00,0 +6851,1968-12-03 17:32:00,0 +505,1969-09-30 08:32:00,0 +5915,1965-04-24 16:07:00,0 +3735,1965-09-08 03:45:00,0 +3001,1969-06-03 13:47:00,0 +3758,1965-05-10 02:33:00,0 +3863,1966-03-18 16:56:00,0 +6191,1969-03-15 22:10:00,0 +9531,1969-03-31 15:10:00,0 +3555,1965-08-17 11:49:00,0 +2958,1968-07-14 06:10:00,0 +5658,1965-11-01 19:23:00,0 +3604,1969-09-25 04:35:00,0 +911,1965-01-13 17:55:00,0 +2053,1969-10-01 23:13:00,0 +6496,1965-05-29 09:26:00,0 +1118,1966-05-16 19:10:00,0 +9059,1968-07-04 21:11:00,0 +906,1967-05-31 09:00:00,0 +726,1966-05-14 13:52:00,0 +3986,1967-06-28 20:23:00,0 +9551,1967-06-20 02:51:00,0 +5788,1965-04-18 18:09:00,0 +4841,1965-12-31 04:08:00,0 +3380,1968-07-02 18:55:00,0 +8847,1967-12-01 18:44:00,0 +1796,1969-05-09 10:58:00,0 +4501,1967-04-23 12:36:00,0 +2117,1966-03-21 17:00:00,0 +4982,1967-02-01 16:48:00,0 +5560,1965-03-29 14:02:00,0 +7087,1966-10-29 13:55:00,0 +5963,1969-05-18 05:51:00,0 +4506,1965-06-13 05:18:00,0 +8695,1967-02-07 06:15:00,0 +1108,1967-06-15 10:44:00,0 +3455,1967-12-22 10:26:00,0 +9898,1967-08-17 03:24:00,0 +4071,1968-10-27 07:50:00,0 +5777,1968-06-25 19:48:00,0 +2060,1969-06-21 08:50:00,0 +5315,1968-11-06 17:12:00,0 +2116,1968-04-21 05:37:00,0 +8443,1969-02-03 15:33:00,0 +2254,1966-01-19 00:59:00,0 +8557,1968-09-30 19:53:00,0 +3252,1969-04-05 17:40:00,0 +1944,1969-12-25 08:48:00,0 +5378,1966-01-11 00:05:00,0 +5088,1969-09-25 21:42:00,0 +5728,1967-08-24 00:54:00,0 +7097,1967-04-17 12:59:00,0 +281,1965-03-07 23:34:00,0 +2413,1966-02-19 02:53:00,0 +9559,1968-10-22 16:14:00,0 +9886,1965-05-15 00:18:00,0 +7433,1966-07-26 15:18:00,0 +9651,1966-12-04 02:35:00,0 +301,1969-01-17 13:51:00,0 +9010,1968-04-19 17:38:00,0 +6286,1968-11-10 21:40:00,0 +8469,1969-08-06 13:59:00,0 +3610,1965-08-24 00:09:00,0 +2218,1969-08-16 23:42:00,0 +4765,1967-07-02 14:14:00,0 +4897,1966-11-12 11:47:00,0 +1540,1967-08-31 11:33:00,0 +9183,1968-08-20 20:09:00,0 +4921,1969-04-20 08:48:00,0 +4476,1966-01-26 12:21:00,0 +883,1969-12-21 20:05:00,0 +3482,1968-04-22 16:39:00,0 +8665,1969-02-19 17:06:00,0 +5082,1969-01-10 23:46:00,0 +3021,1967-04-05 02:46:00,0 +7481,1965-08-05 09:40:00,0 +8978,1969-06-03 19:12:00,0 +9097,1968-09-22 05:33:00,0 +6946,1969-03-29 11:08:00,0 +3579,1966-05-08 17:12:00,0 +8026,1966-10-13 08:00:00,0 +6726,1967-07-12 16:08:00,0 +3844,1965-03-02 22:15:00,0 +103,1967-03-27 10:59:00,0 +5345,1969-03-30 16:10:00,0 +3353,1965-06-09 02:51:00,0 +970,1969-06-24 12:00:00,0 +4961,1967-05-17 06:27:00,0 +4393,1967-07-18 23:12:00,0 +5678,1965-04-25 09:09:00,0 +4774,1969-07-02 14:31:00,0 +7622,1968-11-05 15:31:00,0 +1068,1967-08-07 06:59:00,0 +309,1967-10-23 11:59:00,0 +793,1965-03-27 13:28:00,0 +326,1967-05-10 07:56:00,0 +7298,1967-07-20 21:56:00,0 +6934,1969-04-01 14:19:00,0 +9251,1968-03-11 20:07:00,0 +574,1967-04-21 07:38:00,0 +3761,1966-04-09 22:43:00,0 +9121,1968-06-14 13:22:00,0 +7156,1966-08-02 16:54:00,0 +2244,1967-09-11 14:51:00,0 +7269,1966-02-21 02:16:00,0 +3348,1966-12-16 21:01:00,0 +3520,1968-11-18 11:30:00,0 +8891,1968-07-26 03:43:00,0 +7658,1969-02-25 05:09:00,0 +8514,1965-02-24 23:19:00,0 +7717,1968-11-15 15:04:00,0 +5650,1965-01-08 07:34:00,0 +191,1969-06-12 14:35:00,0 +3109,1965-02-04 18:46:00,0 +2117,1969-07-10 08:43:00,0 +3607,1966-09-05 04:49:00,0 +9126,1968-03-30 21:11:00,0 +2121,1965-12-25 13:33:00,0 +1818,1969-04-16 08:47:00,0 +579,1969-01-08 01:46:00,0 +2029,1966-09-12 04:20:00,0 +8763,1966-02-01 17:58:00,0 +8299,1969-06-10 19:27:00,0 +6045,1965-12-01 10:13:00,0 +8554,1968-06-23 19:05:00,0 +5153,1968-07-20 18:54:00,0 +8721,1966-05-08 18:50:00,0 +4321,1965-10-18 05:40:00,0 +9006,1969-02-20 18:39:00,0 +9391,1969-02-16 11:02:00,0 +1860,1968-05-03 17:51:00,0 +4957,1969-11-16 22:24:00,0 +5346,1968-07-23 20:39:00,0 +3524,1965-02-17 04:21:00,0 +608,1965-06-10 17:50:00,0 +3849,1969-07-27 15:08:00,0 +1983,1968-09-02 03:45:00,0 +9344,1966-03-30 13:24:00,0 +8293,1967-12-08 04:45:00,0 +2517,1965-07-08 16:32:00,0 +4097,1968-04-15 18:12:00,0 +2586,1967-12-02 03:49:00,0 +1307,1967-04-05 21:22:00,0 +5920,1966-06-08 13:31:00,0 +2862,1967-03-25 14:40:00,0 +3653,1969-03-08 06:26:00,0 +3201,1968-07-13 10:20:00,0 +1229,1967-06-30 20:42:00,0 +9888,1965-08-30 06:21:00,0 +2233,1966-11-03 11:19:00,0 +3199,1966-11-25 23:34:00,0 +8438,1969-06-04 00:47:00,0 +9447,1966-02-24 14:42:00,0 +2011,1965-01-22 15:43:00,0 +2154,1965-09-06 09:07:00,0 +1838,1967-03-05 10:12:00,0 +5651,1966-05-20 13:51:00,0 +256,1968-01-09 00:39:00,0 +7637,1966-07-27 03:26:00,0 +2191,1965-10-01 18:56:00,0 +923,1965-05-08 22:58:00,0 +7985,1969-08-15 09:20:00,0 +3862,1969-03-21 18:04:00,0 +4865,1967-05-12 05:49:00,0 +5747,1968-06-20 18:09:00,0 +185,1965-12-13 16:20:00,0 +8069,1965-11-07 07:01:00,0 +9190,1967-07-07 08:04:00,0 +3583,1965-10-03 18:16:00,0 +868,1967-03-12 18:28:00,0 +3250,1969-11-16 22:22:00,0 +3326,1967-04-08 08:03:00,0 +2654,1968-09-30 14:23:00,0 +6942,1968-05-28 15:52:00,0 +7988,1967-02-26 07:44:00,0 +5110,1969-10-29 18:33:00,0 +8173,1969-11-06 22:27:00,0 +734,1968-04-22 10:37:00,0 +3531,1967-11-04 21:07:00,0 +1045,1965-03-06 22:06:00,0 +7006,1969-09-03 21:27:00,0 +3243,1966-09-20 15:29:00,0 +3162,1968-08-04 16:22:00,0 +7003,1967-03-13 12:37:00,0 +760,1967-02-28 05:37:00,0 +2290,1965-08-21 21:37:00,0 +1343,1965-09-25 18:33:00,0 +8774,1969-07-17 06:39:00,0 +970,1968-07-07 00:02:00,0 +916,1966-04-28 14:14:00,0 +6116,1967-03-12 12:05:00,0 +4126,1966-12-07 18:26:00,0 +2231,1967-10-24 09:29:00,0 +7582,1967-11-11 12:31:00,0 +3348,1968-12-18 05:46:00,0 +6553,1966-06-25 23:20:00,0 +8458,1966-08-18 17:59:00,0 +3736,1969-05-29 00:32:00,0 +9589,1966-03-03 01:20:00,0 +9780,1968-10-27 22:51:00,0 +4301,1969-12-28 12:04:00,0 +3445,1966-04-12 14:00:00,0 +5384,1967-12-29 00:51:00,0 +7297,1966-01-12 17:11:00,0 +9777,1965-12-12 04:41:00,0 +7763,1966-11-12 20:50:00,0 +9035,1967-09-13 11:36:00,0 +4995,1968-07-14 08:23:00,0 +755,1967-09-14 03:30:00,0 +5699,1966-11-05 00:17:00,0 +2876,1969-07-30 22:13:00,0 +5389,1966-10-30 03:44:00,0 +2911,1967-12-29 12:32:00,0 +77,1966-01-17 00:05:00,0 +4543,1967-05-31 11:14:00,0 +7863,1969-12-03 02:00:00,0 +12,1969-10-20 21:13:00,0 +6551,1967-05-22 18:50:00,0 +1288,1966-11-10 01:20:00,0 +1581,1968-11-10 08:36:00,0 +6310,1969-08-31 14:43:00,0 +9438,1965-07-16 04:16:00,0 +1038,1969-07-02 14:11:00,0 +1524,1965-04-28 00:36:00,0 +8995,1968-04-11 14:36:00,0 +6881,1967-10-19 06:13:00,0 +7891,1967-05-25 16:16:00,0 +5199,1966-02-10 04:05:00,0 +906,1968-05-01 13:52:00,0 +4045,1969-01-17 10:18:00,0 +2955,1966-10-20 12:14:00,0 +4763,1969-03-09 08:17:00,0 +7757,1965-02-04 02:13:00,0 +2391,1968-07-27 09:50:00,0 +4416,1968-11-01 01:23:00,0 +6580,1966-06-26 13:08:00,0 +9092,1968-12-19 07:12:00,0 +5785,1969-06-18 05:57:00,0 +4992,1966-04-09 03:17:00,0 +6662,1966-07-27 08:37:00,0 +4826,1965-08-29 09:25:00,0 +6872,1967-10-22 00:22:00,0 +5843,1969-04-15 05:12:00,0 +404,1967-10-16 16:51:00,0 +4627,1969-06-04 12:30:00,0 +5536,1968-02-24 13:19:00,0 +4336,1969-06-16 13:37:00,0 +6874,1967-11-25 09:03:00,0 +5910,1967-07-22 22:19:00,0 +3521,1969-09-13 02:51:00,0 +2318,1966-06-08 22:32:00,0 +9087,1965-01-16 15:42:00,0 +291,1966-12-29 09:38:00,0 +5520,1968-07-13 07:34:00,0 +1561,1968-10-12 11:25:00,0 +5991,1968-07-14 12:56:00,0 +4000,1966-10-31 13:58:00,0 +6303,1969-03-21 13:06:00,0 +8010,1967-02-24 06:33:00,0 +8947,1967-05-08 23:52:00,0 +3724,1965-10-19 16:29:00,0 +1324,1965-11-01 13:00:00,0 +6156,1965-12-04 08:59:00,0 +8754,1968-05-15 16:37:00,0 +6328,1966-03-02 02:01:00,0 +9329,1969-09-18 01:11:00,0 +5840,1965-01-08 19:01:00,0 +3758,1965-12-15 23:37:00,0 +8532,1968-12-27 07:51:00,0 +5149,1967-01-14 02:23:00,0 +464,1968-08-24 11:53:00,0 +7871,1969-02-03 23:14:00,0 +1908,1969-11-20 03:28:00,0 +6384,1966-03-20 13:30:00,0 +7029,1967-11-22 09:24:00,0 +8344,1968-07-25 03:58:00,0 +7291,1969-05-08 22:33:00,0 +8086,1969-05-01 21:00:00,0 +487,1969-01-26 07:15:00,0 +628,1965-02-15 23:59:00,0 +5449,1969-08-10 01:43:00,0 +7000,1966-10-17 08:11:00,0 +2485,1965-06-06 17:50:00,0 +7549,1966-12-11 10:25:00,0 +3273,1965-04-20 16:07:00,0 +2493,1968-10-11 07:04:00,0 +6277,1965-10-31 10:57:00,0 +8128,1965-12-15 14:32:00,0 +1859,1969-10-17 09:07:00,0 +1437,1965-02-15 21:56:00,0 +1423,1966-02-18 20:33:00,0 +782,1966-03-07 05:46:00,0 +1571,1968-02-07 16:15:00,0 +9786,1968-03-28 23:43:00,0 +8166,1969-09-30 10:15:00,0 +323,1967-06-12 07:57:00,0 +1070,1967-10-23 12:43:00,0 +7725,1969-05-07 17:14:00,0 +8864,1965-07-24 07:05:00,0 +2985,1969-10-08 18:46:00,0 +419,1966-01-31 08:00:00,0 +9957,1966-11-24 03:19:00,0 +719,1969-07-17 07:24:00,0 +1346,1969-12-31 22:19:00,0 +4891,1969-08-14 04:49:00,0 +2947,1965-04-03 01:08:00,0 +6682,1966-02-05 05:53:00,0 +5486,1966-05-19 12:13:00,0 +2561,1966-05-05 05:55:00,0 +560,1968-05-03 05:54:00,0 +4564,1969-11-26 22:58:00,0 +3325,1967-12-27 16:18:00,0 +4027,1968-08-19 03:27:00,0 +2949,1967-10-08 12:17:00,0 +3021,1967-08-23 22:20:00,0 +8353,1966-02-18 01:10:00,0 +1156,1965-11-05 12:27:00,0 +327,1969-10-19 04:44:00,0 +1974,1967-10-26 01:01:00,0 +9243,1969-12-30 14:03:00,0 +1747,1969-03-04 06:25:00,0 +3910,1966-03-30 18:01:00,0 +9433,1966-07-25 03:57:00,0 +3360,1965-11-13 20:17:00,0 +213,1967-09-23 12:05:00,0 +580,1966-11-29 00:27:00,0 +2723,1968-10-25 11:57:00,0 +707,1969-06-25 00:47:00,0 +9032,1966-08-17 11:55:00,0 +2464,1968-09-08 21:01:00,0 +9666,1965-01-03 13:20:00,0 +1774,1969-05-24 21:31:00,0 +2360,1966-07-16 17:32:00,0 +7609,1969-04-30 03:55:00,0 +4665,1968-09-23 16:36:00,0 +5572,1968-03-08 13:02:00,0 +8436,1969-02-20 19:44:00,0 +8226,1967-06-27 03:00:00,0 +1542,1965-04-25 18:04:00,0 +9196,1966-02-14 14:40:00,0 +9253,1965-06-17 14:35:00,0 +7737,1966-09-15 18:38:00,0 +3874,1966-01-29 04:30:00,0 +2731,1965-10-28 19:10:00,0 +4268,1965-03-08 02:48:00,0 +9671,1969-09-22 00:52:00,0 +909,1969-01-17 09:21:00,0 +4594,1969-08-20 15:29:00,0 +699,1966-02-17 19:46:00,0 +8627,1969-10-16 11:03:00,0 +7061,1969-11-03 08:07:00,0 +465,1969-02-22 19:44:00,0 +6385,1966-04-01 04:02:00,0 +9694,1966-04-02 01:51:00,0 +9942,1969-09-06 10:08:00,0 +1888,1965-10-13 09:41:00,0 +8205,1969-12-14 14:19:00,0 +9383,1967-06-22 14:50:00,0 +5415,1968-03-08 08:07:00,0 +2151,1967-04-24 13:20:00,0 +4876,1965-02-23 12:54:00,0 +2268,1967-01-06 11:56:00,0 +6844,1968-06-02 23:36:00,0 +9843,1966-08-25 15:58:00,0 +2255,1968-04-21 19:01:00,0 +5863,1965-02-23 03:48:00,0 +328,1966-11-28 16:02:00,0 +4147,1968-03-17 04:18:00,0 +5215,1968-12-20 10:24:00,0 +1735,1967-03-06 18:25:00,0 +5295,1966-12-29 20:43:00,0 +3130,1966-07-12 14:34:00,0 +8555,1968-05-29 11:59:00,0 +8472,1968-04-29 18:01:00,0 +4788,1966-09-22 11:55:00,0 +860,1967-08-02 08:53:00,0 +1323,1967-07-14 09:31:00,0 +1362,1968-10-05 05:55:00,0 +7167,1966-03-25 13:09:00,0 +6156,1968-01-07 12:08:00,0 +837,1967-06-11 11:16:00,0 +8212,1968-04-21 13:34:00,0 +8269,1969-08-14 01:52:00,0 +7893,1968-04-30 19:35:00,0 +2984,1969-05-30 21:43:00,0 +3756,1967-10-15 04:51:00,0 +8018,1966-08-03 08:26:00,0 +2698,1969-08-02 02:56:00,0 +1564,1968-10-07 14:51:00,0 +2224,1967-01-12 06:26:00,0 +1422,1969-01-30 19:42:00,0 +355,1965-01-26 08:54:00,0 +6219,1966-11-07 04:57:00,0 +5890,1965-08-12 15:57:00,0 +8609,1966-02-08 12:51:00,0 +1337,1965-11-09 17:18:00,0 +6667,1966-07-26 18:45:00,0 +400,1965-05-27 02:59:00,0 +962,1965-04-12 05:01:00,0 +4609,1969-06-19 00:57:00,0 +4413,1968-05-30 04:19:00,0 +1424,1965-06-04 21:39:00,0 +631,1967-04-20 14:04:00,0 +8267,1965-02-23 16:35:00,0 +8231,1969-12-01 20:58:00,0 +1961,1968-04-28 19:19:00,0 +5811,1967-08-02 17:25:00,0 +299,1965-07-20 21:00:00,0 +8787,1965-04-13 10:39:00,0 +2535,1966-01-15 01:18:00,0 +9925,1969-09-04 11:41:00,0 +9821,1967-01-18 18:58:00,0 +1832,1968-10-23 15:33:00,0 +9315,1969-08-20 05:36:00,0 +6994,1967-11-03 03:58:00,0 +7472,1967-03-18 17:38:00,0 +9419,1966-03-08 00:53:00,0 +7720,1966-05-18 06:36:00,0 +595,1968-02-25 17:30:00,0 +1119,1965-01-31 09:26:00,0 +6339,1968-05-10 21:21:00,0 +9373,1969-07-25 16:29:00,0 +8348,1966-09-03 08:21:00,0 +1372,1967-02-20 08:12:00,0 +2314,1967-03-08 06:32:00,0 +7281,1968-04-24 10:14:00,0 +2344,1966-08-23 23:39:00,0 +1005,1965-01-08 07:12:00,0 +2703,1966-03-07 03:48:00,0 +5184,1967-06-28 21:06:00,0 +8912,1967-10-28 18:31:00,0 +9625,1969-06-23 01:32:00,0 +1400,1966-04-25 15:37:00,0 +6258,1967-07-18 00:35:00,0 +454,1969-11-29 12:26:00,0 +3495,1969-01-31 12:27:00,0 +5723,1969-06-10 11:44:00,0 +9548,1968-04-19 07:09:00,0 +7192,1968-04-20 20:53:00,0 +4136,1966-11-01 22:31:00,0 +4877,1968-02-02 20:25:00,0 +6945,1969-10-08 16:58:00,0 +8948,1966-08-20 06:43:00,0 +4060,1968-09-09 12:53:00,0 +942,1965-05-10 23:09:00,0 +9298,1967-03-08 09:08:00,0 +9028,1969-02-24 21:46:00,0 +577,1968-10-03 12:25:00,0 +9043,1966-10-01 02:58:00,0 +9009,1969-07-24 15:35:00,0 +7721,1965-05-19 03:44:00,0 +3592,1969-08-02 08:06:00,0 +7381,1967-12-25 16:54:00,0 +7812,1966-04-17 12:37:00,0 +6348,1967-06-29 05:38:00,0 +5181,1967-11-22 09:17:00,0 +382,1968-11-11 14:23:00,0 +4676,1967-11-17 06:25:00,0 +6558,1965-12-29 18:06:00,0 +8815,1969-03-24 11:28:00,0 +8194,1967-08-29 19:11:00,0 +8779,1967-06-30 16:48:00,0 +4041,1965-05-21 11:57:00,0 +9607,1967-08-11 00:12:00,0 +5588,1968-12-02 17:14:00,0 +4171,1967-10-03 18:10:00,0 +422,1966-10-02 12:33:00,0 +2169,1966-04-29 17:40:00,0 +9780,1969-07-23 08:42:00,0 +4054,1965-11-30 13:28:00,0 +2334,1967-04-08 22:22:00,0 +2900,1966-02-12 09:05:00,0 +4280,1967-07-06 04:38:00,0 +7038,1966-04-07 14:18:00,0 +4639,1966-08-10 21:57:00,0 +349,1967-01-29 03:15:00,0 +1989,1968-10-15 06:31:00,0 +6513,1969-11-15 21:53:00,0 +9129,1967-02-23 03:16:00,0 +8752,1965-06-19 15:10:00,0 +3109,1965-07-09 13:59:00,0 +1044,1969-11-01 01:44:00,0 +8158,1969-05-23 08:56:00,0 +6803,1969-08-28 14:37:00,0 +867,1966-03-26 07:54:00,0 +8302,1968-07-28 13:46:00,0 +169,1969-10-31 23:29:00,0 +191,1965-04-05 13:36:00,0 +4172,1968-11-02 04:17:00,0 +9106,1966-10-27 15:18:00,0 +6638,1966-10-04 01:08:00,0 +5262,1966-09-20 17:12:00,0 +4606,1968-09-01 15:06:00,0 +1374,1966-05-14 02:33:00,0 +4807,1966-11-12 14:15:00,0 +4976,1965-01-04 05:00:00,0 +9432,1968-03-21 22:37:00,0 +8301,1965-01-02 04:36:00,0 +3982,1968-11-16 03:12:00,0 +334,1966-09-02 08:41:00,0 +994,1969-08-20 08:31:00,0 +5762,1966-01-13 00:06:00,0 +5149,1966-10-11 23:35:00,0 +8946,1965-02-07 18:38:00,0 +9059,1966-05-14 01:15:00,0 +7765,1966-04-07 17:18:00,0 +1828,1966-10-18 21:00:00,0 +8032,1965-10-06 01:49:00,0 +7728,1967-09-27 00:12:00,0 +5324,1966-03-05 06:13:00,0 +135,1966-06-26 07:58:00,0 +2155,1965-07-14 16:59:00,0 +8666,1965-05-01 03:50:00,0 +569,1967-03-08 00:04:00,0 +6616,1967-06-07 09:19:00,0 +3639,1969-04-24 23:08:00,0 +244,1968-10-08 05:06:00,0 +5432,1969-11-28 01:23:00,0 +2662,1965-03-14 03:41:00,0 +468,1968-04-24 07:38:00,0 +5976,1967-07-26 07:39:00,0 +9763,1965-12-16 16:35:00,0 +6837,1969-08-02 12:02:00,0 +926,1965-04-22 02:15:00,0 +8521,1965-09-29 13:22:00,0 +8039,1968-04-26 20:59:00,0 +5775,1966-08-09 21:06:00,0 +4570,1966-05-13 03:37:00,0 +4781,1965-04-04 08:26:00,0 +9773,1967-08-14 09:06:00,0 +1564,1969-11-16 17:59:00,0 +2605,1966-12-04 21:34:00,0 +2017,1965-05-26 13:03:00,0 +2807,1968-03-17 18:52:00,0 +3428,1967-09-12 18:12:00,0 +6648,1966-06-09 22:22:00,0 +6208,1966-07-10 03:47:00,0 +2619,1968-06-24 20:45:00,0 +1906,1967-09-09 20:07:00,0 +9434,1967-01-10 06:09:00,0 +8325,1965-01-27 13:18:00,0 +4848,1968-01-21 03:05:00,0 +2062,1968-02-12 05:55:00,0 +710,1966-03-14 04:54:00,0 +9650,1965-10-19 10:38:00,0 +4828,1968-12-09 19:10:00,0 +1736,1968-04-01 01:34:00,0 +378,1966-04-17 22:24:00,0 +1275,1966-10-29 20:55:00,0 +3589,1967-01-15 15:55:00,0 +3726,1967-06-13 07:40:00,0 +9710,1966-10-18 02:15:00,0 +1046,1966-10-12 10:24:00,0 +1804,1965-10-02 21:01:00,0 +2089,1969-09-29 05:10:00,0 +9845,1967-12-17 17:20:00,0 +2528,1969-12-15 12:49:00,0 +9623,1968-11-02 00:09:00,0 +6008,1965-07-26 10:41:00,0 +1723,1966-08-04 18:49:00,0 +9535,1969-06-08 01:04:00,0 +4722,1969-08-03 17:19:00,0 +9499,1967-10-16 09:07:00,0 +7217,1968-11-29 21:38:00,0 +8611,1969-03-28 09:59:00,0 +4125,1969-05-31 20:01:00,0 +9920,1965-07-03 01:08:00,0 +3777,1968-05-01 10:04:00,0 +7663,1966-11-03 06:19:00,0 +1067,1966-03-02 17:00:00,0 +1252,1968-10-21 16:04:00,0 +3817,1969-01-20 04:31:00,0 +7266,1967-11-04 15:32:00,0 +2518,1969-05-04 19:32:00,0 +4177,1966-12-21 21:41:00,0 +355,1967-02-06 07:43:00,0 +2183,1967-11-01 15:45:00,0 +8073,1969-07-21 09:42:00,0 +6255,1969-10-24 01:45:00,0 +2529,1968-02-27 00:09:00,0 +4111,1966-02-24 22:56:00,0 +8874,1969-06-01 07:28:00,0 +6841,1968-03-05 13:34:00,0 +725,1965-09-02 19:05:00,0 +6449,1965-09-18 04:15:00,0 +5238,1966-03-22 20:21:00,0 +3295,1966-12-02 14:50:00,0 +2414,1967-05-28 23:22:00,0 +3071,1968-09-19 17:01:00,0 +3157,1965-05-05 20:26:00,0 +9469,1967-11-26 15:47:00,0 +8946,1969-03-25 01:22:00,0 +7821,1966-04-06 18:09:00,0 +7296,1966-02-23 13:15:00,0 +3809,1968-01-29 04:10:00,0 +5516,1969-10-11 03:21:00,0 +2522,1965-06-17 07:14:00,0 +9110,1968-06-13 16:51:00,0 +998,1965-12-21 08:47:00,0 +6993,1966-04-03 19:05:00,0 +9204,1965-08-17 01:09:00,0 +2872,1969-10-11 11:14:00,0 +9764,1968-11-30 19:38:00,0 +2199,1968-01-10 07:37:00,0 +8592,1966-01-10 02:38:00,0 +2702,1967-06-14 08:35:00,0 +9000,1965-04-02 02:30:00,0 +4394,1965-12-08 09:36:00,0 +6086,1968-04-03 15:15:00,0 +5137,1969-04-22 05:24:00,0 +8904,1967-07-31 15:03:00,0 +9563,1967-10-27 18:15:00,0 +9320,1967-07-02 04:27:00,0 +9547,1966-07-10 11:48:00,0 +7431,1967-01-10 09:26:00,0 +4600,1966-07-23 15:26:00,0 +9050,1966-03-05 05:36:00,0 +4352,1967-11-06 09:03:00,0 +7389,1965-03-02 05:31:00,0 +1913,1968-03-28 11:20:00,0 +8327,1968-02-26 04:13:00,0 +819,1966-12-06 11:23:00,0 +7892,1969-10-25 08:58:00,0 +3777,1968-09-18 11:13:00,0 +6630,1966-10-03 12:26:00,0 +4556,1969-03-15 04:57:00,0 +5592,1969-06-17 20:54:00,0 +8313,1968-02-26 17:38:00,0 +3021,1966-11-18 21:01:00,0 +3689,1968-10-07 16:58:00,0 +7767,1968-05-19 06:47:00,0 +8815,1966-02-08 05:35:00,0 +288,1966-04-05 10:40:00,0 +5539,1967-02-18 21:37:00,0 +6686,1965-08-24 10:51:00,0 +2550,1967-05-13 00:53:00,0 +7833,1967-08-30 03:07:00,0 +2836,1965-08-18 07:02:00,0 +4552,1966-04-19 19:27:00,0 +6973,1967-09-07 14:23:00,0 +5796,1968-11-27 10:26:00,0 +8309,1969-05-13 03:02:00,0 +6372,1968-05-26 07:44:00,0 +7632,1966-03-14 22:27:00,0 +1573,1966-06-24 22:18:00,0 +9787,1965-11-15 18:39:00,0 +86,1968-09-05 14:10:00,0 +538,1967-10-30 18:51:00,0 +7838,1965-09-18 06:47:00,0 +2227,1966-09-07 19:53:00,0 +7815,1966-09-15 14:38:00,0 +9801,1967-07-03 11:08:00,0 +6563,1967-11-13 08:05:00,0 +576,1966-07-02 18:51:00,0 +8049,1967-01-04 19:32:00,0 +7272,1969-04-09 15:46:00,0 +8576,1965-03-18 16:26:00,0 +5027,1967-08-02 21:03:00,0 +4636,1969-03-20 01:34:00,0 +1473,1968-10-28 21:31:00,0 +8032,1965-09-06 22:28:00,0 +4277,1967-12-31 02:13:00,0 +4136,1968-12-20 20:12:00,0 +6180,1968-04-10 01:36:00,0 +393,1969-09-03 18:10:00,0 +5909,1967-08-30 05:59:00,0 +3606,1967-01-03 00:37:00,0 +7243,1967-11-07 00:08:00,0 +1816,1968-05-29 12:17:00,0 +512,1969-11-23 08:52:00,0 +2693,1967-05-26 16:16:00,0 +5607,1966-12-17 22:44:00,0 +614,1969-06-04 08:26:00,0 +8284,1965-07-12 06:39:00,0 +8978,1965-07-30 01:33:00,0 +4941,1966-01-12 07:22:00,0 +2728,1969-04-01 12:48:00,0 +3950,1969-10-23 06:47:00,0 +428,1965-03-07 19:27:00,0 +5627,1969-05-07 15:12:00,0 +2245,1969-08-24 03:12:00,0 +4022,1967-06-01 12:58:00,0 +577,1965-11-24 10:47:00,0 +8804,1967-04-22 19:02:00,0 +2129,1966-03-10 13:32:00,0 +4464,1969-01-30 23:08:00,0 +9145,1968-06-27 05:22:00,0 +9273,1968-02-25 20:45:00,0 +147,1968-11-06 19:07:00,0 +8055,1969-09-13 05:39:00,0 +8685,1968-10-05 23:15:00,0 +6566,1968-05-29 19:03:00,0 +8580,1966-03-13 18:22:00,0 +6876,1965-09-11 03:55:00,0 +3611,1965-08-31 17:20:00,0 +8846,1968-12-26 20:57:00,0 +2198,1967-03-17 07:11:00,0 +7937,1967-09-04 10:19:00,0 +9456,1969-12-21 13:11:00,0 +9369,1969-08-30 05:27:00,0 +1527,1966-08-28 13:11:00,0 +7188,1967-10-11 11:51:00,0 +1433,1965-08-31 20:09:00,0 +5476,1965-09-14 05:49:00,0 +1464,1967-03-25 13:12:00,0 +7526,1967-07-17 22:01:00,0 +2140,1965-09-22 08:31:00,0 +4500,1969-04-24 14:44:00,0 +3778,1969-03-23 18:54:00,0 +9965,1967-09-17 06:28:00,0 +6220,1965-06-21 11:31:00,0 +4257,1969-10-15 01:55:00,0 +5981,1968-05-27 15:36:00,0 +8140,1966-10-07 00:44:00,0 +8136,1969-04-09 06:16:00,0 +6829,1969-03-08 13:58:00,0 +1724,1967-05-02 03:25:00,0 +8081,1965-02-15 12:24:00,0 +2603,1967-01-04 03:15:00,0 +1782,1965-12-28 21:15:00,0 +8916,1968-05-25 20:37:00,0 +3224,1968-07-22 05:20:00,0 +6696,1967-04-25 11:35:00,0 +9636,1969-11-23 22:05:00,0 +8331,1968-04-14 02:14:00,0 +3035,1967-03-21 05:00:00,0 +7147,1965-03-08 07:25:00,0 +2665,1967-08-28 04:03:00,0 +41,1967-11-08 08:05:00,0 +466,1965-08-09 13:31:00,0 +9462,1968-05-14 21:15:00,0 +1377,1968-05-05 08:19:00,0 +556,1968-07-31 18:05:00,0 +3022,1965-09-11 05:29:00,0 +9226,1969-11-28 10:22:00,0 +7611,1967-04-19 12:27:00,0 +2890,1969-06-11 10:33:00,0 +517,1966-08-19 13:21:00,0 +9941,1966-12-11 00:18:00,0 +9048,1965-07-10 12:05:00,0 +8626,1968-12-03 22:07:00,0 +2124,1968-03-26 03:10:00,0 +7409,1967-06-17 20:30:00,0 +7627,1965-12-05 17:06:00,0 +8493,1966-07-02 15:39:00,0 +8165,1969-06-17 17:40:00,0 +1839,1968-07-27 10:50:00,0 +8388,1966-06-08 00:24:00,0 +1697,1967-12-19 10:22:00,0 +8220,1966-12-09 02:59:00,0 +7299,1967-04-13 06:31:00,0 +3142,1968-08-31 14:51:00,0 +1504,1969-07-21 17:51:00,0 +4938,1969-10-11 13:37:00,0 +4820,1965-08-25 16:07:00,0 +6209,1966-07-09 13:24:00,0 +4438,1966-09-27 16:00:00,0 +2112,1968-12-15 15:02:00,0 +9678,1967-08-03 01:44:00,0 +650,1969-12-30 11:00:00,0 +8510,1969-11-11 23:05:00,0 +9467,1968-12-26 00:51:00,0 +5052,1965-02-04 21:33:00,0 +1573,1965-11-04 13:35:00,0 +8982,1969-11-04 09:17:00,0 +5582,1968-11-11 13:52:00,0 +3099,1967-08-02 07:20:00,0 +4230,1965-02-18 12:32:00,0 +1992,1966-08-26 08:33:00,0 +45,1966-07-15 12:11:00,0 +7031,1965-02-04 16:17:00,0 +885,1969-03-24 13:56:00,0 +8139,1966-05-30 08:59:00,0 +1141,1967-04-19 19:48:00,0 +1618,1967-01-12 10:04:00,0 +3310,1968-10-02 15:41:00,0 +9784,1968-05-30 12:37:00,0 +7619,1967-08-08 04:08:00,0 +6369,1966-07-11 16:48:00,0 +1382,1968-09-10 07:57:00,0 +2160,1965-05-12 09:42:00,0 +115,1966-10-28 23:58:00,0 +8089,1968-06-30 09:26:00,0 +5638,1967-12-03 03:37:00,0 +4403,1968-05-26 10:54:00,0 +1192,1966-10-19 19:23:00,0 +9806,1965-07-26 17:25:00,0 +9230,1969-07-28 03:34:00,0 +8362,1969-03-11 05:47:00,0 +5089,1969-08-27 17:05:00,0 +4515,1965-04-22 12:53:00,0 +8197,1965-11-12 10:02:00,0 +5647,1966-08-21 11:17:00,0 +7687,1966-03-25 03:26:00,0 +8239,1969-10-28 12:19:00,0 +3341,1967-01-30 00:58:00,0 +8344,1967-11-08 09:15:00,0 +2396,1968-12-26 16:50:00,0 +3075,1967-12-21 03:49:00,0 +2697,1968-08-22 04:29:00,0 +7684,1968-05-27 01:18:00,0 +1481,1969-11-14 04:25:00,0 +2619,1969-11-09 00:39:00,0 +8540,1966-11-19 09:06:00,0 +7379,1969-03-24 16:33:00,0 +6717,1965-04-04 07:34:00,0 +4825,1966-01-11 13:49:00,0 +6929,1967-01-19 08:05:00,0 +5678,1969-12-08 23:30:00,0 +9363,1969-04-02 13:12:00,0 +5017,1969-04-02 07:08:00,0 +187,1965-02-03 07:14:00,0 +5684,1968-05-24 01:45:00,0 +4495,1967-04-04 05:52:00,0 +9772,1969-02-24 09:23:00,0 +4251,1966-07-28 15:24:00,0 +2399,1965-10-20 10:32:00,0 +7790,1967-07-03 08:20:00,0 +762,1967-06-19 21:35:00,0 +5227,1965-02-16 22:37:00,0 +7855,1969-12-15 03:38:00,0 +7717,1969-08-03 03:50:00,0 +210,1968-03-24 09:32:00,0 +2038,1968-02-01 06:06:00,0 +4135,1966-10-11 22:31:00,0 +8899,1966-07-09 16:06:00,0 +6515,1965-10-22 21:11:00,0 +1927,1968-10-23 20:38:00,0 +6207,1969-12-24 10:00:00,0 +1331,1968-04-25 15:48:00,0 +9817,1966-03-16 00:16:00,0 +1675,1966-05-07 02:24:00,0 +2468,1969-12-12 02:36:00,0 +1902,1968-10-24 03:13:00,0 +4371,1966-05-17 02:43:00,0 +9141,1968-09-22 01:10:00,0 +4305,1969-09-25 23:24:00,0 +1588,1966-09-02 23:19:00,0 +7413,1967-02-02 10:16:00,0 +5711,1968-04-21 23:44:00,0 +5093,1966-02-23 17:02:00,0 +5773,1966-05-21 08:06:00,0 +8461,1965-01-02 16:19:00,0 +8019,1967-02-12 06:14:00,0 +3634,1966-02-28 06:29:00,0 +1494,1967-03-07 13:37:00,0 +7643,1967-06-28 05:30:00,0 +8147,1968-10-29 17:18:00,0 +9216,1969-12-29 22:03:00,0 +4125,1965-10-22 13:19:00,0 +2683,1965-06-14 07:01:00,0 +4511,1968-12-30 05:58:00,0 +8490,1968-05-21 23:34:00,0 +7821,1968-04-09 02:03:00,0 +6150,1968-06-05 17:37:00,0 +3500,1965-10-16 06:12:00,0 +3179,1966-07-19 02:53:00,0 +4192,1967-02-07 22:55:00,0 +1939,1967-10-16 21:53:00,0 +5505,1967-11-07 05:28:00,0 +6229,1969-09-20 02:14:00,0 +21,1968-11-07 16:27:00,0 +7135,1965-09-08 08:29:00,0 +8393,1968-06-29 21:06:00,0 +8525,1968-12-15 13:23:00,0 +3450,1967-06-22 22:58:00,0 +2715,1968-08-16 12:14:00,0 +5612,1965-08-07 22:45:00,0 +5383,1967-07-06 18:42:00,0 +3686,1969-12-19 14:25:00,0 +9063,1968-03-14 00:24:00,0 +3841,1967-08-23 10:04:00,0 +1258,1968-03-18 13:05:00,0 +9541,1966-03-10 15:39:00,0 +6115,1969-07-12 18:03:00,0 +421,1965-07-10 14:13:00,0 +80,1965-09-21 04:33:00,0 +2143,1965-05-17 07:27:00,0 +8811,1969-11-09 11:29:00,0 +502,1968-08-19 22:47:00,0 +7536,1968-03-04 18:02:00,0 +7639,1967-10-18 15:18:00,0 +5262,1968-04-26 00:46:00,0 +7512,1969-10-18 16:03:00,0 +4174,1968-10-03 06:20:00,0 +6082,1968-10-06 22:27:00,0 +7762,1965-01-06 08:14:00,0 +5563,1967-01-26 23:25:00,0 +2411,1968-08-18 13:04:00,0 +3171,1967-12-21 00:58:00,0 +7603,1966-04-30 05:36:00,0 +8847,1969-07-14 20:03:00,0 +6184,1965-10-16 21:25:00,0 +2739,1969-11-21 23:08:00,0 +6446,1968-04-10 15:02:00,0 +9801,1968-04-19 12:27:00,0 +7808,1969-09-27 08:01:00,0 +5799,1969-05-15 18:28:00,0 +4188,1966-02-24 21:58:00,0 +6318,1965-07-04 23:07:00,0 +922,1965-10-04 15:55:00,0 +1001,1966-04-04 11:15:00,0 +284,1965-10-21 18:20:00,0 +8512,1965-06-13 23:56:00,0 +1297,1969-12-02 00:43:00,0 +3051,1966-07-18 04:00:00,0 +8262,1969-01-06 10:19:00,0 +1238,1967-08-06 07:37:00,0 +5996,1966-04-16 08:13:00,0 +6277,1969-04-08 11:03:00,0 +1940,1965-09-02 14:17:00,0 +3620,1967-06-28 15:38:00,0 +4064,1967-12-02 02:40:00,0 +8474,1965-02-24 00:26:00,0 +5574,1965-06-04 00:56:00,0 +2677,1966-06-10 11:34:00,0 +4061,1969-03-03 11:09:00,0 +1594,1968-02-10 05:18:00,0 +6540,1965-12-25 01:36:00,0 +8043,1968-10-30 05:28:00,0 +6359,1969-01-18 12:44:00,0 +7097,1966-06-15 23:20:00,0 +7391,1968-06-30 16:50:00,0 +5591,1967-04-20 19:18:00,0 +3438,1966-08-02 23:08:00,0 +5324,1967-09-29 15:52:00,0 +5449,1965-12-25 17:54:00,0 +6097,1966-01-15 10:58:00,0 +3457,1969-03-02 21:12:00,0 +9153,1969-02-08 17:07:00,0 +926,1969-02-08 23:56:00,0 +7111,1967-02-25 09:51:00,0 +268,1967-11-21 04:54:00,0 +2013,1966-01-12 04:47:00,0 +6399,1965-04-26 23:31:00,0 +508,1965-02-11 08:04:00,0 +3772,1968-07-04 08:21:00,0 +3307,1966-05-14 09:20:00,0 +6769,1966-10-22 10:25:00,0 +4334,1968-01-22 05:53:00,0 +4946,1969-06-13 09:05:00,0 +6346,1966-02-06 22:06:00,0 +4169,1969-03-12 16:54:00,0 +3679,1967-07-14 06:46:00,0 +7779,1968-08-11 21:24:00,0 +6284,1967-11-07 14:40:00,0 +6484,1967-04-17 00:11:00,0 +3195,1969-12-22 06:42:00,0 +6380,1968-11-18 23:09:00,0 +822,1966-05-05 02:40:00,0 +8335,1966-07-12 22:40:00,0 +5212,1969-05-29 03:25:00,0 +4852,1968-01-21 17:01:00,0 +9612,1967-12-20 13:18:00,0 +3019,1966-07-01 12:40:00,0 +7380,1969-10-02 11:06:00,0 +8972,1966-01-21 14:30:00,0 +8424,1965-04-03 08:17:00,0 +8923,1967-04-08 22:57:00,0 +7501,1966-10-25 21:25:00,0 +5791,1967-03-12 20:37:00,0 +881,1966-06-18 03:06:00,0 +6007,1969-07-08 22:49:00,0 +9699,1966-02-25 03:07:00,0 +1776,1967-01-20 02:23:00,0 +4018,1968-03-16 06:59:00,0 +7544,1968-12-04 05:43:00,0 +1055,1967-11-11 16:32:00,0 +727,1967-02-09 06:59:00,0 +1905,1967-09-21 21:42:00,0 +9857,1969-10-05 11:53:00,0 +7855,1967-04-01 21:03:00,0 +1992,1966-04-21 08:47:00,0 +3923,1965-04-02 12:50:00,0 +336,1968-11-18 03:28:00,0 +511,1967-07-08 08:22:00,0 +2533,1967-10-14 02:13:00,0 +5967,1969-03-17 12:14:00,0 +1416,1967-07-22 08:54:00,0 +9044,1966-04-23 15:27:00,0 +573,1965-01-12 19:43:00,0 +3930,1968-03-23 18:25:00,0 +2827,1968-03-20 02:47:00,0 +8687,1966-08-08 07:53:00,0 +6870,1966-12-09 01:03:00,0 +8148,1968-09-05 10:16:00,0 +2263,1969-01-04 05:44:00,0 +1774,1965-04-29 11:49:00,0 +3600,1965-12-27 08:38:00,0 +4763,1968-12-08 14:35:00,0 +2214,1967-03-11 18:04:00,0 +1145,1966-07-24 12:42:00,0 +8974,1968-03-01 03:20:00,0 +7693,1968-07-01 22:18:00,0 +5770,1965-02-07 17:09:00,0 +4937,1967-12-11 23:57:00,0 +6606,1968-04-04 10:32:00,0 +288,1965-12-12 12:57:00,0 +6070,1969-07-11 21:24:00,0 +1123,1967-10-11 13:36:00,0 +1562,1967-02-21 12:09:00,0 +9975,1966-08-12 10:09:00,0 +8015,1967-01-18 07:34:00,0 +6573,1967-04-22 06:52:00,0 +2200,1969-11-03 17:30:00,0 +2674,1968-05-19 07:51:00,0 +5924,1969-04-18 18:26:00,0 +7066,1966-12-20 00:57:00,0 +455,1969-06-06 03:58:00,0 +3422,1967-05-04 02:05:00,0 +7950,1965-02-10 23:14:00,0 +68,1967-01-30 14:06:00,0 +1946,1967-03-02 19:25:00,0 +218,1966-05-18 23:06:00,0 +8983,1968-09-20 02:48:00,0 +5784,1967-06-07 09:23:00,0 +2193,1965-10-14 05:25:00,0 +7616,1965-01-23 18:18:00,0 +5624,1969-10-20 16:44:00,0 +9609,1967-02-02 18:23:00,0 +7649,1968-01-04 13:20:00,0 +3494,1966-05-14 16:32:00,0 +7053,1969-04-17 02:17:00,0 +8270,1968-12-23 07:29:00,0 +7901,1966-08-07 16:37:00,0 +6611,1968-03-15 06:20:00,0 +8295,1969-11-13 02:17:00,0 +8665,1965-07-12 20:33:00,0 +5414,1968-12-26 01:20:00,0 +1996,1965-11-03 10:32:00,0 +500,1966-02-22 02:39:00,0 +8176,1968-06-02 01:06:00,0 +4252,1965-03-05 15:02:00,0 +2629,1966-01-27 20:47:00,0 +3224,1965-09-02 18:42:00,0 +6863,1965-10-19 19:33:00,0 +9656,1967-12-20 23:25:00,0 +2105,1967-10-18 23:33:00,0 +5310,1968-01-03 02:13:00,0 +4816,1968-05-24 12:15:00,0 +1858,1969-11-22 07:04:00,0 +7102,1968-05-08 23:26:00,0 +2286,1968-11-25 23:25:00,0 +3192,1968-07-13 19:24:00,0 +9407,1968-06-16 12:23:00,0 +3734,1966-09-24 00:14:00,0 +7684,1969-09-23 14:32:00,0 +8818,1966-04-14 22:33:00,0 +397,1965-01-16 17:57:00,0 +1487,1969-07-18 23:50:00,0 +653,1966-11-25 10:08:00,0 +7633,1967-06-20 14:37:00,0 +1817,1966-10-08 01:03:00,0 +9885,1969-01-30 23:14:00,0 +5366,1966-11-13 09:31:00,0 +3550,1967-08-02 10:33:00,0 +7002,1965-02-03 19:04:00,0 +3939,1967-08-26 10:28:00,0 +6721,1969-06-03 14:35:00,0 +623,1969-08-28 17:11:00,0 +8782,1968-07-10 11:20:00,0 +1441,1966-04-30 16:04:00,0 +5924,1969-08-06 10:29:00,0 +7080,1968-09-19 23:43:00,0 +9186,1969-08-28 16:58:00,0 +4621,1969-01-16 23:35:00,0 +9919,1967-07-07 10:43:00,0 +5061,1966-03-11 15:42:00,0 +5049,1965-11-15 03:53:00,0 +6891,1969-10-12 12:09:00,0 +580,1967-10-18 06:59:00,0 +839,1966-05-29 11:54:00,0 +5421,1968-05-20 11:20:00,0 +5530,1966-05-22 04:52:00,0 +5648,1966-11-05 00:33:00,0 +2391,1968-12-27 01:37:00,0 +8050,1968-09-04 12:53:00,0 +1165,1968-04-28 01:18:00,0 +8204,1967-07-12 02:40:00,0 +5030,1966-01-12 18:13:00,0 +5241,1965-03-28 19:28:00,0 +4936,1966-06-01 03:46:00,0 +2440,1967-06-01 14:49:00,0 +1839,1966-08-18 13:38:00,0 +9969,1965-02-01 18:30:00,0 +593,1967-03-03 11:40:00,0 +9,1968-07-29 15:07:00,0 +7280,1965-07-26 05:15:00,0 +5694,1966-10-11 14:12:00,0 +610,1967-08-11 13:57:00,0 +3700,1965-08-04 22:48:00,0 +1916,1967-09-29 18:05:00,0 +8569,1968-09-01 09:55:00,0 +3776,1966-04-28 13:48:00,0 +7349,1965-07-21 20:44:00,0 +8275,1967-07-17 13:20:00,0 +6013,1967-06-29 10:29:00,0 +1706,1966-09-25 00:50:00,0 +3435,1968-09-25 21:34:00,0 +8173,1967-07-01 04:24:00,0 +2089,1968-06-26 07:24:00,0 +5883,1967-07-15 12:19:00,0 +8422,1967-04-27 19:57:00,0 +4367,1969-07-02 13:30:00,0 +4152,1969-12-26 07:25:00,0 +7238,1966-03-24 02:13:00,0 +5012,1969-05-17 05:52:00,0 +2554,1969-11-10 12:23:00,0 +9496,1965-05-31 03:25:00,0 +7593,1966-10-15 19:10:00,0 +256,1967-04-04 08:49:00,0 +6314,1965-06-20 23:03:00,0 +2981,1967-06-10 14:40:00,0 +4567,1967-11-07 12:21:00,0 +5091,1965-09-24 06:44:00,0 +7721,1969-04-30 21:33:00,0 +5102,1965-03-22 03:46:00,0 +2000,1966-01-04 07:09:00,0 +8360,1969-09-13 20:09:00,0 +4987,1965-02-05 07:04:00,0 +7863,1967-10-01 20:20:00,0 +6875,1965-08-07 16:21:00,0 +4022,1968-06-30 12:37:00,0 +4246,1969-06-04 19:22:00,0 +474,1967-01-12 11:44:00,0 +1328,1966-02-14 12:39:00,0 +1237,1968-04-22 21:23:00,0 +3551,1967-01-01 22:15:00,0 +9256,1966-10-02 14:02:00,0 +7749,1967-07-05 10:13:00,0 +2484,1967-02-11 19:18:00,0 +743,1965-10-21 10:15:00,0 +3527,1965-12-18 01:03:00,0 +111,1968-05-21 10:51:00,0 +2300,1967-01-09 15:06:00,0 +8809,1965-01-29 04:35:00,0 +9184,1968-11-21 23:59:00,0 +9907,1969-05-23 01:27:00,0 +1848,1965-03-15 21:00:00,0 +481,1966-09-16 08:19:00,0 +9934,1968-04-01 21:56:00,0 +3683,1965-10-18 00:39:00,0 +5061,1969-10-09 00:06:00,0 +378,1969-03-27 18:51:00,0 +3556,1965-03-21 10:06:00,0 +6490,1967-03-21 07:24:00,0 +4953,1965-11-17 10:21:00,0 +147,1965-04-06 03:02:00,0 +2445,1968-06-29 22:03:00,0 +221,1967-11-05 17:21:00,0 +268,1969-04-21 17:01:00,0 +859,1966-12-19 04:28:00,0 +1459,1966-07-21 19:29:00,0 +9866,1966-01-16 14:23:00,0 +1734,1966-12-25 20:04:00,0 +1155,1965-02-02 20:41:00,0 +6087,1968-12-18 19:20:00,0 +578,1966-02-11 22:35:00,0 +374,1969-03-16 08:22:00,0 +1198,1968-09-28 13:21:00,0 +7446,1967-11-04 19:49:00,0 +2017,1965-03-11 13:46:00,0 +5623,1966-03-21 04:08:00,0 +1171,1967-07-30 16:47:00,0 +4718,1967-12-30 11:33:00,0 +7558,1968-08-16 22:21:00,0 +1666,1966-05-04 09:58:00,0 +9841,1969-12-17 17:05:00,0 +9419,1967-08-17 02:19:00,0 +2811,1966-11-21 08:29:00,0 +1033,1965-02-27 05:34:00,0 +6057,1966-12-05 13:55:00,0 +6456,1966-06-15 06:10:00,0 +3916,1966-12-15 17:40:00,0 +9146,1967-01-07 16:04:00,0 +7499,1969-11-15 08:21:00,0 +8452,1969-04-11 05:55:00,0 +3537,1969-12-13 06:54:00,0 +4745,1969-02-23 14:47:00,0 +3038,1968-05-14 04:41:00,0 +4296,1965-10-17 18:32:00,0 +1453,1965-08-21 10:46:00,0 +3429,1969-11-06 13:53:00,0 +7817,1965-12-31 18:25:00,0 +7090,1968-10-19 04:35:00,0 +2401,1965-07-09 12:39:00,0 +9050,1966-03-27 20:22:00,0 +3730,1969-06-02 18:13:00,0 +2911,1966-07-26 01:00:00,0 +7756,1965-05-12 02:44:00,0 +7277,1966-08-17 19:29:00,0 +2414,1967-03-06 00:05:00,0 +3771,1966-11-05 21:22:00,0 +7367,1968-12-29 00:57:00,0 +3217,1967-05-25 19:51:00,0 +1642,1968-11-29 18:54:00,0 +1941,1968-03-19 16:33:00,0 +625,1967-03-20 10:40:00,0 +5919,1969-04-26 13:32:00,0 +3841,1966-12-19 14:05:00,0 +7290,1967-08-06 01:28:00,0 +829,1968-12-03 11:18:00,0 +2062,1966-05-06 03:33:00,0 +6345,1966-03-01 06:24:00,0 +7431,1965-08-21 08:31:00,0 +7776,1967-07-11 08:37:00,0 +763,1966-01-02 09:50:00,0 +3950,1965-10-13 04:32:00,0 +1782,1965-11-02 14:40:00,0 +3725,1969-10-16 04:42:00,0 +3168,1968-04-17 16:22:00,0 +2735,1966-11-15 21:41:00,0 +2164,1965-03-15 12:02:00,0 +1079,1967-03-09 23:37:00,0 +4844,1967-08-17 22:37:00,0 +727,1965-01-27 02:42:00,0 +6024,1966-08-31 03:24:00,0 +2499,1969-09-16 04:25:00,0 +4973,1968-12-31 23:09:00,0 +8853,1966-03-15 04:56:00,0 +3171,1969-01-08 14:04:00,0 +2945,1969-02-06 16:12:00,0 +2858,1969-12-10 06:23:00,0 +6997,1966-12-21 18:10:00,0 +4526,1969-12-04 03:53:00,0 +8161,1968-02-23 14:54:00,0 +6222,1967-09-27 07:27:00,0 +9221,1967-11-15 15:03:00,0 +8560,1968-11-29 17:41:00,0 +6704,1966-10-05 09:14:00,0 +1461,1967-10-07 11:56:00,0 +1753,1967-01-24 20:46:00,0 +7588,1966-10-19 06:44:00,0 +3296,1966-03-08 14:36:00,0 +7145,1968-10-03 04:31:00,0 +8247,1968-11-23 09:41:00,0 +963,1969-11-19 20:00:00,0 +4181,1969-06-10 04:37:00,0 +7603,1968-11-30 19:37:00,0 +8597,1969-10-13 01:47:00,0 +8212,1965-10-12 09:12:00,0 +8027,1965-04-09 18:20:00,0 +4064,1967-07-13 00:10:00,0 +2938,1965-09-11 06:28:00,0 +618,1969-12-22 14:14:00,0 +926,1966-05-17 22:04:00,0 +4290,1965-10-03 00:54:00,0 +4868,1966-04-17 00:09:00,0 +1635,1969-03-02 16:31:00,0 +3992,1966-04-16 18:20:00,0 +7227,1967-06-10 09:33:00,0 +7344,1968-08-09 20:24:00,0 +4945,1966-05-04 19:06:00,0 +9910,1966-01-13 08:03:00,0 +7652,1969-05-16 15:55:00,0 +5968,1968-08-21 10:48:00,0 +5410,1967-02-28 22:00:00,0 +9199,1968-01-02 08:57:00,0 +9384,1966-07-31 16:51:00,0 +5322,1965-03-19 15:22:00,0 +7818,1969-12-28 23:49:00,0 +7963,1965-08-31 09:40:00,0 +7021,1965-08-19 12:06:00,0 +5784,1967-04-17 09:03:00,0 +6936,1966-06-01 00:06:00,0 +6346,1968-04-02 08:07:00,0 +1711,1968-12-07 23:56:00,0 +3105,1969-02-08 18:43:00,0 +3936,1968-05-19 18:27:00,0 +1922,1969-10-14 17:41:00,0 +5062,1966-11-14 07:14:00,0 +4040,1965-12-30 16:42:00,0 +5645,1965-11-21 09:26:00,0 +3721,1967-02-16 17:33:00,0 +9153,1965-08-26 20:20:00,0 +1746,1969-08-01 20:02:00,0 +5919,1967-08-14 17:19:00,0 +881,1969-10-15 01:11:00,0 +662,1967-11-01 17:57:00,0 +4929,1969-08-03 04:06:00,0 +8775,1967-12-02 03:06:00,0 +633,1969-11-04 09:36:00,0 +8304,1969-07-05 14:59:00,0 +6488,1965-02-28 21:24:00,0 +573,1966-01-14 14:44:00,0 +6510,1968-04-28 07:13:00,0 +8808,1968-05-12 23:34:00,0 +4788,1966-11-06 10:08:00,0 +8901,1969-03-10 02:49:00,0 +1469,1967-01-31 16:24:00,0 +6663,1966-06-30 00:51:00,0 +2327,1966-11-18 13:11:00,0 +77,1967-10-07 08:06:00,0 +1925,1966-09-13 07:05:00,0 +7887,1965-07-17 22:53:00,0 +6370,1968-07-06 20:49:00,0 +7474,1967-12-30 13:12:00,0 +7147,1967-12-25 15:11:00,0 +1897,1966-12-28 05:47:00,0 +929,1968-04-02 20:56:00,0 +2171,1967-05-04 20:53:00,0 +4174,1969-08-18 18:58:00,0 +9756,1969-07-13 08:20:00,0 +3629,1967-06-24 13:38:00,0 +7517,1968-04-06 00:31:00,0 +8808,1968-03-17 03:29:00,0 +4560,1965-05-30 00:29:00,0 +9555,1966-07-30 23:43:00,0 +9127,1969-04-25 02:53:00,0 +1952,1965-07-30 05:49:00,0 +8270,1967-11-25 13:25:00,0 +4208,1965-10-23 07:07:00,0 +7307,1969-10-17 09:00:00,0 +1663,1969-11-30 13:12:00,0 +1390,1965-11-16 23:32:00,0 +3651,1969-03-06 10:25:00,0 +5758,1965-08-03 16:19:00,0 +2338,1965-10-06 12:23:00,0 +1477,1968-11-21 09:15:00,0 +5067,1965-06-30 13:23:00,0 +5701,1968-08-27 16:02:00,0 +2459,1967-05-20 12:07:00,0 +1753,1967-01-06 10:40:00,0 +5975,1967-04-28 13:10:00,0 +4123,1966-02-08 21:08:00,0 +5748,1969-02-27 14:22:00,0 +6149,1965-08-01 17:19:00,0 +5241,1965-06-28 21:24:00,0 +3548,1965-05-03 14:42:00,0 +6991,1967-08-03 14:04:00,0 +3408,1968-11-17 10:11:00,0 +3275,1967-12-09 11:54:00,0 +2431,1965-06-15 23:01:00,0 +8774,1967-06-13 09:18:00,0 +5352,1968-09-06 18:45:00,0 +6230,1967-07-02 00:55:00,0 +4875,1967-05-12 03:11:00,0 +1235,1967-10-14 03:37:00,0 +8449,1966-10-20 20:18:00,0 +1409,1969-03-28 15:03:00,0 +7965,1966-08-06 11:34:00,0 +5058,1966-10-06 02:33:00,0 +5735,1966-10-19 22:36:00,0 +7672,1966-05-21 06:39:00,0 +7032,1967-08-15 04:17:00,0 +9803,1966-04-26 16:29:00,0 +2108,1969-05-14 10:08:00,0 +9578,1968-05-10 21:16:00,0 +4344,1968-07-15 08:15:00,0 +1600,1969-06-25 05:11:00,0 +4847,1966-08-02 12:21:00,0 +5769,1967-08-27 13:59:00,0 +455,1966-11-27 02:54:00,0 +5948,1968-12-24 05:07:00,0 +8107,1967-10-14 08:43:00,0 +2013,1966-09-26 03:26:00,0 +9970,1969-11-21 00:23:00,0 +2562,1965-10-20 15:03:00,0 +2632,1968-06-19 15:31:00,0 +3129,1967-01-19 09:09:00,0 +590,1967-03-13 16:20:00,0 +2308,1968-10-11 16:16:00,0 +7204,1966-05-02 14:33:00,0 +7937,1966-09-13 02:49:00,0 +1415,1966-05-04 13:32:00,0 +6213,1965-08-04 05:27:00,0 +9456,1966-09-23 08:44:00,0 +664,1966-11-04 05:40:00,0 +2800,1968-04-28 14:19:00,0 +4832,1965-02-03 08:41:00,0 +6178,1966-05-06 14:52:00,0 +9754,1969-07-10 04:48:00,0 +8892,1965-02-04 19:30:00,0 +9673,1967-03-12 09:47:00,0 +1477,1968-06-11 08:42:00,0 +2486,1967-03-13 13:45:00,0 +2268,1965-09-03 14:11:00,0 +180,1965-04-05 21:10:00,0 +4577,1967-11-20 22:34:00,0 +5227,1965-05-30 04:59:00,0 +5388,1966-08-24 14:58:00,0 +7889,1968-08-04 22:22:00,0 +3753,1967-07-18 02:21:00,0 +6059,1969-12-15 08:57:00,0 +4350,1965-05-23 00:32:00,0 +9668,1966-11-24 08:29:00,0 +2235,1965-09-05 07:28:00,0 +3790,1968-11-03 19:10:00,0 +3991,1969-08-30 16:19:00,0 +959,1969-06-11 10:15:00,0 +5604,1968-11-01 20:47:00,0 +7972,1967-06-08 02:34:00,0 +3933,1968-07-11 01:48:00,0 +399,1968-08-07 00:13:00,0 +1071,1969-11-16 06:24:00,0 +479,1966-08-19 11:20:00,0 +7078,1965-02-09 00:07:00,0 +5973,1967-11-22 19:16:00,0 +9564,1966-02-07 17:12:00,0 +87,1966-10-08 08:02:00,0 +6700,1966-09-20 05:24:00,0 +434,1969-01-05 05:46:00,0 +1133,1967-01-07 01:11:00,0 +7204,1969-04-09 07:32:00,0 +5531,1968-07-15 04:00:00,0 +2038,1965-03-10 08:20:00,0 +8643,1968-07-25 18:16:00,0 +1089,1967-07-10 22:00:00,0 +3432,1969-05-08 07:32:00,0 +7912,1968-01-27 16:18:00,0 +7508,1969-06-09 21:16:00,0 +5002,1966-11-09 09:29:00,0 +3711,1969-07-02 19:28:00,0 +6735,1968-05-10 21:46:00,0 +8277,1969-06-24 14:10:00,0 +9795,1967-07-23 09:11:00,0 +7428,1967-11-18 13:44:00,0 +4735,1966-01-23 16:45:00,0 +913,1967-09-20 22:04:00,0 +7711,1965-10-08 16:07:00,0 +9234,1967-05-24 14:10:00,0 +390,1969-08-01 09:47:00,0 +2534,1966-01-13 08:59:00,0 +7398,1965-03-05 00:15:00,0 +750,1965-02-10 00:22:00,0 +3274,1968-08-15 05:53:00,0 +2325,1967-05-18 04:55:00,0 +3435,1966-08-16 14:41:00,0 +6675,1966-11-03 04:18:00,0 +9947,1966-01-26 17:14:00,0 +475,1969-02-22 17:39:00,0 +4287,1969-02-08 01:06:00,0 +2151,1967-11-05 02:37:00,0 +6193,1967-04-17 03:30:00,0 +1381,1967-12-23 14:03:00,0 +2235,1966-10-06 00:27:00,0 +9083,1969-05-13 05:57:00,0 +7954,1965-08-08 19:58:00,0 +5536,1968-10-16 17:41:00,0 +1706,1968-04-22 08:07:00,0 +6745,1965-01-07 14:50:00,0 +612,1969-04-03 00:07:00,0 +5598,1967-07-04 15:05:00,0 +8789,1968-05-21 12:10:00,0 +2159,1966-11-10 11:37:00,0 +4209,1967-07-03 04:23:00,0 +2178,1966-04-08 01:39:00,0 +1582,1965-12-18 13:09:00,0 +5076,1969-11-02 05:29:00,0 +7328,1966-03-11 10:43:00,0 +503,1968-06-08 19:13:00,0 +8833,1966-02-18 01:34:00,0 +4645,1966-06-13 09:11:00,0 +1626,1969-06-05 22:15:00,0 +1013,1969-10-31 10:54:00,0 +5055,1969-09-18 00:46:00,0 +6326,1969-08-23 14:17:00,0 +8329,1966-02-25 08:24:00,0 +3360,1967-08-12 03:56:00,0 +4519,1965-12-06 11:01:00,0 +5491,1969-04-19 10:02:00,0 +4223,1969-07-07 16:36:00,0 +8213,1966-04-06 11:10:00,0 +6437,1969-11-18 11:08:00,0 +8556,1965-09-29 02:52:00,0 +5425,1965-08-05 04:52:00,0 +890,1968-10-21 00:10:00,0 +7671,1965-01-28 13:43:00,0 +7328,1966-01-27 20:13:00,0 +7170,1965-10-28 22:44:00,0 +7290,1966-07-02 23:19:00,0 +2885,1968-07-30 13:28:00,0 +4971,1965-01-06 22:27:00,0 +8474,1966-03-20 03:10:00,0 +6330,1967-04-20 00:45:00,0 +2793,1967-04-28 18:31:00,0 +3613,1969-03-01 04:03:00,0 +1841,1967-05-23 02:10:00,0 +4461,1965-03-23 12:36:00,0 +6737,1965-03-25 17:23:00,0 +2070,1965-01-10 20:49:00,0 +4102,1969-09-15 04:29:00,0 +3179,1966-12-29 08:27:00,0 +6397,1969-04-17 06:36:00,0 +4913,1966-03-12 05:04:00,0 +1391,1966-09-01 12:45:00,0 +4760,1969-11-04 04:24:00,0 +7565,1967-04-12 01:25:00,0 +4143,1969-07-15 07:07:00,0 +5590,1967-03-15 09:12:00,0 +3724,1968-05-11 22:41:00,0 +7447,1966-01-16 22:04:00,0 +7454,1967-05-22 19:13:00,0 +9612,1967-08-23 16:11:00,0 +4721,1967-03-12 00:49:00,0 +8193,1969-02-16 12:18:00,0 +5492,1966-10-25 09:38:00,0 +2708,1969-06-10 18:28:00,0 +5942,1969-03-08 13:52:00,0 +2966,1968-06-10 08:29:00,0 +3568,1967-11-09 05:18:00,0 +1018,1968-11-29 07:17:00,0 +289,1969-09-28 19:38:00,0 +9485,1967-05-30 03:18:00,0 +9212,1966-02-13 14:12:00,0 +1204,1966-03-10 06:30:00,0 +869,1966-02-03 02:36:00,0 +260,1967-01-13 21:13:00,0 +5513,1966-03-28 16:59:00,0 +4667,1969-01-03 14:26:00,0 +3371,1967-11-22 19:35:00,0 +8664,1967-10-27 17:14:00,0 +7853,1965-01-10 16:26:00,0 +261,1967-10-20 01:58:00,0 +5138,1965-08-17 11:56:00,0 +9503,1966-08-20 10:54:00,0 +4729,1969-04-05 02:53:00,0 +5394,1966-09-24 03:17:00,0 +4126,1966-10-03 21:23:00,0 +4656,1968-06-01 19:17:00,0 +7431,1966-03-20 06:27:00,0 +3737,1969-06-17 07:03:00,0 +7002,1969-03-30 21:11:00,0 +1092,1965-01-25 05:31:00,0 +5204,1968-11-25 11:56:00,0 +6446,1968-06-08 15:55:00,0 +3629,1965-09-15 05:35:00,0 +1802,1965-06-01 08:32:00,0 +6118,1966-08-21 17:51:00,0 +6359,1969-05-25 10:00:00,0 +9176,1968-05-01 22:34:00,0 +4855,1965-09-21 21:10:00,0 +724,1966-04-16 23:12:00,0 +7951,1966-11-24 02:08:00,0 +5903,1967-09-21 04:02:00,0 +5836,1967-03-29 20:23:00,0 +1010,1967-06-30 12:00:00,0 +7489,1968-08-12 01:15:00,0 +5327,1965-01-08 17:33:00,0 +576,1969-11-07 05:54:00,0 +1188,1969-11-02 15:55:00,0 +1243,1965-04-17 05:03:00,0 +3221,1968-09-13 05:55:00,0 +9953,1969-08-07 20:32:00,0 +5512,1965-06-22 22:06:00,0 +7749,1968-05-29 00:36:00,0 +8370,1969-06-22 12:46:00,0 +4759,1967-05-31 23:58:00,0 +8978,1968-10-31 12:16:00,0 +9073,1965-08-26 23:20:00,0 +3360,1965-08-04 11:21:00,0 +6712,1966-09-08 15:18:00,0 +2410,1965-04-25 17:07:00,0 +8716,1969-09-03 06:14:00,0 +9586,1965-03-16 02:36:00,0 +574,1965-10-13 06:25:00,0 +201,1969-07-08 00:45:00,0 +9643,1968-05-22 20:16:00,0 +5108,1969-10-07 15:04:00,0 +9978,1967-11-09 12:11:00,0 +1741,1965-08-08 10:56:00,0 +1935,1966-08-11 14:27:00,0 +269,1967-04-22 05:10:00,0 +3916,1966-05-14 07:31:00,0 +3058,1966-04-17 00:04:00,0 +9378,1966-06-01 06:53:00,0 +3658,1966-08-30 07:13:00,0 +7604,1966-07-13 18:33:00,0 +5952,1969-04-12 01:56:00,0 +2839,1965-05-05 23:54:00,0 +1044,1967-03-11 05:03:00,0 +1599,1965-11-05 19:02:00,0 +2415,1967-11-03 19:09:00,0 +2655,1966-10-17 08:42:00,0 +4609,1969-07-21 07:18:00,0 +4660,1966-05-08 01:19:00,0 +2841,1966-08-10 15:40:00,0 +3644,1968-05-14 19:20:00,0 +4382,1966-05-16 09:10:00,0 +4626,1966-09-26 16:11:00,0 +4167,1968-06-27 19:55:00,0 +3942,1965-09-23 23:49:00,0 +7543,1969-06-12 08:15:00,0 +3630,1966-07-01 07:27:00,0 +949,1967-03-13 03:33:00,0 +3191,1966-01-16 09:17:00,0 +7758,1966-03-07 00:14:00,0 +5227,1967-03-09 12:05:00,0 +3319,1966-08-08 07:24:00,0 +6454,1968-01-14 16:11:00,0 +5227,1966-06-30 17:30:00,0 +6157,1967-02-17 04:46:00,0 +6060,1965-09-30 18:15:00,0 +9321,1966-10-21 13:00:00,0 +9232,1967-04-18 01:18:00,0 +9755,1969-04-24 13:54:00,0 +1802,1966-03-17 21:53:00,0 +5242,1965-03-12 09:48:00,0 +50,1967-09-10 09:16:00,0 +8900,1969-11-24 17:37:00,0 +3347,1965-12-10 12:06:00,0 +5321,1965-02-02 22:33:00,0 +4014,1969-08-06 18:25:00,0 +3671,1965-02-28 16:05:00,0 +5544,1965-04-29 23:53:00,0 +1238,1969-07-30 10:28:00,0 +9632,1967-01-31 18:29:00,0 +5146,1968-08-26 21:20:00,0 +280,1969-09-18 16:59:00,0 +8993,1967-02-12 16:49:00,0 +1713,1965-04-21 18:39:00,0 +5978,1965-02-15 09:46:00,0 +3333,1967-06-05 00:35:00,0 +5343,1965-04-01 04:22:00,0 +1863,1966-10-28 08:31:00,0 +300,1965-01-27 14:59:00,0 +828,1965-07-22 20:13:00,0 +3768,1967-01-24 05:21:00,0 +467,1965-06-29 23:10:00,0 +8791,1968-09-08 00:15:00,0 +724,1967-04-30 08:15:00,0 +1511,1967-04-27 05:35:00,0 +6112,1968-07-01 08:16:00,0 +6176,1967-09-04 08:45:00,0 +2868,1965-05-23 11:24:00,0 +4529,1966-07-30 09:51:00,0 +5233,1968-10-31 05:53:00,0 +8146,1968-04-11 02:24:00,0 +6058,1968-11-18 00:15:00,0 +6689,1967-04-25 18:47:00,0 +2129,1965-09-13 14:18:00,0 +6360,1967-06-20 15:49:00,0 +3552,1965-06-24 02:45:00,0 +4365,1965-01-05 08:31:00,0 +8019,1966-03-13 05:58:00,0 +368,1965-07-13 05:23:00,0 +5981,1968-04-07 14:58:00,0 +7303,1968-02-05 20:14:00,0 +2199,1965-11-16 21:56:00,0 +3912,1969-03-01 15:47:00,0 +7532,1968-04-23 04:44:00,0 +2105,1967-12-25 13:04:00,0 +9274,1967-03-28 02:42:00,0 +4544,1966-04-13 17:20:00,0 +4547,1969-02-22 21:39:00,0 +8333,1965-01-27 15:27:00,0 +6140,1965-12-23 05:06:00,0 +8302,1969-06-16 03:50:00,0 +5464,1969-03-25 12:40:00,0 +5981,1968-05-23 04:55:00,0 +9865,1968-10-05 13:46:00,0 +8931,1967-09-03 04:40:00,0 +1329,1969-09-28 09:01:00,0 +4961,1966-06-27 13:06:00,0 +1837,1966-12-06 07:25:00,0 +2770,1968-09-21 04:29:00,0 +9112,1966-03-30 04:10:00,0 +9344,1965-01-19 07:47:00,0 +5452,1969-01-17 20:59:00,0 +5369,1966-05-20 01:48:00,0 +871,1968-04-10 12:30:00,0 +5399,1969-11-28 04:18:00,0 +6682,1969-12-06 03:08:00,0 +7672,1965-07-06 19:07:00,0 +9140,1966-05-14 22:42:00,0 +8586,1969-10-08 04:55:00,0 +4409,1965-04-30 23:46:00,0 +2776,1965-01-14 02:32:00,0 +5318,1966-11-21 21:44:00,0 +2703,1965-09-16 11:59:00,0 +3627,1967-07-27 06:08:00,0 +9210,1968-08-21 05:02:00,0 +130,1969-06-22 04:29:00,0 +2958,1965-05-26 00:37:00,0 +1646,1965-11-16 07:50:00,0 +5860,1965-09-05 13:17:00,0 +6803,1967-09-09 14:11:00,0 +3101,1966-01-09 02:51:00,0 +265,1966-08-03 05:22:00,0 +6639,1969-01-05 14:20:00,0 +7448,1966-01-26 14:16:00,0 +2535,1967-06-30 15:41:00,0 +8680,1968-11-08 17:47:00,0 +8853,1969-08-04 08:30:00,0 +4064,1965-05-05 04:55:00,0 +2568,1969-08-27 04:21:00,0 +7180,1965-03-25 04:11:00,0 +7393,1968-12-21 13:26:00,0 +4437,1968-10-16 04:49:00,0 +4298,1969-08-23 10:40:00,0 +1572,1965-11-07 19:24:00,0 +7145,1966-03-30 00:08:00,0 +9991,1969-09-15 04:26:00,0 +7088,1965-01-07 22:13:00,0 +7355,1967-10-05 06:25:00,0 +5490,1969-06-16 11:38:00,0 +5527,1966-08-17 16:43:00,0 +7188,1967-03-28 13:42:00,0 +2524,1967-04-03 02:29:00,0 +3583,1965-12-18 05:19:00,0 +8000,1967-08-28 15:30:00,0 +1656,1967-03-10 04:58:00,0 +8719,1969-01-13 08:41:00,0 +6973,1965-09-03 20:08:00,0 +7821,1967-09-11 12:15:00,0 +735,1968-01-08 07:39:00,0 +5577,1965-12-18 14:06:00,0 +3618,1968-02-22 17:00:00,0 +8118,1966-06-21 17:10:00,0 +5399,1965-04-18 23:42:00,0 +4962,1965-10-11 15:18:00,0 +2405,1969-01-01 15:18:00,0 +1772,1969-02-28 05:55:00,0 +298,1969-09-16 01:44:00,0 +3362,1967-05-26 01:44:00,0 +8161,1969-06-20 08:25:00,0 +4098,1968-02-10 21:00:00,0 +5444,1966-07-02 01:28:00,0 +3867,1966-11-13 10:58:00,0 +3658,1966-12-26 01:42:00,0 +6661,1967-11-02 02:59:00,0 +2269,1968-08-29 08:07:00,0 +1407,1966-02-24 16:46:00,0 +5745,1969-06-09 09:33:00,0 +8258,1969-12-19 23:02:00,0 +9591,1965-02-16 06:15:00,0 +8243,1968-04-09 11:10:00,0 +9291,1968-03-06 05:18:00,0 +2272,1969-01-06 22:14:00,0 +9362,1965-09-26 18:37:00,0 +2098,1969-11-11 18:16:00,0 +9295,1967-04-21 09:20:00,0 +3465,1969-12-22 10:46:00,0 +6686,1967-04-15 10:14:00,0 +1964,1966-05-31 19:10:00,0 +5225,1966-01-05 15:01:00,0 +2309,1969-12-31 10:47:00,0 +7540,1969-12-07 16:23:00,0 +728,1969-01-30 07:11:00,0 +9960,1968-05-03 15:03:00,0 +7396,1968-02-08 00:43:00,0 +1131,1966-08-14 23:07:00,0 +3784,1966-08-14 05:54:00,0 +3594,1965-06-25 03:09:00,0 +4072,1966-12-08 07:44:00,0 +1065,1966-08-23 01:14:00,0 +8025,1969-10-06 19:11:00,0 +6262,1967-10-14 13:03:00,0 +2163,1969-06-09 17:17:00,0 +9303,1968-11-22 19:23:00,0 +6578,1967-03-30 20:00:00,0 +4112,1968-05-04 19:24:00,0 +2348,1966-07-16 08:08:00,0 +1647,1969-07-04 07:35:00,0 +9690,1966-12-31 06:10:00,0 +3654,1966-05-14 06:33:00,0 +1827,1965-05-05 18:14:00,0 +8696,1967-08-06 00:02:00,0 +1237,1965-01-10 07:09:00,0 +4712,1969-10-19 10:34:00,0 +7623,1965-06-22 13:42:00,0 +5297,1967-01-05 22:48:00,0 +3060,1965-01-25 23:28:00,0 +3864,1968-07-31 02:15:00,0 +3267,1969-10-05 22:07:00,0 +9572,1968-02-01 01:41:00,0 +7977,1966-03-18 21:42:00,0 +9085,1965-05-25 19:39:00,0 +3231,1965-02-24 19:58:00,0 +1126,1967-04-08 10:34:00,0 +1164,1969-10-17 07:57:00,0 +4156,1967-06-20 03:32:00,0 +670,1967-03-19 11:54:00,0 +3500,1965-10-09 23:43:00,0 +839,1965-09-09 21:38:00,0 +5899,1967-03-05 01:08:00,0 +528,1966-05-04 12:08:00,0 +9761,1965-07-28 01:34:00,0 +7193,1966-08-06 18:38:00,0 +9281,1969-08-03 21:20:00,0 +4701,1967-08-10 10:30:00,0 +8024,1969-03-29 04:15:00,0 +9136,1967-01-05 06:49:00,0 +5608,1965-01-12 04:39:00,0 +4887,1968-01-02 00:33:00,0 +9121,1965-09-27 00:41:00,0 +2618,1966-03-17 08:25:00,0 +964,1965-02-25 01:29:00,0 +9682,1968-02-18 05:25:00,0 +3498,1965-12-17 22:25:00,0 +5388,1968-03-20 04:10:00,0 +1952,1966-08-22 04:42:00,0 +1528,1965-06-09 23:59:00,0 +6878,1967-01-06 13:16:00,0 +5458,1968-03-15 23:31:00,0 +5560,1968-03-30 09:42:00,0 +7964,1969-01-19 13:59:00,0 +6420,1968-03-07 20:38:00,0 +9791,1966-03-03 18:15:00,0 +5216,1968-12-19 02:16:00,0 +6348,1968-12-01 03:15:00,0 +9504,1966-02-16 08:08:00,0 +5730,1967-08-13 08:50:00,0 +2680,1967-04-23 01:59:00,0 +1671,1965-01-10 16:27:00,0 +6221,1968-08-28 05:47:00,0 +8948,1969-04-07 22:32:00,0 +9517,1968-06-12 18:26:00,0 +3892,1969-03-24 05:07:00,0 +6773,1967-07-15 09:16:00,0 +7874,1968-11-26 15:25:00,0 +5067,1969-11-07 20:16:00,0 +8172,1969-03-29 09:50:00,0 +4525,1967-07-19 03:30:00,0 +8327,1966-05-29 03:08:00,0 +4627,1965-01-25 16:39:00,0 +2119,1966-06-04 20:10:00,0 +5664,1967-04-27 22:51:00,0 +2480,1966-02-12 18:30:00,0 +7932,1965-03-17 14:13:00,0 +8407,1965-05-20 22:05:00,0 +2513,1965-08-11 17:44:00,0 +1862,1968-03-01 17:35:00,0 +2854,1967-07-10 02:31:00,0 +8072,1965-07-02 14:59:00,0 +1420,1969-12-14 13:05:00,0 +9357,1966-08-22 06:28:00,0 +3289,1967-09-22 22:05:00,0 +3954,1966-12-29 17:58:00,0 +8815,1968-07-17 01:03:00,0 +8132,1969-06-22 02:00:00,0 +3842,1968-05-04 05:45:00,0 +1552,1966-10-23 16:33:00,0 +9113,1969-07-07 08:07:00,0 +2072,1969-03-08 00:44:00,0 +1326,1967-06-20 11:26:00,0 +5540,1967-11-24 13:02:00,0 +4795,1968-03-30 20:20:00,0 +7602,1965-08-02 02:15:00,0 +7818,1967-09-12 06:34:00,0 +1980,1965-06-11 14:00:00,0 +9086,1968-03-08 07:55:00,0 +6701,1965-10-22 03:11:00,0 +4455,1967-01-01 07:07:00,0 +6301,1967-11-29 04:50:00,0 +5529,1966-05-27 08:09:00,0 +3072,1965-11-18 16:08:00,0 +8322,1969-12-10 21:06:00,0 +6360,1969-08-11 06:11:00,0 +7046,1966-11-01 00:35:00,0 +6910,1969-01-21 21:18:00,0 +731,1966-10-28 19:16:00,0 +8066,1969-12-22 12:17:00,0 +6149,1968-01-25 21:17:00,0 +8656,1967-07-30 04:07:00,0 +3681,1966-07-18 20:14:00,0 +6863,1968-05-16 06:59:00,0 +8354,1965-03-03 20:04:00,0 +6373,1969-04-12 01:13:00,0 +10,1967-09-16 00:32:00,0 +4846,1966-02-26 12:11:00,0 +4210,1966-12-04 18:14:00,0 +2040,1966-06-20 18:22:00,0 +81,1966-08-24 16:55:00,0 +2942,1968-04-18 20:13:00,0 +3195,1968-08-10 01:06:00,0 +5138,1967-09-04 03:19:00,0 +5307,1965-03-18 21:21:00,0 +8308,1969-07-23 22:27:00,0 +9469,1969-10-24 11:56:00,0 +9218,1968-10-22 18:50:00,0 +2333,1965-09-23 10:16:00,0 +7520,1969-09-28 07:01:00,0 +4477,1968-01-30 07:42:00,0 +9385,1965-03-04 23:28:00,0 +1739,1966-06-03 05:00:00,0 +4776,1966-01-08 00:25:00,0 +8186,1965-08-12 08:49:00,0 +2022,1966-02-22 19:53:00,0 +7059,1966-09-27 03:41:00,0 +181,1965-10-25 10:09:00,0 +7567,1966-02-04 08:07:00,0 +9252,1965-03-04 14:43:00,0 +5074,1968-07-13 23:34:00,0 +4894,1965-08-26 02:13:00,0 +5633,1969-08-11 03:53:00,0 +9324,1968-04-05 16:16:00,0 +1459,1968-07-08 14:37:00,0 +5904,1967-04-11 18:58:00,0 +9820,1968-07-18 23:19:00,0 +5499,1968-01-13 19:18:00,0 +6862,1965-08-23 19:07:00,0 +8333,1965-01-07 09:26:00,0 +3123,1967-01-03 12:14:00,0 +1895,1969-11-11 02:20:00,0 +9163,1968-12-14 05:07:00,0 +4139,1969-03-03 12:31:00,0 +7741,1965-08-20 19:38:00,0 +1838,1967-08-07 16:43:00,0 +8309,1969-07-08 03:05:00,0 +8827,1965-10-13 08:15:00,0 +9908,1969-04-04 15:16:00,0 +6791,1966-06-06 08:58:00,0 +6499,1966-09-21 07:27:00,0 +162,1966-04-09 16:59:00,0 +4936,1968-09-17 05:13:00,0 +2676,1969-02-19 20:29:00,0 +4725,1966-07-30 09:11:00,0 +7190,1967-09-19 03:10:00,0 +3735,1966-10-11 17:14:00,0 +2575,1967-10-11 10:00:00,0 +2012,1966-10-12 08:18:00,0 +1780,1967-07-29 07:28:00,0 +3325,1965-08-10 11:30:00,0 +2289,1969-10-27 20:31:00,0 +9632,1967-01-01 04:07:00,0 +6055,1969-08-06 05:13:00,0 +1370,1967-12-29 09:38:00,0 +7645,1969-02-04 18:09:00,0 +2144,1968-03-24 08:30:00,0 +3081,1968-02-27 01:34:00,0 +8082,1968-06-14 12:21:00,0 +5377,1968-04-02 20:22:00,0 +3291,1965-03-14 13:44:00,0 +642,1965-02-16 09:02:00,0 +2831,1969-04-18 16:32:00,0 +6991,1969-01-02 14:42:00,0 +6788,1968-06-07 01:21:00,0 +4436,1968-04-05 05:52:00,0 +9056,1967-06-24 03:20:00,0 +717,1969-10-04 08:30:00,0 +9629,1968-08-16 05:50:00,0 +5442,1966-01-16 22:37:00,0 +2694,1966-01-24 19:32:00,0 +1202,1967-10-12 00:20:00,0 +6764,1967-05-31 09:04:00,0 +7935,1965-08-15 07:33:00,0 +1828,1965-09-03 16:47:00,0 +5442,1966-09-13 03:54:00,0 +6309,1966-02-14 07:29:00,0 +8756,1969-08-23 06:54:00,0 +3461,1968-02-25 15:48:00,0 +5969,1966-01-27 07:05:00,0 +3810,1969-01-12 12:32:00,0 +9224,1966-09-16 11:03:00,0 +9808,1969-05-08 02:43:00,0 +845,1967-11-12 07:44:00,0 +1250,1967-06-16 00:36:00,0 +6539,1967-04-08 04:20:00,0 +5431,1965-08-28 06:26:00,0 +2154,1969-05-07 20:15:00,0 +1616,1967-05-09 14:28:00,0 +6586,1969-05-13 19:13:00,0 +5588,1967-01-18 08:00:00,0 +5254,1968-02-20 15:32:00,0 +2328,1965-04-28 08:08:00,0 +6249,1967-04-25 19:12:00,0 +957,1969-10-07 00:16:00,0 +5139,1969-02-12 18:36:00,0 +4657,1968-05-29 20:35:00,0 +2064,1966-05-03 19:48:00,0 +1462,1968-09-18 02:05:00,0 +3955,1965-06-29 08:23:00,0 +2732,1967-05-14 22:22:00,0 +8847,1966-04-11 11:47:00,0 +6671,1968-12-18 04:21:00,0 +9024,1967-02-15 13:39:00,0 +6606,1966-12-15 17:26:00,0 +233,1968-10-20 12:16:00,0 +9904,1969-08-04 03:54:00,0 +8311,1969-05-29 11:13:00,0 +1767,1965-07-24 02:15:00,0 +5016,1967-04-05 03:06:00,0 +3959,1966-11-19 09:39:00,0 +3756,1968-05-19 00:24:00,0 +6285,1965-06-28 05:27:00,0 +2114,1969-04-14 19:39:00,0 +2142,1966-07-15 21:43:00,0 +3549,1967-08-31 01:03:00,0 +3640,1967-03-14 13:36:00,0 +7081,1968-02-15 19:58:00,0 +3700,1965-05-18 07:48:00,0 +1890,1968-10-21 00:47:00,0 +2367,1965-02-20 06:21:00,0 +6300,1966-05-07 14:55:00,0 +4122,1967-12-31 06:40:00,0 +680,1968-10-16 08:27:00,0 +4024,1965-11-16 21:59:00,0 +8817,1968-02-06 04:40:00,0 +6682,1965-07-17 07:25:00,0 +203,1966-06-20 23:27:00,0 +9498,1966-12-06 15:23:00,0 +628,1968-10-18 21:30:00,0 +5961,1969-11-07 13:57:00,0 +6606,1967-12-03 13:54:00,0 +1816,1968-08-10 16:33:00,0 +4329,1967-08-23 21:16:00,0 +3082,1965-07-03 21:20:00,0 +3222,1968-04-17 16:03:00,0 +8386,1966-05-04 10:28:00,0 +3936,1967-02-17 19:04:00,0 +1932,1967-07-01 01:10:00,0 +7915,1969-08-22 13:43:00,0 +1618,1968-10-22 09:20:00,0 +9401,1966-01-08 23:39:00,0 +9950,1965-06-09 09:36:00,0 +8258,1967-09-09 10:16:00,0 +517,1966-09-08 14:36:00,0 +2669,1968-11-29 05:28:00,0 +8189,1965-11-19 07:29:00,0 +882,1966-05-01 19:32:00,0 +4322,1967-05-15 17:14:00,0 +2517,1967-05-28 19:06:00,0 +1121,1968-06-18 09:35:00,0 +5402,1966-05-22 16:08:00,0 +6849,1968-04-24 04:18:00,0 +1678,1965-08-22 16:25:00,0 +2713,1967-02-20 13:06:00,0 +9644,1968-08-21 10:53:00,0 +7063,1966-09-08 23:52:00,0 +1829,1969-10-19 23:21:00,0 +1959,1967-11-14 12:56:00,0 +7379,1966-04-17 19:56:00,0 +4390,1965-02-07 06:15:00,0 +8483,1967-07-12 23:58:00,0 +5484,1969-07-01 04:32:00,0 +638,1968-08-28 16:18:00,0 +2624,1965-04-17 09:41:00,0 +6149,1967-01-19 21:43:00,0 +7184,1968-03-31 12:04:00,0 +8991,1967-02-04 20:53:00,0 +8128,1969-06-28 12:47:00,0 +4581,1969-11-13 23:13:00,0 +7728,1966-03-09 02:44:00,0 +8398,1969-10-30 22:55:00,0 +9526,1969-10-05 07:13:00,0 +2411,1968-06-10 06:49:00,0 +2652,1969-06-25 08:49:00,0 +5260,1967-08-29 13:52:00,0 +2106,1967-08-09 12:12:00,0 +4864,1966-07-19 22:04:00,0 +3,1966-07-08 18:11:00,0 +452,1965-03-11 13:47:00,0 +1234,1966-12-08 19:51:00,0 +7771,1968-08-04 15:07:00,0 +7366,1965-10-29 01:02:00,0 +1870,1968-09-29 12:52:00,0 +7715,1967-04-24 14:05:00,0 +6407,1967-05-14 03:06:00,0 +480,1966-10-13 08:39:00,0 +3688,1968-12-27 21:13:00,0 +1813,1965-03-13 02:42:00,0 +2027,1965-08-19 22:24:00,0 +5703,1965-11-18 18:02:00,0 +6654,1966-12-28 21:47:00,0 +8156,1969-02-24 19:50:00,0 +6093,1965-03-11 13:47:00,0 +5109,1966-07-18 07:45:00,0 +4754,1969-12-12 16:52:00,0 +3272,1969-10-17 22:34:00,0 +7682,1966-06-18 05:13:00,0 +2951,1969-08-16 17:33:00,0 +1869,1969-05-19 22:52:00,0 +4209,1969-02-20 09:37:00,0 +268,1966-04-19 02:42:00,0 +152,1967-12-23 19:13:00,0 +7435,1968-02-20 09:03:00,0 +6759,1965-12-08 02:09:00,0 +6713,1969-03-10 22:21:00,0 +1735,1966-01-24 15:29:00,0 +8796,1966-04-27 05:21:00,0 +6879,1968-10-19 16:09:00,0 +8941,1969-05-12 12:27:00,0 +5407,1965-06-20 01:06:00,0 +3267,1966-09-30 19:05:00,0 +6987,1965-04-10 18:03:00,0 +285,1968-12-07 14:19:00,0 +2458,1965-05-16 10:53:00,0 +8727,1967-08-28 02:15:00,0 +8002,1968-02-26 14:48:00,0 +7706,1968-10-01 04:59:00,0 +4230,1968-05-25 18:49:00,0 +4753,1967-01-07 02:35:00,0 +1088,1968-07-04 04:07:00,0 +9210,1968-12-10 23:59:00,0 +8753,1968-02-23 03:17:00,0 +9025,1967-02-02 00:20:00,0 +8434,1969-04-10 12:00:00,0 +3100,1966-09-01 08:59:00,0 +4789,1965-05-31 15:32:00,0 +4644,1967-09-02 09:42:00,0 +8785,1967-12-22 12:57:00,0 +5895,1966-05-15 20:21:00,0 +6967,1965-10-31 09:07:00,0 +2361,1969-10-02 05:29:00,0 +7895,1968-05-27 12:58:00,0 +8806,1967-01-07 19:44:00,0 +8865,1969-01-07 14:31:00,0 +4927,1967-01-12 19:36:00,0 +809,1967-12-21 06:01:00,0 +7023,1969-05-13 10:30:00,0 +887,1968-04-12 02:19:00,0 +5674,1967-08-08 23:12:00,0 +6208,1968-10-13 16:10:00,0 +5736,1968-06-08 22:18:00,0 +6496,1969-01-15 20:05:00,0 +7896,1969-10-25 06:47:00,0 +1118,1965-05-28 17:45:00,0 +2999,1968-12-21 10:51:00,0 +6150,1966-08-17 17:27:00,0 +6835,1968-01-23 21:42:00,0 +8532,1967-03-21 07:41:00,0 +9844,1969-11-02 01:57:00,0 +9157,1967-02-09 12:40:00,0 +4290,1965-10-29 15:05:00,0 +3449,1968-01-02 08:05:00,0 +3197,1965-09-22 07:33:00,0 +3267,1966-09-21 23:04:00,0 +9850,1965-07-08 00:20:00,0 +4721,1965-08-16 19:23:00,0 +1874,1967-06-09 04:45:00,0 +1145,1968-10-07 06:28:00,0 +8966,1969-12-30 20:35:00,0 +2571,1968-02-25 01:25:00,0 +7699,1969-04-26 03:30:00,0 +6298,1967-06-07 16:52:00,0 +8550,1967-10-02 21:12:00,0 +7669,1966-01-22 13:52:00,0 +5291,1966-12-04 10:46:00,0 +6190,1968-05-16 17:16:00,0 +3255,1967-04-16 09:54:00,0 +7411,1968-08-15 21:57:00,0 +8981,1965-09-10 08:49:00,0 +9115,1968-05-26 21:38:00,0 +3351,1969-08-25 23:24:00,0 +1692,1967-12-15 00:10:00,0 +5864,1969-03-17 16:50:00,0 +9606,1967-06-19 10:36:00,0 +3069,1966-05-16 03:15:00,0 +9836,1968-07-22 23:50:00,0 +5106,1965-06-12 21:19:00,0 +6986,1968-11-16 03:18:00,0 +3684,1965-12-07 00:53:00,0 +7445,1966-10-05 05:57:00,0 +978,1966-08-10 08:49:00,0 +9247,1969-08-12 05:23:00,0 +9088,1967-08-08 12:26:00,0 +6137,1966-01-21 16:43:00,0 +8300,1968-08-11 11:49:00,0 +3776,1966-02-18 10:45:00,0 +1498,1968-09-06 07:21:00,0 +2414,1969-03-29 05:26:00,0 +7981,1966-02-24 18:22:00,0 +4417,1967-08-13 00:57:00,0 +442,1968-10-10 16:53:00,0 +103,1968-10-28 04:46:00,0 +7904,1968-09-09 03:37:00,0 +807,1965-04-10 05:02:00,0 +7815,1967-12-31 11:47:00,0 +6855,1967-10-03 10:16:00,0 +4447,1968-11-06 00:52:00,0 +8405,1969-10-29 18:04:00,0 +7523,1969-04-19 15:02:00,0 +5375,1969-05-05 15:42:00,0 +8861,1966-07-21 03:11:00,0 +7691,1966-04-19 09:39:00,0 +9469,1965-10-19 09:21:00,0 +2096,1968-02-21 17:34:00,0 +4648,1966-01-29 16:13:00,0 +1547,1967-02-03 10:02:00,0 +3738,1968-05-02 08:40:00,0 +9399,1965-01-22 06:24:00,0 +8829,1966-04-20 04:47:00,0 +7865,1967-10-04 12:50:00,0 +212,1968-01-24 21:08:00,0 +7580,1965-12-02 21:15:00,0 +590,1969-10-20 10:03:00,0 +9274,1968-08-17 03:49:00,0 +1758,1966-05-03 19:58:00,0 +6402,1966-03-24 07:44:00,0 +3045,1968-07-01 14:21:00,0 +9470,1967-12-20 21:09:00,0 +5044,1966-10-03 22:35:00,0 +8027,1969-08-29 08:18:00,0 +4002,1965-01-28 10:55:00,0 +7305,1966-10-21 19:31:00,0 +2776,1966-09-26 12:16:00,0 +645,1965-12-05 14:45:00,0 +27,1966-03-17 22:41:00,0 +479,1967-12-10 18:55:00,0 +3318,1966-02-09 22:21:00,0 +7212,1966-05-31 03:58:00,0 +2313,1967-09-15 22:05:00,0 +4618,1969-01-09 12:34:00,0 +677,1969-06-06 12:22:00,0 +2466,1966-12-13 11:22:00,0 +3396,1968-10-10 23:37:00,0 +5165,1969-06-20 07:19:00,0 +8172,1969-10-02 05:00:00,0 +5220,1966-07-28 02:00:00,0 +5834,1969-05-13 10:19:00,0 +5326,1968-06-28 14:15:00,0 +2390,1966-09-16 22:33:00,0 +8145,1965-09-11 16:19:00,0 +4817,1969-08-10 06:21:00,0 +750,1967-08-21 03:40:00,0 +5047,1968-04-15 10:51:00,0 +879,1966-01-20 14:05:00,0 +543,1966-09-28 06:12:00,0 +4527,1969-07-19 21:59:00,0 +1401,1968-04-30 00:36:00,0 +2732,1969-04-15 06:03:00,0 +4433,1965-09-15 22:44:00,0 +5837,1965-08-31 16:16:00,0 +8100,1967-10-26 10:00:00,0 +7215,1966-11-14 15:59:00,0 +433,1967-07-11 08:20:00,0 +8505,1969-11-04 10:04:00,0 +1476,1966-03-12 03:11:00,0 +58,1966-04-27 18:13:00,0 +3719,1966-02-20 20:58:00,0 +5732,1967-03-22 18:16:00,0 +3175,1968-12-04 06:41:00,0 +1909,1965-12-02 03:10:00,0 +5702,1968-11-20 12:30:00,0 +8637,1965-06-10 09:57:00,0 +5423,1965-08-02 05:45:00,0 +4968,1968-06-22 10:22:00,0 +6079,1969-06-24 11:52:00,0 +2637,1965-11-23 14:23:00,0 +4788,1966-01-27 02:33:00,0 +8006,1967-02-03 02:29:00,0 +8778,1968-03-01 01:18:00,0 +5874,1966-03-04 07:01:00,0 +2904,1967-08-27 16:18:00,0 +3556,1969-08-05 05:31:00,0 +4239,1968-04-30 13:08:00,0 +310,1968-01-05 08:12:00,0 +499,1968-07-07 22:52:00,0 +2335,1968-11-06 18:38:00,0 +3663,1966-04-16 22:58:00,0 +7795,1968-02-28 11:03:00,0 +8470,1965-08-16 08:34:00,0 +1577,1966-11-13 02:20:00,0 +5460,1969-04-28 10:36:00,0 +3013,1969-09-14 22:08:00,0 +9575,1966-03-17 04:03:00,0 +5665,1966-03-08 09:35:00,0 +4676,1967-02-13 03:53:00,0 +6229,1966-03-20 20:15:00,0 +8633,1967-02-16 05:40:00,0 +902,1965-01-22 06:21:00,0 +4605,1966-04-07 00:22:00,0 +2409,1968-09-17 15:06:00,0 +4394,1967-06-15 06:52:00,0 +8263,1968-04-19 09:07:00,0 +4957,1967-02-22 05:13:00,0 +9195,1969-01-08 09:11:00,0 +3615,1968-09-23 05:31:00,0 +5199,1966-01-21 08:53:00,0 +8649,1967-01-03 01:13:00,0 +3844,1969-11-11 15:06:00,0 +1435,1967-04-20 12:46:00,0 +7559,1965-09-12 04:07:00,0 +9830,1965-05-14 01:37:00,0 +6009,1968-04-03 01:40:00,0 +9881,1969-11-21 02:01:00,0 +4155,1965-09-29 01:12:00,0 +7777,1965-03-19 02:12:00,0 +5414,1966-11-02 11:05:00,0 +5365,1967-08-24 21:53:00,0 +9827,1966-01-25 04:09:00,0 +4970,1969-01-31 12:16:00,0 +82,1968-09-27 06:23:00,0 +3678,1967-01-06 19:19:00,0 +4158,1969-09-21 20:19:00,0 +2185,1966-01-26 19:27:00,0 +7806,1965-04-12 17:46:00,0 +4259,1968-10-18 15:29:00,0 +5205,1967-08-13 04:33:00,0 +9244,1969-12-06 00:38:00,0 +3971,1969-07-21 03:31:00,0 +4251,1966-04-01 11:47:00,0 +139,1967-11-14 17:32:00,0 +9087,1965-04-02 20:20:00,0 +4376,1966-12-02 00:51:00,0 +736,1968-02-09 20:41:00,0 +4430,1969-03-04 14:21:00,0 +1593,1965-07-16 12:43:00,0 +4504,1967-08-31 02:39:00,0 +9446,1969-07-23 01:41:00,0 +6455,1968-12-18 02:10:00,0 +2804,1969-04-25 09:27:00,0 +404,1969-07-31 15:54:00,0 +5673,1969-11-13 00:08:00,0 +9119,1968-10-10 16:50:00,0 +3608,1966-01-09 20:31:00,0 +7307,1965-11-19 07:22:00,0 +7337,1965-07-31 14:28:00,0 +9186,1965-10-23 16:39:00,0 +1264,1965-11-21 03:55:00,0 +2366,1966-05-02 01:00:00,0 +1640,1967-07-09 03:30:00,0 +6711,1966-02-24 09:16:00,0 +2501,1967-01-31 18:14:00,0 +545,1965-07-10 12:24:00,0 +2251,1965-08-16 14:33:00,0 +1569,1968-04-02 12:27:00,0 +7948,1967-03-02 11:48:00,0 +7368,1967-09-24 13:23:00,0 +4427,1966-05-23 07:16:00,0 +631,1965-10-25 16:03:00,0 +1864,1968-04-22 01:11:00,0 +3136,1968-03-07 16:08:00,0 +4448,1965-07-03 08:48:00,0 +8026,1966-10-15 04:49:00,0 +1654,1968-04-25 14:59:00,0 +4781,1969-04-09 13:47:00,0 +9384,1965-11-23 04:30:00,0 +1615,1969-03-30 02:01:00,0 +8531,1966-11-23 18:44:00,0 +8865,1969-10-20 15:11:00,0 +9431,1965-07-05 05:21:00,0 +2887,1968-05-12 08:22:00,0 +2725,1969-03-26 10:44:00,0 +151,1968-06-03 23:22:00,0 +6433,1968-10-27 03:20:00,0 +7103,1965-02-22 15:27:00,0 +4426,1965-05-08 02:10:00,0 +6800,1966-02-23 13:35:00,0 +1092,1968-06-15 14:58:00,0 +9059,1969-05-19 08:12:00,0 +6624,1966-05-19 03:47:00,0 +6397,1966-01-15 07:24:00,0 +9174,1969-11-20 05:47:00,0 +5158,1966-02-26 11:00:00,0 +1926,1966-01-03 01:44:00,0 +6483,1965-04-11 11:50:00,0 +4677,1965-12-19 21:13:00,0 +528,1967-10-27 19:25:00,0 +3070,1965-04-15 19:02:00,0 +4322,1968-01-12 05:48:00,0 +9913,1965-07-31 18:46:00,0 +9069,1969-06-25 14:17:00,0 +5690,1966-05-14 16:37:00,0 +9298,1969-02-24 19:13:00,0 +2541,1969-07-19 07:10:00,0 +9803,1966-10-07 15:10:00,0 +6601,1968-02-11 23:32:00,0 +8939,1968-08-08 11:58:00,0 +9401,1969-08-13 08:50:00,0 +1702,1968-06-23 23:03:00,0 +3712,1965-01-13 21:46:00,0 +1576,1969-05-02 19:51:00,0 +2276,1968-03-14 12:26:00,0 +4788,1969-09-02 01:31:00,0 +5532,1969-05-17 21:40:00,0 +422,1966-09-12 12:18:00,0 +5629,1966-09-07 09:25:00,0 +5226,1967-06-29 01:29:00,0 +6622,1966-06-18 07:41:00,0 +7852,1968-09-22 04:45:00,0 +3497,1966-03-06 05:40:00,0 +3148,1968-11-12 22:05:00,0 +5047,1968-12-26 12:54:00,0 +3148,1967-12-02 03:45:00,0 +9486,1969-08-19 14:50:00,0 +8874,1969-09-06 01:32:00,0 +9938,1965-10-27 21:41:00,0 +1007,1965-11-25 21:15:00,0 +5469,1965-04-23 20:16:00,0 +50,1969-05-06 23:04:00,0 +8418,1966-05-31 16:57:00,0 +5864,1968-04-28 20:15:00,0 +3489,1966-08-09 13:46:00,0 +5639,1967-09-28 03:40:00,0 +2405,1968-09-12 04:55:00,0 +5840,1968-10-11 21:33:00,0 +3192,1966-03-31 18:00:00,0 +8412,1969-06-24 10:18:00,0 +8774,1969-09-02 12:41:00,0 +9098,1967-12-02 05:24:00,0 +8805,1966-09-25 15:07:00,0 +3240,1968-08-29 15:16:00,0 +2378,1969-03-14 00:09:00,0 +8124,1968-08-01 02:56:00,0 +659,1966-08-18 18:50:00,0 +3301,1967-04-12 14:45:00,0 +555,1965-11-14 23:44:00,0 +7066,1965-09-07 21:36:00,0 +1001,1967-09-13 00:00:00,0 +1468,1967-04-16 19:30:00,0 +1513,1967-12-09 21:28:00,0 +8583,1967-08-04 07:50:00,0 +5269,1969-12-24 16:36:00,0 +6511,1968-01-05 07:37:00,0 +3653,1966-03-27 06:46:00,0 +4871,1969-07-16 00:27:00,0 +5509,1969-03-19 13:11:00,0 +5061,1969-07-15 11:32:00,0 +3489,1966-08-11 20:25:00,0 +7551,1968-07-26 18:09:00,0 +9801,1967-08-29 14:01:00,0 +5745,1967-04-03 07:02:00,0 +8199,1966-03-01 05:08:00,0 +8977,1965-05-03 01:10:00,0 +6937,1967-07-15 04:38:00,0 +8193,1965-10-05 19:41:00,0 +2832,1966-09-08 14:47:00,0 +6369,1967-09-15 07:41:00,0 +7411,1967-11-30 17:57:00,0 +8597,1965-12-14 23:13:00,0 +9740,1965-12-21 20:19:00,0 +5406,1966-12-04 22:49:00,0 +1595,1966-04-12 04:14:00,0 +9131,1965-11-19 06:38:00,0 +5484,1967-03-16 23:17:00,0 +1296,1969-08-05 19:00:00,0 +9898,1968-12-16 16:11:00,0 +7299,1968-09-04 01:59:00,0 +6867,1968-05-05 07:06:00,0 +5100,1967-06-23 00:59:00,0 +1949,1969-03-19 05:40:00,0 +6205,1966-10-19 18:16:00,0 +4641,1966-06-05 11:29:00,0 +5094,1965-06-07 08:19:00,0 +5658,1966-11-23 00:51:00,0 +5029,1968-02-14 06:01:00,0 +1962,1967-07-10 12:50:00,0 +4607,1965-01-23 11:44:00,0 +6791,1967-09-24 02:29:00,0 +6871,1966-09-23 19:28:00,0 +9295,1967-04-01 15:36:00,0 +8177,1966-11-05 00:08:00,0 +8964,1969-12-28 14:29:00,0 +9564,1968-04-25 22:23:00,0 +5065,1966-11-21 06:54:00,0 +379,1969-10-17 22:18:00,0 +4072,1967-01-18 05:57:00,0 +9878,1968-01-16 09:59:00,0 +8583,1966-12-01 05:07:00,0 +1169,1968-01-26 22:53:00,0 +9548,1966-07-31 01:10:00,0 +973,1966-10-17 04:30:00,0 +7801,1969-04-07 10:21:00,0 +3068,1969-10-07 17:37:00,0 +2393,1968-10-22 04:13:00,0 +3867,1966-01-02 16:44:00,0 +1332,1969-07-01 12:46:00,0 +5624,1967-12-25 05:52:00,0 +4513,1967-08-27 22:25:00,0 +3907,1965-09-16 20:18:00,0 +6686,1968-12-01 01:04:00,0 +9009,1969-12-13 03:52:00,0 +6231,1969-07-17 21:57:00,0 +3448,1968-12-25 20:56:00,0 +191,1968-01-22 08:48:00,0 +6280,1965-10-12 21:47:00,0 +5488,1965-08-28 02:31:00,0 +6068,1969-01-24 19:04:00,0 +4159,1968-05-19 04:05:00,0 +1717,1967-04-03 08:03:00,0 +9142,1969-05-23 23:19:00,0 +3105,1967-07-01 14:33:00,0 +7717,1965-03-13 18:48:00,0 +8727,1967-07-05 11:41:00,0 +5911,1965-08-27 21:06:00,0 +7528,1967-06-01 23:48:00,0 +5493,1967-09-16 03:59:00,0 +7978,1965-05-29 09:54:00,0 +443,1965-01-03 05:39:00,0 +5180,1969-09-01 15:31:00,0 +5756,1966-04-27 03:23:00,0 +1776,1966-06-05 12:25:00,0 +473,1965-11-27 16:24:00,0 +4396,1969-07-06 17:33:00,0 +7661,1968-10-29 09:45:00,0 +2855,1966-07-19 22:35:00,0 +4838,1969-07-22 02:12:00,0 +7928,1969-06-22 11:06:00,0 +8581,1968-11-25 18:00:00,0 +270,1965-01-31 18:38:00,0 +2596,1968-02-15 23:09:00,0 +3343,1966-09-04 05:47:00,0 +7042,1969-08-13 05:39:00,0 +2046,1968-06-01 04:01:00,0 +4132,1966-05-23 11:13:00,0 +225,1966-05-13 06:19:00,0 +212,1966-02-13 03:34:00,0 +9953,1968-10-09 07:56:00,0 +8910,1969-10-28 02:07:00,0 +7964,1966-08-04 01:25:00,0 +9404,1969-08-01 19:24:00,0 +6352,1966-08-06 13:00:00,0 +8067,1967-01-19 01:52:00,0 +6758,1965-02-26 06:05:00,0 +3819,1966-03-15 22:48:00,0 +4065,1966-04-19 00:41:00,0 +8506,1966-06-23 08:36:00,0 +6110,1968-11-13 19:02:00,0 +8151,1968-12-06 07:35:00,0 +813,1966-02-20 00:07:00,0 +5415,1967-12-02 21:43:00,0 +570,1965-12-01 14:54:00,0 +2787,1968-05-08 11:10:00,0 +271,1967-09-20 03:46:00,0 +6195,1967-08-27 05:49:00,0 +9393,1969-01-09 21:33:00,0 +9859,1966-10-24 19:14:00,0 +672,1968-12-14 09:42:00,0 +4030,1968-06-07 19:34:00,0 +4827,1969-07-14 03:59:00,0 +1554,1967-04-19 09:11:00,0 +8162,1968-12-11 04:17:00,0 +9557,1968-09-29 16:46:00,0 +4173,1969-03-01 22:00:00,0 +790,1965-05-22 18:53:00,0 +5526,1965-12-29 01:47:00,0 +1524,1968-09-02 06:47:00,0 +2036,1965-03-22 20:22:00,0 +3834,1966-06-17 08:36:00,0 +6990,1967-04-14 21:27:00,0 +4965,1965-06-11 06:43:00,0 +434,1968-07-15 23:22:00,0 +7360,1968-03-09 02:11:00,0 +8382,1969-10-26 19:33:00,0 +5790,1966-06-18 15:13:00,0 +9184,1967-06-02 19:56:00,0 +7018,1968-03-11 05:48:00,0 +6743,1969-05-08 22:05:00,0 +8316,1969-01-20 19:17:00,0 +5527,1966-09-30 17:58:00,0 +6433,1966-05-19 23:55:00,0 +3929,1968-05-30 09:54:00,0 +4217,1966-08-27 23:04:00,0 +4202,1969-02-18 00:12:00,0 +2154,1967-03-28 02:47:00,0 +9406,1967-02-17 10:25:00,0 +7666,1968-01-03 23:29:00,0 +9770,1965-11-24 15:59:00,0 +3909,1969-11-21 17:14:00,0 +2920,1969-09-11 17:54:00,0 +4099,1968-01-26 09:49:00,0 +3073,1967-05-29 09:27:00,0 +4342,1966-11-22 00:02:00,0 +8409,1967-10-23 01:12:00,0 +1715,1968-06-20 22:36:00,0 +1401,1965-02-07 18:16:00,0 +584,1966-03-05 00:37:00,0 +9139,1966-05-12 12:55:00,0 +2798,1965-11-30 20:58:00,0 +4802,1969-12-20 08:25:00,0 +9408,1965-09-09 21:54:00,0 +7656,1969-07-24 14:36:00,0 +2660,1967-07-06 09:44:00,0 +5576,1968-02-17 23:52:00,0 +756,1969-10-16 04:51:00,0 +7948,1966-05-22 00:07:00,0 +7396,1967-09-01 03:56:00,0 +7240,1965-07-12 14:13:00,0 +2481,1966-04-26 14:25:00,0 +1114,1967-04-11 10:42:00,0 +7368,1965-01-08 16:28:00,0 +9954,1967-03-25 17:41:00,0 +3025,1969-05-25 21:18:00,0 +6204,1967-08-24 08:42:00,0 +6541,1965-06-26 22:31:00,0 +769,1965-02-20 15:19:00,0 +200,1968-04-26 12:27:00,0 +3875,1968-05-30 16:43:00,0 +6287,1969-01-30 18:41:00,0 +3970,1968-07-06 10:49:00,0 +5495,1969-07-15 10:57:00,0 +1003,1966-05-16 15:42:00,0 +257,1969-02-19 15:23:00,0 +3196,1968-08-24 10:04:00,0 +9064,1967-11-28 18:52:00,0 +5063,1967-02-01 00:15:00,0 +2982,1965-06-07 05:25:00,0 +2568,1968-09-20 06:43:00,0 +5968,1968-03-27 03:30:00,0 +1515,1966-09-16 09:03:00,0 +6125,1968-03-14 12:32:00,0 +6926,1965-02-05 18:25:00,0 +1318,1967-01-14 12:24:00,0 +7211,1967-10-26 00:03:00,0 +4884,1967-07-23 13:04:00,0 +8807,1967-03-12 19:38:00,0 +568,1967-05-24 15:42:00,0 +204,1968-03-29 10:12:00,0 +5792,1969-12-07 07:41:00,0 +6647,1965-03-25 23:18:00,0 +2545,1965-11-07 06:22:00,0 +1400,1967-07-01 15:29:00,0 +3932,1967-01-19 05:54:00,0 +6410,1966-07-13 15:19:00,0 +2435,1968-09-26 13:31:00,0 +9009,1968-12-14 04:05:00,0 +3141,1966-04-23 06:07:00,0 +9774,1966-07-01 00:13:00,0 +6197,1965-11-12 14:28:00,0 +7246,1968-09-27 04:13:00,0 +9169,1966-08-15 04:53:00,0 +8432,1967-05-25 08:20:00,0 +1619,1968-04-07 10:12:00,0 +9748,1968-10-20 08:57:00,0 +6632,1968-09-11 04:47:00,0 +6458,1967-05-31 10:37:00,0 +6960,1969-02-24 07:14:00,0 +7865,1968-08-20 17:44:00,0 +6701,1965-06-19 05:29:00,0 +4012,1969-04-12 04:25:00,0 +8045,1969-08-13 14:21:00,0 +4927,1969-09-04 06:38:00,0 +5658,1965-04-25 12:00:00,0 +3452,1967-08-03 04:07:00,0 +7846,1969-12-31 02:48:00,0 +8410,1967-07-16 19:59:00,0 +6829,1968-04-19 11:56:00,0 +714,1969-03-24 17:19:00,0 +1592,1965-09-26 04:25:00,0 +9035,1967-06-04 10:51:00,0 +8056,1966-01-02 12:33:00,0 +8814,1968-11-22 16:00:00,0 +1661,1967-08-05 13:38:00,0 +1163,1967-07-13 05:27:00,0 +9650,1969-09-13 14:40:00,0 +4889,1968-03-19 20:48:00,0 +5496,1969-09-10 14:06:00,0 +7695,1969-02-22 03:51:00,0 +6380,1965-09-03 15:41:00,0 +3056,1969-04-10 04:20:00,0 +5205,1966-05-20 20:29:00,0 +5831,1969-11-05 17:50:00,0 +1038,1967-06-26 00:00:00,0 +9956,1965-11-04 11:16:00,0 +7690,1968-02-07 21:32:00,0 +7913,1968-10-23 20:34:00,0 +6059,1969-02-28 06:05:00,0 +9225,1965-09-20 21:36:00,0 +9119,1967-11-21 07:32:00,0 +9120,1967-11-17 08:08:00,0 +6549,1969-07-16 06:54:00,0 +4954,1969-08-01 22:20:00,0 +3694,1965-09-30 03:24:00,0 +6157,1967-12-05 03:37:00,0 +2643,1967-01-23 22:45:00,0 +9924,1969-05-28 05:08:00,0 +5902,1965-10-11 12:03:00,0 +8143,1967-05-15 00:25:00,0 +4972,1969-04-19 22:23:00,0 +7118,1966-10-18 02:12:00,0 +812,1966-06-19 20:20:00,0 +7276,1967-03-20 22:03:00,0 +2187,1968-09-20 18:54:00,0 +162,1969-02-26 21:13:00,0 +6158,1967-12-16 04:26:00,0 +2501,1969-03-27 07:50:00,0 +895,1965-10-15 01:26:00,0 +9316,1968-11-15 08:13:00,0 +3189,1969-02-10 23:44:00,0 +8187,1967-01-19 04:40:00,0 +9658,1965-10-17 15:31:00,0 +7055,1968-12-19 22:40:00,0 +5723,1965-09-13 12:40:00,0 +1508,1968-05-14 22:40:00,0 +1788,1965-08-11 22:36:00,0 +5867,1965-11-25 17:19:00,0 +7983,1966-07-21 21:03:00,0 +4950,1965-05-17 02:40:00,0 +7150,1966-01-25 20:22:00,0 +65,1968-06-08 07:50:00,0 +8776,1965-11-21 02:55:00,0 +2633,1967-03-23 15:57:00,0 +1801,1969-09-01 15:09:00,0 +4645,1969-10-07 05:12:00,0 +7907,1968-04-06 17:42:00,0 +8436,1968-03-19 16:32:00,0 +8246,1965-06-17 03:46:00,0 +5190,1967-07-13 07:36:00,0 +1838,1965-08-01 04:11:00,0 +2378,1969-03-15 16:01:00,0 +575,1965-10-16 08:44:00,0 +7416,1966-02-01 02:01:00,0 +6552,1966-01-16 15:50:00,0 +7101,1967-11-06 22:14:00,0 +2650,1966-11-13 10:47:00,0 +5831,1966-08-04 05:46:00,0 +5960,1968-10-28 10:45:00,0 +2846,1966-02-03 20:38:00,0 +7636,1968-10-29 02:33:00,0 +7435,1965-02-28 01:58:00,0 +6593,1965-11-16 06:12:00,0 +4710,1966-01-08 05:21:00,0 +4150,1969-06-20 01:54:00,0 +3707,1969-09-12 15:20:00,0 +2792,1966-04-26 15:49:00,0 +3761,1965-08-27 10:16:00,0 +2030,1968-09-04 00:06:00,0 +4445,1969-06-09 19:47:00,0 +7314,1969-08-30 16:40:00,0 +602,1966-07-29 05:16:00,0 +1466,1966-12-09 17:13:00,0 +2823,1965-12-27 14:21:00,0 +4004,1966-06-08 06:11:00,0 +6170,1968-11-13 19:27:00,0 +2733,1968-12-13 14:29:00,0 +9847,1969-04-05 10:25:00,0 +507,1969-11-01 21:26:00,0 +8900,1967-02-23 08:11:00,0 +434,1969-04-07 00:07:00,0 +4299,1965-01-02 17:19:00,0 +671,1969-08-27 14:52:00,0 +1184,1967-02-27 17:12:00,0 +9257,1969-01-08 16:21:00,0 +8227,1968-06-09 20:55:00,0 +3231,1967-10-19 01:21:00,0 +2932,1966-11-05 06:46:00,0 +5268,1965-01-28 18:06:00,0 +1916,1967-11-17 23:35:00,0 +9506,1969-07-30 22:28:00,0 +4668,1965-11-23 05:51:00,0 +8485,1968-01-17 01:45:00,0 +3592,1966-10-20 21:28:00,0 +7987,1965-12-14 01:53:00,0 +6053,1967-07-29 21:47:00,0 +75,1966-11-02 04:15:00,0 +3844,1968-08-11 07:17:00,0 +4555,1969-06-02 08:54:00,0 +2645,1967-02-19 01:17:00,0 +1455,1965-06-29 07:03:00,0 +5693,1966-05-10 19:20:00,0 +2651,1966-05-26 14:23:00,0 +8884,1966-07-24 04:20:00,0 +357,1965-05-28 12:49:00,0 +2782,1965-11-07 14:41:00,0 +9727,1968-06-04 13:52:00,0 +8198,1967-12-30 20:16:00,0 +8518,1967-10-18 13:32:00,0 +2732,1967-09-29 07:39:00,0 +2358,1969-10-18 22:04:00,0 +7627,1966-02-21 19:25:00,0 +2127,1965-04-28 14:38:00,0 +3481,1967-12-28 14:24:00,0 +7822,1965-04-26 01:18:00,0 +462,1965-12-12 15:50:00,0 +2796,1966-03-26 14:30:00,0 +9856,1967-10-30 15:04:00,0 +2039,1965-09-07 15:02:00,0 +8944,1965-09-23 12:22:00,0 +3623,1965-09-23 02:17:00,0 +6009,1969-04-30 08:42:00,0 +8415,1967-10-20 03:03:00,0 +2684,1965-02-25 00:47:00,0 +5380,1965-11-22 16:57:00,0 +2493,1969-05-14 01:25:00,0 +1980,1966-06-12 03:48:00,0 +801,1969-08-18 01:15:00,0 +6233,1965-04-17 16:29:00,0 +465,1966-12-26 02:17:00,0 +4170,1968-06-12 09:10:00,0 +8163,1966-03-18 06:50:00,0 +4572,1967-04-26 15:11:00,0 +1873,1968-05-22 04:28:00,0 +8022,1969-04-11 17:52:00,0 +9303,1969-06-26 03:35:00,0 +8115,1965-04-07 19:08:00,0 +1784,1965-12-18 14:08:00,0 +8019,1965-08-24 05:14:00,0 +1861,1969-11-14 05:16:00,0 +300,1965-09-12 13:23:00,0 +668,1966-06-14 15:08:00,0 +1870,1965-06-15 07:20:00,0 +7789,1965-01-06 14:41:00,0 +857,1967-09-29 11:42:00,0 +1837,1967-10-11 21:25:00,0 +2277,1966-03-12 11:51:00,0 +8212,1968-02-22 08:12:00,0 +2345,1969-10-23 13:41:00,0 +7017,1966-05-03 18:43:00,0 +2266,1968-04-03 10:57:00,0 +229,1969-01-04 23:46:00,0 +4002,1967-12-06 08:59:00,0 +7183,1966-08-14 11:31:00,0 +6348,1969-09-24 23:39:00,0 +7694,1967-02-01 21:00:00,0 +5171,1965-12-02 10:23:00,0 +3107,1965-08-13 11:50:00,0 +6057,1969-09-27 15:25:00,0 +3316,1967-09-09 19:20:00,0 +4164,1969-02-08 12:18:00,0 +1293,1967-02-23 20:15:00,0 +5757,1968-09-20 11:21:00,0 +8869,1967-04-07 07:11:00,0 +4186,1965-11-24 04:48:00,0 +2412,1966-06-28 19:28:00,0 +8681,1967-07-21 13:19:00,0 +2995,1965-07-04 23:34:00,0 +9399,1969-02-19 12:12:00,0 +7186,1965-02-06 07:34:00,0 +8935,1967-05-18 15:09:00,0 +7363,1968-07-03 02:10:00,0 +5246,1968-05-30 06:20:00,0 +9984,1969-04-09 18:36:00,0 +3372,1965-09-07 02:15:00,0 +9827,1967-05-17 18:04:00,0 +4093,1969-10-12 01:47:00,0 +4983,1965-06-08 05:11:00,0 +3315,1968-01-08 08:12:00,0 +3721,1965-04-22 07:13:00,0 +9534,1969-09-21 07:08:00,0 +9979,1969-03-08 17:17:00,0 +9844,1968-08-09 01:22:00,0 +1747,1967-10-05 10:58:00,0 +9335,1967-07-27 11:18:00,0 +6840,1967-04-13 00:33:00,0 +1338,1968-02-22 18:42:00,0 +7371,1967-03-15 08:34:00,0 +191,1967-05-14 12:50:00,0 +6147,1966-03-28 04:01:00,0 +5441,1966-03-18 06:08:00,0 +7296,1968-09-09 12:09:00,0 +3321,1968-03-17 06:31:00,0 +2366,1965-09-15 10:24:00,0 +5490,1966-05-18 18:37:00,0 +3782,1967-10-03 04:28:00,0 +3870,1966-06-09 10:48:00,0 +831,1968-09-20 21:04:00,0 +834,1966-08-23 06:03:00,0 +1981,1966-12-17 06:40:00,0 +700,1969-08-10 05:35:00,0 +2594,1967-10-18 03:03:00,0 +5177,1968-01-02 21:58:00,0 +7918,1966-05-20 04:54:00,0 +1610,1965-10-27 06:43:00,0 +9387,1966-08-27 05:14:00,0 +7750,1966-06-20 03:33:00,0 +6002,1967-12-21 22:17:00,0 +9004,1965-03-03 07:01:00,0 +7000,1965-07-19 04:31:00,0 +3889,1969-09-19 07:00:00,0 +8815,1968-09-08 09:28:00,0 +6812,1966-01-18 19:14:00,0 +5491,1968-02-29 08:50:00,0 +9912,1967-11-04 14:33:00,0 +7018,1965-05-03 10:32:00,0 +4208,1968-01-14 10:17:00,0 +7766,1969-03-03 14:43:00,0 +5368,1969-09-03 19:10:00,0 +3472,1965-03-27 06:43:00,0 +4682,1969-04-09 19:33:00,0 +3943,1965-12-21 13:38:00,0 +2459,1968-08-21 10:55:00,0 +9135,1967-07-15 18:52:00,0 +9919,1966-06-19 07:26:00,0 +7967,1967-04-09 08:13:00,0 +4520,1965-07-21 02:33:00,0 +9147,1969-06-26 15:21:00,0 +9329,1967-04-10 08:06:00,0 +9614,1965-02-08 09:29:00,0 +5602,1965-10-03 20:28:00,0 +4414,1965-01-14 02:03:00,0 +5844,1968-06-21 09:45:00,0 +9414,1966-09-12 01:29:00,0 +1091,1967-04-02 23:57:00,0 +5171,1966-10-30 01:43:00,0 +271,1966-02-15 22:27:00,0 +1289,1967-08-08 06:44:00,0 +2520,1968-04-17 00:48:00,0 +6847,1967-11-25 08:20:00,0 +9082,1966-09-05 17:25:00,0 +9386,1966-05-17 09:48:00,0 +8839,1966-09-08 02:59:00,0 +201,1966-09-08 11:15:00,0 +588,1968-02-23 10:44:00,0 +7103,1965-12-31 14:22:00,0 +5553,1969-11-22 10:38:00,0 +1175,1968-08-18 07:57:00,0 +6778,1965-10-03 21:04:00,0 +5999,1967-11-01 04:16:00,0 +3664,1965-11-12 21:32:00,0 +5944,1967-01-27 00:12:00,0 +1570,1968-03-12 06:28:00,0 +5866,1965-09-06 04:05:00,0 +5210,1965-03-03 09:12:00,0 +8922,1968-09-24 08:33:00,0 +7240,1967-02-13 15:44:00,0 +9047,1968-11-21 00:14:00,0 +212,1968-07-16 14:55:00,0 +9765,1969-05-23 21:56:00,0 +8070,1968-03-29 03:42:00,0 +839,1969-05-06 10:22:00,0 +625,1967-06-07 20:56:00,0 +1358,1969-01-19 10:38:00,0 +117,1968-01-04 08:43:00,0 +1663,1967-11-22 21:06:00,0 +3964,1968-05-23 16:22:00,0 +9398,1965-02-26 01:13:00,0 +6470,1968-08-03 06:29:00,0 +685,1969-11-14 21:26:00,0 +1079,1969-01-08 00:47:00,0 +821,1968-11-02 05:45:00,0 +9472,1967-11-19 02:00:00,0 +6772,1967-05-14 18:39:00,0 +2688,1969-05-21 20:25:00,0 +3793,1966-06-28 00:23:00,0 +1612,1969-04-19 04:59:00,0 +4871,1968-03-07 09:37:00,0 +1410,1968-08-21 19:21:00,0 +8828,1968-05-19 08:23:00,0 +432,1968-07-24 12:55:00,0 +7082,1965-09-06 20:52:00,0 +6690,1965-03-26 07:07:00,0 +9240,1965-02-25 03:08:00,0 +2886,1965-04-20 12:15:00,0 +7957,1969-09-25 14:52:00,0 +7081,1969-04-15 05:20:00,0 +4407,1965-05-22 23:10:00,0 +6222,1967-05-14 19:12:00,0 +356,1966-05-06 15:15:00,0 +9391,1966-10-29 11:11:00,0 +521,1967-06-16 12:24:00,0 +441,1969-10-02 19:20:00,0 +924,1965-03-06 07:36:00,0 +4084,1967-10-25 18:31:00,0 +8572,1965-01-03 19:04:00,0 +4137,1968-08-09 20:33:00,0 +7300,1967-12-21 06:37:00,0 +9682,1966-04-17 18:54:00,0 +9651,1967-09-10 17:26:00,0 +5886,1965-05-26 15:26:00,0 +6906,1966-09-08 09:45:00,0 +8348,1966-06-23 04:03:00,0 +8730,1967-06-26 06:15:00,0 +6766,1966-03-05 08:39:00,0 +8658,1965-10-24 11:30:00,0 +3418,1966-08-31 17:33:00,0 +3921,1967-05-27 12:20:00,0 +5774,1965-05-06 15:59:00,0 +39,1965-09-22 22:56:00,0 +116,1967-07-03 08:29:00,0 +9786,1969-04-20 19:07:00,0 +8197,1966-02-06 22:31:00,0 +1084,1967-07-05 23:31:00,0 +5780,1966-06-09 14:58:00,0 +929,1968-09-24 11:07:00,0 +2381,1966-04-01 15:03:00,0 +6566,1968-08-27 03:34:00,0 +5406,1965-01-04 06:34:00,0 +682,1965-09-03 04:26:00,0 +6422,1969-02-11 23:47:00,0 +2598,1968-10-24 06:29:00,0 +2346,1967-06-29 14:17:00,0 +9565,1967-04-01 19:18:00,0 +7133,1968-01-15 04:23:00,0 +5641,1965-06-24 10:50:00,0 +9775,1968-11-17 09:55:00,0 +1810,1968-04-26 23:12:00,0 +970,1967-01-28 20:29:00,0 +4240,1967-09-17 22:08:00,0 +7061,1969-07-21 21:09:00,0 +6781,1968-10-30 22:01:00,0 +7961,1966-01-11 04:39:00,0 +5013,1968-11-19 17:06:00,0 +5238,1967-03-30 14:20:00,0 +4350,1965-03-18 03:54:00,0 +5895,1966-04-07 08:01:00,0 +6543,1966-12-11 06:53:00,0 +6535,1968-07-18 05:52:00,0 +9858,1969-03-03 11:46:00,0 +3300,1969-01-05 22:42:00,0 +4523,1969-08-11 06:10:00,0 +7657,1965-04-19 19:13:00,0 +127,1966-05-09 07:14:00,0 +4611,1968-12-28 00:18:00,0 +7316,1967-08-17 05:16:00,0 +6146,1966-11-08 21:49:00,0 +3425,1965-06-03 06:18:00,0 +2114,1966-10-14 02:12:00,0 +3089,1968-11-17 16:00:00,0 +1604,1969-11-02 23:22:00,0 +6899,1969-08-09 20:13:00,0 +9301,1968-07-14 05:58:00,0 +9957,1968-07-17 02:21:00,0 +7458,1968-04-15 08:07:00,0 +7528,1969-07-12 23:02:00,0 +8517,1968-01-01 00:04:00,0 +3342,1965-05-13 01:43:00,0 +3076,1968-01-26 08:56:00,0 +1954,1966-09-30 00:03:00,0 +5337,1965-08-26 05:10:00,0 +9670,1966-05-27 00:45:00,0 +8786,1967-12-06 21:27:00,0 +2054,1967-11-04 09:53:00,0 +6532,1969-06-14 21:01:00,0 +7846,1966-04-12 21:46:00,0 +7130,1966-03-18 02:25:00,0 +6761,1969-01-16 00:20:00,0 +5494,1966-08-21 19:39:00,0 +2125,1968-11-29 13:36:00,0 +52,1967-11-01 03:50:00,0 +3760,1965-05-25 05:29:00,0 +890,1967-08-05 04:58:00,0 +4779,1967-11-21 06:45:00,0 +1502,1968-01-04 14:58:00,0 +6755,1967-11-30 15:38:00,0 +2379,1966-06-06 15:31:00,0 +2190,1967-02-07 12:33:00,0 +262,1966-01-22 11:50:00,0 +8587,1968-09-22 00:38:00,0 +6322,1966-06-11 15:50:00,0 +5838,1965-02-14 13:55:00,0 +7315,1968-08-19 09:34:00,0 +9378,1967-05-25 09:38:00,0 +9972,1965-11-26 23:12:00,0 +9743,1965-02-11 17:04:00,0 +6988,1966-10-18 21:29:00,0 +0,1969-02-11 20:38:00,0 +2909,1965-04-29 18:21:00,0 +5591,1968-12-11 00:08:00,0 +7066,1966-08-17 07:28:00,0 +8455,1966-10-22 21:41:00,0 +5627,1968-10-09 05:26:00,0 +5528,1967-06-13 13:41:00,0 +1831,1968-11-26 04:35:00,0 +8309,1967-06-06 21:50:00,0 +8581,1969-10-31 01:26:00,0 +3619,1965-06-17 05:23:00,0 +8663,1969-10-17 11:30:00,0 +4255,1968-11-30 13:37:00,0 +3860,1969-08-12 19:21:00,0 +7524,1965-05-12 10:57:00,0 +3200,1969-03-31 07:32:00,0 +4995,1966-11-12 00:14:00,0 +4478,1969-10-13 16:34:00,0 +5811,1968-05-28 14:23:00,0 +1907,1966-07-04 09:20:00,0 +6176,1966-02-09 04:13:00,0 +4537,1969-08-24 20:26:00,0 +8828,1966-10-10 11:24:00,0 +6808,1968-12-06 11:14:00,0 +6880,1967-04-11 12:58:00,0 +5671,1967-09-15 08:00:00,0 +767,1969-08-31 21:00:00,0 +6435,1968-05-30 03:36:00,0 +6776,1966-10-03 10:06:00,0 +8645,1969-04-15 02:59:00,0 +4034,1967-12-26 11:21:00,0 +9846,1969-08-31 22:46:00,0 +7989,1968-08-12 00:21:00,0 +6326,1967-03-29 21:05:00,0 +7266,1966-06-19 11:26:00,0 +2596,1967-03-17 03:19:00,0 +3266,1968-07-10 16:02:00,0 +4059,1965-10-10 16:16:00,0 +7964,1966-09-26 18:10:00,0 +5469,1966-05-25 14:45:00,0 +9675,1967-11-14 20:06:00,0 +1389,1968-08-30 23:19:00,0 +390,1966-11-19 22:24:00,0 +5590,1968-04-29 08:58:00,0 +9512,1967-09-25 15:53:00,0 +6442,1965-11-08 09:23:00,0 +7485,1968-10-24 22:58:00,0 +1499,1965-06-04 01:24:00,0 +7016,1968-06-20 10:55:00,0 +1301,1965-05-24 03:39:00,0 +4147,1967-09-21 18:18:00,0 +50,1965-12-27 23:52:00,0 +755,1967-11-03 20:03:00,0 +4665,1967-03-04 14:22:00,0 +3144,1965-02-19 02:49:00,0 +789,1965-10-15 15:19:00,0 +6774,1966-03-26 00:29:00,0 +7937,1966-02-22 03:33:00,0 +3079,1965-06-25 04:46:00,0 +9296,1969-10-28 11:05:00,0 +8938,1965-07-08 14:12:00,0 +4112,1967-12-06 22:28:00,0 +7624,1968-08-23 04:07:00,0 +6322,1969-06-13 18:42:00,0 +4130,1967-06-23 06:52:00,0 +8780,1967-11-20 09:45:00,0 +3076,1966-12-17 06:00:00,0 +278,1966-06-26 16:57:00,0 +7599,1967-01-02 22:18:00,0 +2786,1969-01-22 11:30:00,0 +2601,1967-11-06 12:07:00,0 +9405,1969-10-10 13:48:00,0 +7940,1965-07-15 11:27:00,0 +2269,1967-09-03 18:20:00,0 +6725,1969-07-17 02:50:00,0 +6142,1968-07-21 09:00:00,0 +9480,1968-12-10 14:16:00,0 +3581,1966-07-31 08:50:00,0 +3450,1968-12-20 15:47:00,0 +1176,1968-09-04 13:34:00,0 +3641,1967-01-19 16:20:00,0 +4337,1966-01-19 08:03:00,0 +5279,1969-06-11 20:55:00,0 +9761,1969-11-02 02:29:00,0 +9297,1967-02-19 16:56:00,0 +5487,1968-07-17 13:33:00,0 +323,1968-12-15 09:32:00,0 +4366,1968-08-08 19:25:00,0 +9729,1968-01-25 23:35:00,0 +201,1967-12-27 19:44:00,0 +3016,1966-01-08 16:39:00,0 +4228,1966-07-14 15:35:00,0 +6933,1968-08-02 02:40:00,0 +4056,1969-01-30 05:53:00,0 +990,1966-02-03 00:55:00,0 +2957,1969-11-06 16:09:00,0 +7202,1966-11-17 11:30:00,0 +3768,1965-03-05 02:38:00,0 +2182,1967-05-27 05:37:00,0 +4639,1968-10-29 02:19:00,0 +2106,1968-03-30 19:31:00,0 +1468,1969-04-13 06:30:00,0 +5790,1969-11-23 14:48:00,0 +6820,1965-09-04 17:56:00,0 +9224,1967-07-26 07:24:00,0 +8332,1969-02-12 07:38:00,0 +6125,1965-10-13 12:09:00,0 +4035,1967-04-10 20:53:00,0 +8993,1967-05-26 15:35:00,0 +7068,1968-06-13 16:23:00,0 +6302,1965-03-26 12:55:00,0 +558,1968-06-26 02:24:00,0 +84,1967-06-28 13:46:00,0 +4841,1965-05-18 04:16:00,0 +793,1969-12-01 12:54:00,0 +1678,1966-01-17 02:14:00,0 +6982,1965-08-09 10:00:00,0 +2710,1968-11-10 13:28:00,0 +1907,1966-12-22 09:51:00,0 +7599,1969-11-13 04:22:00,0 +4317,1968-08-07 15:43:00,0 +5822,1967-11-24 06:03:00,0 +7956,1967-12-14 22:39:00,0 +1695,1969-04-16 09:46:00,0 +4841,1965-01-24 18:17:00,0 +3708,1968-12-31 20:58:00,0 +9481,1967-06-15 01:47:00,0 +9172,1967-10-25 00:46:00,0 +1364,1969-08-01 02:53:00,0 +2941,1967-08-20 14:23:00,0 +2741,1965-11-09 23:45:00,0 +2116,1965-11-18 07:56:00,0 +8288,1966-03-04 07:06:00,0 +5147,1967-02-18 14:29:00,0 +1815,1965-09-19 03:02:00,0 +8718,1965-11-05 08:31:00,0 +9701,1968-03-19 23:51:00,0 +4811,1967-08-27 08:27:00,0 +141,1967-09-21 08:18:00,0 +9244,1965-10-30 14:16:00,0 +8649,1966-05-23 13:27:00,0 +6440,1966-04-25 17:43:00,0 +5586,1965-02-20 20:26:00,0 +1909,1967-02-07 11:21:00,0 +4530,1965-07-22 06:33:00,0 +545,1969-09-18 07:23:00,0 +3447,1969-07-29 14:20:00,0 +3834,1968-08-27 15:29:00,0 +940,1967-07-01 22:35:00,0 +8275,1968-01-20 08:05:00,0 +6676,1968-08-24 13:07:00,0 +6376,1968-02-20 06:22:00,0 +6044,1969-05-27 11:44:00,0 +8420,1969-11-17 11:52:00,0 +4527,1966-11-15 00:52:00,0 +12,1969-12-31 22:38:00,0 +3735,1968-04-21 12:00:00,0 +5539,1965-01-08 06:05:00,0 +5135,1968-04-25 21:21:00,0 +6090,1967-08-02 13:29:00,0 +1315,1965-07-11 00:28:00,0 +7894,1969-05-26 11:16:00,0 +1502,1967-11-19 06:56:00,0 +8292,1969-10-06 03:19:00,0 +8635,1965-02-16 14:02:00,0 +2175,1966-02-27 22:56:00,0 +6489,1966-03-07 02:52:00,0 +7489,1967-04-27 10:46:00,0 +1304,1965-08-11 04:51:00,0 +413,1968-02-07 19:30:00,0 +8527,1966-03-26 09:38:00,0 +9749,1968-11-28 05:25:00,0 +2230,1966-03-19 09:03:00,0 +2457,1969-09-13 08:33:00,0 +9803,1967-04-26 18:52:00,0 +9661,1965-05-03 09:50:00,0 +2776,1967-09-16 09:30:00,0 +6950,1969-05-25 00:09:00,0 +5426,1966-05-17 17:52:00,0 +9134,1969-12-19 06:06:00,0 +3881,1968-03-11 20:34:00,0 +5265,1967-12-06 05:46:00,0 +6300,1967-08-10 07:11:00,0 +5270,1965-04-25 05:57:00,0 +3584,1966-05-09 06:15:00,0 +1646,1966-09-30 07:18:00,0 +9593,1965-04-22 10:45:00,0 +7551,1969-10-27 13:45:00,0 +6326,1965-11-24 03:43:00,0 +3705,1965-01-02 18:15:00,0 +5480,1965-09-02 08:28:00,0 +7882,1967-10-10 15:14:00,0 +2629,1967-12-27 06:51:00,0 +1530,1965-03-15 16:27:00,0 +4982,1966-07-19 13:47:00,0 +6554,1965-12-27 03:08:00,0 +7383,1969-08-17 18:06:00,0 +8319,1969-06-08 15:47:00,0 +1357,1968-09-21 16:20:00,0 +252,1968-10-11 08:57:00,0 +1430,1965-06-02 06:19:00,0 +5613,1966-05-23 07:49:00,0 +1105,1968-08-10 23:34:00,0 +9268,1969-10-12 05:01:00,0 +9614,1966-08-17 14:28:00,0 +8671,1968-02-14 23:03:00,0 +6834,1968-10-11 10:10:00,0 +6554,1969-05-03 07:19:00,0 +8730,1965-05-08 07:06:00,0 +1303,1966-11-28 03:54:00,0 +9156,1965-12-28 18:29:00,0 +5617,1966-01-20 15:04:00,0 +7653,1965-05-11 10:00:00,0 +6806,1967-11-21 14:02:00,0 +92,1967-10-04 15:11:00,0 +4910,1968-03-04 11:07:00,0 +2406,1967-02-17 04:59:00,0 +9078,1965-03-20 22:57:00,0 +2896,1968-12-19 17:11:00,0 +9092,1968-02-11 04:19:00,0 +6161,1968-04-25 02:10:00,0 +2938,1967-03-29 20:56:00,0 +5535,1967-05-01 11:35:00,0 +8273,1966-06-11 03:32:00,0 +1856,1966-09-07 10:10:00,0 +1294,1965-05-23 09:56:00,0 +5171,1969-04-27 12:30:00,0 +1485,1965-03-01 00:25:00,0 +9602,1968-12-19 10:30:00,0 +4799,1968-12-10 17:07:00,0 +8168,1968-03-12 13:11:00,0 +1437,1968-09-14 05:33:00,0 +2972,1965-06-24 20:12:00,0 +2554,1966-08-10 08:11:00,0 +3461,1969-07-02 21:12:00,0 +8932,1968-12-26 11:16:00,0 +3236,1965-08-15 13:29:00,0 +5492,1966-12-05 21:24:00,0 +1164,1967-02-16 06:24:00,0 +4430,1967-11-26 02:09:00,0 +2608,1967-06-13 10:04:00,0 +6407,1965-02-11 18:25:00,0 +8582,1969-06-03 02:06:00,0 +3322,1966-05-09 01:27:00,0 +5768,1968-08-05 12:28:00,0 +983,1969-05-20 20:23:00,0 +4432,1969-04-13 04:35:00,0 +9366,1966-05-06 23:30:00,0 +9600,1965-01-24 14:11:00,0 +7174,1967-12-24 17:08:00,0 +3242,1966-05-01 10:18:00,0 +655,1967-04-30 21:14:00,0 +6288,1968-12-24 14:08:00,0 +3567,1966-03-06 03:40:00,0 +5746,1965-02-17 10:49:00,0 +4618,1969-01-23 01:50:00,0 +1270,1968-02-21 20:30:00,0 +1617,1966-06-05 21:06:00,0 +7610,1969-08-04 12:25:00,0 +2197,1967-10-30 10:51:00,0 +7057,1967-06-22 09:18:00,0 +1722,1968-03-21 16:21:00,0 +5230,1965-08-28 06:00:00,0 +4346,1966-05-11 11:42:00,0 +6200,1969-01-27 04:20:00,0 +6130,1967-09-21 17:13:00,0 +9619,1968-09-19 06:52:00,0 +6921,1966-01-19 11:57:00,0 +9262,1966-06-26 13:13:00,0 +1387,1968-02-10 18:49:00,0 +4928,1967-03-28 07:25:00,0 +387,1966-05-13 12:15:00,0 +3649,1967-12-11 13:06:00,0 +4682,1968-11-02 14:43:00,0 +2388,1967-12-02 15:18:00,0 +6339,1966-12-05 08:02:00,0 +8242,1966-01-21 07:44:00,0 +9579,1967-12-20 18:29:00,0 +5994,1968-02-23 22:00:00,0 +730,1968-09-18 09:49:00,0 +20,1968-07-13 19:21:00,0 +9060,1965-09-05 20:40:00,0 +8147,1965-12-15 11:50:00,0 +1732,1968-03-29 06:10:00,0 +2168,1969-07-24 04:12:00,0 +9500,1968-05-07 18:13:00,0 +6673,1968-10-24 12:10:00,0 +1754,1966-08-06 06:07:00,0 +5528,1967-01-22 19:02:00,0 +2804,1968-02-10 16:32:00,0 +8404,1968-12-31 03:59:00,0 +4703,1968-01-22 09:04:00,0 +5371,1967-06-16 05:14:00,0 +898,1966-12-05 04:09:00,0 +1577,1966-10-26 23:22:00,0 +2669,1966-12-22 19:48:00,0 +1633,1965-03-20 09:33:00,0 +6900,1969-06-26 11:42:00,0 +3505,1968-09-16 12:52:00,0 +2697,1965-09-11 10:28:00,0 +7419,1967-06-10 08:41:00,0 +8726,1969-02-28 05:06:00,0 +6689,1966-09-29 11:24:00,0 +4683,1969-12-31 21:26:00,0 +3038,1967-09-30 04:40:00,0 +6460,1965-10-24 01:54:00,0 +3513,1968-05-29 16:12:00,0 +8062,1965-05-14 10:10:00,0 +4891,1965-07-14 18:55:00,0 +4469,1969-02-11 06:14:00,0 +9889,1968-02-02 10:19:00,0 +8873,1966-07-26 14:57:00,0 +4340,1968-03-18 16:58:00,0 +7213,1966-12-09 02:49:00,0 +7027,1968-11-03 22:50:00,0 +715,1967-03-28 00:44:00,0 +8228,1967-08-19 01:05:00,0 +6977,1969-01-18 10:22:00,0 +9616,1967-04-07 00:48:00,0 +5618,1966-04-12 10:14:00,0 +1257,1965-11-03 13:14:00,0 +4879,1966-06-03 08:31:00,0 +3215,1967-09-04 09:55:00,0 +8673,1966-05-04 10:56:00,0 +4694,1969-09-03 09:45:00,0 +7935,1966-06-06 16:04:00,0 +5970,1966-10-30 07:58:00,0 +6976,1966-12-14 17:46:00,0 +9097,1965-10-11 06:46:00,0 +3273,1966-02-14 16:43:00,0 +808,1969-01-23 13:53:00,0 +5066,1967-07-26 10:47:00,0 +1256,1968-12-19 08:42:00,0 +8528,1965-04-18 01:06:00,0 +2537,1967-12-18 11:51:00,0 +9627,1968-06-17 12:38:00,0 +4278,1966-06-22 22:17:00,0 +8472,1968-12-23 09:10:00,0 +9569,1967-03-17 18:49:00,0 +5688,1968-05-03 11:32:00,0 +7282,1966-07-17 18:45:00,0 +1209,1965-08-27 21:02:00,0 +1112,1966-08-19 14:12:00,0 +7197,1966-09-07 13:19:00,0 +5635,1965-09-12 00:29:00,0 +1605,1965-08-10 18:54:00,0 +6292,1968-01-12 12:16:00,0 +6359,1965-09-04 23:05:00,0 +7322,1967-06-26 06:08:00,0 +2179,1969-06-25 20:12:00,0 +2831,1969-10-27 11:47:00,0 +5671,1965-03-17 10:29:00,0 +9589,1965-06-12 08:58:00,0 +4304,1969-06-27 14:10:00,0 +2945,1969-05-13 08:42:00,0 +357,1966-08-22 02:06:00,0 +8899,1969-10-04 03:18:00,0 +8427,1968-10-05 00:31:00,0 +8068,1965-04-30 03:13:00,0 +4836,1966-02-17 03:22:00,0 +5614,1965-08-22 13:38:00,0 +9171,1967-01-22 09:21:00,0 +2692,1968-10-03 17:41:00,0 +3657,1966-05-16 20:08:00,0 +8430,1968-06-11 06:14:00,0 +3713,1969-09-29 03:06:00,0 +8933,1967-12-18 06:28:00,0 +8198,1966-05-05 05:35:00,0 +4461,1967-09-14 18:46:00,0 +1796,1968-02-04 15:54:00,0 +9192,1965-11-16 05:14:00,0 +5014,1968-06-23 17:44:00,0 +2405,1969-01-08 17:54:00,0 +5454,1969-10-02 23:19:00,0 +6426,1967-06-12 10:54:00,0 +4968,1968-11-15 17:38:00,0 +630,1969-04-08 07:20:00,0 +3426,1965-12-12 10:25:00,0 +6935,1966-11-18 10:27:00,0 +1671,1967-04-23 19:13:00,0 +3545,1966-08-23 18:45:00,0 +7052,1966-11-13 02:28:00,0 +8538,1965-10-01 07:06:00,0 +3610,1967-04-11 13:53:00,0 +6347,1965-05-26 06:56:00,0 +1231,1965-07-03 09:02:00,0 +8687,1968-07-20 01:44:00,0 +2175,1969-06-19 15:37:00,0 +5351,1967-12-12 07:08:00,0 +6577,1968-06-11 05:32:00,0 +4203,1969-09-03 12:12:00,0 +5545,1968-02-12 11:47:00,0 +947,1967-03-22 02:21:00,0 +9413,1965-04-26 11:42:00,0 +4589,1969-02-26 18:41:00,0 +5160,1967-02-01 06:07:00,0 +3288,1965-01-17 00:08:00,0 +8474,1966-09-25 09:08:00,0 +242,1969-12-24 20:21:00,0 +1345,1968-01-16 03:26:00,0 +3181,1965-10-08 03:39:00,0 +7234,1969-11-23 10:03:00,0 +4245,1965-04-19 16:01:00,0 +9023,1966-06-23 12:54:00,0 +3719,1969-12-21 03:29:00,0 +9247,1969-06-12 13:31:00,0 +3022,1965-01-10 19:24:00,0 +4051,1965-11-19 00:56:00,0 +1263,1968-08-10 22:06:00,0 +5735,1965-07-24 04:07:00,0 +1392,1966-07-16 02:27:00,0 +4704,1965-01-21 13:29:00,0 +3204,1969-07-13 00:23:00,0 +8397,1965-10-22 23:11:00,0 +799,1966-03-09 08:59:00,0 +3000,1966-08-01 11:08:00,0 +725,1968-08-08 05:47:00,0 +6129,1967-10-02 03:29:00,0 +4085,1967-10-12 01:05:00,0 +8645,1969-03-13 11:45:00,0 +8859,1968-12-11 22:24:00,0 +7113,1967-07-07 23:14:00,0 +4692,1966-12-29 02:13:00,0 +3208,1966-08-06 08:45:00,0 +2552,1967-04-05 23:00:00,0 +9870,1968-01-17 12:53:00,0 +166,1967-09-12 09:25:00,0 +6890,1965-11-28 07:25:00,0 +6496,1966-06-06 10:21:00,0 +1653,1969-12-27 02:14:00,0 +6504,1968-10-18 19:27:00,0 +6386,1965-09-22 22:17:00,0 +7565,1965-09-09 01:59:00,0 +2765,1966-02-23 17:07:00,0 +4851,1968-01-24 00:36:00,0 +9277,1965-09-01 19:30:00,0 +3554,1968-05-20 09:01:00,0 +5325,1967-02-09 03:59:00,0 +270,1966-04-12 21:52:00,0 +1094,1965-12-14 16:08:00,0 +2617,1968-06-21 00:24:00,0 +8290,1968-04-26 19:17:00,0 +2532,1969-01-14 22:35:00,0 +8828,1969-08-04 13:04:00,0 +9004,1965-06-01 08:00:00,0 +5867,1969-04-20 00:44:00,0 +8397,1965-07-17 23:57:00,0 +306,1967-09-23 17:10:00,0 +399,1968-08-11 16:26:00,0 +2577,1969-06-04 12:17:00,0 +9638,1966-08-10 00:30:00,0 +4662,1967-07-24 00:46:00,0 +8352,1969-03-22 01:21:00,0 +72,1969-02-07 14:47:00,0 +7947,1969-04-17 04:13:00,0 +5377,1968-11-14 20:41:00,0 +9152,1966-01-23 02:53:00,0 +7755,1968-07-14 12:21:00,0 +7653,1967-12-12 05:08:00,0 +8505,1966-06-27 05:15:00,0 +3538,1966-10-08 15:15:00,0 +8456,1968-10-13 10:53:00,0 +1518,1967-06-01 20:36:00,0 +111,1966-08-31 21:03:00,0 +8112,1965-06-04 14:16:00,0 +5736,1969-03-13 22:25:00,0 +3403,1967-07-08 14:07:00,0 +2927,1967-09-28 23:31:00,0 +1237,1968-02-20 05:18:00,0 +1687,1969-05-30 14:41:00,0 +6167,1968-12-09 13:02:00,0 +3917,1966-07-24 19:47:00,0 +4705,1965-04-10 04:55:00,0 +2848,1967-03-01 03:52:00,0 +7876,1968-02-25 16:37:00,0 +3630,1966-09-02 01:02:00,0 +6394,1965-01-23 15:55:00,0 +646,1968-07-23 22:27:00,0 +999,1969-03-06 15:20:00,0 +851,1966-12-16 09:32:00,0 +6142,1968-09-15 15:35:00,0 +3046,1967-01-18 21:24:00,0 +8586,1966-04-01 09:18:00,0 +5923,1967-02-19 13:03:00,0 +1254,1969-06-28 05:54:00,0 +2482,1967-10-12 10:53:00,0 +5124,1965-12-06 03:02:00,0 +7306,1965-12-27 18:40:00,0 +4874,1966-10-06 14:16:00,0 +4988,1967-04-09 11:43:00,0 +4330,1965-09-17 04:00:00,0 +2202,1965-10-11 18:09:00,0 +6919,1968-12-22 13:36:00,0 +5590,1968-04-17 11:50:00,0 +2269,1966-04-10 00:48:00,0 +8881,1968-09-07 19:13:00,0 +3756,1966-09-25 14:23:00,0 +5608,1969-08-30 05:04:00,0 +1584,1968-12-21 03:00:00,0 +8830,1966-07-22 05:09:00,0 +383,1968-08-18 10:09:00,0 +3048,1965-07-25 02:07:00,0 +3947,1968-03-05 10:28:00,0 +5737,1967-03-28 13:57:00,0 +460,1968-05-04 05:28:00,0 +9153,1969-12-10 18:38:00,0 +397,1965-04-23 10:33:00,0 +1086,1965-10-07 01:29:00,0 +2797,1968-04-27 18:16:00,0 +7274,1969-08-02 08:22:00,0 +9446,1967-06-19 02:30:00,0 +5906,1969-10-26 11:32:00,0 +2832,1965-10-25 17:58:00,0 +8557,1968-10-16 23:03:00,0 +1749,1967-07-19 06:03:00,0 +5582,1968-05-31 04:09:00,0 +4308,1965-08-11 17:52:00,0 +8145,1969-06-14 19:52:00,0 +6240,1969-09-11 19:36:00,0 +7183,1967-08-01 07:23:00,0 +2695,1965-08-28 17:38:00,0 +149,1965-01-30 04:29:00,0 +4771,1968-07-31 07:15:00,0 +2466,1967-04-14 07:55:00,0 +8348,1965-02-28 22:59:00,0 +6539,1969-05-09 11:20:00,0 +2741,1965-12-29 03:54:00,0 +6856,1966-05-29 13:25:00,0 +6561,1965-09-21 07:45:00,0 +7512,1967-01-11 10:09:00,0 +3324,1968-04-24 04:45:00,0 +4323,1969-08-21 01:27:00,0 +666,1968-07-08 14:44:00,0 +7848,1966-08-14 08:02:00,0 +3523,1969-05-31 02:45:00,0 +785,1967-09-28 00:20:00,0 +2295,1969-10-24 07:40:00,0 +3124,1969-09-20 10:13:00,0 +1854,1966-08-08 03:49:00,0 +536,1965-09-04 07:42:00,0 +6916,1966-07-07 20:29:00,0 +8324,1968-01-09 17:41:00,0 +1626,1966-08-19 02:44:00,0 +7133,1967-06-12 08:54:00,0 +7646,1965-06-22 13:50:00,0 +8127,1968-08-11 19:28:00,0 +4402,1967-01-28 20:18:00,0 +6308,1969-11-03 13:29:00,0 +8189,1965-12-09 07:26:00,0 +5129,1965-04-10 19:37:00,0 +1369,1967-09-18 19:05:00,0 +2519,1965-12-14 06:25:00,0 +6031,1969-09-17 21:36:00,0 +5940,1968-04-05 13:07:00,0 +878,1968-09-14 19:56:00,0 +4514,1965-12-31 20:13:00,0 +7918,1968-03-28 15:09:00,0 +1620,1966-12-26 16:42:00,0 +2306,1966-09-03 18:34:00,0 +1645,1965-08-16 22:48:00,0 +6019,1966-11-26 18:23:00,0 +2400,1965-04-11 23:15:00,0 +3073,1967-08-14 20:14:00,0 +5236,1967-03-02 20:23:00,0 +611,1967-05-28 09:24:00,0 +400,1967-01-08 06:14:00,0 +6563,1969-10-23 00:18:00,0 +6642,1967-05-14 19:07:00,0 +5830,1965-03-01 11:50:00,0 +9773,1966-02-01 22:46:00,0 +7729,1967-11-18 15:32:00,0 +8679,1967-08-05 00:51:00,0 +8479,1968-10-26 21:53:00,0 +9683,1967-01-07 22:59:00,0 +5340,1966-08-02 23:56:00,0 +9944,1967-01-18 15:03:00,0 +4212,1969-01-03 13:49:00,0 +7188,1965-04-04 19:10:00,0 +9125,1968-02-19 08:08:00,0 +4302,1966-09-11 15:50:00,0 +2893,1965-09-11 20:03:00,0 +2483,1967-01-05 16:24:00,0 +2403,1967-12-02 06:08:00,0 +857,1966-03-01 06:11:00,0 +5814,1966-12-18 03:18:00,0 +2967,1966-02-14 05:49:00,0 +7712,1966-06-14 01:19:00,0 +6963,1967-04-08 02:00:00,0 +7745,1966-04-13 10:11:00,0 +1788,1966-04-01 21:44:00,0 +2600,1968-04-14 07:34:00,0 +9310,1969-07-30 10:23:00,0 +1971,1965-09-11 21:04:00,0 +4745,1967-09-30 07:49:00,0 +6021,1969-02-20 00:29:00,0 +8484,1965-04-04 04:45:00,0 +9946,1965-04-04 20:10:00,0 +5753,1967-09-09 12:00:00,0 +9625,1965-09-29 14:39:00,0 +6049,1968-04-03 16:43:00,0 +8482,1969-07-24 03:49:00,0 +4109,1965-10-07 17:11:00,0 +7764,1969-06-08 19:15:00,0 +8781,1968-02-21 10:34:00,0 +9477,1969-05-05 19:46:00,0 +341,1969-06-14 20:26:00,0 +7586,1969-09-07 04:13:00,0 +3066,1969-01-12 06:46:00,0 +8956,1965-09-17 00:49:00,0 +2649,1967-02-04 18:45:00,0 +7162,1968-08-09 12:10:00,0 +1786,1968-11-28 03:14:00,0 +4538,1968-02-05 13:43:00,0 +3376,1965-12-20 14:15:00,0 +4613,1967-02-27 13:48:00,0 +5498,1966-12-22 10:23:00,0 +6409,1965-08-20 18:06:00,0 +4334,1967-07-27 18:26:00,0 +1983,1965-05-03 05:43:00,0 +3756,1968-07-21 21:04:00,0 +9482,1969-06-17 22:32:00,0 +1476,1969-10-30 15:48:00,0 +6665,1968-04-04 12:01:00,0 +6271,1965-12-06 16:17:00,0 +5084,1969-05-10 09:50:00,0 +9033,1966-01-17 16:24:00,0 +533,1967-09-04 09:17:00,0 +52,1965-04-01 00:40:00,0 +328,1967-08-06 10:14:00,0 +8700,1968-05-27 16:49:00,0 +7692,1965-08-11 07:23:00,0 +7111,1967-11-08 09:55:00,0 +5334,1967-03-11 20:39:00,0 +9742,1966-04-11 17:55:00,0 +2642,1965-07-26 10:51:00,0 +4873,1966-02-15 12:29:00,0 +2149,1969-06-14 06:04:00,0 +1857,1966-08-16 04:31:00,0 +6553,1965-09-08 10:24:00,0 +2305,1968-03-30 10:27:00,0 +7093,1967-05-29 01:18:00,0 +4916,1966-09-21 23:42:00,0 +7589,1966-04-21 22:30:00,0 +9489,1965-08-05 23:25:00,0 +2755,1969-12-18 02:23:00,0 +3207,1969-01-08 06:44:00,0 +4845,1969-10-22 14:21:00,0 +7478,1965-04-30 02:03:00,0 +7114,1965-10-23 18:40:00,0 +7733,1969-11-30 15:45:00,0 +6841,1968-10-08 18:21:00,0 +6986,1969-01-29 16:16:00,0 +2899,1965-02-15 07:31:00,0 +7416,1965-02-12 01:21:00,0 +9053,1967-01-04 02:49:00,0 +4288,1969-02-26 22:12:00,0 +7213,1965-11-07 04:10:00,0 +4177,1967-04-11 23:16:00,0 +2239,1966-07-18 13:25:00,0 +1464,1965-06-30 17:26:00,0 +2717,1966-09-03 10:59:00,0 +1030,1968-06-26 03:32:00,0 +6123,1966-08-15 03:56:00,0 +1964,1965-07-09 09:34:00,0 +3625,1968-02-22 22:23:00,0 +7258,1966-04-10 18:21:00,0 +1921,1965-04-18 11:14:00,0 +3446,1968-08-31 20:21:00,0 +6098,1968-06-03 16:21:00,0 +5025,1967-06-02 09:32:00,0 +1995,1968-01-17 11:45:00,0 +4336,1967-07-03 03:41:00,0 +5093,1969-05-03 09:56:00,0 +2543,1969-03-26 07:43:00,0 +990,1965-11-08 22:38:00,0 +3721,1965-07-31 18:17:00,0 +7732,1967-11-09 01:25:00,0 +7309,1965-05-28 01:19:00,0 +7167,1965-02-02 15:51:00,0 +9219,1965-07-08 20:26:00,0 +4376,1969-10-20 23:40:00,0 +5470,1967-02-23 07:12:00,0 +54,1965-03-17 14:48:00,0 +7868,1967-11-24 00:42:00,0 +5586,1966-09-23 17:30:00,0 +2111,1968-09-16 17:09:00,0 +7315,1965-08-04 12:30:00,0 +8294,1965-11-25 20:37:00,0 +418,1966-08-28 08:37:00,0 +8647,1967-01-11 16:03:00,0 +7215,1967-03-23 07:11:00,0 +276,1966-10-13 22:34:00,0 +6104,1968-06-24 06:29:00,0 +7783,1966-03-28 06:45:00,0 +6142,1966-02-13 05:14:00,0 +6155,1965-01-18 03:54:00,0 +38,1969-01-07 16:22:00,0 +2180,1968-01-01 22:19:00,0 +2036,1969-12-23 18:44:00,0 +3691,1965-01-05 07:13:00,0 +6113,1966-08-21 22:27:00,0 +6886,1967-01-24 01:19:00,0 +8018,1966-01-19 23:19:00,0 +71,1967-12-14 03:31:00,0 +5792,1968-07-17 05:27:00,0 +3082,1969-10-29 21:38:00,0 +1573,1966-03-20 14:19:00,0 +6650,1967-09-04 23:42:00,0 +3743,1965-05-07 15:48:00,0 +5666,1967-08-24 14:51:00,0 +8119,1969-10-27 12:48:00,0 +771,1965-11-13 01:00:00,0 +7357,1967-10-02 16:19:00,0 +5794,1968-08-16 09:51:00,0 +4003,1968-11-07 23:15:00,0 +4590,1967-03-29 16:53:00,0 +4487,1969-05-26 14:27:00,0 +9084,1966-12-07 03:57:00,0 +1532,1966-03-02 06:37:00,0 +4747,1969-05-13 17:00:00,0 +8511,1966-08-07 15:30:00,0 +5202,1965-01-10 22:42:00,0 +8112,1965-02-18 22:17:00,0 +6409,1969-12-08 22:10:00,0 +3350,1967-12-30 16:47:00,0 +8668,1966-07-08 08:46:00,0 +2426,1967-08-16 13:01:00,0 +8324,1965-08-24 00:45:00,0 +447,1968-06-29 06:19:00,0 +3219,1969-02-08 07:43:00,0 +8624,1969-10-14 12:58:00,0 +739,1967-01-26 15:18:00,0 +3815,1965-08-30 16:04:00,0 +6633,1965-01-10 20:20:00,0 +4653,1966-08-05 01:44:00,0 +5562,1968-02-03 13:26:00,0 +2809,1967-10-17 12:18:00,0 +3315,1969-09-25 13:07:00,0 +7656,1966-08-21 20:45:00,0 +8088,1967-03-26 12:18:00,0 +4904,1968-01-06 12:04:00,0 +4477,1966-05-31 22:53:00,0 +8131,1965-03-03 03:38:00,0 +6999,1969-05-05 11:17:00,0 +6785,1968-12-29 15:30:00,0 +6149,1969-08-19 08:24:00,0 +8540,1965-04-08 20:16:00,0 +9303,1967-01-17 00:19:00,0 +9021,1965-05-15 05:25:00,0 +8821,1966-11-08 22:55:00,0 +3849,1969-05-31 15:12:00,0 +6680,1968-01-27 23:45:00,0 +3229,1969-10-26 12:16:00,0 +4687,1967-12-09 00:25:00,0 +6553,1965-01-22 07:36:00,0 +5212,1965-08-05 17:18:00,0 +3579,1965-08-12 15:37:00,0 +5440,1968-06-20 20:24:00,0 +7399,1967-05-12 03:38:00,0 +4749,1968-11-16 16:35:00,0 +3926,1965-05-04 05:15:00,0 +9050,1967-01-15 11:35:00,0 +7609,1967-04-11 00:43:00,0 +1088,1966-02-07 22:01:00,0 +4836,1969-05-08 05:32:00,0 +6890,1968-06-11 15:05:00,0 +378,1965-03-29 16:26:00,0 +3141,1966-09-21 06:40:00,0 +5086,1968-12-25 06:59:00,0 +5161,1967-11-13 16:11:00,0 +2750,1966-01-16 03:21:00,0 +4058,1966-07-15 15:22:00,0 +1147,1968-05-31 13:59:00,0 +6037,1966-04-01 01:52:00,0 +1656,1968-05-26 19:22:00,0 +7573,1966-03-09 19:30:00,0 +1487,1969-10-16 21:58:00,0 +9488,1968-09-19 00:12:00,0 +7637,1967-09-17 05:46:00,0 +4143,1966-12-22 20:32:00,0 +4858,1966-05-20 23:46:00,0 +5018,1968-05-17 02:53:00,0 +2174,1968-02-23 03:01:00,0 +9512,1965-03-02 09:05:00,0 +3623,1966-08-10 03:02:00,0 +8835,1969-01-30 10:55:00,0 +5437,1968-02-03 16:25:00,0 +1608,1965-12-31 10:16:00,0 +7107,1966-10-31 03:47:00,0 +9641,1965-02-05 05:07:00,0 +5578,1968-01-01 01:22:00,0 +1761,1967-11-19 03:16:00,0 +1833,1965-09-30 03:36:00,0 +9148,1969-05-01 01:18:00,0 +7048,1965-09-26 19:55:00,0 +6845,1966-02-22 09:49:00,0 +4922,1965-08-29 12:48:00,0 +581,1967-10-11 12:55:00,0 +8363,1966-09-25 23:05:00,0 +1320,1967-01-10 01:38:00,0 +441,1969-08-29 18:23:00,0 +4060,1967-02-17 10:24:00,0 +8949,1966-09-07 00:31:00,0 +4951,1967-06-25 06:47:00,0 +9646,1968-06-06 11:38:00,0 +177,1965-08-09 16:44:00,0 +7212,1969-04-06 18:43:00,0 +5873,1969-06-21 13:12:00,0 +8777,1966-01-03 09:38:00,0 +3852,1967-09-25 01:04:00,0 +8246,1965-09-24 03:47:00,0 +2154,1965-07-24 04:08:00,0 +5504,1968-09-04 07:59:00,0 +8984,1968-05-23 03:01:00,0 +2021,1965-04-20 13:20:00,0 +3790,1966-08-13 08:26:00,0 +4316,1969-03-07 06:05:00,0 +4483,1967-03-29 08:29:00,0 +6521,1967-05-16 12:12:00,0 +5265,1968-11-18 23:39:00,0 +7641,1965-02-26 03:30:00,0 +2817,1968-03-28 03:36:00,0 +2870,1966-03-26 09:51:00,0 +7094,1969-01-09 20:07:00,0 +112,1965-07-11 05:08:00,0 +4181,1969-12-31 22:46:00,0 +6789,1967-06-25 04:01:00,0 +6549,1965-08-16 03:24:00,0 +6155,1969-03-25 19:53:00,0 +8519,1966-10-11 08:38:00,0 +9822,1966-12-09 22:47:00,0 +2298,1965-12-23 04:29:00,0 +4733,1969-02-13 20:12:00,0 +8287,1967-08-18 02:13:00,0 +4985,1969-11-29 14:33:00,0 +5860,1965-12-02 13:34:00,0 +6003,1967-09-06 00:34:00,0 +4487,1969-10-28 17:24:00,0 +251,1965-07-19 14:00:00,0 +3720,1966-11-25 06:33:00,0 +4255,1967-08-03 07:14:00,0 +8531,1966-06-19 18:27:00,0 +80,1968-02-18 11:50:00,0 +6382,1967-06-08 09:31:00,0 +4363,1965-09-24 11:52:00,0 +7669,1968-06-07 22:37:00,0 +8403,1966-05-14 15:18:00,0 +3551,1968-01-02 12:07:00,0 +565,1967-09-03 16:38:00,0 +113,1969-06-26 19:53:00,0 +4078,1967-08-28 10:35:00,0 +1925,1967-11-24 22:14:00,0 +3140,1969-11-05 16:39:00,0 +4371,1966-11-16 21:33:00,0 +4776,1969-12-15 09:50:00,0 +8137,1966-08-01 02:25:00,0 +991,1969-04-25 01:00:00,0 +7364,1968-01-08 01:59:00,0 +7409,1965-09-04 15:35:00,0 +318,1969-12-02 08:21:00,0 +4267,1966-09-10 17:53:00,0 +8386,1968-11-28 04:57:00,0 +1506,1969-02-22 12:00:00,0 +3619,1966-11-12 20:50:00,0 +805,1969-05-04 07:49:00,0 +906,1967-04-29 13:45:00,0 +587,1967-01-25 17:53:00,0 +9874,1965-05-14 22:39:00,0 +219,1968-08-27 09:06:00,0 +9596,1969-10-04 12:47:00,0 +198,1966-08-10 08:51:00,0 +953,1969-11-10 15:07:00,0 +5661,1967-12-04 05:02:00,0 +9590,1966-10-30 20:10:00,0 +272,1969-09-15 06:39:00,0 +5762,1968-09-23 09:34:00,0 +6337,1966-04-30 16:31:00,0 +2665,1967-02-18 23:28:00,0 +5959,1965-09-08 23:36:00,0 +7478,1966-02-20 23:19:00,0 +7453,1966-06-22 07:14:00,0 +7200,1965-07-11 13:01:00,0 +6521,1966-09-25 17:28:00,0 +2344,1965-02-18 04:01:00,0 +5325,1965-04-16 08:34:00,0 +4608,1967-07-22 15:30:00,0 +284,1968-12-09 03:47:00,0 +4207,1965-10-18 21:54:00,0 +9239,1966-12-26 01:42:00,0 +7141,1968-10-12 23:22:00,0 +1254,1969-03-09 09:26:00,0 +3905,1969-04-09 04:37:00,0 +4898,1967-03-23 04:17:00,0 +3028,1965-06-11 18:24:00,0 +3276,1965-01-26 15:00:00,0 +6594,1965-09-12 14:17:00,0 +3724,1967-06-24 21:32:00,0 +627,1969-09-18 07:46:00,0 +7342,1967-08-29 10:37:00,0 +9503,1968-05-30 03:31:00,0 +7909,1969-12-19 17:16:00,0 +8301,1968-08-06 00:34:00,0 +4077,1966-11-26 21:39:00,0 +4336,1966-12-10 03:29:00,0 +7141,1967-08-29 01:34:00,0 +167,1967-05-03 03:32:00,0 +1421,1967-12-19 13:04:00,0 +6513,1966-02-09 20:08:00,0 +1253,1967-11-20 02:25:00,0 +4174,1969-08-11 00:07:00,0 +4642,1966-12-26 15:16:00,0 +4429,1967-12-18 14:08:00,0 +3308,1968-01-22 18:47:00,0 +9446,1965-05-26 12:21:00,0 +1295,1966-06-11 09:24:00,0 +1037,1966-10-13 18:12:00,0 +6244,1965-10-06 22:02:00,0 +3927,1966-12-18 02:17:00,0 +3874,1967-02-08 03:06:00,0 +4335,1968-11-24 08:28:00,0 +3779,1968-11-18 08:23:00,0 +3125,1965-06-18 04:00:00,0 +4201,1968-06-04 09:55:00,0 +1916,1967-08-20 06:49:00,0 +8179,1965-12-12 08:06:00,0 +1353,1967-01-30 23:11:00,0 +9656,1965-01-08 05:47:00,0 +9731,1967-08-18 14:45:00,0 +854,1967-02-24 10:25:00,0 +8992,1966-07-09 06:58:00,0 +6355,1967-12-28 00:23:00,0 +7525,1966-04-25 14:03:00,0 +8862,1967-11-22 13:52:00,0 +8715,1967-04-02 18:37:00,0 +1490,1967-03-07 01:10:00,0 +2388,1966-06-08 11:26:00,0 +4284,1967-11-14 19:41:00,0 +4991,1969-01-29 17:05:00,0 +6109,1966-07-09 13:02:00,0 +611,1969-03-28 03:31:00,0 +5279,1966-12-08 19:45:00,0 +2496,1969-03-25 08:42:00,0 +1283,1969-05-08 13:12:00,0 +3564,1965-11-08 23:52:00,0 +9241,1965-11-18 09:27:00,0 +532,1968-08-28 01:43:00,0 +9714,1966-12-03 09:06:00,0 +4792,1967-03-01 05:02:00,0 +7538,1969-05-12 08:55:00,0 +5600,1968-11-06 02:37:00,0 +1967,1967-02-08 20:55:00,0 +3919,1965-12-29 02:14:00,0 +6048,1968-10-06 02:03:00,0 +7005,1967-11-17 22:13:00,0 +9520,1969-10-25 03:54:00,0 +9259,1967-04-06 21:14:00,0 +4579,1968-07-12 00:54:00,0 +7259,1968-11-22 22:09:00,0 +6645,1966-05-12 22:50:00,0 +6310,1965-03-06 02:56:00,0 +7867,1966-12-05 02:53:00,0 +4235,1966-08-01 17:24:00,0 +7085,1965-03-02 09:34:00,0 +5357,1968-01-04 18:20:00,0 +8365,1966-04-08 21:23:00,0 +4910,1965-04-01 08:03:00,0 +779,1969-07-03 16:12:00,0 +4966,1965-02-06 08:49:00,0 +3346,1969-10-19 01:04:00,0 +1875,1965-12-17 10:30:00,0 +4023,1965-11-27 10:26:00,0 +424,1966-08-20 02:03:00,0 +3019,1966-02-12 16:14:00,0 +8246,1968-05-15 18:17:00,0 +2662,1966-07-10 09:26:00,0 +9775,1966-07-05 03:58:00,0 +1515,1967-07-13 04:40:00,0 +9543,1968-08-13 10:40:00,0 +4603,1966-12-18 14:42:00,0 +6098,1966-05-01 17:07:00,0 +2447,1967-03-10 23:13:00,0 +9859,1967-03-30 19:21:00,0 +9854,1969-08-30 23:37:00,0 +320,1965-01-26 18:53:00,0 +263,1965-01-19 02:56:00,0 +3150,1966-08-15 16:50:00,0 +1414,1968-03-07 17:06:00,0 +5575,1966-10-12 21:22:00,0 +7617,1967-11-20 15:23:00,0 +9215,1969-01-14 13:07:00,0 +8941,1965-11-03 00:07:00,0 +3339,1967-07-31 01:34:00,0 +2712,1965-11-28 14:01:00,0 +8073,1967-08-26 22:24:00,0 +6503,1968-05-22 10:47:00,0 +5583,1966-07-30 23:45:00,0 +1316,1966-07-04 01:46:00,0 +81,1966-09-09 12:02:00,0 +4756,1968-01-12 10:13:00,0 +274,1969-08-09 10:43:00,0 +3643,1965-12-13 15:35:00,0 +3004,1969-10-09 14:53:00,0 +5640,1967-04-15 20:56:00,0 +89,1967-04-03 13:02:00,0 +6008,1967-04-06 09:00:00,0 +567,1969-08-24 01:34:00,0 +9065,1966-01-05 07:49:00,0 +3617,1967-11-25 13:18:00,0 +5583,1965-04-04 06:43:00,0 +7161,1966-06-06 19:13:00,0 +6736,1969-06-28 08:41:00,0 +9205,1965-04-07 18:29:00,0 +4210,1965-03-06 07:23:00,0 +4887,1967-08-04 18:06:00,0 +2632,1965-07-17 06:44:00,0 +9465,1967-10-27 02:42:00,0 +85,1966-03-21 14:58:00,0 +3367,1966-03-02 18:46:00,0 +5603,1969-10-16 12:50:00,0 +4043,1968-03-15 15:25:00,0 +2770,1968-10-30 22:06:00,0 +1353,1967-03-13 13:28:00,0 +4754,1966-05-26 16:26:00,0 +9631,1965-10-13 15:08:00,0 +5718,1966-06-30 00:53:00,0 +5625,1965-02-16 04:16:00,0 +5408,1968-12-20 13:33:00,0 +9479,1966-06-03 17:45:00,0 +4649,1967-02-10 11:31:00,0 +3080,1966-04-20 04:00:00,0 +899,1966-12-27 10:36:00,0 +1360,1969-05-13 03:27:00,0 +5506,1969-04-27 21:19:00,0 +6683,1965-10-28 03:35:00,0 +1565,1969-06-24 00:43:00,0 +326,1969-05-30 06:33:00,0 +4072,1967-03-02 22:55:00,0 +5085,1968-03-27 02:55:00,0 +8906,1967-03-13 14:48:00,0 +3149,1965-01-11 07:50:00,0 +8158,1969-04-24 01:08:00,0 +2763,1966-12-23 11:01:00,0 +1048,1965-07-14 23:53:00,0 +9917,1967-06-05 07:48:00,0 +8050,1968-02-13 14:27:00,0 +4055,1969-10-10 08:21:00,0 +362,1966-10-31 09:05:00,0 +2824,1967-05-28 18:52:00,0 +5559,1969-04-04 21:31:00,0 +9512,1967-08-16 00:05:00,0 +2772,1967-08-08 11:18:00,0 +8918,1969-01-28 22:32:00,0 +2467,1965-12-08 13:54:00,0 +7042,1968-03-30 18:26:00,0 +779,1966-11-05 21:28:00,0 +8235,1965-10-12 13:00:00,0 +3403,1968-06-10 16:29:00,0 +4502,1967-07-17 05:55:00,0 +8131,1967-12-20 04:57:00,0 +8771,1969-03-08 11:50:00,0 +608,1968-06-13 16:56:00,0 +8253,1966-06-22 21:56:00,0 +7673,1968-11-27 06:49:00,0 +1602,1966-11-21 02:38:00,0 +8663,1969-07-08 17:30:00,0 +8598,1968-05-24 07:26:00,0 +2444,1967-07-02 14:19:00,0 +9467,1969-06-29 14:54:00,0 +8626,1967-10-03 06:24:00,0 +946,1969-04-12 04:33:00,0 +666,1965-06-12 09:32:00,0 +4075,1965-12-03 00:03:00,0 +2295,1965-12-08 05:53:00,0 +6598,1968-05-28 02:07:00,0 +3492,1968-12-15 18:05:00,0 +5701,1965-05-20 04:01:00,0 +5509,1966-10-27 01:21:00,0 +5496,1969-04-02 13:45:00,0 +1111,1965-01-15 10:04:00,0 +1696,1969-11-02 06:12:00,0 +4985,1969-10-25 14:04:00,0 +6437,1965-02-04 18:42:00,0 +6975,1965-01-09 07:09:00,0 +6247,1968-01-14 21:52:00,0 +4215,1966-10-22 06:52:00,0 +8408,1965-06-21 09:09:00,0 +650,1965-03-07 23:34:00,0 +5108,1965-08-10 22:36:00,0 +9773,1968-12-25 12:04:00,0 +8447,1965-01-16 12:56:00,0 +9945,1966-09-20 14:42:00,0 +7282,1969-08-19 11:15:00,0 +9362,1967-11-19 04:03:00,0 +5156,1966-10-17 21:31:00,0 +5181,1967-08-18 20:17:00,0 +7520,1966-07-18 16:37:00,0 +6217,1968-08-04 07:11:00,0 +3146,1966-07-07 05:55:00,0 +1948,1965-06-05 16:40:00,0 +2340,1967-08-01 00:37:00,0 +3209,1967-07-10 02:25:00,0 +9038,1965-02-08 18:46:00,0 +7577,1969-07-02 18:58:00,0 +1830,1965-10-07 06:07:00,0 +725,1965-10-03 21:17:00,0 +9573,1966-03-03 14:27:00,0 +7189,1965-06-09 05:33:00,0 +4098,1968-06-21 22:22:00,0 +2145,1968-04-17 20:14:00,0 +3352,1966-11-05 23:54:00,0 +653,1966-11-17 16:20:00,0 +515,1968-02-23 09:21:00,0 +2229,1969-08-11 14:00:00,0 +6171,1966-05-29 07:24:00,0 +5108,1966-03-04 15:52:00,0 +8743,1969-09-17 00:09:00,0 +4990,1966-09-14 09:52:00,0 +7990,1968-10-02 15:27:00,0 +9431,1968-06-29 04:35:00,0 +3892,1966-01-24 00:58:00,0 +2997,1968-08-14 21:45:00,0 +494,1965-01-25 16:50:00,0 +7341,1968-10-27 08:48:00,0 +287,1969-09-13 17:44:00,0 +9579,1966-08-04 00:46:00,0 +7527,1969-03-07 01:09:00,0 +8826,1969-02-03 20:30:00,0 +4223,1968-04-16 00:51:00,0 +2643,1968-12-06 06:56:00,0 +8385,1966-06-29 22:02:00,0 +5376,1965-05-16 02:38:00,0 +1729,1968-07-10 13:49:00,0 +1522,1966-01-23 15:50:00,0 +739,1967-12-04 02:40:00,0 +32,1967-08-31 07:23:00,0 +9303,1965-09-04 04:37:00,0 +8239,1965-05-04 02:58:00,0 +7829,1968-03-12 18:58:00,0 +6008,1965-09-08 16:15:00,0 +2323,1966-02-15 02:19:00,0 +2274,1969-01-21 10:04:00,0 +2212,1969-06-23 08:21:00,0 +3145,1968-05-23 22:24:00,0 +875,1968-07-06 10:21:00,0 +7294,1968-03-23 07:33:00,0 +7664,1969-05-06 16:34:00,0 +4305,1966-03-27 11:17:00,0 +952,1965-01-03 05:32:00,0 +7229,1967-02-11 04:35:00,0 +8022,1969-11-19 00:58:00,0 +8816,1967-09-20 02:59:00,0 +8823,1968-05-11 09:19:00,0 +7362,1969-04-06 02:35:00,0 +5262,1967-05-07 13:23:00,0 +932,1966-07-13 18:29:00,0 +6511,1966-11-25 15:24:00,0 +6406,1966-04-28 10:59:00,0 +5294,1969-12-19 11:08:00,0 +4033,1966-09-01 19:41:00,0 +4468,1965-08-12 19:53:00,0 +2622,1967-08-28 06:39:00,0 +8596,1966-11-05 07:26:00,0 +1216,1966-01-09 21:04:00,0 +4748,1967-06-18 16:21:00,0 +2997,1965-07-05 19:54:00,0 +3349,1968-11-20 06:12:00,0 +9870,1967-10-23 13:26:00,0 +5721,1969-05-08 16:00:00,0 +832,1968-01-02 14:05:00,0 +9964,1969-05-02 18:31:00,0 +9478,1965-12-08 20:07:00,0 +1194,1965-05-19 04:20:00,0 +1947,1966-05-07 14:09:00,0 +3291,1967-05-26 12:45:00,0 +5227,1969-05-25 12:35:00,0 +1808,1968-04-23 17:00:00,0 +1070,1968-07-10 21:45:00,0 +5128,1966-04-18 04:56:00,0 +1926,1969-10-28 16:48:00,0 +9908,1967-08-15 11:05:00,0 +6498,1966-09-04 03:57:00,0 +6686,1968-08-15 14:29:00,0 +8626,1967-02-20 04:41:00,0 +4304,1967-12-19 11:05:00,0 +1066,1969-07-16 19:11:00,0 +5062,1968-07-25 16:31:00,0 +3523,1969-12-27 18:24:00,0 +1347,1967-08-11 18:43:00,0 +1550,1966-07-29 16:14:00,0 +4317,1968-08-30 21:30:00,0 +1803,1967-12-16 20:10:00,0 +3281,1966-03-24 09:56:00,0 +1926,1966-09-30 06:03:00,0 +32,1966-08-12 23:47:00,0 +2343,1966-08-11 01:41:00,0 +3885,1968-12-04 15:15:00,0 +2404,1967-05-08 12:03:00,0 +7726,1968-12-01 06:31:00,0 +6183,1965-06-28 01:17:00,0 +8403,1968-05-28 09:32:00,0 +3626,1965-07-24 06:02:00,0 +7831,1967-08-15 09:30:00,0 +7028,1969-06-08 22:37:00,0 +827,1968-03-02 20:04:00,0 +3589,1965-09-08 11:44:00,0 +6572,1965-06-18 00:34:00,0 +9644,1966-03-05 13:58:00,0 +1382,1968-11-07 12:06:00,0 +9476,1968-03-07 05:48:00,0 +5302,1967-05-04 04:02:00,0 +6262,1966-06-30 08:54:00,0 +3396,1965-06-17 16:53:00,0 +3009,1967-05-06 19:58:00,0 +8198,1968-07-06 10:22:00,0 +8780,1969-10-24 16:49:00,0 +8705,1969-09-17 12:43:00,0 +9029,1968-01-13 07:53:00,0 +6507,1965-12-01 13:00:00,0 +2879,1968-06-07 04:08:00,0 +2124,1967-01-30 01:33:00,0 +6828,1969-11-07 15:09:00,0 +3108,1965-04-04 02:21:00,0 +8593,1967-05-31 21:38:00,0 +8619,1968-05-19 04:25:00,0 +7118,1965-01-29 03:19:00,0 +9002,1966-12-12 10:21:00,0 +3762,1967-06-24 22:04:00,0 +8373,1967-10-29 20:33:00,0 +1417,1969-08-03 10:59:00,0 +479,1969-04-01 11:53:00,0 +7698,1968-12-01 08:56:00,0 +2338,1965-09-16 04:24:00,0 +7540,1967-10-09 09:35:00,0 +2457,1966-05-12 23:25:00,0 +5390,1966-09-27 00:54:00,0 +4515,1968-02-12 19:33:00,0 +1975,1969-04-08 07:58:00,0 +7489,1968-10-19 16:58:00,0 +5030,1969-10-04 05:38:00,0 +3104,1969-08-12 03:03:00,0 +4104,1966-08-16 03:23:00,0 +5188,1969-06-09 22:48:00,0 +9987,1967-02-28 13:54:00,0 +8219,1969-05-13 13:13:00,0 +4000,1967-04-06 00:20:00,0 +3803,1965-06-05 18:04:00,0 +6170,1969-11-27 14:22:00,0 +3536,1965-03-26 21:35:00,0 +869,1965-07-12 21:43:00,0 +544,1967-05-24 15:30:00,0 +6978,1968-05-03 19:07:00,0 +4165,1968-02-21 05:08:00,0 +5881,1967-08-25 05:32:00,0 +3527,1966-01-01 16:35:00,0 +6856,1965-05-09 08:00:00,0 +7094,1968-07-06 02:34:00,0 +82,1966-09-06 01:55:00,0 +5545,1968-02-27 06:22:00,0 +8544,1966-08-19 01:26:00,0 +2491,1969-10-05 13:57:00,0 +3103,1967-11-15 02:01:00,0 +7457,1969-08-24 18:35:00,0 +9551,1968-05-25 10:05:00,0 +5698,1967-04-12 22:05:00,0 +1201,1965-04-27 06:33:00,0 +2030,1965-08-22 18:41:00,0 +5829,1967-11-24 06:34:00,0 +5199,1966-07-28 09:12:00,0 +2013,1967-01-13 20:31:00,0 +4050,1969-12-11 20:17:00,0 +1131,1967-01-20 00:16:00,0 +1676,1969-03-15 05:02:00,0 +5719,1967-01-20 16:05:00,0 +7893,1967-04-17 04:46:00,0 +4997,1968-06-22 04:57:00,0 +4929,1968-09-05 15:12:00,0 +1417,1968-11-11 10:42:00,0 +9462,1967-11-09 11:40:00,0 +9503,1965-01-25 01:45:00,0 +9608,1968-03-06 09:42:00,0 +52,1965-04-27 17:23:00,0 +5104,1967-08-26 13:43:00,0 +2363,1966-02-22 18:07:00,0 +6899,1965-09-26 14:41:00,0 +8986,1967-02-19 23:43:00,0 +4690,1969-06-11 02:29:00,0 +723,1968-09-13 21:37:00,0 +1316,1967-10-25 08:13:00,0 +4867,1965-12-20 05:31:00,0 +8428,1967-10-19 07:14:00,0 +112,1967-12-16 21:34:00,0 +8360,1969-07-15 05:23:00,0 +6578,1965-08-14 17:45:00,0 +8576,1965-04-22 05:41:00,0 +927,1969-10-17 13:55:00,0 +9421,1968-06-09 10:35:00,0 +8134,1968-05-19 07:13:00,0 +1202,1968-04-29 18:28:00,0 +4909,1966-02-07 19:52:00,0 +8997,1969-10-13 20:43:00,0 +6742,1969-08-19 10:23:00,0 +5498,1966-12-17 11:07:00,0 +6389,1966-11-19 05:26:00,0 +7345,1966-01-20 06:18:00,0 +497,1966-07-12 21:32:00,0 +4500,1969-04-18 08:39:00,0 +1917,1965-02-26 01:01:00,0 +4846,1968-01-12 10:15:00,0 +4267,1969-08-23 19:41:00,0 +756,1965-04-17 17:44:00,0 +1971,1966-04-17 19:35:00,0 +912,1967-10-12 20:23:00,0 +9977,1965-02-25 19:57:00,0 +9691,1967-12-11 09:21:00,0 +3261,1967-10-27 14:04:00,0 +4810,1965-01-04 17:26:00,0 +332,1968-09-04 12:47:00,0 +2631,1968-03-04 05:32:00,0 +2331,1966-12-09 10:23:00,0 +7905,1967-11-20 08:58:00,0 +2773,1968-02-01 07:43:00,0 +6844,1965-08-31 23:10:00,0 +3975,1968-07-09 15:58:00,0 +6509,1968-07-25 04:46:00,0 +5982,1966-05-05 02:27:00,0 +5752,1969-01-02 05:14:00,0 +7197,1968-08-29 10:00:00,0 +1681,1968-10-05 05:57:00,0 +9467,1965-03-20 17:48:00,0 +1184,1969-07-09 13:19:00,0 +4679,1966-05-06 15:34:00,0 +2723,1969-07-03 05:40:00,0 +1068,1965-09-21 09:25:00,0 +5388,1965-01-14 17:49:00,0 +8404,1968-06-29 14:50:00,0 +750,1965-08-08 19:24:00,0 +1304,1965-05-09 14:21:00,0 +3905,1966-11-05 10:48:00,0 +4577,1968-06-04 01:20:00,0 +929,1968-10-23 07:31:00,0 +5177,1966-02-03 13:55:00,0 +9810,1966-04-18 07:56:00,0 +7553,1968-07-08 09:32:00,0 +1526,1969-01-30 23:49:00,0 +7231,1966-08-26 14:10:00,0 +3190,1965-09-22 16:18:00,0 +3206,1967-08-22 01:41:00,0 +280,1965-03-29 13:57:00,0 +4141,1966-10-03 23:57:00,0 +8922,1966-07-13 07:52:00,0 +7848,1968-06-16 09:02:00,0 +8763,1969-03-15 16:06:00,0 +5336,1966-07-02 04:09:00,0 +2020,1966-06-29 02:08:00,0 +4762,1965-05-10 04:54:00,0 +1419,1968-11-09 13:24:00,0 +5753,1965-10-23 09:11:00,0 +5475,1968-02-16 20:44:00,0 +523,1966-08-22 15:25:00,0 +2762,1968-10-06 04:50:00,0 +2781,1967-10-13 05:52:00,0 +5015,1968-03-20 14:41:00,0 +5032,1966-02-05 14:04:00,0 +5010,1969-10-15 12:02:00,0 +1358,1968-08-09 21:00:00,0 +3842,1967-03-20 10:10:00,0 +636,1965-11-23 10:02:00,0 +5115,1967-12-27 05:28:00,0 +6588,1966-02-08 10:30:00,0 +2114,1967-12-27 00:54:00,0 +6724,1968-06-06 07:40:00,0 +6141,1968-11-28 12:09:00,0 +2387,1969-08-10 18:54:00,0 +6231,1965-02-25 17:31:00,0 +131,1966-07-13 15:25:00,0 +1797,1967-02-15 02:49:00,0 +7802,1969-09-09 23:57:00,0 +9308,1966-04-20 00:38:00,0 +7893,1966-10-30 18:01:00,0 +6099,1968-06-25 16:28:00,0 +936,1967-08-13 14:27:00,0 +2948,1969-08-03 14:16:00,0 +5506,1965-01-23 19:48:00,0 +794,1969-02-28 14:24:00,0 +3775,1967-11-10 14:03:00,0 +181,1969-03-23 17:28:00,0 +5639,1967-02-19 14:56:00,0 +2945,1969-06-29 07:24:00,0 +5570,1965-11-02 14:55:00,0 +4533,1969-11-02 07:28:00,0 +1600,1967-10-15 03:57:00,0 +1191,1967-07-21 21:45:00,0 +5123,1968-11-26 17:55:00,0 +5046,1967-01-29 16:46:00,0 +546,1967-08-28 00:59:00,0 +4736,1967-11-30 06:44:00,0 +5193,1969-01-18 05:12:00,0 +5488,1966-12-02 13:10:00,0 +400,1967-11-02 19:04:00,0 +2890,1969-08-26 03:47:00,0 +7534,1968-07-28 00:22:00,0 +2033,1968-10-05 04:53:00,0 +5693,1969-05-06 06:16:00,0 +3183,1969-07-23 14:00:00,0 +6838,1967-05-02 12:53:00,0 +6383,1965-07-09 00:30:00,0 +5485,1968-10-16 08:33:00,0 +1848,1969-03-28 03:30:00,0 +8238,1965-11-23 06:55:00,0 +4686,1969-06-18 22:44:00,0 +4047,1969-10-08 08:26:00,0 +7246,1968-04-27 03:14:00,0 +9846,1965-11-27 22:15:00,0 +247,1967-07-31 01:40:00,0 +1744,1968-10-12 15:00:00,0 +9410,1968-11-21 19:00:00,0 +322,1965-06-23 09:20:00,0 +8866,1966-09-26 12:47:00,0 +7916,1965-02-10 00:31:00,0 +726,1967-02-12 18:56:00,0 +6728,1969-05-28 09:37:00,0 +7681,1968-04-18 07:55:00,0 +6106,1969-12-06 13:35:00,0 +295,1965-10-28 04:34:00,0 +6768,1966-05-28 11:54:00,0 +8757,1969-10-29 01:02:00,0 +1521,1968-12-25 07:26:00,0 +5858,1966-04-23 06:29:00,0 +2515,1969-07-21 00:27:00,0 +5804,1969-08-28 18:27:00,0 +5267,1968-08-20 09:26:00,0 +4845,1966-04-03 08:21:00,0 +2236,1965-09-12 02:54:00,0 +7116,1967-11-02 07:50:00,0 +7716,1967-11-12 19:35:00,0 +7461,1967-02-12 06:06:00,0 +1565,1966-10-19 21:16:00,0 +5739,1969-06-08 14:39:00,0 +2481,1969-10-27 09:38:00,0 +3511,1969-09-15 14:01:00,0 +8827,1965-02-05 13:56:00,0 +5761,1968-01-19 05:38:00,0 +335,1966-01-06 16:47:00,0 +2991,1967-03-30 06:30:00,0 +5270,1968-07-28 22:52:00,0 +2746,1968-02-18 09:53:00,0 +6568,1966-05-02 21:46:00,0 +4423,1965-04-06 06:12:00,0 +3111,1966-09-08 02:02:00,0 +2899,1968-10-10 00:37:00,0 +4614,1969-07-07 18:12:00,0 +1587,1968-12-29 12:26:00,0 +9872,1966-02-13 22:22:00,0 +2235,1966-12-01 19:39:00,0 +6184,1965-10-05 14:02:00,0 +3052,1966-05-30 08:07:00,0 +6604,1968-11-24 09:29:00,0 +9987,1967-07-03 05:37:00,0 +3014,1968-11-23 17:32:00,0 +2396,1969-04-06 15:54:00,0 +1778,1967-06-27 05:27:00,0 +3678,1967-06-07 19:06:00,0 +2716,1965-01-05 10:39:00,0 +4071,1969-12-10 08:43:00,0 +1409,1967-06-27 19:21:00,0 +8625,1965-11-21 15:33:00,0 +9281,1965-03-02 00:34:00,0 +6367,1966-07-09 14:13:00,0 +7871,1968-02-07 10:14:00,0 +2247,1966-10-13 13:47:00,0 +7897,1968-11-09 13:02:00,0 +6088,1967-02-19 03:16:00,0 +6178,1969-05-11 07:43:00,0 +8088,1968-01-23 23:50:00,0 +5198,1969-06-17 17:41:00,0 +6695,1967-07-12 12:29:00,0 +5440,1969-08-17 22:04:00,0 +908,1965-06-20 01:09:00,0 +1005,1967-05-12 17:26:00,0 +2061,1966-12-27 12:49:00,0 +1197,1967-01-30 01:55:00,0 +5979,1966-01-06 22:43:00,0 +8027,1969-07-20 14:29:00,0 +8583,1969-10-01 02:14:00,0 +4024,1967-12-16 22:49:00,0 +6487,1969-05-31 21:18:00,0 +3410,1966-02-20 16:28:00,0 +9302,1969-05-04 04:58:00,0 +5185,1967-12-23 18:42:00,0 +1508,1968-05-03 08:13:00,0 +2751,1966-08-25 20:39:00,0 +6477,1968-03-04 10:17:00,0 +3033,1967-10-20 08:49:00,0 +1656,1965-06-19 15:51:00,0 +7398,1969-08-12 17:08:00,0 +3920,1968-03-17 01:18:00,0 +8163,1966-08-31 17:43:00,0 +888,1967-06-29 00:58:00,0 +4877,1966-05-12 20:32:00,0 +8871,1967-03-31 16:46:00,0 +8555,1968-11-06 05:26:00,0 +2409,1965-11-07 14:45:00,0 +7428,1969-06-10 21:28:00,0 +4997,1967-08-03 10:42:00,0 +2150,1968-10-08 13:31:00,0 +3401,1966-01-17 08:00:00,0 +9776,1966-06-20 15:36:00,0 +6226,1968-11-15 19:26:00,0 +2399,1968-08-21 05:26:00,0 +9663,1968-12-06 10:55:00,0 +7918,1969-04-25 22:06:00,0 +9517,1966-12-08 02:43:00,0 +3442,1969-09-26 01:35:00,0 +7624,1969-07-14 18:25:00,0 +2094,1967-11-10 21:25:00,0 +9027,1966-05-19 14:04:00,0 +1854,1967-09-08 03:28:00,0 +4131,1967-01-20 15:34:00,0 +4812,1965-09-04 06:15:00,0 +8895,1969-01-18 05:31:00,0 +9990,1968-08-11 10:26:00,0 +1646,1967-01-17 19:38:00,0 +2128,1969-10-07 01:27:00,0 +7870,1969-02-10 05:41:00,0 +6795,1968-05-26 04:15:00,0 +1620,1965-04-14 12:58:00,0 +3238,1969-07-21 05:14:00,0 +2643,1966-07-28 07:22:00,0 +6307,1969-08-20 03:04:00,0 +4069,1967-03-08 15:17:00,0 +7743,1968-05-17 17:29:00,0 +4592,1968-01-24 08:01:00,0 +9322,1969-12-15 08:12:00,0 +7994,1968-08-23 12:10:00,0 +380,1969-09-23 12:47:00,0 +8409,1967-02-24 04:35:00,0 +7842,1969-01-13 01:34:00,0 +5616,1969-05-05 21:09:00,0 +6477,1965-06-26 04:17:00,0 +4223,1967-02-21 12:00:00,0 +4290,1969-01-20 22:33:00,0 +4686,1966-02-03 04:33:00,0 +5752,1966-12-23 10:52:00,0 +4506,1965-04-26 13:20:00,0 +722,1967-11-03 08:57:00,0 +5559,1968-05-11 05:07:00,0 +3375,1965-09-18 06:58:00,0 +2492,1967-04-20 09:28:00,0 +2283,1969-08-09 07:24:00,0 +2817,1965-12-16 21:00:00,0 +1489,1966-03-18 23:45:00,0 +189,1965-05-23 22:42:00,0 +2473,1965-05-24 16:26:00,0 +1282,1969-08-01 06:42:00,0 +4724,1966-03-17 16:46:00,0 +9930,1969-08-11 18:23:00,0 +5273,1967-06-09 14:08:00,0 +1878,1968-06-24 10:00:00,0 +3543,1966-11-08 01:02:00,0 +1857,1969-05-03 12:16:00,0 +5461,1968-09-21 12:44:00,0 +3220,1967-10-29 03:37:00,0 +9270,1968-04-11 04:40:00,0 +7798,1965-07-12 17:02:00,0 +986,1968-03-27 20:42:00,0 +2223,1966-05-02 00:00:00,0 +1497,1968-11-15 02:29:00,0 +6870,1969-12-24 02:14:00,0 +833,1969-04-25 08:51:00,0 +6768,1966-03-26 09:48:00,0 +8842,1965-09-12 15:15:00,0 +8868,1968-04-24 23:08:00,0 +3269,1967-12-29 17:14:00,0 +52,1969-06-17 04:52:00,0 +4543,1969-03-02 11:34:00,0 +4941,1969-01-07 01:58:00,0 +3862,1966-10-31 18:22:00,0 +6208,1965-09-29 01:28:00,0 +9818,1965-02-11 23:30:00,0 +6807,1969-10-20 10:07:00,0 +938,1966-12-15 16:56:00,0 +5349,1967-08-08 17:33:00,0 +7980,1965-06-11 00:17:00,0 +1318,1965-07-15 03:31:00,0 +5556,1965-12-23 00:01:00,0 +3533,1968-02-08 21:16:00,0 +3213,1969-03-04 18:49:00,0 +1580,1967-08-17 15:44:00,0 +7759,1966-04-01 04:19:00,0 +6215,1967-09-12 17:45:00,0 +1680,1967-06-30 15:59:00,0 +9545,1966-06-06 20:27:00,0 +4720,1968-02-25 09:25:00,0 +9499,1966-04-29 12:29:00,0 +1042,1967-09-04 20:07:00,0 +2101,1965-03-17 06:35:00,0 +1937,1965-02-06 16:53:00,0 +3848,1969-05-08 09:49:00,0 +5201,1968-11-04 00:07:00,0 +109,1967-02-20 01:12:00,0 +7508,1969-12-16 08:49:00,0 +4923,1967-02-01 04:22:00,0 +243,1969-11-04 09:46:00,0 +3251,1967-05-09 07:58:00,0 +6938,1966-10-26 13:43:00,0 +7645,1966-01-24 15:18:00,0 +284,1965-09-15 13:30:00,0 +7256,1968-01-01 18:57:00,0 +2936,1967-01-29 18:56:00,0 +1392,1966-09-29 09:11:00,0 +1471,1965-03-14 01:22:00,0 +8659,1967-11-30 02:47:00,0 +4925,1965-10-31 10:08:00,0 +9340,1968-08-20 03:44:00,0 +5912,1967-04-29 09:39:00,0 +404,1969-10-22 08:45:00,0 +1069,1967-09-15 23:44:00,0 +6270,1969-04-16 08:28:00,0 +1953,1965-10-02 07:20:00,0 +5081,1969-02-16 16:59:00,0 +790,1968-09-30 05:39:00,0 +6975,1968-02-08 13:56:00,0 +6805,1967-12-16 02:25:00,0 +5052,1966-12-26 05:08:00,0 +1704,1968-11-09 15:36:00,0 +9367,1968-12-18 13:33:00,0 +6650,1967-03-30 00:33:00,0 +6176,1967-06-13 22:13:00,0 +7851,1966-07-12 20:19:00,0 +4156,1967-01-08 18:17:00,0 +946,1966-12-12 10:02:00,0 +1696,1968-09-07 15:41:00,0 +5852,1968-09-30 18:34:00,0 +2386,1969-06-22 12:16:00,0 +7498,1967-03-21 03:20:00,0 +1526,1965-08-18 15:39:00,0 +6544,1965-09-10 00:55:00,0 +4688,1969-01-11 20:51:00,0 +1864,1965-03-12 00:09:00,0 +482,1969-11-12 15:28:00,0 +7774,1967-04-30 10:14:00,0 +8994,1968-11-30 11:27:00,0 +171,1968-03-22 00:39:00,0 +3745,1967-08-17 01:12:00,0 +4052,1965-08-18 18:23:00,0 +2743,1966-08-21 00:38:00,0 +3107,1968-01-10 18:56:00,0 +9693,1967-04-18 15:20:00,0 +8693,1967-08-07 17:07:00,0 +164,1966-10-18 02:13:00,0 +1102,1968-01-31 13:05:00,0 +51,1968-05-24 10:49:00,0 +7485,1966-09-09 21:11:00,0 +7582,1968-07-08 17:24:00,0 +9020,1966-03-13 15:44:00,0 +4712,1965-03-17 18:02:00,0 +4224,1966-11-21 07:55:00,0 +6673,1969-12-09 13:49:00,0 +9383,1968-01-16 20:07:00,0 +8234,1967-12-11 17:59:00,0 +1402,1968-12-31 08:57:00,0 +2759,1968-08-29 21:57:00,0 +7919,1966-03-25 16:16:00,0 +7953,1965-04-14 16:55:00,0 +4539,1965-06-29 09:42:00,0 +3521,1965-08-17 19:34:00,0 +7633,1966-07-08 22:22:00,0 +3984,1969-12-02 17:33:00,0 +8266,1965-03-22 18:36:00,0 +4832,1969-02-22 21:35:00,0 +824,1965-07-30 11:29:00,0 +2321,1969-02-25 21:22:00,0 +3960,1966-05-11 17:18:00,0 +3916,1965-02-17 12:01:00,0 +9325,1965-04-19 10:21:00,0 +2369,1966-05-14 01:49:00,0 +7656,1968-08-21 05:17:00,0 +8658,1967-05-10 17:55:00,0 +2181,1968-02-18 06:13:00,0 +8994,1969-05-29 06:17:00,0 +8938,1965-08-13 07:44:00,0 +5465,1967-12-06 18:14:00,0 +7137,1966-02-25 17:17:00,0 +5579,1967-06-08 14:31:00,0 +5245,1967-06-17 23:56:00,0 +4386,1969-02-22 14:38:00,0 +6188,1966-01-08 11:34:00,0 +1590,1968-08-09 08:31:00,0 +9665,1969-12-21 05:17:00,0 +8874,1965-02-17 12:18:00,0 +2332,1968-02-22 12:14:00,0 +9513,1969-07-01 19:18:00,0 +4998,1965-08-05 17:33:00,0 +4442,1967-02-09 10:10:00,0 +938,1968-12-12 13:03:00,0 +9375,1968-08-08 14:21:00,0 +5674,1969-11-13 21:58:00,0 +7681,1967-01-09 11:49:00,0 +3109,1968-10-11 09:42:00,0 +7744,1967-11-14 06:20:00,0 +8907,1968-12-23 16:51:00,0 +8821,1966-01-22 15:42:00,0 +5020,1965-05-19 22:24:00,0 +3366,1968-02-24 04:42:00,0 +447,1968-04-15 12:09:00,0 +1148,1967-09-02 22:00:00,0 +1043,1965-03-12 02:55:00,0 +4351,1965-03-04 09:25:00,0 +3565,1967-06-27 19:34:00,0 +5397,1968-08-03 03:41:00,0 +3316,1966-04-16 08:03:00,0 +3495,1967-10-08 17:52:00,0 +414,1965-08-06 13:23:00,0 +9721,1967-05-02 21:52:00,0 +7463,1965-04-05 22:14:00,0 +365,1965-02-09 22:40:00,0 +1162,1965-03-20 17:29:00,0 +7681,1965-08-17 03:16:00,0 +1241,1965-07-11 23:10:00,0 +5955,1966-01-30 00:55:00,0 +2878,1967-05-20 19:02:00,0 +4623,1966-08-01 11:46:00,0 +4834,1968-10-31 12:50:00,0 +5669,1968-07-12 10:43:00,0 +5644,1968-10-20 18:19:00,0 +5300,1968-01-03 09:47:00,0 +4626,1965-04-24 21:40:00,0 +9653,1968-02-15 15:45:00,0 +393,1966-10-23 22:37:00,0 +3460,1966-09-21 13:45:00,0 +9201,1966-10-24 06:34:00,0 +7839,1968-04-10 10:03:00,0 +4638,1967-09-23 19:45:00,0 +1014,1968-04-27 06:58:00,0 +2769,1967-02-17 22:03:00,0 +4296,1966-12-28 14:20:00,0 +7425,1969-08-06 16:38:00,0 +8620,1966-08-27 20:01:00,0 +6062,1966-02-03 22:34:00,0 +1578,1965-06-14 04:13:00,0 +61,1968-11-06 10:36:00,0 +6425,1966-04-26 04:55:00,0 +4287,1969-12-09 11:39:00,0 +642,1965-07-09 01:52:00,0 +9561,1969-03-09 05:25:00,0 +8685,1968-03-03 04:59:00,0 +5259,1969-03-17 01:18:00,0 +5771,1965-08-28 09:53:00,0 +9675,1965-08-05 10:19:00,0 +2541,1968-12-12 03:28:00,0 +393,1968-02-08 12:18:00,0 +305,1969-12-29 23:58:00,0 +3672,1968-07-26 13:21:00,0 +5454,1965-01-23 08:58:00,0 +433,1968-01-03 01:49:00,0 +8033,1967-12-19 18:38:00,0 +5074,1969-04-12 00:22:00,0 +4507,1969-09-08 09:56:00,0 +6672,1968-06-24 19:30:00,0 +119,1969-01-11 18:08:00,0 +9846,1965-04-07 17:39:00,0 +6620,1965-10-27 18:18:00,0 +3481,1967-08-25 13:07:00,0 +6474,1969-08-17 12:12:00,0 +9288,1969-02-14 23:26:00,0 +6862,1965-06-23 05:35:00,0 +2728,1966-11-29 16:57:00,0 +7028,1967-12-09 14:40:00,0 +1164,1965-03-20 00:53:00,0 +9059,1965-08-26 14:48:00,0 +8159,1965-04-08 16:23:00,0 +3628,1967-03-25 19:29:00,0 +9917,1968-06-28 04:09:00,0 +5573,1966-05-18 15:52:00,0 +9995,1967-04-17 02:30:00,0 +6833,1966-03-27 23:36:00,0 +6425,1968-04-30 03:36:00,0 +2054,1966-07-05 10:55:00,0 +5894,1968-07-29 10:02:00,0 +4781,1968-07-09 09:14:00,0 +3334,1966-07-14 19:43:00,0 +1818,1969-02-26 10:57:00,0 +5199,1969-07-30 05:31:00,0 +6480,1968-10-12 21:23:00,0 +4190,1969-09-06 10:36:00,0 +4137,1967-11-05 05:53:00,0 +3512,1969-03-23 01:23:00,0 +6893,1966-07-20 14:05:00,0 +5475,1968-01-01 02:48:00,0 +3485,1966-06-17 21:21:00,0 +8513,1966-01-26 21:02:00,0 +8969,1967-10-01 11:07:00,0 +3460,1967-09-21 09:27:00,0 +8226,1968-05-24 11:03:00,0 +5941,1967-11-17 14:05:00,0 +4171,1969-08-06 16:53:00,0 +9267,1965-01-30 16:05:00,0 +2663,1967-10-28 10:35:00,0 +2787,1967-02-13 02:50:00,0 +6491,1965-11-25 16:23:00,0 +9565,1966-10-07 07:02:00,0 +2664,1969-05-31 01:52:00,0 +7882,1966-04-22 16:20:00,0 +7440,1965-11-28 17:41:00,0 +8207,1965-10-09 11:02:00,0 +6903,1965-05-30 20:29:00,0 +287,1967-06-02 13:09:00,0 +9853,1965-06-07 09:00:00,0 +7957,1967-09-06 03:40:00,0 +3729,1968-08-11 01:06:00,0 +4070,1965-10-18 13:17:00,0 +6089,1965-04-30 15:48:00,0 +2537,1965-09-14 04:16:00,0 +6942,1969-01-24 12:19:00,0 +4277,1966-12-05 05:38:00,0 +190,1968-06-09 14:18:00,0 +1910,1968-02-12 16:19:00,0 +6772,1968-11-23 07:57:00,0 +7767,1968-02-23 12:10:00,0 +9028,1967-07-09 22:16:00,0 +4112,1967-03-16 21:40:00,0 +7322,1969-12-10 17:59:00,0 +8653,1969-11-20 18:27:00,0 +3388,1966-07-17 08:28:00,0 +4865,1969-04-19 09:51:00,0 +4092,1965-12-07 20:52:00,0 +945,1965-07-24 23:35:00,0 +4809,1966-06-08 21:31:00,0 +9750,1966-03-10 05:25:00,0 +8623,1968-10-03 12:25:00,0 +179,1965-01-20 12:39:00,0 +7542,1968-09-14 03:26:00,0 +477,1967-09-19 07:48:00,0 +5258,1966-09-07 22:34:00,0 +5108,1965-12-18 05:26:00,0 +1997,1965-12-21 19:04:00,0 +4768,1965-07-19 08:42:00,0 +5486,1969-04-08 17:51:00,0 +3450,1967-09-08 19:13:00,0 +1476,1966-11-21 11:38:00,0 +3120,1969-10-06 23:42:00,0 +1675,1969-10-07 12:56:00,0 +5667,1968-09-29 22:49:00,0 +3972,1966-11-29 18:12:00,0 +7988,1969-10-12 23:33:00,0 +4574,1965-02-11 12:05:00,0 +5079,1968-09-18 01:40:00,0 +5977,1967-01-02 16:40:00,0 +4429,1965-06-15 19:15:00,0 +2926,1967-02-09 18:40:00,0 +5181,1967-12-17 22:35:00,0 +560,1969-05-29 20:45:00,0 +836,1966-12-24 17:53:00,0 +977,1966-01-02 19:16:00,0 +935,1967-01-03 20:24:00,0 +5243,1967-11-02 20:49:00,0 +8456,1969-10-11 21:24:00,0 +5834,1967-04-15 14:18:00,0 +9042,1965-11-23 05:31:00,0 +4635,1968-12-10 18:20:00,0 +1801,1968-11-15 06:32:00,0 +2044,1965-08-18 07:16:00,0 +7809,1968-12-10 01:21:00,0 +9381,1966-06-20 02:57:00,0 +2461,1968-12-14 04:03:00,0 +7387,1969-03-28 15:57:00,0 +8307,1965-07-01 20:58:00,0 +2849,1965-04-28 15:10:00,0 +7724,1966-01-23 10:28:00,0 +2339,1967-09-29 14:07:00,0 +4388,1967-01-16 05:40:00,0 +837,1966-03-04 00:05:00,0 +9425,1968-02-12 00:10:00,0 +4854,1968-10-27 03:57:00,0 +9454,1967-09-13 15:33:00,0 +1852,1969-11-02 05:24:00,0 +4943,1965-09-29 04:06:00,0 +8839,1969-08-31 13:07:00,0 +9621,1968-11-12 08:30:00,0 +4168,1966-03-16 04:08:00,0 +2843,1965-07-12 12:43:00,0 +8110,1968-04-26 16:30:00,0 +1527,1969-08-03 17:04:00,0 +1265,1969-03-12 07:32:00,0 +3072,1966-12-20 05:21:00,0 +7232,1968-02-29 05:29:00,0 +1982,1967-06-15 08:58:00,0 +9516,1966-04-30 05:45:00,0 +2401,1968-08-08 01:00:00,0 +1607,1965-04-13 02:35:00,0 +7492,1969-02-11 07:41:00,0 +6667,1966-11-29 21:19:00,0 +9139,1967-06-24 02:54:00,0 +2906,1967-11-15 01:29:00,0 +6344,1967-07-21 02:48:00,0 +6435,1966-11-25 03:40:00,0 +5146,1967-01-06 10:44:00,0 +4230,1967-12-04 20:42:00,0 +9174,1966-04-22 16:05:00,0 +3805,1966-02-24 14:08:00,0 +8912,1968-08-04 00:11:00,0 +5544,1966-11-20 02:56:00,0 +1255,1969-04-29 01:51:00,0 +6818,1966-01-11 03:12:00,0 +6511,1966-12-01 15:35:00,0 +9195,1966-05-23 06:38:00,0 +258,1967-03-12 12:53:00,0 +9888,1969-02-12 02:03:00,0 +1530,1965-08-23 05:36:00,0 +8998,1968-07-01 07:22:00,0 +6462,1969-06-23 01:49:00,0 +2865,1969-01-28 06:00:00,0 +6882,1966-07-30 22:56:00,0 +9259,1969-04-24 22:18:00,0 +1956,1967-01-18 13:02:00,0 +6065,1967-03-05 19:31:00,0 +4267,1966-08-29 10:10:00,0 +9215,1969-08-25 11:34:00,0 +2503,1968-08-23 23:10:00,0 +8402,1965-06-14 08:48:00,0 +8209,1968-06-23 03:25:00,0 +9490,1969-03-02 17:22:00,0 +6812,1965-01-24 13:31:00,0 +8476,1967-07-03 02:01:00,0 +4958,1967-09-30 05:31:00,0 +4197,1969-04-22 17:16:00,0 +6609,1968-09-11 15:17:00,0 +9165,1965-05-04 15:26:00,0 +3392,1966-02-19 15:05:00,0 +8600,1967-03-20 23:37:00,0 +7230,1966-12-05 05:51:00,0 +8170,1968-06-24 01:07:00,0 +1446,1969-11-21 11:50:00,0 +1759,1965-06-20 09:04:00,0 +8347,1965-10-12 12:12:00,0 +8527,1968-05-12 22:59:00,0 +857,1965-05-12 06:11:00,0 +3405,1968-09-02 11:01:00,0 +1029,1968-05-17 17:07:00,0 +1822,1969-02-25 06:47:00,0 +2342,1968-05-09 03:24:00,0 +305,1969-10-07 14:43:00,0 +2576,1969-04-27 13:45:00,0 +321,1969-07-24 15:35:00,0 +1826,1966-03-04 00:57:00,0 +915,1968-03-28 03:27:00,0 +2002,1967-12-23 19:22:00,0 +7670,1965-02-04 23:56:00,0 +5261,1968-04-30 16:17:00,0 +8499,1969-12-08 02:11:00,0 +4709,1969-01-09 22:03:00,0 +6872,1968-05-05 14:40:00,0 +7787,1966-01-24 19:19:00,0 +5613,1967-12-17 11:27:00,0 +3053,1968-05-30 22:17:00,0 +3723,1967-02-18 01:41:00,0 +8384,1967-09-03 08:49:00,0 +9818,1968-01-04 07:06:00,0 +5246,1966-11-18 06:28:00,0 +1003,1969-08-07 05:31:00,0 +4107,1969-12-29 11:10:00,0 +6730,1968-11-20 09:03:00,0 +6022,1966-03-25 03:11:00,0 +1133,1967-07-09 12:28:00,0 +4908,1966-11-07 10:09:00,0 +2413,1968-09-03 19:43:00,0 +3472,1969-11-27 01:01:00,0 +8003,1969-04-24 12:16:00,0 +6418,1969-09-28 17:05:00,0 +8757,1969-02-02 15:13:00,0 +1233,1967-10-16 19:02:00,0 +5958,1965-07-12 02:07:00,0 +5517,1965-11-13 04:04:00,0 +3276,1966-10-24 20:15:00,0 +2071,1965-08-06 01:13:00,0 +5161,1965-07-26 19:11:00,0 +2444,1966-07-05 06:51:00,0 +7085,1969-10-14 20:34:00,0 +9191,1967-10-14 14:46:00,0 +8395,1967-01-23 21:51:00,0 +6482,1966-02-06 23:48:00,0 +2769,1965-12-25 01:35:00,0 +5108,1969-06-04 11:07:00,0 +2461,1967-01-27 10:39:00,0 +8930,1966-10-11 12:25:00,0 +3560,1967-08-06 13:18:00,0 +7752,1967-10-10 07:59:00,0 +3753,1969-11-13 18:43:00,0 +1228,1965-02-23 22:19:00,0 +9754,1966-03-20 14:00:00,0 +3186,1969-06-20 18:33:00,0 +9848,1968-01-29 16:57:00,0 +9692,1968-12-19 05:07:00,0 +6688,1966-05-29 16:36:00,0 +2538,1965-12-03 07:28:00,0 +231,1965-12-14 15:43:00,0 +5510,1965-02-25 03:44:00,0 +5461,1969-11-01 09:25:00,0 +6368,1968-08-01 19:29:00,0 +5880,1966-10-18 21:33:00,0 +6172,1968-02-04 12:20:00,0 +6098,1968-10-17 23:33:00,0 +7207,1966-10-12 21:05:00,0 +2429,1968-01-03 00:49:00,0 +3279,1967-05-17 12:12:00,0 +335,1965-08-29 07:54:00,0 +2421,1965-03-21 01:03:00,0 +8384,1969-12-01 21:20:00,0 +8317,1965-02-01 06:28:00,0 +7237,1965-05-21 05:52:00,0 +7764,1967-12-08 11:54:00,0 +2695,1966-05-05 12:35:00,0 +1490,1969-09-22 08:55:00,0 +2156,1966-06-09 09:44:00,0 +2025,1965-04-11 09:02:00,0 +5285,1969-11-09 05:03:00,0 +8458,1965-03-13 18:02:00,0 +7737,1966-09-07 16:09:00,0 +1408,1965-11-04 06:34:00,0 +6408,1965-06-02 15:09:00,0 +6715,1967-04-28 03:46:00,0 +9194,1965-05-20 18:14:00,0 +1584,1965-04-24 15:12:00,0 +8518,1967-01-23 06:31:00,0 +6583,1969-01-17 12:52:00,0 +9426,1966-05-05 19:33:00,0 +5856,1969-08-15 09:12:00,0 +3605,1968-06-18 08:59:00,0 +4597,1967-01-18 01:04:00,0 +5572,1966-08-27 22:21:00,0 +7197,1967-06-12 13:00:00,0 +3966,1967-03-25 04:34:00,0 +3312,1969-12-08 00:37:00,0 +9805,1966-08-20 10:04:00,0 +5456,1968-06-11 06:20:00,0 +8656,1969-03-29 01:36:00,0 +805,1965-09-24 17:52:00,0 +6139,1968-03-03 03:45:00,0 +3062,1966-03-14 09:57:00,0 +3387,1969-06-27 01:10:00,0 +1208,1967-07-29 20:45:00,0 +6068,1966-05-05 11:39:00,0 +6191,1969-06-20 13:47:00,0 +4283,1968-11-08 22:54:00,0 +9072,1966-08-28 21:29:00,0 +5219,1967-05-24 02:32:00,0 +537,1966-05-30 10:26:00,0 +1887,1969-03-30 10:29:00,0 +6174,1967-09-28 10:48:00,0 +6212,1969-08-08 15:09:00,0 +9939,1967-02-08 01:24:00,0 +8126,1967-11-20 17:44:00,0 +7764,1969-12-20 05:50:00,0 +6718,1968-01-02 06:11:00,0 +6538,1967-11-29 08:55:00,0 +3657,1968-09-16 05:17:00,0 +420,1969-01-29 14:56:00,0 +7448,1968-12-19 06:10:00,0 +6116,1967-03-11 07:15:00,0 +2495,1969-07-17 20:51:00,0 +7662,1967-10-18 01:41:00,0 +8030,1966-02-20 14:15:00,0 +7255,1965-06-11 22:25:00,0 +2152,1965-07-12 13:20:00,0 +6889,1969-09-15 01:35:00,0 +1425,1969-01-30 18:34:00,0 +4373,1965-05-22 05:16:00,0 +3205,1965-01-11 10:19:00,0 +9477,1966-07-02 07:33:00,0 +7191,1969-09-06 02:22:00,0 +2343,1967-04-14 03:16:00,0 +4451,1969-09-06 22:49:00,0 +6094,1967-11-08 23:45:00,0 +3911,1969-09-02 22:54:00,0 +5073,1965-11-07 10:41:00,0 +1410,1966-07-05 17:44:00,0 +8214,1965-05-12 21:03:00,0 +8419,1967-10-27 08:28:00,0 +8296,1968-02-18 10:19:00,0 +9906,1968-03-20 11:13:00,0 +4753,1969-10-29 19:40:00,0 +2719,1965-06-26 10:27:00,0 +9940,1966-11-22 22:23:00,0 +4614,1968-10-24 08:53:00,0 +6779,1965-10-01 10:39:00,0 +8747,1967-12-13 02:08:00,0 +2437,1965-01-13 10:33:00,0 +8570,1967-02-06 04:11:00,0 +7365,1969-06-21 14:57:00,0 +5993,1966-10-07 05:05:00,0 +1456,1968-03-11 12:45:00,0 +8263,1965-02-15 07:58:00,0 +3120,1968-01-02 22:57:00,0 +1196,1968-11-01 06:34:00,0 +2080,1968-09-11 01:50:00,0 +762,1965-08-15 16:55:00,0 +4936,1966-01-31 21:47:00,0 +4883,1968-05-25 07:10:00,0 +634,1965-04-07 12:09:00,0 +9833,1967-04-03 11:17:00,0 +54,1968-01-14 03:04:00,0 +1090,1967-10-22 00:35:00,0 +306,1969-11-15 14:22:00,0 +7880,1966-04-26 21:31:00,0 +4646,1968-12-02 09:12:00,0 +1631,1967-11-22 13:04:00,0 +8212,1968-10-10 05:52:00,0 +9358,1968-08-28 15:23:00,0 +9208,1966-10-20 02:03:00,0 +8875,1969-08-27 03:47:00,0 +8181,1967-05-22 13:29:00,0 +8254,1966-02-10 18:36:00,0 +5358,1967-10-15 02:20:00,0 +4226,1969-06-12 19:17:00,0 +4427,1969-07-16 20:08:00,0 +7108,1969-11-29 14:40:00,0 +7328,1969-07-08 03:35:00,0 +8793,1965-06-15 01:27:00,0 +1205,1968-11-15 21:46:00,0 +1672,1966-05-10 08:39:00,0 +3106,1966-05-04 10:11:00,0 +871,1969-03-17 04:12:00,0 +4212,1965-10-25 09:42:00,0 +668,1969-12-25 09:19:00,0 +2988,1969-08-29 15:08:00,0 +3390,1968-10-19 20:04:00,0 +934,1966-10-09 16:16:00,0 +4062,1969-08-30 14:34:00,0 +6440,1969-10-19 21:13:00,0 +3162,1968-11-15 13:39:00,0 +9299,1965-04-19 03:43:00,0 +5978,1965-10-01 12:28:00,0 +5378,1969-09-10 01:14:00,0 +6826,1966-04-20 09:35:00,0 +1301,1968-07-20 21:06:00,0 +9682,1968-10-15 10:04:00,0 +4047,1966-05-17 10:52:00,0 +9934,1968-07-30 03:07:00,0 +7270,1969-08-15 05:37:00,0 +7002,1969-04-08 11:31:00,0 +407,1965-11-22 03:02:00,0 +5042,1965-04-19 00:23:00,0 +9026,1969-04-20 01:35:00,0 +5560,1966-06-24 05:52:00,0 +349,1968-05-22 02:31:00,0 +6354,1968-12-11 02:26:00,0 +6246,1967-05-18 16:45:00,0 +7826,1968-03-13 02:14:00,0 +6092,1967-02-10 07:26:00,0 +5065,1968-08-05 20:17:00,0 +4632,1968-01-29 11:45:00,0 +4580,1969-05-10 00:39:00,0 +7707,1965-03-20 13:02:00,0 +8275,1965-09-24 23:06:00,0 +1635,1966-07-23 02:22:00,0 +2138,1965-10-03 16:38:00,0 +2892,1967-10-17 11:45:00,0 +5083,1969-11-13 07:58:00,0 +5755,1966-03-15 22:28:00,0 +4136,1969-05-10 13:59:00,0 +6105,1969-06-22 22:32:00,0 +2132,1965-10-18 05:17:00,0 +6690,1965-05-10 18:39:00,0 +4205,1966-12-05 11:23:00,0 +6209,1969-09-15 12:00:00,0 +4801,1967-03-16 07:16:00,0 +6401,1968-03-21 14:38:00,0 +4027,1965-07-14 05:35:00,0 +1974,1966-04-27 06:19:00,0 +5441,1967-07-05 15:27:00,0 +7885,1968-07-26 05:27:00,0 +8906,1966-06-03 17:40:00,0 +8934,1965-04-16 10:32:00,0 +7341,1968-10-02 16:08:00,0 +6272,1969-09-19 02:34:00,0 +6421,1965-05-08 03:45:00,0 +7619,1968-03-24 11:13:00,0 +8681,1966-02-18 11:37:00,0 +5292,1968-10-02 13:42:00,0 +871,1967-06-21 11:05:00,0 +6158,1969-05-25 21:23:00,0 +3199,1969-11-23 20:53:00,0 +873,1968-08-10 09:37:00,0 +90,1968-02-12 23:23:00,0 +2532,1967-11-19 05:24:00,0 +7321,1965-12-30 14:10:00,0 +305,1968-12-28 04:14:00,0 +324,1967-05-23 02:30:00,0 +9157,1967-08-11 06:41:00,0 +7822,1966-09-30 05:54:00,0 +9304,1969-08-02 04:54:00,0 +4583,1966-08-05 10:29:00,0 +9576,1969-12-17 01:18:00,0 +2478,1968-03-09 16:17:00,0 +106,1968-01-25 10:46:00,0 +9290,1969-10-14 20:49:00,0 +3562,1969-05-12 22:50:00,0 +2422,1968-12-13 21:30:00,0 +9628,1966-09-23 07:25:00,0 +9278,1966-03-01 03:21:00,0 +1294,1968-08-24 14:51:00,0 +1518,1965-06-05 15:29:00,0 +8276,1967-08-24 18:18:00,0 +9985,1966-10-25 21:06:00,0 +2405,1965-09-22 03:54:00,0 +4010,1968-03-24 05:29:00,0 +3582,1965-06-02 16:10:00,0 +9297,1966-03-20 10:19:00,0 +2735,1966-09-08 19:52:00,0 +2834,1967-08-11 09:44:00,0 +1953,1965-03-14 06:02:00,0 +8107,1966-07-26 19:24:00,0 +8079,1967-08-04 19:42:00,0 +9814,1967-06-15 05:33:00,0 +5570,1968-07-31 12:57:00,0 +8193,1966-03-22 19:50:00,0 +2239,1968-02-01 04:37:00,0 +3646,1967-08-05 12:54:00,0 +5366,1965-01-08 12:39:00,0 +7299,1969-10-14 10:11:00,0 +6134,1966-01-26 19:53:00,0 +8908,1966-08-10 10:37:00,0 +8895,1965-11-10 00:52:00,0 +8033,1965-12-01 02:58:00,0 +1471,1965-11-02 14:01:00,0 +6436,1965-09-16 15:02:00,0 +5191,1968-08-13 05:42:00,0 +5769,1965-09-30 15:23:00,0 +4137,1967-09-22 16:45:00,0 +7802,1966-08-21 12:37:00,0 +9638,1969-10-16 09:13:00,0 +4193,1965-11-09 20:52:00,0 +8674,1969-09-27 12:50:00,0 +3068,1969-02-18 16:17:00,0 +6443,1969-03-26 08:36:00,0 +7003,1969-01-27 09:13:00,0 +9586,1966-08-21 21:30:00,0 +8435,1969-10-19 12:44:00,0 +6792,1966-07-18 16:40:00,0 +551,1965-09-18 09:39:00,0 +1179,1967-02-07 12:39:00,0 +8384,1968-04-08 02:21:00,0 +5984,1966-03-29 11:21:00,0 +7663,1969-12-18 07:46:00,0 +9634,1969-01-10 14:48:00,0 +4073,1965-11-20 09:26:00,0 +2814,1968-12-15 01:38:00,0 +3094,1965-11-23 11:45:00,0 +9945,1967-05-01 00:05:00,0 +7043,1969-07-27 21:08:00,0 +4900,1967-06-24 07:32:00,0 +7691,1968-05-08 13:58:00,0 +6463,1967-12-02 23:42:00,0 +8943,1969-09-16 23:32:00,0 +567,1966-01-23 03:24:00,0 +8361,1965-09-27 05:31:00,0 +8775,1966-04-30 02:06:00,0 +7445,1965-03-13 07:16:00,0 +6502,1968-06-20 08:39:00,0 +6800,1967-07-19 13:54:00,0 +8721,1968-03-09 08:17:00,0 +9724,1966-06-25 05:57:00,0 +5335,1968-12-19 17:42:00,0 +3706,1968-05-14 05:06:00,0 +215,1968-08-16 05:58:00,0 +4512,1965-10-26 17:39:00,0 +2961,1965-07-20 10:06:00,0 +3934,1967-04-01 08:08:00,0 +4408,1969-04-25 13:19:00,0 +7228,1966-10-26 05:32:00,0 +7674,1967-02-09 00:38:00,0 +6894,1968-03-08 02:23:00,0 +3678,1965-10-28 21:51:00,0 +1650,1966-03-12 00:37:00,0 +5404,1965-11-01 21:16:00,0 +4648,1965-10-03 11:31:00,0 +6012,1968-09-26 11:29:00,0 +325,1969-06-16 05:40:00,0 +9188,1966-01-24 04:28:00,0 +2210,1968-07-07 22:36:00,0 +5099,1967-04-29 19:08:00,0 +5446,1967-08-21 16:48:00,0 +3469,1969-03-13 07:18:00,0 +5894,1966-06-07 10:14:00,0 +1098,1969-05-18 21:35:00,0 +7937,1968-04-07 02:13:00,0 +961,1965-03-31 12:15:00,0 +1984,1969-09-29 18:05:00,0 +3727,1967-01-05 08:49:00,0 +5984,1965-03-25 02:58:00,0 +5703,1966-02-17 22:51:00,0 +8247,1969-03-24 18:53:00,0 +8377,1966-01-30 12:17:00,0 +6029,1969-12-20 03:57:00,0 +7458,1965-02-25 08:28:00,0 +835,1969-07-13 13:30:00,0 +8380,1969-06-19 01:34:00,0 +8536,1969-09-07 05:34:00,0 +4806,1966-07-27 14:17:00,0 +3166,1967-11-04 01:51:00,0 +2211,1968-06-09 06:19:00,0 +8369,1966-02-15 14:47:00,0 +5595,1965-03-16 03:06:00,0 +2844,1965-01-29 04:26:00,0 +7191,1965-05-07 00:56:00,0 +3548,1966-03-23 18:18:00,0 +5666,1965-05-10 15:21:00,0 +3380,1966-07-05 02:58:00,0 +3578,1965-11-02 14:35:00,0 +5911,1968-04-14 21:31:00,0 +6410,1969-09-10 14:13:00,0 +1063,1969-01-07 18:32:00,0 +2847,1965-12-24 12:59:00,0 +5518,1967-07-30 06:33:00,0 +2192,1965-03-17 23:11:00,0 +8907,1969-07-03 01:34:00,0 +7558,1967-12-08 20:39:00,0 +446,1965-12-29 13:31:00,0 +9286,1968-10-30 11:37:00,0 +1366,1967-03-15 11:19:00,0 +3517,1965-08-12 06:57:00,0 +6933,1969-05-07 21:19:00,0 +4292,1966-12-11 05:27:00,0 +2436,1965-05-10 12:14:00,0 +9848,1967-10-03 15:56:00,0 +5375,1968-10-06 20:30:00,0 +4961,1967-04-26 06:51:00,0 +5476,1969-01-27 18:18:00,0 +2119,1965-10-05 00:15:00,0 +5607,1968-12-11 03:13:00,0 +9446,1967-04-04 05:58:00,0 +6104,1965-12-19 05:46:00,0 +2764,1967-02-22 14:21:00,0 +9882,1966-10-22 18:33:00,0 +6747,1968-06-10 18:20:00,0 +8427,1967-11-30 16:15:00,0 +8356,1968-01-09 16:06:00,0 +5271,1968-03-26 20:19:00,0 +6963,1965-06-05 18:07:00,0 +118,1967-10-13 23:36:00,0 +107,1966-10-19 10:14:00,0 +1660,1967-05-07 18:37:00,0 +3659,1968-03-19 08:01:00,0 +3025,1969-10-20 08:41:00,0 +5291,1967-11-06 06:22:00,0 +3477,1968-08-20 08:55:00,0 +78,1969-12-16 11:38:00,0 +6918,1968-04-20 22:09:00,0 +8037,1968-07-06 22:10:00,0 +9253,1965-05-06 00:43:00,0 +9767,1969-06-16 09:10:00,0 +4510,1966-05-31 09:09:00,0 +7100,1967-09-08 06:39:00,0 +3811,1969-05-30 10:26:00,0 +9657,1967-04-03 12:01:00,0 +8104,1966-03-28 10:03:00,0 +1345,1966-06-21 20:43:00,0 +1622,1966-03-28 20:57:00,0 +9981,1968-06-24 23:16:00,0 +3549,1965-03-08 09:44:00,0 +4592,1969-09-19 15:43:00,0 +821,1967-07-05 05:55:00,0 +2939,1966-12-16 07:25:00,0 +8735,1966-05-18 11:00:00,0 +2231,1966-10-07 19:49:00,0 +6102,1968-12-16 23:30:00,0 +9061,1967-09-21 12:56:00,0 +2786,1969-11-27 05:02:00,0 +8973,1965-04-21 08:38:00,0 +9846,1966-03-07 02:38:00,0 +4444,1965-11-19 16:25:00,0 +693,1969-06-12 11:40:00,0 +1647,1965-01-04 01:20:00,0 +1205,1968-06-25 00:40:00,0 +3458,1967-05-25 23:59:00,0 +5064,1967-02-26 21:49:00,0 +3092,1968-04-01 15:11:00,0 +9992,1968-08-14 14:27:00,0 +8232,1968-09-21 10:28:00,0 +8058,1968-04-11 12:26:00,0 +7901,1968-08-25 15:47:00,0 +9342,1969-01-02 00:20:00,0 +616,1967-12-10 09:42:00,0 +5064,1969-09-01 18:20:00,0 +8796,1968-07-25 10:03:00,0 +8974,1969-12-09 23:31:00,0 +9351,1969-02-09 15:23:00,0 +9437,1966-01-01 21:03:00,0 +4347,1966-11-26 11:26:00,0 +7916,1967-01-04 20:58:00,0 +68,1969-04-23 17:28:00,0 +3905,1966-12-25 20:49:00,0 +3949,1965-03-28 20:50:00,0 +5530,1969-07-28 03:20:00,0 +2684,1966-07-20 05:59:00,0 +3638,1966-08-01 22:41:00,0 +7519,1969-11-15 13:24:00,0 +1270,1967-11-09 10:58:00,0 +6712,1969-08-26 22:59:00,0 +1548,1966-01-16 18:55:00,0 +8449,1968-09-21 20:56:00,0 +6140,1968-11-29 23:56:00,0 +1886,1969-08-21 05:18:00,0 +5881,1965-06-04 13:51:00,0 +4235,1965-10-26 06:00:00,0 +7836,1969-03-09 10:39:00,0 +2868,1969-12-27 19:38:00,0 +8797,1965-02-18 08:30:00,0 +9825,1967-07-08 15:02:00,0 +4559,1965-01-14 07:48:00,0 +2115,1969-02-22 07:24:00,0 +8112,1966-02-08 07:54:00,0 +2886,1966-06-19 01:06:00,0 +7544,1965-06-29 18:08:00,0 +4638,1969-03-11 08:25:00,0 +2034,1965-03-06 07:59:00,0 +8165,1969-09-03 23:35:00,0 +2126,1965-10-02 00:31:00,0 +1936,1967-02-21 23:55:00,0 +9668,1965-03-16 23:36:00,0 +3914,1966-06-08 05:52:00,0 +7251,1968-01-01 18:05:00,0 +4104,1966-05-12 02:32:00,0 +4130,1969-10-10 23:36:00,0 +4684,1969-04-12 00:09:00,0 +4389,1968-02-02 15:32:00,0 +52,1969-01-12 08:15:00,0 +2337,1965-11-07 23:16:00,0 +9030,1966-09-12 05:32:00,0 +9260,1965-07-10 13:35:00,0 +7795,1966-09-15 08:23:00,0 +9418,1966-03-20 15:35:00,0 +6608,1967-10-31 08:56:00,0 +595,1965-06-15 14:18:00,0 +9583,1969-03-31 23:12:00,0 +9755,1965-08-21 20:18:00,0 +4201,1968-12-02 13:02:00,0 +5771,1968-10-21 02:21:00,0 +1508,1969-03-07 22:29:00,0 +4471,1968-06-17 02:34:00,0 +5136,1969-01-21 10:45:00,0 +4434,1966-11-13 21:34:00,0 +143,1965-05-13 20:30:00,0 +7133,1965-11-19 02:03:00,0 +716,1966-11-16 16:59:00,0 +9504,1969-01-14 10:18:00,0 +9803,1969-01-28 02:47:00,0 +6434,1966-09-16 22:28:00,0 +376,1965-01-13 19:20:00,0 +2900,1965-06-06 18:20:00,0 +7458,1966-02-06 01:52:00,0 +4123,1966-05-22 03:21:00,0 +7637,1967-02-01 15:50:00,0 +7043,1969-12-04 16:30:00,0 +8703,1969-09-01 15:30:00,0 +7786,1966-07-11 07:50:00,0 +5421,1969-03-22 16:59:00,0 +9763,1969-06-17 00:29:00,0 +9382,1967-09-03 02:32:00,0 +4900,1968-04-25 06:51:00,0 +9369,1968-10-23 10:43:00,0 +6643,1965-11-06 18:22:00,0 +1712,1967-05-22 17:31:00,0 +817,1969-05-20 23:30:00,0 +3422,1966-05-17 06:39:00,0 +3207,1965-08-28 06:33:00,0 +7303,1968-10-30 22:51:00,0 +7813,1969-05-13 05:53:00,0 +5127,1965-11-23 09:34:00,0 +5356,1968-11-16 03:01:00,0 +3247,1968-02-11 07:47:00,0 +4619,1968-08-06 16:23:00,0 +1489,1968-11-09 16:37:00,0 +6537,1966-01-03 23:51:00,0 +9699,1966-06-21 12:15:00,0 +9628,1968-01-22 08:32:00,0 +7151,1965-07-18 05:07:00,0 +3528,1968-08-17 17:11:00,0 +8184,1968-03-14 17:38:00,0 +4210,1965-10-05 02:11:00,0 +9115,1966-04-17 02:50:00,0 +8754,1968-03-09 14:43:00,0 +9465,1968-12-17 21:52:00,0 +5112,1968-07-04 00:15:00,0 +4741,1969-10-25 17:54:00,0 +5853,1969-04-29 05:49:00,0 +8970,1965-03-14 23:11:00,0 +6253,1968-11-13 22:11:00,0 +5765,1967-09-10 13:17:00,0 +8400,1968-05-02 21:20:00,0 +2952,1969-10-24 02:46:00,0 +8754,1966-10-09 07:54:00,0 +8831,1967-01-07 03:19:00,0 +4167,1966-07-06 23:04:00,0 +4312,1965-08-25 20:45:00,0 +6119,1965-11-16 15:17:00,0 +7171,1968-11-24 21:06:00,0 +3791,1968-10-17 22:24:00,0 +6668,1965-10-24 10:15:00,0 +5782,1967-10-04 09:55:00,0 +7892,1969-06-07 11:00:00,0 +5302,1968-05-28 10:34:00,0 +7314,1968-05-20 12:28:00,0 +4876,1967-08-27 15:20:00,0 +6435,1965-09-26 13:46:00,0 +8595,1966-08-27 07:22:00,0 +2700,1968-03-11 13:35:00,0 +6642,1965-12-30 15:53:00,0 +1694,1965-01-20 10:47:00,0 +2103,1969-08-07 21:27:00,0 +9420,1967-03-13 01:01:00,0 +6030,1966-05-14 00:23:00,0 +8489,1965-09-11 02:38:00,0 +5376,1969-04-14 21:59:00,0 +1798,1969-11-05 22:03:00,0 +9771,1966-03-13 11:59:00,0 +6402,1966-12-18 06:22:00,0 +4244,1965-03-30 13:38:00,0 +964,1969-02-27 21:23:00,0 +1118,1968-03-13 21:51:00,0 +7778,1965-07-25 00:57:00,0 +6005,1966-10-01 08:12:00,0 +7297,1969-10-08 14:40:00,0 +7595,1966-04-25 02:24:00,0 +5167,1966-12-04 15:55:00,0 +5270,1966-09-29 03:09:00,0 +585,1965-11-16 22:20:00,0 +6909,1966-04-06 11:05:00,0 +8064,1967-12-28 16:28:00,0 +6839,1966-10-10 19:19:00,0 +2494,1965-01-19 11:31:00,0 +2120,1965-05-02 18:44:00,0 +5979,1968-12-27 22:36:00,0 +6926,1965-12-17 05:48:00,0 +986,1968-09-30 21:16:00,0 +4026,1968-02-25 00:39:00,0 +6415,1966-09-01 14:02:00,0 +8463,1966-11-11 01:11:00,0 +8082,1969-01-04 08:09:00,0 +5562,1966-03-29 17:27:00,0 +8601,1967-06-04 09:31:00,0 +3064,1968-10-17 02:43:00,0 +7458,1969-10-11 14:08:00,0 +1230,1969-02-27 02:19:00,0 +2004,1967-04-28 09:13:00,0 +2468,1965-02-13 19:13:00,0 +6241,1968-11-19 01:49:00,0 +7141,1967-08-03 09:21:00,0 +3381,1966-04-21 03:13:00,0 +7683,1967-09-29 08:50:00,0 +2956,1968-04-30 07:04:00,0 +3919,1969-10-11 02:17:00,0 +5144,1965-09-23 21:24:00,0 +4753,1965-04-18 02:25:00,0 +7526,1965-06-20 21:52:00,0 +2264,1969-02-16 01:03:00,0 +9098,1965-11-13 05:04:00,0 +9323,1969-02-24 00:17:00,0 +8164,1967-05-22 03:40:00,0 +7164,1965-05-17 09:44:00,0 +6591,1966-02-18 11:05:00,0 +3470,1966-12-04 22:50:00,0 +1616,1968-12-05 08:23:00,0 +1937,1965-02-18 08:39:00,0 +7926,1965-05-25 01:19:00,0 +8850,1968-10-13 01:23:00,0 +2418,1969-08-20 07:32:00,0 +5290,1966-06-30 00:22:00,0 +5596,1969-01-09 04:17:00,0 +4879,1968-06-29 19:38:00,0 +8085,1968-03-14 16:03:00,0 +4110,1967-06-10 10:50:00,0 +7841,1965-02-06 18:51:00,0 +9184,1966-08-11 12:27:00,0 +1330,1967-10-12 19:24:00,0 +8594,1969-09-23 11:46:00,0 +5837,1966-06-25 19:48:00,0 +2337,1966-11-08 14:33:00,0 +1924,1968-04-07 11:50:00,0 +4714,1968-08-11 17:47:00,0 +9665,1968-11-15 10:31:00,0 +7463,1965-11-30 04:53:00,0 +5973,1967-06-27 05:58:00,0 +6912,1966-10-26 15:32:00,0 +4243,1965-01-12 17:17:00,0 +5834,1965-12-31 05:10:00,0 +8258,1965-03-03 18:26:00,0 +6232,1965-03-03 03:39:00,0 +8318,1965-12-28 02:14:00,0 +7845,1966-12-08 08:54:00,0 +5750,1969-12-21 09:51:00,0 +221,1968-12-07 06:59:00,0 +6149,1969-05-21 17:16:00,0 +3903,1966-05-25 03:18:00,0 +7189,1969-07-11 07:41:00,0 +7472,1965-02-08 23:22:00,0 +423,1967-12-27 13:14:00,0 +8529,1965-05-01 19:09:00,0 +2711,1967-05-24 17:08:00,0 +1147,1965-01-30 13:13:00,0 +5320,1965-03-27 19:33:00,0 +2591,1969-09-20 01:39:00,0 +7965,1969-05-14 13:18:00,0 +848,1967-10-26 16:57:00,0 +4346,1969-06-06 02:24:00,0 +825,1969-06-19 07:32:00,0 +5706,1969-01-06 10:45:00,0 +1310,1969-09-27 11:20:00,0 +1834,1965-08-15 08:26:00,0 +719,1967-12-29 07:10:00,0 +7258,1969-08-21 07:38:00,0 +8172,1967-05-31 03:46:00,0 +8562,1965-10-16 09:28:00,0 +9641,1969-02-18 16:06:00,0 +9125,1965-11-15 21:01:00,0 +3522,1965-11-09 18:27:00,0 +6359,1968-01-12 19:17:00,0 +8818,1969-03-26 12:58:00,0 +9138,1965-02-04 17:42:00,0 +1818,1969-05-03 01:38:00,0 +6442,1969-06-17 18:31:00,0 +5913,1967-06-23 13:30:00,0 +9117,1965-08-08 06:22:00,0 +7925,1965-02-12 10:14:00,0 +8225,1968-01-14 22:01:00,0 +9970,1967-11-17 10:51:00,0 +7098,1965-12-03 00:46:00,0 +8190,1966-10-26 09:53:00,0 +2256,1969-02-23 11:03:00,0 +1910,1967-08-23 14:07:00,0 +6494,1965-02-17 22:10:00,0 +901,1965-10-07 08:18:00,0 +4587,1967-07-03 08:44:00,0 +8084,1966-05-09 10:03:00,0 +9301,1965-04-11 12:49:00,0 +9481,1965-04-17 22:58:00,0 +5677,1965-06-28 17:39:00,0 +2974,1966-01-26 13:30:00,0 +1082,1966-04-29 06:03:00,0 +2446,1965-02-26 18:24:00,0 +4175,1966-03-21 11:22:00,0 +6817,1968-10-19 06:58:00,0 +6233,1965-06-16 17:46:00,0 +6924,1967-03-08 09:13:00,0 +3364,1968-12-08 04:40:00,0 +9208,1965-05-19 04:57:00,0 +9273,1967-09-13 06:37:00,0 +9597,1966-11-20 18:48:00,0 +9396,1967-04-03 02:21:00,0 +9826,1965-10-22 01:04:00,0 +2692,1967-09-25 20:40:00,0 +4901,1966-04-05 20:08:00,0 +4791,1967-05-04 15:43:00,0 +3740,1966-12-09 00:49:00,0 +6227,1968-01-27 11:42:00,0 +5991,1969-04-11 22:37:00,0 +4384,1968-07-24 09:51:00,0 +1799,1966-11-24 10:20:00,0 +2613,1965-12-29 00:01:00,0 +7008,1967-08-19 05:01:00,0 +4999,1966-12-25 19:43:00,0 +4630,1965-06-01 00:50:00,0 +6050,1967-05-19 08:05:00,0 +2216,1967-07-04 07:02:00,0 +7013,1968-01-20 00:11:00,0 +772,1967-01-11 09:54:00,0 +8271,1966-05-18 00:07:00,0 +120,1966-08-23 12:02:00,0 +2939,1967-11-01 17:38:00,0 +5048,1967-01-13 15:57:00,0 +6785,1969-11-10 17:04:00,0 +1706,1968-10-28 10:53:00,0 +2349,1967-07-25 03:54:00,0 +1982,1969-11-09 03:02:00,0 +8642,1969-05-05 07:58:00,0 +5560,1965-12-22 08:14:00,0 +629,1967-04-11 14:20:00,0 +4296,1968-05-25 11:03:00,0 +9220,1969-02-12 10:01:00,0 +6671,1967-11-24 06:53:00,0 +2919,1968-11-01 16:19:00,0 +2992,1968-11-12 07:28:00,0 +9019,1968-10-04 20:19:00,0 +6896,1969-01-23 11:04:00,0 +9710,1967-10-18 04:26:00,0 +4441,1966-10-31 13:48:00,0 +1160,1965-05-03 02:36:00,0 +1840,1966-12-13 17:37:00,0 +3239,1968-01-05 18:11:00,0 +5344,1967-09-18 05:36:00,0 +1324,1968-07-17 07:28:00,0 +8774,1966-03-24 01:14:00,0 +1315,1969-02-18 13:34:00,0 +8077,1966-07-10 18:19:00,0 +6036,1965-05-15 13:52:00,0 +565,1968-10-24 13:07:00,0 +8462,1966-10-08 19:28:00,0 +5150,1967-09-09 22:34:00,0 +4378,1969-07-12 02:15:00,0 +5868,1965-04-24 15:43:00,0 +1959,1969-01-11 10:33:00,0 +9577,1969-04-17 15:45:00,0 +497,1965-08-01 05:58:00,0 +7638,1966-01-10 15:12:00,0 +1557,1965-04-18 10:05:00,0 +4208,1969-12-05 12:04:00,0 +8549,1965-04-09 05:28:00,0 +3158,1966-06-17 16:26:00,0 +120,1967-05-30 17:29:00,0 +2251,1968-05-04 23:41:00,0 +3818,1969-08-11 18:42:00,0 +274,1967-11-15 10:27:00,0 +5754,1968-01-05 00:09:00,0 +4838,1965-08-12 07:32:00,0 +467,1968-05-27 21:37:00,0 +1484,1968-06-21 05:13:00,0 +548,1968-01-23 11:42:00,0 +1910,1966-03-16 07:50:00,0 +9969,1969-10-10 02:59:00,0 +7878,1969-03-29 11:53:00,0 +9745,1969-07-06 21:19:00,0 +1789,1967-12-10 20:53:00,0 +4977,1965-03-06 08:48:00,0 +385,1967-09-22 19:06:00,0 +6127,1965-03-06 21:45:00,0 +3799,1965-08-23 23:40:00,0 +5761,1969-07-01 22:15:00,0 +7903,1966-04-07 18:41:00,0 +5972,1968-01-20 07:04:00,0 +9841,1965-12-23 11:34:00,0 +1759,1966-05-25 06:37:00,0 +6898,1968-03-05 20:01:00,0 +4114,1969-02-16 06:57:00,0 +35,1967-04-25 02:29:00,0 +7671,1968-04-18 15:52:00,0 +2203,1966-07-12 04:14:00,0 +7924,1969-03-03 08:20:00,0 +5073,1968-02-16 18:21:00,0 +6378,1966-03-30 15:10:00,0 +9417,1965-03-03 12:48:00,0 +5855,1967-01-24 08:47:00,0 +6931,1966-09-08 10:49:00,0 +6200,1965-06-24 08:33:00,0 +2770,1969-10-19 16:35:00,0 +1642,1969-08-07 21:41:00,0 +712,1967-09-27 04:09:00,0 +9289,1968-09-03 13:31:00,0 +5817,1966-02-18 21:00:00,0 +6216,1969-03-30 23:05:00,0 +7102,1966-11-09 03:47:00,0 +3192,1968-08-26 21:28:00,0 +8490,1968-05-13 23:02:00,0 +2343,1966-02-14 13:56:00,0 +6722,1968-04-23 22:33:00,0 +588,1968-01-14 05:47:00,0 +3658,1969-11-03 17:27:00,0 +9135,1965-02-14 22:28:00,0 +5606,1969-11-19 23:52:00,0 +648,1969-02-24 20:03:00,0 +1524,1965-06-10 16:52:00,0 +2920,1969-02-07 03:08:00,0 +2771,1966-01-04 07:20:00,0 +3056,1967-03-04 20:06:00,0 +3353,1967-07-11 17:44:00,0 +9847,1968-08-07 11:34:00,0 +9874,1966-02-10 23:27:00,0 +9699,1968-04-12 05:35:00,0 +9209,1967-10-31 00:49:00,0 +3546,1969-12-16 17:23:00,0 +7312,1965-03-07 02:58:00,0 +6339,1969-02-15 18:54:00,0 +4482,1966-07-27 12:58:00,0 +8810,1968-04-15 18:48:00,0 +1901,1969-07-04 07:53:00,0 +9715,1965-08-11 00:30:00,0 +2436,1965-07-06 05:39:00,0 +7761,1967-07-19 12:07:00,0 +2042,1969-02-06 04:49:00,0 +790,1968-12-30 18:27:00,0 +6358,1967-04-23 14:10:00,0 +1438,1966-07-22 09:28:00,0 +3228,1969-10-18 07:28:00,0 +8420,1966-03-28 21:32:00,0 +6679,1967-10-04 10:54:00,0 +3500,1965-04-04 01:03:00,0 +7383,1967-12-18 20:30:00,0 +9497,1969-02-28 11:55:00,0 +732,1969-10-02 13:18:00,0 +8121,1969-01-04 04:25:00,0 +9945,1965-03-28 04:14:00,0 +1412,1969-02-15 02:10:00,0 +6940,1966-10-21 01:29:00,0 +7830,1965-07-16 13:47:00,0 +6585,1969-08-01 15:27:00,0 +1763,1969-11-03 02:14:00,0 +920,1966-11-11 19:04:00,0 +830,1967-12-30 12:53:00,0 +8544,1968-02-22 12:48:00,0 +8393,1965-12-23 03:32:00,0 +4550,1967-10-22 10:16:00,0 +2938,1967-09-17 13:47:00,0 +7254,1966-02-01 22:25:00,0 +7006,1969-12-20 16:27:00,0 +1565,1966-01-29 17:32:00,0 +922,1966-06-27 12:15:00,0 +8579,1968-11-06 06:27:00,0 +7957,1965-07-29 03:12:00,0 +7117,1968-04-10 09:41:00,0 +4521,1968-02-14 03:58:00,0 +9056,1969-07-27 19:34:00,0 +7914,1965-01-08 20:18:00,0 +4595,1966-02-03 16:12:00,0 +1446,1967-11-02 03:40:00,0 +3858,1966-11-11 20:21:00,0 +71,1965-10-10 19:20:00,0 +811,1965-05-02 23:17:00,0 +7242,1966-11-17 13:35:00,0 +9732,1969-08-21 06:46:00,0 +6993,1967-04-07 18:53:00,0 +9206,1966-02-02 20:12:00,0 +7187,1969-06-11 21:21:00,0 +8375,1965-06-12 08:47:00,0 +1902,1969-12-17 08:06:00,0 +1189,1969-12-03 12:38:00,0 +8303,1965-09-20 09:49:00,0 +4400,1966-08-05 14:44:00,0 +4014,1968-10-26 20:44:00,0 +5186,1969-12-12 03:52:00,0 +2793,1965-03-26 07:23:00,0 +1837,1967-06-26 11:11:00,0 +7014,1967-11-05 19:27:00,0 +1444,1966-12-12 06:33:00,0 +5268,1965-06-06 01:32:00,0 +2151,1966-05-09 00:08:00,0 +6552,1968-02-07 21:36:00,0 +7951,1965-09-16 15:21:00,0 +8263,1966-11-12 01:21:00,0 +5656,1965-04-25 20:54:00,0 +6528,1967-05-03 13:51:00,0 +4431,1967-06-10 05:59:00,0 +4673,1969-05-28 00:39:00,0 +929,1966-05-27 02:53:00,0 +2952,1967-11-10 14:01:00,0 +7602,1969-07-17 12:55:00,0 +5985,1969-04-11 08:59:00,0 +837,1968-04-28 10:47:00,0 +4751,1967-08-09 04:42:00,0 +7454,1967-04-09 00:10:00,0 +1225,1965-12-20 16:33:00,0 +169,1966-09-21 04:24:00,0 +5843,1965-10-19 12:58:00,0 +6758,1966-07-14 04:26:00,0 +9941,1965-08-19 21:29:00,0 +6621,1967-02-21 22:04:00,0 +4990,1965-08-06 11:49:00,0 +6390,1965-12-07 18:33:00,0 +5735,1969-10-26 04:16:00,0 +7851,1966-03-09 15:14:00,0 +4446,1965-10-16 19:34:00,0 +8096,1969-01-04 21:25:00,0 +5747,1967-12-22 04:39:00,0 +8185,1969-05-13 04:13:00,0 +1029,1965-07-15 10:14:00,0 +3092,1969-12-07 21:45:00,0 +3085,1967-07-08 12:43:00,0 +7900,1967-03-28 20:51:00,0 +2221,1965-10-11 00:30:00,0 +9703,1965-10-11 13:35:00,0 +4750,1965-08-19 06:35:00,0 +2182,1968-04-18 03:03:00,0 +2382,1966-01-10 02:23:00,0 +7508,1965-12-01 08:57:00,0 +310,1969-08-11 07:42:00,0 +1860,1967-09-19 02:38:00,0 +4501,1968-01-13 10:41:00,0 +6539,1969-02-17 02:14:00,0 +2408,1967-06-28 07:01:00,0 +292,1965-02-14 05:39:00,0 +368,1968-12-15 06:50:00,0 +5769,1965-05-07 09:24:00,0 +1014,1966-02-04 09:07:00,0 +4300,1967-01-19 09:44:00,0 +5074,1966-04-13 11:22:00,0 +4622,1966-05-14 21:54:00,0 +1214,1965-06-10 06:33:00,0 +1229,1966-02-02 22:02:00,0 +714,1969-09-05 15:29:00,0 +6475,1968-09-09 19:01:00,0 +2268,1969-11-12 04:06:00,0 +3188,1967-10-06 07:42:00,0 +7086,1966-11-22 04:47:00,0 +2595,1969-11-28 12:49:00,0 +6251,1968-09-28 06:14:00,0 +7831,1965-06-24 23:20:00,0 +7838,1967-08-04 00:12:00,0 +3133,1966-04-02 09:08:00,0 +6839,1966-07-04 11:37:00,0 +9893,1967-08-28 22:16:00,0 +6516,1969-12-13 23:17:00,0 +9434,1968-10-08 14:58:00,0 +7804,1967-07-12 00:26:00,0 +2998,1969-08-16 00:32:00,0 +6144,1968-03-30 14:27:00,0 +3309,1966-08-19 19:00:00,0 +3521,1966-08-25 22:17:00,0 +3367,1968-10-28 13:38:00,0 +124,1966-04-03 12:04:00,0 +4150,1969-12-15 15:11:00,0 +3202,1966-08-09 15:44:00,0 +8024,1967-01-17 10:53:00,0 +7391,1967-04-22 19:39:00,0 +4318,1968-03-29 01:42:00,0 +3353,1967-11-14 20:34:00,0 +494,1967-08-31 01:26:00,0 +9011,1969-02-16 19:20:00,0 +5165,1966-10-09 00:44:00,0 +880,1967-08-13 19:29:00,0 +3928,1965-04-24 00:55:00,0 +8349,1965-04-10 07:00:00,0 +1175,1968-10-26 23:20:00,0 +4463,1968-09-24 21:57:00,0 +5440,1965-10-20 09:59:00,0 +4971,1969-05-30 05:16:00,0 +4113,1969-09-18 14:39:00,0 +956,1968-08-13 02:28:00,0 +2341,1967-11-09 13:13:00,0 +8104,1968-02-05 08:23:00,0 +3719,1966-03-11 11:10:00,0 +2393,1967-03-27 18:18:00,0 +4291,1969-04-09 13:33:00,0 +8500,1965-09-20 06:55:00,0 +4142,1968-09-22 17:46:00,0 +2239,1969-08-12 19:03:00,0 +4575,1969-08-29 21:14:00,0 +4641,1969-04-24 16:01:00,0 +47,1965-12-01 23:33:00,0 +163,1965-06-10 16:15:00,0 +3829,1966-03-03 06:04:00,0 +9915,1965-01-22 08:43:00,0 +429,1968-06-06 05:04:00,0 +2230,1967-07-21 17:37:00,0 +1406,1969-09-19 01:35:00,0 +2386,1966-12-21 08:36:00,0 +2760,1968-06-24 08:28:00,0 +9593,1967-05-08 07:08:00,0 +4707,1966-12-30 14:14:00,0 +2404,1965-11-02 08:58:00,0 +2178,1965-10-20 05:33:00,0 +8058,1969-02-24 19:21:00,0 +3460,1968-07-11 21:22:00,0 +7535,1965-09-16 06:46:00,0 +4376,1969-11-26 14:12:00,0 +5611,1966-02-16 20:42:00,0 +3067,1969-12-27 03:24:00,0 +2189,1969-11-04 22:14:00,0 +3467,1965-12-14 18:42:00,0 +5554,1965-02-12 17:35:00,0 +7408,1965-01-14 10:05:00,0 +1470,1968-12-19 19:47:00,0 +7112,1965-12-21 23:08:00,0 +5296,1965-12-08 14:32:00,0 +6955,1967-07-14 13:07:00,0 +6713,1968-02-07 20:07:00,0 +784,1968-01-25 03:42:00,0 +5778,1969-09-28 12:24:00,0 +2550,1965-03-30 08:09:00,0 +795,1965-06-03 22:47:00,0 +9818,1969-02-01 16:08:00,0 +6852,1969-08-21 03:59:00,0 +8275,1969-01-02 18:31:00,0 +6109,1965-04-23 03:56:00,0 +3250,1965-04-03 15:14:00,0 +8087,1967-12-25 04:04:00,0 +6048,1969-01-14 12:34:00,0 +1725,1966-12-23 17:26:00,0 +5500,1968-08-12 02:12:00,0 +9012,1965-05-09 03:35:00,0 +3154,1967-03-20 20:47:00,0 +4300,1967-09-10 18:02:00,0 +1726,1967-12-12 03:47:00,0 +2429,1965-01-21 07:02:00,0 +8411,1965-02-18 18:48:00,0 +9126,1969-10-28 18:10:00,0 +1415,1969-06-26 13:09:00,0 +3703,1967-09-19 18:00:00,0 +7841,1966-06-15 07:33:00,0 +9090,1967-09-12 11:59:00,0 +6027,1967-06-16 05:44:00,0 +2918,1969-02-13 17:37:00,0 +7172,1968-11-26 06:07:00,0 +2774,1966-01-10 03:24:00,0 +5259,1966-04-04 09:21:00,0 +6409,1966-05-07 13:04:00,0 +2521,1968-08-01 17:43:00,0 +1266,1969-01-02 11:55:00,0 +1594,1968-02-19 09:24:00,0 +1192,1969-05-04 20:43:00,0 +3062,1966-05-21 09:31:00,0 +9696,1965-11-19 23:29:00,0 +263,1965-08-02 00:43:00,0 +9821,1966-03-13 06:54:00,0 +8300,1968-02-10 04:02:00,0 +3261,1966-06-26 03:16:00,0 +9812,1967-03-05 00:12:00,0 +1639,1966-09-28 06:36:00,0 +6579,1967-05-11 08:38:00,0 +8168,1967-10-09 19:03:00,0 +3653,1965-03-07 05:12:00,0 +9804,1967-04-04 01:59:00,0 +5937,1968-11-05 17:41:00,0 +6798,1968-05-23 16:54:00,0 +3155,1969-07-25 05:50:00,0 +7260,1967-06-02 02:02:00,0 +1589,1968-11-19 00:15:00,0 +2486,1965-08-31 15:25:00,0 +1206,1969-01-06 15:01:00,0 +1884,1965-05-09 10:06:00,0 +968,1965-05-11 09:23:00,0 +9295,1966-11-24 11:13:00,0 +9776,1966-02-16 14:16:00,0 +2768,1966-09-13 00:59:00,0 +7873,1967-11-06 09:55:00,0 +6261,1967-05-18 07:35:00,0 +5429,1966-01-15 06:32:00,0 +1505,1966-02-04 23:23:00,0 +9954,1966-04-15 22:44:00,0 +8052,1968-10-26 06:23:00,0 +2507,1968-10-10 00:14:00,0 +9562,1967-05-16 23:17:00,0 +3363,1965-08-13 11:53:00,0 +9738,1969-05-21 02:48:00,0 +2548,1969-01-24 18:14:00,0 +9063,1968-01-28 06:05:00,0 +3555,1965-10-19 11:26:00,0 +5184,1969-12-06 04:10:00,0 +9625,1965-02-20 14:15:00,0 +7131,1965-03-09 13:50:00,0 +9335,1966-11-23 13:16:00,0 +6633,1966-05-12 11:42:00,0 +5373,1968-07-13 23:14:00,0 +2486,1967-07-23 20:13:00,0 +8540,1965-04-04 22:57:00,0 +494,1965-11-07 09:20:00,0 +1094,1967-04-07 08:33:00,0 +7401,1967-06-19 14:14:00,0 +1446,1968-03-15 00:05:00,0 +286,1968-09-04 05:30:00,0 +8446,1968-05-28 23:47:00,0 +277,1967-06-22 17:20:00,0 +6537,1966-06-14 22:44:00,0 +5996,1965-04-20 09:37:00,0 +4161,1966-10-12 07:12:00,0 +9867,1966-07-04 01:30:00,0 +8802,1968-06-10 14:21:00,0 +3816,1969-07-06 08:34:00,0 +4483,1968-03-11 11:28:00,0 +98,1965-09-08 02:36:00,0 +8068,1967-03-30 21:50:00,0 +2207,1969-06-10 08:26:00,0 +7656,1965-07-09 17:30:00,0 +1632,1969-05-02 15:23:00,0 +6519,1969-12-03 21:22:00,0 +1303,1965-11-29 16:26:00,0 +9687,1967-11-21 21:00:00,0 +156,1965-08-23 15:00:00,0 +8440,1967-07-05 20:13:00,0 +746,1968-01-06 00:30:00,0 +2700,1969-06-23 16:03:00,0 +2510,1969-03-06 23:05:00,0 +5923,1966-03-18 06:15:00,0 +4021,1967-07-11 08:09:00,0 +2151,1967-04-01 12:22:00,0 +1032,1965-02-01 08:07:00,0 +3841,1969-09-29 06:13:00,0 +9759,1966-12-28 09:50:00,0 +3269,1966-03-22 15:45:00,0 +3914,1968-04-02 06:11:00,0 +4532,1966-09-22 03:30:00,0 +4048,1966-09-07 18:37:00,0 +4733,1965-01-16 20:54:00,0 +6292,1967-10-12 00:00:00,0 +1721,1967-05-08 23:05:00,0 +4782,1967-09-05 06:01:00,0 +1564,1969-03-07 03:19:00,0 +558,1965-04-04 10:02:00,0 +1241,1965-08-29 09:07:00,0 +384,1968-04-26 09:05:00,0 +9471,1969-11-08 11:00:00,0 +4525,1965-04-04 22:05:00,0 +3272,1966-06-24 14:47:00,0 +7898,1968-12-05 11:22:00,0 +2960,1965-03-09 13:38:00,0 +34,1966-01-28 16:27:00,0 +7026,1966-07-04 12:53:00,0 +1906,1965-10-09 15:52:00,0 +5969,1967-02-28 17:15:00,0 +5074,1968-12-14 09:40:00,0 +1692,1969-03-22 23:14:00,0 +9537,1967-08-10 12:53:00,0 +8000,1966-12-17 22:04:00,0 +1264,1966-12-30 11:13:00,0 +342,1968-06-21 20:22:00,0 +9041,1969-10-31 06:35:00,0 +6061,1967-04-30 23:09:00,0 +1014,1965-12-26 12:24:00,0 +9434,1966-03-18 04:56:00,0 +2855,1969-03-11 08:03:00,0 +4775,1969-09-04 14:33:00,0 +4622,1965-02-23 20:54:00,0 +1665,1968-01-22 09:05:00,0 +9841,1967-11-12 07:41:00,0 +9294,1966-11-16 14:12:00,0 +2545,1967-10-12 04:45:00,0 +9446,1966-08-19 16:43:00,0 +2057,1965-02-22 09:40:00,0 +7422,1965-05-01 11:53:00,0 +6642,1968-08-15 01:23:00,0 +4798,1967-03-20 03:45:00,0 +8722,1967-09-21 11:16:00,0 +8521,1966-06-14 17:30:00,0 +4910,1969-09-07 05:41:00,0 +7658,1967-06-14 23:23:00,0 +5011,1965-08-13 20:02:00,0 +1088,1966-07-03 11:08:00,0 +7919,1967-09-13 23:54:00,0 +987,1968-08-22 17:42:00,0 +6092,1966-06-01 10:10:00,0 +135,1967-11-08 02:58:00,0 +9075,1965-04-14 18:38:00,0 +8189,1969-02-20 23:47:00,0 +4971,1968-06-22 03:00:00,0 +6796,1965-08-08 05:35:00,0 +7788,1968-08-16 15:29:00,0 +5868,1967-04-21 23:09:00,0 +848,1967-02-02 20:29:00,0 +4617,1965-12-09 10:09:00,0 +1965,1965-11-06 22:32:00,0 +189,1966-12-18 15:00:00,0 +8838,1967-12-17 05:29:00,0 +3594,1967-05-30 09:57:00,0 +5257,1967-10-29 13:08:00,0 +6530,1966-10-16 13:17:00,0 +7313,1967-08-01 16:22:00,0 +4287,1967-11-07 06:36:00,0 +6776,1965-01-15 16:51:00,0 +6754,1968-06-05 05:13:00,0 +6596,1969-03-23 06:34:00,0 +3124,1966-05-22 06:27:00,0 +2192,1966-11-24 03:42:00,0 +5040,1965-03-05 22:57:00,0 +295,1965-10-25 23:26:00,0 +1938,1965-12-07 18:50:00,0 +1044,1968-12-02 09:35:00,0 +8475,1966-07-03 12:20:00,0 +2949,1965-09-21 17:16:00,0 +4586,1965-07-02 10:52:00,0 +960,1968-05-05 20:09:00,0 +9919,1967-08-06 04:28:00,0 +7205,1968-01-02 09:11:00,0 +4830,1968-03-01 09:43:00,0 +4579,1967-03-05 02:40:00,0 +487,1968-06-06 20:35:00,0 +3049,1965-12-28 19:15:00,0 +6988,1968-01-04 04:18:00,0 +2175,1965-07-02 19:05:00,0 +7897,1968-07-22 20:28:00,0 +7303,1967-04-23 23:07:00,0 +5089,1969-03-18 06:42:00,0 +5626,1968-06-29 16:25:00,0 +7804,1968-11-28 11:54:00,0 +8078,1967-01-17 10:22:00,0 +4357,1967-09-21 12:13:00,0 +8109,1965-12-27 12:18:00,0 +9103,1965-12-05 04:04:00,0 +2615,1965-08-27 19:09:00,0 +2111,1969-06-15 12:42:00,0 +35,1968-12-05 17:09:00,0 +167,1966-06-11 02:14:00,0 +1705,1966-09-02 06:07:00,0 +8461,1968-08-10 01:44:00,0 +2159,1966-10-09 16:48:00,0 +8300,1965-03-08 22:19:00,0 +7951,1966-09-01 05:50:00,0 +2763,1967-04-10 00:52:00,0 +6523,1965-05-23 04:49:00,0 +2749,1968-05-01 03:37:00,0 +9792,1966-06-03 10:12:00,0 +851,1969-02-20 23:34:00,0 +3540,1968-08-04 08:17:00,0 +1481,1965-07-23 23:02:00,0 +5828,1967-04-25 04:41:00,0 +804,1965-12-09 16:36:00,0 +7189,1966-05-28 22:04:00,0 +37,1969-01-27 15:08:00,0 +4343,1967-06-09 22:17:00,0 +7947,1966-10-18 20:56:00,0 +1309,1966-03-12 10:00:00,0 +2631,1967-02-01 14:07:00,0 +4417,1965-02-05 16:03:00,0 +6753,1965-09-21 19:19:00,0 +1537,1967-04-22 18:06:00,0 +3716,1966-06-10 19:10:00,0 +3279,1965-08-04 09:20:00,0 +1913,1969-11-02 05:45:00,0 +6684,1966-11-29 08:27:00,0 +3373,1969-05-01 03:25:00,0 +181,1966-09-28 06:48:00,0 +6090,1965-06-23 03:28:00,0 +7667,1968-02-16 14:11:00,0 +8174,1969-10-11 13:41:00,0 +1001,1965-05-03 15:49:00,0 +3293,1968-10-15 21:01:00,0 +8095,1966-07-13 06:20:00,0 +6934,1967-04-30 20:14:00,0 +8734,1966-08-02 19:46:00,0 +9937,1966-05-30 15:34:00,0 +901,1967-01-27 11:27:00,0 +156,1965-09-27 11:08:00,0 +3056,1967-11-30 06:57:00,0 +2151,1965-06-30 21:32:00,0 +4065,1968-11-22 04:13:00,0 +3214,1968-02-06 12:49:00,0 +4350,1966-10-15 23:40:00,0 +4813,1969-08-09 22:55:00,0 +497,1967-09-18 03:25:00,0 +6529,1967-07-01 19:34:00,0 +9175,1966-08-02 16:51:00,0 +2167,1966-04-02 08:26:00,0 +2550,1968-11-08 17:50:00,0 +7941,1965-05-06 15:31:00,0 +6168,1967-07-29 03:16:00,0 +3669,1967-01-14 06:56:00,0 +6637,1968-11-02 17:52:00,0 +9619,1968-12-17 08:31:00,0 +6951,1969-04-21 22:08:00,0 +7833,1969-06-17 14:10:00,0 +6061,1967-10-10 21:42:00,0 +9875,1967-04-24 22:10:00,0 +8953,1965-03-20 00:58:00,0 +4771,1969-12-29 05:17:00,0 +5248,1969-09-28 17:29:00,0 +1014,1966-04-04 07:37:00,0 +4558,1966-12-25 21:25:00,0 +6412,1966-03-24 01:30:00,0 +8309,1965-05-30 12:20:00,0 +9663,1968-09-08 17:03:00,0 +8697,1969-02-28 20:22:00,0 +1180,1968-07-06 22:03:00,0 +5535,1966-03-15 12:27:00,0 +1532,1966-01-22 05:47:00,0 +6454,1966-06-27 11:47:00,0 +9058,1965-08-18 18:37:00,0 +4581,1968-10-07 23:52:00,0 +9071,1966-02-27 18:03:00,0 +621,1968-03-31 19:30:00,0 +9885,1968-04-20 19:05:00,0 +9329,1965-03-05 22:29:00,0 +9466,1966-09-26 05:13:00,0 +7359,1965-06-17 02:48:00,0 +2433,1969-03-19 15:49:00,0 +3455,1967-11-02 06:16:00,0 +1179,1967-07-17 13:09:00,0 +1517,1967-01-28 17:30:00,0 +8914,1968-04-04 14:20:00,0 +3628,1966-05-20 09:37:00,0 +5685,1967-11-02 18:12:00,0 +2755,1967-08-13 10:38:00,0 +9006,1965-04-13 19:54:00,0 +2455,1965-05-12 16:43:00,0 +9498,1966-11-25 08:28:00,0 +6582,1965-03-06 10:26:00,0 +576,1969-09-08 14:11:00,0 +6852,1967-01-10 22:58:00,0 +3038,1969-05-07 15:03:00,0 +6974,1967-02-17 15:49:00,0 +7793,1968-03-26 18:46:00,0 +536,1965-12-02 11:08:00,0 +1561,1965-12-25 17:59:00,0 +2788,1968-06-26 15:53:00,0 +7879,1967-01-29 00:39:00,0 +6958,1969-09-11 07:48:00,0 +8697,1967-07-29 13:38:00,0 +4083,1969-01-02 12:03:00,0 +8522,1968-07-11 06:16:00,0 +5095,1967-05-07 06:36:00,0 +2661,1969-02-24 17:08:00,0 +4449,1967-03-04 06:28:00,0 +5843,1967-11-08 22:28:00,0 +2463,1966-01-28 11:17:00,0 +2966,1969-04-20 06:57:00,0 +3925,1968-04-20 01:40:00,0 +5157,1968-08-09 22:04:00,0 +2740,1969-03-30 16:20:00,0 +147,1969-12-01 11:49:00,0 +5066,1967-07-05 09:56:00,0 +3255,1967-09-17 02:02:00,0 +9347,1969-06-16 10:12:00,0 +4571,1966-02-19 21:30:00,0 +552,1968-01-16 05:17:00,0 +1924,1969-10-07 08:30:00,0 +2276,1969-09-08 11:53:00,0 +6466,1969-01-09 03:04:00,0 +7523,1968-10-27 14:58:00,0 +352,1967-11-25 00:30:00,0 +9274,1965-01-05 18:05:00,0 +6176,1969-05-08 03:35:00,0 +4767,1965-09-14 12:53:00,0 +3831,1969-12-12 01:38:00,0 +4435,1968-06-08 12:07:00,0 +9997,1965-05-30 21:21:00,0 +1223,1969-08-06 09:10:00,0 +1677,1969-10-30 03:11:00,0 +5753,1965-04-14 00:34:00,0 +1843,1968-04-01 10:52:00,0 +7118,1969-03-10 20:45:00,0 +7365,1968-08-06 00:57:00,0 +5238,1965-07-29 21:21:00,0 +7245,1968-12-31 06:26:00,0 +1802,1967-06-09 09:47:00,0 +9626,1965-02-21 10:58:00,0 +4243,1967-11-19 12:43:00,0 +909,1966-01-22 06:03:00,0 +8180,1966-01-08 16:29:00,0 +2108,1968-12-27 21:54:00,0 +988,1965-02-26 20:18:00,0 +625,1966-12-02 05:10:00,0 +2012,1969-07-12 19:06:00,0 +2730,1969-01-03 23:04:00,0 +6530,1965-03-30 05:54:00,0 +3276,1965-05-25 02:38:00,0 +4528,1966-11-30 11:19:00,0 +2341,1969-03-13 13:46:00,0 +6818,1969-11-19 09:28:00,0 +3046,1966-04-15 09:53:00,0 +4208,1966-06-06 15:57:00,0 +5810,1965-12-08 22:02:00,0 +4863,1966-11-04 15:49:00,0 +5678,1965-09-24 20:02:00,0 +9755,1968-01-02 00:46:00,0 +3112,1965-06-10 10:50:00,0 +6483,1966-09-04 08:10:00,0 +3082,1967-03-14 05:32:00,0 +2914,1966-10-15 07:10:00,0 +9461,1969-05-05 07:34:00,0 +4015,1966-12-14 21:08:00,0 +6878,1969-07-11 12:17:00,0 +8651,1965-10-27 22:20:00,0 +1196,1965-09-06 15:36:00,0 +3668,1965-02-16 17:20:00,0 +4902,1966-07-14 08:49:00,0 +2531,1968-01-20 05:18:00,0 +2712,1966-12-24 15:58:00,0 +6240,1968-07-21 19:37:00,0 +7893,1967-02-02 08:46:00,0 +7489,1965-10-07 11:48:00,0 +1149,1967-07-20 04:21:00,0 +7207,1967-08-06 09:36:00,0 +5612,1965-09-29 05:51:00,0 +4495,1968-12-13 15:50:00,0 +1563,1966-05-22 20:50:00,0 +3861,1965-01-16 15:39:00,0 +7448,1967-06-30 01:52:00,0 +618,1969-10-06 06:30:00,0 +1590,1965-06-10 05:40:00,0 +8906,1969-08-03 04:21:00,0 +4401,1969-09-05 23:38:00,0 +2182,1966-03-28 05:36:00,0 +4378,1966-07-07 23:37:00,0 +6885,1968-08-04 10:33:00,0 +3999,1968-05-07 15:25:00,0 +1379,1965-10-02 12:31:00,0 +5791,1968-07-12 16:24:00,0 +395,1966-06-09 21:10:00,0 +5785,1969-11-24 20:01:00,0 +2451,1965-09-19 16:49:00,0 +468,1967-11-21 16:01:00,0 +7440,1968-07-13 12:18:00,0 +1374,1968-04-08 19:12:00,0 +899,1967-10-09 04:42:00,0 +1750,1968-12-18 13:18:00,0 +8273,1969-07-22 09:27:00,0 +112,1967-07-03 00:57:00,0 +1551,1968-02-18 17:36:00,0 +1253,1967-04-14 11:48:00,0 +4927,1969-12-21 20:34:00,0 +2158,1965-12-12 00:54:00,0 +3943,1965-03-10 12:55:00,0 +7897,1966-02-04 22:04:00,0 +1655,1965-04-18 10:31:00,0 +8714,1965-10-27 05:34:00,0 +3836,1965-05-31 10:14:00,0 +1344,1965-11-21 23:29:00,0 +5489,1966-11-30 04:37:00,0 +824,1968-04-22 19:43:00,0 +3823,1968-03-30 02:30:00,0 +8676,1966-03-04 03:29:00,0 +763,1967-12-29 23:50:00,0 +2816,1968-02-17 18:16:00,0 +3184,1967-06-27 00:54:00,0 +1623,1965-06-04 13:33:00,0 +1958,1965-03-19 22:16:00,0 +8114,1968-10-31 01:46:00,0 +1691,1968-03-31 00:21:00,0 +901,1967-10-26 13:40:00,0 +4659,1969-01-08 11:25:00,0 +9528,1965-05-23 18:18:00,0 +7405,1966-10-09 22:37:00,0 +9369,1965-08-28 06:15:00,0 +1453,1965-08-26 12:38:00,0 +140,1967-06-17 03:29:00,0 +3347,1968-08-23 01:28:00,0 +1810,1969-05-11 13:17:00,0 +6951,1969-03-20 11:23:00,0 +7963,1967-10-07 07:42:00,0 +1293,1969-07-04 20:16:00,0 +5179,1967-10-03 23:42:00,0 +8495,1969-04-12 08:02:00,0 +6326,1967-06-06 22:50:00,0 +4602,1968-12-30 00:27:00,0 +6550,1969-07-21 18:20:00,0 +7680,1969-02-27 11:08:00,0 +1068,1966-07-01 11:02:00,0 +7165,1967-04-05 10:40:00,0 +5614,1965-07-31 07:39:00,0 +5553,1969-01-18 11:46:00,0 +23,1968-04-10 11:39:00,0 +4568,1968-11-30 23:44:00,0 +751,1966-04-22 09:17:00,0 +2998,1967-07-30 09:45:00,0 +6190,1969-08-28 23:01:00,0 +6165,1967-11-15 05:20:00,0 +7627,1967-10-15 12:38:00,0 +3369,1969-05-26 01:15:00,0 +6954,1967-04-08 01:32:00,0 +6747,1966-12-20 08:19:00,0 +4900,1966-06-25 01:49:00,0 +4166,1968-12-27 06:48:00,0 +4321,1968-09-10 03:16:00,0 +7869,1966-08-21 22:56:00,0 +3145,1966-08-05 08:08:00,0 +2857,1965-06-29 23:57:00,0 +5201,1968-01-04 05:45:00,0 +5157,1965-09-28 12:13:00,0 +9437,1965-12-10 19:25:00,0 +3326,1969-01-08 05:24:00,0 +2024,1967-01-13 07:59:00,0 +215,1965-04-03 04:12:00,0 +9019,1966-04-07 19:08:00,0 +501,1968-01-26 03:28:00,0 +6744,1968-01-06 13:11:00,0 +3477,1968-07-19 02:48:00,0 +3857,1967-09-12 22:40:00,0 +7676,1969-10-05 18:49:00,0 +7099,1966-05-04 10:58:00,0 +8236,1967-07-06 21:04:00,0 +592,1967-10-18 12:59:00,0 +7378,1967-11-08 12:02:00,0 +7777,1969-12-09 03:34:00,0 +7229,1969-12-06 12:33:00,0 +1094,1966-10-15 11:19:00,0 +539,1965-06-17 04:29:00,0 +9153,1965-11-15 07:38:00,0 +5368,1969-09-06 10:48:00,0 +5379,1967-06-12 04:25:00,0 +2950,1969-09-21 21:25:00,0 +2208,1969-10-21 16:13:00,0 +5293,1965-07-26 04:42:00,0 +3338,1966-05-24 23:08:00,0 +1187,1969-09-17 10:40:00,0 +2080,1965-06-03 18:11:00,0 +2388,1969-11-30 05:06:00,0 +9614,1968-04-19 18:47:00,0 +4911,1967-04-16 19:24:00,0 +6944,1969-08-29 12:44:00,0 +6261,1966-02-04 02:33:00,0 +6031,1968-09-16 21:28:00,0 +1825,1965-05-13 13:40:00,0 +1049,1966-05-28 15:21:00,0 +3798,1965-12-12 03:37:00,0 +4413,1967-03-26 11:27:00,0 +9470,1966-12-10 00:19:00,0 +7666,1969-04-23 08:57:00,0 +3359,1969-10-18 19:22:00,0 +6368,1966-11-02 02:53:00,0 +5486,1967-03-22 16:53:00,0 +1551,1965-12-26 11:48:00,0 +7435,1969-12-22 18:46:00,0 +6088,1969-05-12 19:55:00,0 +8983,1966-01-02 10:52:00,0 +7268,1967-10-11 18:26:00,0 +3014,1969-07-28 18:49:00,0 +4194,1967-03-31 09:39:00,0 +4818,1969-01-15 05:26:00,0 +6862,1967-01-19 09:33:00,0 +4172,1966-10-10 14:01:00,0 +851,1965-07-20 06:58:00,0 +6045,1969-05-29 11:00:00,0 +1397,1967-11-02 11:03:00,0 +8065,1966-01-25 17:01:00,0 +4210,1968-12-12 07:10:00,0 +2338,1968-01-12 06:58:00,0 +8952,1965-08-18 13:13:00,0 +6602,1969-03-24 15:56:00,0 +5057,1968-03-08 12:25:00,0 +3554,1968-09-22 04:43:00,0 +4411,1967-06-04 18:26:00,0 +9832,1967-05-17 19:41:00,0 +4498,1968-08-15 13:25:00,0 +9616,1965-04-10 08:59:00,0 +7417,1965-10-18 10:23:00,0 +9144,1968-04-08 04:05:00,0 +831,1968-02-12 18:59:00,0 +159,1965-03-24 11:40:00,0 +2477,1968-11-11 09:35:00,0 +3023,1965-01-07 06:43:00,0 +9476,1969-03-24 20:06:00,0 +4724,1968-08-25 16:23:00,0 +841,1965-08-31 10:37:00,0 +5030,1969-12-07 03:06:00,0 +2017,1969-03-18 12:36:00,0 +5713,1967-06-08 09:31:00,0 +4017,1965-10-29 07:36:00,0 +9636,1965-06-11 16:06:00,0 +883,1967-08-20 17:08:00,0 +4381,1965-02-20 00:28:00,0 +7563,1967-05-19 10:22:00,0 +9020,1969-04-14 10:15:00,0 +4474,1966-03-02 01:32:00,0 +9472,1968-03-11 02:21:00,0 +4653,1966-06-08 03:45:00,0 +9724,1967-09-25 14:55:00,0 +3666,1969-10-10 03:21:00,0 +336,1968-05-19 03:08:00,0 +8567,1967-08-11 02:10:00,0 +2697,1968-03-02 13:02:00,0 +3502,1968-06-02 09:41:00,0 +9380,1969-03-05 06:55:00,0 +8865,1965-06-09 13:20:00,0 +8634,1967-05-28 19:43:00,0 +8368,1965-04-26 15:45:00,0 +4065,1969-12-28 01:20:00,0 +5779,1966-09-20 03:56:00,0 +1674,1969-08-20 10:29:00,0 +2236,1968-06-04 03:36:00,0 +9086,1965-04-24 16:06:00,0 +6434,1969-07-26 17:30:00,0 +4369,1965-02-22 22:45:00,0 +8417,1968-08-06 23:34:00,0 +6707,1967-09-06 08:03:00,0 +4081,1965-07-22 00:33:00,0 +4640,1966-03-14 04:42:00,0 +1681,1969-04-27 07:21:00,0 +7477,1966-05-29 07:19:00,0 +9264,1967-01-06 14:26:00,0 +5882,1968-04-27 06:21:00,0 +6667,1965-07-06 15:40:00,0 +3515,1965-08-09 20:34:00,0 +7929,1969-03-05 10:27:00,0 +6371,1969-09-17 03:53:00,0 +8491,1967-05-10 10:25:00,0 +133,1966-01-31 20:14:00,0 +2903,1968-02-06 20:40:00,0 +8972,1966-12-29 20:42:00,0 +8295,1965-11-22 23:25:00,0 +266,1968-09-16 00:10:00,0 +878,1969-10-30 09:36:00,0 +2056,1965-05-20 10:09:00,0 +5617,1966-01-12 04:30:00,0 +5933,1969-07-06 17:53:00,0 +9738,1967-03-09 02:51:00,0 +3171,1968-05-16 01:57:00,0 +143,1968-04-29 17:30:00,0 +5176,1967-09-15 19:39:00,0 +2450,1968-06-07 12:36:00,0 +7574,1965-06-03 19:19:00,0 +9621,1969-10-01 19:53:00,0 +1425,1968-09-30 00:58:00,0 +3328,1965-02-24 13:54:00,0 +6826,1966-09-08 08:46:00,0 +5526,1968-01-31 08:16:00,0 +1667,1968-01-18 11:47:00,0 +4852,1967-06-22 07:51:00,0 +1631,1966-04-30 09:31:00,0 +2212,1966-03-23 00:35:00,0 +2414,1969-12-20 01:27:00,0 +4270,1967-02-22 06:52:00,0 +6176,1968-01-03 05:56:00,0 +6851,1966-01-24 08:10:00,0 +663,1966-11-18 17:16:00,0 +1206,1967-08-06 01:52:00,0 +3444,1966-11-04 08:01:00,0 +7965,1965-11-10 05:05:00,0 +7790,1965-01-18 02:30:00,0 +3864,1969-09-27 05:11:00,0 +9160,1968-02-29 16:49:00,0 +5031,1968-03-08 23:30:00,0 +5177,1968-01-04 19:39:00,0 +336,1965-11-24 16:02:00,0 +9010,1968-08-14 23:32:00,0 +4142,1969-03-09 13:39:00,0 +4972,1967-02-06 09:13:00,0 +6338,1969-07-13 16:37:00,0 +2967,1966-04-20 11:11:00,0 +5457,1968-10-03 03:37:00,0 +3920,1965-04-01 02:52:00,0 +5733,1968-06-29 19:33:00,0 +3430,1967-09-05 14:01:00,0 +8552,1965-11-13 02:04:00,0 +8102,1969-12-20 12:48:00,0 +2565,1967-10-13 00:56:00,0 +554,1969-07-11 23:12:00,0 +1004,1969-11-26 01:52:00,0 +6021,1967-09-20 15:48:00,0 +9721,1968-08-01 04:30:00,0 +2243,1967-09-14 23:57:00,0 +5080,1968-05-05 05:31:00,0 +4833,1969-10-19 18:33:00,0 +2469,1969-10-02 14:40:00,0 +4696,1965-05-05 20:08:00,0 +7466,1966-01-11 12:41:00,0 +1706,1966-12-24 14:22:00,0 +3347,1968-10-24 04:46:00,0 +8498,1965-09-03 14:58:00,0 +9854,1967-04-14 17:27:00,0 +8268,1967-11-20 15:27:00,0 +4404,1966-05-08 02:42:00,0 +9455,1969-09-19 04:54:00,0 +88,1966-06-29 18:59:00,0 +3397,1969-09-14 12:27:00,0 +8439,1965-07-07 07:54:00,0 +7960,1969-10-31 19:50:00,0 +9353,1969-10-10 00:27:00,0 +5640,1966-09-22 20:16:00,0 +2705,1966-11-22 13:52:00,0 +3575,1967-12-28 00:49:00,0 +7969,1968-08-03 19:37:00,0 +1034,1967-06-28 14:59:00,0 +3833,1968-09-15 16:24:00,0 +8222,1965-12-28 08:35:00,0 +4768,1969-03-25 02:02:00,0 +5117,1965-11-14 06:12:00,0 +4130,1966-10-22 10:21:00,0 +6266,1967-07-25 10:32:00,0 +9735,1969-07-30 03:11:00,0 +360,1968-03-29 07:46:00,0 +80,1965-05-14 00:13:00,0 +8307,1969-03-21 12:48:00,0 +9938,1968-03-28 20:20:00,0 +2397,1967-03-18 06:01:00,0 +3194,1965-11-04 10:56:00,0 +8285,1969-10-17 20:04:00,0 +2524,1965-12-01 20:53:00,0 +2291,1969-12-08 09:29:00,0 +586,1968-08-28 10:22:00,0 +6295,1969-11-30 13:28:00,0 +5110,1967-08-06 17:59:00,0 +2316,1967-12-11 17:10:00,0 +6001,1969-01-28 04:37:00,0 +8469,1967-05-21 13:27:00,0 +7433,1969-07-06 21:44:00,0 +5766,1969-08-07 08:27:00,0 +7997,1969-11-03 11:47:00,0 +5723,1966-09-13 01:36:00,0 +9589,1968-09-29 23:39:00,0 +535,1966-07-18 18:41:00,0 +536,1966-04-28 10:02:00,0 +7684,1968-06-30 18:29:00,0 +4481,1966-01-07 06:17:00,0 +7845,1966-07-13 10:22:00,0 +9559,1966-09-25 04:47:00,0 +6741,1967-08-21 16:27:00,0 +6030,1968-02-26 22:26:00,0 +4407,1965-08-11 22:37:00,0 +6494,1969-04-04 10:08:00,0 +6663,1967-05-31 11:38:00,0 +7441,1969-10-13 18:37:00,0 +2630,1966-07-30 09:51:00,0 +9434,1968-07-30 10:45:00,0 +5833,1966-07-28 11:20:00,0 +9125,1969-12-29 16:01:00,0 +233,1967-11-11 02:14:00,0 +769,1968-12-20 00:26:00,0 +7101,1969-02-02 09:08:00,0 +3294,1968-06-06 09:08:00,0 +4077,1969-07-09 19:02:00,0 +2801,1965-02-14 23:55:00,0 +3084,1965-08-07 13:24:00,0 +5910,1967-03-14 00:58:00,0 +1094,1966-10-07 14:10:00,0 +4909,1965-11-23 08:06:00,0 +8430,1969-12-30 00:19:00,0 +7493,1969-05-26 15:02:00,0 +6374,1968-02-10 02:29:00,0 +8176,1968-12-18 13:20:00,0 +2772,1967-10-14 23:44:00,0 +2164,1969-08-07 03:59:00,0 +5573,1969-11-17 16:11:00,0 +3124,1966-04-12 05:11:00,0 +6596,1969-09-09 19:39:00,0 +3665,1968-08-18 04:01:00,0 +3984,1966-06-02 20:52:00,0 +3467,1966-10-06 14:38:00,0 +7905,1966-06-05 17:53:00,0 +1100,1965-07-16 06:42:00,0 +9892,1968-03-22 06:45:00,0 +7206,1966-08-08 17:59:00,0 +4313,1966-12-06 00:33:00,0 +4527,1969-09-10 17:44:00,0 +5531,1965-09-28 14:39:00,0 +4363,1966-12-23 00:55:00,0 +9440,1967-09-14 18:15:00,0 +4583,1965-09-12 12:50:00,0 +8572,1965-05-31 00:06:00,0 +2476,1967-06-14 18:25:00,0 +3529,1968-04-15 14:13:00,0 +5727,1965-11-07 09:51:00,0 +7787,1965-09-27 08:15:00,0 +8134,1965-10-18 19:15:00,0 +3248,1968-05-09 12:12:00,0 +2277,1968-04-01 01:54:00,0 +8392,1968-01-10 16:07:00,0 +5305,1966-07-19 17:29:00,0 +4421,1966-02-17 23:26:00,0 +9335,1969-05-01 18:29:00,0 +6624,1966-04-12 04:52:00,0 +7877,1969-10-20 16:18:00,0 +1524,1968-08-27 16:35:00,0 +2492,1966-01-21 11:21:00,0 +8965,1968-02-01 16:19:00,0 +6332,1968-07-04 05:57:00,0 +2267,1966-05-13 05:07:00,0 +1268,1965-12-29 16:28:00,0 +1970,1967-07-09 18:47:00,0 +773,1969-02-23 05:36:00,0 +2464,1965-07-27 06:26:00,0 +5440,1965-10-27 21:22:00,0 +2391,1966-12-18 01:28:00,0 +1924,1967-08-06 05:09:00,0 +5354,1965-04-12 13:08:00,0 +9096,1968-12-10 22:33:00,0 +4150,1967-10-24 10:04:00,0 +305,1965-02-08 07:44:00,0 +245,1967-08-05 08:41:00,0 +9548,1967-06-03 16:48:00,0 +9241,1966-07-01 23:03:00,0 +5648,1968-09-22 05:39:00,0 +7404,1966-09-16 07:03:00,0 +9142,1968-10-30 06:58:00,0 +981,1969-01-23 10:50:00,0 +3039,1967-02-03 12:15:00,0 +6631,1968-12-26 07:07:00,0 +6858,1969-02-11 17:22:00,0 +9646,1965-04-22 13:34:00,0 +4822,1966-11-01 01:07:00,0 +4548,1969-02-16 01:10:00,0 +647,1968-06-14 21:56:00,0 +9877,1967-05-04 09:12:00,0 +6166,1967-10-04 20:39:00,0 +6914,1968-12-03 09:16:00,0 +2385,1965-12-12 12:49:00,0 +2483,1965-11-22 16:54:00,0 +8151,1967-04-01 12:10:00,0 +9341,1966-11-12 04:39:00,0 +8426,1965-08-14 06:10:00,0 +5436,1969-03-18 02:18:00,0 +1436,1966-04-26 12:12:00,0 +986,1968-07-09 01:58:00,0 +4169,1968-10-17 20:42:00,0 +9892,1966-08-28 13:09:00,0 +3583,1968-12-28 11:01:00,0 +3637,1965-01-30 21:27:00,0 +59,1967-09-16 08:16:00,0 +1349,1969-09-29 04:45:00,0 +615,1966-04-06 10:48:00,0 +9339,1968-04-25 17:24:00,0 +3419,1969-08-05 22:43:00,0 +5495,1968-05-12 20:28:00,0 +7219,1969-11-04 11:32:00,0 +4646,1967-07-06 10:59:00,0 +1663,1966-10-17 02:08:00,0 +4775,1969-01-18 07:20:00,0 +8697,1966-11-10 16:29:00,0 +5894,1968-02-16 18:53:00,0 +5943,1965-11-07 15:40:00,0 +1601,1968-06-26 19:44:00,0 +2354,1965-04-16 12:33:00,0 +4687,1969-04-16 21:25:00,0 +1662,1968-06-09 18:18:00,0 +22,1967-05-08 03:17:00,0 +6401,1969-05-31 13:12:00,0 +8011,1967-02-13 11:10:00,0 +3405,1966-01-30 23:48:00,0 +5104,1969-12-11 13:55:00,0 +4922,1967-11-04 02:08:00,0 +3902,1968-01-13 15:16:00,0 +9021,1969-07-15 10:25:00,0 +7819,1969-11-10 01:51:00,0 +2868,1966-02-01 01:52:00,0 +9643,1969-06-18 04:33:00,0 +8885,1968-07-22 08:59:00,0 +8241,1967-04-01 19:55:00,0 +9255,1969-05-27 18:23:00,0 +6682,1967-01-08 08:46:00,0 +2090,1969-11-07 17:28:00,0 +7411,1968-02-05 17:41:00,0 +178,1969-05-14 01:51:00,0 +1970,1965-02-01 03:23:00,0 +3257,1969-07-21 09:38:00,0 +7309,1965-11-30 02:08:00,0 +1952,1965-12-10 07:07:00,0 +681,1965-02-18 23:35:00,0 +3197,1966-03-05 20:07:00,0 +6414,1969-07-05 04:11:00,0 +7188,1966-06-28 06:13:00,0 +9435,1966-02-14 02:02:00,0 +3222,1968-04-24 10:11:00,0 +3558,1966-10-16 11:24:00,0 +5027,1969-01-19 05:31:00,0 +2079,1965-02-19 00:42:00,0 +1796,1966-01-11 19:43:00,0 +8354,1967-07-05 08:51:00,0 +7264,1969-06-26 21:22:00,0 +8373,1968-09-28 21:42:00,0 +9875,1967-11-11 05:49:00,0 +6581,1968-11-01 05:17:00,0 +9768,1966-06-18 02:16:00,0 +3473,1968-04-08 01:57:00,0 +2771,1967-07-17 13:10:00,0 +7514,1969-07-02 21:17:00,0 +3339,1969-06-19 21:02:00,0 +4251,1968-09-07 04:30:00,0 +5271,1967-08-28 06:21:00,0 +8105,1968-01-19 22:07:00,0 +1010,1966-03-27 20:58:00,0 +562,1969-08-04 00:50:00,0 +3582,1965-04-10 22:36:00,0 +2378,1966-09-03 04:47:00,0 +5100,1965-07-21 15:31:00,0 +7827,1968-06-04 07:03:00,0 +628,1969-07-28 07:21:00,0 +2475,1965-07-05 02:26:00,0 +1400,1965-05-12 16:20:00,0 +605,1965-02-25 00:38:00,0 +2390,1966-11-02 15:23:00,0 +9796,1965-02-27 21:02:00,0 +4337,1969-04-07 02:46:00,0 +8241,1966-06-06 09:59:00,0 +6239,1969-04-18 13:25:00,0 +8305,1968-07-24 20:19:00,0 +9042,1969-06-26 01:31:00,0 +8230,1969-11-02 00:09:00,0 +8210,1968-08-01 07:42:00,0 +9916,1967-01-24 16:44:00,0 +6446,1965-03-14 16:43:00,0 +1045,1969-08-13 01:47:00,0 +6122,1969-06-10 05:55:00,0 +2981,1968-02-08 19:04:00,0 +9855,1968-08-16 09:42:00,0 +4336,1967-08-05 17:11:00,0 +8672,1967-01-08 23:02:00,0 +5487,1966-03-11 19:18:00,0 +1344,1965-12-04 04:30:00,0 +750,1967-01-24 18:10:00,0 +1992,1966-03-15 14:55:00,0 +1851,1969-05-14 05:30:00,0 +3560,1969-02-25 18:10:00,0 +5607,1967-09-23 19:54:00,0 +9656,1966-10-12 10:44:00,0 +3859,1967-06-30 22:19:00,0 +376,1968-12-29 01:59:00,0 +7219,1967-03-25 05:35:00,0 +7796,1969-11-29 13:31:00,0 +6385,1965-10-17 00:04:00,0 +7790,1965-06-22 01:02:00,0 +1440,1969-05-20 11:04:00,0 +3509,1969-01-14 06:37:00,0 +5032,1969-12-10 23:24:00,0 +2738,1966-11-22 21:23:00,0 +3439,1967-10-03 17:21:00,0 +6226,1969-04-04 00:43:00,0 +510,1967-07-31 17:41:00,0 +1460,1969-07-12 05:04:00,0 +8669,1968-08-03 04:49:00,0 +4696,1965-06-04 21:41:00,0 +9585,1966-09-11 12:07:00,0 +9316,1966-06-19 22:02:00,0 +1106,1969-11-11 06:24:00,0 +4767,1967-02-04 01:29:00,0 +1970,1968-11-24 05:37:00,0 +3052,1965-10-20 15:28:00,0 +6794,1965-01-15 02:03:00,0 +7909,1968-10-26 01:11:00,0 +9517,1969-08-27 17:12:00,0 +2957,1969-03-01 05:37:00,0 +633,1966-11-28 08:11:00,0 +5797,1968-05-20 07:31:00,0 +1342,1968-11-30 16:34:00,0 +8518,1967-08-09 17:51:00,0 +5272,1968-02-01 09:44:00,0 +4678,1968-04-02 10:53:00,0 +2088,1965-09-15 00:44:00,0 +3724,1966-08-02 06:59:00,0 +4442,1967-11-20 21:20:00,0 +3449,1967-07-26 04:58:00,0 +4381,1968-11-23 02:52:00,0 +7518,1966-08-31 23:57:00,0 +2153,1967-01-15 20:01:00,0 +5489,1969-03-21 02:47:00,0 +1236,1965-11-07 23:08:00,0 +5383,1965-09-08 16:52:00,0 +5412,1969-05-01 06:38:00,0 +9665,1965-09-12 00:03:00,0 +9637,1965-04-08 04:06:00,0 +6116,1969-03-05 00:25:00,0 +5235,1969-08-30 00:52:00,0 +9670,1965-10-16 00:00:00,0 +3354,1966-08-07 02:59:00,0 +6803,1968-02-27 15:40:00,0 +7577,1967-12-08 03:10:00,0 +3879,1967-11-22 15:14:00,0 +9926,1967-11-04 13:29:00,0 +8039,1969-12-27 01:44:00,0 +6412,1969-10-25 07:54:00,0 +2809,1966-08-23 22:42:00,0 +234,1968-04-16 05:30:00,0 +7930,1966-02-28 11:22:00,0 +3487,1965-07-22 22:38:00,0 +8190,1968-03-16 23:47:00,0 +3556,1967-04-10 13:53:00,0 +6392,1966-04-04 05:13:00,0 +9181,1965-11-11 05:28:00,0 +1938,1969-01-11 02:50:00,0 +3063,1967-06-12 17:01:00,0 +305,1969-12-28 01:16:00,0 +3542,1969-10-07 10:49:00,0 +4512,1965-05-09 09:00:00,0 +2830,1965-01-29 14:39:00,0 +9663,1965-12-10 15:52:00,0 +9648,1969-08-07 16:53:00,0 +8286,1967-11-15 08:13:00,0 +9471,1966-12-11 19:36:00,0 +6053,1968-05-02 03:30:00,0 +7417,1968-05-30 08:11:00,0 +4134,1966-12-14 03:44:00,0 +8311,1968-07-28 17:15:00,0 +4430,1969-11-24 07:59:00,0 +6796,1967-04-24 22:46:00,0 +5899,1965-01-26 02:23:00,0 +4130,1969-10-01 04:43:00,0 +7742,1965-09-21 07:59:00,0 +8245,1969-08-20 19:57:00,0 +7783,1967-03-31 02:20:00,0 +2422,1967-12-02 18:06:00,0 +428,1968-08-19 05:37:00,0 +915,1966-10-31 00:07:00,0 +7897,1968-11-10 07:57:00,0 +3872,1968-12-13 08:25:00,0 +5653,1969-11-06 22:37:00,0 +2568,1965-09-22 01:04:00,0 +487,1968-05-25 09:30:00,0 +906,1965-12-04 00:30:00,0 +7764,1967-09-22 02:13:00,0 +1433,1967-09-12 00:51:00,0 +6450,1965-10-25 16:05:00,0 +5324,1966-06-05 06:40:00,0 +7402,1969-04-01 10:24:00,0 +392,1968-11-08 08:53:00,0 +6121,1967-04-08 21:20:00,0 +9145,1967-10-27 09:49:00,0 +1954,1968-12-05 17:19:00,0 +7298,1967-09-22 21:33:00,0 +5811,1965-01-31 11:04:00,0 +9263,1965-01-29 07:28:00,0 +2696,1968-12-14 15:52:00,0 +7755,1966-04-15 15:08:00,0 +6214,1965-09-27 01:54:00,0 +5199,1968-07-03 10:07:00,0 +1291,1968-09-20 06:30:00,0 +3628,1969-01-30 11:46:00,0 +3938,1967-12-21 21:19:00,0 +7507,1968-07-21 05:34:00,0 +7016,1969-06-15 15:29:00,0 +2956,1967-03-14 01:18:00,0 +8009,1967-09-01 10:27:00,0 +8539,1965-07-12 21:59:00,0 +9617,1965-07-28 12:49:00,0 +1467,1967-11-30 20:28:00,0 +813,1967-11-09 00:43:00,0 +908,1969-12-28 09:20:00,0 +6081,1967-01-27 07:20:00,0 +3293,1967-08-27 00:28:00,0 +4485,1966-03-25 20:52:00,0 +8647,1966-05-06 03:18:00,0 +4472,1965-07-10 18:29:00,0 +7439,1968-12-15 17:19:00,0 +5000,1966-06-16 04:20:00,0 +268,1966-02-21 19:59:00,0 +1150,1969-09-16 22:21:00,0 +4851,1968-09-26 23:59:00,0 +3028,1966-11-28 23:05:00,0 +3629,1966-07-09 05:13:00,0 +778,1966-03-15 09:47:00,0 +4385,1966-10-02 12:21:00,0 +8875,1965-10-15 23:58:00,0 +2251,1966-08-27 22:10:00,0 +3892,1965-08-25 05:05:00,0 +4797,1968-02-13 04:39:00,0 +474,1967-01-04 08:51:00,0 +7631,1966-08-27 09:36:00,0 +3747,1967-04-15 05:43:00,0 +128,1968-09-03 20:40:00,0 +7575,1968-03-05 20:07:00,0 +9975,1965-04-14 07:01:00,0 +2987,1965-10-01 11:39:00,0 +6100,1967-01-14 12:29:00,0 +6658,1967-04-28 03:18:00,0 +7336,1966-05-08 19:04:00,0 +1953,1968-09-13 07:50:00,0 +9718,1969-05-29 06:21:00,0 +1539,1969-05-14 08:49:00,0 +8403,1968-08-31 10:27:00,0 +4842,1969-03-20 15:05:00,0 +7081,1968-01-31 07:37:00,0 +3985,1965-08-07 02:54:00,0 +2151,1965-11-07 20:17:00,0 +6020,1969-02-03 06:50:00,0 +9573,1967-08-01 20:42:00,0 +463,1968-09-10 01:05:00,0 +2016,1969-03-17 16:15:00,0 +570,1968-12-21 16:41:00,0 +6221,1966-12-10 19:15:00,0 +9690,1967-10-06 00:35:00,0 +8914,1965-09-22 11:01:00,0 +3013,1965-06-14 23:58:00,0 +2362,1966-04-15 10:29:00,0 +660,1966-12-17 00:13:00,0 +2144,1965-07-12 07:38:00,0 +8080,1969-04-19 04:48:00,0 +9959,1968-03-01 14:00:00,0 +6235,1968-03-28 19:52:00,0 +6043,1967-05-31 18:21:00,0 +8324,1966-01-13 07:55:00,0 +8867,1968-03-31 10:54:00,0 +1381,1968-09-10 14:14:00,0 +6400,1968-04-06 13:30:00,0 +9458,1967-12-24 20:40:00,0 +2915,1965-04-13 00:47:00,0 +5603,1965-09-02 10:40:00,0 +381,1966-08-02 13:16:00,0 +8018,1967-07-08 23:22:00,0 +813,1969-12-04 12:21:00,0 +7348,1967-03-28 13:05:00,0 +4681,1966-09-27 11:47:00,0 +8739,1965-08-18 17:14:00,0 +8970,1969-04-08 05:00:00,0 +1080,1968-05-29 01:46:00,0 +4873,1965-05-10 19:22:00,0 +2473,1966-05-28 21:50:00,0 +3148,1966-04-22 17:35:00,0 +7804,1969-10-10 09:52:00,0 +5438,1967-11-24 20:30:00,0 +5161,1968-09-20 17:03:00,0 +3573,1965-08-23 07:32:00,0 +4400,1966-05-22 21:02:00,0 +2410,1967-09-10 08:17:00,0 +2293,1969-04-14 01:12:00,0 +4468,1966-08-18 15:11:00,0 +2810,1968-05-07 09:16:00,0 +4871,1965-06-17 23:51:00,0 +2917,1969-11-01 05:49:00,0 +2133,1967-08-20 10:36:00,0 +9699,1969-02-11 03:05:00,0 +3385,1969-09-16 15:47:00,0 +37,1966-01-30 04:56:00,0 +1472,1965-08-08 13:48:00,0 +9900,1966-10-29 15:45:00,0 +4155,1968-02-27 21:27:00,0 +2425,1969-03-17 07:43:00,0 +5799,1966-10-04 07:33:00,0 +9916,1965-01-21 02:19:00,0 +8173,1968-04-16 19:17:00,0 +7124,1967-09-26 06:46:00,0 +1845,1967-12-19 03:59:00,0 +7209,1969-05-24 20:03:00,0 +3983,1968-03-22 01:19:00,0 +9930,1967-05-24 15:59:00,0 +768,1969-02-27 13:19:00,0 +5503,1969-02-09 13:22:00,0 +9081,1965-03-16 19:54:00,0 +1355,1968-07-13 21:33:00,0 +2592,1967-05-07 08:48:00,0 +9990,1968-01-19 10:01:00,0 +4797,1968-09-23 19:58:00,0 +966,1967-10-20 20:31:00,0 +7352,1969-08-31 23:18:00,0 +880,1965-11-02 17:22:00,0 +8297,1965-01-24 11:59:00,0 +5213,1968-01-05 22:35:00,0 +4036,1967-05-07 06:11:00,0 +206,1969-09-21 03:30:00,0 +9375,1967-10-15 07:05:00,0 +7451,1966-07-10 23:47:00,0 +8079,1969-10-27 11:07:00,0 +2847,1967-04-08 11:49:00,0 +4976,1966-04-02 03:07:00,0 +206,1968-06-05 19:38:00,0 +3147,1969-12-01 09:02:00,0 +8829,1969-09-05 05:19:00,0 +8340,1967-01-28 21:06:00,0 +611,1969-05-07 09:28:00,0 +3052,1968-12-10 09:48:00,0 +7249,1967-02-14 01:47:00,0 +756,1968-03-14 02:18:00,0 +1764,1969-12-13 19:00:00,0 +2944,1965-02-06 23:00:00,0 +1689,1967-12-29 13:07:00,0 +2181,1969-05-12 04:15:00,0 +1312,1966-05-23 00:33:00,0 +6035,1965-08-02 19:48:00,0 +2579,1969-07-06 20:31:00,0 +7272,1966-03-15 23:00:00,0 +8448,1965-02-10 04:40:00,0 +4123,1968-10-29 20:55:00,0 +8811,1966-12-10 11:45:00,0 +2402,1969-06-05 23:17:00,0 +9467,1965-07-24 04:03:00,0 +9187,1965-11-18 07:16:00,0 +8768,1968-05-08 17:56:00,0 +7343,1968-09-11 23:57:00,0 +3911,1967-10-27 13:18:00,0 +2493,1967-11-07 11:43:00,0 +2260,1968-04-15 16:50:00,0 +8778,1965-12-14 10:56:00,0 +5460,1968-02-15 03:29:00,0 +3369,1967-06-16 03:57:00,0 +9195,1965-08-08 02:37:00,0 +5062,1969-05-21 15:57:00,0 +6856,1969-08-22 12:59:00,0 +2641,1965-05-04 21:15:00,0 +3488,1967-10-11 08:36:00,0 +2012,1967-05-10 09:39:00,0 +1126,1965-11-19 20:55:00,0 +4044,1965-06-18 05:23:00,0 +2557,1966-04-30 15:00:00,0 +2324,1965-04-04 22:04:00,0 +8666,1967-02-01 07:24:00,0 +3245,1966-08-04 17:22:00,0 +299,1965-07-28 06:55:00,0 +6385,1968-06-30 13:54:00,0 +2424,1967-01-31 04:26:00,0 +612,1969-07-21 03:52:00,0 +7481,1969-09-19 11:02:00,0 +5666,1968-06-07 06:26:00,0 +8423,1969-12-19 10:56:00,0 +9033,1968-10-10 16:06:00,0 +2540,1966-10-23 21:01:00,0 +2344,1967-01-17 12:42:00,0 +8150,1969-09-10 08:16:00,0 +3043,1967-09-24 16:25:00,0 +4106,1966-05-06 07:18:00,0 +9271,1966-04-16 22:20:00,0 +7332,1968-10-09 23:31:00,0 +9105,1965-02-23 12:43:00,0 +4437,1968-04-05 20:55:00,0 +372,1968-07-27 17:04:00,0 +6958,1969-02-18 06:42:00,0 +1107,1968-01-13 00:23:00,0 +8143,1968-10-10 04:55:00,0 +2645,1969-05-09 22:37:00,0 +1474,1965-10-20 11:59:00,0 +4376,1968-04-17 12:10:00,0 +7168,1967-10-07 12:14:00,0 +3433,1968-07-14 11:32:00,0 +969,1966-11-22 18:43:00,0 +7656,1967-12-16 12:30:00,0 +2322,1969-09-20 03:07:00,0 +696,1967-05-17 17:03:00,0 +6720,1966-08-12 20:11:00,0 +2552,1968-10-09 05:53:00,0 +6587,1966-11-16 17:18:00,0 +4776,1968-07-21 09:50:00,0 +7088,1968-03-12 09:42:00,0 +2564,1969-12-24 22:16:00,0 +3381,1967-06-28 14:36:00,0 +7682,1967-12-28 20:29:00,0 +5520,1968-02-18 00:01:00,0 +7145,1965-07-30 10:04:00,0 +8264,1967-10-19 22:52:00,0 +4690,1969-12-12 04:24:00,0 +7381,1965-10-07 12:10:00,0 +1306,1965-12-20 20:25:00,0 +4925,1969-01-31 18:43:00,0 +1441,1969-07-22 21:04:00,0 +6656,1967-08-23 20:41:00,0 +5877,1969-09-25 22:21:00,0 +2291,1967-09-06 12:53:00,0 +1248,1966-10-06 12:03:00,0 +2041,1969-10-06 07:10:00,0 +2831,1967-09-03 07:34:00,0 +678,1968-02-09 04:59:00,0 +9019,1966-03-07 11:37:00,0 +4448,1966-11-15 19:24:00,0 +3551,1967-09-12 22:42:00,0 +1263,1966-12-30 22:39:00,0 +2776,1969-05-19 01:54:00,0 +355,1965-03-29 22:56:00,0 +2244,1968-12-03 20:55:00,0 +7641,1967-11-23 10:37:00,0 +6127,1965-03-20 23:03:00,0 +5437,1968-06-10 09:56:00,0 +7994,1967-11-18 01:06:00,0 +8162,1966-03-01 23:34:00,0 +8490,1966-08-09 02:46:00,0 +1044,1968-12-02 16:04:00,0 +7424,1968-01-11 08:28:00,0 +9127,1969-04-10 03:46:00,0 +9853,1969-07-05 14:01:00,0 +1217,1965-01-18 19:13:00,0 +9661,1967-01-18 03:52:00,0 +8377,1965-07-09 01:56:00,0 +8282,1968-08-05 17:11:00,0 +4548,1968-02-28 05:23:00,0 +5253,1968-11-04 15:30:00,0 +3652,1969-08-26 20:59:00,0 +6777,1967-05-18 19:31:00,0 +1290,1966-08-30 08:40:00,0 +9152,1969-01-10 06:57:00,0 +1852,1969-05-12 11:27:00,0 +2592,1967-08-06 19:44:00,0 +2400,1966-11-30 19:45:00,0 +6795,1965-09-19 05:56:00,0 +3741,1967-08-08 10:46:00,0 +1476,1965-11-21 13:38:00,0 +9795,1967-05-02 08:26:00,0 +955,1966-11-01 04:41:00,0 +6284,1969-07-07 20:06:00,0 +7804,1966-11-10 07:00:00,0 +7795,1969-06-13 19:29:00,0 +4152,1965-04-20 03:20:00,0 +8487,1967-09-02 05:47:00,0 +6149,1967-08-04 18:49:00,0 +4176,1966-11-18 23:19:00,0 +1230,1968-08-31 09:10:00,0 +7383,1965-05-25 14:26:00,0 +1604,1969-12-27 18:31:00,0 +982,1966-01-24 21:11:00,0 +2671,1965-01-31 10:23:00,0 +4986,1969-09-05 08:32:00,0 +3599,1965-08-16 10:16:00,0 +3513,1966-09-28 14:47:00,0 +5344,1967-02-12 10:19:00,0 +7470,1966-04-20 02:15:00,0 +7453,1968-06-19 01:24:00,0 +3128,1966-07-12 00:09:00,0 +9090,1966-12-19 03:42:00,0 +4197,1969-01-22 15:35:00,0 +1366,1968-02-11 10:14:00,0 +7044,1969-04-11 07:58:00,0 +7253,1966-09-07 05:31:00,0 +3430,1967-12-12 05:16:00,0 +5405,1967-12-26 08:37:00,0 +4032,1968-02-03 17:08:00,0 +7936,1965-05-12 11:28:00,0 +2532,1969-06-21 05:34:00,0 +6774,1966-06-08 01:26:00,0 +3873,1965-01-26 01:18:00,0 +7611,1966-08-12 23:05:00,0 +2820,1965-02-10 09:19:00,0 +5620,1969-04-24 12:14:00,0 +8379,1968-12-14 15:48:00,0 +9805,1966-07-26 04:36:00,0 +4658,1967-10-31 11:11:00,0 +4958,1965-05-28 14:28:00,0 +3342,1969-04-04 02:27:00,0 +2103,1969-04-17 16:59:00,0 +3758,1969-02-24 11:53:00,0 +585,1966-11-05 05:47:00,0 +8670,1965-10-10 23:25:00,0 +9541,1966-06-27 12:04:00,0 +5810,1966-11-08 00:42:00,0 +6891,1966-08-01 12:46:00,0 +6004,1967-02-11 16:27:00,0 +3971,1965-04-17 05:46:00,0 +9537,1969-05-04 04:16:00,0 +9937,1967-04-26 08:04:00,0 +9980,1968-10-14 21:04:00,0 +7217,1969-01-12 08:43:00,0 +9936,1969-04-27 19:00:00,0 +9996,1968-11-09 09:26:00,0 +8153,1967-10-25 21:57:00,0 +672,1966-06-13 07:30:00,0 +1527,1967-08-12 06:02:00,0 +4984,1965-08-26 19:28:00,0 +1944,1966-05-29 16:20:00,0 +1352,1968-07-14 03:43:00,0 +788,1968-05-13 13:55:00,0 +9612,1966-02-20 10:35:00,0 +8461,1968-04-18 02:33:00,0 +7359,1965-09-30 19:29:00,0 +66,1967-04-26 14:28:00,0 +8693,1967-11-26 11:00:00,0 +7835,1965-06-03 03:56:00,0 +4047,1966-05-12 04:14:00,0 +9807,1969-06-11 12:29:00,0 +4706,1967-11-22 03:14:00,0 +102,1966-10-17 17:05:00,0 +2544,1968-12-19 09:22:00,0 +8861,1969-10-10 20:07:00,0 +897,1967-09-02 09:25:00,0 +4040,1966-04-12 12:08:00,0 +3448,1968-10-08 02:29:00,0 +7524,1966-06-19 04:15:00,0 +9786,1969-01-21 22:16:00,0 +4720,1969-10-31 14:15:00,0 +9789,1968-02-08 10:04:00,0 +8110,1967-04-07 14:30:00,0 +6201,1965-01-29 20:19:00,0 +257,1967-06-23 01:36:00,0 +1937,1966-03-19 01:42:00,0 +5712,1965-07-06 07:17:00,0 +6255,1967-06-17 00:26:00,0 +6217,1969-10-21 21:38:00,0 +7651,1965-12-20 20:45:00,0 +3094,1969-10-25 08:44:00,0 +9975,1969-08-10 12:45:00,0 +9052,1968-03-09 21:00:00,0 +9642,1965-06-13 00:49:00,0 +1413,1967-02-11 09:00:00,0 +9536,1968-01-15 12:18:00,0 +6178,1965-09-05 11:47:00,0 +6236,1966-11-28 17:45:00,0 +3224,1965-11-28 17:44:00,0 +5317,1966-06-19 20:33:00,0 +8374,1969-10-06 15:35:00,0 +2779,1967-09-01 11:37:00,0 +9641,1968-02-04 07:54:00,0 +7625,1965-05-21 01:00:00,0 +3043,1965-09-03 12:09:00,0 +3527,1966-08-29 20:27:00,0 +3102,1966-09-06 10:08:00,0 +3863,1966-10-17 05:44:00,0 +1632,1968-03-12 07:26:00,0 +784,1965-10-16 03:41:00,0 +8416,1967-07-14 08:26:00,0 +5919,1969-01-17 02:30:00,0 +993,1969-03-03 14:18:00,0 +6467,1968-03-12 21:18:00,0 +7753,1968-12-14 19:50:00,0 +8490,1966-01-01 18:06:00,0 +5554,1969-11-04 10:08:00,0 +4130,1968-05-09 23:16:00,0 +1371,1969-07-26 20:18:00,0 +3063,1968-02-21 22:14:00,0 +9842,1967-03-03 17:14:00,0 +4235,1969-04-18 02:04:00,0 +1875,1967-08-18 01:05:00,0 +7987,1967-12-10 10:30:00,0 +5434,1968-09-05 04:12:00,0 +9159,1967-12-24 17:52:00,0 +3829,1969-04-10 07:48:00,0 +227,1967-07-14 22:20:00,0 +5333,1968-10-06 07:02:00,0 +6586,1969-12-01 11:55:00,0 +7237,1966-08-12 10:55:00,0 +6624,1966-04-02 18:56:00,0 +4188,1969-10-16 23:55:00,0 +8229,1965-03-07 15:48:00,0 +3489,1967-07-19 03:47:00,0 +6200,1969-12-28 09:37:00,0 +966,1965-10-19 13:00:00,0 +2607,1967-09-28 21:44:00,0 +9452,1965-04-19 20:53:00,0 +3049,1965-11-04 09:21:00,0 +4933,1967-02-20 17:26:00,0 +7497,1969-03-26 00:21:00,0 +3909,1967-01-21 22:16:00,0 +5135,1965-07-02 14:25:00,0 +7940,1967-07-02 20:13:00,0 +6907,1969-09-16 06:13:00,0 +4955,1965-04-04 15:52:00,0 +3898,1965-02-27 07:47:00,0 +4122,1967-06-25 05:48:00,0 +9277,1967-03-27 01:36:00,0 +5713,1968-06-06 08:14:00,0 +3041,1966-01-23 23:13:00,0 +1603,1967-04-29 05:54:00,0 +4827,1968-06-24 02:25:00,0 +768,1969-06-14 01:03:00,0 +3590,1968-02-07 14:20:00,0 +2101,1969-10-28 21:04:00,0 +1404,1969-05-22 08:37:00,0 +958,1969-08-05 12:51:00,0 +303,1968-01-31 01:49:00,0 +2220,1965-09-06 07:49:00,0 +3158,1967-02-14 10:33:00,0 +3236,1966-11-24 18:06:00,0 +3010,1966-02-26 18:42:00,0 +7816,1965-02-21 20:41:00,0 +4668,1969-10-05 11:01:00,0 +7917,1965-02-16 07:47:00,0 +2350,1967-12-22 13:44:00,0 +2852,1968-12-27 00:13:00,0 +253,1965-07-08 06:02:00,0 +6083,1966-09-20 21:57:00,0 +9333,1969-09-03 03:15:00,0 +753,1965-09-19 01:25:00,0 +3274,1968-05-21 00:32:00,0 +6035,1966-04-16 22:49:00,0 +409,1965-06-23 07:06:00,0 +5563,1967-12-06 21:37:00,0 +6848,1969-05-03 23:50:00,0 +7136,1968-01-01 18:08:00,0 +1712,1968-04-29 15:28:00,0 +2885,1969-04-04 21:52:00,0 +4951,1969-10-17 17:03:00,0 +3771,1969-08-09 19:31:00,0 +4200,1966-07-13 06:22:00,0 +5668,1969-01-12 13:12:00,0 +5102,1967-10-24 13:33:00,0 +7711,1967-07-03 03:42:00,0 +4184,1968-02-13 15:15:00,0 +8488,1965-09-30 15:20:00,0 +1760,1967-04-01 15:53:00,0 +7828,1967-11-28 14:08:00,0 +1137,1965-04-19 13:34:00,0 +9846,1967-02-03 13:42:00,0 +1563,1969-11-21 06:19:00,0 +1367,1965-01-26 02:32:00,0 +99,1966-04-27 18:50:00,0 +8124,1965-01-10 19:34:00,0 +4410,1965-07-08 22:00:00,0 +6525,1967-11-18 06:30:00,0 +4356,1967-02-03 23:08:00,0 +7432,1967-01-16 20:01:00,0 +82,1966-07-24 22:38:00,0 +3073,1965-02-06 21:10:00,0 +159,1965-12-11 00:06:00,0 +951,1966-01-20 19:07:00,0 +3039,1968-02-08 20:07:00,0 +4075,1968-04-16 02:18:00,0 +846,1969-05-01 03:32:00,0 +8685,1966-10-20 22:00:00,0 +2447,1967-04-22 05:11:00,0 +5760,1967-12-30 01:03:00,0 +1214,1968-12-27 20:05:00,0 +3868,1965-07-23 20:00:00,0 +7958,1967-12-26 08:14:00,0 +5245,1969-09-26 08:38:00,0 +6069,1968-03-02 06:59:00,0 +2340,1966-09-02 10:06:00,0 +2124,1969-04-12 08:12:00,0 +1346,1967-10-27 07:58:00,0 +4186,1965-04-03 07:59:00,0 +9953,1965-03-05 18:11:00,0 +1272,1967-12-09 09:26:00,0 +7342,1969-09-08 02:30:00,0 +5594,1968-10-05 07:07:00,0 +3270,1969-02-14 20:51:00,0 +5685,1968-10-28 20:53:00,0 +3317,1969-07-17 20:30:00,0 +5473,1966-11-19 04:33:00,0 +9032,1966-05-10 11:43:00,0 +3608,1968-07-20 11:40:00,0 +8480,1969-08-11 11:48:00,0 +1302,1966-04-24 18:07:00,0 +4295,1967-11-17 16:23:00,0 +907,1968-08-22 21:49:00,0 +5213,1967-12-01 09:53:00,0 +6017,1965-07-20 01:09:00,0 +4686,1968-03-26 08:33:00,0 +334,1965-07-18 10:34:00,0 +9102,1967-05-01 10:59:00,0 +5680,1967-08-30 13:09:00,0 +712,1969-01-10 12:19:00,0 +558,1967-05-05 06:04:00,0 +8172,1969-09-19 03:26:00,0 +7263,1968-05-15 03:43:00,0 +7831,1967-11-19 04:33:00,0 +1262,1968-05-28 23:18:00,0 +9810,1968-01-17 14:59:00,0 +6469,1966-03-09 16:41:00,0 +5912,1967-01-10 14:19:00,0 +5859,1968-09-05 23:54:00,0 +4092,1967-05-10 15:51:00,0 +2439,1966-04-15 07:19:00,0 +5905,1968-10-05 21:40:00,0 +6652,1967-09-15 21:01:00,0 +2772,1968-07-09 18:53:00,0 +5246,1969-12-16 11:27:00,0 +5598,1966-03-08 00:21:00,0 +3036,1969-02-22 20:03:00,0 +8445,1967-12-09 19:42:00,0 +2917,1969-12-26 00:15:00,0 +9176,1968-02-19 15:08:00,0 +1147,1967-11-07 21:11:00,0 +3650,1969-11-03 23:18:00,0 +7263,1969-08-28 20:01:00,0 +5361,1967-10-07 00:09:00,0 +8851,1969-02-17 10:49:00,0 +8096,1969-01-27 16:46:00,0 +1295,1965-01-13 09:08:00,0 +8460,1965-10-10 09:51:00,0 +1368,1966-08-24 11:53:00,0 +7528,1965-10-02 10:43:00,0 +298,1965-09-08 10:01:00,0 +8419,1969-11-08 14:48:00,0 +7747,1965-10-16 17:27:00,0 +9575,1966-09-04 06:53:00,0 +5963,1966-06-29 12:21:00,0 +6458,1968-03-16 05:54:00,0 +6432,1967-02-06 17:50:00,0 +1130,1965-06-13 18:10:00,0 +4442,1969-03-19 06:04:00,0 +3785,1969-09-09 11:49:00,0 +398,1965-02-28 04:08:00,0 +1815,1968-09-01 15:30:00,0 +9115,1968-09-09 00:50:00,0 +3269,1968-11-27 19:57:00,0 +7023,1968-03-04 19:41:00,0 +2565,1966-10-01 04:47:00,0 +1128,1968-01-16 23:41:00,0 +2580,1969-08-30 04:12:00,0 +7438,1968-01-11 09:27:00,0 +9317,1969-08-25 13:39:00,0 +526,1969-05-17 13:17:00,0 +497,1969-07-26 04:08:00,0 +6114,1966-12-30 14:36:00,0 +5155,1967-04-20 09:18:00,0 +6449,1967-02-07 13:03:00,0 +7416,1966-12-16 05:24:00,0 +8553,1968-03-08 20:04:00,0 +9154,1966-10-31 01:16:00,0 +1693,1966-08-28 21:51:00,0 +6671,1965-12-03 06:00:00,0 +5441,1968-08-07 02:45:00,0 +6454,1965-11-18 02:25:00,0 +357,1966-10-23 21:01:00,0 +4278,1967-12-14 02:24:00,0 +6060,1968-07-27 02:51:00,0 +5132,1966-03-01 23:29:00,0 +8055,1968-08-11 09:33:00,0 +3899,1968-04-08 09:15:00,0 +5575,1965-01-18 11:31:00,0 +3732,1965-05-15 04:36:00,0 +9628,1966-01-07 23:54:00,0 +41,1965-12-31 06:39:00,0 +6741,1966-02-26 07:04:00,0 +2,1965-03-26 00:17:00,0 +8842,1965-05-12 00:14:00,0 +3660,1965-10-13 00:43:00,0 +2872,1965-09-19 22:25:00,0 +3642,1967-01-01 20:59:00,0 +2695,1968-06-23 14:16:00,0 +4422,1966-03-19 19:14:00,0 +6097,1967-05-04 22:19:00,0 +3851,1967-09-23 19:28:00,0 +5347,1965-11-16 21:30:00,0 +2513,1965-08-15 03:28:00,0 +4188,1967-03-18 06:22:00,0 +367,1966-10-06 00:45:00,0 +52,1969-07-13 19:42:00,0 +9193,1968-10-08 04:16:00,0 +6629,1966-12-06 21:22:00,0 +1000,1969-07-11 04:39:00,0 +6161,1967-07-23 19:29:00,0 +4532,1966-03-06 04:22:00,0 +1746,1967-09-22 17:51:00,0 +8220,1969-10-22 02:22:00,0 +729,1965-01-22 18:09:00,0 +8557,1968-08-30 12:38:00,0 +4267,1967-06-30 11:30:00,0 +6633,1965-06-25 06:45:00,0 +5365,1967-05-04 22:17:00,0 +2815,1968-03-16 20:07:00,0 +355,1966-04-08 22:41:00,0 +6699,1965-09-29 05:34:00,0 +1552,1966-03-18 08:21:00,0 +556,1968-02-07 16:33:00,0 +2799,1967-02-06 23:04:00,0 +2193,1967-05-03 15:00:00,0 +1649,1965-04-25 01:35:00,0 +2369,1967-05-07 19:31:00,0 +2699,1966-12-30 20:46:00,0 +2350,1969-09-20 07:26:00,0 +7085,1968-12-30 21:01:00,0 +395,1967-01-27 06:51:00,0 +8555,1967-09-27 04:21:00,0 +6084,1966-10-11 00:57:00,0 +4803,1966-12-15 22:36:00,0 +108,1966-06-09 12:55:00,0 +846,1965-02-22 15:22:00,0 +3578,1969-11-07 23:19:00,0 +9778,1967-10-17 22:58:00,0 +400,1966-05-23 10:37:00,0 +7586,1967-12-28 03:36:00,0 +6974,1969-10-31 21:40:00,0 +8223,1967-07-02 18:33:00,0 +8383,1967-08-27 15:47:00,0 +4839,1965-08-17 00:57:00,0 +1078,1965-09-18 22:00:00,0 +9638,1966-11-09 08:06:00,0 +5978,1967-01-29 00:11:00,0 +6962,1967-10-31 05:11:00,0 +4236,1965-03-21 18:52:00,0 +8093,1967-11-15 02:09:00,0 +6170,1968-12-05 05:15:00,0 +6194,1965-11-10 11:02:00,0 +9064,1969-12-11 09:37:00,0 +3090,1969-05-03 08:26:00,0 +9604,1969-04-24 21:01:00,0 +5941,1969-05-21 23:29:00,0 +2103,1966-11-18 00:44:00,0 +5531,1965-12-01 20:09:00,0 +8497,1967-06-24 12:08:00,0 +9755,1965-10-30 09:55:00,0 +2373,1965-07-23 20:13:00,0 +2151,1969-05-26 20:22:00,0 +4999,1969-11-24 05:55:00,0 +6546,1965-05-17 09:28:00,0 +6385,1969-03-04 04:22:00,0 +3532,1969-12-24 14:46:00,0 +5577,1968-07-19 10:59:00,0 +6424,1968-08-28 06:20:00,0 +6778,1968-06-02 22:40:00,0 +792,1968-06-03 16:32:00,0 +9189,1965-10-28 17:52:00,0 +9837,1965-07-06 07:30:00,0 +2569,1967-10-22 22:50:00,0 +583,1966-05-05 01:43:00,0 +2630,1968-09-05 11:03:00,0 +1212,1969-07-30 14:22:00,0 +6681,1965-03-19 20:49:00,0 +9700,1966-12-15 02:42:00,0 +9211,1969-10-05 12:25:00,0 +1823,1965-05-20 20:00:00,0 +2440,1967-08-04 05:07:00,0 +8279,1968-07-27 01:48:00,0 +4070,1965-10-09 05:16:00,0 +4717,1965-06-06 19:10:00,0 +4101,1969-08-31 17:36:00,0 +6752,1966-02-04 02:15:00,0 +9693,1967-03-04 03:50:00,0 +7208,1966-12-29 06:03:00,0 +934,1969-02-09 03:12:00,0 +5090,1966-07-13 00:08:00,0 +9683,1967-12-17 09:08:00,0 +6568,1967-06-05 16:07:00,0 +5984,1969-09-02 04:50:00,0 +5885,1967-09-28 23:10:00,0 +4032,1965-05-08 12:10:00,0 +4090,1965-10-02 03:09:00,0 +2091,1968-02-09 09:06:00,0 +8848,1968-07-27 00:52:00,0 +9688,1968-11-05 18:53:00,0 +2501,1966-05-10 01:27:00,0 +6582,1965-02-22 22:23:00,0 +9637,1967-09-08 16:31:00,0 +1326,1966-09-09 03:10:00,0 +8875,1967-03-17 05:21:00,0 +9065,1967-10-27 00:46:00,0 +7167,1966-02-08 08:31:00,0 +3000,1965-08-28 00:29:00,0 +3050,1969-11-22 20:52:00,0 +41,1967-03-19 20:23:00,0 +6037,1968-01-08 09:51:00,0 +6396,1965-06-13 09:10:00,0 +9859,1966-07-04 22:22:00,0 +8058,1969-03-18 08:57:00,0 +5268,1969-11-11 09:52:00,0 +4972,1969-08-24 06:01:00,0 +4016,1965-02-26 08:49:00,0 +5695,1967-11-29 17:40:00,0 +1857,1969-02-27 00:38:00,0 +9704,1966-12-22 12:20:00,0 +6377,1969-07-29 15:00:00,0 +7100,1965-08-03 16:44:00,0 +7508,1965-12-23 20:28:00,0 +5250,1969-10-14 04:51:00,0 +9403,1966-08-27 14:38:00,0 +4585,1965-03-12 00:01:00,0 +3274,1966-08-16 08:28:00,0 +1074,1966-05-14 12:19:00,0 +411,1966-08-05 05:53:00,0 +6082,1969-11-28 07:26:00,0 +2052,1968-06-04 07:41:00,0 +6114,1967-08-21 04:21:00,0 +5308,1969-01-28 05:47:00,0 +9022,1967-06-11 03:29:00,0 +8269,1968-11-17 00:47:00,0 +307,1965-01-10 14:30:00,0 +5641,1966-02-08 14:35:00,0 +869,1969-07-01 15:41:00,0 +1414,1966-03-09 00:01:00,0 +1217,1966-05-27 11:28:00,0 +3949,1965-12-25 16:58:00,0 +7414,1967-12-18 03:28:00,0 +8296,1967-10-26 04:45:00,0 +8404,1968-08-11 13:34:00,0 +1808,1965-09-12 08:25:00,0 +1480,1965-12-03 21:29:00,0 +3327,1967-12-31 15:34:00,0 +9819,1969-10-25 23:58:00,0 +6144,1966-05-13 18:55:00,0 +6290,1966-02-01 20:27:00,0 +1547,1965-10-23 03:28:00,0 +715,1966-03-11 01:44:00,0 +8850,1965-08-01 21:31:00,0 +2358,1966-10-05 04:41:00,0 +1850,1969-03-23 06:22:00,0 +6854,1967-06-08 22:50:00,0 +9163,1967-10-26 16:42:00,0 +6524,1969-08-18 17:45:00,0 +3176,1966-11-13 10:15:00,0 +6499,1965-10-03 16:43:00,0 +5972,1969-10-21 08:15:00,0 +7521,1969-09-18 10:04:00,0 +7316,1966-05-25 07:28:00,0 +703,1967-06-30 15:59:00,0 +489,1968-03-15 06:00:00,0 +3249,1966-11-10 12:51:00,0 +6919,1969-03-22 15:36:00,0 +137,1967-02-15 01:02:00,0 +6834,1966-01-02 17:29:00,0 +9803,1967-08-17 03:02:00,0 +8432,1968-07-06 22:00:00,0 +1702,1967-08-18 06:41:00,0 +7052,1969-03-31 20:33:00,0 +5851,1967-09-06 02:42:00,0 +7339,1969-01-03 22:03:00,0 +1845,1967-03-03 00:47:00,0 +9036,1969-10-05 21:17:00,0 +3132,1967-01-19 12:03:00,0 +7361,1968-07-11 18:16:00,0 +2391,1967-05-28 16:13:00,0 +8086,1965-01-04 18:36:00,0 +1423,1967-08-03 05:56:00,0 +3624,1965-08-08 16:55:00,0 +5379,1967-03-09 19:59:00,0 +3330,1969-10-27 12:46:00,0 +7794,1966-11-07 03:58:00,0 +3434,1967-09-25 14:31:00,0 +4846,1966-06-09 12:08:00,0 +1193,1966-03-01 23:42:00,0 +4938,1968-02-26 08:16:00,0 +9607,1966-11-26 02:49:00,0 +7467,1969-05-06 02:19:00,0 +6501,1969-08-18 08:15:00,0 +958,1965-03-31 13:10:00,0 +5844,1966-10-16 14:04:00,0 +2052,1967-09-16 03:24:00,0 +7807,1965-03-27 23:32:00,0 +2173,1967-08-01 20:49:00,0 +3398,1969-01-01 05:51:00,0 +2550,1968-12-30 23:32:00,0 +8360,1969-08-12 22:23:00,0 +7611,1968-07-01 04:39:00,0 +6245,1968-11-01 05:30:00,0 +5152,1965-10-15 13:21:00,0 +7144,1967-01-25 12:15:00,0 +8355,1967-03-18 15:26:00,0 +7097,1969-04-29 03:47:00,0 +2034,1966-03-08 21:33:00,0 +484,1965-08-10 05:41:00,0 +6397,1967-07-13 20:40:00,0 +7010,1965-02-12 23:52:00,0 +6134,1966-08-14 02:04:00,0 +4745,1967-05-20 20:00:00,0 +2457,1968-10-05 23:48:00,0 +73,1966-01-01 11:10:00,0 +2118,1966-01-27 14:32:00,0 +5305,1967-01-05 11:40:00,0 +9967,1967-11-26 11:03:00,0 +8085,1969-09-15 10:00:00,0 +7900,1969-01-28 01:30:00,0 +9238,1969-05-25 08:56:00,0 +3228,1967-01-19 10:32:00,0 +335,1968-10-18 16:42:00,0 +3777,1966-07-27 02:39:00,0 +1834,1967-07-06 07:01:00,0 +2986,1967-03-19 11:20:00,0 +5971,1968-03-22 05:40:00,0 +5426,1968-04-03 03:05:00,0 +4339,1969-06-06 06:48:00,0 +2891,1965-03-01 14:12:00,0 +4995,1968-07-30 13:11:00,0 +2768,1968-04-30 18:00:00,0 +6848,1965-09-13 21:11:00,0 +1400,1967-12-15 15:06:00,0 +1805,1965-12-23 21:03:00,0 +543,1965-01-30 02:21:00,0 +8355,1966-04-10 08:00:00,0 +7635,1968-07-22 00:39:00,0 +9967,1966-06-03 04:46:00,0 +9720,1967-07-25 22:58:00,0 +9296,1966-06-11 12:06:00,0 +6029,1969-05-01 08:49:00,0 +250,1966-11-08 11:35:00,0 +9348,1969-02-27 01:48:00,0 +5218,1968-07-04 11:57:00,0 +5880,1965-02-08 21:35:00,0 +8211,1968-03-24 20:55:00,0 +5246,1965-03-14 02:27:00,0 +4693,1969-08-22 16:00:00,0 +3152,1969-11-12 01:24:00,0 +2863,1968-09-11 12:00:00,0 +6219,1966-09-26 00:13:00,0 +7884,1968-07-27 06:21:00,0 +6397,1969-08-10 06:53:00,0 +2925,1969-03-05 19:36:00,0 +2150,1966-02-04 02:04:00,0 +7764,1969-08-08 20:03:00,0 +1369,1969-11-09 21:22:00,0 +8849,1968-07-11 13:08:00,0 +595,1968-01-05 11:56:00,0 +7930,1968-02-06 20:54:00,0 +8610,1967-04-02 13:53:00,0 +3623,1965-03-03 04:31:00,0 +4937,1969-06-02 06:08:00,0 +5300,1967-11-21 22:22:00,0 +4216,1969-02-15 22:50:00,0 +2849,1966-02-17 17:32:00,0 +4649,1968-11-22 04:59:00,0 +8804,1969-08-03 23:32:00,0 +502,1965-07-04 04:13:00,0 +4689,1967-01-11 08:07:00,0 +7447,1969-08-07 16:58:00,0 +2640,1965-12-09 21:30:00,0 +1913,1967-05-29 03:40:00,0 +3856,1967-10-22 15:34:00,0 +4303,1968-03-03 17:58:00,0 +291,1965-01-14 03:12:00,0 +5657,1967-02-08 00:09:00,0 +4155,1969-02-27 22:19:00,0 +2244,1966-12-10 14:19:00,0 +84,1966-04-04 03:20:00,0 +3269,1967-09-13 13:34:00,0 +1760,1967-12-02 17:47:00,0 +5037,1966-09-01 11:02:00,0 +3193,1966-08-07 18:53:00,0 +2289,1965-11-04 15:10:00,0 +4862,1969-12-15 00:28:00,0 +8042,1966-04-23 03:30:00,0 +7967,1969-04-13 00:14:00,0 +8711,1969-08-29 15:56:00,0 +4712,1968-01-03 10:11:00,0 +4214,1968-05-31 00:35:00,0 +8333,1969-03-20 00:36:00,0 +9673,1968-11-30 14:49:00,0 +233,1968-04-21 04:26:00,0 +4651,1967-03-31 20:43:00,0 +3249,1967-07-16 16:07:00,0 +1482,1968-06-01 05:07:00,0 +3806,1968-03-26 07:32:00,0 +7426,1967-01-25 10:06:00,0 +3108,1967-11-02 04:42:00,0 +8877,1968-03-23 15:23:00,0 +5458,1966-11-05 08:50:00,0 +315,1968-05-24 11:14:00,0 +6641,1965-10-23 16:33:00,0 +8684,1966-12-26 01:05:00,0 +6451,1965-04-17 02:49:00,0 +3785,1965-12-22 08:15:00,0 +5392,1968-04-08 20:02:00,0 +7297,1969-01-10 09:18:00,0 +9295,1968-03-02 09:04:00,0 +6024,1968-02-14 13:07:00,0 +5899,1965-04-08 00:21:00,0 +309,1968-05-25 03:43:00,0 +414,1967-05-30 02:10:00,0 +4181,1967-04-07 23:09:00,0 +2450,1966-02-08 19:58:00,0 +1683,1966-09-08 11:35:00,0 +7908,1968-02-19 10:47:00,0 +2201,1966-04-03 21:49:00,0 +5455,1967-05-05 08:58:00,0 +860,1966-09-16 00:55:00,0 +1665,1966-08-21 22:23:00,0 +5383,1965-04-19 16:43:00,0 +2291,1967-06-21 18:46:00,0 +1935,1966-10-12 10:51:00,0 +616,1965-03-30 20:11:00,0 +122,1969-05-11 04:45:00,0 +6962,1966-12-14 09:46:00,0 +8651,1969-03-23 00:17:00,0 +7490,1967-08-31 23:25:00,0 +8374,1968-06-05 23:46:00,0 +2180,1965-04-02 17:39:00,0 +5420,1968-12-01 19:26:00,0 +2864,1966-12-26 19:07:00,0 +3946,1967-03-04 07:37:00,0 +5291,1965-04-12 08:45:00,0 +3475,1965-12-09 18:20:00,0 +6915,1969-05-22 15:19:00,0 +2304,1969-08-29 16:09:00,0 +7824,1967-07-24 06:53:00,0 +9068,1969-07-18 12:19:00,0 +6939,1967-04-20 07:58:00,0 +2975,1966-12-20 18:36:00,0 +9729,1969-05-06 05:15:00,0 +2077,1965-02-13 06:48:00,0 +5961,1968-02-28 19:27:00,0 +7176,1965-02-17 17:10:00,0 +460,1968-08-04 07:54:00,0 +6728,1966-08-15 23:52:00,0 +4878,1968-06-21 07:04:00,0 +3335,1968-11-02 01:00:00,0 +9261,1969-05-18 09:28:00,0 +792,1967-03-01 14:19:00,0 +9780,1966-02-09 15:35:00,0 +3210,1966-01-18 10:02:00,0 +6639,1966-04-28 18:08:00,0 +1396,1967-05-24 05:44:00,0 +2513,1965-01-04 11:19:00,0 +6861,1966-11-14 18:55:00,0 +5973,1969-10-11 22:20:00,0 +9170,1969-10-13 02:21:00,0 +5555,1968-05-14 06:07:00,0 +4100,1969-10-07 23:22:00,0 +2946,1966-10-19 23:29:00,0 +8743,1968-12-03 11:27:00,0 +5750,1968-12-17 06:38:00,0 +3229,1969-04-20 10:33:00,0 +6792,1968-05-24 20:37:00,0 +8932,1966-06-04 18:13:00,0 +4940,1967-09-17 19:42:00,0 +805,1965-12-04 14:05:00,0 +1070,1968-01-14 23:38:00,0 +3656,1969-02-05 02:06:00,0 +3555,1968-02-10 11:19:00,0 +1919,1966-03-21 15:28:00,0 +6039,1965-03-13 12:09:00,0 +8566,1967-03-16 14:05:00,0 +8907,1968-12-18 23:34:00,0 +3876,1965-06-15 06:18:00,0 +1696,1967-10-28 07:23:00,0 +2791,1967-01-21 23:35:00,0 +8943,1968-07-13 20:11:00,0 +4489,1969-07-03 14:43:00,0 +9311,1967-01-27 10:16:00,0 +8025,1967-09-01 19:13:00,0 +7916,1968-06-25 10:00:00,0 +9700,1968-05-14 09:52:00,0 +2384,1967-05-17 10:24:00,0 +4317,1965-04-26 12:15:00,0 +9746,1968-09-23 05:58:00,0 +7849,1967-08-17 17:37:00,0 +5632,1967-06-11 23:42:00,0 +9067,1965-05-25 10:20:00,0 +8029,1967-05-23 16:11:00,0 +2595,1966-06-21 08:10:00,0 +7008,1968-08-20 06:50:00,0 +86,1965-04-30 06:37:00,0 +3205,1965-12-14 05:01:00,0 +8789,1969-11-04 07:17:00,0 +818,1968-05-31 02:48:00,0 +4948,1966-03-16 04:36:00,0 +2376,1967-09-28 06:22:00,0 +1727,1965-02-07 20:14:00,0 +9140,1967-10-19 05:59:00,0 +8795,1966-03-18 09:59:00,0 +9975,1966-03-06 15:25:00,0 +5440,1965-04-29 16:58:00,0 +3402,1967-06-10 13:41:00,0 +5151,1965-02-02 16:14:00,0 +819,1965-03-31 05:04:00,0 +2922,1966-08-04 08:05:00,0 +7801,1968-09-25 02:07:00,0 +3714,1968-03-27 13:02:00,0 +9051,1969-03-12 15:21:00,0 +2918,1969-04-30 07:37:00,0 +4594,1969-04-26 19:17:00,0 +7928,1965-02-21 03:37:00,0 +5232,1969-11-13 21:58:00,0 +392,1965-10-02 09:33:00,0 +2200,1968-10-23 12:00:00,0 +8700,1969-08-12 19:43:00,0 +9633,1967-12-04 12:17:00,0 +3435,1969-07-16 15:10:00,0 +6140,1966-05-27 04:04:00,0 +861,1969-03-25 23:13:00,0 +3997,1965-06-18 16:48:00,0 +3809,1966-12-29 09:52:00,0 +9984,1969-07-24 03:59:00,0 +6092,1965-01-17 10:15:00,0 +1616,1967-02-10 12:21:00,0 +4888,1965-08-26 23:45:00,0 +7881,1969-09-17 21:16:00,0 +1116,1966-12-12 05:17:00,0 +5063,1966-06-19 18:48:00,0 +7313,1968-10-19 03:50:00,0 +5735,1969-09-02 05:48:00,0 +6426,1968-10-24 21:14:00,0 +2579,1969-05-24 22:30:00,0 +9369,1969-01-22 20:46:00,0 +2720,1966-03-14 03:29:00,0 +1136,1968-06-29 17:13:00,0 +6097,1967-11-04 06:06:00,0 +3433,1965-04-12 10:51:00,0 +7987,1965-05-09 18:02:00,0 +8955,1968-04-08 14:36:00,0 +2561,1966-04-05 06:54:00,0 +1922,1969-10-17 23:42:00,0 +1403,1967-05-25 20:50:00,0 +3856,1967-09-12 12:41:00,0 +137,1969-10-16 12:19:00,0 +4074,1969-01-08 03:05:00,0 +1955,1968-02-01 16:18:00,0 +6275,1969-06-28 02:06:00,0 +5644,1966-05-18 14:40:00,0 +4409,1965-10-10 15:21:00,0 +8121,1969-10-31 12:00:00,0 +3812,1968-03-04 17:55:00,0 +5493,1966-10-28 07:54:00,0 +6577,1965-06-11 07:21:00,0 +7961,1965-04-12 00:22:00,0 +565,1967-12-14 15:00:00,0 +5400,1965-08-09 17:42:00,0 +8705,1969-02-16 06:03:00,0 +4280,1969-01-18 04:24:00,0 +3454,1968-04-12 21:23:00,0 +1295,1966-12-31 10:10:00,0 +8163,1967-08-05 23:55:00,0 +8192,1966-10-30 14:22:00,0 +5399,1969-09-22 02:22:00,0 +3840,1967-11-20 11:10:00,0 +8478,1965-07-01 06:30:00,0 +2390,1968-02-05 05:57:00,0 +1183,1969-05-23 10:10:00,0 +1808,1967-08-24 15:18:00,0 +8585,1968-10-04 08:39:00,0 +8560,1969-03-25 21:35:00,0 +6511,1967-05-12 01:41:00,0 +7405,1966-04-28 01:50:00,0 +7795,1969-10-27 03:11:00,0 +1202,1965-05-31 20:07:00,0 +7221,1967-01-24 04:44:00,0 +1856,1968-04-06 06:36:00,0 +4180,1967-07-18 19:07:00,0 +5431,1967-07-26 08:48:00,0 +2833,1965-08-14 20:07:00,0 +8878,1968-01-27 21:10:00,0 +4073,1968-11-14 22:06:00,0 +7894,1965-07-08 21:34:00,0 +8709,1966-01-18 09:38:00,0 +4290,1969-11-16 22:47:00,0 +8595,1966-06-11 14:58:00,0 +8845,1969-02-12 23:23:00,0 +5050,1965-09-24 04:43:00,0 +9305,1967-06-09 00:08:00,0 +6207,1969-06-24 20:21:00,0 +1697,1968-06-16 08:47:00,0 +2673,1968-07-16 04:03:00,0 +2373,1966-01-30 02:15:00,0 +8595,1967-06-11 16:02:00,0 +7239,1967-12-30 17:22:00,0 +396,1969-11-12 06:14:00,0 +2681,1965-03-27 21:37:00,0 +3694,1966-10-06 15:51:00,0 +6176,1965-01-13 00:56:00,0 +1702,1965-09-21 20:52:00,0 +3785,1969-12-27 15:25:00,0 +5670,1965-08-03 07:22:00,0 +5135,1965-06-08 16:39:00,0 +2867,1965-02-15 02:59:00,0 +3327,1966-03-22 02:49:00,0 +719,1966-02-14 22:09:00,0 +4622,1967-09-05 20:54:00,0 +1662,1966-03-27 16:00:00,0 +3700,1969-02-14 13:58:00,0 +5582,1966-06-15 05:08:00,0 +1895,1966-04-03 06:04:00,0 +4268,1965-12-08 04:59:00,0 +4307,1969-10-06 03:34:00,0 +7110,1965-09-13 13:02:00,0 +2678,1965-08-25 20:31:00,0 +8947,1965-03-01 03:23:00,0 +1330,1966-10-22 18:49:00,0 +3969,1968-08-22 16:06:00,0 +2888,1966-06-13 05:36:00,0 +2996,1967-05-08 04:16:00,0 +8238,1968-04-13 09:58:00,0 +4051,1966-01-20 03:58:00,0 +2499,1968-09-20 05:17:00,0 +322,1965-08-17 14:51:00,0 +8735,1966-05-14 08:36:00,0 +6238,1968-08-20 09:46:00,0 +1143,1967-05-23 19:56:00,0 +9799,1969-08-12 19:32:00,0 +8088,1968-06-08 05:31:00,0 +2979,1966-06-16 23:17:00,0 +9289,1967-08-12 00:20:00,0 +2213,1967-09-13 00:46:00,0 +4709,1966-02-26 02:43:00,0 +298,1965-09-21 21:11:00,0 +7733,1966-01-08 10:58:00,0 +2505,1965-04-30 08:42:00,0 +5905,1967-12-10 16:10:00,0 +8026,1967-10-31 20:34:00,0 +8768,1969-02-02 17:08:00,0 +8777,1965-08-14 15:52:00,0 +1928,1966-10-27 07:00:00,0 +9446,1966-11-03 15:22:00,0 +1433,1969-07-15 10:37:00,0 +7349,1969-10-09 10:32:00,0 +3941,1966-10-12 06:50:00,0 +792,1965-05-04 13:17:00,0 +7059,1969-10-17 17:09:00,0 +8608,1969-03-27 16:05:00,0 +6120,1965-02-23 02:42:00,0 +641,1965-08-11 21:11:00,0 +2115,1966-01-25 21:05:00,0 +6337,1965-02-24 01:04:00,0 +3645,1966-11-27 00:50:00,0 +8108,1969-04-19 21:07:00,0 +4644,1969-10-26 08:39:00,0 +6110,1969-05-24 14:50:00,0 +438,1969-11-28 19:15:00,0 +1367,1967-09-13 07:55:00,0 +5465,1969-05-07 05:58:00,0 +5412,1967-10-20 11:56:00,0 +4101,1965-06-04 20:28:00,0 +5602,1965-07-17 17:43:00,0 +4462,1969-12-20 13:23:00,0 +2177,1969-03-15 06:42:00,0 +4248,1968-06-14 22:09:00,0 +2399,1967-01-21 01:22:00,0 +919,1967-10-28 16:46:00,0 +3446,1966-07-06 15:54:00,0 +765,1966-06-08 10:15:00,0 +8413,1966-08-24 09:34:00,0 +2908,1968-03-23 12:13:00,0 +3347,1965-04-23 03:20:00,0 +7247,1967-06-23 20:33:00,0 +6163,1968-10-17 00:19:00,0 +9405,1965-06-19 20:15:00,0 +9359,1969-01-25 23:01:00,0 +8254,1967-08-18 19:28:00,0 +9239,1968-09-29 02:01:00,0 +822,1966-04-02 11:32:00,0 +4245,1967-06-14 12:37:00,0 +1072,1966-05-22 21:15:00,0 +1390,1966-10-14 22:48:00,0 +1070,1965-03-31 00:35:00,0 +2794,1968-11-20 10:48:00,0 +9482,1967-03-28 13:36:00,0 +4055,1968-08-30 02:24:00,0 +3368,1969-03-28 22:05:00,0 +5496,1966-01-30 02:12:00,0 +4767,1969-04-22 21:51:00,0 +7007,1967-12-19 20:35:00,0 +8988,1968-10-08 02:58:00,0 +3729,1969-07-11 21:59:00,0 +9451,1965-04-12 18:41:00,0 +212,1967-11-07 02:39:00,0 +4126,1967-02-26 10:57:00,0 +4014,1968-12-22 00:18:00,0 +7689,1968-04-08 04:56:00,0 +5285,1969-12-13 19:16:00,0 +7915,1968-09-15 09:49:00,0 +3155,1965-09-05 08:31:00,0 +3238,1967-02-03 18:03:00,0 +2183,1965-01-25 18:25:00,0 +2496,1965-02-13 12:31:00,0 +3954,1967-04-18 17:57:00,0 +4530,1967-10-07 18:38:00,0 +5938,1967-01-09 23:18:00,0 +88,1967-12-12 00:33:00,0 +2095,1966-05-07 12:26:00,0 +7145,1966-03-14 04:18:00,0 +5200,1968-05-26 22:51:00,0 +9561,1969-06-30 12:40:00,0 +1336,1967-05-21 06:42:00,0 +8287,1965-07-21 08:40:00,0 +4085,1968-08-23 19:34:00,0 +9459,1969-12-14 22:49:00,0 +8720,1967-03-16 20:59:00,0 +4712,1966-03-08 10:53:00,0 +8416,1968-08-31 13:13:00,0 +8116,1966-10-12 04:59:00,0 +708,1968-01-22 05:59:00,0 +8133,1968-05-22 11:04:00,0 +2578,1965-10-31 13:05:00,0 +2555,1966-05-16 03:54:00,0 +3542,1968-11-06 17:17:00,0 +2557,1968-03-03 01:49:00,0 +9222,1965-09-10 18:29:00,0 +6646,1967-07-14 11:48:00,0 +952,1969-01-05 09:03:00,0 +471,1969-09-09 16:17:00,0 +5483,1967-02-21 23:40:00,0 +4732,1965-03-28 12:03:00,0 +1875,1966-02-21 00:48:00,0 +907,1967-10-23 06:35:00,0 +7879,1965-03-26 23:24:00,0 +9062,1965-10-23 07:19:00,0 +2373,1969-07-27 20:29:00,0 +5438,1965-09-16 18:12:00,0 +9563,1967-04-07 22:12:00,0 +916,1967-11-26 11:25:00,0 +4019,1967-07-23 06:57:00,0 +8580,1965-01-05 10:13:00,0 +276,1968-04-05 14:05:00,0 +7322,1968-12-13 02:47:00,0 +8296,1968-03-08 17:50:00,0 +9944,1967-01-29 08:21:00,0 +8413,1969-06-06 14:12:00,0 +8209,1967-05-15 14:40:00,0 +2828,1966-07-25 03:33:00,0 +285,1965-10-01 15:55:00,0 +5232,1965-04-20 10:18:00,0 +9095,1969-03-20 05:52:00,0 +4305,1965-09-28 18:08:00,0 +7260,1967-02-28 01:00:00,0 +1776,1965-09-01 12:09:00,0 +7242,1966-07-09 08:09:00,0 +3617,1966-07-28 23:03:00,0 +1016,1965-12-25 05:37:00,0 +478,1966-11-16 15:22:00,0 +2157,1966-05-11 20:19:00,0 +5489,1967-12-12 00:50:00,0 +2251,1968-03-02 01:55:00,0 +1714,1966-10-13 19:37:00,0 +4697,1966-11-20 19:57:00,0 +112,1966-10-10 05:02:00,0 +2058,1967-06-18 10:01:00,0 +7090,1967-06-11 19:43:00,0 +7656,1965-05-18 09:32:00,0 +6361,1965-08-16 22:05:00,0 +5169,1965-03-05 11:12:00,0 +2131,1966-05-04 08:00:00,0 +5316,1967-04-30 20:14:00,0 +3617,1969-10-30 23:01:00,0 +6238,1965-01-08 03:58:00,0 +8079,1965-02-25 15:13:00,0 +8203,1965-11-11 02:01:00,0 +7564,1965-04-01 01:36:00,0 +4999,1966-06-04 18:21:00,0 +7759,1967-02-17 20:25:00,0 +414,1966-04-12 14:03:00,0 +4843,1968-08-12 06:19:00,0 +3359,1966-08-31 08:05:00,0 +4950,1969-03-08 10:14:00,0 +3713,1967-11-01 19:53:00,0 +5199,1969-01-29 22:04:00,0 +2069,1969-12-21 10:52:00,0 +3761,1965-11-30 11:46:00,0 +967,1967-05-31 23:17:00,0 +7886,1967-04-27 09:48:00,0 +9640,1967-04-28 15:37:00,0 +3693,1968-05-25 13:22:00,0 +6615,1969-12-23 07:43:00,0 +1240,1968-07-30 15:14:00,0 +6016,1966-03-26 23:31:00,0 +4852,1966-12-16 07:28:00,0 +2549,1965-01-09 08:40:00,0 +1160,1969-12-31 01:41:00,0 +5836,1969-04-19 05:35:00,0 +6932,1969-07-28 14:54:00,0 +4157,1967-08-30 17:17:00,0 +5943,1968-07-16 15:04:00,0 +309,1965-04-22 19:54:00,0 +2768,1969-05-09 17:37:00,0 +4669,1968-07-16 11:18:00,0 +585,1969-11-17 21:32:00,0 +8450,1968-10-07 01:39:00,0 +7827,1968-01-18 04:55:00,0 +7028,1965-11-19 21:24:00,0 +9611,1968-12-18 18:25:00,0 +8384,1968-03-22 04:15:00,0 +3215,1969-06-28 14:38:00,0 +1552,1967-08-17 01:03:00,0 +4276,1965-11-25 23:56:00,0 +1623,1969-05-15 03:58:00,0 +6820,1969-10-23 21:34:00,0 +3205,1967-04-22 04:14:00,0 +5010,1965-03-25 05:24:00,0 +9032,1966-05-21 23:41:00,0 +1495,1968-03-29 17:47:00,0 +7364,1969-01-24 16:52:00,0 +3018,1966-10-19 17:53:00,0 +1007,1966-04-11 13:32:00,0 +9982,1967-09-06 11:30:00,0 +4403,1968-10-09 07:56:00,0 +1009,1968-05-26 05:11:00,0 +5523,1967-02-25 20:03:00,0 +5921,1965-10-10 03:52:00,0 +7687,1967-06-27 18:36:00,0 +5409,1966-05-08 12:47:00,0 +4473,1969-10-22 06:21:00,0 +3667,1968-10-03 10:23:00,0 +3523,1968-05-06 05:14:00,0 +5779,1965-10-29 21:22:00,0 +342,1968-02-20 17:51:00,0 +7594,1968-01-20 08:53:00,0 +1242,1969-03-30 16:14:00,0 +1950,1968-05-27 00:55:00,0 +695,1966-03-31 21:23:00,0 +1236,1966-01-22 20:21:00,0 +9116,1966-10-12 14:06:00,0 +5695,1965-10-24 13:59:00,0 +5791,1965-04-26 00:47:00,0 +3385,1967-11-08 15:53:00,0 +6640,1968-10-20 09:18:00,0 +3068,1968-07-21 07:23:00,0 +332,1969-11-29 02:12:00,0 +4551,1965-08-31 21:47:00,0 +4609,1968-11-13 04:54:00,0 +5633,1966-09-30 04:02:00,0 +4980,1965-08-24 05:13:00,0 +9193,1968-03-29 04:09:00,0 +5775,1968-02-04 20:43:00,0 +5679,1965-01-23 19:46:00,0 +5138,1968-12-30 19:45:00,0 +565,1967-12-05 18:11:00,0 +529,1966-02-18 14:04:00,0 +9886,1969-10-04 00:17:00,0 +827,1967-02-04 09:03:00,0 +9561,1968-06-14 18:06:00,0 +8662,1968-02-18 06:12:00,0 +7632,1965-10-04 08:09:00,0 +1825,1966-07-31 06:12:00,0 +7758,1967-01-10 01:09:00,0 +8842,1969-12-09 09:21:00,0 +1267,1967-06-28 04:57:00,0 +6401,1965-02-27 14:56:00,0 +5669,1967-10-21 15:55:00,0 +4249,1968-12-06 11:56:00,0 +8847,1967-08-04 15:43:00,0 +3190,1968-09-06 00:49:00,0 +6704,1965-07-03 12:06:00,0 +3916,1968-09-05 20:47:00,0 +6779,1969-06-03 13:45:00,0 +1587,1969-02-25 23:43:00,0 +5943,1968-01-20 22:55:00,0 +9132,1968-01-05 01:50:00,0 +3229,1966-04-06 21:16:00,0 +5672,1967-12-26 04:11:00,0 +257,1966-10-07 12:04:00,0 +2484,1965-04-22 02:29:00,0 +9562,1969-10-27 19:53:00,0 +1787,1967-12-04 05:20:00,0 +4832,1966-08-08 09:39:00,0 +8888,1965-05-02 05:15:00,0 +7021,1967-02-01 23:47:00,0 +8991,1967-07-02 17:46:00,0 +4110,1965-07-04 08:31:00,0 +5533,1967-01-01 11:55:00,0 +2273,1968-05-15 16:39:00,0 +6309,1967-11-12 11:42:00,0 +3458,1965-02-16 04:46:00,0 +679,1968-03-24 00:32:00,0 +1696,1969-08-03 12:57:00,0 +3056,1969-08-22 03:07:00,0 +1662,1968-09-29 01:29:00,0 +1251,1969-07-29 02:31:00,0 +3355,1965-06-02 14:48:00,0 +6930,1968-06-11 20:37:00,0 +9343,1966-05-12 20:13:00,0 +3649,1968-09-18 08:31:00,0 +7513,1968-02-25 07:19:00,0 +3037,1966-05-22 02:42:00,0 +659,1965-11-19 05:22:00,0 +4794,1966-02-25 14:57:00,0 +3986,1968-06-15 15:23:00,0 +8099,1965-05-17 01:22:00,0 +5912,1969-03-30 13:54:00,0 +8633,1965-01-09 02:21:00,0 +5179,1965-01-28 22:28:00,0 +908,1969-11-14 18:31:00,0 +4420,1966-04-03 16:43:00,0 +7304,1965-07-19 19:21:00,0 +7425,1967-09-01 17:36:00,0 +4095,1968-03-28 07:47:00,0 +8989,1968-12-27 03:10:00,0 +2209,1966-05-23 07:44:00,0 +1373,1969-04-24 07:43:00,0 +1168,1966-04-23 03:54:00,0 +4829,1968-11-07 21:42:00,0 +4092,1965-07-09 13:06:00,0 +2469,1969-12-26 00:48:00,0 +1560,1966-05-26 12:10:00,0 +7458,1967-10-25 12:40:00,0 +3091,1968-07-04 20:42:00,0 +1668,1965-09-08 23:33:00,0 +450,1966-01-31 14:30:00,0 +2161,1968-12-05 14:56:00,0 +4665,1969-02-15 23:45:00,0 +9963,1968-10-17 00:40:00,0 +6268,1968-09-15 01:01:00,0 +300,1965-10-21 06:14:00,0 +9518,1968-10-19 13:27:00,0 +7482,1968-07-05 21:54:00,0 +5809,1969-06-24 05:30:00,0 +1073,1966-04-11 21:43:00,0 +4164,1966-01-31 04:41:00,0 +1117,1968-12-03 16:50:00,0 +8793,1966-12-05 04:48:00,0 +6326,1965-07-02 17:39:00,0 +9514,1967-11-03 13:47:00,0 +7119,1967-03-24 20:25:00,0 +56,1965-10-02 11:34:00,0 +66,1965-05-28 11:52:00,0 +1043,1966-02-26 22:54:00,0 +7869,1966-11-22 18:02:00,0 +2990,1965-09-26 03:50:00,0 +2245,1966-10-08 03:00:00,0 +6160,1965-03-23 04:41:00,0 +5608,1966-09-11 12:04:00,0 +2824,1967-02-22 18:00:00,0 +352,1965-12-25 23:57:00,0 +2979,1967-11-08 06:13:00,0 +6722,1965-01-20 15:47:00,0 +8216,1968-07-25 19:32:00,0 +4307,1969-10-05 19:05:00,0 +685,1966-06-15 00:44:00,0 +606,1966-04-26 20:46:00,0 +6283,1966-10-10 04:08:00,0 +7446,1966-04-28 13:05:00,0 +4216,1965-09-05 05:12:00,0 +1752,1965-08-20 08:30:00,0 +2240,1965-07-02 03:02:00,0 +3076,1969-12-24 13:48:00,0 +594,1966-03-03 21:56:00,0 +7071,1965-06-12 03:30:00,0 +9171,1965-06-05 14:59:00,0 +4773,1969-01-11 05:51:00,0 +7741,1967-10-12 06:55:00,0 +8883,1966-10-19 15:04:00,0 +53,1967-07-02 19:57:00,0 +2282,1967-07-08 22:04:00,0 +7745,1967-08-17 10:23:00,0 +5460,1966-09-12 17:52:00,0 +4996,1967-03-31 15:11:00,0 +7110,1965-07-29 05:17:00,0 +147,1967-04-04 10:10:00,0 +457,1965-11-15 17:13:00,0 +1761,1968-08-14 10:00:00,0 +7012,1966-07-06 09:52:00,0 +7684,1969-01-25 23:32:00,0 +4646,1969-01-15 04:48:00,0 +3443,1969-03-17 08:21:00,0 +7903,1966-04-01 07:22:00,0 +5468,1967-05-04 13:11:00,0 +1241,1969-08-16 14:23:00,0 +8781,1968-11-12 05:55:00,0 +7760,1967-07-11 05:41:00,0 +8884,1967-07-09 06:21:00,0 +6953,1969-01-07 06:56:00,0 +3637,1965-04-17 01:23:00,0 +2494,1968-03-28 00:07:00,0 +3092,1969-08-13 01:59:00,0 +7257,1967-02-04 02:20:00,0 +2424,1966-03-31 23:40:00,0 +2045,1968-10-29 18:01:00,0 +9456,1966-05-19 04:25:00,0 +440,1968-09-06 23:43:00,0 +5708,1969-07-19 03:00:00,0 +6435,1966-09-22 09:45:00,0 +1298,1966-11-04 12:37:00,0 +7564,1969-06-01 17:21:00,0 +3730,1966-03-26 01:32:00,0 +7763,1968-12-27 14:21:00,0 +6795,1966-03-26 08:08:00,0 +8771,1965-03-08 22:25:00,0 +9654,1967-12-22 10:36:00,0 +4551,1967-09-07 02:16:00,0 +7634,1965-06-10 00:30:00,0 +141,1969-06-27 07:55:00,0 +3831,1969-09-29 12:24:00,0 +2722,1965-12-09 05:05:00,0 +6368,1966-04-03 21:37:00,0 +8277,1966-09-08 02:22:00,0 +4667,1965-12-16 20:15:00,0 +5099,1968-11-08 00:04:00,0 +4299,1969-09-06 04:25:00,0 +914,1969-12-31 03:53:00,0 +3842,1969-12-05 02:03:00,0 +7167,1967-01-10 12:01:00,0 +3081,1965-09-17 03:16:00,0 +269,1965-06-12 07:53:00,0 +779,1966-02-26 21:22:00,0 +1231,1967-01-17 09:02:00,0 +9954,1968-09-11 06:55:00,0 +9544,1967-03-28 11:39:00,0 +7192,1967-06-15 02:22:00,0 +2106,1967-05-20 17:38:00,0 +5555,1969-08-21 02:20:00,0 +2160,1965-04-04 06:52:00,0 +3983,1968-11-11 03:11:00,0 +7346,1965-11-15 21:52:00,0 +5871,1966-03-09 15:20:00,0 +3276,1968-03-11 05:33:00,0 +7591,1966-04-17 07:49:00,0 +9488,1968-02-26 12:22:00,0 +805,1969-04-19 22:11:00,0 +7267,1968-12-04 21:32:00,0 +2302,1967-01-03 04:04:00,0 +3199,1968-03-17 07:44:00,0 +5506,1966-04-20 01:47:00,0 +7769,1968-06-22 10:28:00,0 +6403,1965-10-31 22:58:00,0 +1818,1968-02-13 12:35:00,0 +8450,1967-09-10 11:43:00,0 +5498,1967-03-28 23:01:00,0 +6678,1966-09-27 13:07:00,0 +9692,1968-01-15 07:48:00,0 +9792,1967-12-12 00:49:00,0 +1367,1968-01-10 02:49:00,0 +6285,1967-11-28 07:19:00,0 +7864,1967-01-31 06:30:00,0 +7794,1967-09-25 03:09:00,0 +9134,1966-01-24 13:51:00,0 +1301,1969-08-02 06:24:00,0 +2743,1967-09-17 21:56:00,0 +6843,1968-02-02 06:29:00,0 +946,1969-09-04 04:15:00,0 +6884,1969-07-13 01:00:00,0 +7791,1969-01-10 18:12:00,0 +6228,1965-03-01 05:33:00,0 +14,1969-04-08 11:13:00,0 +5642,1969-12-07 19:57:00,0 +1528,1967-07-01 11:48:00,0 +267,1966-09-17 02:28:00,0 +6313,1968-10-09 21:30:00,0 +8526,1968-08-21 18:17:00,0 +7778,1968-08-02 18:53:00,0 +7910,1966-11-24 21:48:00,0 +8076,1969-08-28 08:47:00,0 +7519,1968-06-13 00:07:00,0 +9251,1968-04-19 17:16:00,0 +8496,1966-02-23 12:15:00,0 +3752,1966-08-30 07:25:00,0 +6850,1968-08-23 01:24:00,0 +9284,1965-01-31 03:57:00,0 +6989,1969-09-10 13:40:00,0 +7126,1968-01-01 13:15:00,0 +4098,1969-05-07 09:32:00,0 +3578,1968-08-01 00:12:00,0 +575,1966-09-09 15:38:00,0 +8940,1967-03-29 09:15:00,0 +3632,1969-05-01 23:20:00,0 +236,1967-04-09 15:37:00,0 +2241,1965-06-10 22:32:00,0 +9828,1966-11-20 09:51:00,0 +3537,1967-07-26 15:08:00,0 +9758,1969-01-06 14:59:00,0 +9428,1965-04-06 14:55:00,0 +3574,1968-08-07 17:23:00,0 +7068,1966-04-20 01:13:00,0 +6351,1966-08-06 22:36:00,0 +3284,1968-10-30 06:11:00,0 +7358,1967-08-01 17:14:00,0 +9811,1967-04-29 04:27:00,0 +6967,1969-02-27 20:59:00,0 +5361,1967-03-30 15:36:00,0 +4594,1965-01-04 12:08:00,0 +564,1969-06-28 21:12:00,0 +8926,1966-07-01 21:35:00,0 +9837,1967-09-10 00:13:00,0 +8147,1966-09-28 12:20:00,0 +9679,1967-07-11 21:42:00,0 +1360,1967-05-22 07:22:00,0 +141,1965-03-28 06:21:00,0 +7851,1967-01-06 08:45:00,0 +503,1968-02-08 09:26:00,0 +9533,1968-09-06 00:00:00,0 +467,1967-06-16 18:23:00,0 +8858,1969-10-02 06:57:00,0 +1673,1965-12-12 12:29:00,0 +7952,1965-07-24 21:25:00,0 +1124,1966-11-14 07:27:00,0 +9647,1965-12-07 09:32:00,0 +166,1969-09-02 08:53:00,0 +3853,1965-08-31 19:12:00,0 +2863,1968-09-02 06:23:00,0 +9109,1969-11-29 06:28:00,0 +7492,1967-03-25 16:42:00,0 +3127,1966-12-01 03:58:00,0 +2782,1968-01-03 00:34:00,0 +9700,1969-03-03 01:44:00,0 +8101,1965-04-25 17:31:00,0 +6862,1969-12-12 14:52:00,0 +4957,1966-12-13 22:17:00,0 +8181,1968-01-15 21:08:00,0 +8636,1967-03-20 12:41:00,0 +2989,1966-05-09 13:20:00,0 +7989,1967-03-18 07:33:00,0 +6358,1968-09-27 12:14:00,0 +4529,1965-03-29 15:41:00,0 +9938,1967-02-12 02:54:00,0 +2764,1968-11-07 11:05:00,0 +9878,1965-08-26 17:48:00,0 +942,1966-05-26 17:22:00,0 +8935,1968-07-17 21:11:00,0 +8024,1965-07-13 08:49:00,0 +9213,1966-05-31 22:37:00,0 +489,1968-10-17 00:27:00,0 +7695,1969-02-08 18:41:00,0 +4207,1969-06-20 12:27:00,0 +2906,1967-10-07 04:32:00,0 +4289,1965-02-11 15:56:00,0 +2982,1966-02-08 18:10:00,0 +8220,1968-09-12 14:36:00,0 +7023,1967-05-11 15:20:00,0 +8232,1966-01-23 00:45:00,0 +4245,1969-08-10 21:40:00,0 +9426,1966-10-26 06:46:00,0 +955,1966-10-24 02:50:00,0 +1911,1965-09-30 14:23:00,0 +2102,1967-10-22 21:45:00,0 +9454,1968-11-30 01:31:00,0 +7462,1966-04-26 08:44:00,0 +3995,1969-11-09 05:02:00,0 +6799,1967-08-22 06:36:00,0 +868,1968-03-31 11:19:00,0 +9549,1967-11-28 12:28:00,0 +8970,1968-01-12 15:17:00,0 +5596,1967-06-12 13:54:00,0 +1348,1965-05-18 04:01:00,0 +3517,1969-08-04 11:31:00,0 +5952,1967-01-22 17:41:00,0 +4407,1969-08-03 02:31:00,0 +8761,1966-10-05 20:01:00,0 +4003,1968-05-18 05:25:00,0 +757,1967-05-16 14:45:00,0 +3440,1969-02-23 19:05:00,0 +405,1968-05-28 04:33:00,0 +3647,1966-07-11 15:10:00,0 +6759,1967-03-23 04:55:00,0 +4958,1966-08-10 07:37:00,0 +8600,1968-03-24 22:37:00,0 +7359,1965-10-20 11:30:00,0 +334,1967-12-21 19:38:00,0 +6239,1966-04-22 10:55:00,0 +7091,1965-06-24 14:50:00,0 +4296,1969-08-05 09:45:00,0 +8267,1969-11-17 18:57:00,0 +8526,1966-02-26 14:15:00,0 +3515,1968-04-27 03:35:00,0 +783,1965-09-07 11:39:00,0 +75,1967-10-18 00:08:00,0 +2198,1968-03-03 17:40:00,0 +1429,1969-02-28 14:49:00,0 +6635,1967-04-19 01:37:00,0 +4789,1965-04-06 23:27:00,0 +9301,1968-04-24 04:59:00,0 +6307,1969-03-27 22:39:00,0 +309,1968-01-27 06:03:00,0 +9094,1969-04-02 01:03:00,0 +7729,1968-08-30 09:23:00,0 +6564,1966-09-22 21:41:00,0 +5561,1967-09-08 13:41:00,0 +2499,1966-10-04 10:01:00,0 +9435,1966-05-22 00:47:00,0 +3494,1967-07-08 15:10:00,0 +1953,1968-02-18 04:13:00,0 +3580,1967-12-03 11:49:00,0 +8782,1968-05-27 06:50:00,0 +7604,1969-09-18 08:20:00,0 +9731,1968-03-06 10:53:00,0 +7404,1966-07-24 08:32:00,0 +8565,1969-03-06 14:37:00,0 +5318,1966-01-31 01:13:00,0 +6422,1967-04-19 00:57:00,0 +1522,1967-02-06 05:05:00,0 +2865,1968-07-20 21:29:00,0 +8378,1966-12-30 11:19:00,0 +4725,1969-10-13 01:27:00,0 +1576,1968-01-18 18:51:00,0 +6307,1966-12-17 06:57:00,0 +7918,1967-11-25 07:38:00,0 +8081,1965-03-29 00:12:00,0 +9116,1968-03-12 23:18:00,0 +5153,1968-11-06 07:37:00,0 +6220,1966-10-02 18:07:00,0 +9025,1968-02-13 06:59:00,0 +4277,1969-11-14 18:55:00,0 +1719,1967-09-01 04:28:00,0 +7229,1965-07-23 20:02:00,0 +8501,1965-06-13 23:16:00,0 +803,1966-10-26 13:27:00,0 +6714,1967-12-31 17:42:00,0 +3793,1966-03-16 02:38:00,0 +1398,1966-12-07 12:29:00,0 +5237,1966-11-10 06:16:00,0 +3995,1966-05-07 11:02:00,0 +2521,1968-11-08 17:57:00,0 +5006,1968-04-04 14:41:00,0 +9603,1965-05-31 22:32:00,0 +5642,1965-03-11 19:12:00,0 +7101,1966-08-31 18:32:00,0 +3376,1968-08-27 23:28:00,0 +8539,1967-08-23 08:19:00,0 +8694,1965-12-02 01:29:00,0 +2907,1965-01-24 23:49:00,0 +6693,1968-08-19 23:47:00,0 +9059,1967-09-06 17:03:00,0 +7850,1968-02-02 01:08:00,0 +7550,1969-12-29 23:45:00,0 +7856,1967-04-04 21:31:00,0 +4857,1969-03-29 18:05:00,0 +1335,1969-10-27 04:13:00,0 +6473,1969-05-28 18:18:00,0 +7819,1967-05-27 05:06:00,0 +2497,1968-07-02 03:41:00,0 +6359,1969-10-02 10:02:00,0 +4912,1967-09-23 01:26:00,0 +98,1968-11-03 09:17:00,0 +1945,1968-11-13 19:53:00,0 +4978,1966-11-11 19:38:00,0 +5083,1969-10-30 07:24:00,0 +3812,1969-05-16 00:33:00,0 +5943,1969-06-17 04:12:00,0 +2402,1967-09-21 15:11:00,0 +4159,1965-12-18 07:15:00,0 +6501,1966-03-04 02:34:00,0 +7924,1965-11-08 08:24:00,0 +4310,1968-11-24 06:04:00,0 +8854,1969-11-16 08:51:00,0 +9622,1966-09-23 13:33:00,0 +4447,1967-03-29 10:29:00,0 +7422,1966-11-21 01:45:00,0 +7451,1966-02-06 01:32:00,0 +8608,1967-02-17 03:51:00,0 +6235,1969-07-16 11:37:00,0 +6768,1966-10-08 19:25:00,0 +5951,1966-09-13 02:41:00,0 +3852,1966-07-29 22:04:00,0 +8047,1969-08-15 17:45:00,0 +7322,1968-08-27 23:01:00,0 +5040,1969-04-17 00:23:00,0 +7229,1967-01-05 18:30:00,0 +1149,1967-04-15 07:59:00,0 +1448,1965-04-01 02:48:00,0 +4658,1969-05-09 10:19:00,0 +4921,1965-02-24 15:30:00,0 +3658,1968-11-21 06:54:00,0 +6507,1965-12-12 11:24:00,0 +4207,1966-05-16 07:41:00,0 +5548,1969-06-20 07:43:00,0 +9713,1969-04-18 06:17:00,0 +2076,1969-09-16 03:27:00,0 +468,1966-06-03 07:16:00,0 +4882,1969-06-10 02:54:00,0 +1692,1965-03-26 23:09:00,0 +2166,1968-11-06 09:57:00,0 +3107,1965-07-24 16:00:00,0 +9038,1968-06-01 17:42:00,0 +8822,1969-03-19 02:06:00,0 +4390,1967-02-13 09:28:00,0 +2337,1968-01-12 13:27:00,0 +5218,1966-01-16 07:29:00,0 +9972,1969-04-06 04:39:00,0 +9120,1966-09-21 09:02:00,0 +8879,1966-05-07 02:33:00,0 +9004,1968-09-04 21:58:00,0 +7068,1966-01-28 12:58:00,0 +7629,1967-08-01 10:53:00,0 +8500,1969-06-12 02:24:00,0 +2520,1966-12-03 22:00:00,0 +2327,1968-08-05 05:23:00,0 +1061,1969-05-29 12:16:00,0 +6696,1968-03-24 06:38:00,0 +756,1967-07-20 04:50:00,0 +7800,1969-10-28 16:04:00,0 +465,1967-07-04 23:26:00,0 +1423,1966-08-14 03:37:00,0 +2119,1965-01-05 21:45:00,0 +4098,1966-06-24 23:25:00,0 +9745,1966-01-28 09:05:00,0 +1987,1966-02-17 18:13:00,0 +2981,1967-05-01 05:26:00,0 +3492,1969-09-03 07:29:00,0 +9993,1966-08-24 12:11:00,0 +6071,1969-01-09 08:17:00,0 +7940,1968-08-19 09:28:00,0 +5235,1969-04-08 14:00:00,0 +5626,1968-01-10 03:48:00,0 +5192,1965-10-02 05:04:00,0 +5458,1966-11-18 12:17:00,0 +9924,1966-05-21 05:55:00,0 +5717,1969-04-10 00:58:00,0 +1280,1969-03-07 14:41:00,0 +8667,1966-01-08 13:50:00,0 +8065,1966-05-09 22:22:00,0 +71,1966-06-29 10:00:00,0 +1726,1965-09-06 01:12:00,0 +2421,1965-02-08 10:34:00,0 +7629,1967-05-07 00:59:00,0 +5591,1966-07-26 08:44:00,0 +8467,1965-03-19 10:35:00,0 +3003,1966-09-14 20:54:00,0 +5397,1969-01-19 23:02:00,0 +3469,1966-02-08 14:27:00,0 +8771,1967-09-28 00:58:00,0 +4146,1968-07-01 16:17:00,0 +2897,1969-12-30 14:37:00,0 +622,1968-07-20 11:36:00,0 +3636,1965-04-02 04:58:00,0 +1504,1969-09-02 00:38:00,0 +3142,1968-09-03 14:20:00,0 +2902,1966-12-02 21:27:00,0 +5627,1968-09-25 12:59:00,0 +1235,1968-02-25 03:38:00,0 +6162,1966-01-02 23:04:00,0 +5886,1968-09-16 05:26:00,0 +835,1966-10-30 19:15:00,0 +5776,1965-01-31 05:25:00,0 +3630,1966-07-23 14:06:00,0 +12,1968-07-17 23:00:00,0 +1091,1968-10-13 01:07:00,0 +1666,1968-11-14 06:24:00,0 +4752,1969-10-16 14:08:00,0 +1633,1965-01-13 06:29:00,0 +2055,1966-10-21 05:10:00,0 +5456,1965-01-08 17:56:00,0 +4829,1966-10-13 18:15:00,0 +3263,1965-09-19 22:19:00,0 +6775,1969-06-13 20:25:00,0 +7004,1965-10-23 04:22:00,0 +9916,1968-10-28 21:02:00,0 +8758,1966-05-28 14:09:00,0 +8243,1966-02-08 18:23:00,0 +3950,1965-11-20 03:25:00,0 +7727,1966-08-03 14:08:00,0 +2114,1969-02-03 05:31:00,0 +51,1966-04-07 23:00:00,0 +9320,1969-04-18 03:54:00,0 +9360,1969-01-16 17:11:00,0 +6229,1969-12-30 14:14:00,0 +6465,1965-08-31 21:30:00,0 +9864,1967-03-31 01:00:00,0 +5897,1966-01-20 23:42:00,0 +7669,1966-12-27 03:53:00,0 +9757,1967-06-30 19:55:00,0 +1020,1966-10-07 00:24:00,0 +2706,1969-11-08 12:40:00,0 +7861,1966-04-29 12:30:00,0 +4962,1966-03-29 21:05:00,0 +6249,1967-09-06 23:07:00,0 +3592,1966-01-22 18:16:00,0 +893,1969-02-21 10:54:00,0 +9301,1969-10-03 22:02:00,0 +2977,1967-12-30 15:19:00,0 +4245,1965-10-08 22:44:00,0 +8211,1968-12-14 12:23:00,0 +165,1969-10-13 10:02:00,0 +367,1969-09-17 08:46:00,0 +204,1967-05-26 05:25:00,0 +5208,1969-03-22 19:04:00,0 +8772,1968-10-17 06:40:00,0 +5062,1966-04-25 02:26:00,0 +9278,1968-07-21 11:05:00,0 +4801,1966-01-15 10:32:00,0 +1587,1967-04-08 13:55:00,0 +9685,1965-12-17 07:49:00,0 +4227,1966-06-03 18:47:00,0 +1652,1968-10-17 00:52:00,0 +1440,1965-07-18 06:31:00,0 +2653,1965-07-02 03:31:00,0 +8910,1965-10-31 23:01:00,0 +1974,1968-02-10 00:06:00,0 +2579,1967-01-25 21:02:00,0 +9728,1965-07-25 06:22:00,0 +1749,1968-12-18 03:28:00,0 +2520,1969-12-27 02:21:00,0 +6269,1966-12-28 19:46:00,0 +9655,1968-04-23 12:14:00,0 +1800,1966-09-13 04:39:00,0 +1862,1966-02-20 14:53:00,0 +2746,1967-02-03 20:56:00,0 +1940,1968-05-20 13:58:00,0 +455,1966-08-02 07:03:00,0 +3025,1968-10-26 12:11:00,0 +9033,1967-03-04 21:36:00,0 +2894,1968-08-11 12:09:00,0 +2905,1965-11-03 18:49:00,0 +8793,1967-05-31 03:12:00,0 +2062,1965-03-26 12:59:00,0 +2264,1967-04-12 17:51:00,0 +9090,1966-01-19 12:38:00,0 +7033,1967-05-05 11:21:00,0 +6003,1966-11-17 18:40:00,0 +265,1969-09-25 10:10:00,0 +4119,1969-03-07 17:17:00,0 +2747,1969-09-14 10:12:00,0 +5962,1968-10-17 10:16:00,0 +4304,1967-01-30 00:28:00,0 +4977,1966-07-29 15:21:00,0 +2196,1967-08-21 09:36:00,0 +5762,1966-02-27 07:55:00,0 +5869,1965-07-31 07:36:00,0 +7675,1968-12-15 20:15:00,0 +4448,1968-03-21 00:15:00,0 +3654,1967-08-07 03:56:00,0 +2402,1965-10-31 20:41:00,0 +9371,1967-10-17 11:20:00,0 +7554,1966-10-15 00:08:00,0 +2359,1968-12-19 16:47:00,0 +6238,1967-12-31 21:20:00,0 +2582,1965-08-19 06:29:00,0 +6790,1967-03-21 16:25:00,0 +5795,1966-08-01 03:46:00,0 +3968,1965-11-09 23:12:00,0 +950,1966-06-19 09:33:00,0 +9639,1968-05-24 11:50:00,0 +9137,1969-10-22 22:48:00,0 +3718,1966-08-07 14:59:00,0 +7144,1968-08-17 06:32:00,0 +9548,1965-05-28 21:09:00,0 +8734,1968-04-13 22:50:00,0 +1491,1967-06-13 16:07:00,0 +7782,1967-02-24 06:14:00,0 +4475,1969-08-18 23:55:00,0 +9040,1966-02-11 23:14:00,0 +3306,1969-12-31 08:18:00,0 +4403,1968-10-31 19:54:00,0 +5704,1968-04-25 07:47:00,0 +5301,1967-01-09 18:06:00,0 +4124,1969-11-16 22:04:00,0 +6537,1966-09-10 11:19:00,0 +5993,1968-03-15 04:55:00,0 +2179,1967-03-05 22:57:00,0 +9254,1969-11-02 21:31:00,0 +9330,1965-07-20 08:05:00,0 +5766,1967-01-13 20:55:00,0 +3483,1967-09-22 17:04:00,0 +271,1967-09-10 10:11:00,0 +1076,1965-05-12 21:06:00,0 +3915,1966-09-06 04:49:00,0 +3226,1967-05-15 13:00:00,0 +501,1968-01-29 07:29:00,0 +9928,1969-05-13 18:59:00,0 +6481,1968-11-03 23:16:00,0 +3671,1968-04-14 15:36:00,0 +8672,1969-01-27 09:23:00,0 +2823,1965-07-12 05:07:00,0 +5300,1965-11-17 12:50:00,0 +9384,1966-07-15 18:46:00,0 +7168,1967-03-30 03:32:00,0 +5886,1969-06-25 17:29:00,0 +6094,1965-08-17 06:50:00,0 +2921,1969-03-01 08:38:00,0 +3009,1968-07-20 08:12:00,0 +3823,1966-08-24 10:10:00,0 +714,1968-11-05 23:56:00,0 +3984,1968-12-13 19:23:00,0 +8189,1969-06-06 15:27:00,0 +4107,1965-08-19 09:13:00,0 +2343,1967-11-14 09:53:00,0 +2676,1969-01-19 14:29:00,0 +3269,1965-11-01 03:32:00,0 +8158,1968-08-17 19:45:00,0 +2978,1966-08-17 16:32:00,0 +2622,1966-02-20 16:09:00,0 +5644,1966-01-28 10:24:00,0 +3365,1969-01-30 11:34:00,0 +4125,1969-09-14 03:14:00,0 +4394,1967-01-08 09:55:00,0 +5736,1967-10-25 16:16:00,0 +3226,1969-06-30 08:20:00,0 +6098,1966-10-23 23:08:00,0 +6482,1965-04-17 04:22:00,0 +866,1969-02-21 07:23:00,0 +5869,1969-04-28 16:03:00,0 +1391,1967-12-19 03:26:00,0 +9184,1967-08-06 17:54:00,0 +9289,1965-03-28 23:02:00,0 +186,1968-04-24 02:53:00,0 +6643,1965-03-09 08:08:00,0 +5245,1965-04-17 05:25:00,0 +8937,1968-08-16 12:41:00,0 +2059,1967-12-03 04:27:00,0 +3778,1968-11-12 06:30:00,0 +1896,1969-06-03 04:46:00,0 +1968,1967-11-28 12:31:00,0 +5075,1969-06-25 15:39:00,0 +1127,1966-10-13 21:39:00,0 +4719,1968-08-12 02:37:00,0 +4423,1967-11-06 06:05:00,0 +9938,1965-12-04 21:53:00,0 +5148,1965-10-24 19:23:00,0 +6985,1968-01-28 07:47:00,0 +303,1967-09-11 17:33:00,0 +8644,1965-09-07 12:35:00,0 +8191,1969-07-06 09:38:00,0 +4450,1968-07-28 18:37:00,0 +8005,1966-09-23 23:51:00,0 +3236,1965-04-16 21:21:00,0 +6025,1968-01-26 00:37:00,0 +5315,1969-09-02 01:23:00,0 +3442,1966-11-26 14:26:00,0 +548,1966-02-04 04:29:00,0 +4003,1965-05-30 23:55:00,0 +1927,1969-10-02 08:05:00,0 +7053,1966-12-13 20:26:00,0 +8304,1965-08-29 17:04:00,0 +5902,1965-10-29 13:11:00,0 +3665,1969-04-16 18:18:00,0 +3848,1966-07-20 12:52:00,0 +313,1966-05-04 05:38:00,0 +6662,1966-06-21 05:43:00,0 +286,1967-09-15 09:31:00,0 +4746,1966-02-20 02:45:00,0 +976,1968-11-24 05:18:00,0 +6102,1969-01-23 22:38:00,0 +7977,1966-03-03 11:07:00,0 +9048,1967-07-15 10:20:00,0 +8494,1966-06-10 12:15:00,0 +8886,1969-12-31 17:48:00,0 +1796,1967-03-20 06:30:00,0 +8445,1968-04-15 18:29:00,0 +3189,1966-04-24 04:54:00,0 +9483,1969-12-23 17:55:00,0 +5453,1967-01-30 10:59:00,0 +967,1966-11-20 03:26:00,0 +311,1965-01-09 08:24:00,0 +1514,1969-05-01 01:20:00,0 +5251,1967-12-15 05:44:00,0 +896,1966-01-26 02:09:00,0 +1021,1967-04-13 18:36:00,0 +4704,1967-04-12 11:02:00,0 +1662,1969-07-18 23:58:00,0 +5426,1969-11-27 04:42:00,0 +8616,1966-05-11 12:36:00,0 +4829,1967-01-14 06:35:00,0 +9483,1969-06-07 16:18:00,0 +8307,1968-11-20 03:57:00,0 +4845,1966-07-19 21:26:00,0 +293,1966-12-27 02:53:00,0 +2586,1968-07-30 03:05:00,0 +6380,1965-11-08 14:09:00,0 +3469,1968-10-30 18:21:00,0 +3749,1969-02-14 17:14:00,0 +4132,1965-08-31 10:47:00,0 +4617,1968-06-26 12:15:00,0 +1229,1967-03-18 01:21:00,0 +2887,1967-11-22 19:44:00,0 +7176,1969-03-26 11:20:00,0 +493,1969-06-10 23:19:00,0 +6725,1967-08-06 03:22:00,0 +6924,1967-01-05 02:59:00,0 +8599,1968-04-07 16:40:00,0 +1720,1968-07-16 04:03:00,0 +4899,1968-02-25 19:22:00,0 +4091,1968-10-15 15:23:00,0 +6408,1967-08-10 16:54:00,0 +6828,1969-08-27 09:45:00,0 +6867,1966-03-06 07:12:00,0 +1972,1968-02-05 15:48:00,0 +2481,1965-10-14 19:28:00,0 +1025,1969-10-29 14:37:00,0 +6600,1969-01-18 20:28:00,0 +9499,1967-01-03 19:09:00,0 +7763,1969-04-24 07:49:00,0 +8355,1967-02-02 14:18:00,0 +5244,1969-09-05 13:58:00,0 +624,1968-02-06 05:32:00,0 +6857,1967-04-18 02:31:00,0 +929,1969-03-16 19:32:00,0 +8000,1965-02-24 23:05:00,0 +4762,1968-12-27 14:53:00,0 +5270,1965-04-15 20:32:00,0 +8236,1968-12-01 23:56:00,0 +5922,1968-02-21 22:13:00,0 +19,1967-10-27 16:07:00,0 +9295,1966-07-29 03:52:00,0 +5915,1966-04-16 07:53:00,0 +368,1968-08-10 03:18:00,0 +8453,1966-05-19 18:14:00,0 +3935,1967-12-07 07:23:00,0 +7274,1967-10-19 22:37:00,0 +6093,1969-06-19 15:47:00,0 +8151,1969-03-13 20:59:00,0 +9703,1968-03-08 13:58:00,0 +175,1969-11-14 15:30:00,0 +2266,1969-01-25 08:09:00,0 +27,1969-12-02 06:34:00,0 +7733,1965-05-24 22:54:00,0 +5236,1969-01-07 11:45:00,0 +738,1966-04-26 01:12:00,0 +9130,1968-08-26 09:01:00,0 +5970,1969-08-06 06:58:00,0 +8438,1968-08-24 03:45:00,0 +1505,1967-04-01 20:03:00,0 +1764,1965-04-18 15:49:00,0 +4390,1967-08-24 00:50:00,0 +7753,1965-03-30 23:47:00,0 +9684,1968-03-05 15:09:00,0 +5164,1965-07-31 22:20:00,0 +2502,1968-12-15 11:37:00,0 +7556,1966-02-04 05:55:00,0 +2042,1969-06-17 14:41:00,0 +3379,1968-10-24 19:04:00,0 +3556,1966-01-21 21:29:00,0 +1461,1967-10-17 09:56:00,0 +9742,1967-09-14 22:07:00,0 +5078,1967-07-07 11:31:00,0 +3409,1967-03-04 03:38:00,0 +8040,1966-02-11 10:03:00,0 +5243,1968-12-03 17:32:00,0 +1168,1969-03-14 15:57:00,0 +2871,1967-02-03 00:24:00,0 +7279,1967-06-26 19:40:00,0 +6664,1969-05-10 22:57:00,0 +19,1966-10-19 07:31:00,0 +7571,1966-11-14 23:29:00,0 +7245,1968-02-25 06:38:00,0 +6380,1965-07-16 15:16:00,0 +8177,1969-06-16 18:32:00,0 +780,1968-10-18 11:03:00,0 +7420,1968-01-20 15:17:00,0 +1919,1967-09-21 18:30:00,0 +3347,1968-03-15 16:37:00,0 +1320,1965-12-06 23:24:00,0 +4781,1965-10-25 04:53:00,0 +7697,1966-04-10 10:22:00,0 +1762,1965-04-24 19:58:00,0 +9081,1969-10-19 14:23:00,0 +3161,1967-12-26 16:21:00,0 +3793,1969-02-11 23:30:00,0 +798,1967-02-27 21:08:00,0 +8083,1966-07-09 14:45:00,0 +5223,1965-09-08 03:40:00,0 +1142,1968-02-12 15:35:00,0 +1259,1965-04-17 20:56:00,0 +1850,1969-07-02 01:38:00,0 +6788,1969-08-31 14:42:00,0 +7690,1967-10-19 19:12:00,0 +8218,1968-09-14 07:41:00,0 +8080,1967-03-15 15:08:00,0 +9356,1966-07-18 18:16:00,0 +5637,1969-05-29 07:23:00,0 +9309,1965-12-03 17:20:00,0 +7659,1967-04-22 13:47:00,0 +3644,1965-03-14 17:12:00,0 +885,1967-09-02 04:16:00,0 +9023,1969-04-28 14:17:00,0 +3660,1967-10-24 16:20:00,0 +1002,1968-08-27 07:19:00,0 +2329,1965-04-15 07:57:00,0 +1293,1967-05-26 04:04:00,0 +2490,1968-03-15 05:07:00,0 +7287,1968-01-10 03:53:00,0 +9069,1968-06-21 07:53:00,0 +5281,1968-06-01 20:46:00,0 +3062,1966-10-10 01:28:00,0 +7349,1968-03-23 13:25:00,0 +1586,1965-02-04 09:26:00,0 +1093,1968-05-03 11:02:00,0 +4088,1967-03-04 18:24:00,0 +3241,1967-05-01 19:43:00,0 +447,1969-09-21 01:52:00,0 +8472,1967-01-19 09:18:00,0 +1656,1967-04-08 21:36:00,0 +7120,1969-02-08 22:33:00,0 +2535,1965-03-10 12:03:00,0 +1891,1967-01-31 21:53:00,0 +4699,1968-10-03 12:05:00,0 +1558,1968-02-11 13:58:00,0 +8298,1967-08-31 13:04:00,0 +7814,1966-11-05 21:42:00,0 +1073,1968-02-12 11:11:00,0 +4237,1965-02-17 17:52:00,0 +71,1968-05-27 15:11:00,0 +7757,1969-02-02 13:11:00,0 +8289,1966-03-19 18:53:00,0 +6387,1969-09-28 09:43:00,0 +8002,1966-02-16 06:03:00,0 +8326,1967-10-02 07:41:00,0 +2379,1967-11-22 11:26:00,0 +1643,1967-10-09 19:17:00,0 +9864,1965-06-04 17:40:00,0 +2530,1965-10-19 06:04:00,0 +8459,1966-03-12 19:45:00,0 +7811,1969-12-12 11:36:00,0 +1157,1968-08-26 16:23:00,0 +5010,1967-05-25 22:06:00,0 +3130,1967-10-23 06:24:00,0 +2108,1969-05-30 20:10:00,0 +2176,1966-04-03 16:14:00,0 +2553,1966-06-25 11:57:00,0 +7537,1969-07-19 00:07:00,0 +2972,1967-08-02 23:32:00,0 +9964,1967-06-23 08:18:00,0 +999,1968-10-11 14:35:00,0 +5200,1968-06-29 01:18:00,0 +9852,1965-05-09 23:09:00,0 +2841,1968-03-29 23:46:00,0 +4580,1966-12-14 07:29:00,0 +8708,1965-07-20 09:51:00,0 +5601,1969-07-11 08:54:00,0 +5226,1968-08-04 21:11:00,0 +6512,1966-04-22 08:29:00,0 +9199,1965-01-10 05:19:00,0 +9940,1967-02-26 05:08:00,0 +0,1968-06-27 22:50:00,0 +7150,1969-05-15 02:05:00,0 +8034,1965-12-31 16:13:00,0 +5703,1966-03-05 17:42:00,0 +490,1968-08-08 07:16:00,0 +1088,1965-01-08 15:55:00,0 +5009,1968-09-24 10:45:00,0 +194,1965-03-18 23:35:00,0 +9303,1968-09-19 23:14:00,0 +8651,1969-10-25 07:59:00,0 +6393,1969-04-22 15:00:00,0 +2489,1967-07-26 22:50:00,0 +3092,1968-05-17 05:31:00,0 +5628,1969-12-26 07:54:00,0 +987,1966-07-30 08:05:00,0 +347,1965-05-03 22:56:00,0 +6017,1968-06-06 15:08:00,0 +7344,1965-09-22 06:24:00,0 +3224,1966-07-08 19:35:00,0 +2432,1965-11-06 22:24:00,0 +4626,1969-11-30 23:35:00,0 +7618,1965-08-13 19:01:00,0 +9202,1969-01-19 08:14:00,0 +9880,1967-01-06 05:14:00,0 +8940,1967-03-21 15:05:00,0 +131,1968-06-01 17:42:00,0 +8423,1965-09-22 12:50:00,0 +4598,1969-12-15 16:27:00,0 +8702,1969-03-20 04:24:00,0 +6894,1968-02-29 05:49:00,0 +9373,1969-10-31 09:51:00,0 +5912,1969-01-19 04:37:00,0 +4447,1968-11-20 08:42:00,0 +3643,1966-12-21 16:11:00,0 +9987,1968-12-18 00:15:00,0 +1279,1967-06-28 03:53:00,0 +9383,1968-07-07 12:44:00,0 +1088,1965-10-21 09:14:00,0 +9507,1969-03-06 19:09:00,0 +4157,1967-01-31 13:21:00,0 +6622,1965-11-26 12:52:00,0 +7856,1966-08-23 22:06:00,0 +6710,1966-09-30 11:19:00,0 +3656,1965-03-09 08:51:00,0 +4366,1966-09-26 21:48:00,0 +1008,1966-12-31 20:07:00,0 +5375,1966-01-23 16:41:00,0 +3976,1965-08-28 18:36:00,0 +4386,1969-05-06 00:29:00,0 +6074,1969-04-10 16:01:00,0 +9306,1966-10-30 12:07:00,0 +9866,1967-07-28 01:39:00,0 +9517,1969-07-31 18:15:00,0 +9274,1968-10-06 23:30:00,0 +4049,1965-06-30 20:14:00,0 +2926,1969-08-17 15:39:00,0 +3677,1969-03-27 22:43:00,0 +2457,1966-10-10 23:35:00,0 +2274,1969-08-31 09:09:00,0 +8977,1968-02-02 07:10:00,0 +6304,1965-05-06 08:23:00,0 +9192,1968-05-24 03:58:00,0 +1027,1966-02-02 12:42:00,0 +2047,1966-08-27 12:39:00,0 +6637,1965-11-18 13:11:00,0 +5698,1965-10-31 19:11:00,0 +9503,1965-12-05 10:02:00,0 +6846,1965-01-12 05:01:00,0 +6492,1966-08-16 01:57:00,0 +6331,1966-09-08 14:29:00,0 +4544,1968-04-30 02:36:00,0 +6199,1965-08-28 16:33:00,0 +226,1969-08-26 10:04:00,0 +7466,1968-03-01 09:05:00,0 +6181,1965-01-11 17:50:00,0 +5461,1969-01-31 20:29:00,0 +9654,1967-06-12 23:49:00,0 +5392,1968-10-06 17:17:00,0 +4039,1965-03-20 03:58:00,0 +8766,1967-05-04 03:47:00,0 +1312,1966-07-19 21:23:00,0 +4870,1967-09-18 16:15:00,0 +9532,1966-04-16 02:15:00,0 +4225,1965-04-09 13:09:00,0 +3105,1965-08-18 15:12:00,0 +7777,1969-01-10 19:10:00,0 +9198,1966-07-02 15:29:00,0 +3733,1967-03-18 05:31:00,0 +409,1967-09-30 17:34:00,0 +6359,1965-02-23 07:46:00,0 +8538,1968-10-11 05:20:00,0 +1762,1969-11-22 15:30:00,0 +2268,1968-11-19 18:24:00,0 +5882,1967-01-01 10:15:00,0 +1651,1966-02-25 06:00:00,0 +8106,1966-12-25 11:24:00,0 +5098,1969-02-25 17:56:00,0 +9352,1965-02-25 12:59:00,0 +4468,1967-07-04 21:43:00,0 +1827,1968-01-14 19:20:00,0 +8635,1966-03-25 23:35:00,0 +9679,1969-09-18 15:58:00,0 +5976,1968-09-27 04:10:00,0 +4740,1965-02-24 15:10:00,0 +6181,1966-04-06 07:07:00,0 +4681,1968-10-07 22:29:00,0 +2103,1968-02-22 04:43:00,0 +5610,1967-12-04 07:41:00,0 +8327,1966-02-11 10:25:00,0 +4283,1966-04-03 18:50:00,0 +981,1969-05-17 06:31:00,0 +1893,1968-05-22 23:37:00,0 +9349,1965-10-06 15:16:00,0 +6178,1966-05-21 07:09:00,0 +649,1968-07-05 02:22:00,0 +4596,1966-11-09 20:10:00,0 +1695,1967-05-19 13:23:00,0 +4198,1966-09-02 09:36:00,0 +1189,1967-03-23 18:58:00,0 +1769,1967-08-26 22:55:00,0 +9453,1966-09-14 20:06:00,0 +9212,1969-04-28 01:00:00,0 +8565,1969-01-17 05:59:00,0 +1020,1969-08-29 18:29:00,0 +2081,1966-08-16 08:37:00,0 +4188,1967-05-06 00:10:00,0 +2710,1967-07-19 03:04:00,0 +8362,1965-10-29 13:08:00,0 +2241,1968-09-24 18:21:00,0 +1682,1966-11-10 11:21:00,0 +4229,1968-12-30 20:27:00,0 +6501,1967-10-21 04:29:00,0 +3957,1968-12-13 19:10:00,0 +5825,1969-06-27 11:12:00,0 +4820,1969-07-17 22:09:00,0 +7899,1966-01-25 02:09:00,0 +1625,1968-01-19 06:58:00,0 +8552,1965-06-02 21:37:00,0 +8795,1967-12-07 03:20:00,0 +1062,1967-11-30 03:26:00,0 +4157,1967-04-24 00:51:00,0 +627,1967-07-13 16:10:00,0 +3470,1965-12-03 08:09:00,0 +9850,1968-11-01 06:07:00,0 +6528,1966-12-22 05:37:00,0 +7492,1968-05-01 08:01:00,0 +2577,1969-03-14 16:44:00,0 +5949,1969-08-26 23:57:00,0 +4357,1968-06-17 11:22:00,0 +211,1967-05-15 02:33:00,0 +9053,1965-10-24 23:56:00,0 +6416,1969-02-21 15:43:00,0 +6779,1969-12-08 23:31:00,0 +7682,1967-07-22 20:43:00,0 +334,1965-02-20 13:05:00,0 +3395,1965-03-24 04:14:00,0 +4824,1967-11-25 17:59:00,0 +3408,1966-04-16 06:23:00,0 +3269,1968-06-30 16:04:00,0 +9818,1968-12-07 14:03:00,0 +8587,1968-06-01 19:55:00,0 +7219,1968-10-15 21:45:00,0 +4534,1969-01-12 21:38:00,0 +1313,1965-03-16 02:15:00,0 +5793,1969-10-04 09:01:00,0 +5055,1967-01-16 22:51:00,0 +284,1966-12-17 17:51:00,0 +2791,1969-08-08 05:38:00,0 +25,1969-07-06 18:51:00,0 +7222,1968-11-28 01:39:00,0 +1039,1965-12-29 07:24:00,0 +1519,1967-03-01 14:54:00,0 +7177,1965-12-06 08:56:00,0 +9441,1966-12-25 14:47:00,0 +3128,1967-04-29 06:03:00,0 +2044,1966-11-13 16:27:00,0 +5032,1967-09-10 15:35:00,0 +6867,1969-12-15 05:55:00,0 +5728,1965-04-21 18:35:00,0 +9547,1966-06-13 11:45:00,0 +5903,1967-04-29 01:57:00,0 +6359,1968-11-11 06:33:00,0 +8153,1966-01-13 04:39:00,0 +1700,1968-07-01 12:04:00,0 +8515,1969-12-18 08:55:00,0 +3407,1965-05-14 01:23:00,0 +3208,1966-11-10 10:48:00,0 +1353,1966-07-24 14:33:00,0 +7802,1967-07-31 00:44:00,0 +8029,1967-01-15 19:35:00,0 +9266,1968-08-27 11:34:00,0 +4274,1965-04-17 16:31:00,0 +8236,1967-10-24 04:44:00,0 +3256,1966-05-20 03:32:00,0 +9601,1967-12-31 07:29:00,0 +7590,1969-11-24 02:47:00,0 +5257,1966-06-19 16:50:00,0 +3470,1966-12-30 14:41:00,0 +8679,1969-12-30 20:23:00,0 +9533,1968-03-17 11:16:00,0 +1309,1968-11-04 16:46:00,0 +7420,1965-02-27 09:56:00,0 +8806,1968-01-01 00:24:00,0 +4325,1965-10-16 02:08:00,0 +1338,1965-11-18 13:41:00,0 +2687,1967-03-21 23:09:00,0 +8771,1967-11-15 10:39:00,0 +9174,1968-09-11 21:46:00,0 +2340,1969-12-28 04:46:00,0 +7257,1965-06-26 13:55:00,0 +8724,1969-01-23 13:20:00,0 +2885,1968-12-18 06:35:00,0 +4922,1969-06-14 11:12:00,0 +5541,1969-06-08 18:05:00,0 +7967,1966-09-27 07:32:00,0 +7981,1965-07-21 19:11:00,0 +2870,1965-04-24 03:50:00,0 +9807,1967-03-01 19:26:00,0 +5218,1966-05-26 09:43:00,0 +8989,1968-10-09 12:04:00,0 +4383,1965-02-23 05:51:00,0 +5165,1967-03-11 13:20:00,0 +9936,1966-07-05 03:50:00,0 +4777,1967-12-30 21:48:00,0 +2625,1968-09-22 08:17:00,0 +7156,1969-08-27 03:56:00,0 +9905,1967-08-31 02:00:00,0 +4423,1969-12-10 18:28:00,0 +6580,1967-03-31 18:38:00,0 +6252,1969-07-15 00:31:00,0 +1502,1965-12-13 23:27:00,0 +5137,1965-08-05 20:18:00,0 +1702,1966-03-26 11:39:00,0 +1498,1969-07-17 23:06:00,0 +5741,1968-09-28 09:25:00,0 +3105,1966-11-30 00:10:00,0 +9579,1967-10-01 15:45:00,0 +6937,1969-12-25 11:03:00,0 +3891,1967-08-08 06:29:00,0 +2016,1965-11-28 21:54:00,0 +8607,1965-10-05 07:36:00,0 +86,1968-01-10 05:08:00,0 +4010,1967-09-03 07:24:00,0 +8479,1969-01-10 21:35:00,0 +3552,1965-08-18 20:09:00,0 +1497,1967-08-23 08:51:00,0 +7069,1965-05-23 07:29:00,0 +1575,1967-01-27 21:52:00,0 +4866,1967-05-16 17:15:00,0 +8787,1967-08-22 08:00:00,0 +4651,1969-04-25 07:20:00,0 +4868,1969-07-13 02:14:00,0 +9428,1967-06-22 00:27:00,0 +4395,1966-08-28 06:11:00,0 +8789,1965-09-15 16:37:00,0 +4664,1969-10-05 18:52:00,0 +9742,1968-12-02 06:03:00,0 +7872,1966-03-15 09:06:00,0 +1885,1966-07-21 09:06:00,0 +9998,1969-02-03 12:30:00,0 +762,1969-03-05 10:52:00,0 +5351,1966-02-03 23:21:00,0 +3880,1967-03-25 11:08:00,0 +7829,1968-05-26 13:58:00,0 +8007,1968-10-25 19:06:00,0 +6356,1967-02-07 16:27:00,0 +1605,1967-09-18 03:59:00,0 +7217,1966-10-25 06:26:00,0 +3019,1969-05-12 09:13:00,0 +7360,1967-07-03 02:32:00,0 +7488,1968-05-09 17:19:00,0 +8702,1967-09-14 06:24:00,0 +2688,1965-12-22 10:39:00,0 +1072,1967-07-17 18:51:00,0 +7225,1966-07-14 12:22:00,0 +8961,1966-02-27 16:50:00,0 +5187,1965-10-04 00:15:00,0 +8015,1965-03-01 10:09:00,0 +2591,1965-08-05 01:27:00,0 +5989,1965-12-08 23:29:00,0 +5547,1966-05-18 23:08:00,0 +7844,1966-02-05 08:38:00,0 +665,1967-02-24 08:29:00,0 +3920,1965-05-12 09:24:00,0 +7605,1967-08-11 12:59:00,0 +7267,1967-07-17 09:49:00,0 +7937,1966-07-01 21:39:00,0 +8832,1965-02-14 03:21:00,0 +1058,1969-01-20 11:07:00,0 +3228,1968-01-02 17:48:00,0 +1094,1968-01-05 09:06:00,0 +3086,1966-04-08 22:59:00,0 +2347,1965-05-24 13:38:00,0 +1352,1966-11-24 05:03:00,0 +3059,1965-05-29 16:59:00,0 +6562,1967-03-30 09:22:00,0 +75,1968-05-24 06:21:00,0 +8420,1966-11-30 03:18:00,0 +8541,1966-11-06 08:13:00,0 +9289,1967-12-03 00:04:00,0 +4974,1969-03-03 10:24:00,0 +9740,1969-09-16 06:49:00,0 +162,1968-11-13 06:56:00,0 +9603,1967-05-10 07:53:00,0 +2159,1966-09-02 16:44:00,0 +5577,1965-11-30 05:32:00,0 +8646,1966-08-01 10:33:00,0 +9221,1969-09-06 15:28:00,0 +4785,1969-02-19 11:41:00,0 +8853,1968-06-30 02:48:00,0 +710,1965-07-01 20:06:00,0 +9587,1967-02-19 04:56:00,0 +2569,1969-01-13 19:24:00,0 +2742,1969-06-26 22:37:00,0 +8313,1967-10-04 01:58:00,0 +6213,1966-09-09 18:09:00,0 +4628,1966-09-25 02:47:00,0 +1853,1967-07-18 17:21:00,0 +4939,1965-04-08 19:35:00,0 +32,1966-07-27 12:11:00,0 +8222,1967-09-02 14:10:00,0 +49,1967-05-05 09:16:00,0 +8091,1969-10-01 10:09:00,0 +5469,1969-08-16 07:33:00,0 +4456,1967-05-28 19:48:00,0 +1892,1965-02-24 10:56:00,0 +8547,1966-03-09 07:47:00,0 +9902,1965-08-25 22:25:00,0 +4728,1965-08-04 08:31:00,0 +7511,1967-07-12 16:57:00,0 +974,1969-01-21 13:47:00,0 +6802,1966-06-15 02:39:00,0 +4185,1965-08-16 01:24:00,0 +364,1965-03-17 23:29:00,0 +9747,1968-09-15 04:09:00,0 +739,1969-05-19 07:53:00,0 +1264,1965-01-13 06:34:00,0 +4690,1968-08-28 15:36:00,0 +8951,1969-02-01 20:48:00,0 +9236,1965-03-19 06:55:00,0 +2675,1965-03-11 07:04:00,0 +4634,1966-07-14 14:27:00,0 +3464,1965-05-27 22:27:00,0 +2216,1967-09-19 21:08:00,0 +697,1965-12-14 23:42:00,0 +5098,1967-07-25 01:31:00,0 +925,1965-05-23 06:21:00,0 +3346,1967-11-24 10:39:00,0 +1419,1965-10-08 09:32:00,0 +6466,1967-02-09 10:08:00,0 +714,1965-05-06 07:54:00,0 +9605,1965-02-25 22:19:00,0 +9552,1966-08-09 05:58:00,0 +7521,1967-02-21 22:29:00,0 +9684,1967-11-29 00:35:00,0 +1302,1966-07-10 11:41:00,0 +137,1965-04-16 07:21:00,0 +1857,1967-11-23 03:40:00,0 +29,1966-10-22 21:06:00,0 +8316,1966-10-11 16:03:00,0 +6802,1966-07-15 16:17:00,0 +2894,1965-07-12 21:25:00,0 +5299,1969-10-19 20:19:00,0 +2086,1968-10-16 12:28:00,0 +8542,1965-01-06 05:01:00,0 +4262,1966-11-11 12:07:00,0 +7330,1965-10-31 00:04:00,0 +9147,1965-01-22 12:05:00,0 +9132,1965-03-28 12:48:00,0 +4885,1966-12-21 19:35:00,0 +8130,1969-01-28 22:22:00,0 +5265,1966-11-22 00:20:00,0 +7300,1969-06-05 21:15:00,0 +1420,1966-12-03 22:18:00,0 +5229,1966-12-31 06:33:00,0 +7562,1969-11-30 14:20:00,0 +6605,1966-04-25 22:28:00,0 +9644,1969-12-07 23:26:00,0 +4365,1965-05-04 20:56:00,0 +1289,1968-05-03 21:43:00,0 +2425,1967-03-17 14:36:00,0 +9627,1966-07-29 01:10:00,0 +4800,1965-07-13 09:43:00,0 +3409,1967-09-01 08:55:00,0 +6437,1968-02-02 06:08:00,0 +5342,1967-08-02 04:08:00,0 +771,1965-12-16 07:50:00,0 +8526,1966-11-21 20:13:00,0 +6074,1966-04-05 19:09:00,0 +9957,1969-11-16 07:45:00,0 +4081,1965-05-04 01:10:00,0 +5540,1965-11-14 13:50:00,0 +7181,1965-11-10 15:38:00,0 +217,1968-09-09 09:14:00,0 +6771,1968-02-23 13:02:00,0 +5475,1968-08-31 01:25:00,0 +1172,1965-03-02 03:58:00,0 +3775,1968-10-06 09:25:00,0 +2054,1965-12-18 03:27:00,0 +9192,1969-04-11 03:35:00,0 +3986,1966-01-15 14:29:00,0 +5103,1967-08-11 17:36:00,0 +9633,1969-11-14 09:41:00,0 +7256,1969-09-07 08:39:00,0 +9488,1965-07-11 04:24:00,0 +9071,1965-10-31 16:30:00,0 +2305,1969-09-09 23:31:00,0 +9818,1968-07-10 21:07:00,0 +4511,1967-07-19 12:35:00,0 +8869,1968-08-01 13:30:00,0 +8277,1965-03-11 09:28:00,0 +2683,1966-11-07 20:01:00,0 +738,1965-12-22 15:22:00,0 +796,1966-09-14 11:28:00,0 +7500,1967-07-31 02:40:00,0 +275,1967-09-05 02:47:00,0 +1129,1969-08-07 10:40:00,0 +824,1965-07-01 19:14:00,0 +5343,1967-06-14 06:26:00,0 +9667,1966-01-11 14:53:00,0 +1763,1967-01-16 09:19:00,0 +8696,1967-10-16 22:16:00,0 +9711,1966-07-24 05:07:00,0 +3058,1967-01-13 15:38:00,0 +8302,1968-10-30 12:18:00,0 +1245,1969-01-24 04:31:00,0 +8122,1965-05-21 01:29:00,0 +9225,1968-05-14 14:43:00,0 +9117,1968-12-08 05:50:00,0 +7183,1968-05-21 01:19:00,0 +6397,1969-10-13 00:49:00,0 +3424,1969-08-20 20:42:00,0 +5580,1966-06-03 00:04:00,0 +5725,1965-01-24 23:32:00,0 +4704,1965-04-30 14:09:00,0 +416,1967-03-31 09:25:00,0 +6335,1967-04-27 18:06:00,0 +1828,1968-09-09 20:42:00,0 +6756,1968-02-28 23:49:00,0 +2073,1968-07-26 17:02:00,0 +7306,1969-01-12 02:20:00,0 +4511,1967-04-28 05:11:00,0 +6399,1966-02-21 00:59:00,0 +7142,1967-05-12 12:38:00,0 +2654,1965-08-04 21:07:00,0 +3662,1966-06-12 21:52:00,0 +7268,1967-03-28 19:26:00,0 +3074,1965-01-03 04:06:00,0 +4549,1965-01-29 14:13:00,0 +5736,1966-06-18 16:26:00,0 +5,1969-12-05 22:56:00,0 +2848,1965-05-29 14:08:00,0 +1311,1965-06-28 14:05:00,0 +8756,1969-03-21 14:03:00,0 +8112,1969-09-05 09:48:00,0 +8726,1965-11-09 02:05:00,0 +2315,1969-05-27 19:59:00,0 +9810,1968-05-13 07:40:00,0 +5487,1968-09-11 06:02:00,0 +3663,1968-06-14 18:44:00,0 +6257,1968-04-19 10:59:00,0 +1316,1969-03-23 05:28:00,0 +3282,1968-06-25 08:12:00,0 +1202,1965-11-30 02:34:00,0 +1946,1968-09-03 03:59:00,0 +6234,1967-10-21 15:16:00,0 +9747,1969-11-29 12:00:00,0 +6056,1969-06-02 04:35:00,0 +9399,1965-04-23 00:19:00,0 +7639,1966-10-07 08:17:00,0 +1359,1968-08-02 19:48:00,0 +6664,1968-12-16 05:40:00,0 +7142,1969-06-02 02:19:00,0 +3145,1967-09-21 00:51:00,0 +5585,1967-05-26 20:23:00,0 +431,1967-07-27 01:48:00,0 +3394,1969-10-13 10:37:00,0 +1284,1969-08-05 05:01:00,0 +898,1969-10-27 12:44:00,0 +3202,1966-01-01 05:14:00,0 +5431,1969-01-31 20:01:00,0 +7196,1968-09-03 23:36:00,0 +5828,1965-09-02 21:50:00,0 +8141,1967-02-25 23:48:00,0 +9091,1966-05-17 23:28:00,0 +3144,1965-12-22 01:29:00,0 +3797,1969-05-21 16:45:00,0 +9068,1968-08-26 14:31:00,0 +9701,1968-08-03 17:18:00,0 +9433,1966-11-09 16:49:00,0 +1444,1966-06-10 04:38:00,0 +7045,1966-01-19 10:39:00,0 +1147,1968-07-05 05:04:00,0 +8331,1969-11-21 02:58:00,0 +5118,1967-08-27 13:27:00,0 +5636,1967-07-13 01:52:00,0 +3845,1967-09-14 07:59:00,0 +5495,1967-05-27 04:49:00,0 +2273,1969-06-01 09:34:00,0 +4496,1966-02-06 18:34:00,0 +7912,1967-11-09 03:23:00,0 +3082,1966-05-20 03:04:00,0 +4460,1966-07-01 02:25:00,0 +5343,1966-09-25 19:33:00,0 +5233,1966-11-12 03:23:00,0 +6244,1967-05-17 07:38:00,0 +7358,1969-04-01 02:33:00,0 +1341,1968-02-27 14:01:00,0 +9521,1968-12-01 01:08:00,0 +3912,1967-11-28 18:27:00,0 +3776,1969-04-21 11:08:00,0 +7503,1969-02-08 06:04:00,0 +4208,1969-02-25 14:43:00,0 +2911,1969-03-24 06:21:00,0 +5875,1966-07-08 05:08:00,0 +1551,1969-05-28 19:51:00,0 +3467,1965-12-06 13:36:00,0 +3893,1965-06-22 13:43:00,0 +3199,1966-05-23 22:49:00,0 +7313,1969-07-16 11:23:00,0 +4034,1965-06-03 22:42:00,0 +1514,1968-01-22 12:08:00,0 +5644,1968-02-10 01:54:00,0 +2995,1968-07-25 13:52:00,0 +4622,1969-11-08 09:28:00,0 +7142,1966-07-18 14:53:00,0 +2116,1965-12-24 21:40:00,0 +7067,1966-11-25 11:46:00,0 +6315,1968-01-16 21:43:00,0 +603,1967-12-22 02:12:00,0 +3630,1967-01-30 01:50:00,0 +7803,1969-04-01 07:11:00,0 +1511,1967-11-25 01:20:00,0 +5634,1968-01-22 17:55:00,0 +1338,1967-04-01 21:06:00,0 +4292,1969-12-17 05:24:00,0 +6262,1965-10-09 03:32:00,0 +8738,1966-03-15 05:10:00,0 +7372,1966-02-16 04:06:00,0 +8333,1965-02-15 22:10:00,0 +6747,1965-12-13 05:14:00,0 +36,1967-10-21 02:37:00,0 +4804,1965-07-20 08:29:00,0 +1210,1966-01-22 16:37:00,0 +3572,1969-12-28 10:20:00,0 +8063,1966-01-08 12:12:00,0 +9888,1969-05-15 23:42:00,0 +9055,1967-05-17 19:50:00,0 +942,1967-12-11 03:23:00,0 +4480,1968-11-18 21:31:00,0 +1237,1968-03-12 23:37:00,0 +6733,1968-05-29 16:44:00,0 +3586,1967-05-25 13:08:00,0 +1344,1965-01-04 19:25:00,0 +9808,1965-09-16 00:59:00,0 +4877,1968-06-23 03:25:00,0 +7444,1967-08-04 09:37:00,0 +5867,1968-03-23 08:09:00,0 +7910,1968-05-24 06:48:00,0 +5242,1968-03-01 12:55:00,0 +7827,1969-07-06 04:44:00,0 +9291,1966-06-23 22:57:00,0 +4752,1967-03-15 17:49:00,0 +156,1968-04-17 12:14:00,0 +7145,1969-02-25 02:37:00,0 +4138,1966-06-22 21:50:00,0 +8322,1966-01-01 04:14:00,0 +6452,1965-11-27 08:47:00,0 +1357,1969-11-24 23:17:00,0 +3293,1969-10-12 21:43:00,0 +1196,1966-01-31 00:45:00,0 +4489,1968-11-28 17:26:00,0 +3122,1967-06-28 05:08:00,0 +738,1966-11-08 21:14:00,0 +7230,1965-03-14 17:56:00,0 +1372,1969-09-22 21:21:00,0 +7439,1967-04-07 05:11:00,0 +8242,1967-05-18 23:53:00,0 +8075,1969-10-08 15:13:00,0 +4321,1967-11-06 10:08:00,0 +9432,1967-11-25 06:45:00,0 +354,1969-01-26 12:53:00,0 +2629,1968-06-01 20:17:00,0 +4916,1965-11-25 22:20:00,0 +7758,1966-10-13 19:12:00,0 +2102,1969-03-29 02:48:00,0 +7672,1967-03-31 09:30:00,0 +1581,1965-12-13 10:28:00,0 +1939,1966-06-27 02:04:00,0 +6999,1969-06-04 08:20:00,0 +5625,1967-04-19 05:40:00,0 +3974,1968-01-12 19:35:00,0 +1063,1967-03-05 10:22:00,0 +6733,1966-08-11 22:40:00,0 +6613,1968-05-15 18:08:00,0 +8684,1965-06-13 21:36:00,0 +8510,1965-01-17 16:36:00,0 +8535,1966-11-12 23:01:00,0 +7350,1969-10-10 09:20:00,0 +213,1965-04-18 21:21:00,0 +4428,1967-02-22 09:06:00,0 +6206,1967-10-16 01:11:00,0 +1750,1968-08-15 14:45:00,0 +6948,1965-11-09 23:22:00,0 +4291,1967-06-29 11:56:00,0 +885,1969-03-30 18:30:00,0 +5829,1967-06-18 10:22:00,0 +1586,1966-04-26 21:38:00,0 +4187,1969-08-23 13:27:00,0 +9926,1969-03-15 04:58:00,0 +5999,1966-01-05 13:52:00,0 +8599,1969-11-06 02:47:00,0 +8949,1969-04-18 05:32:00,0 +9580,1966-12-16 03:03:00,0 +4468,1967-07-10 15:09:00,0 +2910,1968-12-27 03:34:00,0 +3759,1966-04-21 00:26:00,0 +2708,1966-12-08 09:44:00,0 +5452,1966-07-10 20:24:00,0 +9377,1967-09-15 18:52:00,0 +2992,1968-05-29 00:31:00,0 +7235,1968-07-07 00:57:00,0 +1710,1968-01-31 06:37:00,0 +9586,1965-01-07 18:56:00,0 +3677,1966-04-26 19:00:00,0 +2494,1969-12-20 04:43:00,0 +9025,1967-04-02 14:42:00,0 +5578,1966-07-21 11:37:00,0 +4216,1966-02-22 00:12:00,0 +8170,1967-02-22 13:02:00,0 +3622,1966-05-22 00:45:00,0 +2409,1965-12-20 06:13:00,0 +3950,1968-08-21 18:42:00,0 +4708,1969-02-11 17:45:00,0 +5033,1967-09-28 11:14:00,0 +107,1969-03-12 07:51:00,0 +8867,1966-05-30 09:28:00,0 diff --git a/tests/test_data/raw/synth_raw_float_1.csv b/tests/test_data/raw/synth_raw_float_1.csv new file mode 100644 index 00000000..6f7f15e7 --- /dev/null +++ b/tests/test_data/raw/synth_raw_float_1.csv @@ -0,0 +1,10001 @@ +dw_ek_borger,timestamp,value +5471,1968-03-03 20:12:00,0 +2377,1968-01-12 05:33:00,0 +8694,1965-09-21 17:23:00,0 +9593,1969-12-02 17:25:00,0 +319,1967-07-26 05:59:00,0 +7868,1969-03-10 01:55:00,0 +5690,1969-08-25 00:49:00,0 +1189,1968-09-08 08:01:00,0 +8255,1967-07-14 07:17:00,0 +6405,1966-12-22 21:31:00,0 +5531,1969-05-21 05:00:00,0 +8019,1966-11-24 18:20:00,0 +2166,1966-12-16 05:55:00,0 +2746,1968-10-29 10:26:00,0 +1549,1968-01-16 07:41:00,0 +5282,1966-10-09 09:46:00,0 +9200,1968-01-22 01:20:00,0 +4466,1967-10-13 03:01:00,0 +7318,1965-10-17 18:13:00,0 +9829,1966-10-17 10:19:00,0 +105,1969-12-07 16:27:00,0 +1327,1968-02-25 02:46:00,0 +8389,1967-05-14 11:52:00,0 +1047,1969-02-08 10:35:00,0 +2874,1967-03-14 01:54:00,0 +1910,1968-10-09 14:46:00,0 +5814,1967-03-15 04:52:00,0 +6316,1968-02-16 04:33:00,0 +309,1967-03-15 14:00:00,0 +8789,1969-11-13 21:43:00,0 +1326,1969-11-07 03:28:00,0 +2349,1966-08-20 16:05:00,0 +6868,1966-08-21 06:21:00,0 +353,1968-08-19 21:34:00,0 +2640,1966-04-11 11:24:00,0 +1094,1966-04-24 11:03:00,0 +9224,1968-05-02 10:39:00,0 +9331,1965-07-28 23:00:00,0 +3664,1967-11-23 20:13:00,0 +7293,1968-09-25 22:18:00,0 +1231,1968-02-05 10:58:00,0 +909,1966-12-06 02:46:00,0 +5938,1969-06-03 05:43:00,0 +9981,1966-01-13 15:12:00,0 +4809,1967-11-16 11:14:00,0 +1352,1965-05-28 19:35:00,0 +450,1965-09-19 04:51:00,0 +5831,1969-07-18 14:10:00,0 +4757,1967-06-22 13:35:00,0 +9918,1968-11-22 07:20:00,0 +5902,1965-12-26 19:04:00,0 +7766,1969-09-19 06:26:00,0 +1996,1968-06-19 02:32:00,0 +3339,1969-06-06 09:31:00,0 +9547,1969-10-04 10:12:00,0 +9242,1969-01-13 21:49:00,0 +4516,1966-06-18 01:16:00,0 +6754,1965-11-14 04:02:00,0 +4533,1968-07-25 22:49:00,0 +7137,1965-04-27 03:07:00,0 +3147,1966-11-21 19:26:00,0 +8782,1967-01-11 19:13:00,0 +7518,1969-09-15 14:13:00,0 +9981,1967-10-12 04:03:00,0 +2493,1968-05-12 21:36:00,0 +1434,1968-02-01 08:18:00,0 +2365,1969-02-02 18:21:00,0 +6696,1969-07-07 09:11:00,0 +3890,1968-07-13 23:29:00,0 +6728,1967-08-10 17:10:00,0 +5030,1967-03-08 03:58:00,0 +6319,1968-03-17 15:31:00,0 +472,1965-10-13 02:04:00,0 +6535,1969-07-25 15:30:00,0 +5120,1969-02-25 21:22:00,0 +1515,1966-09-06 23:01:00,0 +2282,1969-03-24 03:22:00,0 +5887,1967-11-20 18:41:00,0 +8307,1965-05-08 15:58:00,0 +1404,1966-08-18 17:56:00,0 +6039,1968-06-30 21:28:00,0 +6363,1969-02-08 13:27:00,0 +9519,1969-07-16 19:30:00,0 +7991,1966-10-25 03:21:00,0 +4554,1969-05-12 03:37:00,0 +3646,1968-08-15 19:11:00,0 +5931,1968-07-15 18:38:00,0 +4007,1968-02-12 19:45:00,0 +784,1968-03-24 15:36:00,0 +245,1966-12-04 02:16:00,0 +5358,1968-09-16 15:36:00,0 +2598,1968-12-08 16:29:00,0 +8882,1965-10-02 13:54:00,0 +1222,1969-03-02 20:38:00,0 +9209,1968-01-13 07:29:00,0 +3470,1968-10-14 21:27:00,0 +1551,1965-01-06 18:20:00,0 +9229,1965-11-10 20:44:00,0 +6542,1965-05-13 13:20:00,0 +838,1967-04-10 07:49:00,0 +9884,1967-02-08 09:17:00,0 +3843,1967-06-09 14:05:00,0 +2896,1969-03-05 15:17:00,0 +2388,1965-09-30 02:36:00,0 +3693,1965-06-02 02:34:00,0 +6364,1966-07-05 10:00:00,0 +23,1968-07-30 21:10:00,0 +3192,1965-11-09 22:07:00,0 +5047,1968-07-27 20:51:00,0 +8995,1966-05-29 04:42:00,0 +5371,1965-12-15 05:16:00,0 +3254,1968-03-12 04:12:00,0 +2445,1969-10-06 10:45:00,0 +7955,1968-05-28 00:09:00,0 +9575,1966-01-19 01:53:00,0 +213,1967-04-29 04:29:00,0 +8805,1969-11-19 05:11:00,0 +9847,1966-11-20 05:21:00,0 +7751,1966-08-20 01:47:00,0 +3334,1969-04-24 08:01:00,0 +4488,1968-10-17 17:31:00,0 +6656,1968-09-19 21:46:00,0 +494,1968-11-10 14:13:00,0 +2253,1967-09-10 21:29:00,0 +7573,1967-11-01 16:57:00,0 +3321,1966-12-02 15:12:00,0 +1998,1968-12-17 04:58:00,0 +2232,1965-04-19 18:52:00,0 +6469,1965-06-21 16:59:00,0 +6943,1967-06-26 06:55:00,0 +138,1967-06-28 21:48:00,0 +1283,1965-12-22 05:20:00,0 +3901,1968-06-20 14:02:00,0 +2264,1969-05-04 09:08:00,0 +9634,1969-02-07 23:17:00,0 +2198,1967-06-02 07:22:00,0 +7662,1965-03-20 12:13:00,0 +2709,1967-12-24 22:56:00,0 +9042,1968-04-14 09:14:00,0 +7850,1965-07-20 14:55:00,0 +9112,1965-05-25 19:11:00,0 +1342,1966-07-11 11:21:00,0 +5027,1966-01-05 11:59:00,0 +4579,1967-10-24 11:25:00,0 +3568,1965-12-01 05:15:00,0 +877,1965-09-09 06:07:00,0 +659,1965-02-17 00:43:00,0 +2247,1965-06-03 17:10:00,0 +5847,1969-07-29 02:45:00,0 +1068,1969-02-08 14:52:00,0 +109,1965-01-06 03:44:00,0 +8168,1967-10-12 04:01:00,0 +1017,1965-02-06 16:33:00,0 +6560,1965-02-09 09:42:00,0 +4599,1966-03-05 23:49:00,0 +3418,1965-06-06 21:09:00,0 +3303,1965-10-05 22:08:00,0 +4781,1966-02-12 23:54:00,0 +2137,1968-03-31 12:40:00,0 +8994,1965-08-14 18:23:00,0 +5246,1969-07-20 00:55:00,0 +5109,1967-06-13 06:14:00,0 +4113,1965-11-01 06:25:00,0 +4252,1967-03-01 21:12:00,0 +8428,1967-01-28 22:20:00,0 +1969,1966-02-05 08:46:00,0 +7322,1968-02-15 22:42:00,0 +8158,1965-11-25 04:47:00,0 +9408,1968-07-17 22:22:00,0 +4839,1969-07-27 11:14:00,0 +2115,1967-05-05 05:41:00,0 +721,1968-10-15 08:22:00,0 +2390,1965-02-06 04:24:00,0 +9412,1965-10-23 01:31:00,0 +9581,1965-09-25 13:46:00,0 +8833,1967-06-17 23:07:00,0 +1874,1969-05-05 22:14:00,0 +30,1968-01-04 16:15:00,0 +8564,1965-08-26 19:28:00,0 +79,1968-02-16 07:39:00,0 +2111,1965-12-17 16:02:00,0 +5321,1967-08-28 05:17:00,0 +4943,1967-12-22 16:01:00,0 +1852,1968-06-19 00:21:00,0 +86,1967-10-03 05:30:00,0 +2105,1968-02-03 01:59:00,0 +1600,1969-10-07 16:13:00,0 +8965,1969-01-18 03:11:00,0 +6468,1967-09-10 08:54:00,0 +7390,1969-01-22 04:00:00,0 +7520,1969-01-21 12:02:00,0 +2996,1966-07-02 09:01:00,0 +4444,1969-05-01 09:59:00,0 +9296,1965-04-22 22:21:00,0 +7323,1969-10-03 14:52:00,0 +1174,1969-04-13 12:24:00,0 +7471,1969-10-21 16:23:00,0 +4122,1965-10-17 01:21:00,0 +8824,1966-10-21 05:42:00,0 +3242,1969-05-15 02:28:00,0 +6393,1967-04-13 11:26:00,0 +5158,1965-11-08 09:57:00,0 +31,1969-11-08 04:11:00,0 +8615,1966-05-12 20:16:00,0 +7387,1968-04-19 15:52:00,0 +3024,1967-04-10 04:04:00,0 +5901,1967-06-05 13:27:00,0 +7254,1967-03-06 23:20:00,0 +8893,1968-06-27 09:01:00,0 +2443,1966-10-07 09:58:00,0 +3819,1966-03-14 09:53:00,0 +6229,1968-02-27 15:49:00,0 +1516,1968-11-29 12:41:00,0 +7478,1967-02-13 04:07:00,0 +9828,1967-10-04 05:06:00,0 +4461,1965-05-26 21:19:00,0 +319,1968-01-29 13:37:00,0 +9851,1968-05-13 08:31:00,0 +7554,1969-11-15 02:20:00,0 +9464,1967-10-06 00:04:00,0 +8203,1965-04-12 16:09:00,0 +2824,1967-07-30 00:03:00,0 +2934,1968-06-16 02:58:00,0 +3737,1967-08-14 13:11:00,0 +1551,1968-08-24 22:54:00,0 +9569,1965-08-02 04:52:00,0 +4709,1969-11-24 04:40:00,0 +5662,1969-07-03 13:40:00,0 +4837,1965-10-28 17:13:00,0 +380,1966-11-04 08:15:00,0 +6383,1966-10-23 07:59:00,0 +5157,1965-05-27 12:16:00,0 +8081,1968-08-19 00:57:00,0 +7884,1965-11-02 20:53:00,0 +3918,1969-02-02 20:12:00,0 +2762,1968-04-08 06:17:00,0 +3556,1966-05-18 20:42:00,0 +904,1966-08-18 08:01:00,0 +336,1968-07-31 01:10:00,0 +5570,1968-10-12 04:52:00,0 +1259,1967-11-05 21:52:00,0 +2897,1968-06-16 06:16:00,0 +3788,1969-07-20 02:11:00,0 +7748,1969-10-10 07:06:00,0 +3192,1968-11-28 15:26:00,0 +8340,1966-12-31 18:59:00,0 +7878,1967-03-30 13:50:00,0 +5569,1969-10-23 18:40:00,0 +9871,1967-04-12 20:01:00,0 +425,1967-06-20 09:18:00,0 +2621,1965-09-23 04:20:00,0 +3302,1965-03-20 23:58:00,0 +4376,1969-04-29 23:41:00,0 +7045,1968-01-20 01:05:00,0 +9071,1967-03-30 05:26:00,0 +8544,1966-08-15 11:07:00,0 +6327,1968-03-30 16:05:00,0 +4134,1966-09-08 06:08:00,0 +1762,1965-05-26 15:31:00,0 +72,1969-06-03 22:20:00,0 +1396,1965-06-28 04:17:00,0 +7520,1965-09-06 10:01:00,0 +8451,1968-06-08 01:56:00,0 +4070,1966-10-11 09:42:00,0 +1721,1967-04-28 00:08:00,0 +1206,1968-07-07 20:56:00,0 +8009,1966-06-17 21:57:00,0 +8955,1968-02-23 13:48:00,0 +8371,1969-04-16 07:26:00,0 +7490,1965-01-09 19:37:00,0 +6163,1969-06-02 06:31:00,0 +1169,1965-08-11 00:15:00,0 +4377,1966-10-03 12:36:00,0 +9989,1967-11-06 04:41:00,0 +808,1965-03-12 16:56:00,0 +9215,1969-10-17 05:27:00,0 +3793,1969-03-21 03:38:00,0 +1160,1967-04-07 10:58:00,0 +8495,1968-01-10 11:07:00,0 +452,1969-01-29 19:01:00,0 +7607,1965-06-20 21:04:00,0 +1285,1969-10-16 10:38:00,0 +5281,1968-07-14 05:54:00,0 +2116,1965-07-29 03:43:00,0 +4732,1969-07-07 01:43:00,0 +6897,1969-03-14 11:33:00,0 +7490,1967-03-18 21:15:00,0 +5046,1967-12-23 04:09:00,0 +2135,1968-08-10 06:01:00,0 +5140,1966-03-13 02:51:00,0 +329,1969-03-06 21:54:00,0 +7257,1966-01-20 07:33:00,0 +4127,1968-01-02 23:39:00,0 +866,1967-03-05 08:46:00,0 +5507,1969-06-23 20:34:00,0 +1211,1967-05-24 10:58:00,0 +6158,1966-06-12 03:05:00,0 +7240,1966-08-12 12:05:00,0 +4054,1967-11-25 07:46:00,0 +8555,1968-03-24 04:17:00,0 +6954,1965-11-23 21:46:00,0 +372,1968-09-09 04:21:00,0 +6780,1965-07-15 06:27:00,0 +9326,1967-12-17 01:09:00,0 +1282,1966-08-27 03:42:00,0 +396,1967-10-09 11:35:00,0 +5962,1969-04-18 17:35:00,0 +5661,1966-04-13 16:00:00,0 +4175,1968-03-28 05:09:00,0 +3564,1968-07-02 13:58:00,0 +5695,1967-01-26 20:16:00,0 +5300,1968-01-09 02:59:00,0 +6611,1966-03-31 09:38:00,0 +4265,1966-04-26 09:31:00,0 +8136,1965-08-24 01:59:00,0 +3103,1968-04-06 23:20:00,0 +5928,1968-03-13 03:44:00,0 +3093,1967-03-01 22:30:00,0 +2799,1967-02-18 04:38:00,0 +6150,1968-10-30 17:19:00,0 +1200,1968-09-22 18:28:00,0 +7376,1967-06-06 22:09:00,0 +7155,1968-10-08 21:49:00,0 +5286,1966-10-30 06:24:00,0 +3102,1967-10-17 09:29:00,0 +7517,1968-07-06 22:10:00,0 +4999,1967-06-13 00:50:00,0 +9288,1966-01-18 21:50:00,0 +671,1967-12-16 00:08:00,0 +6032,1969-04-06 08:43:00,0 +3213,1967-07-03 14:05:00,0 +5570,1967-03-15 13:59:00,0 +2899,1966-12-28 05:44:00,0 +1380,1966-02-05 00:34:00,0 +1786,1967-09-08 02:31:00,0 +1759,1969-01-02 04:25:00,0 +6526,1968-12-25 21:36:00,0 +5339,1969-03-13 14:31:00,0 +3819,1968-09-04 00:16:00,0 +5802,1965-02-02 09:46:00,0 +9151,1966-06-17 19:21:00,0 +4192,1969-10-24 05:48:00,0 +7126,1965-06-03 06:32:00,0 +8165,1966-11-05 13:31:00,0 +491,1967-09-28 05:19:00,0 +9111,1966-07-24 19:33:00,0 +8446,1966-06-19 06:01:00,0 +4906,1968-08-15 13:39:00,0 +2632,1968-08-28 06:03:00,0 +7312,1968-02-15 05:00:00,0 +4308,1967-06-27 11:46:00,0 +7581,1966-08-10 16:22:00,0 +3456,1969-12-06 07:20:00,0 +9351,1965-09-26 01:24:00,0 +4670,1966-05-04 23:58:00,0 +996,1965-12-19 00:00:00,0 +557,1969-09-01 10:10:00,0 +6192,1968-01-07 20:14:00,0 +3114,1969-03-06 11:21:00,0 +4850,1967-08-05 05:39:00,0 +1907,1967-08-25 02:10:00,0 +4517,1968-12-12 05:38:00,0 +3763,1967-05-02 14:03:00,0 +7580,1967-04-17 17:19:00,0 +9184,1967-08-08 09:10:00,0 +7619,1969-11-24 09:17:00,0 +5712,1968-01-22 23:13:00,0 +1854,1965-03-18 19:17:00,0 +1136,1965-04-01 19:14:00,0 +859,1968-08-23 13:02:00,0 +1040,1966-11-18 18:32:00,0 +8792,1968-12-03 23:26:00,0 +3098,1968-10-13 13:42:00,0 +7002,1968-07-06 22:51:00,0 +9228,1969-07-24 19:37:00,0 +6202,1967-05-02 15:29:00,0 +8946,1969-07-31 03:30:00,0 +2735,1965-06-10 14:47:00,0 +6682,1969-05-08 14:58:00,0 +4393,1969-01-16 12:01:00,0 +7978,1967-10-27 01:53:00,0 +8659,1969-02-21 12:40:00,0 +636,1965-04-18 23:51:00,0 +4218,1969-08-11 06:34:00,0 +8911,1969-12-14 22:13:00,0 +7988,1967-11-14 09:58:00,0 +7401,1966-11-25 11:38:00,0 +2607,1969-06-18 06:38:00,0 +1819,1966-04-24 09:22:00,0 +9857,1969-01-24 15:10:00,0 +6855,1967-04-22 19:57:00,0 +7030,1966-01-05 05:34:00,0 +9134,1967-10-14 00:34:00,0 +1045,1969-08-24 18:24:00,0 +1234,1969-03-28 04:19:00,0 +7044,1969-08-28 08:25:00,0 +2688,1966-03-27 18:33:00,0 +425,1965-04-04 04:48:00,0 +7254,1967-02-05 02:21:00,0 +2409,1965-03-21 14:42:00,0 +464,1968-09-12 10:31:00,0 +6896,1969-02-16 21:42:00,0 +6708,1969-05-25 06:06:00,0 +5190,1965-02-17 01:49:00,0 +3507,1968-05-27 16:08:00,0 +2594,1967-01-19 12:46:00,0 +4500,1969-04-05 03:24:00,0 +533,1965-05-08 13:18:00,0 +2414,1966-05-01 15:15:00,0 +4327,1965-01-16 09:50:00,0 +615,1966-04-19 02:00:00,0 +7017,1966-08-23 06:34:00,0 +9608,1965-03-26 16:53:00,0 +7085,1969-03-03 05:28:00,0 +6407,1967-02-13 04:31:00,0 +4401,1966-04-03 05:36:00,0 +2263,1965-06-06 11:46:00,0 +6481,1967-04-24 12:19:00,0 +3209,1968-03-29 09:05:00,0 +7516,1968-07-28 13:08:00,0 +3872,1969-04-20 10:14:00,0 +6687,1967-07-14 06:11:00,0 +9633,1968-09-03 07:37:00,0 +1628,1969-12-09 09:42:00,0 +4604,1968-04-09 17:19:00,0 +3009,1969-04-20 00:21:00,0 +2008,1967-07-01 20:40:00,0 +3895,1965-04-13 06:36:00,0 +1310,1967-09-22 09:07:00,0 +36,1966-09-28 00:44:00,0 +759,1969-10-26 01:14:00,0 +1081,1969-02-28 00:20:00,0 +6671,1967-09-20 15:43:00,0 +9579,1968-12-01 06:20:00,0 +331,1965-07-23 22:27:00,0 +7825,1969-10-30 18:16:00,0 +8534,1965-07-25 19:57:00,0 +1584,1967-07-12 20:49:00,0 +5786,1967-04-23 05:58:00,0 +2587,1968-06-29 16:39:00,0 +7023,1968-02-18 16:03:00,0 +7828,1966-01-19 18:29:00,0 +4152,1966-08-01 15:36:00,0 +6639,1967-04-10 03:26:00,0 +9301,1969-06-28 08:37:00,0 +9817,1968-04-20 22:59:00,0 +719,1966-10-20 02:34:00,0 +6829,1966-01-21 17:16:00,0 +5967,1969-12-17 16:58:00,0 +3209,1969-08-25 17:30:00,0 +9356,1966-11-15 22:07:00,0 +7424,1969-09-14 22:27:00,0 +2392,1968-08-06 05:17:00,0 +1590,1967-06-06 06:31:00,0 +8849,1967-02-11 06:14:00,0 +3381,1965-02-18 04:27:00,0 +3195,1965-02-28 10:28:00,0 +3986,1968-06-30 15:59:00,0 +7480,1969-03-02 01:42:00,0 +6408,1968-05-25 15:28:00,0 +4047,1965-12-23 10:31:00,0 +2772,1965-02-01 00:48:00,0 +57,1965-07-04 13:18:00,0 +8704,1966-08-07 06:00:00,0 +7184,1965-09-01 21:28:00,0 +5593,1965-08-31 00:00:00,0 +6239,1969-03-24 09:04:00,0 +9525,1965-10-21 20:31:00,0 +2802,1967-06-22 10:28:00,0 +8209,1969-12-01 19:04:00,0 +7448,1966-12-23 03:41:00,0 +5246,1968-08-23 06:42:00,0 +818,1969-12-31 04:45:00,0 +2183,1969-03-18 21:59:00,0 +174,1967-10-06 19:13:00,0 +3742,1966-06-27 23:12:00,0 +5713,1965-03-07 03:02:00,0 +5829,1968-09-04 12:02:00,0 +641,1966-07-08 03:30:00,0 +66,1965-10-19 07:43:00,0 +6875,1968-10-18 18:30:00,0 +5602,1969-01-12 03:43:00,0 +6814,1966-12-08 16:52:00,0 +1376,1969-08-12 22:27:00,0 +5519,1965-07-20 22:57:00,0 +5171,1969-09-10 00:29:00,0 +6348,1966-08-21 16:45:00,0 +4695,1965-03-27 18:43:00,0 +2663,1965-09-14 09:28:00,0 +68,1968-07-09 08:06:00,0 +216,1965-06-05 19:20:00,0 +8529,1966-05-19 01:30:00,0 +4262,1965-12-15 09:33:00,0 +2494,1969-04-23 22:14:00,0 +3589,1965-12-17 01:50:00,0 +658,1967-04-27 05:33:00,0 +8896,1966-02-05 23:29:00,0 +3005,1965-05-29 20:50:00,0 +1329,1966-05-27 12:50:00,0 +4069,1969-12-27 01:39:00,0 +3742,1968-04-24 04:20:00,0 +8279,1968-03-03 08:34:00,0 +7409,1968-03-22 06:16:00,0 +4475,1968-09-13 06:22:00,0 +834,1967-06-10 00:42:00,0 +8103,1966-05-01 02:29:00,0 +7933,1966-02-17 14:12:00,0 +4058,1968-06-30 04:38:00,0 +5448,1967-01-10 02:11:00,0 +2923,1969-09-08 02:06:00,0 +2826,1968-03-14 07:37:00,0 +3325,1968-05-31 16:21:00,0 +2625,1969-03-28 21:55:00,0 +3145,1968-06-11 08:05:00,0 +187,1965-03-21 03:05:00,0 +2367,1966-09-14 07:10:00,0 +912,1969-01-18 03:18:00,0 +7418,1968-11-28 07:23:00,0 +2986,1968-05-25 23:12:00,0 +6582,1968-12-13 14:22:00,0 +586,1966-06-09 10:35:00,0 +9481,1965-07-06 21:51:00,0 +8985,1967-03-29 09:11:00,0 +2433,1965-04-25 23:43:00,0 +7440,1965-09-14 06:26:00,0 +599,1968-05-02 19:01:00,0 +8115,1967-08-13 19:45:00,0 +3134,1969-03-10 08:39:00,0 +4170,1966-12-04 12:06:00,0 +5436,1968-01-06 07:40:00,0 +2343,1965-03-07 11:10:00,0 +4434,1968-04-09 13:30:00,0 +1642,1967-01-15 23:46:00,0 +2525,1969-05-19 06:42:00,0 +2748,1968-06-16 10:11:00,0 +8931,1967-07-29 11:01:00,0 +7487,1969-07-01 06:12:00,0 +2706,1966-11-13 04:15:00,0 +3409,1966-11-13 07:15:00,0 +372,1966-06-10 09:40:00,0 +6882,1966-10-30 15:36:00,0 +1039,1968-09-11 11:47:00,0 +9214,1969-02-26 08:30:00,0 +2486,1968-05-31 03:02:00,0 +5776,1965-03-01 17:06:00,0 +5859,1969-05-30 20:22:00,0 +1074,1968-05-11 16:46:00,0 +631,1969-11-08 08:10:00,0 +9455,1966-08-28 10:43:00,0 +9355,1969-02-17 09:48:00,0 +2786,1965-10-23 02:23:00,0 +8389,1965-09-10 10:04:00,0 +5800,1965-02-25 18:15:00,0 +7573,1969-10-10 16:57:00,0 +2288,1969-12-16 12:35:00,0 +5312,1967-08-02 14:34:00,0 +1718,1968-09-20 03:46:00,0 +9279,1967-12-12 01:07:00,0 +5028,1968-07-01 01:38:00,0 +578,1966-12-21 14:32:00,0 +1832,1967-10-22 11:42:00,0 +4900,1967-05-03 01:04:00,0 +212,1969-10-05 21:11:00,0 +2425,1968-07-18 14:16:00,0 +2934,1967-07-04 16:20:00,0 +7057,1966-09-22 08:19:00,0 +3795,1965-12-11 01:46:00,0 +2285,1968-03-18 17:16:00,0 +1719,1967-06-19 22:42:00,0 +185,1966-09-21 18:38:00,0 +172,1965-11-18 18:55:00,0 +5980,1968-09-08 13:21:00,0 +1160,1967-08-25 15:41:00,0 +200,1968-09-09 09:06:00,0 +123,1969-07-06 22:10:00,0 +6861,1966-01-08 22:19:00,0 +4528,1967-11-29 10:12:00,0 +1865,1967-07-04 11:04:00,0 +1379,1969-12-13 14:26:00,0 +6085,1967-12-07 17:59:00,0 +2757,1967-02-07 09:56:00,0 +483,1969-06-24 17:24:00,0 +6771,1968-12-23 12:48:00,0 +8836,1967-12-06 02:30:00,0 +4525,1969-02-27 06:49:00,0 +8720,1969-02-22 01:45:00,0 +7667,1966-07-20 12:24:00,0 +8057,1969-09-06 20:04:00,0 +7997,1966-08-07 21:52:00,0 +2537,1966-08-04 16:38:00,0 +5195,1968-01-17 02:40:00,0 +8957,1967-07-14 22:12:00,0 +1842,1967-01-13 21:44:00,0 +9192,1966-07-09 00:42:00,0 +9382,1968-01-25 12:47:00,0 +4884,1969-04-26 14:00:00,0 +6096,1967-04-29 07:31:00,0 +8992,1966-03-17 12:09:00,0 +6102,1966-06-06 17:29:00,0 +6685,1969-08-03 13:41:00,0 +5642,1966-06-06 18:00:00,0 +5894,1968-09-23 09:34:00,0 +2003,1966-06-21 07:50:00,0 +5292,1968-05-27 10:40:00,0 +9108,1968-12-01 07:23:00,0 +1091,1965-04-24 14:37:00,0 +6922,1968-03-17 18:36:00,0 +8108,1969-04-29 18:17:00,0 +4896,1967-11-25 16:23:00,0 +1565,1966-05-17 12:47:00,0 +2453,1967-06-27 12:06:00,0 +8836,1966-12-06 06:05:00,0 +5564,1965-11-24 14:34:00,0 +471,1968-04-20 19:25:00,0 +7177,1966-06-18 07:40:00,0 +1465,1967-11-17 22:42:00,0 +3338,1967-01-07 06:02:00,0 +6962,1967-06-05 11:21:00,0 +665,1968-05-26 15:49:00,0 +510,1965-04-22 07:29:00,0 +5082,1966-08-16 04:47:00,0 +8670,1967-06-16 11:46:00,0 +4618,1969-01-26 03:31:00,0 +8363,1967-09-24 11:02:00,0 +3815,1966-06-16 15:20:00,0 +2376,1965-02-16 12:37:00,0 +9628,1966-01-16 21:47:00,0 +7628,1968-06-29 23:09:00,0 +5232,1966-09-17 19:26:00,0 +9441,1967-12-18 13:35:00,0 +914,1965-05-20 10:12:00,0 +7169,1968-03-06 21:06:00,0 +4775,1965-03-31 07:30:00,0 +6320,1968-09-01 21:37:00,0 +4192,1968-01-02 09:27:00,0 +9533,1968-06-25 05:46:00,0 +6443,1969-11-09 02:20:00,0 +7950,1969-04-17 20:24:00,0 +5627,1965-04-04 09:10:00,0 +8685,1967-09-06 06:25:00,0 +663,1968-12-06 10:12:00,0 +2866,1967-03-02 14:01:00,0 +849,1969-10-14 22:49:00,0 +6218,1965-12-15 03:39:00,0 +3803,1966-08-03 06:08:00,0 +832,1966-03-25 01:46:00,0 +983,1966-09-06 02:39:00,0 +3042,1968-06-23 10:48:00,0 +7527,1966-08-09 17:40:00,0 +9440,1967-04-17 20:56:00,0 +7474,1969-12-04 07:32:00,0 +6832,1966-12-21 12:50:00,0 +7555,1965-08-03 01:39:00,0 +3180,1968-05-30 18:38:00,0 +6150,1968-03-24 06:14:00,0 +4810,1969-11-28 15:51:00,0 +717,1965-02-05 14:38:00,0 +3743,1967-07-27 11:18:00,0 +2323,1969-12-17 21:39:00,0 +9142,1969-06-15 07:34:00,0 +8513,1969-06-23 19:08:00,0 +9223,1969-11-20 17:25:00,0 +6393,1968-04-10 18:18:00,0 +1212,1965-11-09 11:49:00,0 +5110,1965-02-01 17:29:00,0 +7146,1965-09-19 18:04:00,0 +8656,1966-06-21 17:01:00,0 +6112,1967-04-29 21:15:00,0 +2976,1967-08-05 07:47:00,0 +7855,1969-08-08 18:43:00,0 +6684,1969-04-11 17:32:00,0 +4111,1969-05-30 17:42:00,0 +9020,1966-07-05 22:31:00,0 +841,1969-05-16 15:09:00,0 +9315,1967-10-20 18:15:00,0 +8250,1967-01-18 00:04:00,0 +4211,1965-11-22 23:57:00,0 +2207,1967-09-10 15:54:00,0 +2560,1969-12-15 23:18:00,0 +9327,1966-07-29 02:02:00,0 +7896,1967-10-04 19:43:00,0 +2962,1967-07-18 04:28:00,0 +4188,1967-10-05 23:11:00,0 +1305,1965-04-22 02:46:00,0 +439,1965-06-17 23:19:00,0 +3806,1969-12-13 05:46:00,0 +6252,1968-11-16 15:26:00,0 +5035,1969-06-20 19:42:00,0 +7037,1967-03-09 03:34:00,0 +9419,1965-09-08 15:43:00,0 +3798,1967-09-21 04:25:00,0 +2764,1966-09-26 09:44:00,0 +3208,1969-03-03 04:36:00,0 +660,1968-12-10 16:08:00,0 +1365,1965-02-14 13:24:00,0 +661,1968-03-29 03:35:00,0 +6931,1966-04-19 15:03:00,0 +3841,1969-09-06 00:34:00,0 +720,1968-03-12 14:41:00,0 +3695,1966-07-12 07:51:00,0 +6190,1965-10-05 19:13:00,0 +6650,1965-12-14 01:42:00,0 +6240,1965-02-05 14:53:00,0 +1074,1968-07-08 19:56:00,0 +4055,1968-10-13 23:04:00,0 +8080,1967-06-19 06:36:00,0 +5699,1966-01-02 11:25:00,0 +9205,1968-08-05 02:22:00,0 +8521,1968-01-28 02:24:00,0 +6437,1968-01-16 23:48:00,0 +7232,1965-07-31 00:53:00,0 +2703,1967-07-17 05:18:00,0 +8439,1968-11-22 05:03:00,0 +5980,1965-06-22 23:31:00,0 +2053,1968-06-02 22:45:00,0 +1899,1969-07-25 04:38:00,0 +4222,1968-11-14 20:18:00,0 +435,1969-06-27 11:27:00,0 +7497,1967-03-23 23:46:00,0 +2639,1965-12-25 04:27:00,0 +4595,1969-05-23 09:16:00,0 +2829,1967-12-08 20:30:00,0 +1708,1965-11-23 21:06:00,0 +9391,1969-07-03 17:31:00,0 +7184,1965-04-10 13:50:00,0 +2454,1966-09-10 12:06:00,0 +9833,1969-10-27 09:17:00,0 +1486,1966-05-03 20:14:00,0 +5534,1965-08-23 03:05:00,0 +5596,1969-11-08 02:46:00,0 +3368,1967-12-20 20:50:00,0 +4962,1965-11-22 15:06:00,0 +927,1966-09-30 03:42:00,0 +8723,1968-04-09 04:34:00,0 +4266,1967-08-05 10:48:00,0 +8524,1968-05-15 00:06:00,0 +486,1969-05-01 14:45:00,0 +6702,1969-01-09 04:28:00,0 +1870,1969-08-22 04:36:00,0 +8983,1966-04-14 13:43:00,0 +7883,1967-12-22 23:20:00,0 +4489,1968-01-29 09:32:00,0 +6057,1968-06-18 19:06:00,0 +1800,1966-07-14 13:43:00,0 +6552,1968-09-23 05:53:00,0 +5905,1969-09-28 07:11:00,0 +8519,1969-03-18 15:21:00,0 +6285,1969-05-13 19:09:00,0 +8884,1968-03-17 16:40:00,0 +8474,1968-02-01 01:41:00,0 +4437,1966-04-21 05:51:00,0 +291,1965-02-19 04:03:00,0 +7497,1969-05-21 13:51:00,0 +3945,1966-02-12 17:27:00,0 +1994,1967-01-23 09:56:00,0 +7181,1967-10-29 01:21:00,0 +5520,1968-10-06 09:52:00,0 +3182,1966-09-05 03:53:00,0 +6104,1969-02-02 06:23:00,0 +1669,1965-02-13 00:22:00,0 +9649,1966-12-17 13:37:00,0 +4077,1969-12-09 13:05:00,0 +8770,1969-02-25 04:15:00,0 +9944,1966-05-30 12:57:00,0 +6585,1965-09-09 03:22:00,0 +4906,1969-10-13 22:37:00,0 +7417,1969-10-11 11:28:00,0 +1587,1965-01-05 02:04:00,0 +2570,1965-01-30 18:41:00,0 +4709,1965-07-19 01:41:00,0 +7597,1966-04-14 15:02:00,0 +7009,1968-12-07 19:41:00,0 +370,1966-11-18 22:59:00,0 +4648,1965-12-18 18:48:00,0 +1996,1968-12-21 12:40:00,0 +6464,1966-08-13 05:00:00,0 +5419,1967-03-10 18:20:00,0 +6572,1969-10-14 22:01:00,0 +810,1966-08-12 15:22:00,0 +934,1969-11-23 23:36:00,0 +4120,1966-09-02 03:15:00,0 +809,1965-05-27 19:38:00,0 +7945,1969-04-04 15:00:00,0 +8248,1965-11-28 01:00:00,0 +4826,1965-04-03 21:04:00,0 +754,1968-10-26 17:12:00,0 +483,1968-07-17 15:23:00,0 +9606,1966-04-13 17:23:00,0 +3020,1969-10-02 21:11:00,0 +1859,1969-05-14 07:14:00,0 +4739,1965-12-01 01:24:00,0 +1837,1967-04-11 10:44:00,0 +426,1967-10-23 17:09:00,0 +8616,1967-10-24 12:17:00,0 +1215,1968-05-28 09:39:00,0 +9508,1967-01-05 14:58:00,0 +6864,1969-12-05 05:14:00,0 +4546,1969-11-06 18:04:00,0 +128,1965-03-05 17:22:00,0 +3707,1969-05-18 14:44:00,0 +8734,1967-08-10 03:49:00,0 +7612,1968-10-29 00:58:00,0 +964,1965-02-19 09:28:00,0 +6970,1965-08-05 01:01:00,0 +2187,1966-07-26 07:25:00,0 +788,1968-06-30 01:52:00,0 +6424,1968-11-16 16:31:00,0 +4898,1965-09-10 22:53:00,0 +5245,1967-02-09 15:58:00,0 +8540,1967-07-18 06:52:00,0 +2199,1967-03-28 03:25:00,0 +4020,1968-12-30 19:36:00,0 +1077,1966-02-10 22:26:00,0 +6707,1965-06-22 05:47:00,0 +4522,1965-01-25 05:09:00,0 +249,1965-12-18 09:54:00,0 +9624,1969-11-04 20:46:00,0 +9519,1968-01-23 02:48:00,0 +6904,1969-07-16 14:58:00,0 +2499,1967-05-15 00:14:00,0 +5410,1966-06-09 23:58:00,0 +3970,1968-12-31 01:34:00,0 +2119,1966-12-11 10:10:00,0 +826,1968-07-15 14:55:00,0 +8149,1965-08-21 20:30:00,0 +1143,1967-08-31 23:17:00,0 +3183,1965-04-28 14:23:00,0 +8936,1965-08-27 07:55:00,0 +61,1968-05-05 04:50:00,0 +6993,1969-04-09 16:00:00,0 +6060,1966-11-13 14:56:00,0 +9187,1968-01-23 20:14:00,0 +8052,1969-12-11 18:17:00,0 +2812,1969-02-24 09:06:00,0 +9613,1969-01-20 15:59:00,0 +778,1968-04-30 01:01:00,0 +4640,1967-08-20 16:40:00,0 +7069,1969-06-16 17:29:00,0 +194,1969-11-12 15:00:00,0 +5823,1968-02-29 02:53:00,0 +5317,1967-05-01 07:22:00,0 +7616,1968-12-24 05:40:00,0 +1646,1965-12-30 00:20:00,0 +8549,1969-03-21 05:47:00,0 +7790,1967-02-05 04:34:00,0 +1245,1966-11-16 01:28:00,0 +6485,1966-11-16 22:57:00,0 +8290,1966-12-25 13:15:00,0 +3986,1967-09-11 18:35:00,0 +5396,1967-02-16 23:08:00,0 +3872,1965-08-27 00:56:00,0 +7461,1965-08-24 12:50:00,0 +3417,1969-06-08 10:03:00,0 +630,1969-08-10 06:14:00,0 +4968,1967-09-02 03:48:00,0 +3517,1966-01-29 13:56:00,0 +4837,1968-10-01 08:54:00,0 +7424,1968-07-23 10:13:00,0 +2475,1967-06-09 05:33:00,0 +6338,1966-04-15 16:35:00,0 +4221,1969-04-23 12:30:00,0 +7595,1965-12-10 12:25:00,0 +4523,1969-05-23 13:13:00,0 +6954,1969-11-02 16:25:00,0 +8053,1966-04-19 08:07:00,0 +6204,1968-05-04 13:20:00,0 +9168,1967-08-28 14:25:00,0 +1473,1968-07-20 01:48:00,0 +6353,1967-06-01 03:49:00,0 +4472,1967-03-06 05:36:00,0 +9151,1968-05-24 05:46:00,0 +4982,1968-03-21 21:36:00,0 +9624,1969-09-23 23:17:00,0 +7610,1968-01-10 02:14:00,0 +4937,1965-11-09 11:25:00,0 +9713,1965-02-13 05:26:00,0 +411,1968-03-04 16:56:00,0 +8291,1969-08-06 04:27:00,0 +4988,1966-05-03 00:49:00,0 +5696,1965-04-03 12:27:00,0 +6016,1967-01-17 11:51:00,0 +9480,1965-12-08 23:32:00,0 +9660,1968-10-31 00:49:00,0 +5028,1967-03-17 08:03:00,0 +9046,1965-09-29 23:55:00,0 +3059,1969-06-07 17:02:00,0 +7405,1968-12-16 13:05:00,0 +3241,1966-11-11 12:01:00,0 +2398,1969-11-03 03:42:00,0 +8735,1969-05-26 16:35:00,0 +6175,1967-09-04 00:00:00,0 +5588,1969-09-02 13:58:00,0 +2159,1969-05-18 16:58:00,0 +1525,1968-07-06 17:14:00,0 +8248,1967-06-21 20:29:00,0 +2943,1967-05-04 18:18:00,0 +6345,1969-07-12 21:47:00,0 +3062,1967-08-19 16:42:00,0 +9422,1968-10-22 19:26:00,0 +8992,1966-11-30 14:40:00,0 +7614,1969-05-25 19:49:00,0 +1947,1966-02-13 23:09:00,0 +2076,1966-02-13 06:21:00,0 +6399,1965-05-01 16:49:00,0 +7674,1968-03-15 22:06:00,0 +7588,1968-07-01 04:21:00,0 +407,1965-05-16 15:12:00,0 +9678,1967-07-06 19:06:00,0 +9698,1968-08-16 22:36:00,0 +9395,1968-12-23 07:19:00,0 +9328,1967-04-03 03:01:00,0 +4428,1969-08-17 21:38:00,0 +3435,1965-04-21 01:47:00,0 +9234,1969-07-31 01:22:00,0 +638,1965-03-31 08:48:00,0 +2599,1965-03-31 08:14:00,0 +4790,1968-11-07 06:51:00,0 +9201,1968-12-11 21:45:00,0 +6736,1967-08-25 18:50:00,0 +1577,1968-08-06 05:13:00,0 +5195,1965-02-03 13:19:00,0 +9713,1965-10-14 11:46:00,0 +3984,1969-06-21 02:05:00,0 +4965,1967-03-30 17:03:00,0 +2688,1965-12-09 11:32:00,0 +6034,1965-01-26 10:37:00,0 +7491,1966-11-18 20:45:00,0 +6788,1967-05-23 18:31:00,0 +626,1968-09-28 03:05:00,0 +2740,1969-04-14 02:10:00,0 +7169,1968-08-24 15:03:00,0 +7736,1968-06-30 05:17:00,0 +9536,1969-10-11 22:52:00,0 +1491,1968-08-20 23:15:00,0 +7932,1966-03-31 03:21:00,0 +5140,1969-01-19 07:52:00,0 +811,1969-11-08 06:42:00,0 +1999,1967-07-06 00:45:00,0 +9361,1967-01-03 13:17:00,0 +8821,1966-11-14 07:29:00,0 +1164,1966-09-24 10:15:00,0 +6516,1967-07-18 04:12:00,0 +3161,1966-04-16 17:45:00,0 +8415,1969-03-16 01:16:00,0 +5839,1967-05-03 06:00:00,0 +8677,1965-05-13 22:38:00,0 +1615,1965-10-30 07:53:00,0 +8152,1966-10-08 04:51:00,0 +8905,1965-05-21 03:29:00,0 +5465,1969-11-24 00:21:00,0 +9637,1966-08-06 09:39:00,0 +6470,1965-08-27 10:49:00,0 +7257,1969-04-21 07:09:00,0 +3691,1967-06-10 07:04:00,0 +6735,1969-04-08 04:58:00,0 +2057,1967-08-18 05:59:00,0 +6883,1969-10-25 00:21:00,0 +3741,1965-05-04 10:09:00,0 +2439,1967-03-17 05:58:00,0 +164,1965-02-01 15:22:00,0 +6913,1968-05-11 07:28:00,0 +1915,1969-03-12 06:44:00,0 +4859,1967-05-24 16:23:00,0 +4913,1968-12-10 02:20:00,0 +9387,1969-11-23 02:28:00,0 +5711,1969-10-03 15:59:00,0 +5139,1965-07-14 13:56:00,0 +7893,1969-03-05 05:11:00,0 +9963,1968-04-22 11:23:00,0 +2684,1969-01-05 16:16:00,0 +2750,1969-05-21 22:42:00,0 +3545,1968-02-21 05:39:00,0 +7355,1968-08-07 17:27:00,0 +7514,1969-05-18 17:11:00,0 +7948,1965-07-21 21:44:00,0 +1765,1968-05-27 02:53:00,0 +1589,1965-10-17 05:58:00,0 +8096,1967-09-09 02:27:00,0 +9212,1968-05-24 02:03:00,0 +3790,1969-12-26 21:31:00,0 +5081,1969-10-17 03:24:00,0 +9679,1965-01-05 12:27:00,0 +7334,1965-09-01 23:11:00,0 +9373,1966-08-10 18:41:00,0 +9561,1966-04-11 21:30:00,0 +6078,1969-01-16 14:17:00,0 +4533,1967-12-28 06:20:00,0 +1957,1968-11-29 20:31:00,0 +6643,1968-11-28 22:17:00,0 +2643,1966-06-02 17:53:00,0 +2487,1969-04-12 07:52:00,0 +9472,1966-11-07 00:13:00,0 +5174,1967-03-27 02:33:00,0 +3631,1966-01-06 06:13:00,0 +4091,1965-11-10 10:14:00,0 +7769,1965-06-02 15:54:00,0 +4344,1966-04-27 09:56:00,0 +1819,1967-03-26 19:02:00,0 +4941,1968-01-29 08:46:00,0 +4783,1969-04-18 06:52:00,0 +2238,1967-09-30 20:40:00,0 +1271,1969-02-28 16:51:00,0 +552,1969-05-18 01:43:00,0 +8107,1965-11-17 05:29:00,0 +7591,1969-07-14 14:01:00,0 +5824,1968-10-04 14:38:00,0 +9578,1965-09-09 13:42:00,0 +1266,1968-06-28 09:36:00,0 +8838,1965-01-12 06:12:00,0 +780,1967-12-30 09:56:00,0 +8897,1969-10-20 01:39:00,0 +7351,1969-12-06 12:26:00,0 +7806,1969-07-19 22:10:00,0 +8793,1965-11-04 02:22:00,0 +1833,1965-01-06 19:16:00,0 +459,1965-01-28 14:38:00,0 +8580,1965-04-02 21:59:00,0 +6770,1967-06-01 21:47:00,0 +4386,1967-02-14 07:28:00,0 +3738,1965-02-13 11:25:00,0 +6832,1967-08-26 03:29:00,0 +5052,1965-10-16 11:54:00,0 +3220,1967-04-29 18:46:00,0 +8327,1966-04-14 16:14:00,0 +7324,1966-07-18 15:59:00,0 +3823,1966-09-27 09:10:00,0 +7828,1966-10-02 10:25:00,0 +4402,1966-10-16 10:45:00,0 +7413,1965-10-03 13:13:00,0 +1784,1967-04-15 09:09:00,0 +7492,1968-06-16 12:42:00,0 +8025,1966-10-18 14:24:00,0 +139,1967-02-02 23:10:00,0 +1962,1969-10-20 19:22:00,0 +9121,1966-11-28 19:17:00,0 +9902,1967-10-11 18:27:00,0 +8403,1966-11-26 23:49:00,0 +4084,1968-12-18 19:05:00,0 +1445,1966-02-14 16:37:00,0 +9614,1968-09-15 19:24:00,0 +5620,1967-12-14 13:05:00,0 +5593,1966-05-15 18:00:00,0 +5712,1966-07-20 10:05:00,0 +9408,1965-05-05 19:42:00,0 +8148,1966-09-22 12:22:00,0 +3006,1968-03-20 01:36:00,0 +3005,1966-12-29 10:56:00,0 +1377,1966-10-09 01:14:00,0 +8005,1966-09-26 18:32:00,0 +537,1966-01-26 16:03:00,0 +6682,1965-11-03 06:27:00,0 +7783,1969-11-23 15:36:00,0 +4211,1966-12-11 15:53:00,0 +323,1967-07-31 13:04:00,0 +1357,1969-10-31 00:05:00,0 +52,1968-03-08 18:16:00,0 +2160,1967-03-24 18:32:00,0 +4729,1968-11-05 00:36:00,0 +1781,1969-08-28 05:52:00,0 +5831,1966-01-22 15:05:00,0 +7050,1968-08-20 13:49:00,0 +1571,1967-04-21 18:25:00,0 +4343,1968-07-24 14:48:00,0 +950,1966-02-05 08:30:00,0 +1598,1968-03-02 03:35:00,0 +4784,1969-04-23 19:28:00,0 +7994,1966-10-28 22:29:00,0 +6854,1967-06-02 12:01:00,0 +875,1967-03-28 05:35:00,0 +9488,1966-03-31 08:21:00,0 +6669,1966-02-14 07:06:00,0 +9299,1969-02-07 16:09:00,0 +2680,1969-08-02 20:19:00,0 +5668,1969-09-26 23:51:00,0 +6158,1966-11-19 06:43:00,0 +5309,1967-02-10 10:49:00,0 +8806,1965-03-28 23:07:00,0 +2110,1966-11-28 19:06:00,0 +278,1968-11-21 14:05:00,0 +3242,1967-08-15 11:26:00,0 +3269,1967-02-21 19:13:00,0 +6865,1969-12-07 01:15:00,0 +297,1966-05-25 06:04:00,0 +705,1965-10-25 18:44:00,0 +225,1967-05-15 04:52:00,0 +6235,1965-02-21 06:13:00,0 +2375,1968-01-22 02:48:00,0 +677,1966-01-14 18:41:00,0 +50,1967-06-28 11:57:00,0 +329,1967-05-22 10:41:00,0 +1297,1966-05-02 14:58:00,0 +1879,1965-08-17 07:18:00,0 +9197,1965-10-28 22:45:00,0 +8959,1967-06-11 17:55:00,0 +6913,1966-11-08 19:21:00,0 +9414,1968-01-31 19:24:00,0 +5260,1968-12-26 09:49:00,0 +3978,1967-10-03 20:59:00,0 +703,1967-12-02 23:21:00,0 +2355,1969-04-08 17:47:00,0 +627,1968-05-06 04:47:00,0 +6023,1967-08-13 12:54:00,0 +9278,1968-03-01 14:38:00,0 +3695,1965-11-30 01:10:00,0 +3702,1968-07-19 16:10:00,0 +8754,1968-04-11 18:01:00,0 +2414,1967-02-03 23:18:00,0 +8014,1967-09-01 01:19:00,0 +1549,1967-01-20 15:11:00,0 +3295,1965-12-20 15:27:00,0 +2159,1966-09-15 23:06:00,0 +3839,1967-05-06 07:54:00,0 +3700,1968-11-23 22:05:00,0 +8340,1967-11-01 07:39:00,0 +9827,1969-03-10 23:21:00,0 +1744,1967-05-06 15:49:00,0 +6633,1966-05-08 15:13:00,0 +7058,1969-05-13 01:30:00,0 +1188,1969-08-08 18:52:00,0 +2403,1967-12-17 06:38:00,0 +3695,1966-07-14 10:16:00,0 +7923,1969-06-28 01:04:00,0 +2706,1968-05-14 13:19:00,0 +3278,1965-07-23 23:35:00,0 +915,1969-04-13 16:26:00,0 +4646,1969-06-01 05:58:00,0 +6997,1967-10-06 15:52:00,0 +1354,1968-03-17 06:27:00,0 +415,1969-05-08 21:24:00,0 +5349,1968-06-05 20:59:00,0 +4669,1969-03-17 20:33:00,0 +112,1967-09-25 18:50:00,0 +2829,1968-06-15 20:33:00,0 +2038,1966-03-06 20:44:00,0 +8555,1967-05-04 20:37:00,0 +2771,1969-08-11 04:26:00,0 +358,1966-08-22 20:14:00,0 +4167,1967-06-18 20:51:00,0 +1513,1965-04-12 00:50:00,0 +7968,1968-01-31 02:53:00,0 +156,1967-07-15 21:15:00,0 +5391,1966-11-28 10:19:00,0 +1711,1968-09-03 09:21:00,0 +4017,1967-07-24 19:47:00,0 +5795,1965-05-23 02:08:00,0 +9289,1966-06-26 11:17:00,0 +5490,1968-01-04 18:14:00,0 +5877,1969-10-21 03:53:00,0 +1724,1965-09-18 12:14:00,0 +5834,1968-01-10 04:22:00,0 +3458,1966-03-03 02:27:00,0 +6732,1965-04-21 10:16:00,0 +3391,1965-07-23 23:43:00,0 +2029,1969-10-10 22:53:00,0 +6596,1965-10-02 16:50:00,0 +3989,1967-03-13 21:24:00,0 +1600,1965-08-07 07:57:00,0 +4572,1969-06-25 11:49:00,0 +784,1967-10-18 00:54:00,0 +4863,1968-09-01 19:02:00,0 +6572,1969-02-03 03:20:00,0 +333,1966-05-14 08:44:00,0 +4008,1967-02-03 14:55:00,0 +8010,1965-12-19 08:48:00,0 +8750,1969-02-03 12:57:00,0 +5228,1965-03-29 20:38:00,0 +3520,1967-02-19 04:59:00,0 +6153,1967-02-05 19:26:00,0 +6197,1966-01-24 08:48:00,0 +2327,1965-02-13 09:58:00,0 +3357,1967-10-20 22:17:00,0 +1560,1968-07-10 03:02:00,0 +5124,1965-12-06 09:30:00,0 +8769,1966-05-19 00:30:00,0 +9467,1967-08-11 11:11:00,0 +4211,1966-07-16 11:01:00,0 +1612,1965-07-31 23:56:00,0 +1079,1965-06-21 22:54:00,0 +9126,1969-03-30 17:19:00,0 +6187,1966-06-19 18:01:00,0 +5271,1968-11-29 03:10:00,0 +7858,1969-02-22 12:46:00,0 +3108,1969-07-13 12:16:00,0 +7277,1969-03-10 04:27:00,0 +4115,1969-11-30 07:00:00,0 +976,1968-09-02 07:19:00,0 +1014,1969-08-06 03:36:00,0 +6605,1965-04-01 12:51:00,0 +54,1966-06-30 07:34:00,0 +7904,1965-08-27 04:54:00,0 +578,1969-08-11 14:45:00,0 +9570,1967-09-03 18:11:00,0 +1589,1965-10-23 08:46:00,0 +5538,1969-09-06 20:41:00,0 +5812,1965-07-17 04:29:00,0 +3634,1969-07-08 19:49:00,0 +8876,1968-09-16 20:25:00,0 +7631,1966-04-28 08:14:00,0 +4245,1966-05-11 11:55:00,0 +2626,1967-06-15 20:51:00,0 +7340,1966-02-26 17:48:00,0 +2797,1969-06-04 01:10:00,0 +2218,1968-08-25 22:46:00,0 +8825,1968-06-17 18:54:00,0 +8635,1967-10-24 22:32:00,0 +5139,1967-01-06 04:42:00,0 +5063,1967-12-29 17:45:00,0 +5179,1965-08-07 17:20:00,0 +1371,1968-06-06 06:41:00,0 +9456,1965-03-13 18:06:00,0 +4890,1969-01-14 23:15:00,0 +4908,1965-03-03 15:26:00,0 +1829,1967-11-11 12:16:00,0 +9759,1968-06-20 06:39:00,0 +8581,1969-11-22 02:02:00,0 +3628,1969-06-13 23:59:00,0 +4329,1968-05-28 03:26:00,0 +2408,1966-07-29 14:11:00,0 +4891,1967-10-06 02:41:00,0 +6230,1969-07-03 14:38:00,0 +5980,1969-10-22 08:23:00,0 +8839,1969-11-30 10:36:00,0 +3611,1968-11-16 16:59:00,0 +4820,1969-07-07 21:36:00,0 +4114,1967-10-23 05:32:00,0 +4597,1967-10-10 07:14:00,0 +8631,1968-05-06 03:53:00,0 +2186,1965-10-24 07:17:00,0 +1016,1968-08-09 03:06:00,0 +9939,1968-06-30 00:22:00,0 +855,1967-02-04 04:29:00,0 +2437,1965-02-24 14:33:00,0 +6663,1969-12-01 10:58:00,0 +8154,1968-01-04 07:48:00,0 +105,1966-04-11 07:56:00,0 +7218,1966-06-07 04:52:00,0 +6121,1967-11-25 10:13:00,0 +4437,1967-02-06 07:23:00,0 +1438,1969-09-14 03:52:00,0 +3909,1969-07-08 08:34:00,0 +2381,1966-05-23 18:10:00,0 +8979,1966-10-01 06:20:00,0 +6413,1966-01-08 07:56:00,0 +2057,1966-06-10 09:40:00,0 +5646,1965-03-30 11:15:00,0 +2629,1965-08-16 06:17:00,0 +2450,1965-07-18 08:30:00,0 +9453,1968-03-04 22:18:00,0 +7564,1969-11-24 05:48:00,0 +7836,1967-09-08 12:27:00,0 +9436,1965-08-10 20:55:00,0 +8796,1968-06-26 14:05:00,0 +4076,1965-11-30 00:56:00,0 +5381,1969-05-06 13:34:00,0 +2075,1966-03-31 08:44:00,0 +3683,1965-08-28 03:24:00,0 +9791,1968-08-16 16:32:00,0 +8079,1966-02-07 05:52:00,0 +2967,1969-03-15 05:15:00,0 +7087,1965-10-06 11:20:00,0 +7220,1966-12-07 10:55:00,0 +2303,1968-10-15 23:56:00,0 +823,1967-08-22 17:43:00,0 +1527,1967-12-24 08:22:00,0 +4333,1966-09-05 02:05:00,0 +3797,1966-07-03 05:25:00,0 +9564,1968-04-20 09:42:00,0 +5136,1968-08-10 02:15:00,0 +3731,1969-11-09 22:44:00,0 +369,1965-03-06 07:48:00,0 +8445,1967-11-07 10:09:00,0 +8799,1966-10-26 03:28:00,0 +8813,1969-01-22 09:41:00,0 +1945,1966-01-23 17:11:00,0 +7399,1968-07-09 18:07:00,0 +7812,1966-05-21 05:28:00,0 +7804,1965-09-18 05:44:00,0 +5109,1968-12-02 15:41:00,0 +5054,1969-01-30 16:04:00,0 +1709,1967-02-12 10:34:00,0 +9909,1968-07-15 14:09:00,0 +4362,1969-08-29 13:06:00,0 +7137,1965-08-08 22:41:00,0 +2827,1965-12-03 13:04:00,0 +904,1967-02-13 19:29:00,0 +808,1965-07-09 04:42:00,0 +5029,1965-11-19 11:37:00,0 +2663,1965-09-07 03:11:00,0 +3028,1968-12-31 03:30:00,0 +564,1966-03-09 07:00:00,0 +4482,1966-10-08 00:25:00,0 +663,1967-09-07 09:42:00,0 +8366,1968-12-10 14:22:00,0 +5254,1969-07-28 04:11:00,0 +9582,1965-11-24 15:43:00,0 +107,1968-01-10 11:32:00,0 +3660,1967-06-03 21:24:00,0 +7256,1968-02-09 19:35:00,0 +941,1966-06-25 18:32:00,0 +1829,1967-05-14 13:43:00,0 +9199,1965-06-10 21:10:00,0 +4591,1968-04-29 02:43:00,0 +6508,1968-01-26 11:58:00,0 +3005,1969-03-04 21:15:00,0 +7657,1967-02-04 18:46:00,0 +9417,1967-12-03 02:53:00,0 +4128,1969-07-27 03:45:00,0 +3362,1965-01-12 07:41:00,0 +8797,1968-03-26 20:24:00,0 +9966,1968-10-07 03:43:00,0 +6570,1966-08-25 01:32:00,0 +4912,1966-06-01 04:13:00,0 +2923,1967-03-09 20:15:00,0 +1370,1966-12-19 07:19:00,0 +503,1968-02-29 16:32:00,0 +4978,1965-12-24 06:11:00,0 +1074,1967-10-25 12:22:00,0 +8654,1967-09-03 22:14:00,0 +4645,1966-11-09 08:25:00,0 +3422,1967-11-25 00:42:00,0 +8728,1967-04-15 00:38:00,0 +382,1968-07-22 12:42:00,0 +6434,1969-07-01 07:38:00,0 +2291,1965-10-28 06:50:00,0 +7828,1968-01-15 15:50:00,0 +5491,1968-01-07 02:39:00,0 +1214,1969-05-29 15:34:00,0 +1919,1968-12-15 23:02:00,0 +4743,1966-01-14 14:39:00,0 +8725,1968-03-26 21:40:00,0 +1210,1965-12-13 10:43:00,0 +4572,1969-09-25 15:15:00,0 +4239,1967-03-30 17:11:00,0 +4482,1967-08-30 12:21:00,0 +922,1965-06-07 08:21:00,0 +6106,1967-03-01 16:43:00,0 +229,1969-06-14 05:57:00,0 +9331,1969-09-27 04:37:00,0 +239,1969-11-27 16:44:00,0 +307,1967-07-23 14:03:00,0 +3935,1966-12-02 14:32:00,0 +1327,1968-11-26 00:41:00,0 +3365,1967-02-10 10:07:00,0 +2663,1969-12-21 06:59:00,0 +4556,1968-01-27 02:48:00,0 +2382,1969-04-18 09:54:00,0 +5557,1966-03-07 00:41:00,0 +6194,1967-06-29 22:09:00,0 +4060,1967-08-05 11:29:00,0 +9904,1969-08-29 16:30:00,0 +5440,1969-09-06 17:09:00,0 +9190,1968-10-18 11:04:00,0 +4552,1969-04-02 14:44:00,0 +2765,1966-05-20 15:27:00,0 +1096,1969-02-08 15:17:00,0 +5520,1966-03-28 12:13:00,0 +4743,1968-01-02 07:05:00,0 +5835,1968-01-29 20:10:00,0 +8299,1968-09-21 09:55:00,0 +9836,1969-10-23 01:24:00,0 +3586,1969-07-06 12:51:00,0 +6458,1968-06-22 22:40:00,0 +224,1967-09-22 09:04:00,0 +8177,1969-05-19 08:17:00,0 +4850,1967-09-15 04:52:00,0 +9155,1967-10-21 01:31:00,0 +4867,1968-04-14 19:10:00,0 +6524,1966-02-17 09:21:00,0 +7331,1968-08-07 18:33:00,0 +6541,1965-09-11 22:41:00,0 +7506,1966-09-08 11:32:00,0 +5111,1966-06-09 11:48:00,0 +1076,1968-08-28 18:45:00,0 +8926,1969-06-27 07:41:00,0 +1865,1966-08-01 22:44:00,0 +7042,1967-04-27 10:44:00,0 +9925,1966-05-09 18:50:00,0 +5755,1969-06-01 08:07:00,0 +8765,1965-10-28 03:08:00,0 +8173,1968-10-21 09:40:00,0 +1508,1968-09-20 04:39:00,0 +8100,1969-08-15 18:56:00,0 +1494,1967-10-08 20:48:00,0 +6667,1968-08-11 06:15:00,0 +8250,1966-03-19 06:53:00,0 +2192,1967-09-28 12:56:00,0 +7250,1965-01-31 01:29:00,0 +4754,1965-10-30 17:27:00,0 +4238,1966-12-30 01:53:00,0 +1639,1966-09-15 02:21:00,0 +5720,1967-11-18 21:40:00,0 +8691,1969-07-03 10:54:00,0 +5216,1965-08-29 13:53:00,0 +3188,1965-03-10 06:21:00,0 +5194,1969-01-24 09:35:00,0 +1348,1968-02-20 09:10:00,0 +4744,1967-09-04 17:23:00,0 +4361,1966-11-17 07:00:00,0 +1921,1969-06-03 22:30:00,0 +2299,1965-07-20 01:12:00,0 +3221,1969-04-27 10:27:00,0 +937,1965-11-10 00:30:00,0 +8229,1969-11-29 00:50:00,0 +7468,1966-04-09 12:49:00,0 +5272,1968-07-09 22:29:00,0 +4901,1966-11-02 04:07:00,0 +5199,1965-09-01 20:10:00,0 +8452,1968-01-30 13:32:00,0 +7106,1968-11-18 04:51:00,0 +4718,1968-02-29 06:02:00,0 +1355,1968-09-07 23:27:00,0 +487,1968-12-25 23:46:00,0 +9756,1969-04-02 03:07:00,0 +3217,1966-04-22 00:41:00,0 +9248,1965-04-15 01:55:00,0 +9757,1967-02-19 09:22:00,0 +1394,1968-02-06 14:50:00,0 +5543,1968-11-02 02:25:00,0 +6793,1968-04-06 07:02:00,0 +4741,1965-07-02 11:22:00,0 +5749,1969-04-10 14:13:00,0 +2353,1969-02-11 05:54:00,0 +2363,1968-10-05 06:50:00,0 +2565,1967-08-25 18:31:00,0 +3923,1968-10-31 09:37:00,0 +2851,1967-01-08 13:12:00,0 +568,1965-12-29 13:24:00,0 +226,1968-04-30 23:24:00,0 +5541,1965-01-26 19:40:00,0 +7349,1968-09-01 22:44:00,0 +1438,1966-07-20 02:05:00,0 +7993,1965-10-29 05:12:00,0 +3826,1968-05-11 15:56:00,0 +6408,1966-06-08 21:43:00,0 +8693,1967-11-21 02:46:00,0 +2490,1965-06-29 17:50:00,0 +8451,1969-10-30 13:51:00,0 +145,1968-01-03 10:22:00,0 +4944,1969-05-23 05:40:00,0 +6072,1968-09-30 09:44:00,0 +8498,1967-09-10 09:45:00,0 +7704,1967-02-04 12:24:00,0 +3641,1965-09-02 01:44:00,0 +2198,1965-10-05 08:04:00,0 +6702,1966-12-31 11:55:00,0 +2024,1965-11-07 04:35:00,0 +6256,1968-07-02 19:34:00,0 +6310,1968-12-05 14:45:00,0 +8806,1968-09-30 10:36:00,0 +7812,1965-09-25 06:43:00,0 +5878,1967-08-16 00:25:00,0 +7846,1965-08-29 19:24:00,0 +6125,1965-04-06 02:04:00,0 +5254,1966-10-06 13:34:00,0 +5555,1969-01-14 02:12:00,0 +2599,1969-07-01 22:48:00,0 +604,1968-01-26 09:26:00,0 +9729,1969-05-13 11:46:00,0 +8195,1968-04-08 04:02:00,0 +4183,1967-06-07 07:56:00,0 +7394,1965-04-04 16:13:00,0 +9004,1967-10-28 23:21:00,0 +6063,1968-10-12 10:06:00,0 +7928,1965-03-24 00:15:00,0 +2267,1965-11-27 15:12:00,0 +9742,1967-11-03 20:50:00,0 +370,1967-04-19 11:42:00,0 +7726,1967-01-16 14:16:00,0 +4597,1966-05-28 11:53:00,0 +5977,1968-01-02 08:29:00,0 +1269,1966-06-24 20:53:00,0 +7774,1967-04-23 17:41:00,0 +4845,1968-11-11 12:57:00,0 +7576,1968-08-18 20:42:00,0 +8168,1966-10-24 16:26:00,0 +2709,1969-04-14 00:37:00,0 +7760,1967-12-08 15:46:00,0 +7812,1965-09-06 01:52:00,0 +4574,1966-06-25 21:43:00,0 +4860,1967-12-05 10:33:00,0 +3488,1968-02-17 21:01:00,0 +3911,1965-10-29 15:40:00,0 +734,1967-01-05 14:49:00,0 +7221,1966-06-13 19:49:00,0 +3066,1965-04-10 19:40:00,0 +6955,1968-02-29 12:35:00,0 +7985,1968-01-21 20:18:00,0 +946,1968-06-20 00:21:00,0 +4700,1967-09-12 11:13:00,0 +3178,1968-02-25 18:20:00,0 +5860,1969-04-08 09:05:00,0 +7834,1967-06-17 22:25:00,0 +2319,1968-07-27 19:26:00,0 +5922,1969-09-29 21:59:00,0 +2744,1965-03-16 07:55:00,0 +8120,1969-03-25 19:29:00,0 +6395,1969-06-07 06:10:00,0 +5143,1968-04-08 06:20:00,0 +2073,1969-03-05 16:18:00,0 +1532,1965-10-10 00:51:00,0 +5610,1965-03-04 05:25:00,0 +8445,1969-02-01 09:05:00,0 +4278,1965-12-26 22:56:00,0 +6916,1967-11-29 15:39:00,0 +9052,1965-12-03 14:42:00,0 +3701,1966-10-13 02:41:00,0 +2189,1965-07-20 17:36:00,0 +6847,1966-01-22 11:03:00,0 +5628,1969-07-06 21:00:00,0 +6780,1965-08-18 13:19:00,0 +4385,1969-12-01 08:21:00,0 +5000,1965-02-19 08:24:00,0 +2927,1968-12-17 09:12:00,0 +8800,1967-09-28 10:09:00,0 +7240,1967-04-11 07:45:00,0 +2051,1965-10-22 02:49:00,0 +7649,1965-12-22 14:34:00,0 +1333,1968-02-22 10:20:00,0 +8207,1969-06-01 02:32:00,0 +9598,1966-12-13 15:21:00,0 +2801,1965-01-09 19:49:00,0 +1764,1968-11-12 00:50:00,0 +7223,1965-02-26 11:30:00,0 +8142,1969-08-07 08:18:00,0 +3616,1966-01-22 06:58:00,0 +8407,1968-09-26 15:26:00,0 +9005,1966-07-13 18:47:00,0 +8679,1967-11-02 07:31:00,0 +7257,1967-01-25 11:21:00,0 +6340,1967-01-01 14:33:00,0 +5258,1965-03-29 13:47:00,0 +7288,1969-02-25 00:04:00,0 +8824,1965-06-22 19:30:00,0 +9550,1965-10-07 11:35:00,0 +706,1967-04-02 05:24:00,0 +7796,1967-03-29 08:59:00,0 +2906,1968-02-17 05:58:00,0 +90,1968-05-20 18:24:00,0 +9965,1967-04-14 20:16:00,0 +3919,1966-08-01 12:12:00,0 +2040,1969-03-01 02:59:00,0 +7613,1965-04-27 14:54:00,0 +8814,1966-12-11 18:56:00,0 +7380,1968-08-20 18:12:00,0 +5883,1969-03-13 06:12:00,0 +7828,1965-04-24 11:23:00,0 +4577,1967-01-06 00:55:00,0 +67,1965-08-21 17:10:00,0 +7811,1968-03-23 13:51:00,0 +767,1967-09-05 09:58:00,0 +1725,1965-06-02 07:08:00,0 +4839,1968-12-22 08:23:00,0 +8071,1966-04-19 17:00:00,0 +6523,1969-11-30 05:50:00,0 +9159,1967-10-28 13:23:00,0 +4943,1968-10-18 18:16:00,0 +6196,1967-12-11 15:40:00,0 +4055,1966-12-21 06:54:00,0 +5582,1968-02-27 07:37:00,0 +6263,1968-04-12 06:52:00,0 +3134,1965-10-22 10:40:00,0 +9687,1965-03-13 12:53:00,0 +2497,1968-02-06 03:00:00,0 +7425,1968-02-28 23:58:00,0 +4997,1968-11-08 13:26:00,0 +1616,1969-09-24 02:33:00,0 +9171,1969-12-26 02:40:00,0 +4294,1966-05-07 16:57:00,0 +6711,1966-10-08 20:06:00,0 +9451,1967-08-23 07:44:00,0 +3023,1968-12-09 06:14:00,0 +633,1965-08-13 09:37:00,0 +1360,1966-12-02 02:36:00,0 +1352,1968-12-06 16:50:00,0 +7050,1968-07-23 01:37:00,0 +834,1968-09-07 14:31:00,0 +6916,1967-12-13 16:41:00,0 +9732,1969-08-11 09:00:00,0 +195,1969-10-09 22:17:00,0 +2946,1968-01-28 15:43:00,0 +2797,1967-04-15 08:05:00,0 +3842,1966-07-07 04:13:00,0 +916,1966-03-20 14:16:00,0 +3716,1965-04-04 08:45:00,0 +3846,1968-04-08 01:53:00,0 +9303,1968-07-23 18:41:00,0 +2044,1968-10-11 03:07:00,0 +5958,1967-09-06 05:36:00,0 +7031,1966-06-30 06:38:00,0 +7728,1966-12-24 05:30:00,0 +6955,1967-07-20 06:39:00,0 +3351,1968-07-17 22:00:00,0 +7119,1968-02-11 23:56:00,0 +5226,1969-11-21 17:17:00,0 +2565,1965-05-13 16:39:00,0 +1680,1968-08-08 00:45:00,0 +4586,1966-06-11 17:22:00,0 +8950,1969-10-13 09:38:00,0 +9084,1968-06-26 03:38:00,0 +608,1969-10-08 03:55:00,0 +6822,1967-05-14 06:28:00,0 +6585,1965-04-18 03:29:00,0 +5518,1966-08-28 09:21:00,0 +3358,1966-11-04 11:37:00,0 +9823,1967-12-14 20:21:00,0 +5997,1969-06-15 08:33:00,0 +4581,1966-08-12 16:13:00,0 +5199,1969-11-17 17:53:00,0 +8162,1965-04-05 13:19:00,0 +9168,1967-12-30 14:21:00,0 +3869,1965-02-22 14:22:00,0 +3891,1965-12-28 13:44:00,0 +5500,1969-03-12 11:04:00,0 +2562,1965-07-28 16:07:00,0 +2161,1968-03-31 07:50:00,0 +2250,1969-06-01 09:49:00,0 +8717,1968-05-11 01:07:00,0 +7257,1966-04-20 02:19:00,0 +3390,1969-12-23 20:10:00,0 +4121,1967-11-29 19:09:00,0 +9705,1965-06-15 21:21:00,0 +3828,1968-08-31 15:39:00,0 +3186,1967-05-04 08:08:00,0 +1633,1965-09-23 23:21:00,0 +6708,1965-07-18 12:07:00,0 +2839,1969-07-09 22:49:00,0 +3713,1967-10-16 12:06:00,0 +5403,1965-06-01 23:11:00,0 +1141,1968-09-11 11:57:00,0 +8696,1966-12-29 12:52:00,0 +3215,1969-07-17 15:14:00,0 +1373,1968-07-07 22:56:00,0 +7132,1966-12-18 01:27:00,0 +1674,1967-03-30 07:36:00,0 +9188,1966-02-04 04:54:00,0 +4963,1965-04-22 15:28:00,0 +9083,1966-10-29 17:56:00,0 +2678,1967-11-02 03:58:00,0 +5819,1968-10-09 06:07:00,0 +4552,1968-06-11 20:46:00,0 +5917,1969-08-24 04:47:00,0 +4058,1966-04-10 23:45:00,0 +8782,1965-06-15 09:03:00,0 +3912,1966-08-24 19:09:00,0 +1707,1968-12-09 15:31:00,0 +7163,1968-01-25 23:49:00,0 +4606,1968-06-06 01:47:00,0 +2475,1966-02-07 21:27:00,0 +4968,1968-05-08 22:27:00,0 +242,1967-10-03 10:00:00,0 +4728,1965-02-16 09:51:00,0 +9845,1969-08-05 08:38:00,0 +8290,1967-02-06 11:09:00,0 +2041,1965-06-05 13:43:00,0 +2979,1968-08-28 21:23:00,0 +2098,1965-01-22 18:56:00,0 +4858,1967-05-04 09:56:00,0 +621,1965-10-22 18:04:00,0 +6155,1965-12-02 15:41:00,0 +7381,1969-11-25 22:53:00,0 +4611,1967-07-24 04:08:00,0 +1531,1965-06-05 11:40:00,0 +7291,1965-09-01 08:32:00,0 +365,1968-05-04 07:11:00,0 +3430,1969-10-17 02:07:00,0 +2373,1969-07-31 08:22:00,0 +5786,1967-04-03 13:14:00,0 +2328,1967-11-12 09:11:00,0 +1021,1966-06-18 10:15:00,0 +817,1968-09-16 11:15:00,0 +6590,1967-12-20 22:24:00,0 +6785,1967-01-04 06:57:00,0 +7116,1967-12-22 13:05:00,0 +4645,1968-11-22 19:11:00,0 +6592,1966-10-29 18:27:00,0 +9489,1965-05-30 17:53:00,0 +7862,1967-07-01 00:58:00,0 +268,1966-12-31 23:39:00,0 +1806,1965-10-12 22:00:00,0 +7851,1965-02-03 14:18:00,0 +6593,1968-03-26 17:12:00,0 +5438,1965-04-12 16:25:00,0 +9970,1965-07-06 04:21:00,0 +4302,1969-02-10 20:14:00,0 +1922,1966-05-06 10:56:00,0 +5329,1965-01-16 16:46:00,0 +6114,1966-05-23 20:43:00,0 +6861,1966-07-24 20:48:00,0 +1817,1966-09-21 06:41:00,0 +3735,1965-03-13 13:51:00,0 +879,1965-04-04 17:09:00,0 +46,1967-09-23 13:58:00,0 +8001,1967-09-11 01:11:00,0 +1511,1965-08-14 11:23:00,0 +6340,1967-01-21 03:46:00,0 +8884,1965-08-31 21:12:00,0 +9203,1968-04-16 06:27:00,0 +6443,1967-12-21 14:26:00,0 +4546,1967-08-19 17:53:00,0 +2779,1969-01-31 13:25:00,0 +4541,1968-12-14 21:26:00,0 +8455,1968-07-25 14:16:00,0 +1885,1966-03-23 17:53:00,0 +3414,1968-08-29 19:55:00,0 +2910,1969-06-16 21:27:00,0 +3827,1967-06-26 06:15:00,0 +459,1969-05-07 03:40:00,0 +7175,1965-09-03 16:47:00,0 +7247,1969-10-14 10:26:00,0 +9441,1966-12-16 04:29:00,0 +7733,1966-06-27 13:11:00,0 +2173,1968-04-02 17:22:00,0 +1387,1967-09-03 01:22:00,0 +1374,1965-03-31 13:40:00,0 +6095,1965-02-21 16:14:00,0 +1415,1966-09-08 19:31:00,0 +5338,1965-08-18 20:22:00,0 +3999,1967-10-08 07:57:00,0 +2433,1969-02-09 03:35:00,0 +2573,1968-09-29 16:35:00,0 +7412,1968-11-13 23:47:00,0 +271,1967-08-14 20:00:00,0 +6160,1968-06-05 11:16:00,0 +5899,1969-04-24 06:47:00,0 +5207,1968-04-09 01:34:00,0 +475,1969-12-13 23:06:00,0 +3485,1965-12-04 00:48:00,0 +3041,1967-07-18 15:12:00,0 +8096,1968-08-16 06:39:00,0 +8098,1969-04-22 18:00:00,0 +9875,1968-10-22 15:42:00,0 +1623,1967-06-23 23:16:00,0 +1194,1965-12-09 22:35:00,0 +792,1968-10-24 17:11:00,0 +1911,1968-08-15 05:02:00,0 +9102,1965-01-27 21:31:00,0 +1929,1968-07-21 15:58:00,0 +1385,1968-03-05 16:42:00,0 +4740,1965-03-12 14:12:00,0 +3678,1969-08-06 17:35:00,0 +4059,1966-12-02 22:40:00,0 +9615,1965-01-18 07:59:00,0 +7195,1966-11-03 19:12:00,0 +9193,1969-06-29 14:28:00,0 +8708,1967-11-29 17:25:00,0 +1711,1965-06-15 00:45:00,0 +4605,1966-07-27 13:30:00,0 +3497,1966-10-20 01:01:00,0 +6792,1967-09-28 07:57:00,0 +297,1966-04-28 05:31:00,0 +7238,1966-11-18 08:04:00,0 +5600,1965-02-05 01:47:00,0 +7580,1969-08-03 02:28:00,0 +8548,1968-11-16 13:08:00,0 +5772,1968-05-31 01:33:00,0 +1060,1969-02-28 03:02:00,0 +5481,1969-06-07 16:36:00,0 +4877,1966-09-09 23:51:00,0 +1159,1966-12-02 10:28:00,0 +5460,1966-02-22 20:46:00,0 +7565,1969-08-24 15:16:00,0 +5657,1966-09-02 18:53:00,0 +988,1967-01-29 23:06:00,0 +8843,1965-02-26 23:28:00,0 +1731,1967-08-22 21:32:00,0 +4078,1967-05-18 18:32:00,0 +1669,1966-09-10 05:49:00,0 +5952,1968-12-10 08:33:00,0 +730,1968-01-27 11:52:00,0 +7478,1968-03-18 04:36:00,0 +9286,1966-09-26 04:11:00,0 +1986,1967-08-16 16:48:00,0 +6787,1969-09-21 04:14:00,0 +3741,1965-01-23 19:04:00,0 +8877,1967-06-25 03:41:00,0 +9518,1965-02-23 16:09:00,0 +5119,1965-07-23 11:57:00,0 +6022,1968-04-02 03:57:00,0 +3583,1969-06-07 03:55:00,0 +3864,1965-10-26 12:32:00,0 +313,1968-06-17 02:53:00,0 +4522,1968-11-09 23:51:00,0 +6863,1965-09-25 22:45:00,0 +201,1965-04-30 08:09:00,0 +6657,1967-12-19 01:05:00,0 +1518,1967-10-31 20:24:00,0 +383,1967-03-21 17:31:00,0 +2440,1967-07-29 07:18:00,0 +1237,1969-12-15 04:10:00,0 +5763,1967-04-23 06:20:00,0 +7044,1965-02-09 10:57:00,0 +5198,1969-12-31 13:15:00,0 +8693,1969-05-22 10:05:00,0 +2289,1967-06-09 20:26:00,0 +6232,1967-10-01 02:01:00,0 +2229,1967-08-20 04:58:00,0 +7169,1967-06-05 16:00:00,0 +5186,1966-05-18 16:47:00,0 +7851,1965-01-22 13:25:00,0 +9405,1965-12-22 12:51:00,0 +414,1969-04-02 15:36:00,0 +655,1965-10-18 01:51:00,0 +2780,1965-01-03 18:57:00,0 +5315,1965-07-12 10:19:00,0 +2162,1967-12-31 03:10:00,0 +6025,1965-08-20 05:33:00,0 +8884,1969-07-27 18:45:00,0 +293,1968-03-10 17:45:00,0 +7211,1967-07-17 10:24:00,0 +7145,1965-05-14 10:36:00,0 +331,1968-09-29 22:12:00,0 +9610,1968-02-08 03:19:00,0 +2536,1966-08-23 13:30:00,0 +8162,1968-08-27 15:20:00,0 +5084,1967-09-29 08:04:00,0 +9638,1967-07-31 02:41:00,0 +8354,1969-08-08 18:00:00,0 +8884,1969-03-17 00:04:00,0 +8680,1965-06-09 23:15:00,0 +4439,1969-05-15 04:59:00,0 +1712,1969-01-30 23:28:00,0 +751,1968-03-01 11:01:00,0 +5289,1969-05-25 11:16:00,0 +2117,1969-01-14 02:27:00,0 +7720,1965-04-28 22:04:00,0 +6735,1967-12-03 09:47:00,0 +257,1965-12-28 10:22:00,0 +793,1968-09-12 16:21:00,0 +6591,1965-10-01 21:08:00,0 +9897,1969-04-03 06:52:00,0 +2889,1967-11-02 23:40:00,0 +131,1966-05-11 07:27:00,0 +218,1967-01-17 23:44:00,0 +4819,1966-05-16 08:16:00,0 +5440,1966-03-31 00:32:00,0 +3102,1969-05-19 18:29:00,0 +6355,1965-07-17 17:14:00,0 +1787,1968-09-17 09:17:00,0 +8889,1968-12-11 18:38:00,0 +23,1968-07-24 01:25:00,0 +1890,1969-11-23 16:44:00,0 +8679,1967-02-20 13:26:00,0 +5266,1968-04-14 19:57:00,0 +5677,1968-09-19 14:56:00,0 +5404,1967-05-31 05:21:00,0 +4030,1968-08-25 04:25:00,0 +3030,1965-01-03 07:31:00,0 +6896,1966-09-29 07:20:00,0 +5933,1966-05-29 06:43:00,0 +9331,1969-01-18 20:38:00,0 +3768,1969-07-17 16:50:00,0 +6354,1969-03-14 15:41:00,0 +9696,1965-02-06 00:45:00,0 +7757,1967-11-19 01:58:00,0 +3285,1967-09-20 14:55:00,0 +1647,1969-09-19 19:18:00,0 +5515,1967-09-30 12:46:00,0 +4409,1967-08-20 06:10:00,0 +2528,1965-10-31 10:03:00,0 +7971,1969-07-25 08:19:00,0 +4087,1968-11-07 19:54:00,0 +454,1969-12-11 06:08:00,0 +8239,1967-08-28 17:19:00,0 +9509,1966-01-29 22:58:00,0 +8080,1969-09-01 02:14:00,0 +8399,1965-11-29 00:44:00,0 +4612,1965-04-26 04:42:00,0 +42,1967-10-19 14:31:00,0 +2590,1965-07-31 17:27:00,0 +1451,1966-05-17 20:43:00,0 +4571,1965-05-30 16:57:00,0 +4080,1965-11-03 13:46:00,0 +5994,1965-01-29 15:26:00,0 +9045,1965-05-15 20:13:00,0 +8875,1965-06-08 04:31:00,0 +9124,1968-02-20 08:11:00,0 +8290,1969-03-24 22:41:00,0 +1358,1966-06-08 19:09:00,0 +7915,1968-01-07 06:10:00,0 +3424,1966-10-31 19:54:00,0 +5344,1965-09-14 11:20:00,0 +5714,1968-06-29 02:14:00,0 +8072,1966-03-13 21:11:00,0 +3647,1966-05-06 09:29:00,0 +2314,1967-05-14 12:31:00,0 +6087,1969-05-15 00:10:00,0 +7364,1965-07-31 23:32:00,0 +3397,1967-12-22 08:58:00,0 +1736,1966-05-05 17:57:00,0 +9965,1969-10-03 01:06:00,0 +2637,1969-02-10 17:05:00,0 +2985,1968-06-29 07:26:00,0 +9711,1967-11-06 13:57:00,0 +6975,1968-07-06 05:57:00,0 +861,1968-07-20 15:00:00,0 +3840,1966-12-27 04:13:00,0 +8791,1965-11-30 18:56:00,0 +3231,1968-08-25 18:15:00,0 +6765,1966-12-18 08:21:00,0 +6214,1969-06-03 01:47:00,0 +2742,1966-03-04 10:05:00,0 +9648,1966-04-30 20:01:00,0 +82,1966-10-31 21:55:00,0 +7540,1969-05-04 09:32:00,0 +7510,1968-08-04 11:18:00,0 +2744,1968-06-26 10:13:00,0 +3075,1969-09-27 21:26:00,0 +7894,1969-07-03 07:54:00,0 +3366,1967-03-03 09:12:00,0 +1563,1965-02-05 08:58:00,0 +1670,1969-06-17 03:15:00,0 +2869,1967-09-07 01:37:00,0 +8203,1967-06-07 04:52:00,0 +6613,1965-02-27 00:11:00,0 +7475,1965-06-17 05:03:00,0 +7267,1967-03-10 18:56:00,0 +4133,1968-06-01 06:15:00,0 +9015,1967-09-28 18:27:00,0 +4569,1968-04-22 21:12:00,0 +3985,1969-07-25 09:03:00,0 +1521,1967-02-11 11:59:00,0 +7807,1965-10-23 01:19:00,0 +8334,1966-08-16 10:00:00,0 +6137,1969-09-23 12:35:00,0 +7353,1969-06-09 04:22:00,0 +6415,1969-06-19 02:30:00,0 +6878,1968-06-05 14:25:00,0 +701,1968-03-23 07:49:00,0 +857,1965-12-17 04:10:00,0 +8212,1969-01-12 05:19:00,0 +6483,1969-12-07 04:58:00,0 +2427,1969-06-26 10:56:00,0 +3142,1965-10-05 06:33:00,0 +5510,1965-07-30 03:26:00,0 +5953,1967-08-31 09:36:00,0 +9001,1967-06-24 12:43:00,0 +6687,1968-10-04 01:14:00,0 +8244,1967-09-03 05:21:00,0 +9262,1969-12-18 10:19:00,0 +9424,1966-10-18 08:08:00,0 +2412,1966-01-02 00:10:00,0 +7211,1965-01-14 05:32:00,0 +3091,1968-12-27 07:50:00,0 +9052,1967-01-08 08:15:00,0 +2407,1968-10-04 03:57:00,0 +5020,1965-11-01 10:07:00,0 +1013,1969-02-10 06:43:00,0 +580,1968-04-20 23:05:00,0 +7227,1969-08-11 15:14:00,0 +8406,1965-10-02 23:49:00,0 +927,1966-10-16 21:38:00,0 +5057,1966-12-31 22:54:00,0 +3231,1967-01-10 12:04:00,0 +1818,1968-01-09 20:59:00,0 +934,1965-03-19 07:43:00,0 +3310,1965-08-06 14:59:00,0 +4210,1965-06-21 12:11:00,0 +9601,1965-08-04 14:01:00,0 +9082,1966-03-18 00:52:00,0 +8542,1967-12-31 17:27:00,0 +5186,1967-07-27 00:06:00,0 +957,1967-05-26 14:31:00,0 +8520,1965-09-30 03:52:00,0 +2057,1966-12-09 07:05:00,0 +5135,1968-04-18 22:32:00,0 +7739,1969-08-19 09:12:00,0 +2821,1967-05-18 10:34:00,0 +4057,1967-06-04 18:24:00,0 +8105,1965-02-26 08:12:00,0 +6762,1965-12-22 12:28:00,0 +7020,1968-06-06 16:45:00,0 +3295,1968-04-27 14:24:00,0 +7378,1965-06-27 18:33:00,0 +6516,1969-08-25 21:34:00,0 +1031,1966-02-21 08:58:00,0 +8756,1968-10-09 13:18:00,0 +2887,1965-11-21 04:21:00,0 +8319,1969-01-08 13:44:00,0 +7593,1968-12-11 12:15:00,0 +4118,1965-05-22 06:13:00,0 +8807,1969-05-24 04:16:00,0 +6611,1967-09-09 05:15:00,0 +7016,1967-10-19 06:59:00,0 +9747,1968-10-20 00:48:00,0 +99,1966-09-19 06:04:00,0 +3439,1965-03-16 06:48:00,0 +9853,1968-01-21 21:53:00,0 +7121,1967-01-25 11:19:00,0 +9858,1965-03-07 20:58:00,0 +7953,1967-03-16 08:22:00,0 +1076,1967-08-28 01:52:00,0 +3289,1967-06-07 07:50:00,0 +6104,1968-04-06 06:32:00,0 +3193,1965-04-25 13:18:00,0 +7043,1966-12-11 02:39:00,0 +9734,1968-09-21 16:15:00,0 +4893,1968-05-26 16:26:00,0 +2735,1969-06-26 16:47:00,0 +4406,1966-05-22 13:10:00,0 +8270,1968-05-20 13:13:00,0 +9551,1966-09-02 05:05:00,0 +5051,1966-09-18 10:53:00,0 +8430,1965-03-26 17:32:00,0 +5956,1965-11-13 23:42:00,0 +9835,1969-05-16 07:42:00,0 +2754,1965-04-02 09:55:00,0 +9365,1969-08-09 21:19:00,0 +7063,1966-06-13 16:25:00,0 +523,1969-02-14 09:48:00,0 +5260,1967-05-04 11:27:00,0 +9081,1968-06-05 04:53:00,0 +8748,1965-11-15 10:43:00,0 +5262,1969-12-23 00:33:00,0 +8823,1969-01-24 14:10:00,0 +3504,1968-07-17 08:30:00,0 +2931,1969-03-21 03:53:00,0 +9590,1967-05-23 23:52:00,0 +6026,1966-02-13 17:41:00,0 +9294,1967-12-19 06:21:00,0 +4266,1965-06-08 19:47:00,0 +4451,1965-05-11 23:41:00,0 +9986,1967-08-01 18:49:00,0 +6948,1965-05-27 05:00:00,0 +7994,1968-01-15 08:12:00,0 +2754,1965-04-05 23:56:00,0 +846,1968-06-06 07:23:00,0 +8144,1967-11-28 00:59:00,0 +5861,1965-05-02 12:28:00,0 +3943,1967-06-15 21:41:00,0 +447,1965-11-18 07:32:00,0 +9589,1966-04-24 00:59:00,0 +6509,1966-06-27 18:04:00,0 +7328,1968-08-17 17:40:00,0 +1063,1965-10-15 05:55:00,0 +878,1969-05-18 15:12:00,0 +3575,1969-08-18 22:06:00,0 +7262,1965-05-22 15:43:00,0 +5593,1966-05-28 13:05:00,0 +4650,1965-09-14 04:20:00,0 +4948,1968-04-04 08:28:00,0 +6984,1967-09-19 12:31:00,0 +307,1966-06-25 08:57:00,0 +5399,1968-06-18 09:11:00,0 +7405,1965-12-01 16:57:00,0 +5549,1967-04-05 05:49:00,0 +1338,1966-05-02 19:55:00,0 +9963,1965-10-16 20:53:00,0 +4452,1968-07-14 19:14:00,0 +1456,1965-09-09 11:33:00,0 +1215,1965-05-18 12:38:00,0 +2726,1968-12-26 03:55:00,0 +8322,1967-05-24 07:38:00,0 +8752,1967-05-15 10:50:00,0 +351,1967-05-14 09:46:00,0 +8893,1968-01-05 19:12:00,0 +8244,1967-02-15 09:48:00,0 +9328,1969-02-02 23:15:00,0 +3222,1968-10-16 05:12:00,0 +4207,1968-02-18 09:39:00,0 +7087,1966-04-22 02:40:00,0 +7904,1966-09-09 01:02:00,0 +9288,1966-10-08 01:41:00,0 +6069,1969-09-26 16:12:00,0 +478,1969-05-02 16:58:00,0 +2955,1968-05-14 03:27:00,0 +9857,1969-04-15 02:59:00,0 +5822,1965-12-23 22:40:00,0 +5431,1968-12-27 23:38:00,0 +659,1967-09-23 17:25:00,0 +8603,1965-03-29 23:22:00,0 +3727,1967-09-24 17:06:00,0 +4645,1968-03-14 23:47:00,0 +3920,1967-11-25 13:07:00,0 +3199,1969-11-08 02:16:00,0 +6744,1969-08-07 08:09:00,0 +5501,1968-02-20 02:35:00,0 +6839,1967-07-11 04:51:00,0 +9537,1969-04-09 14:51:00,0 +7291,1967-04-11 22:14:00,0 +5321,1967-01-24 20:31:00,0 +1216,1966-09-18 14:34:00,0 +9926,1969-09-17 11:28:00,0 +3642,1965-03-05 12:45:00,0 +5731,1966-10-22 11:04:00,0 +6480,1966-05-21 05:05:00,0 +2469,1967-06-20 04:48:00,0 +9169,1966-02-06 19:40:00,0 +2799,1969-08-05 18:41:00,0 +4123,1967-08-31 02:04:00,0 +6007,1969-08-06 04:25:00,0 +5900,1968-12-07 10:41:00,0 +1233,1966-10-20 06:00:00,0 +5487,1969-04-28 07:40:00,0 +1258,1965-10-09 03:32:00,0 +1194,1965-10-03 14:49:00,0 +1894,1969-03-13 19:24:00,0 +3940,1969-04-08 16:03:00,0 +9594,1968-12-16 13:10:00,0 +286,1965-03-23 21:06:00,0 +5492,1966-08-24 19:51:00,0 +8809,1965-10-23 03:24:00,0 +3937,1966-06-28 16:30:00,0 +7899,1967-04-19 17:41:00,0 +3720,1966-03-11 21:23:00,0 +7194,1966-06-25 07:08:00,0 +8584,1969-01-01 18:40:00,0 +3311,1965-09-09 02:10:00,0 +2168,1966-08-05 22:14:00,0 +3531,1968-12-05 09:06:00,0 +8740,1967-01-01 18:26:00,0 +8708,1965-04-23 18:00:00,0 +7219,1966-09-09 20:16:00,0 +3013,1965-04-04 20:19:00,0 +6294,1967-01-15 18:19:00,0 +5716,1965-07-30 16:13:00,0 +6882,1965-12-26 00:31:00,0 +5279,1969-08-29 15:00:00,0 +9048,1969-08-17 14:04:00,0 +6957,1966-02-04 16:08:00,0 +9817,1966-02-09 20:14:00,0 +1446,1965-03-22 01:22:00,0 +797,1966-08-29 01:44:00,0 +3418,1967-09-16 06:56:00,0 +5451,1965-11-01 08:37:00,0 +6729,1966-04-27 07:13:00,0 +8181,1969-05-29 21:13:00,0 +135,1968-12-11 17:42:00,0 +8472,1966-10-29 02:26:00,0 +4995,1968-10-20 03:19:00,0 +6748,1969-05-14 22:09:00,0 +201,1968-04-12 08:28:00,0 +7295,1967-01-03 20:48:00,0 +4985,1968-11-30 06:39:00,0 +7971,1968-01-21 23:07:00,0 +6950,1966-01-03 06:59:00,0 +2596,1968-06-19 13:10:00,0 +4816,1968-01-06 02:10:00,0 +6675,1966-02-19 01:15:00,0 +5630,1969-10-07 03:50:00,0 +3662,1967-07-04 12:20:00,0 +7634,1968-08-20 16:52:00,0 +3930,1968-12-03 19:58:00,0 +9645,1966-07-08 04:55:00,0 +3401,1967-08-12 16:38:00,0 +4410,1967-07-23 05:58:00,0 +6261,1966-06-16 06:42:00,0 +2238,1969-04-06 06:34:00,0 +8496,1966-12-26 08:54:00,0 +6931,1966-01-12 03:47:00,0 +5930,1967-12-13 07:32:00,0 +3903,1968-03-06 09:09:00,0 +2852,1966-06-28 05:15:00,0 +4266,1967-06-26 09:10:00,0 +5335,1969-03-10 00:05:00,0 +646,1969-10-28 23:27:00,0 +7427,1968-03-06 07:48:00,0 +5214,1965-05-28 02:11:00,0 +1428,1968-11-28 13:07:00,0 +71,1966-04-26 01:10:00,0 +2008,1965-03-22 07:28:00,0 +2853,1969-06-21 14:55:00,0 +2636,1965-02-28 16:19:00,0 +3052,1967-05-27 18:56:00,0 +4597,1969-11-18 09:45:00,0 +7366,1965-10-14 09:45:00,0 +8920,1968-04-02 21:38:00,0 +8577,1966-03-19 20:24:00,0 +6616,1965-11-29 12:44:00,0 +8124,1969-05-04 13:31:00,0 +7044,1967-04-18 03:57:00,0 +212,1968-04-21 17:42:00,0 +8383,1965-10-13 14:15:00,0 +6446,1969-11-10 15:59:00,0 +7223,1968-08-04 12:44:00,0 +2553,1965-08-03 07:36:00,0 +3779,1968-10-21 20:57:00,0 +8452,1965-06-01 10:27:00,0 +5786,1965-05-13 08:09:00,0 +1704,1969-02-28 16:53:00,0 +3844,1965-07-07 07:59:00,0 +2527,1965-01-28 06:57:00,0 +4621,1968-09-03 10:25:00,0 +688,1968-09-10 00:43:00,0 +6435,1968-08-15 20:10:00,0 +4385,1968-09-29 17:07:00,0 +4181,1965-07-10 15:51:00,0 +3570,1966-12-10 02:16:00,0 +3736,1968-08-28 20:18:00,0 +5603,1965-08-22 18:59:00,0 +5233,1968-03-06 21:08:00,0 +4646,1966-07-27 17:03:00,0 +4569,1967-10-26 15:22:00,0 +909,1965-08-19 04:28:00,0 +6109,1969-06-23 00:34:00,0 +6611,1965-09-25 11:37:00,0 +7180,1966-07-12 10:52:00,0 +3567,1966-08-16 06:36:00,0 +6364,1966-08-27 00:19:00,0 +9299,1966-05-27 13:44:00,0 +6376,1969-02-01 07:21:00,0 +4545,1966-01-21 11:58:00,0 +3641,1965-10-13 16:09:00,0 +3900,1967-05-13 01:42:00,0 +2354,1965-07-29 21:57:00,0 +298,1965-03-08 15:12:00,0 +403,1967-09-05 07:28:00,0 +1197,1965-11-18 10:52:00,0 +5315,1968-08-30 04:33:00,0 +9471,1965-02-22 10:52:00,0 +4233,1966-03-01 22:16:00,0 +573,1966-05-05 02:37:00,0 +2528,1969-03-19 17:20:00,0 +8107,1968-01-31 05:29:00,0 +4682,1968-08-27 08:38:00,0 +6818,1965-04-21 23:35:00,0 +300,1969-10-04 22:30:00,0 +7924,1966-10-14 07:35:00,0 +9805,1966-07-06 07:05:00,0 +3099,1966-05-08 14:58:00,0 +6112,1969-09-04 17:52:00,0 +9397,1969-12-12 08:53:00,0 +2205,1965-12-15 15:11:00,0 +7970,1965-05-22 17:02:00,0 +1700,1968-01-14 11:38:00,0 +1515,1967-02-04 00:36:00,0 +2060,1968-04-02 11:46:00,0 +1390,1969-07-11 20:27:00,0 +4483,1966-03-22 21:51:00,0 +5883,1968-05-18 08:07:00,0 +8891,1968-01-27 19:50:00,0 +269,1968-12-12 07:14:00,0 +4406,1967-05-14 01:55:00,0 +2374,1967-02-05 16:17:00,0 +8982,1968-12-21 02:31:00,0 +4315,1968-11-26 22:03:00,0 +8553,1968-04-03 00:59:00,0 +6819,1968-10-15 01:59:00,0 +3513,1967-11-23 15:50:00,0 +6116,1968-04-10 08:55:00,0 +4689,1965-11-17 06:46:00,0 +8095,1967-06-15 17:44:00,0 +2959,1969-02-24 14:32:00,0 +4996,1968-09-03 23:01:00,0 +5572,1968-06-22 08:46:00,0 +6757,1968-08-25 16:21:00,0 +199,1969-10-13 11:52:00,0 +22,1965-03-05 14:00:00,0 +3894,1967-05-11 11:20:00,0 +9109,1968-02-01 07:42:00,0 +6017,1969-06-23 21:12:00,0 +7029,1968-06-10 02:51:00,0 +3694,1967-05-11 17:05:00,0 +317,1966-09-15 12:05:00,0 +7798,1967-07-09 00:22:00,0 +3556,1969-11-07 15:55:00,0 +7577,1968-12-16 04:12:00,0 +4304,1965-07-04 11:48:00,0 +1765,1967-12-22 12:01:00,0 +4077,1969-02-21 16:08:00,0 +4923,1966-09-26 17:30:00,0 +1528,1967-05-19 06:56:00,0 +3358,1967-08-31 10:25:00,0 +5287,1966-05-18 01:37:00,0 +9924,1967-07-10 16:34:00,0 +8351,1965-12-22 18:07:00,0 +1524,1966-05-14 08:54:00,0 +4684,1969-11-02 20:11:00,0 +2265,1968-09-03 01:29:00,0 +4508,1966-03-02 11:24:00,0 +5877,1968-08-05 01:39:00,0 +5606,1968-06-19 12:28:00,0 +7391,1966-05-03 01:40:00,0 +2332,1966-08-18 15:54:00,0 +4180,1968-12-21 04:55:00,0 +6356,1969-07-07 11:08:00,0 +2975,1965-01-17 01:00:00,0 +7781,1965-01-29 03:32:00,0 +6637,1969-12-15 23:41:00,0 +6572,1969-08-30 21:40:00,0 +181,1967-05-07 20:33:00,0 +6001,1966-05-03 05:08:00,0 +887,1965-01-29 20:18:00,0 +2281,1965-08-10 16:49:00,0 +8584,1965-05-05 06:33:00,0 +9341,1965-10-25 11:40:00,0 +4183,1966-05-14 08:44:00,0 +5297,1969-10-23 03:07:00,0 +3727,1965-08-03 01:20:00,0 +2363,1968-10-13 23:06:00,0 +1153,1966-04-26 12:36:00,0 +9149,1969-07-17 09:47:00,0 +3017,1965-01-09 19:40:00,0 +3448,1966-06-12 05:24:00,0 +4149,1968-05-29 16:37:00,0 +8430,1967-09-09 05:33:00,0 +1541,1965-06-08 12:19:00,0 +2244,1967-09-15 08:16:00,0 +765,1966-05-09 09:27:00,0 +7135,1968-03-15 05:27:00,0 +1562,1967-10-27 12:52:00,0 +7026,1968-01-03 11:56:00,0 +8153,1967-10-29 05:13:00,0 +2186,1969-04-25 20:06:00,0 +6835,1965-12-03 01:19:00,0 +6022,1968-12-29 01:28:00,0 +6710,1968-02-21 09:40:00,0 +8324,1965-09-18 18:04:00,0 +1192,1966-01-29 23:19:00,0 +5677,1965-07-28 23:48:00,0 +1173,1968-06-08 07:18:00,0 +8429,1965-02-20 10:13:00,0 +6082,1969-07-06 15:49:00,0 +18,1968-05-28 13:37:00,0 +1570,1968-12-27 18:36:00,0 +180,1968-01-24 05:35:00,0 +6021,1969-07-24 08:29:00,0 +5209,1966-08-21 22:21:00,0 +6829,1968-10-24 13:45:00,0 +2231,1969-07-15 13:06:00,0 +2771,1965-11-29 03:59:00,0 +7853,1966-08-24 03:03:00,0 +1052,1966-02-03 10:35:00,0 +6229,1967-08-05 04:03:00,0 +1578,1965-12-27 17:43:00,0 +6859,1968-10-20 14:40:00,0 +1852,1966-10-21 01:47:00,0 +5507,1969-01-12 12:35:00,0 +2071,1969-04-02 04:02:00,0 +1989,1965-02-17 21:07:00,0 +7770,1966-05-19 00:47:00,0 +1067,1966-06-21 02:24:00,0 +4171,1965-12-09 21:11:00,0 +6456,1966-09-07 11:53:00,0 +2540,1966-06-29 22:38:00,0 +6135,1967-02-16 00:44:00,0 +8649,1965-03-26 11:32:00,0 +8550,1967-04-15 19:34:00,0 +6851,1969-03-12 12:17:00,0 +8383,1968-02-20 11:42:00,0 +5360,1969-02-16 21:33:00,0 +9341,1969-02-14 13:39:00,0 +1182,1965-05-16 03:45:00,0 +8082,1967-05-12 14:46:00,0 +6715,1969-11-05 05:08:00,0 +9433,1965-05-07 18:09:00,0 +1601,1968-08-20 09:52:00,0 +590,1969-02-21 22:37:00,0 +7585,1967-10-22 02:28:00,0 +9185,1968-01-11 16:37:00,0 +6360,1968-10-02 14:33:00,0 +4733,1969-10-07 05:16:00,0 +5447,1966-06-24 01:40:00,0 +8864,1968-08-02 07:32:00,0 +9499,1967-11-13 09:20:00,0 +3474,1966-08-19 10:10:00,0 +5083,1965-10-24 18:10:00,0 +9772,1965-11-26 14:10:00,0 +1815,1966-07-15 07:29:00,0 +1070,1966-12-19 10:56:00,0 +9073,1966-06-12 01:00:00,0 +6035,1967-09-30 04:41:00,0 +6052,1968-04-09 07:59:00,0 +5797,1968-09-01 13:10:00,0 +6019,1967-10-21 01:53:00,0 +9485,1968-05-07 14:44:00,0 +3182,1967-01-17 02:07:00,0 +8129,1968-06-21 03:57:00,0 +5755,1969-09-13 13:23:00,0 +8880,1965-07-08 01:09:00,0 +3915,1969-05-26 00:16:00,0 +517,1967-07-29 11:12:00,0 +1366,1965-12-08 21:27:00,0 +4673,1968-05-03 07:16:00,0 +8920,1965-07-25 12:37:00,0 +3167,1965-06-16 10:04:00,0 +9135,1967-09-17 20:46:00,0 +4079,1966-05-26 09:40:00,0 +1838,1966-05-21 07:10:00,0 +3683,1969-10-16 05:58:00,0 +1969,1969-04-22 17:47:00,0 +1545,1965-01-11 18:11:00,0 +3163,1966-08-24 09:43:00,0 +6847,1967-09-10 22:28:00,0 +4114,1965-07-27 07:24:00,0 +7076,1969-07-06 18:41:00,0 +2460,1968-05-11 20:13:00,0 +6013,1965-07-17 03:07:00,0 +620,1967-07-10 06:23:00,0 +6638,1969-12-09 04:39:00,0 +8050,1965-05-12 06:36:00,0 +3784,1968-02-01 19:53:00,0 +1399,1967-08-19 14:20:00,0 +1737,1969-05-04 10:30:00,0 +9600,1969-06-29 20:16:00,0 +9023,1968-08-21 23:39:00,0 +87,1966-10-30 10:22:00,0 +5282,1968-03-30 17:48:00,0 +1882,1965-05-24 17:56:00,0 +3115,1967-03-24 05:39:00,0 +7195,1967-02-14 16:12:00,0 +4737,1965-02-13 18:59:00,0 +9405,1968-04-26 19:10:00,0 +1682,1967-05-12 11:44:00,0 +6510,1969-01-16 12:52:00,0 +2524,1969-07-17 01:17:00,0 +5459,1969-10-23 08:30:00,0 +7811,1967-08-16 00:25:00,0 +2751,1969-03-31 22:50:00,0 +92,1966-03-10 14:42:00,0 +750,1965-09-06 14:10:00,0 +469,1969-11-17 12:11:00,0 +9236,1969-09-22 01:56:00,0 +7634,1967-10-21 04:43:00,0 +3409,1965-01-19 08:18:00,0 +7493,1966-09-27 20:15:00,0 +4097,1968-03-09 15:18:00,0 +2043,1965-10-16 12:22:00,0 +1876,1965-02-25 23:01:00,0 +642,1967-04-07 11:40:00,0 +9939,1967-07-20 04:31:00,0 +7275,1968-01-05 05:29:00,0 +5315,1968-07-24 09:01:00,0 +3232,1969-06-20 22:38:00,0 +6195,1969-12-15 08:50:00,0 +9588,1968-11-18 21:00:00,0 +3269,1965-08-13 00:49:00,0 +7696,1969-07-16 01:47:00,0 +4213,1967-07-23 12:00:00,0 +9656,1966-12-06 18:54:00,0 +1887,1966-09-24 19:07:00,0 +4780,1968-07-18 04:21:00,0 +2827,1965-12-05 14:10:00,0 +6997,1965-03-14 04:12:00,0 +9243,1965-04-21 02:23:00,0 +3013,1966-08-29 01:35:00,0 +2949,1967-06-16 00:25:00,0 +9744,1966-01-15 13:46:00,0 +5196,1968-06-30 01:32:00,0 +1936,1967-04-13 05:52:00,0 +8903,1965-12-27 20:56:00,0 +7843,1967-04-08 20:46:00,0 +2973,1967-01-25 00:40:00,0 +437,1967-12-31 23:20:00,0 +6928,1965-10-13 08:11:00,0 +166,1966-06-01 02:36:00,0 +8344,1966-09-07 05:00:00,0 +6604,1965-05-14 17:22:00,0 +182,1968-09-26 01:28:00,0 +7967,1966-04-11 12:08:00,0 +6671,1968-11-24 09:45:00,0 +1393,1967-12-19 18:35:00,0 +8807,1965-11-05 02:38:00,0 +971,1969-11-06 12:40:00,0 +9003,1967-06-05 08:19:00,0 +1214,1966-03-13 03:09:00,0 +3783,1965-10-06 14:16:00,0 +5621,1969-11-27 22:23:00,0 +1056,1968-10-17 04:35:00,0 +7119,1967-01-02 00:21:00,0 +8372,1967-03-20 08:01:00,0 +1466,1965-08-07 10:01:00,0 +3299,1968-03-04 21:21:00,0 +4078,1967-10-06 23:57:00,0 +4260,1969-03-18 15:32:00,0 +3656,1965-11-25 16:11:00,0 +4357,1969-11-16 22:52:00,0 +7342,1965-08-28 02:54:00,0 +3984,1965-04-11 16:15:00,0 +6358,1965-08-22 00:14:00,0 +7758,1967-04-16 10:05:00,0 +2127,1968-01-09 02:37:00,0 +3537,1967-08-07 20:19:00,0 +6622,1968-04-05 10:05:00,0 +322,1966-06-12 09:53:00,0 +7763,1967-12-24 12:57:00,0 +5242,1968-04-16 20:11:00,0 +889,1966-12-15 21:03:00,0 +6569,1966-05-06 11:50:00,0 +9469,1967-01-25 00:17:00,0 +5006,1968-12-25 04:54:00,0 +4511,1968-03-20 21:05:00,0 +8748,1966-07-21 17:00:00,0 +2366,1968-09-28 06:47:00,0 +9440,1969-10-06 21:00:00,0 +1647,1966-01-08 20:34:00,0 +8522,1965-03-27 07:36:00,0 +8615,1968-10-02 01:41:00,0 +9475,1969-05-07 17:54:00,0 +6453,1968-07-12 03:08:00,0 +4212,1966-12-31 02:52:00,0 +8659,1966-12-26 16:03:00,0 +8427,1965-05-26 12:43:00,0 +9143,1969-08-05 18:09:00,0 +6621,1967-08-09 00:33:00,0 +4760,1967-12-29 01:52:00,0 +5650,1968-05-29 07:34:00,0 +8094,1968-08-03 04:45:00,0 +5862,1966-05-21 09:15:00,0 +7714,1968-07-05 07:29:00,0 +273,1965-10-12 15:13:00,0 +2939,1966-03-22 02:24:00,0 +5907,1965-06-09 07:10:00,0 +5304,1965-07-29 15:53:00,0 +168,1966-10-23 10:33:00,0 +2069,1965-08-23 20:18:00,0 +7821,1966-07-01 15:31:00,0 +5942,1967-04-18 15:33:00,0 +5627,1965-10-30 15:39:00,0 +1612,1965-10-15 22:11:00,0 +7329,1969-05-04 07:45:00,0 +6901,1968-06-03 09:15:00,0 +3606,1966-10-21 10:34:00,0 +7885,1968-01-29 22:54:00,0 +5747,1966-09-04 04:41:00,0 +2356,1969-12-20 02:49:00,0 +8132,1965-08-02 06:26:00,0 +3235,1969-06-18 12:14:00,0 +106,1965-09-24 05:56:00,0 +3060,1966-05-28 13:01:00,0 +660,1967-08-29 15:59:00,0 +7193,1965-01-05 06:58:00,0 +1755,1966-12-18 00:54:00,0 +4914,1968-04-06 20:41:00,0 +4658,1965-03-02 22:40:00,0 +7480,1966-07-25 12:30:00,0 +7071,1965-07-05 12:38:00,0 +1333,1967-02-04 14:20:00,0 +5619,1969-07-01 19:22:00,0 +5748,1968-08-24 13:52:00,0 +8436,1966-06-05 23:39:00,0 +1249,1969-11-29 01:09:00,0 +9832,1965-08-23 18:03:00,0 +2142,1968-07-13 18:55:00,0 +5553,1965-07-14 19:15:00,0 +2555,1968-01-11 05:56:00,0 +7940,1965-09-27 09:28:00,0 +38,1965-03-18 22:23:00,0 +2497,1967-01-08 03:11:00,0 +7807,1968-06-16 01:49:00,0 +187,1965-01-30 22:50:00,0 +5472,1969-05-29 18:29:00,0 +1100,1969-07-25 19:36:00,0 +446,1966-09-20 21:43:00,0 +5452,1968-01-25 02:16:00,0 +8924,1966-03-18 23:06:00,0 +6229,1966-06-09 16:30:00,0 +3738,1965-10-18 16:06:00,0 +4751,1969-05-15 07:52:00,0 +149,1967-12-09 01:12:00,0 +5945,1967-12-29 13:41:00,0 +6124,1968-06-22 05:25:00,0 +9728,1966-01-01 06:12:00,0 +2946,1967-12-16 01:26:00,0 +6283,1967-11-16 21:25:00,0 +8154,1968-04-20 04:36:00,0 +5136,1966-12-29 15:09:00,0 +2366,1969-03-17 11:05:00,0 +3203,1969-04-08 00:26:00,0 +1809,1967-07-14 20:44:00,0 +3382,1967-01-27 10:09:00,0 +6760,1966-05-29 23:38:00,0 +4370,1965-06-23 22:53:00,0 +1192,1968-06-29 12:29:00,0 +7548,1968-10-10 22:05:00,0 +6167,1965-04-13 19:28:00,0 +5345,1967-02-03 09:57:00,0 +4832,1969-06-23 07:30:00,0 +9091,1969-11-05 15:35:00,0 +6291,1965-06-13 14:03:00,0 +6604,1967-01-04 19:17:00,0 +9331,1965-05-08 23:12:00,0 +3153,1968-08-01 01:04:00,0 +3017,1969-07-30 14:17:00,0 +3325,1967-03-31 20:14:00,0 +3828,1966-10-26 22:55:00,0 +3825,1968-05-13 03:23:00,0 +9120,1967-03-06 06:11:00,0 +319,1966-09-25 04:22:00,0 +17,1968-11-16 12:40:00,0 +6663,1969-04-15 09:38:00,0 +3451,1969-05-18 01:28:00,0 +8768,1966-03-19 03:44:00,0 +5750,1966-03-01 04:16:00,0 +8589,1967-12-25 02:42:00,0 +2805,1968-01-26 11:06:00,0 +8612,1969-11-20 08:48:00,0 +8744,1965-06-30 00:43:00,0 +4991,1965-11-17 07:12:00,0 +3414,1968-09-08 01:26:00,0 +4468,1969-11-01 13:34:00,0 +8927,1968-11-26 12:20:00,0 +8534,1967-11-26 04:08:00,0 +1716,1969-08-18 05:49:00,0 +6240,1969-10-20 01:40:00,0 +6689,1967-05-20 09:19:00,0 +6650,1969-08-26 11:08:00,0 +6406,1966-01-25 02:31:00,0 +4409,1965-05-17 04:16:00,0 +7516,1965-11-27 16:37:00,0 +2191,1965-05-24 22:53:00,0 +1193,1968-12-14 07:08:00,0 +6104,1966-04-28 16:59:00,0 +4204,1966-10-06 11:41:00,0 +8725,1969-06-30 13:52:00,0 +8313,1969-06-03 13:26:00,0 +2107,1968-10-30 00:29:00,0 +4268,1965-04-04 14:08:00,0 +6517,1968-06-09 04:54:00,0 +2829,1967-02-25 05:20:00,0 +8505,1965-09-14 23:46:00,0 +6759,1966-03-20 02:40:00,0 +8459,1969-03-18 14:31:00,0 +273,1969-04-07 05:03:00,0 +1532,1967-06-23 21:14:00,0 +2222,1965-08-06 11:49:00,0 +5764,1965-11-25 13:31:00,0 +7974,1969-03-01 12:39:00,0 +5942,1967-04-01 20:17:00,0 +7674,1966-10-10 12:11:00,0 +7459,1965-02-13 16:58:00,0 +843,1968-12-18 13:11:00,0 +6898,1968-09-14 01:12:00,0 +5258,1965-04-03 04:33:00,0 +9067,1965-01-16 15:04:00,0 +8910,1969-08-03 04:34:00,0 +2473,1965-07-12 14:06:00,0 +8072,1969-11-16 04:22:00,0 +6715,1968-08-23 12:24:00,0 +107,1969-08-22 18:32:00,0 +5449,1967-08-29 09:28:00,0 +1690,1969-08-16 09:14:00,0 +6871,1967-12-28 11:08:00,0 +1223,1965-04-26 09:51:00,0 +3142,1969-08-27 07:18:00,0 +4497,1967-01-31 03:56:00,0 +3343,1966-10-15 05:15:00,0 +3770,1967-12-27 01:45:00,0 +2770,1969-07-29 21:22:00,0 +2881,1967-04-11 07:16:00,0 +5056,1965-12-06 05:48:00,0 +5784,1967-06-03 06:12:00,0 +3541,1967-04-06 04:39:00,0 +8356,1969-11-08 22:33:00,0 +7702,1967-12-25 23:09:00,0 +246,1969-10-18 21:55:00,0 +1537,1967-10-20 23:53:00,0 +3835,1965-07-02 04:14:00,0 +3796,1968-08-14 02:00:00,0 +1875,1967-02-13 16:30:00,0 +2180,1966-08-16 01:36:00,0 +642,1968-03-17 17:57:00,0 +5376,1965-01-18 21:52:00,0 +1870,1969-06-13 17:56:00,0 +1160,1965-07-11 03:55:00,0 +7743,1968-07-20 02:53:00,0 +1251,1966-10-12 15:28:00,0 +9866,1967-04-30 02:04:00,0 +554,1969-06-07 05:44:00,0 +3682,1968-07-11 07:56:00,0 +8886,1966-11-19 10:49:00,0 +7287,1969-08-25 18:50:00,0 +1271,1966-04-28 11:49:00,0 +8997,1966-04-12 07:57:00,0 +186,1966-08-22 17:47:00,0 +5054,1969-09-01 05:16:00,0 +1486,1966-08-08 01:59:00,0 +5292,1965-03-15 02:32:00,0 +909,1969-03-20 06:31:00,0 +8185,1969-07-16 14:30:00,0 +5253,1965-06-06 16:14:00,0 +7200,1968-07-03 16:26:00,0 +5157,1965-08-08 06:32:00,0 +4084,1966-03-04 09:44:00,0 +25,1967-10-12 13:12:00,0 +2927,1969-12-11 12:23:00,0 +7691,1968-04-12 13:39:00,0 +27,1968-06-18 13:15:00,0 +5406,1967-05-18 13:45:00,0 +4596,1966-10-20 22:03:00,0 +2127,1966-12-18 20:39:00,0 +8645,1967-09-26 03:55:00,0 +4340,1968-09-05 12:13:00,0 +1521,1966-10-14 15:18:00,0 +1703,1965-12-31 15:28:00,0 +8338,1966-03-31 04:46:00,0 +5808,1968-05-02 09:28:00,0 +1350,1969-12-10 19:59:00,0 +7369,1967-04-12 02:24:00,0 +9029,1969-11-12 19:24:00,0 +8238,1967-02-03 09:46:00,0 +1467,1968-11-01 01:11:00,0 +3683,1967-06-21 14:47:00,0 +1408,1969-02-07 01:22:00,0 +5338,1969-02-19 22:39:00,0 +1032,1969-09-09 16:29:00,0 +9401,1969-09-26 21:51:00,0 +8978,1968-04-30 20:47:00,0 +2556,1967-09-22 02:25:00,0 +6565,1965-08-28 00:15:00,0 +2084,1965-11-20 14:26:00,0 +3754,1968-10-10 02:17:00,0 +4845,1969-10-07 13:43:00,0 +1878,1965-12-08 12:00:00,0 +6697,1967-03-15 17:24:00,0 +860,1969-07-23 04:33:00,0 +4129,1968-05-23 20:24:00,0 +6289,1966-05-13 18:19:00,0 +3399,1968-05-01 08:05:00,0 +6446,1969-07-02 06:25:00,0 +2340,1967-08-12 18:14:00,0 +5455,1968-12-21 05:16:00,0 +2998,1967-10-04 04:12:00,0 +7514,1969-10-06 11:12:00,0 +3128,1965-09-10 15:23:00,0 +3160,1965-04-12 07:20:00,0 +5392,1967-10-08 12:35:00,0 +8158,1966-12-20 23:25:00,0 +9610,1966-04-05 21:26:00,0 +7311,1966-05-08 05:19:00,0 +1402,1965-08-16 01:01:00,0 +7932,1967-12-15 22:30:00,0 +3174,1966-11-14 17:30:00,0 +3163,1968-10-15 21:44:00,0 +8165,1969-09-27 11:09:00,0 +2510,1965-07-26 09:45:00,0 +5162,1966-06-07 01:25:00,0 +3231,1966-03-01 12:14:00,0 +218,1965-10-14 08:25:00,0 +4598,1968-09-02 17:28:00,0 +6150,1965-07-28 14:24:00,0 +1125,1965-10-30 05:17:00,0 +9666,1969-04-03 00:27:00,0 +5227,1966-07-05 12:09:00,0 +6979,1967-08-09 12:01:00,0 +4282,1968-05-03 00:11:00,0 +8237,1969-12-30 02:28:00,0 +6185,1966-12-10 09:47:00,0 +3928,1968-06-05 23:12:00,0 +3576,1965-07-16 04:38:00,0 +2466,1969-02-11 01:30:00,0 +4632,1968-08-15 11:43:00,0 +6637,1969-04-09 01:33:00,0 +2082,1966-02-07 12:46:00,0 +7764,1968-12-20 07:22:00,0 +4994,1969-07-10 23:52:00,0 +4080,1965-09-03 07:47:00,0 +9523,1965-07-08 20:46:00,0 +9139,1966-02-14 05:10:00,0 +8242,1965-06-19 21:10:00,0 +8674,1969-03-14 21:41:00,0 +8698,1965-08-05 15:44:00,0 +5173,1965-04-20 18:34:00,0 +7600,1967-02-20 17:45:00,0 +3289,1968-07-21 08:03:00,0 +9130,1968-03-19 06:28:00,0 +2571,1967-05-11 22:40:00,0 +9138,1968-12-19 18:06:00,0 +5013,1967-03-01 13:52:00,0 +6424,1969-06-14 06:54:00,0 +9465,1966-04-01 06:38:00,0 +9783,1966-12-27 00:05:00,0 +7788,1968-03-11 23:43:00,0 +526,1968-04-23 03:38:00,0 +6597,1967-02-18 14:05:00,0 +3871,1965-11-08 13:59:00,0 +6613,1967-09-07 23:03:00,0 +3180,1966-12-09 02:16:00,0 +186,1966-03-09 19:24:00,0 +2496,1969-04-14 07:59:00,0 +3724,1969-09-13 03:49:00,0 +8637,1967-08-20 14:49:00,0 +379,1965-07-22 13:54:00,0 +2438,1965-10-27 05:26:00,0 +8909,1966-03-21 08:19:00,0 +1528,1965-07-28 03:40:00,0 +7684,1969-01-14 15:29:00,0 +3340,1965-05-22 07:11:00,0 +5907,1967-09-08 14:40:00,0 +9284,1966-03-01 06:40:00,0 +9632,1965-12-03 08:43:00,0 +3489,1969-05-01 12:54:00,0 +7746,1969-04-01 13:37:00,0 +7036,1966-06-05 04:04:00,0 +8877,1966-12-16 13:32:00,0 +2300,1968-11-21 05:19:00,0 +2985,1968-11-17 09:27:00,0 +2503,1965-02-08 06:50:00,0 +3883,1966-01-31 18:57:00,0 +8555,1966-01-16 16:13:00,0 +3503,1966-01-05 14:52:00,0 +9586,1969-12-29 08:52:00,0 +4559,1966-06-13 21:07:00,0 +830,1966-04-28 03:53:00,0 +2878,1966-11-02 01:56:00,0 +3175,1965-08-29 09:28:00,0 +6428,1965-02-19 18:45:00,0 +9935,1968-09-09 19:47:00,0 +1282,1966-12-31 09:06:00,0 +8363,1967-07-12 01:32:00,0 +6824,1967-11-15 10:48:00,0 +1974,1968-12-24 16:09:00,0 +7945,1968-11-17 06:52:00,0 +9330,1968-09-18 14:54:00,0 +6232,1965-04-07 18:33:00,0 +1234,1967-11-24 21:47:00,0 +3974,1966-03-16 16:13:00,0 +4889,1966-04-20 22:50:00,0 +9113,1968-02-18 05:56:00,0 +6688,1966-08-31 09:41:00,0 +6075,1965-08-17 13:34:00,0 +9466,1965-12-17 04:41:00,0 +4491,1966-07-21 20:06:00,0 +7372,1965-03-12 23:37:00,0 +8114,1969-04-04 23:38:00,0 +5054,1969-06-18 17:47:00,0 +7460,1967-10-12 23:19:00,0 +8855,1967-06-04 08:31:00,0 +8310,1969-09-04 23:22:00,0 +5337,1965-10-02 21:50:00,0 +9143,1966-03-08 04:32:00,0 +835,1965-05-25 14:02:00,0 +4275,1968-01-20 23:22:00,0 +2672,1967-04-28 21:08:00,0 +3784,1966-03-31 13:50:00,0 +8106,1965-06-18 19:00:00,0 +7565,1965-11-11 23:43:00,0 +97,1967-03-09 15:30:00,0 +1048,1969-06-03 02:28:00,0 +8434,1967-03-11 22:21:00,0 +7007,1968-09-01 14:15:00,0 +6128,1966-02-24 02:23:00,0 +772,1967-10-16 17:42:00,0 +2350,1967-06-13 12:02:00,0 +6466,1966-09-23 13:59:00,0 +887,1966-10-03 08:14:00,0 +2083,1967-08-29 15:52:00,0 +7331,1965-05-23 14:28:00,0 +9626,1965-08-11 08:37:00,0 +1054,1968-01-25 13:12:00,0 +4227,1965-10-31 04:24:00,0 +9689,1968-10-14 17:02:00,0 +1535,1967-09-30 08:57:00,0 +7336,1966-04-19 00:12:00,0 +838,1965-05-13 17:48:00,0 +7921,1969-01-17 18:21:00,0 +9069,1967-05-17 22:43:00,0 +6554,1968-08-05 14:27:00,0 +3843,1966-12-24 19:34:00,0 +3597,1969-09-07 01:00:00,0 +8191,1966-11-12 13:34:00,0 +522,1967-11-18 07:08:00,0 +4850,1969-10-07 08:59:00,0 +105,1965-04-29 23:22:00,0 +80,1966-06-14 04:50:00,0 +3237,1968-03-16 00:35:00,0 +9154,1968-01-01 14:00:00,0 +8049,1967-08-17 21:01:00,0 +6597,1967-11-28 13:08:00,0 +47,1968-04-06 12:02:00,0 +3632,1965-04-03 09:46:00,0 +9558,1965-09-13 20:40:00,0 +466,1966-09-01 11:23:00,0 +8661,1969-10-05 15:32:00,0 +2189,1966-03-02 18:46:00,0 +5350,1968-01-05 10:32:00,0 +5176,1965-07-13 04:07:00,0 +9099,1965-06-23 21:14:00,0 +2942,1966-10-31 09:56:00,0 +4187,1965-01-20 03:59:00,0 +969,1969-03-14 09:19:00,0 +3934,1969-05-25 19:42:00,0 +6562,1969-05-14 16:03:00,0 +799,1968-11-28 21:59:00,0 +5078,1966-07-31 16:03:00,0 +3684,1965-08-05 09:22:00,0 +302,1969-02-24 14:33:00,0 +9349,1969-07-08 19:33:00,0 +5772,1968-04-29 09:46:00,0 +9985,1965-01-27 11:17:00,0 +1243,1969-07-09 11:07:00,0 +9065,1965-11-17 08:35:00,0 +3063,1966-05-30 19:09:00,0 +4986,1969-07-17 07:07:00,0 +7530,1967-10-03 23:33:00,0 +8832,1965-04-19 23:26:00,0 +1065,1966-03-28 01:13:00,0 +2280,1969-11-16 09:14:00,0 +4600,1966-10-15 01:29:00,0 +9367,1966-03-28 00:12:00,0 +687,1966-07-11 12:46:00,0 +2120,1966-05-07 05:06:00,0 +324,1966-09-04 15:36:00,0 +8903,1968-07-14 03:17:00,0 +2718,1965-05-13 11:13:00,0 +1460,1969-08-20 22:08:00,0 +4124,1968-03-13 02:43:00,0 +6396,1969-05-22 21:04:00,0 +2100,1969-07-03 13:12:00,0 +3665,1967-12-21 00:55:00,0 +7518,1965-07-14 21:16:00,0 +6101,1967-01-04 21:20:00,0 +8325,1968-11-29 11:43:00,0 +1631,1967-12-19 22:50:00,0 +1107,1965-08-26 20:51:00,0 +9354,1966-08-27 03:52:00,0 +667,1969-08-23 09:00:00,0 +7533,1968-08-08 04:23:00,0 +1828,1965-10-25 17:40:00,0 +5842,1965-11-22 04:58:00,0 +4480,1965-06-19 14:58:00,0 +6626,1965-05-15 00:27:00,0 +9210,1966-05-15 03:26:00,0 +3416,1968-05-31 03:57:00,0 +4026,1968-09-16 11:14:00,0 +1388,1969-06-27 19:11:00,0 +559,1966-03-03 14:03:00,0 +3699,1967-02-19 04:56:00,0 +4618,1967-12-20 17:26:00,0 +6239,1965-03-14 23:55:00,0 +1093,1967-09-01 06:13:00,0 +5103,1969-05-07 17:39:00,0 +688,1969-12-11 09:15:00,0 +66,1967-03-04 06:01:00,0 +2077,1967-10-13 08:50:00,0 +7389,1966-05-02 08:35:00,0 +6438,1969-11-01 17:20:00,0 +62,1969-02-13 13:32:00,0 +7708,1967-12-12 17:49:00,0 +1659,1969-05-12 21:36:00,0 +4454,1965-05-04 07:24:00,0 +8914,1967-11-06 06:00:00,0 +5435,1966-03-04 03:15:00,0 +680,1966-06-11 16:58:00,0 +8955,1968-08-16 01:15:00,0 +1403,1966-08-28 20:57:00,0 +1529,1968-08-06 14:24:00,0 +5483,1965-10-14 23:29:00,0 +6885,1966-08-21 21:14:00,0 +3460,1969-06-02 14:43:00,0 +3458,1968-09-22 00:53:00,0 +9652,1965-08-24 15:47:00,0 +8742,1967-11-22 20:09:00,0 +46,1965-07-14 18:47:00,0 +7987,1966-01-18 00:19:00,0 +2127,1966-05-10 20:32:00,0 +9329,1969-02-07 10:30:00,0 +5011,1967-12-15 02:24:00,0 +6453,1965-12-14 07:25:00,0 +2064,1965-11-26 07:53:00,0 +8617,1966-07-29 20:14:00,0 +8162,1969-07-05 18:04:00,0 +6791,1969-06-09 07:24:00,0 +6299,1965-03-21 02:54:00,0 +2233,1968-05-18 12:22:00,0 +8865,1969-09-10 03:57:00,0 +9349,1969-11-19 10:54:00,0 +8296,1967-12-08 14:41:00,0 +6137,1966-09-23 19:06:00,0 +6707,1967-11-09 19:19:00,0 +7175,1968-08-28 03:43:00,0 +4055,1967-08-04 13:47:00,0 +506,1969-11-25 15:53:00,0 +1734,1967-05-24 00:48:00,0 +9815,1967-12-21 17:54:00,0 +7421,1966-02-07 19:00:00,0 +6686,1968-02-08 13:17:00,0 +9828,1968-01-10 08:16:00,0 +1077,1969-03-25 02:33:00,0 +652,1969-09-20 20:50:00,0 +1099,1966-07-25 07:27:00,0 +842,1965-06-24 23:43:00,0 +437,1965-04-23 12:08:00,0 +6698,1967-01-03 03:31:00,0 +2621,1969-12-02 21:40:00,0 +376,1965-09-27 22:57:00,0 +8675,1966-09-29 07:12:00,0 +1489,1969-11-15 11:46:00,0 +2753,1967-07-18 13:52:00,0 +9147,1967-01-02 19:57:00,0 +4993,1966-08-11 14:34:00,0 +8596,1967-10-22 09:07:00,0 +5413,1965-05-22 00:43:00,0 +5870,1969-01-11 11:48:00,0 +912,1966-03-12 10:50:00,0 +5252,1967-08-02 15:48:00,0 +8274,1966-07-16 05:26:00,0 +1739,1969-03-15 21:02:00,0 +270,1968-08-20 04:25:00,0 +1469,1965-08-29 07:02:00,0 +5555,1969-05-12 16:51:00,0 +7669,1968-11-27 15:31:00,0 +1987,1967-11-28 19:45:00,0 +1643,1968-01-25 11:01:00,0 +7976,1965-10-19 07:19:00,0 +421,1968-08-05 23:48:00,0 +5055,1966-09-16 01:16:00,0 +1484,1967-06-29 22:29:00,0 +7398,1969-01-29 21:41:00,0 +2665,1967-01-13 07:13:00,0 +7039,1968-05-17 04:17:00,0 +1116,1965-07-18 13:20:00,0 +1247,1968-10-29 16:19:00,0 +2003,1965-03-17 16:36:00,0 +5714,1966-07-17 01:55:00,0 +793,1969-06-05 11:00:00,0 +7169,1966-05-02 16:02:00,0 +2180,1969-07-31 01:06:00,0 +3301,1968-07-14 05:25:00,0 +8691,1968-03-22 11:17:00,0 +2966,1967-11-17 05:36:00,0 +3762,1968-11-24 20:51:00,0 +7574,1967-07-21 08:20:00,0 +9140,1966-04-23 18:06:00,0 +6052,1968-12-23 18:25:00,0 +4701,1968-01-07 10:48:00,0 +1307,1966-04-13 23:44:00,0 +2273,1969-07-08 13:48:00,0 +9524,1967-02-28 11:40:00,0 +3759,1968-07-05 06:29:00,0 +1457,1969-11-06 13:48:00,0 +5458,1968-10-01 13:36:00,0 +5409,1966-03-03 14:40:00,0 +9351,1969-03-28 20:31:00,0 +2094,1965-04-23 15:59:00,0 +3739,1965-11-27 05:27:00,0 +5320,1967-03-12 11:49:00,0 +8490,1967-08-09 02:17:00,0 +63,1968-02-13 20:26:00,0 +9006,1968-03-19 15:58:00,0 +8834,1969-12-17 03:23:00,0 +8526,1967-08-24 20:56:00,0 +156,1969-03-04 12:22:00,0 +4033,1968-10-09 00:40:00,0 +9022,1969-07-05 06:18:00,0 +6966,1966-12-26 17:34:00,0 +7211,1966-10-29 16:15:00,0 +2250,1966-06-18 03:14:00,0 +6024,1968-11-06 03:01:00,0 +2768,1967-04-14 03:14:00,0 +2867,1969-05-01 01:55:00,0 +6136,1967-11-27 14:17:00,0 +5023,1968-05-08 08:45:00,0 +4317,1966-12-08 00:11:00,0 +1118,1969-04-19 11:17:00,0 +3017,1968-03-15 02:59:00,0 +1188,1969-08-19 13:18:00,0 +1317,1965-11-12 23:56:00,0 +2833,1965-11-03 09:47:00,0 +4407,1969-10-24 20:10:00,0 +7908,1965-05-10 19:40:00,0 +8810,1965-03-17 13:57:00,0 +645,1967-09-15 15:47:00,0 +9498,1968-08-08 17:50:00,0 +8270,1969-08-01 23:47:00,0 +5163,1966-02-24 04:20:00,0 +9936,1966-11-25 03:33:00,0 +2659,1966-06-16 14:00:00,0 +6665,1969-05-29 00:37:00,0 +4656,1966-08-25 17:46:00,0 +5751,1965-05-10 23:09:00,0 +4689,1969-06-21 12:53:00,0 +416,1967-05-05 02:55:00,0 +2071,1965-02-15 00:30:00,0 +569,1966-06-01 00:05:00,0 +3950,1968-06-10 19:50:00,0 +842,1967-02-15 13:58:00,0 +1143,1965-08-12 18:14:00,0 +7261,1968-11-17 20:05:00,0 +8101,1968-10-07 10:26:00,0 +8328,1966-08-01 10:07:00,0 +2657,1966-03-24 05:21:00,0 +8599,1965-10-28 16:44:00,0 +5438,1968-09-16 09:28:00,0 +7350,1965-06-23 03:19:00,0 +2672,1969-03-19 00:28:00,0 +4280,1966-05-26 15:28:00,0 +35,1969-10-15 08:27:00,0 +6695,1968-03-29 00:46:00,0 +6465,1968-04-27 18:45:00,0 +7430,1966-03-29 06:45:00,0 +2300,1966-08-02 14:09:00,0 +7345,1966-06-16 02:58:00,0 +8666,1969-09-01 19:11:00,0 +8029,1965-07-13 17:15:00,0 +8268,1965-11-25 08:27:00,0 +4790,1968-10-15 15:23:00,0 +2823,1966-12-27 19:32:00,0 +7685,1968-03-29 10:54:00,0 +5307,1965-11-16 17:54:00,0 +9712,1967-02-27 11:23:00,0 +946,1969-06-16 10:27:00,0 +1342,1966-02-22 14:03:00,0 +2528,1967-04-13 20:36:00,0 +698,1969-04-15 01:22:00,0 +711,1965-08-15 05:59:00,0 +6630,1966-12-27 22:48:00,0 +8436,1969-06-19 18:58:00,0 +223,1969-09-07 14:22:00,0 +1374,1966-09-05 10:35:00,0 +9963,1969-12-29 05:28:00,0 +7577,1965-08-18 13:31:00,0 +618,1968-01-15 22:54:00,0 +1257,1967-07-21 22:28:00,0 +7512,1966-11-04 21:40:00,0 +2521,1968-12-22 13:31:00,0 +2650,1967-09-13 05:59:00,0 +4853,1967-08-22 22:39:00,0 +5838,1967-06-24 13:45:00,0 +7276,1969-11-15 09:06:00,0 +7987,1967-11-03 13:49:00,0 +658,1967-11-25 03:30:00,0 +6275,1966-01-02 19:12:00,0 +5687,1969-01-05 17:14:00,0 +6394,1966-10-08 09:28:00,0 +322,1968-07-08 12:35:00,0 +1301,1965-11-27 02:01:00,0 +3808,1968-07-27 13:41:00,0 +5593,1967-11-20 15:36:00,0 +7017,1969-05-07 05:34:00,0 +2748,1965-12-05 15:10:00,0 +9102,1966-10-17 06:16:00,0 +3897,1966-10-10 04:55:00,0 +9216,1966-02-22 18:25:00,0 +7669,1967-04-02 19:10:00,0 +4611,1969-04-29 01:51:00,0 +7249,1969-05-20 22:55:00,0 +8377,1969-05-25 08:24:00,0 +1110,1968-07-17 22:38:00,0 +4570,1967-04-02 04:35:00,0 +1399,1968-03-31 01:57:00,0 +7645,1969-07-28 03:30:00,0 +5880,1966-10-23 23:10:00,0 +1903,1968-02-17 03:19:00,0 +4693,1965-07-22 12:03:00,0 +3705,1966-01-25 22:56:00,0 +5098,1967-02-07 07:07:00,0 +8109,1966-02-20 19:45:00,0 +3066,1965-08-12 19:39:00,0 +2837,1967-02-23 21:14:00,0 +362,1968-11-18 00:41:00,0 +7289,1969-01-08 04:10:00,0 +920,1969-09-04 13:01:00,0 +1346,1968-03-19 20:39:00,0 +4831,1968-11-09 13:43:00,0 +9051,1966-02-05 07:01:00,0 +5906,1966-10-15 14:01:00,0 +796,1969-05-06 07:29:00,0 +1213,1969-11-30 17:12:00,0 +4294,1965-11-26 11:01:00,0 +501,1965-07-20 20:39:00,0 +9574,1965-12-19 06:06:00,0 +8578,1966-08-13 10:06:00,0 +6159,1965-03-09 18:17:00,0 +1735,1967-01-04 08:30:00,0 +5776,1969-06-27 17:36:00,0 +9104,1968-06-18 22:11:00,0 +3149,1967-06-18 22:49:00,0 +4359,1969-04-25 08:03:00,0 +455,1967-08-31 00:18:00,0 +51,1968-05-25 09:42:00,0 +7391,1965-12-05 20:15:00,0 +4106,1965-12-04 18:07:00,0 +1319,1967-06-26 00:40:00,0 +8686,1967-10-22 03:54:00,0 +2591,1967-02-18 17:38:00,0 +2125,1966-08-18 23:19:00,0 +4205,1969-01-03 12:10:00,0 +53,1968-08-08 13:43:00,0 +7890,1968-02-14 05:05:00,0 +3698,1966-07-02 03:16:00,0 +1772,1967-03-10 19:33:00,0 +9558,1967-05-05 22:02:00,0 +9438,1965-05-13 00:34:00,0 +855,1966-08-15 06:28:00,0 +1337,1965-06-03 15:34:00,0 +1668,1967-03-18 12:16:00,0 +5723,1967-01-28 01:27:00,0 +2096,1969-03-26 04:15:00,0 +5362,1966-02-14 09:56:00,0 +2408,1966-06-08 00:23:00,0 +8625,1967-09-11 22:20:00,0 +3019,1965-11-20 04:48:00,0 +4669,1968-12-11 20:15:00,0 +3287,1968-02-11 22:55:00,0 +1669,1967-09-15 23:51:00,0 +3330,1968-09-28 04:29:00,0 +9107,1967-01-15 08:33:00,0 +5157,1967-11-17 09:05:00,0 +3880,1968-04-23 10:52:00,0 +4471,1965-12-31 11:41:00,0 +9210,1965-07-24 17:37:00,0 +4715,1965-12-26 07:56:00,0 +7976,1968-06-28 20:48:00,0 +8574,1965-12-09 14:11:00,0 +4985,1969-02-22 03:45:00,0 +5590,1967-07-14 18:18:00,0 +6844,1969-04-11 13:14:00,0 +3195,1965-04-27 12:56:00,0 +9856,1967-01-10 03:23:00,0 +4742,1967-06-16 14:37:00,0 +2342,1968-08-14 15:17:00,0 +1277,1969-08-19 16:50:00,0 +823,1967-05-04 20:47:00,0 +9501,1968-07-17 15:15:00,0 +5885,1965-10-24 12:38:00,0 +3954,1965-06-07 10:02:00,0 +6395,1966-02-10 12:22:00,0 +8420,1967-02-10 06:09:00,0 +8552,1966-02-21 14:28:00,0 +2225,1969-11-13 23:46:00,0 +2263,1966-10-28 03:53:00,0 +6410,1967-05-11 13:42:00,0 +3136,1968-11-19 11:57:00,0 +7475,1967-11-03 13:51:00,0 +8593,1969-05-08 03:11:00,0 +1131,1966-06-20 06:48:00,0 +3958,1969-06-04 03:22:00,0 +8261,1969-10-28 21:21:00,0 +7918,1968-02-01 17:39:00,0 +6192,1965-09-05 01:46:00,0 +4743,1966-03-13 17:46:00,0 +1191,1965-02-01 14:39:00,0 +341,1965-06-05 11:15:00,0 +2745,1966-03-28 08:31:00,0 +2098,1966-01-13 12:18:00,0 +4757,1967-03-04 09:05:00,0 +4584,1968-06-28 00:30:00,0 +333,1965-04-11 08:33:00,0 +9874,1968-02-07 11:25:00,0 +7646,1965-10-06 07:28:00,0 +7277,1969-06-28 13:39:00,0 +96,1966-06-14 01:19:00,0 +8472,1966-11-10 12:38:00,0 +7823,1968-08-29 09:59:00,0 +6088,1969-09-23 00:29:00,0 +9565,1969-12-24 15:54:00,0 +3243,1967-04-24 14:19:00,0 +5655,1967-11-08 17:56:00,0 +7626,1968-11-28 16:40:00,0 +9884,1969-12-26 13:59:00,0 +737,1967-08-09 10:23:00,0 +7906,1967-04-11 20:21:00,0 +5816,1965-11-22 04:57:00,0 +1649,1968-10-22 08:51:00,0 +6226,1965-05-24 13:38:00,0 +3807,1967-08-25 17:04:00,0 +6827,1965-11-07 17:37:00,0 +718,1968-06-10 08:51:00,0 +1836,1969-06-11 00:40:00,0 +6677,1966-06-02 03:10:00,0 +7232,1969-04-13 19:21:00,0 +9298,1965-05-29 06:39:00,0 +1659,1966-12-17 16:19:00,0 +1693,1965-03-29 20:46:00,0 +6094,1965-03-19 09:33:00,0 +8442,1965-12-06 23:33:00,0 +1070,1969-04-20 03:49:00,0 +5274,1969-08-28 07:43:00,0 +2720,1968-12-26 16:37:00,0 +191,1969-03-30 13:26:00,0 +9994,1969-03-03 02:05:00,0 +9346,1968-03-06 07:46:00,0 +5067,1969-09-15 04:21:00,0 +3016,1966-10-02 20:39:00,0 +3168,1969-11-01 12:39:00,0 +1980,1967-03-01 13:34:00,0 +4739,1967-10-14 23:08:00,0 +5367,1965-12-08 11:11:00,0 +7642,1968-12-07 10:59:00,0 +681,1968-07-27 19:46:00,0 +750,1965-09-14 23:04:00,0 +9638,1965-03-13 02:42:00,0 +6874,1967-01-09 19:00:00,0 +1894,1966-06-14 10:17:00,0 +7140,1968-02-29 06:28:00,0 +5317,1968-09-23 12:05:00,0 +3214,1967-11-27 11:24:00,0 +5899,1969-05-02 00:12:00,0 +1639,1967-08-02 16:36:00,0 +9559,1969-06-12 20:10:00,0 +6129,1968-07-24 09:53:00,0 +3116,1966-03-26 21:23:00,0 +3059,1965-11-13 06:21:00,0 +5321,1968-10-24 06:55:00,0 +4117,1966-05-11 04:27:00,0 +9307,1967-12-06 11:24:00,0 +4994,1967-07-30 22:46:00,0 +4094,1969-05-31 15:53:00,0 +6098,1969-02-13 18:05:00,0 +4812,1968-09-10 21:00:00,0 +288,1968-07-01 06:22:00,0 +7318,1968-12-03 08:56:00,0 +4094,1966-08-12 20:36:00,0 +8677,1967-08-31 17:46:00,0 +1325,1966-01-17 06:27:00,0 +7685,1967-10-21 05:33:00,0 +168,1968-08-23 13:33:00,0 +9214,1965-11-23 09:45:00,0 +5716,1968-01-23 04:11:00,0 +2849,1967-01-12 04:27:00,0 +5101,1967-02-07 07:02:00,0 +7134,1969-10-14 12:42:00,0 +2683,1969-12-26 12:08:00,0 +6040,1967-09-28 22:53:00,0 +531,1965-11-11 18:54:00,0 +5608,1965-12-25 14:16:00,0 +9190,1966-02-06 15:40:00,0 +1841,1968-08-01 21:37:00,0 +9484,1967-04-01 19:23:00,0 +268,1965-06-04 03:26:00,0 +5134,1966-07-01 02:44:00,0 +9015,1965-01-11 20:26:00,0 +9953,1969-04-22 17:54:00,0 +3060,1968-03-27 19:36:00,0 +6089,1965-04-01 00:57:00,0 +7700,1966-07-29 08:12:00,0 +2033,1969-01-04 00:43:00,0 +4041,1968-06-30 20:05:00,0 +6676,1967-04-12 14:23:00,0 +941,1968-02-29 02:38:00,0 +652,1966-10-02 04:10:00,0 +1578,1966-10-29 19:18:00,0 +6667,1969-11-25 22:45:00,0 +129,1966-12-10 03:40:00,0 +4234,1968-02-08 08:29:00,0 +6578,1968-07-04 08:51:00,0 +4274,1965-07-14 18:46:00,0 +4377,1967-05-04 17:11:00,0 +5888,1969-10-11 00:32:00,0 +6426,1966-05-19 03:29:00,0 +4560,1968-12-05 14:44:00,0 +54,1966-03-31 15:33:00,0 +4299,1965-08-15 03:44:00,0 +8120,1967-06-09 12:22:00,0 +6253,1965-02-01 12:32:00,0 +4178,1968-02-23 17:56:00,0 +3590,1968-04-01 03:49:00,0 +3650,1965-11-19 08:57:00,0 +2711,1969-05-14 19:22:00,0 +9278,1967-11-08 14:44:00,0 +309,1967-05-18 13:51:00,0 +4080,1969-09-12 19:52:00,0 +2094,1967-03-14 18:27:00,0 +3707,1966-06-10 10:00:00,0 +3841,1965-01-30 18:26:00,0 +6492,1968-05-24 18:46:00,0 +752,1965-08-18 17:41:00,0 +3368,1967-11-30 18:25:00,0 +5864,1968-01-12 00:11:00,0 +8692,1965-10-01 08:06:00,0 +9878,1967-05-13 03:37:00,0 +7563,1969-07-31 02:57:00,0 +951,1967-12-18 10:19:00,0 +7530,1966-04-03 20:27:00,0 +8022,1967-10-26 00:43:00,0 +7450,1967-06-20 16:54:00,0 +1622,1965-07-13 15:53:00,0 +2917,1968-02-24 08:47:00,0 +1898,1969-05-17 04:13:00,0 +8726,1969-01-12 17:07:00,0 +6583,1968-08-15 05:21:00,0 +7542,1968-12-21 12:35:00,0 +755,1969-03-11 05:56:00,0 +1174,1966-04-22 10:58:00,0 +800,1967-08-10 13:49:00,0 +6847,1969-12-01 22:45:00,0 +6856,1965-09-08 00:17:00,0 +7697,1967-04-09 01:15:00,0 +2471,1968-12-17 21:21:00,0 +9348,1966-12-19 16:55:00,0 +7087,1967-11-27 13:19:00,0 +5948,1965-05-21 13:45:00,0 +5310,1969-06-22 04:07:00,0 +280,1968-07-16 18:57:00,0 +6007,1966-03-19 17:06:00,0 +5887,1969-10-26 17:26:00,0 +2045,1965-01-02 06:20:00,0 +3207,1967-05-30 16:23:00,0 +7985,1965-04-22 17:04:00,0 +4639,1968-07-12 01:09:00,0 +6791,1966-12-13 13:48:00,0 +7582,1967-11-27 16:17:00,0 +4247,1967-02-28 18:02:00,0 +6927,1969-11-17 16:09:00,0 +7756,1967-05-27 07:40:00,0 +4309,1965-02-14 09:23:00,0 +4880,1965-02-17 04:10:00,0 +5518,1968-01-18 02:22:00,0 +2187,1965-08-31 11:51:00,0 +3467,1965-09-30 15:31:00,0 +3019,1965-03-11 12:50:00,0 +9885,1969-04-15 16:52:00,0 +165,1965-10-02 15:23:00,0 +6807,1969-02-26 08:58:00,0 +1601,1965-02-19 01:21:00,0 +5686,1968-10-29 10:24:00,0 +9775,1965-02-26 23:11:00,0 +4883,1969-08-18 20:55:00,0 +2887,1965-08-18 01:17:00,0 +6644,1966-06-08 15:19:00,0 +6698,1966-01-18 17:13:00,0 +1056,1969-12-05 12:05:00,0 +6743,1969-02-08 20:51:00,0 +1354,1966-10-30 17:25:00,0 +6388,1967-12-23 00:03:00,0 +8735,1967-02-06 19:50:00,0 +3141,1966-03-03 06:08:00,0 +8823,1969-06-20 10:48:00,0 +3216,1966-07-27 11:36:00,0 +2729,1969-03-14 22:14:00,0 +8937,1965-08-31 01:50:00,0 +3963,1968-06-05 11:18:00,0 +9258,1966-06-16 00:54:00,0 +8039,1967-08-04 20:58:00,0 +1931,1967-01-28 13:57:00,0 +4134,1966-08-14 22:03:00,0 +4120,1968-06-27 05:05:00,0 +8796,1965-04-29 14:52:00,0 +2543,1967-01-25 12:01:00,0 +4074,1968-08-19 12:47:00,0 +8539,1965-09-30 04:19:00,0 +6895,1968-09-12 06:20:00,0 +2791,1966-09-27 22:22:00,0 +5364,1969-09-08 05:36:00,0 +5057,1969-05-10 06:40:00,0 +7216,1967-06-12 05:11:00,0 +7267,1969-05-10 19:48:00,0 +344,1967-01-26 06:00:00,0 +6153,1969-06-05 18:06:00,0 +2060,1968-06-25 17:52:00,0 +9417,1965-06-16 00:06:00,0 +1631,1969-08-31 16:34:00,0 +1912,1968-02-14 07:57:00,0 +2453,1967-02-26 07:06:00,0 +2446,1969-07-22 00:11:00,0 +3578,1969-05-23 17:38:00,0 +6462,1968-05-30 06:06:00,0 +2101,1967-09-01 02:19:00,0 +2103,1968-12-25 06:35:00,0 +5557,1968-10-01 10:19:00,0 +2986,1967-08-04 04:46:00,0 +8856,1968-12-16 11:29:00,0 +659,1967-03-17 14:41:00,0 +8373,1967-12-23 05:30:00,0 +7450,1965-01-29 03:30:00,0 +5725,1967-02-20 11:23:00,0 +1761,1965-11-16 04:59:00,0 +4629,1969-12-22 15:40:00,0 +7958,1967-08-29 22:50:00,0 +9290,1969-10-27 15:01:00,0 +7066,1967-10-15 15:05:00,0 +9487,1969-05-26 19:44:00,0 +5518,1969-05-21 16:12:00,0 +5646,1965-08-16 01:19:00,0 +3969,1968-08-12 03:40:00,0 +1248,1965-07-09 07:36:00,0 +8537,1969-03-11 04:16:00,0 +5109,1969-06-10 20:47:00,0 +8319,1968-09-25 03:10:00,0 +9838,1965-04-23 10:48:00,0 +6467,1966-10-23 03:32:00,0 +1860,1966-09-12 09:57:00,0 +8667,1967-05-20 02:41:00,0 +9019,1966-11-14 19:16:00,0 +9486,1968-05-08 00:20:00,0 +195,1966-06-06 12:04:00,0 +5008,1967-09-26 21:20:00,0 +6950,1967-10-13 00:44:00,0 +6937,1966-04-17 23:02:00,0 +813,1967-01-13 01:30:00,0 +1373,1969-09-22 20:48:00,0 +8562,1968-02-15 13:55:00,0 +3180,1965-09-09 03:28:00,0 +3233,1967-04-24 06:38:00,0 +2121,1967-06-12 20:08:00,0 +4483,1967-10-10 00:15:00,0 +8481,1968-02-12 07:48:00,0 +1534,1969-05-06 13:45:00,0 +20,1966-08-02 15:47:00,0 +2219,1968-03-17 06:10:00,0 +7224,1969-06-26 17:40:00,0 +7440,1965-05-26 03:28:00,0 +1286,1965-08-17 06:29:00,0 +7247,1969-01-05 08:23:00,0 +1643,1967-12-22 06:51:00,0 +9594,1969-03-18 14:00:00,0 +5421,1965-06-04 00:18:00,0 +2919,1969-06-12 16:48:00,0 +9771,1965-07-17 05:53:00,0 +7557,1965-11-13 06:54:00,0 +1724,1968-01-25 00:03:00,0 +770,1965-09-13 06:05:00,0 +7936,1969-08-27 07:26:00,0 +8553,1969-12-31 17:14:00,0 +9407,1966-01-06 12:19:00,0 +8503,1965-04-13 08:31:00,0 +1263,1966-09-26 11:52:00,0 +1245,1968-04-11 03:08:00,0 +2595,1969-08-16 11:02:00,0 +759,1969-06-16 09:10:00,0 +3553,1969-10-09 05:19:00,0 +3792,1967-01-17 15:05:00,0 +7819,1969-10-31 07:09:00,0 +515,1966-08-22 11:22:00,0 +6809,1965-04-16 15:02:00,0 +5418,1969-01-29 08:10:00,0 +9496,1967-11-12 13:20:00,0 +3751,1969-05-31 13:29:00,0 +1049,1967-03-11 23:10:00,0 +9348,1965-07-04 19:54:00,0 +9834,1968-06-10 16:09:00,0 +6970,1965-04-16 20:46:00,0 +541,1967-01-27 10:14:00,0 +1930,1965-08-11 22:05:00,0 +4860,1968-11-30 10:40:00,0 +1144,1966-02-20 10:34:00,0 +538,1966-10-20 15:13:00,0 +3085,1969-09-17 19:37:00,0 +7338,1969-04-24 06:16:00,0 +3958,1969-09-21 16:00:00,0 +2016,1966-02-17 06:35:00,0 +3380,1965-12-16 04:13:00,0 +6654,1965-10-27 18:06:00,0 +6354,1966-04-07 20:36:00,0 +6793,1967-01-30 08:21:00,0 +5983,1965-08-02 15:55:00,0 +2771,1968-11-02 03:49:00,0 +7727,1965-07-11 14:27:00,0 +8155,1966-10-24 03:18:00,0 +7338,1966-08-26 07:05:00,0 +379,1968-10-23 07:52:00,0 +7590,1969-02-06 05:38:00,0 +1199,1968-11-11 02:41:00,0 +2683,1966-10-08 00:06:00,0 +965,1965-05-12 18:05:00,0 +6179,1969-09-13 16:39:00,0 +6724,1965-12-31 14:22:00,0 +4158,1965-08-27 14:19:00,0 +9162,1966-08-27 07:41:00,0 +8775,1965-02-10 16:42:00,0 +3638,1967-03-17 19:43:00,0 +8402,1967-10-09 05:44:00,0 +6072,1967-07-15 11:08:00,0 +7649,1967-01-02 01:38:00,0 +6123,1966-04-01 01:57:00,0 +4773,1968-06-29 19:39:00,0 +2976,1965-03-04 04:00:00,0 +2871,1969-11-08 21:43:00,0 +2785,1967-10-12 18:40:00,0 +2698,1967-12-11 08:12:00,0 +732,1966-07-16 14:54:00,0 +5938,1966-09-05 11:33:00,0 +7858,1965-02-03 17:04:00,0 +3143,1966-06-02 03:09:00,0 +750,1967-06-21 00:06:00,0 +4831,1968-12-25 04:19:00,0 +1597,1969-05-12 11:00:00,0 +8742,1965-10-27 07:22:00,0 +6207,1969-01-06 13:19:00,0 +4039,1966-11-05 23:27:00,0 +4070,1968-11-29 02:34:00,0 +5251,1968-03-02 17:40:00,0 +6332,1967-08-18 00:40:00,0 +3336,1966-11-10 00:31:00,0 +5575,1967-03-11 01:30:00,0 +7427,1969-08-03 21:19:00,0 +9956,1966-07-19 21:32:00,0 +2008,1967-03-07 00:31:00,0 +7393,1965-04-24 20:40:00,0 +4136,1965-08-28 18:39:00,0 +1503,1968-09-12 16:03:00,0 +3627,1969-08-16 23:26:00,0 +4584,1967-05-30 00:50:00,0 +3211,1966-10-24 01:12:00,0 +8322,1967-01-18 17:17:00,0 +8013,1966-01-25 01:57:00,0 +4653,1967-12-09 10:50:00,0 +422,1966-01-04 12:42:00,0 +2411,1969-01-05 23:09:00,0 +2552,1969-06-04 22:49:00,0 +4110,1968-01-08 12:04:00,0 +5022,1967-09-13 19:11:00,0 +4847,1967-01-27 01:13:00,0 +2667,1966-12-03 07:34:00,0 +8394,1967-11-25 05:07:00,0 +3156,1966-10-19 14:25:00,0 +3896,1965-09-06 02:12:00,0 +5081,1966-11-15 14:49:00,0 +267,1965-11-13 07:22:00,0 +6859,1967-06-14 17:25:00,0 +8580,1969-07-03 22:21:00,0 +420,1969-06-19 21:09:00,0 +8397,1966-04-18 06:43:00,0 +3448,1969-01-18 22:16:00,0 +8721,1967-07-03 16:37:00,0 +4640,1965-04-26 20:25:00,0 +9199,1967-04-29 02:40:00,0 +4734,1966-09-08 18:25:00,0 +7766,1968-07-24 03:44:00,0 +4492,1969-02-26 01:31:00,0 +9462,1967-05-14 18:20:00,0 +6374,1967-01-13 04:00:00,0 +6634,1969-09-29 10:15:00,0 +9107,1967-08-22 10:59:00,0 +6831,1966-07-07 21:25:00,0 +5533,1969-05-08 01:51:00,0 +5330,1968-08-25 08:37:00,0 +9275,1965-02-13 22:53:00,0 +785,1965-09-22 23:16:00,0 +5733,1969-07-07 08:25:00,0 +3996,1967-06-08 05:32:00,0 +9226,1968-06-26 17:17:00,0 +4660,1965-04-09 10:17:00,0 +8356,1967-01-12 09:04:00,0 +6719,1965-03-09 10:53:00,0 +3829,1965-08-23 13:52:00,0 +9842,1965-04-26 07:37:00,0 +28,1968-10-22 04:16:00,0 +9852,1966-12-18 00:38:00,0 +2891,1966-08-02 01:50:00,0 +4214,1966-04-29 13:02:00,0 +324,1965-03-27 10:41:00,0 +9711,1965-11-27 01:37:00,0 +7802,1967-05-26 11:41:00,0 +6719,1969-05-13 16:53:00,0 +3448,1969-08-21 19:17:00,0 +4356,1965-07-29 10:12:00,0 +6787,1967-02-03 05:01:00,0 +2515,1968-02-28 16:21:00,0 +6815,1968-06-01 22:15:00,0 +3204,1966-12-11 16:15:00,0 +8862,1968-11-26 14:23:00,0 +6338,1965-04-01 06:49:00,0 +2165,1967-08-13 10:01:00,0 +8763,1966-07-16 21:46:00,0 +6446,1968-01-10 23:03:00,0 +5956,1968-11-29 03:04:00,0 +9953,1968-10-09 11:45:00,0 +5962,1965-05-27 05:03:00,0 +775,1966-06-28 20:03:00,0 +7918,1967-03-29 04:37:00,0 +1200,1966-05-31 23:06:00,0 +5790,1969-03-07 05:43:00,0 +1501,1969-03-03 04:41:00,0 +2233,1968-08-18 22:21:00,0 +9024,1965-10-08 08:31:00,0 +5941,1967-03-18 22:40:00,0 +2754,1966-12-25 07:15:00,0 +9480,1968-01-02 16:07:00,0 +5964,1966-04-04 16:37:00,0 +1759,1968-08-07 20:31:00,0 +6273,1965-05-03 09:13:00,0 +1555,1968-12-27 21:34:00,0 +8001,1967-05-06 09:54:00,0 +3529,1966-04-27 23:13:00,0 +9964,1967-09-23 11:33:00,0 +8253,1968-02-25 07:27:00,0 +6632,1966-01-28 20:11:00,0 +4098,1969-06-05 14:23:00,0 +8094,1967-10-31 15:32:00,0 +2525,1967-11-22 03:25:00,0 +7870,1966-09-24 17:39:00,0 +8,1969-04-09 18:58:00,0 +7936,1968-04-12 15:25:00,0 +6874,1965-12-04 06:44:00,0 +2091,1969-02-15 00:06:00,0 +3621,1966-11-02 02:27:00,0 +763,1967-07-22 07:24:00,0 +5738,1967-04-14 22:06:00,0 +6974,1969-09-14 16:59:00,0 +5821,1967-05-15 13:27:00,0 +9519,1968-02-28 01:18:00,0 +224,1968-07-09 12:19:00,0 +629,1967-07-08 15:19:00,0 +9194,1965-11-23 16:57:00,0 +7948,1967-02-18 13:38:00,0 +7403,1966-03-02 19:27:00,0 +4611,1966-11-08 16:29:00,0 +6372,1968-12-05 06:14:00,0 +3141,1965-10-16 19:19:00,0 +1182,1969-08-03 14:22:00,0 +6628,1969-03-26 07:41:00,0 +7861,1965-09-07 09:19:00,0 +5041,1965-02-17 05:52:00,0 +4383,1968-02-19 17:49:00,0 +4600,1969-11-26 21:19:00,0 +6253,1966-11-15 22:38:00,0 +1089,1968-05-14 23:48:00,0 +9862,1968-01-09 00:28:00,0 +6356,1965-11-09 08:32:00,0 +6713,1969-08-09 18:33:00,0 +2000,1966-01-06 14:40:00,0 +5574,1968-08-28 08:16:00,0 +3034,1967-07-23 18:41:00,0 +4626,1967-12-29 02:00:00,0 +4880,1968-07-04 17:17:00,0 +305,1969-03-27 13:02:00,0 +1517,1967-11-24 13:00:00,0 +6391,1967-02-12 14:17:00,0 +7506,1967-04-04 12:50:00,0 +2563,1969-02-24 19:57:00,0 +6347,1967-12-31 15:09:00,0 +9523,1966-11-28 01:30:00,0 +2080,1968-04-13 22:27:00,0 +7401,1969-03-18 04:45:00,0 +8743,1969-08-20 10:42:00,0 +7971,1966-08-13 11:08:00,0 +9737,1966-10-16 03:07:00,0 +9058,1969-02-05 05:14:00,0 +4789,1966-03-23 05:14:00,0 +2268,1967-08-23 11:39:00,0 +997,1965-12-12 15:39:00,0 +1234,1966-10-21 21:55:00,0 +284,1968-09-25 07:36:00,0 +5848,1966-05-14 11:33:00,0 +439,1966-07-23 13:19:00,0 +5012,1969-01-18 02:11:00,0 +773,1965-03-07 00:42:00,0 +1285,1967-11-28 09:59:00,0 +2890,1967-01-03 07:52:00,0 +9682,1965-09-12 13:20:00,0 +7002,1966-06-05 01:14:00,0 +6408,1967-08-02 13:00:00,0 +1852,1965-01-13 07:03:00,0 +9965,1966-11-13 13:10:00,0 +7815,1967-06-18 21:30:00,0 +1980,1967-03-16 04:15:00,0 +2159,1965-05-25 05:52:00,0 +1581,1965-09-02 07:21:00,0 +2232,1967-09-10 05:30:00,0 +4564,1968-02-21 00:03:00,0 +2830,1967-03-24 03:09:00,0 +8947,1966-05-13 13:26:00,0 +1442,1966-11-11 20:04:00,0 +1999,1967-01-31 08:52:00,0 +4509,1969-07-16 02:27:00,0 +5760,1966-04-28 01:42:00,0 +6624,1965-01-02 14:18:00,0 +5484,1969-11-29 05:16:00,0 +3613,1969-11-04 20:36:00,0 +1992,1969-02-09 09:29:00,0 +8828,1965-04-29 20:19:00,0 +1229,1966-05-13 17:28:00,0 +3066,1968-03-03 22:59:00,0 +3396,1965-07-02 21:50:00,0 +1815,1969-06-03 17:31:00,0 +1985,1967-02-20 03:45:00,0 +7808,1968-03-09 00:54:00,0 +704,1967-09-06 06:57:00,0 +7238,1966-09-23 23:29:00,0 +1994,1968-02-21 20:17:00,0 +8252,1967-01-29 00:08:00,0 +2670,1968-07-07 00:03:00,0 +7520,1969-05-17 10:13:00,0 +3651,1969-04-18 06:13:00,0 +2785,1965-12-18 03:45:00,0 +6069,1968-06-22 23:21:00,0 +3857,1969-08-04 12:05:00,0 +8647,1965-03-12 20:45:00,0 +401,1969-10-17 04:47:00,0 +7928,1965-11-10 14:45:00,0 +958,1969-07-25 03:02:00,0 +51,1967-03-31 22:45:00,0 +6520,1965-12-07 03:29:00,0 +6182,1967-03-20 11:52:00,0 +151,1965-12-28 01:45:00,0 +1279,1968-08-15 17:43:00,0 +5342,1966-03-07 13:33:00,0 +3189,1966-09-28 10:08:00,0 +5223,1968-03-21 16:22:00,0 +9595,1965-01-17 14:42:00,0 +5260,1965-11-15 11:29:00,0 +6156,1968-05-22 04:42:00,0 +3930,1966-11-27 22:22:00,0 +2228,1969-08-18 20:46:00,0 +2544,1966-03-06 06:11:00,0 +3187,1968-03-10 17:58:00,0 +8781,1967-09-04 10:59:00,0 +3552,1969-08-27 15:06:00,0 +62,1966-01-07 18:23:00,0 +4025,1969-03-01 04:14:00,0 +2294,1967-03-17 16:55:00,0 +8574,1965-10-04 08:21:00,0 +3469,1965-03-05 19:18:00,0 +9848,1969-05-22 02:42:00,0 +1938,1967-02-19 05:28:00,0 +8819,1966-10-23 13:56:00,0 +4313,1966-03-03 16:43:00,0 +2414,1969-07-10 23:55:00,0 +7252,1969-11-22 13:33:00,0 +4098,1965-12-09 13:16:00,0 +428,1965-05-18 16:52:00,0 +3075,1968-06-10 00:33:00,0 +7682,1965-02-26 05:43:00,0 +4653,1965-02-21 07:56:00,0 +5993,1966-08-29 14:23:00,0 +292,1967-07-03 00:55:00,0 +1071,1968-01-01 00:20:00,0 +7678,1965-10-08 21:00:00,0 +380,1969-08-06 19:28:00,0 +8133,1969-11-14 16:16:00,0 +9776,1968-10-14 16:52:00,0 +9148,1965-02-05 15:34:00,0 +7768,1969-04-12 17:52:00,0 +9629,1969-03-23 17:30:00,0 +799,1966-01-01 15:33:00,0 +4093,1965-12-02 15:40:00,0 +5893,1967-07-31 15:33:00,0 +150,1966-04-29 09:12:00,0 +9889,1965-05-18 16:58:00,0 +302,1965-03-26 02:38:00,0 +7888,1965-08-26 22:01:00,0 +7020,1967-01-05 02:40:00,0 +9611,1967-12-03 19:39:00,0 +7583,1969-01-19 00:21:00,0 +5899,1965-02-06 05:59:00,0 +8001,1966-04-28 01:39:00,0 +3149,1965-06-01 04:13:00,0 +7113,1969-01-23 12:23:00,0 +9270,1966-11-22 10:32:00,0 +1530,1965-03-31 21:06:00,0 +7743,1965-04-08 16:07:00,0 +4788,1966-01-15 20:44:00,0 +7415,1965-02-21 00:37:00,0 +2063,1967-04-17 10:02:00,0 +3531,1967-07-23 03:00:00,0 +8631,1965-04-11 06:30:00,0 +9732,1966-10-10 20:45:00,0 +4948,1968-10-12 05:05:00,0 +7006,1968-12-25 01:26:00,0 +9729,1969-10-07 09:41:00,0 +5971,1967-05-03 21:57:00,0 +5993,1966-06-23 06:07:00,0 +5131,1969-12-02 15:09:00,0 +5078,1966-01-24 14:22:00,0 +7154,1965-08-21 23:07:00,0 +5831,1969-05-28 12:35:00,0 +3320,1966-12-11 17:00:00,0 +2351,1967-06-17 01:23:00,0 +6852,1966-07-26 16:05:00,0 +7697,1967-02-26 21:22:00,0 +5345,1967-05-17 17:53:00,0 +6213,1965-08-15 16:09:00,0 +8941,1969-12-09 00:51:00,0 +2882,1965-03-19 20:25:00,0 +1199,1965-08-21 23:45:00,0 +4692,1965-06-23 17:48:00,0 +9104,1969-05-07 22:13:00,0 +2447,1969-02-10 09:31:00,0 +4187,1968-02-10 20:09:00,0 +6099,1966-01-27 04:34:00,0 +2651,1966-09-19 13:22:00,0 +9773,1965-11-29 15:11:00,0 +9821,1965-12-22 11:48:00,0 +881,1967-05-10 06:43:00,0 +4586,1967-09-09 06:40:00,0 +4232,1967-07-22 15:27:00,0 +8602,1968-10-22 19:44:00,0 +4398,1966-02-05 21:14:00,0 +1981,1966-04-27 13:51:00,0 +2822,1965-03-16 02:39:00,0 +1642,1966-03-01 12:14:00,0 +9121,1966-08-20 23:52:00,0 +650,1966-09-29 21:56:00,0 +1921,1965-05-01 18:06:00,0 +1226,1967-08-19 23:40:00,0 +1726,1965-10-28 16:59:00,0 +6716,1965-03-19 21:03:00,0 +7786,1968-08-26 03:09:00,0 +741,1969-12-12 09:28:00,0 +4800,1965-05-10 23:31:00,0 +907,1966-07-27 01:47:00,0 +3863,1968-03-19 21:30:00,0 +1778,1968-04-17 19:23:00,0 +6629,1969-04-02 13:44:00,0 +9608,1965-02-11 18:11:00,0 +2341,1968-01-14 21:49:00,0 +84,1965-12-25 19:16:00,0 +3810,1968-10-03 08:05:00,0 +3669,1967-02-13 07:09:00,0 +885,1967-10-29 03:13:00,0 +6930,1966-10-04 00:41:00,0 +5831,1969-09-04 02:13:00,0 +4964,1968-01-09 15:33:00,0 +4665,1967-08-02 23:17:00,0 +8082,1967-04-20 04:46:00,0 +2625,1969-11-05 00:50:00,0 +8986,1969-08-18 04:41:00,0 +1750,1967-07-06 20:11:00,0 +2244,1969-02-11 23:53:00,0 +6732,1965-05-18 10:20:00,0 +2484,1968-03-22 03:15:00,0 +3991,1968-02-03 17:27:00,0 +2545,1969-12-21 16:14:00,0 +8126,1969-12-22 16:39:00,0 +1145,1968-02-19 10:05:00,0 +1844,1965-09-24 00:28:00,0 +3600,1968-03-08 03:53:00,0 +6551,1968-04-22 11:39:00,0 +559,1965-10-13 08:43:00,0 +949,1966-11-06 21:49:00,0 +824,1966-02-08 16:15:00,0 +8199,1967-02-01 09:26:00,0 +4159,1969-02-21 23:54:00,0 +6844,1968-04-19 13:57:00,0 +5047,1965-03-15 20:01:00,0 +1058,1967-10-16 14:47:00,0 +3829,1968-11-26 15:25:00,0 +3964,1968-12-07 20:29:00,0 +5524,1965-11-09 06:14:00,0 +4218,1969-08-03 22:34:00,0 +4812,1969-11-11 03:29:00,0 +4991,1965-06-08 11:17:00,0 +6833,1965-09-02 07:41:00,0 +9,1966-08-06 16:13:00,0 +9231,1966-10-26 20:27:00,0 +4546,1965-04-29 08:33:00,0 +1715,1968-06-18 02:10:00,0 +6774,1969-01-09 16:58:00,0 +4555,1969-04-18 04:36:00,0 +5262,1966-07-26 04:53:00,0 +7074,1967-11-04 22:22:00,0 +981,1969-04-18 12:02:00,0 +4812,1969-07-10 14:13:00,0 +2796,1966-07-26 02:17:00,0 +1837,1968-01-15 23:07:00,0 +8814,1965-01-20 01:59:00,0 +1842,1969-08-07 18:28:00,0 +7870,1967-06-13 11:18:00,0 +9422,1969-05-04 05:27:00,0 +868,1967-12-17 04:04:00,0 +8985,1968-05-16 05:25:00,0 +1237,1965-01-07 04:04:00,0 +4761,1968-10-02 22:23:00,0 +3486,1965-11-13 02:09:00,0 +5509,1965-06-24 21:04:00,0 +2038,1965-10-02 07:55:00,0 +3536,1968-11-14 11:45:00,0 +5128,1967-03-28 22:35:00,0 +2725,1966-03-24 11:44:00,0 +8656,1968-03-09 17:56:00,0 +3544,1966-02-07 03:06:00,0 +8207,1966-04-06 10:29:00,0 +983,1965-09-15 15:36:00,0 +1408,1968-12-29 19:28:00,0 +3145,1968-03-19 17:31:00,0 +3937,1969-12-03 02:51:00,0 +744,1966-11-28 17:22:00,0 +8266,1966-11-17 04:46:00,0 +4640,1967-07-19 04:26:00,0 +6215,1965-08-28 06:21:00,0 +9264,1969-12-22 13:34:00,0 +7414,1965-01-25 09:07:00,0 +6945,1967-03-18 18:45:00,0 +9303,1969-07-06 00:24:00,0 +2383,1968-07-11 05:27:00,0 +1626,1969-09-26 02:52:00,0 +8749,1969-12-29 16:30:00,0 +1814,1967-12-03 15:25:00,0 +4719,1966-01-17 06:39:00,0 +2330,1966-10-17 08:26:00,0 +6251,1968-01-12 22:08:00,0 +1507,1967-09-30 18:49:00,0 +480,1968-07-26 08:58:00,0 +7231,1966-06-25 18:44:00,0 +1454,1967-10-26 20:33:00,0 +2651,1968-04-10 22:04:00,0 +6673,1966-04-13 18:30:00,0 +7768,1966-03-19 08:40:00,0 +7176,1967-11-07 14:08:00,0 +2032,1966-07-29 09:09:00,0 +4765,1968-07-24 16:37:00,0 +3956,1965-03-21 03:12:00,0 +9083,1965-06-16 18:57:00,0 +3002,1968-07-07 07:26:00,0 +4984,1968-10-25 19:37:00,0 +7144,1965-07-24 15:31:00,0 +1176,1965-10-21 11:57:00,0 +1961,1968-04-17 15:17:00,0 +4459,1967-06-22 07:00:00,0 +99,1969-09-14 11:01:00,0 +8187,1966-10-27 14:02:00,0 +2646,1967-12-07 06:24:00,0 +663,1965-09-22 01:34:00,0 +2886,1967-06-21 02:26:00,0 +71,1966-03-12 05:11:00,0 +3498,1968-12-27 09:34:00,0 +2102,1967-02-18 00:13:00,0 +7897,1967-11-09 09:46:00,0 +3357,1968-09-23 22:11:00,0 +3186,1965-01-02 19:24:00,0 +2303,1969-08-18 03:13:00,0 +6743,1965-09-24 08:21:00,0 +4494,1966-06-25 05:58:00,0 +3922,1965-02-09 19:38:00,0 +9917,1969-08-19 12:38:00,0 +5889,1966-09-10 13:41:00,0 +5655,1967-11-24 09:14:00,0 +9383,1968-05-12 22:22:00,0 +7679,1965-03-01 21:12:00,0 +6952,1967-07-04 16:28:00,0 +8189,1965-01-14 04:06:00,0 +3456,1965-10-30 05:46:00,0 +6210,1969-02-18 18:47:00,0 +5237,1969-02-06 08:03:00,0 +5537,1968-03-03 17:51:00,0 +6398,1968-03-16 16:11:00,0 +3380,1967-04-25 22:37:00,0 +5963,1965-12-27 13:04:00,0 +6639,1966-07-27 03:54:00,0 +5109,1968-10-06 19:49:00,0 +481,1967-06-06 13:35:00,0 +1965,1968-06-13 11:47:00,0 +7466,1968-02-29 20:53:00,0 +989,1967-09-07 06:28:00,0 +4156,1967-05-12 13:11:00,0 +3954,1965-10-20 02:43:00,0 +9324,1966-04-19 05:49:00,0 +8725,1965-04-18 15:45:00,0 +993,1968-12-27 18:01:00,0 +3034,1968-03-20 15:49:00,0 +9554,1969-04-19 05:31:00,0 +2580,1965-01-20 23:39:00,0 +651,1966-12-01 22:04:00,0 +3539,1966-07-08 17:47:00,0 +4594,1966-09-15 03:49:00,0 +3475,1967-10-27 15:27:00,0 +290,1969-05-12 06:32:00,0 +598,1969-12-05 00:57:00,0 +6780,1965-12-16 11:47:00,0 +1163,1967-03-10 02:03:00,0 +4816,1968-01-03 04:10:00,0 +5985,1967-03-22 13:09:00,0 +2493,1967-04-18 08:32:00,0 +9128,1968-01-18 04:32:00,0 +2029,1968-01-28 12:41:00,0 +6516,1965-05-01 19:51:00,0 +1081,1969-02-14 08:07:00,0 +4530,1966-11-13 03:11:00,0 +3816,1969-09-19 19:35:00,0 +7962,1966-11-06 11:19:00,0 +7460,1969-06-08 00:23:00,0 +1035,1968-12-17 07:34:00,0 +9536,1966-11-15 05:58:00,0 +117,1965-12-31 20:38:00,0 +1388,1966-03-29 14:45:00,0 +5802,1966-12-07 08:37:00,0 +469,1966-10-02 12:03:00,0 +4433,1968-02-08 14:10:00,0 +3971,1968-01-06 14:16:00,0 +449,1965-05-09 00:36:00,0 +2871,1968-11-15 02:15:00,0 +6766,1967-08-02 12:52:00,0 +9134,1967-06-22 22:03:00,0 +1605,1967-02-26 08:54:00,0 +3807,1965-05-18 19:57:00,0 +7881,1968-01-08 13:51:00,0 +1471,1968-06-22 08:27:00,0 +7349,1969-09-11 11:57:00,0 +9254,1968-06-07 01:33:00,0 +5934,1966-07-18 09:07:00,0 +7422,1966-07-01 17:37:00,0 +5608,1966-11-02 12:36:00,0 +8120,1969-05-03 00:43:00,0 +177,1968-03-10 04:28:00,0 +6357,1967-06-20 08:32:00,0 +3673,1966-07-17 07:03:00,0 +2762,1968-02-13 22:49:00,0 +2492,1969-01-23 01:46:00,0 +8703,1968-08-23 23:57:00,0 +8085,1967-08-22 11:53:00,0 +8907,1965-06-30 08:51:00,0 +8052,1966-06-18 04:54:00,0 +2898,1969-07-21 14:26:00,0 +8695,1968-05-18 18:10:00,0 +5484,1968-03-25 03:04:00,0 +5144,1965-09-02 07:40:00,0 +1222,1966-04-28 07:31:00,0 +3537,1969-04-30 06:36:00,0 +3073,1965-03-25 02:35:00,0 +25,1969-10-05 20:38:00,0 +332,1968-05-13 18:34:00,0 +7555,1967-05-28 04:24:00,0 +3373,1965-08-15 03:41:00,0 +5054,1967-02-17 14:13:00,0 +7359,1966-08-23 17:40:00,0 +5995,1968-01-16 21:12:00,0 +6982,1969-04-19 22:59:00,0 +9491,1965-12-21 18:02:00,0 +1238,1966-05-28 23:31:00,0 +5682,1967-06-08 02:39:00,0 +9445,1966-12-03 10:56:00,0 +8143,1966-09-12 23:33:00,0 +4619,1966-06-27 10:41:00,0 +1941,1969-08-05 07:30:00,0 +5152,1965-05-29 18:11:00,0 +7269,1968-01-26 15:34:00,0 +3610,1966-07-09 04:16:00,0 +5535,1966-03-28 02:27:00,0 +3638,1968-09-09 00:54:00,0 +9520,1966-03-14 09:54:00,0 +5961,1968-06-12 08:00:00,0 +7382,1969-11-14 17:57:00,0 +2665,1965-04-06 22:15:00,0 +7668,1968-06-28 03:15:00,0 +5000,1965-12-23 04:47:00,0 +9353,1969-02-25 21:09:00,0 +8857,1965-04-14 05:01:00,0 +8031,1969-08-03 12:03:00,0 +4500,1969-03-01 14:41:00,0 +2128,1969-10-24 17:54:00,0 +5078,1965-09-10 14:48:00,0 +4929,1966-12-16 07:56:00,0 +3620,1969-06-25 00:24:00,0 +434,1966-05-16 15:49:00,0 +9972,1967-01-19 05:54:00,0 +2699,1965-04-02 11:49:00,0 +611,1969-04-07 00:16:00,0 +4138,1967-02-20 20:44:00,0 +4923,1966-04-11 13:12:00,0 +3993,1967-07-17 22:44:00,0 +4220,1969-04-30 02:52:00,0 +8491,1969-01-10 12:03:00,0 +5842,1967-03-21 04:22:00,0 +9621,1969-08-04 09:24:00,0 +864,1966-03-20 02:26:00,0 +5140,1967-11-16 22:46:00,0 +5731,1968-07-09 19:03:00,0 +4515,1965-06-12 13:55:00,0 +9103,1966-10-07 10:43:00,0 +5591,1965-12-09 04:02:00,0 +1591,1968-10-14 03:53:00,0 +8418,1967-02-10 12:02:00,0 +4408,1968-02-28 23:22:00,0 +4222,1967-09-23 22:01:00,0 +497,1969-11-28 15:07:00,0 +5952,1965-10-08 10:56:00,0 +4134,1966-01-01 13:41:00,0 +6017,1968-05-23 03:55:00,0 +4595,1965-10-03 10:43:00,0 +1191,1967-10-31 16:32:00,0 +5671,1969-01-08 23:57:00,0 +9839,1969-03-01 03:17:00,0 +9412,1968-06-13 16:08:00,0 +2177,1967-01-05 04:38:00,0 +9209,1966-08-10 17:18:00,0 +677,1968-07-12 15:59:00,0 +2889,1965-06-26 13:46:00,0 +8479,1967-12-16 04:25:00,0 +4452,1968-08-27 11:08:00,0 +4704,1965-09-11 05:40:00,0 +5070,1967-10-05 17:08:00,0 +4763,1966-03-28 04:02:00,0 +1411,1969-03-05 01:58:00,0 +3658,1968-07-11 23:20:00,0 +1719,1965-07-12 13:43:00,0 +7624,1966-07-14 17:02:00,0 +2655,1968-12-28 22:06:00,0 +6428,1967-05-12 00:46:00,0 +4481,1966-02-14 23:42:00,0 +9197,1965-12-03 07:18:00,0 +7767,1967-09-01 00:45:00,0 +8365,1967-02-17 14:30:00,0 +2858,1967-02-16 23:04:00,0 +8922,1966-01-17 18:55:00,0 +2286,1965-03-11 02:13:00,0 +1008,1969-09-04 09:33:00,0 +9984,1965-06-19 19:07:00,0 +5915,1969-11-18 01:34:00,0 +8831,1966-10-21 15:40:00,0 +396,1967-05-18 06:56:00,0 +8850,1969-03-20 09:52:00,0 +5230,1969-01-16 16:08:00,0 +8033,1966-03-10 02:06:00,0 +4087,1969-10-28 16:55:00,0 +4321,1969-11-18 06:40:00,0 +3488,1965-07-23 12:00:00,0 +4340,1968-08-06 23:48:00,0 +9583,1969-12-13 11:15:00,0 +8378,1968-06-19 19:02:00,0 +6615,1968-11-05 04:26:00,0 +2309,1966-07-18 23:48:00,0 +2882,1969-12-22 20:24:00,0 +1179,1967-01-08 07:03:00,0 +9449,1967-08-18 03:05:00,0 +973,1969-07-07 15:39:00,0 +6291,1967-04-17 16:50:00,0 +1069,1968-07-31 11:33:00,0 +9459,1968-10-08 00:53:00,0 +6583,1969-04-09 20:47:00,0 +896,1967-11-01 10:57:00,0 +3198,1966-05-02 17:05:00,0 +917,1967-07-31 17:14:00,0 +505,1967-10-25 23:12:00,0 +7073,1967-02-03 15:35:00,0 +6825,1968-08-07 08:41:00,0 +6916,1968-08-15 17:05:00,0 +2899,1968-06-04 12:39:00,0 +6622,1969-09-07 20:12:00,0 +2262,1965-01-24 14:09:00,0 +7294,1969-07-08 13:25:00,0 +6027,1966-12-29 01:12:00,0 +9698,1967-10-31 11:34:00,0 +494,1967-10-22 12:24:00,0 +8154,1967-08-24 02:58:00,0 +8879,1969-11-29 21:49:00,0 +7602,1967-10-29 03:19:00,0 +5017,1969-06-18 03:51:00,0 +2966,1967-01-13 22:50:00,0 +1042,1968-09-24 14:29:00,0 +6751,1965-02-21 19:23:00,0 +9394,1967-08-24 06:49:00,0 +7963,1966-02-16 15:04:00,0 +4135,1968-08-11 18:46:00,0 +4591,1966-05-01 15:16:00,0 +8180,1969-09-16 21:08:00,0 +1999,1969-06-30 09:58:00,0 +6701,1969-11-29 01:26:00,0 +4812,1965-03-07 21:22:00,0 +3557,1969-06-08 09:37:00,0 +5352,1965-09-24 05:08:00,0 +7273,1968-04-26 02:57:00,0 +7694,1966-04-16 09:22:00,0 +7480,1969-01-11 01:46:00,0 +4783,1967-01-06 03:12:00,0 +4675,1966-01-06 09:11:00,0 +4901,1967-12-14 05:33:00,0 +8658,1968-04-17 00:06:00,0 +3074,1969-11-12 08:57:00,0 +8331,1968-01-30 12:04:00,0 +9296,1968-06-10 18:49:00,0 +8924,1965-05-22 10:43:00,0 +4598,1967-03-29 20:20:00,0 +1013,1965-08-17 03:45:00,0 +2545,1967-12-20 08:14:00,0 +4933,1968-05-30 16:57:00,0 +6502,1968-11-03 06:25:00,0 +9232,1967-06-23 00:10:00,0 +5811,1965-01-02 11:17:00,0 +6577,1969-02-12 14:35:00,0 +5602,1968-01-20 21:36:00,0 +1791,1965-05-09 01:08:00,0 +3159,1969-01-16 09:03:00,0 +267,1967-12-25 01:32:00,0 +417,1969-12-19 22:56:00,0 +6706,1968-02-27 22:14:00,0 +9131,1969-02-22 17:01:00,0 +329,1969-12-16 16:05:00,0 +6906,1969-01-26 03:08:00,0 +5913,1966-08-24 06:30:00,0 +5384,1969-09-24 21:23:00,0 +9984,1967-10-08 10:42:00,0 +5073,1968-11-19 14:47:00,0 +3924,1965-05-05 16:13:00,0 +8447,1965-01-20 05:36:00,0 +9680,1969-07-08 20:10:00,0 +6719,1969-01-31 07:45:00,0 +5102,1966-11-30 11:22:00,0 +3597,1968-09-05 04:14:00,0 +1327,1968-03-29 15:43:00,0 +1811,1969-03-28 03:56:00,0 +4604,1965-01-28 05:30:00,0 +4832,1967-11-13 07:56:00,0 +3927,1966-09-07 13:52:00,0 +4181,1967-02-01 22:39:00,0 +463,1965-05-15 13:21:00,0 +2484,1969-12-19 11:03:00,0 +6469,1967-08-05 08:32:00,0 +4328,1967-07-15 12:27:00,0 +5772,1968-07-07 21:32:00,0 +1088,1968-12-25 19:24:00,0 +6895,1969-05-07 18:58:00,0 +5696,1967-04-08 02:15:00,0 +9673,1968-09-21 04:02:00,0 +9108,1968-05-29 17:56:00,0 +8990,1966-11-29 07:51:00,0 +1090,1966-01-13 20:23:00,0 +7761,1966-04-17 05:44:00,0 +8661,1968-09-15 03:14:00,0 +9789,1966-06-09 22:16:00,0 +4652,1967-05-30 09:48:00,0 +8039,1965-06-03 14:51:00,0 +1210,1965-11-07 07:09:00,0 +1843,1969-10-15 00:50:00,0 +5156,1969-03-11 08:55:00,0 +2733,1967-11-09 09:50:00,0 +4275,1965-07-15 22:31:00,0 +8098,1969-06-05 15:17:00,0 +557,1969-01-20 09:06:00,0 +3881,1969-01-08 19:36:00,0 +7852,1965-08-14 19:59:00,0 +3268,1965-09-27 02:48:00,0 +2067,1965-01-18 01:54:00,0 +6716,1968-05-05 06:40:00,0 +1305,1965-08-26 18:12:00,0 +5147,1968-05-12 18:26:00,0 +8881,1967-11-15 10:56:00,0 +5721,1966-01-08 09:10:00,0 +2812,1965-02-14 21:21:00,0 +1692,1966-07-14 10:39:00,0 +237,1966-11-14 07:48:00,0 +4647,1967-12-13 04:48:00,0 +427,1966-07-29 19:36:00,0 +1083,1967-11-30 22:01:00,0 +8829,1966-12-19 21:12:00,0 +6026,1967-06-21 19:28:00,0 +8990,1967-05-03 14:46:00,0 +5674,1968-07-17 22:23:00,0 +7644,1967-02-27 09:12:00,0 +507,1967-10-21 12:29:00,0 +2398,1967-09-17 06:58:00,0 +1155,1969-08-06 06:34:00,0 +7999,1966-05-03 21:24:00,0 +3619,1967-01-27 01:18:00,0 +8977,1966-01-31 17:16:00,0 +2716,1965-10-02 15:17:00,0 +7756,1965-03-12 21:45:00,0 +3034,1966-09-17 03:56:00,0 +5885,1966-04-09 03:15:00,0 +5316,1967-11-13 05:14:00,0 +8272,1969-05-27 21:47:00,0 +7268,1969-01-23 12:21:00,0 +9115,1967-11-23 08:20:00,0 +2488,1969-05-16 06:56:00,0 +4285,1965-10-15 19:37:00,0 +1214,1965-11-05 06:28:00,0 +5862,1967-03-03 20:17:00,0 +5020,1967-10-10 20:40:00,0 +8020,1967-09-15 22:12:00,0 +3513,1965-11-16 21:35:00,0 +168,1968-06-17 04:55:00,0 +1359,1969-03-12 15:48:00,0 +3130,1967-03-27 18:45:00,0 +6306,1969-02-24 08:40:00,0 +1983,1966-08-16 08:28:00,0 +3802,1969-06-29 08:52:00,0 +6765,1968-09-05 21:59:00,0 +1332,1967-05-05 18:46:00,0 +8216,1968-07-06 14:50:00,0 +4120,1965-05-15 03:07:00,0 +9131,1967-02-23 13:14:00,0 +2702,1967-10-19 17:53:00,0 +2173,1967-08-29 10:37:00,0 +1767,1969-02-08 13:54:00,0 +2857,1965-07-21 12:48:00,0 +2202,1969-08-02 20:32:00,0 +8196,1969-01-25 15:57:00,0 +4501,1968-09-09 04:58:00,0 +435,1965-03-12 10:36:00,0 +4929,1966-10-24 00:12:00,0 +8773,1966-01-24 07:43:00,0 +1862,1966-10-08 17:35:00,0 +1211,1966-03-31 21:50:00,0 +4808,1965-06-10 06:05:00,0 +7782,1969-09-07 20:13:00,0 +4751,1968-09-20 14:52:00,0 +5597,1969-02-10 07:02:00,0 +6563,1967-01-11 07:53:00,0 +9796,1966-01-24 23:32:00,0 +96,1965-03-20 06:27:00,0 +2459,1965-11-29 17:24:00,0 +1186,1966-11-16 03:14:00,0 +5045,1966-09-10 14:38:00,0 +5785,1966-08-25 14:12:00,0 +8305,1965-01-23 09:55:00,0 +8448,1967-04-28 09:51:00,0 +900,1967-02-25 03:30:00,0 +3573,1967-04-16 18:43:00,0 +8766,1967-12-12 19:42:00,0 +5934,1965-08-28 04:11:00,0 +4828,1965-09-26 19:54:00,0 +2968,1968-01-30 03:49:00,0 +7313,1969-10-11 03:39:00,0 +2116,1967-04-29 07:51:00,0 +5258,1969-12-28 04:26:00,0 +5862,1967-10-21 15:18:00,0 +3256,1965-02-20 17:12:00,0 +3450,1969-03-02 16:22:00,0 +3967,1967-07-14 15:36:00,0 +2236,1967-02-06 01:23:00,0 +609,1965-03-22 11:48:00,0 +9461,1967-11-05 07:06:00,0 +9268,1965-01-25 22:22:00,0 +6824,1969-10-22 10:44:00,0 +8451,1968-09-22 22:09:00,0 +6636,1966-08-28 16:09:00,0 +3648,1966-12-25 12:05:00,0 +1524,1966-03-29 18:45:00,0 +4369,1968-10-29 06:30:00,0 +4607,1966-08-23 08:05:00,0 +189,1968-04-22 21:40:00,0 +9362,1967-11-12 12:37:00,0 +2578,1967-06-24 13:20:00,0 +1648,1968-12-22 15:38:00,0 +8108,1965-11-24 03:41:00,0 +4777,1966-11-05 21:21:00,0 +3739,1967-05-13 12:24:00,0 +1681,1966-09-12 14:48:00,0 +8728,1966-02-08 20:40:00,0 +1499,1967-07-04 07:45:00,0 +572,1969-11-21 10:56:00,0 +6829,1965-05-14 22:49:00,0 +4963,1968-10-23 23:16:00,0 +573,1968-10-02 06:46:00,0 +4801,1968-12-28 12:42:00,0 +8341,1967-11-15 11:21:00,0 +6414,1967-10-01 12:01:00,0 +7511,1969-01-15 11:23:00,0 +6829,1967-04-08 12:22:00,0 +3564,1968-02-23 00:37:00,0 +1599,1968-05-03 08:15:00,0 +4143,1968-01-29 04:01:00,0 +3913,1968-03-19 05:34:00,0 +48,1966-08-12 10:00:00,0 +9491,1967-01-30 07:40:00,0 +8815,1968-06-14 18:20:00,0 +233,1967-05-16 12:39:00,0 +5152,1969-05-06 16:43:00,0 +3999,1967-12-05 00:56:00,0 +1479,1966-05-13 10:34:00,0 +6761,1966-09-08 05:53:00,0 +6001,1965-01-14 23:09:00,0 +2044,1965-03-16 05:16:00,0 +7806,1965-09-22 20:13:00,0 +4565,1966-02-25 00:47:00,0 +4716,1968-08-04 04:06:00,0 +4893,1968-12-12 00:37:00,0 +9368,1967-02-08 08:46:00,0 +8571,1967-03-23 00:59:00,0 +1404,1965-10-06 08:05:00,0 +2222,1968-05-27 05:01:00,0 +5769,1968-11-13 06:45:00,0 +551,1966-04-21 05:00:00,0 +3622,1967-12-09 09:00:00,0 +2745,1966-07-06 23:17:00,0 +9205,1966-01-15 11:23:00,0 +1427,1967-06-27 19:42:00,0 +4923,1968-07-21 21:52:00,0 +3032,1969-06-22 22:09:00,0 +1725,1966-07-23 09:29:00,0 +2152,1966-12-09 17:36:00,0 +9630,1968-08-06 17:15:00,0 +440,1969-06-04 18:56:00,0 +8685,1967-06-14 21:24:00,0 +962,1969-03-27 14:27:00,0 +3994,1967-12-16 23:03:00,0 +1012,1965-06-05 13:39:00,0 +3959,1967-04-09 06:20:00,0 +9783,1968-11-14 16:52:00,0 +9016,1967-03-23 15:26:00,0 +5413,1966-05-17 07:12:00,0 +6968,1966-06-05 20:35:00,0 +8369,1968-09-03 12:30:00,0 +5535,1965-03-15 15:50:00,0 +3390,1966-05-25 12:41:00,0 +3149,1966-05-04 08:58:00,0 +5573,1966-06-09 03:10:00,0 +5266,1968-05-29 12:28:00,0 +181,1968-10-17 20:06:00,0 +3165,1966-03-23 13:14:00,0 +7453,1967-10-19 12:38:00,0 +6921,1968-06-27 21:00:00,0 +3502,1968-11-13 13:43:00,0 +7302,1967-08-12 10:23:00,0 +626,1969-11-11 20:50:00,0 +1144,1968-01-17 18:28:00,0 +756,1969-06-17 00:19:00,0 +5641,1967-09-21 21:09:00,0 +4297,1967-06-29 13:41:00,0 +8450,1969-08-13 18:34:00,0 +3035,1968-11-30 04:41:00,0 +7179,1966-05-27 05:57:00,0 +8561,1967-01-18 20:40:00,0 +1072,1966-02-07 15:15:00,0 +4326,1966-02-01 22:58:00,0 +3107,1966-07-11 03:02:00,0 +9927,1966-12-04 19:57:00,0 +9391,1967-03-16 02:37:00,0 +6089,1967-05-20 15:14:00,0 +1555,1965-02-21 09:20:00,0 +7827,1967-12-19 14:45:00,0 +5845,1965-08-23 02:54:00,0 +8440,1966-01-04 11:32:00,0 +1411,1967-08-03 00:28:00,0 +8538,1969-09-29 14:08:00,0 +9783,1966-11-10 15:37:00,0 +3715,1966-10-02 15:36:00,0 +1730,1967-01-22 09:28:00,0 +2949,1968-05-02 22:08:00,0 +5262,1968-12-17 17:50:00,0 +3615,1969-12-05 15:23:00,0 +5658,1966-09-24 23:20:00,0 +1761,1965-02-16 14:22:00,0 +7611,1967-04-16 10:35:00,0 +7323,1969-08-12 17:43:00,0 +8209,1967-05-12 01:25:00,0 +3724,1969-11-10 20:39:00,0 +4993,1965-07-10 21:15:00,0 +9657,1968-08-29 16:08:00,0 +8574,1966-07-06 11:46:00,0 +7112,1966-12-14 07:45:00,0 +6344,1968-05-05 18:25:00,0 +9718,1966-01-15 09:38:00,0 +2637,1969-06-08 01:10:00,0 +2818,1969-01-03 17:29:00,0 +1835,1969-05-06 03:28:00,0 +4932,1966-07-15 05:04:00,0 +2470,1969-10-12 22:30:00,0 +8627,1967-03-17 07:28:00,0 +4247,1966-08-03 09:36:00,0 +5314,1965-01-21 02:16:00,0 +1763,1967-02-06 09:11:00,0 +3934,1965-02-27 02:17:00,0 +3901,1968-05-21 16:59:00,0 +4774,1969-09-22 02:46:00,0 +3107,1969-05-15 15:16:00,0 +4518,1968-06-22 09:13:00,0 +1225,1969-02-04 13:33:00,0 +6167,1969-01-05 15:42:00,0 +9687,1968-04-22 22:33:00,0 +8383,1969-08-20 01:04:00,0 +6824,1967-08-07 12:56:00,0 +3730,1967-12-21 16:40:00,0 +7650,1967-07-02 11:06:00,0 +8427,1965-12-01 03:53:00,0 +7936,1967-12-12 14:14:00,0 +8679,1967-08-17 06:05:00,0 +1018,1967-05-12 06:33:00,0 +7771,1965-11-22 15:14:00,0 +3410,1967-07-08 12:59:00,0 +9237,1965-09-08 12:03:00,0 +5432,1969-11-12 14:29:00,0 +9188,1965-03-04 19:50:00,0 +4246,1969-09-06 18:33:00,0 +7764,1966-04-20 12:51:00,0 +5052,1965-07-17 01:45:00,0 +769,1966-03-01 01:13:00,0 +2336,1965-03-31 06:31:00,0 +1355,1967-04-19 06:38:00,0 +9952,1969-05-27 22:54:00,0 +9738,1968-11-24 14:26:00,0 +2732,1965-11-08 10:13:00,0 +8368,1966-11-21 00:54:00,0 +8404,1968-06-25 14:44:00,0 +222,1968-06-17 02:11:00,0 +6028,1967-09-24 09:06:00,0 +9109,1968-11-10 01:27:00,0 +2839,1965-08-22 19:33:00,0 +978,1967-09-10 19:31:00,0 +1735,1968-03-20 02:05:00,0 +1594,1966-04-25 20:14:00,0 +6036,1969-02-25 12:53:00,0 +6930,1966-03-17 01:24:00,0 +9611,1966-06-03 03:23:00,0 +4785,1967-06-07 22:32:00,0 +578,1966-09-23 15:34:00,0 +5685,1968-11-11 21:52:00,0 +4049,1966-03-28 06:24:00,0 +6169,1968-09-27 07:06:00,0 +9412,1967-06-20 09:51:00,0 +2366,1965-09-26 08:19:00,0 +2689,1965-02-03 09:32:00,0 +9480,1969-02-23 06:09:00,0 +778,1965-01-31 16:53:00,0 +385,1965-09-21 17:09:00,0 +1833,1969-12-22 17:30:00,0 +9637,1967-01-15 07:40:00,0 +5596,1966-11-21 11:59:00,0 +8605,1968-04-11 08:35:00,0 +1291,1965-10-31 18:23:00,0 +9146,1969-12-07 19:33:00,0 +212,1969-06-07 04:12:00,0 +2124,1965-06-06 18:46:00,0 +9795,1969-07-18 15:44:00,0 +7401,1969-11-01 01:20:00,0 +8474,1967-04-15 09:47:00,0 +1271,1967-05-25 07:31:00,0 +5208,1969-02-09 01:43:00,0 +1425,1968-12-07 17:19:00,0 +1840,1969-06-22 17:18:00,0 +5510,1965-09-05 03:01:00,0 +4733,1967-08-21 21:24:00,0 +7102,1965-10-17 21:23:00,0 +3809,1967-07-30 17:19:00,0 +626,1968-02-29 15:54:00,0 +823,1965-12-02 19:13:00,0 +1905,1966-07-17 20:04:00,0 +7356,1969-06-15 04:46:00,0 +6497,1968-02-05 16:22:00,0 +2480,1965-07-17 18:03:00,0 +2134,1969-01-04 10:44:00,0 +2814,1969-03-12 12:52:00,0 +1927,1966-09-12 21:57:00,0 +8905,1968-03-10 23:12:00,0 +7594,1965-09-14 05:02:00,0 +1646,1966-07-20 20:08:00,0 +5505,1969-01-19 03:00:00,0 +1243,1965-03-06 22:47:00,0 +7067,1965-01-22 10:02:00,0 +5199,1968-07-21 17:51:00,0 +1667,1969-12-01 11:10:00,0 +3327,1965-07-08 08:02:00,0 +3290,1969-10-24 05:48:00,0 +9587,1967-10-18 06:02:00,0 +6756,1965-06-16 18:57:00,0 +1669,1968-12-09 12:09:00,0 +7339,1966-05-30 04:13:00,0 +9631,1967-04-22 12:30:00,0 +5950,1965-07-28 17:34:00,0 +1111,1965-12-19 00:56:00,0 +1901,1969-03-19 04:49:00,0 +428,1967-11-09 07:46:00,0 +5358,1965-08-12 03:50:00,0 +9836,1966-04-15 17:03:00,0 +5033,1967-09-04 06:33:00,0 +3648,1965-02-01 11:40:00,0 +4129,1966-04-14 02:48:00,0 +9205,1968-05-13 07:27:00,0 +6765,1966-05-24 15:24:00,0 +6281,1969-03-30 10:42:00,0 +5843,1968-10-23 11:14:00,0 +2593,1966-06-15 04:31:00,0 +1099,1966-06-13 16:46:00,0 +2223,1969-12-31 21:07:00,0 +4685,1968-04-04 18:20:00,0 +5499,1965-12-25 13:23:00,0 +2401,1965-12-20 11:38:00,0 +3228,1965-03-03 04:59:00,0 +306,1966-02-26 01:36:00,0 +524,1968-10-27 14:29:00,0 +2066,1968-01-06 14:56:00,0 +5990,1966-02-16 08:26:00,0 +6815,1966-03-30 08:42:00,0 +5262,1969-06-14 13:36:00,0 +649,1967-04-28 06:54:00,0 +4069,1968-02-27 16:21:00,0 +3823,1965-07-30 13:43:00,0 +607,1969-09-10 13:30:00,0 +2610,1967-01-10 04:18:00,0 +881,1968-06-15 21:42:00,0 +3247,1967-02-26 18:31:00,0 +6164,1965-07-03 11:40:00,0 +3133,1966-05-02 05:11:00,0 +7055,1966-11-21 20:59:00,0 +6023,1965-09-25 07:56:00,0 +3861,1965-12-01 03:59:00,0 +9656,1966-10-28 01:54:00,0 +2610,1969-09-04 03:04:00,0 +8830,1966-05-23 21:10:00,0 +4852,1965-04-03 03:53:00,0 +7916,1965-11-15 04:20:00,0 +8946,1967-06-08 08:45:00,0 +5878,1966-11-28 20:25:00,0 +4341,1966-12-12 02:07:00,0 +1051,1967-05-26 07:47:00,0 +6589,1968-08-04 11:18:00,0 +6130,1968-02-22 18:32:00,0 +7918,1968-10-16 10:15:00,0 +3097,1968-10-06 18:21:00,0 +1188,1969-01-25 14:38:00,0 +4941,1968-07-10 09:03:00,0 +9501,1965-05-07 05:55:00,0 +7301,1966-10-22 12:25:00,0 +2943,1968-11-30 06:21:00,0 +9177,1965-09-10 05:32:00,0 +6561,1969-01-30 08:19:00,0 +9819,1967-05-16 04:38:00,0 +6712,1965-09-16 07:53:00,0 +2062,1969-12-30 02:27:00,0 +8748,1969-11-28 11:05:00,0 +1672,1965-03-14 09:15:00,0 +1011,1965-11-06 15:27:00,0 +6619,1968-03-23 03:24:00,0 +785,1966-11-30 02:36:00,0 +8880,1966-02-21 01:09:00,0 +2123,1967-05-02 06:58:00,0 +1564,1965-06-21 06:33:00,0 +9175,1969-05-15 12:15:00,0 +4782,1968-11-26 18:40:00,0 +7133,1969-09-04 18:01:00,0 +7751,1967-05-07 16:37:00,0 +1773,1969-11-07 07:26:00,0 +2463,1969-04-02 07:02:00,0 +5057,1969-04-24 21:53:00,0 +3119,1966-12-19 05:28:00,0 +5116,1969-07-08 19:11:00,0 +6253,1965-07-10 19:01:00,0 +9621,1968-09-06 11:45:00,0 +5981,1968-06-08 19:59:00,0 +7187,1967-02-14 10:03:00,0 +2666,1967-06-07 18:26:00,0 +2757,1966-02-14 15:37:00,0 +6985,1968-03-28 18:54:00,0 +7045,1967-11-03 08:32:00,0 +4663,1967-10-06 22:22:00,0 +3363,1966-09-13 08:00:00,0 +9829,1967-08-06 04:19:00,0 +3261,1965-05-22 15:48:00,0 +8159,1967-08-09 09:45:00,0 +8427,1968-07-03 02:01:00,0 +8804,1965-04-26 03:53:00,0 +5315,1969-05-28 20:34:00,0 +3396,1965-08-06 12:23:00,0 +212,1965-02-24 21:50:00,0 +9213,1967-12-25 04:16:00,0 +9711,1966-01-12 01:37:00,0 +9616,1968-11-09 12:53:00,0 +2369,1967-12-15 15:29:00,0 +9172,1966-12-21 22:56:00,0 +8461,1968-09-04 16:02:00,0 +6111,1969-01-01 09:17:00,0 +6618,1966-07-09 11:36:00,0 +9251,1966-04-19 02:40:00,0 +8259,1965-07-03 18:28:00,0 +7608,1965-04-12 14:24:00,0 +7234,1966-04-08 18:21:00,0 +9195,1967-01-31 08:37:00,0 +946,1969-09-10 03:47:00,0 +1600,1968-10-11 10:04:00,0 +388,1967-01-09 20:43:00,0 +8720,1969-03-01 10:01:00,0 +2579,1969-09-23 13:06:00,0 +7864,1967-01-27 12:40:00,0 +1457,1968-06-26 07:15:00,0 +4557,1967-11-05 09:18:00,0 +7618,1967-06-25 17:22:00,0 +9338,1965-08-15 02:53:00,0 +5308,1966-02-11 20:17:00,0 +6387,1966-01-10 05:59:00,0 +9538,1967-05-25 17:25:00,0 +2265,1965-09-09 06:46:00,0 +5919,1967-11-30 09:04:00,0 +8289,1966-10-23 04:35:00,0 +2390,1967-10-26 01:07:00,0 +8657,1966-07-12 10:17:00,0 +6907,1968-01-17 07:48:00,0 +7952,1967-05-21 03:47:00,0 +6761,1966-07-20 22:05:00,0 +772,1969-07-25 00:21:00,0 +2940,1965-04-13 18:57:00,0 +2515,1965-12-11 02:10:00,0 +8068,1969-12-30 23:56:00,0 +6264,1967-10-27 19:50:00,0 +2138,1968-01-28 12:26:00,0 +9100,1967-12-19 00:00:00,0 +2596,1968-08-20 19:35:00,0 +2410,1966-06-28 14:18:00,0 +2645,1969-01-09 18:40:00,0 +3826,1968-08-09 16:51:00,0 +4434,1968-05-31 19:37:00,0 +5997,1969-06-01 16:17:00,0 +7667,1969-01-21 23:05:00,0 +1850,1969-07-07 10:55:00,0 +3038,1969-08-26 01:11:00,0 +5879,1966-10-05 03:24:00,0 +3673,1965-11-20 08:41:00,0 +4111,1967-07-09 22:04:00,0 +3692,1967-06-16 17:22:00,0 +6063,1967-11-27 05:20:00,0 +7872,1965-05-15 17:26:00,0 +6812,1966-02-04 19:58:00,0 +9586,1969-02-01 13:20:00,0 +7104,1966-03-13 16:58:00,0 +4183,1969-10-05 16:50:00,0 +3502,1967-05-07 09:23:00,0 +2414,1965-09-27 20:26:00,0 +2837,1968-01-09 07:49:00,0 +4211,1969-08-03 17:23:00,0 +1692,1966-08-29 21:13:00,0 +2193,1967-05-07 17:46:00,0 +2182,1969-10-04 08:42:00,0 +9470,1967-03-04 22:09:00,0 +9354,1969-12-30 17:36:00,0 +7856,1967-10-12 06:26:00,0 +746,1966-10-17 00:44:00,0 +2614,1968-12-21 05:35:00,0 +6046,1967-03-24 04:58:00,0 +4716,1968-09-10 14:30:00,0 +5227,1969-06-06 06:37:00,0 +7611,1968-09-10 23:59:00,0 +801,1969-06-29 05:00:00,0 +6066,1968-02-28 15:16:00,0 +8000,1967-03-24 16:44:00,0 +5626,1968-01-16 16:05:00,0 +4659,1969-07-20 04:17:00,0 +8849,1967-04-28 23:56:00,0 +7009,1968-06-08 17:55:00,0 +3956,1966-04-06 11:41:00,0 +3668,1967-10-02 04:16:00,0 +4379,1966-12-08 11:53:00,0 +9074,1968-06-22 05:02:00,0 +1445,1968-03-15 13:28:00,0 +3136,1968-04-01 11:53:00,0 +3608,1968-05-15 17:28:00,0 +5688,1968-09-20 06:21:00,0 +6243,1968-04-14 09:41:00,0 +5091,1967-09-10 10:25:00,0 +3539,1968-06-02 19:17:00,0 +918,1968-06-09 11:52:00,0 +2378,1967-07-16 16:03:00,0 +3077,1966-09-14 10:11:00,0 +2459,1965-10-19 06:13:00,0 +6459,1969-12-23 09:23:00,0 +7339,1969-11-25 15:32:00,0 +1430,1965-11-22 08:23:00,0 +6566,1966-01-11 16:42:00,0 +773,1967-11-13 05:25:00,0 +7571,1969-09-13 16:34:00,0 +9899,1967-01-01 14:17:00,0 +6438,1969-11-10 01:42:00,0 +3900,1968-05-12 23:38:00,0 +8755,1968-01-05 03:49:00,0 +4599,1968-08-28 16:58:00,0 +8919,1969-05-25 20:23:00,0 +5274,1968-03-08 20:23:00,0 +6958,1968-09-12 18:05:00,0 +6843,1968-06-21 11:09:00,0 +2279,1966-05-11 16:43:00,0 +7628,1967-01-14 19:23:00,0 +9380,1969-03-12 05:20:00,0 +3982,1969-07-19 10:39:00,0 +3380,1965-02-05 17:25:00,0 +2800,1969-12-29 06:22:00,0 +5784,1968-04-18 07:02:00,0 +8149,1967-12-21 04:11:00,0 +3173,1967-07-30 19:34:00,0 +1744,1966-06-28 13:19:00,0 +9998,1966-03-14 15:28:00,0 +3803,1969-04-14 19:00:00,0 +9554,1969-07-10 21:01:00,0 +4165,1966-02-12 08:22:00,0 +1733,1968-10-31 02:58:00,0 +3326,1967-11-10 18:32:00,0 +7123,1968-12-24 21:41:00,0 +5827,1969-06-18 09:20:00,0 +7958,1966-12-19 15:50:00,0 +1613,1965-07-25 20:55:00,0 +1699,1968-07-12 22:22:00,0 +6063,1965-02-23 00:23:00,0 +1515,1965-12-21 03:47:00,0 +6452,1966-05-17 04:28:00,0 +2184,1968-05-07 04:39:00,0 +7620,1968-03-05 04:35:00,0 +5534,1969-04-03 12:20:00,0 +4578,1966-09-10 22:16:00,0 +9924,1967-06-22 22:57:00,0 +7221,1965-08-22 15:43:00,0 +9854,1968-08-07 14:14:00,0 +827,1966-08-18 07:07:00,0 +494,1968-03-11 10:11:00,0 +9034,1965-04-05 22:38:00,0 +7889,1965-04-20 20:17:00,0 +5828,1968-07-14 15:57:00,0 +9997,1966-01-11 08:39:00,0 +4150,1967-02-09 19:45:00,0 +7225,1969-07-16 04:18:00,0 +9733,1968-02-09 08:02:00,0 +9006,1968-11-11 19:01:00,0 +4310,1966-04-22 07:57:00,0 +5615,1965-09-17 18:04:00,0 +2232,1965-04-18 04:45:00,0 +1888,1966-11-25 00:55:00,0 +215,1967-07-18 17:30:00,0 +1224,1966-08-09 06:21:00,0 +1934,1967-01-06 06:07:00,0 +1405,1969-01-07 14:14:00,0 +416,1967-06-28 07:00:00,0 +4448,1968-03-05 03:33:00,0 +4671,1966-01-28 03:01:00,0 +982,1967-12-10 00:02:00,0 +8358,1967-04-07 23:06:00,0 +831,1965-01-31 06:15:00,0 +2462,1965-05-24 18:20:00,0 +9660,1966-07-27 09:17:00,0 +4035,1965-01-26 05:22:00,0 +5597,1965-11-12 18:23:00,0 +8871,1968-05-06 21:23:00,0 +5324,1965-08-02 21:19:00,0 +8413,1969-10-13 10:15:00,0 +79,1967-02-26 23:42:00,0 +4922,1967-03-17 00:38:00,0 +3315,1968-07-05 13:03:00,0 +8968,1969-11-26 07:48:00,0 +4571,1967-10-29 15:38:00,0 +1724,1967-09-22 09:36:00,0 +3446,1969-12-24 21:20:00,0 +5447,1969-06-07 12:52:00,0 +1440,1965-05-21 13:04:00,0 +8722,1968-01-30 20:06:00,0 +4994,1966-03-11 10:51:00,0 +3844,1966-01-19 07:50:00,0 +8912,1967-05-23 18:04:00,0 +3404,1968-08-07 19:22:00,0 +1695,1965-02-20 05:48:00,0 +7258,1969-08-05 14:35:00,0 +9319,1966-11-16 14:15:00,0 +6950,1968-06-11 15:37:00,0 +3928,1965-09-01 18:38:00,0 +1080,1965-03-12 23:06:00,0 +2697,1967-11-19 17:33:00,0 +734,1965-02-11 06:05:00,0 +1869,1966-09-22 06:16:00,0 +5124,1969-11-15 14:01:00,0 +560,1967-06-16 01:14:00,0 +7919,1969-07-16 01:39:00,0 +9064,1966-01-25 14:16:00,0 +9632,1966-02-20 07:44:00,0 +7000,1968-12-30 02:55:00,0 +2496,1966-05-18 21:33:00,0 +8404,1965-11-08 02:15:00,0 +6420,1969-09-23 13:27:00,0 +2536,1965-07-11 01:23:00,0 +8744,1967-05-13 12:34:00,0 +2870,1967-09-03 12:20:00,0 +551,1966-01-08 10:59:00,0 +3185,1967-04-26 14:02:00,0 +1906,1969-07-15 23:51:00,0 +4833,1967-10-10 02:25:00,0 +1780,1968-04-30 02:56:00,0 +3779,1966-08-24 23:39:00,0 +4673,1967-08-10 03:58:00,0 +6017,1967-04-20 10:26:00,0 +7762,1966-02-07 13:53:00,0 +3349,1968-02-04 08:05:00,0 +1135,1965-11-08 04:24:00,0 +5337,1968-03-28 17:06:00,0 +8849,1969-06-02 22:08:00,0 +9152,1967-06-06 21:58:00,0 +3964,1966-09-02 09:36:00,0 +6184,1965-10-08 18:32:00,0 +2430,1967-12-27 05:08:00,0 +9857,1967-11-11 18:47:00,0 +322,1966-03-31 20:43:00,0 +9542,1969-11-16 20:25:00,0 +1633,1969-07-09 08:30:00,0 +4225,1965-09-11 20:30:00,0 +6348,1968-09-30 06:44:00,0 +8310,1967-05-10 12:38:00,0 +651,1967-12-30 01:58:00,0 +1246,1965-09-21 14:04:00,0 +5370,1969-09-24 16:10:00,0 +4493,1967-03-22 06:13:00,0 +8407,1969-05-13 20:48:00,0 +1639,1969-02-18 16:34:00,0 +7132,1966-06-14 22:58:00,0 +7616,1969-05-19 05:27:00,0 +757,1967-04-18 22:30:00,0 +5465,1967-06-13 21:55:00,0 +8057,1969-04-17 23:36:00,0 +1697,1967-09-05 21:17:00,0 +7869,1965-11-22 12:21:00,0 +8717,1967-07-30 11:31:00,0 +6993,1968-05-29 18:51:00,0 +5320,1969-05-17 07:39:00,0 +2762,1966-08-09 06:30:00,0 +5279,1968-02-27 12:47:00,0 +9726,1967-02-18 10:44:00,0 +3324,1968-06-16 19:04:00,0 +537,1969-08-19 15:31:00,0 +4969,1969-04-25 14:23:00,0 +4058,1965-02-21 00:28:00,0 +500,1967-05-06 20:11:00,0 +3769,1966-01-24 23:23:00,0 +1301,1967-09-26 00:37:00,0 +672,1968-05-15 13:48:00,0 +3014,1967-03-02 15:04:00,0 +9774,1967-06-02 10:50:00,0 +663,1966-12-31 03:56:00,0 +7699,1967-07-04 08:12:00,0 +6333,1969-04-02 13:24:00,0 +2129,1966-11-09 10:08:00,0 +99,1969-02-11 00:44:00,0 +1854,1969-04-20 02:32:00,0 +896,1968-12-04 23:59:00,0 +9197,1968-05-24 23:37:00,0 +5250,1965-02-06 18:09:00,0 +9260,1968-02-03 09:47:00,0 +2141,1969-03-28 21:30:00,0 +4184,1965-12-22 06:43:00,0 +5181,1969-10-17 02:45:00,0 +2819,1968-05-02 07:03:00,0 +694,1967-10-07 13:57:00,0 +3867,1968-02-01 03:58:00,0 +2412,1968-08-08 14:58:00,0 +918,1969-05-18 15:51:00,0 +9949,1967-04-04 11:19:00,0 +1930,1965-09-18 17:13:00,0 +8073,1969-09-26 09:15:00,0 +425,1966-09-06 05:09:00,0 +2010,1965-11-18 01:20:00,0 +9079,1968-06-01 00:13:00,0 +1717,1965-06-30 02:46:00,0 +2738,1968-12-12 15:47:00,0 +4643,1968-08-12 10:52:00,0 +3909,1965-12-12 15:30:00,0 +4526,1965-04-06 10:03:00,0 +9813,1965-05-28 13:02:00,0 +3167,1969-06-18 03:32:00,0 +5648,1966-09-27 05:41:00,0 +4066,1965-05-23 04:07:00,0 +3143,1968-06-30 20:13:00,0 +4167,1966-04-30 02:53:00,0 +4379,1968-03-23 13:35:00,0 +4926,1969-11-27 18:29:00,0 +2050,1967-11-08 19:41:00,0 +2927,1967-11-30 22:39:00,0 +3613,1966-06-08 11:06:00,0 +2959,1965-05-31 23:02:00,0 +1517,1968-03-09 06:54:00,0 +4746,1967-01-23 23:59:00,0 +7432,1968-08-27 17:48:00,0 +6692,1969-10-26 15:37:00,0 +7640,1965-03-09 15:51:00,0 +1569,1968-01-09 11:22:00,0 +9499,1968-09-05 10:38:00,0 +80,1969-10-07 05:41:00,0 +116,1966-03-07 17:24:00,0 +4236,1969-09-04 15:43:00,0 +7108,1969-05-08 21:12:00,0 +533,1967-04-28 09:50:00,0 +788,1967-02-08 21:48:00,0 +2139,1966-04-29 09:16:00,0 +3794,1968-12-19 16:39:00,0 +9362,1965-07-17 12:19:00,0 +1319,1968-02-28 21:56:00,0 +4129,1968-11-26 02:17:00,0 +6509,1969-01-09 22:20:00,0 +6393,1967-07-04 09:39:00,0 +3533,1965-01-31 15:11:00,0 +5219,1966-09-05 19:30:00,0 +3065,1968-01-26 15:03:00,0 +6397,1968-10-25 13:06:00,0 +5867,1967-05-24 15:52:00,0 +2402,1967-01-23 22:48:00,0 +7301,1966-08-13 09:16:00,0 +6871,1966-11-29 21:45:00,0 +7556,1968-10-27 16:13:00,0 +5453,1965-11-15 11:11:00,0 +1342,1967-09-17 23:09:00,0 +4439,1967-09-10 06:08:00,0 +2975,1967-01-27 20:10:00,0 +3350,1967-07-12 06:22:00,0 +6380,1969-03-27 23:58:00,0 +2624,1966-08-18 16:02:00,0 +4464,1965-12-31 20:23:00,0 +7261,1965-09-16 15:46:00,0 +2599,1966-08-29 21:36:00,0 +1909,1965-06-01 02:43:00,0 +6183,1967-09-10 22:33:00,0 +5960,1966-04-26 12:36:00,0 +184,1969-02-21 10:13:00,0 +8117,1966-06-14 01:36:00,0 +214,1967-08-29 00:30:00,0 +1412,1965-10-05 20:08:00,0 +8139,1967-01-08 07:26:00,0 +5379,1969-04-10 04:19:00,0 +468,1966-04-18 21:47:00,0 +4719,1965-10-28 20:18:00,0 +6805,1967-11-01 17:37:00,0 +1810,1966-02-24 22:11:00,0 +1532,1969-03-16 17:25:00,0 +6497,1966-08-22 20:59:00,0 +8844,1965-04-10 19:27:00,0 +5236,1969-05-29 01:48:00,0 +1817,1965-06-30 10:46:00,0 +3235,1965-12-16 04:17:00,0 +8386,1967-03-20 21:59:00,0 +9306,1968-08-04 02:57:00,0 +1092,1966-08-20 00:35:00,0 +4427,1968-01-14 17:58:00,0 +9504,1967-04-26 19:10:00,0 +1900,1967-07-03 10:05:00,0 +3124,1969-09-02 13:33:00,0 +4876,1965-02-02 05:25:00,0 +3662,1966-04-01 18:41:00,0 +9423,1967-01-11 23:00:00,0 +5155,1965-03-15 07:40:00,0 +55,1968-07-25 20:22:00,0 +1323,1968-10-09 08:03:00,0 +882,1968-02-13 16:18:00,0 +3661,1969-11-20 07:43:00,0 +6112,1969-08-03 09:32:00,0 +1057,1968-12-04 23:16:00,0 +5982,1969-01-15 17:10:00,0 +2632,1969-03-02 05:06:00,0 +4674,1968-03-23 16:27:00,0 +4335,1967-12-11 08:02:00,0 +2286,1969-05-15 22:58:00,0 +6367,1969-05-17 03:45:00,0 +8325,1969-09-20 06:30:00,0 +5653,1965-06-12 05:44:00,0 +6503,1966-12-20 16:10:00,0 +4501,1969-04-27 17:28:00,0 +241,1966-06-29 23:27:00,0 +6518,1965-11-14 16:44:00,0 +6110,1969-03-02 10:45:00,0 +5848,1968-11-04 22:47:00,0 +109,1966-10-18 15:05:00,0 +7920,1966-11-05 04:19:00,0 +7706,1969-05-18 13:51:00,0 +1293,1966-10-26 06:37:00,0 +6033,1969-01-12 06:24:00,0 +328,1969-03-17 07:37:00,0 +2615,1966-07-18 10:26:00,0 +2292,1968-02-26 09:10:00,0 +9200,1966-05-14 16:06:00,0 +9110,1968-08-11 04:34:00,0 +8312,1965-05-31 15:19:00,0 +4181,1965-05-14 02:29:00,0 +6890,1969-12-18 14:17:00,0 +9929,1968-10-26 20:28:00,0 +5674,1967-12-16 18:48:00,0 +8686,1969-12-05 15:49:00,0 +423,1965-02-04 13:35:00,0 +6508,1965-10-20 18:02:00,0 +171,1968-07-01 12:56:00,0 +549,1969-08-05 03:27:00,0 +9492,1965-09-12 22:42:00,0 +8890,1967-08-19 02:32:00,0 +7544,1969-07-15 13:15:00,0 +3117,1967-10-23 08:53:00,0 +8243,1967-11-24 01:25:00,0 +3111,1966-08-13 19:56:00,0 +923,1966-11-02 08:19:00,0 +5007,1967-05-16 14:55:00,0 +1558,1967-06-16 16:57:00,0 +39,1969-12-24 03:17:00,0 +181,1966-11-09 23:02:00,0 +1139,1968-08-07 12:59:00,0 +4961,1967-05-04 19:48:00,0 +8843,1969-11-16 11:35:00,0 +4089,1965-06-29 21:23:00,0 +3861,1969-12-02 08:15:00,0 +2797,1966-06-15 06:29:00,0 +893,1968-01-25 19:50:00,0 +2819,1965-09-10 14:42:00,0 +4088,1967-11-25 17:20:00,0 +5674,1969-09-08 02:50:00,0 +9655,1966-03-24 15:17:00,0 +2609,1965-10-13 21:59:00,0 +2924,1969-08-31 21:40:00,0 +3898,1969-10-08 22:00:00,0 +2487,1965-06-03 18:18:00,0 +1888,1967-05-03 04:55:00,0 +1725,1969-11-01 14:55:00,0 +6872,1969-11-01 09:01:00,0 +2108,1965-04-08 13:25:00,0 +2761,1969-08-09 01:55:00,0 +9323,1968-04-08 18:38:00,0 +3057,1965-07-23 00:02:00,0 +1076,1965-01-15 16:49:00,0 +8180,1968-06-24 22:34:00,0 +3908,1969-12-28 04:46:00,0 +431,1965-03-29 18:14:00,0 +2543,1966-01-16 00:53:00,0 +5288,1965-10-29 17:38:00,0 +1158,1967-03-22 09:38:00,0 +6423,1969-04-10 13:02:00,0 +4366,1967-04-14 15:47:00,0 +1404,1966-04-28 15:29:00,0 +5862,1967-09-21 17:00:00,0 +7217,1968-06-14 11:56:00,0 +1318,1965-07-30 22:43:00,0 +5506,1968-08-06 18:30:00,0 +6123,1967-11-20 13:31:00,0 +426,1965-02-23 06:49:00,0 +9557,1969-04-17 10:03:00,0 +7729,1966-02-09 12:13:00,0 +3028,1968-03-03 02:52:00,0 +1495,1967-07-18 03:52:00,0 +8691,1965-11-24 03:49:00,0 +6151,1968-02-07 15:51:00,0 +3293,1966-04-14 21:02:00,0 +8882,1966-11-30 19:09:00,0 +5990,1966-04-19 21:28:00,0 +8653,1968-07-22 15:02:00,0 +485,1967-08-03 12:03:00,0 +3277,1968-06-09 10:59:00,0 +4479,1965-12-21 05:32:00,0 +9215,1965-01-06 14:25:00,0 +6369,1966-01-14 00:22:00,0 +2207,1969-03-16 14:28:00,0 +6185,1969-04-18 17:27:00,0 +5726,1966-12-20 10:18:00,0 +9536,1967-07-30 02:33:00,0 +4567,1965-11-15 12:39:00,0 +6007,1969-04-23 19:59:00,0 +1221,1966-07-14 01:32:00,0 +6768,1965-05-26 03:24:00,0 +9621,1967-10-07 18:54:00,0 +4393,1967-02-27 08:16:00,0 +6554,1966-07-10 06:57:00,0 +3079,1967-07-30 06:08:00,0 +3865,1966-06-11 17:26:00,0 +6002,1969-02-20 23:21:00,0 +2059,1965-09-17 09:01:00,0 +3645,1966-05-27 03:09:00,0 +4297,1969-12-09 09:10:00,0 +7163,1968-01-09 16:18:00,0 +3357,1966-06-13 23:18:00,0 +4661,1968-03-30 21:56:00,0 +2035,1969-05-18 11:01:00,0 +4587,1966-11-24 08:15:00,0 +8407,1966-11-26 16:22:00,0 +5907,1967-10-20 20:14:00,0 +3731,1967-08-25 07:42:00,0 +8325,1965-12-13 10:01:00,0 +9812,1966-09-25 04:24:00,0 +9004,1967-10-19 10:37:00,0 +336,1968-05-02 08:21:00,0 +5644,1969-05-28 16:44:00,0 +8649,1969-05-02 23:53:00,0 +1980,1967-01-05 23:42:00,0 +9346,1967-10-11 06:56:00,0 +1895,1965-02-27 00:46:00,0 +1380,1969-09-15 13:05:00,0 +5517,1966-01-14 20:57:00,0 +5401,1965-08-21 05:14:00,0 +5769,1966-03-02 13:38:00,0 +3238,1967-05-05 01:02:00,0 +5850,1965-11-06 06:27:00,0 +1217,1968-07-06 01:22:00,0 +3192,1966-03-06 22:33:00,0 +9422,1966-01-26 20:49:00,0 +3937,1966-08-26 00:52:00,0 +2990,1967-11-15 19:57:00,0 +6976,1965-08-11 17:05:00,0 +9242,1965-01-04 09:56:00,0 +2920,1968-11-04 03:15:00,0 +991,1966-01-14 21:39:00,0 +6673,1965-06-20 18:36:00,0 +8494,1969-11-28 06:52:00,0 +4772,1967-06-29 00:43:00,0 +2484,1967-06-18 16:35:00,0 +1498,1967-04-02 21:14:00,0 +9041,1966-04-06 06:09:00,0 +9985,1968-07-18 07:34:00,0 +5282,1967-08-06 14:04:00,0 +5946,1968-06-25 13:01:00,0 +9867,1966-05-29 13:57:00,0 +2109,1968-01-12 14:55:00,0 +1318,1968-03-29 02:13:00,0 +2193,1966-03-12 05:29:00,0 +3246,1968-08-11 10:53:00,0 +8184,1966-10-20 04:03:00,0 +8000,1968-03-07 09:40:00,0 +7366,1965-11-25 12:20:00,0 +5274,1967-12-23 18:19:00,0 +3012,1967-08-12 05:46:00,0 +7318,1966-07-17 11:48:00,0 +5508,1965-06-16 22:09:00,0 +1247,1967-03-05 21:02:00,0 +1615,1967-05-24 03:17:00,0 +952,1967-11-21 01:46:00,0 +3269,1965-11-01 09:56:00,0 +127,1965-02-12 13:13:00,0 +2420,1969-07-30 14:54:00,0 +5918,1969-02-17 00:35:00,0 +1022,1965-12-21 01:59:00,0 +3482,1967-03-17 12:04:00,0 +9533,1967-12-06 00:42:00,0 +2697,1965-04-30 06:36:00,0 +2744,1969-12-13 14:12:00,0 +4917,1965-12-15 09:33:00,0 +6300,1967-12-12 11:12:00,0 +9701,1969-01-23 09:12:00,0 +3875,1967-09-10 00:21:00,0 +4693,1968-06-11 19:18:00,0 +8462,1968-11-07 16:36:00,0 +7334,1968-03-11 21:00:00,0 +2580,1966-03-19 11:42:00,0 +8952,1966-01-01 19:47:00,0 +521,1966-03-27 02:33:00,0 +3006,1968-09-20 19:05:00,0 +591,1967-11-24 15:06:00,0 +1689,1969-10-10 22:26:00,0 +9420,1969-01-09 16:19:00,0 +1110,1966-09-20 21:52:00,0 +4582,1965-04-05 15:47:00,0 +266,1965-06-07 18:01:00,0 +5658,1967-07-27 07:43:00,0 +1982,1966-11-15 05:19:00,0 +1807,1966-04-11 13:30:00,0 +6181,1965-12-20 08:37:00,0 +2208,1969-11-25 17:14:00,0 +5587,1966-07-02 02:03:00,0 +3649,1965-10-07 21:42:00,0 +4886,1966-07-26 18:21:00,0 +4222,1966-06-11 02:05:00,0 +2037,1966-08-04 18:37:00,0 +3807,1969-01-10 04:02:00,0 +3100,1968-10-06 08:38:00,0 +1434,1968-01-15 09:41:00,0 +6081,1966-09-25 00:43:00,0 +6180,1969-12-15 08:09:00,0 +4691,1965-01-09 10:56:00,0 +1008,1969-12-26 11:57:00,0 +7004,1968-08-20 01:26:00,0 +5830,1969-11-05 02:27:00,0 +8138,1968-12-08 11:15:00,0 +8240,1965-04-29 01:54:00,0 +7079,1966-07-25 11:42:00,0 +6014,1968-05-14 02:37:00,0 +8250,1966-11-25 16:21:00,0 +1450,1965-07-11 08:08:00,0 +9165,1966-01-09 01:22:00,0 +1975,1968-08-01 06:37:00,0 +8053,1966-01-03 07:28:00,0 +6011,1967-05-28 00:33:00,0 +4201,1966-07-06 23:31:00,0 +8153,1968-06-22 00:47:00,0 +9346,1965-01-19 22:24:00,0 +815,1967-06-07 16:03:00,0 +5339,1967-04-14 17:56:00,0 +620,1967-05-25 11:34:00,0 +9900,1965-02-05 06:45:00,0 +1589,1969-07-23 19:12:00,0 +1639,1968-10-08 18:25:00,0 +2443,1968-08-08 20:12:00,0 +9819,1965-08-18 15:21:00,0 +468,1965-03-10 01:35:00,0 +8483,1967-11-05 17:52:00,0 +2488,1969-10-24 20:00:00,0 +2506,1968-02-09 11:00:00,0 +4745,1966-11-24 03:56:00,0 +8344,1965-09-05 17:48:00,0 +5692,1969-05-21 22:57:00,0 +218,1965-05-22 11:27:00,0 +8047,1965-08-16 05:01:00,0 +2577,1966-03-04 08:22:00,0 +9403,1968-05-05 22:35:00,0 +5521,1966-10-02 12:31:00,0 +6965,1967-05-24 15:32:00,0 +2607,1967-10-15 01:02:00,0 +7450,1967-06-13 02:13:00,0 +2093,1966-10-16 01:40:00,0 +6392,1968-06-01 07:27:00,0 +4102,1965-03-14 04:34:00,0 +7362,1966-07-20 03:45:00,0 +4009,1967-09-30 09:45:00,0 +5135,1965-04-16 19:25:00,0 +8865,1968-12-21 08:28:00,0 +4130,1968-10-27 15:07:00,0 +485,1968-01-23 11:25:00,0 +6911,1966-04-27 13:50:00,0 +1793,1967-12-06 06:11:00,0 +1571,1968-06-02 01:20:00,0 +9128,1968-08-16 06:18:00,0 +701,1967-02-22 20:36:00,0 +3188,1966-06-14 14:29:00,0 +1881,1967-06-08 06:26:00,0 +1360,1967-10-21 15:49:00,0 +9821,1967-08-16 11:56:00,0 +6979,1969-03-29 15:19:00,0 +8692,1968-11-22 16:40:00,0 +1202,1965-05-20 14:04:00,0 +1144,1967-01-27 11:09:00,0 +592,1966-05-24 07:15:00,0 +7950,1965-11-08 21:11:00,0 +3164,1968-01-02 08:25:00,0 +7119,1969-04-04 22:58:00,0 +1180,1968-10-12 23:55:00,0 +4985,1966-05-14 05:57:00,0 +4630,1965-10-18 14:16:00,0 +629,1966-04-29 07:17:00,0 +2999,1966-02-22 07:57:00,0 +9645,1968-04-26 04:33:00,0 +5622,1969-01-18 00:29:00,0 +5046,1969-02-08 06:29:00,0 +476,1969-12-16 15:05:00,0 +6155,1966-11-27 08:13:00,0 +7338,1968-07-17 17:39:00,0 +6138,1967-07-03 06:13:00,0 +2741,1966-10-20 15:01:00,0 +7768,1966-09-29 10:01:00,0 +7333,1965-07-03 08:14:00,0 +1067,1967-09-08 17:24:00,0 +5893,1969-11-18 06:26:00,0 +1252,1965-05-09 03:38:00,0 +317,1969-03-15 15:03:00,0 +8087,1966-04-07 04:42:00,0 +8021,1965-09-22 23:36:00,0 +9066,1968-06-08 21:38:00,0 +4539,1965-12-16 01:08:00,0 +1663,1965-10-18 15:29:00,0 +8999,1967-01-28 14:50:00,0 +8242,1966-08-01 05:29:00,0 +3268,1967-05-24 03:41:00,0 +3179,1967-04-16 19:41:00,0 +4605,1966-09-20 15:07:00,0 +5817,1966-08-13 07:39:00,0 +1520,1967-04-12 21:28:00,0 +5106,1967-08-22 10:01:00,0 +9854,1965-04-21 01:01:00,0 +8769,1969-02-01 15:20:00,0 +8995,1967-11-08 12:55:00,0 +2008,1968-12-16 01:44:00,0 +954,1966-07-17 16:28:00,0 +7292,1969-03-19 07:39:00,0 +6640,1967-03-15 21:03:00,0 +3321,1967-04-09 18:03:00,0 +8225,1966-01-31 06:32:00,0 +2229,1965-09-13 18:14:00,0 +1634,1969-07-02 10:47:00,0 +1439,1966-04-05 14:42:00,0 +3404,1965-12-17 01:07:00,0 +128,1965-02-23 21:16:00,0 +5328,1967-10-26 06:35:00,0 +9042,1968-04-25 13:05:00,0 +7722,1969-09-10 00:56:00,0 +7505,1967-03-22 05:55:00,0 +9636,1969-10-05 12:53:00,0 +5160,1969-01-26 20:32:00,0 +9783,1968-07-21 02:09:00,0 +9360,1968-07-27 21:07:00,0 +220,1966-08-19 11:05:00,0 +7936,1967-08-08 09:23:00,0 +7645,1969-12-30 23:22:00,0 +6844,1966-04-09 14:18:00,0 +3960,1968-11-18 05:41:00,0 +9404,1965-09-26 21:05:00,0 +3680,1965-03-11 13:09:00,0 +900,1969-01-20 12:19:00,0 +9056,1966-11-23 16:13:00,0 +4212,1966-08-05 21:25:00,0 +6715,1968-12-30 12:10:00,0 +5820,1969-08-21 01:22:00,0 +6577,1967-02-04 11:52:00,0 +3112,1965-06-20 17:25:00,0 +5060,1968-07-20 05:52:00,0 +795,1965-05-13 12:23:00,0 +2084,1968-06-09 02:46:00,0 +5195,1965-04-23 16:48:00,0 +6954,1968-03-24 12:38:00,0 +5579,1967-01-25 02:05:00,0 +7375,1965-09-25 15:18:00,0 +9245,1966-02-01 06:03:00,0 +6851,1965-03-24 11:42:00,0 +9092,1966-11-03 17:47:00,0 +4305,1967-04-21 20:07:00,0 +7299,1966-12-17 20:47:00,0 +8703,1969-07-04 06:18:00,0 +2101,1968-02-02 08:16:00,0 +5276,1965-08-02 04:04:00,0 +7830,1965-10-15 19:20:00,0 +7150,1968-04-20 11:11:00,0 +1356,1965-03-01 21:44:00,0 +846,1966-02-17 12:01:00,0 +1138,1969-03-03 01:28:00,0 +6503,1968-10-08 17:31:00,0 +8450,1966-08-04 11:47:00,0 +2101,1965-06-19 17:22:00,0 +8449,1968-06-01 12:21:00,0 +5334,1965-05-20 17:55:00,0 +2765,1969-05-31 19:19:00,0 +8297,1965-09-12 10:11:00,0 +3448,1968-09-01 10:15:00,0 +5400,1966-02-03 16:22:00,0 +5744,1969-07-04 12:52:00,0 +2082,1967-07-27 22:54:00,0 +842,1969-09-05 05:26:00,0 +5670,1965-12-30 22:02:00,0 +8449,1966-05-22 23:59:00,0 +4976,1969-05-03 10:57:00,0 +4121,1966-10-05 15:15:00,0 +875,1966-09-22 23:51:00,0 +9065,1965-07-01 12:58:00,0 +3642,1969-02-05 13:16:00,0 +7398,1969-09-07 23:10:00,0 +627,1966-11-16 04:48:00,0 +2302,1966-12-26 01:32:00,0 +4732,1968-03-25 14:32:00,0 +4834,1965-12-05 21:43:00,0 +5740,1968-06-07 19:05:00,0 +8840,1968-11-16 21:26:00,0 +1232,1969-05-02 13:48:00,0 +9139,1967-01-10 23:21:00,0 +4597,1965-08-27 16:22:00,0 +3319,1967-07-06 19:04:00,0 +4900,1966-09-06 06:03:00,0 +9198,1967-07-11 10:36:00,0 +7138,1968-08-14 20:22:00,0 +4630,1965-11-14 00:32:00,0 +1485,1968-05-03 04:28:00,0 +489,1968-08-23 14:57:00,0 +7669,1969-04-20 00:07:00,0 +260,1965-04-26 14:27:00,0 +3526,1967-11-08 02:51:00,0 +6897,1966-12-15 18:28:00,0 +6630,1967-11-01 22:37:00,0 +4989,1965-08-15 21:35:00,0 +7034,1968-03-20 23:17:00,0 +5520,1967-01-15 20:14:00,0 +6636,1968-06-16 12:10:00,0 +9487,1967-04-04 12:51:00,0 +1623,1968-01-12 19:45:00,0 +1846,1966-03-19 17:18:00,0 +9963,1969-08-07 09:02:00,0 +6600,1969-04-17 22:12:00,0 +3513,1968-02-17 10:35:00,0 +1099,1968-06-06 01:43:00,0 +6267,1966-04-10 13:22:00,0 +2830,1968-07-25 07:31:00,0 +3303,1965-12-28 05:43:00,0 +2906,1965-07-04 08:42:00,0 +6948,1965-12-15 01:32:00,0 +7126,1967-07-26 06:11:00,0 +7327,1966-04-23 09:47:00,0 +7681,1966-11-04 02:43:00,0 +3089,1967-05-14 16:47:00,0 +5045,1967-08-16 10:54:00,0 +4477,1969-08-11 12:59:00,0 +3816,1965-03-05 10:12:00,0 +2116,1965-12-29 08:18:00,0 +563,1966-06-01 14:58:00,0 +9970,1965-05-15 03:51:00,0 +9055,1969-01-09 20:38:00,0 +8803,1969-11-20 09:02:00,0 +1476,1969-02-16 10:12:00,0 +4849,1969-03-10 18:47:00,0 +3353,1968-04-22 12:23:00,0 +6906,1966-11-07 02:58:00,0 +2687,1968-10-16 01:31:00,0 +2440,1967-07-26 22:07:00,0 +4617,1968-06-04 17:56:00,0 +5024,1968-09-15 16:23:00,0 +1597,1967-01-13 13:52:00,0 +9369,1966-03-13 04:13:00,0 +1555,1965-10-16 13:46:00,0 +2380,1966-03-14 10:59:00,0 +2128,1966-01-09 13:40:00,0 +6528,1966-05-28 20:21:00,0 +1979,1967-05-20 12:41:00,0 +4925,1968-03-14 05:52:00,0 +3763,1966-02-28 21:49:00,0 +9414,1967-04-24 08:19:00,0 +3517,1969-07-22 07:50:00,0 +12,1968-01-14 08:41:00,0 +5655,1968-02-15 06:45:00,0 +5886,1968-07-15 15:38:00,0 +4219,1967-07-10 05:27:00,0 +99,1965-05-27 09:36:00,0 +2966,1968-07-20 01:59:00,0 +8541,1967-10-06 04:10:00,0 +1674,1965-09-22 02:05:00,0 +7320,1966-03-05 03:34:00,0 +9375,1967-04-30 00:41:00,0 +8461,1965-01-15 15:36:00,0 +4116,1966-01-07 23:40:00,0 +9836,1969-09-10 23:15:00,0 +3757,1968-11-19 17:12:00,0 +3962,1965-01-23 02:11:00,0 +8371,1968-12-07 11:00:00,0 +4470,1965-06-12 23:35:00,0 +7542,1966-05-19 10:09:00,0 +3195,1965-03-06 11:18:00,0 +6363,1968-04-27 19:46:00,0 +5114,1965-01-27 00:27:00,0 +1254,1969-09-15 16:08:00,0 +4746,1968-02-05 16:42:00,0 +2093,1969-03-27 21:52:00,0 +5571,1968-04-11 13:02:00,0 +7729,1968-06-08 23:25:00,0 +8024,1967-12-13 03:34:00,0 +8217,1967-09-22 00:55:00,0 +1482,1966-05-12 02:38:00,0 +8019,1966-02-08 17:00:00,0 +0,1968-03-25 07:14:00,0 +3245,1967-01-01 06:51:00,0 +6753,1966-10-03 05:00:00,0 +8926,1969-09-29 22:21:00,0 +3797,1968-01-26 18:07:00,0 +337,1967-05-25 10:27:00,0 +3224,1969-07-29 19:28:00,0 +8611,1969-09-04 02:37:00,0 +3350,1965-06-04 13:33:00,0 +5662,1969-01-17 19:19:00,0 +7613,1967-12-17 13:25:00,0 +1398,1966-03-20 03:33:00,0 +6505,1965-03-27 16:27:00,0 +7768,1968-09-23 04:14:00,0 +7304,1966-04-03 20:59:00,0 +1580,1965-11-12 15:06:00,0 +2629,1965-05-21 09:43:00,0 +2407,1967-03-06 04:11:00,0 +3437,1966-09-07 20:41:00,0 +6715,1965-06-29 13:54:00,0 +851,1966-12-14 20:47:00,0 +550,1966-06-01 15:14:00,0 +498,1965-02-18 17:40:00,0 +4793,1966-12-03 01:40:00,0 +200,1968-07-23 08:37:00,0 +6964,1965-10-30 14:31:00,0 +6200,1965-08-27 16:54:00,0 +6087,1966-06-03 15:38:00,0 +9040,1969-03-12 23:31:00,0 +4840,1967-02-09 22:44:00,0 +2868,1967-08-18 11:40:00,0 +3349,1966-08-20 21:31:00,0 +3723,1968-06-23 01:35:00,0 +8674,1968-08-08 00:52:00,0 +6533,1968-10-18 01:29:00,0 +28,1968-04-24 10:23:00,0 +1633,1966-07-03 01:22:00,0 +1732,1969-07-27 22:48:00,0 +5986,1968-07-21 10:42:00,0 +7528,1967-03-01 16:01:00,0 +5067,1965-03-27 03:21:00,0 +6276,1965-11-19 19:47:00,0 +9340,1968-11-01 08:34:00,0 +9203,1966-02-08 11:10:00,0 +1628,1969-02-23 13:37:00,0 +5244,1966-01-20 12:39:00,0 +574,1969-06-24 14:28:00,0 +911,1967-01-31 00:16:00,0 +342,1965-03-03 19:23:00,0 +6068,1967-03-02 18:46:00,0 +4318,1967-08-30 20:10:00,0 +3805,1969-03-16 21:30:00,0 +277,1967-07-13 10:57:00,0 +9106,1968-04-24 19:32:00,0 +5055,1967-10-30 11:32:00,0 +4699,1969-10-23 05:52:00,0 +5917,1967-01-15 05:16:00,0 +2175,1968-06-26 11:16:00,0 +3394,1967-03-29 22:41:00,0 +6862,1966-02-12 22:53:00,0 +8124,1965-05-26 22:14:00,0 +1870,1968-07-11 01:41:00,0 +7016,1969-06-17 01:16:00,0 +3810,1968-03-04 16:16:00,0 +5219,1968-06-18 18:33:00,0 +9785,1965-08-01 00:40:00,0 +6734,1967-02-12 20:57:00,0 +3953,1965-06-04 15:59:00,0 +9746,1969-02-08 12:48:00,0 +7515,1968-04-01 13:59:00,0 +3157,1969-06-09 16:23:00,0 +9323,1968-08-25 21:35:00,0 +1338,1968-02-20 17:17:00,0 +3225,1969-01-01 20:33:00,0 +3416,1969-05-23 14:05:00,0 +7415,1969-10-29 13:07:00,0 +6649,1965-04-01 12:52:00,0 +3066,1968-02-17 14:18:00,0 +5960,1967-02-21 10:20:00,0 +387,1967-10-11 03:46:00,0 +6173,1968-05-20 23:49:00,0 +1625,1968-10-05 17:12:00,0 +2465,1968-06-04 12:02:00,0 +2999,1969-11-14 16:39:00,0 +1095,1969-04-24 04:17:00,0 +3175,1967-11-05 13:49:00,0 +6650,1969-12-14 01:05:00,0 +3459,1967-09-11 13:48:00,0 +739,1969-10-30 12:13:00,0 +1073,1966-03-06 06:07:00,0 +9885,1968-03-02 18:11:00,0 +9685,1965-07-05 09:45:00,0 +1920,1968-10-19 10:00:00,0 +6811,1967-06-25 00:39:00,0 +4831,1967-10-03 13:18:00,0 +7628,1969-11-29 18:55:00,0 +6426,1965-06-27 08:47:00,0 +5434,1969-07-02 05:21:00,0 +1136,1968-03-19 04:28:00,0 +608,1965-06-29 17:14:00,0 +9508,1967-09-09 13:22:00,0 +8169,1968-08-31 17:10:00,0 +4553,1967-07-03 01:32:00,0 +9071,1969-11-21 08:56:00,0 +6792,1968-09-16 08:33:00,0 +3765,1965-11-08 18:52:00,0 +1209,1965-05-13 19:52:00,0 +4181,1968-09-02 05:04:00,0 +5655,1969-03-11 21:46:00,0 +1196,1966-12-03 17:13:00,0 +8306,1969-02-03 01:32:00,0 +5784,1966-08-25 23:06:00,0 +4905,1966-02-23 15:41:00,0 +1332,1968-09-18 02:00:00,0 +1869,1968-06-19 05:26:00,0 +2490,1969-10-06 06:57:00,0 +6121,1965-02-16 20:54:00,0 +334,1968-04-25 04:47:00,0 +6862,1966-01-18 14:39:00,0 +7331,1966-07-09 13:12:00,0 +8123,1967-01-08 02:38:00,0 +2275,1966-06-29 14:44:00,0 +3527,1967-12-15 16:40:00,0 +6785,1965-03-28 15:58:00,0 +4692,1967-12-29 21:15:00,0 +3018,1965-03-23 22:15:00,0 +5131,1969-05-07 09:51:00,0 +4558,1967-09-30 21:31:00,0 +9388,1967-03-31 14:08:00,0 +7754,1965-04-19 19:10:00,0 +6625,1967-03-17 11:05:00,0 +336,1967-08-01 03:31:00,0 +3720,1969-02-20 06:23:00,0 +6556,1968-01-09 17:22:00,0 +1020,1966-09-19 03:27:00,0 +2156,1965-10-27 08:00:00,0 +16,1969-09-02 04:48:00,0 +7437,1968-06-24 22:51:00,0 +6337,1965-05-07 15:31:00,0 +9801,1966-07-30 02:55:00,0 +1184,1968-05-31 04:24:00,0 +4415,1965-12-18 06:51:00,0 +1576,1968-12-17 22:27:00,0 +9538,1967-07-30 06:18:00,0 +3263,1966-08-12 03:55:00,0 +6237,1967-02-10 22:14:00,0 +66,1965-12-20 11:58:00,0 +5355,1966-09-13 03:17:00,0 +9496,1969-03-10 18:14:00,0 +8951,1969-01-13 15:03:00,0 +2620,1966-03-29 05:12:00,0 +1897,1966-05-25 08:10:00,0 +8863,1966-04-18 14:47:00,0 +8686,1966-09-21 18:53:00,0 +9357,1968-01-19 15:15:00,0 +3326,1966-10-18 23:28:00,0 +9696,1969-07-16 09:14:00,0 +160,1969-02-10 10:52:00,0 +4565,1969-07-30 06:25:00,0 +1656,1965-12-15 09:55:00,0 +5093,1966-01-30 10:36:00,0 +6383,1967-03-04 04:30:00,0 +6096,1969-04-28 16:41:00,0 +9526,1967-10-04 17:51:00,0 +116,1966-04-11 10:57:00,0 +7428,1966-07-30 09:13:00,0 +3506,1965-10-12 04:49:00,0 +9909,1965-09-03 23:53:00,0 +4549,1966-01-10 11:54:00,0 +3336,1966-01-06 18:28:00,0 +856,1965-11-11 20:26:00,0 +7506,1965-10-26 11:54:00,0 +8182,1969-08-18 07:18:00,0 +3922,1966-09-30 10:34:00,0 +978,1967-12-04 19:46:00,0 +8183,1967-01-21 11:36:00,0 +2432,1968-04-28 01:34:00,0 +4549,1968-08-21 02:21:00,0 +9259,1969-12-11 23:29:00,0 +1765,1965-03-23 07:29:00,0 +7886,1965-05-16 08:49:00,0 +876,1967-06-14 09:18:00,0 +5447,1965-04-12 01:38:00,0 +6999,1968-02-25 20:49:00,0 +4971,1969-09-08 00:27:00,0 +4995,1966-01-07 11:59:00,0 +4014,1966-10-09 14:48:00,0 +4092,1967-03-29 02:06:00,0 +2249,1969-08-16 07:31:00,0 +1858,1968-08-27 19:09:00,0 +5537,1969-03-16 18:34:00,0 +1109,1969-10-24 01:20:00,0 +5159,1969-05-29 16:10:00,0 +9367,1967-02-22 06:14:00,0 +5124,1967-10-16 20:35:00,0 +3114,1965-10-23 11:33:00,0 +2880,1969-07-12 12:34:00,0 +7940,1968-06-26 08:57:00,0 +3528,1968-03-11 16:05:00,0 +5025,1966-03-08 11:25:00,0 +9485,1966-02-10 05:13:00,0 +4151,1965-01-20 13:24:00,0 +1231,1968-09-03 02:01:00,0 +280,1965-05-12 03:25:00,0 +7429,1968-10-31 16:25:00,0 +51,1969-10-24 00:29:00,0 +6987,1969-03-03 00:50:00,0 +6845,1969-11-02 23:53:00,0 +8627,1966-01-26 01:37:00,0 +8447,1966-05-06 07:07:00,0 +4118,1967-12-28 15:30:00,0 +3515,1969-08-27 04:37:00,0 +2931,1967-01-05 06:29:00,0 +4109,1965-06-25 23:29:00,0 +3389,1968-02-20 06:05:00,0 +4245,1967-01-09 15:44:00,0 +6608,1969-07-26 07:19:00,0 +6335,1968-03-12 06:14:00,0 +7748,1966-03-23 22:19:00,0 +1320,1968-10-14 20:03:00,0 +5101,1968-05-09 01:59:00,0 +2946,1968-07-17 18:18:00,0 +308,1965-10-26 20:35:00,0 +1218,1968-09-18 08:40:00,0 +5068,1965-08-01 20:16:00,0 +1717,1966-12-18 05:39:00,0 +5932,1969-12-19 23:07:00,0 +3497,1966-08-23 00:41:00,0 +349,1967-03-27 19:33:00,0 +4499,1969-04-11 04:04:00,0 +4803,1968-12-15 19:43:00,0 +1702,1966-12-16 18:30:00,0 +2353,1966-12-12 01:58:00,0 +803,1968-05-17 16:58:00,0 +8282,1965-07-02 03:14:00,0 +450,1968-05-26 09:47:00,0 +2472,1968-05-05 17:13:00,0 +8616,1969-02-24 00:48:00,0 +3653,1967-12-02 20:55:00,0 +8294,1967-01-30 21:45:00,0 +1959,1966-12-19 05:29:00,0 +627,1967-03-14 06:09:00,0 +1548,1968-05-06 05:12:00,0 +2376,1967-06-21 13:29:00,0 +1068,1965-01-18 21:25:00,0 +7299,1965-11-26 23:29:00,0 +9740,1966-03-17 19:16:00,0 +9454,1969-07-14 04:05:00,0 +7711,1969-10-22 02:29:00,0 +5027,1969-11-30 07:14:00,0 +1088,1967-06-11 12:22:00,0 +8130,1967-04-12 08:19:00,0 +2829,1966-02-02 10:17:00,0 +1988,1968-06-23 05:48:00,0 +8972,1968-09-19 01:38:00,0 +4538,1969-01-08 10:28:00,0 +4699,1968-08-12 01:08:00,0 +1091,1967-03-28 11:52:00,0 +3352,1968-05-28 01:16:00,0 +7367,1966-05-18 13:25:00,0 +2731,1968-07-07 10:15:00,0 +8584,1967-12-19 23:46:00,0 +8424,1968-02-17 15:47:00,0 +6708,1968-10-07 10:48:00,0 +3631,1967-08-15 12:36:00,0 +2425,1965-10-30 04:02:00,0 +9464,1967-09-17 17:02:00,0 +337,1969-11-12 11:17:00,0 +7937,1967-03-06 21:46:00,0 +7828,1969-03-25 05:02:00,0 +4076,1968-05-18 22:27:00,0 +8542,1968-04-27 16:11:00,0 +6304,1965-04-22 13:32:00,0 +1867,1967-04-22 19:39:00,0 +4885,1969-03-01 05:54:00,0 +8657,1969-06-05 17:50:00,0 +9510,1967-06-29 17:30:00,0 +319,1965-07-10 14:20:00,0 +5357,1967-02-12 02:40:00,0 +9443,1967-09-26 10:15:00,0 +4860,1969-06-25 05:36:00,0 +5094,1965-05-22 18:47:00,0 +3658,1966-09-07 00:35:00,0 +3410,1968-09-18 13:07:00,0 +8751,1968-03-22 07:07:00,0 +3367,1967-10-08 09:31:00,0 +5221,1967-10-22 20:51:00,0 +3741,1966-03-21 11:18:00,0 +6536,1966-11-01 08:44:00,0 +8009,1969-06-28 03:37:00,0 +340,1967-05-03 16:58:00,0 +7722,1969-07-27 20:44:00,0 +1093,1966-04-23 11:45:00,0 +18,1965-12-10 19:44:00,0 +5758,1969-04-25 21:43:00,0 +4390,1967-07-11 03:02:00,0 +3799,1968-04-24 04:30:00,0 +1233,1969-06-20 21:54:00,0 +9355,1967-12-16 05:11:00,0 +2295,1965-01-22 19:39:00,0 +3150,1968-08-28 10:09:00,0 +2644,1966-08-05 01:42:00,0 +8865,1968-06-11 15:13:00,0 +8808,1968-05-06 08:37:00,0 +2240,1966-06-17 00:27:00,0 +7669,1967-11-13 15:07:00,0 +9790,1966-08-31 22:53:00,0 +5763,1966-03-12 02:23:00,0 +6328,1967-08-11 16:45:00,0 +339,1968-03-08 20:11:00,0 +690,1969-08-05 04:59:00,0 +1286,1967-08-13 03:19:00,0 +765,1966-02-09 22:25:00,0 +5213,1966-02-19 02:40:00,0 +7982,1967-03-28 07:45:00,0 +2534,1969-07-02 18:18:00,0 +7993,1965-11-05 05:14:00,0 +2292,1968-05-16 03:57:00,0 +4629,1969-05-03 03:41:00,0 +4346,1967-10-02 02:42:00,0 +1062,1965-03-11 16:52:00,0 +8211,1966-10-24 16:14:00,0 +127,1968-08-11 14:19:00,0 +8318,1969-07-29 22:59:00,0 +5266,1967-06-29 11:45:00,0 +6271,1967-01-18 19:07:00,0 +8011,1966-04-18 07:42:00,0 +8206,1968-03-12 02:40:00,0 +9685,1965-06-23 11:06:00,0 +4693,1968-04-03 18:13:00,0 +2741,1966-06-07 17:06:00,0 +105,1968-11-30 18:13:00,0 +8570,1967-10-13 20:56:00,0 +67,1967-02-06 21:43:00,0 +4594,1969-10-13 19:40:00,0 +9326,1967-03-23 17:44:00,0 +2831,1966-01-30 08:56:00,0 +9624,1968-06-29 21:22:00,0 +4318,1966-10-24 20:50:00,0 +7911,1965-04-18 11:32:00,0 +4727,1969-09-12 23:40:00,0 +501,1967-05-13 03:59:00,0 +9638,1966-08-15 19:26:00,0 +4157,1966-08-23 05:07:00,0 +9749,1965-06-17 19:11:00,0 +4403,1968-02-11 05:29:00,0 +385,1969-03-13 09:52:00,0 +4357,1966-07-13 13:01:00,0 +2463,1967-01-09 19:34:00,0 +9716,1967-02-23 03:43:00,0 +7302,1965-01-22 19:30:00,0 +3552,1965-08-25 20:48:00,0 +7565,1967-05-11 02:32:00,0 +7527,1966-12-24 22:32:00,0 +5930,1967-05-09 05:19:00,0 +5258,1967-01-11 11:29:00,0 +8497,1969-06-16 08:45:00,0 +6434,1968-12-15 14:46:00,0 +8621,1966-08-19 21:55:00,0 +4699,1966-01-05 23:43:00,0 +531,1966-02-21 12:27:00,0 +9715,1965-01-04 01:00:00,0 +8323,1969-01-29 03:13:00,0 +3134,1966-10-04 16:59:00,0 +1269,1969-09-24 22:03:00,0 +9625,1969-07-18 12:37:00,0 +8254,1967-03-14 19:25:00,0 +1262,1969-10-12 15:23:00,0 +6150,1969-11-11 09:36:00,0 +1069,1968-10-16 12:50:00,0 +7347,1965-07-03 02:45:00,0 +1490,1968-07-10 20:50:00,0 +2671,1966-01-27 09:31:00,0 +5647,1968-09-27 17:13:00,0 +5903,1967-08-24 11:54:00,0 +2149,1969-11-18 19:20:00,0 +8780,1969-11-24 08:28:00,0 +6279,1966-02-03 04:48:00,0 +6896,1968-08-10 09:10:00,0 +9137,1967-06-04 14:32:00,0 +3313,1969-11-06 14:50:00,0 +6193,1967-11-07 15:30:00,0 +4998,1968-09-04 16:05:00,0 +9635,1967-06-19 21:40:00,0 +891,1966-09-28 19:45:00,0 +1559,1969-02-24 02:04:00,0 +3379,1965-05-15 19:09:00,0 +1486,1969-05-21 04:11:00,0 +1248,1968-03-12 03:14:00,0 +1621,1966-11-06 19:33:00,0 +4330,1966-04-17 08:33:00,0 +3250,1968-11-13 21:15:00,0 +1564,1966-03-28 15:27:00,0 +3115,1967-01-27 20:41:00,0 +1288,1967-02-07 08:42:00,0 +5940,1967-11-10 01:09:00,0 +9766,1968-05-09 19:47:00,0 +82,1967-08-30 14:19:00,0 +7856,1968-08-13 12:48:00,0 +1811,1969-09-10 03:09:00,0 +7967,1965-01-19 10:14:00,0 +9670,1968-06-25 04:48:00,0 +8846,1969-10-30 18:51:00,0 +791,1966-04-03 02:58:00,0 +2388,1967-07-25 01:24:00,0 +9098,1965-09-30 21:46:00,0 +3218,1966-05-18 21:07:00,0 +4995,1965-07-16 14:05:00,0 +9783,1966-08-03 12:01:00,0 +7044,1967-02-20 05:53:00,0 +5540,1969-10-09 12:39:00,0 +1679,1968-01-22 09:16:00,0 +1467,1965-10-18 12:44:00,0 +579,1968-12-07 08:31:00,0 +1220,1967-02-28 09:16:00,0 +9066,1965-06-06 13:24:00,0 +5533,1967-07-23 03:38:00,0 +8540,1967-05-19 18:29:00,0 +5620,1966-11-01 10:44:00,0 +3125,1965-03-09 02:12:00,0 +7163,1968-01-07 09:14:00,0 +8887,1969-10-23 19:45:00,0 +858,1966-03-17 00:58:00,0 +3398,1969-03-10 11:54:00,0 +5401,1968-10-13 20:52:00,0 +3260,1965-07-16 19:03:00,0 +6304,1965-08-17 23:12:00,0 +5331,1967-12-15 05:19:00,0 +3370,1966-12-08 06:35:00,0 +3236,1965-11-21 04:13:00,0 +7100,1966-08-11 12:32:00,0 +828,1966-05-29 08:57:00,0 +389,1969-08-04 10:31:00,0 +576,1967-08-24 07:31:00,0 +4389,1968-07-14 00:00:00,0 +3941,1969-04-07 22:03:00,0 +2227,1967-10-19 21:29:00,0 +2674,1968-07-23 00:08:00,0 +8052,1965-02-13 09:56:00,0 +7234,1966-12-21 16:05:00,0 +4922,1965-11-20 09:22:00,0 +3300,1969-06-30 04:29:00,0 +4015,1967-09-01 09:03:00,0 +7362,1968-01-29 19:33:00,0 +1789,1966-05-29 16:31:00,0 +9605,1966-12-09 08:46:00,0 +1160,1966-02-14 12:14:00,0 +9246,1966-12-03 05:21:00,0 +5395,1965-03-15 11:34:00,0 +9556,1967-11-21 20:49:00,0 +416,1966-10-06 06:37:00,0 +2733,1969-10-25 15:48:00,0 +9339,1966-02-23 07:42:00,0 +5160,1968-01-05 23:06:00,0 +1522,1967-07-17 01:37:00,0 +6446,1965-05-31 08:58:00,0 +2961,1969-01-30 00:55:00,0 +5079,1968-08-08 21:30:00,0 +2053,1969-06-27 02:03:00,0 +8331,1965-02-07 15:33:00,0 +5196,1965-05-21 19:53:00,0 +859,1968-10-07 04:39:00,0 +2514,1969-11-01 14:22:00,0 +2176,1965-02-12 00:55:00,0 +7515,1969-06-22 23:42:00,0 +7953,1965-11-02 11:23:00,0 +9167,1966-08-03 04:27:00,0 +9377,1968-09-29 17:01:00,0 +4848,1968-02-12 20:31:00,0 +7849,1969-04-09 11:56:00,0 +9824,1967-12-01 20:27:00,0 +2292,1969-12-22 10:32:00,0 +2810,1969-07-03 02:16:00,0 +5718,1966-01-26 22:58:00,0 +8262,1968-11-04 08:01:00,0 +2523,1965-03-03 12:26:00,0 +8459,1967-03-17 01:28:00,0 +1814,1968-10-30 06:06:00,0 +3923,1968-07-16 00:03:00,0 +8011,1968-05-23 17:07:00,0 +7306,1969-09-21 13:40:00,0 +4397,1969-01-24 23:05:00,0 +8866,1969-12-27 18:16:00,0 +1268,1967-02-27 19:17:00,0 +8996,1966-10-11 16:17:00,0 +9193,1965-02-22 06:32:00,0 +381,1967-07-26 12:13:00,0 +3043,1968-04-14 01:50:00,0 +9326,1968-10-21 11:21:00,0 +8402,1969-12-02 23:16:00,0 +6314,1969-09-29 08:43:00,0 +7155,1969-03-25 20:06:00,0 +246,1969-01-16 23:34:00,0 +9464,1966-07-09 04:31:00,0 +957,1969-11-03 23:18:00,0 +3759,1969-02-13 18:37:00,0 +4841,1966-03-24 14:38:00,0 +9686,1965-01-14 03:02:00,0 +2159,1967-11-21 13:56:00,0 +3301,1966-01-07 11:53:00,0 +64,1969-10-11 22:33:00,0 +7593,1967-06-08 12:13:00,0 +8264,1966-07-22 11:01:00,0 +9906,1969-06-18 14:14:00,0 +1544,1965-07-13 02:03:00,0 +5754,1967-02-22 18:25:00,0 +3290,1969-08-28 14:35:00,0 +125,1968-08-06 03:57:00,0 +5147,1967-01-12 21:21:00,0 +3359,1966-08-12 00:41:00,0 +7370,1965-07-08 02:28:00,0 +8450,1966-06-19 11:24:00,0 +6533,1969-09-26 13:45:00,0 +6213,1965-03-20 21:33:00,0 +8217,1968-01-12 07:48:00,0 +6649,1968-06-21 19:20:00,0 +7508,1968-11-24 23:48:00,0 +2641,1968-07-04 02:28:00,0 +3283,1967-07-22 10:49:00,0 +2185,1965-07-26 01:59:00,0 +1268,1968-06-01 02:59:00,0 +6294,1965-10-24 22:59:00,0 +9477,1965-01-08 21:37:00,0 +8764,1966-07-15 07:43:00,0 +8967,1966-06-03 20:29:00,0 +8558,1966-02-17 16:49:00,0 +9039,1968-10-31 19:18:00,0 +3154,1965-01-30 14:16:00,0 +8075,1966-11-30 19:13:00,0 +3000,1969-03-21 13:59:00,0 +3094,1969-01-07 21:05:00,0 +5799,1967-02-25 01:23:00,0 +8795,1969-10-02 23:51:00,0 +7806,1968-01-15 16:43:00,0 +220,1966-03-17 14:54:00,0 +1919,1966-04-30 16:04:00,0 +3108,1965-05-17 22:55:00,0 +4004,1965-09-22 02:59:00,0 +2868,1968-07-10 05:24:00,0 +5281,1967-10-04 17:04:00,0 +496,1966-10-03 23:50:00,0 +1395,1966-05-29 07:23:00,0 +1637,1966-09-27 13:45:00,0 +8402,1968-05-07 06:39:00,0 +4469,1969-01-12 01:40:00,0 +1772,1966-07-20 04:57:00,0 +3023,1968-03-26 22:59:00,0 +8139,1967-02-06 01:26:00,0 +4525,1967-07-04 14:40:00,0 +979,1967-03-17 12:03:00,0 +3318,1969-11-15 12:51:00,0 +7892,1965-09-15 10:50:00,0 +6360,1966-06-24 03:19:00,0 +7116,1967-06-17 08:47:00,0 +7592,1966-05-20 00:00:00,0 +7168,1966-02-15 01:56:00,0 +5998,1967-04-26 20:06:00,0 +9821,1967-10-12 09:52:00,0 +709,1967-06-15 09:56:00,0 +5368,1968-04-14 18:35:00,0 +5576,1967-01-03 05:43:00,0 +8086,1965-02-27 01:39:00,0 +5046,1966-03-18 07:49:00,0 +5478,1969-07-21 15:36:00,0 +7502,1969-09-14 21:42:00,0 +8255,1966-04-22 16:38:00,0 +6407,1966-04-06 11:50:00,0 +3587,1968-12-27 03:50:00,0 +3349,1965-01-15 06:56:00,0 +7821,1966-02-26 21:01:00,0 +3602,1969-03-07 14:05:00,0 +3125,1965-12-26 15:16:00,0 +1919,1969-11-12 16:34:00,0 +434,1966-07-24 23:50:00,0 +836,1965-11-18 09:34:00,0 +6760,1965-11-23 10:36:00,0 +8389,1966-10-25 11:49:00,0 +2380,1966-06-12 07:42:00,0 +5663,1968-06-14 19:01:00,0 +2369,1967-02-08 07:09:00,0 +3728,1969-02-23 15:56:00,0 +7359,1965-08-03 08:46:00,0 +3020,1969-11-09 08:08:00,0 +6306,1968-10-24 20:09:00,0 +8481,1969-02-26 19:35:00,0 +7890,1969-06-22 00:37:00,0 +6620,1968-11-10 17:08:00,0 +4548,1967-11-25 13:25:00,0 +3150,1968-02-07 22:43:00,0 +4065,1965-02-16 18:56:00,0 +3113,1966-11-21 16:56:00,0 +2520,1967-10-17 05:01:00,0 +6615,1965-06-05 07:06:00,0 +7740,1969-04-22 03:21:00,0 +7002,1967-08-20 14:01:00,0 +4671,1965-10-25 14:48:00,0 +5728,1968-02-15 21:31:00,0 +8517,1966-01-02 22:17:00,0 +5677,1969-09-23 05:25:00,0 +8684,1969-12-20 06:15:00,0 +5382,1968-04-11 10:03:00,0 +8275,1968-12-12 22:41:00,0 +978,1966-06-18 00:38:00,0 +6733,1968-03-04 22:45:00,0 +6048,1968-03-31 10:06:00,0 +2804,1965-05-05 06:02:00,0 +9020,1965-07-26 18:27:00,0 +5997,1965-07-03 09:59:00,0 +4793,1968-04-04 15:58:00,0 +9434,1966-08-19 15:12:00,0 +7279,1968-07-10 09:13:00,0 +5938,1967-11-29 07:24:00,0 +3047,1966-10-27 07:47:00,0 +552,1967-12-11 19:33:00,0 +6892,1965-11-24 22:13:00,0 +3831,1969-12-16 04:57:00,0 +656,1965-07-24 08:20:00,0 +5039,1968-04-03 07:05:00,0 +907,1965-11-27 04:04:00,0 +4670,1965-02-12 07:23:00,0 +4101,1968-10-19 10:49:00,0 +6738,1969-02-15 20:16:00,0 +7362,1968-02-06 22:40:00,0 +1475,1965-01-19 05:00:00,0 +7915,1969-04-22 13:15:00,0 +1619,1968-12-22 16:10:00,0 +7395,1968-01-12 09:21:00,0 +969,1969-03-09 08:03:00,0 +3315,1968-11-24 23:38:00,0 +1969,1965-07-16 07:31:00,0 +4853,1967-08-15 04:09:00,0 +3659,1969-05-19 18:07:00,0 +1928,1966-03-20 16:50:00,0 +4171,1968-07-14 13:53:00,0 +1254,1966-03-19 21:44:00,0 +2513,1967-03-02 05:37:00,0 +845,1967-07-29 17:42:00,0 +655,1969-01-20 20:25:00,0 +9981,1967-03-15 15:59:00,0 +514,1968-07-01 07:53:00,0 +3782,1965-07-27 21:21:00,0 +7501,1965-06-16 19:11:00,0 +7008,1965-03-12 00:38:00,0 +7583,1969-03-26 15:09:00,0 +393,1966-11-09 04:52:00,0 +9117,1969-03-02 03:14:00,0 +8451,1968-04-23 01:59:00,0 +2783,1966-12-01 07:11:00,0 +9855,1969-09-22 03:53:00,0 +5662,1966-06-25 04:03:00,0 +9174,1969-02-21 16:31:00,0 +4525,1967-11-29 01:18:00,0 +2668,1968-07-01 16:20:00,0 +3507,1966-06-25 23:04:00,0 +8789,1965-11-17 09:16:00,0 +8047,1967-07-04 21:09:00,0 +1398,1965-07-09 07:10:00,0 +1010,1966-02-22 23:06:00,0 +4522,1969-02-17 05:13:00,0 +5429,1968-01-05 18:03:00,0 +529,1969-04-26 21:11:00,0 +8904,1967-04-02 06:06:00,0 +4824,1966-08-10 18:37:00,0 +610,1969-01-28 06:55:00,0 +4730,1969-05-14 02:15:00,0 +2763,1969-12-09 06:14:00,0 +9433,1969-01-07 03:20:00,0 +8796,1966-08-28 14:02:00,0 +2198,1968-04-26 01:56:00,0 +6515,1965-09-16 16:22:00,0 +6114,1968-01-22 07:15:00,0 +2249,1967-11-14 10:59:00,0 +9874,1966-11-11 22:06:00,0 +9971,1965-02-04 10:33:00,0 +9789,1965-12-29 18:04:00,0 +8600,1968-11-03 14:22:00,0 +7345,1967-07-21 09:40:00,0 +389,1967-05-15 05:44:00,0 +3220,1967-08-03 09:53:00,0 +7394,1969-04-24 06:22:00,0 +4870,1966-10-07 02:07:00,0 +1902,1967-10-13 05:27:00,0 +9202,1968-09-30 10:07:00,0 +3145,1966-03-28 07:48:00,0 +9558,1968-03-22 05:54:00,0 +2849,1967-06-16 15:19:00,0 +7974,1966-12-16 12:19:00,0 +2180,1968-12-28 19:57:00,0 +9965,1968-08-10 22:19:00,0 +4979,1966-11-07 23:50:00,0 +4419,1966-07-11 16:45:00,0 +9135,1965-10-22 13:06:00,0 +290,1966-02-27 12:34:00,0 +2306,1969-08-17 11:21:00,0 +6631,1966-09-27 22:38:00,0 +2236,1969-03-03 17:44:00,0 +5137,1968-01-12 12:32:00,0 +7009,1966-10-08 21:34:00,0 +6391,1968-08-25 00:10:00,0 +1800,1966-02-22 11:40:00,0 +8870,1967-02-23 06:44:00,0 +9674,1967-07-09 21:54:00,0 +9965,1967-06-01 08:15:00,0 +7246,1965-05-09 21:12:00,0 +2896,1969-07-23 20:34:00,0 +8018,1969-10-14 02:24:00,0 +1936,1968-10-06 04:13:00,0 +4428,1969-07-17 00:50:00,0 +2970,1969-01-27 11:37:00,0 +7546,1967-09-23 08:24:00,0 +5599,1967-02-19 13:06:00,0 +7623,1968-03-02 12:34:00,0 +5226,1966-05-03 21:10:00,0 +1020,1966-04-26 14:21:00,0 +6761,1968-03-14 07:26:00,0 +3649,1969-07-31 12:06:00,0 +9987,1965-02-15 18:51:00,0 +7896,1965-05-11 01:11:00,0 +9571,1965-09-13 09:25:00,0 +6119,1969-01-25 09:43:00,0 +2015,1969-07-20 10:25:00,0 +564,1968-11-02 22:04:00,0 +4331,1966-03-29 02:26:00,0 +5394,1965-06-30 08:12:00,0 +1848,1965-09-24 02:08:00,0 +4910,1966-06-14 17:41:00,0 +7088,1966-04-03 12:05:00,0 +181,1967-06-20 06:00:00,0 +2016,1966-01-28 18:43:00,0 +2730,1967-03-18 14:29:00,0 +3489,1965-06-17 03:50:00,0 +7397,1965-10-19 08:54:00,0 +512,1966-10-01 18:01:00,0 +1260,1965-05-27 18:27:00,0 +3793,1966-12-14 12:09:00,0 +9869,1966-02-24 22:00:00,0 +5037,1965-08-28 06:38:00,0 +7002,1966-09-02 09:01:00,0 +1075,1969-08-15 03:44:00,0 +9701,1966-12-02 09:13:00,0 +1945,1968-03-31 16:30:00,0 +7549,1965-05-09 10:39:00,0 +9437,1965-05-26 03:21:00,0 +5651,1969-03-20 07:15:00,0 +9890,1965-08-26 05:47:00,0 +8032,1965-09-29 07:49:00,0 +841,1965-09-23 08:55:00,0 +3317,1968-06-20 04:58:00,0 +8335,1965-04-05 20:36:00,0 +4639,1965-02-09 04:17:00,0 +497,1967-09-08 05:35:00,0 +6668,1968-03-17 04:44:00,0 +6016,1966-04-24 10:46:00,0 +3971,1969-08-09 09:40:00,0 +4059,1969-07-28 15:22:00,0 +8005,1967-05-22 07:40:00,0 +2624,1969-09-26 10:55:00,0 +9387,1969-03-08 06:33:00,0 +3381,1968-04-16 16:46:00,0 +3439,1965-11-22 07:05:00,0 +101,1967-02-07 20:50:00,0 +2926,1969-06-16 21:19:00,0 +3623,1966-04-08 09:59:00,0 +5985,1965-06-13 14:38:00,0 +96,1968-03-02 15:25:00,0 +4761,1969-02-17 06:35:00,0 +7835,1968-06-19 15:11:00,0 +1522,1967-09-22 02:23:00,0 +5322,1966-05-05 09:40:00,0 +988,1969-09-19 09:32:00,0 +2095,1966-03-29 16:18:00,0 +657,1966-01-04 11:23:00,0 +5263,1969-09-28 05:21:00,0 +6347,1968-08-21 06:47:00,0 +7183,1967-11-15 06:03:00,0 +8153,1966-07-12 18:59:00,0 +9199,1965-12-26 00:23:00,0 +8733,1969-09-19 18:20:00,0 +5161,1969-10-14 08:20:00,0 +6312,1968-12-27 14:12:00,0 +7408,1969-07-26 05:59:00,0 +5614,1968-01-20 03:13:00,0 +9286,1967-08-02 04:04:00,0 +7546,1965-06-30 08:35:00,0 +3795,1966-08-12 15:58:00,0 +4441,1967-08-12 16:40:00,0 +9828,1965-11-16 07:37:00,0 +8764,1965-04-18 01:40:00,0 +7650,1969-08-23 07:20:00,0 +5787,1967-08-09 04:10:00,0 +2376,1966-04-14 15:52:00,0 +7499,1965-11-08 00:31:00,0 +4782,1966-02-17 14:37:00,0 +6087,1966-11-17 03:07:00,0 +7967,1966-04-12 02:36:00,0 +5761,1965-07-01 11:06:00,0 +7193,1968-11-24 04:39:00,0 +3409,1965-02-25 17:07:00,0 +3555,1969-03-28 06:42:00,0 +3853,1969-03-26 14:15:00,0 +2449,1965-09-11 01:09:00,0 +6576,1968-02-02 13:39:00,0 +8149,1968-09-07 21:01:00,0 +97,1967-07-17 17:27:00,0 +3839,1967-12-07 19:52:00,0 +2082,1965-03-09 23:38:00,0 +6910,1968-09-16 06:26:00,0 +6168,1965-02-24 13:15:00,0 +6605,1965-07-31 23:33:00,0 +7103,1966-01-19 08:47:00,0 +5408,1967-01-24 00:11:00,0 +9166,1967-01-20 20:15:00,0 +8797,1965-12-01 10:10:00,0 +108,1965-04-10 05:14:00,0 +205,1969-01-05 00:13:00,0 +2090,1965-09-14 03:50:00,0 +7503,1968-03-19 13:02:00,0 +439,1968-03-01 11:46:00,0 +7749,1965-07-24 07:45:00,0 +64,1967-12-27 20:34:00,0 +2414,1967-07-17 23:06:00,0 +3454,1965-02-19 04:15:00,0 +7411,1965-05-01 08:32:00,0 +6011,1966-08-25 23:35:00,0 +5587,1966-11-23 14:37:00,0 +7451,1968-07-24 18:11:00,0 +549,1969-04-09 05:07:00,0 +3345,1969-05-22 13:39:00,0 +1320,1967-03-05 21:34:00,0 +3782,1968-03-06 07:02:00,0 +3886,1965-05-23 09:17:00,0 +9421,1966-11-01 08:55:00,0 +4089,1966-04-09 17:25:00,0 +7695,1967-03-07 10:41:00,0 +7234,1967-10-23 02:21:00,0 +2410,1965-09-16 19:44:00,0 +731,1966-07-14 07:56:00,0 +5070,1969-10-14 06:38:00,0 +5178,1965-06-19 10:28:00,0 +897,1967-07-13 16:16:00,0 +5751,1965-12-18 17:01:00,0 +221,1968-12-25 13:27:00,0 +3161,1965-02-09 18:41:00,0 +9656,1968-07-07 15:25:00,0 +5002,1966-07-02 16:17:00,0 +6183,1966-09-27 05:50:00,0 +6429,1969-07-18 15:57:00,0 +5273,1967-04-05 04:43:00,0 +3367,1968-11-13 13:36:00,0 +6159,1968-06-14 03:33:00,0 +7722,1967-12-31 23:55:00,0 +5281,1967-01-23 09:32:00,0 +9881,1967-07-16 09:38:00,0 +8766,1967-01-21 10:51:00,0 +9892,1966-03-25 23:10:00,0 +4544,1969-07-16 04:57:00,0 +5351,1968-01-21 13:12:00,0 +4152,1967-10-29 19:29:00,0 +30,1966-07-10 10:41:00,0 +7868,1965-02-17 07:46:00,0 +3673,1968-08-15 10:58:00,0 +8563,1968-04-02 02:43:00,0 +2956,1968-11-06 05:13:00,0 +7235,1967-07-25 13:42:00,0 +7596,1967-01-11 13:33:00,0 +9673,1968-03-29 22:18:00,0 +2492,1967-08-09 12:01:00,0 +1444,1968-04-22 16:34:00,0 +2629,1965-06-24 05:01:00,0 +1100,1965-08-08 02:23:00,0 +8044,1965-05-24 02:03:00,0 +3434,1969-01-18 20:19:00,0 +5519,1966-04-02 22:09:00,0 +939,1969-05-24 21:40:00,0 +3207,1969-07-18 07:25:00,0 +2778,1965-08-17 02:23:00,0 +5872,1966-01-22 09:15:00,0 +1165,1967-04-13 04:16:00,0 +8004,1966-09-30 07:29:00,0 +8272,1969-07-17 07:22:00,0 +8557,1966-08-09 03:45:00,0 +3480,1968-05-05 00:46:00,0 +1885,1965-10-26 03:27:00,0 +552,1967-09-14 08:18:00,0 +5754,1967-03-19 19:40:00,0 +3969,1965-05-09 03:20:00,0 +6836,1969-10-23 08:37:00,0 +1614,1967-11-27 05:34:00,0 +8280,1966-12-31 12:31:00,0 +7037,1968-12-02 02:56:00,0 +8922,1966-05-25 12:49:00,0 +4417,1966-08-27 23:51:00,0 +7529,1969-05-13 19:07:00,0 +3745,1966-02-13 03:57:00,0 +100,1968-01-13 21:48:00,0 +2767,1965-02-24 12:55:00,0 +4350,1965-09-28 18:03:00,0 +2099,1966-10-06 09:01:00,0 +7825,1968-06-25 15:49:00,0 +1486,1965-08-29 13:54:00,0 +908,1965-08-05 00:53:00,0 +9696,1969-02-03 22:35:00,0 +2489,1967-02-02 04:38:00,0 +432,1968-02-26 02:33:00,0 +4583,1969-08-28 05:22:00,0 +9187,1965-08-19 14:50:00,0 +4099,1967-08-04 06:37:00,0 +9498,1968-10-11 09:38:00,0 +5480,1965-02-27 19:48:00,0 +3542,1967-09-21 10:59:00,0 +5322,1966-03-11 12:56:00,0 +3334,1968-04-14 15:36:00,0 +3354,1965-09-11 06:23:00,0 +2328,1969-11-13 20:39:00,0 +839,1966-07-19 13:49:00,0 +8877,1969-05-12 03:31:00,0 +4478,1968-09-19 06:26:00,0 +2592,1965-10-04 17:07:00,0 +717,1966-11-18 18:02:00,0 +3446,1969-08-18 11:26:00,0 +7749,1965-08-06 22:19:00,0 +8923,1965-02-28 01:37:00,0 +1795,1969-03-17 22:49:00,0 +5271,1965-02-04 13:14:00,0 +2598,1969-04-06 19:04:00,0 +8330,1966-12-18 11:59:00,0 +6506,1967-10-09 06:07:00,0 +3004,1966-02-18 08:08:00,0 +8508,1969-08-04 04:58:00,0 +9410,1969-05-15 16:13:00,0 +1162,1968-02-05 17:15:00,0 +2150,1965-05-31 10:30:00,0 +8112,1966-04-09 09:50:00,0 +8101,1967-05-07 23:44:00,0 +6725,1966-01-05 02:12:00,0 +6614,1968-03-19 08:46:00,0 +1079,1967-11-18 12:03:00,0 +7465,1965-02-08 04:21:00,0 +8231,1968-07-07 11:44:00,0 +7613,1968-10-20 03:31:00,0 +1077,1967-05-12 20:22:00,0 +9733,1968-09-21 01:24:00,0 +2972,1968-08-28 20:01:00,0 +2390,1966-04-24 00:08:00,0 +3616,1966-02-04 19:55:00,0 +9629,1967-05-24 20:01:00,0 +8912,1969-06-13 03:31:00,0 +3196,1969-08-14 15:10:00,0 +3898,1966-06-01 23:54:00,0 +5402,1969-12-05 16:31:00,0 +5713,1966-12-27 16:31:00,0 +5152,1968-03-10 21:13:00,0 +6845,1968-03-28 23:51:00,0 +5706,1969-03-11 14:13:00,0 +3096,1967-06-15 21:47:00,0 +4299,1967-11-03 04:40:00,0 +2064,1969-03-02 17:27:00,0 +7395,1969-08-29 07:12:00,0 +1493,1968-06-06 13:20:00,0 +2586,1968-06-08 20:50:00,0 +7884,1965-04-08 17:40:00,0 +600,1968-02-22 03:14:00,0 +253,1969-05-20 07:13:00,0 +441,1968-11-04 07:17:00,0 +1490,1969-12-08 10:26:00,0 +6879,1969-06-24 18:58:00,0 +7526,1967-05-02 01:39:00,0 +2798,1965-07-31 19:22:00,0 +2264,1968-04-30 09:51:00,0 +1992,1968-08-24 20:03:00,0 +596,1965-06-17 21:03:00,0 +5609,1969-10-02 00:57:00,0 +4332,1966-08-10 23:34:00,0 +1831,1966-03-10 11:38:00,0 +5326,1966-08-15 06:17:00,0 +3796,1965-01-02 04:21:00,0 +3045,1969-07-30 13:37:00,0 +3474,1968-04-30 02:29:00,0 +9679,1966-06-27 21:45:00,0 +4284,1965-03-25 14:38:00,0 +9438,1966-01-29 03:51:00,0 +1781,1965-12-31 17:13:00,0 +8446,1967-09-20 02:31:00,0 +9497,1966-07-26 13:29:00,0 +5281,1968-03-30 01:31:00,0 +1782,1966-11-28 21:44:00,0 +7705,1966-02-18 07:17:00,0 +3851,1969-05-21 00:12:00,0 +3437,1965-08-03 14:38:00,0 +6536,1968-02-08 07:59:00,0 +4030,1968-07-29 11:26:00,0 +8887,1969-01-27 18:44:00,0 +3217,1969-10-30 03:09:00,0 +1628,1966-09-06 14:18:00,0 +9476,1968-11-18 04:18:00,0 +3424,1969-02-17 11:24:00,0 +9578,1967-08-02 21:02:00,0 +421,1967-11-08 08:18:00,0 +885,1967-11-13 05:10:00,0 +9494,1968-07-12 00:01:00,0 +2521,1969-06-07 10:24:00,0 +1464,1968-03-06 04:35:00,0 +8076,1968-07-16 22:48:00,0 +2975,1968-11-12 23:52:00,0 +4109,1966-12-10 17:24:00,0 +8621,1967-01-11 18:22:00,0 +3549,1969-09-02 07:33:00,0 +2600,1969-10-10 05:35:00,0 +4718,1967-02-23 19:13:00,0 +3383,1969-02-27 01:56:00,0 +2291,1965-11-14 02:08:00,0 +3455,1967-02-04 01:39:00,0 +272,1968-11-13 22:00:00,0 +8139,1967-07-29 21:10:00,0 +2087,1965-11-05 18:38:00,0 +6195,1965-01-15 17:21:00,0 +1391,1965-11-23 16:13:00,0 +5679,1969-03-23 12:10:00,0 +9163,1968-12-06 14:29:00,0 +1353,1966-12-18 03:34:00,0 +6578,1968-02-05 20:44:00,0 +258,1969-10-30 19:57:00,0 +9048,1965-07-01 05:32:00,0 +7516,1968-11-12 05:50:00,0 +5324,1966-09-22 10:22:00,0 +9884,1966-01-08 20:59:00,0 +350,1969-05-12 07:04:00,0 +5310,1969-02-20 07:37:00,0 +5160,1968-05-10 05:40:00,0 +1765,1965-11-29 13:27:00,0 +3025,1966-05-07 22:41:00,0 +232,1965-05-09 22:30:00,0 +3972,1966-04-26 14:36:00,0 +9704,1967-04-22 04:39:00,0 +2263,1968-07-18 09:41:00,0 +7983,1968-12-24 00:59:00,0 +3929,1968-08-09 01:18:00,0 +6898,1967-07-16 17:58:00,0 +3606,1967-10-15 03:19:00,0 +7494,1965-01-03 10:15:00,0 +3779,1968-08-02 08:45:00,0 +3628,1965-05-23 04:35:00,0 +941,1965-11-17 15:23:00,0 +6882,1965-07-28 16:25:00,0 +1079,1966-06-17 19:47:00,0 +2854,1968-07-22 13:54:00,0 +2542,1966-06-04 02:39:00,0 +7194,1966-02-01 22:29:00,0 +5414,1968-03-26 23:53:00,0 +3591,1969-03-04 15:10:00,0 +3268,1967-02-28 12:12:00,0 +9673,1968-07-19 23:42:00,0 +9063,1969-02-17 23:58:00,0 +9747,1966-04-03 00:14:00,0 +9866,1969-01-05 17:48:00,0 +8043,1966-03-24 15:40:00,0 +8094,1966-07-31 06:45:00,0 +2309,1969-04-26 22:46:00,0 +7976,1968-02-11 07:30:00,0 +396,1965-06-28 22:12:00,0 +4553,1968-10-21 02:17:00,0 +9407,1969-04-04 07:21:00,0 +1930,1966-11-26 00:51:00,0 +7759,1966-07-09 11:19:00,0 +7389,1965-11-29 10:50:00,0 +3602,1965-11-30 03:17:00,0 +4017,1966-12-29 11:06:00,0 +6085,1968-02-28 16:07:00,0 +6760,1968-12-25 04:21:00,0 +8913,1966-06-25 01:34:00,0 +578,1968-12-01 09:49:00,0 +1058,1965-09-29 16:31:00,0 +2510,1968-11-12 18:51:00,0 +8552,1968-05-22 23:16:00,0 +7758,1969-12-18 05:01:00,0 +7576,1968-01-14 04:02:00,0 +8189,1969-05-29 16:57:00,0 +3498,1968-04-05 21:51:00,0 +4343,1965-10-16 04:44:00,0 +9150,1965-05-05 01:05:00,0 +9712,1969-03-03 08:02:00,0 +6310,1966-01-22 15:43:00,0 +2042,1967-10-23 17:37:00,0 +9875,1969-11-11 22:46:00,0 +6290,1965-06-03 21:19:00,0 +3045,1965-11-16 19:16:00,0 +1825,1965-02-13 13:28:00,0 +1890,1969-01-18 17:23:00,0 +6554,1969-12-26 20:32:00,0 +8146,1965-06-22 12:34:00,0 +1865,1969-04-14 17:36:00,0 +9538,1966-06-06 14:20:00,0 +8301,1969-10-26 08:11:00,0 +6023,1966-05-13 21:40:00,0 +1110,1965-09-12 03:37:00,0 +4982,1969-02-26 18:20:00,0 +9556,1967-02-27 00:25:00,0 +8108,1967-12-23 05:30:00,0 +8481,1966-10-27 04:06:00,0 +9952,1965-03-03 15:13:00,0 +9353,1967-11-16 17:32:00,0 +2611,1965-12-22 05:31:00,0 +6910,1966-09-20 06:48:00,0 +6036,1967-01-30 10:52:00,0 +7017,1965-06-20 20:50:00,0 +8930,1966-09-09 19:32:00,0 +6611,1968-02-29 14:38:00,0 +9531,1967-07-22 00:38:00,0 +3907,1968-02-07 13:11:00,0 +3303,1968-04-18 07:34:00,0 +6539,1967-09-25 08:07:00,0 +9707,1967-05-15 07:33:00,0 +3098,1969-11-07 08:36:00,0 +9124,1967-06-26 06:17:00,0 +6184,1967-06-20 12:36:00,0 +9516,1969-10-24 08:27:00,0 +9688,1965-07-22 21:53:00,0 +3657,1968-01-31 11:59:00,0 +3887,1966-04-13 20:24:00,0 +9702,1968-04-21 05:39:00,0 +4390,1965-08-09 16:03:00,0 +379,1968-02-23 10:14:00,0 +237,1966-02-07 06:27:00,0 +8375,1969-02-21 16:43:00,0 +3890,1966-10-19 04:54:00,0 +6941,1969-02-16 20:46:00,0 +4606,1965-07-23 17:34:00,0 +2276,1966-10-24 08:00:00,0 +6965,1967-10-30 18:50:00,0 +6891,1968-06-14 13:06:00,0 +604,1967-08-08 12:48:00,0 +5989,1966-11-01 12:51:00,0 +1345,1968-12-12 09:26:00,0 +3123,1967-10-09 17:59:00,0 +7522,1967-04-19 13:29:00,0 +3939,1965-07-04 10:34:00,0 +7245,1966-07-20 20:29:00,0 +3083,1968-10-17 03:08:00,0 +3537,1968-05-21 14:47:00,0 +6976,1968-11-15 15:08:00,0 +7192,1968-05-15 04:34:00,0 +8246,1969-12-13 09:33:00,0 +9368,1965-01-29 22:33:00,0 +4359,1967-05-11 05:28:00,0 +4547,1965-02-22 13:00:00,0 +6555,1967-02-01 08:27:00,0 +7428,1968-07-03 23:08:00,0 +4825,1967-09-21 22:19:00,0 +7018,1968-12-24 06:57:00,0 +2869,1965-02-11 20:52:00,0 +3411,1966-06-06 19:10:00,0 +7813,1969-04-08 22:50:00,0 +4820,1968-05-19 09:31:00,0 +9481,1968-01-10 18:48:00,0 +1337,1968-02-24 11:34:00,0 +2784,1969-04-16 16:41:00,0 +4110,1968-08-31 10:09:00,0 +6479,1968-08-05 11:34:00,0 +9002,1966-08-08 14:27:00,0 +1040,1965-06-27 10:40:00,0 +9585,1967-10-28 03:49:00,0 +5250,1967-09-20 00:19:00,0 +1126,1967-10-11 15:21:00,0 +2033,1967-07-22 20:08:00,0 +4393,1966-05-28 05:17:00,0 +4872,1966-01-30 05:15:00,0 +5595,1968-07-10 22:41:00,0 +6096,1967-02-07 10:41:00,0 +4142,1969-08-24 02:32:00,0 +1557,1968-06-07 05:25:00,0 +2498,1967-07-07 20:13:00,0 +8316,1967-07-07 22:20:00,0 +9629,1967-08-04 23:58:00,0 +857,1969-11-20 13:27:00,0 +6222,1969-06-21 12:26:00,0 +7831,1967-02-23 13:24:00,0 +2694,1967-04-21 18:14:00,0 +2029,1967-09-13 07:46:00,0 +532,1967-07-15 00:21:00,0 +4620,1969-08-16 05:06:00,0 +2007,1965-08-22 01:09:00,0 +7072,1967-06-27 21:18:00,0 +3405,1966-07-29 01:21:00,0 +7866,1969-07-29 20:21:00,0 +7228,1969-03-24 13:07:00,0 +5994,1965-12-18 07:45:00,0 +575,1966-09-10 21:27:00,0 +8502,1967-03-22 17:25:00,0 +5245,1967-10-25 21:24:00,0 +6763,1968-12-08 18:49:00,0 +8199,1967-11-10 05:50:00,0 +5412,1967-12-09 09:14:00,0 +4625,1966-12-14 12:08:00,0 +8201,1969-01-13 13:08:00,0 +9392,1967-04-18 11:15:00,0 +4479,1966-02-12 11:53:00,0 +7345,1968-04-03 13:03:00,0 +8160,1966-02-05 06:23:00,0 +4515,1965-07-06 07:39:00,0 +1590,1965-05-01 07:46:00,0 +3832,1965-04-01 05:22:00,0 +604,1969-09-21 22:48:00,0 +6251,1967-04-06 23:43:00,0 +9501,1965-11-23 18:03:00,0 +9614,1967-09-17 14:53:00,0 +1833,1968-12-23 09:46:00,0 +3812,1966-01-25 23:12:00,0 +1860,1969-05-25 03:31:00,0 +826,1967-06-10 10:57:00,0 +8725,1967-04-13 23:23:00,0 +760,1969-07-13 04:24:00,0 +485,1965-12-01 10:31:00,0 +4781,1966-07-13 23:27:00,0 +379,1967-08-02 09:38:00,0 +7327,1967-01-05 05:25:00,0 +3996,1965-06-21 11:59:00,0 +79,1965-03-22 07:01:00,0 +9077,1965-06-03 01:32:00,0 +8802,1968-02-28 21:34:00,0 +853,1965-12-26 09:09:00,0 +209,1967-08-05 06:24:00,0 +6001,1965-04-21 16:56:00,0 +325,1966-05-18 21:17:00,0 +1690,1965-09-14 15:02:00,0 +2098,1965-01-02 03:50:00,0 +1980,1969-08-31 09:13:00,0 +6607,1966-03-15 22:41:00,0 +9054,1969-02-06 17:26:00,0 +5127,1965-05-20 01:36:00,0 +4590,1966-05-29 22:19:00,0 +9538,1968-09-21 21:52:00,0 +290,1969-05-03 23:56:00,0 +5063,1968-05-05 00:48:00,0 +6359,1969-06-11 17:36:00,0 +4690,1965-07-14 01:46:00,0 +566,1966-09-21 10:55:00,0 +3915,1966-05-18 23:39:00,0 +8584,1967-07-11 04:22:00,0 +857,1966-04-23 22:44:00,0 +3934,1966-12-03 16:07:00,0 +5173,1969-02-08 21:47:00,0 +7858,1968-07-21 00:52:00,0 +7014,1967-12-21 02:01:00,0 +1159,1965-09-07 14:02:00,0 +1708,1967-12-25 20:59:00,0 +9483,1966-02-11 06:17:00,0 +9704,1969-10-30 12:16:00,0 +8292,1966-07-25 06:37:00,0 +5834,1968-02-28 14:32:00,0 +9905,1966-05-22 02:02:00,0 +5176,1965-10-19 17:56:00,0 +4948,1969-12-09 03:42:00,0 +3570,1966-06-20 13:37:00,0 +8859,1966-05-04 16:22:00,0 +7089,1965-03-10 13:02:00,0 +1166,1965-06-14 13:00:00,0 +7429,1965-07-27 14:34:00,0 +5633,1967-10-24 11:56:00,0 +5113,1966-01-11 07:43:00,0 +2961,1969-05-25 05:03:00,0 +9807,1968-10-03 23:58:00,0 +8167,1969-02-24 20:03:00,0 +6949,1967-01-31 19:04:00,0 +9624,1968-03-02 00:54:00,0 +9654,1969-10-09 21:59:00,0 +9505,1969-07-13 15:47:00,0 +1358,1966-12-12 20:44:00,0 +1453,1968-05-21 14:00:00,0 +5829,1965-02-18 13:56:00,0 +3783,1969-08-11 16:53:00,0 +7171,1969-10-18 06:43:00,0 +4001,1967-10-15 21:24:00,0 +9924,1969-10-19 23:51:00,0 +95,1965-03-11 15:29:00,0 +9644,1965-08-23 15:51:00,0 +912,1969-03-19 15:44:00,0 +2726,1965-03-16 09:46:00,0 +269,1967-09-03 02:27:00,0 +4976,1967-11-19 19:04:00,0 +5121,1965-03-18 08:20:00,0 +6919,1968-02-04 09:55:00,0 +7817,1969-06-25 07:01:00,0 +5906,1968-02-29 13:32:00,0 +4533,1969-06-28 18:04:00,0 +5538,1969-01-22 08:47:00,0 +6561,1968-08-19 04:01:00,0 +5674,1966-05-20 13:38:00,0 +9841,1967-07-05 23:07:00,0 +4643,1969-09-09 21:23:00,0 +9781,1967-05-07 05:55:00,0 +9816,1965-03-29 11:56:00,0 +1550,1967-02-28 00:15:00,0 +4132,1966-08-02 04:36:00,0 +2279,1969-04-11 01:19:00,0 +5097,1967-10-16 03:36:00,0 +3660,1966-10-17 21:31:00,0 +8185,1967-10-31 19:21:00,0 +3350,1968-12-27 19:50:00,0 +4028,1968-08-19 06:02:00,0 +7215,1966-01-08 17:38:00,0 +943,1965-11-30 00:16:00,0 +683,1969-02-23 12:11:00,0 +6001,1966-11-10 06:50:00,0 +7362,1967-01-04 13:52:00,0 +4952,1967-05-23 06:38:00,0 +3405,1965-04-03 09:23:00,0 +6578,1967-01-16 03:06:00,0 +1992,1966-05-25 10:05:00,0 +609,1968-12-18 22:15:00,0 +6220,1967-10-15 22:00:00,0 +9620,1966-02-13 03:23:00,0 +7606,1966-05-07 06:50:00,0 +3765,1966-10-11 10:42:00,0 +1772,1967-01-06 21:05:00,0 +9086,1968-05-02 01:25:00,0 +3128,1967-11-25 04:29:00,0 +4571,1967-01-17 12:57:00,0 +3463,1967-03-28 17:48:00,0 +2674,1967-12-13 08:15:00,0 +938,1967-04-08 02:17:00,0 +4839,1966-12-16 15:07:00,0 +1586,1968-08-11 10:51:00,0 +5900,1967-06-30 21:42:00,0 +3005,1967-03-27 12:10:00,0 +6506,1965-07-02 17:04:00,0 +2504,1965-08-02 13:15:00,0 +5752,1965-05-18 22:34:00,0 +8780,1967-02-06 05:00:00,0 +8406,1968-04-23 05:26:00,0 +1879,1967-10-15 22:01:00,0 +7475,1966-07-26 16:57:00,0 +8799,1969-01-07 05:06:00,0 +5963,1968-06-18 17:37:00,0 +5505,1965-10-23 16:12:00,0 +3344,1967-12-12 23:53:00,0 +6912,1965-09-30 05:51:00,0 +5781,1967-05-02 02:32:00,0 +1536,1969-09-05 00:14:00,0 +8607,1969-05-19 09:04:00,0 +8697,1966-04-02 00:15:00,0 +2183,1967-04-28 13:55:00,0 +3402,1967-10-15 12:10:00,0 +7209,1968-08-09 10:20:00,0 +9843,1968-11-25 18:50:00,0 +8533,1969-09-30 13:53:00,0 +2129,1969-11-28 18:03:00,0 +4596,1965-01-25 14:17:00,0 +6681,1968-10-06 04:54:00,0 +6809,1965-01-15 01:47:00,0 +3598,1965-03-20 15:24:00,0 +368,1967-01-23 07:02:00,0 +4294,1968-05-27 03:08:00,0 +7038,1968-01-09 01:51:00,0 +3378,1965-07-07 02:54:00,0 +5128,1967-07-22 11:18:00,0 +2937,1966-06-13 19:57:00,0 +1639,1965-05-08 15:54:00,0 +6960,1968-02-20 18:13:00,0 +3753,1968-08-21 12:36:00,0 +2584,1966-03-19 17:27:00,0 +2987,1966-08-20 06:17:00,0 +6077,1968-12-25 09:26:00,0 +2326,1966-01-23 15:57:00,0 +1200,1968-05-04 03:42:00,0 +1939,1968-01-19 22:48:00,0 +3124,1965-02-25 13:10:00,0 +1670,1965-11-20 10:04:00,0 +6717,1965-08-17 16:23:00,0 +3587,1967-11-30 07:49:00,0 +3262,1969-09-12 09:05:00,0 +6731,1969-06-23 17:09:00,0 +6155,1967-03-20 01:41:00,0 +5642,1965-11-01 03:31:00,0 +3317,1966-07-16 12:02:00,0 +7031,1969-08-09 05:48:00,0 +8288,1966-07-19 19:10:00,0 +6263,1968-10-31 04:05:00,0 +3067,1965-07-30 08:41:00,0 +8997,1967-01-26 14:00:00,0 +8495,1968-05-19 19:13:00,0 +6356,1965-06-21 11:16:00,0 +6226,1967-09-17 16:51:00,0 +8331,1967-08-23 12:48:00,0 +6949,1969-06-18 00:34:00,0 +1687,1969-02-03 18:33:00,0 +6892,1969-01-02 11:52:00,0 +2732,1969-05-07 12:26:00,0 +927,1969-04-27 02:31:00,0 +7266,1967-02-05 16:42:00,0 +7020,1968-11-27 07:38:00,0 +7933,1966-04-27 01:57:00,0 +9664,1968-04-13 16:44:00,0 +2849,1969-09-12 11:44:00,0 +2773,1966-07-22 18:35:00,0 +4213,1969-02-08 07:37:00,0 +7385,1966-07-26 14:27:00,0 +3030,1969-12-30 00:11:00,0 +2259,1969-10-09 19:52:00,0 +4616,1967-03-15 13:04:00,0 +1293,1967-03-15 14:04:00,0 +3837,1965-02-06 03:44:00,0 +3172,1968-10-06 05:02:00,0 +1884,1966-09-23 03:51:00,0 +345,1966-12-11 22:55:00,0 +3042,1968-05-22 15:15:00,0 +721,1967-11-17 12:52:00,0 +8138,1967-04-13 20:43:00,0 +8675,1969-10-19 06:41:00,0 +3325,1969-11-12 19:56:00,0 +8215,1966-08-02 03:31:00,0 +2756,1965-05-21 02:07:00,0 +536,1965-08-10 00:56:00,0 +6091,1968-07-09 07:23:00,0 +3010,1966-01-22 21:32:00,0 +9020,1969-11-12 16:08:00,0 +1267,1968-07-30 22:51:00,0 +6890,1966-09-24 03:23:00,0 +5237,1967-05-11 06:34:00,0 +8579,1965-01-22 15:31:00,0 +7402,1968-03-23 13:27:00,0 +3665,1968-03-16 21:00:00,0 +5892,1965-10-11 07:13:00,0 +9994,1965-10-14 07:44:00,0 +6231,1968-03-13 15:37:00,0 +1703,1967-03-16 11:46:00,0 +3245,1969-10-23 02:42:00,0 +6350,1965-11-16 04:08:00,0 +3638,1965-10-18 20:30:00,0 +8303,1965-12-10 21:40:00,0 +8806,1966-04-05 23:25:00,0 +5825,1968-05-06 09:46:00,0 +8709,1967-05-13 22:49:00,0 +7890,1967-01-13 10:34:00,0 +6704,1966-12-06 15:35:00,0 +9823,1966-12-20 19:43:00,0 +4076,1969-04-13 02:00:00,0 +5262,1966-02-25 06:01:00,0 +7902,1968-01-27 16:57:00,0 +4977,1965-05-19 12:21:00,0 +8820,1966-05-18 19:17:00,0 +7939,1965-09-01 13:52:00,0 +5085,1966-04-13 20:43:00,0 +4533,1969-05-29 14:28:00,0 +5979,1968-08-15 11:14:00,0 +6210,1966-10-15 09:47:00,0 +651,1967-10-14 22:05:00,0 +8489,1965-11-25 19:43:00,0 +5569,1966-06-14 22:47:00,0 +165,1967-08-23 10:11:00,0 +4459,1967-03-17 00:28:00,0 +6926,1966-01-31 00:02:00,0 +2502,1966-10-06 12:15:00,0 +8028,1966-01-29 05:16:00,0 +3666,1965-06-25 01:35:00,0 +4880,1966-12-20 05:51:00,0 +5480,1965-10-24 05:45:00,0 +9565,1969-03-09 10:47:00,0 +2865,1968-02-16 23:21:00,0 +4754,1965-06-24 14:05:00,0 +4493,1966-01-27 14:34:00,0 +2337,1965-06-16 22:00:00,0 +6340,1969-06-11 01:09:00,0 +5383,1965-03-07 14:11:00,0 +9927,1969-02-24 17:10:00,0 +8728,1969-08-12 09:57:00,0 +7160,1968-04-11 05:29:00,0 +2045,1968-05-19 07:51:00,0 +7182,1968-02-05 20:38:00,0 +4869,1967-07-03 07:34:00,0 +7300,1967-03-08 05:36:00,0 +18,1965-09-06 22:41:00,0 +3079,1965-12-27 08:52:00,0 +2583,1969-08-03 09:50:00,0 +1686,1965-03-12 12:44:00,0 +4468,1966-05-16 20:56:00,0 +5264,1965-11-22 06:59:00,0 +8694,1969-10-24 11:13:00,0 +6111,1969-04-15 13:44:00,0 +3733,1966-01-16 15:45:00,0 +1107,1966-11-16 07:06:00,0 +6638,1965-06-11 17:01:00,0 +305,1965-11-11 09:21:00,0 +6723,1967-03-26 03:54:00,0 +729,1967-10-14 06:14:00,0 +9438,1966-08-16 15:47:00,0 +5707,1968-12-29 11:44:00,0 +3455,1966-09-26 09:33:00,0 +9288,1968-12-19 21:48:00,0 +5756,1969-03-27 20:54:00,0 +2721,1968-07-01 02:39:00,0 +2988,1966-03-27 06:02:00,0 +1995,1966-03-04 22:31:00,0 +7970,1969-04-02 13:46:00,0 +1439,1966-11-18 23:19:00,0 +9500,1965-09-07 03:38:00,0 +662,1967-05-13 21:14:00,0 +9649,1968-11-18 04:11:00,0 +2081,1966-01-19 02:40:00,0 +4628,1966-11-27 19:40:00,0 +9827,1965-08-25 21:17:00,0 +3001,1965-12-17 17:27:00,0 +297,1968-05-04 23:09:00,0 +2014,1968-08-29 18:01:00,0 +7804,1965-12-11 12:38:00,0 +7244,1966-03-17 05:15:00,0 +5403,1967-07-22 16:39:00,0 +2068,1969-11-18 02:38:00,0 +3332,1968-09-25 04:28:00,0 +2976,1965-07-29 02:03:00,0 +2130,1965-10-29 20:46:00,0 +2700,1967-04-23 20:34:00,0 +4545,1969-06-04 20:49:00,0 +9544,1969-06-03 08:41:00,0 +9513,1967-09-26 18:24:00,0 +616,1966-09-23 10:59:00,0 +1387,1965-01-06 14:22:00,0 +1282,1966-02-14 15:51:00,0 +5575,1966-03-13 20:21:00,0 +2023,1965-09-12 19:36:00,0 +1478,1968-06-11 18:09:00,0 +1212,1969-12-27 04:18:00,0 +6959,1966-02-25 10:39:00,0 +1922,1965-09-05 09:50:00,0 +3683,1968-10-11 00:21:00,0 +4426,1968-09-25 07:29:00,0 +8350,1966-04-28 09:48:00,0 +1759,1969-11-14 00:57:00,0 +7080,1965-11-18 02:15:00,0 +2551,1969-05-21 21:34:00,0 +114,1965-09-04 16:09:00,0 +7693,1966-06-10 13:19:00,0 +5614,1968-01-16 00:25:00,0 +6934,1967-07-22 06:04:00,0 +3140,1966-07-20 15:43:00,0 +1943,1966-03-13 16:28:00,0 +8778,1966-02-06 09:42:00,0 +4519,1968-03-12 14:03:00,0 +4853,1967-12-04 01:52:00,0 +8279,1965-07-03 09:55:00,0 +148,1969-11-22 06:51:00,0 +3157,1967-02-28 08:35:00,0 +8671,1969-11-08 13:09:00,0 +2294,1966-06-24 11:26:00,0 +4048,1968-07-30 15:49:00,0 +7446,1969-11-08 08:59:00,0 +6697,1967-04-23 21:09:00,0 +5902,1967-12-09 13:29:00,0 +3155,1968-04-06 10:32:00,0 +4921,1965-07-10 11:40:00,0 +893,1968-07-09 13:24:00,0 +3937,1967-08-24 04:01:00,0 +8576,1967-07-24 19:08:00,0 +4482,1968-07-13 02:29:00,0 +8452,1968-03-30 08:01:00,0 +361,1967-06-02 05:17:00,0 +8896,1966-03-30 10:47:00,0 +6988,1966-05-15 11:10:00,0 +2394,1967-10-20 09:43:00,0 +3674,1969-10-30 23:10:00,0 +8521,1968-01-20 17:39:00,0 +8397,1969-09-09 04:37:00,0 +5719,1969-09-13 21:14:00,0 +7367,1967-10-05 17:47:00,0 +868,1967-10-29 06:23:00,0 +2973,1965-10-08 14:35:00,0 +8300,1966-10-24 00:26:00,0 +554,1965-07-30 00:18:00,0 +1230,1968-02-10 16:04:00,0 +3179,1965-08-25 23:27:00,0 +7151,1965-08-30 23:21:00,0 +2834,1965-05-28 07:53:00,0 +8459,1968-08-14 12:45:00,0 +1586,1968-04-26 10:35:00,0 +5475,1966-07-21 23:53:00,0 +4276,1966-03-12 11:45:00,0 +153,1965-12-20 05:11:00,0 +8990,1968-01-07 12:56:00,0 +3872,1965-12-06 05:59:00,0 +2567,1968-09-03 00:40:00,0 +3119,1968-11-12 02:50:00,0 +8401,1968-05-04 13:27:00,0 +8777,1966-03-07 20:36:00,0 +1121,1965-11-13 00:21:00,0 +9975,1967-03-01 04:54:00,0 +1840,1967-05-02 12:24:00,0 +9332,1969-05-17 07:19:00,0 +5353,1966-03-19 14:59:00,0 +5823,1968-06-01 14:29:00,0 +9463,1969-04-18 20:24:00,0 +7056,1966-08-30 08:22:00,0 +4276,1968-06-30 02:47:00,0 +6550,1967-01-05 00:44:00,0 +3569,1968-02-04 14:13:00,0 +2872,1966-03-20 14:05:00,0 +3619,1969-01-22 22:19:00,0 +4439,1967-11-03 20:19:00,0 +818,1965-10-19 23:30:00,0 +1668,1967-12-22 01:24:00,0 +4467,1965-10-17 01:14:00,0 +8701,1967-06-18 04:25:00,0 +6664,1965-01-31 23:30:00,0 +5913,1969-07-17 09:20:00,0 +9053,1969-12-20 22:01:00,0 +183,1967-12-06 09:23:00,0 +2615,1969-11-05 04:00:00,0 +8166,1966-07-11 02:39:00,0 +3569,1967-05-02 12:04:00,0 +6467,1968-11-09 13:01:00,0 +8477,1968-05-20 15:07:00,0 +8665,1966-01-26 02:09:00,0 +9367,1969-10-30 02:20:00,0 +6086,1966-09-30 05:38:00,0 +2578,1969-11-20 09:58:00,0 +6619,1968-04-23 04:55:00,0 +2052,1967-01-05 09:58:00,0 +9901,1967-09-04 08:43:00,0 +8705,1967-06-01 08:41:00,0 +3527,1965-07-17 09:07:00,0 +1033,1965-08-02 05:21:00,0 +3580,1967-06-24 14:22:00,0 +7254,1968-04-06 03:48:00,0 +2018,1968-08-26 17:06:00,0 +938,1967-03-02 22:46:00,0 +9899,1969-10-28 17:58:00,0 +4554,1968-06-12 12:40:00,0 +5561,1968-01-05 17:01:00,0 +4586,1965-05-06 09:15:00,0 +160,1969-08-14 12:06:00,0 +9096,1968-07-11 14:40:00,0 +1164,1965-04-13 06:43:00,0 +293,1966-01-31 01:20:00,0 +8972,1967-01-22 13:24:00,0 +4835,1965-01-21 09:46:00,0 +2075,1967-02-15 21:51:00,0 +4230,1968-04-06 05:00:00,0 +6559,1967-01-03 18:59:00,0 +7853,1965-10-14 02:21:00,0 +3776,1968-05-22 20:57:00,0 +8935,1968-08-19 13:56:00,0 +1424,1967-08-11 07:07:00,0 +920,1965-07-23 05:56:00,0 +9135,1968-09-21 12:32:00,0 +7447,1969-05-06 05:34:00,0 +8360,1966-10-27 04:05:00,0 +6732,1966-04-19 07:10:00,0 +7137,1969-01-19 03:25:00,0 +3711,1968-12-16 11:52:00,0 +8749,1967-06-23 01:00:00,0 +9105,1967-11-28 14:55:00,0 +6690,1965-01-12 13:01:00,0 +3851,1965-12-10 14:03:00,0 +1133,1968-07-17 03:26:00,0 +1239,1968-01-18 01:55:00,0 +7105,1969-01-17 01:30:00,0 +9188,1965-06-17 08:34:00,0 +8429,1965-12-27 17:36:00,0 +8412,1969-01-18 19:12:00,0 +322,1969-06-05 10:13:00,0 +5684,1965-10-12 06:18:00,0 +9898,1966-01-03 10:01:00,0 +2163,1966-08-30 12:29:00,0 +9272,1968-07-01 17:50:00,0 +2726,1966-08-11 09:34:00,0 +8965,1966-08-19 16:16:00,0 +5367,1965-07-03 11:48:00,0 +7884,1966-03-31 18:18:00,0 +4576,1968-03-09 06:28:00,0 +1443,1965-03-29 09:46:00,0 +6010,1966-09-12 15:01:00,0 +3545,1965-07-04 13:24:00,0 +3331,1968-01-15 16:49:00,0 +1928,1968-01-26 04:28:00,0 +2863,1968-11-15 22:18:00,0 +1357,1967-08-07 19:29:00,0 +6356,1967-02-16 09:23:00,0 +2050,1966-05-07 04:46:00,0 +3797,1967-08-10 11:18:00,0 +9076,1969-01-21 18:35:00,0 +710,1967-10-10 09:20:00,0 +1021,1969-11-06 08:22:00,0 +7465,1969-08-02 16:12:00,0 +2648,1965-02-06 13:18:00,0 +9630,1968-09-05 22:34:00,0 +4436,1968-09-18 02:15:00,0 +1567,1966-01-31 19:01:00,0 +9981,1968-10-01 02:05:00,0 +3884,1968-07-14 19:28:00,0 +2682,1966-05-30 11:28:00,0 +7110,1966-10-01 12:49:00,0 +4399,1968-09-28 17:22:00,0 +1362,1965-06-08 03:25:00,0 +3010,1968-05-19 07:53:00,0 +8401,1965-09-03 13:42:00,0 +5042,1968-07-21 06:55:00,0 +7625,1967-03-13 20:32:00,0 +3794,1965-06-09 00:56:00,0 +8105,1968-01-11 19:47:00,0 +7046,1967-10-12 10:21:00,0 +3842,1966-12-16 22:26:00,0 +2079,1966-10-01 01:44:00,0 +3562,1966-02-05 18:15:00,0 +9154,1966-09-28 04:38:00,0 +2478,1969-04-18 02:48:00,0 +5199,1967-06-27 04:51:00,0 +2092,1967-03-05 14:53:00,0 +2712,1969-01-03 20:04:00,0 +7046,1966-11-15 01:22:00,0 +9885,1965-04-27 08:05:00,0 +3472,1967-04-11 14:29:00,0 +2990,1968-07-22 05:02:00,0 +3391,1967-09-10 08:48:00,0 +8660,1969-05-26 03:16:00,0 +4111,1969-08-02 11:13:00,0 +5021,1965-07-16 15:35:00,0 +4896,1967-07-09 20:51:00,0 +8614,1966-09-27 16:10:00,0 +9302,1969-12-10 07:39:00,0 +2014,1965-07-31 22:22:00,0 +5818,1965-03-03 16:24:00,0 +3787,1969-12-22 18:22:00,0 +8191,1968-08-16 20:00:00,0 +2305,1969-01-01 09:59:00,0 +610,1967-04-10 11:04:00,0 +6325,1965-05-28 06:45:00,0 +6875,1965-08-26 03:57:00,0 +2491,1965-05-06 17:48:00,0 +6767,1966-10-06 02:15:00,0 +9991,1966-04-25 20:56:00,0 +1694,1969-06-05 16:02:00,0 +322,1968-11-02 18:04:00,0 +8008,1967-12-15 23:34:00,0 +1363,1966-09-30 03:43:00,0 +3957,1968-11-11 23:30:00,0 +7737,1969-07-22 14:59:00,0 +8292,1968-06-28 05:36:00,0 +9545,1967-08-12 05:47:00,0 +1664,1966-04-29 13:09:00,0 +364,1966-01-06 22:57:00,0 +8786,1967-05-08 13:20:00,0 +2728,1965-12-08 19:57:00,0 +3060,1965-08-31 22:29:00,0 +9275,1966-03-15 00:04:00,0 +3409,1968-04-22 17:51:00,0 +1310,1967-01-03 02:43:00,0 +7745,1965-10-04 17:21:00,0 +8487,1966-03-11 13:24:00,0 +9578,1969-07-31 14:03:00,0 +5241,1968-11-06 18:48:00,0 +447,1968-03-04 13:25:00,0 +1366,1967-01-03 06:50:00,0 +1708,1968-03-22 10:27:00,0 +8577,1968-01-31 07:50:00,0 +6502,1967-12-07 00:13:00,0 +1897,1966-01-19 06:53:00,0 +6344,1968-12-23 00:04:00,0 +1563,1966-10-25 05:02:00,0 +7434,1966-08-15 18:12:00,0 +8841,1969-01-30 11:55:00,0 +8047,1969-03-25 06:07:00,0 +6903,1967-01-03 01:34:00,0 +8294,1967-11-17 23:50:00,0 +8411,1966-01-13 21:08:00,0 +6749,1968-10-12 05:29:00,0 +6367,1969-04-11 12:22:00,0 +1412,1966-01-25 06:12:00,0 +9823,1966-02-11 10:27:00,0 +8253,1968-03-09 02:15:00,0 +4339,1969-11-08 04:04:00,0 +4555,1966-03-05 17:14:00,0 +8578,1967-04-17 00:01:00,0 +5708,1967-03-06 16:43:00,0 +5576,1967-11-18 22:36:00,0 +4,1968-07-04 09:42:00,0 +1669,1965-03-21 22:23:00,0 +1098,1967-04-28 05:19:00,0 +6484,1969-11-01 02:05:00,0 +7062,1966-04-14 17:02:00,0 +8528,1969-12-12 08:45:00,0 +1455,1968-11-17 16:19:00,0 +9892,1965-07-22 17:59:00,0 +7526,1966-11-04 17:55:00,0 +28,1969-04-23 10:16:00,0 +8725,1966-02-20 21:52:00,0 +2271,1966-11-20 05:17:00,0 +8174,1967-11-15 14:37:00,0 +5492,1967-05-10 20:22:00,0 +7755,1965-01-30 22:18:00,0 +6058,1967-09-23 10:28:00,0 +1999,1967-02-01 02:01:00,0 +3593,1966-03-21 20:36:00,0 +1638,1968-01-01 09:04:00,0 +232,1968-10-31 13:14:00,0 +9528,1965-04-21 14:51:00,0 +9285,1965-11-29 05:44:00,0 +2447,1966-06-02 04:49:00,0 +1259,1968-10-21 07:22:00,0 +3543,1969-03-28 06:38:00,0 +5171,1969-10-18 16:25:00,0 +5760,1968-12-09 12:50:00,0 +5707,1965-04-08 00:07:00,0 +7280,1968-12-15 19:53:00,0 +8063,1965-11-15 23:16:00,0 +8247,1967-11-03 02:44:00,0 +9451,1969-06-08 07:19:00,0 +1341,1967-02-23 11:26:00,0 +980,1965-04-10 16:38:00,0 +7825,1965-11-02 20:25:00,0 +4549,1965-03-12 14:34:00,0 +505,1965-07-06 05:40:00,0 +5120,1967-07-06 10:09:00,0 +1485,1969-12-29 09:00:00,0 +906,1965-09-04 01:22:00,0 +2946,1968-12-15 18:31:00,0 +6746,1966-03-02 14:48:00,0 +5920,1967-09-29 11:21:00,0 +8127,1967-11-03 12:31:00,0 +3700,1969-07-06 05:19:00,0 +1184,1965-06-27 06:27:00,0 +9025,1965-12-07 02:16:00,0 +6797,1969-05-19 04:38:00,0 +266,1965-09-03 16:47:00,0 +3888,1965-06-16 08:47:00,0 +194,1969-05-17 15:51:00,0 +4495,1968-08-25 21:54:00,0 +5405,1969-05-17 08:44:00,0 +7193,1968-02-02 06:42:00,0 +693,1966-02-19 12:44:00,0 +1799,1968-09-10 11:03:00,0 +6302,1969-03-30 15:31:00,0 +5597,1965-10-21 15:04:00,0 +9673,1967-11-27 22:12:00,0 +2488,1967-04-26 07:01:00,0 +2643,1967-06-20 11:37:00,0 +3511,1968-12-22 18:07:00,0 +2550,1967-01-17 13:20:00,0 +9122,1965-07-18 21:14:00,0 +4894,1967-09-12 21:17:00,0 +8594,1969-07-14 06:04:00,0 +9425,1965-03-07 17:50:00,0 +8034,1967-12-30 18:58:00,0 +7211,1968-04-09 11:02:00,0 +6431,1968-03-21 02:35:00,0 +8286,1965-12-06 02:53:00,0 +7244,1966-07-10 00:02:00,0 +6028,1966-02-02 23:56:00,0 +934,1968-03-23 04:25:00,0 +303,1965-12-31 17:43:00,0 +6871,1965-04-22 20:14:00,0 +5146,1967-10-21 09:56:00,0 +7501,1966-10-21 09:37:00,0 +1358,1966-01-15 14:36:00,0 +2253,1968-02-16 21:43:00,0 +6345,1967-11-24 21:52:00,0 +6427,1966-07-16 08:08:00,0 +7059,1966-04-06 13:00:00,0 +1091,1966-11-10 22:04:00,0 +5635,1967-05-12 21:55:00,0 +1997,1969-05-23 15:08:00,0 +8265,1965-02-12 16:03:00,0 +3365,1968-09-13 05:57:00,0 +8477,1967-04-24 11:39:00,0 +6479,1967-09-17 06:05:00,0 +9076,1969-04-12 10:45:00,0 +6934,1965-03-02 19:36:00,0 +5681,1966-12-27 11:55:00,0 +6585,1965-04-06 06:13:00,0 +7151,1969-08-09 09:41:00,0 +6198,1965-03-13 06:43:00,0 +480,1968-04-26 03:42:00,0 +3961,1967-05-09 12:57:00,0 +7877,1965-06-09 10:48:00,0 +1615,1966-10-16 17:09:00,0 +6603,1965-10-12 17:22:00,0 +1536,1965-09-16 06:42:00,0 +3908,1968-04-17 17:37:00,0 +1021,1966-11-02 18:23:00,0 +9377,1966-08-05 23:17:00,0 +3574,1966-07-13 18:10:00,0 +2597,1967-09-01 18:12:00,0 +28,1966-07-13 10:43:00,0 +6942,1965-01-22 01:45:00,0 +6935,1967-11-02 15:15:00,0 +3780,1969-09-15 11:03:00,0 +9926,1965-12-12 13:19:00,0 +5422,1968-11-14 07:48:00,0 +835,1966-09-13 13:15:00,0 +6572,1967-02-26 04:52:00,0 +589,1965-11-29 07:52:00,0 +3888,1965-08-14 09:15:00,0 +4309,1967-11-27 09:09:00,0 +5211,1967-07-21 04:01:00,0 +8110,1968-04-19 19:59:00,0 +9852,1968-11-20 19:02:00,0 +5924,1966-07-11 12:30:00,0 +4091,1965-05-08 16:38:00,0 +5136,1969-04-20 12:05:00,0 +9682,1965-04-06 05:32:00,0 +2571,1967-05-20 19:14:00,0 +2585,1967-03-18 00:14:00,0 +2272,1966-04-07 16:47:00,0 +6399,1969-08-30 10:59:00,0 +1184,1967-06-27 14:45:00,0 +3725,1967-06-24 08:26:00,0 +6362,1967-03-29 18:23:00,0 +8261,1966-08-12 22:18:00,0 +424,1969-10-04 12:17:00,0 +964,1966-03-13 05:47:00,0 +5865,1965-04-26 18:36:00,0 +4665,1969-11-19 05:17:00,0 +1022,1966-03-06 18:01:00,0 +9978,1966-05-14 07:14:00,0 +2860,1967-03-19 02:20:00,0 +6377,1967-02-19 16:49:00,0 +3789,1968-02-27 07:39:00,0 +1367,1967-08-24 14:10:00,0 +2206,1968-04-27 01:23:00,0 +5056,1968-06-06 15:46:00,0 +2189,1965-10-15 13:49:00,0 +4071,1966-05-19 11:59:00,0 +6833,1967-01-30 07:17:00,0 +4325,1968-11-10 17:17:00,0 +3870,1967-11-16 23:21:00,0 +7940,1965-12-19 00:09:00,0 +7520,1966-01-03 02:52:00,0 +7461,1967-04-25 19:45:00,0 +6177,1967-03-11 05:04:00,0 +2266,1968-01-07 19:07:00,0 +3506,1968-07-14 02:19:00,0 +493,1968-05-03 01:21:00,0 +9941,1968-08-20 23:40:00,0 +9547,1967-10-25 23:51:00,0 +7652,1966-02-07 09:37:00,0 +3500,1968-12-19 22:38:00,0 +2310,1969-05-16 19:20:00,0 +6513,1969-12-24 11:19:00,0 +7352,1969-07-07 13:00:00,0 +8415,1968-07-04 02:38:00,0 +1828,1968-01-01 01:22:00,0 +6213,1965-10-06 06:24:00,0 +1850,1966-04-09 09:45:00,0 +4467,1965-10-23 03:00:00,0 +5194,1965-10-30 02:11:00,0 +3284,1967-09-12 16:43:00,0 +9924,1969-09-20 02:45:00,0 +5277,1965-06-10 10:30:00,0 +881,1967-12-16 15:24:00,0 +8552,1966-11-12 06:28:00,0 +7746,1969-01-17 22:40:00,0 +1848,1965-07-06 04:42:00,0 +8983,1968-07-05 10:40:00,0 +2854,1969-08-05 10:52:00,0 +7689,1965-06-08 09:09:00,0 +4163,1969-12-09 19:17:00,0 +1266,1967-07-26 17:27:00,0 +7361,1965-04-08 03:11:00,0 +9966,1966-06-04 23:47:00,0 +8101,1967-08-27 18:00:00,0 +1562,1969-09-22 04:54:00,0 +978,1965-04-06 17:36:00,0 +6516,1967-03-14 14:40:00,0 +4036,1969-07-20 07:43:00,0 +9168,1966-05-02 23:04:00,0 +6462,1967-04-20 17:30:00,0 +4066,1967-06-12 23:13:00,0 +3054,1969-03-26 06:48:00,0 +5818,1969-12-27 11:03:00,0 +7953,1965-08-22 08:07:00,0 +6,1967-12-19 09:27:00,0 +3545,1969-04-16 15:26:00,0 +1381,1965-10-25 19:12:00,0 +7858,1967-08-04 00:57:00,0 +356,1968-05-15 14:20:00,0 +3280,1965-07-08 23:31:00,0 +622,1967-07-21 02:56:00,0 +9996,1966-12-21 04:06:00,0 +6098,1966-10-01 16:36:00,0 +4139,1966-05-07 16:40:00,0 +9596,1967-09-11 21:07:00,0 +4024,1967-04-05 19:59:00,0 +2921,1966-12-28 22:35:00,0 +511,1969-07-13 07:57:00,0 +9214,1967-07-20 10:24:00,0 +3056,1966-04-23 05:29:00,0 +3902,1966-03-27 05:56:00,0 +4564,1969-07-08 12:42:00,0 +3226,1969-05-31 23:09:00,0 +43,1965-09-14 17:18:00,0 +2250,1967-12-30 09:35:00,0 +1336,1965-05-24 04:16:00,0 +7147,1965-03-26 09:30:00,0 +9108,1969-07-30 01:17:00,0 +273,1965-01-12 09:33:00,0 +8014,1967-07-06 02:38:00,0 +6139,1969-10-17 22:14:00,0 +7897,1967-11-07 00:34:00,0 +8154,1967-12-01 18:06:00,0 +3814,1967-10-04 22:43:00,0 +5592,1967-11-09 11:28:00,0 +7039,1966-03-03 21:32:00,0 +6278,1969-01-16 00:06:00,0 +8014,1968-12-20 17:22:00,0 +4497,1967-10-24 15:47:00,0 +9327,1965-10-09 21:30:00,0 +8078,1967-02-20 22:42:00,0 +5950,1965-02-15 20:22:00,0 +8664,1965-02-24 00:35:00,0 +6772,1967-09-22 11:22:00,0 +6444,1965-01-04 00:54:00,0 +3331,1966-09-22 17:06:00,0 +4384,1968-06-24 08:48:00,0 +5398,1965-04-17 19:50:00,0 +389,1968-05-18 06:32:00,0 +4552,1967-08-25 08:33:00,0 +4004,1967-06-27 23:17:00,0 +865,1965-05-20 16:04:00,0 +2236,1968-03-24 00:19:00,0 +7821,1966-05-24 14:52:00,0 +7249,1969-12-29 16:29:00,0 +6735,1966-12-23 09:54:00,0 +7619,1967-06-17 08:09:00,0 +1764,1968-01-25 09:40:00,0 +4701,1968-09-13 21:02:00,0 +2035,1965-11-07 18:35:00,0 +6240,1968-01-10 15:03:00,0 +3482,1965-03-01 00:56:00,0 +4009,1968-06-30 18:50:00,0 +8023,1968-09-13 09:18:00,0 +5278,1966-05-14 11:38:00,0 +5230,1966-09-20 20:19:00,0 +5352,1968-01-26 16:47:00,0 +9439,1967-04-03 05:24:00,0 +3204,1967-08-10 21:56:00,0 +3489,1968-11-11 06:32:00,0 +4778,1965-11-24 04:14:00,0 +1308,1966-05-01 07:49:00,0 +8341,1965-08-10 08:10:00,0 +3916,1965-10-10 12:21:00,0 +8474,1965-07-22 06:39:00,0 +8989,1967-04-26 11:22:00,0 +845,1969-09-04 21:10:00,0 +874,1965-12-10 15:28:00,0 +777,1968-08-25 20:59:00,0 +5571,1966-05-20 23:05:00,0 +5809,1965-05-21 12:27:00,0 +5901,1967-03-25 13:32:00,0 +8459,1966-05-23 19:03:00,0 +5598,1967-10-15 04:30:00,0 +4031,1968-11-11 19:19:00,0 +7690,1966-07-03 23:24:00,0 +6971,1965-03-29 12:52:00,0 +5677,1965-12-05 18:43:00,0 +9011,1968-03-04 02:13:00,0 +1254,1968-08-03 03:04:00,0 +1459,1969-12-13 01:41:00,0 +8757,1969-03-15 18:45:00,0 +2963,1965-11-01 04:26:00,0 +3986,1967-10-09 11:48:00,0 +7925,1965-02-21 11:18:00,0 +7832,1965-04-07 00:06:00,0 +228,1968-11-01 02:48:00,0 +2489,1965-08-27 20:25:00,0 +2366,1969-11-14 08:07:00,0 +2414,1969-12-10 03:55:00,0 +9528,1968-06-05 21:38:00,0 +3278,1968-01-03 04:59:00,0 +258,1969-11-26 13:33:00,0 +5383,1969-01-06 14:48:00,0 +5640,1969-11-13 17:09:00,0 +981,1968-05-22 00:50:00,0 +3003,1965-03-10 07:20:00,0 +9674,1965-01-22 12:42:00,0 +3035,1968-09-08 18:35:00,0 +3153,1968-01-25 06:15:00,0 +8583,1966-02-10 23:40:00,0 +7021,1969-05-02 21:25:00,0 +3061,1967-03-06 21:27:00,0 +4710,1968-03-18 23:43:00,0 +1104,1967-08-04 16:49:00,0 +7456,1967-06-17 13:40:00,0 +4261,1969-01-31 23:37:00,0 +5340,1965-02-09 22:11:00,0 +1889,1968-10-03 08:04:00,0 +4725,1967-11-10 08:45:00,0 +3366,1967-07-08 16:08:00,0 +8992,1969-12-25 03:14:00,0 +3519,1968-04-21 20:11:00,0 +8323,1966-09-29 11:17:00,0 +832,1969-08-06 03:41:00,0 +5106,1965-12-18 14:32:00,0 +9970,1967-12-26 14:12:00,0 +2709,1966-10-19 06:16:00,0 +9307,1966-11-23 13:15:00,0 +9436,1965-08-28 13:44:00,0 +2051,1969-05-03 16:44:00,0 +1340,1968-05-23 03:29:00,0 +5065,1969-12-30 01:28:00,0 +7129,1967-04-25 13:11:00,0 +7997,1968-12-06 22:08:00,0 +5155,1966-07-09 03:10:00,0 +6114,1969-07-15 04:54:00,0 +5437,1965-05-12 02:27:00,0 +5802,1969-01-13 11:47:00,0 +8145,1966-11-16 23:48:00,0 +8504,1967-03-20 01:16:00,0 +7047,1966-10-30 18:14:00,0 +1131,1965-04-17 06:46:00,0 +2584,1966-06-30 05:23:00,0 +1049,1967-05-24 15:46:00,0 +5157,1967-06-12 18:41:00,0 +6480,1967-02-10 18:30:00,0 +3323,1968-03-05 04:14:00,0 +1089,1965-07-20 22:46:00,0 +3714,1966-12-11 22:54:00,0 +5848,1968-06-22 11:55:00,0 +5020,1968-07-09 17:08:00,0 +9964,1965-10-05 09:42:00,0 +5040,1965-04-13 05:22:00,0 +4650,1967-10-14 20:21:00,0 +4555,1965-03-16 03:39:00,0 +9742,1967-11-30 12:39:00,0 +1593,1969-03-05 01:16:00,0 +5318,1967-12-03 16:29:00,0 +9633,1966-05-01 03:13:00,0 +2511,1967-03-01 04:20:00,0 +6077,1969-10-26 17:48:00,0 +9138,1965-12-18 16:30:00,0 +5643,1969-06-22 19:55:00,0 +9741,1965-06-19 16:13:00,0 +701,1967-05-25 12:28:00,0 +2579,1968-04-10 01:10:00,0 +1525,1968-09-17 01:30:00,0 +3706,1967-09-02 03:56:00,0 +4575,1968-09-25 02:25:00,0 +2002,1968-05-12 16:18:00,0 +6120,1969-05-16 16:15:00,0 +7597,1967-03-03 18:40:00,0 +542,1969-06-30 02:48:00,0 +7865,1965-11-11 15:40:00,0 +4016,1968-01-31 23:13:00,0 +4922,1965-12-01 12:34:00,0 +17,1965-02-23 11:54:00,0 +9286,1966-10-29 01:15:00,0 +7536,1969-04-22 17:34:00,0 +330,1966-06-10 08:11:00,0 +8200,1968-03-28 05:18:00,0 +4238,1967-02-24 03:35:00,0 +5942,1966-06-07 20:56:00,0 +2341,1969-09-30 16:45:00,0 +4805,1966-12-10 23:40:00,0 +4562,1969-11-29 15:10:00,0 +7555,1965-03-16 20:58:00,0 +6555,1966-03-05 13:37:00,0 +3402,1968-05-08 19:03:00,0 +1152,1969-01-20 08:23:00,0 +6767,1966-08-15 17:13:00,0 +254,1968-01-03 00:38:00,0 +6965,1966-04-26 05:09:00,0 +9664,1967-08-29 07:07:00,0 +3117,1968-12-18 05:29:00,0 +2697,1966-10-25 07:46:00,0 +7776,1968-04-05 04:07:00,0 +3125,1968-04-14 06:32:00,0 +9334,1969-12-18 14:22:00,0 +7598,1969-11-06 23:05:00,0 +9019,1969-02-28 03:48:00,0 +5313,1967-12-01 02:59:00,0 +9220,1967-08-31 05:48:00,0 +2180,1969-08-14 17:09:00,0 +3927,1966-06-07 07:33:00,0 +5577,1966-07-23 05:48:00,0 +5277,1969-11-08 12:15:00,0 +6823,1966-12-20 19:46:00,0 +4936,1969-08-13 12:58:00,0 +2552,1968-10-15 19:31:00,0 +9004,1966-06-06 11:56:00,0 +7953,1969-06-16 01:22:00,0 +489,1968-01-10 22:59:00,0 +6561,1969-11-28 20:22:00,0 +3184,1966-12-09 02:26:00,0 +6777,1966-11-09 18:30:00,0 +1761,1968-12-28 16:32:00,0 +1898,1967-06-15 04:00:00,0 +7258,1968-11-06 03:45:00,0 +8444,1968-08-03 18:09:00,0 +8362,1969-08-28 21:53:00,0 +4127,1968-08-07 18:16:00,0 +8403,1969-12-03 00:27:00,0 +8803,1968-09-11 05:49:00,0 +673,1965-03-10 16:50:00,0 +8192,1967-06-26 08:25:00,0 +6638,1968-07-05 15:23:00,0 +8779,1966-01-06 10:15:00,0 +6097,1966-08-14 17:42:00,0 +8748,1968-08-09 08:59:00,0 +3943,1968-09-25 01:57:00,0 +8291,1967-09-25 14:58:00,0 +5969,1966-12-15 14:43:00,0 +6265,1967-01-08 16:59:00,0 +7046,1966-05-22 01:41:00,0 +920,1966-11-26 16:31:00,0 +3395,1965-08-25 11:38:00,0 +2830,1968-10-27 15:15:00,0 +2677,1969-03-14 22:34:00,0 +8823,1968-08-18 22:11:00,0 +1149,1965-06-14 00:03:00,0 +8312,1967-05-13 21:25:00,0 +1419,1969-04-21 15:24:00,0 +4181,1966-10-11 22:48:00,0 +5939,1968-12-03 22:14:00,0 +4895,1966-07-13 00:47:00,0 +5683,1965-10-03 14:17:00,0 +489,1967-08-08 00:40:00,0 +6599,1967-11-20 06:10:00,0 +6222,1967-07-23 03:18:00,0 +6532,1969-08-21 09:02:00,0 +7822,1968-08-14 02:44:00,0 +593,1968-09-07 03:54:00,0 +5619,1966-05-17 09:24:00,0 +2826,1965-09-04 13:29:00,0 +6060,1968-01-10 16:27:00,0 +8539,1965-02-24 09:04:00,0 +37,1966-11-02 00:50:00,0 +7804,1965-12-30 23:53:00,0 +1931,1966-06-18 18:21:00,0 +3065,1966-09-01 23:02:00,0 +8983,1967-04-13 20:53:00,0 +8019,1966-04-19 20:15:00,0 +8995,1969-09-07 07:26:00,0 +5994,1967-12-25 00:50:00,0 +8100,1968-10-27 12:56:00,0 +2046,1969-02-01 10:42:00,0 +2900,1966-03-23 21:42:00,0 +2706,1966-06-14 05:40:00,0 +1606,1967-10-19 12:22:00,0 +8015,1967-09-02 00:48:00,0 +2327,1969-11-03 02:06:00,0 +3508,1967-07-30 21:53:00,0 +7054,1965-04-11 08:24:00,0 +7451,1969-08-03 04:52:00,0 +7264,1965-09-19 23:29:00,0 +7034,1966-01-31 04:54:00,0 +8809,1965-04-14 14:32:00,0 +4489,1966-05-26 20:23:00,0 +3958,1969-12-26 09:57:00,0 +8865,1965-11-11 08:24:00,0 +9432,1967-03-12 20:59:00,0 +7366,1968-04-07 07:22:00,0 +6114,1968-03-07 05:42:00,0 +6227,1968-05-14 15:49:00,0 +2699,1965-07-03 13:06:00,0 +4507,1967-10-23 10:44:00,0 +2791,1966-10-26 16:02:00,0 +6554,1969-02-05 23:05:00,0 +1658,1967-04-12 17:38:00,0 +756,1969-11-13 03:56:00,0 +5206,1968-01-13 17:48:00,0 +9146,1968-05-22 00:05:00,0 +3734,1969-02-06 09:33:00,0 +9481,1967-10-11 16:52:00,0 +6461,1967-12-13 08:26:00,0 +1318,1965-09-21 00:24:00,0 +7218,1965-02-13 21:55:00,0 +3460,1969-03-10 02:15:00,0 +8934,1969-05-11 00:25:00,0 +8160,1968-02-09 01:00:00,0 +408,1967-12-29 00:49:00,0 +4168,1967-03-16 14:59:00,0 +3407,1966-12-08 17:44:00,0 +4565,1969-04-26 11:35:00,0 +5732,1965-10-09 07:17:00,0 +7299,1968-01-26 03:38:00,0 +468,1969-12-18 23:32:00,0 +8966,1966-04-19 03:54:00,0 +3873,1967-09-21 12:13:00,0 +323,1967-10-10 11:39:00,0 +3133,1966-08-27 16:40:00,0 +570,1969-04-12 07:03:00,0 +4926,1969-01-15 06:54:00,0 +408,1969-11-15 00:03:00,0 +6759,1967-07-08 23:27:00,0 +4448,1966-04-12 00:42:00,0 +4970,1967-09-09 12:40:00,0 +7378,1967-06-17 02:30:00,0 +6261,1967-09-17 17:41:00,0 +2448,1969-07-10 14:26:00,0 +2972,1967-11-28 15:26:00,0 +8194,1966-03-15 11:29:00,0 +2645,1966-12-13 03:36:00,0 +9601,1968-09-25 12:20:00,0 +8306,1968-02-11 02:40:00,0 +4484,1968-02-29 06:55:00,0 +9856,1968-02-22 12:36:00,0 +4755,1969-06-28 07:38:00,0 +2422,1967-06-28 16:28:00,0 +7780,1969-09-28 17:02:00,0 +523,1966-10-21 02:13:00,0 +8880,1966-04-02 07:05:00,0 +3595,1968-09-23 04:02:00,0 +4753,1969-01-03 11:54:00,0 +4657,1965-02-09 16:55:00,0 +5212,1966-04-08 11:08:00,0 +9940,1968-09-03 12:46:00,0 +3280,1965-09-30 12:24:00,0 +5920,1967-12-22 12:26:00,0 +2800,1965-08-21 00:31:00,0 +4632,1967-12-23 02:55:00,0 +4689,1967-01-31 13:55:00,0 +5482,1968-06-08 17:42:00,0 +6478,1966-04-25 00:40:00,0 +1542,1965-11-28 05:32:00,0 +6908,1967-09-21 02:36:00,0 +5630,1966-07-30 13:44:00,0 +4777,1968-02-22 01:08:00,0 +4062,1966-12-29 02:29:00,0 +8483,1965-05-04 08:30:00,0 +2919,1967-01-15 11:08:00,0 +8261,1967-06-23 21:55:00,0 +8451,1967-10-19 23:33:00,0 +414,1968-08-20 08:37:00,0 +4331,1968-04-24 09:26:00,0 +5830,1966-04-20 21:38:00,0 +4402,1965-08-09 04:11:00,0 +3732,1966-02-12 21:19:00,0 +897,1968-10-13 13:05:00,0 +6410,1966-01-31 12:50:00,0 +2717,1965-12-19 11:47:00,0 +2192,1968-02-14 13:32:00,0 +7999,1967-09-27 18:05:00,0 +8791,1967-08-12 12:39:00,0 +2193,1969-05-20 16:16:00,0 +1471,1965-07-29 19:43:00,0 +6165,1965-02-20 02:05:00,0 +7004,1966-07-12 21:37:00,0 +3909,1968-11-08 10:18:00,0 +5553,1965-09-27 09:49:00,0 +9086,1965-01-14 01:21:00,0 +1930,1967-05-21 11:13:00,0 +5151,1966-10-13 00:04:00,0 +1658,1965-03-30 12:51:00,0 +7705,1968-07-19 23:18:00,0 +5817,1967-04-02 02:47:00,0 +2369,1965-02-16 08:23:00,0 +499,1965-08-16 16:00:00,0 +3873,1965-07-10 19:51:00,0 +5770,1969-10-15 15:34:00,0 +4948,1967-02-04 09:00:00,0 +5237,1967-08-31 20:32:00,0 +856,1967-06-26 18:56:00,0 +4384,1965-06-27 13:06:00,0 +2338,1967-01-10 22:43:00,0 +435,1969-03-07 11:24:00,0 +8792,1966-05-25 20:06:00,0 +8128,1965-01-17 20:24:00,0 +4553,1969-08-19 21:23:00,0 +6877,1966-05-09 07:08:00,0 +7311,1966-11-26 05:45:00,0 +3772,1966-01-21 01:43:00,0 +2004,1966-01-18 22:46:00,0 +9347,1967-10-17 18:02:00,0 +7305,1968-06-20 09:38:00,0 +6896,1965-02-09 03:40:00,0 +874,1966-05-13 00:23:00,0 +8383,1965-11-24 23:43:00,0 +2890,1969-02-22 14:35:00,0 +345,1967-11-15 19:31:00,0 +4776,1966-04-09 12:47:00,0 +9997,1968-10-28 14:44:00,0 +9168,1968-12-08 01:14:00,0 +5374,1967-07-27 00:01:00,0 +6105,1969-07-19 06:51:00,0 +3105,1969-11-21 05:32:00,0 +4288,1969-08-03 00:48:00,0 +4767,1966-11-02 06:10:00,0 +9357,1966-02-23 11:26:00,0 +6628,1968-09-18 20:28:00,0 +4084,1967-08-12 20:49:00,0 +3090,1966-02-11 14:25:00,0 +6977,1965-10-22 21:32:00,0 +3934,1965-08-20 05:10:00,0 +5997,1968-03-06 06:54:00,0 +6071,1968-03-25 17:24:00,0 +7442,1969-08-01 03:31:00,0 +220,1968-09-07 21:59:00,0 +7172,1969-11-30 02:18:00,0 +9686,1967-05-08 02:12:00,0 +6388,1969-11-01 17:38:00,0 +3745,1968-07-03 12:06:00,0 +2187,1966-03-26 12:52:00,0 +4288,1967-11-21 06:24:00,0 +116,1968-05-11 10:44:00,0 +9791,1968-11-09 10:06:00,0 +8688,1967-06-17 05:47:00,0 +9681,1969-11-06 19:53:00,0 +9129,1969-04-06 03:50:00,0 +7058,1968-02-07 15:07:00,0 +3611,1966-02-24 14:48:00,0 +5300,1968-08-31 03:26:00,0 +9875,1966-06-19 00:11:00,0 +2812,1967-06-25 09:43:00,0 +1183,1968-06-24 09:38:00,0 +4705,1966-06-27 13:21:00,0 +8612,1967-07-08 14:14:00,0 +6714,1967-11-07 21:59:00,0 +1859,1969-08-29 19:50:00,0 +2486,1965-08-02 20:12:00,0 +2033,1965-03-26 03:02:00,0 +246,1965-07-23 17:45:00,0 +3164,1968-01-23 07:27:00,0 +2295,1967-11-18 17:49:00,0 +1373,1967-12-23 18:26:00,0 +7854,1968-04-16 15:28:00,0 +5988,1966-06-09 12:37:00,0 +1433,1967-02-15 22:34:00,0 +2367,1967-02-28 05:59:00,0 +1457,1967-04-28 21:52:00,0 +8749,1968-06-06 13:40:00,0 +3885,1969-12-27 16:26:00,0 +6148,1969-08-06 15:17:00,0 +9527,1966-09-18 08:54:00,0 +3495,1969-10-03 12:22:00,0 +3846,1965-12-13 05:18:00,0 +5592,1969-11-12 23:05:00,0 +239,1968-10-22 16:47:00,0 +164,1966-05-12 04:23:00,0 +2101,1968-05-27 01:26:00,0 +4873,1968-05-28 14:37:00,0 +729,1966-12-12 04:42:00,0 +9711,1969-11-23 04:53:00,0 +2502,1968-04-25 02:47:00,0 +6057,1968-07-19 08:27:00,0 +8238,1967-08-04 01:26:00,0 +3817,1965-04-21 23:46:00,0 +7083,1966-09-14 22:16:00,0 +7488,1965-09-24 08:03:00,0 +9653,1965-10-15 14:58:00,0 +2839,1966-08-14 02:02:00,0 +4373,1967-06-19 22:14:00,0 +8540,1965-12-28 23:25:00,0 +5469,1965-10-18 01:44:00,0 +7046,1966-08-17 03:12:00,0 +1844,1969-09-03 12:02:00,0 +9472,1969-01-23 22:14:00,0 +9238,1967-03-29 08:05:00,0 +7628,1965-09-18 16:20:00,0 +7769,1965-06-06 13:25:00,0 +7608,1965-05-08 04:52:00,0 +6399,1969-10-09 00:35:00,0 +7153,1967-02-26 04:38:00,0 +3776,1968-07-24 16:09:00,0 +2288,1969-08-21 07:28:00,0 +1274,1965-01-30 12:01:00,0 +4709,1966-08-15 05:20:00,0 +5631,1966-02-15 11:12:00,0 +2204,1968-01-24 17:49:00,0 +4579,1966-02-07 16:44:00,0 +7109,1965-01-06 01:19:00,0 +9455,1968-11-06 05:45:00,0 +4526,1969-10-04 03:46:00,0 +7549,1968-12-06 00:55:00,0 +8623,1965-10-22 17:41:00,0 +848,1966-12-05 08:24:00,0 +6412,1965-08-07 23:45:00,0 +2661,1966-04-06 18:18:00,0 +1601,1968-03-01 03:09:00,0 +7701,1965-03-07 03:20:00,0 +8734,1968-11-21 11:58:00,0 +5510,1967-04-16 16:02:00,0 +1536,1969-03-26 17:43:00,0 +3284,1967-07-25 06:20:00,0 +5333,1969-07-21 02:45:00,0 +4006,1966-04-06 02:51:00,0 +4392,1965-08-05 05:30:00,0 +970,1969-12-15 08:57:00,0 +9472,1967-11-13 12:58:00,0 +5922,1968-04-13 19:17:00,0 +1716,1968-08-27 19:20:00,0 +4160,1966-10-08 22:01:00,0 +410,1966-12-15 04:58:00,0 +3996,1967-01-03 22:59:00,0 +9832,1968-09-15 11:12:00,0 +9288,1967-10-30 21:41:00,0 +2014,1965-09-05 10:43:00,0 +2125,1967-01-09 10:00:00,0 +3322,1968-05-20 18:34:00,0 +4642,1969-08-25 07:00:00,0 +4453,1966-09-01 14:08:00,0 +3210,1969-09-02 04:18:00,0 +3825,1965-10-23 02:43:00,0 +9183,1966-08-27 12:53:00,0 +9951,1967-12-07 15:41:00,0 +7335,1966-09-14 01:47:00,0 +9301,1969-08-04 00:15:00,0 +8505,1966-10-10 12:16:00,0 +9551,1968-07-08 17:29:00,0 +9692,1965-08-06 14:38:00,0 +905,1966-10-12 06:44:00,0 +7245,1967-01-18 09:26:00,0 +7669,1965-12-22 05:19:00,0 +983,1968-06-30 22:35:00,0 +2142,1966-09-12 03:05:00,0 +3707,1966-09-07 07:38:00,0 +7766,1967-02-14 21:03:00,0 +6106,1965-08-08 20:05:00,0 +1308,1965-02-03 19:59:00,0 +3035,1967-02-23 14:42:00,0 +520,1966-04-07 03:34:00,0 +3506,1968-05-08 20:15:00,0 +9266,1969-11-11 14:20:00,0 +4846,1968-03-26 16:16:00,0 +2295,1966-06-24 15:39:00,0 +8500,1968-12-22 03:01:00,0 +4391,1969-10-05 04:34:00,0 +8924,1966-10-24 04:47:00,0 +8482,1966-08-11 17:44:00,0 +5536,1965-03-05 07:59:00,0 +3839,1969-04-02 18:31:00,0 +6045,1968-04-17 21:50:00,0 +2045,1966-05-08 02:55:00,0 +674,1966-06-17 07:57:00,0 +3845,1967-06-19 07:47:00,0 +3004,1966-02-25 20:53:00,0 +9015,1965-10-23 08:17:00,0 +4147,1965-05-21 15:09:00,0 +5431,1966-09-06 01:45:00,0 +6361,1966-06-03 15:35:00,0 +1919,1966-03-18 22:47:00,0 +6221,1965-01-28 10:23:00,0 +7803,1968-03-22 07:13:00,0 +9359,1969-07-08 17:24:00,0 +9800,1965-02-20 22:33:00,0 +9664,1967-01-08 16:04:00,0 +4124,1969-07-27 07:36:00,0 +1375,1965-01-19 10:38:00,0 +7980,1968-07-26 21:34:00,0 +9413,1969-06-15 00:37:00,0 +3773,1969-03-19 03:21:00,0 +6644,1967-08-03 10:59:00,0 +3948,1967-07-15 01:16:00,0 +1554,1966-12-29 12:21:00,0 +5879,1966-05-01 15:23:00,0 +4078,1967-04-27 17:24:00,0 +2329,1965-10-22 22:30:00,0 +9368,1968-05-21 15:58:00,0 +3,1967-08-24 19:21:00,0 +211,1968-06-20 16:27:00,0 +2419,1966-11-21 00:49:00,0 +3448,1965-06-12 13:46:00,0 +5896,1969-03-02 14:59:00,0 +5603,1969-12-28 14:42:00,0 +3446,1965-09-01 16:05:00,0 +7348,1969-02-16 16:35:00,0 +1238,1968-08-05 04:55:00,0 +9682,1965-04-27 10:57:00,0 +4394,1968-11-10 21:23:00,0 +4983,1968-11-21 02:35:00,0 +2802,1966-03-24 16:21:00,0 +4485,1967-07-16 23:00:00,0 +3672,1966-10-13 14:03:00,0 +7914,1968-05-11 11:15:00,0 +5462,1968-06-20 02:27:00,0 +6522,1966-10-13 14:46:00,0 +9579,1966-02-13 14:14:00,0 +5442,1968-08-17 17:30:00,0 +9996,1965-01-23 02:14:00,0 +4987,1966-02-24 14:46:00,0 +6973,1967-10-08 00:35:00,0 +4731,1966-08-02 02:44:00,0 +4993,1967-06-10 23:08:00,0 +446,1967-02-12 05:44:00,0 +8971,1969-03-29 21:10:00,0 +7993,1966-04-30 15:56:00,0 +5531,1968-05-12 03:51:00,0 +699,1965-06-13 04:07:00,0 +1282,1967-06-26 12:30:00,0 +940,1969-01-31 16:00:00,0 +975,1969-07-20 00:10:00,0 +2476,1965-11-08 16:03:00,0 +8949,1968-09-25 16:42:00,0 +5390,1968-09-19 04:36:00,0 +6279,1968-02-04 09:37:00,0 +9421,1969-01-09 22:40:00,0 +4704,1968-05-28 20:05:00,0 +5631,1967-12-12 00:23:00,0 +9521,1969-04-04 12:23:00,0 +1279,1968-06-05 14:36:00,0 +762,1966-04-24 19:24:00,0 +4172,1969-05-06 07:13:00,0 +4606,1969-10-05 10:22:00,0 +1489,1966-10-27 20:54:00,0 +2354,1967-06-09 11:34:00,0 +9080,1969-06-02 07:34:00,0 +8308,1968-12-09 19:11:00,0 +7346,1968-01-02 11:16:00,0 +4809,1965-07-12 06:06:00,0 +388,1969-10-18 02:03:00,0 +3194,1967-10-04 21:35:00,0 +257,1967-07-30 17:01:00,0 +3377,1965-04-11 11:17:00,0 +9618,1968-06-17 01:56:00,0 +9799,1968-08-28 02:30:00,0 +6665,1969-09-14 23:36:00,0 +1418,1969-07-30 05:10:00,0 +9867,1966-03-05 02:35:00,0 +1781,1967-08-15 10:17:00,0 +6637,1968-09-08 04:19:00,0 +7136,1966-02-12 22:16:00,0 +7396,1968-04-24 22:49:00,0 +7887,1969-10-13 23:57:00,0 +2371,1968-04-01 06:49:00,0 +4481,1968-10-09 20:47:00,0 +850,1965-08-25 03:13:00,0 +5877,1968-02-12 18:10:00,0 +1803,1969-12-04 02:46:00,0 +3915,1965-09-08 12:30:00,0 +8527,1968-02-28 19:34:00,0 +858,1966-04-16 14:14:00,0 +2637,1965-10-19 07:55:00,0 +1442,1965-04-24 03:46:00,0 +1700,1968-06-15 22:51:00,0 +6016,1967-10-31 12:10:00,0 +3972,1968-03-17 00:24:00,0 +3613,1969-06-02 15:26:00,0 +4888,1969-06-24 08:38:00,0 +2249,1965-01-10 07:50:00,0 +4952,1968-02-14 23:20:00,0 +3405,1968-08-04 12:16:00,0 +8726,1969-06-06 19:22:00,0 +68,1966-04-27 09:33:00,0 +9450,1967-04-03 14:04:00,0 +9126,1967-09-25 13:28:00,0 +357,1965-07-02 13:54:00,0 +4296,1968-07-25 10:29:00,0 +9728,1969-12-01 10:17:00,0 +6934,1965-07-12 14:09:00,0 +8171,1969-03-16 02:06:00,0 +8966,1967-05-15 11:31:00,0 +6881,1969-12-03 07:38:00,0 +7447,1965-10-21 13:55:00,0 +4221,1967-06-08 12:19:00,0 +2183,1966-01-21 08:06:00,0 +9724,1969-12-20 23:00:00,0 +8370,1967-12-13 09:18:00,0 +6430,1969-05-24 22:04:00,0 +8720,1969-02-17 12:08:00,0 +8413,1968-06-29 00:39:00,0 +6332,1966-09-13 17:24:00,0 +8345,1969-07-18 16:04:00,0 +2457,1965-03-04 06:06:00,0 +5718,1967-10-19 15:17:00,0 +2871,1969-12-06 17:35:00,0 +7115,1966-07-05 02:33:00,0 +3115,1966-11-30 06:38:00,0 +6363,1969-04-25 15:46:00,0 +9197,1966-09-18 03:58:00,0 +2715,1967-11-25 09:32:00,0 +9462,1967-10-02 06:09:00,0 +3369,1968-05-05 21:40:00,0 +9500,1965-12-25 11:03:00,0 +25,1965-05-14 11:49:00,0 +6376,1967-04-16 10:00:00,0 +9376,1967-06-02 08:38:00,0 +8872,1969-07-04 17:04:00,0 +9416,1969-05-29 23:30:00,0 +1846,1969-08-29 07:21:00,0 +1035,1968-09-05 05:30:00,0 +4615,1967-05-01 04:33:00,0 +7112,1968-07-04 20:37:00,0 +4163,1965-08-30 03:59:00,0 +8940,1966-11-19 09:33:00,0 +4871,1969-06-18 10:30:00,0 +8577,1966-04-26 10:09:00,0 +6157,1968-03-13 22:12:00,0 +7547,1967-07-11 23:26:00,0 +3451,1969-03-04 03:56:00,0 +6268,1965-07-08 17:14:00,0 +6016,1967-10-14 06:02:00,0 +8992,1968-06-30 09:54:00,0 +3103,1965-03-17 23:26:00,0 +5576,1967-03-06 02:58:00,0 +3026,1968-11-21 02:15:00,0 +8760,1966-06-27 08:22:00,0 +5752,1966-12-16 00:20:00,0 +7671,1966-06-19 07:39:00,0 +913,1966-11-08 09:48:00,0 +1929,1965-03-05 18:35:00,0 +5885,1965-03-14 02:50:00,0 +3806,1966-10-11 04:45:00,0 +1176,1969-10-19 23:45:00,0 +6317,1965-12-28 15:46:00,0 +6410,1966-09-13 03:10:00,0 +9496,1966-12-15 10:48:00,0 +3631,1966-08-24 08:20:00,0 +3290,1968-08-28 01:50:00,0 +9547,1967-12-19 18:06:00,0 +8468,1966-08-04 11:07:00,0 +3940,1966-08-07 03:37:00,0 +1653,1967-01-15 20:21:00,0 +939,1968-05-06 12:31:00,0 +2669,1969-08-07 05:40:00,0 +1895,1966-05-30 19:51:00,0 +5652,1968-03-23 10:03:00,0 +7480,1965-08-21 04:16:00,0 +4714,1968-07-17 09:15:00,0 +7234,1966-09-09 06:20:00,0 +6870,1969-12-18 11:20:00,0 +2755,1965-08-24 11:40:00,0 +9287,1968-09-07 10:20:00,0 +5803,1969-01-17 11:09:00,0 +4532,1967-03-06 18:54:00,0 +6968,1965-09-20 16:51:00,0 +4615,1968-01-03 09:15:00,0 +9888,1966-01-16 04:10:00,0 +7028,1967-11-04 22:13:00,0 +7497,1967-06-05 09:23:00,0 +3163,1966-09-26 12:18:00,0 +2492,1969-02-02 05:47:00,0 +1450,1966-11-11 21:10:00,0 +7385,1967-02-16 21:27:00,0 +343,1966-08-13 22:25:00,0 +6728,1966-08-02 23:26:00,0 +6193,1965-01-18 14:46:00,0 +5255,1969-08-13 10:27:00,0 +2594,1966-08-06 06:56:00,0 +7579,1965-06-04 13:41:00,0 +3839,1967-03-20 00:46:00,0 +307,1966-06-23 12:33:00,0 +2510,1969-03-21 02:38:00,0 +8902,1966-06-06 21:06:00,0 +7403,1966-10-30 00:12:00,0 +9798,1965-12-05 13:31:00,0 +7603,1968-06-12 10:57:00,0 +9765,1966-06-23 19:26:00,0 +8538,1968-11-30 14:01:00,0 +5879,1968-07-15 12:18:00,0 +7124,1969-11-28 09:23:00,0 +708,1965-10-13 13:00:00,0 +4361,1969-03-06 21:44:00,0 +9536,1968-06-16 03:53:00,0 +31,1966-06-08 13:06:00,0 +5252,1968-03-15 13:02:00,0 +5780,1966-10-31 23:48:00,0 +1525,1967-12-04 21:03:00,0 +8321,1969-06-30 12:27:00,0 +1790,1969-03-20 05:48:00,0 +1357,1967-11-04 11:03:00,0 +2129,1965-01-09 19:14:00,0 +3709,1967-09-26 22:15:00,0 +5075,1968-03-28 20:32:00,0 +8828,1969-12-18 13:32:00,0 +8151,1969-12-12 20:46:00,0 +3326,1966-06-27 19:40:00,0 +560,1966-09-06 01:04:00,0 +5137,1966-03-10 14:37:00,0 +855,1965-01-19 04:33:00,0 +2649,1966-10-23 11:02:00,0 +6999,1968-09-10 12:11:00,0 +2129,1968-09-15 03:28:00,0 +5813,1967-11-14 17:02:00,0 +543,1965-12-29 22:55:00,0 +2556,1965-12-28 21:46:00,0 +6628,1966-01-17 22:05:00,0 +4152,1966-11-26 23:44:00,0 +470,1969-05-31 06:38:00,0 +8800,1967-09-03 09:21:00,0 +4197,1968-04-18 10:37:00,0 +5273,1968-10-10 01:04:00,0 +3853,1969-03-31 18:19:00,0 +7363,1968-05-02 10:15:00,0 +2963,1967-05-24 17:24:00,0 +888,1969-05-19 23:56:00,0 +2318,1967-11-25 00:43:00,0 +7019,1968-01-09 15:05:00,0 +4873,1966-03-09 14:25:00,0 +1601,1967-01-22 02:37:00,0 +8884,1965-12-23 06:44:00,0 +8488,1967-07-13 15:25:00,0 +856,1965-01-22 12:21:00,0 +9102,1969-10-07 03:52:00,0 +4300,1967-06-12 13:44:00,0 +9490,1967-04-16 15:27:00,0 +7484,1969-08-12 06:21:00,0 +695,1969-09-17 19:36:00,0 +5019,1969-08-05 14:59:00,0 +5659,1969-04-23 23:15:00,0 +3559,1967-10-12 05:03:00,0 +5180,1965-12-23 02:00:00,0 +6089,1965-10-24 17:12:00,0 +466,1967-09-28 15:41:00,0 +5715,1968-06-25 08:45:00,0 +5677,1969-01-29 17:01:00,0 +4866,1968-01-19 19:30:00,0 +650,1969-03-15 23:13:00,0 +3989,1966-10-05 17:52:00,0 +951,1969-12-13 22:58:00,0 +1653,1965-08-16 09:21:00,0 +3038,1967-04-29 15:17:00,0 +333,1965-01-22 03:47:00,0 +2018,1965-10-27 21:52:00,0 +8968,1967-07-09 14:09:00,0 +4304,1968-04-11 19:35:00,0 +8425,1968-08-15 06:16:00,0 +9159,1968-06-30 12:58:00,0 +3814,1965-07-11 09:08:00,0 +9866,1969-01-13 21:04:00,0 +8737,1965-04-11 15:12:00,0 +6082,1968-05-24 06:13:00,0 +8328,1968-12-16 03:08:00,0 +4072,1965-09-22 22:33:00,0 +1144,1968-02-09 00:21:00,0 +2362,1968-03-22 01:14:00,0 +647,1969-09-13 16:40:00,0 +8534,1967-04-09 10:21:00,0 +433,1965-03-31 07:27:00,0 +8581,1966-11-04 18:33:00,0 +2966,1967-05-20 13:36:00,0 +4784,1967-08-27 05:03:00,0 +9132,1966-11-23 19:00:00,0 +7975,1969-12-07 09:54:00,0 +2676,1968-09-27 07:44:00,0 +2525,1965-04-01 16:03:00,0 +2494,1967-11-06 15:58:00,0 +8939,1965-07-27 04:00:00,0 +5008,1968-08-25 10:31:00,0 +6525,1968-02-05 20:12:00,0 +4669,1966-11-10 22:10:00,0 +1756,1969-02-10 16:04:00,0 +4032,1969-05-26 19:03:00,0 +5030,1969-01-03 17:12:00,0 +2292,1969-03-07 17:09:00,0 +6774,1967-09-05 23:04:00,0 +1120,1965-05-20 12:02:00,0 +3746,1965-12-12 08:50:00,0 +2000,1965-04-14 03:38:00,0 +8654,1969-11-05 07:53:00,0 +9201,1965-11-17 15:40:00,0 +4,1969-08-11 07:09:00,0 +6441,1967-02-05 11:30:00,0 +8302,1967-10-24 11:39:00,0 +4100,1967-02-11 21:00:00,0 +5815,1969-06-04 14:12:00,0 +4831,1967-12-07 11:50:00,0 +1693,1968-07-26 09:00:00,0 +3816,1969-10-01 22:44:00,0 +836,1968-01-30 07:38:00,0 +5050,1968-03-02 00:09:00,0 +8327,1965-02-08 00:17:00,0 +6435,1965-05-14 14:44:00,0 +4271,1969-08-25 21:01:00,0 +4565,1965-07-26 20:06:00,0 +2100,1967-03-24 07:47:00,0 +7002,1968-06-01 00:10:00,0 +1511,1965-03-08 11:41:00,0 +3888,1968-10-14 16:15:00,0 +7574,1967-09-23 11:29:00,0 +1992,1969-12-10 21:18:00,0 +1871,1969-11-20 09:05:00,0 +9549,1969-09-24 12:50:00,0 +1017,1968-01-16 02:48:00,0 +1382,1968-06-28 08:58:00,0 +8103,1965-03-06 01:09:00,0 +4874,1968-07-19 22:51:00,0 +5549,1968-11-11 20:07:00,0 +3207,1967-07-24 16:11:00,0 +9218,1967-05-02 14:08:00,0 +8946,1969-03-09 05:22:00,0 +1464,1965-11-06 04:00:00,0 +2804,1967-10-16 18:16:00,0 +3684,1968-05-10 16:31:00,0 +3130,1969-04-02 02:04:00,0 +3237,1965-09-19 12:32:00,0 +3843,1966-08-06 02:02:00,0 +4506,1969-09-10 01:09:00,0 +1420,1967-11-28 12:15:00,0 +5654,1965-01-25 17:12:00,0 +8522,1965-01-13 03:16:00,0 +6679,1968-01-29 22:23:00,0 +8967,1966-12-04 04:18:00,0 +2013,1968-03-17 05:30:00,0 +709,1969-12-04 01:56:00,0 +1860,1966-02-23 00:41:00,0 +4901,1966-06-07 23:05:00,0 +3250,1969-04-22 04:01:00,0 +1601,1968-11-01 04:44:00,0 +4943,1966-10-23 16:58:00,0 +8262,1966-09-15 12:02:00,0 +2809,1967-08-07 23:03:00,0 +9021,1969-02-12 18:55:00,0 +8206,1966-12-15 21:11:00,0 +2809,1969-09-06 09:35:00,0 +2920,1966-02-17 16:11:00,0 +526,1968-06-12 17:17:00,0 +8808,1965-07-07 15:10:00,0 +7266,1965-06-14 11:13:00,0 +9413,1965-11-22 05:21:00,0 +1129,1967-01-05 19:17:00,0 +111,1966-02-25 15:47:00,0 +7696,1965-03-15 16:42:00,0 +5446,1965-09-22 03:39:00,0 +9017,1969-08-14 09:49:00,0 +5294,1966-04-22 10:12:00,0 +2302,1967-02-15 08:45:00,0 +9282,1969-08-09 19:05:00,0 +3898,1965-08-26 20:33:00,0 +8244,1965-07-11 14:36:00,0 +8986,1966-08-18 08:17:00,0 +8678,1965-12-14 02:00:00,0 +2797,1968-01-09 05:20:00,0 +3273,1969-01-03 22:22:00,0 +9425,1965-05-17 13:22:00,0 +7471,1968-05-23 16:59:00,0 +6662,1966-04-11 00:17:00,0 +7479,1969-07-10 14:25:00,0 +112,1966-06-29 13:45:00,0 +4047,1967-02-25 01:19:00,0 +4600,1968-01-24 12:38:00,0 +9812,1969-09-01 10:27:00,0 +8364,1969-05-27 01:50:00,0 +300,1969-09-19 00:48:00,0 +5394,1967-02-16 12:56:00,0 +9584,1967-06-18 19:09:00,0 +2958,1967-03-18 18:03:00,0 +7232,1967-03-07 19:51:00,0 +6709,1967-01-09 09:30:00,0 +8013,1969-05-14 06:29:00,0 +743,1967-09-12 07:21:00,0 +7509,1967-12-28 10:39:00,0 +6107,1969-09-02 14:04:00,0 +8214,1965-03-20 00:06:00,0 +6424,1965-05-13 05:57:00,0 +8745,1967-05-19 06:35:00,0 +817,1966-09-27 01:57:00,0 +8293,1968-02-07 12:24:00,0 +2675,1967-05-03 14:04:00,0 +4464,1968-11-25 09:19:00,0 +3564,1966-05-24 04:44:00,0 +4961,1969-05-30 07:56:00,0 +6246,1966-02-02 01:45:00,0 +7536,1967-03-08 20:11:00,0 +9015,1965-10-03 00:08:00,0 +7817,1965-01-25 13:43:00,0 +698,1966-04-20 01:46:00,0 +9472,1965-12-29 09:35:00,0 +6082,1965-12-29 04:13:00,0 +5276,1968-06-02 09:13:00,0 +27,1968-11-30 10:21:00,0 +393,1966-07-03 02:36:00,0 +4356,1967-08-01 16:52:00,0 +815,1966-09-12 16:58:00,0 +959,1968-05-31 15:50:00,0 +4791,1969-02-24 02:48:00,0 +1201,1968-09-17 02:00:00,0 +4842,1966-12-04 00:37:00,0 +6183,1967-01-09 22:31:00,0 +2271,1966-06-30 07:24:00,0 +6169,1966-06-05 03:11:00,0 +1425,1968-02-03 08:13:00,0 +7712,1966-08-19 15:13:00,0 +307,1969-07-11 02:46:00,0 +1646,1969-01-17 06:01:00,0 +9170,1969-12-09 07:19:00,0 +3649,1969-06-04 17:08:00,0 +2943,1969-12-06 09:50:00,0 +4891,1969-07-14 23:14:00,0 +1637,1968-06-28 23:03:00,0 +6190,1965-03-09 10:34:00,0 +2562,1967-02-17 12:12:00,0 +3885,1965-07-21 08:03:00,0 +5278,1969-05-16 23:47:00,0 +1180,1966-05-31 07:44:00,0 +9583,1966-11-10 15:27:00,0 +3127,1968-01-20 09:31:00,0 +9676,1969-09-03 05:21:00,0 +5984,1969-09-28 14:21:00,0 +8416,1969-07-03 08:04:00,0 +2206,1965-03-15 22:38:00,0 +7366,1966-02-18 06:07:00,0 +8793,1965-08-23 05:17:00,0 +3322,1969-12-14 12:23:00,0 +7549,1965-05-07 19:36:00,0 +6721,1965-01-04 18:55:00,0 +9035,1969-02-15 19:56:00,0 +7522,1968-12-03 11:14:00,0 +2567,1965-04-27 21:02:00,0 +3245,1967-04-08 12:32:00,0 +4875,1968-07-01 23:06:00,0 +2969,1967-04-23 01:37:00,0 +4852,1966-07-03 17:29:00,0 +7664,1965-05-04 06:28:00,0 +4963,1969-03-12 15:17:00,0 +6124,1966-03-17 03:51:00,0 +4412,1967-11-03 10:35:00,0 +4595,1969-09-20 12:01:00,0 +1759,1968-09-03 14:31:00,0 +9752,1965-02-06 21:04:00,0 +7791,1967-07-20 18:11:00,0 +670,1966-12-11 01:41:00,0 +3359,1965-12-05 21:03:00,0 +8028,1967-07-30 01:45:00,0 +7873,1969-07-20 06:25:00,0 +6938,1966-05-15 12:15:00,0 +5304,1965-02-10 17:12:00,0 +9696,1965-03-16 18:22:00,0 +5248,1969-12-19 14:11:00,0 +2927,1966-11-19 19:26:00,0 +3480,1968-03-14 10:10:00,0 +8150,1966-11-19 22:35:00,0 +6975,1968-11-09 07:20:00,0 +8276,1967-06-01 10:45:00,0 +3625,1969-01-13 20:54:00,0 +3693,1967-10-10 21:49:00,0 +8361,1967-01-16 19:02:00,0 +4447,1967-06-22 03:29:00,0 +2291,1965-11-24 04:30:00,0 +8483,1966-12-31 02:08:00,0 +324,1966-09-01 09:57:00,0 +5670,1968-06-10 15:45:00,0 +3328,1966-07-15 18:29:00,0 +8578,1965-08-02 23:08:00,0 +4326,1966-07-14 02:52:00,0 +544,1966-06-15 20:32:00,0 +8732,1968-03-05 19:45:00,0 +6338,1965-01-15 16:27:00,0 +7195,1965-11-21 20:39:00,0 +1693,1965-04-21 16:48:00,0 +3962,1965-08-28 16:32:00,0 +6187,1967-07-29 07:13:00,0 +7388,1967-11-11 14:43:00,0 +9148,1966-04-19 16:02:00,0 +2502,1968-06-08 13:27:00,0 +3428,1967-06-04 00:56:00,0 +298,1967-05-04 06:31:00,0 +1303,1968-01-01 05:03:00,0 +9286,1968-03-27 03:56:00,0 +8962,1965-09-28 20:13:00,0 +5051,1967-03-31 01:50:00,0 +631,1968-12-29 10:55:00,0 +5638,1965-01-04 18:37:00,0 +7053,1966-01-27 04:04:00,0 +8453,1965-08-10 15:00:00,0 +3608,1968-04-30 07:06:00,0 +6835,1966-01-30 19:24:00,0 +2764,1969-12-21 05:18:00,0 +2003,1968-11-04 07:25:00,0 +8978,1967-12-03 12:06:00,0 +480,1966-09-29 20:03:00,0 +6374,1965-08-14 19:49:00,0 +5526,1968-03-26 03:15:00,0 +3514,1966-11-01 06:35:00,0 +7055,1969-01-11 23:42:00,0 +7938,1967-11-08 22:10:00,0 +4971,1967-08-07 02:44:00,0 +6544,1967-02-03 03:08:00,0 +3446,1966-05-01 18:14:00,0 +8854,1968-08-26 02:49:00,0 +3171,1969-02-08 15:35:00,0 +9571,1969-07-30 17:45:00,0 +56,1966-04-02 03:04:00,0 +3757,1966-10-01 06:59:00,0 +7950,1965-06-02 13:09:00,0 +2290,1969-10-10 18:18:00,0 +9595,1968-12-05 12:24:00,0 +2936,1966-06-20 03:59:00,0 +7687,1967-03-20 16:58:00,0 +9979,1965-07-01 04:54:00,0 +2994,1966-10-15 03:18:00,0 +9218,1966-06-17 22:26:00,0 +6816,1967-04-29 14:51:00,0 +6413,1966-04-23 19:27:00,0 +4139,1969-10-11 22:07:00,0 +7017,1969-08-06 15:23:00,0 +8879,1966-04-20 01:47:00,0 +2882,1965-02-01 03:03:00,0 +6064,1969-09-12 00:30:00,0 +7839,1966-10-11 20:46:00,0 +8432,1965-08-09 06:11:00,0 +5729,1969-11-21 06:47:00,0 +7211,1968-09-30 13:53:00,0 +3668,1969-02-15 08:01:00,0 +5985,1969-10-12 16:08:00,0 +1816,1969-03-19 18:06:00,0 +2666,1969-06-10 19:52:00,0 +2385,1965-01-16 20:18:00,0 +7201,1969-09-19 18:09:00,0 +3191,1969-12-04 08:05:00,0 +1010,1968-12-16 11:44:00,0 +6996,1969-07-10 22:39:00,0 +9933,1967-03-16 17:39:00,0 +5035,1965-04-11 12:09:00,0 +3915,1966-11-19 05:10:00,0 +8967,1966-12-21 14:44:00,0 +4282,1966-12-09 11:37:00,0 +2803,1967-12-25 08:18:00,0 +2694,1967-04-20 11:19:00,0 +3332,1965-10-06 02:26:00,0 +3363,1967-01-01 16:19:00,0 +3650,1969-07-31 21:03:00,0 +8656,1967-08-22 18:48:00,0 +6816,1968-03-19 12:10:00,0 +1719,1968-06-12 04:27:00,0 +9092,1965-06-11 19:57:00,0 +4110,1969-02-14 08:31:00,0 +5741,1969-06-13 05:20:00,0 +5035,1967-03-05 19:24:00,0 +2620,1965-02-09 07:00:00,0 +7091,1968-08-31 17:06:00,0 +4314,1966-12-24 16:51:00,0 +7051,1968-06-09 01:52:00,0 +314,1965-09-20 01:55:00,0 +7087,1965-02-10 21:16:00,0 +6306,1967-10-15 03:46:00,0 +7133,1969-05-24 05:08:00,0 +4067,1967-12-16 12:59:00,0 +5240,1967-08-02 09:05:00,0 +5668,1965-07-18 14:32:00,0 +3779,1969-08-14 19:59:00,0 +437,1968-09-28 06:18:00,0 +5002,1966-01-10 03:50:00,0 +451,1969-01-27 16:52:00,0 +2990,1967-05-25 10:24:00,0 +5115,1965-05-15 15:56:00,0 +8105,1966-03-07 01:22:00,0 +5758,1968-11-08 00:56:00,0 +2808,1968-11-06 10:51:00,0 +7595,1966-07-29 21:16:00,0 +9933,1969-05-28 12:37:00,0 +42,1965-06-25 01:24:00,0 +6719,1965-06-28 08:09:00,0 +5724,1968-11-30 14:56:00,0 +3335,1968-06-30 01:03:00,0 +7798,1966-11-21 20:57:00,0 +1642,1968-02-12 09:22:00,0 +7473,1968-12-07 06:06:00,0 +1477,1967-07-09 22:24:00,0 +1160,1969-12-17 15:46:00,0 +6879,1967-01-07 02:44:00,0 +9660,1969-02-23 11:12:00,0 +7155,1965-07-09 00:10:00,0 +263,1965-01-21 13:16:00,0 +3047,1966-11-05 16:06:00,0 +2431,1965-02-20 12:44:00,0 +1600,1967-08-17 01:29:00,0 +3639,1967-02-23 11:02:00,0 +2173,1969-05-16 10:20:00,0 +860,1966-06-13 22:54:00,0 +6594,1968-10-08 16:52:00,0 +4620,1967-10-09 14:15:00,0 +7088,1968-10-10 01:31:00,0 +7049,1968-10-01 18:36:00,0 +9014,1966-09-22 10:08:00,0 +5290,1966-10-26 01:16:00,0 +4529,1969-10-31 02:59:00,0 +8305,1968-12-25 02:15:00,0 +4435,1968-12-26 06:16:00,0 +1003,1969-11-29 04:13:00,0 +7511,1965-09-15 17:23:00,0 +9881,1968-08-08 20:51:00,0 +9443,1969-05-03 06:30:00,0 +493,1965-11-11 07:21:00,0 +2388,1965-06-29 02:00:00,0 +559,1965-02-07 04:17:00,0 +9921,1969-02-13 07:50:00,0 +1294,1965-11-05 16:40:00,0 +1546,1966-01-17 06:39:00,0 +3381,1966-06-19 02:30:00,0 +2874,1967-10-11 23:28:00,0 +4141,1968-12-22 22:00:00,0 +597,1966-03-21 12:22:00,0 +5710,1965-09-09 14:23:00,0 +1129,1968-03-01 01:40:00,0 +8137,1967-11-16 00:03:00,0 +5532,1966-07-26 16:18:00,0 +789,1966-03-06 01:21:00,0 +7200,1966-07-19 08:44:00,0 +542,1968-04-30 22:04:00,0 +5887,1966-10-03 23:30:00,0 +5819,1965-08-18 05:29:00,0 +4923,1965-04-03 14:40:00,0 +7600,1969-06-15 12:27:00,0 +4378,1969-12-14 17:50:00,0 +9969,1968-08-24 09:26:00,0 +94,1966-12-04 12:46:00,0 +6642,1967-03-21 00:39:00,0 +1860,1969-05-10 13:51:00,0 +1450,1966-12-10 14:04:00,0 +598,1968-04-07 15:53:00,0 +94,1967-06-07 04:42:00,0 +7545,1966-10-18 21:22:00,0 +3526,1967-07-29 20:00:00,0 +199,1969-05-24 21:39:00,0 +5675,1965-11-11 02:26:00,0 +7271,1969-02-25 01:26:00,0 +7515,1968-04-19 23:39:00,0 +5551,1966-11-05 05:13:00,0 +7534,1965-03-29 10:02:00,0 +1294,1968-08-16 02:11:00,0 +2864,1965-10-21 15:13:00,0 +1682,1967-06-18 05:58:00,0 +7228,1969-09-19 15:07:00,0 +9376,1967-01-13 08:42:00,0 +4763,1965-12-15 03:01:00,0 +4916,1968-12-28 12:08:00,0 +2106,1967-06-27 11:47:00,0 +6877,1968-03-15 09:33:00,0 +4543,1968-07-06 04:30:00,0 +9542,1969-06-19 06:34:00,0 +7710,1967-12-03 00:17:00,0 +5738,1968-02-03 02:23:00,0 +5832,1968-12-12 16:47:00,0 +8602,1965-01-27 17:27:00,0 +496,1969-11-09 02:23:00,0 +7174,1968-03-29 19:01:00,0 +2900,1967-02-13 21:45:00,0 +9474,1968-11-01 11:18:00,0 +6992,1967-12-04 13:00:00,0 +6561,1966-05-26 23:56:00,0 +4084,1966-04-30 15:23:00,0 +9466,1965-10-17 07:03:00,0 +95,1967-01-11 20:52:00,0 +6721,1965-07-22 10:22:00,0 +2333,1967-02-20 23:09:00,0 +9145,1965-11-03 12:02:00,0 +2466,1966-12-22 16:47:00,0 +8027,1966-01-15 18:34:00,0 +219,1969-07-30 11:49:00,0 +2992,1969-02-19 15:11:00,0 +7934,1965-06-13 10:12:00,0 +6758,1968-08-14 09:51:00,0 +696,1968-02-14 12:12:00,0 +1352,1969-08-04 09:02:00,0 +3638,1968-08-29 09:44:00,0 +5582,1968-04-12 07:25:00,0 +6871,1966-09-20 09:35:00,0 +5165,1965-09-04 18:51:00,0 +7095,1965-12-28 12:20:00,0 +3372,1968-07-24 19:06:00,0 +1786,1965-04-11 20:26:00,0 +9496,1966-11-18 22:52:00,0 +5255,1968-04-24 12:34:00,0 +9746,1965-08-31 08:11:00,0 +9205,1966-12-23 10:23:00,0 +1926,1966-06-17 16:49:00,0 +5469,1965-12-12 07:17:00,0 +5041,1968-06-30 13:46:00,0 +6659,1965-12-18 11:59:00,0 +7086,1965-07-11 01:25:00,0 +9021,1969-08-14 01:50:00,0 +8507,1966-10-26 19:52:00,0 +2299,1967-08-27 21:39:00,0 +2160,1968-04-01 02:35:00,0 +8301,1967-08-08 07:00:00,0 +5275,1968-12-10 11:00:00,0 +6290,1965-10-08 02:03:00,0 +4128,1969-05-13 18:10:00,0 +9464,1967-08-15 12:43:00,0 +9236,1968-04-21 00:42:00,0 +9692,1967-04-08 20:59:00,0 +5855,1967-05-10 17:22:00,0 +5914,1968-10-02 23:59:00,0 +9195,1965-05-07 12:19:00,0 +9037,1967-08-07 22:00:00,0 +2909,1969-11-16 13:08:00,0 +7166,1965-01-10 12:02:00,0 +6421,1967-05-28 22:58:00,0 +7649,1968-06-04 12:22:00,0 +5819,1969-07-18 10:18:00,0 +691,1966-08-05 17:19:00,0 +1087,1968-02-13 17:09:00,0 +3336,1965-11-08 18:44:00,0 +6112,1967-02-08 02:49:00,0 +3609,1969-11-10 01:55:00,0 +1647,1967-11-19 12:02:00,0 +2718,1968-05-09 08:00:00,0 +2685,1965-11-01 10:39:00,0 +4947,1969-06-07 12:33:00,0 +4218,1965-06-05 21:30:00,0 +7567,1969-08-23 15:15:00,0 +3397,1968-10-28 19:30:00,0 +6630,1966-07-05 02:45:00,0 +5354,1968-10-02 06:57:00,0 +3819,1967-02-06 00:39:00,0 +4794,1965-08-25 01:33:00,0 +7123,1967-02-09 12:28:00,0 +348,1967-05-09 15:25:00,0 +8535,1967-06-13 04:31:00,0 +557,1965-03-27 09:03:00,0 +9400,1968-02-19 04:30:00,0 +6238,1966-09-03 01:16:00,0 +2913,1968-09-09 19:50:00,0 +1973,1966-11-07 07:07:00,0 +55,1965-06-21 16:39:00,0 +5923,1965-07-12 08:38:00,0 +1557,1968-11-27 22:13:00,0 +6586,1968-09-10 13:31:00,0 +3152,1969-03-21 07:59:00,0 +4100,1966-09-21 03:48:00,0 +6483,1966-12-29 07:55:00,0 +2713,1968-10-20 13:11:00,0 +8878,1967-03-29 04:14:00,0 +3364,1968-03-09 12:51:00,0 +6810,1966-09-22 15:43:00,0 +9015,1965-04-05 13:56:00,0 +1595,1968-06-13 09:21:00,0 +3812,1966-11-23 11:52:00,0 +8781,1966-08-12 08:57:00,0 +5704,1968-03-21 22:47:00,0 +5898,1965-04-07 10:32:00,0 +5869,1969-08-05 12:24:00,0 +6560,1968-05-03 15:26:00,0 +4178,1969-01-19 08:44:00,0 +926,1966-10-02 18:52:00,0 +6588,1967-04-04 04:12:00,0 +3832,1966-08-30 13:06:00,0 +304,1965-04-18 22:31:00,0 +889,1965-08-02 00:12:00,0 +595,1966-12-24 03:32:00,0 +2362,1968-07-12 12:22:00,0 +9362,1965-04-02 12:55:00,0 +3524,1967-06-07 16:01:00,0 +7472,1965-09-26 03:03:00,0 +7433,1969-08-21 18:12:00,0 +4377,1969-07-16 09:10:00,0 +2900,1965-05-04 11:41:00,0 +351,1967-12-23 18:00:00,0 +6585,1966-09-10 06:40:00,0 +5468,1965-09-25 13:03:00,0 +5340,1965-10-10 17:09:00,0 +4979,1966-07-04 15:10:00,0 +7575,1965-10-03 05:25:00,0 +69,1966-03-15 03:42:00,0 +8335,1968-09-22 07:18:00,0 +7720,1965-10-02 12:28:00,0 +8932,1966-09-17 04:02:00,0 +1905,1968-07-31 12:14:00,0 +6,1966-01-22 11:44:00,0 +347,1966-05-02 04:03:00,0 +246,1965-03-28 15:59:00,0 +6639,1965-04-07 21:26:00,0 +3805,1969-10-01 14:13:00,0 +8006,1968-12-12 21:18:00,0 +946,1966-01-25 06:15:00,0 +3146,1965-06-27 20:10:00,0 +3422,1968-01-11 16:14:00,0 +1591,1968-06-08 03:08:00,0 +1346,1969-07-31 23:16:00,0 +636,1966-12-31 18:54:00,0 +3294,1969-11-07 01:49:00,0 +1291,1968-03-12 09:34:00,0 +3422,1969-01-04 01:48:00,0 +8913,1965-12-24 00:20:00,0 +5051,1966-03-03 15:45:00,0 +4080,1968-09-09 07:24:00,0 +9298,1966-08-10 01:17:00,0 +2225,1967-05-29 12:56:00,0 +8114,1966-08-31 08:01:00,0 +9014,1965-03-16 01:46:00,0 +145,1966-11-29 10:31:00,0 +6512,1966-04-04 20:09:00,0 +5276,1965-11-10 12:38:00,0 +571,1966-11-14 17:30:00,0 +8811,1967-01-06 15:15:00,0 +9227,1965-11-27 17:46:00,0 +3127,1969-09-30 00:18:00,0 +6094,1969-10-05 13:32:00,0 +9719,1966-03-07 23:13:00,0 +2087,1968-12-30 02:57:00,0 +9376,1968-11-19 10:16:00,0 +4906,1969-10-11 13:12:00,0 +7617,1965-03-16 00:35:00,0 +8863,1969-11-27 08:09:00,0 +6699,1965-05-07 10:10:00,0 +2764,1969-07-25 08:54:00,0 +6831,1968-12-18 18:44:00,0 +9446,1967-06-02 01:01:00,0 +1448,1966-12-22 10:51:00,0 +2175,1967-08-22 14:34:00,0 +1562,1967-10-21 19:19:00,0 +7240,1967-07-12 19:14:00,0 +7856,1967-11-26 13:40:00,0 +793,1966-01-10 01:49:00,0 +9680,1965-05-07 11:27:00,0 +9340,1966-10-17 07:16:00,0 +1398,1967-03-07 21:34:00,0 +7086,1965-07-20 17:43:00,0 +7140,1968-02-21 17:57:00,0 +9546,1968-01-18 07:07:00,0 +3971,1968-04-29 19:53:00,0 +7829,1969-10-01 20:03:00,0 +9615,1966-07-04 08:07:00,0 +1418,1966-04-17 02:35:00,0 +3459,1969-04-15 04:31:00,0 +2537,1969-03-12 22:38:00,0 +3526,1968-09-04 05:14:00,0 +7851,1967-01-05 14:55:00,0 +1212,1968-02-25 15:24:00,0 +8145,1967-06-19 23:11:00,0 +7205,1968-09-19 11:01:00,0 +1988,1969-07-05 11:35:00,0 +2443,1968-07-29 08:19:00,0 +7232,1965-08-26 02:52:00,0 +7814,1969-08-17 21:59:00,0 +9335,1965-05-11 14:32:00,0 +5655,1967-07-27 02:00:00,0 +702,1966-04-26 03:27:00,0 +3289,1965-01-29 06:20:00,0 +3429,1966-07-18 16:47:00,0 +9686,1965-10-28 17:09:00,0 +4172,1969-10-21 19:52:00,0 +8530,1969-07-25 06:49:00,0 +442,1966-05-26 22:17:00,0 +3106,1966-01-26 07:04:00,0 +855,1968-04-25 18:59:00,0 +6077,1968-10-03 23:32:00,0 +1762,1965-09-20 17:14:00,0 +5435,1965-12-05 08:19:00,0 +9051,1965-03-11 01:51:00,0 +4731,1969-12-02 02:25:00,0 +3561,1967-05-20 15:14:00,0 +1276,1969-01-31 20:19:00,0 +3759,1966-05-10 01:13:00,0 +6389,1965-08-08 10:30:00,0 +1196,1966-02-07 10:28:00,0 +5334,1967-07-02 12:13:00,0 +8234,1967-03-29 09:53:00,0 +4213,1966-10-22 14:37:00,0 +54,1969-12-21 19:14:00,0 +2864,1968-11-07 18:22:00,0 +9366,1968-01-01 09:09:00,0 +1671,1965-07-18 00:53:00,0 +7571,1965-06-06 23:47:00,0 +8625,1966-05-08 01:19:00,0 +3621,1968-02-07 16:05:00,0 +4645,1965-05-09 19:05:00,0 +1102,1968-10-07 00:55:00,0 +6336,1969-08-21 15:30:00,0 +1598,1969-07-10 00:06:00,0 +25,1966-03-09 10:26:00,0 +6191,1968-02-07 12:48:00,0 +6761,1966-01-10 00:14:00,0 +9759,1968-05-08 16:34:00,0 +7086,1966-06-26 09:33:00,0 +8644,1966-09-09 04:15:00,0 +3177,1965-02-16 23:14:00,0 +3774,1966-12-28 02:37:00,0 +6454,1965-03-16 00:16:00,0 +2419,1967-01-24 21:18:00,0 +275,1966-02-26 08:37:00,0 +1394,1967-07-02 20:41:00,0 +3982,1965-11-19 07:29:00,0 +5574,1968-08-09 07:06:00,0 +6822,1965-07-05 13:34:00,0 +1231,1967-02-09 22:42:00,0 +1457,1969-04-20 17:38:00,0 +4284,1965-09-08 16:29:00,0 +7476,1969-10-22 01:55:00,0 +1840,1966-04-24 04:46:00,0 +6628,1966-09-29 15:37:00,0 +5821,1968-02-21 20:45:00,0 +4127,1968-12-14 20:15:00,0 +3018,1969-10-13 21:20:00,0 +4330,1968-08-27 17:22:00,0 +8444,1965-11-18 05:35:00,0 +2463,1965-05-05 09:49:00,0 +5680,1965-05-02 09:21:00,0 +5687,1968-07-24 19:52:00,0 +136,1968-03-22 17:33:00,0 +9842,1968-08-25 01:03:00,0 +5862,1966-08-13 12:25:00,0 +2737,1967-02-17 08:50:00,0 +4264,1967-09-07 05:57:00,0 +5675,1966-07-18 02:20:00,0 +60,1969-03-22 04:50:00,0 +2354,1967-12-13 06:20:00,0 +600,1966-11-22 12:13:00,0 +9490,1968-07-25 14:40:00,0 +8519,1967-11-05 12:51:00,0 +7157,1965-02-28 03:17:00,0 +3182,1969-02-07 23:11:00,0 +8699,1968-10-26 18:15:00,0 +5901,1968-09-16 18:12:00,0 +5323,1965-11-13 04:36:00,0 +7171,1966-01-04 07:58:00,0 +5189,1968-03-03 04:57:00,0 +4656,1966-11-10 11:15:00,0 +4525,1968-11-08 03:19:00,0 +1572,1966-03-08 04:14:00,0 +3262,1969-06-20 08:43:00,0 +5441,1968-12-08 10:32:00,0 +2522,1967-03-04 04:57:00,0 +8330,1966-07-27 13:28:00,0 +8010,1966-05-11 11:38:00,0 +2812,1968-03-14 09:34:00,0 +3506,1967-08-23 01:56:00,0 +939,1969-03-17 14:46:00,0 +6355,1966-09-29 06:11:00,0 +4694,1969-06-29 14:29:00,0 +7787,1967-01-17 15:03:00,0 +9130,1966-02-14 14:00:00,0 +2080,1967-01-13 16:27:00,0 +7754,1965-02-12 06:29:00,0 +4143,1967-12-16 04:37:00,0 +9825,1965-11-07 07:54:00,0 +4905,1968-03-21 15:30:00,0 +9085,1968-03-24 18:19:00,0 +6293,1965-07-11 11:48:00,0 +9960,1968-02-20 20:47:00,0 +8061,1969-10-16 02:55:00,0 +5173,1969-03-04 06:17:00,0 +3193,1968-07-25 17:59:00,0 +2299,1968-07-22 08:08:00,0 +2486,1965-04-24 13:15:00,0 +870,1965-01-06 11:33:00,0 +5109,1968-09-15 03:44:00,0 +8001,1966-11-24 21:47:00,0 +6408,1969-10-15 08:39:00,0 +3498,1966-08-28 23:59:00,0 +1364,1965-04-03 11:04:00,0 +9457,1967-06-06 15:17:00,0 +2590,1966-07-19 11:07:00,0 +39,1969-02-15 10:42:00,0 +9454,1966-06-07 08:52:00,0 +1879,1968-01-20 10:24:00,0 +250,1965-01-27 05:34:00,0 +4463,1968-05-12 15:24:00,0 +6600,1965-06-16 14:46:00,0 +5289,1965-11-29 02:38:00,0 +1844,1965-10-10 23:28:00,0 +5055,1968-04-28 23:54:00,0 +2807,1967-11-04 21:19:00,0 +6734,1969-02-05 22:30:00,0 +33,1967-07-23 20:47:00,0 +6600,1966-05-19 22:36:00,0 +2741,1965-05-21 16:26:00,0 +8084,1969-11-25 08:31:00,0 +1824,1969-01-19 10:49:00,0 +1948,1965-06-16 05:35:00,0 +6325,1967-04-02 07:29:00,0 +4185,1968-06-21 18:13:00,0 +3705,1969-05-10 20:45:00,0 +8272,1966-10-31 21:54:00,0 +9232,1966-01-21 10:48:00,0 +1103,1968-08-06 00:31:00,0 +7500,1966-06-07 09:45:00,0 +2380,1968-11-18 23:44:00,0 +5532,1966-02-06 13:11:00,0 +3553,1966-06-09 14:33:00,0 +618,1968-06-21 10:14:00,0 +4341,1965-01-28 05:31:00,0 +2228,1968-09-22 15:18:00,0 +5920,1967-09-28 09:34:00,0 +3047,1965-09-01 13:52:00,0 +2494,1967-04-23 16:48:00,0 +9129,1969-06-29 17:27:00,0 +6716,1969-07-26 09:19:00,0 +4350,1969-05-01 10:05:00,0 +8424,1968-01-23 01:40:00,0 +7074,1967-01-04 02:50:00,0 +8839,1965-11-22 12:44:00,0 +8132,1967-01-14 07:34:00,0 +9548,1966-07-18 11:12:00,0 +8299,1969-02-21 19:19:00,0 +1300,1965-01-02 00:14:00,0 +5463,1966-02-23 05:33:00,0 +216,1967-09-26 10:22:00,0 +3749,1965-07-05 09:46:00,0 +2094,1969-06-29 13:10:00,0 +3347,1967-06-20 05:18:00,0 +5458,1968-12-11 20:13:00,0 +4061,1968-04-10 23:11:00,0 +7653,1969-05-04 07:29:00,0 +8280,1967-12-14 04:14:00,0 +3582,1969-09-06 14:56:00,0 +3545,1967-05-22 07:54:00,0 +506,1967-11-24 12:47:00,0 +4262,1965-08-19 07:46:00,0 +1358,1968-09-17 12:39:00,0 +4955,1965-04-05 06:49:00,0 +1777,1967-02-09 00:41:00,0 +8957,1965-03-20 03:45:00,0 +4326,1968-03-04 06:45:00,0 +6214,1967-09-17 16:40:00,0 +6526,1966-10-04 21:52:00,0 +1102,1969-01-08 02:40:00,0 +5845,1969-06-05 21:10:00,0 +7388,1969-03-24 02:07:00,0 +600,1966-11-26 05:07:00,0 +7889,1969-05-12 02:41:00,0 +1048,1969-07-11 05:15:00,0 +5847,1969-04-27 14:09:00,0 +5419,1967-12-02 05:02:00,0 +8320,1967-10-02 12:25:00,0 +1757,1967-01-24 21:33:00,0 +4086,1967-03-02 21:02:00,0 +3304,1965-08-24 21:21:00,0 +9210,1969-12-20 15:00:00,0 +9183,1967-12-03 15:01:00,0 +8228,1968-02-16 15:26:00,0 +9441,1967-04-17 05:11:00,0 +4376,1969-11-21 13:31:00,0 +1030,1966-06-11 06:36:00,0 +2271,1965-01-17 00:52:00,0 +9098,1969-10-14 12:25:00,0 +5346,1967-11-07 23:32:00,0 +6995,1969-08-10 07:35:00,0 +1283,1965-09-02 07:29:00,0 +7481,1966-12-15 14:07:00,0 +2215,1968-08-06 03:48:00,0 +3885,1967-09-20 15:34:00,0 +5846,1965-09-03 05:50:00,0 +2418,1968-07-14 11:42:00,0 +9293,1967-11-28 04:06:00,0 +8951,1969-08-28 17:15:00,0 +4329,1968-02-21 15:31:00,0 +6855,1968-11-09 08:13:00,0 +4224,1968-05-24 17:10:00,0 +2468,1967-11-15 11:37:00,0 +2086,1968-06-06 00:01:00,0 +7257,1967-07-29 22:30:00,0 +495,1967-09-01 02:05:00,0 +2431,1966-07-22 13:18:00,0 +577,1968-01-20 08:03:00,0 +2106,1965-02-08 19:23:00,0 +3220,1969-10-07 22:07:00,0 +1456,1965-02-26 02:27:00,0 +8950,1968-11-19 12:07:00,0 +872,1965-07-12 19:01:00,0 +6056,1969-06-05 15:35:00,0 +5422,1968-07-14 19:03:00,0 +4051,1967-04-08 15:37:00,0 +9337,1965-09-29 20:12:00,0 +300,1966-03-13 18:57:00,0 +8742,1967-11-06 04:56:00,0 +5158,1965-07-16 04:47:00,0 +145,1968-02-20 18:28:00,0 +6208,1967-12-02 10:31:00,0 +5666,1965-11-28 15:17:00,0 +2886,1965-01-17 20:52:00,0 +9929,1967-05-06 18:42:00,0 +1774,1969-02-28 12:02:00,0 +5260,1969-11-19 03:35:00,0 +7630,1969-12-18 00:39:00,0 +9001,1965-04-04 07:36:00,0 +5109,1969-10-24 03:56:00,0 +7796,1966-10-28 23:50:00,0 +7569,1968-04-30 00:55:00,0 +7116,1968-02-11 00:34:00,0 +3997,1966-01-12 23:41:00,0 +6186,1966-07-08 18:18:00,0 +5091,1969-10-03 03:58:00,0 +7503,1969-05-19 04:35:00,0 +4809,1966-08-09 23:59:00,0 +1245,1966-07-24 18:46:00,0 +3701,1965-01-10 20:16:00,0 +6996,1965-02-05 06:03:00,0 +8689,1969-09-07 15:41:00,0 +2386,1965-02-19 21:27:00,0 +1158,1966-02-08 20:29:00,0 +4988,1965-09-26 05:11:00,0 +6883,1965-08-21 12:47:00,0 +2511,1965-09-30 23:15:00,0 +3628,1967-05-09 12:09:00,0 +6290,1965-11-17 11:43:00,0 +2858,1965-08-05 03:11:00,0 +1372,1966-01-01 20:37:00,0 +484,1968-04-21 22:25:00,0 +4804,1969-09-05 03:41:00,0 +4373,1969-01-25 07:21:00,0 +856,1968-01-09 08:10:00,0 +2162,1967-06-04 22:45:00,0 +6021,1965-12-01 06:59:00,0 +9622,1968-06-23 05:50:00,0 +9900,1969-06-23 15:44:00,0 +8760,1966-03-12 17:44:00,0 +268,1969-12-08 14:46:00,0 +2943,1967-12-26 22:39:00,0 +699,1969-08-07 06:19:00,0 +2409,1965-08-11 01:43:00,0 +6166,1966-08-21 09:31:00,0 +4524,1967-09-08 04:37:00,0 +1056,1969-11-28 04:16:00,0 +418,1968-06-30 17:46:00,0 +8167,1965-05-15 19:51:00,0 +6553,1967-10-06 04:36:00,0 +8338,1966-04-29 07:10:00,0 +4498,1969-10-26 17:24:00,0 +912,1968-07-30 01:52:00,0 +5106,1968-07-12 10:34:00,0 +7774,1967-12-28 09:27:00,0 +4232,1966-08-14 16:44:00,0 +4421,1966-09-02 20:19:00,0 +9877,1966-05-06 02:27:00,0 +5420,1967-03-17 13:44:00,0 +1309,1965-09-14 14:02:00,0 +7205,1969-01-17 13:57:00,0 +6798,1968-11-17 02:11:00,0 +8954,1965-03-29 15:26:00,0 +3795,1965-07-16 07:55:00,0 +9225,1969-07-28 15:44:00,0 +584,1965-06-03 23:44:00,0 +6641,1965-10-14 21:59:00,0 +8397,1969-11-20 20:57:00,0 +1320,1968-02-27 03:46:00,0 +7036,1967-07-30 23:19:00,0 +2705,1969-11-07 00:45:00,0 +7257,1969-08-12 13:28:00,0 +4973,1967-09-16 06:00:00,0 +9878,1969-04-15 16:22:00,0 +3894,1969-07-22 07:17:00,0 +2444,1965-11-07 21:17:00,0 +5059,1965-04-10 08:55:00,0 +4849,1965-11-30 05:23:00,0 +4846,1968-07-20 09:44:00,0 +2391,1965-01-24 00:37:00,0 +5926,1969-10-03 05:17:00,0 +3474,1968-04-14 21:12:00,0 +5631,1965-11-22 00:13:00,0 +6631,1968-03-30 09:05:00,0 +6680,1966-10-26 15:28:00,0 +2304,1967-09-02 08:40:00,0 +281,1966-10-15 01:56:00,0 +9886,1967-12-06 13:35:00,0 +9269,1965-05-25 04:26:00,0 +2902,1969-08-30 17:37:00,0 +5539,1966-03-04 16:47:00,0 +2060,1969-01-07 13:23:00,0 +5463,1966-09-15 12:28:00,0 +2190,1967-12-12 11:33:00,0 +6512,1966-11-27 19:06:00,0 +1213,1966-07-15 07:32:00,0 +9124,1967-02-15 18:37:00,0 +3189,1967-02-20 13:34:00,0 +2559,1966-03-20 02:00:00,0 +1499,1965-08-15 12:09:00,0 +1653,1968-06-26 05:54:00,0 +297,1965-09-09 00:30:00,0 +5848,1966-07-07 03:14:00,0 +2937,1969-10-15 08:39:00,0 +8377,1969-08-10 13:29:00,0 +5430,1967-12-20 13:23:00,0 +5058,1968-11-06 14:15:00,0 +977,1967-03-11 23:37:00,0 +1142,1968-03-24 19:38:00,0 +472,1965-08-19 22:22:00,0 +435,1965-04-18 20:04:00,0 +5835,1969-11-24 20:23:00,0 +2047,1967-11-20 04:38:00,0 +1439,1966-11-05 16:45:00,0 +3554,1967-04-04 04:11:00,0 +1618,1968-02-16 04:49:00,0 +7577,1966-08-18 20:57:00,0 +9164,1969-04-04 18:09:00,0 +9194,1969-05-01 07:26:00,0 +2857,1965-07-15 15:24:00,0 +2217,1965-09-20 18:39:00,0 +938,1966-11-30 08:18:00,0 +8565,1969-08-03 20:15:00,0 +7016,1968-11-06 08:19:00,0 +8534,1969-09-23 15:00:00,0 +6878,1969-06-17 21:12:00,0 +429,1965-06-13 15:41:00,0 +1459,1967-11-26 17:37:00,0 +9436,1965-05-30 08:59:00,0 +4595,1967-03-10 11:12:00,0 +5843,1965-11-25 07:02:00,0 +9243,1968-01-28 06:27:00,0 +7178,1967-07-18 02:20:00,0 +6176,1968-10-31 07:36:00,0 +7302,1965-08-01 01:39:00,0 +5193,1966-04-05 19:21:00,0 +7413,1966-06-14 18:30:00,0 +1683,1966-09-22 20:41:00,0 +6803,1966-02-17 03:16:00,0 +463,1969-04-24 15:21:00,0 +6768,1968-09-09 06:12:00,0 +7405,1965-03-12 21:57:00,0 +9916,1969-08-28 21:09:00,0 +3209,1965-08-28 21:53:00,0 +7851,1967-01-24 09:12:00,0 +5856,1969-09-26 06:20:00,0 +9120,1969-05-21 05:46:00,0 +3844,1968-12-28 03:07:00,0 +9672,1967-11-02 09:16:00,0 +1761,1965-07-31 12:04:00,0 +2710,1967-02-03 06:57:00,0 +7323,1967-01-22 16:30:00,0 +1646,1967-08-07 14:51:00,0 +8773,1966-05-17 22:07:00,0 +9865,1968-07-06 08:17:00,0 +1157,1969-07-17 03:45:00,0 +2821,1967-01-11 14:54:00,0 +6494,1968-09-28 23:54:00,0 +3065,1965-02-26 19:26:00,0 +6382,1967-01-24 14:34:00,0 +4532,1969-05-04 00:45:00,0 +8220,1966-01-31 05:49:00,0 +9115,1969-02-25 22:14:00,0 +3762,1968-02-27 13:07:00,0 +4640,1965-12-01 21:38:00,0 +5473,1968-01-19 10:07:00,0 +3318,1969-10-03 18:48:00,0 +8845,1966-03-27 10:04:00,0 +184,1965-07-11 22:12:00,0 +4530,1968-07-14 18:29:00,0 +7182,1968-09-17 22:04:00,0 +2462,1969-04-08 20:58:00,0 +9879,1966-06-06 17:38:00,0 +3215,1969-05-11 00:57:00,0 +6753,1967-08-15 23:38:00,0 +5331,1967-07-12 19:13:00,0 +5622,1969-07-02 17:11:00,0 +1176,1969-12-22 20:22:00,0 +5886,1969-05-21 12:00:00,0 +6398,1968-12-25 09:31:00,0 +9887,1967-02-01 12:27:00,0 +3342,1966-09-02 13:55:00,0 +8326,1965-11-19 13:25:00,0 +7580,1968-12-26 03:32:00,0 +7410,1965-01-13 13:46:00,0 +8568,1969-01-05 06:45:00,0 +3802,1968-05-28 16:10:00,0 +7473,1966-01-26 19:29:00,0 +6759,1965-06-28 02:38:00,0 +1337,1969-10-06 17:04:00,0 +5314,1965-11-22 08:57:00,0 +3002,1967-03-11 12:49:00,0 +1019,1966-05-19 12:30:00,0 +8744,1968-06-12 14:23:00,0 +8332,1965-02-02 06:14:00,0 +7729,1969-04-03 01:56:00,0 +7705,1967-03-25 23:33:00,0 +7629,1967-01-10 18:02:00,0 +818,1967-06-23 12:52:00,0 +2464,1965-08-31 06:22:00,0 +1337,1966-04-23 19:53:00,0 +9209,1968-12-22 21:32:00,0 +1096,1969-07-20 08:35:00,0 +2368,1969-08-12 20:58:00,0 +1449,1966-08-11 02:39:00,0 +9881,1966-02-16 05:54:00,0 +8447,1969-04-16 00:24:00,0 +6758,1969-04-20 13:30:00,0 +8666,1965-01-29 18:29:00,0 +9320,1968-01-30 07:01:00,0 +848,1967-02-06 18:14:00,0 +7884,1968-06-09 15:43:00,0 +1540,1967-04-12 02:27:00,0 +2772,1965-06-08 14:14:00,0 +9047,1966-02-24 12:07:00,0 +1623,1967-12-27 09:30:00,0 +5494,1967-07-29 00:29:00,0 +9209,1966-11-19 04:35:00,0 +758,1966-09-17 10:16:00,0 +5833,1967-05-31 12:20:00,0 +2462,1965-02-08 21:23:00,0 +77,1968-03-19 10:58:00,0 +3718,1965-05-26 19:59:00,0 +6876,1966-09-13 14:25:00,0 +8052,1967-08-30 05:23:00,0 +8330,1965-05-10 22:36:00,0 +9644,1969-07-08 13:21:00,0 +4504,1968-09-21 21:10:00,0 +6447,1969-08-11 03:21:00,0 +1191,1965-07-31 20:39:00,0 +4467,1968-04-27 12:47:00,0 +2279,1967-06-06 08:00:00,0 +247,1969-07-11 21:54:00,0 +7267,1968-01-12 08:33:00,0 +9487,1967-11-07 04:44:00,0 +3728,1968-06-19 14:54:00,0 +2944,1965-11-21 06:39:00,0 +2846,1966-10-05 21:33:00,0 +2388,1967-07-19 08:21:00,0 +1674,1965-01-23 08:32:00,0 +6451,1969-09-01 08:17:00,0 +3988,1965-01-25 17:49:00,0 +2248,1969-02-04 22:04:00,0 +8197,1968-01-03 12:49:00,0 +2562,1967-12-15 11:26:00,0 +7234,1966-12-21 10:08:00,0 +7148,1968-03-10 21:29:00,0 +8713,1965-07-10 23:31:00,0 +2019,1968-07-04 22:43:00,0 +2860,1968-07-19 16:00:00,0 +8040,1967-09-21 18:20:00,0 +6644,1969-03-21 04:04:00,0 +166,1968-06-28 01:04:00,0 +6989,1967-02-25 11:04:00,0 +7093,1969-05-30 17:19:00,0 +6765,1969-11-11 10:35:00,0 +79,1966-07-10 13:25:00,0 +8339,1966-04-16 03:16:00,0 +1420,1967-04-26 23:20:00,0 +4755,1966-06-12 23:42:00,0 +7597,1969-11-04 10:56:00,0 +8029,1966-11-25 09:28:00,0 +2680,1967-12-03 10:21:00,0 +5439,1965-06-15 06:36:00,0 +2047,1965-08-28 16:14:00,0 +3583,1966-11-08 10:44:00,0 +255,1965-06-07 16:49:00,0 +9785,1969-10-06 16:03:00,0 +9705,1969-02-10 05:08:00,0 +4131,1967-11-27 08:53:00,0 +6895,1966-08-30 05:52:00,0 +955,1969-07-01 07:50:00,0 +6667,1969-12-06 09:00:00,0 +2298,1966-10-26 13:16:00,0 +386,1968-07-16 12:58:00,0 +5123,1967-06-12 14:58:00,0 +5428,1967-08-09 09:12:00,0 +2753,1965-01-09 06:01:00,0 +2308,1965-08-05 13:16:00,0 +9063,1969-09-29 21:19:00,0 +4545,1969-11-10 11:18:00,0 +9434,1969-06-21 21:20:00,0 +3183,1966-03-04 03:35:00,0 +9890,1967-09-04 03:41:00,0 +2057,1967-05-31 20:44:00,0 +7670,1969-03-02 04:51:00,0 +8921,1968-04-25 02:10:00,0 +4569,1966-07-31 06:48:00,0 +2968,1967-07-13 02:26:00,0 +2435,1969-03-16 20:50:00,0 +4797,1965-04-07 14:25:00,0 +301,1969-01-15 09:10:00,0 +6642,1965-07-13 09:00:00,0 +3487,1967-04-08 01:16:00,0 +1075,1968-11-11 17:55:00,0 +9194,1966-08-18 15:13:00,0 +6556,1967-06-10 12:55:00,0 +4986,1965-02-24 18:48:00,0 +2733,1969-09-25 23:36:00,0 +307,1969-12-23 22:14:00,0 +6748,1968-08-16 03:07:00,0 +7412,1967-07-11 15:04:00,0 +6215,1965-06-25 07:19:00,0 +8328,1966-09-01 14:38:00,0 +528,1967-06-02 02:07:00,0 +4631,1967-09-09 03:42:00,0 +3659,1967-04-12 19:39:00,0 +9966,1968-10-13 15:51:00,0 +8363,1968-10-20 18:43:00,0 +7967,1968-10-17 12:26:00,0 +4620,1967-05-15 08:31:00,0 +8146,1968-10-02 11:31:00,0 +6648,1969-03-05 08:42:00,0 +8687,1969-02-10 17:15:00,0 +5617,1965-02-04 04:51:00,0 +6017,1965-10-30 17:03:00,0 +4526,1968-04-12 14:44:00,0 +9087,1969-10-22 16:03:00,0 +7800,1968-06-26 07:53:00,0 +9217,1967-05-31 20:25:00,0 +7427,1965-06-04 09:46:00,0 +8749,1965-03-22 01:12:00,0 +90,1966-06-10 10:26:00,0 +8969,1967-09-23 22:28:00,0 +8139,1965-06-08 16:34:00,0 +3914,1968-05-05 01:51:00,0 +519,1965-04-23 14:50:00,0 +1084,1965-04-11 07:41:00,0 +6745,1969-10-20 07:33:00,0 +2811,1968-07-23 00:34:00,0 +9195,1968-10-15 07:26:00,0 +2928,1967-10-15 07:12:00,0 +7224,1966-08-04 16:49:00,0 +1127,1966-04-13 20:23:00,0 +3817,1965-11-27 12:17:00,0 +1162,1969-01-09 03:57:00,0 +6623,1966-04-27 07:07:00,0 +2614,1965-07-24 05:34:00,0 +405,1969-04-05 04:52:00,0 +9019,1965-01-03 04:33:00,0 +4287,1966-03-21 05:38:00,0 +9103,1966-04-16 00:04:00,0 +3051,1969-09-24 08:26:00,0 +6585,1965-09-09 23:50:00,0 +2650,1966-04-19 10:40:00,0 +9055,1968-10-30 00:11:00,0 +6318,1969-09-24 07:05:00,0 +4240,1969-10-24 20:19:00,0 +6280,1968-12-01 20:12:00,0 +3709,1965-11-12 00:31:00,0 +5674,1968-10-10 21:10:00,0 +9493,1969-05-25 20:56:00,0 +9581,1969-08-01 13:42:00,0 +1912,1966-04-19 07:37:00,0 +5835,1969-01-29 03:21:00,0 +2665,1966-10-04 17:41:00,0 +392,1966-02-04 15:39:00,0 +8055,1968-04-21 15:08:00,0 +222,1967-07-12 08:12:00,0 +9784,1966-02-25 04:59:00,0 +6676,1968-10-01 21:44:00,0 +5614,1967-11-16 18:43:00,0 +6439,1965-11-30 18:29:00,0 +7646,1965-05-31 17:05:00,0 +8025,1967-05-03 20:51:00,0 +7378,1969-10-30 05:16:00,0 +4894,1965-09-25 19:16:00,0 +1801,1965-08-22 22:47:00,0 +1727,1969-04-05 04:39:00,0 +1393,1967-11-19 01:45:00,0 +5288,1966-03-01 20:10:00,0 +9733,1968-10-15 23:55:00,0 +1468,1966-01-27 19:32:00,0 +4649,1969-01-06 08:16:00,0 +7807,1965-07-20 07:09:00,0 +8963,1968-10-07 00:11:00,0 +9632,1967-12-06 12:06:00,0 +2264,1969-10-09 14:32:00,0 +4032,1966-04-26 08:40:00,0 +118,1965-07-18 09:53:00,0 +5488,1965-03-29 02:07:00,0 +4478,1965-09-30 17:12:00,0 +6603,1967-06-12 13:19:00,0 +7812,1968-03-08 03:47:00,0 +2888,1965-09-04 21:26:00,0 +3234,1967-01-26 11:49:00,0 +3034,1966-06-09 06:14:00,0 +8643,1968-06-03 05:32:00,0 +5204,1968-12-21 20:51:00,0 +2962,1967-03-23 14:50:00,0 +165,1965-01-24 17:32:00,0 +4746,1968-01-22 09:13:00,0 +2033,1968-07-08 19:59:00,0 +8776,1966-12-30 23:59:00,0 +2833,1965-01-06 01:04:00,0 +5093,1965-01-11 08:48:00,0 +2492,1967-06-04 03:26:00,0 +2639,1967-06-17 10:58:00,0 +4735,1965-07-16 20:32:00,0 +7565,1967-04-08 17:04:00,0 +106,1969-07-19 01:09:00,0 +7932,1967-07-27 18:04:00,0 +9101,1967-04-09 22:40:00,0 +4214,1966-03-28 09:42:00,0 +5854,1968-08-17 15:19:00,0 +8609,1967-01-24 17:53:00,0 +7683,1967-04-30 03:11:00,0 +9920,1967-02-08 19:55:00,0 +7614,1968-06-25 10:04:00,0 +6865,1969-08-16 08:12:00,0 +8446,1965-08-30 20:57:00,0 +788,1968-05-21 19:56:00,0 +5322,1967-02-25 23:10:00,0 +7261,1968-01-05 23:51:00,0 +2013,1965-09-04 05:33:00,0 +4291,1968-03-27 08:37:00,0 +8466,1969-10-01 05:43:00,0 +4424,1966-10-25 05:28:00,0 +4721,1968-03-24 08:48:00,0 +2432,1965-09-13 16:31:00,0 +5321,1967-03-11 12:03:00,0 +2795,1968-05-30 16:30:00,0 +9563,1968-12-17 23:16:00,0 +9137,1969-12-10 12:26:00,0 +5802,1965-09-30 09:22:00,0 +2040,1966-12-29 21:07:00,0 +2972,1967-10-13 17:51:00,0 +3489,1969-06-16 16:36:00,0 +6093,1969-09-11 23:23:00,0 +7603,1966-04-07 01:53:00,0 +2110,1967-05-26 00:09:00,0 +7012,1966-11-06 17:55:00,0 +4391,1969-03-13 10:03:00,0 +4845,1967-01-26 18:21:00,0 +6701,1968-02-29 01:16:00,0 +1044,1967-01-15 10:51:00,0 +1071,1965-01-05 07:37:00,0 +2301,1969-07-27 23:22:00,0 +7753,1967-07-14 01:39:00,0 +1337,1968-08-17 02:42:00,0 +9298,1965-02-25 00:36:00,0 +2923,1967-07-29 06:23:00,0 +9791,1967-02-25 19:47:00,0 +9639,1968-04-10 08:12:00,0 +9009,1968-01-14 20:43:00,0 +6641,1966-09-09 10:43:00,0 +4664,1966-11-14 16:50:00,0 +5540,1965-10-29 00:14:00,0 +9067,1967-01-27 01:45:00,0 +6364,1967-04-04 19:27:00,0 +9840,1968-10-10 08:32:00,0 +3439,1967-02-25 12:19:00,0 +420,1968-08-22 17:38:00,0 +4095,1968-09-06 05:47:00,0 +5275,1965-06-30 10:05:00,0 +7100,1969-06-23 07:10:00,0 +3784,1968-07-17 17:20:00,0 +6458,1969-02-03 17:25:00,0 +244,1966-07-17 10:17:00,0 +5734,1969-11-10 16:05:00,0 +5918,1967-05-19 09:54:00,0 +344,1968-12-06 13:00:00,0 +3176,1967-08-12 14:56:00,0 +2588,1967-02-02 09:36:00,0 +9642,1965-02-17 11:05:00,0 +1562,1966-04-03 17:00:00,0 +1937,1967-06-21 07:27:00,0 +8608,1966-01-29 01:46:00,0 +3290,1968-02-14 01:26:00,0 +2062,1965-02-25 18:49:00,0 +3101,1966-12-18 03:57:00,0 +3124,1966-04-09 04:14:00,0 +73,1967-03-14 19:45:00,0 +7109,1967-02-03 16:07:00,0 +9069,1967-12-18 19:01:00,0 +4520,1968-06-24 17:44:00,0 +8995,1968-01-29 13:48:00,0 +1440,1968-03-06 03:33:00,0 +8208,1965-07-04 23:07:00,0 +7692,1969-08-24 19:50:00,0 +3121,1966-08-03 02:30:00,0 +157,1967-04-06 19:51:00,0 +9916,1968-12-14 18:21:00,0 +1889,1968-09-10 17:03:00,0 +5402,1967-12-11 07:50:00,0 +123,1969-05-21 23:45:00,0 +23,1968-02-08 12:18:00,0 +4118,1967-04-29 21:43:00,0 +824,1965-05-16 21:04:00,0 +1873,1968-08-21 23:27:00,0 +5169,1966-01-01 11:28:00,0 +2476,1967-03-14 10:28:00,0 +4799,1967-03-13 22:12:00,0 +5633,1968-11-04 22:13:00,0 +8231,1965-10-20 08:21:00,0 +2112,1968-07-22 21:03:00,0 +1990,1966-11-03 14:02:00,0 +8703,1968-10-15 13:17:00,0 +8496,1966-11-23 23:11:00,0 +2093,1968-05-06 12:54:00,0 +7745,1967-02-10 20:37:00,0 +8580,1968-07-21 20:12:00,0 +7179,1966-02-25 17:51:00,0 +771,1965-10-30 05:43:00,0 +5046,1966-07-23 17:11:00,0 +1479,1965-01-14 17:44:00,0 +9112,1967-03-14 20:00:00,0 +1032,1968-05-11 04:14:00,0 +2489,1965-05-17 13:46:00,0 +8251,1968-07-29 08:42:00,0 +1376,1968-10-23 23:18:00,0 +6712,1965-12-28 17:13:00,0 +3299,1965-05-23 12:40:00,0 +185,1965-07-21 18:35:00,0 +8492,1967-03-10 23:43:00,0 +4514,1965-10-06 13:37:00,0 +5414,1966-05-21 07:38:00,0 +7154,1966-09-29 04:52:00,0 +7559,1965-08-13 09:03:00,0 +8946,1968-10-08 06:06:00,0 +8464,1968-04-07 22:28:00,0 +3400,1968-06-08 10:08:00,0 +9241,1967-01-19 12:03:00,0 +105,1967-05-30 05:36:00,0 +6369,1965-06-25 07:57:00,0 +6291,1965-09-12 03:22:00,0 +8975,1967-06-29 09:49:00,0 +1385,1968-12-01 17:50:00,0 +5036,1967-02-11 17:17:00,0 +9286,1965-03-13 00:51:00,0 +7376,1966-03-24 09:44:00,0 +3512,1965-04-15 13:35:00,0 +6119,1968-05-05 14:25:00,0 +7739,1967-09-12 15:12:00,0 +7333,1966-08-01 05:08:00,0 +7243,1965-01-23 09:37:00,0 +8719,1969-11-08 04:29:00,0 +4618,1968-01-24 01:22:00,0 +4346,1967-03-29 16:53:00,0 +2552,1965-02-04 13:39:00,0 +8073,1965-09-29 19:36:00,0 +2199,1969-04-04 05:16:00,0 +8848,1966-05-16 11:49:00,0 +1358,1965-07-22 07:19:00,0 +8781,1966-09-09 05:36:00,0 +9191,1968-03-18 13:23:00,0 +6770,1966-08-13 07:48:00,0 +3823,1965-05-28 16:04:00,0 +7783,1967-06-07 00:29:00,0 +2756,1969-04-09 08:40:00,0 +5784,1968-09-18 06:25:00,0 +3043,1967-07-20 23:47:00,0 +8400,1966-12-09 19:00:00,0 +3210,1967-02-11 22:06:00,0 +6670,1966-05-03 02:49:00,0 +9936,1967-04-21 09:13:00,0 +3459,1969-08-24 18:54:00,0 +9140,1967-11-03 17:25:00,0 +956,1968-10-01 09:17:00,0 +9391,1966-07-03 05:29:00,0 +6225,1969-09-04 13:28:00,0 +8749,1965-12-23 03:54:00,0 +792,1965-12-17 05:22:00,0 +6635,1967-01-13 19:48:00,0 +137,1966-06-17 18:52:00,0 +6058,1965-03-20 08:58:00,0 +9688,1965-06-25 14:20:00,0 +2855,1967-07-10 20:21:00,0 +8805,1965-02-06 21:33:00,0 +3883,1967-04-30 07:56:00,0 +5936,1969-09-19 09:21:00,0 +8026,1968-05-27 06:30:00,0 +8865,1969-09-24 01:30:00,0 +282,1968-12-11 13:36:00,0 +3579,1969-06-06 08:17:00,0 +9,1967-06-30 21:18:00,0 +534,1967-07-15 00:18:00,0 +7793,1966-07-21 05:16:00,0 +6158,1969-07-07 11:56:00,0 +4191,1969-06-28 18:44:00,0 +3783,1968-12-31 11:30:00,0 +7207,1965-07-13 06:35:00,0 +8999,1966-08-19 13:20:00,0 +6989,1965-08-14 14:31:00,0 +8976,1968-02-15 23:33:00,0 +95,1966-03-09 10:10:00,0 +3937,1967-06-11 01:36:00,0 +4689,1968-07-25 20:53:00,0 +6676,1969-06-11 20:29:00,0 +4871,1967-11-18 14:21:00,0 +4936,1968-10-08 06:30:00,0 +1532,1966-07-19 19:37:00,0 +101,1965-04-20 03:12:00,0 +4897,1968-05-18 09:52:00,0 +1973,1967-12-14 04:40:00,0 +3219,1967-01-24 16:54:00,0 +9232,1965-11-30 00:51:00,0 +1868,1968-04-14 10:50:00,0 +4155,1965-04-27 08:59:00,0 +6596,1966-02-01 16:14:00,0 +3810,1967-10-20 08:34:00,0 +1896,1968-05-22 06:01:00,0 +3238,1968-04-29 12:24:00,0 +1999,1968-03-28 17:19:00,0 +278,1968-07-21 07:40:00,0 +2963,1966-03-12 22:22:00,0 +930,1968-01-21 02:37:00,0 +1146,1965-01-17 08:55:00,0 +8148,1965-03-14 15:50:00,0 +52,1965-11-10 18:55:00,0 +9648,1968-06-19 19:07:00,0 +6356,1968-04-03 16:03:00,0 +2952,1969-05-24 20:21:00,0 +5033,1969-05-27 14:19:00,0 +4760,1965-09-04 23:17:00,0 +3279,1965-09-27 21:39:00,0 +2274,1968-09-02 23:37:00,0 +8650,1968-03-19 21:17:00,0 +6540,1965-11-30 15:41:00,0 +3057,1968-01-27 23:08:00,0 +1709,1966-12-07 06:14:00,0 +1305,1965-08-11 06:41:00,0 +675,1968-11-29 14:24:00,0 +7638,1969-03-20 11:43:00,0 +3753,1965-06-05 04:34:00,0 +7069,1968-08-09 15:22:00,0 +1627,1969-08-09 16:34:00,0 +2842,1968-05-28 08:33:00,0 +9399,1965-04-07 21:43:00,0 +9809,1966-02-16 04:08:00,0 +2416,1965-10-02 19:58:00,0 +6501,1967-04-24 17:06:00,0 +6438,1969-12-23 08:44:00,0 +3990,1969-02-02 04:58:00,0 +5355,1967-12-21 23:58:00,0 +5243,1965-12-28 00:11:00,0 +5919,1967-04-09 09:50:00,0 +7817,1969-12-29 23:47:00,0 +5730,1967-07-10 13:58:00,0 +3593,1966-10-15 16:12:00,0 +2883,1968-10-19 09:36:00,0 +7947,1966-07-09 04:31:00,0 +1024,1965-08-09 13:41:00,0 +8129,1966-07-25 09:06:00,0 +4327,1966-11-26 14:23:00,0 +8513,1967-08-31 20:55:00,0 +2648,1969-04-17 11:29:00,0 +1971,1965-07-30 17:41:00,0 +1712,1966-11-29 18:19:00,0 +9715,1965-12-26 20:01:00,0 +8731,1967-12-16 00:36:00,0 +4994,1966-10-13 12:05:00,0 +4492,1965-09-26 21:28:00,0 +2535,1969-06-25 17:15:00,0 +2336,1967-10-04 11:21:00,0 +250,1967-08-28 10:43:00,0 +5531,1969-06-15 18:29:00,0 +3364,1968-08-05 04:56:00,0 +3239,1968-08-19 21:59:00,0 +5218,1967-09-04 15:18:00,0 +8908,1966-04-25 07:32:00,0 +8476,1967-01-06 15:26:00,0 +8162,1967-07-10 02:43:00,0 +8756,1969-04-12 03:16:00,0 +8027,1966-05-09 05:03:00,0 +3729,1968-02-24 04:17:00,0 +5498,1966-01-30 02:00:00,0 +1898,1965-03-18 18:32:00,0 +6544,1965-03-05 13:35:00,0 +4094,1965-05-03 20:26:00,0 +273,1968-10-06 02:02:00,0 +1569,1968-05-14 06:23:00,0 +7966,1967-06-26 14:18:00,0 +8712,1965-09-29 00:28:00,0 +3926,1967-04-01 11:53:00,0 +6381,1966-06-03 09:48:00,0 +5765,1966-11-09 09:40:00,0 +8997,1969-07-15 16:54:00,0 +439,1969-08-18 00:06:00,0 +7254,1966-04-21 13:20:00,0 +444,1969-11-13 04:19:00,0 +931,1967-05-29 11:02:00,0 +3835,1965-03-24 15:17:00,0 +1697,1966-01-27 05:22:00,0 +2333,1968-06-18 02:59:00,0 +2854,1965-07-09 10:54:00,0 +2878,1969-03-31 17:59:00,0 +3674,1965-12-26 06:41:00,0 +8368,1967-10-15 08:20:00,0 +2576,1965-01-19 12:50:00,0 +2420,1968-12-18 20:23:00,0 +7512,1966-12-20 04:05:00,0 +9385,1966-05-04 08:53:00,0 +7661,1965-07-24 20:34:00,0 +6828,1969-06-27 01:22:00,0 +5245,1967-03-24 11:00:00,0 +9960,1968-01-30 06:00:00,0 +2430,1966-08-17 22:44:00,0 +2337,1969-01-23 17:19:00,0 +4428,1966-08-06 10:57:00,0 +9207,1968-03-23 20:53:00,0 +7674,1967-05-09 00:31:00,0 +6972,1965-07-06 14:07:00,0 +2117,1966-11-14 00:53:00,0 +4026,1969-07-12 09:57:00,0 +7240,1969-03-09 19:04:00,0 +2497,1967-02-27 10:22:00,0 +2581,1965-04-05 16:14:00,0 +2723,1969-05-21 08:12:00,0 +8478,1969-11-27 11:14:00,0 +1303,1966-05-27 10:05:00,0 +7214,1968-12-08 10:00:00,0 +2231,1966-08-28 15:16:00,0 +9981,1967-02-19 06:05:00,0 +5758,1967-08-13 11:30:00,0 +9769,1965-10-28 04:08:00,0 +7676,1969-02-19 07:45:00,0 +2080,1968-05-15 03:03:00,0 +1232,1969-11-02 12:17:00,0 +5912,1966-10-18 17:26:00,0 +8617,1968-11-21 05:41:00,0 +1950,1968-04-25 16:05:00,0 +4105,1969-08-23 13:36:00,0 +3423,1967-09-20 01:27:00,0 +5173,1967-02-04 01:26:00,0 +4952,1967-06-25 02:59:00,0 +4290,1969-03-16 08:27:00,0 +1174,1965-09-28 02:34:00,0 +1086,1965-10-27 12:14:00,0 +9180,1966-01-17 04:47:00,0 +6378,1966-01-02 14:10:00,0 +3698,1967-11-16 21:53:00,0 +1581,1965-06-11 01:19:00,0 +5791,1966-02-07 08:32:00,0 +1661,1968-06-11 02:32:00,0 +4785,1969-08-12 20:36:00,0 +5183,1969-07-20 03:47:00,0 +9064,1965-11-22 02:38:00,0 +238,1969-01-31 19:29:00,0 +9019,1969-07-31 19:39:00,0 +6564,1966-04-16 10:46:00,0 +4538,1968-11-09 18:28:00,0 +4223,1969-01-17 13:35:00,0 +1429,1965-09-15 20:54:00,0 +9052,1968-09-20 08:08:00,0 +8377,1965-03-13 16:28:00,0 +5414,1965-08-30 14:31:00,0 +4900,1967-10-13 21:01:00,0 +5315,1969-12-27 17:20:00,0 +915,1968-10-03 17:04:00,0 +2787,1969-02-24 01:35:00,0 +3150,1967-11-22 06:36:00,0 +5752,1967-05-27 07:48:00,0 +7762,1965-10-04 10:52:00,0 +3841,1967-06-22 04:41:00,0 +8736,1965-12-11 05:44:00,0 +2855,1966-11-05 15:48:00,0 +4168,1966-02-19 02:36:00,0 +5371,1965-02-26 05:15:00,0 +3723,1969-10-09 16:15:00,0 +604,1966-08-23 21:42:00,0 +8694,1968-09-18 22:23:00,0 +455,1968-01-05 17:02:00,0 +3194,1966-06-28 21:58:00,0 +7504,1967-02-20 08:48:00,0 +6338,1965-10-24 08:53:00,0 +607,1969-09-02 14:10:00,0 +5152,1965-06-09 18:33:00,0 +4185,1968-11-28 05:49:00,0 +5109,1969-07-05 09:36:00,0 +8045,1965-02-12 06:50:00,0 +3868,1967-01-15 02:51:00,0 +7151,1967-12-05 12:12:00,0 +9500,1966-07-23 16:50:00,0 +9654,1967-05-24 06:41:00,0 +3455,1965-03-01 03:12:00,0 +6921,1965-06-22 23:12:00,0 +8367,1965-03-18 18:21:00,0 +65,1969-10-23 16:06:00,0 +2203,1965-01-26 22:12:00,0 +803,1968-07-19 01:01:00,0 +6627,1968-11-13 07:29:00,0 +9513,1968-10-11 19:56:00,0 +6602,1968-03-10 05:53:00,0 +9445,1967-02-20 06:37:00,0 +3313,1966-02-13 02:56:00,0 +62,1965-07-14 23:21:00,0 +5530,1968-02-27 14:42:00,0 +5516,1966-12-20 06:46:00,0 +7548,1968-02-03 17:28:00,0 +9977,1969-06-27 04:57:00,0 +8009,1968-02-11 05:29:00,0 +1297,1965-11-11 17:57:00,0 +7152,1968-07-20 11:35:00,0 +6676,1965-02-18 08:38:00,0 +1928,1969-11-23 13:22:00,0 +3837,1969-02-10 11:49:00,0 +2306,1969-09-08 02:42:00,0 +6824,1966-02-21 00:08:00,0 +6396,1965-05-13 00:25:00,0 +4913,1965-12-02 15:59:00,0 diff --git a/tests/test_data/raw/synth_raw_float_2.csv b/tests/test_data/raw/synth_raw_float_2.csv new file mode 100644 index 00000000..f38093ef --- /dev/null +++ b/tests/test_data/raw/synth_raw_float_2.csv @@ -0,0 +1,10001 @@ +dw_ek_borger,timestamp,value +7440,1966-02-26 12:19:00,0 +7319,1965-10-30 10:30:00,0 +5811,1968-05-16 22:58:00,0 +4946,1969-10-12 17:24:00,0 +7079,1969-03-29 06:26:00,0 +6342,1969-10-21 15:54:00,0 +873,1968-04-22 10:44:00,0 +6538,1968-07-21 07:29:00,0 +7177,1967-09-03 10:43:00,0 +1509,1966-08-17 00:29:00,0 +4790,1969-01-17 13:54:00,0 +9440,1967-08-07 14:10:00,0 +7949,1965-08-16 14:31:00,0 +3211,1968-03-21 08:05:00,0 +4037,1967-07-03 17:24:00,0 +7092,1966-08-05 10:38:00,0 +7549,1969-02-13 21:41:00,0 +7655,1966-06-25 09:06:00,0 +6627,1967-11-27 16:29:00,0 +8544,1969-11-01 16:47:00,0 +4147,1968-07-04 23:30:00,0 +8435,1967-08-30 14:00:00,0 +8186,1966-12-04 22:58:00,0 +4182,1965-07-11 15:40:00,0 +8168,1966-04-07 15:15:00,0 +6785,1966-01-21 00:59:00,0 +5817,1967-04-04 21:22:00,0 +5183,1968-04-03 16:48:00,0 +2396,1968-03-25 04:39:00,0 +6495,1969-08-21 22:08:00,0 +4046,1965-04-30 17:00:00,0 +2386,1968-11-06 10:55:00,0 +2844,1967-12-31 22:38:00,0 +776,1966-02-10 08:01:00,0 +2720,1965-11-13 11:39:00,0 +9077,1965-06-26 02:57:00,0 +8790,1968-03-07 02:56:00,0 +4162,1969-07-24 11:44:00,0 +554,1969-02-18 17:39:00,0 +4658,1966-01-27 10:48:00,0 +7585,1965-02-05 00:26:00,0 +8346,1966-01-27 12:39:00,0 +7463,1967-12-24 20:52:00,0 +9566,1967-02-08 07:52:00,0 +679,1968-06-06 00:18:00,0 +1,1966-02-12 02:46:00,0 +907,1965-08-29 07:54:00,0 +7026,1968-01-11 03:01:00,0 +8019,1966-07-25 05:38:00,0 +4072,1968-03-15 19:31:00,0 +6808,1968-01-02 00:34:00,0 +4233,1968-01-20 04:09:00,0 +2364,1968-04-17 05:59:00,0 +9499,1967-02-18 06:53:00,0 +4581,1965-02-02 16:31:00,0 +5557,1966-07-08 07:29:00,0 +2698,1967-04-07 01:26:00,0 +3126,1967-10-01 05:02:00,0 +3472,1968-08-29 06:16:00,0 +7488,1969-01-26 21:59:00,0 +6058,1968-05-10 14:25:00,0 +819,1965-09-22 03:10:00,0 +8908,1969-08-18 23:19:00,0 +9251,1967-08-21 03:42:00,0 +6317,1968-07-01 21:29:00,0 +8181,1966-04-14 02:24:00,0 +5622,1966-03-21 15:31:00,0 +4118,1969-06-16 05:01:00,0 +4049,1967-09-12 08:31:00,0 +6636,1967-03-22 13:01:00,0 +8189,1967-07-01 23:56:00,0 +6443,1965-12-21 21:46:00,0 +8539,1968-12-26 23:01:00,0 +8909,1966-01-05 08:39:00,0 +5317,1967-07-30 09:10:00,0 +2912,1965-06-23 19:40:00,0 +5523,1967-07-11 06:56:00,0 +6018,1967-02-13 00:42:00,0 +1082,1968-04-21 10:42:00,0 +2547,1965-12-01 21:14:00,0 +6933,1967-09-02 04:47:00,0 +2634,1965-12-21 08:04:00,0 +9804,1968-06-28 14:36:00,0 +5292,1965-05-02 17:15:00,0 +2852,1966-11-20 17:01:00,0 +7188,1967-04-22 06:48:00,0 +9466,1968-02-16 13:55:00,0 +5364,1969-10-13 03:08:00,0 +7468,1967-05-10 17:41:00,0 +3955,1969-12-07 23:39:00,0 +1646,1968-11-03 08:27:00,0 +9222,1968-09-08 22:07:00,0 +780,1965-03-10 08:59:00,0 +6003,1967-04-16 02:29:00,0 +9972,1968-05-12 00:15:00,0 +8817,1968-10-02 00:08:00,0 +323,1969-12-23 23:35:00,0 +9986,1967-01-03 09:59:00,0 +5845,1968-04-29 13:20:00,0 +6881,1969-01-09 04:52:00,0 +4896,1968-08-18 18:17:00,0 +1680,1969-11-14 19:01:00,0 +6824,1965-06-27 09:02:00,0 +5349,1968-02-01 10:23:00,0 +1154,1968-10-31 03:07:00,0 +1076,1968-09-14 11:05:00,0 +8590,1966-07-28 03:43:00,0 +5942,1967-09-22 12:06:00,0 +3397,1968-10-24 16:43:00,0 +8763,1966-05-11 18:37:00,0 +3632,1968-11-18 21:41:00,0 +4881,1969-11-06 22:09:00,0 +9955,1967-10-07 00:46:00,0 +4403,1967-06-25 12:21:00,0 +7057,1967-01-08 15:44:00,0 +1565,1965-10-31 01:05:00,0 +1732,1965-11-28 10:18:00,0 +5385,1969-09-21 12:42:00,0 +8151,1968-06-02 19:26:00,0 +4087,1967-08-22 03:26:00,0 +3261,1969-03-10 16:57:00,0 +438,1965-03-25 05:40:00,0 +3463,1965-08-16 06:17:00,0 +2819,1969-06-14 12:56:00,0 +5833,1965-02-22 17:45:00,0 +6137,1966-02-09 17:17:00,0 +4882,1967-07-02 23:14:00,0 +5672,1967-08-27 22:44:00,0 +2846,1966-06-28 18:51:00,0 +6010,1968-07-28 02:33:00,0 +8825,1965-07-30 09:41:00,0 +8484,1966-03-27 10:49:00,0 +9584,1967-05-11 16:26:00,0 +4535,1965-02-06 16:45:00,0 +1612,1965-08-11 15:33:00,0 +9158,1968-05-07 01:01:00,0 +5165,1969-07-21 17:55:00,0 +1843,1965-07-06 01:36:00,0 +5395,1966-06-20 15:34:00,0 +5751,1966-08-20 12:43:00,0 +8418,1969-11-17 14:19:00,0 +1913,1967-11-04 19:13:00,0 +6267,1965-09-15 11:28:00,0 +3493,1968-06-22 10:11:00,0 +8523,1965-03-24 09:22:00,0 +9406,1967-02-14 20:54:00,0 +8275,1965-01-13 10:45:00,0 +2993,1967-10-10 23:32:00,0 +2038,1966-09-12 17:20:00,0 +7386,1968-02-29 11:11:00,0 +3783,1965-07-23 22:28:00,0 +2424,1969-11-15 21:04:00,0 +9263,1966-02-24 02:20:00,0 +1540,1968-02-27 12:27:00,0 +3337,1967-04-12 17:18:00,0 +4364,1966-06-12 01:38:00,0 +5371,1969-05-15 04:23:00,0 +5292,1968-11-03 11:30:00,0 +6556,1965-04-11 05:06:00,0 +4477,1966-03-01 22:02:00,0 +5139,1967-07-03 05:19:00,0 +9502,1966-03-13 18:00:00,0 +1836,1967-11-06 05:46:00,0 +3502,1965-12-04 14:34:00,0 +4167,1969-01-02 05:03:00,0 +8017,1968-07-22 00:42:00,0 +9300,1966-07-30 23:48:00,0 +7245,1969-06-23 13:35:00,0 +5776,1967-08-06 18:22:00,0 +616,1968-02-08 15:03:00,0 +7539,1969-12-08 10:15:00,0 +1108,1965-12-26 13:29:00,0 +572,1967-08-03 05:23:00,0 +8018,1969-03-16 03:00:00,0 +2621,1965-02-12 10:01:00,0 +9745,1967-01-31 00:59:00,0 +673,1968-12-14 21:58:00,0 +2333,1968-06-12 15:56:00,0 +9359,1969-03-25 04:05:00,0 +8781,1968-04-08 19:21:00,0 +3173,1966-11-18 00:10:00,0 +8747,1968-10-03 15:16:00,0 +8395,1965-01-08 18:38:00,0 +6333,1968-11-02 07:32:00,0 +3183,1968-02-12 03:48:00,0 +4039,1965-03-21 15:45:00,0 +5398,1967-11-05 17:22:00,0 +6034,1966-11-18 18:57:00,0 +8424,1969-08-13 16:46:00,0 +9782,1969-07-26 19:40:00,0 +1674,1966-02-28 15:54:00,0 +8781,1966-05-11 21:59:00,0 +5125,1966-01-23 13:47:00,0 +4471,1968-01-15 06:42:00,0 +9603,1966-05-01 15:38:00,0 +6720,1968-11-10 08:55:00,0 +9040,1966-03-04 05:01:00,0 +16,1966-08-01 04:16:00,0 +5082,1968-04-16 11:03:00,0 +9380,1968-09-02 00:17:00,0 +9282,1966-07-23 18:51:00,0 +6512,1969-11-28 17:15:00,0 +8975,1967-11-29 13:47:00,0 +378,1965-06-26 06:14:00,0 +1483,1968-01-07 00:35:00,0 +1894,1966-09-03 17:11:00,0 +2613,1968-05-11 21:16:00,0 +2432,1967-08-27 05:14:00,0 +3760,1966-03-07 06:48:00,0 +9435,1966-10-15 10:28:00,0 +4515,1969-11-06 08:25:00,0 +8393,1968-12-25 01:11:00,0 +4074,1966-02-01 09:33:00,0 +1778,1967-09-16 14:54:00,0 +735,1966-10-29 15:12:00,0 +7084,1968-03-17 22:02:00,0 +4597,1966-11-07 04:39:00,0 +1322,1966-10-13 12:49:00,0 +5275,1967-08-30 07:56:00,0 +8363,1967-12-27 20:57:00,0 +5866,1968-07-14 04:51:00,0 +436,1967-09-06 15:24:00,0 +1978,1967-08-19 13:10:00,0 +8507,1967-07-01 07:35:00,0 +834,1965-04-04 04:40:00,0 +4736,1966-01-30 12:04:00,0 +9877,1967-03-26 15:35:00,0 +4715,1965-08-25 06:30:00,0 +7390,1968-09-11 05:29:00,0 +6172,1969-10-04 04:07:00,0 +3714,1969-01-24 14:33:00,0 +2263,1968-09-22 23:22:00,0 +5491,1966-10-06 16:23:00,0 +6271,1967-07-15 03:13:00,0 +3774,1967-08-07 14:03:00,0 +1569,1966-03-02 08:35:00,0 +2527,1966-09-27 06:13:00,0 +4223,1968-07-12 10:44:00,0 +9138,1968-11-03 06:56:00,0 +3476,1966-06-08 12:18:00,0 +9707,1969-04-09 21:51:00,0 +9998,1967-07-14 05:32:00,0 +8440,1966-11-02 11:12:00,0 +4993,1965-05-10 06:19:00,0 +532,1966-08-13 19:35:00,0 +1683,1967-03-14 14:08:00,0 +5772,1966-09-29 12:56:00,0 +9009,1965-03-20 19:59:00,0 +9082,1967-07-05 04:36:00,0 +3957,1967-05-03 19:23:00,0 +1895,1967-12-16 06:42:00,0 +4858,1966-08-20 08:36:00,0 +4721,1969-09-27 14:06:00,0 +2411,1969-06-13 19:59:00,0 +4501,1966-01-06 06:19:00,0 +2928,1967-07-17 08:23:00,0 +4780,1967-10-09 17:48:00,0 +9958,1966-03-01 20:02:00,0 +4326,1965-03-03 06:00:00,0 +9643,1967-02-17 15:37:00,0 +8349,1968-04-28 07:59:00,0 +2730,1968-01-15 22:39:00,0 +8848,1968-01-15 04:10:00,0 +7662,1965-06-03 04:23:00,0 +8859,1966-05-11 01:17:00,0 +6685,1965-02-22 04:41:00,0 +8547,1968-07-02 18:17:00,0 +2299,1969-12-03 04:38:00,0 +4933,1966-08-22 17:08:00,0 +4421,1968-03-07 08:31:00,0 +2957,1968-12-17 12:29:00,0 +6867,1967-10-18 22:40:00,0 +7914,1966-03-23 07:42:00,0 +6918,1966-06-16 13:13:00,0 +432,1967-06-14 23:46:00,0 +2748,1967-06-16 10:42:00,0 +6965,1965-07-28 17:50:00,0 +6637,1969-04-07 05:52:00,0 +8833,1967-08-10 22:43:00,0 +5291,1967-03-03 15:46:00,0 +4164,1968-11-13 06:29:00,0 +1400,1968-06-07 04:41:00,0 +7554,1969-04-20 06:14:00,0 +7022,1969-08-06 04:25:00,0 +8102,1966-10-16 05:56:00,0 +5943,1969-07-31 08:11:00,0 +3806,1968-01-25 22:29:00,0 +6155,1969-02-02 15:58:00,0 +7774,1968-07-25 11:22:00,0 +2065,1967-06-11 13:36:00,0 +7489,1965-06-06 20:04:00,0 +9356,1967-05-05 18:53:00,0 +1119,1967-04-16 03:58:00,0 +5653,1969-07-26 04:09:00,0 +2198,1965-08-18 13:54:00,0 +3711,1966-05-05 19:40:00,0 +7576,1967-03-12 05:18:00,0 +5076,1968-05-02 14:33:00,0 +543,1968-02-06 09:43:00,0 +9486,1969-07-06 22:48:00,0 +9740,1965-02-07 08:24:00,0 +4958,1967-11-21 04:16:00,0 +3580,1969-11-10 04:19:00,0 +7663,1966-01-02 06:09:00,0 +7741,1966-05-14 22:17:00,0 +2677,1966-04-19 20:01:00,0 +2431,1965-04-05 10:11:00,0 +1966,1965-11-12 17:39:00,0 +815,1967-03-21 02:18:00,0 +8730,1966-04-15 04:48:00,0 +314,1966-02-27 17:31:00,0 +162,1967-06-22 12:32:00,0 +9706,1965-02-21 17:53:00,0 +1111,1967-07-14 06:27:00,0 +8795,1966-03-30 19:07:00,0 +1796,1965-03-17 16:18:00,0 +1348,1968-12-01 04:00:00,0 +2994,1965-06-14 16:13:00,0 +4948,1968-11-05 14:56:00,0 +5027,1968-11-07 06:13:00,0 +2783,1968-12-08 19:57:00,0 +5705,1969-05-11 23:06:00,0 +6574,1968-07-24 06:46:00,0 +9285,1965-04-18 15:40:00,0 +3759,1968-06-27 01:08:00,0 +965,1969-12-06 15:46:00,0 +5053,1965-10-10 14:22:00,0 +3399,1966-08-11 04:26:00,0 +2651,1966-01-04 08:35:00,0 +7436,1966-09-27 22:59:00,0 +9170,1969-11-24 18:36:00,0 +5086,1965-11-25 02:11:00,0 +6286,1965-11-01 07:46:00,0 +8091,1967-03-22 09:58:00,0 +4835,1967-05-05 07:40:00,0 +1169,1967-07-28 16:25:00,0 +210,1967-03-21 23:25:00,0 +2290,1966-03-09 00:18:00,0 +8478,1968-10-05 03:26:00,0 +5223,1968-11-12 19:13:00,0 +4276,1967-10-04 10:59:00,0 +5476,1967-05-10 06:57:00,0 +1303,1966-05-18 21:08:00,0 +3177,1968-03-24 00:41:00,0 +3149,1966-02-21 10:11:00,0 +2514,1969-01-17 21:20:00,0 +9217,1965-05-02 23:20:00,0 +6093,1967-05-15 08:11:00,0 +1718,1967-07-29 18:55:00,0 +3149,1968-12-02 06:32:00,0 +8288,1967-03-07 12:38:00,0 +8636,1967-09-05 03:54:00,0 +2134,1968-07-20 01:20:00,0 +8748,1969-05-11 08:56:00,0 +765,1969-02-15 15:18:00,0 +3564,1967-11-01 10:51:00,0 +2509,1969-04-21 09:56:00,0 +786,1967-09-23 11:18:00,0 +2806,1968-06-23 23:51:00,0 +9818,1965-04-08 07:35:00,0 +3406,1965-05-08 23:08:00,0 +6053,1969-11-08 14:01:00,0 +108,1966-05-13 12:54:00,0 +4880,1969-12-08 11:57:00,0 +8915,1966-04-28 19:34:00,0 +8574,1968-11-22 02:44:00,0 +2123,1966-09-23 15:11:00,0 +2259,1966-04-09 05:05:00,0 +5152,1967-09-11 10:36:00,0 +5367,1969-10-14 12:21:00,0 +2579,1969-12-01 15:33:00,0 +1050,1965-07-19 14:42:00,0 +2421,1969-10-22 03:29:00,0 +2725,1967-08-14 20:36:00,0 +7085,1965-02-25 21:19:00,0 +5988,1966-09-23 04:22:00,0 +3950,1965-12-20 08:13:00,0 +6069,1965-10-24 18:57:00,0 +7353,1969-09-20 02:50:00,0 +3392,1968-09-10 03:09:00,0 +8059,1969-12-23 07:14:00,0 +7422,1969-03-24 06:03:00,0 +3771,1967-03-18 17:40:00,0 +5897,1966-07-18 04:00:00,0 +9865,1967-09-24 00:24:00,0 +5642,1965-10-21 19:14:00,0 +9739,1969-02-06 16:49:00,0 +3158,1967-04-16 04:14:00,0 +938,1968-05-13 09:35:00,0 +5773,1967-05-14 02:24:00,0 +3583,1965-07-11 04:09:00,0 +2799,1969-08-19 14:30:00,0 +9456,1969-10-15 14:02:00,0 +7735,1966-01-13 16:07:00,0 +1603,1966-09-28 21:26:00,0 +1126,1965-05-20 01:11:00,0 +2680,1969-01-07 13:14:00,0 +8717,1967-04-15 06:38:00,0 +1065,1967-05-14 19:35:00,0 +7760,1965-09-18 22:29:00,0 +7024,1969-09-13 08:58:00,0 +8485,1968-01-13 23:50:00,0 +4691,1967-04-21 22:29:00,0 +3657,1969-10-08 05:10:00,0 +204,1965-01-11 08:55:00,0 +8700,1969-06-18 15:24:00,0 +4638,1968-05-15 21:04:00,0 +7143,1969-02-06 15:48:00,0 +457,1968-10-04 12:21:00,0 +96,1969-05-19 02:02:00,0 +8867,1968-02-26 18:10:00,0 +8277,1969-12-15 09:27:00,0 +2846,1967-02-16 04:52:00,0 +3939,1965-07-01 04:16:00,0 +6522,1967-07-15 04:56:00,0 +8457,1966-09-16 06:27:00,0 +2398,1969-02-21 16:09:00,0 +2467,1969-10-07 00:08:00,0 +6364,1966-02-20 23:32:00,0 +3928,1967-08-12 02:20:00,0 +4448,1965-07-11 07:20:00,0 +7717,1966-10-05 23:52:00,0 +3061,1969-06-30 13:15:00,0 +4114,1966-04-14 22:51:00,0 +8827,1966-12-07 09:48:00,0 +4878,1968-11-04 10:27:00,0 +9387,1969-09-06 14:17:00,0 +7670,1965-11-26 17:59:00,0 +760,1967-11-25 15:07:00,0 +6615,1968-05-19 02:54:00,0 +1186,1968-10-24 16:54:00,0 +4095,1969-09-16 09:45:00,0 +1161,1969-07-14 08:18:00,0 +4199,1967-03-25 11:27:00,0 +3076,1969-08-06 07:37:00,0 +162,1969-06-20 07:20:00,0 +8550,1966-05-13 09:38:00,0 +7927,1965-08-31 05:41:00,0 +7165,1966-07-25 03:37:00,0 +408,1965-05-10 02:47:00,0 +2628,1966-07-30 01:10:00,0 +5775,1965-04-09 09:22:00,0 +7861,1965-08-26 00:24:00,0 +1966,1968-07-12 09:06:00,0 +2437,1968-11-23 04:03:00,0 +3058,1969-03-16 23:21:00,0 +6519,1967-08-21 08:04:00,0 +5303,1965-09-25 01:10:00,0 +9330,1966-03-19 08:01:00,0 +2550,1968-09-07 21:18:00,0 +7990,1966-12-17 11:01:00,0 +2076,1967-05-17 19:30:00,0 +432,1967-02-15 07:24:00,0 +7270,1968-01-19 17:56:00,0 +2847,1969-06-28 08:21:00,0 +9954,1967-10-31 05:17:00,0 +4226,1968-03-25 06:56:00,0 +1774,1969-03-13 15:24:00,0 +4681,1969-11-14 17:07:00,0 +9588,1968-03-07 06:43:00,0 +6114,1966-06-01 08:59:00,0 +2557,1969-07-18 13:58:00,0 +1508,1968-04-06 05:12:00,0 +1375,1967-05-13 22:58:00,0 +497,1967-09-05 13:14:00,0 +1228,1969-04-13 15:44:00,0 +554,1968-04-24 16:33:00,0 +5411,1965-04-03 08:21:00,0 +3376,1966-07-27 02:37:00,0 +378,1968-08-05 00:43:00,0 +2939,1967-04-20 00:12:00,0 +6201,1967-06-21 01:30:00,0 +4712,1967-07-14 11:57:00,0 +6946,1968-05-15 12:51:00,0 +8441,1965-03-04 00:03:00,0 +6718,1965-03-24 03:27:00,0 +1416,1967-04-10 09:32:00,0 +6413,1965-10-30 23:09:00,0 +4066,1967-05-15 04:32:00,0 +671,1967-11-27 11:46:00,0 +6149,1967-08-03 05:42:00,0 +5750,1969-09-02 15:43:00,0 +775,1966-09-23 07:27:00,0 +3984,1965-07-24 17:42:00,0 +2798,1968-03-22 15:38:00,0 +9184,1967-11-26 05:25:00,0 +4704,1969-09-18 16:40:00,0 +4170,1966-05-31 21:34:00,0 +7653,1967-02-05 12:56:00,0 +9125,1967-02-22 17:07:00,0 +100,1969-12-21 14:30:00,0 +2205,1966-05-12 10:30:00,0 +8958,1968-01-25 07:39:00,0 +3069,1968-04-01 05:48:00,0 +7478,1967-09-26 08:06:00,0 +7184,1967-02-23 20:23:00,0 +1068,1968-04-08 07:30:00,0 +3814,1969-09-06 08:18:00,0 +7324,1968-09-30 08:18:00,0 +1404,1968-03-10 20:10:00,0 +5664,1969-04-27 12:01:00,0 +2407,1966-07-06 05:22:00,0 +277,1965-03-08 15:14:00,0 +9418,1967-12-19 03:54:00,0 +9499,1965-04-10 06:07:00,0 +7623,1968-10-23 14:29:00,0 +3940,1969-10-15 12:36:00,0 +7450,1968-10-16 19:51:00,0 +1015,1965-12-11 01:07:00,0 +9202,1965-08-03 07:07:00,0 +4934,1967-03-20 05:19:00,0 +637,1969-07-01 04:17:00,0 +920,1967-12-10 10:03:00,0 +6428,1966-04-14 17:01:00,0 +2359,1969-06-14 05:17:00,0 +2099,1969-12-30 04:35:00,0 +6639,1965-05-07 19:04:00,0 +3992,1969-01-26 13:25:00,0 +9233,1969-08-03 00:01:00,0 +9545,1967-02-07 23:25:00,0 +4759,1965-12-14 08:21:00,0 +3953,1966-10-21 09:31:00,0 +2145,1968-09-22 14:50:00,0 +6127,1967-12-26 12:44:00,0 +1914,1968-01-13 15:10:00,0 +1257,1967-05-16 14:34:00,0 +5074,1969-03-17 09:21:00,0 +8239,1965-12-05 12:35:00,0 +2792,1968-10-01 11:57:00,0 +8347,1967-08-17 13:26:00,0 +6040,1967-05-12 12:27:00,0 +5168,1969-01-29 01:47:00,0 +1036,1965-09-09 21:40:00,0 +9096,1965-12-23 10:35:00,0 +1121,1968-08-18 22:39:00,0 +8741,1967-10-04 19:29:00,0 +9256,1966-03-25 10:13:00,0 +8684,1965-11-27 13:22:00,0 +66,1969-11-07 18:04:00,0 +6996,1969-03-03 18:32:00,0 +7491,1966-10-24 20:27:00,0 +2754,1965-09-29 14:50:00,0 +3830,1967-12-20 23:38:00,0 +4353,1966-09-18 11:37:00,0 +8923,1968-08-17 05:45:00,0 +3518,1966-09-11 00:27:00,0 +4976,1966-01-02 02:59:00,0 +6400,1967-09-24 04:39:00,0 +4243,1966-05-20 12:11:00,0 +3645,1967-02-04 01:57:00,0 +6275,1968-07-16 11:24:00,0 +687,1965-03-01 06:36:00,0 +1952,1965-09-07 22:19:00,0 +6689,1968-10-10 06:22:00,0 +2744,1965-11-07 18:03:00,0 +5982,1969-05-05 18:33:00,0 +408,1967-12-22 23:49:00,0 +6787,1969-12-15 08:45:00,0 +2196,1969-09-08 18:48:00,0 +7244,1969-06-28 07:54:00,0 +8711,1968-10-13 05:25:00,0 +1391,1965-07-09 11:54:00,0 +9413,1967-03-19 16:28:00,0 +8637,1967-11-10 06:17:00,0 +8939,1967-11-10 09:25:00,0 +4147,1969-10-10 06:31:00,0 +7690,1967-03-05 23:15:00,0 +5373,1969-01-25 13:37:00,0 +8301,1966-08-06 05:30:00,0 +6020,1969-06-17 18:58:00,0 +6822,1968-10-03 08:50:00,0 +1398,1965-08-24 13:40:00,0 +6996,1968-11-27 22:42:00,0 +4454,1966-08-07 19:39:00,0 +6929,1966-09-15 12:59:00,0 +9896,1967-11-13 02:37:00,0 +3084,1967-03-10 04:19:00,0 +8139,1968-07-23 21:03:00,0 +9067,1968-01-01 06:26:00,0 +3975,1965-08-21 07:56:00,0 +7919,1967-10-30 16:00:00,0 +5019,1966-09-28 01:37:00,0 +2514,1969-01-11 17:52:00,0 +1421,1965-09-15 21:56:00,0 +2567,1967-01-31 21:46:00,0 +825,1966-02-04 18:58:00,0 +7045,1969-07-09 16:28:00,0 +5772,1969-09-23 13:17:00,0 +8363,1968-01-04 22:43:00,0 +2034,1966-10-15 19:14:00,0 +6711,1967-10-08 04:53:00,0 +6492,1969-05-25 16:17:00,0 +1810,1968-05-07 11:47:00,0 +4484,1969-11-20 07:45:00,0 +5424,1967-11-15 21:57:00,0 +476,1967-01-16 06:51:00,0 +6015,1965-02-23 11:19:00,0 +18,1967-08-26 03:20:00,0 +682,1966-11-20 16:20:00,0 +2774,1969-05-28 16:05:00,0 +8026,1967-05-12 00:07:00,0 +7131,1968-01-05 13:23:00,0 +7222,1967-07-09 04:42:00,0 +4516,1967-12-23 20:26:00,0 +3381,1969-07-18 16:54:00,0 +4672,1968-07-05 11:43:00,0 +1143,1966-08-09 04:23:00,0 +489,1966-03-01 03:33:00,0 +8565,1967-07-01 07:33:00,0 +3066,1965-10-23 12:39:00,0 +2707,1968-07-10 10:03:00,0 +9731,1967-05-24 10:08:00,0 +8129,1969-11-08 13:07:00,0 +5983,1968-03-18 22:22:00,0 +7822,1968-06-02 15:19:00,0 +3446,1966-07-24 04:11:00,0 +6480,1966-06-27 11:36:00,0 +3426,1969-04-03 08:30:00,0 +589,1969-03-19 14:42:00,0 +8293,1966-01-03 06:03:00,0 +2671,1968-01-29 22:00:00,0 +1271,1968-04-09 22:59:00,0 +8608,1967-04-27 11:25:00,0 +5462,1967-05-16 15:31:00,0 +9094,1969-02-26 08:22:00,0 +156,1965-06-27 08:41:00,0 +7870,1968-11-13 20:31:00,0 +6847,1968-01-22 02:35:00,0 +6518,1968-10-30 14:36:00,0 +5543,1968-10-31 12:05:00,0 +7928,1967-06-06 13:07:00,0 +7853,1966-12-04 23:32:00,0 +5185,1969-01-28 17:41:00,0 +788,1969-02-07 01:25:00,0 +8655,1968-06-23 16:56:00,0 +1061,1965-12-07 08:26:00,0 +5550,1967-06-04 10:41:00,0 +8952,1966-11-01 07:02:00,0 +7328,1967-04-08 01:07:00,0 +536,1966-06-16 23:26:00,0 +7262,1967-06-25 18:01:00,0 +8508,1968-08-28 15:14:00,0 +8775,1965-09-25 22:31:00,0 +7218,1969-09-05 19:09:00,0 +8502,1968-03-26 20:52:00,0 +8112,1968-04-05 13:35:00,0 +1892,1969-11-22 18:57:00,0 +4365,1969-07-12 09:30:00,0 +4924,1966-01-14 03:36:00,0 +6896,1967-06-05 04:59:00,0 +9747,1968-04-27 08:08:00,0 +631,1968-02-15 04:38:00,0 +6885,1965-05-04 04:10:00,0 +5941,1966-09-03 04:18:00,0 +8742,1968-10-03 18:31:00,0 +5872,1969-02-02 04:57:00,0 +3707,1967-02-15 11:57:00,0 +6215,1969-01-16 15:47:00,0 +2304,1965-01-28 22:34:00,0 +8757,1969-11-17 08:42:00,0 +5130,1968-01-09 21:16:00,0 +1739,1965-12-17 20:33:00,0 +8512,1969-02-15 10:10:00,0 +1323,1966-03-30 16:16:00,0 +4172,1967-01-18 08:20:00,0 +1682,1969-08-20 06:43:00,0 +6202,1965-10-23 00:29:00,0 +8574,1968-02-10 13:59:00,0 +6532,1965-01-14 19:25:00,0 +3218,1966-05-31 19:00:00,0 +5747,1969-09-13 05:02:00,0 +7158,1969-07-04 19:27:00,0 +5018,1969-05-12 04:21:00,0 +2830,1965-05-31 11:59:00,0 +5523,1965-10-16 02:37:00,0 +6841,1965-02-06 21:01:00,0 +1564,1969-05-06 05:02:00,0 +7273,1969-06-21 08:39:00,0 +5941,1965-09-14 01:30:00,0 +266,1966-04-19 22:43:00,0 +2126,1965-12-23 01:57:00,0 +8667,1969-08-29 00:56:00,0 +7752,1966-11-30 23:09:00,0 +1088,1968-09-30 00:52:00,0 +7546,1965-04-02 16:49:00,0 +9070,1967-11-25 11:59:00,0 +1794,1969-03-23 07:14:00,0 +9056,1968-10-30 08:54:00,0 +9270,1969-04-14 09:44:00,0 +212,1966-03-15 07:12:00,0 +9840,1967-04-27 17:37:00,0 +8505,1965-03-01 09:46:00,0 +2178,1966-04-21 22:57:00,0 +5732,1965-04-18 21:49:00,0 +4661,1968-07-21 07:31:00,0 +6185,1967-02-06 21:53:00,0 +3397,1965-02-06 11:39:00,0 +1438,1965-04-03 09:58:00,0 +5936,1969-10-24 03:53:00,0 +2130,1968-09-29 16:03:00,0 +7125,1968-03-15 23:11:00,0 +4873,1968-10-09 07:19:00,0 +4327,1967-04-14 11:53:00,0 +1045,1968-02-11 10:46:00,0 +2243,1969-09-13 03:23:00,0 +4632,1968-10-19 09:57:00,0 +9250,1968-01-31 21:50:00,0 +3725,1968-06-07 09:08:00,0 +3956,1967-01-13 01:33:00,0 +7921,1966-12-15 19:44:00,0 +4124,1969-11-29 23:52:00,0 +2729,1969-07-24 14:37:00,0 +7921,1966-03-02 01:37:00,0 +5296,1968-03-27 08:47:00,0 +5421,1966-12-14 16:19:00,0 +139,1969-09-08 23:44:00,0 +5896,1969-08-19 07:42:00,0 +9457,1969-03-20 03:19:00,0 +9176,1968-10-16 18:56:00,0 +8862,1967-04-04 08:19:00,0 +8271,1966-01-26 03:32:00,0 +3010,1969-01-24 19:30:00,0 +3197,1966-10-09 18:41:00,0 +3128,1965-01-12 08:06:00,0 +9910,1969-12-20 23:31:00,0 +992,1968-03-03 15:37:00,0 +6603,1965-02-18 09:11:00,0 +5321,1965-05-20 14:04:00,0 +5201,1965-05-17 11:11:00,0 +7006,1968-07-05 01:32:00,0 +532,1969-01-27 10:16:00,0 +8843,1969-06-14 05:17:00,0 +3286,1968-12-19 08:47:00,0 +2992,1965-11-28 12:54:00,0 +7853,1969-06-20 05:16:00,0 +9491,1965-06-22 04:02:00,0 +3276,1968-04-14 03:44:00,0 +9649,1968-08-29 08:04:00,0 +9504,1966-11-10 05:29:00,0 +8527,1967-01-30 12:32:00,0 +8101,1968-05-21 00:19:00,0 +8510,1966-08-23 03:32:00,0 +1934,1966-07-19 21:30:00,0 +6602,1967-06-03 23:28:00,0 +8320,1965-10-03 20:08:00,0 +5154,1966-03-26 23:04:00,0 +8066,1969-03-31 17:11:00,0 +1512,1966-04-20 16:44:00,0 +1704,1968-02-16 00:15:00,0 +5872,1968-10-08 16:32:00,0 +3636,1968-02-04 23:20:00,0 +925,1967-12-23 01:59:00,0 +848,1967-11-04 08:54:00,0 +7269,1966-11-08 00:27:00,0 +1290,1969-04-11 12:32:00,0 +8232,1965-05-27 04:05:00,0 +5927,1967-02-11 03:12:00,0 +3207,1967-12-06 16:06:00,0 +6277,1969-09-12 19:17:00,0 +5375,1969-02-25 06:04:00,0 +5687,1969-10-10 18:31:00,0 +7379,1965-01-18 10:20:00,0 +879,1965-02-07 19:45:00,0 +8952,1969-01-10 01:45:00,0 +7608,1965-03-29 22:44:00,0 +2887,1967-11-02 00:56:00,0 +7480,1966-11-06 08:37:00,0 +609,1965-02-05 04:29:00,0 +7236,1967-03-08 11:43:00,0 +5530,1967-09-26 22:44:00,0 +5869,1965-07-14 09:29:00,0 +7517,1967-11-19 12:28:00,0 +6702,1969-10-01 16:14:00,0 +8010,1969-01-29 14:53:00,0 +1193,1966-03-29 22:27:00,0 +2995,1966-06-09 02:40:00,0 +7635,1966-08-11 15:12:00,0 +4836,1969-10-15 23:35:00,0 +1809,1968-01-05 22:34:00,0 +5560,1965-02-16 13:55:00,0 +5044,1965-02-19 14:33:00,0 +6858,1969-11-09 00:29:00,0 +2860,1967-07-11 12:53:00,0 +1117,1965-08-14 20:55:00,0 +2944,1965-11-05 04:11:00,0 +6866,1968-07-21 22:39:00,0 +1808,1965-03-31 01:57:00,0 +7212,1968-07-25 02:47:00,0 +6028,1966-04-24 05:00:00,0 +5888,1969-12-04 01:12:00,0 +9757,1966-01-25 01:49:00,0 +1591,1968-04-21 21:24:00,0 +5898,1965-02-14 03:52:00,0 +3188,1969-06-02 13:53:00,0 +7680,1965-02-06 01:53:00,0 +6057,1965-01-05 13:45:00,0 +1147,1965-03-09 00:47:00,0 +3839,1966-09-23 09:51:00,0 +741,1966-01-09 02:54:00,0 +1894,1967-04-05 02:03:00,0 +8019,1968-01-20 10:36:00,0 +8953,1965-09-23 17:13:00,0 +545,1966-01-09 17:13:00,0 +1758,1965-12-15 03:44:00,0 +8827,1968-11-20 05:14:00,0 +4481,1967-09-23 02:24:00,0 +377,1966-09-28 21:15:00,0 +881,1966-02-10 16:18:00,0 +2851,1968-03-27 00:01:00,0 +4677,1965-05-19 01:11:00,0 +9531,1967-01-09 14:19:00,0 +1597,1968-09-23 04:03:00,0 +6095,1968-04-07 18:47:00,0 +5663,1965-11-07 10:11:00,0 +9821,1968-03-01 23:20:00,0 +2917,1967-07-04 17:38:00,0 +1073,1969-02-26 13:19:00,0 +5425,1968-04-27 11:19:00,0 +2390,1967-05-06 06:28:00,0 +2135,1965-05-08 05:58:00,0 +1527,1966-09-18 13:25:00,0 +6325,1965-05-24 01:58:00,0 +1651,1965-06-08 21:13:00,0 +5709,1968-05-12 04:27:00,0 +2865,1965-07-17 07:04:00,0 +9892,1969-02-21 21:28:00,0 +226,1969-09-25 22:42:00,0 +8652,1967-06-24 21:07:00,0 +5977,1965-05-05 21:58:00,0 +3196,1967-06-19 07:50:00,0 +3750,1966-03-15 05:55:00,0 +1537,1965-10-23 13:30:00,0 +6912,1966-01-19 03:01:00,0 +9053,1967-05-14 09:07:00,0 +9132,1968-09-06 15:29:00,0 +8124,1969-06-15 21:36:00,0 +4296,1968-03-10 03:04:00,0 +9660,1969-07-28 22:17:00,0 +7338,1965-05-23 01:16:00,0 +7696,1967-09-04 02:24:00,0 +6320,1965-10-29 05:49:00,0 +1081,1967-11-30 23:10:00,0 +1132,1967-01-31 20:47:00,0 +6420,1966-09-14 01:53:00,0 +3079,1969-07-25 16:23:00,0 +2567,1965-08-11 20:51:00,0 +8691,1966-11-15 20:47:00,0 +5953,1966-04-28 04:03:00,0 +9824,1967-10-15 18:06:00,0 +6133,1965-08-12 17:37:00,0 +7182,1967-09-26 18:51:00,0 +6655,1967-10-08 04:59:00,0 +8860,1966-11-14 00:26:00,0 +681,1969-09-27 15:44:00,0 +1922,1966-04-26 14:33:00,0 +4325,1968-04-27 18:43:00,0 +8888,1969-04-07 15:46:00,0 +8267,1969-01-26 19:33:00,0 +1239,1965-08-09 15:50:00,0 +2770,1968-01-20 09:12:00,0 +9109,1969-07-14 16:59:00,0 +7652,1966-12-29 21:25:00,0 +866,1966-04-12 04:34:00,0 +7098,1967-11-05 03:57:00,0 +6179,1967-11-13 06:38:00,0 +7763,1967-10-22 02:26:00,0 +2517,1966-03-04 17:09:00,0 +2022,1965-03-13 12:53:00,0 +6153,1968-04-05 13:53:00,0 +3707,1968-12-25 19:14:00,0 +3684,1968-05-03 12:18:00,0 +9400,1967-02-20 09:22:00,0 +3242,1969-05-04 02:44:00,0 +8169,1967-07-15 12:09:00,0 +2688,1969-12-26 10:54:00,0 +7231,1969-01-19 17:31:00,0 +4573,1967-03-28 10:02:00,0 +4003,1969-12-17 14:50:00,0 +7948,1965-05-21 19:22:00,0 +9340,1965-03-15 04:19:00,0 +4795,1967-12-13 14:25:00,0 +599,1965-01-20 05:26:00,0 +5800,1969-11-12 16:19:00,0 +1745,1968-02-23 03:02:00,0 +8202,1968-02-16 09:01:00,0 +2787,1965-01-07 14:24:00,0 +4084,1965-05-30 06:03:00,0 +9187,1966-07-11 18:11:00,0 +1296,1966-07-13 00:09:00,0 +5590,1969-03-12 15:22:00,0 +8349,1968-04-23 16:21:00,0 +1241,1966-01-01 14:51:00,0 +6374,1966-07-27 04:15:00,0 +4116,1967-03-11 06:15:00,0 +3116,1966-01-29 23:29:00,0 +2531,1968-12-10 12:47:00,0 +251,1968-12-04 17:21:00,0 +106,1966-10-17 01:40:00,0 +6824,1969-05-04 06:48:00,0 +9699,1969-01-06 14:29:00,0 +2760,1967-11-01 08:47:00,0 +4301,1968-11-05 07:57:00,0 +6516,1968-06-03 14:12:00,0 +486,1969-07-04 09:48:00,0 +5461,1967-04-17 01:57:00,0 +4036,1965-07-12 08:40:00,0 +3487,1969-10-30 17:27:00,0 +1775,1965-09-15 20:06:00,0 +3226,1966-05-21 05:39:00,0 +1166,1967-05-12 14:34:00,0 +9547,1967-04-15 18:45:00,0 +6111,1969-11-24 22:32:00,0 +6207,1966-07-08 11:06:00,0 +400,1966-01-26 12:37:00,0 +8428,1965-03-08 04:08:00,0 +6029,1968-11-18 23:23:00,0 +4932,1966-11-21 10:54:00,0 +527,1968-04-13 13:59:00,0 +2207,1965-02-16 17:17:00,0 +3007,1967-11-01 05:29:00,0 +7713,1968-07-01 00:10:00,0 +6939,1968-11-27 19:40:00,0 +2942,1965-12-03 16:44:00,0 +4260,1969-10-17 18:57:00,0 +8479,1965-07-20 08:47:00,0 +2968,1968-09-17 02:58:00,0 +336,1967-05-20 00:19:00,0 +7789,1968-04-23 12:34:00,0 +2343,1968-12-28 20:47:00,0 +9463,1969-03-27 23:47:00,0 +148,1969-07-18 04:34:00,0 +1250,1965-10-20 01:06:00,0 +4787,1968-03-21 04:41:00,0 +930,1969-11-14 14:16:00,0 +2666,1969-10-14 17:03:00,0 +8890,1965-07-29 15:19:00,0 +3450,1965-04-28 11:34:00,0 +3961,1965-05-22 04:13:00,0 +3432,1966-05-16 13:40:00,0 +6322,1969-05-27 16:45:00,0 +5124,1967-04-24 16:31:00,0 +9892,1967-02-23 10:14:00,0 +1338,1965-09-04 07:57:00,0 +2433,1967-01-23 19:09:00,0 +2165,1968-03-24 09:07:00,0 +3817,1965-01-13 00:39:00,0 +950,1969-01-18 14:56:00,0 +9930,1966-02-03 11:33:00,0 +8880,1966-10-31 16:36:00,0 +4416,1966-10-06 20:48:00,0 +1960,1967-06-17 16:55:00,0 +2520,1967-11-28 00:35:00,0 +8379,1966-12-03 02:25:00,0 +9818,1969-08-06 07:36:00,0 +3301,1967-07-03 04:20:00,0 +7347,1965-05-17 04:39:00,0 +8030,1967-05-07 01:23:00,0 +132,1969-05-13 20:35:00,0 +5536,1966-12-27 08:15:00,0 +1798,1969-01-03 23:30:00,0 +2234,1966-02-06 03:39:00,0 +6879,1968-01-19 16:23:00,0 +4129,1968-03-06 05:08:00,0 +1989,1969-04-03 23:09:00,0 +6280,1965-09-09 09:20:00,0 +8670,1967-10-16 05:30:00,0 +5623,1969-08-12 00:44:00,0 +2725,1967-10-15 02:39:00,0 +2417,1969-04-01 05:51:00,0 +939,1967-07-03 18:38:00,0 +6042,1966-12-18 09:28:00,0 +4469,1969-04-25 09:36:00,0 +2400,1969-12-13 05:04:00,0 +6355,1969-03-13 08:12:00,0 +5886,1968-02-24 11:04:00,0 +1032,1965-02-01 08:24:00,0 +2457,1968-06-17 09:47:00,0 +9959,1969-10-02 09:40:00,0 +1687,1969-03-05 20:17:00,0 +7526,1969-05-14 05:37:00,0 +2704,1966-03-26 16:20:00,0 +8200,1966-08-10 16:37:00,0 +6330,1966-01-02 07:22:00,0 +5067,1967-12-02 19:46:00,0 +6964,1966-03-07 15:44:00,0 +5176,1965-06-19 19:50:00,0 +5918,1968-04-06 08:37:00,0 +1823,1967-05-16 09:07:00,0 +242,1966-07-17 00:38:00,0 +3303,1967-04-29 10:58:00,0 +7029,1968-03-09 01:10:00,0 +1922,1968-04-16 05:48:00,0 +4925,1966-07-05 00:00:00,0 +9553,1969-03-09 07:35:00,0 +4749,1965-03-10 08:12:00,0 +5444,1969-02-13 03:46:00,0 +5644,1969-06-27 21:57:00,0 +739,1967-10-01 15:03:00,0 +6994,1969-06-05 17:17:00,0 +1512,1969-09-22 11:36:00,0 +652,1969-03-10 14:12:00,0 +7633,1968-01-01 20:33:00,0 +5415,1968-11-26 02:56:00,0 +7118,1969-02-28 07:01:00,0 +3114,1969-03-06 13:43:00,0 +1080,1966-01-27 10:13:00,0 +6194,1965-05-08 19:00:00,0 +355,1966-05-08 16:25:00,0 +5737,1967-03-01 16:12:00,0 +6557,1967-08-30 06:03:00,0 +8211,1967-05-10 23:27:00,0 +5241,1965-05-12 19:09:00,0 +5269,1966-08-24 16:07:00,0 +2645,1965-12-14 16:49:00,0 +6250,1969-11-18 22:05:00,0 +9118,1967-01-01 20:34:00,0 +8504,1966-09-10 10:44:00,0 +9624,1966-09-08 06:20:00,0 +3359,1965-11-09 10:13:00,0 +1116,1965-03-07 02:07:00,0 +9606,1968-08-01 11:45:00,0 +9031,1966-11-04 02:44:00,0 +8512,1966-07-02 15:20:00,0 +736,1968-11-09 01:58:00,0 +100,1967-06-28 06:07:00,0 +2283,1969-03-24 05:48:00,0 +1347,1969-07-19 21:02:00,0 +4394,1967-10-10 10:03:00,0 +7652,1967-09-07 16:42:00,0 +8863,1969-03-14 08:33:00,0 +5413,1966-06-16 08:34:00,0 +3257,1968-07-22 09:31:00,0 +1450,1966-12-23 00:14:00,0 +7371,1966-08-16 20:43:00,0 +7504,1967-06-22 16:27:00,0 +6768,1967-07-21 20:38:00,0 +1946,1965-02-11 14:12:00,0 +1720,1966-03-31 18:06:00,0 +9318,1969-07-15 00:39:00,0 +9318,1969-11-29 18:28:00,0 +3193,1969-12-21 07:10:00,0 +1688,1968-01-06 19:48:00,0 +6279,1968-01-27 17:48:00,0 +7075,1967-10-21 09:37:00,0 +7470,1966-08-28 14:26:00,0 +8885,1967-07-30 06:01:00,0 +5038,1966-11-14 17:23:00,0 +9406,1968-01-26 22:41:00,0 +8253,1968-01-14 11:27:00,0 +6728,1968-03-19 12:44:00,0 +9795,1968-04-22 07:51:00,0 +3926,1967-01-31 10:55:00,0 +5197,1968-03-26 20:49:00,0 +2644,1965-09-12 10:10:00,0 +1331,1965-06-28 01:26:00,0 +2965,1966-03-26 07:21:00,0 +9361,1966-12-02 21:20:00,0 +2760,1965-02-17 23:24:00,0 +3973,1969-06-21 12:34:00,0 +7622,1965-08-22 08:59:00,0 +3289,1969-12-24 00:37:00,0 +2018,1968-07-26 23:59:00,0 +6666,1969-03-13 15:13:00,0 +8770,1965-05-04 03:59:00,0 +2920,1966-04-09 13:45:00,0 +2823,1966-01-29 16:51:00,0 +8256,1965-05-22 06:31:00,0 +1945,1965-01-09 03:54:00,0 +4355,1969-03-31 01:25:00,0 +2620,1968-07-26 01:22:00,0 +2722,1965-04-29 16:39:00,0 +4560,1966-09-30 01:59:00,0 +7832,1967-03-02 22:42:00,0 +6942,1966-10-03 17:00:00,0 +6819,1966-06-03 12:24:00,0 +7916,1967-09-22 16:57:00,0 +9056,1969-03-01 17:32:00,0 +606,1965-06-24 05:59:00,0 +8430,1965-06-03 17:28:00,0 +4399,1965-07-14 01:57:00,0 +2625,1966-04-27 08:57:00,0 +6396,1966-11-27 17:19:00,0 +9115,1965-09-29 21:11:00,0 +4096,1966-09-13 08:36:00,0 +7734,1969-10-15 04:40:00,0 +7084,1968-02-22 20:15:00,0 +2863,1969-12-31 16:04:00,0 +2485,1965-08-29 04:48:00,0 +3442,1965-02-07 07:22:00,0 +6189,1969-07-10 06:41:00,0 +391,1966-05-07 15:48:00,0 +9350,1969-11-19 21:25:00,0 +4901,1966-09-04 11:37:00,0 +9985,1967-08-28 09:14:00,0 +3968,1966-01-17 21:47:00,0 +1242,1968-01-26 10:39:00,0 +3771,1966-03-02 03:33:00,0 +3115,1966-02-25 00:48:00,0 +153,1969-05-05 22:39:00,0 +4121,1968-07-03 08:31:00,0 +5735,1966-12-12 01:17:00,0 +5010,1965-05-28 18:48:00,0 +9465,1965-04-02 22:21:00,0 +6583,1968-09-25 06:30:00,0 +8441,1967-07-22 01:20:00,0 +6225,1967-12-05 08:13:00,0 +3723,1967-08-28 16:53:00,0 +2865,1967-12-15 01:25:00,0 +495,1967-07-01 08:03:00,0 +7571,1966-07-24 17:57:00,0 +8774,1966-05-29 14:26:00,0 +3084,1969-04-23 05:17:00,0 +1405,1967-12-27 02:44:00,0 +1003,1966-05-29 03:48:00,0 +6962,1967-03-29 15:08:00,0 +3703,1969-07-10 05:58:00,0 +2933,1967-11-01 17:27:00,0 +3023,1966-09-17 16:08:00,0 +1426,1965-06-11 01:20:00,0 +8353,1967-12-05 02:33:00,0 +912,1968-05-13 23:53:00,0 +3724,1967-06-13 20:22:00,0 +4675,1967-12-12 05:14:00,0 +6782,1968-07-15 11:12:00,0 +2556,1965-12-24 20:39:00,0 +1054,1966-07-13 13:41:00,0 +1986,1965-06-03 12:01:00,0 +5553,1968-03-10 11:15:00,0 +1411,1967-03-12 00:46:00,0 +38,1969-07-19 23:57:00,0 +3878,1968-05-15 15:16:00,0 +4973,1969-01-22 06:50:00,0 +9233,1967-06-14 17:40:00,0 +1087,1966-04-20 21:43:00,0 +825,1967-03-19 10:04:00,0 +5900,1965-05-17 05:19:00,0 +4597,1968-09-28 21:28:00,0 +3127,1965-04-22 01:50:00,0 +2920,1968-02-26 17:15:00,0 +9811,1967-09-28 15:32:00,0 +4850,1966-03-25 23:34:00,0 +4784,1969-07-29 15:16:00,0 +3513,1968-08-22 16:25:00,0 +69,1968-03-10 23:25:00,0 +3667,1968-03-14 04:59:00,0 +3016,1965-12-10 16:26:00,0 +3074,1966-03-20 13:56:00,0 +6840,1966-02-17 04:17:00,0 +410,1969-12-08 09:23:00,0 +6293,1968-01-29 11:29:00,0 +7634,1965-11-01 14:08:00,0 +5038,1966-08-20 21:08:00,0 +1584,1968-09-28 23:14:00,0 +8081,1969-01-19 02:18:00,0 +4882,1968-03-19 07:20:00,0 +794,1966-08-26 05:39:00,0 +4492,1965-07-09 08:51:00,0 +5264,1967-01-13 12:30:00,0 +3871,1965-02-14 01:10:00,0 +7035,1967-01-12 14:38:00,0 +3102,1969-01-11 17:43:00,0 +7004,1968-02-26 04:02:00,0 +8750,1969-07-15 03:41:00,0 +2460,1965-09-02 23:05:00,0 +3566,1967-10-17 00:37:00,0 +228,1969-03-16 04:04:00,0 +9289,1966-01-20 10:45:00,0 +3181,1969-04-04 01:26:00,0 +7992,1966-07-22 05:40:00,0 +1627,1967-02-22 21:15:00,0 +1952,1967-03-09 12:05:00,0 +1953,1968-12-09 00:30:00,0 +4036,1969-11-12 07:25:00,0 +1355,1968-01-28 13:34:00,0 +2561,1968-09-08 04:49:00,0 +4126,1969-10-15 15:57:00,0 +4730,1965-10-12 04:58:00,0 +8652,1967-03-19 14:00:00,0 +6707,1965-03-08 07:25:00,0 +3218,1968-06-21 03:52:00,0 +481,1968-08-01 14:13:00,0 +9604,1965-01-16 19:28:00,0 +7919,1968-06-29 08:41:00,0 +9389,1968-12-15 20:52:00,0 +2673,1966-07-30 08:11:00,0 +6903,1966-11-22 04:19:00,0 +1162,1965-09-18 09:14:00,0 +1376,1966-04-08 13:44:00,0 +5275,1966-04-27 21:26:00,0 +6490,1969-01-08 08:11:00,0 +2861,1969-11-18 01:58:00,0 +3939,1965-02-16 08:59:00,0 +6035,1968-12-12 04:59:00,0 +8000,1965-05-16 22:13:00,0 +9139,1965-07-23 20:30:00,0 +4004,1966-06-23 22:19:00,0 +1147,1967-10-26 13:51:00,0 +343,1968-10-20 10:46:00,0 +7856,1966-11-29 05:23:00,0 +8878,1969-11-18 11:09:00,0 +1097,1968-04-26 13:43:00,0 +9871,1967-07-24 17:06:00,0 +1732,1968-04-21 05:16:00,0 +7304,1966-07-29 11:14:00,0 +4101,1965-03-21 20:48:00,0 +2606,1968-12-06 06:09:00,0 +6293,1967-07-17 13:18:00,0 +4917,1968-05-02 15:24:00,0 +8663,1965-01-08 00:27:00,0 +1993,1965-07-06 04:24:00,0 +7925,1969-04-27 04:39:00,0 +8794,1968-12-01 17:24:00,0 +755,1969-05-13 02:12:00,0 +7187,1969-07-13 18:29:00,0 +5329,1967-08-20 03:37:00,0 +7831,1966-12-13 03:19:00,0 +6850,1965-02-27 20:37:00,0 +7949,1969-06-01 11:41:00,0 +5023,1969-02-16 15:56:00,0 +3815,1966-07-07 20:01:00,0 +7942,1969-03-03 15:43:00,0 +5557,1965-06-07 13:14:00,0 +3265,1965-05-01 14:52:00,0 +4080,1967-11-22 15:45:00,0 +1337,1967-11-05 03:14:00,0 +1666,1968-04-11 23:49:00,0 +2468,1965-08-19 04:07:00,0 +7997,1967-06-08 19:15:00,0 +4277,1968-11-05 05:14:00,0 +132,1969-07-06 05:24:00,0 +6147,1965-08-27 07:59:00,0 +2924,1966-04-10 12:19:00,0 +5055,1965-03-13 10:24:00,0 +8575,1968-01-11 05:20:00,0 +9648,1966-06-09 21:17:00,0 +6729,1967-03-11 03:15:00,0 +459,1967-07-25 14:46:00,0 +2124,1968-07-01 16:57:00,0 +4914,1968-01-30 02:11:00,0 +2961,1969-07-18 19:16:00,0 +6599,1966-11-29 22:57:00,0 +1799,1965-01-18 01:25:00,0 +251,1966-09-07 19:27:00,0 +7454,1965-11-17 05:54:00,0 +1666,1969-09-07 09:33:00,0 +9095,1967-07-15 12:21:00,0 +3306,1969-06-09 16:39:00,0 +8092,1967-12-25 21:39:00,0 +1915,1968-10-31 17:55:00,0 +4593,1968-04-25 10:19:00,0 +3705,1968-01-17 06:38:00,0 +2465,1969-05-08 11:19:00,0 +6946,1968-10-30 10:15:00,0 +725,1966-10-16 13:07:00,0 +2354,1965-03-06 21:02:00,0 +1588,1968-01-04 04:51:00,0 +2058,1968-04-24 10:26:00,0 +3277,1969-06-20 05:42:00,0 +8695,1965-02-28 20:31:00,0 +8907,1966-10-24 23:40:00,0 +5508,1968-02-23 20:28:00,0 +2045,1969-10-11 21:29:00,0 +4666,1969-01-08 18:39:00,0 +9553,1968-05-11 17:44:00,0 +5402,1969-09-07 14:35:00,0 +7647,1968-02-17 01:03:00,0 +3564,1966-03-31 22:38:00,0 +9835,1965-06-24 01:35:00,0 +8507,1968-07-09 11:57:00,0 +8301,1966-05-27 14:12:00,0 +1533,1965-07-31 02:30:00,0 +4072,1968-10-08 17:38:00,0 +7828,1967-03-09 03:29:00,0 +1388,1968-11-17 12:48:00,0 +6394,1968-07-17 07:53:00,0 +3785,1968-08-03 02:55:00,0 +7498,1967-12-15 21:39:00,0 +176,1966-11-06 11:06:00,0 +6376,1965-02-01 19:55:00,0 +341,1968-09-25 20:28:00,0 +6376,1965-11-16 00:51:00,0 +1704,1965-09-06 20:57:00,0 +8440,1967-07-26 17:28:00,0 +9156,1969-01-01 06:59:00,0 +789,1967-04-30 16:37:00,0 +6571,1966-01-29 15:20:00,0 +6193,1966-09-02 02:54:00,0 +1847,1968-05-02 06:59:00,0 +6760,1968-05-13 10:51:00,0 +4940,1967-10-18 04:20:00,0 +3273,1969-04-05 19:50:00,0 +1234,1968-12-26 22:31:00,0 +9365,1967-06-06 07:09:00,0 +6994,1968-11-23 22:46:00,0 +8669,1965-07-28 15:43:00,0 +5894,1968-01-20 07:55:00,0 +1063,1966-06-28 06:39:00,0 +1766,1965-05-01 09:38:00,0 +7183,1965-06-18 00:41:00,0 +4398,1965-07-21 14:04:00,0 +5717,1965-01-14 09:55:00,0 +7288,1969-11-28 03:46:00,0 +6676,1965-02-17 22:26:00,0 +2380,1968-03-10 09:39:00,0 +2337,1966-01-09 13:10:00,0 +1450,1965-04-12 01:57:00,0 +6710,1968-08-09 12:16:00,0 +6222,1967-01-10 18:49:00,0 +4233,1965-06-24 21:22:00,0 +1430,1968-04-28 22:50:00,0 +4383,1969-10-30 01:22:00,0 +7805,1965-07-24 13:26:00,0 +8799,1965-12-09 06:05:00,0 +8560,1965-03-28 17:22:00,0 +6657,1969-03-29 16:26:00,0 +8222,1969-03-27 15:01:00,0 +2884,1969-01-24 09:18:00,0 +2326,1968-03-06 18:03:00,0 +905,1968-12-20 09:18:00,0 +4751,1969-09-19 02:25:00,0 +1586,1967-03-15 17:07:00,0 +1446,1969-08-19 13:17:00,0 +543,1965-04-07 05:58:00,0 +2886,1967-11-29 04:50:00,0 +9404,1967-07-20 07:56:00,0 +4986,1969-12-02 14:49:00,0 +4487,1966-01-21 18:28:00,0 +1034,1965-06-11 16:30:00,0 +6986,1965-12-15 04:23:00,0 +5603,1966-10-19 21:57:00,0 +2957,1969-06-27 16:01:00,0 +7806,1966-11-23 00:55:00,0 +3526,1967-06-09 06:52:00,0 +3161,1968-04-17 07:38:00,0 +3602,1967-04-29 14:46:00,0 +1751,1967-05-12 21:55:00,0 +4646,1965-08-11 14:47:00,0 +4603,1965-08-29 16:09:00,0 +660,1968-09-05 17:21:00,0 +6366,1968-09-09 11:00:00,0 +1359,1967-03-19 05:52:00,0 +5416,1969-12-05 02:03:00,0 +4142,1966-07-03 17:38:00,0 +1921,1968-08-12 01:00:00,0 +3649,1966-03-12 01:43:00,0 +819,1967-04-01 15:32:00,0 +3766,1965-02-10 09:25:00,0 +5394,1966-02-06 15:14:00,0 +6491,1965-08-02 09:26:00,0 +7756,1967-07-06 08:26:00,0 +7,1966-11-11 22:51:00,0 +8294,1965-06-10 20:36:00,0 +2835,1966-03-16 15:56:00,0 +2683,1965-07-06 22:07:00,0 +8506,1969-04-13 02:32:00,0 +3233,1968-03-24 21:20:00,0 +4153,1966-09-29 11:33:00,0 +1756,1966-12-27 23:18:00,0 +3577,1969-03-17 02:28:00,0 +1666,1968-11-19 10:04:00,0 +8765,1965-09-14 04:06:00,0 +8470,1969-04-30 03:00:00,0 +8555,1967-03-08 12:06:00,0 +3160,1968-05-23 00:19:00,0 +7741,1967-03-02 05:16:00,0 +112,1969-06-13 14:48:00,0 +6878,1969-03-02 19:18:00,0 +129,1967-12-02 18:10:00,0 +1616,1968-08-11 06:06:00,0 +839,1967-12-06 03:01:00,0 +5691,1969-11-09 05:05:00,0 +7204,1965-01-10 17:13:00,0 +7265,1966-08-31 17:53:00,0 +2198,1968-10-27 03:09:00,0 +8766,1967-08-27 17:01:00,0 +5686,1967-10-25 08:39:00,0 +9321,1966-02-01 21:22:00,0 +3021,1965-01-13 21:16:00,0 +5195,1967-10-17 01:44:00,0 +7865,1967-02-12 23:25:00,0 +3724,1965-06-04 15:32:00,0 +4801,1965-05-21 04:18:00,0 +4972,1965-04-20 21:01:00,0 +8295,1966-11-27 10:30:00,0 +6612,1965-11-26 02:50:00,0 +1395,1965-02-28 16:28:00,0 +9796,1968-03-05 14:30:00,0 +6838,1968-05-27 12:52:00,0 +5511,1968-08-14 20:37:00,0 +5988,1966-11-22 09:55:00,0 +1491,1966-03-27 10:49:00,0 +3512,1969-12-20 09:46:00,0 +8225,1967-09-25 07:51:00,0 +2666,1966-03-18 19:36:00,0 +3263,1965-01-02 01:50:00,0 +3990,1965-12-31 17:13:00,0 +6920,1966-07-09 10:37:00,0 +1529,1968-05-18 17:47:00,0 +8337,1966-04-25 14:45:00,0 +8799,1965-11-29 00:19:00,0 +1596,1966-05-14 19:46:00,0 +7332,1968-05-31 14:42:00,0 +3208,1966-04-09 14:23:00,0 +6742,1965-10-29 09:12:00,0 +2767,1968-02-25 09:21:00,0 +5950,1967-01-16 12:13:00,0 +1757,1967-02-23 16:52:00,0 +668,1965-10-10 07:06:00,0 +5928,1967-09-20 12:12:00,0 +7167,1967-10-23 16:17:00,0 +8696,1966-11-21 08:19:00,0 +5344,1968-09-25 16:05:00,0 +5028,1967-05-03 20:07:00,0 +8964,1965-10-07 18:29:00,0 +1135,1969-03-27 23:50:00,0 +2069,1965-04-01 12:35:00,0 +9037,1965-05-03 03:05:00,0 +3564,1965-04-15 23:30:00,0 +2898,1967-10-29 23:58:00,0 +8280,1965-11-07 09:00:00,0 +3431,1965-07-19 07:51:00,0 +3680,1965-10-29 08:18:00,0 +8037,1966-08-13 01:22:00,0 +6380,1968-12-08 02:15:00,0 +6893,1967-04-09 23:40:00,0 +3520,1965-06-04 05:54:00,0 +4393,1968-05-25 09:10:00,0 +1447,1967-08-05 03:39:00,0 +8222,1966-12-21 23:36:00,0 +9174,1965-07-23 10:49:00,0 +3045,1966-05-30 18:11:00,0 +2165,1968-03-17 14:51:00,0 +1512,1966-12-07 08:17:00,0 +7515,1968-10-27 23:21:00,0 +1482,1965-04-30 21:30:00,0 +8028,1967-05-22 04:38:00,0 +3552,1968-05-20 14:08:00,0 +1259,1969-05-11 16:32:00,0 +3625,1969-04-03 13:15:00,0 +7158,1965-01-16 10:28:00,0 +8310,1967-08-04 16:30:00,0 +4142,1969-02-21 07:07:00,0 +9020,1967-05-03 18:13:00,0 +7251,1967-04-15 21:36:00,0 +6030,1966-02-05 22:22:00,0 +1668,1966-01-14 12:38:00,0 +426,1969-01-23 17:44:00,0 +5106,1969-11-22 05:16:00,0 +5551,1966-10-14 20:52:00,0 +4343,1968-05-31 02:58:00,0 +3263,1965-06-27 23:02:00,0 +6026,1967-06-25 00:09:00,0 +4129,1966-09-03 09:29:00,0 +136,1969-06-20 08:31:00,0 +8374,1968-05-08 09:37:00,0 +5940,1969-03-14 17:43:00,0 +4094,1967-02-05 02:51:00,0 +3877,1965-01-09 23:28:00,0 +3497,1969-10-18 21:41:00,0 +3456,1966-10-17 00:20:00,0 +4998,1967-11-08 05:13:00,0 +8362,1969-08-29 01:07:00,0 +6169,1969-07-28 18:45:00,0 +3421,1965-07-05 06:41:00,0 +6450,1968-01-16 12:26:00,0 +2050,1966-03-12 12:25:00,0 +9418,1968-12-26 12:41:00,0 +5173,1969-08-08 04:31:00,0 +4022,1967-05-12 09:51:00,0 +7100,1967-04-13 22:30:00,0 +4207,1965-04-08 14:20:00,0 +1733,1966-01-04 23:28:00,0 +6742,1965-04-20 09:51:00,0 +1055,1969-06-02 11:41:00,0 +9678,1967-07-22 13:33:00,0 +2157,1969-09-27 14:57:00,0 +1787,1966-01-15 23:19:00,0 +9113,1968-12-08 10:34:00,0 +384,1969-02-04 14:13:00,0 +8437,1968-07-21 15:49:00,0 +9038,1966-08-18 03:01:00,0 +845,1966-04-03 04:53:00,0 +9771,1965-11-19 17:03:00,0 +8260,1965-07-05 07:34:00,0 +7014,1969-07-21 23:52:00,0 +9729,1969-08-05 19:37:00,0 +2241,1969-07-16 12:26:00,0 +8675,1966-07-05 13:25:00,0 +3884,1965-05-10 06:33:00,0 +9135,1969-07-17 22:42:00,0 +4529,1965-05-24 22:53:00,0 +48,1966-12-10 04:41:00,0 +6945,1965-11-20 04:04:00,0 +9336,1969-08-27 10:19:00,0 +6959,1967-08-14 16:49:00,0 +2122,1966-05-03 20:55:00,0 +8551,1968-07-16 04:56:00,0 +5588,1966-09-26 02:31:00,0 +9414,1967-10-01 14:58:00,0 +3406,1967-10-02 02:24:00,0 +3307,1969-10-24 22:56:00,0 +7677,1968-03-31 07:26:00,0 +3849,1968-07-01 23:41:00,0 +4338,1966-04-02 12:01:00,0 +1320,1966-12-28 11:12:00,0 +6228,1967-08-30 22:13:00,0 +4137,1968-11-08 13:52:00,0 +5765,1965-02-09 10:46:00,0 +4065,1965-06-29 01:59:00,0 +5499,1965-01-05 18:24:00,0 +8690,1967-12-02 06:10:00,0 +1690,1965-11-10 18:44:00,0 +1319,1966-03-31 15:24:00,0 +1712,1969-09-25 16:58:00,0 +8228,1965-05-08 03:41:00,0 +1275,1969-11-18 11:23:00,0 +7617,1968-12-22 05:05:00,0 +5251,1969-04-11 13:26:00,0 +359,1968-12-08 23:02:00,0 +6652,1967-04-02 14:15:00,0 +2636,1966-07-18 14:06:00,0 +6448,1968-05-25 18:26:00,0 +9846,1966-06-13 16:06:00,0 +3446,1965-10-06 12:23:00,0 +8546,1965-10-05 05:33:00,0 +7829,1966-05-07 02:16:00,0 +342,1965-06-28 02:36:00,0 +7400,1968-12-05 09:15:00,0 +8064,1966-09-22 08:04:00,0 +7374,1968-10-21 17:21:00,0 +5323,1969-11-26 02:01:00,0 +9695,1968-10-09 01:52:00,0 +2480,1965-10-22 20:19:00,0 +2666,1969-06-16 12:06:00,0 +5813,1969-09-07 04:10:00,0 +4951,1969-11-18 16:27:00,0 +2351,1966-01-10 15:55:00,0 +6288,1966-04-18 14:40:00,0 +6902,1968-08-03 15:12:00,0 +8269,1968-12-20 04:49:00,0 +8434,1968-01-08 07:37:00,0 +8795,1968-06-27 00:49:00,0 +1793,1967-10-13 23:29:00,0 +3403,1969-09-04 05:38:00,0 +7605,1967-12-30 11:51:00,0 +5162,1966-03-14 09:59:00,0 +8770,1969-06-04 15:29:00,0 +505,1966-06-06 18:05:00,0 +4512,1965-07-21 10:35:00,0 +9143,1969-04-29 07:17:00,0 +7156,1968-12-21 11:48:00,0 +5283,1965-01-04 09:52:00,0 +8897,1966-08-24 11:09:00,0 +8035,1968-12-06 15:11:00,0 +8346,1969-08-12 16:38:00,0 +1774,1965-10-07 06:02:00,0 +3677,1965-03-04 02:22:00,0 +3214,1969-06-05 03:21:00,0 +4084,1968-07-09 12:54:00,0 +7725,1966-05-19 22:58:00,0 +5791,1965-12-31 04:25:00,0 +8307,1966-10-02 17:39:00,0 +8190,1965-03-25 19:56:00,0 +764,1965-01-20 10:09:00,0 +7948,1965-03-27 15:04:00,0 +3835,1966-06-24 12:18:00,0 +5299,1967-07-30 02:58:00,0 +8389,1969-12-20 05:39:00,0 +6314,1966-07-09 01:05:00,0 +3297,1967-01-08 10:28:00,0 +3823,1965-08-12 17:13:00,0 +9462,1969-02-14 16:31:00,0 +2302,1969-04-04 08:06:00,0 +8964,1965-04-23 18:52:00,0 +8906,1968-06-06 22:45:00,0 +725,1967-09-15 00:38:00,0 +3873,1969-10-09 00:00:00,0 +8851,1966-06-09 12:40:00,0 +6712,1968-06-07 14:57:00,0 +7069,1965-01-13 15:00:00,0 +8277,1965-09-18 16:15:00,0 +3418,1968-10-25 11:52:00,0 +1691,1965-02-01 02:55:00,0 +6747,1968-09-30 15:55:00,0 +4399,1965-01-20 10:45:00,0 +945,1966-04-06 00:42:00,0 +5328,1968-03-16 14:21:00,0 +7977,1966-02-17 19:08:00,0 +581,1966-02-18 00:02:00,0 +6220,1965-12-23 10:29:00,0 +6535,1967-05-11 23:13:00,0 +6850,1965-07-07 03:27:00,0 +1168,1969-07-19 23:25:00,0 +4256,1966-01-05 03:44:00,0 +5836,1966-05-31 10:52:00,0 +9282,1969-06-23 15:43:00,0 +5990,1965-05-13 16:07:00,0 +8888,1968-01-12 05:31:00,0 +2974,1966-02-02 02:52:00,0 +412,1967-06-16 09:42:00,0 +5696,1965-04-02 02:11:00,0 +1606,1967-12-01 01:35:00,0 +6184,1967-01-21 22:58:00,0 +710,1966-01-29 13:40:00,0 +1658,1966-12-06 02:09:00,0 +4079,1968-10-13 16:17:00,0 +8998,1965-11-19 05:21:00,0 +5365,1968-09-04 05:37:00,0 +5769,1969-08-15 12:58:00,0 +9917,1968-12-27 01:21:00,0 +6638,1968-08-14 02:12:00,0 +3491,1967-03-30 19:28:00,0 +6454,1965-03-17 06:11:00,0 +6661,1966-04-21 00:45:00,0 +7576,1968-10-17 19:02:00,0 +4928,1966-10-12 22:29:00,0 +6747,1969-06-09 02:51:00,0 +9146,1969-10-20 12:26:00,0 +3141,1966-08-30 08:12:00,0 +79,1965-03-05 04:21:00,0 +1405,1967-04-04 12:29:00,0 +1283,1965-09-29 15:35:00,0 +2069,1968-06-08 05:18:00,0 +5602,1965-01-12 16:31:00,0 +8175,1967-05-13 02:26:00,0 +7092,1966-07-10 00:45:00,0 +7448,1965-01-07 06:25:00,0 +3188,1968-03-19 15:24:00,0 +9668,1967-01-21 20:42:00,0 +8235,1965-03-22 01:08:00,0 +5837,1967-11-19 10:58:00,0 +9996,1966-10-17 23:31:00,0 +8523,1969-09-29 21:32:00,0 +9274,1969-07-25 11:15:00,0 +6122,1966-09-12 05:20:00,0 +4921,1967-07-24 00:00:00,0 +5161,1969-06-23 02:15:00,0 +4515,1967-12-08 23:25:00,0 +4715,1969-09-01 18:12:00,0 +7587,1968-03-01 18:15:00,0 +1964,1969-06-11 10:31:00,0 +7885,1965-02-26 01:44:00,0 +5128,1969-03-16 04:41:00,0 +5048,1969-11-05 19:43:00,0 +7434,1966-02-23 12:34:00,0 +7700,1967-09-23 13:55:00,0 +4500,1965-07-09 05:18:00,0 +8220,1965-10-21 07:14:00,0 +5574,1967-05-21 01:40:00,0 +1835,1968-01-17 02:52:00,0 +7691,1966-07-07 13:08:00,0 +8065,1969-08-11 01:44:00,0 +5857,1965-03-23 07:32:00,0 +2896,1965-07-01 19:24:00,0 +3354,1966-04-14 01:53:00,0 +8319,1967-01-19 14:25:00,0 +7995,1967-11-08 15:33:00,0 +3231,1968-07-12 06:39:00,0 +3385,1965-11-08 02:42:00,0 +9766,1969-12-21 23:53:00,0 +2322,1969-05-10 19:14:00,0 +8462,1968-02-18 05:53:00,0 +6514,1969-09-06 09:49:00,0 +2072,1968-06-04 19:09:00,0 +1590,1968-12-01 11:27:00,0 +1507,1969-10-27 00:32:00,0 +2407,1967-11-01 19:53:00,0 +4552,1967-05-19 16:39:00,0 +983,1966-11-04 07:54:00,0 +9162,1966-08-06 15:16:00,0 +9219,1965-07-02 20:21:00,0 +3829,1966-09-24 12:56:00,0 +7171,1966-12-16 21:41:00,0 +8215,1968-08-05 11:48:00,0 +8612,1969-07-07 21:31:00,0 +3693,1965-05-06 02:00:00,0 +6517,1969-07-29 00:13:00,0 +7066,1968-12-17 04:28:00,0 +7053,1966-01-03 09:59:00,0 +3314,1969-01-12 01:10:00,0 +8503,1965-10-30 07:05:00,0 +8941,1966-06-21 18:45:00,0 +781,1965-07-06 09:50:00,0 +7938,1966-03-23 11:47:00,0 +9785,1968-06-29 09:48:00,0 +9169,1965-06-11 21:11:00,0 +7951,1969-07-11 12:30:00,0 +1027,1969-05-09 12:14:00,0 +9319,1968-05-31 19:43:00,0 +4868,1969-06-29 18:03:00,0 +4537,1966-04-04 03:31:00,0 +4448,1966-08-16 07:04:00,0 +7427,1969-01-28 21:56:00,0 +1943,1965-12-29 18:56:00,0 +7911,1969-05-16 06:40:00,0 +5800,1966-04-25 02:18:00,0 +7565,1966-06-12 23:22:00,0 +7946,1966-03-17 14:01:00,0 +5381,1965-04-02 05:52:00,0 +5993,1967-02-25 00:45:00,0 +8057,1965-05-16 08:40:00,0 +5019,1968-01-20 13:16:00,0 +8650,1966-08-13 14:14:00,0 +6388,1969-03-25 07:02:00,0 +9098,1969-08-24 02:49:00,0 +4053,1966-07-04 05:18:00,0 +5844,1965-04-27 00:37:00,0 +4568,1966-02-14 19:22:00,0 +1701,1968-05-10 12:41:00,0 +914,1966-08-02 16:43:00,0 +4632,1969-08-02 00:28:00,0 +9543,1968-05-01 12:42:00,0 +7977,1969-01-21 11:12:00,0 +3076,1965-05-17 16:11:00,0 +8032,1969-11-09 11:20:00,0 +5375,1969-01-04 09:35:00,0 +706,1967-04-14 13:37:00,0 +2123,1968-11-07 22:47:00,0 +7383,1966-10-15 17:39:00,0 +7241,1967-06-30 02:05:00,0 +6845,1965-07-15 06:50:00,0 +2284,1969-05-05 00:28:00,0 +2895,1967-04-25 13:23:00,0 +6628,1966-10-16 20:15:00,0 +4290,1969-04-09 01:57:00,0 +2698,1968-01-20 05:53:00,0 +3968,1965-09-22 09:11:00,0 +9474,1967-04-01 14:35:00,0 +8355,1967-11-11 13:21:00,0 +4452,1965-04-04 10:28:00,0 +2368,1968-11-28 23:08:00,0 +2429,1966-11-08 20:11:00,0 +2231,1965-07-13 05:32:00,0 +5808,1969-08-30 20:18:00,0 +9573,1967-10-01 02:38:00,0 +147,1965-08-10 19:43:00,0 +394,1968-03-28 23:21:00,0 +2346,1969-04-28 09:35:00,0 +8764,1966-04-28 04:03:00,0 +6598,1969-04-27 15:13:00,0 +2796,1969-05-25 11:33:00,0 +7144,1966-09-29 15:08:00,0 +1290,1965-06-04 03:19:00,0 +4125,1968-06-02 09:47:00,0 +9377,1967-09-29 10:26:00,0 +1737,1967-11-15 02:22:00,0 +263,1965-09-18 13:37:00,0 +4365,1969-03-23 12:42:00,0 +5105,1969-01-14 22:56:00,0 +6386,1968-04-03 19:52:00,0 +4155,1967-12-21 18:09:00,0 +3148,1965-06-30 00:28:00,0 +2724,1968-03-03 00:17:00,0 +8953,1969-12-30 11:59:00,0 +73,1969-02-01 23:07:00,0 +5442,1967-06-09 09:19:00,0 +4174,1968-08-12 17:11:00,0 +8667,1965-05-06 12:44:00,0 +5485,1969-10-11 00:58:00,0 +4314,1965-06-06 20:44:00,0 +780,1966-08-02 11:25:00,0 +9986,1968-05-21 13:08:00,0 +6017,1967-05-30 22:16:00,0 +9783,1966-04-12 02:15:00,0 +9983,1966-05-28 11:04:00,0 +6443,1969-03-19 13:10:00,0 +2162,1966-07-11 03:08:00,0 +1212,1969-04-08 18:31:00,0 +5822,1968-02-04 03:46:00,0 +5001,1968-11-13 16:19:00,0 +1336,1967-11-16 19:13:00,0 +9419,1967-10-19 13:22:00,0 +827,1965-03-12 03:00:00,0 +9540,1967-09-18 17:32:00,0 +9381,1969-08-03 19:49:00,0 +8007,1965-07-26 09:31:00,0 +2460,1969-02-24 20:33:00,0 +4669,1966-06-23 10:48:00,0 +2164,1966-12-29 18:16:00,0 +8036,1969-10-10 23:33:00,0 +8558,1968-05-30 23:49:00,0 +7228,1966-07-06 06:07:00,0 +9679,1969-07-31 18:34:00,0 +2569,1967-03-02 09:18:00,0 +9008,1965-05-30 14:03:00,0 +962,1966-07-24 02:00:00,0 +1751,1965-07-19 03:21:00,0 +1298,1969-08-28 13:12:00,0 +7286,1965-01-21 21:12:00,0 +6668,1967-09-28 08:39:00,0 +3143,1969-08-24 23:50:00,0 +1188,1969-06-06 17:59:00,0 +1350,1969-11-22 16:42:00,0 +7701,1966-05-07 06:25:00,0 +7233,1967-01-12 17:06:00,0 +4639,1968-04-20 01:36:00,0 +4849,1968-09-13 12:07:00,0 +793,1967-10-27 20:54:00,0 +8960,1966-08-15 04:25:00,0 +4381,1966-08-26 22:33:00,0 +7546,1966-03-09 20:46:00,0 +3554,1969-11-26 01:23:00,0 +8675,1966-09-23 06:22:00,0 +5343,1967-03-30 13:34:00,0 +8555,1967-06-06 03:37:00,0 +844,1966-11-28 14:22:00,0 +6316,1969-04-05 21:27:00,0 +1791,1967-09-30 04:20:00,0 +1898,1966-01-24 17:42:00,0 +7319,1969-09-24 02:54:00,0 +8427,1969-07-19 22:35:00,0 +8181,1965-03-26 07:04:00,0 +8896,1966-08-02 12:57:00,0 +937,1969-05-21 14:16:00,0 +8764,1966-10-04 19:59:00,0 +2315,1965-10-13 02:24:00,0 +3380,1965-05-12 21:24:00,0 +3159,1966-06-01 05:01:00,0 +964,1969-01-14 14:39:00,0 +2915,1965-02-15 00:30:00,0 +4115,1966-03-09 01:52:00,0 +4253,1965-07-08 01:20:00,0 +6896,1965-04-07 09:46:00,0 +5500,1967-02-08 22:37:00,0 +8334,1969-03-15 06:33:00,0 +177,1965-02-11 09:58:00,0 +8724,1968-03-31 15:56:00,0 +7100,1969-10-25 23:33:00,0 +1898,1969-06-13 14:27:00,0 +4420,1967-03-02 03:44:00,0 +4308,1965-10-22 22:18:00,0 +4387,1969-07-27 23:01:00,0 +7256,1967-10-10 05:21:00,0 +7630,1965-09-26 07:28:00,0 +8145,1968-09-13 02:07:00,0 +5838,1969-10-15 00:15:00,0 +9410,1969-12-25 06:50:00,0 +1945,1968-09-05 10:02:00,0 +1677,1965-04-02 15:45:00,0 +3845,1969-08-02 21:58:00,0 +1548,1968-03-19 05:46:00,0 +5962,1969-12-06 01:02:00,0 +6822,1966-09-07 00:12:00,0 +6147,1966-06-23 17:33:00,0 +3846,1965-12-23 04:13:00,0 +3404,1966-05-24 07:39:00,0 +1054,1966-11-05 17:29:00,0 +7891,1966-05-16 00:41:00,0 +7918,1965-07-26 15:33:00,0 +4404,1968-09-05 20:52:00,0 +2470,1966-05-12 12:52:00,0 +266,1967-02-20 21:50:00,0 +839,1967-01-29 18:48:00,0 +3395,1967-04-23 08:34:00,0 +7094,1968-10-10 05:35:00,0 +519,1966-09-30 14:54:00,0 +8407,1965-06-17 23:58:00,0 +150,1969-12-28 19:29:00,0 +4982,1968-08-02 15:51:00,0 +7182,1969-09-13 00:43:00,0 +2662,1968-04-04 12:52:00,0 +1421,1968-10-28 08:30:00,0 +8935,1965-05-03 19:05:00,0 +9958,1969-12-31 00:52:00,0 +7871,1965-08-25 18:25:00,0 +6211,1967-03-09 12:23:00,0 +7113,1968-07-24 13:35:00,0 +6245,1969-02-27 22:45:00,0 +2097,1965-05-04 18:00:00,0 +2237,1968-04-23 01:54:00,0 +4928,1965-11-22 07:29:00,0 +6596,1969-11-02 13:34:00,0 +4328,1965-06-16 23:14:00,0 +3007,1966-09-06 18:46:00,0 +6451,1965-09-22 15:28:00,0 +1807,1968-10-21 05:59:00,0 +9256,1969-07-20 17:51:00,0 +3535,1965-12-16 19:06:00,0 +6332,1967-05-20 09:59:00,0 +7962,1966-03-24 10:30:00,0 +7191,1967-03-01 21:09:00,0 +7960,1966-12-29 13:48:00,0 +5729,1968-05-27 03:15:00,0 +3312,1967-09-18 20:25:00,0 +7150,1966-06-30 10:40:00,0 +4625,1968-10-04 21:06:00,0 +2067,1967-03-29 22:19:00,0 +2255,1965-05-23 05:41:00,0 +4550,1968-02-29 03:01:00,0 +4747,1966-01-22 01:48:00,0 +4602,1969-06-04 22:19:00,0 +7463,1966-09-23 17:58:00,0 +2850,1966-03-14 16:00:00,0 +7654,1968-02-09 05:26:00,0 +404,1966-07-09 01:19:00,0 +7438,1968-10-15 05:59:00,0 +5879,1965-02-01 03:43:00,0 +4197,1969-10-08 10:14:00,0 +4757,1966-10-04 19:54:00,0 +3998,1966-01-07 19:36:00,0 +6878,1965-11-25 01:04:00,0 +8147,1969-06-14 20:06:00,0 +8221,1969-06-06 03:58:00,0 +2996,1969-08-26 21:51:00,0 +9892,1968-01-12 00:05:00,0 +7507,1969-05-09 12:15:00,0 +7196,1965-04-11 18:45:00,0 +135,1967-06-17 00:41:00,0 +9665,1968-02-28 07:59:00,0 +1276,1968-05-27 18:15:00,0 +7756,1966-11-26 23:41:00,0 +8395,1966-09-02 07:12:00,0 +9086,1965-05-29 13:17:00,0 +2418,1967-10-25 23:16:00,0 +9967,1966-07-06 09:28:00,0 +5577,1967-06-13 17:05:00,0 +3465,1967-07-11 20:49:00,0 +4319,1967-12-10 01:43:00,0 +3744,1969-08-11 13:24:00,0 +2855,1968-08-31 17:56:00,0 +1255,1967-05-13 19:52:00,0 +4357,1969-07-14 01:15:00,0 +914,1967-11-06 17:37:00,0 +6645,1969-05-12 18:47:00,0 +588,1968-05-23 17:21:00,0 +1373,1966-08-22 22:08:00,0 +64,1967-06-13 08:19:00,0 +4109,1966-01-28 13:55:00,0 +9966,1965-04-25 21:43:00,0 +3845,1965-06-18 01:29:00,0 +8291,1967-03-12 23:40:00,0 +9905,1965-06-16 12:45:00,0 +3883,1968-09-13 18:20:00,0 +7233,1968-03-07 05:14:00,0 +667,1968-08-05 03:27:00,0 +6693,1968-09-14 15:47:00,0 +8294,1965-12-16 11:11:00,0 +9041,1966-01-31 08:32:00,0 +489,1966-06-28 02:09:00,0 +976,1969-10-09 17:17:00,0 +6118,1965-03-27 23:34:00,0 +4209,1966-09-25 08:25:00,0 +6227,1965-07-12 06:39:00,0 +5042,1965-10-09 06:44:00,0 +6075,1969-07-16 04:07:00,0 +1286,1967-10-20 14:34:00,0 +4714,1968-06-02 15:14:00,0 +4405,1968-07-23 23:45:00,0 +1667,1969-03-14 09:45:00,0 +6791,1968-01-30 10:53:00,0 +5347,1966-07-10 05:19:00,0 +7848,1969-01-19 01:12:00,0 +4496,1967-06-10 12:19:00,0 +9609,1968-07-14 20:09:00,0 +5423,1966-10-16 02:31:00,0 +6155,1968-10-06 22:28:00,0 +8248,1969-09-29 05:56:00,0 +1293,1966-07-25 22:57:00,0 +6548,1966-10-12 10:57:00,0 +3376,1965-12-07 23:52:00,0 +2261,1967-04-27 13:14:00,0 +4356,1967-10-15 04:29:00,0 +339,1966-06-27 01:39:00,0 +4572,1967-11-20 08:05:00,0 +1327,1967-11-02 22:11:00,0 +6561,1968-01-17 11:39:00,0 +3201,1967-04-23 08:35:00,0 +4226,1965-11-21 00:51:00,0 +1619,1967-09-25 21:07:00,0 +312,1966-06-21 23:08:00,0 +894,1965-05-13 12:55:00,0 +7549,1966-05-02 15:46:00,0 +7590,1965-01-25 12:55:00,0 +6075,1968-04-02 02:40:00,0 +1516,1965-01-20 21:23:00,0 +8667,1965-06-30 01:44:00,0 +2290,1965-03-20 13:08:00,0 +7945,1966-06-16 05:25:00,0 +7993,1965-02-11 13:39:00,0 +9130,1965-03-05 22:23:00,0 +7307,1965-09-05 01:57:00,0 +521,1966-07-26 11:44:00,0 +1981,1968-01-29 12:03:00,0 +6950,1966-03-14 00:55:00,0 +334,1966-08-18 23:46:00,0 +7013,1966-10-01 08:44:00,0 +1644,1968-09-06 18:37:00,0 +8396,1965-07-10 05:14:00,0 +2043,1968-12-31 04:02:00,0 +6020,1967-12-23 18:06:00,0 +9909,1968-12-24 20:43:00,0 +1455,1967-03-05 18:20:00,0 +8502,1967-06-25 04:24:00,0 +785,1966-03-22 02:40:00,0 +4675,1965-09-06 11:27:00,0 +7576,1967-07-15 17:26:00,0 +2771,1969-06-12 23:29:00,0 +4107,1969-01-13 11:28:00,0 +9421,1967-11-25 17:08:00,0 +2736,1966-04-28 22:55:00,0 +8940,1965-10-06 08:18:00,0 +6844,1967-01-05 21:50:00,0 +5195,1968-11-21 19:15:00,0 +3418,1966-03-26 07:52:00,0 +5240,1965-04-05 16:58:00,0 +4519,1966-10-03 22:37:00,0 +3389,1969-01-21 00:45:00,0 +1416,1967-03-12 15:49:00,0 +3046,1967-08-29 04:40:00,0 +7796,1969-04-26 02:42:00,0 +9462,1965-12-08 17:20:00,0 +1757,1969-04-14 13:42:00,0 +3206,1965-08-05 07:06:00,0 +3746,1969-10-13 01:02:00,0 +6259,1965-12-17 15:40:00,0 +5413,1965-01-03 04:59:00,0 +6421,1968-11-27 05:04:00,0 +5583,1965-09-22 17:21:00,0 +8358,1966-07-14 21:02:00,0 +3794,1969-01-11 04:09:00,0 +7231,1969-02-11 03:26:00,0 +4165,1969-12-08 14:21:00,0 +707,1967-10-03 20:32:00,0 +4562,1969-01-30 07:52:00,0 +623,1967-05-17 18:14:00,0 +8111,1965-05-21 21:53:00,0 +8532,1968-01-06 22:34:00,0 +758,1969-12-19 00:26:00,0 +2622,1965-07-08 12:24:00,0 +6138,1968-04-04 20:39:00,0 +6607,1968-03-02 17:01:00,0 +8875,1967-09-01 07:31:00,0 +1998,1965-05-09 23:01:00,0 +4790,1969-01-16 21:55:00,0 +2459,1969-09-30 07:22:00,0 +26,1969-03-09 05:49:00,0 +7678,1967-10-28 23:15:00,0 +8156,1966-01-17 15:18:00,0 +2728,1966-12-07 13:02:00,0 +7734,1965-01-25 12:51:00,0 +7984,1966-04-13 10:48:00,0 +1384,1969-11-24 17:49:00,0 +8481,1965-09-29 10:41:00,0 +331,1969-04-04 06:33:00,0 +871,1968-09-15 10:34:00,0 +8279,1965-12-09 20:17:00,0 +4018,1968-03-19 22:04:00,0 +7446,1968-03-11 14:56:00,0 +308,1969-09-29 14:15:00,0 +5447,1969-02-24 05:10:00,0 +4275,1966-04-15 19:36:00,0 +6602,1966-08-18 14:17:00,0 +1221,1965-10-09 05:17:00,0 +1040,1969-11-19 16:24:00,0 +4965,1967-08-04 23:58:00,0 +8730,1965-04-27 09:10:00,0 +3860,1966-03-13 10:37:00,0 +7365,1965-04-13 12:32:00,0 +1722,1969-01-14 07:58:00,0 +9861,1967-07-08 20:15:00,0 +9839,1965-09-14 17:12:00,0 +8253,1965-01-12 06:22:00,0 +1255,1965-09-07 18:54:00,0 +727,1969-01-12 09:05:00,0 +3439,1966-05-31 09:24:00,0 +6992,1966-08-17 11:54:00,0 +3467,1969-05-04 06:02:00,0 +5150,1969-09-16 18:54:00,0 +2103,1968-05-02 10:29:00,0 +6916,1968-07-03 14:46:00,0 +7544,1967-02-13 05:46:00,0 +1347,1966-07-25 12:40:00,0 +2985,1968-12-20 08:06:00,0 +9137,1968-06-04 03:32:00,0 +1547,1968-10-01 05:27:00,0 +1057,1968-09-26 03:28:00,0 +7826,1969-05-10 04:58:00,0 +2124,1967-05-31 16:12:00,0 +2870,1967-09-23 15:45:00,0 +6501,1968-09-02 03:34:00,0 +6166,1967-11-28 19:49:00,0 +947,1969-04-22 19:32:00,0 +2147,1965-03-26 04:52:00,0 +8256,1968-09-25 06:41:00,0 +4176,1966-06-13 07:28:00,0 +6234,1966-01-02 16:17:00,0 +1808,1968-08-16 12:50:00,0 +4810,1967-07-24 16:43:00,0 +7716,1966-12-14 08:19:00,0 +8736,1969-07-14 20:42:00,0 +2633,1968-08-08 17:08:00,0 +3026,1969-03-19 12:31:00,0 +307,1967-06-20 11:39:00,0 +1498,1967-02-24 06:19:00,0 +8567,1968-07-02 10:58:00,0 +653,1967-01-13 18:34:00,0 +3292,1969-11-25 13:53:00,0 +7741,1965-05-23 05:03:00,0 +3818,1967-01-12 10:48:00,0 +7956,1965-10-27 01:05:00,0 +7432,1966-06-14 11:40:00,0 +7398,1966-12-03 02:39:00,0 +4698,1965-07-25 21:07:00,0 +3403,1966-03-01 23:01:00,0 +8366,1969-04-29 06:28:00,0 +831,1967-03-28 20:23:00,0 +714,1967-12-08 06:48:00,0 +3468,1966-09-05 09:41:00,0 +5234,1965-01-10 16:44:00,0 +9311,1968-05-17 22:48:00,0 +6624,1969-06-04 22:00:00,0 +1326,1967-12-03 18:57:00,0 +279,1969-11-12 22:58:00,0 +1967,1965-08-12 02:00:00,0 +4748,1965-03-19 15:50:00,0 +3541,1965-10-27 17:16:00,0 +6612,1969-10-18 23:19:00,0 +2398,1965-01-05 22:30:00,0 +1791,1967-07-13 16:52:00,0 +9196,1969-01-11 23:33:00,0 +1679,1965-12-13 18:27:00,0 +748,1965-12-04 10:13:00,0 +3343,1969-05-01 11:34:00,0 +3036,1968-02-14 12:44:00,0 +6927,1968-03-25 18:41:00,0 +5607,1967-03-10 07:51:00,0 +2896,1969-07-05 11:21:00,0 +1110,1967-08-09 01:47:00,0 +6000,1967-02-14 07:30:00,0 +2941,1966-09-30 15:32:00,0 +7665,1965-05-04 18:58:00,0 +910,1969-11-24 22:04:00,0 +3178,1969-11-04 06:32:00,0 +2196,1967-06-07 15:41:00,0 +1880,1968-08-10 07:29:00,0 +5101,1968-03-13 02:18:00,0 +8562,1966-10-24 19:33:00,0 +3050,1968-11-27 17:19:00,0 +2915,1967-07-08 21:57:00,0 +2753,1968-02-05 23:03:00,0 +9713,1965-09-03 10:09:00,0 +1179,1969-11-23 06:12:00,0 +5053,1965-05-06 13:58:00,0 +8939,1968-11-14 18:40:00,0 +7723,1968-12-19 13:49:00,0 +123,1966-07-07 17:03:00,0 +6201,1966-04-18 12:50:00,0 +2200,1967-12-10 00:23:00,0 +3403,1968-06-02 14:14:00,0 +1329,1968-10-15 16:05:00,0 +2034,1965-01-08 19:48:00,0 +3614,1967-06-07 12:51:00,0 +8224,1967-06-04 09:12:00,0 +8731,1965-08-01 22:54:00,0 +7352,1966-01-15 20:58:00,0 +9544,1965-09-08 10:51:00,0 +6332,1967-05-09 06:34:00,0 +2707,1969-03-19 13:40:00,0 +1867,1969-06-26 04:35:00,0 +8980,1969-11-05 23:43:00,0 +9892,1966-02-06 08:54:00,0 +7558,1966-10-05 19:03:00,0 +2982,1965-10-28 06:19:00,0 +6799,1967-03-28 17:21:00,0 +2524,1965-12-22 16:34:00,0 +6289,1968-03-08 16:33:00,0 +8537,1965-08-02 00:52:00,0 +6743,1967-11-02 10:06:00,0 +6823,1968-09-19 05:45:00,0 +6911,1969-01-23 08:25:00,0 +7601,1966-06-30 12:12:00,0 +1672,1967-12-27 17:23:00,0 +1330,1967-05-06 13:18:00,0 +7156,1966-12-12 05:00:00,0 +8943,1966-10-16 07:13:00,0 +8829,1965-12-08 12:41:00,0 +9021,1967-09-12 16:57:00,0 +8919,1965-07-07 14:35:00,0 +5826,1969-06-07 07:41:00,0 +5174,1969-04-22 02:46:00,0 +4528,1966-02-09 17:16:00,0 +631,1967-05-07 12:46:00,0 +6797,1965-01-29 04:30:00,0 +2434,1967-08-03 22:41:00,0 +1711,1969-06-04 21:36:00,0 +9976,1969-04-30 17:41:00,0 +9470,1969-01-13 00:14:00,0 +6882,1969-08-15 09:24:00,0 +5728,1968-05-31 21:16:00,0 +2170,1967-01-16 02:49:00,0 +3981,1968-10-31 12:02:00,0 +9032,1969-03-18 06:48:00,0 +7554,1967-11-01 22:51:00,0 +9445,1965-02-22 17:54:00,0 +9651,1969-08-08 14:46:00,0 +1243,1969-08-12 21:03:00,0 +9106,1967-10-19 15:38:00,0 +6802,1968-08-26 22:43:00,0 +3041,1966-04-29 08:47:00,0 +2238,1966-08-30 01:04:00,0 +343,1966-07-05 13:11:00,0 +1390,1966-10-19 22:57:00,0 +1744,1969-01-03 21:07:00,0 +2470,1968-12-16 07:14:00,0 +4922,1967-04-29 21:38:00,0 +1328,1967-11-21 06:46:00,0 +6606,1966-09-13 06:46:00,0 +2483,1966-06-18 12:04:00,0 +5929,1968-07-29 23:22:00,0 +5619,1965-05-12 00:59:00,0 +6977,1968-04-09 10:26:00,0 +5123,1969-03-19 12:43:00,0 +9737,1969-02-02 17:18:00,0 +2891,1966-05-07 16:40:00,0 +3974,1968-09-09 18:30:00,0 +3682,1968-04-22 04:40:00,0 +1678,1966-03-25 07:41:00,0 +4831,1968-11-04 13:23:00,0 +2726,1966-03-29 22:43:00,0 +445,1966-03-03 17:02:00,0 +8749,1967-01-11 12:43:00,0 +8045,1965-12-30 04:25:00,0 +6942,1967-07-04 19:57:00,0 +5350,1968-07-21 16:51:00,0 +1698,1969-03-17 01:31:00,0 +1960,1967-06-21 19:01:00,0 +7351,1969-06-13 15:51:00,0 +5936,1965-10-14 02:49:00,0 +6296,1965-03-17 09:21:00,0 +3257,1966-02-17 05:48:00,0 +173,1968-05-13 17:05:00,0 +654,1965-08-31 19:35:00,0 +6153,1967-03-10 23:07:00,0 +8879,1969-04-17 22:54:00,0 +4134,1969-09-20 11:55:00,0 +1882,1968-11-15 01:10:00,0 +1377,1967-01-31 16:22:00,0 +5402,1968-02-18 23:43:00,0 +858,1968-10-09 00:28:00,0 +9274,1965-10-16 21:31:00,0 +7915,1968-01-11 12:30:00,0 +1594,1966-09-17 21:48:00,0 +4992,1968-09-29 01:05:00,0 +7444,1968-03-04 02:58:00,0 +9194,1969-07-15 07:48:00,0 +2439,1967-12-07 10:42:00,0 +9711,1966-01-03 10:18:00,0 +6076,1969-11-07 13:15:00,0 +1301,1965-08-20 19:35:00,0 +1085,1968-08-18 17:35:00,0 +457,1967-04-01 10:24:00,0 +201,1966-10-11 00:53:00,0 +943,1967-08-11 20:25:00,0 +2065,1968-05-06 21:41:00,0 +5882,1966-11-07 19:16:00,0 +1984,1968-11-13 19:44:00,0 +5771,1968-11-08 23:56:00,0 +2724,1966-09-08 11:43:00,0 +5852,1967-05-19 10:48:00,0 +4246,1967-11-10 22:23:00,0 +6452,1969-07-05 10:42:00,0 +2342,1968-09-16 05:44:00,0 +6306,1965-09-05 04:11:00,0 +1590,1966-07-30 22:56:00,0 +7128,1969-02-26 02:25:00,0 +1403,1967-06-16 21:20:00,0 +775,1969-10-25 00:03:00,0 +7398,1969-04-08 22:05:00,0 +8503,1966-12-26 11:09:00,0 +8141,1967-05-18 20:35:00,0 +2523,1969-02-07 05:48:00,0 +629,1968-04-06 10:52:00,0 +2755,1965-07-20 07:30:00,0 +2032,1967-01-31 22:06:00,0 +926,1969-09-03 11:16:00,0 +3804,1966-12-26 02:09:00,0 +7596,1968-07-09 10:51:00,0 +686,1969-04-26 10:08:00,0 +5984,1967-09-11 01:28:00,0 +4573,1966-08-16 20:25:00,0 +2138,1969-06-21 12:20:00,0 +5386,1966-08-14 21:19:00,0 +7996,1969-04-09 21:23:00,0 +704,1968-11-26 07:40:00,0 +2606,1966-12-21 20:31:00,0 +9745,1966-06-14 03:27:00,0 +6111,1966-06-30 23:10:00,0 +7187,1967-11-27 05:38:00,0 +7405,1966-03-02 18:59:00,0 +1120,1969-09-07 17:36:00,0 +3233,1967-01-19 13:34:00,0 +9764,1968-04-25 14:05:00,0 +227,1965-05-30 10:50:00,0 +1043,1966-02-22 18:24:00,0 +8269,1966-09-21 11:21:00,0 +8297,1965-06-28 02:49:00,0 +5182,1967-01-15 16:56:00,0 +5679,1967-06-16 19:14:00,0 +3920,1967-01-27 22:34:00,0 +2849,1969-07-30 09:57:00,0 +9138,1966-01-31 02:40:00,0 +384,1968-07-31 16:12:00,0 +7279,1967-11-13 09:50:00,0 +8640,1966-09-09 21:00:00,0 +2367,1969-08-25 20:48:00,0 +5343,1966-08-26 03:14:00,0 +9516,1966-05-29 05:23:00,0 +7947,1965-09-20 13:32:00,0 +1053,1967-09-06 07:28:00,0 +7343,1969-02-06 04:26:00,0 +3901,1965-06-25 10:10:00,0 +4603,1966-04-29 18:25:00,0 +3343,1969-07-17 12:30:00,0 +1366,1965-06-16 12:26:00,0 +4012,1968-05-27 11:51:00,0 +5046,1968-05-11 01:02:00,0 +4882,1968-05-24 13:32:00,0 +1557,1965-02-10 17:05:00,0 +1353,1965-03-22 00:30:00,0 +8139,1966-07-09 17:53:00,0 +7289,1968-09-07 19:46:00,0 +5740,1968-05-30 02:04:00,0 +6775,1969-01-24 03:28:00,0 +1419,1968-04-08 19:14:00,0 +9232,1965-11-07 19:47:00,0 +1644,1965-04-19 00:54:00,0 +2274,1967-03-06 06:18:00,0 +4377,1969-09-06 00:17:00,0 +2587,1966-06-02 00:43:00,0 +4234,1967-07-18 03:56:00,0 +8318,1966-10-17 06:04:00,0 +7466,1966-09-04 18:11:00,0 +5124,1967-10-15 05:51:00,0 +322,1965-07-23 10:04:00,0 +9992,1967-08-25 21:46:00,0 +7326,1968-08-31 23:10:00,0 +8201,1966-08-28 00:12:00,0 +741,1967-02-06 18:15:00,0 +7521,1969-07-14 15:01:00,0 +8392,1967-01-11 07:40:00,0 +3780,1966-09-06 20:22:00,0 +8246,1966-10-14 15:28:00,0 +9650,1965-11-01 13:33:00,0 +2747,1969-08-03 18:58:00,0 +7408,1968-11-03 02:00:00,0 +64,1965-07-13 15:21:00,0 +96,1968-07-18 08:19:00,0 +6003,1965-10-16 12:33:00,0 +6298,1967-08-27 01:11:00,0 +6924,1965-08-06 18:55:00,0 +7398,1966-11-06 00:05:00,0 +3328,1965-10-23 05:57:00,0 +2278,1969-11-19 02:38:00,0 +653,1967-03-22 14:23:00,0 +8158,1965-08-06 08:17:00,0 +1276,1966-12-17 00:51:00,0 +8464,1966-02-18 10:51:00,0 +8166,1966-09-26 22:18:00,0 +212,1966-11-03 10:36:00,0 +248,1968-03-31 05:18:00,0 +2639,1965-12-29 02:07:00,0 +323,1969-03-10 22:00:00,0 +8733,1968-11-25 13:54:00,0 +3797,1965-07-31 13:05:00,0 +9651,1965-06-19 00:19:00,0 +5077,1968-10-18 22:59:00,0 +3601,1966-06-28 11:35:00,0 +4840,1965-06-28 23:15:00,0 +8870,1965-03-18 11:07:00,0 +655,1966-10-10 19:06:00,0 +6920,1967-08-28 17:50:00,0 +4508,1965-11-22 12:05:00,0 +1039,1965-10-22 20:56:00,0 +8535,1967-07-06 05:07:00,0 +9384,1966-03-27 00:07:00,0 +5846,1965-05-06 21:57:00,0 +2091,1966-06-21 06:36:00,0 +5655,1965-10-14 08:33:00,0 +1431,1965-07-25 10:56:00,0 +7375,1967-12-02 21:43:00,0 +6273,1967-11-06 04:16:00,0 +7164,1968-10-14 00:14:00,0 +9671,1966-11-25 01:20:00,0 +9099,1968-02-14 01:49:00,0 +7654,1968-12-16 15:11:00,0 +5290,1968-02-13 04:11:00,0 +4458,1967-10-26 01:29:00,0 +3452,1966-04-10 01:44:00,0 +8406,1967-05-01 19:05:00,0 +8602,1966-07-19 20:43:00,0 +6280,1968-02-20 11:20:00,0 +8513,1965-03-07 03:26:00,0 +6180,1969-04-23 08:24:00,0 +615,1967-11-12 13:37:00,0 +8541,1969-10-29 08:10:00,0 +2254,1966-09-10 19:40:00,0 +5709,1967-02-06 18:44:00,0 +5262,1967-04-29 20:56:00,0 +5670,1967-03-28 13:01:00,0 +2328,1965-07-13 20:18:00,0 +3384,1969-12-04 09:25:00,0 +9149,1966-11-14 13:05:00,0 +2625,1969-01-22 21:26:00,0 +6538,1965-08-02 09:06:00,0 +2342,1967-01-26 06:50:00,0 +2255,1967-10-29 11:36:00,0 +962,1969-06-08 14:58:00,0 +4220,1968-05-21 03:54:00,0 +5109,1966-07-31 15:19:00,0 +4691,1968-03-03 15:14:00,0 +9549,1968-04-30 16:54:00,0 +8285,1965-04-02 11:22:00,0 +2297,1965-02-20 01:42:00,0 +8629,1969-06-01 19:47:00,0 +2727,1968-06-17 20:45:00,0 +1414,1965-01-16 11:00:00,0 +9003,1969-07-30 06:37:00,0 +7679,1965-08-21 13:16:00,0 +1847,1966-01-04 21:06:00,0 +4402,1967-11-12 04:20:00,0 +7581,1966-01-12 14:23:00,0 +4823,1965-03-14 22:28:00,0 +874,1969-04-15 17:58:00,0 +4915,1968-03-03 04:22:00,0 +4181,1966-09-29 19:00:00,0 +4974,1965-08-28 03:44:00,0 +2394,1965-02-23 14:12:00,0 +9445,1967-05-08 10:31:00,0 +7882,1968-08-11 15:18:00,0 +7563,1969-01-23 20:59:00,0 +5168,1968-09-01 10:16:00,0 +6007,1969-12-01 08:02:00,0 +8964,1966-11-08 22:06:00,0 +1376,1966-07-18 04:20:00,0 +7932,1968-05-02 21:51:00,0 +3483,1969-06-29 02:19:00,0 +9174,1967-10-02 02:16:00,0 +2011,1968-11-19 23:55:00,0 +7512,1968-03-16 23:35:00,0 +1134,1965-08-04 09:09:00,0 +1951,1968-09-23 04:41:00,0 +5688,1969-10-27 15:26:00,0 +1323,1968-01-25 20:37:00,0 +4716,1968-10-26 07:16:00,0 +1840,1968-07-10 10:42:00,0 +899,1969-08-21 13:08:00,0 +4955,1969-12-28 17:33:00,0 +3385,1968-11-23 20:03:00,0 +1635,1965-01-20 21:21:00,0 +9180,1967-10-23 19:45:00,0 +9029,1966-05-28 04:47:00,0 +6068,1968-03-08 04:19:00,0 +3965,1966-04-23 09:39:00,0 +4543,1969-11-03 15:56:00,0 +3445,1967-09-05 06:23:00,0 +2273,1969-05-20 03:54:00,0 +4231,1966-05-19 18:25:00,0 +3909,1969-01-27 07:32:00,0 +770,1969-12-23 04:31:00,0 +2119,1967-07-03 13:17:00,0 +6695,1967-11-19 01:02:00,0 +617,1969-10-02 13:28:00,0 +5196,1967-07-24 09:54:00,0 +190,1967-07-25 08:47:00,0 +6331,1966-10-20 12:13:00,0 +2549,1968-05-05 18:59:00,0 +4715,1965-07-02 20:03:00,0 +7317,1965-04-14 09:31:00,0 +9241,1967-12-15 18:50:00,0 +9964,1968-04-22 05:15:00,0 +9659,1969-05-01 06:59:00,0 +1965,1969-02-06 11:01:00,0 +6172,1966-03-22 23:25:00,0 +3564,1967-09-30 07:51:00,0 +5394,1969-09-06 08:18:00,0 +9477,1967-08-27 14:55:00,0 +2437,1968-04-12 13:35:00,0 +8870,1969-06-20 16:47:00,0 +9480,1967-08-23 00:12:00,0 +5499,1966-02-13 19:30:00,0 +1116,1969-11-14 09:55:00,0 +5799,1967-11-06 14:11:00,0 +8645,1965-06-19 09:02:00,0 +8525,1968-11-03 17:21:00,0 +4106,1966-01-20 18:30:00,0 +5653,1968-06-20 19:52:00,0 +232,1965-09-19 19:06:00,0 +3282,1966-03-05 14:18:00,0 +5082,1968-08-18 07:39:00,0 +9643,1969-05-04 14:31:00,0 +4508,1965-11-15 05:01:00,0 +7700,1967-03-29 13:31:00,0 +5598,1967-02-17 20:10:00,0 +3622,1965-07-13 22:17:00,0 +228,1966-01-30 00:11:00,0 +4096,1967-10-21 04:33:00,0 +6055,1965-02-14 17:23:00,0 +226,1966-07-11 07:01:00,0 +1218,1969-11-18 14:44:00,0 +6809,1968-05-14 03:55:00,0 +7889,1965-06-10 01:45:00,0 +579,1965-08-08 15:55:00,0 +5068,1965-11-14 08:18:00,0 +3879,1967-06-01 16:26:00,0 +5880,1969-01-25 05:15:00,0 +1159,1969-08-30 00:29:00,0 +4014,1966-03-09 21:03:00,0 +7889,1965-11-06 16:34:00,0 +9214,1966-05-24 20:01:00,0 +3329,1965-01-02 01:13:00,0 +5981,1968-12-28 21:06:00,0 +2936,1968-05-29 21:26:00,0 +9837,1967-11-25 13:56:00,0 +2527,1969-02-02 08:40:00,0 +8161,1968-09-27 07:07:00,0 +8979,1969-04-10 14:29:00,0 +4229,1965-02-14 23:38:00,0 +6010,1967-07-24 01:26:00,0 +5118,1965-01-16 21:00:00,0 +4316,1965-09-26 00:01:00,0 +6937,1968-09-24 00:21:00,0 +5678,1969-10-10 15:47:00,0 +7167,1965-10-24 20:58:00,0 +2413,1966-06-01 10:47:00,0 +7760,1969-09-17 04:45:00,0 +488,1968-08-30 15:22:00,0 +2503,1966-11-14 22:38:00,0 +9788,1969-11-19 22:10:00,0 +4868,1968-10-16 10:17:00,0 +3679,1965-03-01 15:27:00,0 +5005,1966-12-16 10:01:00,0 +6611,1966-06-30 22:43:00,0 +1993,1968-08-27 22:48:00,0 +9263,1969-03-27 01:20:00,0 +9108,1968-01-29 07:20:00,0 +3146,1966-11-08 04:01:00,0 +5406,1967-07-03 17:04:00,0 +1547,1967-01-09 02:38:00,0 +613,1968-06-24 03:17:00,0 +7353,1967-12-17 22:04:00,0 +1877,1966-11-13 23:49:00,0 +2693,1968-11-12 18:15:00,0 +6187,1966-08-07 09:11:00,0 +7891,1969-10-30 12:55:00,0 +2702,1969-07-22 13:31:00,0 +3713,1968-08-30 09:37:00,0 +4494,1966-09-04 07:24:00,0 +8009,1965-06-28 01:01:00,0 +7779,1968-03-03 07:21:00,0 +8212,1969-11-27 12:44:00,0 +6365,1967-05-24 00:10:00,0 +6719,1966-10-09 01:29:00,0 +9324,1966-07-16 21:41:00,0 +8113,1966-04-05 11:02:00,0 +4018,1965-10-09 02:17:00,0 +4729,1967-10-09 03:03:00,0 +1629,1969-11-05 07:05:00,0 +4503,1968-06-25 06:00:00,0 +1080,1968-02-28 23:25:00,0 +6119,1968-05-20 04:25:00,0 +4306,1969-06-30 19:30:00,0 +9106,1967-10-14 03:07:00,0 +2977,1969-11-16 07:11:00,0 +102,1967-09-10 04:59:00,0 +354,1969-07-12 02:02:00,0 +3933,1966-02-04 11:33:00,0 +8232,1967-04-20 20:13:00,0 +3987,1969-10-14 23:52:00,0 +9806,1965-11-02 00:59:00,0 +6168,1967-12-24 08:39:00,0 +4913,1968-09-25 09:28:00,0 +2160,1969-12-10 08:07:00,0 +9967,1969-09-22 18:52:00,0 +3995,1967-11-05 09:30:00,0 +3677,1968-08-28 18:14:00,0 +1717,1965-11-04 19:54:00,0 +2753,1967-08-27 21:54:00,0 +9236,1969-04-10 13:39:00,0 +9636,1966-12-06 20:07:00,0 +6556,1966-08-02 04:43:00,0 +7037,1965-03-29 17:22:00,0 +325,1968-02-17 12:45:00,0 +8799,1969-01-08 18:55:00,0 +5813,1965-01-09 22:29:00,0 +2272,1965-01-21 13:23:00,0 +6683,1966-11-06 03:13:00,0 +7826,1968-01-24 18:56:00,0 +6038,1966-09-02 00:33:00,0 +2572,1967-09-08 10:59:00,0 +3464,1965-01-04 21:52:00,0 +2945,1968-03-07 09:42:00,0 +616,1967-11-22 19:58:00,0 +7413,1966-02-19 05:32:00,0 +1584,1966-02-02 02:13:00,0 +3228,1965-11-22 19:36:00,0 +3923,1967-10-08 06:49:00,0 +6664,1967-11-24 14:56:00,0 +136,1965-06-21 13:28:00,0 +9098,1968-03-04 09:26:00,0 +8541,1966-11-18 10:37:00,0 +7483,1969-03-19 14:02:00,0 +6320,1969-01-19 07:45:00,0 +9156,1967-12-19 06:16:00,0 +5548,1965-10-07 20:02:00,0 +8136,1965-10-31 06:25:00,0 +9610,1965-03-13 14:15:00,0 +416,1965-05-17 01:33:00,0 +2565,1968-08-07 04:14:00,0 +2556,1968-02-02 10:29:00,0 +1630,1966-04-13 04:07:00,0 +2661,1966-11-24 06:05:00,0 +8927,1969-11-16 19:11:00,0 +4772,1966-12-05 16:39:00,0 +9836,1967-03-05 08:18:00,0 +38,1969-12-31 02:30:00,0 +9535,1968-07-16 05:58:00,0 +6682,1968-03-07 16:26:00,0 +6221,1969-06-09 21:43:00,0 +2947,1965-08-23 13:36:00,0 +7028,1969-02-05 08:29:00,0 +7156,1965-06-26 02:53:00,0 +9109,1967-05-08 13:17:00,0 +7138,1968-11-08 05:52:00,0 +3057,1968-09-30 17:29:00,0 +8405,1968-06-29 20:49:00,0 +7520,1966-10-01 22:19:00,0 +5078,1969-03-23 14:35:00,0 +107,1967-01-20 19:18:00,0 +762,1967-10-04 21:27:00,0 +8946,1967-06-16 07:03:00,0 +1791,1969-03-22 07:38:00,0 +1325,1969-09-03 22:38:00,0 +2629,1966-07-02 23:49:00,0 +1944,1968-02-23 09:53:00,0 +978,1965-05-19 21:34:00,0 +5574,1969-06-14 06:12:00,0 +6496,1969-11-23 09:34:00,0 +4763,1968-02-25 17:08:00,0 +7517,1965-01-30 19:34:00,0 +7201,1966-12-04 14:24:00,0 +9975,1968-08-03 04:30:00,0 +7497,1969-02-05 07:24:00,0 +8146,1965-12-20 08:32:00,0 +8055,1966-09-12 10:21:00,0 +4093,1968-08-24 01:13:00,0 +9567,1968-08-07 15:03:00,0 +4860,1966-02-06 03:54:00,0 +53,1965-03-12 16:06:00,0 +5523,1966-10-21 08:51:00,0 +9602,1967-09-15 06:20:00,0 +5090,1969-10-29 08:15:00,0 +9801,1966-07-26 20:06:00,0 +6631,1967-07-14 01:22:00,0 +7907,1966-04-20 18:00:00,0 +2377,1965-08-28 10:57:00,0 +8113,1965-03-13 06:49:00,0 +8997,1966-07-11 23:02:00,0 +7877,1966-04-28 17:13:00,0 +9149,1966-06-02 14:34:00,0 +8368,1967-07-13 09:26:00,0 +5809,1967-09-02 02:37:00,0 +6542,1969-12-05 09:42:00,0 +2363,1967-01-31 20:33:00,0 +3790,1966-02-24 15:53:00,0 +5808,1967-11-15 22:33:00,0 +5162,1965-06-05 13:55:00,0 +5813,1965-01-20 03:11:00,0 +2425,1969-02-08 04:58:00,0 +1566,1967-06-28 14:53:00,0 +1648,1968-07-18 14:21:00,0 +51,1967-03-27 00:23:00,0 +5905,1969-05-11 05:56:00,0 +8089,1967-02-15 18:36:00,0 +7603,1966-06-11 07:25:00,0 +1517,1969-02-05 03:58:00,0 +3177,1965-09-03 17:26:00,0 +1775,1967-06-18 21:26:00,0 +5752,1966-11-29 16:21:00,0 +9972,1967-05-06 17:25:00,0 +6426,1968-01-10 04:04:00,0 +938,1967-11-29 05:29:00,0 +8288,1966-11-07 09:08:00,0 +3491,1965-10-25 20:36:00,0 +4755,1966-03-24 19:38:00,0 +3138,1966-10-24 14:30:00,0 +6428,1967-04-05 10:47:00,0 +3015,1966-05-16 02:26:00,0 +8081,1968-02-05 20:10:00,0 +1237,1969-01-30 20:31:00,0 +4762,1968-11-09 07:42:00,0 +1063,1965-09-21 02:00:00,0 +1853,1969-05-04 00:26:00,0 +8857,1966-01-02 19:22:00,0 +2401,1966-10-12 12:38:00,0 +399,1966-09-06 09:10:00,0 +2351,1966-10-10 18:06:00,0 +9619,1966-01-28 19:23:00,0 +9098,1966-02-17 11:24:00,0 +8315,1968-11-11 09:13:00,0 +7918,1967-07-10 08:33:00,0 +7134,1969-03-06 07:43:00,0 +5230,1968-10-10 10:47:00,0 +9376,1969-08-12 19:39:00,0 +5731,1967-05-30 03:24:00,0 +7681,1965-08-23 10:30:00,0 +73,1966-04-02 12:01:00,0 +6797,1965-02-03 18:48:00,0 +3922,1967-09-23 05:06:00,0 +38,1965-08-06 13:18:00,0 +6825,1965-03-14 01:55:00,0 +9201,1969-09-06 03:54:00,0 +9394,1966-02-26 07:59:00,0 +6831,1966-04-01 07:21:00,0 +6952,1967-04-22 11:12:00,0 +1536,1966-11-27 11:52:00,0 +4239,1969-01-31 02:06:00,0 +3422,1966-07-21 13:15:00,0 +4250,1968-06-15 00:33:00,0 +3573,1966-12-23 17:50:00,0 +538,1967-07-21 05:58:00,0 +3503,1967-10-28 15:21:00,0 +2664,1965-01-26 21:43:00,0 +9155,1968-06-16 06:56:00,0 +6758,1966-04-22 23:51:00,0 +1012,1967-12-08 12:10:00,0 +8214,1969-10-05 07:26:00,0 +1011,1968-07-19 06:33:00,0 +7637,1967-10-27 04:17:00,0 +8871,1966-09-01 06:43:00,0 +1738,1965-02-23 05:33:00,0 +2775,1969-03-13 18:19:00,0 +3354,1969-03-31 16:55:00,0 +8913,1967-10-21 05:10:00,0 +4880,1965-10-13 17:30:00,0 +8390,1965-12-26 18:39:00,0 +1966,1966-07-31 02:40:00,0 +7787,1969-05-05 05:54:00,0 +2176,1965-11-26 17:08:00,0 +8116,1966-07-31 14:44:00,0 +8700,1967-01-17 16:11:00,0 +1598,1968-01-17 10:41:00,0 +7313,1966-01-14 19:33:00,0 +1360,1965-05-26 20:47:00,0 +5753,1969-11-14 00:35:00,0 +4090,1965-10-14 05:32:00,0 +601,1968-03-24 22:37:00,0 +8429,1969-07-22 03:09:00,0 +2261,1968-01-12 11:20:00,0 +1679,1969-05-18 00:21:00,0 +4456,1967-11-06 13:12:00,0 +4911,1967-05-03 14:54:00,0 +929,1967-03-20 02:48:00,0 +873,1969-10-16 16:51:00,0 +1192,1968-12-19 05:42:00,0 +8005,1968-07-28 06:19:00,0 +1714,1968-04-23 13:37:00,0 +8508,1967-03-26 08:46:00,0 +7881,1965-09-04 09:34:00,0 +4517,1969-01-30 14:47:00,0 +7202,1967-05-01 13:48:00,0 +1829,1967-12-28 07:03:00,0 +9158,1966-02-26 21:25:00,0 +8507,1967-12-12 23:52:00,0 +493,1969-04-15 06:54:00,0 +5358,1965-08-31 05:59:00,0 +6664,1969-09-28 23:10:00,0 +1131,1965-10-11 09:32:00,0 +4703,1968-07-19 08:26:00,0 +8204,1969-06-21 21:45:00,0 +1726,1965-03-19 00:26:00,0 +5122,1967-06-13 07:40:00,0 +4946,1969-01-21 10:10:00,0 +334,1966-10-04 16:47:00,0 +1478,1966-09-01 16:56:00,0 +3857,1969-03-08 10:41:00,0 +4294,1968-05-03 20:50:00,0 +5390,1966-10-30 02:28:00,0 +8493,1967-03-22 16:48:00,0 +1412,1967-09-06 16:28:00,0 +4485,1966-10-10 15:45:00,0 +2471,1968-05-07 15:28:00,0 +4314,1965-09-03 02:07:00,0 +1590,1966-08-14 13:01:00,0 +7056,1965-02-16 11:35:00,0 +140,1966-12-31 10:29:00,0 +2347,1967-07-24 06:44:00,0 +4195,1968-06-19 11:16:00,0 +8405,1968-04-29 20:28:00,0 +2490,1968-03-02 04:52:00,0 +8068,1965-01-25 10:50:00,0 +1686,1969-11-28 08:52:00,0 +5349,1967-10-05 17:06:00,0 +9299,1965-07-16 02:14:00,0 +1208,1966-10-02 17:04:00,0 +7514,1967-05-09 01:17:00,0 +7073,1966-03-31 04:34:00,0 +872,1966-10-15 08:16:00,0 +251,1969-09-17 23:23:00,0 +2068,1968-04-26 10:06:00,0 +3776,1966-09-27 15:44:00,0 +6735,1968-02-13 20:24:00,0 +5454,1965-03-01 04:51:00,0 +7235,1965-05-09 08:13:00,0 +2515,1966-12-19 04:48:00,0 +4160,1968-09-28 21:11:00,0 +3982,1967-07-14 23:36:00,0 +1846,1969-12-07 04:55:00,0 +9478,1968-12-18 17:26:00,0 +1430,1968-10-27 02:48:00,0 +1325,1965-04-21 22:19:00,0 +6150,1967-11-21 09:40:00,0 +7250,1968-06-28 09:58:00,0 +3117,1968-05-01 04:05:00,0 +8842,1966-02-06 08:41:00,0 +82,1966-06-17 15:06:00,0 +4350,1966-08-02 01:49:00,0 +2319,1966-01-03 16:31:00,0 +7998,1968-04-17 15:41:00,0 +3148,1967-07-19 19:17:00,0 +2360,1967-02-06 10:26:00,0 +8211,1965-09-19 23:46:00,0 +4634,1966-08-15 05:45:00,0 +8030,1965-12-16 12:50:00,0 +9623,1965-05-29 17:55:00,0 +8602,1965-03-01 11:44:00,0 +3364,1965-08-02 23:39:00,0 +7012,1966-02-01 02:24:00,0 +7567,1965-10-27 16:35:00,0 +3105,1966-08-27 13:10:00,0 +4667,1965-01-06 19:03:00,0 +6403,1968-09-04 09:06:00,0 +8777,1968-11-21 20:01:00,0 +1150,1966-03-19 03:41:00,0 +4836,1965-09-01 19:30:00,0 +1330,1966-02-03 11:42:00,0 +3141,1969-03-24 00:02:00,0 +9175,1968-01-04 10:19:00,0 +3141,1969-07-13 10:19:00,0 +3906,1965-05-29 00:53:00,0 +1180,1965-08-03 10:39:00,0 +7331,1969-02-08 12:49:00,0 +3943,1968-06-22 02:59:00,0 +7361,1967-11-23 14:12:00,0 +2970,1966-07-22 10:10:00,0 +6781,1966-05-06 07:44:00,0 +722,1967-08-28 17:10:00,0 +8577,1966-01-27 06:27:00,0 +2837,1966-05-04 11:22:00,0 +1171,1969-06-14 13:09:00,0 +7969,1969-07-04 20:53:00,0 +7836,1969-10-27 19:43:00,0 +6126,1965-06-20 03:51:00,0 +92,1966-03-16 14:37:00,0 +7047,1969-01-17 00:50:00,0 +9070,1968-01-20 10:52:00,0 +604,1966-08-06 21:14:00,0 +6022,1968-03-30 10:05:00,0 +1464,1967-07-04 06:43:00,0 +7848,1969-07-07 09:45:00,0 +3636,1965-11-17 06:43:00,0 +6320,1967-07-14 05:01:00,0 +2057,1968-05-27 08:46:00,0 +7487,1965-04-13 05:29:00,0 +498,1969-05-14 18:23:00,0 +2157,1968-04-24 19:47:00,0 +837,1967-08-21 23:55:00,0 +8780,1966-04-30 12:29:00,0 +6146,1967-03-07 05:56:00,0 +6096,1966-06-30 01:44:00,0 +8918,1969-04-06 04:28:00,0 +6419,1969-07-27 06:20:00,0 +5762,1969-07-23 17:47:00,0 +592,1966-10-27 19:35:00,0 +1703,1966-04-09 16:15:00,0 +1745,1965-05-12 15:07:00,0 +5424,1967-06-04 22:43:00,0 +9433,1965-05-29 19:16:00,0 +5155,1966-08-10 03:01:00,0 +3618,1967-05-08 09:15:00,0 +1848,1965-06-20 19:18:00,0 +1921,1967-03-09 19:43:00,0 +5583,1967-03-04 02:49:00,0 +5236,1965-05-28 05:37:00,0 +3721,1965-11-06 08:20:00,0 +9652,1966-05-25 02:23:00,0 +4154,1969-03-25 15:30:00,0 +1087,1966-03-17 18:55:00,0 +2222,1966-10-30 02:18:00,0 +9542,1969-11-15 10:58:00,0 +95,1966-06-02 01:35:00,0 +9380,1966-03-18 01:50:00,0 +7441,1965-04-16 03:14:00,0 +2930,1969-05-08 02:25:00,0 +7224,1969-02-08 03:17:00,0 +8579,1965-03-18 19:21:00,0 +882,1965-04-15 23:26:00,0 +6317,1967-12-12 23:00:00,0 +2526,1967-06-16 15:14:00,0 +5583,1966-06-23 16:35:00,0 +9748,1969-12-19 11:38:00,0 +4714,1969-04-05 10:45:00,0 +3707,1968-04-06 03:05:00,0 +5451,1968-11-15 06:13:00,0 +8994,1967-10-28 21:39:00,0 +1741,1966-10-09 09:05:00,0 +5153,1969-07-10 15:45:00,0 +2230,1965-02-28 21:25:00,0 +1725,1965-05-01 12:05:00,0 +5085,1965-04-09 19:49:00,0 +6889,1968-05-01 15:57:00,0 +7586,1969-05-18 10:01:00,0 +7519,1965-08-06 10:16:00,0 +8162,1968-04-29 22:23:00,0 +532,1969-07-31 18:06:00,0 +6848,1967-04-03 07:15:00,0 +2820,1966-06-20 01:59:00,0 +6975,1969-04-09 15:35:00,0 +1533,1965-03-19 10:17:00,0 +473,1969-04-12 14:22:00,0 +4052,1969-02-14 07:16:00,0 +1629,1966-08-19 00:44:00,0 +5748,1966-11-15 01:34:00,0 +184,1968-08-06 23:10:00,0 +8512,1969-04-23 10:54:00,0 +9566,1965-01-21 13:17:00,0 +8239,1969-04-26 20:26:00,0 +7137,1968-03-20 08:45:00,0 +3314,1966-10-26 19:15:00,0 +1998,1967-02-26 10:02:00,0 +5956,1968-05-30 13:03:00,0 +62,1967-02-17 01:04:00,0 +6658,1968-04-13 09:11:00,0 +5693,1965-08-12 23:16:00,0 +7436,1969-03-19 17:53:00,0 +3402,1967-09-23 07:46:00,0 +2011,1969-12-09 12:49:00,0 +2126,1967-08-15 08:02:00,0 +233,1965-09-09 03:35:00,0 +6548,1968-06-11 06:19:00,0 +2810,1969-04-14 05:58:00,0 +5408,1967-10-29 07:40:00,0 +2608,1966-11-10 17:38:00,0 +176,1968-04-11 21:09:00,0 +3039,1969-10-24 01:34:00,0 +3569,1966-09-19 22:18:00,0 +2799,1969-09-21 05:53:00,0 +7997,1965-03-18 07:33:00,0 +665,1967-06-12 10:28:00,0 +4332,1966-10-22 22:37:00,0 +1427,1966-01-08 05:32:00,0 +4061,1967-11-12 01:43:00,0 +803,1969-06-06 19:00:00,0 +3258,1966-12-01 06:40:00,0 +2596,1968-12-14 14:17:00,0 +5779,1965-12-16 23:41:00,0 +2626,1969-02-16 22:09:00,0 +2673,1969-05-30 20:17:00,0 +1271,1968-05-13 09:20:00,0 +8234,1968-03-08 12:52:00,0 +4764,1967-01-21 12:24:00,0 +9423,1965-05-16 01:44:00,0 +8516,1969-04-30 22:36:00,0 +7788,1966-01-05 13:18:00,0 +1364,1966-02-26 08:55:00,0 +6691,1968-05-03 05:14:00,0 +7458,1967-05-16 05:59:00,0 +9900,1966-11-09 17:08:00,0 +2220,1969-10-12 14:00:00,0 +4034,1968-11-01 14:41:00,0 +2184,1968-02-26 10:40:00,0 +1539,1967-01-29 00:11:00,0 +1559,1969-11-28 12:06:00,0 +339,1966-09-20 01:53:00,0 +3996,1967-07-20 06:07:00,0 +5115,1969-10-15 23:32:00,0 +9392,1968-08-31 17:38:00,0 +8470,1969-04-20 06:14:00,0 +2478,1968-05-27 09:46:00,0 +9705,1968-07-02 23:05:00,0 +688,1967-04-30 19:55:00,0 +5480,1967-09-20 01:02:00,0 +8488,1965-10-25 06:18:00,0 +5048,1966-04-06 01:39:00,0 +384,1966-01-29 11:39:00,0 +1418,1969-02-27 21:40:00,0 +582,1969-12-23 04:07:00,0 +9930,1966-03-06 11:36:00,0 +1630,1968-07-09 12:20:00,0 +2966,1967-11-29 00:25:00,0 +7185,1968-12-26 20:02:00,0 +7800,1969-11-10 16:24:00,0 +6577,1967-06-08 17:01:00,0 +8476,1967-12-28 11:04:00,0 +6941,1965-03-11 16:00:00,0 +7875,1965-11-16 13:58:00,0 +9228,1965-10-07 14:11:00,0 +3877,1969-02-20 00:06:00,0 +955,1965-03-10 10:32:00,0 +7183,1968-05-11 10:15:00,0 +4863,1966-06-30 05:33:00,0 +8666,1966-07-21 10:47:00,0 +9815,1965-06-05 03:51:00,0 +7014,1967-08-07 16:05:00,0 +2658,1965-05-10 22:35:00,0 +4203,1967-01-10 10:51:00,0 +1943,1966-07-15 10:02:00,0 +9189,1968-06-22 07:44:00,0 +8262,1966-07-18 21:01:00,0 +5422,1968-02-07 05:19:00,0 +2754,1966-11-15 00:30:00,0 +1940,1968-08-12 16:31:00,0 +8529,1966-11-03 03:41:00,0 +615,1968-07-30 20:30:00,0 +4733,1968-05-20 17:39:00,0 +8096,1965-08-02 06:57:00,0 +3322,1965-09-08 14:50:00,0 +181,1968-09-18 03:36:00,0 +6280,1969-08-30 15:14:00,0 +6504,1969-12-21 19:23:00,0 +6585,1965-04-11 06:01:00,0 +6942,1966-11-01 14:43:00,0 +8819,1965-10-16 20:13:00,0 +8671,1967-08-31 18:25:00,0 +6425,1969-07-10 23:26:00,0 +3536,1967-06-12 00:23:00,0 +86,1969-10-03 14:51:00,0 +9546,1968-05-28 07:12:00,0 +6525,1966-12-05 15:43:00,0 +7568,1969-06-16 18:50:00,0 +756,1968-12-26 20:19:00,0 +4375,1969-04-22 15:50:00,0 +3238,1969-12-27 09:08:00,0 +2983,1966-11-11 00:51:00,0 +9855,1965-11-09 11:06:00,0 +5877,1966-05-07 03:50:00,0 +6601,1965-12-13 22:56:00,0 +6681,1966-06-21 07:51:00,0 +3414,1966-11-28 21:16:00,0 +9906,1966-05-15 13:01:00,0 +9134,1965-05-03 22:14:00,0 +6271,1969-08-23 11:19:00,0 +1339,1969-09-21 04:42:00,0 +7072,1966-09-14 00:24:00,0 +2081,1965-03-31 14:18:00,0 +2948,1966-08-11 04:04:00,0 +3913,1966-07-31 22:34:00,0 +874,1965-01-24 22:18:00,0 +1861,1968-07-24 20:35:00,0 +4016,1967-12-09 15:49:00,0 +3665,1967-03-21 14:27:00,0 +2939,1969-01-17 10:21:00,0 +99,1965-08-09 06:44:00,0 +7766,1967-10-05 07:37:00,0 +563,1969-03-31 00:25:00,0 +1668,1966-06-27 13:22:00,0 +7409,1968-10-18 16:59:00,0 +4944,1965-09-11 13:19:00,0 +5013,1966-12-17 19:16:00,0 +6675,1967-08-20 07:21:00,0 +8646,1965-08-28 15:38:00,0 +3231,1968-11-10 21:36:00,0 +4783,1969-11-21 05:10:00,0 +5981,1965-04-25 14:33:00,0 +600,1969-12-19 19:15:00,0 +9150,1967-09-15 17:16:00,0 +369,1965-10-12 17:11:00,0 +4125,1965-08-08 03:42:00,0 +3101,1968-12-23 11:54:00,0 +588,1965-07-03 09:59:00,0 +5755,1965-05-10 15:32:00,0 +9473,1968-08-03 09:34:00,0 +5741,1968-11-11 06:59:00,0 +615,1967-04-13 18:25:00,0 +8148,1967-03-22 17:25:00,0 +1995,1968-07-13 09:37:00,0 +4295,1965-12-01 02:36:00,0 +6943,1969-10-05 16:58:00,0 +3205,1967-10-10 14:31:00,0 +4267,1965-02-03 08:28:00,0 +2066,1968-09-05 06:31:00,0 +2775,1967-05-14 17:24:00,0 +8314,1965-02-04 15:50:00,0 +578,1965-02-25 03:20:00,0 +2347,1967-03-06 00:19:00,0 +4689,1966-04-22 07:05:00,0 +9298,1965-06-21 22:55:00,0 +3434,1967-10-18 16:32:00,0 +9474,1965-05-05 06:19:00,0 +1396,1969-10-04 02:06:00,0 +3595,1969-01-13 22:21:00,0 +2852,1969-09-29 18:18:00,0 +2491,1969-07-20 19:02:00,0 +3567,1969-07-28 18:44:00,0 +4160,1969-12-10 21:03:00,0 +1403,1965-04-06 20:45:00,0 +7715,1968-10-10 11:34:00,0 +8039,1967-01-04 10:28:00,0 +829,1966-01-16 09:00:00,0 +10,1967-11-12 05:09:00,0 +7024,1966-07-15 16:14:00,0 +7014,1968-08-17 09:08:00,0 +9114,1966-06-03 02:50:00,0 +9312,1965-06-22 06:28:00,0 +9024,1967-04-15 07:15:00,0 +7447,1966-11-25 07:23:00,0 +347,1967-12-06 02:54:00,0 +6559,1965-09-12 00:57:00,0 +6350,1965-01-21 22:27:00,0 +3672,1966-01-10 08:12:00,0 +5168,1967-04-28 08:47:00,0 +1378,1966-05-21 18:16:00,0 +7988,1967-02-20 02:59:00,0 +6877,1969-01-20 07:09:00,0 +1672,1968-07-17 02:41:00,0 +5642,1968-12-08 22:48:00,0 +7247,1969-10-10 16:09:00,0 +1776,1967-02-06 13:12:00,0 +2266,1967-08-21 11:34:00,0 +5463,1965-08-03 11:41:00,0 +3377,1969-04-05 10:54:00,0 +6605,1967-02-01 01:32:00,0 +3419,1967-05-25 21:19:00,0 +5152,1965-06-11 03:23:00,0 +7009,1967-09-02 00:46:00,0 +7660,1969-12-21 17:40:00,0 +4601,1965-02-19 07:35:00,0 +7857,1966-07-02 06:48:00,0 +8074,1966-05-19 06:14:00,0 +666,1965-11-28 08:27:00,0 +2514,1967-05-30 09:59:00,0 +2668,1968-09-13 16:54:00,0 +5375,1966-04-29 02:04:00,0 +2634,1968-11-10 21:40:00,0 +3708,1968-05-09 04:44:00,0 +9893,1967-04-22 21:21:00,0 +7378,1969-03-13 07:23:00,0 +2083,1969-02-22 19:59:00,0 +3720,1965-04-26 23:34:00,0 +2536,1969-09-03 04:47:00,0 +6722,1966-10-27 05:07:00,0 +9249,1969-10-06 02:54:00,0 +770,1967-07-15 21:44:00,0 +647,1968-10-12 14:20:00,0 +1814,1969-12-21 23:17:00,0 +2633,1965-02-19 18:48:00,0 +8322,1968-05-09 04:09:00,0 +1352,1966-03-01 02:38:00,0 +7400,1966-01-04 04:22:00,0 +9191,1969-11-21 12:57:00,0 +2958,1965-11-10 22:28:00,0 +6513,1969-10-06 05:28:00,0 +9926,1966-12-03 02:06:00,0 +7263,1968-06-20 01:35:00,0 +7544,1969-10-25 14:18:00,0 +818,1966-07-21 20:25:00,0 +3593,1968-02-14 19:24:00,0 +502,1967-05-27 18:32:00,0 +7253,1968-06-18 21:03:00,0 +747,1968-04-16 08:23:00,0 +1617,1966-03-06 18:58:00,0 +5250,1966-02-03 12:56:00,0 +7029,1967-09-27 07:58:00,0 +1594,1966-06-17 01:03:00,0 +3712,1965-03-09 13:37:00,0 +5462,1966-10-15 12:45:00,0 +3730,1965-08-20 13:54:00,0 +2178,1967-06-05 13:05:00,0 +2383,1969-07-12 19:14:00,0 +5518,1966-08-21 19:17:00,0 +6822,1967-05-24 05:53:00,0 +3994,1968-12-03 10:44:00,0 +8436,1966-03-18 12:03:00,0 +4659,1969-09-20 16:27:00,0 +8416,1969-08-09 16:44:00,0 +8544,1968-12-05 23:13:00,0 +2881,1968-08-28 01:19:00,0 +2770,1966-02-08 05:32:00,0 +9004,1968-12-04 00:19:00,0 +304,1969-11-14 08:43:00,0 +8752,1968-10-27 23:27:00,0 +7218,1966-08-22 14:53:00,0 +2434,1969-12-12 23:07:00,0 +9614,1966-08-21 16:08:00,0 +3484,1967-01-24 15:56:00,0 +9264,1966-04-21 19:42:00,0 +1248,1969-09-06 11:22:00,0 +3983,1966-04-18 01:56:00,0 +8984,1969-04-13 04:56:00,0 +6589,1966-08-20 04:39:00,0 +1299,1966-01-29 23:39:00,0 +5937,1968-04-09 01:00:00,0 +59,1965-11-26 06:52:00,0 +2348,1969-10-04 21:00:00,0 +5822,1969-08-10 06:12:00,0 +6837,1968-10-01 18:57:00,0 +8299,1969-08-03 03:25:00,0 +6602,1965-12-08 21:04:00,0 +5847,1967-12-15 05:04:00,0 +6088,1965-07-06 05:00:00,0 +7205,1968-02-06 06:07:00,0 +6479,1965-12-07 20:44:00,0 +2530,1968-11-22 14:18:00,0 +9732,1969-06-14 06:15:00,0 +2447,1965-11-09 02:04:00,0 +8192,1967-01-10 17:49:00,0 +4510,1967-09-07 09:09:00,0 +3136,1968-04-15 20:30:00,0 +249,1967-08-29 10:24:00,0 +5226,1965-07-01 05:08:00,0 +1618,1968-07-23 11:04:00,0 +3945,1968-08-24 02:42:00,0 +4501,1967-07-01 11:29:00,0 +344,1968-01-07 16:19:00,0 +742,1968-06-09 04:51:00,0 +7688,1966-12-25 17:04:00,0 +764,1969-11-27 23:02:00,0 +1015,1968-06-12 08:15:00,0 +1456,1969-05-30 10:12:00,0 +4120,1966-09-05 04:08:00,0 +5828,1965-01-17 06:31:00,0 +6458,1969-01-07 06:32:00,0 +783,1968-08-29 06:27:00,0 +9341,1965-03-06 04:35:00,0 +740,1967-12-06 01:23:00,0 +2686,1969-09-05 06:55:00,0 +9430,1967-08-24 01:08:00,0 +4356,1969-04-25 17:16:00,0 +335,1965-09-09 00:32:00,0 +3881,1965-11-14 15:16:00,0 +908,1969-11-22 15:39:00,0 +1891,1965-05-07 20:43:00,0 +371,1966-10-31 15:13:00,0 +8795,1967-01-10 21:56:00,0 +1202,1966-03-02 04:22:00,0 +5333,1968-10-31 23:05:00,0 +2372,1966-05-25 23:20:00,0 +3335,1966-11-15 07:01:00,0 +1092,1969-11-18 17:23:00,0 +1400,1967-03-05 17:56:00,0 +1954,1969-08-09 20:09:00,0 +2775,1966-06-17 11:57:00,0 +5856,1965-05-20 10:10:00,0 +2295,1968-08-22 10:13:00,0 +5119,1969-07-24 13:34:00,0 +1698,1968-05-22 06:18:00,0 +4028,1969-10-27 02:42:00,0 +8944,1966-09-13 09:20:00,0 +5680,1967-07-15 05:11:00,0 +3967,1968-03-06 19:21:00,0 +3605,1965-05-29 02:47:00,0 +3799,1966-12-08 02:17:00,0 +2123,1968-12-29 10:27:00,0 +2202,1965-01-23 16:45:00,0 +5595,1965-12-22 07:16:00,0 +8183,1965-11-05 06:36:00,0 +9134,1966-07-08 20:28:00,0 +1633,1969-09-25 14:22:00,0 +816,1965-10-19 04:56:00,0 +1213,1968-09-03 09:02:00,0 +6552,1969-04-22 22:44:00,0 +2711,1968-01-19 07:42:00,0 +7438,1967-06-17 07:03:00,0 +4306,1965-06-18 12:21:00,0 +1070,1968-07-14 09:18:00,0 +469,1967-08-12 13:35:00,0 +7146,1966-02-27 15:31:00,0 +394,1969-03-31 22:17:00,0 +7706,1967-02-25 13:44:00,0 +6753,1967-08-18 21:01:00,0 +4866,1965-08-15 09:14:00,0 +2776,1966-12-31 15:44:00,0 +4984,1966-08-13 14:42:00,0 +7204,1968-04-25 23:00:00,0 +7500,1966-04-22 09:15:00,0 +6007,1966-04-11 00:49:00,0 +7825,1966-06-12 03:15:00,0 +5010,1968-11-02 05:43:00,0 +8368,1968-11-17 14:08:00,0 +6282,1965-04-06 11:11:00,0 +6840,1965-07-29 13:49:00,0 +2137,1966-11-28 13:28:00,0 +1619,1965-08-12 17:59:00,0 +1062,1969-07-08 01:53:00,0 +1928,1967-12-12 00:37:00,0 +4563,1967-01-30 13:18:00,0 +4762,1966-06-18 20:32:00,0 +5662,1966-07-25 22:24:00,0 +9199,1969-04-25 10:14:00,0 +5752,1967-11-22 20:53:00,0 +9562,1968-11-16 20:45:00,0 +5028,1968-12-01 10:42:00,0 +4760,1965-01-07 16:40:00,0 +8778,1969-08-27 20:35:00,0 +4441,1967-11-12 04:05:00,0 +262,1966-06-22 03:26:00,0 +2944,1965-09-02 02:26:00,0 +7156,1969-06-22 13:27:00,0 +7810,1968-04-06 00:00:00,0 +457,1966-08-10 09:03:00,0 +8196,1966-05-19 08:51:00,0 +5748,1967-02-07 20:32:00,0 +2406,1965-05-23 03:20:00,0 +4890,1969-09-06 02:08:00,0 +6993,1966-09-14 05:12:00,0 +7117,1967-11-24 16:09:00,0 +9082,1967-07-16 19:05:00,0 +4876,1968-11-04 15:18:00,0 +2985,1966-06-10 00:05:00,0 +1647,1969-07-27 01:05:00,0 +1029,1966-02-15 07:55:00,0 +9105,1965-01-05 01:04:00,0 +8360,1967-07-15 07:59:00,0 +2073,1967-10-27 07:22:00,0 +2912,1968-12-19 02:28:00,0 +161,1965-01-05 19:44:00,0 +2288,1966-10-18 10:14:00,0 +4219,1968-12-25 05:34:00,0 +2684,1966-02-08 18:29:00,0 +5516,1969-03-17 13:53:00,0 +9040,1966-07-02 16:21:00,0 +7273,1969-12-11 08:05:00,0 +5705,1967-11-19 07:59:00,0 +5612,1968-09-29 10:54:00,0 +3788,1965-11-16 11:09:00,0 +3538,1967-09-16 11:31:00,0 +9520,1968-05-24 09:27:00,0 +3829,1965-09-29 23:05:00,0 +7662,1969-12-12 07:37:00,0 +2139,1968-05-20 00:23:00,0 +8900,1968-04-04 11:19:00,0 +6148,1966-11-24 22:03:00,0 +142,1967-02-27 07:07:00,0 +9579,1968-12-26 10:00:00,0 +9493,1967-02-28 15:27:00,0 +4068,1965-12-24 09:27:00,0 +2801,1967-07-05 16:09:00,0 +8157,1967-06-05 14:24:00,0 +3867,1968-05-12 07:23:00,0 +6473,1967-06-26 14:14:00,0 +9134,1967-09-22 00:04:00,0 +8016,1965-02-18 10:10:00,0 +211,1968-01-23 22:34:00,0 +2496,1966-05-24 15:58:00,0 +5583,1969-06-16 02:46:00,0 +7474,1966-09-05 22:12:00,0 +102,1967-09-10 08:07:00,0 +5534,1969-04-16 04:23:00,0 +4029,1966-05-19 03:19:00,0 +6606,1965-06-06 15:25:00,0 +8721,1967-07-05 07:23:00,0 +9193,1969-06-08 11:17:00,0 +9802,1966-03-05 02:29:00,0 +4247,1965-07-21 02:47:00,0 +4994,1969-12-11 17:58:00,0 +1854,1968-10-07 16:06:00,0 +1303,1969-08-06 01:25:00,0 +3069,1969-05-26 14:41:00,0 +5168,1965-04-11 08:13:00,0 +9873,1968-06-05 08:31:00,0 +5715,1965-07-20 09:09:00,0 +1398,1968-08-30 01:58:00,0 +3912,1966-07-06 05:43:00,0 +9223,1969-05-30 05:51:00,0 +3511,1966-09-18 11:13:00,0 +3444,1966-04-10 02:36:00,0 +7181,1967-11-12 11:21:00,0 +7370,1968-01-17 07:40:00,0 +165,1969-08-05 18:30:00,0 +4758,1969-01-17 06:56:00,0 +9147,1965-05-28 17:17:00,0 +2179,1965-02-28 19:12:00,0 +2452,1967-05-30 07:17:00,0 +8274,1966-06-19 12:07:00,0 +2387,1966-01-30 19:39:00,0 +2643,1966-01-23 16:26:00,0 +3660,1965-09-13 16:51:00,0 +3061,1965-01-04 15:36:00,0 +7084,1968-02-16 16:43:00,0 +76,1965-06-14 07:38:00,0 +3918,1969-03-31 07:35:00,0 +1233,1969-03-18 18:38:00,0 +7862,1967-12-03 21:58:00,0 +2336,1966-12-09 09:57:00,0 +1073,1968-01-28 15:05:00,0 +8881,1965-03-05 19:39:00,0 +9348,1967-12-02 10:52:00,0 +8114,1966-10-15 14:55:00,0 +6827,1969-09-08 09:38:00,0 +7978,1968-02-20 12:52:00,0 +6305,1968-06-11 03:10:00,0 +8215,1967-01-11 13:06:00,0 +2851,1966-07-06 13:26:00,0 +9597,1968-12-29 01:07:00,0 +8004,1965-03-11 17:03:00,0 +2309,1966-06-05 20:18:00,0 +7533,1967-10-08 23:54:00,0 +9270,1966-06-06 09:34:00,0 +7053,1965-07-13 17:58:00,0 +1577,1969-10-12 20:40:00,0 +639,1969-02-03 21:23:00,0 +919,1967-11-26 22:49:00,0 +3897,1967-01-17 09:17:00,0 +7967,1967-12-12 13:10:00,0 +9787,1967-06-04 15:04:00,0 +2302,1969-05-06 07:22:00,0 +8505,1969-03-23 14:37:00,0 +4380,1967-07-17 05:51:00,0 +752,1966-02-20 06:21:00,0 +7189,1969-09-30 13:15:00,0 +536,1966-10-28 15:22:00,0 +3191,1966-04-21 17:23:00,0 +8694,1968-06-03 01:53:00,0 +824,1965-08-22 13:02:00,0 +15,1966-11-03 14:01:00,0 +9448,1966-09-14 17:37:00,0 +7172,1966-06-02 04:19:00,0 +8270,1968-01-28 16:53:00,0 +2568,1965-07-07 23:46:00,0 +3704,1969-06-10 02:51:00,0 +3479,1965-02-21 21:29:00,0 +8462,1967-03-07 06:00:00,0 +3188,1966-04-01 21:20:00,0 +8224,1969-01-25 20:11:00,0 +4680,1965-10-31 18:28:00,0 +3552,1965-03-19 17:15:00,0 +699,1967-04-13 15:56:00,0 +4323,1967-03-04 02:29:00,0 +5481,1965-08-10 01:03:00,0 +9594,1969-05-05 22:38:00,0 +2868,1965-12-18 08:56:00,0 +8780,1965-02-09 03:12:00,0 +1689,1966-10-14 11:37:00,0 +4116,1967-01-08 09:48:00,0 +3927,1967-10-24 04:38:00,0 +1378,1968-01-06 15:06:00,0 +4156,1967-12-28 15:03:00,0 +6269,1966-01-18 00:52:00,0 +5921,1968-05-07 15:56:00,0 +7240,1965-02-03 02:07:00,0 +4343,1966-09-17 02:41:00,0 +7222,1969-07-05 06:04:00,0 +7686,1965-07-08 18:43:00,0 +2257,1965-08-29 08:13:00,0 +2522,1966-11-07 08:47:00,0 +7092,1969-11-17 08:53:00,0 +8207,1966-08-04 13:59:00,0 +4707,1965-08-27 23:56:00,0 +5737,1966-02-09 00:14:00,0 +8858,1966-05-23 02:02:00,0 +6824,1965-07-18 23:27:00,0 +379,1965-05-31 21:27:00,0 +7224,1965-09-06 04:58:00,0 +9151,1969-01-06 00:46:00,0 +8155,1966-11-18 16:26:00,0 +6729,1969-09-08 01:15:00,0 +3123,1968-05-08 11:41:00,0 +8636,1967-11-30 17:28:00,0 +4088,1966-07-09 12:49:00,0 +5192,1967-04-22 22:43:00,0 +468,1965-03-10 13:31:00,0 +1024,1965-02-10 15:13:00,0 +7846,1965-09-03 23:41:00,0 +4238,1966-09-19 18:36:00,0 +5020,1968-08-10 15:48:00,0 +7316,1968-04-06 19:14:00,0 +7980,1969-02-15 12:13:00,0 +5870,1969-06-02 21:38:00,0 +2597,1969-04-30 07:04:00,0 +9488,1969-06-22 15:09:00,0 +3551,1967-07-12 02:31:00,0 +2142,1967-07-26 00:32:00,0 +2513,1968-08-11 18:13:00,0 +5854,1966-11-30 17:48:00,0 +7028,1967-12-28 19:56:00,0 +6195,1967-09-03 18:15:00,0 +8666,1967-08-24 10:43:00,0 +2050,1969-01-25 01:30:00,0 +1605,1969-05-29 15:58:00,0 +772,1965-05-02 15:50:00,0 +1813,1965-01-15 06:18:00,0 +9115,1965-05-12 22:14:00,0 +4841,1965-10-18 19:11:00,0 +5871,1969-07-27 23:23:00,0 +8610,1965-04-18 05:32:00,0 +8860,1968-05-15 22:52:00,0 +1491,1968-08-13 01:52:00,0 +9144,1966-03-01 11:41:00,0 +640,1966-08-26 18:29:00,0 +155,1968-07-05 00:58:00,0 +9019,1965-03-23 11:46:00,0 +6051,1965-08-24 11:33:00,0 +1085,1966-03-02 05:27:00,0 +2350,1967-05-22 20:32:00,0 +4612,1967-10-27 18:51:00,0 +9040,1969-02-24 00:10:00,0 +9220,1965-02-23 14:32:00,0 +2115,1966-07-04 19:31:00,0 +7519,1969-08-11 14:59:00,0 +697,1967-02-19 16:40:00,0 +3039,1966-10-18 17:17:00,0 +3820,1969-05-19 00:39:00,0 +1301,1966-01-06 06:27:00,0 +4126,1965-11-11 21:35:00,0 +8386,1965-02-18 21:29:00,0 +1386,1968-10-01 22:20:00,0 +4258,1967-05-25 13:42:00,0 +3963,1965-08-11 12:29:00,0 +8991,1969-07-05 20:05:00,0 +7930,1965-12-12 20:53:00,0 +4130,1969-11-02 02:37:00,0 +2213,1969-02-04 13:23:00,0 +5391,1969-08-07 13:56:00,0 +8701,1967-09-22 11:54:00,0 +3362,1969-01-06 23:34:00,0 +7510,1965-09-18 09:17:00,0 +1663,1967-01-27 03:09:00,0 +2920,1965-01-31 22:09:00,0 +4382,1969-12-18 01:40:00,0 +1258,1969-05-03 04:57:00,0 +5262,1968-06-07 21:47:00,0 +3250,1967-12-15 16:56:00,0 +8946,1968-10-30 09:49:00,0 +8257,1965-12-09 05:12:00,0 +1184,1967-05-09 05:56:00,0 +2235,1965-09-18 01:43:00,0 +1313,1969-12-01 17:56:00,0 +5408,1967-02-21 22:37:00,0 +5989,1969-09-26 00:39:00,0 +8390,1965-03-12 21:02:00,0 +3320,1967-04-19 02:38:00,0 +6202,1967-09-14 11:21:00,0 +8314,1969-01-31 11:55:00,0 +5835,1965-11-07 21:20:00,0 +8035,1969-01-19 09:51:00,0 +2056,1965-06-28 11:04:00,0 +192,1966-08-18 23:32:00,0 +9070,1965-11-11 13:07:00,0 +8368,1968-04-30 02:30:00,0 +7991,1969-10-16 16:27:00,0 +2917,1967-01-20 02:02:00,0 +4429,1966-05-12 14:48:00,0 +1082,1966-03-08 02:22:00,0 +4683,1965-11-04 16:21:00,0 +2439,1966-12-01 17:14:00,0 +3748,1967-11-22 12:48:00,0 +537,1965-06-27 15:39:00,0 +2110,1966-02-09 17:48:00,0 +2106,1965-06-01 14:35:00,0 +7406,1968-01-28 05:47:00,0 +8907,1967-07-23 10:30:00,0 +926,1966-12-12 03:52:00,0 +4354,1967-04-15 11:35:00,0 +3544,1967-03-26 06:23:00,0 +9704,1968-09-01 17:17:00,0 +4922,1968-05-30 03:07:00,0 +2581,1965-04-19 10:43:00,0 +7507,1967-04-18 08:15:00,0 +5326,1969-07-28 19:11:00,0 +8303,1968-03-25 08:35:00,0 +1687,1966-05-09 12:57:00,0 +7012,1966-08-29 19:26:00,0 +6026,1968-12-23 05:32:00,0 +9192,1967-07-09 23:57:00,0 +9952,1965-07-01 15:27:00,0 +6470,1965-09-16 10:25:00,0 +9989,1969-10-08 13:30:00,0 +7633,1966-08-14 05:50:00,0 +3469,1965-05-31 03:52:00,0 +7578,1967-02-14 03:37:00,0 +3301,1968-01-25 17:13:00,0 +6185,1966-07-28 04:38:00,0 +654,1966-09-09 15:39:00,0 +9710,1965-11-02 12:43:00,0 +8000,1969-01-27 22:17:00,0 +7268,1968-09-03 09:25:00,0 +1868,1967-11-15 01:55:00,0 +4638,1968-04-05 03:16:00,0 +8302,1969-08-21 05:50:00,0 +8681,1969-01-06 22:52:00,0 +2086,1967-01-02 13:47:00,0 +6365,1965-02-28 16:20:00,0 +9552,1965-08-14 08:49:00,0 +9929,1966-04-12 14:46:00,0 +3441,1967-08-25 16:58:00,0 +8375,1969-11-24 18:36:00,0 +1416,1969-07-28 02:30:00,0 +8275,1966-11-27 01:14:00,0 +4641,1967-09-05 13:17:00,0 +4203,1969-01-04 03:33:00,0 +981,1966-12-22 15:26:00,0 +9175,1969-11-09 21:16:00,0 +3244,1969-03-09 07:15:00,0 +3968,1968-08-01 23:54:00,0 +4355,1969-03-29 02:48:00,0 +8914,1969-08-27 20:07:00,0 +5127,1968-04-25 17:23:00,0 +5335,1969-08-09 03:55:00,0 +6259,1968-05-05 11:20:00,0 +7857,1968-10-02 07:48:00,0 +5239,1967-08-17 07:51:00,0 +4120,1969-08-23 19:09:00,0 +9252,1966-09-08 09:00:00,0 +5460,1967-05-03 23:54:00,0 +2790,1969-07-30 04:25:00,0 +3067,1966-09-26 02:54:00,0 +6608,1965-01-14 18:07:00,0 +3874,1969-06-22 10:24:00,0 +4123,1968-08-17 13:19:00,0 +1948,1966-06-16 08:14:00,0 +4893,1966-05-26 05:41:00,0 +4538,1966-11-23 07:17:00,0 +5150,1968-04-08 01:31:00,0 +4084,1969-09-24 00:31:00,0 +5044,1966-01-26 17:42:00,0 +2189,1967-12-18 04:28:00,0 +7829,1967-10-29 04:37:00,0 +9453,1967-12-27 21:35:00,0 +6828,1968-02-04 19:19:00,0 +4502,1965-03-15 12:29:00,0 +8621,1968-06-27 05:11:00,0 +6854,1968-10-12 02:46:00,0 +1096,1965-12-29 04:48:00,0 +3469,1968-10-30 18:34:00,0 +8944,1965-12-26 08:41:00,0 +5573,1966-03-27 09:20:00,0 +7003,1966-10-10 18:11:00,0 +1038,1965-06-17 02:46:00,0 +8640,1967-01-05 01:58:00,0 +868,1967-09-28 07:01:00,0 +6487,1965-05-24 20:53:00,0 +6460,1965-09-10 07:08:00,0 +3815,1968-11-19 07:46:00,0 +9405,1968-12-14 09:14:00,0 +147,1968-02-09 15:48:00,0 +5818,1967-02-13 10:40:00,0 +3240,1967-08-02 16:47:00,0 +2377,1965-08-26 18:40:00,0 +5458,1965-08-07 17:48:00,0 +6223,1966-07-29 15:19:00,0 +9737,1969-02-04 14:51:00,0 +6842,1966-02-04 04:49:00,0 +726,1966-09-06 07:45:00,0 +4689,1968-01-06 15:39:00,0 +3817,1967-12-24 23:35:00,0 +1896,1966-05-30 04:25:00,0 +2181,1966-04-13 23:11:00,0 +6785,1965-02-04 16:45:00,0 +3281,1968-05-20 01:07:00,0 +9857,1969-07-08 21:46:00,0 +6810,1967-07-23 00:04:00,0 +2660,1969-04-27 18:52:00,0 +716,1969-01-30 02:27:00,0 +3495,1967-06-20 17:38:00,0 +183,1965-07-09 19:57:00,0 +6239,1966-04-25 04:22:00,0 +6182,1968-08-15 11:34:00,0 +3602,1967-08-03 15:50:00,0 +5018,1968-03-31 03:45:00,0 +6161,1967-06-30 08:14:00,0 +4197,1968-05-13 22:28:00,0 +4372,1969-01-27 14:15:00,0 +7018,1967-03-27 22:04:00,0 +4592,1969-11-15 07:37:00,0 +5749,1965-03-02 09:23:00,0 +4659,1966-01-23 13:32:00,0 +248,1969-08-28 07:30:00,0 +5625,1969-04-24 15:33:00,0 +9393,1965-10-24 17:44:00,0 +5449,1965-12-13 22:20:00,0 +7563,1965-02-20 19:29:00,0 +1679,1968-10-26 11:58:00,0 +6440,1967-05-09 23:30:00,0 +342,1969-09-18 15:16:00,0 +3301,1965-04-20 16:50:00,0 +6839,1968-05-14 04:27:00,0 +2558,1966-09-18 11:03:00,0 +6564,1969-10-16 20:38:00,0 +5036,1969-09-08 20:44:00,0 +8894,1965-04-15 07:22:00,0 +4251,1967-11-07 01:26:00,0 +3048,1968-02-07 18:32:00,0 +4442,1969-12-31 05:01:00,0 +7612,1965-09-27 20:45:00,0 +5207,1969-10-09 17:23:00,0 +9518,1968-04-06 20:53:00,0 +9044,1966-12-16 11:01:00,0 +9254,1969-07-04 22:58:00,0 +8797,1967-11-15 08:04:00,0 +6513,1965-04-21 08:37:00,0 +5358,1967-02-25 03:52:00,0 +9763,1966-04-22 09:13:00,0 +7615,1969-06-12 02:09:00,0 +3411,1965-08-24 11:33:00,0 +745,1969-12-06 20:22:00,0 +9330,1966-10-14 20:25:00,0 +4851,1969-11-11 10:18:00,0 +4479,1969-07-04 05:02:00,0 +8047,1966-04-21 15:20:00,0 +2924,1965-03-30 13:02:00,0 +4050,1966-04-11 14:18:00,0 +678,1968-12-14 22:20:00,0 +3629,1967-04-23 13:47:00,0 +416,1968-10-13 05:17:00,0 +4569,1965-01-05 09:38:00,0 +5691,1967-07-18 17:47:00,0 +3529,1966-10-25 19:25:00,0 +3071,1969-08-25 07:34:00,0 +6241,1967-01-15 08:11:00,0 +2606,1965-08-10 09:01:00,0 +8560,1966-02-11 00:59:00,0 +8736,1968-02-05 23:01:00,0 +1014,1966-11-29 00:28:00,0 +6614,1965-12-02 12:09:00,0 +2780,1965-06-08 22:31:00,0 +6301,1968-08-01 17:12:00,0 +9018,1968-08-10 09:17:00,0 +628,1965-04-05 09:45:00,0 +2625,1966-07-29 09:50:00,0 +8419,1969-01-14 02:57:00,0 +9579,1967-11-06 10:35:00,0 +6797,1967-02-25 14:49:00,0 +7131,1969-04-03 21:25:00,0 +3325,1966-03-15 07:03:00,0 +6276,1965-01-10 14:42:00,0 +4314,1967-04-05 06:31:00,0 +7371,1968-10-02 19:53:00,0 +1777,1967-05-17 08:17:00,0 +5915,1966-12-23 19:17:00,0 +7535,1965-02-12 04:26:00,0 +2033,1967-02-01 17:58:00,0 +9689,1968-08-17 16:46:00,0 +5596,1965-11-18 21:43:00,0 +8286,1969-04-27 02:40:00,0 +2010,1965-02-18 10:02:00,0 +4309,1968-01-03 21:33:00,0 +6835,1967-04-28 17:13:00,0 +7207,1966-04-05 22:12:00,0 +5692,1967-11-22 05:52:00,0 +8578,1966-12-09 15:01:00,0 +6862,1968-09-12 10:21:00,0 +8884,1966-12-15 16:56:00,0 +628,1965-06-21 14:07:00,0 +22,1969-11-16 01:08:00,0 +3411,1965-11-22 21:09:00,0 +8674,1969-03-27 23:12:00,0 +8875,1966-09-19 23:08:00,0 +6838,1969-11-11 15:36:00,0 +8815,1966-12-11 00:22:00,0 +6753,1967-07-14 10:46:00,0 +5114,1969-12-14 19:30:00,0 +1456,1966-08-23 05:11:00,0 +101,1968-03-04 23:56:00,0 +9559,1967-10-18 05:18:00,0 +352,1965-07-17 19:47:00,0 +4555,1968-04-23 23:05:00,0 +657,1968-03-25 17:38:00,0 +2387,1969-09-29 06:06:00,0 +83,1965-03-29 18:56:00,0 +2226,1966-10-27 21:37:00,0 +2321,1969-12-10 12:18:00,0 +4149,1965-10-03 01:27:00,0 +7778,1969-09-06 22:39:00,0 +2137,1966-12-17 07:57:00,0 +249,1966-09-22 09:15:00,0 +2182,1966-12-04 23:55:00,0 +5808,1965-06-19 17:31:00,0 +5143,1968-02-08 10:41:00,0 +1670,1966-04-20 09:53:00,0 +5420,1968-05-14 08:57:00,0 +8750,1965-03-24 18:08:00,0 +226,1965-10-26 20:18:00,0 +1404,1969-03-20 17:07:00,0 +136,1966-09-27 06:22:00,0 +5931,1965-11-19 06:12:00,0 +2118,1969-09-19 04:37:00,0 +758,1966-05-23 08:59:00,0 +6337,1967-10-19 08:01:00,0 +9962,1967-04-30 02:34:00,0 +9312,1966-02-24 12:05:00,0 +9096,1966-04-23 02:58:00,0 +9436,1968-09-18 07:08:00,0 +9752,1968-01-04 11:58:00,0 +80,1966-10-02 23:48:00,0 +2161,1967-03-31 03:55:00,0 +6095,1967-04-15 11:24:00,0 +8488,1968-08-07 07:24:00,0 +8124,1965-05-28 02:21:00,0 +4358,1965-04-05 01:12:00,0 +931,1965-10-21 13:15:00,0 +5194,1966-06-20 20:09:00,0 +4728,1967-08-02 17:50:00,0 +9364,1967-02-16 07:05:00,0 +5609,1965-03-25 00:30:00,0 +2080,1966-04-04 06:24:00,0 +746,1965-08-04 04:25:00,0 +1647,1968-01-22 19:27:00,0 +5104,1965-12-18 09:29:00,0 +3252,1965-04-22 23:54:00,0 +6459,1968-05-01 22:31:00,0 +9509,1965-07-18 02:04:00,0 +9211,1969-05-11 22:07:00,0 +6079,1968-12-27 16:10:00,0 +6859,1968-12-12 16:48:00,0 +7393,1966-09-07 07:46:00,0 +7411,1965-01-26 08:41:00,0 +5828,1965-10-21 11:26:00,0 +9160,1969-10-30 02:33:00,0 +1370,1968-06-06 01:30:00,0 +3429,1965-07-17 10:23:00,0 +886,1966-07-09 09:59:00,0 +8422,1965-01-12 08:08:00,0 +5319,1969-12-16 02:19:00,0 +189,1968-11-12 11:10:00,0 +7343,1967-04-17 01:18:00,0 +8813,1966-07-07 02:06:00,0 +9592,1967-02-19 04:14:00,0 +7842,1967-05-24 03:12:00,0 +5394,1966-03-06 10:07:00,0 +5374,1966-08-23 20:51:00,0 +5239,1966-09-23 15:54:00,0 +5488,1965-12-02 09:30:00,0 +5018,1967-05-07 19:21:00,0 +9049,1966-05-05 11:50:00,0 +2938,1967-06-30 11:38:00,0 +3546,1969-08-11 11:31:00,0 +4096,1968-08-21 10:27:00,0 +8578,1969-08-18 22:16:00,0 +4835,1966-09-20 07:52:00,0 +2060,1965-08-03 12:45:00,0 +7333,1969-08-25 22:44:00,0 +6669,1965-08-15 13:36:00,0 +119,1967-02-20 22:22:00,0 +1942,1966-05-21 04:30:00,0 +6101,1968-04-03 01:30:00,0 +926,1965-12-12 01:32:00,0 +8953,1969-10-16 01:41:00,0 +8730,1968-03-04 09:15:00,0 +1977,1968-04-14 06:26:00,0 +48,1965-02-02 09:00:00,0 +565,1965-04-03 17:40:00,0 +5517,1967-03-04 16:54:00,0 +8425,1968-05-19 22:01:00,0 +8856,1965-10-23 12:58:00,0 +3754,1967-03-07 10:00:00,0 +3685,1966-11-14 21:42:00,0 +4724,1965-10-23 11:58:00,0 +5212,1965-10-15 05:09:00,0 +6880,1967-04-14 11:48:00,0 +4889,1969-04-15 11:48:00,0 +9096,1965-03-24 11:29:00,0 +5327,1965-12-28 21:00:00,0 +2003,1965-06-30 13:58:00,0 +8048,1967-03-07 21:11:00,0 +7824,1968-12-25 01:39:00,0 +4410,1965-07-16 07:10:00,0 +4514,1968-02-08 09:14:00,0 +1479,1967-11-29 01:26:00,0 +4784,1969-01-12 21:52:00,0 +4234,1967-02-18 02:22:00,0 +1595,1967-11-04 11:32:00,0 +6966,1965-11-10 08:04:00,0 +9914,1965-08-28 13:55:00,0 +9571,1969-05-12 12:00:00,0 +8309,1968-03-27 14:48:00,0 +1822,1966-12-06 16:42:00,0 +7370,1968-06-06 21:07:00,0 +8076,1966-11-24 22:53:00,0 +8653,1965-12-06 05:42:00,0 +4910,1968-11-21 03:25:00,0 +5557,1969-07-04 22:12:00,0 +9930,1968-02-11 19:47:00,0 +7880,1965-11-02 15:33:00,0 +9755,1969-01-05 13:57:00,0 +6690,1966-03-04 10:24:00,0 +4098,1969-02-24 00:11:00,0 +1784,1968-04-03 03:56:00,0 +9923,1969-08-30 23:31:00,0 +1450,1969-10-23 15:24:00,0 +2859,1968-01-17 21:16:00,0 +1941,1966-03-19 05:18:00,0 +6918,1969-05-19 12:09:00,0 +4550,1969-12-27 06:12:00,0 +470,1969-01-04 23:59:00,0 +8565,1965-07-23 06:55:00,0 +346,1969-01-13 02:18:00,0 +6749,1965-12-16 05:30:00,0 +5345,1965-05-03 00:52:00,0 +365,1966-11-28 06:02:00,0 +5268,1965-03-16 07:27:00,0 +9928,1965-03-05 05:10:00,0 +3198,1965-03-06 15:27:00,0 +2441,1968-10-30 01:09:00,0 +7915,1968-02-10 23:58:00,0 +6790,1967-01-06 21:56:00,0 +8424,1969-09-24 09:52:00,0 +7882,1969-06-24 02:20:00,0 +7346,1966-09-13 06:20:00,0 +8839,1968-11-12 04:42:00,0 +6495,1969-11-09 04:00:00,0 +1878,1969-01-27 00:40:00,0 +5015,1968-11-05 00:32:00,0 +2203,1969-05-01 21:35:00,0 +8301,1966-05-07 20:47:00,0 +6985,1969-07-08 21:43:00,0 +9010,1966-04-06 00:54:00,0 +4352,1967-07-13 01:47:00,0 +2454,1966-09-24 12:26:00,0 +2301,1966-03-25 20:45:00,0 +7836,1967-12-21 05:33:00,0 +3466,1966-12-22 16:12:00,0 +3984,1967-12-21 15:04:00,0 +7509,1967-12-30 08:44:00,0 +4454,1967-12-22 20:48:00,0 +8916,1968-02-19 04:33:00,0 +7241,1968-02-24 21:19:00,0 +5872,1965-07-09 22:52:00,0 +659,1966-04-10 09:19:00,0 +2257,1968-07-07 14:11:00,0 +6713,1966-05-26 12:40:00,0 +627,1969-06-26 20:53:00,0 +7041,1968-07-29 03:42:00,0 +5612,1969-10-08 20:04:00,0 +5448,1967-11-11 06:26:00,0 +6780,1967-02-12 00:02:00,0 +5641,1965-05-24 13:17:00,0 +3669,1966-09-25 15:45:00,0 +1472,1969-12-10 13:57:00,0 +4104,1969-02-21 20:48:00,0 +2645,1967-08-09 08:52:00,0 +2687,1966-04-01 00:08:00,0 +4172,1969-04-19 19:04:00,0 +3601,1969-12-03 18:38:00,0 +5458,1966-04-29 22:46:00,0 +4653,1965-06-19 13:48:00,0 +4787,1967-09-27 02:34:00,0 +765,1965-04-23 13:46:00,0 +1376,1969-10-09 05:43:00,0 +4236,1969-03-27 15:14:00,0 +3583,1967-05-03 00:23:00,0 +9624,1968-03-19 11:40:00,0 +7334,1965-01-13 04:49:00,0 +4077,1968-05-23 19:14:00,0 +4833,1968-07-07 01:04:00,0 +1710,1965-04-28 15:11:00,0 +6014,1965-02-05 23:45:00,0 +6446,1968-05-30 12:41:00,0 +6611,1965-07-27 01:40:00,0 +9815,1967-12-31 19:41:00,0 +2289,1965-05-28 15:49:00,0 +5405,1966-12-11 22:51:00,0 +6437,1965-04-10 16:38:00,0 +3901,1969-04-30 01:08:00,0 +8083,1966-10-13 00:38:00,0 +3092,1967-03-20 13:45:00,0 +4060,1966-12-30 11:14:00,0 +1803,1967-09-15 02:47:00,0 +6247,1969-09-02 01:12:00,0 +5036,1969-05-19 01:20:00,0 +3253,1967-07-15 13:55:00,0 +2991,1969-09-07 06:39:00,0 +6374,1966-01-07 09:31:00,0 +8184,1966-08-29 01:00:00,0 +8767,1968-06-12 10:08:00,0 +8032,1966-08-16 22:53:00,0 +7515,1968-12-27 20:56:00,0 +8104,1968-09-17 00:06:00,0 +5279,1969-10-10 13:27:00,0 +2508,1967-06-15 23:40:00,0 +3472,1968-02-11 01:32:00,0 +141,1968-08-19 11:34:00,0 +936,1967-05-12 12:42:00,0 +8642,1965-11-27 07:41:00,0 +9821,1968-07-12 16:36:00,0 +1554,1968-06-25 21:58:00,0 +4358,1969-04-12 04:43:00,0 +5883,1965-02-23 02:00:00,0 +1221,1969-01-16 01:41:00,0 +1061,1969-07-13 00:55:00,0 +6233,1967-11-02 10:41:00,0 +8429,1969-08-23 10:26:00,0 +5702,1968-02-27 14:21:00,0 +9565,1968-02-12 06:28:00,0 +1646,1968-06-28 05:53:00,0 +5299,1966-02-27 05:25:00,0 +833,1966-11-06 02:53:00,0 +9842,1969-08-13 16:25:00,0 +1056,1965-05-11 07:17:00,0 +8962,1966-09-26 17:49:00,0 +1883,1967-07-24 05:40:00,0 +1455,1969-01-30 01:10:00,0 +7249,1966-10-26 20:30:00,0 +5456,1969-10-01 03:43:00,0 +9148,1967-06-15 15:23:00,0 +2527,1968-09-23 16:58:00,0 +6457,1969-08-07 08:21:00,0 +9011,1969-06-13 07:28:00,0 +3392,1966-07-11 10:08:00,0 +9792,1968-03-04 00:38:00,0 +149,1965-08-11 20:20:00,0 +2142,1968-08-26 21:44:00,0 +1399,1968-06-20 19:59:00,0 +7480,1965-09-08 11:25:00,0 +7453,1966-01-10 12:01:00,0 +2875,1966-11-24 10:16:00,0 +376,1966-12-26 05:16:00,0 +6958,1967-09-05 22:50:00,0 +4227,1965-04-16 21:22:00,0 +6757,1969-07-22 12:38:00,0 +6666,1969-06-05 22:56:00,0 +4026,1969-02-15 15:24:00,0 +6218,1965-11-09 09:19:00,0 +4132,1969-08-13 10:55:00,0 +36,1969-09-25 14:06:00,0 +8233,1967-08-02 20:30:00,0 +111,1967-05-06 04:22:00,0 +1086,1969-07-08 09:49:00,0 +8005,1965-06-28 12:58:00,0 +439,1965-10-14 11:28:00,0 +8149,1967-06-17 21:32:00,0 +6858,1969-01-09 14:05:00,0 +5451,1965-10-13 16:11:00,0 +9649,1969-07-10 09:07:00,0 +8202,1968-03-22 03:27:00,0 +5738,1967-11-28 16:27:00,0 +3764,1965-06-14 17:02:00,0 +1869,1965-10-11 14:33:00,0 +612,1965-04-23 22:31:00,0 +4586,1965-03-10 23:40:00,0 +1949,1965-12-01 05:00:00,0 +8550,1969-12-21 05:05:00,0 +8324,1969-07-24 18:01:00,0 +4064,1968-08-22 19:06:00,0 +2483,1965-09-22 18:22:00,0 +2186,1966-07-25 06:57:00,0 +1875,1967-10-23 06:38:00,0 +1634,1966-03-10 23:39:00,0 +8088,1967-07-06 16:11:00,0 +7833,1966-04-06 17:01:00,0 +8466,1969-03-06 10:59:00,0 +4519,1969-02-06 16:59:00,0 +5692,1969-01-23 16:49:00,0 +8452,1965-10-14 15:31:00,0 +6678,1966-02-08 20:32:00,0 +4720,1969-11-22 03:14:00,0 +463,1965-08-27 14:19:00,0 +5523,1967-08-10 20:47:00,0 +4819,1969-12-24 01:58:00,0 +3442,1968-03-05 01:12:00,0 +9323,1968-08-23 07:57:00,0 +7916,1966-12-11 08:55:00,0 +450,1969-12-06 19:37:00,0 +561,1965-04-03 19:20:00,0 +8309,1969-01-12 10:14:00,0 +6216,1967-06-30 20:07:00,0 +7496,1968-02-14 20:26:00,0 +2487,1969-04-15 23:52:00,0 +2049,1969-12-18 04:27:00,0 +1436,1965-02-26 03:29:00,0 +7570,1968-01-17 15:50:00,0 +180,1969-01-04 04:52:00,0 +6853,1965-01-28 16:21:00,0 +7243,1966-01-06 04:47:00,0 +466,1968-08-31 17:46:00,0 +138,1967-10-01 09:07:00,0 +7174,1965-04-03 13:30:00,0 +1652,1968-10-09 08:46:00,0 +4529,1966-07-25 08:46:00,0 +3256,1969-11-27 02:27:00,0 +8847,1968-04-29 06:43:00,0 +4891,1969-10-07 02:00:00,0 +3312,1965-02-07 19:35:00,0 +1684,1965-01-20 14:23:00,0 +1388,1969-12-21 10:16:00,0 +8354,1967-05-12 00:10:00,0 +1925,1968-07-21 07:20:00,0 +1545,1969-12-22 01:13:00,0 +8076,1966-10-03 16:55:00,0 +6698,1968-09-03 02:52:00,0 +1898,1967-02-08 07:57:00,0 +7346,1965-11-08 09:35:00,0 +141,1966-07-24 05:23:00,0 +3801,1968-04-11 00:13:00,0 +9037,1965-11-08 13:24:00,0 +7516,1966-09-28 18:30:00,0 +1904,1968-12-23 03:24:00,0 +6895,1966-04-17 23:14:00,0 +166,1967-08-14 05:26:00,0 +6168,1967-12-07 19:27:00,0 +4757,1967-07-05 06:08:00,0 +4208,1969-02-02 13:34:00,0 +2883,1967-12-14 23:48:00,0 +911,1968-12-09 01:54:00,0 +321,1966-03-01 06:33:00,0 +3611,1965-02-21 09:04:00,0 +530,1967-09-18 03:25:00,0 +6954,1967-05-16 20:11:00,0 +8958,1967-08-29 19:48:00,0 +8588,1969-02-18 00:28:00,0 +6908,1965-08-27 02:19:00,0 +2485,1969-04-07 09:52:00,0 +8929,1969-10-09 04:47:00,0 +1105,1967-01-28 12:09:00,0 +8048,1968-01-15 23:54:00,0 +1445,1967-09-25 21:23:00,0 +9526,1969-02-13 01:59:00,0 +7526,1966-11-04 04:32:00,0 +6389,1968-03-25 16:59:00,0 +4439,1966-06-06 06:12:00,0 +3529,1967-09-23 15:13:00,0 +8842,1969-11-24 23:06:00,0 +1502,1968-04-01 15:38:00,0 +1212,1969-03-17 02:38:00,0 +4823,1968-06-13 04:27:00,0 +5998,1969-01-28 08:19:00,0 +1082,1968-10-03 05:23:00,0 +8533,1968-01-16 04:17:00,0 +8813,1968-03-25 05:41:00,0 +3054,1966-10-19 22:37:00,0 +2163,1965-08-28 17:12:00,0 +5337,1969-08-15 17:04:00,0 +2917,1967-08-15 10:52:00,0 +8728,1968-02-05 11:38:00,0 +7819,1966-11-04 09:58:00,0 +3101,1967-02-17 23:55:00,0 +374,1966-03-26 23:04:00,0 +4726,1966-04-27 05:37:00,0 +558,1968-05-27 17:24:00,0 +2830,1966-10-02 14:28:00,0 +4281,1967-10-30 06:28:00,0 +494,1968-09-10 13:28:00,0 +4959,1968-01-20 09:57:00,0 +6378,1966-08-18 07:07:00,0 +3428,1967-08-30 05:29:00,0 +6881,1969-11-04 09:53:00,0 +7512,1968-08-17 10:07:00,0 +447,1965-01-06 08:31:00,0 +9855,1969-08-31 22:19:00,0 +1160,1965-12-22 01:21:00,0 +4130,1967-12-12 11:03:00,0 +6727,1969-02-10 05:18:00,0 +3616,1965-02-06 21:03:00,0 +7251,1967-12-22 11:06:00,0 +7350,1967-07-21 12:32:00,0 +2760,1969-06-16 10:30:00,0 +5731,1968-01-03 17:36:00,0 +5589,1966-08-06 22:40:00,0 +4316,1966-03-14 14:25:00,0 +1676,1969-05-28 01:42:00,0 +4661,1968-06-23 04:40:00,0 +9209,1966-10-04 07:20:00,0 +3469,1968-12-29 10:51:00,0 +4977,1967-08-07 19:53:00,0 +5720,1966-02-04 19:33:00,0 +8082,1969-07-05 08:45:00,0 +3009,1966-12-30 22:49:00,0 +1451,1968-11-19 09:03:00,0 +7818,1968-08-02 00:08:00,0 +3397,1966-04-17 05:21:00,0 +1247,1967-07-23 17:57:00,0 +2415,1969-11-09 02:04:00,0 +1708,1969-01-25 11:17:00,0 +6889,1966-08-19 10:02:00,0 +6376,1967-09-05 08:03:00,0 +320,1965-09-19 15:08:00,0 +2470,1967-12-21 01:36:00,0 +8508,1965-10-24 02:49:00,0 +5227,1967-09-17 02:42:00,0 +1365,1965-01-27 18:28:00,0 +1197,1968-07-24 23:13:00,0 +8784,1968-01-07 05:54:00,0 +5173,1965-07-11 19:39:00,0 +8966,1967-05-25 05:21:00,0 +1630,1965-03-28 10:54:00,0 +4460,1967-01-28 04:28:00,0 +1779,1966-01-03 16:33:00,0 +8141,1967-08-26 03:41:00,0 +5057,1967-01-21 22:11:00,0 +3820,1969-01-17 19:31:00,0 +8620,1966-03-07 05:30:00,0 +1517,1965-10-06 09:18:00,0 +854,1968-03-25 01:05:00,0 +8767,1966-10-10 01:46:00,0 +2569,1969-05-25 07:48:00,0 +6795,1969-07-31 18:12:00,0 +6197,1969-05-12 08:03:00,0 +9800,1965-12-04 03:45:00,0 +724,1965-12-21 12:16:00,0 +8502,1965-01-17 06:45:00,0 +3455,1966-06-26 14:36:00,0 +3626,1967-06-13 00:04:00,0 +1299,1966-04-17 12:27:00,0 +4736,1967-08-05 10:37:00,0 +4772,1966-09-05 02:09:00,0 +6763,1965-12-24 13:13:00,0 +8602,1966-12-04 19:53:00,0 +5673,1965-10-14 11:37:00,0 +7590,1966-01-22 10:11:00,0 +9439,1969-12-03 17:43:00,0 +1148,1968-01-14 10:00:00,0 +3068,1968-07-22 10:53:00,0 +6036,1967-08-25 19:36:00,0 +7346,1968-01-12 13:41:00,0 +2801,1965-08-13 05:07:00,0 +8342,1966-09-03 03:51:00,0 +2995,1965-04-27 22:56:00,0 +7916,1968-06-03 12:30:00,0 +6304,1968-12-20 07:59:00,0 +9896,1969-01-11 15:49:00,0 +8327,1965-02-13 05:03:00,0 +5782,1966-10-21 12:28:00,0 +5337,1969-04-08 13:44:00,0 +3583,1969-06-18 15:24:00,0 +9890,1966-02-04 19:56:00,0 +7181,1969-12-03 21:21:00,0 +8690,1967-03-10 20:55:00,0 +3466,1969-09-18 08:29:00,0 +9317,1968-08-24 11:31:00,0 +1487,1968-11-18 10:47:00,0 +5579,1968-04-23 23:44:00,0 +7981,1966-08-05 17:08:00,0 +6301,1967-11-19 09:49:00,0 +9732,1965-04-10 02:31:00,0 +3158,1966-06-02 03:48:00,0 +1680,1966-12-20 08:31:00,0 +4705,1966-08-28 13:51:00,0 +3860,1966-07-03 13:33:00,0 +4394,1967-01-11 04:52:00,0 +4708,1967-08-13 03:27:00,0 +4602,1969-03-24 16:20:00,0 +484,1969-05-21 06:58:00,0 +3972,1967-07-24 04:21:00,0 +3715,1966-01-31 10:11:00,0 +4453,1968-03-12 09:03:00,0 +6870,1969-10-29 07:44:00,0 +1581,1966-09-30 06:15:00,0 +8601,1967-12-14 02:32:00,0 +6372,1966-07-31 21:34:00,0 +9899,1969-06-16 17:53:00,0 +6978,1968-02-26 23:11:00,0 +2177,1969-07-24 15:20:00,0 +5882,1967-11-02 22:37:00,0 +7249,1969-06-11 13:26:00,0 +6880,1966-04-14 00:35:00,0 +3211,1968-04-01 15:24:00,0 +8378,1968-12-14 14:47:00,0 +549,1968-02-18 03:37:00,0 +2278,1965-02-14 01:33:00,0 +8039,1967-09-29 21:37:00,0 +5759,1965-11-17 11:25:00,0 +3198,1966-09-21 18:02:00,0 +6070,1969-04-11 08:11:00,0 +7384,1968-06-04 11:43:00,0 +9081,1966-08-17 21:09:00,0 +4118,1968-09-26 10:46:00,0 +9876,1969-07-03 02:56:00,0 +7964,1967-08-27 05:16:00,0 +8830,1967-03-16 19:44:00,0 +9311,1967-11-22 11:25:00,0 +2314,1968-01-20 01:56:00,0 +7799,1968-11-13 19:05:00,0 +7318,1965-12-23 13:29:00,0 +2095,1966-09-25 08:12:00,0 +2436,1965-03-13 21:32:00,0 +1366,1967-09-13 08:04:00,0 +9746,1969-11-15 01:37:00,0 +9912,1965-07-07 10:27:00,0 +859,1969-09-28 12:14:00,0 +5780,1966-09-08 08:55:00,0 +5052,1968-06-22 06:28:00,0 +979,1966-11-14 17:53:00,0 +3373,1966-02-17 14:27:00,0 +8753,1967-08-13 18:08:00,0 +736,1968-04-26 17:22:00,0 +5676,1967-03-24 09:35:00,0 +2508,1965-08-11 00:13:00,0 +9765,1967-04-20 08:30:00,0 +5368,1968-08-02 00:48:00,0 +6100,1965-12-09 01:26:00,0 +362,1968-05-04 16:53:00,0 +173,1968-03-14 21:58:00,0 +6654,1969-03-11 12:10:00,0 +856,1966-09-05 12:21:00,0 +2370,1965-12-14 03:59:00,0 +6273,1965-09-10 00:11:00,0 +5563,1969-06-14 21:54:00,0 +5113,1966-04-30 21:58:00,0 +7630,1966-04-04 09:58:00,0 +4102,1967-05-30 05:49:00,0 +6509,1967-07-11 09:05:00,0 +7410,1966-12-28 19:45:00,0 +1382,1968-09-27 14:39:00,0 +5921,1966-07-06 02:41:00,0 +3608,1966-02-25 03:05:00,0 +2036,1968-02-28 11:02:00,0 +1857,1967-02-27 00:35:00,0 +6526,1966-05-29 01:16:00,0 +3699,1968-10-05 05:19:00,0 +797,1968-09-09 00:17:00,0 +3392,1969-08-14 05:59:00,0 +9176,1969-04-10 01:41:00,0 +827,1967-09-11 12:46:00,0 +3458,1967-01-30 15:28:00,0 +521,1965-08-16 07:12:00,0 +1196,1966-04-25 01:45:00,0 +6471,1969-06-26 18:34:00,0 +8575,1968-10-20 20:58:00,0 +43,1965-02-24 00:03:00,0 +3924,1965-11-08 06:30:00,0 +5477,1965-05-11 22:40:00,0 +5969,1965-05-18 19:23:00,0 +8713,1969-03-11 20:36:00,0 +3691,1967-10-06 08:29:00,0 +8888,1965-06-30 15:16:00,0 +7302,1968-06-17 12:16:00,0 +5608,1968-09-27 20:28:00,0 +7243,1966-05-23 08:50:00,0 +7976,1968-09-13 00:26:00,0 +9507,1965-01-13 10:41:00,0 +6815,1966-01-24 13:21:00,0 +5549,1968-10-23 00:30:00,0 +3903,1968-04-16 16:23:00,0 +7708,1969-10-18 17:16:00,0 +8688,1966-05-05 14:23:00,0 +6215,1966-07-07 20:15:00,0 +6143,1968-03-29 03:39:00,0 +3094,1969-10-11 02:51:00,0 +4686,1969-02-18 03:28:00,0 +1589,1967-05-06 06:51:00,0 +8789,1967-05-15 23:37:00,0 +7949,1968-07-26 15:51:00,0 +6585,1969-06-14 03:46:00,0 +578,1969-11-10 16:06:00,0 +1229,1965-05-15 16:38:00,0 +9870,1966-01-29 20:17:00,0 +5039,1968-11-21 09:09:00,0 +8376,1969-03-17 12:19:00,0 +7106,1967-11-01 10:48:00,0 +6089,1968-05-17 10:12:00,0 +1706,1969-01-21 23:57:00,0 +4903,1966-08-26 08:10:00,0 +1693,1965-11-20 07:54:00,0 +654,1967-03-21 05:29:00,0 +8447,1965-07-01 14:23:00,0 +2012,1965-12-31 06:24:00,0 +5853,1966-05-31 13:02:00,0 +8250,1965-08-05 09:26:00,0 +818,1968-02-18 10:50:00,0 +7149,1968-03-27 09:47:00,0 +7750,1965-12-14 09:12:00,0 +244,1967-07-20 11:54:00,0 +3229,1966-01-26 20:55:00,0 +51,1967-06-23 06:56:00,0 +102,1965-03-22 00:02:00,0 +6387,1968-05-13 18:14:00,0 +1822,1966-09-22 10:27:00,0 +4704,1966-10-28 16:58:00,0 +1132,1967-01-24 07:19:00,0 +6583,1968-10-28 03:16:00,0 +871,1968-08-08 00:44:00,0 +5023,1969-08-10 12:17:00,0 +8706,1969-06-29 19:23:00,0 +8256,1969-09-20 20:09:00,0 +1133,1969-09-28 02:10:00,0 +1215,1968-05-14 18:03:00,0 +771,1969-01-25 23:13:00,0 +5828,1967-02-07 05:36:00,0 +2734,1967-10-15 17:13:00,0 +2462,1968-09-25 05:27:00,0 +8908,1967-12-04 20:22:00,0 +1557,1967-09-04 19:02:00,0 +9219,1965-11-04 17:13:00,0 +6864,1968-01-25 02:59:00,0 +2075,1967-09-02 06:38:00,0 +4384,1967-05-23 07:38:00,0 +574,1967-09-15 15:35:00,0 +6975,1966-03-23 04:39:00,0 +1037,1967-09-01 18:46:00,0 +3220,1969-08-07 22:55:00,0 +969,1965-09-12 05:47:00,0 +6990,1966-04-20 07:22:00,0 +5814,1966-01-15 20:34:00,0 +688,1965-03-31 13:57:00,0 +5999,1967-09-19 12:09:00,0 +7011,1968-12-30 10:06:00,0 +1520,1968-07-23 18:04:00,0 +877,1968-06-20 10:28:00,0 +7123,1968-07-08 10:57:00,0 +6188,1965-01-19 02:36:00,0 +7786,1968-12-11 19:57:00,0 +8212,1966-02-19 02:54:00,0 +2056,1965-05-19 07:36:00,0 +632,1967-03-20 04:51:00,0 +2356,1969-10-02 13:44:00,0 +8038,1965-09-21 17:24:00,0 +7086,1965-06-14 15:47:00,0 +1859,1968-01-01 13:51:00,0 +1514,1965-03-17 08:38:00,0 +1033,1969-08-09 12:01:00,0 +6070,1965-10-29 21:07:00,0 +9766,1965-07-05 09:51:00,0 +3277,1968-01-18 07:14:00,0 +4257,1968-11-14 00:49:00,0 +3775,1966-01-16 17:24:00,0 +7933,1965-03-01 08:42:00,0 +4538,1968-11-23 18:54:00,0 +8349,1966-12-09 23:18:00,0 +77,1965-09-20 20:21:00,0 +2580,1965-04-24 02:11:00,0 +6808,1965-11-15 23:48:00,0 +6210,1967-01-21 07:41:00,0 +632,1965-09-24 05:43:00,0 +7077,1965-11-23 12:43:00,0 +5974,1966-07-07 21:10:00,0 +6052,1967-03-07 09:15:00,0 +1670,1969-03-18 03:47:00,0 +649,1965-03-26 08:03:00,0 +4048,1969-06-29 22:21:00,0 +1957,1966-04-14 00:14:00,0 +1549,1965-11-17 07:06:00,0 +8953,1969-10-30 20:48:00,0 +5350,1966-10-01 14:22:00,0 +234,1969-11-20 01:33:00,0 +876,1969-06-22 01:52:00,0 +195,1966-03-12 20:53:00,0 +4472,1968-03-22 03:43:00,0 +4414,1967-02-24 00:12:00,0 +3195,1968-12-09 14:21:00,0 +2463,1968-10-13 19:00:00,0 +1912,1969-02-08 19:18:00,0 +7657,1966-05-12 12:23:00,0 +6389,1969-10-13 17:48:00,0 +8910,1965-10-25 15:50:00,0 +7242,1966-10-09 05:48:00,0 +8954,1968-09-06 05:33:00,0 +6283,1966-12-12 08:00:00,0 +2550,1965-05-27 14:34:00,0 +935,1966-09-10 13:53:00,0 +817,1965-04-15 00:49:00,0 +2482,1969-09-28 02:13:00,0 +6970,1966-04-30 09:11:00,0 +5142,1965-02-13 03:23:00,0 +2185,1968-01-30 19:04:00,0 +5287,1969-12-06 06:45:00,0 +2259,1968-03-30 11:02:00,0 +2804,1968-10-06 07:26:00,0 +4194,1966-11-03 00:19:00,0 +136,1968-03-11 05:25:00,0 +4517,1966-03-23 07:43:00,0 +1333,1968-01-11 16:23:00,0 +6625,1969-04-24 13:58:00,0 +5451,1966-01-21 06:59:00,0 +8865,1965-11-26 18:57:00,0 +9187,1969-06-16 16:51:00,0 +6942,1966-09-09 12:16:00,0 +7066,1967-04-14 17:20:00,0 +3930,1965-04-23 15:28:00,0 +7365,1969-03-20 03:41:00,0 +3157,1965-09-08 05:16:00,0 +3453,1965-10-05 12:57:00,0 +3814,1968-02-04 19:13:00,0 +1177,1968-07-21 02:38:00,0 +4009,1969-12-20 13:58:00,0 +3258,1969-05-11 16:32:00,0 +1257,1967-11-02 11:27:00,0 +4074,1969-09-07 23:15:00,0 +9659,1967-03-18 22:28:00,0 +1634,1967-11-20 18:57:00,0 +5650,1969-04-24 14:02:00,0 +8236,1968-11-13 19:03:00,0 +2887,1969-10-10 22:56:00,0 +5176,1969-06-29 19:41:00,0 +9522,1967-07-16 06:30:00,0 +9974,1968-03-02 09:20:00,0 +5483,1969-02-13 00:14:00,0 +9758,1968-01-02 14:21:00,0 +3643,1968-03-08 20:11:00,0 +6418,1968-10-30 18:32:00,0 +2237,1966-06-14 15:28:00,0 +1187,1968-12-10 08:33:00,0 +1872,1965-12-04 19:15:00,0 +2585,1969-09-01 00:37:00,0 +3368,1966-04-04 10:29:00,0 +3805,1966-05-25 06:10:00,0 +6845,1966-07-26 20:55:00,0 +5675,1969-05-26 17:46:00,0 +7221,1969-06-22 02:10:00,0 +9958,1968-07-21 05:21:00,0 +4726,1969-10-14 11:12:00,0 +5439,1969-04-15 09:19:00,0 +8318,1966-12-30 02:51:00,0 +1327,1969-11-02 23:16:00,0 +829,1965-12-25 21:53:00,0 +5078,1968-04-14 11:01:00,0 +6559,1967-07-14 15:47:00,0 +3391,1969-09-08 09:03:00,0 +7237,1967-04-11 23:19:00,0 +8267,1966-02-01 02:50:00,0 +756,1968-02-26 18:20:00,0 +9708,1966-05-06 03:25:00,0 +3181,1966-04-16 08:18:00,0 +7847,1966-07-13 14:11:00,0 +8297,1966-05-03 10:34:00,0 +7722,1967-01-11 03:36:00,0 +9219,1966-12-17 23:28:00,0 +3710,1969-04-23 23:23:00,0 +6597,1967-06-01 03:32:00,0 +9693,1967-05-28 23:45:00,0 +2161,1969-02-26 05:05:00,0 +363,1966-09-02 11:56:00,0 +311,1967-02-03 13:14:00,0 +2198,1966-07-08 04:37:00,0 +8051,1967-12-26 22:11:00,0 +2857,1968-12-24 06:05:00,0 +6183,1966-06-29 08:46:00,0 +8729,1966-10-28 09:23:00,0 +9405,1969-04-26 15:47:00,0 +2044,1969-10-29 18:31:00,0 +8495,1969-05-18 05:21:00,0 +7428,1968-03-08 11:26:00,0 +2645,1968-08-23 20:48:00,0 +4492,1969-08-04 00:58:00,0 +968,1969-08-12 21:40:00,0 +1590,1966-07-12 07:50:00,0 +9197,1968-11-30 18:07:00,0 +2751,1967-05-19 10:31:00,0 +6390,1969-09-21 00:57:00,0 +4723,1969-11-03 00:14:00,0 +2443,1969-09-07 21:19:00,0 +6231,1967-01-30 17:36:00,0 +7802,1966-12-21 13:14:00,0 +4704,1966-01-01 03:39:00,0 +1085,1969-10-07 04:49:00,0 +7432,1967-12-21 22:51:00,0 +2455,1967-09-22 05:30:00,0 +1991,1969-02-22 16:18:00,0 +6782,1967-02-27 09:23:00,0 +3400,1967-11-27 13:15:00,0 +5738,1969-09-04 01:03:00,0 +9747,1966-06-14 16:44:00,0 +122,1966-02-12 02:50:00,0 +9709,1969-09-08 16:34:00,0 +9412,1966-01-10 11:28:00,0 +9615,1969-01-25 09:06:00,0 +1955,1968-08-10 06:16:00,0 +2635,1969-04-16 14:40:00,0 +5690,1969-04-15 22:43:00,0 +115,1966-04-01 23:59:00,0 +651,1966-10-21 21:56:00,0 +2864,1969-05-10 00:31:00,0 +6364,1966-12-27 01:07:00,0 +1313,1965-06-02 05:27:00,0 +908,1965-10-15 23:38:00,0 +2519,1966-04-07 16:00:00,0 +3190,1965-10-24 16:29:00,0 +7144,1966-05-06 12:41:00,0 +7813,1967-03-06 21:30:00,0 +7971,1967-05-23 00:22:00,0 +9041,1967-05-05 07:41:00,0 +7160,1965-10-16 08:28:00,0 +5464,1969-08-20 08:53:00,0 +5389,1969-04-07 20:10:00,0 +7085,1965-06-03 10:20:00,0 +5770,1968-03-30 21:12:00,0 +9335,1968-05-27 08:23:00,0 +6958,1967-10-06 05:55:00,0 +8618,1966-08-25 06:57:00,0 +9037,1969-05-14 12:29:00,0 +4787,1966-10-11 12:35:00,0 +3152,1965-05-10 10:55:00,0 +2481,1967-11-11 00:40:00,0 +8658,1965-06-24 21:51:00,0 +4303,1969-04-14 03:21:00,0 +8130,1966-01-11 05:01:00,0 +7812,1968-06-25 06:10:00,0 +7926,1969-12-22 06:32:00,0 +4302,1969-06-19 15:35:00,0 +6129,1967-12-18 13:26:00,0 +3872,1965-09-09 11:03:00,0 +8904,1968-12-05 19:05:00,0 +5981,1968-06-06 03:35:00,0 +8952,1968-08-03 00:55:00,0 +2147,1969-02-27 06:13:00,0 +5125,1968-06-13 04:55:00,0 +8388,1965-04-14 05:03:00,0 +6722,1965-03-17 04:25:00,0 +8950,1966-02-05 05:41:00,0 +793,1969-03-14 00:19:00,0 +9468,1968-09-03 03:09:00,0 +2787,1967-06-21 05:18:00,0 +6928,1969-02-24 13:52:00,0 +7936,1967-12-13 07:15:00,0 +9809,1966-07-27 08:14:00,0 +9084,1966-10-20 01:09:00,0 +1094,1968-01-27 13:40:00,0 +173,1969-07-15 19:12:00,0 +8151,1969-04-07 21:53:00,0 +7859,1969-07-04 09:38:00,0 +8466,1966-10-27 05:42:00,0 +5249,1968-07-15 13:23:00,0 +3860,1966-10-21 04:40:00,0 +5256,1969-09-03 16:30:00,0 +1539,1966-07-05 06:07:00,0 +9600,1965-07-19 06:22:00,0 +4366,1965-07-08 06:28:00,0 +3417,1965-12-22 11:58:00,0 +4647,1967-04-26 16:22:00,0 +5261,1967-02-28 19:33:00,0 +1792,1966-03-11 19:17:00,0 +5369,1968-08-20 16:03:00,0 +9466,1968-12-08 09:20:00,0 +9556,1967-10-22 20:46:00,0 +7314,1967-12-04 23:00:00,0 +1872,1967-01-29 09:18:00,0 +7384,1965-09-11 08:37:00,0 +5358,1969-11-25 19:23:00,0 +6272,1966-01-16 11:55:00,0 +3304,1968-02-01 14:57:00,0 +6772,1966-06-16 09:24:00,0 +8806,1966-03-05 15:35:00,0 +2756,1966-11-08 19:41:00,0 +9607,1967-01-19 09:37:00,0 +7908,1969-02-07 01:41:00,0 +5908,1967-06-13 19:36:00,0 +4039,1965-07-05 02:42:00,0 +1093,1966-08-18 22:52:00,0 +4783,1967-04-01 15:24:00,0 +6101,1968-03-07 18:55:00,0 +7432,1966-07-18 20:49:00,0 +2530,1966-09-13 06:26:00,0 +7860,1967-08-28 18:58:00,0 +5664,1965-07-11 07:22:00,0 +4679,1967-01-18 14:02:00,0 +9742,1966-08-04 06:13:00,0 +9370,1965-02-10 09:47:00,0 +6735,1967-04-01 09:23:00,0 +525,1968-02-27 18:45:00,0 +8260,1966-07-02 04:21:00,0 +2485,1968-02-19 16:00:00,0 +8078,1969-06-11 22:33:00,0 +1619,1969-11-26 15:33:00,0 +7963,1968-03-17 07:54:00,0 +5074,1968-09-10 03:24:00,0 +6952,1967-12-12 19:42:00,0 +8921,1968-01-13 00:38:00,0 +785,1968-12-12 03:50:00,0 +4383,1969-05-13 21:22:00,0 +7671,1967-03-19 17:28:00,0 +6049,1969-01-23 15:07:00,0 +6386,1966-08-21 23:36:00,0 +7549,1966-01-18 22:33:00,0 +9504,1967-10-23 03:44:00,0 +601,1968-01-06 11:46:00,0 +2387,1966-10-22 18:40:00,0 +7035,1968-05-10 09:14:00,0 +3000,1967-12-16 16:23:00,0 +3918,1968-08-15 03:37:00,0 +1520,1968-02-26 15:45:00,0 +3327,1965-09-28 08:02:00,0 +3592,1969-12-24 04:56:00,0 +2521,1969-04-29 06:52:00,0 +2249,1965-09-19 18:13:00,0 +7955,1965-08-05 10:55:00,0 +3967,1966-12-26 18:57:00,0 +4187,1966-11-26 22:15:00,0 +2748,1969-09-06 09:08:00,0 +325,1966-02-23 07:41:00,0 +447,1967-07-21 00:13:00,0 +9966,1967-10-20 07:00:00,0 +9793,1966-02-15 22:05:00,0 +5108,1967-10-17 03:02:00,0 +5836,1966-05-04 07:49:00,0 +9784,1966-03-12 09:34:00,0 +8136,1967-12-15 01:16:00,0 +5258,1965-08-18 18:56:00,0 +5858,1968-04-11 22:20:00,0 +7050,1968-11-04 01:52:00,0 +5127,1968-01-17 17:43:00,0 +6113,1966-09-16 01:23:00,0 +418,1965-04-28 04:15:00,0 +8326,1969-12-17 04:33:00,0 +8506,1967-12-06 08:29:00,0 +2047,1968-06-23 02:48:00,0 +2854,1966-12-09 08:01:00,0 +7415,1965-01-07 16:17:00,0 +2831,1967-10-17 07:53:00,0 +2253,1965-02-27 19:18:00,0 +1889,1965-04-13 11:52:00,0 +9419,1966-10-21 13:18:00,0 +5044,1967-04-09 14:08:00,0 +3278,1967-10-14 09:29:00,0 +3914,1969-11-30 11:01:00,0 +3326,1965-07-10 23:47:00,0 +5929,1968-08-15 17:01:00,0 +7621,1965-06-11 15:16:00,0 +6481,1968-12-23 14:02:00,0 +3556,1966-04-27 03:50:00,0 +1051,1966-01-02 14:58:00,0 +5888,1968-09-28 14:42:00,0 +55,1966-09-01 13:05:00,0 +5366,1968-11-13 08:14:00,0 +3474,1968-05-22 12:52:00,0 +3747,1969-11-11 16:04:00,0 +8171,1968-09-03 02:00:00,0 +7252,1967-09-27 08:24:00,0 +7934,1967-04-13 18:51:00,0 +5184,1965-06-14 11:43:00,0 +7366,1969-10-29 19:26:00,0 +6285,1966-09-15 22:45:00,0 +4847,1968-07-19 03:34:00,0 +8724,1968-02-16 04:58:00,0 +2561,1968-04-30 14:45:00,0 +6075,1967-10-13 03:57:00,0 +2895,1966-09-14 00:48:00,0 +5629,1966-06-22 13:29:00,0 +3159,1968-04-21 19:31:00,0 +9002,1965-07-03 18:04:00,0 +7113,1967-03-01 23:13:00,0 +2880,1966-11-30 07:40:00,0 +8742,1965-11-08 22:09:00,0 +5416,1969-03-09 14:56:00,0 +5591,1965-05-17 21:53:00,0 +5829,1966-12-06 09:50:00,0 +9435,1965-12-29 02:29:00,0 +1916,1968-09-21 06:36:00,0 +9231,1969-07-15 20:44:00,0 +7259,1967-08-30 18:00:00,0 +1394,1969-05-17 04:37:00,0 +8762,1969-01-12 18:28:00,0 +445,1969-01-20 07:31:00,0 +8815,1965-07-23 07:10:00,0 +4291,1966-12-25 17:39:00,0 +1369,1965-11-16 11:28:00,0 +6251,1965-06-24 02:26:00,0 +8469,1966-11-02 03:33:00,0 +3771,1965-12-25 15:48:00,0 +2589,1965-01-03 19:10:00,0 +4622,1969-09-26 06:55:00,0 +5490,1966-03-17 22:29:00,0 +8390,1967-10-12 03:22:00,0 +8704,1965-07-17 05:18:00,0 +42,1968-09-21 01:13:00,0 +1838,1967-06-14 21:15:00,0 +3426,1967-01-05 13:33:00,0 +5012,1967-02-16 01:39:00,0 +9720,1965-08-17 00:03:00,0 +3404,1965-12-18 11:43:00,0 +2611,1965-09-01 10:14:00,0 +2766,1969-07-27 07:20:00,0 +4300,1967-04-06 16:25:00,0 +8482,1969-02-11 01:35:00,0 +1933,1965-07-10 05:28:00,0 +9001,1968-07-26 15:25:00,0 +8629,1966-07-28 07:47:00,0 +6944,1968-11-15 21:43:00,0 +5129,1965-12-16 13:21:00,0 +9932,1965-10-16 07:10:00,0 +5071,1966-09-02 10:56:00,0 +8512,1967-07-14 06:06:00,0 +493,1968-08-26 08:36:00,0 +1436,1966-01-28 14:53:00,0 +4790,1965-09-25 10:21:00,0 +46,1966-01-04 17:09:00,0 +6664,1965-01-31 00:12:00,0 +7483,1965-10-06 09:29:00,0 +7316,1967-12-02 03:29:00,0 +8555,1969-04-28 16:17:00,0 +7384,1967-10-21 02:35:00,0 +6316,1968-05-28 19:01:00,0 +2042,1967-04-19 00:20:00,0 +1191,1965-07-30 06:00:00,0 +2144,1966-03-11 22:08:00,0 +4649,1967-08-10 10:47:00,0 +6163,1969-10-22 09:32:00,0 +4820,1965-09-16 20:57:00,0 +6901,1967-01-02 11:34:00,0 +1849,1968-04-28 18:56:00,0 +6530,1966-05-18 21:18:00,0 +2864,1966-05-29 10:08:00,0 +6150,1967-11-30 18:52:00,0 +6194,1968-10-08 22:08:00,0 +6379,1969-01-07 12:31:00,0 +8601,1968-07-06 19:55:00,0 +5153,1968-09-02 12:04:00,0 +5208,1965-03-12 17:18:00,0 +7465,1965-08-14 22:26:00,0 +6257,1966-12-04 20:03:00,0 +6172,1965-10-31 16:47:00,0 +170,1967-08-09 18:46:00,0 +9980,1967-10-09 18:15:00,0 +3967,1968-10-10 10:31:00,0 +9614,1965-01-26 19:56:00,0 +2572,1969-07-28 02:21:00,0 +4716,1967-08-08 23:00:00,0 +9633,1966-06-13 19:42:00,0 +5173,1968-02-26 08:34:00,0 +5572,1965-06-22 23:35:00,0 +6575,1965-12-06 01:46:00,0 +2016,1965-12-07 06:02:00,0 +575,1966-11-09 16:04:00,0 +349,1969-04-19 04:36:00,0 +2953,1967-12-20 06:07:00,0 +3030,1968-09-20 02:40:00,0 +9892,1968-11-30 09:03:00,0 +1725,1966-07-25 08:29:00,0 +1639,1965-01-11 19:44:00,0 +9401,1967-02-05 02:09:00,0 +5404,1969-09-17 21:10:00,0 +184,1965-02-09 07:16:00,0 +3282,1968-11-09 08:57:00,0 +5656,1967-11-17 05:40:00,0 +4787,1968-07-22 14:59:00,0 +7001,1965-01-14 06:21:00,0 +7439,1967-05-30 14:28:00,0 +7354,1968-12-30 09:52:00,0 +3796,1966-07-10 17:28:00,0 +8861,1968-03-05 04:23:00,0 +4851,1965-04-04 15:20:00,0 +6131,1966-01-16 22:21:00,0 +8219,1966-04-18 23:13:00,0 +1034,1966-07-29 04:06:00,0 +2720,1967-04-30 11:17:00,0 +3030,1965-04-03 21:03:00,0 +680,1965-11-09 17:27:00,0 +1789,1969-05-01 16:05:00,0 +9754,1967-01-29 11:31:00,0 +2286,1969-05-28 13:48:00,0 +7091,1966-03-11 03:33:00,0 +1429,1969-05-05 09:38:00,0 +1597,1967-08-06 09:32:00,0 +1511,1967-02-12 17:48:00,0 +5205,1966-02-01 12:40:00,0 +669,1967-07-30 23:31:00,0 +1696,1969-06-15 03:17:00,0 +51,1968-04-11 14:49:00,0 +4822,1968-05-30 08:51:00,0 +3903,1968-07-05 23:47:00,0 +7169,1966-01-18 06:17:00,0 +6738,1968-07-20 14:01:00,0 +7862,1968-12-29 04:48:00,0 +9361,1967-09-12 21:14:00,0 +531,1965-06-18 18:04:00,0 +587,1967-04-12 21:04:00,0 +3885,1968-07-12 06:19:00,0 +9520,1969-03-23 19:44:00,0 +6470,1965-06-11 04:19:00,0 +4967,1967-01-11 15:19:00,0 +9984,1969-10-20 07:54:00,0 +100,1969-10-16 17:30:00,0 +8665,1969-05-04 12:21:00,0 +6417,1966-09-25 01:18:00,0 +5156,1968-01-15 03:56:00,0 +4005,1969-07-03 23:37:00,0 +8715,1968-10-19 00:09:00,0 +6845,1967-10-28 19:38:00,0 +6815,1969-07-29 07:39:00,0 +6819,1969-10-24 13:10:00,0 +191,1969-04-09 18:42:00,0 +8022,1965-05-23 01:25:00,0 +2507,1966-12-09 17:36:00,0 +7741,1968-05-10 22:25:00,0 +5901,1966-02-25 17:31:00,0 +1855,1968-05-28 17:09:00,0 +3719,1969-06-24 08:08:00,0 +380,1965-07-07 23:23:00,0 +3070,1969-07-12 00:24:00,0 +3628,1968-01-20 21:04:00,0 +3101,1966-03-22 07:50:00,0 +2289,1967-03-08 17:16:00,0 +207,1966-08-30 17:21:00,0 +9172,1968-12-24 05:18:00,0 +3538,1969-04-14 22:53:00,0 +1580,1967-03-20 09:50:00,0 +161,1966-03-01 22:24:00,0 +232,1966-04-01 07:01:00,0 +3854,1967-09-11 06:36:00,0 +7532,1968-10-04 06:52:00,0 +1965,1968-10-18 05:08:00,0 +3,1966-04-12 04:33:00,0 +3152,1966-04-07 04:06:00,0 +8889,1966-01-20 05:22:00,0 +7670,1967-07-26 17:57:00,0 +4898,1965-01-31 19:54:00,0 +709,1967-12-10 08:57:00,0 +8433,1968-04-01 02:05:00,0 +4652,1965-01-22 14:32:00,0 +3486,1966-05-07 13:34:00,0 +5867,1969-03-29 09:52:00,0 +9759,1966-07-11 21:31:00,0 +5916,1966-02-18 09:50:00,0 +9595,1968-04-13 13:33:00,0 +6300,1967-04-20 06:06:00,0 +2283,1969-09-10 00:05:00,0 +3418,1967-11-13 20:50:00,0 +3784,1968-06-01 08:54:00,0 +1300,1967-05-04 16:14:00,0 +7846,1969-04-22 17:08:00,0 +4605,1968-08-22 19:10:00,0 +3903,1967-09-16 12:10:00,0 +2716,1968-08-19 18:55:00,0 +8661,1967-09-04 18:03:00,0 +3395,1968-04-01 11:51:00,0 +9087,1965-05-20 00:57:00,0 +7504,1965-07-08 07:45:00,0 +1167,1968-02-03 10:28:00,0 +8701,1966-02-28 23:52:00,0 +6501,1965-08-25 20:50:00,0 +4638,1968-04-10 10:16:00,0 +2941,1967-07-21 14:00:00,0 +7852,1967-02-05 12:49:00,0 +2235,1967-03-19 02:26:00,0 +6418,1965-03-24 07:15:00,0 +4215,1967-11-21 15:56:00,0 +4151,1967-12-16 07:14:00,0 +1769,1968-10-26 06:52:00,0 +1550,1969-04-16 15:58:00,0 +5380,1969-07-06 21:41:00,0 +6600,1968-01-18 01:58:00,0 +347,1968-12-10 14:46:00,0 +4355,1968-05-14 23:19:00,0 +3872,1968-01-26 16:14:00,0 +2506,1969-10-29 17:25:00,0 +5621,1969-05-20 08:34:00,0 +1907,1966-04-07 08:39:00,0 +7518,1965-01-15 15:17:00,0 +7699,1966-08-14 05:18:00,0 +4822,1969-08-20 12:49:00,0 +5457,1969-11-04 19:41:00,0 +6856,1969-12-15 04:43:00,0 +4569,1965-08-02 16:30:00,0 +7624,1969-03-24 10:47:00,0 +2841,1968-03-22 11:18:00,0 +4404,1969-07-08 19:45:00,0 +4958,1967-06-04 21:32:00,0 +431,1966-05-22 10:06:00,0 +395,1966-11-28 14:19:00,0 +163,1968-05-30 14:12:00,0 +9243,1968-04-29 04:53:00,0 +4074,1968-08-28 20:36:00,0 +3135,1968-06-21 22:53:00,0 +4445,1967-07-29 10:16:00,0 +1538,1968-09-02 15:42:00,0 +5477,1967-08-11 00:47:00,0 +342,1967-05-29 19:39:00,0 +6070,1966-09-18 00:07:00,0 +1560,1966-04-10 16:36:00,0 +1697,1969-11-04 09:04:00,0 +134,1967-08-20 23:38:00,0 +9047,1969-05-28 17:14:00,0 +3047,1968-03-23 00:19:00,0 +1070,1967-09-29 13:00:00,0 +4412,1968-02-23 01:11:00,0 +4889,1965-06-30 15:40:00,0 +6045,1967-01-20 02:42:00,0 +9274,1965-05-11 05:34:00,0 +3894,1967-08-09 16:34:00,0 +183,1967-05-23 22:46:00,0 +4011,1966-10-28 12:41:00,0 +1825,1966-04-02 00:36:00,0 +7949,1965-06-23 22:44:00,0 +8462,1965-08-14 23:13:00,0 +1068,1968-05-15 20:18:00,0 +7586,1966-10-15 05:39:00,0 +894,1966-08-17 18:24:00,0 +926,1968-09-12 12:19:00,0 +4089,1968-09-18 16:20:00,0 +7159,1968-06-23 06:21:00,0 +6969,1965-04-15 06:21:00,0 +7654,1967-04-16 23:28:00,0 +2687,1965-05-10 20:10:00,0 +7667,1967-01-30 10:58:00,0 +5855,1968-04-08 21:49:00,0 +2545,1967-07-08 15:18:00,0 +5945,1969-08-05 16:13:00,0 +1572,1966-05-25 14:11:00,0 +2018,1965-10-03 17:11:00,0 +9493,1969-12-06 19:22:00,0 +5706,1968-02-01 18:23:00,0 +5857,1967-02-18 10:14:00,0 +9627,1969-04-01 01:26:00,0 +4575,1966-07-31 07:07:00,0 +8432,1969-11-12 10:57:00,0 +2678,1969-11-01 01:45:00,0 +1619,1968-10-16 05:43:00,0 +4556,1969-08-25 14:56:00,0 +6519,1967-08-17 12:28:00,0 +3849,1968-08-02 05:26:00,0 +2770,1969-03-08 10:06:00,0 +740,1965-02-03 16:10:00,0 +4368,1966-08-10 20:29:00,0 +1961,1966-05-04 00:39:00,0 +260,1967-12-05 06:58:00,0 +7038,1967-10-14 17:57:00,0 +9114,1968-11-03 09:50:00,0 +3917,1965-01-30 15:58:00,0 +9747,1966-07-09 07:45:00,0 +5653,1965-03-17 13:22:00,0 +8881,1969-05-08 10:40:00,0 +1024,1965-01-02 23:35:00,0 +1539,1968-08-31 09:27:00,0 +5622,1966-06-27 06:43:00,0 +6566,1965-01-12 07:55:00,0 +8279,1967-07-24 01:32:00,0 +7854,1968-11-18 04:52:00,0 +4694,1967-03-23 12:40:00,0 +711,1965-11-02 09:48:00,0 +3664,1965-09-27 02:29:00,0 +7184,1967-12-29 14:37:00,0 +157,1967-04-06 00:44:00,0 +2417,1966-08-14 13:08:00,0 +310,1967-05-06 03:00:00,0 +8222,1966-06-13 14:13:00,0 +4331,1966-01-23 16:23:00,0 +447,1968-01-11 20:10:00,0 +3868,1967-03-11 01:57:00,0 +9644,1966-08-28 17:21:00,0 +259,1965-12-13 18:56:00,0 +2415,1969-12-15 00:24:00,0 +1443,1965-12-20 15:02:00,0 +5425,1969-05-15 21:17:00,0 +5034,1966-09-07 00:46:00,0 +502,1965-05-04 08:01:00,0 +1792,1967-01-16 18:12:00,0 +4316,1968-02-18 17:01:00,0 +2729,1969-08-15 05:42:00,0 +4057,1967-02-23 07:26:00,0 +2339,1966-10-12 11:59:00,0 +6713,1969-05-23 08:22:00,0 +8596,1965-09-21 08:01:00,0 +7836,1969-03-08 06:49:00,0 +3795,1965-10-29 11:50:00,0 +8957,1966-08-07 03:04:00,0 +1779,1968-08-15 16:53:00,0 +6752,1967-07-30 09:36:00,0 +777,1966-03-25 14:47:00,0 +2278,1966-10-17 21:23:00,0 +7750,1966-10-16 19:27:00,0 +5001,1969-12-02 16:40:00,0 +9373,1965-01-07 16:17:00,0 +9149,1965-03-23 14:30:00,0 +357,1966-09-13 00:27:00,0 +1829,1969-06-10 06:34:00,0 +6624,1968-08-28 03:00:00,0 +4834,1969-11-08 08:48:00,0 +4305,1967-11-22 08:12:00,0 +441,1967-11-21 02:28:00,0 +5065,1965-08-31 20:26:00,0 +5636,1965-01-30 03:57:00,0 +7231,1966-09-30 13:31:00,0 +3784,1965-10-08 21:43:00,0 +1646,1967-08-13 12:41:00,0 +9056,1969-07-06 00:38:00,0 +1352,1965-03-21 13:28:00,0 +9958,1966-11-27 04:19:00,0 +5668,1968-06-04 23:22:00,0 +5308,1966-10-28 14:28:00,0 +4305,1969-02-20 18:50:00,0 +5303,1969-04-29 17:08:00,0 +6746,1966-05-21 17:20:00,0 +9377,1965-04-03 05:00:00,0 +617,1965-08-29 15:04:00,0 +1231,1966-01-21 18:44:00,0 +9098,1968-06-26 21:55:00,0 +1969,1968-09-17 17:54:00,0 +6307,1969-05-18 15:16:00,0 +565,1968-08-16 15:10:00,0 +3632,1967-03-31 05:16:00,0 +5162,1968-12-22 11:59:00,0 +3608,1969-12-06 01:18:00,0 +6329,1966-02-04 12:51:00,0 +591,1966-04-03 06:50:00,0 +4906,1967-01-13 21:31:00,0 +6238,1966-05-14 02:00:00,0 +7130,1966-09-29 06:16:00,0 +1416,1968-09-20 11:24:00,0 +9497,1967-01-22 16:59:00,0 +2346,1965-11-07 23:07:00,0 +2639,1969-11-14 00:03:00,0 +2033,1966-01-03 18:57:00,0 +1489,1967-09-09 07:33:00,0 +7673,1969-01-05 22:26:00,0 +859,1969-10-05 00:17:00,0 +7703,1965-08-01 22:27:00,0 +7397,1968-01-02 03:22:00,0 +9292,1969-11-23 13:48:00,0 +5744,1966-10-11 21:14:00,0 +7281,1969-10-22 21:36:00,0 +5353,1967-08-01 01:33:00,0 +7312,1966-12-23 02:01:00,0 +3958,1966-05-16 18:02:00,0 +9053,1965-05-21 10:42:00,0 +7780,1965-11-27 10:41:00,0 +1015,1968-08-17 16:22:00,0 +7891,1966-09-22 09:24:00,0 +5825,1969-09-01 23:35:00,0 +7275,1965-07-27 14:53:00,0 +6033,1965-11-30 20:11:00,0 +8438,1965-11-24 02:15:00,0 +9540,1969-09-14 03:13:00,0 +8095,1967-07-02 02:47:00,0 +9048,1969-09-24 08:09:00,0 +4318,1965-01-16 12:53:00,0 +5018,1969-12-17 01:27:00,0 +8473,1969-01-02 08:00:00,0 +6691,1967-11-13 04:01:00,0 +8995,1969-07-10 18:24:00,0 +3312,1968-07-17 05:48:00,0 +649,1967-11-17 22:51:00,0 +5558,1965-05-20 20:07:00,0 +9068,1968-04-12 14:20:00,0 +3376,1965-04-04 22:24:00,0 +8886,1966-06-30 04:52:00,0 +3169,1968-12-23 04:48:00,0 +5904,1965-03-20 11:56:00,0 +2843,1965-04-02 19:12:00,0 +9898,1969-09-01 00:15:00,0 +3796,1967-08-24 18:05:00,0 +8989,1967-06-21 01:13:00,0 +6440,1969-03-14 03:30:00,0 +5347,1965-08-05 00:11:00,0 +4312,1968-05-21 15:09:00,0 +7680,1966-09-27 18:44:00,0 +7424,1969-09-30 20:03:00,0 +5660,1965-05-17 13:00:00,0 +4025,1967-03-28 02:17:00,0 +7733,1965-05-13 19:43:00,0 +4778,1968-03-04 04:01:00,0 +1915,1968-01-13 03:09:00,0 +3666,1967-06-25 06:06:00,0 +4725,1968-09-16 06:03:00,0 +2088,1966-08-21 06:43:00,0 +5452,1965-11-19 20:57:00,0 +2433,1965-05-18 14:56:00,0 +7186,1966-12-07 20:58:00,0 +2871,1968-10-25 04:19:00,0 +7610,1968-04-10 02:57:00,0 +2222,1965-08-20 21:18:00,0 +9226,1966-01-23 17:49:00,0 +6586,1967-12-01 14:30:00,0 +5316,1965-01-27 00:44:00,0 +3398,1966-06-26 07:14:00,0 +4019,1965-04-14 07:36:00,0 +76,1968-12-30 04:39:00,0 +2280,1966-04-18 04:15:00,0 +7866,1966-02-10 19:57:00,0 +884,1967-01-09 22:52:00,0 +2960,1965-09-26 23:46:00,0 +1884,1967-07-29 00:46:00,0 +3073,1967-06-26 23:28:00,0 +6905,1968-04-11 05:46:00,0 +8636,1965-03-29 22:17:00,0 +9597,1969-11-03 17:41:00,0 +124,1965-12-21 11:08:00,0 +1438,1969-08-18 04:41:00,0 +9968,1968-07-15 11:00:00,0 +8345,1969-10-29 01:00:00,0 +800,1969-08-16 14:14:00,0 +4687,1969-08-09 07:29:00,0 +4808,1969-05-31 16:20:00,0 +7116,1968-11-22 06:34:00,0 +5490,1969-12-17 12:40:00,0 +1107,1969-12-23 08:22:00,0 +9994,1967-06-28 07:54:00,0 +5739,1968-05-28 08:06:00,0 +791,1968-04-26 19:46:00,0 +1127,1968-02-07 23:52:00,0 +6297,1965-10-22 14:37:00,0 +9244,1969-08-06 03:10:00,0 +6519,1969-02-21 05:10:00,0 +3781,1969-04-11 20:26:00,0 +6988,1966-06-18 16:49:00,0 +3581,1969-08-09 07:54:00,0 +628,1965-04-24 21:06:00,0 +1980,1969-12-15 11:26:00,0 +7573,1966-10-04 08:13:00,0 +9899,1965-02-12 16:40:00,0 +4410,1965-06-10 02:43:00,0 +9779,1967-10-13 06:39:00,0 +938,1968-11-22 19:13:00,0 +4913,1967-01-16 10:52:00,0 +5904,1969-07-14 07:34:00,0 +3582,1965-01-25 03:58:00,0 +3755,1968-11-18 21:39:00,0 +7232,1967-06-10 03:38:00,0 +2007,1968-06-13 12:03:00,0 +5489,1965-09-18 14:22:00,0 +8621,1967-10-22 17:26:00,0 +1173,1967-09-29 16:15:00,0 +4155,1966-09-29 16:25:00,0 +1836,1966-03-23 07:30:00,0 +97,1967-09-17 05:27:00,0 +6715,1968-01-09 14:54:00,0 +782,1966-04-20 23:19:00,0 +3529,1969-04-17 09:45:00,0 +3033,1965-06-27 05:41:00,0 +7846,1967-05-26 23:36:00,0 +2652,1966-06-06 06:31:00,0 +8245,1967-12-30 02:54:00,0 +1949,1969-06-02 02:31:00,0 +7734,1965-08-06 06:14:00,0 +4316,1968-08-07 04:49:00,0 +5229,1967-01-20 11:52:00,0 +2994,1968-12-08 22:07:00,0 +6071,1969-11-07 17:32:00,0 +6490,1968-10-16 01:42:00,0 +4230,1968-02-22 14:09:00,0 +7839,1969-05-11 13:31:00,0 +6578,1968-05-21 05:25:00,0 +6204,1966-09-11 07:37:00,0 +1301,1965-12-16 17:07:00,0 +5523,1967-02-28 17:43:00,0 +2853,1966-09-30 14:22:00,0 +4091,1966-08-29 13:24:00,0 +1370,1968-03-22 11:13:00,0 +8657,1965-08-14 19:29:00,0 +3250,1968-10-15 20:46:00,0 +7727,1968-11-03 04:08:00,0 +392,1969-10-30 14:21:00,0 +709,1969-04-06 18:30:00,0 +9807,1969-04-05 19:00:00,0 +399,1965-08-19 05:37:00,0 +7346,1967-01-16 15:10:00,0 +5007,1967-01-09 12:20:00,0 +4380,1966-11-05 17:25:00,0 +3513,1968-06-03 01:00:00,0 +1437,1969-10-28 06:18:00,0 +7274,1966-09-26 14:02:00,0 +1227,1969-12-01 01:05:00,0 +5517,1968-11-16 11:36:00,0 +7059,1966-10-21 19:31:00,0 +9876,1965-12-17 21:41:00,0 +7139,1965-08-08 20:57:00,0 +8260,1965-07-03 03:25:00,0 +4215,1966-11-14 05:53:00,0 +2808,1965-06-19 18:47:00,0 +4501,1967-11-29 02:46:00,0 +2943,1968-11-25 13:02:00,0 +78,1965-02-14 14:58:00,0 +3549,1969-04-16 09:20:00,0 +8405,1967-02-17 03:48:00,0 +3402,1965-11-28 06:21:00,0 +8348,1965-11-22 01:01:00,0 +406,1966-08-29 16:53:00,0 +6309,1966-06-15 07:12:00,0 +838,1969-12-15 09:48:00,0 +6970,1969-10-10 15:35:00,0 +4259,1965-09-20 00:54:00,0 +3072,1967-12-28 05:39:00,0 +1334,1967-07-16 02:40:00,0 +2844,1967-06-04 07:11:00,0 +585,1969-02-25 10:00:00,0 +7710,1967-12-31 10:09:00,0 +9808,1969-08-19 03:57:00,0 +8431,1969-04-29 21:48:00,0 +6132,1967-07-03 20:18:00,0 +7044,1968-10-03 05:14:00,0 +9230,1967-05-24 17:13:00,0 +3531,1965-04-17 05:19:00,0 +3389,1969-11-09 18:39:00,0 +7421,1967-01-01 02:23:00,0 +5908,1967-10-11 02:06:00,0 +9731,1965-12-18 08:49:00,0 +7391,1967-12-01 18:03:00,0 +4238,1967-11-10 12:59:00,0 +116,1965-02-26 07:15:00,0 +4355,1968-12-13 06:42:00,0 +5414,1965-05-10 19:21:00,0 +573,1966-08-05 17:27:00,0 +3177,1966-08-14 09:34:00,0 +4707,1967-08-30 17:58:00,0 +7656,1969-01-27 22:30:00,0 +5123,1968-01-25 05:32:00,0 +381,1968-05-17 01:01:00,0 +6277,1968-12-30 06:12:00,0 +2852,1967-02-13 02:07:00,0 +3074,1966-08-19 08:45:00,0 +9281,1968-03-15 09:47:00,0 +8711,1966-07-19 14:50:00,0 +5948,1968-02-07 15:25:00,0 +9469,1969-07-17 02:35:00,0 +4416,1969-11-20 07:27:00,0 +7643,1969-01-31 14:10:00,0 +3793,1968-02-04 04:56:00,0 +3181,1965-12-10 03:24:00,0 +6412,1965-12-29 11:43:00,0 +9798,1969-06-29 22:28:00,0 +6216,1966-06-13 10:10:00,0 +3384,1969-07-09 12:19:00,0 +9278,1965-04-09 23:53:00,0 +8894,1966-06-16 13:16:00,0 +2588,1966-06-17 05:01:00,0 +580,1968-06-25 12:36:00,0 +5357,1966-05-02 04:08:00,0 +8704,1969-04-09 09:56:00,0 +5092,1969-10-13 21:38:00,0 +9748,1967-11-06 01:05:00,0 +8588,1969-04-09 05:41:00,0 +824,1966-12-05 15:35:00,0 +5764,1965-08-15 17:12:00,0 +6640,1966-10-29 05:08:00,0 +2615,1967-08-04 02:15:00,0 +8962,1965-10-08 17:33:00,0 +2825,1965-05-27 16:50:00,0 +761,1968-03-28 04:43:00,0 +1056,1966-05-02 11:31:00,0 +4399,1969-08-05 18:32:00,0 +6270,1967-11-17 17:33:00,0 +4638,1967-07-17 18:31:00,0 +8610,1967-01-11 01:45:00,0 +1328,1967-08-14 16:48:00,0 +9708,1965-05-08 19:03:00,0 +7301,1969-07-27 21:30:00,0 +1879,1968-09-10 22:07:00,0 +9295,1968-12-01 04:19:00,0 +4954,1966-02-23 04:55:00,0 +8528,1967-06-15 11:51:00,0 +2326,1969-12-30 22:26:00,0 +9008,1969-01-10 23:51:00,0 +3577,1969-11-23 10:10:00,0 +1377,1966-09-22 10:00:00,0 +524,1968-07-12 17:18:00,0 +7933,1966-08-14 04:42:00,0 +613,1968-12-22 10:20:00,0 +2135,1968-11-23 14:15:00,0 +6122,1968-04-21 22:13:00,0 +4698,1967-06-12 16:26:00,0 +2460,1969-12-07 18:57:00,0 +7204,1965-04-02 13:29:00,0 +6435,1968-10-02 07:43:00,0 +7669,1968-03-15 04:18:00,0 +8274,1967-05-24 10:54:00,0 +2325,1967-10-31 11:53:00,0 +1921,1966-03-21 03:09:00,0 +3043,1969-09-21 16:03:00,0 +4077,1965-07-31 08:12:00,0 +8897,1965-11-05 16:48:00,0 +1024,1966-01-21 13:34:00,0 +3415,1968-02-15 01:40:00,0 +4531,1969-09-25 12:39:00,0 +9625,1965-06-10 20:25:00,0 +9578,1966-11-11 10:32:00,0 +5545,1968-01-15 14:03:00,0 +3319,1965-08-29 17:37:00,0 +4231,1966-03-31 23:43:00,0 +6787,1969-01-28 01:01:00,0 +1089,1969-03-03 02:37:00,0 +8180,1968-10-31 04:00:00,0 +5582,1965-04-25 06:33:00,0 +3873,1967-09-28 16:44:00,0 +8014,1967-01-06 21:45:00,0 +4105,1969-11-26 08:19:00,0 +9558,1967-04-14 02:39:00,0 +1245,1965-12-06 17:57:00,0 +802,1965-10-06 14:59:00,0 +5875,1967-11-14 04:09:00,0 +1565,1966-03-13 23:40:00,0 +3477,1965-01-08 11:26:00,0 +2350,1967-12-29 12:16:00,0 +600,1967-08-07 10:17:00,0 +5278,1967-02-18 17:44:00,0 +4446,1968-06-14 17:46:00,0 +7476,1966-07-24 22:33:00,0 +5371,1968-08-18 01:54:00,0 +682,1967-05-25 23:09:00,0 +4444,1969-11-19 22:45:00,0 +1048,1968-07-07 13:35:00,0 +5388,1965-08-24 08:36:00,0 +9860,1969-03-07 22:26:00,0 +4893,1969-11-13 19:34:00,0 +8252,1969-03-04 06:09:00,0 +9891,1965-02-25 13:32:00,0 +3295,1966-11-24 01:17:00,0 +1811,1966-04-20 01:33:00,0 +1574,1967-08-28 06:40:00,0 +7067,1967-03-01 16:10:00,0 +9386,1966-10-09 14:13:00,0 +3921,1968-02-07 15:49:00,0 +1328,1966-02-09 13:34:00,0 +5619,1966-03-09 20:24:00,0 +7206,1966-04-03 06:01:00,0 +9008,1965-07-27 16:40:00,0 +5175,1968-10-25 21:02:00,0 +1921,1968-04-23 18:59:00,0 +5939,1967-05-30 16:21:00,0 +4116,1969-06-07 05:15:00,0 +9643,1965-10-16 21:53:00,0 +134,1966-10-13 19:22:00,0 +8931,1967-10-22 06:11:00,0 +2913,1968-12-21 01:25:00,0 +537,1967-02-21 00:02:00,0 +2879,1968-04-12 16:42:00,0 +8927,1965-05-01 02:31:00,0 +5481,1965-01-28 01:09:00,0 +2621,1965-07-09 05:20:00,0 +8879,1965-12-11 08:54:00,0 +9049,1968-09-23 01:19:00,0 +9852,1965-05-25 23:16:00,0 +242,1968-10-24 14:19:00,0 +6859,1965-02-19 18:46:00,0 +4178,1969-10-02 19:03:00,0 +9412,1967-01-30 12:43:00,0 +5390,1967-03-05 18:51:00,0 +3145,1965-08-25 05:26:00,0 +6111,1968-03-26 11:02:00,0 +6305,1965-04-15 18:03:00,0 +4766,1966-12-09 15:19:00,0 +6096,1966-09-24 16:01:00,0 +5159,1967-12-28 04:42:00,0 +5289,1965-12-17 07:17:00,0 +6340,1966-06-25 11:43:00,0 +3785,1968-05-08 01:46:00,0 +6133,1965-08-26 06:48:00,0 +2747,1969-12-15 00:47:00,0 +562,1966-06-09 00:20:00,0 +1610,1968-06-17 22:53:00,0 +9771,1969-08-05 15:38:00,0 +6197,1966-07-22 16:14:00,0 +8498,1968-03-20 22:34:00,0 +7895,1969-06-21 17:48:00,0 +6657,1968-06-13 20:22:00,0 +8598,1968-08-01 20:36:00,0 +8880,1969-09-13 09:03:00,0 +9438,1967-05-20 14:54:00,0 +8729,1965-07-14 00:42:00,0 +7887,1965-04-15 04:50:00,0 +9925,1969-07-05 19:35:00,0 +2979,1969-08-26 06:33:00,0 +3794,1969-03-20 05:49:00,0 +2659,1966-04-13 08:05:00,0 +9243,1966-04-16 07:07:00,0 +3590,1969-05-27 00:39:00,0 +2597,1967-04-25 06:20:00,0 +2948,1965-11-08 05:42:00,0 +4930,1968-08-31 04:27:00,0 +5837,1969-01-08 15:34:00,0 +9363,1969-05-24 21:46:00,0 +3794,1968-07-26 19:03:00,0 +7658,1969-01-11 00:45:00,0 +2371,1969-02-07 17:43:00,0 +7787,1965-01-15 01:40:00,0 +1869,1968-12-12 11:50:00,0 +3838,1966-08-15 23:26:00,0 +627,1967-08-08 21:16:00,0 +9439,1969-01-21 03:07:00,0 +6452,1966-12-18 14:51:00,0 +4008,1967-06-29 15:30:00,0 +6459,1968-09-11 15:50:00,0 +8626,1969-02-14 06:05:00,0 +1058,1968-04-19 23:03:00,0 +1662,1966-05-24 01:19:00,0 +4682,1965-10-07 14:31:00,0 +9198,1968-02-07 12:59:00,0 +7865,1968-05-03 06:08:00,0 +5382,1966-01-19 04:41:00,0 +6550,1967-06-04 01:18:00,0 +3336,1965-03-27 08:23:00,0 +5085,1967-02-03 08:43:00,0 +9911,1967-02-03 08:25:00,0 +6326,1967-11-18 06:54:00,0 +7543,1968-04-04 03:56:00,0 +8258,1965-04-05 02:55:00,0 +1595,1965-08-18 23:14:00,0 +7894,1965-03-19 17:04:00,0 +4507,1968-04-15 00:28:00,0 +9221,1968-09-10 18:33:00,0 +5566,1965-12-30 10:46:00,0 +7173,1969-05-22 05:01:00,0 +4487,1965-06-10 19:39:00,0 +5308,1966-11-06 09:06:00,0 +4696,1967-06-18 07:53:00,0 +7535,1965-06-16 15:15:00,0 +6234,1967-01-02 00:07:00,0 +3644,1965-10-15 01:46:00,0 +8900,1966-10-20 06:48:00,0 +4782,1969-05-21 01:25:00,0 +8988,1966-03-04 23:26:00,0 +7091,1969-04-07 06:41:00,0 +3992,1967-08-01 17:15:00,0 +6916,1968-07-13 01:05:00,0 +6479,1968-01-03 07:26:00,0 +5912,1966-08-27 11:18:00,0 +4125,1967-09-18 18:33:00,0 +2520,1969-09-07 15:09:00,0 +4674,1965-04-29 21:26:00,0 +6395,1967-04-18 21:24:00,0 +428,1967-06-27 21:02:00,0 +4380,1968-12-19 08:58:00,0 +4159,1965-02-20 21:53:00,0 +5366,1969-11-16 18:21:00,0 +5231,1965-10-13 05:04:00,0 +9161,1968-09-11 18:28:00,0 +4574,1967-11-25 11:04:00,0 +4610,1969-05-28 08:36:00,0 +3427,1966-04-26 10:01:00,0 +4778,1969-01-31 13:25:00,0 +4803,1968-01-01 11:07:00,0 +7576,1967-01-25 10:30:00,0 +8065,1965-01-20 21:26:00,0 +22,1969-11-04 08:10:00,0 +2020,1969-12-01 22:21:00,0 +7774,1968-04-21 18:14:00,0 +8274,1967-06-20 08:04:00,0 +9272,1965-11-17 07:19:00,0 +8330,1969-01-08 04:54:00,0 +840,1966-01-25 04:22:00,0 +8054,1967-05-27 13:32:00,0 +2015,1969-10-22 21:06:00,0 +1697,1968-11-28 13:22:00,0 +3843,1967-01-11 06:51:00,0 +1710,1967-08-07 17:38:00,0 +4976,1966-09-25 13:26:00,0 +335,1965-09-20 22:23:00,0 +2603,1965-12-30 09:56:00,0 +1557,1969-01-15 07:14:00,0 +158,1969-10-11 00:18:00,0 +4342,1967-09-22 15:48:00,0 +4705,1968-12-22 06:06:00,0 +2542,1965-11-01 18:05:00,0 +5253,1969-07-19 00:44:00,0 +2645,1967-10-05 19:28:00,0 +4580,1966-06-06 12:57:00,0 +1767,1965-05-04 09:12:00,0 +3759,1966-02-20 23:10:00,0 +1413,1966-10-07 00:19:00,0 +3862,1968-11-01 03:50:00,0 +887,1966-02-18 20:38:00,0 +174,1965-08-13 17:56:00,0 +696,1968-04-16 05:15:00,0 +8844,1965-03-06 00:11:00,0 +6324,1969-01-05 21:47:00,0 +9702,1969-09-24 11:51:00,0 +1137,1967-05-22 15:46:00,0 +5246,1969-06-19 19:46:00,0 +7698,1967-09-03 02:24:00,0 +6918,1967-11-04 18:32:00,0 +9396,1965-10-08 21:42:00,0 +8436,1967-10-18 07:59:00,0 +241,1965-08-04 09:50:00,0 +7632,1966-08-06 21:40:00,0 +1245,1965-06-19 04:05:00,0 +1804,1966-03-05 10:25:00,0 +5803,1968-08-13 02:00:00,0 +7636,1969-01-30 01:09:00,0 +8326,1965-08-11 16:14:00,0 +1435,1967-02-27 06:45:00,0 +1390,1967-12-24 09:23:00,0 +6344,1967-02-23 12:41:00,0 +7963,1966-07-11 16:15:00,0 +198,1969-12-06 20:00:00,0 +1196,1967-06-21 00:37:00,0 +9987,1965-01-29 10:53:00,0 +6313,1966-11-12 19:59:00,0 +1140,1969-05-28 20:23:00,0 +7038,1966-10-24 07:26:00,0 +2667,1966-02-19 15:10:00,0 +3958,1965-10-25 10:42:00,0 +9323,1967-05-23 08:21:00,0 +8856,1965-06-09 12:24:00,0 +5123,1966-03-10 23:49:00,0 +3752,1966-05-19 01:42:00,0 +3499,1968-05-11 13:01:00,0 +3796,1966-02-11 07:48:00,0 +7653,1965-11-01 12:02:00,0 +9182,1966-06-19 01:48:00,0 +5761,1967-04-12 22:27:00,0 +1517,1966-11-04 23:54:00,0 +660,1965-06-30 02:49:00,0 +7653,1965-05-30 18:17:00,0 +8288,1965-09-29 16:48:00,0 +5098,1968-05-15 21:47:00,0 +33,1969-10-25 21:48:00,0 +1769,1968-01-05 13:06:00,0 +7169,1967-02-06 04:48:00,0 +9409,1967-08-26 04:21:00,0 +1220,1968-05-19 00:52:00,0 +9541,1967-09-01 17:09:00,0 +7650,1965-06-22 23:04:00,0 +7384,1967-02-15 23:42:00,0 +9500,1968-06-24 14:32:00,0 +4119,1968-02-16 04:26:00,0 +366,1965-01-28 12:40:00,0 +676,1969-09-04 14:51:00,0 +2889,1967-06-27 06:27:00,0 +7850,1965-10-17 15:14:00,0 +1053,1969-06-19 17:25:00,0 +180,1968-04-27 21:42:00,0 +2964,1968-09-10 05:55:00,0 +9847,1969-08-13 01:10:00,0 +2236,1968-11-25 06:26:00,0 +7000,1966-09-25 00:41:00,0 +8110,1965-02-15 18:00:00,0 +6068,1967-11-13 18:49:00,0 +6388,1965-02-24 18:45:00,0 +4555,1966-09-09 02:45:00,0 +8442,1967-09-29 17:57:00,0 +4811,1966-05-21 16:17:00,0 +6001,1969-06-02 14:10:00,0 +8552,1967-11-29 09:51:00,0 +5485,1966-08-27 20:08:00,0 +5572,1966-08-05 10:57:00,0 +7860,1968-06-24 12:11:00,0 +2783,1967-06-12 21:16:00,0 +333,1968-10-26 14:44:00,0 +3044,1965-04-02 14:16:00,0 +7762,1969-12-25 03:18:00,0 +7129,1965-11-18 01:13:00,0 +433,1969-01-25 20:47:00,0 +5025,1967-12-15 03:50:00,0 +1102,1966-02-04 13:05:00,0 +3750,1967-09-14 03:51:00,0 +5193,1968-12-13 00:01:00,0 +7943,1967-06-09 12:09:00,0 +6216,1968-05-25 19:28:00,0 +8589,1966-02-20 12:59:00,0 +6063,1966-09-23 11:05:00,0 +1697,1965-02-27 15:09:00,0 +5291,1965-11-27 20:06:00,0 +7198,1968-08-26 11:01:00,0 +4843,1965-06-26 21:01:00,0 +7197,1967-10-13 16:00:00,0 +6621,1968-03-08 14:45:00,0 +8848,1967-03-14 07:46:00,0 +7352,1965-10-09 05:29:00,0 +7011,1969-10-17 05:28:00,0 +3135,1969-05-22 19:38:00,0 +4027,1966-12-07 10:44:00,0 +7384,1965-05-02 22:38:00,0 +7196,1969-06-20 19:53:00,0 +61,1968-11-04 06:26:00,0 +1558,1967-08-22 15:54:00,0 +77,1967-04-21 21:13:00,0 +2496,1967-04-29 18:11:00,0 +234,1967-01-12 01:53:00,0 +375,1969-09-06 16:54:00,0 +8206,1966-04-06 15:25:00,0 +4982,1967-05-21 11:01:00,0 +390,1969-04-24 01:26:00,0 +7292,1968-04-23 03:21:00,0 +2699,1967-07-09 20:41:00,0 +1396,1967-11-21 21:45:00,0 +8798,1967-08-29 04:45:00,0 +2881,1966-07-02 13:19:00,0 +8497,1965-12-06 04:48:00,0 +3847,1965-12-12 21:07:00,0 +6334,1966-11-05 10:15:00,0 +9910,1969-04-03 15:12:00,0 +2270,1967-04-14 11:52:00,0 +7657,1966-03-17 03:25:00,0 +6482,1968-08-13 10:55:00,0 +8830,1969-11-01 09:45:00,0 +4311,1968-06-26 09:38:00,0 +6140,1968-08-11 01:46:00,0 +5413,1967-02-01 13:04:00,0 +4447,1965-07-02 23:44:00,0 +9364,1965-05-16 02:11:00,0 +6401,1966-08-18 00:56:00,0 +8125,1967-10-08 04:19:00,0 +3084,1968-05-05 10:24:00,0 +7774,1966-06-14 04:18:00,0 +9859,1968-10-22 03:01:00,0 +6856,1966-10-01 04:35:00,0 +8797,1969-11-19 04:07:00,0 +3025,1966-05-15 20:58:00,0 +5761,1969-09-15 02:55:00,0 +8123,1965-05-01 07:24:00,0 +1680,1969-12-08 12:10:00,0 +1355,1965-09-23 21:05:00,0 +2124,1967-03-16 20:34:00,0 +8995,1968-09-08 07:31:00,0 +2441,1968-05-07 16:32:00,0 +575,1965-06-20 10:10:00,0 +9003,1968-05-19 20:10:00,0 +5976,1969-07-06 14:05:00,0 +6683,1968-12-01 15:42:00,0 +6360,1968-08-21 02:00:00,0 +7367,1966-08-30 19:12:00,0 +467,1967-12-23 16:04:00,0 +2039,1965-08-17 20:41:00,0 +9652,1966-06-05 23:11:00,0 +7914,1967-07-07 04:47:00,0 +4442,1967-06-26 15:18:00,0 +7759,1967-02-05 03:56:00,0 +452,1968-07-12 21:45:00,0 +5782,1967-12-27 22:44:00,0 +961,1968-05-02 18:03:00,0 +9362,1967-04-22 17:08:00,0 +8971,1966-06-03 19:14:00,0 +7607,1968-08-14 03:04:00,0 +1124,1966-03-26 23:52:00,0 +3459,1965-11-04 04:56:00,0 +3137,1968-11-09 03:32:00,0 +2723,1968-05-11 05:20:00,0 +2549,1967-01-31 02:50:00,0 +4779,1968-04-29 18:29:00,0 +8454,1966-04-02 18:05:00,0 +5110,1967-03-05 19:28:00,0 +6082,1969-01-23 17:03:00,0 +5047,1969-05-28 20:02:00,0 +4302,1969-03-23 21:58:00,0 +1711,1965-10-28 09:51:00,0 +3507,1966-03-23 03:39:00,0 +4437,1967-01-24 14:12:00,0 +8626,1965-03-10 18:28:00,0 +5811,1969-07-14 05:00:00,0 +598,1967-12-23 09:01:00,0 +1307,1967-07-11 20:31:00,0 +842,1966-07-20 23:40:00,0 +314,1969-08-25 02:36:00,0 +9275,1967-05-25 06:36:00,0 +1724,1967-09-14 02:10:00,0 +2473,1966-06-07 18:21:00,0 +4606,1967-06-15 20:55:00,0 +8655,1965-10-11 14:50:00,0 +2120,1969-05-26 11:36:00,0 +1766,1967-03-25 06:44:00,0 +4322,1969-12-28 23:56:00,0 +5392,1966-03-25 14:37:00,0 +9576,1965-06-06 21:14:00,0 +1271,1966-06-29 16:16:00,0 +8457,1965-05-27 13:34:00,0 +2445,1966-02-21 00:30:00,0 +513,1969-09-27 23:02:00,0 +8353,1968-06-04 19:35:00,0 +1867,1968-07-13 07:18:00,0 +9080,1968-10-15 13:01:00,0 +7386,1966-11-14 05:54:00,0 +3950,1968-08-30 21:06:00,0 +1962,1967-07-18 05:07:00,0 +7644,1968-11-14 15:55:00,0 +6194,1969-09-04 22:59:00,0 +9855,1969-08-17 18:46:00,0 +6361,1966-01-07 16:35:00,0 +924,1968-04-15 14:33:00,0 +9594,1969-11-30 16:04:00,0 +4189,1969-12-05 04:16:00,0 +522,1967-12-06 00:43:00,0 +4591,1969-11-16 17:54:00,0 +457,1968-08-24 05:27:00,0 +7101,1965-02-20 08:52:00,0 +7559,1968-03-10 18:10:00,0 +8462,1968-05-26 21:58:00,0 +9827,1966-10-03 05:51:00,0 +7836,1968-02-27 02:58:00,0 +6087,1968-03-04 21:28:00,0 +4362,1966-03-11 18:00:00,0 +4611,1967-11-06 19:05:00,0 +7638,1965-09-20 06:34:00,0 +9801,1969-03-21 04:26:00,0 +3071,1967-07-29 10:08:00,0 +5627,1967-10-28 22:16:00,0 +2593,1968-08-06 11:31:00,0 +6351,1969-05-06 14:46:00,0 +2001,1969-10-14 00:53:00,0 +7401,1967-07-07 00:13:00,0 +4284,1969-06-03 13:07:00,0 +7815,1968-09-04 23:02:00,0 +8222,1968-09-21 07:35:00,0 +8707,1968-03-23 07:03:00,0 +4770,1968-03-16 12:56:00,0 +6908,1967-01-18 10:14:00,0 +2173,1965-07-23 06:21:00,0 +9736,1969-08-09 10:26:00,0 +9989,1967-02-25 02:20:00,0 +7793,1968-07-22 13:37:00,0 +3486,1965-12-24 11:01:00,0 +5773,1966-08-20 06:30:00,0 +1799,1969-05-12 22:18:00,0 +1014,1966-12-30 23:39:00,0 +1654,1965-12-21 22:57:00,0 +1733,1969-09-30 14:08:00,0 +5109,1965-09-23 16:52:00,0 +1634,1965-05-29 08:01:00,0 +4950,1965-04-27 20:48:00,0 +2044,1965-06-22 00:56:00,0 +2306,1967-07-03 23:49:00,0 +1717,1968-06-11 07:05:00,0 +454,1965-05-19 10:17:00,0 +5291,1966-12-03 20:07:00,0 +2271,1965-07-19 03:20:00,0 +1029,1968-10-17 14:04:00,0 +310,1965-09-04 13:33:00,0 +4922,1966-07-08 10:35:00,0 +4037,1968-05-27 19:26:00,0 +1810,1969-05-07 12:15:00,0 +3119,1965-09-23 23:56:00,0 +7752,1965-10-19 14:06:00,0 +6806,1967-03-24 14:50:00,0 +500,1967-02-17 19:21:00,0 +6190,1969-05-10 11:20:00,0 +1577,1969-05-09 05:19:00,0 +958,1967-09-06 12:30:00,0 +1130,1968-02-24 21:03:00,0 +9998,1966-06-15 15:59:00,0 +8492,1968-11-29 20:43:00,0 +4676,1969-08-11 07:38:00,0 +4096,1969-07-24 16:17:00,0 +6039,1967-01-05 13:33:00,0 +5345,1965-10-05 22:21:00,0 +7160,1969-03-12 04:20:00,0 +6628,1967-12-04 19:00:00,0 +2961,1968-04-12 00:53:00,0 +3957,1965-02-10 06:23:00,0 +3854,1966-12-17 05:33:00,0 +8416,1968-12-10 07:07:00,0 +3108,1966-04-18 11:38:00,0 +7202,1968-06-11 10:12:00,0 +5398,1965-09-23 15:18:00,0 +5519,1965-08-23 17:17:00,0 +4939,1966-07-19 16:39:00,0 +4622,1965-07-01 22:37:00,0 +910,1969-11-09 06:22:00,0 +9324,1968-06-09 01:42:00,0 +4382,1969-08-21 13:50:00,0 +8049,1967-05-02 10:24:00,0 +3243,1967-02-19 17:00:00,0 +6189,1966-11-18 13:37:00,0 +8953,1966-01-17 06:24:00,0 +8103,1968-01-29 08:51:00,0 +6582,1969-05-19 04:15:00,0 +5444,1968-11-16 05:19:00,0 +1077,1965-02-10 07:06:00,0 +9089,1969-10-26 05:41:00,0 +9849,1966-07-27 12:20:00,0 +4011,1969-11-14 17:10:00,0 +7720,1966-09-01 17:43:00,0 +8316,1968-12-04 02:36:00,0 +4880,1968-03-11 12:45:00,0 +9714,1965-01-23 08:31:00,0 +197,1967-06-26 18:15:00,0 +5931,1969-08-31 03:32:00,0 +3149,1969-07-12 23:20:00,0 +5236,1966-03-21 23:38:00,0 +6398,1967-02-24 19:51:00,0 +4340,1968-06-21 19:57:00,0 +5928,1967-03-13 04:11:00,0 +6638,1968-12-03 02:06:00,0 +9085,1966-02-04 02:29:00,0 +2080,1965-03-06 12:16:00,0 +1559,1967-01-28 17:12:00,0 +4072,1966-10-03 03:54:00,0 +8638,1968-05-29 18:21:00,0 +3402,1969-08-05 05:16:00,0 +1383,1965-12-14 09:50:00,0 +2303,1969-05-27 02:55:00,0 +1617,1969-10-12 21:29:00,0 +4676,1968-12-30 17:48:00,0 +9314,1966-10-20 16:31:00,0 +7698,1965-07-08 21:28:00,0 +9444,1969-09-18 16:05:00,0 +6034,1967-11-09 04:20:00,0 +1656,1968-05-04 17:26:00,0 +9335,1969-01-13 02:56:00,0 +9119,1969-04-30 10:44:00,0 +6135,1969-11-24 13:23:00,0 +3656,1969-07-24 12:39:00,0 +9976,1965-05-09 01:54:00,0 +9102,1967-09-01 01:09:00,0 +1988,1968-08-21 05:15:00,0 +1383,1967-07-19 19:29:00,0 +1915,1967-11-17 10:15:00,0 +5162,1966-12-16 17:18:00,0 +6022,1965-10-07 20:13:00,0 +1759,1966-09-03 06:31:00,0 +3369,1965-02-13 04:05:00,0 +8479,1967-05-22 01:36:00,0 +3356,1969-07-28 19:10:00,0 +5860,1969-07-27 13:32:00,0 +5957,1965-09-24 15:11:00,0 +283,1965-09-21 08:10:00,0 +374,1968-10-02 08:43:00,0 +3603,1969-07-18 22:29:00,0 +2665,1969-10-23 21:21:00,0 +3770,1966-10-10 16:10:00,0 +2220,1966-06-11 12:00:00,0 +2644,1965-05-13 02:55:00,0 +276,1968-05-25 14:00:00,0 +1611,1969-09-26 22:51:00,0 +8908,1968-10-28 11:26:00,0 +9462,1969-10-13 15:03:00,0 +3259,1966-01-02 18:46:00,0 +6188,1969-03-31 01:29:00,0 +8145,1969-07-15 22:52:00,0 +2463,1965-06-04 09:42:00,0 +1977,1966-09-27 00:33:00,0 +8126,1968-02-06 17:34:00,0 +5133,1967-02-27 13:56:00,0 +710,1969-06-04 13:37:00,0 +9929,1966-03-23 01:58:00,0 +6982,1969-05-28 16:35:00,0 +5861,1966-10-25 05:40:00,0 +8693,1965-11-07 10:26:00,0 +9501,1969-12-22 05:16:00,0 +3453,1966-07-23 12:43:00,0 +4479,1969-09-22 17:57:00,0 +308,1969-08-26 03:24:00,0 +1754,1967-11-18 04:39:00,0 +3580,1968-10-10 18:47:00,0 +5114,1965-01-20 11:15:00,0 +4019,1969-10-07 20:21:00,0 +2798,1968-08-25 03:16:00,0 +1980,1968-01-31 21:51:00,0 +6109,1968-09-28 12:25:00,0 +765,1967-01-22 06:46:00,0 +6210,1968-12-03 16:06:00,0 +3788,1967-06-02 00:51:00,0 +9051,1968-12-15 08:03:00,0 +6359,1966-06-07 17:31:00,0 +5738,1968-04-11 01:54:00,0 +3449,1967-05-04 11:13:00,0 +8983,1967-03-02 11:05:00,0 +6166,1967-09-24 00:56:00,0 +349,1967-12-04 06:59:00,0 +3522,1967-06-05 10:25:00,0 +6327,1967-05-22 19:48:00,0 +7677,1966-09-06 14:00:00,0 +9579,1966-04-27 07:30:00,0 +6450,1965-05-05 06:07:00,0 +8821,1966-07-13 21:39:00,0 +74,1969-01-25 21:17:00,0 +1999,1966-04-02 20:04:00,0 +9343,1967-05-04 06:07:00,0 +7067,1966-04-05 14:32:00,0 +1895,1967-11-30 05:56:00,0 +8204,1968-07-24 16:10:00,0 +422,1967-01-25 03:05:00,0 +8673,1965-04-30 10:38:00,0 +8870,1967-05-13 06:03:00,0 +6928,1966-10-22 08:17:00,0 +7006,1967-02-04 03:41:00,0 +8907,1966-05-14 23:30:00,0 +4134,1969-02-03 03:43:00,0 +9050,1966-04-24 07:57:00,0 +751,1966-03-06 10:15:00,0 +6753,1966-12-07 16:28:00,0 +5328,1969-01-23 20:18:00,0 +3029,1968-04-19 04:59:00,0 +8820,1965-07-16 11:08:00,0 +5836,1967-08-05 03:37:00,0 +9586,1969-01-19 19:17:00,0 +287,1967-09-07 16:03:00,0 +4490,1968-07-08 19:03:00,0 +1112,1966-08-02 21:15:00,0 +8240,1967-09-08 03:42:00,0 +3771,1966-10-26 17:52:00,0 +8563,1967-06-17 19:37:00,0 +260,1969-03-23 18:01:00,0 +1671,1968-03-13 19:46:00,0 +6913,1966-12-29 19:05:00,0 +6833,1969-08-20 09:49:00,0 +5937,1968-06-05 05:44:00,0 +9924,1969-03-14 07:58:00,0 +5094,1967-07-16 06:31:00,0 +1478,1966-05-11 22:06:00,0 +6964,1968-01-12 13:09:00,0 +4969,1966-06-11 19:20:00,0 +4649,1967-02-19 00:22:00,0 +2153,1967-05-22 18:17:00,0 +5413,1965-02-03 01:29:00,0 +5866,1966-02-24 14:40:00,0 +756,1966-01-29 11:42:00,0 +1221,1966-06-10 15:00:00,0 +3137,1968-06-26 14:16:00,0 +8006,1966-06-14 10:27:00,0 +2875,1966-02-21 08:11:00,0 +4259,1968-03-29 18:38:00,0 +8347,1967-03-21 05:02:00,0 +198,1968-01-21 09:08:00,0 +864,1967-08-11 01:21:00,0 +1439,1967-11-23 15:22:00,0 +7834,1967-04-17 12:00:00,0 +8537,1966-04-08 02:27:00,0 +1968,1969-10-14 02:13:00,0 +9080,1969-05-02 09:52:00,0 +2896,1967-02-21 15:02:00,0 +4262,1968-09-29 12:03:00,0 +5318,1967-06-15 16:36:00,0 +4521,1968-10-19 14:32:00,0 +5617,1968-06-07 13:27:00,0 +3972,1965-06-12 07:40:00,0 +6760,1966-02-26 04:17:00,0 +861,1966-07-05 02:35:00,0 +2794,1966-06-24 10:20:00,0 +8380,1968-09-04 03:05:00,0 +6455,1968-10-07 07:31:00,0 +8096,1965-02-15 00:17:00,0 +265,1965-07-04 01:22:00,0 +34,1966-01-19 04:25:00,0 +8974,1966-04-08 14:15:00,0 +5936,1969-11-11 12:24:00,0 +4968,1968-05-20 04:47:00,0 +2529,1967-09-23 07:12:00,0 +110,1967-04-07 19:01:00,0 +8760,1966-09-20 14:15:00,0 +1343,1969-05-17 06:18:00,0 +2277,1969-03-15 14:44:00,0 +7224,1969-03-28 01:53:00,0 +1823,1965-06-30 00:57:00,0 +8188,1967-09-16 16:58:00,0 +560,1967-10-13 17:07:00,0 +4760,1968-01-30 08:13:00,0 +428,1967-08-11 22:38:00,0 +1708,1969-10-24 16:57:00,0 +6165,1968-05-18 11:19:00,0 +5446,1966-02-07 11:56:00,0 +8741,1968-11-11 04:47:00,0 +3033,1965-10-21 21:06:00,0 +8187,1967-11-27 18:10:00,0 +8304,1965-11-05 03:13:00,0 +9350,1965-01-07 05:50:00,0 +7437,1969-10-03 05:23:00,0 +1833,1967-12-07 01:53:00,0 +1578,1969-06-19 01:00:00,0 +6502,1966-08-20 09:17:00,0 +7561,1969-04-01 12:14:00,0 +9405,1968-12-03 14:20:00,0 +7140,1969-03-09 12:49:00,0 +9002,1968-12-15 02:21:00,0 +8929,1966-11-30 09:09:00,0 +3292,1965-12-10 20:13:00,0 +5615,1967-12-28 17:59:00,0 +2566,1966-05-04 05:07:00,0 +4183,1969-07-10 14:58:00,0 +2127,1968-07-08 14:52:00,0 +6062,1968-07-11 09:23:00,0 +4654,1967-02-01 19:22:00,0 +4564,1967-01-26 22:46:00,0 +5817,1969-01-05 10:27:00,0 +3727,1965-11-18 09:46:00,0 +4553,1965-04-16 15:27:00,0 +7021,1969-12-24 08:24:00,0 +297,1965-05-03 18:42:00,0 +3335,1965-10-09 09:07:00,0 +8170,1965-10-11 09:56:00,0 +385,1969-09-08 19:15:00,0 +3305,1966-11-26 06:32:00,0 +966,1969-02-22 17:32:00,0 +7934,1969-08-01 16:16:00,0 +6843,1968-02-15 19:33:00,0 +9679,1966-07-16 08:45:00,0 +2846,1966-05-11 13:09:00,0 +8950,1969-09-29 01:55:00,0 +5470,1968-03-24 21:49:00,0 +8072,1967-03-28 22:54:00,0 +801,1969-10-01 05:50:00,0 +7269,1966-08-04 04:54:00,0 +9167,1969-01-08 04:59:00,0 +2161,1968-11-11 04:25:00,0 +1609,1965-12-21 05:17:00,0 +4143,1968-04-06 07:42:00,0 +2113,1968-05-25 18:41:00,0 +2512,1966-09-29 06:14:00,0 +2810,1968-05-09 17:51:00,0 +9141,1969-06-28 10:21:00,0 +7432,1969-11-15 05:12:00,0 +2802,1966-06-03 12:08:00,0 +5468,1968-07-17 05:14:00,0 +5701,1966-08-18 17:57:00,0 +9564,1967-11-20 23:54:00,0 +8733,1966-12-09 19:30:00,0 +7318,1969-06-21 14:17:00,0 +4130,1968-06-16 10:39:00,0 +98,1965-10-06 01:11:00,0 +779,1965-04-15 01:19:00,0 +9123,1966-02-25 19:46:00,0 +2283,1968-09-19 16:09:00,0 +9454,1968-01-25 14:04:00,0 +1157,1968-11-04 04:27:00,0 +5782,1968-05-11 14:01:00,0 +7064,1965-12-04 17:23:00,0 +2592,1968-01-31 10:35:00,0 +3867,1968-04-28 16:29:00,0 +1425,1966-09-10 14:58:00,0 +1283,1966-09-18 21:14:00,0 +1173,1969-01-14 00:18:00,0 +8542,1967-11-17 20:55:00,0 +9840,1969-07-12 11:17:00,0 +6747,1966-01-03 20:14:00,0 +8728,1966-12-30 00:34:00,0 +2821,1969-09-07 07:56:00,0 +6264,1966-05-19 21:27:00,0 +5575,1966-10-30 23:42:00,0 +5251,1967-01-03 01:15:00,0 +5318,1967-12-19 04:17:00,0 +416,1965-01-19 23:37:00,0 +554,1966-05-24 09:19:00,0 +95,1966-03-23 04:03:00,0 +1598,1968-08-16 21:41:00,0 +9588,1965-02-27 05:10:00,0 +1811,1968-06-28 10:39:00,0 +8762,1965-09-30 00:51:00,0 +7877,1969-12-20 00:37:00,0 +6079,1968-03-15 00:22:00,0 +2698,1965-03-18 21:18:00,0 +1363,1967-04-29 08:43:00,0 +8212,1968-04-18 02:49:00,0 +4836,1965-03-26 20:52:00,0 +7463,1968-03-20 04:40:00,0 +481,1969-11-21 02:29:00,0 +2043,1965-11-03 21:57:00,0 +7909,1969-11-08 09:21:00,0 +8872,1969-01-12 00:13:00,0 +5487,1965-06-29 15:20:00,0 +4513,1967-03-01 21:39:00,0 +1654,1965-12-21 22:01:00,0 +9489,1966-09-03 07:46:00,0 +5933,1969-06-20 22:28:00,0 +1629,1966-08-19 13:03:00,0 +5716,1969-05-25 00:53:00,0 +3716,1966-07-16 08:45:00,0 +8818,1965-09-25 19:23:00,0 +6715,1965-08-04 05:36:00,0 +6032,1966-05-20 11:17:00,0 +6535,1967-01-03 11:09:00,0 +9869,1965-04-26 04:08:00,0 +185,1967-04-09 18:18:00,0 +7451,1969-02-09 15:19:00,0 +1525,1966-09-03 08:36:00,0 +8382,1967-05-22 18:11:00,0 +932,1967-12-01 14:25:00,0 +7433,1967-06-21 01:20:00,0 +4374,1969-08-17 06:27:00,0 +3738,1966-09-24 02:30:00,0 +733,1968-11-04 19:34:00,0 +154,1965-12-05 06:50:00,0 +1873,1967-11-26 23:39:00,0 +410,1967-10-21 11:41:00,0 +3320,1967-06-24 07:38:00,0 +5891,1967-10-29 06:15:00,0 +1963,1967-10-20 18:03:00,0 +4925,1965-12-11 22:30:00,0 +3210,1968-08-03 07:49:00,0 +6621,1966-11-27 03:52:00,0 +2751,1967-08-02 08:25:00,0 +4635,1968-06-12 03:40:00,0 +3896,1967-01-21 13:45:00,0 +5255,1969-12-16 20:18:00,0 +9752,1969-12-28 06:22:00,0 +3255,1967-06-05 04:47:00,0 +4366,1968-03-26 10:08:00,0 +1476,1968-09-13 18:45:00,0 +2863,1967-07-06 10:17:00,0 +70,1969-09-30 03:57:00,0 +3377,1965-04-13 08:23:00,0 +4278,1965-01-29 19:38:00,0 +8921,1967-11-07 15:41:00,0 +3548,1967-12-29 17:52:00,0 +8109,1965-12-01 22:42:00,0 +8526,1968-08-02 07:43:00,0 +2381,1969-09-03 09:53:00,0 +5371,1968-08-02 04:15:00,0 +3748,1965-05-24 12:44:00,0 +5042,1965-05-13 19:45:00,0 +6648,1969-06-08 00:03:00,0 +2378,1965-09-06 20:13:00,0 +7493,1966-06-21 01:04:00,0 +2968,1968-08-11 17:38:00,0 +2198,1969-11-18 16:11:00,0 +914,1965-04-25 08:57:00,0 +7245,1969-09-05 21:58:00,0 +864,1968-11-30 23:47:00,0 +4506,1965-06-29 05:38:00,0 +9814,1965-03-18 08:31:00,0 +4507,1967-10-12 07:35:00,0 +9588,1969-02-12 11:06:00,0 +5947,1966-12-24 20:19:00,0 +6366,1969-11-25 07:04:00,0 +1376,1965-06-23 09:05:00,0 +1514,1967-04-08 01:50:00,0 +9643,1965-05-31 06:06:00,0 +9726,1966-11-08 16:40:00,0 +7181,1968-01-07 23:18:00,0 +5710,1965-03-28 04:38:00,0 +2571,1969-08-22 02:33:00,0 +3805,1967-07-19 13:54:00,0 +1643,1965-07-29 12:57:00,0 +8301,1966-04-22 05:52:00,0 +909,1966-12-02 06:33:00,0 +4693,1966-02-04 11:49:00,0 +7823,1966-09-25 01:30:00,0 +3401,1967-07-30 16:22:00,0 +8798,1968-09-28 18:17:00,0 +6827,1967-09-12 11:35:00,0 +4760,1969-12-23 09:12:00,0 +1968,1966-08-22 04:26:00,0 +1434,1966-02-14 21:53:00,0 +6099,1965-11-20 19:31:00,0 +7483,1968-03-23 12:40:00,0 +6390,1968-12-04 09:34:00,0 +2304,1965-08-28 14:22:00,0 +5633,1969-01-27 07:43:00,0 +6833,1967-12-06 23:53:00,0 +5318,1967-09-12 00:04:00,0 +7779,1968-01-22 14:51:00,0 +9830,1967-10-04 05:33:00,0 +1296,1968-09-22 15:57:00,0 +9995,1968-06-29 13:29:00,0 +1404,1967-05-18 10:08:00,0 +5631,1968-02-09 14:58:00,0 +4651,1969-04-18 08:31:00,0 +1436,1965-10-11 18:49:00,0 +1381,1968-02-03 02:47:00,0 +2176,1969-07-30 10:23:00,0 +6122,1968-10-29 22:05:00,0 +6084,1965-01-03 07:13:00,0 +5351,1969-01-03 13:16:00,0 +4499,1965-11-08 11:59:00,0 +7469,1968-07-25 21:13:00,0 +4650,1969-05-20 16:21:00,0 +906,1969-03-11 04:47:00,0 +5027,1969-10-10 08:51:00,0 +5748,1965-04-25 10:15:00,0 +3944,1967-10-04 00:50:00,0 +8462,1967-11-18 06:21:00,0 +9720,1968-09-13 03:58:00,0 +8222,1969-07-16 18:26:00,0 +6687,1967-11-30 18:27:00,0 +7640,1968-01-02 07:43:00,0 +2894,1966-05-22 10:02:00,0 +2183,1969-09-03 01:17:00,0 +7902,1969-05-23 21:41:00,0 +8919,1966-02-06 08:19:00,0 +5799,1967-12-27 10:30:00,0 +9138,1965-01-13 19:47:00,0 +9619,1966-04-15 15:46:00,0 +5256,1967-09-23 07:15:00,0 +4051,1965-03-30 22:31:00,0 +8409,1967-12-01 10:00:00,0 +1749,1967-10-10 10:16:00,0 +3954,1966-12-19 02:52:00,0 +3595,1967-08-08 21:24:00,0 +7584,1968-06-29 17:12:00,0 +1447,1967-07-30 02:02:00,0 +2028,1967-01-05 10:00:00,0 +1041,1969-02-25 01:22:00,0 +7129,1966-06-01 08:48:00,0 +6239,1966-05-05 14:55:00,0 +7752,1967-03-28 05:55:00,0 +7946,1969-02-19 02:37:00,0 +1912,1967-02-15 03:47:00,0 +4502,1966-11-25 00:18:00,0 +2957,1965-08-10 12:06:00,0 +4355,1965-06-09 15:55:00,0 +3985,1968-03-02 00:44:00,0 +9752,1966-04-26 15:25:00,0 +7481,1969-09-15 13:09:00,0 +1200,1966-11-18 11:06:00,0 +7416,1965-06-12 15:52:00,0 +4687,1968-12-03 17:16:00,0 +4376,1967-09-24 16:43:00,0 +5283,1967-08-21 21:43:00,0 +9584,1968-02-06 14:03:00,0 +3690,1965-07-19 12:24:00,0 +6663,1966-09-11 10:53:00,0 +8832,1965-09-20 11:27:00,0 +1566,1968-02-20 01:12:00,0 +6116,1969-09-10 19:06:00,0 +4127,1967-09-19 00:16:00,0 +5843,1965-11-04 19:09:00,0 +7453,1968-08-16 05:56:00,0 +3653,1969-01-01 12:54:00,0 +4196,1965-04-16 09:12:00,0 +9898,1969-02-08 16:34:00,0 +9162,1966-07-05 20:31:00,0 +3113,1966-09-03 08:06:00,0 +2091,1968-02-12 05:39:00,0 +9011,1968-07-27 12:45:00,0 +5066,1966-05-25 06:55:00,0 +9238,1969-04-20 09:30:00,0 +5911,1969-04-07 21:45:00,0 +3149,1967-05-28 10:50:00,0 +9983,1967-07-18 07:22:00,0 +2697,1969-02-09 22:26:00,0 +7806,1965-03-22 03:33:00,0 +8679,1965-11-16 08:52:00,0 +8185,1967-02-14 20:18:00,0 +2414,1968-04-02 07:16:00,0 +3005,1965-04-06 16:47:00,0 +5854,1966-02-21 17:45:00,0 +8912,1966-09-30 14:05:00,0 +5295,1965-11-10 22:39:00,0 +7980,1968-07-06 06:20:00,0 +1551,1966-01-24 01:36:00,0 +635,1966-05-16 03:20:00,0 +5716,1968-08-14 14:18:00,0 +5875,1967-08-26 04:30:00,0 +8219,1969-12-22 00:32:00,0 +892,1965-05-25 15:53:00,0 +6155,1967-11-27 12:43:00,0 +8373,1968-08-17 21:50:00,0 +9869,1969-01-11 16:23:00,0 +9083,1968-10-31 09:42:00,0 +9494,1967-06-18 20:24:00,0 +6428,1965-04-26 07:20:00,0 +397,1966-01-01 09:44:00,0 +5722,1967-05-25 19:34:00,0 +968,1966-02-25 00:06:00,0 +2822,1968-04-05 17:59:00,0 +8152,1966-04-04 23:25:00,0 +7936,1967-11-30 04:36:00,0 +3119,1965-07-26 12:31:00,0 +9944,1968-10-18 15:09:00,0 +5949,1966-10-18 00:31:00,0 +7917,1969-12-08 18:37:00,0 +8976,1968-08-19 22:45:00,0 +210,1965-11-04 08:14:00,0 +9225,1966-02-27 08:16:00,0 +1312,1967-05-06 17:11:00,0 +5758,1967-06-01 04:51:00,0 +3207,1965-11-03 01:13:00,0 +9847,1968-04-30 05:27:00,0 +3583,1967-09-02 05:02:00,0 +4303,1968-11-11 13:28:00,0 +7360,1967-09-04 23:41:00,0 +6934,1968-04-05 18:39:00,0 +5311,1967-11-19 08:39:00,0 +190,1965-01-24 03:59:00,0 +6662,1965-11-03 20:00:00,0 +9327,1965-01-21 10:31:00,0 +5279,1968-08-08 05:20:00,0 +6398,1969-06-20 09:54:00,0 +927,1966-01-08 19:41:00,0 +1682,1966-06-10 22:38:00,0 +2504,1968-04-08 10:51:00,0 +5492,1967-07-12 13:57:00,0 +1972,1965-11-17 16:47:00,0 +1496,1969-02-22 19:35:00,0 +800,1968-10-27 05:47:00,0 +5702,1968-12-25 03:47:00,0 +6165,1965-12-29 10:15:00,0 +7778,1967-10-21 12:07:00,0 +1972,1968-06-26 10:53:00,0 +7585,1966-02-28 21:29:00,0 +5451,1965-08-01 18:58:00,0 +1359,1966-07-13 17:28:00,0 +6956,1966-11-15 00:11:00,0 +3095,1968-02-26 01:49:00,0 +8023,1969-05-28 12:34:00,0 +7612,1965-11-07 01:01:00,0 +3390,1968-04-01 08:42:00,0 +9979,1969-10-15 00:27:00,0 +927,1965-01-12 21:02:00,0 +1766,1968-06-21 02:14:00,0 +3937,1968-07-09 01:12:00,0 +1670,1966-06-07 04:19:00,0 +2065,1967-08-19 00:25:00,0 +1456,1966-08-21 10:40:00,0 +9208,1965-09-24 16:07:00,0 +3388,1966-06-21 04:16:00,0 +6452,1966-08-18 01:35:00,0 +226,1965-05-11 04:36:00,0 +1811,1965-12-03 09:11:00,0 +7062,1965-11-27 15:36:00,0 +9419,1968-06-17 23:18:00,0 +815,1968-05-15 05:24:00,0 +6859,1965-09-18 20:16:00,0 +5418,1965-12-27 21:20:00,0 +2087,1969-09-14 07:20:00,0 +7032,1966-09-25 20:52:00,0 +4521,1969-04-17 00:03:00,0 +7696,1968-06-06 09:12:00,0 +7321,1966-05-01 23:48:00,0 +7988,1966-07-28 01:06:00,0 +1379,1965-08-10 04:45:00,0 +5658,1969-07-25 18:48:00,0 +7087,1965-06-22 06:05:00,0 +3983,1965-12-18 05:33:00,0 +6082,1967-01-11 10:42:00,0 +849,1969-10-07 10:38:00,0 +9753,1966-04-11 22:10:00,0 +6403,1965-11-06 09:38:00,0 +2455,1969-10-28 20:42:00,0 +2566,1966-05-28 22:45:00,0 +2536,1966-04-24 11:25:00,0 +8444,1966-12-24 12:35:00,0 +3125,1965-09-01 13:30:00,0 +8011,1968-11-13 07:07:00,0 +5239,1969-01-31 02:31:00,0 +832,1966-05-08 02:51:00,0 +7641,1965-07-31 06:56:00,0 +7097,1969-02-21 14:39:00,0 +5670,1966-03-14 19:48:00,0 +5741,1966-03-12 13:54:00,0 +6742,1966-03-27 07:41:00,0 +4274,1968-07-07 05:25:00,0 +1670,1966-08-13 08:07:00,0 +2016,1969-12-06 09:06:00,0 +4023,1968-11-18 12:59:00,0 +2818,1965-06-26 04:08:00,0 +9922,1969-06-10 08:03:00,0 +12,1965-03-05 12:41:00,0 +1891,1967-07-19 08:03:00,0 +3630,1967-12-10 12:10:00,0 +9184,1969-07-29 09:54:00,0 +5109,1968-05-12 00:46:00,0 +5001,1966-07-08 03:53:00,0 +4390,1968-07-03 20:05:00,0 +5512,1967-09-22 22:31:00,0 +282,1965-01-22 22:19:00,0 +923,1965-05-11 02:29:00,0 +1381,1969-09-24 04:21:00,0 +7865,1968-06-29 06:46:00,0 +1549,1967-09-01 08:47:00,0 +5998,1965-04-09 21:18:00,0 +9600,1969-04-17 06:31:00,0 +1082,1966-07-03 03:05:00,0 +7296,1966-05-01 04:18:00,0 +8020,1965-11-30 12:06:00,0 +9014,1969-06-26 13:11:00,0 +1275,1968-08-26 09:37:00,0 +9431,1966-08-17 15:50:00,0 +3986,1965-01-16 01:37:00,0 +85,1966-02-05 23:40:00,0 +4547,1967-05-31 14:53:00,0 +3639,1967-06-27 00:18:00,0 +3761,1965-02-12 02:41:00,0 +5192,1965-11-04 16:13:00,0 +1209,1969-08-04 10:21:00,0 +2714,1966-07-02 00:01:00,0 +8808,1969-10-21 04:09:00,0 +3245,1968-09-25 13:39:00,0 +347,1968-09-09 03:42:00,0 +6719,1965-09-09 12:08:00,0 +3914,1968-04-16 02:18:00,0 +154,1966-11-09 19:41:00,0 +906,1966-09-01 16:12:00,0 +3041,1969-04-02 17:14:00,0 +4756,1965-05-15 02:19:00,0 +7014,1969-10-13 01:01:00,0 +7905,1965-01-18 22:04:00,0 +8114,1967-02-15 23:01:00,0 +7849,1969-04-02 14:05:00,0 +4400,1967-01-24 04:06:00,0 +5252,1968-01-26 12:46:00,0 +4012,1965-12-31 17:51:00,0 +2458,1969-01-02 15:01:00,0 +5344,1965-11-12 01:40:00,0 +5551,1967-10-10 19:37:00,0 +6255,1965-02-07 21:57:00,0 +7035,1966-12-14 14:05:00,0 +1629,1965-04-29 17:04:00,0 +707,1967-12-25 13:03:00,0 +5493,1969-10-16 18:45:00,0 +5260,1966-09-25 00:45:00,0 +7513,1967-11-14 23:21:00,0 +2007,1968-05-15 22:56:00,0 +442,1969-11-10 10:12:00,0 +9287,1968-08-15 12:26:00,0 +5590,1967-10-18 20:28:00,0 +2876,1966-07-15 04:46:00,0 +3011,1965-09-15 12:32:00,0 +8485,1969-07-28 06:20:00,0 +102,1965-05-11 20:30:00,0 +7692,1965-07-21 13:57:00,0 +9672,1969-07-16 23:54:00,0 +2426,1969-08-17 08:06:00,0 +8891,1967-11-29 17:38:00,0 +7053,1967-02-19 15:07:00,0 +4589,1965-10-15 10:17:00,0 +104,1968-05-27 11:23:00,0 +5592,1967-07-19 07:22:00,0 +1336,1968-12-12 19:30:00,0 +4235,1965-11-28 11:02:00,0 +3705,1969-04-22 17:13:00,0 +6657,1966-02-14 17:59:00,0 +2190,1968-10-17 03:46:00,0 +2067,1969-03-03 23:25:00,0 +4495,1969-08-17 06:36:00,0 +2351,1965-05-16 22:45:00,0 +1666,1967-09-18 18:31:00,0 +3867,1968-04-23 23:09:00,0 +2218,1965-07-28 07:57:00,0 +7775,1967-09-04 21:53:00,0 +8082,1969-10-08 08:30:00,0 +4120,1966-08-23 14:27:00,0 +388,1966-09-17 00:11:00,0 +3890,1968-12-24 22:33:00,0 +9086,1968-04-22 22:15:00,0 +5284,1969-05-15 15:18:00,0 +4921,1969-06-06 14:08:00,0 +4434,1968-03-18 11:28:00,0 +517,1966-03-04 08:57:00,0 +7442,1965-02-10 00:47:00,0 +265,1967-01-21 21:06:00,0 +5908,1967-01-08 21:15:00,0 +6537,1965-08-23 20:08:00,0 +9091,1969-12-20 01:01:00,0 +3709,1968-05-06 08:51:00,0 +876,1965-07-28 04:45:00,0 +360,1966-05-13 13:40:00,0 +916,1966-08-29 09:27:00,0 +5155,1967-10-31 04:58:00,0 +5590,1968-01-31 06:16:00,0 +6738,1967-07-04 03:24:00,0 +1168,1969-03-06 14:56:00,0 +2104,1967-11-07 01:31:00,0 +9016,1967-07-29 03:51:00,0 +5196,1966-06-14 08:20:00,0 +440,1969-03-11 03:11:00,0 +7232,1965-07-10 04:13:00,0 +224,1965-07-16 08:13:00,0 +234,1967-02-15 19:28:00,0 +9190,1968-05-11 05:30:00,0 +5493,1968-04-25 07:28:00,0 +3796,1965-09-16 04:50:00,0 +2117,1967-02-01 11:05:00,0 +9415,1966-11-13 20:20:00,0 +1033,1969-10-27 13:25:00,0 +9797,1968-01-20 03:17:00,0 +4051,1965-02-18 16:52:00,0 +3851,1969-04-09 17:06:00,0 +5799,1966-12-24 13:16:00,0 +439,1969-04-27 15:07:00,0 +2062,1968-08-16 04:42:00,0 +1448,1966-02-13 15:39:00,0 +2622,1966-01-06 03:39:00,0 +983,1967-09-01 18:37:00,0 +2413,1966-08-16 18:56:00,0 +1956,1967-01-24 09:04:00,0 +910,1965-09-28 09:20:00,0 +8397,1966-01-17 20:46:00,0 +4863,1967-01-25 02:11:00,0 +330,1968-01-01 09:03:00,0 +8072,1969-01-11 21:53:00,0 +8857,1968-05-14 19:35:00,0 +1888,1966-05-04 13:13:00,0 +4189,1967-10-04 02:04:00,0 +2404,1966-01-23 23:36:00,0 +4499,1969-02-13 11:21:00,0 +8429,1965-03-09 15:16:00,0 +4355,1968-06-08 18:39:00,0 +5650,1968-04-13 16:53:00,0 +5943,1967-11-29 19:54:00,0 +6881,1965-09-14 13:35:00,0 +5836,1965-05-07 15:36:00,0 +2608,1965-04-14 00:48:00,0 +5613,1966-05-08 09:14:00,0 +3096,1965-10-30 09:23:00,0 +7541,1968-02-26 06:32:00,0 +3714,1967-09-25 06:35:00,0 +5884,1965-08-21 13:32:00,0 +4194,1968-10-17 21:32:00,0 +6821,1968-10-22 18:05:00,0 +5135,1967-05-02 09:34:00,0 +9203,1967-05-06 13:58:00,0 +2152,1965-01-24 00:37:00,0 +2500,1967-12-19 03:04:00,0 +924,1969-10-20 06:13:00,0 +1871,1966-07-14 02:55:00,0 +6025,1966-02-20 14:31:00,0 +2098,1965-08-16 17:18:00,0 +3790,1967-12-05 14:00:00,0 +2505,1967-02-12 04:34:00,0 +920,1966-01-22 14:53:00,0 +9526,1969-12-19 15:53:00,0 +8863,1965-11-05 00:30:00,0 +9406,1966-11-22 23:55:00,0 +2476,1967-07-13 12:40:00,0 +4792,1965-05-10 21:32:00,0 +4567,1965-03-31 07:27:00,0 +8074,1969-04-29 20:18:00,0 +9880,1967-01-09 21:17:00,0 +5878,1965-05-04 19:09:00,0 +7849,1966-10-05 23:56:00,0 +979,1969-06-25 06:36:00,0 +7680,1965-08-13 10:05:00,0 +361,1965-07-26 12:53:00,0 +5648,1968-03-02 19:25:00,0 +4150,1968-05-01 20:13:00,0 +4921,1965-12-31 07:21:00,0 +6986,1967-04-02 22:36:00,0 +1423,1967-07-05 04:29:00,0 +8015,1967-04-24 19:25:00,0 +8621,1968-06-10 05:03:00,0 +5474,1969-10-13 03:01:00,0 +6893,1967-08-20 21:05:00,0 +4846,1968-07-13 06:33:00,0 +3293,1969-02-12 22:19:00,0 +5888,1969-10-21 08:48:00,0 +9053,1965-04-08 12:06:00,0 +5234,1966-03-11 01:58:00,0 +1492,1968-05-01 17:38:00,0 +1352,1965-01-20 01:07:00,0 +6028,1966-11-10 00:39:00,0 +3242,1969-01-19 20:29:00,0 +454,1967-09-06 04:08:00,0 +313,1967-10-10 10:17:00,0 +7293,1968-02-10 21:47:00,0 +5707,1967-04-15 17:35:00,0 +8191,1968-07-01 08:13:00,0 +1364,1967-04-27 09:59:00,0 +8338,1966-06-21 13:49:00,0 +8867,1965-05-25 06:03:00,0 +3340,1967-05-11 05:56:00,0 +5656,1965-10-05 01:46:00,0 +8343,1968-01-19 23:46:00,0 +7947,1968-08-29 22:31:00,0 +7665,1968-05-24 07:21:00,0 +1547,1966-10-03 01:57:00,0 +469,1966-07-09 22:42:00,0 +9457,1969-06-17 01:02:00,0 +3407,1966-11-15 11:43:00,0 +6519,1969-10-17 08:11:00,0 +6769,1969-08-27 23:56:00,0 +944,1967-01-06 12:48:00,0 +9407,1968-11-17 04:21:00,0 +6735,1966-03-02 12:31:00,0 +7457,1965-02-07 13:49:00,0 +7328,1969-06-29 09:07:00,0 +3477,1965-03-15 02:04:00,0 +1479,1967-05-22 10:25:00,0 +1731,1966-04-30 15:06:00,0 +4589,1967-10-21 07:22:00,0 +7572,1965-09-14 05:21:00,0 +4493,1965-01-15 04:42:00,0 +6947,1966-10-15 16:41:00,0 +5557,1965-02-05 06:54:00,0 +7655,1965-11-15 09:32:00,0 +5765,1966-11-19 00:19:00,0 +7900,1966-03-09 11:03:00,0 +2837,1965-01-05 10:29:00,0 +977,1969-05-13 06:06:00,0 +8906,1967-09-04 14:29:00,0 +6345,1965-01-26 10:30:00,0 +5471,1969-01-07 03:40:00,0 +1432,1967-11-12 01:47:00,0 +3066,1966-01-20 13:36:00,0 +2941,1967-10-09 20:45:00,0 +1203,1967-07-29 07:43:00,0 +2505,1966-04-30 09:33:00,0 +1697,1969-01-23 19:03:00,0 +9173,1969-02-07 18:15:00,0 +3000,1966-01-23 20:30:00,0 +7815,1967-04-21 06:23:00,0 +9855,1967-08-22 01:29:00,0 +5028,1967-02-01 01:35:00,0 +1082,1965-02-05 09:47:00,0 +8030,1967-07-07 01:45:00,0 +3777,1967-01-11 05:38:00,0 +6491,1968-04-23 05:14:00,0 +2107,1965-11-30 09:31:00,0 +1651,1966-09-02 06:37:00,0 +4299,1967-01-31 08:37:00,0 +8079,1965-04-02 22:33:00,0 +4843,1967-10-20 11:43:00,0 +7256,1967-11-30 17:51:00,0 +6701,1967-10-13 10:58:00,0 +768,1967-08-31 02:12:00,0 +2487,1965-01-15 05:50:00,0 +8679,1969-06-22 06:19:00,0 +6276,1966-06-11 13:45:00,0 +2960,1966-06-25 07:03:00,0 +9683,1967-07-26 12:40:00,0 +106,1967-02-08 20:12:00,0 +6823,1967-10-25 13:36:00,0 +602,1967-02-01 10:05:00,0 +288,1969-03-15 19:55:00,0 +5512,1968-12-28 09:49:00,0 +7173,1966-10-24 03:32:00,0 +8341,1966-10-26 10:13:00,0 +1877,1965-07-07 20:18:00,0 +3533,1965-02-20 02:06:00,0 +5250,1965-05-14 11:46:00,0 +8369,1967-04-05 00:09:00,0 +6758,1966-11-04 18:36:00,0 +2423,1969-01-09 13:23:00,0 +7971,1969-10-13 03:24:00,0 +8916,1965-06-25 01:10:00,0 +7877,1965-12-29 17:20:00,0 +3610,1966-02-07 15:22:00,0 +8551,1969-07-24 16:46:00,0 +5239,1968-12-31 10:25:00,0 +6477,1967-08-03 00:53:00,0 +6716,1966-04-26 12:52:00,0 +3281,1969-04-06 18:38:00,0 +4807,1967-12-19 01:32:00,0 +97,1969-05-02 04:05:00,0 +7712,1969-10-11 22:07:00,0 +7366,1967-12-07 07:12:00,0 +1634,1969-09-26 03:04:00,0 +2005,1967-09-18 12:56:00,0 +3475,1968-01-21 03:55:00,0 +1036,1969-03-22 06:18:00,0 +2011,1965-02-10 22:37:00,0 +9963,1969-11-18 13:22:00,0 +1469,1965-06-11 19:59:00,0 +213,1968-05-18 15:50:00,0 +4872,1968-11-20 21:15:00,0 +7388,1965-08-05 03:48:00,0 +3856,1966-05-24 08:21:00,0 +2186,1968-05-07 16:59:00,0 +1293,1965-10-14 04:16:00,0 +9596,1966-04-06 18:47:00,0 +9413,1967-10-02 11:54:00,0 +3260,1967-09-12 07:38:00,0 +9524,1968-02-21 08:25:00,0 +7286,1969-11-07 09:51:00,0 +7508,1967-03-17 21:57:00,0 +2827,1967-07-22 06:05:00,0 +1316,1965-09-09 18:03:00,0 +9180,1968-06-20 07:28:00,0 +9914,1969-10-30 21:22:00,0 +7114,1967-05-07 04:06:00,0 +7093,1967-04-30 03:32:00,0 +5870,1969-07-13 19:50:00,0 +6085,1966-09-02 23:34:00,0 +5575,1966-08-29 09:55:00,0 +3986,1966-06-02 04:55:00,0 +4622,1969-03-10 20:15:00,0 +9486,1969-01-30 23:20:00,0 +6135,1969-10-25 03:49:00,0 +5673,1966-09-16 17:20:00,0 +6192,1968-01-19 13:17:00,0 +9348,1967-11-28 23:11:00,0 +2192,1966-01-26 20:33:00,0 +6374,1965-09-11 18:34:00,0 +1832,1965-06-25 08:14:00,0 +1251,1965-12-07 16:01:00,0 +1456,1967-02-20 00:10:00,0 +3537,1969-10-26 07:42:00,0 +8431,1967-12-14 11:18:00,0 +9199,1968-02-05 13:09:00,0 +173,1969-12-08 01:00:00,0 +2138,1968-11-30 07:39:00,0 +4581,1965-08-05 08:56:00,0 +5524,1967-05-09 10:34:00,0 +1997,1965-01-13 17:30:00,0 +5903,1968-02-01 10:41:00,0 +2856,1968-11-05 11:38:00,0 +3595,1967-02-01 11:15:00,0 +1067,1968-05-04 05:12:00,0 +5777,1966-03-27 01:31:00,0 +618,1966-10-03 00:42:00,0 +6626,1967-01-21 08:55:00,0 +7756,1966-01-06 09:24:00,0 +2782,1966-11-27 04:01:00,0 +6037,1968-02-27 09:11:00,0 +6347,1965-04-22 21:13:00,0 +9725,1967-08-26 04:50:00,0 +5600,1965-10-04 21:02:00,0 +6081,1969-05-31 11:56:00,0 +21,1965-01-14 13:10:00,0 +6303,1969-09-14 10:48:00,0 +9800,1966-10-15 17:29:00,0 +2097,1966-02-19 00:09:00,0 +7097,1967-10-04 05:44:00,0 +9149,1967-03-06 22:25:00,0 +4509,1968-10-18 14:28:00,0 +5052,1967-08-27 07:25:00,0 +7327,1969-03-10 20:58:00,0 +5077,1966-07-29 11:02:00,0 +4853,1965-09-17 20:09:00,0 +2384,1966-04-24 23:11:00,0 +8095,1966-08-17 03:33:00,0 +6885,1968-11-02 19:51:00,0 +642,1969-11-28 04:35:00,0 +9222,1968-01-30 12:44:00,0 +2057,1969-06-07 07:59:00,0 +3577,1967-12-31 22:18:00,0 +4829,1966-03-13 09:01:00,0 +4620,1969-12-07 12:18:00,0 +4093,1969-05-23 22:16:00,0 +7891,1969-01-12 06:18:00,0 +6965,1969-02-15 18:32:00,0 +9966,1966-09-06 23:41:00,0 +7036,1966-10-16 18:49:00,0 +1495,1965-10-22 11:02:00,0 +3127,1968-03-12 06:37:00,0 +6623,1969-11-06 08:23:00,0 +4256,1968-06-21 22:04:00,0 +7093,1968-04-29 21:04:00,0 +7304,1966-05-30 14:31:00,0 +9163,1965-07-04 12:01:00,0 +8461,1969-12-29 10:52:00,0 +6524,1965-03-17 13:26:00,0 +4737,1965-04-07 13:44:00,0 +7224,1968-08-24 07:15:00,0 +508,1968-10-31 06:53:00,0 +3688,1967-09-07 21:28:00,0 +4072,1968-10-22 13:51:00,0 +3177,1965-02-06 19:34:00,0 +108,1969-01-08 16:04:00,0 +4144,1965-03-27 16:30:00,0 +2888,1968-02-13 22:47:00,0 +5017,1965-12-01 22:00:00,0 +3646,1966-06-02 05:21:00,0 +4451,1966-09-02 12:17:00,0 +9493,1969-09-21 18:31:00,0 +2293,1968-12-08 12:34:00,0 +6752,1967-01-18 11:47:00,0 +4988,1968-07-07 02:20:00,0 +4800,1965-03-02 03:41:00,0 +4888,1966-06-23 22:22:00,0 +4745,1967-12-03 19:00:00,0 +7875,1967-10-06 19:19:00,0 +919,1967-01-12 09:10:00,0 +2239,1969-02-05 11:43:00,0 +9979,1968-02-03 18:57:00,0 +8685,1966-04-04 14:39:00,0 +2525,1965-12-17 22:47:00,0 +1280,1967-07-05 07:22:00,0 +4905,1969-07-04 22:03:00,0 +5286,1968-07-30 17:13:00,0 +4786,1968-03-01 18:54:00,0 +8947,1968-01-12 16:56:00,0 +3066,1967-11-05 18:02:00,0 +4664,1966-11-22 06:32:00,0 +4205,1969-01-23 05:38:00,0 +8306,1968-01-16 22:19:00,0 +7350,1965-03-29 12:22:00,0 +3691,1966-08-03 20:38:00,0 +190,1967-02-01 23:57:00,0 +6096,1968-10-23 21:08:00,0 +2796,1969-02-21 02:24:00,0 +6960,1967-06-04 00:30:00,0 +8283,1965-05-16 13:06:00,0 +6911,1967-12-23 05:09:00,0 +9891,1965-11-27 02:46:00,0 +5259,1969-02-09 22:44:00,0 +5269,1967-09-21 09:26:00,0 +9305,1968-08-15 06:30:00,0 +5824,1969-05-08 05:36:00,0 +4543,1965-02-10 06:39:00,0 +7138,1967-01-26 08:58:00,0 +6136,1968-12-15 11:48:00,0 +3728,1965-07-06 00:15:00,0 +515,1965-07-30 06:59:00,0 +3131,1969-09-16 17:14:00,0 +2209,1968-09-02 00:47:00,0 +96,1967-08-29 03:16:00,0 +163,1966-03-02 05:05:00,0 +6032,1966-07-14 04:37:00,0 +2087,1968-01-01 20:45:00,0 +6057,1968-02-18 10:15:00,0 +2683,1967-04-11 01:38:00,0 +6199,1966-11-12 03:54:00,0 +7145,1966-02-03 11:14:00,0 +3681,1965-08-18 15:25:00,0 +2467,1968-09-21 14:23:00,0 +442,1967-07-23 01:50:00,0 +329,1965-07-06 07:38:00,0 +2310,1969-12-03 12:59:00,0 +3959,1968-02-23 00:02:00,0 +2468,1966-01-10 00:14:00,0 +9980,1967-06-01 08:20:00,0 +1494,1967-10-04 06:35:00,0 +199,1965-10-25 19:25:00,0 +5247,1969-06-07 20:12:00,0 +8107,1965-08-24 16:45:00,0 +8847,1968-06-09 09:46:00,0 +9883,1966-05-14 11:39:00,0 +8658,1966-09-11 11:16:00,0 +3865,1968-02-24 17:46:00,0 +1434,1965-12-09 21:21:00,0 +6917,1965-04-27 03:19:00,0 +72,1966-12-29 04:51:00,0 +5250,1967-02-02 23:27:00,0 +5540,1968-08-31 09:13:00,0 +1736,1967-01-30 14:01:00,0 +5158,1965-06-09 03:05:00,0 +1309,1965-08-23 12:11:00,0 +1560,1969-04-13 12:17:00,0 +5548,1968-05-24 02:48:00,0 +2206,1968-09-02 04:21:00,0 +6863,1967-04-02 00:37:00,0 +3059,1966-01-22 15:55:00,0 +8447,1968-03-19 06:14:00,0 +5468,1965-04-25 07:47:00,0 +1576,1968-03-16 09:23:00,0 +5459,1966-09-06 15:09:00,0 +2360,1966-05-07 14:43:00,0 +6121,1966-07-20 08:06:00,0 +7892,1969-11-19 13:15:00,0 +1629,1969-03-02 03:48:00,0 +1857,1966-03-14 13:49:00,0 +7906,1968-08-30 05:14:00,0 +8711,1966-03-15 14:57:00,0 +7703,1966-06-02 09:18:00,0 +8869,1965-04-08 17:57:00,0 +3645,1965-05-31 21:15:00,0 +9458,1965-02-18 15:45:00,0 +149,1969-07-19 08:44:00,0 +1507,1966-05-24 10:36:00,0 +9670,1969-08-02 11:16:00,0 +9670,1968-06-25 10:49:00,0 +5334,1968-11-28 11:00:00,0 +8561,1966-02-23 10:55:00,0 +8630,1965-07-09 16:07:00,0 +7775,1968-08-18 18:04:00,0 +5709,1969-04-28 00:53:00,0 +1682,1967-03-20 19:13:00,0 +6592,1966-08-17 00:53:00,0 +5657,1969-10-24 06:09:00,0 +867,1968-02-06 07:14:00,0 +7294,1969-09-17 14:33:00,0 +2107,1966-06-05 22:01:00,0 +4943,1967-10-02 01:49:00,0 +4236,1965-03-22 23:11:00,0 +5571,1969-12-24 01:54:00,0 +2081,1968-02-13 01:51:00,0 +5231,1966-07-24 07:46:00,0 +8645,1969-07-01 06:29:00,0 +1368,1968-01-16 01:10:00,0 +7351,1966-10-20 16:34:00,0 +7857,1967-12-27 07:42:00,0 +154,1968-08-02 14:15:00,0 +133,1965-05-09 16:05:00,0 +8466,1968-08-17 05:47:00,0 +8796,1966-02-03 03:16:00,0 +1115,1967-06-23 10:37:00,0 +2437,1966-07-25 16:56:00,0 +406,1965-12-08 17:35:00,0 +6712,1967-04-08 22:11:00,0 +9395,1965-10-13 04:44:00,0 +8119,1965-09-02 12:04:00,0 +3548,1967-12-22 05:55:00,0 +605,1966-11-08 07:39:00,0 +7477,1966-07-07 23:23:00,0 +3379,1968-11-16 14:29:00,0 +346,1969-03-26 02:22:00,0 +5768,1968-10-10 01:27:00,0 +4950,1966-05-13 03:57:00,0 +5039,1967-06-07 14:08:00,0 +6637,1968-08-23 04:37:00,0 +6584,1966-09-07 04:07:00,0 +5831,1969-08-05 00:17:00,0 +2619,1967-12-20 13:39:00,0 +9805,1968-12-28 15:24:00,0 +5363,1967-09-22 03:21:00,0 +8523,1966-12-13 06:50:00,0 +5407,1968-07-14 16:49:00,0 +9919,1965-12-20 23:07:00,0 +1931,1966-10-11 05:51:00,0 +8706,1969-10-23 06:59:00,0 +9306,1965-03-19 19:05:00,0 +8829,1969-01-04 07:02:00,0 +169,1966-09-03 16:23:00,0 +2712,1965-06-07 03:39:00,0 +5047,1967-09-04 23:45:00,0 +5240,1969-10-24 02:26:00,0 +7273,1969-09-02 16:40:00,0 +4100,1967-09-25 21:30:00,0 +3106,1965-04-17 15:09:00,0 +3494,1967-06-04 04:42:00,0 +9351,1967-05-17 20:11:00,0 +483,1966-06-26 22:20:00,0 +3762,1967-03-27 22:46:00,0 +4952,1967-05-06 02:33:00,0 +28,1968-02-09 21:05:00,0 +7990,1966-05-26 08:02:00,0 +1671,1968-07-16 13:47:00,0 +2011,1967-08-02 02:05:00,0 +8957,1965-12-21 20:59:00,0 +9397,1969-08-11 03:38:00,0 +7371,1967-01-29 15:55:00,0 +8860,1968-03-09 10:00:00,0 +3744,1968-10-30 21:03:00,0 +1235,1967-03-02 12:53:00,0 +1819,1968-05-20 18:35:00,0 +5212,1968-12-16 11:23:00,0 +3979,1966-09-07 22:39:00,0 +3484,1968-08-26 04:44:00,0 +1161,1967-11-24 09:34:00,0 +6653,1965-07-07 06:03:00,0 +9928,1967-11-26 09:36:00,0 +4602,1967-01-11 05:04:00,0 +5104,1966-03-29 13:27:00,0 +9110,1965-08-29 00:37:00,0 +8993,1966-04-03 10:45:00,0 +6335,1966-05-04 12:47:00,0 +6125,1967-03-29 15:32:00,0 +1749,1969-12-26 01:26:00,0 +4867,1967-07-06 18:44:00,0 +4037,1968-08-24 22:33:00,0 +3688,1966-11-15 08:10:00,0 +596,1965-12-27 04:50:00,0 +4431,1966-02-14 17:17:00,0 +6725,1965-02-09 15:24:00,0 +4005,1969-12-01 23:12:00,0 +6271,1969-10-28 10:42:00,0 +1952,1967-04-18 20:18:00,0 +1804,1968-12-14 22:07:00,0 +7714,1966-02-24 22:08:00,0 +5477,1968-09-07 22:04:00,0 +9477,1966-02-27 20:08:00,0 +7339,1968-08-08 21:14:00,0 +5940,1967-10-20 18:27:00,0 +3139,1965-12-28 21:06:00,0 +8908,1965-09-06 13:24:00,0 +4149,1965-07-05 22:33:00,0 +3534,1966-01-16 23:32:00,0 +1531,1968-06-25 19:25:00,0 +6960,1965-04-13 04:27:00,0 +1706,1969-08-30 23:54:00,0 +5927,1966-08-08 22:34:00,0 +2347,1967-12-05 13:28:00,0 +5316,1967-09-30 18:24:00,0 +2577,1966-12-07 04:07:00,0 +4214,1969-12-28 23:18:00,0 +988,1968-01-02 20:10:00,0 +1634,1969-02-12 22:01:00,0 +3710,1968-07-31 18:29:00,0 +895,1967-10-07 20:06:00,0 +9465,1967-01-14 04:55:00,0 +7944,1966-10-16 15:49:00,0 +9910,1967-03-28 07:16:00,0 +7759,1965-10-12 03:38:00,0 +3859,1967-09-04 06:52:00,0 +3206,1967-01-25 23:13:00,0 +4516,1968-09-27 21:04:00,0 +2534,1965-03-02 11:36:00,0 +4948,1968-05-19 03:26:00,0 +3883,1966-07-30 03:01:00,0 +8904,1969-03-27 05:28:00,0 +6448,1965-05-30 23:04:00,0 +556,1967-10-08 21:29:00,0 +7966,1968-09-05 00:58:00,0 +5174,1968-09-01 05:00:00,0 +7049,1965-10-01 14:59:00,0 +5681,1968-10-08 17:06:00,0 +7242,1967-03-02 07:30:00,0 +7056,1969-03-19 14:20:00,0 +9272,1966-04-10 23:06:00,0 +8298,1969-04-09 22:21:00,0 +9008,1965-09-25 23:11:00,0 +7405,1966-08-16 06:55:00,0 +1188,1969-03-19 15:48:00,0 +7166,1965-10-23 00:01:00,0 +9654,1966-09-02 06:46:00,0 +6604,1965-06-28 07:46:00,0 +3792,1967-01-09 04:38:00,0 +1735,1967-12-05 05:46:00,0 +5288,1965-09-30 05:15:00,0 +3273,1968-04-08 10:15:00,0 +1060,1965-05-02 22:24:00,0 +3954,1968-01-04 04:17:00,0 +7866,1968-03-28 01:54:00,0 +2558,1968-01-11 17:44:00,0 +4122,1968-05-25 09:15:00,0 +6636,1969-04-10 21:29:00,0 +8148,1968-03-01 01:14:00,0 +2804,1967-02-05 07:01:00,0 +3605,1965-09-20 12:27:00,0 +5851,1968-04-23 19:28:00,0 +2244,1965-02-14 03:04:00,0 +9405,1965-03-18 18:04:00,0 +7776,1968-05-26 11:30:00,0 +2657,1968-11-20 04:47:00,0 +3002,1967-07-05 18:33:00,0 +4175,1966-11-09 00:38:00,0 +9890,1966-05-26 00:33:00,0 +6453,1968-10-03 10:39:00,0 +887,1966-04-14 05:10:00,0 +328,1969-06-09 02:09:00,0 +6063,1969-04-01 19:08:00,0 +2457,1966-06-22 21:13:00,0 +5689,1968-07-04 05:48:00,0 +9879,1967-04-26 23:14:00,0 +3923,1967-01-07 16:09:00,0 +6554,1969-05-15 14:37:00,0 +3684,1969-09-15 06:43:00,0 +6553,1968-09-09 03:35:00,0 +1526,1968-08-19 14:54:00,0 +6324,1968-06-06 20:51:00,0 +6787,1968-10-18 09:43:00,0 +8761,1969-02-15 13:54:00,0 +517,1965-10-10 12:36:00,0 +4201,1967-11-29 11:07:00,0 +8235,1965-01-23 14:42:00,0 +5804,1969-01-21 05:21:00,0 +800,1968-12-04 14:34:00,0 +5898,1966-07-05 14:24:00,0 +5992,1965-04-25 13:58:00,0 +8187,1966-12-25 23:13:00,0 +4961,1969-09-12 18:48:00,0 +5112,1969-10-18 13:00:00,0 +81,1966-12-15 08:08:00,0 +3397,1968-06-12 02:43:00,0 +3501,1967-10-06 11:52:00,0 +1460,1966-10-24 23:00:00,0 +5790,1966-09-19 05:33:00,0 +4435,1967-03-16 13:33:00,0 +6388,1969-04-30 14:01:00,0 +4230,1966-12-09 10:52:00,0 +5553,1965-01-12 01:52:00,0 +7564,1969-04-15 15:24:00,0 +4162,1965-01-14 14:57:00,0 +254,1968-02-11 11:31:00,0 +9253,1969-07-19 07:39:00,0 +872,1967-03-04 12:16:00,0 +6660,1969-10-04 15:49:00,0 +5064,1967-08-11 00:20:00,0 +6130,1969-11-24 22:12:00,0 +5489,1965-12-04 14:06:00,0 +4110,1968-07-10 11:54:00,0 +2054,1968-07-16 12:59:00,0 +6999,1967-01-18 05:42:00,0 +1594,1965-01-14 09:40:00,0 +7165,1969-12-04 13:05:00,0 +5380,1967-09-14 22:40:00,0 +7566,1966-01-15 00:02:00,0 +4424,1969-02-10 17:10:00,0 +59,1965-11-16 01:24:00,0 +5318,1968-02-02 06:31:00,0 +9010,1965-11-28 11:20:00,0 +3283,1967-08-26 21:52:00,0 +6710,1965-04-07 15:51:00,0 +6930,1969-06-12 09:52:00,0 +8212,1968-08-19 22:35:00,0 +7067,1966-10-23 12:08:00,0 +5312,1967-12-23 18:11:00,0 +200,1967-10-19 16:53:00,0 +507,1968-07-22 19:55:00,0 +6259,1967-06-06 22:21:00,0 +7542,1968-04-28 14:24:00,0 +5702,1967-07-19 18:29:00,0 +3757,1967-07-20 12:22:00,0 +8800,1968-08-28 05:56:00,0 +7120,1967-02-17 19:51:00,0 +3878,1968-09-23 20:29:00,0 +6906,1967-06-25 19:18:00,0 +451,1966-09-06 21:31:00,0 +9597,1965-03-12 18:32:00,0 +531,1965-11-03 14:51:00,0 +3862,1967-01-03 13:27:00,0 +8011,1966-03-26 16:18:00,0 +2379,1965-04-28 03:59:00,0 +6481,1966-07-30 13:39:00,0 +7926,1967-11-16 03:13:00,0 +8524,1966-01-28 11:57:00,0 +930,1966-03-14 20:33:00,0 +1745,1969-10-11 19:32:00,0 +907,1966-07-07 07:10:00,0 +2112,1965-07-06 04:39:00,0 +5398,1967-08-02 12:19:00,0 +5463,1966-03-23 21:26:00,0 +976,1966-08-09 07:12:00,0 +9668,1969-08-28 19:30:00,0 +3975,1966-04-26 20:13:00,0 +2007,1967-04-15 02:39:00,0 +4424,1965-05-10 03:31:00,0 +2530,1966-12-31 15:41:00,0 +1890,1966-07-21 02:57:00,0 +7666,1969-08-27 11:27:00,0 +8274,1967-04-04 18:31:00,0 +4491,1969-09-20 01:02:00,0 +7338,1967-10-09 03:40:00,0 +7809,1965-03-06 17:07:00,0 +4152,1966-06-13 01:18:00,0 +4465,1966-07-03 01:33:00,0 +4451,1966-11-23 06:41:00,0 +7137,1966-03-04 17:30:00,0 +4696,1968-11-22 18:56:00,0 +9334,1967-01-07 05:35:00,0 +2055,1968-10-27 09:16:00,0 +9364,1965-08-19 18:33:00,0 +6873,1965-01-15 03:34:00,0 +3926,1966-09-07 07:24:00,0 +4912,1966-09-18 18:15:00,0 +8241,1965-11-07 11:00:00,0 +3774,1965-02-14 02:41:00,0 +9674,1966-02-04 08:19:00,0 +4561,1969-02-24 13:38:00,0 +9393,1968-09-04 11:18:00,0 +7280,1969-07-21 12:39:00,0 +3828,1966-09-29 11:47:00,0 +6004,1965-11-14 04:49:00,0 +765,1967-03-10 14:27:00,0 +1778,1965-12-30 17:00:00,0 +9277,1966-04-19 14:14:00,0 +491,1968-05-03 21:48:00,0 +7506,1968-01-04 13:30:00,0 +7238,1968-02-03 19:24:00,0 +172,1965-11-04 13:12:00,0 +1149,1968-09-23 17:28:00,0 +6125,1967-11-27 15:23:00,0 +7618,1969-10-24 15:08:00,0 +9470,1965-10-29 15:43:00,0 +58,1969-07-02 20:23:00,0 +4296,1965-04-10 07:55:00,0 +1643,1969-03-15 20:47:00,0 +3201,1968-03-07 01:14:00,0 +3295,1965-08-23 19:40:00,0 +3161,1967-04-25 10:38:00,0 +1762,1969-08-27 04:39:00,0 +5458,1967-01-16 22:06:00,0 +2383,1966-11-10 05:33:00,0 +9720,1966-03-25 00:22:00,0 +6137,1965-10-07 09:21:00,0 +4473,1968-04-12 06:21:00,0 +7120,1965-09-02 14:10:00,0 +2313,1966-01-25 22:35:00,0 +6614,1968-02-05 12:25:00,0 +3339,1968-07-03 12:03:00,0 +9179,1966-08-14 02:02:00,0 +718,1966-10-22 01:29:00,0 +3766,1967-08-27 08:29:00,0 +5315,1968-12-30 21:02:00,0 +1067,1967-06-17 20:58:00,0 +5464,1968-06-15 05:44:00,0 +4014,1966-02-01 22:44:00,0 +6366,1967-04-24 21:43:00,0 +3970,1969-06-11 23:52:00,0 +3737,1969-02-14 03:29:00,0 +2587,1967-11-02 12:22:00,0 +8439,1968-03-07 01:03:00,0 +8298,1965-06-16 16:14:00,0 +9884,1969-05-09 18:36:00,0 +7019,1965-01-19 09:48:00,0 +9876,1966-10-22 19:08:00,0 +6348,1966-11-15 18:01:00,0 +4057,1967-06-19 20:14:00,0 +833,1969-08-17 18:35:00,0 +4780,1967-02-18 23:28:00,0 +2489,1967-07-01 20:15:00,0 +7430,1966-10-31 13:03:00,0 +4463,1969-03-14 15:58:00,0 +5998,1969-03-15 04:17:00,0 +7581,1968-03-26 04:39:00,0 +2992,1965-08-14 20:48:00,0 +5664,1966-08-28 22:38:00,0 +2478,1968-12-19 18:49:00,0 +798,1969-11-23 13:26:00,0 +6983,1966-03-25 23:40:00,0 +9868,1968-05-12 03:42:00,0 +5118,1966-01-15 10:12:00,0 +7629,1967-11-20 06:25:00,0 +7087,1966-05-10 04:16:00,0 +9746,1969-12-23 16:20:00,0 +3252,1967-10-25 14:15:00,0 +9626,1966-09-29 05:03:00,0 +8596,1968-03-24 09:09:00,0 +9308,1969-03-30 04:31:00,0 +149,1969-07-22 17:22:00,0 +4601,1968-04-04 17:42:00,0 +2144,1966-10-09 10:14:00,0 +1937,1965-05-20 20:19:00,0 +5063,1967-05-31 12:31:00,0 +9893,1965-07-22 05:51:00,0 +3843,1969-10-27 09:04:00,0 +7584,1966-07-24 11:44:00,0 +4972,1965-08-06 01:51:00,0 +4157,1965-06-23 12:59:00,0 +1190,1969-03-17 03:39:00,0 +7401,1966-10-10 15:08:00,0 +6693,1965-12-01 11:25:00,0 +1847,1969-09-17 11:19:00,0 +6736,1967-06-08 06:47:00,0 +553,1969-12-07 11:57:00,0 +7690,1969-12-08 17:32:00,0 +4165,1967-05-21 23:41:00,0 +9457,1968-01-25 13:31:00,0 +5134,1965-12-10 18:14:00,0 +8265,1968-08-31 19:39:00,0 +1927,1968-02-16 15:13:00,0 +2180,1966-03-01 19:15:00,0 +7779,1965-12-21 17:58:00,0 +8021,1966-10-09 03:22:00,0 +4094,1967-08-01 03:28:00,0 +3769,1965-07-01 14:27:00,0 +2679,1965-07-12 04:51:00,0 +7798,1969-01-21 14:34:00,0 +9234,1965-12-03 22:16:00,0 +1011,1969-01-02 11:39:00,0 +3883,1968-06-19 18:48:00,0 +5487,1965-10-23 02:57:00,0 +8338,1967-10-23 13:43:00,0 +5450,1966-09-16 03:01:00,0 +2005,1967-02-22 08:19:00,0 +7641,1968-09-27 21:39:00,0 +1599,1965-07-18 00:52:00,0 +9423,1965-11-05 06:07:00,0 +7365,1968-03-15 14:44:00,0 +938,1965-05-05 14:49:00,0 +3207,1966-12-03 11:02:00,0 +4193,1966-08-31 18:28:00,0 +2426,1967-01-07 21:02:00,0 +7595,1967-10-03 19:18:00,0 +651,1969-06-02 03:02:00,0 +8737,1965-07-24 00:40:00,0 +2742,1968-09-27 09:25:00,0 +3070,1965-12-07 18:02:00,0 +3400,1966-12-21 21:32:00,0 +9356,1965-01-18 18:20:00,0 +5690,1968-07-20 04:25:00,0 +793,1966-03-30 04:03:00,0 +9457,1966-04-01 21:55:00,0 +1159,1968-01-14 11:43:00,0 +2738,1969-09-24 03:24:00,0 +3104,1967-07-21 04:50:00,0 +9621,1967-06-20 18:13:00,0 +5663,1966-11-26 16:32:00,0 +4737,1965-08-31 17:40:00,0 +1791,1968-08-20 14:49:00,0 +6834,1965-09-29 08:30:00,0 +3682,1965-03-09 18:56:00,0 +5831,1969-01-27 06:53:00,0 +5615,1968-10-05 11:17:00,0 +4175,1966-10-04 08:42:00,0 +243,1969-01-19 11:01:00,0 +1554,1967-10-23 23:44:00,0 +1278,1967-08-26 04:29:00,0 +7241,1967-04-17 10:15:00,0 +4108,1967-01-16 18:03:00,0 +2268,1966-10-24 13:48:00,0 +3670,1965-08-09 17:28:00,0 +2163,1966-01-08 23:51:00,0 +6860,1969-01-25 23:06:00,0 +4523,1969-04-17 23:23:00,0 +9032,1967-08-06 21:43:00,0 +4058,1966-04-30 16:00:00,0 +9678,1966-06-04 14:10:00,0 +726,1967-09-20 17:21:00,0 +4229,1967-04-16 19:28:00,0 +7394,1969-10-29 01:31:00,0 +7005,1969-07-04 13:40:00,0 +2554,1968-03-29 03:53:00,0 +5478,1967-01-28 17:04:00,0 +147,1966-11-13 20:11:00,0 +6635,1967-03-30 07:14:00,0 +8456,1966-02-13 05:48:00,0 +9359,1966-04-24 11:43:00,0 +9282,1965-11-05 15:11:00,0 +6085,1966-01-31 03:37:00,0 +9850,1967-12-20 19:15:00,0 +3555,1965-06-26 03:15:00,0 +8037,1968-03-02 19:34:00,0 +6402,1966-03-01 16:13:00,0 +3640,1967-12-18 07:26:00,0 +1223,1965-01-19 21:50:00,0 +9329,1965-09-06 21:25:00,0 +1366,1967-04-15 10:54:00,0 +1768,1967-07-18 21:51:00,0 +7305,1965-08-09 16:01:00,0 +1810,1965-03-26 20:48:00,0 +5800,1969-12-08 12:59:00,0 +9069,1969-12-06 06:52:00,0 +6917,1967-08-24 10:39:00,0 +6269,1969-07-03 12:19:00,0 +6577,1967-04-18 23:35:00,0 +2862,1965-12-03 17:12:00,0 +285,1967-10-11 13:06:00,0 +8225,1966-05-14 17:41:00,0 +1886,1965-11-12 12:10:00,0 +1740,1966-08-07 11:32:00,0 +536,1965-05-30 15:08:00,0 +2685,1966-02-10 22:39:00,0 +3256,1968-05-09 13:20:00,0 +1061,1966-04-30 09:08:00,0 +6094,1966-04-11 01:39:00,0 +6895,1969-11-06 14:16:00,0 +3789,1966-11-21 15:34:00,0 +2111,1967-12-09 18:42:00,0 +7084,1966-04-01 14:19:00,0 +9952,1969-04-22 17:44:00,0 +8523,1965-03-10 12:31:00,0 +868,1968-05-31 07:51:00,0 +3644,1965-07-15 22:30:00,0 +7927,1966-11-27 06:17:00,0 +3264,1968-07-26 11:49:00,0 +7126,1969-07-11 06:27:00,0 +1756,1965-01-21 04:28:00,0 +2065,1966-07-26 03:46:00,0 +8637,1969-09-27 18:45:00,0 +797,1969-08-15 16:16:00,0 +7279,1967-03-02 20:43:00,0 +6651,1966-10-27 08:12:00,0 +2898,1965-07-25 00:25:00,0 +7832,1968-10-18 12:58:00,0 +4828,1965-12-18 07:19:00,0 +4477,1969-05-22 06:48:00,0 +2680,1968-12-06 06:21:00,0 +1986,1967-10-08 07:11:00,0 +1918,1969-01-30 03:02:00,0 +1906,1965-08-06 02:31:00,0 +6989,1967-08-16 22:50:00,0 +6886,1967-05-31 08:51:00,0 +4954,1967-06-03 14:45:00,0 +4665,1969-07-18 11:51:00,0 +2953,1967-07-30 13:14:00,0 +3566,1969-09-23 03:44:00,0 +4779,1965-08-07 13:17:00,0 +603,1965-10-21 02:28:00,0 +75,1966-10-08 05:47:00,0 +2477,1965-02-08 08:53:00,0 +2443,1966-09-03 21:18:00,0 +3976,1969-07-15 02:21:00,0 +2955,1966-11-07 10:01:00,0 +6073,1965-02-01 10:13:00,0 +1431,1968-11-01 10:44:00,0 +1053,1965-02-13 03:02:00,0 +6709,1969-06-22 02:28:00,0 +7271,1969-04-19 08:35:00,0 +7592,1966-08-17 09:45:00,0 +5967,1967-08-16 23:58:00,0 +7623,1969-06-05 17:24:00,0 +4082,1965-08-24 22:57:00,0 +6918,1969-07-10 14:50:00,0 +1855,1968-03-21 20:58:00,0 +1528,1969-02-24 21:11:00,0 +8721,1966-07-08 19:35:00,0 +6146,1967-08-11 18:30:00,0 +4672,1969-11-23 12:31:00,0 +8143,1966-12-25 23:04:00,0 +5168,1968-09-07 22:53:00,0 +302,1967-12-24 12:32:00,0 +6210,1966-11-06 23:42:00,0 +6777,1968-03-30 22:23:00,0 +8556,1969-04-05 05:16:00,0 +3324,1965-12-14 20:37:00,0 +747,1967-04-01 22:30:00,0 +1215,1966-08-28 14:48:00,0 +760,1967-04-16 20:26:00,0 +5356,1965-07-11 05:23:00,0 +1089,1965-06-30 17:32:00,0 +6832,1966-07-18 01:43:00,0 +1032,1967-03-14 06:41:00,0 +4945,1967-10-02 05:43:00,0 +5171,1965-10-04 05:07:00,0 +2193,1967-08-03 16:44:00,0 +5805,1967-07-13 22:27:00,0 +6681,1967-02-17 17:12:00,0 +8531,1966-12-31 06:25:00,0 +1070,1965-09-16 07:29:00,0 +4282,1967-05-26 03:42:00,0 +1786,1968-07-29 18:18:00,0 +3941,1968-10-06 04:42:00,0 +1566,1969-03-24 07:24:00,0 +1470,1966-01-06 15:35:00,0 +7319,1966-09-25 00:12:00,0 +6371,1968-11-14 05:07:00,0 +7491,1969-11-07 03:09:00,0 +9152,1969-04-26 17:19:00,0 +2966,1968-02-16 01:34:00,0 +1659,1967-09-21 22:22:00,0 +3116,1968-11-25 15:57:00,0 +223,1968-06-11 04:22:00,0 +3913,1967-01-06 09:05:00,0 +7673,1968-03-04 21:54:00,0 +2667,1965-01-03 17:22:00,0 +836,1966-05-05 11:12:00,0 +9190,1965-08-24 06:56:00,0 +3152,1966-06-02 20:28:00,0 +6845,1965-02-19 10:07:00,0 +107,1968-05-25 20:19:00,0 +1251,1965-07-23 21:17:00,0 +3688,1967-03-07 11:29:00,0 +4391,1967-06-09 19:36:00,0 +2666,1968-11-30 02:53:00,0 +1602,1965-05-21 07:02:00,0 +362,1969-08-06 10:31:00,0 +7710,1965-06-22 06:40:00,0 +4033,1968-09-11 15:38:00,0 +440,1969-07-14 14:50:00,0 +8083,1966-03-02 15:46:00,0 +1826,1968-12-13 09:09:00,0 +9614,1966-05-24 16:09:00,0 +2646,1968-04-27 10:30:00,0 +6100,1966-05-31 23:58:00,0 +5747,1969-05-27 04:12:00,0 +6908,1967-12-05 08:10:00,0 +6810,1966-11-04 12:07:00,0 +9861,1968-07-13 11:55:00,0 +5598,1965-02-04 18:01:00,0 +5346,1969-09-11 14:31:00,0 +9945,1968-08-21 21:23:00,0 +1888,1966-02-17 04:49:00,0 +1711,1968-10-03 04:03:00,0 +4433,1965-01-27 13:28:00,0 +2929,1965-11-28 02:53:00,0 +4076,1965-01-08 10:53:00,0 +3925,1969-05-16 04:21:00,0 +6752,1969-08-21 20:24:00,0 +7836,1969-12-14 13:32:00,0 +8506,1969-09-04 05:45:00,0 +5226,1968-12-29 09:35:00,0 +7745,1966-10-05 19:10:00,0 +7897,1967-04-18 11:34:00,0 +2420,1967-07-13 11:44:00,0 +6866,1968-05-16 05:15:00,0 +3,1968-03-17 22:35:00,0 +6079,1969-09-05 13:16:00,0 +6198,1965-09-23 22:23:00,0 +9242,1968-07-17 07:06:00,0 +6085,1967-11-24 05:35:00,0 +6001,1968-04-06 07:43:00,0 +7267,1968-07-30 10:46:00,0 +2235,1966-12-23 14:54:00,0 +35,1969-03-12 18:34:00,0 +7861,1966-07-28 13:27:00,0 +8795,1965-06-06 17:51:00,0 +7485,1967-09-04 04:52:00,0 +7195,1969-06-23 00:29:00,0 +4763,1967-09-24 03:19:00,0 +6089,1967-02-17 19:30:00,0 +1620,1969-03-14 06:51:00,0 +9031,1967-06-19 02:35:00,0 +6098,1968-07-22 13:19:00,0 +3763,1969-12-06 09:42:00,0 +5542,1966-04-03 23:39:00,0 +296,1968-04-10 13:21:00,0 +989,1966-02-03 14:04:00,0 +2070,1967-07-31 20:03:00,0 +2853,1966-12-05 01:09:00,0 +6431,1968-08-06 17:02:00,0 +3047,1969-11-28 22:27:00,0 +1968,1968-08-29 03:32:00,0 +9867,1967-09-07 01:30:00,0 +5975,1965-05-19 02:36:00,0 +4630,1965-05-11 05:05:00,0 +2981,1966-10-10 05:33:00,0 +6063,1967-05-27 12:11:00,0 +826,1969-03-14 09:37:00,0 +7739,1969-11-12 11:17:00,0 +7099,1968-09-26 09:01:00,0 +8017,1968-05-02 10:19:00,0 +4562,1965-10-12 08:09:00,0 +2340,1969-12-17 03:17:00,0 +8696,1965-07-07 18:18:00,0 +2482,1967-01-07 13:51:00,0 +8263,1967-07-26 21:32:00,0 +1119,1967-02-11 06:59:00,0 +1133,1969-07-16 07:20:00,0 +1603,1965-11-03 02:50:00,0 +707,1965-07-20 00:14:00,0 +9413,1969-10-24 10:06:00,0 +3102,1967-01-11 13:15:00,0 +5771,1967-11-24 19:13:00,0 +9669,1969-01-17 14:01:00,0 +9175,1969-05-02 22:59:00,0 +1887,1969-08-04 10:09:00,0 +2321,1967-08-16 07:45:00,0 +7751,1966-04-04 20:51:00,0 +4194,1969-11-23 08:47:00,0 +2150,1968-01-12 21:08:00,0 +7739,1968-09-14 18:24:00,0 +6159,1965-09-20 10:05:00,0 +6280,1966-01-26 12:54:00,0 +1192,1969-12-22 16:20:00,0 +2539,1968-10-12 11:59:00,0 +2412,1968-04-21 21:37:00,0 +5232,1969-10-03 22:47:00,0 +3740,1966-07-29 12:19:00,0 +8670,1965-12-04 02:25:00,0 +3946,1966-11-27 19:59:00,0 +1444,1969-07-25 11:30:00,0 +869,1967-12-06 00:00:00,0 +3443,1965-08-12 03:43:00,0 +9898,1967-12-13 23:24:00,0 +3855,1965-10-26 01:37:00,0 +9149,1965-09-08 13:18:00,0 +3998,1965-03-07 19:45:00,0 +2796,1968-06-17 07:19:00,0 +8029,1966-12-17 11:19:00,0 +8601,1968-05-10 08:15:00,0 +3824,1969-07-11 12:42:00,0 +3223,1967-07-13 01:50:00,0 +2834,1967-10-21 19:28:00,0 +8655,1966-09-29 21:56:00,0 +3250,1966-03-16 00:43:00,0 +1996,1967-10-08 08:18:00,0 +4123,1966-12-29 18:06:00,0 +8610,1968-04-06 04:48:00,0 +4397,1969-06-22 00:42:00,0 +1869,1968-12-28 12:54:00,0 +664,1967-06-11 22:01:00,0 +9154,1967-10-09 18:00:00,0 +1475,1966-04-30 15:28:00,0 +8356,1965-01-23 04:11:00,0 +2019,1968-08-03 01:58:00,0 +5774,1966-04-14 14:56:00,0 +3597,1966-03-10 13:35:00,0 +7597,1966-03-04 07:57:00,0 +1216,1968-07-01 09:10:00,0 +164,1967-02-11 06:48:00,0 +1485,1967-03-13 01:13:00,0 +6566,1967-09-28 11:59:00,0 +2867,1967-09-28 07:11:00,0 +1376,1967-11-17 23:21:00,0 +9182,1969-11-10 18:07:00,0 +6536,1969-05-05 22:34:00,0 +3291,1965-08-05 22:20:00,0 +6344,1966-03-26 18:31:00,0 +5532,1966-12-16 12:36:00,0 +3312,1967-09-21 00:39:00,0 +1218,1965-02-11 12:19:00,0 +1963,1968-03-06 19:33:00,0 +5730,1968-12-26 05:07:00,0 +7809,1966-01-09 17:29:00,0 +3820,1966-05-04 05:56:00,0 +520,1966-06-17 07:51:00,0 +3072,1965-11-17 19:26:00,0 +8807,1968-06-22 17:13:00,0 +593,1966-04-15 22:19:00,0 +4298,1965-02-26 03:06:00,0 +6837,1967-09-15 16:00:00,0 +3188,1966-11-18 21:14:00,0 +4067,1968-06-01 20:00:00,0 +8180,1969-11-16 19:41:00,0 +4800,1966-02-12 18:50:00,0 +5532,1966-08-07 20:21:00,0 +3078,1967-05-06 09:21:00,0 +1996,1966-05-11 18:52:00,0 +2150,1965-05-09 07:13:00,0 +9678,1966-01-08 05:51:00,0 +4926,1968-04-12 21:54:00,0 +4466,1966-08-09 11:55:00,0 +1913,1967-07-14 04:52:00,0 +9431,1969-12-29 19:28:00,0 +536,1965-03-14 00:06:00,0 +4949,1965-02-23 09:53:00,0 +1939,1969-03-02 13:04:00,0 +2534,1969-01-31 07:10:00,0 +4767,1966-02-03 19:15:00,0 +1565,1969-11-24 02:32:00,0 +4513,1968-04-09 08:12:00,0 +4781,1968-05-03 11:35:00,0 +497,1969-12-23 20:08:00,0 +8671,1968-10-22 00:03:00,0 +5718,1968-01-03 12:55:00,0 +641,1967-06-04 18:09:00,0 +2094,1965-09-27 13:09:00,0 +8660,1965-07-14 03:40:00,0 +9398,1968-04-21 18:26:00,0 +9937,1966-12-09 05:11:00,0 +5711,1968-01-03 20:44:00,0 +7345,1968-07-25 12:50:00,0 +8867,1967-09-03 03:35:00,0 +2810,1968-03-01 13:55:00,0 +5460,1967-06-09 17:35:00,0 +367,1965-09-26 13:06:00,0 +4809,1969-07-04 08:20:00,0 +2050,1966-08-17 15:59:00,0 +298,1966-10-14 16:28:00,0 +509,1965-04-01 01:22:00,0 +4266,1967-05-08 15:09:00,0 +8409,1968-08-04 05:55:00,0 +223,1966-01-09 00:38:00,0 +7656,1965-08-30 16:02:00,0 +7677,1968-06-09 12:41:00,0 +3887,1968-11-07 14:33:00,0 +2722,1966-06-21 14:49:00,0 +6784,1965-07-07 04:00:00,0 +4044,1969-06-26 18:00:00,0 +2394,1967-09-17 16:44:00,0 +5859,1969-03-22 04:33:00,0 +4472,1965-05-13 09:17:00,0 +8981,1965-04-26 23:39:00,0 +6125,1965-02-21 05:49:00,0 +5688,1966-11-17 06:40:00,0 +306,1965-10-23 00:03:00,0 +7015,1967-03-27 16:32:00,0 +8534,1968-11-05 00:57:00,0 +4283,1967-09-28 13:24:00,0 +972,1967-09-06 04:23:00,0 +7720,1967-08-22 13:40:00,0 +6372,1969-12-11 09:44:00,0 +5516,1966-12-24 13:04:00,0 +634,1967-08-16 00:19:00,0 +6219,1969-09-07 22:08:00,0 +1091,1969-04-11 17:28:00,0 +3965,1965-06-22 14:45:00,0 +5837,1968-12-14 01:11:00,0 +3578,1965-07-31 22:43:00,0 +8407,1965-11-23 10:42:00,0 +8010,1969-05-15 06:15:00,0 +7258,1965-05-08 18:19:00,0 +6604,1966-02-18 04:55:00,0 +4816,1966-05-04 01:36:00,0 +2092,1965-01-28 01:46:00,0 +3382,1969-10-05 23:50:00,0 +7395,1968-07-10 13:40:00,0 +429,1966-12-31 11:37:00,0 +5306,1967-11-02 22:50:00,0 +9953,1966-05-15 18:30:00,0 +1726,1966-04-14 23:19:00,0 +4242,1968-05-15 19:31:00,0 +3235,1969-05-17 07:41:00,0 +1608,1969-12-23 12:44:00,0 +5762,1969-10-28 07:05:00,0 +5794,1966-02-24 21:38:00,0 +24,1967-10-31 18:05:00,0 +3421,1965-03-17 18:25:00,0 +9852,1965-11-13 07:02:00,0 +2485,1966-06-06 02:21:00,0 +893,1968-01-20 04:45:00,0 +2987,1965-03-25 05:11:00,0 +2366,1969-11-14 19:23:00,0 +5992,1966-05-10 22:41:00,0 +9181,1965-12-28 08:47:00,0 +1711,1965-09-24 03:11:00,0 +5474,1968-07-19 08:47:00,0 +3797,1968-09-25 14:24:00,0 +4428,1966-09-26 01:55:00,0 +8757,1969-01-01 13:25:00,0 +4007,1965-12-24 06:21:00,0 +1621,1965-08-30 18:08:00,0 +2980,1966-12-06 19:10:00,0 +9732,1969-03-09 15:19:00,0 +3850,1969-07-24 22:43:00,0 +728,1967-09-10 18:53:00,0 +2015,1967-08-22 17:14:00,0 +2662,1968-06-25 14:24:00,0 +7731,1967-09-02 09:26:00,0 +6529,1967-10-24 07:29:00,0 +8242,1968-04-12 02:05:00,0 +7451,1969-08-06 09:18:00,0 +6513,1965-10-26 14:56:00,0 +2805,1967-11-01 12:27:00,0 +3079,1965-07-31 07:10:00,0 +4249,1969-12-02 06:15:00,0 +1994,1969-05-31 20:50:00,0 +1340,1966-11-05 12:57:00,0 +5944,1967-07-20 13:18:00,0 +1924,1966-09-14 22:17:00,0 +5532,1965-04-09 16:01:00,0 +3817,1967-01-27 08:39:00,0 +6704,1966-04-27 11:59:00,0 +3065,1966-12-29 11:02:00,0 +2408,1966-10-07 08:25:00,0 +4998,1966-12-29 08:37:00,0 +1976,1965-10-08 17:54:00,0 +5372,1967-12-31 18:44:00,0 +9291,1966-04-04 00:48:00,0 +3072,1967-10-21 01:44:00,0 +7412,1965-08-01 02:44:00,0 +9699,1966-08-25 12:34:00,0 +4066,1969-05-09 12:35:00,0 +5326,1965-01-30 15:41:00,0 +9273,1969-11-05 08:28:00,0 +6785,1966-04-30 08:06:00,0 +8146,1965-07-15 05:29:00,0 +4521,1965-07-11 06:42:00,0 +7195,1965-08-16 11:57:00,0 +7691,1968-08-24 01:30:00,0 +2769,1969-01-31 08:44:00,0 +8543,1966-09-24 02:54:00,0 +7554,1966-05-22 14:52:00,0 +832,1965-09-20 17:24:00,0 +3575,1968-01-15 21:51:00,0 +7723,1966-05-08 23:30:00,0 +4702,1968-06-11 07:02:00,0 +3910,1966-01-19 16:16:00,0 +5336,1965-01-08 12:43:00,0 +7398,1967-02-19 07:58:00,0 +5082,1968-04-10 07:30:00,0 +4846,1966-11-04 08:36:00,0 +6779,1969-02-06 19:45:00,0 +3271,1966-09-11 22:53:00,0 +9388,1969-11-30 08:50:00,0 +7147,1966-05-10 13:50:00,0 +5324,1968-10-23 18:48:00,0 +2874,1965-07-21 13:23:00,0 +8856,1969-03-15 22:42:00,0 +8838,1969-02-24 03:20:00,0 +3110,1968-09-30 07:25:00,0 +4056,1966-04-29 18:44:00,0 +4371,1965-10-09 11:15:00,0 +861,1968-09-12 13:07:00,0 +1942,1966-06-24 11:57:00,0 +3249,1967-02-01 09:25:00,0 +4117,1968-09-06 06:23:00,0 +5018,1967-04-21 06:08:00,0 +3726,1967-11-26 20:34:00,0 +1923,1968-05-16 21:53:00,0 +4261,1965-05-26 16:51:00,0 +4203,1965-12-01 10:22:00,0 +6859,1967-05-21 16:58:00,0 +6969,1965-02-13 11:39:00,0 +5855,1966-12-28 21:00:00,0 +1944,1966-01-20 18:53:00,0 +3037,1966-04-29 23:31:00,0 +9168,1965-07-22 21:45:00,0 +2191,1968-04-26 21:12:00,0 +1877,1966-10-15 22:52:00,0 +8874,1967-08-01 02:15:00,0 +2949,1969-05-10 11:17:00,0 +9641,1965-04-10 12:30:00,0 +5699,1966-06-18 01:36:00,0 +6153,1967-02-05 23:46:00,0 +4879,1966-11-04 02:21:00,0 +7356,1967-02-14 02:16:00,0 +8233,1966-06-29 00:11:00,0 +1776,1968-04-09 02:25:00,0 +7798,1967-04-18 14:19:00,0 +1738,1966-05-31 18:17:00,0 +2867,1965-08-04 00:28:00,0 +7901,1969-10-19 12:21:00,0 +3892,1965-06-20 01:17:00,0 +3386,1966-10-24 02:58:00,0 +5603,1965-10-17 05:35:00,0 +9484,1965-02-01 05:38:00,0 +3406,1966-09-14 13:34:00,0 +8697,1967-04-16 11:12:00,0 +5411,1965-01-07 22:53:00,0 +4835,1965-04-03 03:11:00,0 +7505,1965-10-18 03:59:00,0 +4813,1966-12-24 08:03:00,0 +7004,1967-01-14 17:38:00,0 +3153,1965-06-28 06:42:00,0 +5902,1966-12-23 19:25:00,0 +7875,1965-06-09 18:52:00,0 +5497,1966-01-10 05:20:00,0 +1516,1966-11-23 16:04:00,0 +881,1966-05-17 04:34:00,0 +8219,1965-09-05 12:17:00,0 +3028,1966-03-15 07:47:00,0 +8609,1968-01-03 08:11:00,0 +7375,1969-03-23 10:36:00,0 +1801,1968-09-09 02:24:00,0 +2872,1968-04-28 18:55:00,0 +920,1968-12-12 11:49:00,0 +9782,1966-12-06 15:21:00,0 +2259,1969-10-14 23:02:00,0 +1957,1967-10-17 18:00:00,0 +904,1966-05-20 19:31:00,0 +2548,1966-11-18 11:28:00,0 +7262,1967-09-06 15:43:00,0 +142,1965-04-23 21:11:00,0 +5026,1969-02-01 12:14:00,0 +9063,1969-02-25 07:04:00,0 +4063,1965-07-20 07:59:00,0 +8858,1967-12-14 18:14:00,0 +8327,1965-12-07 11:52:00,0 +5288,1965-03-24 16:19:00,0 +7637,1967-04-29 12:54:00,0 +2150,1969-03-12 20:13:00,0 +7659,1966-01-30 09:05:00,0 +8080,1968-07-31 09:17:00,0 +6115,1969-11-21 15:54:00,0 +3113,1967-03-25 08:16:00,0 +9311,1965-01-06 04:00:00,0 +9817,1966-02-24 18:31:00,0 +4706,1965-10-20 09:43:00,0 +8724,1966-09-10 10:19:00,0 +5741,1969-03-10 23:03:00,0 +981,1965-12-05 19:49:00,0 +3078,1966-01-17 14:46:00,0 +1585,1968-02-13 18:32:00,0 +9565,1965-04-07 06:09:00,0 +8366,1965-09-29 05:22:00,0 +8951,1965-11-27 08:46:00,0 +3662,1968-08-02 13:39:00,0 +7436,1967-06-06 21:30:00,0 +6323,1965-06-07 21:45:00,0 +8135,1968-07-18 05:24:00,0 +333,1965-11-30 13:41:00,0 +8360,1965-03-22 07:57:00,0 +4911,1967-12-30 16:58:00,0 +2678,1965-11-07 19:52:00,0 +8153,1968-04-19 06:07:00,0 +9136,1967-12-15 18:52:00,0 +2047,1966-03-21 16:20:00,0 +3233,1966-04-14 08:27:00,0 +1658,1968-09-19 03:44:00,0 +9044,1966-02-21 08:44:00,0 +9985,1966-05-31 22:19:00,0 +5882,1967-10-18 17:38:00,0 +7689,1966-12-29 10:23:00,0 +3035,1968-12-17 06:56:00,0 +5465,1968-09-11 18:34:00,0 +9333,1967-10-21 00:56:00,0 +9225,1966-07-07 04:22:00,0 +8332,1967-01-01 20:11:00,0 +9367,1968-06-17 17:14:00,0 +4951,1967-12-24 03:50:00,0 +5390,1968-03-27 05:27:00,0 +4388,1968-03-11 01:32:00,0 +1196,1966-05-17 07:40:00,0 +8311,1969-12-25 06:35:00,0 +8967,1968-09-30 12:23:00,0 +823,1967-09-11 01:08:00,0 +3764,1965-10-05 11:56:00,0 +2376,1969-06-11 18:53:00,0 +9085,1965-09-20 06:54:00,0 +2226,1965-11-13 11:55:00,0 +7889,1965-08-19 18:57:00,0 +3852,1967-05-21 22:53:00,0 +9834,1969-06-07 23:00:00,0 +1255,1967-10-25 02:01:00,0 +9723,1965-03-19 05:41:00,0 +6442,1966-06-05 05:58:00,0 +3790,1965-09-13 09:16:00,0 +7225,1968-02-13 21:56:00,0 +295,1965-06-25 21:54:00,0 +6660,1965-05-01 12:48:00,0 +1306,1967-12-02 07:51:00,0 +6560,1968-01-19 16:10:00,0 +5227,1966-04-17 02:13:00,0 +3026,1968-11-09 16:28:00,0 +6758,1966-10-28 08:18:00,0 +7344,1966-03-03 16:03:00,0 +6564,1967-02-21 07:19:00,0 +877,1968-06-23 03:20:00,0 +7427,1966-01-27 20:55:00,0 +7623,1965-05-16 15:06:00,0 +8344,1966-05-04 11:54:00,0 +7512,1969-10-23 01:56:00,0 +6395,1967-02-08 12:19:00,0 +8905,1967-06-23 20:45:00,0 +9891,1966-08-19 14:26:00,0 +5927,1968-10-16 08:48:00,0 +3684,1969-05-23 08:17:00,0 +3861,1965-08-17 00:40:00,0 +6672,1969-09-14 12:49:00,0 +9040,1967-07-03 18:58:00,0 +4328,1968-09-24 09:56:00,0 +187,1969-03-03 03:44:00,0 +1870,1968-12-07 11:22:00,0 +833,1968-01-23 17:08:00,0 +1061,1967-02-15 06:22:00,0 +7231,1966-01-29 16:00:00,0 +141,1967-05-28 20:36:00,0 +4468,1966-01-14 01:21:00,0 +9179,1967-08-13 15:30:00,0 +7858,1966-03-18 07:15:00,0 +5975,1966-09-19 05:12:00,0 +3285,1965-10-16 15:12:00,0 +6053,1969-02-01 06:51:00,0 +5705,1965-01-18 18:40:00,0 +5880,1966-05-01 15:51:00,0 +530,1966-03-18 05:43:00,0 +8499,1966-06-22 11:04:00,0 +645,1966-10-05 13:39:00,0 +248,1965-04-20 17:50:00,0 +5030,1967-02-16 14:30:00,0 +7247,1966-07-28 09:21:00,0 +2733,1966-07-08 08:34:00,0 +5022,1967-02-28 13:07:00,0 +6802,1968-11-01 07:57:00,0 +8679,1965-05-26 06:20:00,0 +4580,1969-11-13 15:48:00,0 +3564,1966-02-09 15:04:00,0 +3465,1968-09-01 10:55:00,0 +3971,1968-07-30 21:43:00,0 +7074,1969-02-10 08:22:00,0 +2044,1968-07-08 16:32:00,0 +8858,1965-05-20 18:48:00,0 +5201,1969-04-08 14:10:00,0 +2051,1969-06-22 11:18:00,0 +9078,1967-06-18 10:34:00,0 +2861,1965-08-03 00:29:00,0 +2934,1967-09-12 00:43:00,0 +1600,1965-04-02 22:21:00,0 +8436,1969-06-21 22:57:00,0 +9321,1965-02-22 06:26:00,0 +2809,1965-03-23 06:42:00,0 +2828,1967-04-03 20:54:00,0 +5081,1966-11-26 06:32:00,0 +3880,1965-04-01 19:39:00,0 +893,1968-01-23 09:46:00,0 +7036,1967-01-18 12:58:00,0 +9430,1967-12-13 21:57:00,0 +2228,1968-06-13 09:55:00,0 +6478,1966-12-03 02:30:00,0 +6820,1965-01-18 07:26:00,0 +268,1966-05-16 13:33:00,0 +8299,1967-07-21 13:20:00,0 +6502,1966-11-10 11:45:00,0 +4988,1965-01-20 07:19:00,0 +8320,1967-07-29 22:03:00,0 +2202,1965-09-15 10:47:00,0 +1827,1968-06-10 06:58:00,0 +6196,1967-09-10 22:37:00,0 +9220,1966-05-18 18:51:00,0 +9946,1965-07-03 18:52:00,0 +9701,1968-11-27 07:15:00,0 +2899,1966-05-31 20:27:00,0 +743,1965-03-02 22:40:00,0 +5270,1965-12-05 01:17:00,0 +7215,1965-06-05 23:43:00,0 +6921,1966-07-17 13:46:00,0 +4520,1965-01-23 09:46:00,0 +5107,1966-05-06 14:10:00,0 +985,1969-08-17 14:59:00,0 +5693,1968-01-11 17:54:00,0 +7722,1966-12-19 05:06:00,0 +6310,1966-06-26 03:18:00,0 +1150,1969-08-13 09:56:00,0 +6224,1966-09-23 13:51:00,0 +310,1969-04-09 05:16:00,0 +5251,1969-08-18 23:40:00,0 +9559,1969-11-29 22:01:00,0 +1339,1966-09-03 01:28:00,0 +5256,1965-01-11 15:05:00,0 +7720,1965-01-13 04:14:00,0 +8515,1967-06-26 21:25:00,0 +1979,1965-02-23 22:47:00,0 +2802,1968-04-17 21:52:00,0 +5102,1969-05-05 18:11:00,0 +8044,1968-04-12 22:18:00,0 +9084,1965-09-17 01:53:00,0 +7967,1965-01-31 01:59:00,0 +8905,1967-10-23 08:29:00,0 +6310,1966-11-12 15:31:00,0 +6524,1967-12-22 12:52:00,0 +4988,1969-09-18 13:59:00,0 +8511,1966-07-07 01:32:00,0 +29,1965-10-03 06:23:00,0 +978,1965-11-22 08:56:00,0 +8176,1965-08-25 04:05:00,0 +1826,1965-11-04 17:23:00,0 +244,1965-12-17 15:54:00,0 +4704,1965-07-07 13:43:00,0 +6733,1966-02-05 17:53:00,0 +7418,1969-06-07 09:43:00,0 +602,1965-10-27 19:18:00,0 +79,1966-03-22 23:12:00,0 +5140,1965-03-31 20:18:00,0 +5620,1965-03-10 16:48:00,0 +1177,1966-04-19 19:03:00,0 +845,1965-06-01 10:08:00,0 +9645,1968-04-21 15:46:00,0 +7436,1966-04-16 13:52:00,0 +3562,1965-03-10 08:51:00,0 +5480,1967-05-14 16:45:00,0 +8212,1967-03-12 15:19:00,0 +5835,1966-02-21 07:45:00,0 +2826,1965-09-03 05:52:00,0 +5779,1967-09-12 19:46:00,0 +7624,1969-02-11 09:51:00,0 +2899,1965-03-30 19:54:00,0 +3081,1966-10-02 11:22:00,0 +9495,1966-06-22 12:42:00,0 +3128,1967-06-02 06:10:00,0 +8066,1965-08-19 01:02:00,0 +943,1969-04-06 00:27:00,0 +2353,1967-03-30 03:50:00,0 +7772,1967-04-01 21:18:00,0 +3240,1968-08-17 16:17:00,0 +8752,1967-07-25 09:46:00,0 +8916,1967-08-01 02:06:00,0 +3542,1969-02-08 01:06:00,0 +4579,1969-12-10 16:55:00,0 +4315,1968-03-05 06:48:00,0 +3858,1968-02-13 07:11:00,0 +461,1965-03-31 18:43:00,0 +8262,1967-09-23 05:03:00,0 +2,1969-03-10 13:58:00,0 +4468,1965-08-13 13:35:00,0 +1215,1967-01-27 11:35:00,0 +3577,1967-04-03 01:21:00,0 +7035,1967-02-23 22:13:00,0 +9359,1965-03-15 21:12:00,0 +9544,1969-02-03 15:21:00,0 +3055,1969-08-15 07:54:00,0 +1196,1965-03-29 09:38:00,0 +4443,1969-07-31 18:47:00,0 +6530,1968-08-11 02:23:00,0 +728,1968-01-31 13:10:00,0 +9095,1965-12-24 20:57:00,0 +2141,1966-11-13 21:55:00,0 +5810,1965-04-18 12:18:00,0 +7149,1965-09-16 06:25:00,0 +2988,1965-02-17 03:31:00,0 +9977,1967-07-18 21:07:00,0 +7958,1968-04-21 09:34:00,0 +496,1968-12-22 05:15:00,0 +5073,1968-08-22 22:43:00,0 +728,1966-02-15 08:52:00,0 +4833,1969-12-23 22:17:00,0 +8874,1968-07-20 17:32:00,0 +8420,1965-02-28 04:05:00,0 +6955,1968-12-05 03:13:00,0 +3462,1967-11-10 09:10:00,0 +9877,1967-11-16 20:53:00,0 +5126,1967-09-30 14:40:00,0 +3165,1969-10-22 05:01:00,0 +416,1965-11-13 02:29:00,0 +5468,1968-05-17 20:42:00,0 +4844,1969-02-16 10:03:00,0 +4385,1969-01-01 10:32:00,0 +8298,1966-05-17 02:49:00,0 +5370,1969-12-23 17:04:00,0 +1646,1966-08-18 03:51:00,0 +5826,1967-12-22 23:38:00,0 +9810,1965-09-26 06:42:00,0 +6278,1966-04-23 22:09:00,0 +7102,1968-06-07 13:22:00,0 +3854,1969-03-12 08:09:00,0 +5941,1965-10-09 14:03:00,0 +8748,1967-04-04 12:46:00,0 +2075,1967-12-13 00:35:00,0 +6975,1969-08-10 23:37:00,0 +8889,1968-12-29 22:16:00,0 +203,1968-09-25 21:25:00,0 +8761,1967-08-31 04:08:00,0 +6300,1966-09-28 14:48:00,0 +5919,1969-08-27 17:21:00,0 +3817,1966-07-14 18:31:00,0 +3055,1969-01-24 21:12:00,0 +4925,1968-09-23 07:30:00,0 +7658,1967-11-17 11:25:00,0 +4733,1968-10-06 12:30:00,0 +3650,1966-09-25 11:32:00,0 +8812,1969-12-09 02:53:00,0 +1365,1968-09-08 09:09:00,0 +4634,1965-06-14 22:29:00,0 +2718,1966-03-28 05:21:00,0 +9486,1967-05-15 06:54:00,0 +1360,1967-09-22 08:41:00,0 +9206,1968-05-29 14:32:00,0 +1408,1968-01-27 21:57:00,0 +1536,1967-07-17 20:22:00,0 +7811,1967-03-17 04:27:00,0 +2093,1968-04-20 09:48:00,0 +9302,1965-03-20 01:58:00,0 +8008,1968-09-26 08:44:00,0 +4113,1968-02-09 19:08:00,0 +8227,1966-06-24 05:50:00,0 +7101,1965-03-10 18:59:00,0 +5383,1968-06-28 21:02:00,0 +27,1967-01-15 01:53:00,0 +2009,1967-05-25 04:52:00,0 +9142,1966-10-14 10:30:00,0 +4247,1968-02-14 19:37:00,0 +3280,1966-02-02 05:31:00,0 +8546,1968-07-06 22:00:00,0 +1,1968-05-06 09:48:00,0 +3628,1969-02-09 14:19:00,0 +603,1966-09-27 20:18:00,0 +1306,1967-08-13 19:56:00,0 +4861,1969-08-27 06:24:00,0 +6053,1969-08-10 20:00:00,0 +4102,1969-02-25 21:35:00,0 +9309,1966-08-21 18:13:00,0 +6949,1967-06-29 17:41:00,0 +2233,1968-04-17 10:25:00,0 +3009,1966-06-20 19:28:00,0 +5208,1966-06-17 05:24:00,0 +7799,1966-04-20 07:14:00,0 +1771,1968-05-26 07:19:00,0 +6029,1968-08-08 05:14:00,0 +9256,1966-12-15 21:41:00,0 +1261,1968-10-26 07:19:00,0 +4848,1965-01-28 23:01:00,0 +8276,1965-11-19 10:02:00,0 +9981,1969-04-28 07:32:00,0 +4128,1967-06-26 01:32:00,0 +9422,1965-04-04 08:29:00,0 +9316,1969-05-13 19:50:00,0 +7384,1968-06-09 06:44:00,0 +2919,1967-06-20 01:11:00,0 +2610,1967-11-19 10:57:00,0 +2897,1968-06-06 03:48:00,0 +4175,1968-11-01 09:35:00,0 +7181,1966-07-07 04:32:00,0 +3111,1966-11-21 10:04:00,0 +4842,1968-01-22 11:46:00,0 +3891,1968-07-01 07:41:00,0 +1924,1969-04-30 15:02:00,0 +3836,1965-06-23 08:58:00,0 +6958,1967-10-06 07:51:00,0 +7724,1969-07-05 12:36:00,0 +1572,1967-08-19 03:45:00,0 +9948,1966-02-07 19:51:00,0 +9490,1965-08-23 07:46:00,0 +2085,1967-03-17 06:55:00,0 +5756,1966-03-13 23:57:00,0 +794,1967-01-06 04:55:00,0 +2563,1967-05-05 04:53:00,0 +4073,1968-05-03 14:43:00,0 +6884,1968-08-16 11:29:00,0 +3423,1969-03-06 02:26:00,0 +8880,1969-06-12 05:05:00,0 +5015,1968-12-07 05:28:00,0 +9680,1968-07-18 23:27:00,0 +1851,1969-04-01 09:40:00,0 +7113,1966-03-15 10:31:00,0 +7805,1966-03-07 16:18:00,0 +2343,1968-07-28 09:47:00,0 +2748,1968-11-18 03:25:00,0 +7714,1969-03-21 08:34:00,0 +6657,1965-12-10 01:16:00,0 +9069,1967-04-21 20:19:00,0 +1782,1965-06-17 17:32:00,0 +3171,1967-01-28 20:53:00,0 +8581,1968-07-27 08:54:00,0 +6561,1968-01-28 06:50:00,0 +1877,1969-01-05 22:57:00,0 +4441,1969-07-03 06:18:00,0 +9758,1966-01-17 10:17:00,0 +9370,1967-02-21 19:28:00,0 +4003,1967-07-13 23:05:00,0 +7917,1965-10-04 22:10:00,0 +2016,1968-11-10 00:12:00,0 +1414,1969-03-28 17:25:00,0 +8424,1966-10-01 11:26:00,0 +1842,1966-11-13 16:22:00,0 +7828,1969-01-31 15:16:00,0 +5496,1969-09-22 14:10:00,0 +8477,1969-06-22 12:49:00,0 +7673,1968-03-16 05:25:00,0 +7212,1967-04-06 08:12:00,0 +4116,1968-09-06 07:16:00,0 +7607,1966-03-27 20:45:00,0 +7485,1969-09-27 04:40:00,0 +159,1966-02-17 06:12:00,0 +4458,1968-01-23 08:49:00,0 +144,1967-11-16 07:09:00,0 +8420,1969-04-23 19:14:00,0 +6036,1965-12-07 08:40:00,0 +4093,1965-01-11 13:37:00,0 +8440,1965-08-22 04:57:00,0 +7649,1969-10-13 08:08:00,0 +3475,1968-07-20 00:19:00,0 +6374,1969-01-30 21:14:00,0 +1578,1969-02-08 06:17:00,0 +307,1965-05-03 01:54:00,0 +7582,1965-06-01 05:13:00,0 +539,1966-11-05 13:13:00,0 +1930,1966-04-14 08:06:00,0 +3431,1967-01-16 12:10:00,0 +286,1967-11-20 11:05:00,0 +9558,1969-02-01 11:35:00,0 +6553,1969-07-16 22:15:00,0 +8449,1968-09-15 17:37:00,0 +2564,1966-05-02 18:54:00,0 +8000,1969-08-18 22:04:00,0 +70,1967-02-19 16:30:00,0 +8469,1967-04-29 05:12:00,0 +8069,1968-06-17 09:47:00,0 +2073,1967-02-08 19:24:00,0 +3839,1968-12-06 05:26:00,0 +2139,1967-11-02 00:04:00,0 +9573,1968-03-07 23:13:00,0 +8675,1969-04-11 16:10:00,0 +4434,1967-10-01 09:44:00,0 +6446,1966-05-12 16:15:00,0 +4385,1968-08-14 05:49:00,0 +1483,1966-10-31 13:42:00,0 +6243,1965-01-13 04:06:00,0 +9312,1966-11-06 08:20:00,0 +3906,1969-07-10 20:22:00,0 +5542,1965-02-16 23:33:00,0 +1091,1967-02-08 18:33:00,0 +3662,1966-08-24 09:19:00,0 +9385,1967-08-23 08:00:00,0 +2552,1967-01-01 23:21:00,0 +715,1969-03-27 04:42:00,0 +8346,1966-07-25 01:41:00,0 +9286,1968-01-16 09:38:00,0 +9043,1967-07-05 00:46:00,0 +5618,1967-10-28 01:06:00,0 +3612,1967-08-13 18:32:00,0 +9289,1967-03-31 02:34:00,0 +1300,1968-01-26 04:42:00,0 +3807,1965-06-30 01:39:00,0 +3312,1966-04-04 11:17:00,0 +5807,1966-05-25 21:49:00,0 +1047,1966-05-21 23:41:00,0 +9268,1966-06-14 14:34:00,0 +9017,1969-10-28 15:06:00,0 +2203,1967-12-13 19:38:00,0 +2726,1967-01-20 16:00:00,0 +7044,1966-12-17 00:53:00,0 +7197,1968-08-08 14:31:00,0 +9176,1968-01-09 13:51:00,0 +1582,1967-09-05 04:57:00,0 +9318,1966-09-22 09:09:00,0 +100,1967-09-11 17:59:00,0 +4425,1965-08-01 17:51:00,0 +3161,1969-02-08 03:05:00,0 +9407,1969-06-03 19:35:00,0 +1983,1968-07-10 04:57:00,0 +629,1966-06-01 17:13:00,0 +2180,1969-12-12 16:05:00,0 +2900,1968-04-09 05:19:00,0 +3088,1966-07-31 20:55:00,0 +1447,1967-02-24 06:03:00,0 +3060,1966-03-30 13:36:00,0 +7032,1965-08-23 17:06:00,0 +1648,1969-01-14 04:24:00,0 +4668,1965-05-12 19:53:00,0 +9728,1969-10-11 09:51:00,0 +9063,1969-10-07 01:58:00,0 +5032,1967-03-21 05:48:00,0 +3900,1966-04-08 21:39:00,0 +3895,1968-01-20 07:47:00,0 +6453,1967-01-03 13:33:00,0 +9857,1966-07-09 03:44:00,0 +104,1969-03-26 15:12:00,0 +3615,1965-09-29 13:17:00,0 +6000,1966-08-02 20:18:00,0 +8019,1965-11-20 22:44:00,0 +104,1967-01-18 04:45:00,0 +7175,1969-12-20 10:24:00,0 +6777,1968-03-22 02:16:00,0 +5429,1969-06-17 07:11:00,0 +8734,1968-09-13 01:16:00,0 +7482,1966-10-23 08:20:00,0 +3389,1968-05-21 04:40:00,0 +4137,1968-10-23 13:41:00,0 +314,1967-01-24 07:31:00,0 +9246,1966-01-29 23:49:00,0 +9716,1968-10-26 06:18:00,0 +4509,1969-08-23 05:32:00,0 +9642,1968-07-17 06:18:00,0 +5271,1965-05-20 13:29:00,0 +1048,1967-11-14 23:36:00,0 +3328,1965-01-13 15:31:00,0 +2839,1969-04-21 22:44:00,0 +4135,1965-06-05 03:44:00,0 +1785,1967-11-27 18:13:00,0 +3392,1969-08-23 19:15:00,0 +6937,1966-04-30 08:17:00,0 +5396,1967-06-10 10:18:00,0 +2848,1966-05-06 04:28:00,0 +4143,1967-06-20 21:30:00,0 +2016,1965-07-04 10:36:00,0 +6337,1968-12-15 15:30:00,0 +1572,1969-01-03 15:29:00,0 +3112,1966-08-07 23:23:00,0 +10,1969-08-25 18:21:00,0 +8612,1966-12-27 14:06:00,0 +9218,1969-04-16 14:23:00,0 +182,1968-02-24 11:07:00,0 +1781,1968-02-18 12:30:00,0 +3080,1967-10-21 12:41:00,0 +8511,1969-02-14 08:23:00,0 +6137,1965-11-19 19:51:00,0 +3906,1966-11-30 23:58:00,0 +6012,1968-10-28 16:07:00,0 +5365,1967-11-03 11:44:00,0 +9822,1967-12-03 16:47:00,0 +4867,1965-10-19 10:28:00,0 +6256,1965-12-19 07:28:00,0 +9533,1967-01-04 14:01:00,0 +9775,1969-04-25 21:07:00,0 +6609,1965-08-25 23:41:00,0 +8587,1965-01-03 16:10:00,0 +9823,1969-02-02 00:31:00,0 +2424,1967-12-04 22:38:00,0 +7347,1966-02-16 03:46:00,0 +9470,1966-06-22 11:35:00,0 +2166,1967-04-15 19:48:00,0 +6794,1968-07-03 12:59:00,0 +7063,1968-01-22 03:56:00,0 +3466,1968-09-21 02:23:00,0 +6469,1965-04-20 21:32:00,0 +3876,1965-06-01 17:50:00,0 +46,1966-12-08 09:08:00,0 +1961,1968-07-05 14:20:00,0 +7547,1965-05-19 12:38:00,0 +1690,1966-11-08 23:33:00,0 +4357,1967-08-05 15:58:00,0 +9225,1967-04-06 01:53:00,0 +4748,1965-04-26 13:45:00,0 +8396,1968-12-04 19:36:00,0 +7082,1969-12-01 15:06:00,0 +1638,1967-08-05 04:59:00,0 +8752,1967-09-01 16:09:00,0 +9174,1965-03-03 07:41:00,0 +2005,1965-10-16 12:20:00,0 +5733,1968-07-01 18:12:00,0 +7919,1966-08-11 05:48:00,0 +2833,1968-06-15 18:26:00,0 +2355,1968-11-01 22:16:00,0 +8078,1967-03-28 09:26:00,0 +9365,1969-10-09 07:52:00,0 +3186,1967-09-20 16:32:00,0 +1075,1965-07-23 19:52:00,0 +5975,1969-02-10 22:21:00,0 +9655,1965-01-17 05:43:00,0 +4191,1967-07-29 15:00:00,0 +8361,1968-04-30 00:14:00,0 +6820,1968-05-30 19:17:00,0 +5309,1968-09-07 11:53:00,0 +4153,1967-02-17 14:09:00,0 +5981,1965-09-26 14:25:00,0 +8236,1965-01-25 16:26:00,0 +192,1967-09-21 03:02:00,0 +1225,1965-11-20 20:49:00,0 +2768,1967-10-19 18:36:00,0 +9499,1968-02-08 00:04:00,0 +1193,1968-09-22 17:23:00,0 +7177,1969-12-04 04:13:00,0 +293,1968-10-19 17:54:00,0 +2635,1969-07-01 12:14:00,0 +1011,1966-03-14 16:57:00,0 +3045,1968-10-12 11:34:00,0 +7609,1965-12-24 06:13:00,0 +2432,1965-07-07 03:02:00,0 +4246,1968-10-15 13:18:00,0 +2480,1969-11-15 05:34:00,0 +2119,1965-04-05 05:18:00,0 +3870,1967-01-18 18:38:00,0 +7919,1966-09-18 13:43:00,0 +9449,1965-01-13 09:45:00,0 +6214,1967-12-10 07:18:00,0 +252,1968-10-03 05:15:00,0 +5362,1969-08-08 07:46:00,0 +5844,1968-10-20 23:55:00,0 +24,1965-05-28 18:36:00,0 +1117,1966-08-18 20:52:00,0 +6399,1965-07-08 01:31:00,0 +3027,1965-03-02 12:31:00,0 +6336,1965-01-25 18:07:00,0 +8621,1969-01-12 02:24:00,0 +509,1966-01-18 17:31:00,0 +3946,1965-06-30 15:07:00,0 +1553,1967-08-27 01:22:00,0 +3495,1968-05-02 15:57:00,0 +7383,1969-12-20 13:26:00,0 +7852,1968-09-05 20:02:00,0 +9308,1967-04-05 23:56:00,0 +3316,1967-12-26 10:06:00,0 +8494,1966-10-12 02:16:00,0 +6104,1966-02-21 16:44:00,0 +4712,1967-06-23 17:26:00,0 +2230,1969-09-29 17:10:00,0 +7367,1966-10-12 03:51:00,0 +7890,1966-12-26 19:07:00,0 +6468,1969-04-21 07:21:00,0 +906,1966-06-30 17:34:00,0 +1378,1965-06-08 20:54:00,0 +2952,1967-11-10 21:20:00,0 +482,1969-01-04 00:34:00,0 +465,1965-06-29 18:45:00,0 +943,1969-10-02 17:45:00,0 +9356,1967-06-15 23:05:00,0 +8261,1966-12-09 16:18:00,0 +9704,1967-03-15 06:49:00,0 +8109,1967-08-07 19:49:00,0 +8387,1968-02-04 01:34:00,0 +9789,1968-02-22 20:38:00,0 +8227,1967-03-17 12:09:00,0 +2621,1967-10-12 18:53:00,0 +3961,1969-09-16 16:28:00,0 +4547,1967-07-10 18:13:00,0 +7448,1966-02-20 16:58:00,0 +6134,1966-03-30 02:22:00,0 +3444,1969-07-12 15:19:00,0 +6464,1968-01-29 09:51:00,0 +9084,1965-03-31 17:16:00,0 +2373,1969-01-25 00:50:00,0 +1834,1965-12-14 02:41:00,0 +3479,1969-01-08 13:18:00,0 +3100,1968-02-08 13:17:00,0 +4226,1968-09-26 22:17:00,0 +558,1966-07-18 05:24:00,0 +6717,1968-08-14 15:26:00,0 +4431,1967-11-14 17:08:00,0 +1824,1966-02-15 03:07:00,0 +897,1967-01-16 00:20:00,0 +1217,1966-03-27 04:28:00,0 +2888,1967-05-15 15:47:00,0 +7362,1968-06-02 13:48:00,0 +7653,1966-08-31 20:25:00,0 +4230,1969-05-09 19:21:00,0 +8982,1969-02-27 15:47:00,0 +7633,1967-02-28 07:07:00,0 +727,1969-05-08 19:45:00,0 +7198,1968-05-16 13:04:00,0 +9380,1967-12-05 21:18:00,0 +9123,1967-12-26 03:09:00,0 +7507,1967-10-31 16:45:00,0 +3482,1969-05-25 10:55:00,0 +3228,1966-12-12 20:11:00,0 +8001,1965-12-29 17:06:00,0 +7279,1968-08-15 09:01:00,0 +2468,1967-08-12 10:21:00,0 +8268,1965-05-25 19:14:00,0 +1761,1968-10-23 08:42:00,0 +5968,1969-09-10 16:30:00,0 +7285,1969-03-07 06:52:00,0 +3959,1968-10-15 10:02:00,0 +6151,1969-12-22 02:31:00,0 +6582,1967-02-10 07:47:00,0 +3256,1969-11-06 16:00:00,0 +2727,1969-03-15 10:05:00,0 +8726,1966-07-02 02:41:00,0 +8392,1967-01-19 21:44:00,0 +1198,1966-08-11 05:31:00,0 +9372,1966-12-23 23:50:00,0 +8580,1967-12-01 01:23:00,0 +9342,1967-11-08 06:17:00,0 +6882,1966-12-11 15:51:00,0 +7775,1968-05-28 23:59:00,0 +8892,1965-06-26 18:34:00,0 +6942,1968-07-29 02:04:00,0 +1550,1965-01-16 11:17:00,0 +7766,1966-05-03 19:34:00,0 +3730,1969-08-17 13:51:00,0 +6237,1966-10-05 02:40:00,0 +6938,1966-08-24 10:55:00,0 +4433,1967-06-06 17:49:00,0 +1296,1966-12-02 05:55:00,0 +8284,1966-04-26 19:21:00,0 +236,1968-09-26 16:22:00,0 +7632,1967-11-19 05:39:00,0 +6387,1968-01-09 07:14:00,0 +940,1965-11-02 02:31:00,0 +9690,1968-04-30 05:24:00,0 +6223,1969-01-24 02:34:00,0 +22,1966-08-22 17:27:00,0 +5820,1968-05-22 22:22:00,0 +8603,1967-08-29 14:44:00,0 +1555,1966-02-22 10:37:00,0 +4805,1965-08-17 19:55:00,0 +3345,1966-09-10 01:15:00,0 +5041,1968-08-07 22:15:00,0 +6374,1966-03-11 12:04:00,0 +5236,1965-06-25 05:21:00,0 +8720,1965-06-30 00:52:00,0 +2096,1966-12-19 12:26:00,0 +9878,1965-04-17 05:37:00,0 +5043,1968-12-28 00:34:00,0 +5135,1965-10-26 23:25:00,0 +558,1967-03-22 23:02:00,0 +6880,1967-08-23 16:00:00,0 +4771,1968-02-19 20:07:00,0 +4358,1969-05-31 22:56:00,0 +9536,1967-06-30 05:37:00,0 +4697,1968-02-15 15:32:00,0 +2107,1966-01-17 09:01:00,0 +1116,1967-02-05 11:24:00,0 +461,1967-03-10 00:04:00,0 +5155,1968-12-09 18:59:00,0 +6104,1969-07-06 04:42:00,0 +1097,1968-04-26 00:31:00,0 +7686,1965-02-02 01:56:00,0 +3868,1969-03-15 00:04:00,0 +941,1966-05-22 01:21:00,0 +597,1968-07-05 15:41:00,0 +5734,1969-01-08 04:03:00,0 +6232,1968-01-26 06:09:00,0 +8434,1969-05-10 04:49:00,0 +1422,1966-09-26 06:04:00,0 +9069,1966-12-29 09:37:00,0 +8622,1968-03-11 02:51:00,0 +3384,1965-07-07 21:49:00,0 +1970,1969-07-11 07:17:00,0 +163,1968-08-20 19:13:00,0 +5634,1965-08-11 19:58:00,0 +3976,1965-08-16 16:13:00,0 +4124,1965-12-05 20:23:00,0 +8255,1969-04-28 12:09:00,0 +7986,1966-09-07 04:10:00,0 +5456,1967-11-09 19:44:00,0 +7525,1966-02-12 03:52:00,0 +5386,1966-08-26 14:26:00,0 +8898,1967-11-17 03:40:00,0 +6338,1966-04-17 05:52:00,0 +2162,1966-02-07 22:20:00,0 +5893,1969-10-23 06:56:00,0 +5915,1968-04-10 08:46:00,0 +1912,1969-02-11 04:47:00,0 +9726,1968-10-07 13:25:00,0 +9070,1966-12-21 14:02:00,0 +1156,1969-06-05 21:42:00,0 +5216,1966-06-30 07:22:00,0 +2867,1965-06-13 14:06:00,0 +3112,1965-01-05 23:24:00,0 +2345,1967-06-15 18:53:00,0 +1670,1968-01-28 12:11:00,0 +8220,1967-07-27 23:06:00,0 +384,1966-08-19 12:47:00,0 +9362,1968-09-04 02:45:00,0 +4654,1969-09-14 22:15:00,0 +1461,1965-11-11 17:56:00,0 +2282,1967-07-04 21:28:00,0 +8012,1965-11-30 07:26:00,0 +6756,1968-09-30 13:09:00,0 +7731,1969-03-27 13:08:00,0 +5408,1968-07-22 06:49:00,0 +1595,1965-12-02 12:05:00,0 +8252,1967-09-16 11:49:00,0 +8846,1968-09-02 12:33:00,0 +6900,1968-12-09 01:19:00,0 +9943,1966-12-13 18:23:00,0 +9925,1967-09-21 17:25:00,0 +2197,1967-03-02 06:09:00,0 +8972,1965-09-01 03:01:00,0 +5628,1967-06-19 02:21:00,0 +1047,1965-02-25 16:21:00,0 +6543,1968-11-20 08:16:00,0 +8134,1968-07-19 23:45:00,0 +9549,1965-11-21 03:14:00,0 +4649,1969-07-07 19:23:00,0 +4061,1968-12-29 16:34:00,0 +7709,1965-12-23 13:02:00,0 +8043,1969-09-16 19:57:00,0 +3727,1966-07-15 20:13:00,0 +9267,1966-01-03 06:55:00,0 +9556,1968-10-10 14:50:00,0 +1762,1967-07-19 01:32:00,0 +8889,1969-05-10 07:19:00,0 +5784,1966-01-14 22:07:00,0 +5638,1965-12-22 19:32:00,0 +5760,1966-09-01 20:02:00,0 +4520,1965-11-06 05:48:00,0 +5161,1967-11-04 12:02:00,0 +7278,1965-08-14 10:28:00,0 +6491,1967-01-10 00:04:00,0 +3414,1969-10-17 21:26:00,0 +3367,1968-12-23 05:55:00,0 +4303,1967-09-08 06:12:00,0 +5371,1969-10-12 11:31:00,0 +9097,1966-09-24 12:14:00,0 +8136,1969-12-13 02:20:00,0 +6236,1965-04-09 17:33:00,0 +5414,1966-03-06 04:20:00,0 +2316,1967-02-16 21:09:00,0 +611,1965-01-21 11:56:00,0 +6645,1967-09-01 08:44:00,0 +6523,1969-12-20 14:02:00,0 +7689,1966-02-09 15:40:00,0 +5143,1965-12-11 14:17:00,0 +7302,1969-02-08 19:20:00,0 +4083,1969-11-21 14:53:00,0 +8897,1967-07-17 15:18:00,0 +9901,1966-09-16 22:59:00,0 +3913,1967-09-11 19:47:00,0 +7772,1966-08-14 09:41:00,0 +5886,1968-11-04 12:49:00,0 +9883,1968-12-09 21:46:00,0 +4150,1969-12-29 10:19:00,0 +4953,1968-05-19 20:18:00,0 +3359,1968-02-15 09:25:00,0 +9984,1967-12-10 11:24:00,0 +8427,1969-03-13 16:35:00,0 +2027,1967-03-24 11:26:00,0 +2167,1966-12-31 13:30:00,0 +6921,1966-11-07 05:32:00,0 +8084,1968-11-18 16:58:00,0 +493,1969-12-18 14:31:00,0 +7959,1969-02-05 21:37:00,0 +8024,1967-01-12 11:32:00,0 +7401,1965-08-04 11:19:00,0 +3419,1966-09-23 20:03:00,0 +8955,1965-08-07 21:07:00,0 +5431,1968-04-17 06:24:00,0 +8099,1965-09-21 17:11:00,0 +4326,1969-11-16 21:34:00,0 +2186,1967-11-14 07:24:00,0 +2240,1966-07-27 02:52:00,0 +832,1967-04-13 17:34:00,0 +7031,1965-04-14 05:14:00,0 +39,1967-12-03 15:24:00,0 +4238,1966-04-06 04:53:00,0 +3232,1969-07-14 12:17:00,0 +8069,1966-12-13 05:52:00,0 +4041,1965-07-01 18:51:00,0 +4051,1966-06-21 06:41:00,0 +3367,1967-10-08 08:02:00,0 +5215,1968-02-10 13:59:00,0 +8330,1965-05-14 20:14:00,0 +6662,1966-04-13 00:17:00,0 +7841,1965-03-12 05:19:00,0 +4600,1967-12-07 18:27:00,0 +7790,1967-08-31 10:31:00,0 +8371,1967-05-19 16:13:00,0 +7665,1969-04-25 00:06:00,0 +8903,1969-02-22 07:38:00,0 +5780,1967-02-12 20:12:00,0 +1672,1969-01-12 15:19:00,0 +487,1968-02-06 17:25:00,0 +5711,1966-06-07 08:28:00,0 +1155,1968-09-07 16:50:00,0 +6373,1969-05-21 14:22:00,0 +9962,1965-03-25 18:39:00,0 +2952,1965-05-16 19:36:00,0 +9010,1968-02-08 01:22:00,0 +5556,1969-03-11 20:02:00,0 +8630,1969-02-02 07:24:00,0 +8760,1965-11-26 09:18:00,0 +4291,1965-04-07 22:22:00,0 +547,1969-08-11 07:34:00,0 +8244,1969-05-11 18:12:00,0 +659,1969-03-05 23:25:00,0 +4503,1967-08-19 12:50:00,0 +4871,1967-01-05 01:21:00,0 +8283,1965-10-15 17:13:00,0 +5904,1967-09-10 10:56:00,0 +4193,1965-10-09 19:47:00,0 +896,1968-10-06 18:58:00,0 +6134,1967-03-02 06:24:00,0 +7031,1969-09-12 07:23:00,0 +3338,1967-04-04 11:38:00,0 +2259,1969-06-05 14:37:00,0 +6283,1969-06-05 08:18:00,0 +1792,1965-11-29 07:46:00,0 +8626,1966-01-28 08:04:00,0 +2523,1967-11-09 01:12:00,0 +2500,1965-07-07 10:52:00,0 +4648,1968-12-26 16:21:00,0 +6009,1968-12-02 23:37:00,0 +8519,1968-02-24 13:36:00,0 +3371,1968-11-08 05:12:00,0 +8878,1969-05-27 07:23:00,0 +9945,1968-05-02 21:38:00,0 +2883,1968-07-28 00:59:00,0 +4290,1969-06-26 11:52:00,0 +5283,1965-06-11 10:06:00,0 +6344,1969-05-21 09:31:00,0 +4423,1966-04-18 20:57:00,0 +1162,1965-09-01 04:07:00,0 +5167,1969-07-26 02:57:00,0 +6214,1969-01-01 03:43:00,0 +6827,1967-05-10 04:39:00,0 +5667,1969-04-16 23:30:00,0 +3728,1969-01-21 06:18:00,0 +8976,1967-05-28 07:19:00,0 +8898,1966-12-21 16:25:00,0 +6701,1968-04-29 09:02:00,0 +6219,1966-12-27 14:37:00,0 +426,1969-10-06 01:05:00,0 +9784,1967-05-31 20:05:00,0 +2177,1966-10-22 02:43:00,0 +8733,1965-07-10 12:16:00,0 +903,1967-08-11 03:22:00,0 +5721,1967-12-06 01:00:00,0 +6750,1969-10-16 17:13:00,0 +7783,1969-10-12 21:29:00,0 +5997,1969-05-10 08:20:00,0 +1399,1965-04-05 15:05:00,0 +4008,1969-10-29 11:46:00,0 +1326,1966-10-06 18:06:00,0 +8079,1966-06-26 16:17:00,0 +5968,1969-12-22 20:47:00,0 +6392,1969-03-26 09:38:00,0 +6427,1969-07-10 15:42:00,0 +9290,1969-07-21 23:18:00,0 +4966,1965-03-17 18:51:00,0 +9612,1967-02-20 01:55:00,0 +6693,1965-10-20 05:53:00,0 +6627,1966-02-18 02:14:00,0 +8478,1969-06-12 23:14:00,0 +4951,1965-02-19 15:24:00,0 +235,1969-01-21 09:10:00,0 +8099,1966-01-30 01:23:00,0 +4287,1965-07-03 14:28:00,0 +2462,1968-12-04 00:38:00,0 +5580,1967-09-06 13:36:00,0 +1002,1968-02-25 16:59:00,0 +1876,1966-08-22 03:05:00,0 +4596,1965-12-20 08:08:00,0 +6869,1968-10-04 10:08:00,0 +1897,1967-08-08 09:03:00,0 +1772,1968-03-16 12:49:00,0 +1547,1969-06-16 17:43:00,0 +4935,1967-08-27 08:21:00,0 +5037,1966-11-16 03:55:00,0 +5561,1966-04-24 05:42:00,0 +72,1965-05-23 03:19:00,0 +1960,1965-10-04 22:26:00,0 +9579,1968-09-29 21:45:00,0 +8505,1965-10-03 23:54:00,0 +9381,1968-05-29 10:09:00,0 +181,1965-04-01 23:26:00,0 +5632,1968-04-18 20:29:00,0 +8109,1967-10-05 03:05:00,0 +4135,1968-11-01 18:48:00,0 +9581,1967-09-05 12:40:00,0 +1819,1969-12-14 04:19:00,0 +2200,1966-01-14 18:44:00,0 +4127,1969-04-25 04:30:00,0 +8195,1969-12-17 07:22:00,0 +144,1969-10-30 13:38:00,0 +6256,1966-05-29 14:57:00,0 +3985,1969-01-28 19:02:00,0 +1914,1965-03-03 02:22:00,0 +3734,1967-07-21 07:13:00,0 +160,1966-09-04 14:37:00,0 +1111,1967-09-03 00:17:00,0 +474,1967-10-26 12:16:00,0 +9421,1966-07-15 02:03:00,0 +6964,1966-09-18 18:03:00,0 +8488,1965-01-21 19:53:00,0 +7129,1966-08-14 08:53:00,0 +8508,1966-08-09 03:58:00,0 +44,1967-06-15 08:21:00,0 +6506,1967-11-06 12:52:00,0 +1832,1965-11-07 06:44:00,0 +2140,1965-05-19 17:02:00,0 +5873,1968-07-22 08:56:00,0 +9780,1966-07-08 10:05:00,0 +4074,1967-08-06 04:37:00,0 +9664,1967-02-13 23:25:00,0 +5335,1969-07-15 01:18:00,0 +8582,1965-06-05 05:07:00,0 +1309,1967-01-24 04:36:00,0 +6678,1967-12-09 22:07:00,0 +2147,1968-06-04 11:33:00,0 +3197,1969-10-31 23:21:00,0 +2481,1966-01-05 11:58:00,0 +3910,1968-02-19 10:17:00,0 +2391,1968-03-17 21:23:00,0 +3388,1965-06-12 18:19:00,0 +3214,1965-01-21 02:28:00,0 +7751,1968-01-24 02:06:00,0 +2199,1965-04-27 21:43:00,0 +7713,1965-07-14 08:34:00,0 +9088,1965-07-05 00:08:00,0 +2379,1966-06-22 21:26:00,0 +6492,1969-02-04 22:26:00,0 +9631,1965-08-30 00:16:00,0 +5110,1969-09-20 11:19:00,0 +100,1969-08-25 18:46:00,0 +7381,1968-03-16 12:40:00,0 +3821,1966-11-25 10:51:00,0 +2521,1968-08-03 10:40:00,0 +4992,1965-02-16 17:50:00,0 +2917,1968-06-25 16:04:00,0 +8898,1966-04-08 08:33:00,0 +1007,1969-07-02 09:07:00,0 +9123,1968-09-19 15:00:00,0 +6986,1966-01-26 22:48:00,0 +4649,1969-04-23 01:49:00,0 +2663,1967-05-28 07:07:00,0 +8668,1966-02-08 15:34:00,0 +5097,1967-04-25 20:10:00,0 +3615,1965-12-04 08:11:00,0 +9314,1967-02-24 11:46:00,0 +1194,1966-06-19 02:43:00,0 +5961,1968-05-24 16:43:00,0 +3185,1969-12-02 20:19:00,0 +6261,1965-01-22 11:48:00,0 +2927,1967-10-12 07:44:00,0 +7911,1967-01-30 08:49:00,0 +6287,1969-01-16 14:39:00,0 +6876,1969-04-19 08:58:00,0 +6068,1969-01-23 15:14:00,0 +5793,1965-07-20 02:15:00,0 +7898,1966-02-03 04:31:00,0 +9588,1969-05-23 23:29:00,0 +1885,1965-11-26 04:50:00,0 +8832,1967-11-14 01:08:00,0 +7809,1965-03-18 12:41:00,0 +9539,1965-10-08 00:22:00,0 +21,1969-02-13 04:48:00,0 +8250,1967-10-12 05:58:00,0 +5441,1969-05-17 01:48:00,0 +1358,1966-07-31 16:07:00,0 +68,1969-11-18 00:31:00,0 +9723,1967-04-21 03:06:00,0 +9300,1967-03-03 08:36:00,0 +3595,1967-06-22 16:31:00,0 +3661,1966-01-14 14:18:00,0 +724,1967-09-14 06:27:00,0 +1434,1969-03-21 21:42:00,0 +7585,1966-06-15 02:00:00,0 +3791,1966-05-30 02:44:00,0 +7547,1965-04-29 17:55:00,0 +3490,1968-02-14 21:47:00,0 +5953,1965-03-22 01:28:00,0 +6159,1967-06-15 18:58:00,0 +9122,1965-12-08 00:36:00,0 +7993,1965-06-06 19:09:00,0 +5859,1966-09-21 18:25:00,0 +9669,1969-07-01 14:08:00,0 +2294,1969-11-20 19:21:00,0 +3304,1968-12-11 17:58:00,0 +8677,1969-01-09 18:01:00,0 +3477,1965-01-18 18:09:00,0 +4913,1968-06-21 22:38:00,0 +5605,1969-09-08 15:11:00,0 +4508,1966-01-20 19:37:00,0 +608,1967-09-26 09:52:00,0 +8990,1968-07-16 20:04:00,0 +4205,1966-08-24 21:59:00,0 +6391,1968-07-10 22:37:00,0 +3726,1968-03-17 17:43:00,0 +1259,1968-02-19 08:53:00,0 +1700,1968-05-28 00:45:00,0 +6703,1968-12-28 11:49:00,0 +1146,1967-04-17 04:54:00,0 +8158,1969-10-09 00:17:00,0 +1056,1968-09-24 10:54:00,0 +5661,1966-03-08 21:41:00,0 +8166,1966-11-09 01:24:00,0 +7682,1967-01-21 09:17:00,0 +8357,1965-12-18 16:40:00,0 +7216,1965-02-15 20:07:00,0 +1150,1969-02-14 14:28:00,0 +9250,1966-03-27 02:03:00,0 +4463,1969-08-23 22:48:00,0 +9688,1966-04-12 04:43:00,0 +603,1968-06-09 05:02:00,0 +4233,1969-07-19 16:17:00,0 +7763,1968-04-05 04:03:00,0 +623,1967-11-15 14:26:00,0 +6764,1969-04-26 13:55:00,0 +881,1965-06-30 16:40:00,0 +1602,1968-12-02 13:00:00,0 +5016,1969-07-21 00:37:00,0 +1518,1965-01-23 22:17:00,0 +4650,1968-01-17 18:40:00,0 +141,1967-11-17 09:53:00,0 +375,1965-03-04 10:51:00,0 +1604,1969-09-15 02:37:00,0 +5441,1968-02-04 21:46:00,0 +5022,1969-04-10 15:05:00,0 +5848,1969-12-16 04:59:00,0 +5082,1965-09-13 07:17:00,0 +8093,1965-10-11 04:01:00,0 +3492,1968-07-12 07:33:00,0 +1842,1965-03-23 23:14:00,0 +679,1969-02-04 11:56:00,0 +5731,1967-12-15 12:56:00,0 +6660,1965-11-20 00:25:00,0 +1378,1969-09-06 15:59:00,0 +576,1965-03-16 23:12:00,0 +8686,1969-05-22 17:13:00,0 +8552,1966-10-29 10:07:00,0 +1685,1969-03-31 21:14:00,0 +8738,1965-05-27 03:07:00,0 +4264,1969-05-06 04:19:00,0 +6936,1969-06-13 11:15:00,0 +1202,1969-09-17 09:59:00,0 +7321,1967-03-03 17:15:00,0 +2561,1966-10-06 23:07:00,0 +2186,1966-01-10 20:33:00,0 +7087,1967-10-23 21:50:00,0 +2017,1965-06-10 04:11:00,0 +8613,1967-05-25 07:56:00,0 +72,1965-10-21 03:02:00,0 +5594,1967-03-18 20:45:00,0 +4674,1968-12-30 04:59:00,0 +6703,1966-02-22 12:27:00,0 +5431,1967-11-21 13:35:00,0 +508,1967-10-09 19:13:00,0 +1546,1969-09-14 06:27:00,0 +162,1965-03-21 17:23:00,0 +9329,1967-11-30 13:32:00,0 +8511,1968-08-18 16:04:00,0 +3465,1968-05-09 10:49:00,0 +1418,1967-07-24 14:23:00,0 +5313,1969-09-04 00:55:00,0 +2756,1965-09-08 09:59:00,0 +1091,1965-12-26 13:22:00,0 +1144,1966-04-25 18:11:00,0 +3636,1969-02-15 03:52:00,0 +9909,1968-11-17 10:31:00,0 +9039,1969-04-16 21:52:00,0 +5892,1967-03-01 20:43:00,0 +5077,1967-06-17 18:10:00,0 +2767,1967-06-05 15:24:00,0 +282,1966-09-25 09:57:00,0 +9440,1967-02-25 10:12:00,0 +2253,1965-08-26 13:22:00,0 +4448,1966-12-17 17:54:00,0 +3359,1967-12-05 15:07:00,0 +6469,1967-09-07 03:26:00,0 +8659,1968-07-14 07:41:00,0 +8123,1965-05-16 13:31:00,0 +4052,1968-11-25 09:14:00,0 +689,1968-09-03 18:50:00,0 +2236,1966-10-16 09:42:00,0 +7226,1965-03-14 20:27:00,0 +5106,1967-02-12 09:45:00,0 +6654,1968-03-13 12:18:00,0 +442,1969-08-29 01:42:00,0 +5447,1967-12-12 08:55:00,0 +8134,1966-08-09 01:28:00,0 +1482,1965-12-11 03:08:00,0 +4445,1965-04-13 21:31:00,0 +6883,1965-05-31 09:57:00,0 +155,1966-10-13 02:10:00,0 +2966,1967-12-05 07:22:00,0 +853,1969-10-07 15:02:00,0 +2386,1966-05-13 12:22:00,0 +5397,1966-02-01 16:52:00,0 +7209,1965-04-23 17:24:00,0 +8140,1967-01-06 16:01:00,0 +6468,1967-08-19 01:44:00,0 +1728,1968-09-20 03:31:00,0 +33,1967-11-29 05:58:00,0 +5477,1966-02-12 02:54:00,0 +4643,1968-06-10 19:06:00,0 +558,1969-08-07 05:39:00,0 +1988,1965-12-01 16:20:00,0 +8934,1969-03-01 04:14:00,0 +2676,1969-10-15 14:51:00,0 +5964,1968-04-29 17:04:00,0 +3549,1966-11-25 10:57:00,0 +6990,1965-07-09 23:18:00,0 +6784,1965-10-27 23:47:00,0 +600,1969-05-06 18:16:00,0 +4436,1968-12-31 00:05:00,0 +488,1965-11-16 13:29:00,0 +9744,1967-06-09 03:29:00,0 +2875,1967-12-15 22:30:00,0 +1313,1968-01-16 00:35:00,0 +2708,1967-08-20 17:30:00,0 +9616,1968-12-20 02:08:00,0 +6495,1969-05-30 13:21:00,0 +6661,1968-08-17 18:01:00,0 +7730,1969-03-01 18:07:00,0 +9700,1967-12-09 10:24:00,0 +4923,1969-09-17 12:08:00,0 +5663,1965-08-16 02:51:00,0 +8901,1968-02-22 05:19:00,0 +3827,1967-04-04 06:30:00,0 +13,1967-09-29 01:36:00,0 +1345,1968-04-14 08:55:00,0 +458,1968-03-15 06:16:00,0 +3727,1969-10-04 05:00:00,0 +4145,1965-05-12 16:53:00,0 +5312,1968-02-27 13:37:00,0 +1552,1966-12-20 15:56:00,0 +8798,1968-05-14 16:10:00,0 +3310,1969-01-15 00:50:00,0 +9516,1965-10-26 20:40:00,0 +5102,1966-01-25 08:23:00,0 +4162,1967-01-23 10:34:00,0 +4096,1966-04-02 22:38:00,0 +1113,1965-02-05 01:50:00,0 +4815,1966-08-26 12:52:00,0 +8230,1965-12-03 02:50:00,0 +2338,1966-07-07 18:56:00,0 +1817,1965-06-19 06:18:00,0 +2119,1965-11-09 02:44:00,0 +3380,1969-08-18 22:25:00,0 +1660,1968-09-03 13:02:00,0 +9206,1969-10-17 19:35:00,0 +5526,1968-08-22 13:34:00,0 +5565,1969-05-21 15:08:00,0 +4468,1968-10-03 18:59:00,0 +6292,1968-05-07 10:55:00,0 +654,1969-06-13 04:17:00,0 +6390,1967-07-16 02:31:00,0 +8833,1969-02-19 10:45:00,0 +8854,1966-01-11 11:48:00,0 +2756,1965-01-10 02:56:00,0 +7218,1968-12-17 02:42:00,0 +4870,1969-06-15 01:47:00,0 +8683,1969-12-20 14:14:00,0 +657,1968-06-19 00:15:00,0 +4089,1967-04-27 00:26:00,0 +1637,1969-04-08 07:41:00,0 +4756,1968-10-07 10:37:00,0 +3568,1967-05-20 23:53:00,0 +6561,1965-08-08 08:49:00,0 +6418,1965-03-28 23:54:00,0 +9299,1969-10-16 22:11:00,0 +7982,1965-04-20 01:48:00,0 +1966,1965-12-26 11:26:00,0 +3543,1968-10-02 10:54:00,0 +6844,1968-06-08 02:40:00,0 +5851,1967-10-11 08:23:00,0 +7686,1968-01-22 11:59:00,0 +8451,1966-07-11 23:17:00,0 +696,1966-12-26 21:54:00,0 +4174,1967-04-14 12:33:00,0 +5246,1965-10-21 14:03:00,0 +5376,1966-06-06 15:17:00,0 +7097,1969-09-24 19:35:00,0 +2932,1966-04-23 02:36:00,0 +1786,1969-09-12 15:03:00,0 +1725,1965-06-03 12:28:00,0 +841,1969-01-17 16:50:00,0 +603,1967-01-26 13:44:00,0 +1180,1966-07-02 17:41:00,0 +5544,1968-07-02 21:59:00,0 +882,1965-06-03 18:50:00,0 +7367,1967-06-23 08:07:00,0 +464,1969-07-21 05:34:00,0 +294,1965-09-07 00:59:00,0 +9943,1968-08-15 21:12:00,0 +4374,1965-04-23 06:48:00,0 +7668,1968-11-09 20:23:00,0 +5381,1965-02-20 19:51:00,0 +3924,1965-04-09 08:21:00,0 +6016,1968-12-26 19:21:00,0 +5180,1965-01-07 17:30:00,0 +6763,1968-03-24 03:43:00,0 +3738,1969-09-01 13:42:00,0 +9175,1966-10-21 21:41:00,0 +6034,1968-07-26 06:57:00,0 +389,1968-03-21 21:19:00,0 +5290,1965-05-27 05:51:00,0 +6143,1966-04-20 10:02:00,0 +2443,1967-07-03 01:46:00,0 +2116,1968-10-25 06:36:00,0 +7551,1966-04-24 19:04:00,0 +611,1965-11-06 14:50:00,0 +6297,1966-08-05 11:13:00,0 +9432,1966-03-07 05:36:00,0 +3497,1969-12-27 20:40:00,0 +442,1968-12-04 16:03:00,0 +1778,1969-04-06 16:14:00,0 +8838,1967-04-14 10:05:00,0 +2733,1968-05-14 13:34:00,0 +286,1968-04-18 04:59:00,0 +6196,1968-06-07 08:00:00,0 +7388,1966-04-17 15:42:00,0 +6627,1968-11-21 16:50:00,0 +1279,1965-02-12 00:59:00,0 +2242,1968-08-10 00:20:00,0 +4265,1969-06-24 05:22:00,0 +4146,1966-06-09 07:42:00,0 +2744,1968-02-16 01:52:00,0 +297,1967-12-07 17:50:00,0 +8458,1966-07-07 09:33:00,0 +7753,1967-01-29 07:36:00,0 +3065,1967-09-28 21:18:00,0 +3572,1966-10-14 23:06:00,0 +4880,1965-08-31 21:06:00,0 +7178,1966-07-25 09:25:00,0 +2995,1965-03-27 01:22:00,0 +2819,1969-02-13 10:21:00,0 +9565,1968-09-14 02:06:00,0 +888,1965-08-23 04:13:00,0 +4636,1966-11-27 07:13:00,0 +4985,1969-01-30 23:06:00,0 +559,1968-03-08 16:47:00,0 +3343,1969-01-16 15:29:00,0 +9366,1967-02-11 11:28:00,0 +9814,1967-07-14 06:32:00,0 +8737,1966-11-24 00:03:00,0 +2050,1966-02-10 06:05:00,0 +6154,1968-10-25 08:05:00,0 +8931,1965-10-22 10:08:00,0 +7142,1969-09-18 08:01:00,0 +2279,1965-05-03 14:42:00,0 +2782,1969-01-30 06:38:00,0 +6459,1966-12-05 23:52:00,0 +5519,1967-10-01 21:00:00,0 +8562,1969-03-30 22:51:00,0 +7299,1967-02-15 20:23:00,0 +3353,1965-03-13 05:56:00,0 +9993,1965-02-06 15:11:00,0 +1689,1966-09-02 21:30:00,0 +7575,1965-07-24 04:20:00,0 +7960,1968-12-16 03:23:00,0 +6418,1967-10-03 02:51:00,0 +2251,1965-09-30 01:51:00,0 +5056,1965-11-23 10:59:00,0 +2153,1968-01-21 23:48:00,0 +304,1966-12-04 07:12:00,0 +1328,1965-08-04 04:15:00,0 +1287,1966-05-21 20:53:00,0 +8918,1968-01-22 12:25:00,0 +8895,1969-12-18 04:20:00,0 +4097,1968-11-30 06:44:00,0 +9098,1967-12-05 07:48:00,0 +1258,1965-01-04 21:31:00,0 +8864,1967-10-19 14:00:00,0 +2059,1968-09-20 03:38:00,0 +6615,1967-10-09 14:51:00,0 +9780,1966-03-31 03:58:00,0 +9810,1965-11-23 18:31:00,0 +8910,1967-05-16 00:27:00,0 +1995,1968-11-10 20:28:00,0 +7526,1968-08-22 23:57:00,0 +1742,1967-01-01 20:07:00,0 +1025,1967-10-21 01:50:00,0 +523,1968-08-16 12:09:00,0 +7599,1965-08-16 12:48:00,0 +8194,1968-07-30 23:09:00,0 +3479,1968-02-23 09:07:00,0 +6279,1966-11-11 04:33:00,0 +3164,1967-06-10 01:07:00,0 +7147,1968-02-04 01:25:00,0 +1592,1967-06-25 16:26:00,0 +2665,1967-11-04 07:23:00,0 +362,1967-06-30 16:39:00,0 +3677,1968-05-03 09:31:00,0 +1254,1967-07-06 10:42:00,0 +7345,1966-07-17 08:04:00,0 +1896,1968-12-22 05:23:00,0 +1427,1966-03-04 14:42:00,0 +8995,1967-01-18 18:36:00,0 +6631,1969-05-01 10:49:00,0 +1908,1966-10-12 14:54:00,0 +5587,1967-04-27 21:24:00,0 +6719,1965-10-04 19:49:00,0 +5012,1969-08-25 05:12:00,0 +2501,1965-06-27 02:55:00,0 +8040,1967-11-03 12:48:00,0 +5800,1965-09-16 13:28:00,0 +8069,1965-11-28 23:19:00,0 +9454,1968-07-09 09:05:00,0 +8722,1968-05-29 17:08:00,0 +9188,1966-07-22 03:56:00,0 +9541,1969-07-13 14:54:00,0 +8582,1966-01-23 19:45:00,0 +181,1967-04-21 16:30:00,0 +1749,1966-02-15 00:25:00,0 +8086,1968-01-11 23:02:00,0 +2537,1968-01-28 05:54:00,0 +7890,1966-08-27 08:35:00,0 +1537,1968-10-10 07:50:00,0 +7767,1968-09-10 00:06:00,0 +6754,1965-06-29 21:16:00,0 +8208,1965-07-31 13:04:00,0 +9043,1969-01-27 02:13:00,0 +5769,1967-07-26 06:23:00,0 +2594,1968-02-29 11:53:00,0 +1897,1967-05-02 05:59:00,0 +5862,1967-02-15 08:32:00,0 +923,1967-03-15 13:55:00,0 +4717,1967-01-28 11:43:00,0 +9311,1969-04-04 04:55:00,0 +7382,1967-09-03 03:13:00,0 +7095,1966-06-19 06:08:00,0 +8381,1969-09-13 06:58:00,0 +2685,1965-08-22 10:04:00,0 +4497,1968-11-07 13:44:00,0 +7986,1966-11-08 20:17:00,0 +4558,1966-10-24 04:18:00,0 +4546,1968-02-21 04:53:00,0 +985,1967-06-27 23:33:00,0 +7945,1966-12-29 05:21:00,0 +6239,1965-01-14 17:08:00,0 +1299,1968-11-27 05:05:00,0 +2563,1968-05-05 11:09:00,0 +5981,1969-03-18 09:09:00,0 +8310,1965-03-26 04:50:00,0 +733,1965-11-26 06:03:00,0 +1773,1968-12-16 20:19:00,0 +9252,1967-09-29 20:30:00,0 +1391,1969-02-03 01:59:00,0 +9094,1968-08-06 05:46:00,0 +6093,1969-10-22 15:47:00,0 +9738,1968-09-02 13:22:00,0 +7138,1967-01-04 21:50:00,0 +6382,1965-06-23 15:29:00,0 +4761,1969-06-24 17:22:00,0 +5851,1969-06-07 11:38:00,0 +9126,1967-02-03 02:33:00,0 +2151,1965-06-21 16:16:00,0 +5700,1966-10-28 16:55:00,0 +2477,1966-07-20 12:02:00,0 +7993,1966-12-21 07:03:00,0 +6376,1967-01-08 04:50:00,0 +3123,1965-06-22 16:52:00,0 +5748,1967-05-01 19:12:00,0 +2070,1967-10-05 18:13:00,0 +4666,1968-11-30 04:02:00,0 +3625,1965-10-21 17:09:00,0 +4856,1965-09-23 01:07:00,0 +3016,1967-09-28 19:01:00,0 +5687,1967-08-23 07:03:00,0 +8475,1966-01-22 21:44:00,0 +6330,1969-05-23 17:36:00,0 +1634,1968-10-20 05:24:00,0 +9898,1965-03-19 02:54:00,0 +2952,1967-05-20 10:53:00,0 +8054,1969-04-23 09:52:00,0 +8050,1968-06-03 19:48:00,0 +1249,1969-04-10 18:19:00,0 +5953,1968-06-14 04:23:00,0 +2114,1969-07-01 06:23:00,0 +1632,1966-08-27 23:28:00,0 +8284,1969-04-05 18:06:00,0 +9984,1967-05-28 23:22:00,0 +2912,1966-07-20 09:47:00,0 +504,1968-11-07 20:51:00,0 +9870,1969-02-06 22:54:00,0 +8806,1969-11-10 21:05:00,0 +7499,1966-03-28 19:43:00,0 +1544,1967-11-24 19:15:00,0 +5566,1967-05-16 09:02:00,0 +3736,1966-08-18 22:44:00,0 +1596,1966-02-16 00:50:00,0 +2974,1965-02-09 08:34:00,0 +8100,1965-06-03 19:46:00,0 +9505,1965-04-06 07:09:00,0 +9451,1968-11-15 03:00:00,0 +8100,1967-06-27 05:22:00,0 +3216,1968-12-05 19:46:00,0 +7654,1968-02-19 16:17:00,0 +4655,1969-01-05 11:30:00,0 +2647,1967-11-03 22:14:00,0 +848,1969-01-26 09:51:00,0 +6735,1969-09-09 14:57:00,0 +5944,1966-04-14 22:44:00,0 +8325,1969-02-08 00:57:00,0 +4099,1965-07-09 11:55:00,0 +9663,1967-05-31 23:28:00,0 +9445,1966-02-20 13:46:00,0 +2736,1965-08-12 01:24:00,0 +8544,1969-10-17 11:56:00,0 +3028,1968-02-10 20:00:00,0 +4929,1969-09-12 18:42:00,0 +9116,1969-12-31 13:08:00,0 +8846,1969-07-19 08:54:00,0 +9298,1968-08-21 11:12:00,0 +8234,1969-05-26 03:46:00,0 +5719,1966-10-19 08:30:00,0 +3118,1968-06-18 07:44:00,0 +3708,1969-01-09 11:01:00,0 +927,1968-08-16 11:17:00,0 +6366,1965-03-14 02:35:00,0 +9874,1969-10-28 11:37:00,0 +5338,1968-11-11 02:59:00,0 +7960,1965-08-17 22:47:00,0 +9564,1967-11-20 03:54:00,0 +3734,1967-10-29 08:01:00,0 +8831,1966-06-24 16:54:00,0 +6933,1967-04-28 14:30:00,0 +2941,1969-12-11 00:19:00,0 +4804,1969-02-26 12:39:00,0 +5485,1966-06-04 12:20:00,0 +508,1967-05-05 00:41:00,0 +1386,1968-10-30 03:21:00,0 +759,1969-01-16 20:01:00,0 +4239,1969-12-05 14:27:00,0 +9256,1969-04-29 09:47:00,0 +5119,1969-02-17 14:49:00,0 +3123,1967-03-03 14:56:00,0 +6059,1969-01-29 04:19:00,0 +5087,1966-05-04 00:14:00,0 +738,1965-03-27 02:20:00,0 +3034,1969-07-03 01:10:00,0 +6880,1967-12-14 21:36:00,0 +7529,1969-08-10 08:42:00,0 +5480,1969-01-13 19:07:00,0 +3006,1968-10-02 05:41:00,0 +2435,1969-06-26 01:30:00,0 +7116,1967-01-26 11:32:00,0 +9256,1965-01-20 07:17:00,0 +4636,1965-03-10 03:42:00,0 +4949,1966-06-07 16:31:00,0 +982,1968-04-22 11:38:00,0 +5963,1967-10-26 16:11:00,0 +6793,1969-03-23 21:09:00,0 +59,1969-06-11 07:19:00,0 +5535,1965-09-13 19:59:00,0 +8572,1968-12-26 18:46:00,0 +2652,1967-12-03 10:23:00,0 +3016,1967-10-15 03:51:00,0 +6409,1965-04-09 16:00:00,0 +2521,1968-09-07 18:55:00,0 +3397,1965-02-11 19:52:00,0 +8135,1967-06-04 20:20:00,0 +8854,1968-01-26 11:28:00,0 +4402,1965-09-20 08:32:00,0 +8501,1967-06-20 19:51:00,0 +1220,1966-03-02 20:08:00,0 +4258,1965-11-03 14:05:00,0 +5416,1966-01-22 16:19:00,0 +9833,1969-10-06 23:18:00,0 +5238,1968-12-22 03:10:00,0 +1181,1969-05-01 21:24:00,0 +9518,1965-06-08 03:19:00,0 +6270,1966-12-15 02:22:00,0 +1284,1965-03-20 16:49:00,0 +7790,1966-12-16 10:07:00,0 +4869,1969-05-16 05:05:00,0 +9264,1967-04-22 00:06:00,0 +6571,1965-08-15 21:55:00,0 +9505,1968-06-13 08:03:00,0 +3916,1966-12-21 06:11:00,0 +4892,1967-09-12 23:15:00,0 +8234,1968-05-26 13:56:00,0 +7049,1965-03-18 04:28:00,0 +8375,1966-11-03 16:04:00,0 +732,1965-11-10 04:36:00,0 +4307,1965-08-10 09:49:00,0 +9016,1967-06-13 13:08:00,0 +5690,1968-03-13 09:08:00,0 +2609,1968-12-16 23:34:00,0 +3683,1969-06-20 16:02:00,0 +9329,1969-06-30 06:43:00,0 +5853,1968-06-06 18:19:00,0 +2873,1968-03-22 03:29:00,0 +4671,1968-05-30 13:51:00,0 +2986,1968-02-21 10:00:00,0 +2761,1967-01-23 05:12:00,0 +6536,1969-01-17 02:48:00,0 +2874,1967-01-05 18:53:00,0 +5564,1966-04-24 23:33:00,0 +5949,1966-06-12 02:08:00,0 +8977,1968-11-15 09:30:00,0 +6825,1966-12-17 14:20:00,0 +157,1966-02-22 10:27:00,0 +4413,1967-06-23 18:46:00,0 +1239,1967-12-02 19:16:00,0 +2871,1966-05-23 21:19:00,0 +4835,1967-09-19 09:02:00,0 +2913,1965-03-03 03:04:00,0 +4661,1965-08-04 15:44:00,0 +7396,1967-04-14 00:29:00,0 +4217,1967-01-14 08:10:00,0 +8325,1965-04-30 22:52:00,0 +2657,1965-05-13 09:10:00,0 +7594,1967-09-29 03:04:00,0 +3296,1969-11-12 03:48:00,0 +6051,1965-05-30 09:20:00,0 +8474,1966-07-01 11:04:00,0 +6247,1969-01-24 14:46:00,0 +2176,1968-04-11 02:47:00,0 +744,1968-11-20 15:02:00,0 +8115,1966-09-09 04:50:00,0 +6613,1969-05-12 07:30:00,0 +135,1965-03-01 08:02:00,0 +1249,1965-03-24 17:05:00,0 +4634,1967-06-13 22:56:00,0 +4349,1966-07-05 09:48:00,0 +7105,1969-06-21 21:46:00,0 +9834,1969-05-22 15:17:00,0 +9558,1966-05-16 06:44:00,0 +7029,1968-04-27 01:52:00,0 +9554,1969-03-14 10:26:00,0 +7865,1968-03-05 11:30:00,0 +9105,1966-07-13 06:02:00,0 +3543,1967-08-28 10:24:00,0 +8422,1965-12-16 11:10:00,0 +3109,1969-08-04 08:42:00,0 +8886,1968-03-30 15:11:00,0 +9961,1969-06-28 15:15:00,0 +5695,1966-09-20 09:16:00,0 +6712,1965-05-08 22:46:00,0 +8239,1966-08-04 00:52:00,0 +4597,1967-06-20 07:39:00,0 +2826,1968-07-20 18:25:00,0 +9150,1965-10-04 17:03:00,0 +7837,1965-10-09 23:36:00,0 +663,1969-06-27 00:14:00,0 +1808,1968-02-07 08:42:00,0 +8766,1967-06-01 11:39:00,0 +6722,1967-12-02 20:19:00,0 +9809,1965-07-24 05:27:00,0 +6103,1967-03-08 11:47:00,0 +359,1968-11-28 05:48:00,0 +8635,1966-10-03 10:35:00,0 +4009,1969-12-02 05:52:00,0 +4158,1969-08-01 00:06:00,0 +5797,1969-07-19 09:01:00,0 +5815,1968-08-04 00:08:00,0 +7908,1968-09-21 19:42:00,0 +6909,1967-06-23 09:43:00,0 +9262,1966-09-26 01:16:00,0 +3957,1969-12-30 14:33:00,0 +9782,1966-05-05 00:30:00,0 +9557,1966-06-30 18:19:00,0 +6734,1966-06-08 13:38:00,0 +8420,1967-09-02 08:49:00,0 +9298,1966-08-09 07:54:00,0 +7343,1966-12-18 05:40:00,0 +8207,1967-08-02 16:59:00,0 +8823,1966-12-11 12:38:00,0 +8132,1968-12-19 14:02:00,0 +2654,1967-04-07 05:31:00,0 +8296,1968-05-21 05:36:00,0 +8196,1967-08-01 07:06:00,0 +2891,1967-11-08 06:41:00,0 +8892,1969-04-14 01:34:00,0 +2403,1965-04-19 18:56:00,0 +9958,1968-05-15 06:36:00,0 +868,1967-10-14 07:25:00,0 +3123,1969-09-27 22:54:00,0 +5578,1965-09-12 08:52:00,0 +1649,1969-05-23 06:07:00,0 +3236,1969-12-01 22:54:00,0 +5507,1967-04-30 11:04:00,0 +9631,1966-04-30 03:23:00,0 +7129,1969-02-01 02:56:00,0 +685,1967-11-19 12:18:00,0 +2924,1968-07-08 15:51:00,0 +261,1966-06-08 16:09:00,0 +2216,1969-11-07 06:38:00,0 +9269,1969-03-20 15:24:00,0 +4919,1968-02-25 13:04:00,0 +2041,1965-10-18 01:16:00,0 +2277,1968-12-17 03:35:00,0 +5303,1966-06-30 18:52:00,0 +8675,1968-03-03 11:58:00,0 +303,1968-01-08 13:57:00,0 +3920,1967-11-03 19:05:00,0 +5111,1969-07-17 14:46:00,0 +8641,1969-09-02 02:11:00,0 +2481,1967-03-21 05:04:00,0 +8559,1965-01-19 03:23:00,0 +9793,1966-08-02 15:28:00,0 +5155,1966-03-11 04:59:00,0 +4410,1965-06-16 18:43:00,0 +2007,1968-01-03 09:48:00,0 +4788,1969-04-06 05:59:00,0 +2353,1968-01-02 05:24:00,0 +9594,1969-09-03 23:13:00,0 +4685,1969-08-12 19:30:00,0 +9163,1967-01-23 11:42:00,0 +6817,1968-01-03 10:17:00,0 +6977,1965-08-31 09:49:00,0 +2648,1969-06-25 01:33:00,0 +4389,1968-10-14 01:41:00,0 +8574,1966-07-05 09:33:00,0 +5366,1968-05-18 23:28:00,0 +7808,1968-05-27 05:06:00,0 +2353,1965-09-07 11:42:00,0 +367,1965-12-01 11:14:00,0 +7037,1965-08-05 03:11:00,0 +4695,1969-02-13 03:25:00,0 +6837,1967-02-07 22:31:00,0 +1796,1966-01-02 13:53:00,0 +2497,1965-06-01 23:50:00,0 +9233,1969-04-20 15:03:00,0 +5701,1966-07-07 07:35:00,0 +8423,1969-01-21 17:40:00,0 +4095,1967-09-15 20:47:00,0 +7181,1965-07-06 23:31:00,0 +3192,1966-01-18 07:52:00,0 +4916,1965-04-21 04:50:00,0 +262,1969-05-06 01:01:00,0 +2189,1969-12-07 07:26:00,0 +2856,1969-03-25 22:56:00,0 +4535,1966-12-04 02:07:00,0 +1219,1968-09-24 23:20:00,0 +149,1967-08-28 08:54:00,0 +2490,1967-05-15 00:44:00,0 +6202,1966-09-10 13:44:00,0 +4099,1969-02-01 16:38:00,0 +5337,1969-12-03 02:55:00,0 +9709,1966-01-18 11:57:00,0 +2421,1967-12-20 23:16:00,0 +7527,1966-06-15 16:30:00,0 +8168,1965-08-30 22:33:00,0 +9409,1966-12-26 09:44:00,0 +4896,1965-12-12 06:52:00,0 +7217,1966-09-14 05:18:00,0 +8495,1966-05-07 04:20:00,0 +3632,1969-11-13 19:21:00,0 +5663,1968-01-02 00:46:00,0 +8114,1969-11-15 22:31:00,0 +7160,1969-01-01 16:06:00,0 +7755,1969-07-08 04:00:00,0 +160,1966-01-19 02:35:00,0 +9720,1967-07-09 14:56:00,0 +378,1966-07-31 18:24:00,0 +5225,1969-06-07 08:37:00,0 +8793,1966-09-28 23:37:00,0 +2698,1968-09-14 01:43:00,0 +967,1968-12-16 06:00:00,0 +9088,1965-09-04 15:20:00,0 +9786,1966-12-03 04:44:00,0 +8175,1966-12-31 16:37:00,0 +5306,1965-11-01 16:02:00,0 +8911,1967-10-26 21:09:00,0 +1077,1966-03-17 20:50:00,0 +2490,1965-12-16 16:24:00,0 +5195,1966-01-02 18:13:00,0 +4422,1967-12-10 12:33:00,0 +3491,1967-05-08 19:41:00,0 +9426,1965-02-18 01:37:00,0 +4529,1967-09-25 19:20:00,0 +5226,1967-05-20 04:59:00,0 +9490,1965-09-19 09:02:00,0 +701,1966-11-08 15:03:00,0 +3376,1967-01-19 07:15:00,0 +6988,1965-04-30 12:51:00,0 +3429,1967-01-12 21:33:00,0 +4036,1965-02-11 11:57:00,0 +3312,1967-11-10 15:58:00,0 +1837,1967-08-19 07:09:00,0 +1278,1967-07-28 03:18:00,0 +1802,1966-05-24 05:51:00,0 +7287,1968-02-02 16:40:00,0 +9836,1968-01-06 20:54:00,0 +1423,1965-11-11 06:58:00,0 +8758,1968-06-24 02:30:00,0 +2230,1967-05-28 17:42:00,0 +6722,1967-02-03 02:30:00,0 +8254,1969-06-10 01:14:00,0 +8610,1967-11-10 19:11:00,0 +1045,1967-12-19 19:24:00,0 +3066,1967-11-21 01:11:00,0 +7191,1967-08-30 00:49:00,0 +2074,1965-10-30 00:15:00,0 +8318,1967-03-17 23:50:00,0 +8608,1969-09-17 22:09:00,0 +4956,1966-05-08 15:54:00,0 +7237,1965-12-13 22:10:00,0 +4258,1969-05-23 01:00:00,0 +4608,1968-02-19 14:32:00,0 +3824,1966-10-16 10:52:00,0 +5000,1967-03-25 10:14:00,0 +5352,1968-08-25 16:31:00,0 +3834,1968-03-15 10:24:00,0 +3913,1969-08-03 04:23:00,0 +1431,1966-12-17 03:49:00,0 +6311,1969-11-01 19:25:00,0 +218,1967-03-02 23:32:00,0 +2552,1966-01-16 20:52:00,0 +5100,1969-06-23 21:53:00,0 +4158,1969-03-10 16:42:00,0 +9643,1967-04-27 16:34:00,0 +3337,1967-07-04 01:19:00,0 +3120,1967-12-12 17:49:00,0 +1613,1969-11-28 05:43:00,0 +2680,1969-11-04 08:11:00,0 +8815,1969-10-21 05:52:00,0 +1489,1966-04-03 15:10:00,0 +1924,1966-07-24 06:27:00,0 +4141,1969-08-24 21:10:00,0 +5114,1965-01-25 01:25:00,0 +3189,1965-01-03 05:32:00,0 +8925,1965-10-20 21:04:00,0 +4830,1965-12-18 16:41:00,0 +7178,1969-03-01 14:40:00,0 +3563,1969-11-14 21:03:00,0 +5405,1968-10-04 15:35:00,0 +1580,1965-04-26 21:51:00,0 +3923,1965-01-27 08:45:00,0 +387,1965-02-04 06:07:00,0 +2745,1969-10-03 03:30:00,0 +4811,1965-11-12 18:26:00,0 +6208,1965-05-17 17:51:00,0 +8881,1969-11-07 12:17:00,0 +2317,1966-06-06 11:30:00,0 +4685,1967-03-27 00:44:00,0 +6023,1969-03-08 08:12:00,0 +62,1965-03-23 19:23:00,0 +7781,1965-03-25 02:27:00,0 +3563,1966-12-26 13:07:00,0 +1725,1967-10-09 21:46:00,0 +5945,1968-03-26 23:41:00,0 +3515,1968-06-04 18:56:00,0 +6209,1969-10-11 23:36:00,0 +9763,1965-11-06 12:36:00,0 +6591,1967-09-28 07:01:00,0 +9427,1965-01-04 20:36:00,0 +9297,1969-07-03 13:10:00,0 +4029,1968-04-22 19:23:00,0 +688,1967-06-15 20:30:00,0 +8482,1965-08-19 18:35:00,0 +6672,1968-04-21 02:38:00,0 +4384,1966-06-21 19:07:00,0 +4053,1967-03-11 19:23:00,0 +4174,1968-04-09 05:14:00,0 +3657,1968-09-27 18:12:00,0 +6523,1969-02-12 07:21:00,0 +5241,1968-06-12 04:07:00,0 +6515,1969-05-24 12:18:00,0 +3801,1966-02-07 02:24:00,0 +8543,1966-11-22 23:17:00,0 +7364,1965-12-17 19:57:00,0 +9691,1966-10-23 13:02:00,0 +6303,1966-03-06 04:00:00,0 +5219,1966-08-03 06:15:00,0 +672,1966-05-28 07:05:00,0 +4708,1968-08-17 08:47:00,0 +8477,1967-01-06 19:25:00,0 +9765,1965-12-31 03:24:00,0 +7538,1965-11-04 19:19:00,0 +79,1966-04-02 12:10:00,0 +6707,1969-05-28 09:07:00,0 +4672,1965-03-11 09:12:00,0 +5943,1969-01-18 19:16:00,0 +5777,1969-12-31 15:26:00,0 +1434,1969-05-20 12:09:00,0 +4573,1966-09-17 23:05:00,0 +244,1969-03-06 00:21:00,0 +4215,1965-08-07 12:53:00,0 +2486,1967-07-16 10:10:00,0 +190,1965-02-23 12:09:00,0 +5044,1969-07-25 13:48:00,0 +4568,1965-08-15 17:14:00,0 +8012,1967-11-12 06:03:00,0 +6812,1969-11-10 02:17:00,0 +4777,1969-05-17 04:11:00,0 +1121,1966-05-23 00:25:00,0 +4573,1967-08-06 18:38:00,0 +5403,1965-11-26 23:27:00,0 +3266,1967-07-01 05:13:00,0 +1308,1967-04-15 04:45:00,0 +3261,1967-12-15 23:21:00,0 +8830,1966-11-18 07:38:00,0 +255,1966-01-06 00:37:00,0 +765,1967-03-09 10:53:00,0 +7505,1967-10-09 06:54:00,0 +2321,1967-05-18 10:31:00,0 +6830,1966-08-13 10:47:00,0 +8159,1966-02-04 02:55:00,0 +2412,1967-01-17 11:01:00,0 +5311,1967-05-05 07:27:00,0 +1183,1969-03-09 00:24:00,0 +6762,1967-09-26 21:26:00,0 +3070,1969-11-09 00:57:00,0 +1907,1969-12-02 23:50:00,0 +8558,1966-02-01 22:10:00,0 +6016,1968-03-09 12:04:00,0 +4311,1965-06-09 05:56:00,0 +51,1967-07-19 17:30:00,0 +8780,1965-09-23 12:24:00,0 +7517,1969-04-01 16:26:00,0 +4853,1966-04-12 05:44:00,0 +3889,1969-08-18 23:42:00,0 +6197,1969-09-10 14:40:00,0 +117,1966-05-17 00:14:00,0 +2198,1966-03-04 11:42:00,0 +5099,1968-10-22 04:55:00,0 +606,1966-06-03 15:39:00,0 +7573,1967-09-06 18:18:00,0 +5383,1968-07-12 09:39:00,0 +9012,1965-03-06 08:54:00,0 +622,1967-11-24 10:03:00,0 +5643,1965-04-08 19:12:00,0 +5659,1966-12-17 15:30:00,0 +4183,1968-11-09 09:33:00,0 +9822,1965-02-19 01:37:00,0 +4894,1966-12-25 21:24:00,0 +7486,1967-02-03 03:58:00,0 +4412,1965-10-24 05:12:00,0 +4550,1968-01-14 23:43:00,0 +1997,1969-06-28 12:32:00,0 +8190,1967-09-08 06:45:00,0 +8943,1967-04-20 07:38:00,0 +6372,1966-05-30 13:14:00,0 +5780,1966-11-22 03:00:00,0 +4849,1965-11-28 02:38:00,0 +7057,1969-02-18 11:54:00,0 +1804,1967-11-16 03:33:00,0 +8190,1968-04-20 15:11:00,0 +4730,1965-07-18 00:15:00,0 +3168,1967-10-18 18:04:00,0 +5604,1969-03-29 18:34:00,0 +1969,1968-09-05 01:13:00,0 +2003,1969-03-13 12:43:00,0 +8638,1969-06-16 13:17:00,0 +7501,1969-02-18 03:22:00,0 +2914,1966-01-10 13:00:00,0 +8634,1969-01-21 20:06:00,0 +3046,1965-07-31 23:29:00,0 +1703,1967-09-26 13:53:00,0 +8166,1965-06-19 01:55:00,0 +542,1967-07-27 22:28:00,0 +2335,1969-05-03 15:49:00,0 +3100,1968-05-02 08:57:00,0 +4234,1965-12-19 01:01:00,0 +6388,1969-06-11 06:03:00,0 +8854,1967-01-19 06:02:00,0 +5981,1965-06-10 14:29:00,0 +5600,1968-02-04 10:35:00,0 +9380,1967-07-11 13:40:00,0 +7095,1966-11-04 08:14:00,0 +4827,1967-01-31 17:02:00,0 +1103,1967-12-17 02:33:00,0 +6162,1965-04-15 01:05:00,0 +596,1967-09-15 17:57:00,0 +6469,1968-01-04 06:26:00,0 +9049,1966-01-24 14:53:00,0 +4492,1969-07-10 11:54:00,0 +2651,1969-10-21 06:09:00,0 +3607,1965-12-17 05:13:00,0 +2487,1967-06-21 11:09:00,0 +4274,1966-02-08 12:20:00,0 +5995,1965-04-25 12:59:00,0 +2880,1966-10-13 07:20:00,0 +7316,1965-08-26 07:38:00,0 +7144,1967-04-12 01:50:00,0 +1945,1969-05-24 23:58:00,0 +9517,1969-03-18 03:06:00,0 +3836,1966-06-22 18:06:00,0 +1813,1968-06-28 05:36:00,0 +2184,1965-08-23 02:47:00,0 +3549,1967-10-27 16:13:00,0 +9840,1969-10-04 19:24:00,0 +3895,1968-04-01 00:08:00,0 +3470,1967-07-09 16:36:00,0 +8652,1969-04-21 09:16:00,0 +6569,1969-03-29 01:32:00,0 +187,1969-08-22 08:15:00,0 +315,1969-08-17 21:23:00,0 +5029,1966-06-10 03:59:00,0 +4286,1969-10-10 13:39:00,0 +6471,1968-10-07 12:41:00,0 +2677,1968-03-11 03:32:00,0 +332,1969-12-12 21:52:00,0 +4262,1969-10-08 17:09:00,0 +3485,1968-08-27 13:19:00,0 +8032,1968-12-30 10:46:00,0 +7043,1967-01-12 08:13:00,0 +7671,1969-06-30 18:43:00,0 +8212,1965-07-13 02:10:00,0 +2028,1968-03-04 23:37:00,0 +7301,1967-08-13 22:56:00,0 +8442,1965-09-14 04:56:00,0 +1063,1967-12-16 20:59:00,0 +6805,1967-03-03 00:16:00,0 +37,1969-08-21 12:27:00,0 +2391,1965-08-30 02:03:00,0 +5786,1965-11-11 04:04:00,0 +9642,1965-02-14 09:18:00,0 +6775,1968-05-31 00:22:00,0 +3744,1969-03-05 01:19:00,0 +8275,1965-04-17 02:07:00,0 +6564,1969-01-08 16:03:00,0 +9862,1965-01-25 22:55:00,0 +9627,1969-03-25 16:34:00,0 +8265,1966-02-21 17:08:00,0 +127,1967-09-24 02:16:00,0 +3717,1965-04-15 04:49:00,0 +7406,1968-02-01 08:37:00,0 +8757,1966-12-03 19:55:00,0 +4810,1968-03-08 12:12:00,0 +4894,1965-09-27 20:36:00,0 +6908,1967-04-12 06:44:00,0 +3836,1968-07-29 19:12:00,0 +4589,1968-03-19 23:54:00,0 +9088,1968-08-25 17:50:00,0 +2545,1967-08-27 10:01:00,0 +3344,1968-02-15 07:56:00,0 +563,1969-12-27 02:49:00,0 +833,1968-05-08 04:40:00,0 +5640,1969-01-21 21:25:00,0 +3199,1968-06-19 04:51:00,0 +8408,1968-07-23 04:41:00,0 +6434,1967-04-16 21:51:00,0 +1187,1969-02-15 15:44:00,0 +8329,1968-05-30 14:04:00,0 +198,1965-07-16 09:49:00,0 +6686,1966-12-08 23:23:00,0 +6454,1966-07-08 06:51:00,0 +2236,1969-08-12 02:05:00,0 +7894,1967-08-29 01:57:00,0 +3392,1967-10-04 14:11:00,0 +570,1968-12-29 13:59:00,0 +6562,1968-03-23 10:17:00,0 +9195,1966-03-30 04:41:00,0 +1911,1968-05-18 13:13:00,0 +4143,1966-06-19 15:55:00,0 +1556,1967-06-09 01:31:00,0 +7790,1965-02-19 19:46:00,0 +601,1966-12-17 03:03:00,0 +3578,1965-08-14 22:02:00,0 +243,1966-11-03 21:36:00,0 +2547,1967-11-29 09:50:00,0 +6595,1969-04-13 07:57:00,0 +4241,1969-10-15 03:02:00,0 +3682,1965-02-05 18:23:00,0 +3236,1966-02-27 01:51:00,0 +5657,1966-04-23 12:40:00,0 +7778,1969-05-29 18:04:00,0 +9416,1969-10-10 16:55:00,0 +3981,1965-06-15 05:05:00,0 +9367,1966-03-20 23:57:00,0 +6743,1969-03-15 12:26:00,0 +7870,1966-11-13 22:07:00,0 +1746,1965-06-20 15:27:00,0 +2701,1966-10-15 09:19:00,0 +3709,1967-02-20 01:24:00,0 +4089,1967-08-24 02:42:00,0 +1424,1965-04-27 07:40:00,0 +9401,1966-01-06 09:32:00,0 +2942,1965-09-30 17:46:00,0 +1754,1967-12-01 08:38:00,0 +2518,1967-12-23 04:55:00,0 +8748,1968-06-12 16:40:00,0 +1849,1968-02-14 07:15:00,0 +4278,1969-11-07 11:54:00,0 +3065,1969-06-02 22:27:00,0 +3236,1966-11-23 07:18:00,0 +7898,1966-10-29 04:29:00,0 +3107,1968-12-15 02:36:00,0 +3887,1969-03-29 04:51:00,0 +5278,1968-09-22 01:56:00,0 +2783,1968-02-29 09:49:00,0 +1815,1966-03-15 08:58:00,0 +9008,1969-05-06 13:44:00,0 +7414,1965-06-21 12:34:00,0 +9040,1965-12-13 01:11:00,0 +3011,1965-03-18 04:00:00,0 +6491,1969-01-14 09:25:00,0 +5551,1968-04-02 21:06:00,0 +7091,1965-03-17 14:28:00,0 +141,1965-10-10 18:58:00,0 +6006,1969-07-19 08:56:00,0 +5307,1966-04-13 12:48:00,0 +1280,1966-10-21 09:27:00,0 +4161,1967-05-27 10:42:00,0 +5727,1969-05-16 14:46:00,0 +2718,1967-05-24 10:08:00,0 +5283,1965-10-30 17:58:00,0 +1896,1969-06-13 06:19:00,0 +2358,1966-07-13 04:59:00,0 +2670,1968-04-02 12:02:00,0 +7573,1967-04-22 17:53:00,0 +5115,1965-10-26 10:37:00,0 +6542,1969-11-15 11:52:00,0 +4906,1965-08-09 05:55:00,0 +4207,1966-07-31 23:25:00,0 +8780,1967-08-30 06:56:00,0 +724,1968-06-11 07:45:00,0 +745,1969-01-27 14:54:00,0 +2644,1967-04-13 23:27:00,0 +7554,1965-04-14 13:45:00,0 +3230,1965-10-20 09:57:00,0 +2097,1969-07-16 18:14:00,0 +266,1965-02-10 09:29:00,0 +7023,1968-10-11 09:17:00,0 +9929,1965-10-18 05:27:00,0 +4729,1968-08-08 00:17:00,0 +2417,1967-05-15 06:50:00,0 +7512,1969-03-14 18:32:00,0 +183,1967-11-01 21:14:00,0 +2168,1965-08-06 03:19:00,0 +3318,1966-09-25 19:52:00,0 +8966,1968-09-16 20:51:00,0 +4239,1965-12-23 21:29:00,0 +6883,1966-06-05 17:16:00,0 +4385,1967-02-18 23:58:00,0 +7149,1967-03-28 17:14:00,0 +9499,1966-12-03 06:50:00,0 +9733,1969-01-14 22:53:00,0 +4500,1967-05-04 07:47:00,0 +8399,1965-02-11 07:20:00,0 +8668,1969-11-01 03:10:00,0 +2381,1969-04-07 17:54:00,0 +6465,1966-03-06 05:13:00,0 +6241,1968-11-18 11:25:00,0 +7175,1966-07-24 18:30:00,0 +7750,1966-10-12 17:11:00,0 +9262,1968-08-10 20:08:00,0 +8414,1965-05-31 18:50:00,0 +8070,1969-08-21 07:35:00,0 +6622,1965-07-21 14:47:00,0 +7461,1966-06-10 16:31:00,0 +3513,1969-02-12 02:36:00,0 +283,1969-04-24 15:20:00,0 +2920,1966-09-14 03:48:00,0 +9951,1968-05-11 12:25:00,0 +6615,1968-11-12 23:49:00,0 +9826,1969-06-22 20:08:00,0 +3242,1965-07-10 15:28:00,0 +687,1965-10-05 00:22:00,0 +1390,1967-09-22 00:03:00,0 +124,1966-06-12 04:12:00,0 +5192,1966-03-18 22:32:00,0 +9067,1965-04-06 23:58:00,0 +1971,1966-02-13 16:23:00,0 +8725,1969-02-14 18:35:00,0 +6609,1965-09-06 20:08:00,0 +1427,1968-05-14 18:25:00,0 +534,1969-01-10 20:47:00,0 +2642,1969-09-10 13:53:00,0 +9599,1968-12-25 18:32:00,0 +8847,1965-12-11 13:02:00,0 +4532,1968-06-20 10:37:00,0 +2262,1966-10-23 06:20:00,0 +2350,1966-09-22 19:40:00,0 +305,1965-01-30 13:10:00,0 +875,1967-06-28 15:54:00,0 +2838,1967-05-18 14:41:00,0 +8385,1966-05-30 16:04:00,0 +799,1969-04-22 04:40:00,0 +8036,1967-06-04 09:50:00,0 +1364,1965-05-31 04:49:00,0 +7341,1968-01-07 03:38:00,0 +2177,1967-02-10 22:16:00,0 +8643,1968-05-01 20:38:00,0 +8572,1967-04-12 09:27:00,0 +8549,1966-04-10 02:12:00,0 +9045,1969-11-04 12:28:00,0 +3126,1967-11-10 09:22:00,0 +1315,1966-06-28 09:12:00,0 +8569,1969-06-17 01:22:00,0 +6047,1969-02-20 09:32:00,0 +7397,1965-08-16 07:26:00,0 +9395,1965-05-11 18:24:00,0 +8718,1969-06-11 08:32:00,0 +3038,1966-12-03 20:56:00,0 +324,1968-09-25 01:47:00,0 +9066,1968-02-15 22:58:00,0 +5067,1968-12-08 06:29:00,0 +5168,1967-09-01 16:14:00,0 +629,1968-02-24 13:30:00,0 +5311,1966-06-02 03:37:00,0 +2741,1968-03-04 20:16:00,0 +6659,1968-02-03 02:52:00,0 +5560,1967-11-22 17:49:00,0 +3688,1969-10-22 04:30:00,0 +6590,1968-07-21 02:22:00,0 +2481,1966-02-22 21:44:00,0 +3022,1967-09-27 17:24:00,0 +8017,1966-01-11 01:25:00,0 +266,1966-06-26 12:08:00,0 +4092,1967-07-26 21:37:00,0 +9330,1968-03-08 17:35:00,0 +739,1969-07-16 17:23:00,0 +7190,1968-01-24 05:34:00,0 +239,1966-02-16 21:52:00,0 +1315,1968-10-29 17:29:00,0 +4043,1967-12-02 17:38:00,0 +2795,1969-03-11 09:03:00,0 +3961,1965-01-09 08:25:00,0 +2893,1966-08-21 13:36:00,0 +3234,1967-04-04 19:12:00,0 +7071,1967-06-07 09:47:00,0 +5251,1969-01-26 12:13:00,0 +5036,1969-01-20 18:14:00,0 +5713,1968-10-19 01:36:00,0 +4784,1967-02-08 01:45:00,0 +5285,1966-06-11 06:39:00,0 +3656,1967-01-25 20:32:00,0 +251,1968-12-28 15:15:00,0 +2498,1968-03-19 06:04:00,0 +8583,1967-07-30 00:03:00,0 +1034,1966-03-28 03:06:00,0 +2504,1969-09-29 19:10:00,0 +6878,1966-08-28 08:27:00,0 +1512,1965-09-27 09:21:00,0 +241,1967-03-31 23:36:00,0 +4784,1966-03-10 13:49:00,0 +7951,1967-05-10 21:56:00,0 +908,1968-10-26 04:55:00,0 +3943,1968-11-22 21:46:00,0 +1727,1967-10-06 07:29:00,0 diff --git a/tests/test_data/synth_txt_data.csv b/tests/test_data/raw/synth_txt_data.csv similarity index 100% rename from tests/test_data/synth_txt_data.csv rename to tests/test_data/raw/synth_txt_data.csv diff --git a/tests/test_data/test_tfidf/test_tfidf_vocab.py b/tests/test_data/test_tfidf/test_tfidf_vocab.py index 33c034cc..0079b651 100644 --- a/tests/test_data/test_tfidf/test_tfidf_vocab.py +++ b/tests/test_data/test_tfidf/test_tfidf_vocab.py @@ -26,10 +26,3 @@ tfidf = pkl.load(f) print(tfidf.get_feature_names()) - - -__all__ = [ - "TEST_TFIDF_VOCAB", - "p", - "tfidf", -] diff --git a/tests/test_feature_describer/test_feature_describer.py b/tests/test_feature_describer/test_feature_describer.py index a46d26d7..024b7c90 100644 --- a/tests/test_feature_describer/test_feature_describer.py +++ b/tests/test_feature_describer/test_feature_describer.py @@ -34,8 +34,10 @@ def predictor_dicts(): @pytest.fixture() def df(): - """Load the synthetic data set.""" - return pd.read_csv("tests/test_data/synth_prediction_data.csv") + """Load the synthetic flattened data set.""" + return pd.read_csv( + "tests/test_data/flattened/generated_with_outcome/synth_flattened_with_outcome.csv", + ) def test_load_dataset(df): @@ -57,11 +59,3 @@ def test_generate_feature_description_row(df, predictor_dicts): generate_feature_description_row(series=df[column_name], predictor_dict=d) generate_feature_description_df(df, predictor_dicts) - - -__all__ = [ - "df", - "predictor_dicts", - "test_generate_feature_description_row", - "test_load_dataset", -] diff --git a/tests/test_loaders/test_non_numerical_coercion.py b/tests/test_loaders/test_non_numerical_coercion.py index d8e659d3..ee075549 100644 --- a/tests/test_loaders/test_non_numerical_coercion.py +++ b/tests/test_loaders/test_non_numerical_coercion.py @@ -34,8 +34,3 @@ def test_non_numerical_coercion(): for col in df.columns: pd.testing.assert_series_equal(df[col], expected_df[col], check_dtype=False) - - -__all__ = [ - "test_non_numerical_coercion", -] diff --git a/tests/test_model_performance/test_model_performance.py b/tests/test_model_performance/test_model_performance.py index cfef14ca..37e6cb5c 100644 --- a/tests/test_model_performance/test_model_performance.py +++ b/tests/test_model_performance/test_model_performance.py @@ -159,18 +159,3 @@ def test_transform_folder(): dfs = pd.concat(dfs) assert len(dfs.columns) == 9 assert len(dfs["model_name"]) > 1 - - -__all__ = [ - "binary_df", - "binary_float_df", - "binary_score_mapping", - "multiclass_df", - "multiclass_score_mapping", - "test_binary_transform_from_dataframe", - "test_binary_transform_from_dataframe_wide_by_id", - "test_binary_transform_from_dataframe_with_float", - "test_binary_transform_from_dataframe_with_float_wide", - "test_multiclass_transform_from_dataframe", - "test_transform_folder", -] diff --git a/tests/test_timeseriesflattener/test_add_values.py b/tests/test_timeseriesflattener/test_add_values.py index daab76f4..3574c69c 100644 --- a/tests/test_timeseriesflattener/test_add_values.py +++ b/tests/test_timeseriesflattener/test_add_values.py @@ -487,7 +487,7 @@ def test_add_temporal_incident_binary_outcome(): dichotomous=True, resolve_multiple="max", fallback=0, - new_col_name="t2d", + pred_name="t2d", ) outcome_df = flattened_dataset.df @@ -538,23 +538,3 @@ def test_add_text_data(): assert outcome_df.isna().sum().sum() == 20 # assert len() - - -__all__ = [ - "test_add_age", - "test_add_age_error", - "test_add_multiple_static_predictors", - "test_add_temporal_incident_binary_outcome", - "test_add_temporal_predictors_then_temporal_outcome", - "test_add_text_data", - "test_citizen_without_outcome", - "test_event_after_prediction_time", - "test_event_before_prediction", - "test_incident_outcome_removing_prediction_times", - "test_multiple_citizens_outcome", - "test_multiple_citizens_predictor", - "test_predictor_after_prediction_time", - "test_predictor_before_prediction", - "test_raise_error_if_timestamp_col_not_timestamp_type", - "test_static_predictor", -] diff --git a/tests/test_timeseriesflattener/test_create_feature_combinations.py b/tests/test_timeseriesflattener/test_create_feature_combinations.py index 65b7ee6a..d45fb79e 100644 --- a/tests/test_timeseriesflattener/test_create_feature_combinations.py +++ b/tests/test_timeseriesflattener/test_create_feature_combinations.py @@ -213,12 +213,3 @@ def test_create_multiple_feature_combinations_from_multiple_columns(): ] assert create_feature_combinations(arg_sets=predictor_dict) == expected_output - - -__all__ = [ - "test_create_feature_combinations", - "test_create_multiple_feature_combinations", - "test_create_multiple_feature_combinations_from_multiple_columns", - "test_skip_all_if_no_need_to_process", - "test_skip_one_if_no_need_to_process", -] diff --git a/tests/test_timeseriesflattener/test_errors.py b/tests/test_timeseriesflattener/test_errors.py index 3f76fb72..07bb2e31 100644 --- a/tests/test_timeseriesflattener/test_errors.py +++ b/tests/test_timeseriesflattener/test_errors.py @@ -48,6 +48,7 @@ def test_col_does_not_exist(): lookbehind_days=2, resolve_multiple="max", fallback=2, + pred_name="val", ) @@ -61,10 +62,3 @@ def test_duplicate_prediction_times(): FlattenedDataset( prediction_times_df=str_to_df(prediction_times_df_str), ) - - -__all__ = [ - "test_col_does_not_exist", - "test_col_does_not_exist_in_prediction_times", - "test_duplicate_prediction_times", -] diff --git a/tests/test_timeseriesflattener/test_flattened_dataset_generation.py b/tests/test_timeseriesflattener/test_flattened_dataset_generation.py new file mode 100644 index 00000000..8d2bf4f0 --- /dev/null +++ b/tests/test_timeseriesflattener/test_flattened_dataset_generation.py @@ -0,0 +1,222 @@ +"""Integration test for the flattened dataset generation.""" + +# pylint: disable=unused-import, redefined-outer-name + + +from pathlib import Path + +import numpy as np +import pandas as pd +import pytest + +from psycopmlutils.loaders.synth.raw.load_synth_data import ( + load_synth_outcome, + load_synth_prediction_times, + synth_predictor_float, +) +from psycopmlutils.timeseriesflattener.flattened_dataset import FlattenedDataset +from src.application.t2d.generate_features_and_write_to_disk import ( + log_to_wandb, + save_feature_set_description_to_disk, + split_and_save_to_disk, +) + + +@pytest.fixture(scope="function") +def synth_prediction_times(): + """Load the prediction times.""" + return load_synth_prediction_times() + + +base_float_predictor_combinations = [ + { + "predictor_df": "synth_predictor_float", + "lookbehind_days": 365, + "resolve_multiple": "max", + "fallback": np.NaN, + "allowed_nan_value_prop": 0.0, + }, + { + "predictor_df": "synth_predictor_float", + "lookbehind_days": 730, + "resolve_multiple": "max", + "fallback": np.NaN, + "allowed_nan_value_prop": 0.0, + }, +] + + +base_binary_predictor_combinations = [ + { + "predictor_df": "synth_predictor_float", + "lookbehind_days": 365, + "resolve_multiple": "max", + "fallback": np.NaN, + "allowed_nan_value_prop": 0.0, + }, + { + "predictor_df": "synth_predictor_float", + "lookbehind_days": 730, + "resolve_multiple": "max", + "fallback": np.NaN, + "allowed_nan_value_prop": 0.0, + }, +] + + +def check_dfs_have_same_contents_by_column(df1, df2): + """Check that two dataframes have the same contents by column. + + Makes debugging much easier, as it generates a diff df which is easy to read. + + Args: + df1 (pd.DataFrame): First dataframe. + df2 (pd.DataFrame): Second dataframe. + + Raises: + AssertionError: If the dataframes don't have the same contents by column. + """ + + cols_to_test = [c for c in df1.columns if "prediction_time_uuid" not in c] + + for col in cols_to_test: + # Saving to csv rounds floats, so we need to round here too + # to avoid false negatives. Otherwise, it thinks the .csv + # file has different values from the generated_df, simply because + # generated_df has more decimal places. + for df in (df1, df2): + if df[col].dtype not in (np.dtype("O"), np.dtype("