diff --git a/.github/workflows/publish_images.yml b/.github/workflows/publish_images.yml
index 54aa59c94bb72e3846c6dbfdc59aea0aae529459..83f01059f86715e3fe74918bacc42f6862f5cd76 100644
--- a/.github/workflows/publish_images.yml
+++ b/.github/workflows/publish_images.yml
@@ -53,35 +53,6 @@ jobs:
           rm -rf /tmp/.buildx-cache
           mv /tmp/.buildx-cache-new /tmp/.buildx-cache
 
-      - name: Install Poetry
-        uses: snok/install-poetry@v1
-        with:
-          virtualenvs-create: true
-          virtualenvs-in-project: true
-
-      - name: Load cached venv
-        id: cached-poetry-dependencies
-        uses: actions/cache@v2
-        with:
-          path: .venv
-          key: venv-${{ runner.os }}-${{ hashFiles('poetry.lock') }}
-
-      - name: Install dependencies
-        if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
-        run: poetry install --no-interaction --no-root
-
-      - name: Start MONETDB container
-        run: docker run -d -p 50000:50000 --name monetdb madgik/mipenginedb:latest
-
-      - name: Load data into MONETDB container
-        run: poetry run inv load-data --port 50000
-
-      - name: Commit MONETDB image with loaded demo_data
-        run: docker commit monetdb madgik/mipenginedb_with_data:${{ github.event.release.tag_name }}
-
-      - name: Push the MONETDB demo_data image to dockerhub
-        run: docker push madgik/mipenginedb_with_data:${{ github.event.release.tag_name }}
-
   build_and_push_rabbitmq:
     name: Build RABBITMQ image and push to dockerhub
     runs-on: ubuntu-latest
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 63c22a59e8542eaf6649f7ec10ba1eba2d5f2afd..ff4c92ce0457afb25b8ceff72e71db4224fe5c1c 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -319,8 +319,11 @@ jobs:
         with:
           time: '10s'
 
-      - name: Load data into MONETDB
-        run: poetry run inv load-data --port 50000
+      - name: Initialize MONETDB with mipdb initial metadata tables
+        run: poetry run mipdb init --ip 172.17.0.1 --port 50000
+
+      - name: Load data into MONETDB container
+        run: poetry run mipdb load-folder ./tests/demo_data/  --ip 172.17.0.1 --port 50000
 
       - name: Backup MONETDB data
         run: |
diff --git a/mipengine/node/monetdb_interface/common_actions.py b/mipengine/node/monetdb_interface/common_actions.py
index 9ae33f7b01b9f9d25cfdaaeaf5e52390b29851ae..6a436b0b660828e6aac93bfff976dd2ea847a839 100644
--- a/mipengine/node/monetdb_interface/common_actions.py
+++ b/mipengine/node/monetdb_interface/common_actions.py
@@ -217,10 +217,7 @@ def get_initial_data_schemas() -> List[str]:
     """
 
     schema_table_names = MonetDB().execute_and_fetchall(
-        f"""
-            SELECT name FROM tables
-            WHERE name LIKE '%\\\\_data' ESCAPE '\\\\'
-            AND system = false"""
+        f'SELECT code FROM "mipdb_metadata"."data_models"'
     )
 
     # Flatten the list
@@ -230,11 +227,7 @@ def get_initial_data_schemas() -> List[str]:
         for schema_table_name in schema_table
     ]
 
-    # The first part of the table is the dataset schema (pathology)
-    # Table name convention = <schema_name>_data
-    schema_names = [table_name.split("_")[0] for table_name in schema_table_names]
-
-    return schema_names
+    return schema_table_names
 
 
 def get_schema_datasets(schema_name) -> List[str]:
@@ -249,7 +242,14 @@ def get_schema_datasets(schema_name) -> List[str]:
 
     datasets_rows = MonetDB().execute_and_fetchall(
         f"""
-        SELECT DISTINCT(dataset) FROM {schema_name}_data
+        SELECT code
+        FROM "mipdb_metadata"."datasets"
+        WHERE data_model_id =
+        (
+            SELECT data_model_id
+            FROM "mipdb_metadata"."data_models"
+            WHERE code = '{schema_name}'
+        )
         """
     )
 
@@ -257,7 +257,6 @@ def get_schema_datasets(schema_name) -> List[str]:
     datasets = [
         dataset_name for dataset_row in datasets_rows for dataset_name in dataset_row
     ]
-
     return datasets
 
 
diff --git a/mipengine/node/monetdb_interface/csv_importer.py b/mipengine/node/monetdb_interface/csv_importer.py
deleted file mode 100644
index 1eabb6b641f41bc41582f3f17ecc7c837a933789..0000000000000000000000000000000000000000
--- a/mipengine/node/monetdb_interface/csv_importer.py
+++ /dev/null
@@ -1,364 +0,0 @@
-import csv
-import os
-from argparse import ArgumentParser
-from pathlib import Path
-from typing import Dict
-from typing import List
-
-from sqlalchemy import Boolean
-from sqlalchemy import Column
-from sqlalchemy import Float
-from sqlalchemy import Integer
-from sqlalchemy import MetaData
-from sqlalchemy import String
-from sqlalchemy import Table
-from sqlalchemy import create_engine
-from sqlalchemy import null
-from sqlalchemy.exc import OperationalError
-
-from mipengine.common_data_elements import CommonDataElement
-from mipengine.common_data_elements import CommonDataElements
-from mipengine.node import DATA_TABLE_PRIMARY_KEY
-
-AMOUNT_OF_ROWS_TO_INSERT_INTO_SQL_PER_CALL = 100
-
-
-def create_pathology_metadata_table(
-    pathology: str, pathology_common_data_elements: Dict[str, CommonDataElement]
-):
-    metadata_table_name = pathology + "_metadata"
-    metadata_table = Table(
-        metadata_table_name,
-        db_engine_metadata,
-        Column("code", String(100), primary_key=True),
-        Column("label", String(255)),
-        Column("sql_type", String(10)),
-        Column("categorical", Boolean),
-        Column("enumerations", String(255)),
-        Column("min", Integer),
-        Column("max", Integer),
-    )
-    db_engine_metadata.drop_all(db_engine, checkfirst=True, tables=[metadata_table])
-    db_engine_metadata.create_all(db_engine, tables=[metadata_table])
-
-    for (
-        common_data_element_code,
-        common_data_element,
-    ) in pathology_common_data_elements.items():
-        # Parse the special values (Optional, Enumerations) to sql format
-        if common_data_element.enumerations is not None:
-            enumerations_sql_value = ", ".join(
-                [str(e) for e in common_data_element.enumerations]
-            )
-        else:
-            enumerations_sql_value = null()
-
-        if common_data_element.min is not None:
-            min_sql_value = common_data_element.min
-        else:
-            min_sql_value = null()
-
-        if common_data_element.max is not None:
-            max_sql_value = common_data_element.max
-        else:
-            max_sql_value = null()
-
-        cde_values = {
-            "code": common_data_element_code,
-            "label": common_data_element.label,
-            "sql_type": common_data_element.sql_type,
-            "categorical": common_data_element.is_categorical,
-            "enumerations": enumerations_sql_value,
-            "min": min_sql_value,
-            "max": max_sql_value,
-        }
-
-        insert_query = metadata_table.insert().values(cde_values)
-        db_engine.execute(insert_query, cde_values)
-
-
-def convert_sql_type_to_monetdb_type(sql_type: str):
-    """Converts metadata sql type to monetdb sqlalchemy type
-    int -> Integer
-    real -> Float
-    text -> String(100)
-    """
-    return {"int": Integer, "real": Float, "text": String(100)}[str.lower(sql_type)]
-
-
-def create_pathology_data_table(
-    pathology: str, pathology_common_data_elements: Dict[str, CommonDataElement]
-):
-    column_names = [
-        cde_code for cde_code, cde in pathology_common_data_elements.items()
-    ]
-    column_types = [
-        convert_sql_type_to_monetdb_type(cde.sql_type)
-        for cde_code, cde in pathology_common_data_elements.items()
-    ]
-    columns = [
-        Column(column_name.lower(), column_type)
-        for column_name, column_type in zip(column_names, column_types)
-    ]
-
-    # The row_id column, the primary key of the table, it's not part of the metadata
-    row_id_column = Column(
-        DATA_TABLE_PRIMARY_KEY,
-        convert_sql_type_to_monetdb_type("int"),
-        primary_key=True,
-        autoincrement=True,
-    )
-    columns.append(row_id_column)
-
-    data_table_name = pathology + "_data"
-    data_table = Table(data_table_name, db_engine_metadata, *columns)
-
-    db_engine_metadata.drop_all(db_engine, checkfirst=True, tables=[data_table])
-    db_engine_metadata.create_all(db_engine, tables=[data_table])
-
-
-def import_dataset_csv_into_data_table(
-    csv_file_path: Path,
-    pathology: str,
-    pathology_common_data_elements: Dict[str, CommonDataElement],
-):
-    data_table_name = pathology + "_data"
-
-    # Open the csv
-    dataset_csv_content = open(csv_file_path, "r", encoding="utf-8")
-    dataset_csv_reader = csv.reader(dataset_csv_content)
-
-    # Validate that all columns exist
-    csv_header = next(dataset_csv_reader)
-    for column in csv_header:
-        if column not in pathology_common_data_elements.keys():
-            raise KeyError("Column " + column + " does not exist in the metadata!")
-
-    # Create the prefix for the INSERT statement ("INSERT INTO ... ( COLUMN_A, ... )
-    insert_query_columns = ",".join(csv_header)
-    insert_query_prefix = (
-        f"INSERT INTO {data_table_name} ({insert_query_columns}) VALUES "
-    )
-
-    # Insert data
-    row_counter = 0
-    bulk_insert_query_values = "("
-    for row in dataset_csv_reader:
-        row_counter += 1
-
-        for (value, column) in zip(row, csv_header):
-            # Validate the value enumerations
-            # column_enumerations = pathology_common_data_elements[column].enumerations
-            # # print(f"column_enumerations-> {column_enumerations}")
-            # if column_enumerations and value and value not in column_enumerations:
-            #     breakpoint()
-            #     if value not in [str(c) for c in column_enumerations]:
-            #         breakpoint()
-            #         raise ValueError(f"Value {value} in column {column} does not "
-            #                          f"have one of the allowed enumerations: {column_enumerations}")
-
-            # Validate the value, min limit
-            column_min_value = pathology_common_data_elements[column].min
-            if column_min_value and value and value < column_min_value:
-                raise ValueError(
-                    f"Value {value} in column {column} should be less than {column_min_value}"
-                )
-
-            # Validate the value, max limit
-            column_max_value = pathology_common_data_elements[column].max
-            if column_max_value and value and value > column_max_value:
-                raise ValueError(
-                    f"Value {value} in column {column} should be greater than {column_max_value}"
-                )
-
-            # Add the value to the insert query
-            if value.strip() == "":
-                bulk_insert_query_values += "null, "
-            elif pathology_common_data_elements[column].sql_type == "text":
-                bulk_insert_query_values += "'" + value.strip() + "', "
-            else:
-                bulk_insert_query_values += value.strip() + ", "
-
-        # Execute insert query every AMOUNT_OF_ROWS_TO_INSERT_INTO_SQL_PER_CALL rows
-        if row_counter % AMOUNT_OF_ROWS_TO_INSERT_INTO_SQL_PER_CALL == 0:
-            bulk_insert_query_values = bulk_insert_query_values[:-2]
-            bulk_insert_query_values += ");"
-
-            try:
-                db_engine.execute(insert_query_prefix + bulk_insert_query_values)
-            except OperationalError:
-                find_error_on_bulk_insert_query(
-                    data_table_name,
-                    bulk_insert_query_values,
-                    csv_header,
-                    pathology_common_data_elements,
-                    csv_file_path,
-                )
-                raise ValueError("Error inserting the CSV to the database.")
-
-            bulk_insert_query_values = "("
-        else:
-            bulk_insert_query_values = bulk_insert_query_values[:-2]
-            bulk_insert_query_values += "),("
-
-    # Insertion of the last rows
-    if row_counter % AMOUNT_OF_ROWS_TO_INSERT_INTO_SQL_PER_CALL != 0:
-        bulk_insert_query_values = bulk_insert_query_values[:-3]
-        bulk_insert_query_values += ");"
-
-        try:
-            db_engine.execute(insert_query_prefix + bulk_insert_query_values)
-        except OperationalError:
-            find_error_on_bulk_insert_query(
-                data_table_name,
-                bulk_insert_query_values,
-                csv_header,
-                pathology_common_data_elements,
-                csv_file_path,
-            )
-
-
-def find_error_on_bulk_insert_query(
-    data_table_name: str,
-    bulk_insert_query: str,
-    csv_header: List[str],
-    pathology_common_data_elements: Dict[str, CommonDataElement],
-    csv_file_path: Path,
-):
-    # Removing the first and last parenthesis
-    bulk_insert_query = bulk_insert_query[1:-2]
-    # Removing the ' from character values
-    bulk_insert_query = bulk_insert_query.replace("'", "")
-    # Call findErrorOnSqlQuery for each row in the bulk query
-    for row in bulk_insert_query.split("),("):
-        find_error_on_sql_query(
-            data_table_name,
-            row.split(","),
-            csv_header,
-            pathology_common_data_elements,
-            csv_file_path,
-        )
-    raise ValueError(
-        f"""Error inserting into the database,
-        while inserting csv: {csv_file_path}
-        """
-    )
-
-
-def find_error_on_sql_query(
-    data_table_name: str,
-    row_values: List[str],
-    csv_header: List[str],
-    pathology_common_data_elements: Dict[str, CommonDataElement],
-    csv_file_path: Path,
-):
-    # Insert the code column into the database
-    # and then update it for each row to find where the problem is
-    if csv_header[0] != "subjectcode":
-        raise ValueError(
-            f"""Error inserting into the database,
-                the csv: {csv_file_path} ,
-                subjectcode is not the first column.
-                """
-        )
-
-    subject_code = row_values[0]
-    insert_query = (
-        f"INSERT INTO {data_table_name} (subjectcode) VALUES ('{subject_code}')"
-    )
-    db_engine.execute(insert_query)
-
-    for (value, column) in zip(row_values[1:], csv_header[1:]):
-        if pathology_common_data_elements[column].sql_type == "text":
-            update_query = (
-                f"UPDATE {data_table_name} SET {column} = '{value.strip()}' "
-                f"WHERE subjectcode = '{subject_code}'"
-            )
-        elif value.strip() == "":
-            update_query = f"UPDATE {data_table_name} SET {column} = null WHERE subjectcode = '{subject_code}'"
-        else:
-            update_query = (
-                f"UPDATE {data_table_name} SET {column} = {value.strip()} "
-                f"WHERE subjectcode = '{subject_code}'"
-            )
-
-        try:
-            db_engine.execute(update_query)
-        except OperationalError:
-            raise ValueError(
-                f"""Error inserting into the database.
-                Could not insert value: '{value.strip()}',
-                into column: '{column}',
-                at row with subjectcode: {subject_code},
-                while inserting csv: {csv_file_path}
-                """
-            )
-
-
-parser = ArgumentParser()
-parser.add_argument(
-    "-folder",
-    "--pathologies_folder_path",
-    required=True,
-    help="The folder with the pathologies data.",
-)
-parser.add_argument(
-    "-spec",
-    "--specific_pathologies",
-    required=False,
-    help="Specific pathologies to parse.",
-)
-parser.add_argument(
-    "-user", "--monetdb_username", required=True, help="MonetDB username."
-)
-parser.add_argument(
-    "-pass", "--monetdb_password", required=True, help="MonetDB password."
-)
-parser.add_argument("-url", "--monetdb_url", required=True, help="MonetDB url.")
-parser.add_argument("-farm", "--monetdb_farm", required=True, help="MonetDB farm.")
-
-args = parser.parse_args()
-data_path = args.pathologies_folder_path
-pathologies_to_parse = args.specific_pathologies
-monetdb_username = args.monetdb_username
-monetdb_password = args.monetdb_password
-monetdb_url = args.monetdb_url
-monetdb_farm = args.monetdb_farm
-
-print(f"Importing metadata of pathologies in {data_path}")
-common_data_elements = CommonDataElements(data_path)
-
-db_engine_metadata = MetaData()
-db_engine = create_engine(
-    f"monetdb://{monetdb_username}:{monetdb_password}@" f"{monetdb_url}/{monetdb_farm}:"
-)
-
-data_abs_path = os.path.abspath(data_path)
-pathology_names = next(os.walk(data_abs_path))[1]
-
-if pathologies_to_parse is not None:
-    pathologies_to_convert = pathologies_to_parse.split(",")
-    pathology_names = [
-        pathology_name
-        for pathology_name in pathology_names
-        if pathology_name in pathologies_to_convert
-    ]
-print("Importing CSVs for pathologies: " + ",".join(pathology_names))
-
-# Import all pathologies
-for pathology_name in pathology_names:
-    create_pathology_metadata_table(
-        pathology_name, common_data_elements.pathologies[pathology_name]
-    )
-
-    create_pathology_data_table(
-        pathology_name, common_data_elements.pathologies[pathology_name]
-    )
-
-    # Import each csv of the pathology
-    pathology_folder_path = Path(os.path.join(data_abs_path, pathology_name))
-    for csv_path in pathology_folder_path.glob("*.csv"):
-        print(f"Importing CSV: {csv_path}")
-        import_dataset_csv_into_data_table(
-            csv_path, pathology_name, common_data_elements.pathologies[pathology_name]
-        )
diff --git a/mipengine/node/tasks/views.py b/mipengine/node/tasks/views.py
index 930dbe50f3802474b6bd53806186754aa2f4eb73..518edb177ba171acbc23bec36ebb57b8636fa0fb 100644
--- a/mipengine/node/tasks/views.py
+++ b/mipengine/node/tasks/views.py
@@ -66,9 +66,10 @@ def create_pathology_view(
     )
     columns.insert(0, DATA_TABLE_PRIMARY_KEY)
 
+    # TODO Now the data_models require a version to access the proper table with data.
     views.create_view(
         view_name=view_name,
-        table_name=f"{pathology}_data",
+        table_name=f'"{pathology}:0.1"."primary_data"',
         columns=columns,
         filters=filters,
         enable_min_rows_threshold=True,
diff --git a/poetry.lock b/poetry.lock
index 94c4d2e7ffe933c3dac581e6f2fa36d08e494166..bb084a3c92714dbf51531d65b291405a5bb372d1 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -372,7 +372,7 @@ trio = ["trio (>=0.14.0)", "sniffio (>=1.1)"]
 name = "docker"
 version = "5.0.3"
 description = "A Python library for the Docker Engine API."
-category = "dev"
+category = "main"
 optional = false
 python-versions = ">=3.6"
 
@@ -728,6 +728,22 @@ category = "dev"
 optional = false
 python-versions = "*"
 
+[[package]]
+name = "mipdb"
+version = "0.1.0"
+description = ""
+category = "main"
+optional = false
+python-versions = ">=3.8,<4.0"
+
+[package.dependencies]
+click = "<8.0"
+docker = ">=5.0.0,<6.0.0"
+pandas = ">=1.2.3,<1.3.0"
+pandera = ">=0.8.0,<0.9.0"
+SQLAlchemy = ">=1.3.0,<1.4.0"
+sqlalchemy_monetdb = ">=1.0.0,<1.1.0"
+
 [[package]]
 name = "mypy-extensions"
 version = "0.4.3"
@@ -756,7 +772,7 @@ python-versions = ">=3.7"
 name = "packaging"
 version = "21.3"
 description = "Core utilities for Python packages"
-category = "dev"
+category = "main"
 optional = false
 python-versions = ">=3.6"
 
@@ -779,6 +795,34 @@ pytz = ">=2017.3"
 [package.extras]
 test = ["pytest (>=5.0.1)", "pytest-xdist", "hypothesis (>=3.58)"]
 
+[[package]]
+name = "pandera"
+version = "0.8.1"
+description = "A light-weight and flexible data validation and testing tool for dataframes."
+category = "main"
+optional = false
+python-versions = ">=3.7"
+
+[package.dependencies]
+numpy = ">=1.9.0"
+packaging = ">=20.0"
+pandas = ">=1.0"
+pyarrow = "*"
+typing-inspect = ">=0.6.0"
+wrapt = "*"
+
+[package.extras]
+all = ["koalas", "dask", "pyspark", "frictionless", "pandas-stubs", "ray (<=1.7.0)", "pyyaml (>=5.1)", "modin", "black", "scipy", "hypothesis (>=5.41.1)"]
+dask = ["dask"]
+hypotheses = ["scipy"]
+io = ["pyyaml (>=5.1)", "black", "frictionless"]
+koalas = ["koalas", "pyspark"]
+modin = ["modin", "ray (<=1.7.0)", "dask"]
+modin-dask = ["modin", "dask"]
+modin-ray = ["modin", "ray (<=1.7.0)"]
+mypy = ["pandas-stubs"]
+strategies = ["hypothesis (>=5.41.1)"]
+
 [[package]]
 name = "parso"
 version = "0.8.2"
@@ -910,6 +954,17 @@ category = "dev"
 optional = false
 python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
 
+[[package]]
+name = "pyarrow"
+version = "6.0.1"
+description = "Python library for Apache Arrow"
+category = "main"
+optional = false
+python-versions = ">=3.6"
+
+[package.dependencies]
+numpy = ">=1.16.6"
+
 [[package]]
 name = "pydantic"
 version = "1.8.2"
@@ -969,7 +1024,7 @@ test = ["pytest", "mypy", "pycodestyle"]
 name = "pyparsing"
 version = "3.0.6"
 description = "Python parsing module"
-category = "dev"
+category = "main"
 optional = false
 python-versions = ">=3.6"
 
@@ -1094,7 +1149,7 @@ python-versions = "*"
 name = "pywin32"
 version = "227"
 description = "Python for Window Extensions"
-category = "dev"
+category = "main"
 optional = false
 python-versions = "*"
 
@@ -1353,7 +1408,7 @@ python-versions = "*"
 name = "websocket-client"
 version = "1.2.1"
 description = "WebSocket client for Python with low level API options"
-category = "dev"
+category = "main"
 optional = false
 python-versions = ">=3.6"
 
@@ -1384,7 +1439,7 @@ python-versions = "*"
 name = "wrapt"
 version = "1.13.3"
 description = "Module for decorators, wrappers and monkey patching."
-category = "dev"
+category = "main"
 optional = false
 python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
 
@@ -1402,7 +1457,7 @@ h11 = ">=0.9.0,<1"
 [metadata]
 lock-version = "1.1"
 python-versions = "~3.8"
-content-hash = "9250bf84b48b05cfb030ccd23a417a09ef9b28298e366a702cbcb0a54d2ab15c"
+content-hash = "187694f0e15bd5170a5f521d1e1f08d5a7b5eda2fcb12b0466b7df273c8233d7"
 
 [metadata.files]
 aiofiles = [
@@ -1694,28 +1749,12 @@ lazy-object-proxy = [
     {file = "lazy_object_proxy-1.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:f5144c75445ae3ca2057faac03fda5a902eff196702b0a24daf1d6ce0650514b"},
 ]
 markupsafe = [
-    {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:36bc903cbb393720fad60fc28c10de6acf10dc6cc883f3e24ee4012371399a38"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d7d807855b419fc2ed3e631034685db6079889a1f01d5d9dac950f764da3dad"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:add36cb2dbb8b736611303cd3bfcee00afd96471b09cda130da3581cbdc56a6d"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:168cd0a3642de83558a5153c8bd34f175a9a6e7f6dc6384b9655d2697312a646"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4dc8f9fb58f7364b63fd9f85013b780ef83c11857ae79f2feda41e270468dd9b"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20dca64a3ef2d6e4d5d615a3fd418ad3bde77a47ec8a23d984a12b5b4c74491a"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cdfba22ea2f0029c9261a4bd07e830a8da012291fbe44dc794e488b6c9bb353a"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-win32.whl", hash = "sha256:99df47edb6bda1249d3e80fdabb1dab8c08ef3975f69aed437cb69d0a5de1e28"},
-    {file = "MarkupSafe-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:e0f138900af21926a02425cf736db95be9f4af72ba1bb21453432a07f6082134"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f9081981fe268bd86831e5c75f7de206ef275defcb82bc70740ae6dc507aee51"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:0955295dd5eec6cb6cc2fe1698f4c6d84af2e92de33fbcac4111913cd100a6ff"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:0446679737af14f45767963a1a9ef7620189912317d095f2d9ffa183a4d25d2b"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:f826e31d18b516f653fe296d967d700fddad5901ae07c622bb3705955e1faa94"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:fa130dd50c57d53368c9d59395cb5526eda596d3ffe36666cd81a44d56e48872"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:905fec760bd2fa1388bb5b489ee8ee5f7291d692638ea5f67982d968366bef9f"},
-    {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c"},
-    {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0d4b31cc67ab36e3392bbf3862cfbadac3db12bdd8b02a2731f509ed5b829724"},
-    {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145"},
-    {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:deb993cacb280823246a026e3b2d81c493c53de6acfd5e6bfe31ab3402bb37dd"},
-    {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:63f3268ba69ace99cab4e3e3b5840b03340efed0948ab8f78d2fd87ee5442a4f"},
-    {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8d206346619592c6200148b01a2142798c989edcb9c896f9ac9722a99d4e77e6"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-win32.whl", hash = "sha256:6c4ca60fa24e85fe25b912b01e62cb969d69a23a5d5867682dd3e80b5b02581d"},
     {file = "MarkupSafe-2.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b2f4bf27480f5e5e8ce285a8c8fd176c0b03e93dcc6646477d4630e83440c6a9"},
     {file = "MarkupSafe-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0717a7390a68be14b8c793ba258e075c6f4ca819f15edfc2a3a027c823718567"},
@@ -1724,27 +1763,14 @@ markupsafe = [
     {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:d7f9850398e85aba693bb640262d3611788b1f29a79f0c93c565694658f4071f"},
     {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:6a7fae0dd14cf60ad5ff42baa2e95727c3d81ded453457771d02b7d2b3f9c0c2"},
     {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:b7f2d075102dc8c794cbde1947378051c4e5180d52d276987b8d28a3bd58c17d"},
-    {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9936f0b261d4df76ad22f8fee3ae83b60d7c3e871292cd42f40b81b70afae85"},
-    {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2a7d351cbd8cfeb19ca00de495e224dea7e7d919659c2841bbb7f420ad03e2d6"},
-    {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:60bf42e36abfaf9aff1f50f52644b336d4f0a3fd6d8a60ca0d054ac9f713a864"},
-    {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d6c7ebd4e944c85e2c3421e612a7057a2f48d478d79e61800d81468a8d842207"},
-    {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f0567c4dc99f264f49fe27da5f735f414c4e7e7dd850cfd8e69f0862d7c74ea9"},
-    {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:89c687013cb1cd489a0f0ac24febe8c7a666e6e221b783e53ac50ebf68e45d86"},
     {file = "MarkupSafe-2.0.1-cp37-cp37m-win32.whl", hash = "sha256:a30e67a65b53ea0a5e62fe23682cfe22712e01f453b95233b25502f7c61cb415"},
     {file = "MarkupSafe-2.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:611d1ad9a4288cf3e3c16014564df047fe08410e628f89805e475368bd304914"},
-    {file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:be98f628055368795d818ebf93da628541e10b75b41c559fdf36d104c5787066"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1d609f577dc6e1aa17d746f8bd3c31aa4d258f4070d61b2aa5c4166c1539de35"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7d91275b0245b1da4d4cfa07e0faedd5b0812efc15b702576d103293e252af1b"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:01a9b8ea66f1658938f65b93a85ebe8bc016e6769611be228d797c9d998dd298"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:47ab1e7b91c098ab893b828deafa1203de86d0bc6ab587b160f78fe6c4011f75"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:97383d78eb34da7e1fa37dd273c20ad4320929af65d156e35a5e2d89566d9dfb"},
-    {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fcf051089389abe060c9cd7caa212c707e58153afa2c649f00346ce6d260f1b"},
-    {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a"},
-    {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3dd007d54ee88b46be476e293f48c85048603f5f516008bee124ddd891398ed6"},
-    {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aca6377c0cb8a8253e493c6b451565ac77e98c2951c45f913e0b52facdcff83f"},
-    {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:04635854b943835a6ea959e948d19dcd311762c5c0c6e1f0e16ee57022669194"},
-    {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6300b8454aa6930a24b9618fbb54b5a68135092bc666f7b06901f897fa5c2fee"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-win32.whl", hash = "sha256:023cb26ec21ece8dc3907c0e8320058b2e0cb3c55cf9564da612bc325bed5e64"},
     {file = "MarkupSafe-2.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:984d76483eb32f1bcb536dc27e4ad56bba4baa70be32fa87152832cdd9db0833"},
     {file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26"},
@@ -1754,12 +1780,6 @@ markupsafe = [
     {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:4efca8f86c54b22348a5467704e3fec767b2db12fc39c6d963168ab1d3fc9135"},
     {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:ab3ef638ace319fa26553db0624c4699e31a28bb2a835c5faca8f8acf6a5a902"},
     {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:f8ba0e8349a38d3001fae7eadded3f6606f0da5d748ee53cc1dab1d6527b9509"},
-    {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1"},
-    {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac"},
-    {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6"},
-    {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4296f2b1ce8c86a6aea78613c34bb1a672ea0e3de9c6ba08a960efe0b0a09047"},
-    {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f02365d4e99430a12647f09b6cc8bab61a6564363f313126f775eb4f6ef798e"},
-    {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5b6d930f030f8ed98e3e6c98ffa0652bdb82601e7a016ec2ab5d7ff23baa78d1"},
     {file = "MarkupSafe-2.0.1-cp39-cp39-win32.whl", hash = "sha256:10f82115e21dc0dfec9ab5c0223652f7197feb168c940f3ef61563fc2d6beb74"},
     {file = "MarkupSafe-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8"},
     {file = "MarkupSafe-2.0.1.tar.gz", hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"},
@@ -1780,6 +1800,9 @@ mccabe = [
     {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
     {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
 ]
+mipdb = [
+    {file = "mipdb-0.1.0-1-py3-none-any.whl", hash = "sha256:4023ed0f210f1de5f560e7006314c4e3af1187ba14661656938e299dca77bbc7"},
+]
 mypy-extensions = [
     {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
     {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
@@ -1838,6 +1861,10 @@ pandas = [
     {file = "pandas-1.2.5-cp39-cp39-win_amd64.whl", hash = "sha256:78de96c1174bcfdbe8dece9c38c2d7994e407fd8bb62146bb46c61294bcc06ef"},
     {file = "pandas-1.2.5.tar.gz", hash = "sha256:14abb8ea73fce8aebbb1fb44bec809163f1c55241bcc1db91c2c780e97265033"},
 ]
+pandera = [
+    {file = "pandera-0.8.1-py3-none-any.whl", hash = "sha256:9936bd71a8526c8c0cc035036aa9eaca77afae74cf63806819c07dc82936f879"},
+    {file = "pandera-0.8.1.tar.gz", hash = "sha256:d8420d6b9fab85ffefebccc5647c79a46c41d44366aa3ed12637c5a781fb3943"},
+]
 parso = [
     {file = "parso-0.8.2-py2.py3-none-any.whl", hash = "sha256:a8c4922db71e4fdb90e0d0bc6e50f9b273d3397925e5e60a717e719201778d22"},
     {file = "parso-0.8.2.tar.gz", hash = "sha256:12b83492c6239ce32ff5eed6d3639d6a536170723c6f3f1506869f1ace413398"},
@@ -1886,6 +1913,44 @@ py = [
     {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
     {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
 ]
+pyarrow = [
+    {file = "pyarrow-6.0.1-cp310-cp310-macosx_10_13_universal2.whl", hash = "sha256:c80d2436294a07f9cc54852aa1cef034b6f9c97d29235c4bd53bbf52e24f1ebf"},
+    {file = "pyarrow-6.0.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:f150b4f222d0ba397388908725692232345adaa8e58ad543ca00f03c7234ae7b"},
+    {file = "pyarrow-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c3a727642c1283dcb44728f0d0a00f8864b171e31c835f4b8def07e3fa8f5c73"},
+    {file = "pyarrow-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d29605727865177918e806d855fd8404b6242bf1e56ade0a0023cd4fe5f7f841"},
+    {file = "pyarrow-6.0.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b63b54dd0bada05fff76c15b233f9322de0e6947071b7871ec45024e16045aeb"},
+    {file = "pyarrow-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e90e75cb11e61ffeffb374f1db7c4788f1df0cb269596bf86c473155294958d"},
+    {file = "pyarrow-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f4f3db1da51db4cfbafab3066a01b01578884206dced9f505da950d9ed4402d"},
+    {file = "pyarrow-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:2523f87bd36877123fc8c4813f60d298722143ead73e907690a87e8557114693"},
+    {file = "pyarrow-6.0.1-cp36-cp36m-macosx_10_13_x86_64.whl", hash = "sha256:8f7d34efb9d667f9204b40ce91a77613c46691c24cd098e3b6986bd7401b8f06"},
+    {file = "pyarrow-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e3c9184335da8faf08c0df95668ce9d778df3795ce4eec959f44908742900e10"},
+    {file = "pyarrow-6.0.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:02baee816456a6e64486e587caaae2bf9f084fa3a891354ff18c3e945a1cb72f"},
+    {file = "pyarrow-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:604782b1c744b24a55df80125991a7154fbdef60991eb3d02bfaed06d22f055e"},
+    {file = "pyarrow-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fab8132193ae095c43b1e8d6d7f393451ac198de5aaf011c6b576b1442966fec"},
+    {file = "pyarrow-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:31038366484e538608f43920a5e2957b8862a43aa49438814619b527f50ec127"},
+    {file = "pyarrow-6.0.1-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:632bea00c2fbe2da5d29ff1698fec312ed3aabfb548f06100144e1907e22093a"},
+    {file = "pyarrow-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dc03c875e5d68b0d0143f94c438add3ab3c2411ade2748423a9c24608fea571e"},
+    {file = "pyarrow-6.0.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1cd4de317df01679e538004123d6d7bc325d73bad5c6bbc3d5f8aa2280408869"},
+    {file = "pyarrow-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e77b1f7c6c08ec319b7882c1a7c7304731530923532b3243060e6e64c456cf34"},
+    {file = "pyarrow-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a424fd9a3253d0322d53be7bbb20b5b01511706a61efadcf37f416da325e3d48"},
+    {file = "pyarrow-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:c958cf3a4a9eee09e1063c02b89e882d19c61b3a2ce6cbd55191a6f45ed5004b"},
+    {file = "pyarrow-6.0.1-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:0e0ef24b316c544f4bb56f5c376129097df3739e665feca0eb567f716d45c55a"},
+    {file = "pyarrow-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c13ec3b26b3b069d673c5fa3a0c70c38f0d5c94686ac5dbc9d7e7d24040f812"},
+    {file = "pyarrow-6.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:71891049dc58039a9523e1cb0d921be001dacb2b327fa7b62a35b96a3aad9f0d"},
+    {file = "pyarrow-6.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:943141dd8cca6c5722552a0b11a3c2e791cdf85f1768dea8170b0a8a7e824ff9"},
+    {file = "pyarrow-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fd077c06061b8fa8fdf91591a4270e368f63cf73c6ab56924d3b64efa96a873"},
+    {file = "pyarrow-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5308f4bb770b48e07c8cff36cf6a4452862e8ce9492428ad5581d846420b3884"},
+    {file = "pyarrow-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:cde4f711cd9476d4da18128c3a40cb529b6b7d2679aee6e0576212547530fef1"},
+    {file = "pyarrow-6.0.1-cp39-cp39-macosx_10_13_universal2.whl", hash = "sha256:b8628269bd9289cae0ea668f5900451043252fe3666667f614e140084dd31aac"},
+    {file = "pyarrow-6.0.1-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:981ccdf4f2696550733e18da882469893d2f33f55f3cbeb6a90f81741cbf67aa"},
+    {file = "pyarrow-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:954326b426eec6e31ff55209f8840b54d788420e96c4005aaa7beed1fe60b42d"},
+    {file = "pyarrow-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6b6483bf6b61fe9a046235e4ad4d9286b707607878d7dbdc2eb85a6ec4090baf"},
+    {file = "pyarrow-6.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7ecad40a1d4e0104cd87757a403f36850261e7a989cf9e4cb3e30420bbbd1092"},
+    {file = "pyarrow-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:04c752fb41921d0064568a15a87dbb0222cfbe9040d4b2c1b306fe6e0a453530"},
+    {file = "pyarrow-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:725d3fe49dfe392ff14a8ae6a75b230a60e8985f2b621b18cfa912fe02b65f1a"},
+    {file = "pyarrow-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:2403c8af207262ce8e2bc1a9d19313941fd2e424f1cb3c4b749c17efe1fd699a"},
+    {file = "pyarrow-6.0.1.tar.gz", hash = "sha256:423990d56cd8f12283b67367d48e142739b789085185018eb03d05087c3c8d43"},
+]
 pydantic = [
     {file = "pydantic-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:05ddfd37c1720c392f4e0d43c484217b7521558302e7069ce8d318438d297739"},
     {file = "pydantic-1.8.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a7c6002203fe2c5a1b5cbb141bb85060cbff88c2d78eccbc72d97eb7022c43e4"},
diff --git a/pyproject.toml b/pyproject.toml
index 3b8ce6211546a157b2d880876a1103e176522605..f1bfff5a08fbe2d540be06a811d110a8430e8ebc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -22,6 +22,7 @@ scikit-learn = "^0.24.2"
 pydantic = "^1.8.2"
 envtoml = "~0.1.2"
 requests = "^2.26.0"
+mipdb = "^0.1.0"
 
 [tool.poetry.dev-dependencies]
 pytest = "^6.2.3"
@@ -40,6 +41,8 @@ pylint = "^2.8.2"
 rope = "^0.19.0"
 devtools="^0.7.0"
 docker = "^5.0.3"
+mipdb = "^0.1.0"
+
 
 [tool.pytest.ini_options]
 markers = [
diff --git a/tasks.py b/tasks.py
index 5955a344d8096f4f2380f6ee27d919c1ff883fed..995cd8946b8b959e314ce11fa83fa2344aa3a069 100644
--- a/tasks.py
+++ b/tasks.py
@@ -235,7 +235,13 @@ def create_monetdb(c, node, monetdb_image=None):
             f"Starting container {container_name} on ports {container_ports}...",
             Level.HEADER,
         )
-        cmd = f"docker run -d -P -p {container_ports} --name {container_name} {monetdb_image}"
+        cmd = f"""docker run -d -P -p {container_ports} --name {container_name} {monetdb_image}"""
+        run(c, cmd)
+        message(
+            f"Initializing the {container_name}...",
+            Level.HEADER,
+        )
+        cmd = f"""poetry run mipdb init --ip 172.17.0.1 --port {node_config['monetdb']['port']}"""
         run(c, cmd)
 
 
@@ -268,14 +274,7 @@ def load_data(c, port=None):
         template_node_config = toml.load(fp)
     for port in local_node_ports:
         message(f"Loading data on MonetDB at port {port}...", Level.HEADER)
-        cmd = (
-            f"poetry run python -m mipengine.node.monetdb_interface.csv_importer "
-            f"-folder {DEMO_DATA_FOLDER} "
-            f"-user {template_node_config['monetdb']['username']} "
-            f"-pass {template_node_config['monetdb']['password']} "
-            f"-url localhost:{port} "
-            f"-farm db"
-        )
+        cmd = f"poetry run mipdb load-folder {DEMO_DATA_FOLDER}  --ip 172.17.0.1 --port {port} "
         run(c, cmd)
 
 
diff --git a/tests/demo_data/dementia/CDEsMetadata.json b/tests/demo_data/dementia_v_0_1/CDEsMetadata.json
similarity index 99%
rename from tests/demo_data/dementia/CDEsMetadata.json
rename to tests/demo_data/dementia_v_0_1/CDEsMetadata.json
index 0b053baf1a0dc189ce5285e9a438b1f4fb81e2ca..a20084f03cbc1a70033114217f896f340a2daafd 100644
--- a/tests/demo_data/dementia/CDEsMetadata.json
+++ b/tests/demo_data/dementia_v_0_1/CDEsMetadata.json
@@ -17,10 +17,6 @@
         {
           "code": "desd-synthdata",
           "label": "DESD-synthdata"
-        },
-        {
-          "code": "fake_longitudinal",
-          "label": "Longitudinal"
         }
       ],
       "label": "Dataset",
diff --git a/tests/demo_data/dementia/desd-synthdata.csv b/tests/demo_data/dementia_v_0_1/desd-synthdata.csv
similarity index 97%
rename from tests/demo_data/dementia/desd-synthdata.csv
rename to tests/demo_data/dementia_v_0_1/desd-synthdata.csv
index d8055cad9ffcd86664b3a8660a05d14dafc8ad7b..6aa6d221127d0d46cdeaa525fd8e288479a627c5 100755
--- a/tests/demo_data/dementia/desd-synthdata.csv
+++ b/tests/demo_data/dementia_v_0_1/desd-synthdata.csv
@@ -1,1001 +1,1001 @@
-subjectcode,subjectage,subjectageyears,gender,_3rdventricle,_4thventricle,rightaccumbensarea,leftaccumbensarea,rightamygdala,leftamygdala,brainstem,rightcaudate,leftcaudate,rightcerebellumexterior,leftcerebellumexterior,rightcerebellumwhitematter,leftcerebellumwhitematter,rightcerebralwhitematter,leftcerebralwhitematter,csfglobal,righthippocampus,lefthippocampus,rightinflatvent,leftinflatvent,rightlateralventricle,leftlateralventricle,rightpallidum,leftpallidum,rightputamen,leftputamen,rightthalamusproper,leftthalamusproper,rightventraldc,leftventraldc,opticchiasm,cerebellarvermallobulesiv,cerebellarvermallobulesvivii,cerebellarvermallobulesviiix,leftbasalforebrain,rightbasalforebrain,rightacgganteriorcingulategyrus,leftacgganteriorcingulategyrus,rightainsanteriorinsula,leftainsanteriorinsula,rightaorganteriororbitalgyrus,leftaorganteriororbitalgyrus,rightangangulargyrus,leftangangulargyrus,rightcalccalcarinecortex,leftcalccalcarinecortex,rightcocentraloperculum,leftcocentraloperculum,rightcuncuneus,leftcuncuneus,rightententorhinalarea,leftententorhinalarea,rightfofrontaloperculum,leftfofrontaloperculum,rightfrpfrontalpole,leftfrpfrontalpole,rightfugfusiformgyrus,leftfugfusiformgyrus,rightgregyrusrectus,leftgregyrusrectus,rightioginferioroccipitalgyrus,leftioginferioroccipitalgyrus,rightitginferiortemporalgyrus,leftitginferiortemporalgyrus,rightliglingualgyrus,leftliglingualgyrus,rightlorglateralorbitalgyrus,leftlorglateralorbitalgyrus,rightmcggmiddlecingulategyrus,leftmcggmiddlecingulategyrus,rightmfcmedialfrontalcortex,leftmfcmedialfrontalcortex,rightmfgmiddlefrontalgyrus,leftmfgmiddlefrontalgyrus,rightmogmiddleoccipitalgyrus,leftmogmiddleoccipitalgyrus,rightmorgmedialorbitalgyrus,leftmorgmedialorbitalgyrus,rightmpogpostcentralgyrusmedialsegment,leftmpogpostcentralgyrusmedialsegment,rightmprgprecentralgyrusmedialsegment,leftmprgprecentralgyrusmedialsegment,rightmsfgsuperiorfrontalgyrusmedialsegment,leftmsfgsuperiorfrontalgyrusmedialsegment,rightmtgmiddletemporalgyrus,leftmtgmiddletemporalgyrus,rightocpoccipitalpole,leftocpoccipitalpole,rightofugoccipitalfusiformgyrus,leftofugoccipitalfusiformgyrus,rightopifgopercularpartoftheinferiorfrontalgyrus,leftopifgopercularpartoftheinferiorfrontalgyrus,rightorifgorbitalpartoftheinferiorfrontalgyrus,leftorifgorbitalpartoftheinferiorfrontalgyrus,rightpcggposteriorcingulategyrus,leftpcggposteriorcingulategyrus,rightpcuprecuneus,leftpcuprecuneus,rightphgparahippocampalgyrus,leftphgparahippocampalgyrus,rightpinsposteriorinsula,leftpinsposteriorinsula,rightpoparietaloperculum,leftpoparietaloperculum,rightpogpostcentralgyrus,leftpogpostcentralgyrus,rightporgposteriororbitalgyrus,leftporgposteriororbitalgyrus,rightppplanumpolare,leftppplanumpolare,rightprgprecentralgyrus,leftprgprecentralgyrus,rightptplanumtemporale,leftptplanumtemporale,rightscasubcallosalarea,leftscasubcallosalarea,rightsfgsuperiorfrontalgyrus,leftsfgsuperiorfrontalgyrus,rightsmcsupplementarymotorcortex,leftsmcsupplementarymotorcortex,rightsmgsupramarginalgyrus,leftsmgsupramarginalgyrus,rightsogsuperioroccipitalgyrus,leftsogsuperioroccipitalgyrus,rightsplsuperiorparietallobule,leftsplsuperiorparietallobule,rightstgsuperiortemporalgyrus,leftstgsuperiortemporalgyrus,righttmptemporalpole,lefttmptemporalpole,righttrifgtriangularpartoftheinferiorfrontalgyrus,lefttrifgtriangularpartoftheinferiorfrontalgyrus,rightttgtransversetemporalgyrus,leftttgtransversetemporalgyrus,montrealcognitiveassessment,minimentalstate,agegroup,handedness,updrstotal,updrshy,adnicategory,edsdcategory,ppmicategory,alzheimerbroadcategory,parkinsonbroadcategory,neurodegenerativescategories,dataset,apoe4,rs3818361_t,rs744373_c,rs190982_g,rs1476679_c,rs11767557_c,rs11136000_t,rs610932_a,rs3851179_a,rs17125944_c,rs10498633_t,rs3764650_g,rs3865444_t,rs2718058_g,fdg,pib,av45,tiv
-desd1,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd2,63,63,M,1.7427,1.8381,0.41218,0.46676,0.89412,0.95116,17.0807,2.8799,2.8569,48.291,49.1019,14.5272,14.8643,251.9128,247.3031,1.4817,3.7933,3.4613,0.76747,0.83932,16.1951,17.7235,1.7801,1.7879,3.9642,4.1041,7.7925,8.3188,4.5171,4.7141,0.08029,4.7538,2.2414,2.782,0.46722,0.50087,4.1324,5.2181,4.0304,4.406,1.9376,1.9169,11.7556,11.3323,4.1066,3.6542,4.2634,4.7084,5.1616,4.3323,1.913,1.7971,2.1776,2.0677,4.7077,4.0108,7.5102,7.7366,2.37,2.2114,6.7231,7.8621,12.2189,11.5383,8.059,7.0396,2.4049,2.7365,4.5917,4.7032,2.029,2.1228,23.4151,25.1051,6.0089,6.4813,4.1489,4.5134,1.5388,1.23,4.0337,3.0378,9.1099,8.1976,15.6628,15.1973,3.3699,3.9336,4.4303,4.4299,3.9737,3.8385,1.6844,1.8071,4.49,4.6564,11.4914,11.1584,3.2419,3.6186,2.1743,2.2242,2.3698,2.3546,12.4968,13.1955,2.5524,2.7361,1.8932,2.1393,15.4733,15.3695,1.8934,2.0921,1.3308,1.379,16.0237,16.2906,6.5781,6.08,10.7075,10.4647,4.9162,4.2936,12.5559,11.8495,8.0468,7.8247,8.5756,7.7869,3.6455,4.0873,1.4827,1.7277,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd3,67,67,M,2.0299,2.3463,0.37023,0.38063,0.86274,0.89655,17.6402,2.7109,2.6265,49.1382,50.411,14.4502,14.685,206.845,208.07,2.0632,3.5737,3.3827,1.0738,1.3385,24.7413,35.4198,1.5987,1.5034,3.3313,3.4098,6.6723,6.8129,4.741,4.9601,0.08488,5.4789,2.4147,2.5363,0.37894,0.40256,4.0314,4.6224,3.7816,4.0384,1.739,1.5897,10.0903,9.0663,3.617,3.3389,4.0601,4.1485,5.0459,4.9183,1.8231,1.6055,1.8714,2.0053,3.6944,3.3934,8.1594,8.202,2.3466,2.3139,7.4588,7.4757,13.5794,13.2008,9.3268,8.4713,2.2504,2.4185,4.3461,4.6652,1.9437,1.9734,20.694,20.8177,5.5567,6.1711,4.1427,4.3458,0.9974,1.1342,2.3328,2.6677,7.4036,6.5824,17.1263,15.9462,3.3382,3.6229,4.965,4.698,3.5792,3.7512,1.397,1.6515,4.2545,4.1885,10.5938,10.4257,3.1722,3.3091,2.0511,2.3505,1.8857,2.3823,10.2604,11.0923,2.5053,2.7641,2.0512,2.3017,11.6594,11.3597,1.5262,1.7909,1.2078,1.2087,14.4163,15.864,5.101,4.9962,7.8322,8.4148,4.6325,3.8,10.6186,10.483,7.3705,7.5284,8.3799,8.4207,3.3918,3.876,1.2864,1.4683,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd4,,,M,1.5226,3.2169,0.41779,0.46245,0.86853,0.89788,21.9754,3.4614,3.4491,50.1582,50.524,20.511,19.9391,270.7593,262.7257,1.7918,3.4143,3.1983,0.58529,0.50891,17.2587,19.3711,1.9156,1.8368,4.3524,4.2688,7.4658,7.6321,5.1695,5.4939,0.05304,4.8395,2.4117,2.6853,0.41983,0.44719,4.4445,5.2956,5.1362,4.6196,1.7905,1.6399,12.1998,11.0556,3.4724,3.6169,4.4059,4.6239,5.1796,4.6995,1.8057,1.7295,2.3493,2.3582,4.1304,3.9049,8.1661,8.4139,2.2933,2.2119,7.267,6.877,13.1288,12.533,9.7277,8.1808,2.4607,2.5951,5.134,5.1775,2.0811,2.1285,21.3816,20.2197,6.3417,6.5278,4.1427,4.4401,1.4862,1.2882,2.9385,2.9189,9.1132,7.8726,16.6756,15.7612,2.789,3.2581,4.8151,5.0193,4.157,3.2288,1.8631,1.774,5.0546,5.319,12.5322,12.0702,3.218,3.6186,2.4234,2.3462,2.6699,3.1235,11.4327,13.2572,2.502,2.8007,2.2951,2.3045,12.6305,12.5137,2.2121,2.7258,1.359,1.5153,16.095,15.2893,5.5008,6.0767,9.4078,10.0726,5.0079,3.6212,12.6887,12.2536,9.0593,8.2163,7.7771,7.5491,4.1771,4.2673,1.839,1.6804,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd5,71,71,M,1.9663,2.5945,0.31503,0.30522,0.68437,0.70803,18.025,2.5083,2.1486,49.2345,47.6329,15.0955,15.3101,195.6455,190.9265,2.3436,2.9331,2.6429,1.591,1.7079,42.9125,32.0855,1.5564,1.58,3.2943,3.1297,5.7264,6.0853,4.4807,4.7448,0.06139,5.0099,2.407,2.7923,0.33161,0.33103,4.3118,4.3576,4.1956,3.9908,1.5988,1.4082,10.0514,9.8171,3.6043,3.7731,4.2506,3.9212,5.3581,5.2487,1.2354,1.3508,1.9209,2.0053,3.4846,3.0266,6.1182,6.4238,1.8311,1.8763,6.6274,5.7301,9.7939,10.4842,8.124,7.8848,1.8405,2.1418,4.827,4.5362,1.6467,1.751,17.3505,17.1683,5.2675,5.1925,3.4559,3.5098,1.0974,0.9852,2.6924,2.3513,7.0561,6.6809,11.8751,11.9078,2.9533,3.2256,4.3718,4.2296,3.4978,3.138,1.3601,1.5716,3.831,3.884,9.5098,9.1429,2.4062,2.8489,2.4793,2.3813,2.0647,2.2927,9.6216,10.9738,1.9902,2.3644,2.0106,2.1983,11.4383,11.9401,2.052,1.8732,1.0551,1.0794,13.3024,14.0778,4.9585,5.2777,7.9453,8.9686,3.8339,3.4434,10.9249,10.9214,7.8856,7.2786,6.9801,7.3507,3.365,3.6655,1.3856,1.3732,,21,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd6,69,69,F,1.5307,2.3068,0.37607,0.40036,0.80229,0.79138,16.4464,2.8581,2.8398,42.4316,42.7181,12.9262,13.0713,197.4064,194.5308,1.6499,3.0757,2.8996,0.57647,0.62636,14.9264,20.9043,1.4414,1.4625,3.5052,3.5172,6.1317,6.2847,4.1648,4.2973,0.07275,4.024,2.0418,2.3787,0.38924,0.38263,3.494,4.2679,4.0509,4.0309,1.7528,1.616,9.3369,8.9824,2.5892,2.5467,3.9783,3.767,3.9812,3.7362,1.5534,1.4384,2.1879,2.1023,3.6085,3.3786,6.8553,7.0287,1.9583,2.1135,5.7902,6.0413,11.1523,10.5925,7.228,6.5722,2.2146,2.3243,4.196,3.9784,1.6304,1.6445,17.9707,17.575,4.6056,5.8687,3.7301,3.9945,0.83247,0.94137,2.678,2.4072,7.2337,6.4805,14.0717,13.3602,2.3287,2.8772,3.7539,3.809,4.2019,3.4705,1.6075,1.4114,3.4634,3.7409,9.2515,9.1856,2.8393,2.9583,2.4381,2.2396,2.4625,2.3096,9.6216,11.5521,2.4806,2.4704,2.0955,2.1582,11.9596,13.0261,1.8008,1.9957,1.1843,1.2064,14.2656,15.3711,5.3756,5.3664,7.4589,8.907,3.69,2.8281,8.8287,9.8046,6.5968,6.5463,7.4341,7.9148,3.8196,3.6143,1.6071,1.7511,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd7,66,66,M,1.1798,2.9028,0.44948,0.48466,0.89923,0.93238,18.633,3.6181,3.1242,54.7687,54.2968,15.2336,15.5561,233.7051,234.3481,1.5549,3.4753,3.4736,0.57306,0.505,11.9006,13.0408,1.7282,1.7807,4.106,4.2102,6.9894,7.1641,5.0171,5.3218,0.08206,4.7116,2.2871,2.8039,0.3795,0.38335,4.2319,4.8177,4.8483,4.6196,1.6872,1.552,9.4278,9.2074,3.1833,2.9703,4.2689,4.6371,4.6917,4.7116,1.7,1.6788,1.8752,2.0075,3.635,2.956,8.3507,7.9662,2.1532,2.0545,7.1179,6.4182,13.026,12.2691,8.0041,7.2098,1.9363,2.2267,4.693,5.5136,1.7941,1.7827,19.4878,20.3142,5.206,6.6615,4.2,4.1335,1.0789,1.2771,2.5902,2.8102,8.2489,6.5107,14.6469,15.5411,3.2252,3.7023,4.2992,4.1536,3.238,3.5007,1.493,1.433,4.0397,4.4808,10.4458,10.0906,2.9501,3.3362,2.588,2.5239,2.5608,2.7929,12.1224,12.1016,2.1918,2.4598,2.2835,2.3384,12.5464,13.2651,1.7559,2.5071,1.1871,1.2696,13.8458,13.1667,5.4232,5.7578,7.7824,9.726,3.9609,3.5157,10.3976,10.0838,7.3692,7.2786,8.7056,8.3901,3.5721,3.8205,1.6957,1.9245,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd8,75,75,F,2.0548,1.7534,0.36445,0.39969,0.68032,0.68886,18.4171,3.5473,2.9424,44.5434,44.0719,14.0881,14.573,215.1196,210.2855,1.576,2.8602,2.8842,1.0439,0.9797,16.2377,25.9844,1.5573,1.6024,3.588,3.6017,6.1977,6.4279,4.6796,4.9817,0.08816,4.467,2.0232,2.2749,0.36116,0.37288,3.591,4.1264,4.0554,4.1057,1.4226,1.3156,9.7382,10.7998,2.6701,2.7326,4.0083,3.6886,4.5201,4.2088,1.2883,1.2057,1.891,1.9733,3.2384,3.0987,6.8047,6.2417,1.6958,1.7617,6.2295,5.8054,11.0579,10.8045,6.9075,6.367,1.9783,2.2289,4.3009,4.245,1.5406,1.5493,14.7771,16.5744,4.9182,6.6411,3.5051,3.4254,0.85424,1.0087,1.9606,2.3554,7.1452,6.583,14.0717,12.909,2.4574,3.1687,3.6301,4.0524,3.4978,3.1473,1.4383,1.4993,3.797,4.2644,10.5466,10.1122,2.6071,2.8,2.3395,2.379,2.3381,2.7322,11.1595,11.9307,2.133,2.4597,2.0867,2.1754,10.6755,10.5874,1.9312,2.1403,1.0567,1.1685,12.6629,11.6951,4.4488,4.6578,8.3242,9.2554,4.0754,3.4355,10.9059,9.5743,7.5951,7.1782,6.266,7.0149,3.305,3.7394,1.5177,1.5321,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd9,73,73,F,1.5766,1.7982,0.32204,0.37309,0.79481,0.88831,16.9803,2.408,2.224,40.966,45.4621,15.3503,16.2466,202.8273,197.9945,1.509,3.1148,2.9821,1.0092,1.1402,14.918,18.3588,1.4597,1.4444,2.8452,2.6895,6.3008,6.643,4.2859,4.5385,0.0659,4.484,2.0725,2.4018,0.32784,0.37409,3.7968,4.4399,3.3092,3.9608,1.7559,1.3901,8.4829,6.946,3.0625,3.3412,3.6777,3.9282,4.2102,4.1242,1.5594,1.6223,1.6705,1.8498,3.5073,3.1244,6.8863,6.7072,1.8319,1.8858,5.8617,5.8756,11.0778,10.043,7.662,7.4214,2.0604,2.1013,4.7241,4.8278,1.6467,1.6649,16.5415,17.3049,5.0392,5.121,3.5027,3.8057,0.88375,0.85443,2.1526,2.0058,7.0396,6.358,13.687,13.5095,2.6741,3.0273,4.0595,4.1272,3.0878,2.9939,1.3612,1.313,3.5927,3.8657,9.6531,9.6351,2.8919,3.097,1.9382,1.9991,1.7577,1.7989,9.0679,10.9721,2.0698,2.2895,1.8567,1.8632,11.3304,11.9425,1.5063,1.4938,1.033,1.0159,13.374,13.6062,4.913,4.7508,6.171,7.2704,3.8065,2.9731,9.0949,9.2975,6.8383,6.1527,7.2108,6.8396,3.1547,3.7251,1.3013,1.2385,,12,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd10,,,M,1.7391,2.2178,0.3771,0.3989,0.74336,0.67477,17.4098,2.8217,2.8133,45.9484,45.9534,14.4953,14.685,232.1245,222.6818,1.7547,2.9796,2.5467,0.69365,0.93272,16.9311,18.5819,1.5756,1.5671,3.3206,3.4066,6.1315,6.7017,4.4807,4.6755,0.08606,4.9321,2.3064,2.7552,0.39973,0.39964,4.0747,5.1149,3.996,4.4585,1.8315,1.6258,8.8971,7.9803,2.6921,2.636,3.4206,3.7713,4.2585,3.5991,1.5225,1.3727,1.623,1.7251,3.8484,3.3823,7.4195,6.7801,2.2614,2.4181,5.6115,4.8611,11.629,10.589,7.3228,6.8854,2.1175,2.3184,4.8872,4.8373,1.9521,1.926,19.0582,20.7362,5.0812,5.0145,3.8301,4.3392,1.3812,1.3627,3.2335,2.9585,8.3811,7.2885,13.3822,11.7806,2.4489,2.9441,3.7109,3.5079,2.9123,2.9264,1.3391,1.2236,4.0065,4.4101,10.4945,10.1787,2.6925,2.7921,2.0868,2.1704,1.958,2.1911,8.6214,10.0321,2.1408,2.7755,1.906,2.1656,12.0507,11.0828,1.5209,1.7595,1.2912,1.378,13.344,13.3514,6.5321,6.1866,6.7607,7.9938,3.7333,2.7544,11.2632,10.0564,6.2928,6.4311,6.2905,7.0134,3.463,3.2835,1.2975,1.4578,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd11,,,M,1.7432,1.907,0.37903,0.43673,0.86381,0.87597,18.9345,3.1106,3.1461,47.8528,47.8739,15.8558,16.8291,232.3607,216.712,1.4746,3.5946,3.355,0.57608,0.54447,14.5098,16.2363,1.5439,1.5518,3.909,3.827,7.0836,7.4687,4.6711,4.9331,0.07026,4.7821,2.4087,2.8305,0.36201,0.39096,4.5993,4.8193,3.6746,3.758,1.739,1.503,10.414,9.1054,3.2468,2.9745,3.9038,4.0282,5.1156,4.5287,1.7196,1.6892,1.946,1.9305,4.0838,3.5694,7.2855,7.5082,2.2997,2.4181,7.2674,6.9482,10.7373,11.1452,8.1373,7.2431,2.1655,2.3079,4.2543,4.4298,1.8856,1.9333,17.8984,18.425,5.9004,5.956,4.1427,4.0782,1.2274,1.1088,2.7318,2.7557,8.0737,7.2554,14.2011,13.9693,3.6274,4.1271,4.3085,4.2138,3.2821,3.1416,1.5816,1.4159,4.2346,4.0821,10.4651,10.2192,2.9151,3.154,2.2328,2.3157,2.1136,2.0983,11.4951,12.3052,2.231,2.3627,2.1271,2.3763,12.0913,12.6403,1.9704,1.9207,1.3019,1.3577,14.6592,15.8069,5.1692,5.2826,8.1971,8.9906,4.5519,3.7044,10.0179,10.7694,6.9565,6.3939,8.3723,7.9834,3.9895,3.6266,1.5601,1.6391,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd12,69,69,F,1.5307,1.9337,0.36717,0.36453,0.73506,0.76414,14.8189,2.7088,2.2654,41.0787,41.5099,12.0467,12.1929,208.768,205.4184,1.2191,3.0156,2.8124,0.43641,0.39153,7.9119,11.6928,1.2675,1.2722,3.4311,3.6406,6.1316,6.3217,3.8095,3.9123,0.07538,4.0092,1.9707,2.5672,0.38336,0.38368,4.16,4.766,3.8127,3.9851,1.8107,1.5216,8.8971,7.6242,3.1339,3.0936,3.8671,3.6261,4.2951,4.1254,1.5116,1.4683,1.8272,1.8144,3.6087,3.4439,7.1605,7.2682,2.1543,2.3049,6.1452,6.1849,11.0786,10.9211,8.111,7.1042,2.3611,2.5257,4.8651,5.122,1.9846,1.9582,18.7979,17.9772,4.6608,5.7645,3.9285,4.1118,0.98736,1.2398,2.2975,2.7371,8.6556,7.3094,13.7059,12.3497,3.4065,3.431,3.9583,4.0664,2.9884,3.2242,1.6136,1.4956,3.6731,3.976,10.113,10.7938,2.7887,2.8443,2.3396,2.3371,2.4287,2.4724,8.7332,10.7917,2.3974,2.4704,2.0151,2.3492,11.7135,12.5679,1.85,1.8216,1.2132,1.2275,13.8315,14.0778,5.1314,5.6746,7.0267,7.8364,4.3188,2.8313,9.3013,9.8547,7.0665,7.1664,7.404,7.2767,3.4988,3.7456,1.5205,1.811,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd13,,,M,2.0714,2.3398,0.33165,0.3327,0.73419,0.74291,15.1615,2.5676,2.7446,44.0019,43.9793,12.0541,12.1993,216.8783,207.5702,1.5639,2.9519,2.6804,0.5229,0.4371,11.4556,15.2159,1.4013,1.4276,2.9851,2.9205,6.1396,6.4532,4.1089,4.2449,0.07988,4.4217,2.1421,2.0325,0.3253,0.33722,3.5102,3.6764,3.5631,3.8348,1.5852,1.448,8.3796,8.4283,3.0314,2.8439,3.156,3.7772,4.3431,3.5666,1.4359,1.4315,1.7098,1.8599,3.2388,2.8371,6.8553,6.7179,1.8387,1.7793,5.7367,6.2988,10.8862,10.1434,6.7317,6.6889,1.9201,2.0354,4.075,4.3193,1.4837,1.5133,15.7914,15.8574,4.6161,5.2485,3.3936,3.4982,0.89908,1.0072,2.1395,2.2592,6.5287,5.6651,13.7493,12.1722,2.7174,2.97,3.5957,3.992,2.8152,2.9105,1.2938,1.2667,3.4599,3.7649,9.9978,9.1992,2.5765,2.7641,2.0859,1.9738,1.7387,1.8289,8.8901,11.7269,2.1689,2.1021,1.7945,1.8391,11.2482,12.057,1.4708,1.7841,0.93125,1.0552,10.1465,12.363,4.7844,4.1201,6.8164,8.2916,3.8803,3.0401,9.8015,10.221,6.5747,6.1163,6.9153,6.2556,2.7704,2.934,1.1692,1.284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd14,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd15,75,75,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd16,,,M,1.906,2.1809,0.3203,0.35398,0.77114,0.69324,18.827,3.0232,3.0729,46.765,46.4122,15.4287,16.4669,213.239,208.5733,1.7547,3.2064,2.6057,0.97819,0.79331,21.2482,23.1821,1.6167,1.5667,3.2204,3.368,6.4276,6.5824,4.6522,4.9407,0.09039,5.1289,2.2255,2.5866,0.35492,0.34401,4.588,4.7708,4.1091,4.5723,1.5504,1.3397,9.8747,8.1307,3.1261,2.8373,3.9223,4.156,4.4217,3.7909,1.5323,1.2884,2.0772,1.9711,3.5967,2.956,7.2513,6.5086,1.9445,1.9945,5.896,6.1578,10.9034,9.9763,7.6111,7.2196,2.2026,2.2381,4.4849,4.9814,1.5897,1.6169,20.0742,20.032,4.631,5.0735,3.579,3.4737,0.86988,1.0935,2.2389,2.3103,7.4436,6.5107,13.6863,13.0122,2.9064,3.2409,4.1069,4.1683,3.551,3.0803,1.6097,1.3049,4.023,4.4781,10.4514,10.2797,2.7925,2.8399,2.3053,2.5954,2.2033,2.4724,8.6783,9.4535,2.3009,2.1443,2.1182,2.4406,10.7852,10.1415,1.6544,2.0798,1.1289,1.1825,13.3726,13.1233,4.9246,5.384,7.1078,8.661,3.7684,3.1314,9.5535,9.8225,6.8894,7.0721,7.2623,6.6037,3.384,3.7102,1.385,1.4376,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd17,73,73,M,1.7782,1.6608,0.33228,0.38838,0.77985,0.74284,16.6371,2.6987,2.824,42.862,43.6108,14.7578,15.2294,212.1288,208.3012,1.9452,3.101,2.9098,0.9369,0.72958,16.5071,19.3908,1.4087,1.3795,3.4854,3.5903,5.8336,5.9647,4.1085,4.3744,0.08137,4.3723,1.9541,2.3787,0.36577,0.33822,3.796,3.972,3.6161,3.9836,1.4111,1.3787,9.5932,8.6007,2.8047,2.5654,3.3349,3.7099,4.3885,3.651,1.557,1.4559,1.8181,1.6895,3.2384,3.1364,6.7427,6.5512,1.6585,1.7386,6.3686,6.0013,10.5636,10.1241,7.017,6.5722,1.8268,1.9589,4.3293,4.2832,1.4496,1.5183,16.1397,17.148,4.6822,5.3467,3.1269,3.3918,0.89696,1.0396,2.4117,2.2973,6.5478,5.9402,12.9694,12.4628,2.5476,2.9691,3.8619,3.7471,3.0337,3.3054,1.1486,1.3043,3.77,4.3165,10.4549,10.2765,2.8215,3.139,2.0896,2.1748,1.6872,2.03,9.2992,10.3112,1.8465,2.0887,1.8621,2.1058,11.8479,11.3597,1.3702,1.8612,1.0767,1.1387,12.7223,13.045,4.5457,4.6411,6.7607,8.428,3.5325,3.035,9.887,10.2162,5.8607,6.0422,6.3472,6.2909,3.1447,3.0542,1.2903,1.4235,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd18,79,79,F,1.4436,0.86416,0.30261,0.32521,0.78395,0.74054,17.2983,2.5066,2.4484,28.1916,30.9771,16.5675,16.4259,249.6425,228.3948,1.0956,3.183,2.8485,0.51198,0.55086,10.7726,12.0729,1.6691,1.6868,2.9703,3.0403,6.4687,7.2052,4.5376,4.783,0.07985,4.1429,2.1036,2.4878,0.34941,0.3225,4.2214,4.5454,3.4647,3.5566,1.5645,1.497,9.2651,6.9954,2.8328,2.8522,3.8864,3.5342,3.9622,4.3597,1.5043,1.5317,1.8143,2.0122,3.3082,3.0901,6.3894,6.5195,2.0388,2.1391,5.8415,5.5784,10.1838,9.8519,7.1912,6.6139,2.0704,2.3079,4.139,4.4521,1.7361,1.8136,17.1331,17.2443,4.6989,5.2936,3.3256,3.5735,0.97379,1.0639,2.3854,2.5646,7.1579,6.4971,12.6236,11.7817,2.6821,3.1752,3.6132,3.724,2.9884,3.8938,1.572,1.5144,3.5904,3.9871,8.9276,9.303,2.8008,3.0073,2.0391,1.9531,2.2397,2.3091,9.3905,10.9196,2.2308,2.432,1.8056,2.1223,12.0309,10.7097,1.8786,2.0576,1.2947,1.3149,12.0217,13.9965,4.8591,4.7508,7.4631,7.9938,3.7965,3.151,9.3513,9.2653,6.4914,6.1163,6.7739,6.9261,3.3092,3.9865,1.3062,1.4931,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd19,73,73,M,1.7097,1.6037,0.37741,0.43295,0.86543,0.88892,18.1318,2.9505,2.8851,40.9779,42.4788,14.1702,14.6072,211.353,210.2499,1.1571,3.5946,3.3827,0.58387,0.505,11.259,12.3254,1.5159,1.4679,3.8803,3.7431,6.7928,7.1078,4.5574,4.78,0.0808,4.5196,2.0895,2.4153,0.37217,0.37705,3.8507,4.8056,3.9907,4.6331,1.7461,1.6524,10.0996,9.8771,3.793,3.877,4.055,3.8726,5.7872,5.3388,1.6893,1.5593,2.0749,2.3372,3.547,3.4626,8.1498,7.0153,1.9793,2.1136,7.611,7.5129,12.6562,12.9047,9.0223,8.1756,2.1777,2.2929,4.5711,4.9408,1.5995,1.668,19.1158,19.1402,5.9148,6.5834,3.7214,4.132,1.0222,0.98038,2.5152,2.456,8.039,7.0344,15.5968,16.9706,3.881,4.4832,4.6353,4.6343,3.4459,3.1111,1.4561,1.4475,4.0406,4.6815,10.3831,10.6224,3.0398,3.0748,2.0389,2.0921,2.01,1.9606,10.6365,11.8171,2.5713,2.438,2.0082,2.2049,13.2599,12.4153,1.8172,1.6056,1.0766,1.1458,14.3383,14.8115,5.3249,5.3547,8.702,9.7342,5.1031,4.1522,9.975,10.6654,7.4507,8.7394,7.7595,6.7795,3.33,3.9344,1.3957,1.3991,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd20,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd21,56,56,F,1.2087,0.73524,0.00009,0.00296,0.18236,0.4964,9.0519,0,0.00075,24.3004,18.9006,10.3602,10.4069,97.6268,128.6959,1.2754,2.4553,2.2563,1.4247,1.5123,17.4891,20.4219,1.3485,1.3058,0.23437,0.79482,5.5578,5.4562,3.8544,4.1275,0.08356,4.7754,2.3187,1.1706,0.27894,0.29135,0.00006,0.00124,0.9969,1.1702,0.00047,0.41169,7.5287,7.3169,3.0178,2.584,0.30663,0.12649,3.525,3.349,0.98201,0.91267,0.75116,0.00001,0,0,3.8349,5.4726,0.51662,0.56823,4.9538,4.7812,7.2375,8.542,6.6465,6.181,0.03515,0.02822,0.00011,0,0.03295,0.05335,0,0,3.9723,4.8572,1.529,1.6916,0.86393,0.94701,1.988,1.863,0.01018,0.00791,8.7517,10.152,2.3425,2.5727,3.2884,3.2516,1.3448,1.4087,0.00001,0.05771,3.2366,4.0421,8.6133,9.4057,2.1394,2.1743,1.6208,1.6036,0,0.02077,0.00167,0.00809,1.4502,1.2601,1.457,1.7069,0.00012,0.00038,1.5465,1.514,0.81868,0.91649,0.00052,0.00013,0,3.5064,0.20706,1.4319,3.9022,2.0489,7.6841,7.8501,6.3164,6.0329,2.8712,4.5637,0,0,1.2142,1.2157,,23,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd22,68,68,M,1.4677,1.8126,0.35587,0.3887,0.77569,0.77185,15.5862,2.5722,2.3667,44.3657,43.8844,13.0955,13.538,207.292,203.5602,1.2191,3.1302,2.7903,0.58691,0.58428,12.3522,12.4405,1.4317,1.4848,3.5951,3.5565,5.9759,6.7606,4.0316,4.2692,0.07514,4.7614,2.2017,2.5773,0.38664,0.35469,3.4618,4.1942,3.7408,3.6754,1.8041,1.6574,10.0875,9.0189,2.8527,2.7682,3.1711,3.7968,3.9531,3.8832,1.6085,1.5122,1.8194,1.7831,3.6404,3.4007,6.8976,6.7179,1.8166,1.8109,6.4052,5.3269,10.6778,9.5801,7.3752,6.7321,2.4733,2.6616,4.5714,4.4832,1.5505,1.6947,18.3073,18.6762,5.2188,5.5331,3.5876,3.8333,1.149,1.0947,2.4941,2.3793,7.3004,6.6773,13.0443,11.827,2.8103,3.0027,4.0289,3.6946,3.386,3.4143,1.4083,1.798,3.9715,4.1086,9.7306,9.7817,2.8557,3.0435,2.1409,2.1163,1.5787,2.0237,9.7535,11.8537,2.3189,2.4663,1.9582,1.8767,11.793,10.5878,1.5548,1.9722,0.97914,1.0054,14.6636,14.2914,5.0969,5.388,7.8577,8.6249,3.7382,3.2554,9.7912,11.4757,6.3764,6.3079,7.0838,6.7322,3.3918,4.1227,1.385,1.3618,,,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd23,,,M,2.0909,2.3676,0.29701,0.33854,0.79543,0.85586,15.1615,2.5652,2.5642,41.0787,42.4345,12.1718,12.1868,206.2201,203.3802,2.2824,3.1412,3.05,0.71055,0.67237,23.0322,26.4464,1.4088,1.3777,3.3423,3.4101,6.3466,6.6196,4.2099,4.4831,0.07149,4.4087,1.9909,2.296,0.37038,0.32201,3.9387,4.5912,4.174,4.1261,1.4344,1.312,9.9686,8.5698,2.8367,2.8543,4.0779,4.0305,3.6079,4.1558,1.4653,1.5289,2.1704,2.0307,3.4999,3.3346,6.0937,5.759,1.7869,1.8084,5.6166,5.4153,9.9723,9.4124,6.6465,6.1563,1.9783,2.1288,4.4082,4.4005,1.6876,1.6692,15.8517,15.3283,4.3769,5.159,3.5051,3.4254,1.161,1.0315,2.7515,2.6154,7.1579,6.6186,13.2245,12.6595,2.5099,2.7921,3.733,3.6689,3.4737,3.6122,1.4939,1.4791,3.5726,3.9948,9.6417,9.4352,2.6072,2.9977,2.4911,2.5616,2.2478,2.2704,10.5173,12.1449,2.1918,2.5449,2.0772,2.3484,11.1306,11.5145,1.9259,1.9195,1.0825,1.1747,13.6011,12.9521,5.4504,5.3156,8.1537,8.4604,3.9092,3.0755,9.0863,9.7264,6.7479,6.89,6.9707,7.5208,3.372,3.9865,1.5917,1.5275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd24,68,68,F,2.1805,2.6169,0.38699,0.42061,0.93134,0.96084,18.3676,3.4004,3.1726,44.8791,47.2679,13.2285,13.5784,197.4064,192.1346,1.764,3.6778,3.1016,1.2944,1.1697,22.5276,29.8965,1.4477,1.4602,3.4455,3.5266,7.0836,7.3633,4.2391,4.532,0.06774,4.5381,2.142,2.4424,0.37346,0.37323,4.5751,4.6505,4.102,3.958,1.8044,1.5454,9.0756,7.8604,2.9077,2.8104,3.4638,3.5014,3.6404,3.813,1.5867,1.953,1.9307,1.8215,3.7522,3.6374,6.3707,6.5488,2.1897,2.3608,5.7385,5.4965,9.375,8.9153,7.5424,6.62,2.2463,2.4224,4.7904,5.1063,1.8236,1.8448,19.8375,19.0645,5.1017,5.5906,3.7934,4.1708,0.9789,1.2595,2.5015,2.3999,7.4214,6.6393,13.2977,12.4403,2.3021,2.6117,3.9653,3.6946,3.6778,3.6147,1.5778,1.3698,4.426,4.6368,11.4473,11.3572,2.8132,2.9473,2.4793,2.4272,2.0239,2.3937,8.8464,9.7252,2.4155,2.3962,2.123,2.2782,12.3611,12.5431,1.6654,1.8226,1.1916,1.2275,13.344,14.0161,4.8749,5.226,7.3907,7.9887,3.5958,2.794,9.4038,9.5963,6.6434,6.5064,7.6852,7.094,4.2839,3.8205,1.2975,1.7914,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd25,,,F,2.053,2.342,0.36363,0.34978,0.75449,0.64941,16.0109,2.7109,1.9421,46.0148,46.5014,14.7531,15.0423,195.6455,184.7551,1.6027,2.9427,2.5777,1.1926,0.85539,22.3641,23.4172,1.4893,1.4886,3.3206,3.3909,6.0573,6.0733,4.2159,4.3714,0.08239,5.1619,2.3064,3.0603,0.35492,0.36107,3.6504,4.1722,3.6749,4.0342,1.5197,1.3397,9.5718,9.0312,3.1958,3.3412,3.5283,3.7872,4.4513,4.467,1.3899,1.3803,1.6694,1.8175,3.4547,3.5652,7.0434,6.775,1.7704,1.9282,6.3686,5.3417,11.3758,9.7307,7.3151,7.1467,2.0076,2.1056,4.3071,4.3926,1.4899,1.6286,16.2826,16.1953,5.5954,5.1925,3.2182,3.4739,1.0275,1.3061,2.4179,2.379,6.9332,6.4805,13.2145,13.0671,3.0174,3.8253,3.8176,4.0298,2.7727,2.8783,1.4383,1.3618,3.8666,4.2252,10.3976,9.9042,2.7099,2.9231,2.1981,2.2243,1.6872,1.7989,9.2746,11.3341,1.9636,2.1624,1.9664,2.2002,10.6978,11.5328,1.5451,1.4705,1.1501,1.2017,13.5541,13.1303,4.854,5.4187,8.0882,8.0248,4.3206,4.0503,9.9513,11.0529,6.656,6.7096,7.0344,6.2131,3.2715,3.2693,1.3538,1.3,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd26,69,69,F,1.5107,1.6665,0.31226,0.32269,0.68245,0.65911,15.8248,2.5523,2.7342,37.2891,36.5007,12.6773,13.067,206.6841,198.8349,1.3977,2.7652,2.6792,0.4878,0.39808,8.5689,11.6928,1.2771,1.4068,3.1583,3.255,6.1763,6.46,3.8095,4.0073,0.08783,4.6425,1.8249,2.1023,0.30397,0.31632,3.9181,4.2396,3.5752,3.8233,1.7195,1.4819,9.2651,8.0959,3.2835,2.8805,3.8597,3.8098,4.4276,4.0752,1.4101,1.291,1.7762,1.8338,3.2698,3.23,5.9951,5.9684,2.0098,2.0685,6.044,4.56,9.3244,8.5717,7.4372,6.8615,2.1265,2.2156,4.5939,4.6442,1.6016,1.694,18.315,18.6722,4.6208,5.1305,3.7841,4.0888,0.95977,0.94417,2.4632,2.456,6.988,5.8159,12.056,10.0357,3.3381,2.8547,4.0153,3.6688,3.0912,3.5001,1.4724,1.1636,3.5493,3.8951,9.5692,9.8994,2.3836,2.7302,1.9203,2.0851,2.3054,2.2416,9.091,11.7269,2.1371,2.3149,1.8192,2.0525,11.769,11.9425,2.069,1.7456,1.249,1.2771,13.8315,13.0945,4.7624,4.4989,8.0461,8.5647,4.0972,3.325,9.5659,10.0305,6.6185,5.1942,6.5751,5.9166,3.4556,3.535,1.3268,1.3773,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd27,61,61,M,2.3612,1.6033,0.40428,0.43782,0.71715,0.7483,19.121,2.9757,2.9517,45.5865,45.5447,14.6805,15.2393,236.8481,235.5425,1.576,2.9303,2.8842,0.86303,0.80183,16.9221,20.2561,1.6726,1.6677,4.0851,3.9839,7.5919,7.8519,4.7738,5.031,0.08257,4.9634,2.1403,2.5734,0.40259,0.41012,4.0922,5.0062,4.3287,4.8613,2.1787,1.5177,11.0332,9.553,3.7903,3.3336,4.3688,3.7658,5.6182,4.8328,1.5225,1.5617,1.9532,2.1225,4.4622,4.7688,7.3078,7.338,2.6917,2.7388,7.4683,7.9157,11.7478,11.318,7.7976,7.3764,2.4956,2.5384,5.0773,4.9652,2.4392,1.9582,21.3402,22.2924,5.5976,6.998,4.2817,4.5659,0.95657,0.99224,2.4969,2.3337,11.2819,9.2277,15.3673,14.0082,3.1402,3.817,4.0725,4.1161,2.8978,3.4049,1.6974,1.5065,4.0853,4.4808,10.9989,10.9054,2.5383,2.7861,2.7182,2.8041,2.826,2.6709,10.2712,11.2918,2.6482,2.6129,2.3842,2.4695,13.703,13.2247,2.2523,2.0692,1.5271,1.5581,16.5771,16.3306,5.7164,6.1416,8.488,8.6666,3.8339,3.657,10.7756,10.7882,7.9778,7.6945,7.9541,7.5228,4.2226,4.1668,1.9393,1.6449,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd28,,,M,1.535,3.2169,0.38883,0.40365,0.88096,0.89798,18.528,2.7088,2.6821,50.477,50.5032,16.2491,15.9507,255.5603,247.3031,1.3455,3.4752,3.3067,0.67856,0.72065,16.9311,20.0561,1.7338,1.7012,3.3503,3.353,7.2876,7.6489,4.7272,4.926,0.08182,5.0798,2.3782,2.6146,0.35228,0.37781,4.1866,4.6051,3.7443,3.6726,1.6968,1.4243,10.1467,8.5417,3.4747,3.2287,4.011,3.6622,4.9487,4.6911,1.7707,1.6007,1.9177,1.7211,3.8271,3.3982,7.5841,7.111,1.9965,2.0042,6.2715,5.5784,11.9333,10.9849,8.6267,8.122,1.9363,2.4542,4.7897,4.9897,1.8071,1.8088,19.4685,19.7988,4.7661,5.1144,3.8657,3.7771,1.2147,0.97622,2.6694,2.3337,7.3543,7.1516,14.5319,13.3737,2.7967,3.3834,4.1414,4.059,3.6326,3.4407,1.3532,1.5023,4.1098,4.3836,10.3175,9.8585,3.1334,3.3091,2.0263,1.9328,2.3964,2.6854,10.2644,10.8993,1.8912,2.4795,1.8492,2.0808,12.038,12.061,2.1804,2.1044,1.1297,1.2271,15.0529,15.2695,5.0638,5.5021,8.1754,8.5652,4.0782,3.7495,10.6321,10.1939,8.4678,8.4616,7.3755,7.2509,3.1222,3.8991,1.3803,1.3876,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd29,38,38,F,1.0122,1.5949,0.4108,0.44694,0.89568,0.98359,19.6702,2.9757,2.7297,51.3226,49.6062,16.2343,16.1223,240.1943,232.4718,1.22,3.4963,3.5674,0.57188,0.40354,14.3835,13.1091,1.6519,1.7288,4.0851,4.0694,7.8667,8.0449,4.9633,4.9725,0.08168,5.3514,2.4571,2.8277,0.47669,0.47435,5.0084,5.3957,4.3245,4.5901,2.1921,1.8866,11.7556,10.5471,3.2868,3.2794,4.1051,4.6635,5.1925,5.172,1.8057,1.6975,2.0501,1.9869,4.3402,4.7688,8.3586,7.9227,3.6083,2.6585,7.9388,7.3809,13.0247,11.6909,8.7216,8.1993,2.8399,2.7266,5.1192,5.0934,2.3381,2.3385,22.3019,21.8414,5.7287,6.4612,4.5976,4.7475,1.0477,1.3173,2.974,2.6437,9.912,9.2277,16.2557,14.1545,3.3871,3.7497,5.0129,5.1498,3.6886,3.5137,1.8759,2.08,4.7711,5.079,12.7939,11.8877,3.1093,3.4562,2.1884,2.268,2.1405,2.3546,11.4609,13.663,2.6649,2.9372,2.1977,2.4613,13.4291,14.8469,1.9694,2.2641,1.305,1.3258,17.0002,16.3306,6.1193,6.7152,9.1852,10.4661,4.4744,3.9702,11.9661,13.0103,7.9591,9.2875,9.4185,9.1485,4.5346,4.3584,1.5519,1.7362,,8,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd30,75,75,M,1.2993,1.1638,0.4372,0.48436,0.88555,0.90118,17.8769,3.4062,3.217,45.3326,45.5105,14.668,14.8168,243.2493,236.0462,1.5549,3.1602,2.8952,0.6035,0.51854,16.3904,17.7235,1.682,1.6447,3.9988,4.2565,7.202,7.7356,4.4222,4.7647,0.08831,4.0834,2.021,2.4679,0.42742,0.42533,4.3094,5.1149,4.1919,4.5901,1.9919,1.7987,10.4493,10.1742,3.5938,3.3301,4.1476,4.1455,5.4003,5.6975,1.8133,1.8106,1.9715,2.0081,4.3623,3.6769,8.1226,8.2525,2.1746,2.1924,8.3124,7.5284,14.8414,12.7368,8.4069,8.0601,2.3789,2.8515,4.8032,5.2206,2.1684,2.0161,20.0268,20.0068,5.467,6.4883,4.0721,4.4004,1.1214,1.3013,2.8519,2.9639,9.1646,7.7043,16.1292,15.7574,3.7915,4.3637,4.6967,4.5792,3.5548,3.7346,1.6705,1.7745,4.0738,4.9304,10.7119,10.822,3.3943,3.446,2.5382,2.5832,2.3964,2.6919,10.9025,13.0556,2.5869,2.6925,2.126,2.4763,14.0489,15.0168,2.172,2.0692,1.3277,1.3721,16.4028,14.5999,6.2652,5.9672,8.2741,8.91,3.961,3.4659,10.2779,10.7001,8.5913,7.5284,9.2186,9.067,3.4307,4.0344,1.6101,1.6139,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd31,67,67,M,2.201,2.2014,0.39908,0.42969,1.0214,1.0389,21.1231,3.2034,2.941,54.1172,51.7551,16.7208,17.3212,295.4615,277.4785,1.5952,4.14,3.5424,0.63939,0.52111,13.3926,14.9908,2.0607,1.9055,3.7748,3.8851,7.9898,7.709,5.5358,6.8376,0.08788,5.4387,2.2812,2.9397,0.42072,0.42857,5.0084,5.3908,4.3388,4.5521,2.178,1.8709,11.2043,10.1,3.936,3.616,3.8627,4.0202,6.1535,5.2259,2.4117,2.0771,2.0694,2.0081,4.355,4.1863,8.1061,8.2176,2.4397,2.3453,7.4279,7.8621,13.1236,13.5068,8.7852,8.1993,2.5046,2.7017,5.1288,5.2524,2.0737,2.1414,21.7015,20.5668,5.9957,7.2491,4.4372,4.5659,1.156,1.168,2.8466,2.6437,9.1132,7.2201,15.8443,16.525,3.2782,3.9065,4.8411,5.0482,3.7221,2.9794,1.6771,1.652,4.5817,5.2164,13.1268,13.4261,3.4242,3.3693,2.458,2.2643,1.9329,2.3224,10.1234,12.6483,2.7907,3.2494,2.1454,2.5141,14.0228,14.3597,1.6779,1.8922,1.3669,1.4984,14.9338,15.9932,5.3621,5.6207,7.9376,8.7975,4.2807,3.4122,10.9431,11.8244,7.9287,7.4672,8.8052,9.0002,3.9358,4.4532,1.5882,1.5427,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd32,58,58,M,1.5612,2.2414,0.3203,0.33873,0.79242,0.82209,16.3958,2.6616,2.4236,37.5752,37.0487,13.1125,14.047,208.9435,202.3092,1.2465,3.1891,3.0054,0.64657,0.57025,11.6909,13.7011,1.4087,1.4105,3.1843,3.0497,5.6575,5.9124,4.1144,4.2763,0.06204,3.7908,1.7907,2.0749,0.33867,0.36657,3.4872,3.6764,3.0941,3.2021,1.5496,1.3152,8.6147,8.6227,2.8962,2.7961,3.3255,3.4535,3.9622,4.2358,1.4545,1.6001,1.5951,1.4353,3.1138,2.6735,6.6938,6.2661,1.7798,1.7464,5.6021,5.2871,10.2643,10.3083,6.8966,6.3769,1.8169,2.1584,3.8303,4.0876,1.402,1.391,15.608,15.4708,4.1007,5.1595,3.2523,3.4232,0.78443,1.063,1.7925,1.9644,6.4487,5.3896,13.7151,13.1477,3.0861,3.7023,3.7103,3.6077,3.2567,2.9716,1.2868,1.403,3.8624,4.1643,10.6191,9.804,2.7692,2.9109,1.816,1.9422,1.974,1.6677,9.6268,9.5542,1.8322,2.2111,1.8284,2.004,11.2915,11.229,1.6691,1.9203,1.0127,1.0816,12.5938,12.8249,3.9938,4.2591,6.6708,7.6242,3.7963,3.6446,9.887,10.4126,6.3043,6.982,6.8311,6.8558,3.2361,3.2693,1.2987,1.4745,,27,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd33,65,65,F,1.1076,1.4711,0.31981,0.30065,0.74801,0.73343,15.7677,3.1161,2.7264,41.6767,41.5099,12.1718,12.3273,216.8783,210.1924,1.397,3.1622,2.9145,0.57306,0.47243,18.0767,16.4151,1.327,1.4598,3.1985,3.2132,6.1978,6.5134,3.8723,4.078,0.07562,3.9657,2.0712,2.3908,0.32953,0.34954,3.9012,4.1727,3.344,3.8945,1.6128,1.2537,10.0281,8.7428,3.3108,3.4506,3.8351,3.9018,5.1283,5.2214,1.4345,1.3838,1.7233,1.946,3.5829,3.096,6.6202,6.3769,1.804,1.7798,5.9213,5.4972,10.6744,10.182,7.143,6.8839,2.0886,2.1157,4.3325,4.5037,1.6284,1.7359,14.7771,16.1093,5.1447,5.4697,3.4649,3.3438,0.97444,0.96225,2.2389,2.1671,6.9634,5.8557,13.2245,13.2512,2.9346,2.9748,3.6761,3.7021,2.8152,3.3633,1.3953,1.3155,3.4763,4.0438,11.9276,11.4852,2.6563,2.9202,2.0682,2.1748,2.0884,2.3381,9.091,11.3341,2.0783,2.2928,1.7206,2.1411,11.2387,10.7297,1.9052,2.1538,1.1433,1.1368,12.5704,11.7939,4.5608,4.1708,7.0375,7.9466,4.6134,3.6107,10.754,11.1606,7.2331,6.3516,6.8173,6.5138,3.0893,3.558,1.3372,1.5315,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd34,,,M,2.1427,3.3379,0.38212,0.40797,0.81126,0.79891,21.9754,3.0452,2.6392,44.9029,45.4351,20.511,19.3243,233.252,226.2861,1.9387,3.2171,3.0569,1.3282,1.5703,20.8601,26.3035,1.7416,1.6813,3.958,3.9746,7.4658,7.4687,5.179,5.4181,0.07793,4.9582,2.305,2.8265,0.3595,0.40375,4.588,4.8887,4.1953,3.8636,1.7778,1.4939,10.7409,10.418,3.8376,3.877,4.3249,4.1444,5.7418,5.4337,1.5935,1.4381,2.1033,2.019,3.801,3.7443,7.6692,8.0058,2.2793,2.2381,7.4822,6.837,13.2069,11.7461,9.0216,8.3526,2.4906,2.5257,5.2304,5.2762,2.044,2.0756,19.8668,19.8398,5.4008,6.8622,3.97,3.919,1.0672,1.4507,2.4162,3.2996,9.1937,8.1268,14.1925,14.7594,5.4531,3.9248,4.5392,4.7609,4.1552,3.0816,1.668,1.5209,4.2033,4.3027,11.0616,11.0284,2.9048,2.9583,2.5404,2.3272,2.3058,2.5132,11.4189,12.296,2.497,2.7005,2.1508,2.4102,13.5346,12.6387,1.841,2.0407,1.3669,1.4796,15.6293,15.5659,6.077,6.2148,8.9082,9.081,4.9552,4.0462,10.9819,12.0709,7.6178,7.1688,7.622,7.0299,4.2839,3.8312,1.5229,1.4679,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd35,71,71,F,1.8953,2.4115,0.31394,0.32609,0.75633,0.69628,18.1667,2.8236,2.7342,49.1293,46.9867,13.8184,14.0371,222.8878,212.4724,1.9086,3.0437,2.6516,1.0913,1.2296,20.0417,30.4767,1.5756,1.5023,3.1413,3.4333,6.4173,6.3334,4.5162,4.7205,0.08896,5.0099,2.6122,2.6363,0.33161,0.31962,3.672,4.4141,3.5394,3.723,1.5403,1.4003,8.9475,8.3197,3.2748,2.8124,3.3572,4.0757,4.4276,3.8832,1.5648,1.3538,1.6922,1.881,3.3082,3.0791,6.3436,6.5343,1.8661,1.8986,5.6631,5.1164,10.071,10.3227,7.4809,6.8663,2.0251,2.1378,4.061,4.4564,1.6125,1.7132,18.0319,17.3049,4.4035,4.6679,3.3978,3.7108,0.90939,0.93192,2.3346,2.0722,7.3471,6.1601,13.5824,12.9678,2.8068,2.8064,3.8961,3.6434,3.1839,3.1727,1.2908,1.4375,3.6384,4.1078,9.3456,9.9817,2.6024,2.6193,2.0348,2.0618,1.8017,1.9104,9.4373,10.7874,1.9431,2.5075,1.8819,1.9808,11.9271,10.3115,1.5209,1.598,1.1644,1.1358,11.8694,12.6877,4.9902,4.9642,6.7607,7.6473,3.7534,2.6919,10.1591,10.0025,6.8385,6.4859,7.5813,6.4223,3.1238,3.4508,1.3216,1.326,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd36,81,81,M,1.9291,1.9031,0.40488,0.46279,0.82479,0.82436,18.9345,2.7537,2.6901,49.2956,49.2067,16.5091,16.9913,252.377,252.4717,1.4986,3.5434,3.2985,1.1107,0.98997,17.0473,23.0199,1.7408,1.7008,4.6811,4.806,7.8667,8.0449,4.8424,5.0769,0.09339,5.3622,2.4159,2.6687,0.44246,0.4175,3.9769,4.8437,4.6764,4.6396,1.954,1.5591,11.0332,9.1351,3.5126,3.3525,4.2161,4.7696,4.486,3.8834,1.7124,1.5749,1.8305,2.0095,4.1722,3.5142,7.4427,7.6012,2.2667,2.3404,7.1162,6.4688,12.3185,11.3035,8.6267,7.9495,2.5382,2.5075,4.1448,4.3875,1.8856,1.8544,20.0056,19.8121,5.3678,5.5294,4.2036,4.3773,1.1114,1.22,3.0786,3.0391,7.8807,6.8762,15.1353,14.0277,3.2996,3.47,4.4323,4.7097,3.307,3.2469,1.6389,1.5516,4.404,4.6581,11.1725,11.3723,3.0672,3.0676,2.6198,2.5927,2.4994,2.6107,11.0345,13.0527,2.6906,2.5278,2.4737,2.3669,13.2394,13.7982,1.9433,2.1403,1.2841,1.3407,17.322,15.7859,5.4238,5.3283,8.4129,9.3872,3.8853,3.3642,11.7123,10.4191,8.2179,8.7394,8.5756,8.0227,3.8567,3.9321,1.737,1.6296,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd37,,,F,1.2254,1.7778,0.31856,0.36125,0.68245,0.6525,16.589,2.5881,2.626,44.5808,44.7038,15.0964,15.8019,211.4838,209.0373,1.0877,2.6675,2.6663,0.59843,0.7613,8.2404,14.2795,1.4423,1.4316,3.2751,3.1456,5.8336,6.0853,4.2808,4.4716,0.07451,3.9762,2.0073,2.4582,0.308,0.31632,3.1277,3.4415,3.7564,3.6699,1.6024,1.3699,8.0897,7.4654,2.8613,2.9829,3.4696,3.2669,4.6168,4.3864,1.2676,1.3351,1.8686,1.7712,3.6539,2.9464,5.9454,6.2742,1.7114,1.6888,5.9191,5.5437,8.9138,9.2321,7.7439,7.5599,2.0035,2.0886,3.881,4.0852,1.4035,1.4864,14.9787,16.1093,4.7423,4.5592,3.3847,3.4254,1.0638,0.9521,2.5231,2.5647,5.201,4.8291,10.2149,10.6368,2.8358,3.0388,4.0858,4.2052,3.3883,3.1904,1.3766,1.2018,3.2841,3.8911,8.8201,9.6145,2.4601,2.7861,1.9765,1.8408,1.8613,2.2883,10.1397,11.035,1.8947,2.2483,1.7402,1.9149,11.9216,11.27,1.5249,1.7874,0.97823,0.99393,14.878,14.7956,4.719,4.8594,6.5027,7.5654,3.6124,3.2554,8.6072,10.3875,4.9838,5.3564,6.1222,6.2477,3.4306,3.4934,1.3253,1.5367,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd38,78,78,F,2.2232,1.9983,0.31394,0.35678,0.62861,0.78021,16.4367,2.4036,2.1212,41.9809,41.053,13.9568,13.9998,216.9418,210.9608,1.7409,2.7308,2.9383,0.61913,0.66511,18.2873,17.2753,1.5531,1.5185,3.1335,3.3637,6.4004,6.824,4.4214,4.6407,0.07783,3.8513,2.0515,2.481,0.37094,0.35084,4.0076,4.2551,3.8641,4.144,1.6328,1.5206,10.0845,8.4609,2.8436,3.1124,3.8478,4.0207,3.862,4.3633,1.2126,1.5264,1.8262,1.8514,3.1832,3.0312,6.6504,6.5727,1.7872,1.8822,5.9901,5.9854,11.0044,10.082,7.8314,6.9625,2.0666,2.3593,4.121,4.4131,1.5127,1.659,15.482,15.5038,4.7777,5.8084,3.4751,3.6837,1.0469,1.243,2.4596,2.6061,6.8614,6.1415,13.5985,12.1722,2.6698,3.1119,3.9739,3.9485,3.1583,3.4872,1.3911,1.4831,4.0349,4.3803,10.2395,10.1024,2.6131,2.9742,2.3289,2.17,2.2011,2.265,9.2584,10.6118,2.0896,2.7168,1.89,2.2119,11.2482,12.1035,1.8222,1.9011,0.98644,1.0054,11.8694,11.8028,5.0658,5.1386,7.822,8.3096,3.2599,3.1124,10.7106,10.9917,6.0187,6.435,7.0624,6.7899,3.2658,3.7364,1.3929,1.5738,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd39,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd40,56,56,F,0.98668,1.9683,0.34906,0.39511,0.8218,0.83691,17.0213,2.8389,2.7995,46.8232,46.8022,14.5272,15.2514,185.7545,189.237,1.0689,3.2615,3.1136,0.36495,0.46058,8.3182,9.812,1.5261,1.4418,3.1933,3.4984,6.7747,7.0248,4.5049,4.7758,0.0698,4.6817,2.1004,2.6944,0.33588,0.3502,3.4694,3.9495,3.4775,3.5396,1.8882,1.5746,9.9959,9.1829,3.4156,3.4771,3.5289,3.5026,4.502,3.8821,1.5899,1.5824,1.6794,1.8246,3.5537,3.2787,7.3385,8.0186,1.8969,1.9491,6.6846,6.4182,11.2911,11.5883,8.7503,7.4859,2.4026,2.4884,4.6803,4.527,1.5629,1.5869,16.5157,18.612,5.1874,6.4758,4.1537,3.8233,0.97807,1.0092,2.2481,2.2928,7.1327,6.2017,14.7833,14.0277,3.5262,3.0137,5.281,4.8644,2.878,3.0989,1.6136,1.5784,3.4491,3.9726,9.6719,9.6351,2.8052,3.1118,1.857,1.865,1.8115,1.9729,9.877,10.8637,2.3928,2.5996,1.712,1.8273,11.2152,11.5103,1.6444,1.6304,1.0058,1.0628,13.5098,13.4185,4.761,4.9149,7.4591,7.0687,4.9115,3.1916,9.2977,9.0157,7.5386,7.6438,7.1298,7.3685,3.6974,3.9042,1.164,1.3308,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd41,84,84,M,1.7884,2.3061,0.39004,0.46097,0.88168,0.84559,16.5496,2.7826,2.5286,38.9026,40.8598,12.9291,13.067,182.6154,180.3862,2.1647,3.3649,2.7078,1.0926,1.0629,25.4195,33.4058,1.4427,1.4046,3.3123,2.9568,6.5123,6.7011,4.2692,4.4197,0.05934,4.9095,2.0486,1.9847,0.396,0.40055,4.0148,4.6224,4.1186,4.1862,1.7983,1.5216,10.4294,9.2691,3.7436,3.6542,3.9927,3.786,4.9466,5.2862,1.575,1.4579,1.9472,2.0205,3.7308,3.2994,6.7279,6.303,2.0692,2.1454,6.6274,6.2899,11.1523,10.2843,8.7636,8.4943,2.179,2.3851,4.3037,4.0383,1.7906,1.931,17.3819,18.181,5.0702,5.9184,3.7697,4.132,1.3629,1.0727,2.75,2.7557,7.4036,6.7709,13.4496,13.6802,2.5101,3.3709,4.5213,4.4946,3.43,3.7596,1.6273,1.6584,4.2966,4.728,11.3053,10.7039,2.843,3.1608,2.4381,2.3405,2.2924,2.309,9.3621,11.5268,2.3126,2.3079,2.0953,2.1688,12.5355,13.31,1.9556,2.0648,1.1912,1.2275,15.3559,16.4787,5.0316,4.7531,7.6318,8.6945,4.3767,3.7842,9.798,9.8233,7.5457,7.4695,7.5284,7.0749,3.3044,3.9927,1.5177,1.7277,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd42,69,69,M,1.9111,3.3485,0.38885,0.39586,1.0465,0.99923,20.4108,2.9664,2.8676,48.9778,47.6807,18.8412,19.534,295.4615,276.5258,1.4619,4.14,3.7377,0.9213,1.1687,14.7058,20.9043,2.4612,2.1712,3.5761,3.4843,8.509,9.5428,5.5358,6.8376,0.09881,5.3437,2.4043,2.7544,0.39874,0.42219,4.7092,5.5783,4.0195,4.8254,2.4906,2.235,9.9596,8.6029,4.7937,4.0042,3.9693,4.0084,6.0872,5.4991,1.8941,1.859,2.0541,2.3666,4.4396,4.3061,8.1211,7.6282,2.3828,2.4964,7.664,7.5284,13.5794,13.9209,9.1343,8.3888,2.7532,3.0093,5.1245,4.7707,2.1622,2.3385,20.0268,22.1759,5.3864,6.4884,4.3394,4.472,1.4007,1.198,3.0988,3.0236,9.1099,8.4889,16.5941,18.2389,3.6534,4.0946,4.4433,4.7443,3.6908,3.3928,1.8133,1.7989,4.4471,4.5776,12.6383,12.5753,3.1093,3.3091,2.3243,2.393,2.0996,2.253,9.7635,11.782,2.6564,2.6057,2.0654,2.4174,13.6869,13.8755,2.031,1.8173,1.244,1.3937,16.5313,15.1134,6.2078,6.1272,7.8592,8.0251,4.9166,4.0538,9.975,10.146,7.5512,8.8477,9.0227,8.8122,4.9804,4.1858,1.4403,1.7066,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd43,71,71,M,1.746,1.6608,0.4372,0.47758,0.88817,0.90065,18.0157,3.2366,3.1011,28.2987,24.6806,16.2098,16.143,220.49,216.4528,3.0552,3.0267,3.0642,0.70921,0.73893,34.3032,35.2975,1.5997,1.5793,3.514,3.5921,7.2128,7.0505,4.3457,4.5189,0.06699,4.65,2.1931,1.2793,0.41841,0.41668,3.8895,4.4643,4.0304,4.3508,1.8534,1.6453,10.5986,10.0039,3.5084,3.2663,4.0641,3.9282,5.2421,4.9089,1.7835,1.8106,2.1221,1.9378,3.7478,3.5094,8.188,8.2525,2.1596,2.3391,6.9397,6.4314,13.0873,12.624,9.1724,8.509,2.5019,2.5033,4.4081,4.7702,1.7718,1.8758,19.0468,20.032,5.0409,7.2785,4.0427,4.3392,1.2125,1.0727,2.5793,2.3063,7.8255,6.5605,15.1353,14.8918,3.1322,3.2269,4.5392,4.4881,4.0885,3.4065,1.7914,1.6515,3.9418,4.4385,10.3831,10.0407,2.9619,3.205,2.3357,2.5124,2.4625,2.5273,9.6355,11.7092,2.7909,2.8316,2.3008,2.5286,13.467,13.6167,1.9978,2.2938,1.3019,1.3238,16.0842,16.071,5.2705,5.189,7.3116,8.8669,4.1539,3.7472,10.4791,11.6839,7.4455,7.5915,9.2186,9.4371,3.9177,3.8815,1.7025,1.6449,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd44,71,71,M,1.7205,2.0757,0.32552,0.37309,0.74253,0.67372,17.0912,3.1161,3.2433,44.7095,44.6837,13.2066,13.6731,200.7114,195.7271,1.6565,3.0156,2.5632,0.90852,0.82843,21.0366,26.4455,1.4414,1.4602,3.6883,3.8632,6.137,6.4687,4.5571,4.7205,0.08126,4.3222,1.9992,2.6862,0.33936,0.34498,3.209,3.6379,3.424,3.4235,1.5506,1.5785,10.6284,8.8907,3.0125,2.6903,3.3075,3.7772,5.3005,4.3308,1.4345,1.3199,1.6913,1.7952,3.0947,2.7854,6.7407,6.1736,1.8475,1.9121,6.4583,5.7288,11.0579,9.5933,7.7756,7.0399,2.1833,2.1914,4.7066,4.6193,1.4626,1.4152,16.5137,17.4723,5.5448,5.6222,3.4649,3.6837,1.0391,1.3535,2.1381,2.5823,6.2184,5.5572,13.3822,12.5696,2.8595,2.9022,4.0595,3.9476,3.4479,3.2124,1.4436,1.3552,3.4641,3.6512,8.9099,9.6203,2.5377,2.8487,1.9343,1.8505,1.9497,2.0428,11.3563,12.7921,2.2408,2.1983,1.8192,2.1099,10.9516,10.6517,1.5615,1.6792,0.97115,0.99286,13.741,14.141,4.509,4.7331,8.2741,7.965,4.6134,3.3708,9.275,9.7034,6.3846,6.8159,6.1222,6.1146,3.3747,3.5497,1.2277,1.4578,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd45,74,74,F,1.2942,1.6704,0.46511,0.53202,0.95187,0.8882,21.2508,3.9117,3.5903,56.5683,56.8183,18.8763,19.2974,254.6872,252.6338,1.3381,3.5553,3.3209,0.60679,0.55859,18.6368,16.4151,1.7185,1.7644,4.8227,5.3069,6.9894,8.0247,4.949,5.3393,0.07497,5.1312,2.5184,3.0924,0.39528,0.40558,4.7026,4.9878,4.7368,4.9237,2.076,1.6751,10.7095,10.1702,3.3212,3.4855,4.6459,4.783,4.7502,4.7242,2.0136,1.7252,2.3046,2.3372,3.757,3.7043,8.4729,7.9531,2.2082,2.3336,6.9133,6.3392,13.2295,12.594,8.4853,7.7564,2.6347,2.7764,5.3472,5.7041,2.1361,2.0045,20.8946,19.892,5.5995,6.7807,4.3857,4.2674,1.1114,1.4277,2.9491,2.8764,9.4497,7.9687,14.5562,13.859,3.483,3.3266,4.2342,4.2177,3.5676,3.0816,1.8682,1.652,4.044,4.5595,11.9621,12.1496,3.4242,3.5296,2.4649,2.4979,3.0347,3.007,10.778,12.5857,2.502,2.8535,2.2951,2.7252,13.1865,14.8469,2.2913,2.9278,1.3871,1.3112,15.7713,15.6951,6.0073,6.0767,8.5693,10.0058,4.9162,3.819,10.9431,10.7712,8.2518,7.8519,8.7657,8.6,3.9849,4.4426,1.7496,2.1337,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd46,85,85,M,2.4324,1.977,0.39004,0.4186,0.91559,0.86442,20.5604,3.2034,2.7164,46.4131,46.7941,15.0686,16.4669,217.3875,210.2855,2.486,3.5816,3.2341,0.68332,0.68632,32.6771,28.5032,1.5691,1.6101,3.564,3.7459,6.4035,6.5046,4.79,5.1122,0.08694,4.7388,2.0089,2.542,0.3743,0.39472,4.4987,4.9454,4.2998,4.4056,1.7432,1.5632,10.1476,8.8426,3.1536,2.7674,4.0376,3.9395,4.2951,3.5316,1.8121,1.7241,2.0558,2.0427,3.9484,3.4063,7.3327,7.2071,2.2004,2.2513,6.5007,6.1879,10.6601,10.6636,8.111,7.1042,2.2448,2.3452,4.8872,5.2531,2.0095,1.984,19.1862,19.8549,4.8127,5.8415,3.9285,4.2374,1.2879,1.2911,2.9837,3.182,8.4573,7.1,13.7507,13.5472,2.3636,2.9945,4.3228,3.9757,3.0386,3.0088,1.4654,1.3203,4.0301,4.9304,10.9832,11.3415,3.2494,3.3085,2.3183,2.5669,2.1324,2.1484,9.0305,9.8837,2.2898,2.4903,2.0049,2.1435,11.7388,11.9634,1.7802,1.7062,1.3146,1.4137,14.4163,15.2734,5.3775,5.5847,7.8423,8.1279,3.7321,3.2115,12.3532,11.2281,7.0697,6.8017,8.1233,7.7609,3.5269,3.5607,1.4467,1.3695,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd47,,,F,1.7082,1.9622,0.32688,0.38686,0.755,0.79298,15.8051,2.7168,2.824,45.7527,44.3359,12.9229,12.6969,181.3894,179.8191,1.6859,3.0205,2.6776,0.78206,0.62222,14.9264,19.029,1.4408,1.5129,3.5597,3.5856,5.9114,6.3765,4.11,4.3744,0.07564,4.8325,2.3064,2.9126,0.34125,0.34147,3.4662,3.9461,3.5503,4.1295,1.5789,1.4543,9.6351,8.2258,2.8194,2.9022,3.8625,4.1743,4.2695,4.0278,1.4613,1.4568,1.7829,1.7176,3.2281,3.23,7.1605,6.8644,1.537,1.6821,6.0933,6.1703,11.1322,10.043,7.1372,6.5239,2.1092,2.4893,4.2754,4.3288,1.4245,1.5082,15.6477,17.6316,4.1451,5.5864,3.0127,3.6691,0.9992,1.0691,2.2594,2.3106,6.6768,6.1665,14.3049,13.1579,2.767,3.16,4.0705,3.9398,3.2753,3.2185,1.3766,1.5583,3.5002,3.7223,8.8048,9.8588,2.7282,2.9627,2.199,2.0918,2.0855,1.9119,8.3638,10.6662,2.2296,2.5164,1.9201,2.1408,10.6278,11.3625,1.7494,1.4896,0.98281,1.0193,13.6789,14.1173,4.761,4.5418,7.0275,7.5649,3.7716,3.5915,9.3587,8.7603,7.2625,6.3516,6.5402,6.4156,3.2585,3.6681,1.4013,1.3844,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd48,82,82,F,1.9884,2.0425,0.27846,0.31392,0.60264,0.57692,15.1807,2.4715,2.1736,41.9003,39.5261,12.3419,13.4894,150.0735,152.4398,1.5338,2.5906,2.4249,1.3804,1.6288,19.2048,20.4219,1.2711,1.2571,3.0092,3.0644,5.5578,5.7188,4.2723,4.502,0.07988,4.2129,1.992,2.6376,0.31777,0.31338,3.324,3.8019,3.082,2.9999,1.2661,1.244,8.7539,7.3711,2.5231,2.5086,3.3255,3.2248,3.7048,3.7213,1.0905,1.1673,1.3705,1.5598,3.0341,2.5302,6.3474,6.0265,1.4389,1.5971,5.6178,4.8529,8.7273,9.0178,6.3145,6.4052,1.5963,1.8303,4.0824,4.2672,1.3728,1.4145,15.5645,14.4036,4.6429,4.7696,2.7665,3.1058,0.97386,0.94805,2.0321,1.689,6.0777,5.3863,9.9196,10.794,2.1221,2.4894,3.6682,3.6074,2.6661,2.473,1.0437,1.019,3.4569,3.7111,3.1452,8.9246,2.4627,2.7255,1.8795,1.7402,1.7696,1.6677,8.5085,9.8752,1.932,1.9466,1.6058,1.8206,9.7805,10.8802,1.5209,1.4705,0.95731,0.99393,11.7282,11.5294,3.9761,3.7126,6.092,6.9517,3.3981,2.8757,8.1262,0.43408,5.9552,5.349,5.4621,5.5822,2.8801,2.9167,1.2267,1.3825,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd49,63,63,M,1.7427,1.8381,0.39299,0.43782,0.9583,0.94616,21.1231,3.2466,2.9293,50.1687,50.4537,17.5141,18.1067,254.6872,251.408,1.4859,3.5677,3.2935,0.82291,0.57999,11.9006,15.3112,1.5787,1.6101,3.909,3.6271,7.2696,7.645,5.1201,5.26,0.08199,5.3452,2.4622,2.8277,0.40429,0.41953,4.8909,5.7021,4.6922,4.8058,2.1984,1.8397,11.4851,10.561,3.0736,2.7352,4.8629,4.4899,4.5585,3.5239,1.8605,1.6975,2.4661,2.3582,4.8016,4.036,8.3668,8.1502,2.2082,2.3867,6.8045,7.0548,13.1325,13.5068,8.111,7.7168,2.7532,2.7562,5.3636,5.247,2.1684,2.1509,20.8231,20.6388,6.0089,6.5377,4.6542,4.7688,1.0366,1.1405,2.7904,2.8748,10.1498,8.6758,16.2557,15.8882,3.2767,3.8068,4.2342,4.5411,3.5676,3.6265,2.0147,1.798,4.3861,5.0508,10.6949,11.8842,3.182,3.4822,2.771,2.5935,2.3301,2.4889,10.4138,11.0923,2.502,2.8525,2.6326,2.7526,12.3388,13.1306,2.0029,2.0854,1.5078,1.5581,16.3539,14.6418,5.5948,5.6492,8.9082,9.5109,4.3263,3.4209,11.2573,10.7372,7.1236,8.7619,8.9099,8.5194,4.2315,4.2512,1.7,1.7581,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd50,,,M,1.5598,2.3519,0.35128,0.42314,0.88578,0.89401,17.6387,2.7861,2.5116,46.4549,46.7941,14.6161,15.0908,241.8441,247.9511,1.0014,3.5946,3.3827,0.41122,0.41122,8.988,9.3251,1.727,1.7506,3.2129,3.3731,6.2151,6.5938,4.6086,4.8599,0.08438,4.7538,1.9311,2.7387,0.35228,0.35235,4.2948,4.4607,4.4397,4.4768,1.6462,1.4914,11.4893,9.8041,2.2925,1.9707,4.2689,4.6187,3.5655,3.0535,1.7069,1.6574,2.0246,2.2167,3.3687,3.4402,7.5378,7.1853,2.0165,1.9565,6.2743,7.2898,11.4399,11.2543,7.6647,6.9652,2.1137,2.2542,4.7958,4.7272,1.7018,1.702,18.8515,19.0436,5.861,6.9686,3.7199,3.9433,1.2881,1.2392,2.9837,3.0342,7.3528,6.6438,14.5541,13.9554,2.6292,2.9412,4.4146,4.3679,3.407,3.337,1.4257,1.4832,4.0904,4.7499,10.554,11.103,2.9582,3.3696,2.3548,2.4438,2.5237,2.8133,11.0103,11.6419,2.2357,2.4873,2.0151,2.3764,11.8206,11.2645,2.0168,2.5498,1.1353,1.1631,14.0128,15.2734,5.3286,5.4055,7.2368,9.2354,3.4049,3.2476,10.5594,11.1672,7.3333,7.2026,8.145,7.7768,3.459,3.5388,1.4823,1.6804,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd51,83,83,F,0.96939,1.4216,0.38358,0.40137,0.90904,0.85866,15.4609,2.9099,2.7712,33.5806,27.5385,12.6382,13.067,206.115,201.4517,1.0792,3.3797,3.0111,0.42345,0.40076,8.1124,9.812,1.4927,1.4039,3.8497,3.972,6.3384,6.5896,4.0859,4.3505,0.09045,3.9719,1.7441,2.2508,0.35063,0.38798,3.4719,4.161,4.2152,4.2191,1.6824,1.4061,10.4568,9.6452,2.79,2.7036,3.3154,3.4296,4.7709,4.3938,1.6893,1.6332,1.9493,1.9652,3.4137,2.9165,7.1333,7.2979,1.9463,1.8953,6.9891,7.438,10.83,11.1452,7.714,6.8163,2.0692,2.2288,4.0035,4.0007,1.5375,1.5716,16.859,16.3033,5.4805,5.8408,3.8878,3.9433,0.97369,0.8659,2.486,2.185,7.1218,6.2515,14.1306,14.3444,3.9516,4.0329,4.0606,3.9337,3.5858,3.1969,1.5482,1.4462,3.8716,4.224,9.5597,9.1172,2.8236,3.2482,2.3395,2.3436,1.9166,2.1707,9.1566,10.212,2.2056,2.341,2.2428,2.1555,10.6811,10.7284,1.8902,1.7153,1.1517,1.1825,12.6986,12.3802,4.6107,4.6411,7.6472,7.3882,5.1011,4.1522,10.1637,9.0615,7.3433,7.1633,7.5484,7.4169,3.2215,3.6669,1.5637,1.3077,,24,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd52,82,82,F,1.8968,2.0425,0.27846,0.28521,0.63979,0.68516,15.0058,2.3106,2.1212,44.2379,44.0165,13.9568,13.5418,149.5422,160.0347,1.8418,2.6058,2.6793,0.90182,0.79331,19.7081,24.3171,1.2833,1.2125,2.8007,2.8304,5.6653,5.5759,4.2723,4.484,0.08069,4.4944,2.0083,2.1259,0.28156,0.28338,3.6258,3.6044,2.9892,3.1761,1.2616,1.1709,7.9338,7.1684,2.4866,2.377,3.5441,3.6249,3.9211,3.8911,1.2676,1.3436,1.668,1.707,3.1813,2.6735,5.9454,5.6597,1.4389,1.7242,5.2199,4.9948,8.9138,7.589,6.7517,5.6572,1.7255,1.9304,4.7066,4.6193,1.2819,1.3178,14.5155,14.4447,4.5832,4.7936,2.88,3.1944,0.9126,1.1048,2.1893,2.3047,6.0549,5.7272,11.6879,8.7619,2.3409,2.5463,3.5804,3.6517,2.9641,3.1208,1.0991,1.0839,3.5651,3.7834,8.9276,9.1429,2.355,2.6495,1.3262,1.4917,1.6959,1.69,8.5085,10.4308,1.8322,1.9358,1.6185,1.8628,10.9701,10.0129,1.6089,1.5334,0.93137,0.96288,12.0018,11.7258,4.5284,4.8594,6.6645,6.8818,3.3981,2.8583,8.5685,9.2085,6.5997,5.1293,6.7848,6.0514,3.1211,3.2392,1.2863,1.066,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd53,78,78,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd54,,,M,1.1606,1.9214,0.42253,0.46211,0.96308,0.94919,18.9611,3.2036,3.1873,43.1093,43.1576,15.1165,15.6313,271.7577,267.9129,0.9901,3.5761,3.4198,0.43205,0.37814,11.3638,12.3222,1.7632,1.7879,4.1009,4.1105,7.7554,7.9295,5.0559,5.2591,0.0895,4.9582,2.0488,2.5288,0.40908,0.40558,4.1386,5.0318,4.0304,4.1629,2.1453,1.8239,11.0332,10.0039,3.5942,3.0259,4.199,3.8371,5.0809,5.1469,1.827,1.7909,2.1879,2.0911,4.4843,3.9472,7.5062,6.9908,2.4357,2.1961,6.8691,6.5972,11.3129,11.0739,8.0599,7.1813,2.7614,2.7728,4.8757,5.0952,2.1883,1.9821,21.3627,22.2087,5.7289,6.5377,4.6542,4.6622,1.3779,1.2654,3.1132,2.8081,9.1646,8.3647,14.3478,13.9693,3.2368,3.7622,4.2318,4.5593,3.3535,3.4049,1.9195,1.7339,4.1235,4.5595,10.8753,11.2292,3.0333,3.3844,2.249,2.2492,2.4892,2.7283,10.2429,11.2918,2.5524,2.9659,1.943,2.1835,12.038,11.9001,2.0739,2.0881,1.3131,1.3258,16.3566,15.864,5.893,5.4185,8.5253,9.6666,4.3785,4.138,10.3507,11.7076,8.3095,7.9989,8.4394,7.7869,4.2226,4.504,1.4801,1.7277,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd55,80,80,M,1.6273,2.0759,0.38417,0.40137,0.81699,0.78837,18.3098,3.1379,3.0353,50.477,49.6266,15.2028,15.8275,208.0846,208.07,1.2083,3.3786,3.0368,0.80831,0.80324,10.5676,12.0729,1.4764,1.4664,3.4841,3.7227,6.7747,6.9395,4.4367,4.6769,0.07898,4.4525,2.2797,2.5815,0.36112,0.39096,3.9888,4.7133,4.0432,4.2877,1.739,1.6524,9.6822,8.5698,2.8901,2.8104,3.8671,4.156,4.9481,4.5858,1.7555,1.5455,2.1221,2.1565,3.9771,3.5142,7.8411,6.904,2.1739,2.041,6.581,6.2477,13.058,11.9185,7.5424,6.9489,2.2271,2.3057,4.4383,4.9116,1.8424,1.8658,19.8668,20.1029,4.7311,6.6039,3.854,3.8318,1.0923,1.1569,2.7155,2.8132,8.0209,7.1143,15.3965,15.7801,2.8358,3.2287,4.5205,4.1709,3.8942,3.3267,1.5676,1.318,4.1515,4.6815,10.8726,11.0971,3.1078,2.9733,2.3548,2.5088,2.4104,2.6854,9.4866,11.0461,2.3375,2.474,2.3008,2.3384,12.6872,12.5431,2.0007,2.4035,1.1388,1.1817,14.3833,14.0776,5.1148,5.0385,7.4589,8.907,3.9383,3.38,9.8516,10.1788,7.7471,7.273,8.7657,7.8021,3.3345,3.6533,1.6092,1.6204,,30,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd56,83,83,F,2.5515,1.6601,0.27846,0.30282,0.69473,0.63575,13.995,2.5523,2.3544,39.2901,35.7295,10.0841,2.9582,149.5422,150.5561,2.6575,3.1177,2.8579,1.0499,1.0629,29.6633,28.4876,1.2923,1.2571,3.0887,3.1734,5.1972,5.499,3.7544,3.9391,0.06724,3.7344,1.9054,2.3524,0.27877,0.28347,3.2605,3.6751,3.3928,3.7476,1.3535,1.1683,8.1734,7.7738,2.3843,2.1666,3.2202,3.1855,3.2195,3.4434,1.3537,1.3032,1.5522,1.7025,2.522,2.8706,6.0937,6.1212,1.6336,1.48,5.0955,5.3201,9.2611,9.6013,6.4929,5.7349,1.9543,1.9076,3.774,3.452,1.31,1.3169,15.608,14.3944,3.9986,4.7415,2.876,3.0824,1.2187,1.2013,2.6953,2.627,6.2177,5.5724,11.1185,11.2481,2.0316,2.9579,3.0665,3.3195,2.482,2.8991,1.3296,1.1681,3.1522,3.3313,8.7343,8.625,2.4347,2.7157,2.01,2.1325,1.726,1.6428,9.0129,9.5542,1.9955,1.9458,1.8059,1.9808,10.8766,10.3,1.6089,1.5971,0.95731,0.79424,11.7757,11.1137,4.4485,4.5881,6.2754,6.8321,3.0945,2.863,8.6072,10.3875,6.5997,6.4235,6.9277,6.0514,3.018,2.9441,1.2047,1.1738,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd57,69,69,M,2.1889,2.6169,0.37359,0.42992,1.0214,0.99715,20.8786,2.9664,2.8569,51.3652,49.4891,15.737,16.4425,271.7577,262.7257,1.7914,3.8137,3.6642,0.54138,0.52111,17.2587,21.454,1.8646,1.8178,3.9512,3.9769,8.2686,9.0064,5.3058,5.5975,0.09881,4.9834,2.3553,2.9013,0.47669,0.57889,4.7836,4.9365,4.6159,4.9035,2.178,1.748,10.1484,9.1168,3.936,3.6257,4.6883,4.7655,6.0872,4.8128,1.9067,1.6975,2.4661,2.6485,4.4843,4.2113,7.3468,7.1772,2.3453,2.238,7.6337,7.5284,11.0658,10.751,9.1142,8.5248,2.6877,2.7207,5.1739,5.2935,1.9893,1.9903,20.5258,22.5254,5.4263,6.3374,4.4122,4.3599,1.2274,1.2664,2.9697,2.9983,8.2947,7.4477,14.3478,13.8644,3.2514,4.3706,4.5218,4.8159,4.4008,4.3849,1.772,1.6954,4.2239,4.6003,11.3331,11.2292,3.2764,3.2771,2.6198,2.9735,2.5521,2.6311,12.0025,11.405,2.5921,2.8525,2.3733,2.5953,14.2141,15.5268,2.2965,2.4575,1.2988,1.2201,15.1482,15.8389,6.0927,6.1272,8.9801,9.318,4.3133,3.7664,9.6149,10.4922,7.7947,7.8687,8.5756,7.923,4.1574,4.479,1.7121,1.9204,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd58,,,M,1.7099,1.9622,0.29313,0.34214,0.83649,0.88831,20.2468,2.3874,2.3042,52.1853,51.6143,17.0926,17.5254,255.5904,252.0335,1.4746,3.3734,3.0843,0.91186,0.72341,13.6285,14.1622,1.7571,1.8143,3.4877,3.3121,7.4154,8.1874,5.2607,5.6066,0.08927,5.4004,2.4099,2.5815,0.39667,0.41743,3.8401,4.8056,3.7167,3.9264,1.7178,1.5999,10.1495,8.6252,3.8966,3.5443,3.987,3.6973,6.5936,4.8355,1.7149,1.6967,2.1616,2.0271,3.6944,3.4006,7.569,7.0443,2.3691,2.094,6.4671,5.1279,11.7446,10.9849,8.878,8.055,2.2511,2.3532,4.6196,4.6176,1.9077,1.9,18.9174,19.8121,4.6587,5.7279,4.1959,4.0524,1.1856,1.3173,3.0377,2.9983,8.9869,7.6159,14.4703,13.3737,2.7196,2.9293,4.4433,4.2973,3.6908,3.2288,1.5199,1.4924,4.1452,4.1885,10.1034,9.739,3.0672,3.2999,2.2065,2.1925,2.1558,2.0094,10.0317,11.4424,2.1934,2.4944,2.1073,2.4102,13.4558,13.9885,2.2771,1.7712,1.2561,1.2789,16.53,15.1221,6.4748,6.0104,7.6425,8.3562,4.0568,3.7508,9.7343,9.905,8.1109,7.9222,8.5351,8.5374,3.5721,3.6503,1.6067,1.4731,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd59,61,61,F,1.9503,2.1091,0.37235,0.35447,0.84848,0.86195,16.9978,2.7477,2.7087,43.5612,43.6108,12.2102,12.6795,194.8429,187.6717,1.8042,3.3497,3.2487,0.96117,0.96109,21.5353,27.1511,1.3243,1.4598,3.1969,3.402,6.1684,6.5134,4.2532,4.4331,0.07934,4.1865,1.9369,2.4289,0.36628,0.37418,3.3719,4.3072,3.8813,4.1591,1.767,1.5388,8.4829,8.015,2.4067,2.0088,3.6471,3.6034,3.6838,3.0535,1.6252,1.7728,1.8537,1.8386,3.8561,3.7713,6.4639,6.6506,2.1634,2.1019,5.8472,5.9482,9.0886,10.043,5.7616,3.9167,2.2751,2.1863,4.2754,3.9488,1.7892,1.5853,18.7861,19.0436,4.873,5.555,3.8495,3.8666,0.82415,1.0847,2.2521,2.645,7.4682,6.5312,10.2149,11.453,2.0264,2.97,3.576,3.5683,3.3793,3.4832,1.5676,1.4934,3.5992,3.8622,8.7866,9.5578,2.6696,2.8781,2.5824,2.4643,1.9867,2.0437,9.0085,10.4789,2.4155,2.5069,2.3544,2.4631,12.1021,12.1998,1.8846,1.8025,1.218,1.2342,14.878,14.2914,5.2369,5.0469,7.4343,7.6587,4.2459,3.3969,8.3438,9.2653,5.2529,5.4892,7.3189,7.4087,3.5037,3.5923,1.5927,1.5925,,4,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd60,77,77,M,1.6946,2.0278,0.38561,0.38864,0.90904,0.87665,18.92,3.0664,2.4915,52.136,51.6143,16.5424,17.0418,254.1394,252.0335,1.5379,3.6065,3.4104,0.60679,0.54806,16.3904,16.4151,1.7198,1.6813,3.7169,3.7317,6.82,7.627,4.9062,5.3393,0.08788,5.3587,2.4024,2.6814,0.46289,0.47435,4.8787,5.3908,4.7992,5.24,2.1984,1.7786,11.7556,9.3483,2.9748,2.9137,4.479,5.2749,4.9481,4.5894,1.7571,1.7317,1.9633,2.1078,4.7109,4.3061,8.4549,7.7927,2.5943,2.687,7.3182,7.2798,13.5794,13.7005,8.4769,7.868,2.8493,2.5297,5.2506,5.7541,2.2046,2.1793,21.3627,21.5817,5.8715,6.4988,4.8671,4.8288,1.2995,1.2063,2.8466,2.8748,8.9508,8.6758,17.4594,18.2389,3.8712,4.2514,4.3364,4.6409,3.5605,3.2166,1.7694,1.6983,4.3933,4.9885,11.5462,10.8883,3.0398,3.4414,3.0945,3.1971,2.3698,2.2081,9.6495,11.3454,2.6084,3.1392,2.6326,2.8263,13.884,13.2247,2.0364,2.0775,1.3892,1.4347,15.8807,15.4303,5.5008,5.8355,7.9376,8.0251,4.6947,3.88,9.1951,9.9701,7.1278,8.5547,9.7771,9.1,3.6455,3.9967,1.7,1.8601,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd61,71,71,F,0.88743,1.4807,0.41178,0.44694,0.73258,0.73871,17.5233,3.1158,3.0777,48.463,48.6368,14.4953,14.5866,222.79,214.3011,1.0371,2.914,2.5467,0.343,0.37683,7.0678,11.6928,1.5279,1.4918,3.4333,3.4716,6.8949,7.1078,4.4484,4.6521,0.07462,4.9481,2.1171,2.7406,0.36758,0.38853,4.5177,4.7298,3.8871,3.9484,2.0195,1.671,10.8441,10.1825,3.1833,3.1103,4.0641,3.7157,4.9485,4.3198,1.4985,1.4774,1.8603,1.8507,4.0432,3.6493,6.8674,7.1118,2.2727,2.4152,6.5135,6.5072,11.0967,10.6118,8.8272,7.7772,2.3645,2.5839,4.8619,4.9906,1.7839,1.8187,18.5568,18.3843,5.8192,6.8622,4.2999,4.5908,1.0391,1.1307,2.6416,2.7659,7.7507,7.0426,14.8189,14.6998,3.327,3.5629,4.5218,4.451,3.53,3.4179,1.5037,1.4835,4.3402,4.728,10.8726,11.0804,2.6368,2.9404,2.1848,2.3589,1.9439,2.4296,10.2712,11.5437,2.3682,2.6664,2.084,2.3094,12.8154,12.9605,1.5209,1.9298,1.3468,1.4764,13.8576,12.9795,5.2991,5.424,8.1528,9.9347,4.2942,3.8033,10.9051,11.7076,7.1474,7.5901,7.7616,6.9862,3.1766,4.1227,1.3417,1.5647,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd62,,,M,1.7692,1.6315,0.39299,0.42956,0.9256,0.98383,18.0431,3.1376,2.7306,51.3695,52.0429,14.6129,14.5715,243.9959,240.6768,1.4746,3.8127,3.6418,0.76747,0.72399,21.7979,20.9017,1.6519,1.6259,4.1544,4.3726,7.7925,8.0618,4.9036,5.1795,0.08054,5.3454,2.4353,2.8273,0.43463,0.40515,4.0747,4.4975,4.3287,4.9404,1.909,1.6461,11.0332,9.1874,3.6394,3.6314,4.3436,4.7194,5.1925,5.3392,1.8405,1.8067,1.9271,2.0259,3.7929,3.4047,8.0764,7.8643,2.37,2.4793,7.7388,7.393,12.8101,11.6909,8.6053,8.008,2.2386,2.4876,4.9001,4.6561,1.8762,1.8594,20.6915,19.6175,5.5567,6.4884,4.1808,4.3548,1.1033,1.2987,2.9708,2.6437,7.6655,6.885,15.1099,14.397,4.1232,4.46,4.7235,4.4881,3.5138,3.3782,1.5624,1.7859,4.1849,4.8217,10.9989,10.7779,2.9862,3.3923,2.5205,2.6759,2.5608,2.6713,10.8533,11.7282,2.4033,2.9716,2.1409,2.661,13.5061,14.0706,2.2141,2.1372,1.2293,1.2694,15.6293,15.0032,5.2991,4.9639,8.5693,9.4761,4.5894,3.7044,10.0276,12.7536,8.2518,8.7619,9.4185,9.0765,3.5037,3.7374,1.5511,1.8285,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd63,87,87,F,1.772,1.3881,0.29191,0.3229,0.64983,0.67914,15.3461,2.3944,2.5176,36.7438,37.9211,11.0862,11.6878,167.5756,164.9992,1.6263,2.7915,2.5432,1.1098,0.85943,18.0568,18.2211,1.2156,1.1515,2.965,3.0473,5.8359,6.2727,3.7026,3.898,0.07933,4.028,2.0653,2.2594,0.33227,0.3005,3.6304,3.7709,2.9997,3.2009,1.5849,1.2516,8.457,7.2867,2.6871,2.7326,3.1265,3.0663,3.6222,4.1139,1.3767,1.3351,1.4898,1.5681,2.918,3.1571,6.0063,5.6911,1.7015,1.6345,5.1103,5.2337,9.3244,9.1252,6.3145,6.5562,1.9381,1.7763,3.7305,3.9116,1.3389,1.4058,13.307,14.5091,4.3988,4.8572,3.1492,3.3438,1.0387,1.0747,2.2643,2.1921,6.3421,5.8155,12.4758,11.6314,2.3741,2.7173,3.6369,3.5636,2.6327,2.6425,1.211,1.2268,3.0558,3.2689,8.3131,7.6672,2.403,2.6449,1.8084,1.7543,1.7987,1.6677,9.2137,10.3743,2.0893,2.164,1.5695,1.9636,11.1104,11.0321,1.4979,1.685,1.0042,1.0318,11.829,12.7407,4.4575,4.6578,6.6309,7.5526,3.8999,3.0401,8.1985,8.1117,6.2985,6.5127,6.3405,6.2006,2.581,2.7935,1.1214,1.4395,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd64,80,80,F,1.8908,2.3987,0.36634,0.40836,0.75455,0.67372,17.356,3.1894,3.1426,42.7345,43.4145,13.2066,13.3742,201.5903,200.1052,1.5971,3.0205,2.6672,0.4896,0.41883,18.6268,23.2024,1.3718,1.3376,3.5052,3.5774,6.0902,6.4523,4.2961,4.6436,0.06899,4.5531,2.0564,2.2879,0.41104,0.40055,3.4098,4.2679,4.258,4.2454,1.6798,1.3355,9.5858,7.9257,3.1364,3.0649,3.455,3.7547,4.3213,4.1242,1.4921,1.3591,2.0772,1.881,3.5773,3.4007,6.3825,6.303,1.8536,2.0366,5.6349,5.5544,9.6159,10.063,7.5364,7.6057,2.2932,2.0924,4.3572,4.3147,1.6854,1.6391,16.6491,16.165,4.4035,4.9091,3.449,3.8401,1.0214,1.101,2.4465,2.2434,7.2337,6.6773,10.9933,12.0241,2.7527,2.7212,3.6371,3.7316,3.1209,2.7283,1.72,1.3436,3.8912,4.2633,9.8153,9.6138,2.764,2.9646,2.4135,2.2773,1.9658,2.3143,9.3905,9.8466,2.421,2.3991,2.2428,2.4076,12.8277,13.0462,1.7123,1.9411,1.1692,1.1687,13.9114,14.0161,4.8984,4.9381,7.4967,8.3733,3.8308,2.7602,9.6935,9.5963,6.9532,6.4193,7.2461,6.9603,3.6933,3.2693,1.5479,1.5672,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd65,,,F,1.6004,1.6818,0.36741,0.40996,0.76962,0.75879,17.2171,2.7093,2.8282,42.7345,42.7427,14.9968,15.2551,208.0855,204.9386,1.2083,3.2064,2.9787,0.66079,0.64834,11.259,12.3254,1.4802,1.4805,3.339,3.1849,6.1679,6.4181,4.1359,4.3168,0.07519,4.1678,1.9834,2.5436,0.36306,0.36231,3.6238,4.3267,3.5168,3.6905,1.8041,1.3823,9.3639,8.4609,2.8999,2.9829,3.9054,3.7099,3.9735,4.1411,1.5398,1.4514,1.7829,1.7798,3.695,3.1335,7.337,6.8662,2.1897,1.9547,5.7668,6.3053,10.8828,10.6209,7.143,6.7004,2.3407,2.0127,4.3567,3.9784,1.7486,1.7409,19.4533,19.245,5.1017,5.6835,3.9069,3.5284,1.0201,0.97622,2.5015,2.4824,7.9019,6.5125,13.7782,12.8805,2.5345,2.8797,3.9417,4.1678,2.9823,3.4832,1.5399,1.2029,3.797,4.1069,9.1317,9.5475,2.7925,2.9475,2.0359,2.0142,2.4668,2.1978,9.1502,11.3727,2.2627,2.1624,1.8378,1.984,12.9534,12.1891,1.9109,1.6888,1.0766,1.1387,12.4816,12.7452,5.3249,4.9639,7.5605,8.5838,3.6293,3.3276,9.0019,9.8944,7.3442,7.0293,7.0508,6.9268,3.2086,3.082,1.3691,1.4827,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd66,63,63,F,1.7016,1.8801,0.34365,0.36127,0.755,0.79298,17.7846,2.6777,2.7309,47.2251,47.8707,14.1082,14.5162,213.2188,206.891,1.3861,2.9139,2.9775,0.44145,0.39909,13.0689,14.9227,1.5049,1.5513,2.9851,3.3269,6.4665,6.6555,4.6607,4.8877,0.07678,4.3138,2.0463,2.6222,0.34776,0.37354,4.1466,4.7178,4.0374,4.0577,1.8409,1.6665,8.8971,8.1155,2.5383,2.4315,4.0143,3.6323,3.5822,3.1617,1.5192,1.485,1.9982,1.9224,3.5305,3.2451,6.7617,6.7072,2.1785,2.0406,5.8472,5.6658,10.1011,10.2714,6.4011,5.4669,2.2463,2.3544,4.2838,4.4298,1.8653,1.825,16.1406,15.3283,5.0812,5.7141,3.854,3.8787,0.87342,1.1814,2.3686,2.4756,8.9934,7.1431,12.4217,11.453,2.4907,2.5224,3.3293,3.6264,3.5849,3.3267,1.4701,1.4118,3.9306,4.224,9.8153,9.4709,2.7282,2.9658,2.3943,2.3329,2.0408,2.008,10.0747,10.3747,2.1004,2.4615,1.9927,1.9493,12.1733,12.1998,1.5956,1.9069,1.1181,1.1489,12.3433,12.2218,5.4414,5.3632,7.1656,7.854,3.3701,2.814,9.4402,9.1445,6.3466,6.3098,7.4567,6.2784,3.2215,3.7842,1.385,1.5102,,29,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd67,75,75,M,1.6014,2.0363,0.38561,0.42597,0.88136,0.90626,19.6638,3.1106,2.4915,54.2284,56.7564,16.2603,16.1223,213.4166,211.7263,1.3578,3.5712,3.3065,0.57608,0.44917,9.3245,10.939,1.5901,1.5537,3.9886,4.2169,6.7267,6.9214,4.6503,4.9331,0.07735,5.5523,2.6203,3.0682,0.42573,0.43687,4.8714,5.3957,4.7486,4.7668,2.076,1.7786,10.5766,10.3484,3.1923,3.0643,4.7858,4.3879,5.0981,4.6505,1.913,1.8925,2.3292,2.1829,3.9677,3.7187,8.823,9.7987,2.207,2.3896,7.3511,6.7305,12.6225,12.5923,8.6827,7.9342,2.5671,2.5848,5.4616,6.12,2.0523,2.1563,21.7039,20.5391,5.9957,6.4612,4.1304,4.2652,1.0672,1.3127,2.501,2.8102,9.0757,7.9306,16.6489,16.0116,2.9033,3.2347,5.0057,4.9305,4.0271,3.4918,1.6892,1.6983,4.4305,4.9742,11.4473,11.6249,3.3221,3.2491,2.6001,2.713,2.2238,2.6079,10.3739,11.6908,2.6649,2.9114,2.5206,3.0548,13.4881,13.5479,1.8163,2.072,1.5046,1.5581,16.53,16.3563,5.5948,5.6492,8.4487,9.5017,4.1532,3.1072,10.7296,11.324,7.9658,7.5332,8.5438,8.6315,4.1574,4.5087,1.6521,1.699,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd68,81,81,M,2.6191,1.6601,0.41411,0.47796,0.9583,0.862,17.2523,3.0201,3.1553,46.091,48.2509,14.6937,15.1321,251.5014,252.5392,1.5899,3.5268,3.2942,0.68395,1.0311,18.3746,23.0601,1.718,1.7807,4.3835,4.3575,6.9178,7.0601,4.7012,4.9244,0.08702,4.3842,1.9311,2.4745,0.40534,0.40583,4.5861,4.9562,4.3379,4.7752,1.912,1.7823,10.7095,10.1702,3.7793,3.8162,4.1937,4.1455,5.0343,4.3323,1.8996,1.7173,1.9989,2.0304,4.0081,3.4294,7.7757,7.8381,2.2082,2.4793,6.9251,6.7984,11.7446,11.5464,8.4069,7.7564,2.3747,2.611,4.3691,4.7181,1.9492,1.9712,17.9533,19.015,5.7823,6.5377,4.0427,4.2149,1.1281,1.22,2.822,2.8842,8.135,7.1,13.8898,14.0719,3.6256,3.8397,4.4893,4.5582,3.3994,3.4886,1.5772,1.6557,4.1235,4.5911,10.9989,11.096,3.2669,3.4016,2.458,2.4106,2.3449,2.6919,10.596,11.6129,2.316,2.6944,2.0387,2.4174,13.4418,13.5991,2.1391,2.2449,1.3177,1.4297,17.322,14.8471,6.0458,5.7101,7.7676,8.9752,4.5039,3.2678,10.3266,10.7001,8.0056,7.898,8.8386,8.1949,3.708,3.9851,1.518,1.6597,,27,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd69,,,F,1.0706,1.2781,0.38794,0.41664,0.74739,0.7832,15.3848,2.7122,2.7349,39.3674,39.5564,12.6382,13.0176,219.7823,222.2557,1.0778,2.86,3.0083,0.64781,0.50392,9.5205,13.9193,1.585,1.5627,3.4216,3.3868,7.0444,7.1954,4.0537,4.2817,0.07014,4.4069,2.0977,2.2385,0.3361,0.32912,3.4598,3.8512,3.7741,3.8737,1.6117,1.411,8.9583,9.481,3.0221,2.9683,3.6484,3.2669,4.2654,3.7841,1.381,1.4328,1.7505,1.7447,3.4529,2.8299,6.0484,5.6216,1.9636,1.8816,5.4877,5.4631,10.3798,9.0952,6.92,6.6905,2.0833,2.061,3.9765,4.0007,1.5278,1.5214,16.7566,15.9371,4.4185,5.3288,3.5988,3.688,0.95841,0.875,2.1641,2.2308,6.5434,6.0421,12.4217,11.9449,2.5782,2.7924,3.6761,3.7928,2.8152,3.1947,1.2752,1.3436,3.5588,3.6757,8.402,8.4152,2.4115,2.8056,2.0716,2.1286,2.1497,2.0978,9.0846,10.3112,2.2418,2.2152,1.7805,2.196,10.1731,11.2346,1.9249,1.612,1.0546,1.1289,13.8968,12.6978,4.7844,4.5418,7.9005,8.0448,3.8384,2.8281,10.3461,11.05,6.7893,6.0233,6.4587,6.1066,2.8891,3.3935,1.3803,1.4168,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd70,78,78,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd71,58,58,F,0.99857,1.7414,0.34181,0.41026,0.81298,0.81016,15.5056,2.6802,2.7995,48.774,45.5465,12.6077,12.7326,207.8475,202.3092,1.1103,3.2027,3.0738,0.44345,0.39909,14.947,18.2943,1.4352,1.4294,3.0823,3.3609,6.1788,6.5008,4.0058,4.171,0.07584,4.704,2.3313,2.6553,0.39444,0.38493,3.8431,4.3886,3.6452,3.8666,1.6552,1.5808,10.4568,8.8545,2.8737,2.666,3.9693,3.891,4.2102,4.107,1.5953,1.6097,1.8693,1.9031,3.3198,3.268,7.0986,6.9452,1.9435,1.781,6.1375,5.8779,11.4184,10.8767,7.6204,7.1502,2.0994,2.5188,4.4276,4.4569,1.6735,1.6692,18.315,17.763,5.249,6.1263,3.7851,3.6104,0.99017,1.0889,2.2753,2.5861,7.1016,6.1395,13.1632,13.4239,2.7509,2.8725,4.2429,4.012,3.3159,3.286,1.5348,1.4832,3.745,4.0252,9.8992,9.6351,2.9279,3.0593,2.1191,2.0545,2.0855,2.0218,10.0317,11.4993,2.2809,2.4615,1.843,2.085,11.0072,11.3711,1.7164,1.6792,1.2017,1.2342,12.34,11.5783,4.6988,4.7226,8.2762,8.0408,3.3772,3.3862,10.1367,10.5664,7.0391,6.5548,7.3667,7.7004,3.4369,3.7364,1.4022,1.3469,,23,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd72,78,78,M,1.7918,2.1243,0.2972,0.35158,0.7685,0.69628,17.5478,2.5534,2.6666,47.9737,48.3291,14.1082,14.9131,202.9975,201.3279,1.1571,3.143,2.8714,0.58387,0.47649,11.8847,17.4652,1.5012,1.501,3.2527,2.9568,6.3611,6.8546,4.3675,4.4876,0.07815,4.9481,2.1969,2.5664,0.36026,0.34224,3.8518,4.1991,3.6431,4.1797,1.7669,1.3901,9.7188,9.6711,3.042,2.7674,3.7919,4.0413,4.3885,3.665,1.5594,1.3406,1.8272,2.0771,3.8571,3.6495,6.8674,5.647,2.1634,2.1155,6.1681,5.7585,10.1361,8.9927,7.2899,7.1401,2.1214,2.0127,4.5309,4.4899,1.8738,1.8729,18.2751,17.8268,5.129,5.5199,3.9369,3.7981,0.9656,1.0397,2.4737,2.3103,7.1901,6.5953,13.5027,12.0562,2.563,2.8136,4.1177,4.1456,3.1402,3.5374,1.5158,1.3295,3.4305,3.6379,9.3341,9.1187,2.8765,3.1551,1.9765,2.065,2.2135,2.4133,9.7286,10.7874,2.0774,2.1045,1.7949,2.0569,11.574,12.0505,1.6213,2.1993,1.1089,1.1614,14.3833,14.2595,5.1077,4.8334,7.5447,8.3731,4.204,3.8647,8.5336,10.0392,6.3764,5.9411,6.3894,6.1349,3.3421,3.7842,1.2189,1.491,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd73,76,76,F,1.8949,1.3802,0.35875,0.37575,0.65252,0.63576,16.8748,2.8806,2.7872,46.7065,45.9081,12.6576,14.0604,160.9065,160.0347,1.6692,2.9506,2.5938,0.92382,0.97396,18.5472,20.5697,1.4111,1.4019,3.1852,3.187,5.7143,5.9495,4.3919,4.6656,0.08037,4.993,2.1171,2.4032,0.34125,0.34323,3.8254,4.3176,3.7177,4.0424,1.6327,1.3184,9.913,7.9257,2.9111,2.4942,4.013,4.2457,4.3431,4.5532,1.4152,1.3347,1.8952,1.9302,3.2689,3.1256,7.0467,7.3371,1.7185,1.8472,6.497,6.1849,10.9749,11.4554,7.2448,6.233,2.1926,2.1617,4.4383,4.4597,1.3704,1.4901,16.2826,17.4871,5.1888,5.6435,3.2182,3.5444,1.2128,1.0929,2.5934,2.3079,7.1171,6.6941,14.1728,13.1288,2.9165,3.03,3.6688,3.5194,3.1616,2.7669,1.4397,1.4926,3.9743,4.3803,10.2395,9.9526,2.7068,2.7592,2.2326,2.4505,2.0855,2.3586,8.9611,11.3341,2.3375,2.3786,1.9335,2.3513,11.3061,12.6653,1.6088,1.9041,1.0038,1.0772,13.7655,13.3816,4.6871,4.7192,6.8857,7.8364,4.2164,3.3597,10.4408,9.5738,7.422,6.5692,6.9081,7.1556,3.4745,4.0303,1.2969,1.7699,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd74,77,77,F,1.9673,2.8461,0.33293,0.42615,0.78023,0.78422,16.8427,2.6143,2.7829,42.7345,42.5416,14.0549,14.4579,198.5983,197.3386,1.6855,3.0522,2.8692,1.157,1.0578,21.6844,22.8793,1.6183,1.6056,3.3506,3.4616,6.1977,6.7046,4.4807,4.6758,0.07234,4.4349,1.9851,2.4388,0.37217,0.33822,3.2603,4.1208,4.1616,4.2191,1.4647,1.3274,9.5932,8.3953,3.0446,2.9403,4.1768,4.4532,4.9171,4.2452,1.4653,1.4146,2.0236,1.8755,3.2079,2.9676,6.836,6.2539,1.9615,1.9173,5.9288,5.9483,10.9414,8.9824,7.151,6.5649,1.9513,2.1293,4.165,4.1706,1.5375,1.539,15.5214,15.8475,4.6644,6.0483,3.1633,3.5812,0.92636,1.0472,2.3765,2.3103,6.8024,6.6575,12.6504,11.7532,2.9064,3.688,3.6224,4.0093,3.3829,2.8882,1.314,1.4402,3.5904,3.9301,10.402,9.804,2.7381,2.7938,2.5381,2.3986,2.3147,2.3713,8.8352,9.4535,2.2067,2.3531,2.1847,2.3099,10.712,10.2988,2.0045,2.0344,1.0128,1.0522,13.9114,12.3174,4.6414,4.7897,6.6039,8.9842,4.1733,3.1777,10.4029,9.8716,6.0187,6.7777,6.6822,6.1146,3.2971,3.4506,1.6639,1.8178,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd75,81,81,F,1.3485,1.8325,0.32134,0.37602,0.67783,0.70712,16.3111,2.4642,2.4381,40.571,41.159,13.1521,13.93,194.9975,189.1448,1.1402,2.7353,2.4134,0.55737,0.76297,21.4528,24.447,1.4372,1.4388,2.7133,2.6628,6.0978,6.3765,4.2798,4.4197,0.06877,4.6274,2.0045,2.2,0.31937,0.33103,3.2997,3.7709,3.3055,3.5396,1.5475,1.37,8.6147,8.6227,2.2766,2.0088,3.1507,3.4878,3.3844,3.0535,1.2855,1.3546,1.6913,1.7142,3.2655,2.9913,6.176,5.698,1.7754,1.7464,4.8907,5.8218,9.5523,8.7208,5.7616,5.6016,1.8609,1.9433,4.0806,4.2148,1.4825,1.5077,15.6178,15.8475,4.149,5.3989,3.3093,3.4158,0.97928,0.96225,2.3302,1.9147,6.3032,5.8097,11.541,10.4151,1.852,2.7676,3.363,3.5905,2.9641,3.2162,1.2925,1.2729,3.4229,3.6734,8.2805,8.9246,2.4313,2.4135,1.9103,1.9743,1.7651,2.2497,9.0085,9.9579,1.9126,1.9953,1.8158,1.9312,10.0972,10.8212,1.5309,1.7093,1.0483,1.0497,13.7673,13.1403,4.509,4.5392,6.5966,7.5637,3.5403,2.7854,8.8864,9.5526,6.4643,5.7493,6.4502,5.8683,2.8685,3.1222,1.2209,1.4045,,28,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd76,61,61,M,2.3493,2.4455,0.35128,0.38133,0.84773,0.83178,18.339,2.7661,2.6821,50.9428,50.4786,15.5627,16.2364,253.2645,252.0335,1.9368,3.3311,3.1951,2.1061,1.9334,24.1549,19.7701,1.7198,1.7194,3.4955,3.7739,6.6072,6.686,4.8238,4.9601,0.08307,5.6116,2.5519,3.0265,0.33923,0.35595,4.2473,4.7613,4.1956,4.0762,1.7905,1.4925,9.1013,8.843,3.6393,3.3389,3.8898,4.0122,4.7055,4.6044,1.6422,1.6079,1.9656,2.2077,3.6906,3.198,7.894,7.3156,1.9719,1.9279,6.9397,6.5748,11.7446,11.0933,8.8864,7.6496,2.2305,2.36,4.6232,5.0769,1.7002,1.6868,16.8669,17.7781,5.1801,6.6039,3.5903,3.688,0.98305,1.0459,2.3532,2.2716,7.5962,6.9119,14.0409,14.5989,2.1188,3.3037,4.2779,4.5181,2.8978,3.1158,1.4907,1.6476,4.1452,4.6571,10.9995,11.096,2.9699,3.2698,2.3157,2.3272,2.31,2.3117,8.7061,10.0361,2.3864,2.4864,2.138,2.4308,11.6113,11.857,2.1247,1.6991,1.1994,1.2805,13.6742,12.6499,5.2403,5.6441,7.1078,9.726,4.1025,3.7167,10.2113,10.1761,8.2144,7.583,7.4341,7.5218,3.5716,3.3848,1.6241,1.4211,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd77,,,M,2.171,2.3676,0.32695,0.371,0.7271,0.74459,18.0333,2.2687,2.3463,45.9484,45.2612,15.5951,15.8947,203.5476,194.6723,1.947,2.8581,2.5777,0.71055,0.85492,15.5524,17.7403,1.4935,1.4444,3.1677,3.3637,6.1315,6.6802,4.1289,4.2763,0.0769,5.2786,2.2369,2.4471,0.31937,0.3343,4.0428,3.972,3.6817,4.0423,1.6495,1.4051,9.913,8.3889,3.0446,3.0013,3.8351,4.1743,4.6168,4.3473,1.4113,1.4315,1.6729,1.9201,3.4889,3.0078,6.9003,6.7283,1.8657,1.8935,5.6505,6.8921,10.6925,9.7307,7.6111,7.7103,1.9606,2.0625,4.6062,4.5402,1.5356,1.5442,16.2808,16.5078,4.9339,6.4362,3.3936,3.5985,0.70435,1.0072,2.1808,2.297,6.8391,6.2941,12.1609,11.3543,2.9587,3.3767,3.7109,4.1242,2.755,2.7807,1.3389,1.2667,3.3562,4.066,9.1457,10.1186,2.5765,2.9875,2.1284,2.2649,2.2033,2.4362,8.9765,9.8737,2.0741,2.1719,1.8823,2.0608,11.9469,11.3461,1.8895,2.2553,1.0551,1.0943,12.5964,11.9654,5.0937,5.2669,8.2169,9.085,4.6134,3.6118,8.5336,9.6914,7.2047,7.5151,6.9801,6.9502,2.7421,3.0403,1.4508,1.4275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd78,,,M,1.7692,1.701,0.46431,0.48466,0.94615,0.8882,21.3172,3.7532,3.5314,53.1828,52.2641,18.3548,18.277,262.0686,257.7759,3.0552,3.6067,3.4104,0.70855,0.58997,34.3032,37.4298,1.911,1.8463,4.2333,4.5662,7.3684,7.6513,5.1523,5.3933,0.08927,5.3587,2.6508,2.8551,0.41032,0.41794,5.7576,5.8186,4.571,4.8936,2.2097,1.9205,11.7868,9.7685,3.7986,3.5196,4.4609,4.7189,5.5132,4.1745,1.9833,1.8342,2.325,2.048,4.2709,4.5646,8.5667,7.8056,2.7332,2.6111,7.5573,7.8584,13.1952,11.3035,8.5558,7.9282,2.8403,3.0093,5.1521,5.2113,2.3381,2.3246,20.661,21.2659,5.9957,6.9543,4.7119,5.0118,1.1411,1.1754,2.831,3.0938,9.9152,7.8726,16.6489,14.6139,3.5247,3.9336,4.3109,4.5838,4.157,3.2288,1.7702,1.8138,4.722,5.5754,12.5596,12.2125,3.0314,3.4223,2.8499,2.5561,2.53,2.9455,10.4138,10.647,2.8364,2.8316,2.6326,2.8625,13.1199,13.5991,2.2101,2.2838,1.359,1.3665,16.823,17.7676,6.0458,6.0767,8.6232,11.8785,5.1807,4.0462,11.9661,13.2127,8.7938,8.5477,9.2186,8.911,4.1643,4.2005,1.6686,1.9831,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd79,,,M,1.1606,2.3561,0.47365,0.54746,0.96734,0.98178,19.3177,3.273,3.1684,54.7687,54.1574,16.1786,16.5995,271.7577,265.6812,1.1773,3.4125,3.3822,0.8319,0.47793,14.8505,18.833,1.8444,1.8178,4.0291,4.158,7.3684,7.6513,4.7776,5.1161,0.08805,4.6166,2.2871,2.6853,0.45532,0.46534,4.5854,5.2181,4.63,4.9237,1.9153,1.7476,11.4297,10.3576,3.7986,3.7225,4.3528,4.622,5.4218,5.3929,1.948,1.8556,2.4437,2.6485,4.2283,4.1818,8.823,8.4934,2.3498,2.238,7.6287,8.0441,13.9916,13.2533,8.8864,8.3526,2.3599,2.747,4.9104,5.1103,2.0711,2.0628,20.2924,19.6225,6.1715,7.2491,4.4177,4.3599,1.1214,1.1164,2.8466,2.8053,9.196,7.8222,17.1263,16.1211,3.4708,3.7564,4.8411,5.3126,3.9768,3.7138,1.8614,1.7543,4.9277,5.2164,12.0285,12.1484,3.2428,3.7096,2.588,2.5969,2.6699,2.9574,10.4138,12.9774,2.3846,2.8669,2.3494,2.5804,13.2394,13.2312,2.1174,2.4797,1.4368,1.3904,15.7713,17.0909,6.1697,5.9413,9.4078,11.0348,4.9162,3.9117,11.866,11.7601,8.5808,8.3054,9.0227,8.4177,4.1855,4.28,1.7493,1.948,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd80,73,73,F,1.002,1.4216,0.40629,0.44194,1.0815,1.026,20.4108,3.212,3.0196,51.3774,52.0746,17.4447,17.01,252.7015,253.9332,1.22,3.9872,3.6979,0.43528,0.33711,8.2854,8.6635,1.7723,1.7541,4.2087,4.5662,8.5553,8.5451,5.0063,5.3377,0.08861,4.4245,2.2373,2.97,0.45912,0.57889,4.7836,5.1765,4.2667,4.5576,2.076,1.8698,11.5993,10.8554,4.7937,4.4077,4.015,4.3044,5.6221,5.8995,1.9954,2.1113,1.9982,2.0626,4.7077,4.2203,8.9677,9.7987,2.7332,2.7388,8.1387,7.9157,13.0245,12.9861,9.245,9.5624,2.7488,2.7463,5.3636,5.8873,2.34,1.9821,21.6418,22.0556,5.696,7.1553,4.7054,4.9299,1.4446,1.3973,2.9005,3.3245,8.7683,8.5037,16.5637,15.8882,3.6796,4.5715,4.98,5.647,3.5751,3.5502,1.7555,2.08,4.3129,4.6564,10.9604,11.3723,3.3891,3.4088,2.4656,2.3972,2.2439,2.3061,12.4968,11.6598,2.6904,2.9495,2.1508,2.6861,12.5464,13.1306,2.0492,1.9472,1.3847,1.4624,18.3793,15.6758,6.262,6.08,9.1852,9.8394,5.3792,3.9205,11.9661,12.1876,7.5164,8.9813,9.5512,9.1,3.7104,4.0873,1.5511,1.5416,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd81,60,60,F,0.97219,1.759,0.33504,0.37441,0.75465,0.79963,16.1622,2.4875,2.5484,44.5202,44.55,12.5599,12.7326,180.3954,171.3762,0.91896,3.0307,2.6776,0.39474,0.40243,8.1124,7.1916,1.4005,1.367,3.6119,3.5786,6.2558,6.3765,4.0602,4.2061,0.07325,4.6638,2.2356,2.2641,0.32261,0.33844,4.0819,4.8586,4.0004,4.038,1.7991,1.4945,9.083,6.9952,2.6141,2.5195,3.8306,3.8421,4.5978,4.362,1.5099,1.4933,1.8055,1.9966,3.4443,3.177,7.3078,6.5086,2.0366,2.1155,6.0955,5.345,10.5303,9.8659,7.3233,7.3066,2.1953,2.324,4.4148,4.7222,1.8029,1.902,17.5666,19.015,4.0075,5.2847,3.8541,3.8465,1.1256,0.87729,2.3051,2.3054,8.4398,6.7962,12.9491,13.0122,2.7054,2.9748,4.1804,4.2322,3.0754,3.5374,1.4578,1.387,4.0284,4.503,9.7225,10.4812,2.8246,3.0087,2.2439,2.2624,2.2135,2.398,9.3905,11.6489,2.3864,2.4218,2.102,2.3251,13.196,14.2066,2.052,1.8886,1.0813,1.0938,13.0274,14.2183,5.9981,5.8481,7.184,7.9869,4.0222,3.2142,10.0134,9.8361,6.9538,7.3223,7.2818,6.8558,3.0571,3.8888,1.505,1.5738,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd82,73,73,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd83,66,66,M,1.7674,1.9681,0.44771,0.53429,0.63104,0.74646,21.694,3.5623,3.217,53.1828,51.7551,16.5911,17.1,249.6425,238.7424,3.0552,2.8547,2.8842,1.1855,1.5703,33.4486,35.0719,1.7801,1.7443,4.1402,4.2219,7.7882,7.5645,5.0986,5.3992,0.10009,5.3115,2.4335,2.8273,0.42742,0.44719,5.4144,5.2847,4.7486,4.6396,2.1383,1.5926,12.4061,11.3323,3.3355,3.1698,5.1061,4.6133,4.7764,4.5407,1.2855,1.5106,2.2825,2.2501,5.3607,4.2798,6.9342,7.3443,2.3084,2.4791,8.2916,7.4495,10.9084,11.4554,8.5128,7.7304,2.6087,2.5075,5.7806,5.5629,2.0714,2.0756,22.9857,22.7685,5.8744,7.1611,4.4043,4.6553,1.435,1.5042,2.9005,2.8949,8.6872,8.4238,14.4125,14.6139,3.5397,3.7749,4.6643,4.8159,3.8602,3.0816,2.0435,1.7338,3.8501,4.4772,10.2318,9.739,2.6144,2.9435,2.602,2.5239,2.5274,2.6107,13.1671,11.5897,2.6482,2.7405,2.6326,2.7685,13.0812,13.5479,2.1358,2.599,1.3886,1.3665,17.274,15.8498,5.7327,5.6403,10.1282,9.081,4.9509,3.4951,10.4075,11.3401,8.8438,7.5533,7.36,7.5415,4.0988,4.3416,1.6686,1.9406,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd84,65,65,F,1.3555,2.2589,0.33046,0.37961,0.64242,0.71697,14.5161,2.3829,2.224,40.7918,40.9443,12.3163,12.8799,191.4117,195.881,1.2126,2.5942,2.5602,0.64781,0.40884,11.7448,13.6065,1.3856,1.4396,3.0072,3.1216,6.1602,6.5673,3.9009,4.1507,0.07027,4.5122,2.0021,2.1836,0.33314,0.33409,3.2474,3.9392,3.5752,3.8616,1.8882,1.5153,9.622,8.8677,2.7907,2.833,3.7878,4.0186,4.5577,4.0269,1.4172,1.5204,1.815,1.8263,3.869,3.3237,6.0063,6.3199,1.9449,1.7852,6.8592,7.438,9.2432,9.4202,7.3233,6.7686,2.3719,2.5384,4.2057,4.7902,1.5375,1.5494,18.0849,18.6146,5.569,6.6593,3.8941,3.8186,1.0439,1.323,2.2721,2.393,7.5001,5.955,10.2149,10.6656,3.3871,4.0632,4.0474,3.7121,3.1817,3.4872,1.7361,1.5459,3.5351,3.9562,9.1766,9.1818,2.4115,2.7706,2.0682,1.9411,2.7577,2.7322,8.7885,10.436,2.0888,2.3116,1.9056,2.1099,10.9663,11.5403,1.9137,2.3175,0.97914,0.98202,14.511,14.6131,4.607,4.8703,7.9005,8.3596,4.363,3.7769,9.4762,10.605,4.9838,5.7279,6.2998,6.2477,3.3092,4.3223,1.5501,1.5055,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd85,66,66,M,1.4694,2.2987,0.32552,0.34567,0.69704,0.61588,15.21,2.5612,2.626,39.8014,40.8598,12.4457,12.4404,197.9988,187.6717,1.4373,3.0009,2.5632,0.4878,0.39808,9.7001,11.423,1.3283,1.2745,3.9906,3.8441,6.0708,6.0733,4.1014,4.1851,0.07289,3.7738,1.8396,2.3772,0.31235,0.34819,2.7669,3.4415,3.7741,3.7464,1.5734,1.373,3.2251,9.012,2.2925,2.3661,3.4696,3.2669,3.8648,3.4434,1.3899,1.3032,1.7505,1.9383,3.1846,2.6099,6.1642,5.8912,1.8396,1.8904,5.1369,5.5081,9.917,9.2873,6.3538,6.0848,2.0464,1.9197,3.1064,3.7306,1.4837,1.4795,15.764,15.3308,4.4224,5.1045,3.4559,3.6231,0,0,0,0,5.7327,4.7167,11.541,11.6121,2.1433,2.7125,3.2957,3.5655,2.755,2.7807,1.3816,1.2201,3.4211,3.8782,7.3639,8.5779,2.5732,2.5647,2.1078,2.0161,1.974,1.9638,9.3283,9.5542,1.7636,2.2263,1.7444,1.7416,10.6592,11.4156,1.6023,1.9203,1.0433,1.0849,12.3132,13.0649,4.0735,4.3549,6.6869,8.1767,3.2195,2.772,8.5565,7.6989,6.1488,6.3194,6.3405,6.727,3.2925,3.2663,1.3691,1.4862,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd86,66,66,F,1.2587,1.7177,0.38364,0.41664,0.7548,0.72415,17.5712,3.1106,2.4915,43.8168,43.3698,14.0423,14.4078,213.0143,206.1572,1.0976,2.8766,2.5777,0.50568,0.66927,16.4044,21.2815,1.4184,1.3657,3.5593,3.6937,6.0902,6.2616,4.4063,4.5025,0.06836,4.4952,2.0564,2.4315,0.35475,0.36743,3.5452,4.1131,3.7949,4.055,1.8686,1.502,9.1914,7.6134,2.2066,1.8742,3.5689,3.8617,4.0856,3.6756,1.5285,1.5054,1.8194,1.7596,3.5202,3.1916,6.8294,6.303,2.0793,1.9794,6.666,6.2704,10.9634,9.9019,6.5278,5.6169,2.3719,2.5224,4.1469,4.0497,1.7235,1.6281,16.7345,18.6146,4.7603,6.0522,3.8634,3.8426,1.0944,1.2013,2.3075,2.5586,6.8938,6.5125,13.0638,11.7806,2.877,3.03,3.6956,3.6566,3.316,3.0267,1.4006,1.5541,3.6401,4.0399,9.7507,9.5026,2.8073,2.9706,2.1167,2.1711,1.5756,2.1324,9.0295,10.9548,2.0726,2.5033,1.8687,2.0946,11.5468,12.6951,1.647,1.8782,1.1062,1.1623,13.2221,12.943,4.6871,4.4374,6.883,7.8429,4.3805,3.6493,9.4686,9.2149,6.2928,6.0908,7.4567,6.2556,3.3918,4.1227,1.299,1.2297,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd87,60,60,M,2.3612,2.1091,0.39851,0.42969,0.78849,0.80505,18.3098,3.1376,2.8533,45.5865,46.8683,14.2442,13.7043,201.0276,200.344,2.1285,3.1412,2.9782,2.4881,1.6943,31.5216,28.7946,1.3987,1.4068,3.5193,3.4941,6.0473,6.4181,4.4367,4.7121,0.07994,5.2786,2.437,2.6288,0.41127,0.42219,4.001,4.4643,4.0728,4.3508,1.9582,1.5591,10.4294,9.3932,2.6385,2.4011,4.1322,4.5763,4.1195,3.4995,1.3855,1.502,2.0791,2.0471,3.9318,3.4707,6.8047,6.7324,2.39,2.3589,5.9165,5.3991,11.0775,10.8031,6.9075,7.1866,2.5124,2.5257,3.5995,4.6783,1.7901,1.8758,19.2383,20.0176,4.9089,5.9526,4.2661,4.5213,0.98132,1.1718,1.9825,2.5269,7.3267,6.6487,14.516,13.6412,2.4179,2.8025,3.5923,3.8738,3.6352,3.5708,1.7914,1.6574,3.3487,3.9726,9.1766,9.5155,2.7607,2.9739,2.5976,2.5011,2.0929,2.399,11.1468,12.3052,2.6458,2.9642,2.1795,2.7221,12.8111,12.271,1.62,1.9438,1.3131,1.3238,14.6309,14.7358,5.1077,5.3845,8.3565,9.6382,3.6213,2.9346,11.0128,11.3401,7.0267,6.6646,7.0886,6.9161,4.2839,4.2163,1.4217,1.8423,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd88,77,77,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd89,,,M,1.7692,1.9902,0.38019,0.42851,0.90876,0.80523,18.92,3.0643,2.9504,45.176,45.7024,14.9021,15.7034,237.8669,233.4226,1.6919,3.6414,3.2341,0.6937,0.50083,13.2517,13.0165,1.7416,1.7534,3.7169,3.7317,7.663,7.9311,4.8194,5.0305,0.08307,4.1815,2.021,2.4456,0.38884,0.40256,4.1933,5.0062,3.7839,4.0341,1.6139,1.763,10.7906,9.1975,3.5698,3.2596,4.3756,3.949,5.0362,4.7112,1.6649,1.5896,1.8918,2.0259,4.1186,3.6493,7.7197,7.7465,2.1971,2.0793,7.0424,7.9824,11.9752,10.5925,8.7852,7.4205,2.2263,2.5896,4.3896,4.7967,2.044,2.0763,19.6056,20.1029,5.4599,6.9325,3.8132,3.9294,1.1688,1.0477,2.6537,2.3342,9.4104,7.5799,16.2235,13.5201,3.8541,4.4443,4.9467,5.3126,3.6326,3.4065,1.6746,1.589,4.5097,4.9629,11.2362,10.7426,3.2315,3.5072,2.2767,2.3017,2.4843,2.6184,10.0542,10.9446,2.418,2.4995,2.1876,2.408,13.884,12.0469,1.9454,2.1021,1.3886,1.4764,14.6949,16.1223,5.5549,5.5889,7.6425,8.6361,4.958,4.4032,11.0831,11.5678,7.2628,7.8346,9.073,8.0227,3.8485,3.8991,1.5964,1.4679,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd90,,,M,1.535,3.2169,0.42772,0.46979,0.85776,0.89013,20.0511,3.1208,2.8533,49.9711,50.7717,16.6933,16.4774,254.1394,257.2867,1.2541,3.4752,3.3067,0.5428,0.54447,13.9526,16.483,1.7571,1.7829,4.7141,4.806,7.3684,7.7073,4.8753,5.3393,0.0767,5.2514,2.4024,2.9397,0.40948,0.41794,4.9389,4.8237,4.4507,4.2912,2.0729,1.8239,10.8441,8.3359,3.0636,3.2526,3.5981,3.9289,4.3404,4.6934,1.7149,1.7514,1.9749,2.2218,3.9362,3.5318,7.6151,7.7126,1.9854,2.2647,8.2003,7.1483,12.4866,11.7584,7.9894,7.2281,2.7488,2.7562,3.9635,4.6783,1.9892,2.0095,20.253,19.7988,5.4663,6.1152,4.6467,4.7475,1.1114,1.1105,2.3051,2.5701,8.3765,7.4626,16.2228,14.8918,3.1402,3.8486,4.2286,4.1489,4.1233,3.6257,1.9195,1.7048,4.2346,4.8171,10.6144,11.103,2.8367,3.3641,2.2915,2.2839,2.0859,2.2891,9.1008,10.682,2.5118,2.8669,1.8859,2.0773,10.9804,12.9433,1.8905,1.8746,1.2255,1.2912,14.6171,16.7898,5.5549,5.4097,8.3454,8.6043,4.4738,3.6135,10.0633,10.7372,7.4072,8.5547,7.6754,8.105,3.9782,4.0992,1.3885,1.3773,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd91,72,72,F,3.1708,4.2231,0.29537,0.36355,0.69194,0.78021,15.8248,2.3546,2.2924,41.5171,40.3567,13.0955,13.7861,166.1759,164.9992,2.3965,3.2062,3.0014,2.333,1.4453,30.421,25.9158,1.1776,1.2209,3.5762,3.8535,5.8359,5.6381,3.6561,3.8679,0.06805,4.181,1.9527,2.6174,0.33867,0.31728,4.1184,4.1983,4.025,4.1827,1.5598,1.2993,8.3621,6.9027,3.2626,3.4883,3.3731,3.4338,4.2111,3.7602,1.3782,1.5117,1.7701,1.8175,3.3008,2.8406,7.0857,6.3426,1.799,1.8049,5.6505,5.398,11.1146,10.1499,7.4049,6.4034,1.9967,2.0551,4.3525,4.1746,1.593,1.5185,16.9418,16.4845,4.0703,6.1776,3.4751,3.4975,0.80958,1.1048,1.9456,2.2739,7.1152,6.3947,14.7741,12.1722,2.8925,3.0587,3.8961,3.6955,2.8518,3.0989,1.4136,1.4233,3.4679,3.9112,9.1097,9.27,2.754,2.9555,2.3643,2.305,2.1352,2.0968,9.6585,9.8247,1.967,2.2394,2.1189,2.1385,11.8801,11.9346,1.687,1.9722,1.1365,1.1631,12.1339,11.9293,5.0937,5.1869,7.4343,6.9655,3.6014,3.3078,8.4749,9.0897,7.2282,6.7935,6.9801,7.1049,3.0863,3.4506,1.4603,1.5795,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd92,75,75,M,1.1357,1.7496,0.4372,0.46979,0.89181,0.89013,19.3435,3.3825,2.9654,51.3695,52.2059,16.1786,15.7609,243.2493,243.6928,0.96045,3.7797,3.6642,0.42881,0.46857,11.3638,13.6102,1.4966,1.414,3.8883,3.6544,7.4221,7.6489,4.9907,5.3377,0.0845,4.5333,2.3012,2.8921,0.40972,0.41572,3.8431,4.7612,3.811,4.0341,1.9181,1.6474,10.8415,9.3302,3.6417,3.3652,4.0641,4.2007,5.1805,4.6537,1.7,1.7317,1.8769,1.7176,3.5642,3.2088,8.5283,7.9502,1.9759,2.2647,7.1179,7.2429,13.5076,13.1241,9.1151,7.4604,2.3152,2.4574,4.3592,4.2669,1.7527,1.7804,17.9957,17.0774,5.7983,5.8408,4.2485,4.7516,1.1033,1.1895,2.3481,2.7371,8.083,6.256,16.5453,16.3448,3.5397,3.7497,5.0403,4.6758,3.2752,3.2242,1.4083,1.4683,4.7711,5.319,12.8049,11.2148,2.8835,3.4545,2.1876,2.3024,2.0026,2.3082,9.8581,11.6623,2.2728,2.4352,1.9456,2.2955,13.0102,13.01,1.8207,2.0071,1.3402,1.4764,13.2791,13.7179,5.3963,5.4097,8.2762,8.7963,4.817,4.5027,10.0179,9.6752,7.2645,7.7323,9.1321,9.1223,3.4093,3.8341,1.4892,1.7436,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd93,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd94,71,71,M,2.5429,2.8987,0.29097,0.33732,0.70429,0.75571,17.4707,2.2641,2.448,47.9737,48.7275,15.5951,16.5436,185.7545,193.5193,2.171,2.9109,3.1014,2.2907,2.2962,24.6327,40.6739,1.5261,1.4805,3.286,3.0238,6.132,6.4687,4.3958,4.5656,0.07383,4.7947,2.4087,2.6407,0.36377,0.33195,4.6707,4.7127,4.2416,4.2844,1.4529,1.5195,10.4229,10.1825,3.676,3.2695,4.6704,4.8279,5.0423,5.0822,1.4435,1.4735,2.0991,2.1908,3.8415,3.4666,6.9781,6.7266,2.0676,2.086,7.1322,7.0976,10.6118,9.8852,7.7846,7.2281,1.8908,2.2619,4.827,4.3981,1.7976,1.8793,18.0849,18.8864,5.1077,6.3697,3.2708,3.9386,0.94556,1.0312,2.3346,2.5031,8.0824,7.5175,14.5233,13.4044,3.8541,3.8397,3.8945,4.3265,3.9717,3.7512,1.3601,1.433,3.9306,4.4385,11.3053,11.3547,2.7432,2.8332,2.7021,2.4977,2.5274,2.8484,10.0021,10.8967,2.2356,2.559,2.4329,2.6109,11.6578,13.0261,2.2965,2.5636,1.0636,1.2203,15.0078,14.4063,5.8532,4.9523,8.1998,9.6918,4.817,3.3581,10.8166,10.4451,8.2518,7.583,7.0187,7.4025,3.365,3.8213,1.7894,2.0348,,24,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd95,74,74,M,1.8958,1.548,0.41211,0.47384,0.93709,0.94991,20.6291,2.8799,3.0777,44.0619,48.1425,14.8788,15.3827,267.0388,270.7394,3.0552,3.7357,3.3285,0.69059,0.6361,33.4486,28.5032,1.8646,1.8286,4.7141,4.7899,7.9524,8.0582,5.1695,5.4219,0.09098,4.1815,1.9377,2.6155,0.56403,0.48151,4.5569,5.2964,5.1362,5.0995,1.9153,1.7476,11.7542,10.6247,3.2672,3.5281,4.6459,4.1455,5.3644,5.3039,1.871,1.8006,2.3227,1.9631,3.6364,3.4284,8.1722,8.4465,1.9759,2.2924,7.653,7.8866,12.3971,12.594,7.592,6.9489,2.3956,2.5375,5.5418,5.3815,1.7385,1.8038,19.6031,21.7276,5.696,6.2518,3.9853,4.2149,0.99532,1.1741,2.1777,2.5701,8.0011,6.9028,15.3602,15.1511,3.9931,4.5715,4.0865,4.5236,4.7587,3.921,1.5705,1.5986,4.5284,4.661,12.5872,11.6746,3.1056,3.3939,2.6285,2.5561,2.9302,2.5593,10.8847,12.8486,2.5229,2.4352,2.2556,2.5655,14.1,13.344,2.3121,2.1133,1.2279,1.3596,15.3155,14.5561,5.7842,5.9413,9.5451,9.5109,3.961,3.282,12.5316,12.1876,9.0071,7.8884,8.5115,8.7411,4.0762,4.1668,1.699,1.8654,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd96,77,77,F,1.2064,1.7496,0.33224,0.37092,0.8358,0.80952,14.5773,2.5314,2.4613,32.1332,26.922,11.7082,12.1776,191.0961,187.3303,1.2123,3.177,3.1363,0.35824,0.37814,9.3603,11.3273,1.2104,1.2209,3.1251,3.5668,6.2277,6.2495,3.8095,3.9391,0.06589,4.4555,1.8736,1.8897,0.36629,0.34739,3.6412,4.0426,3.7475,3.7776,1.8686,1.4445,9.6351,8.7108,2.7307,2.6644,3.5675,3.6058,4.2182,3.9712,1.6396,1.6683,1.7751,1.9003,3.7118,3.3786,6.7028,6.3805,2.2451,2.286,6.044,5.5259,10.8467,9.8992,6.664,6.4066,2.4026,2.2861,4.1951,4.1942,1.8653,1.8501,18.0849,16.3033,5.0812,5.1979,4.318,4.748,1.149,1.2289,2.7166,2.5255,6.59,6.2187,13.2849,12.9215,2.8378,2.7303,3.512,3.789,3.1817,2.9439,1.6497,1.4791,3.6401,3.8132,8.9276,9.0072,2.9582,3.043,2.1566,2.0798,1.8491,2.2295,9.4895,10.8398,2.2067,2.3903,1.796,2.0231,11.574,11.5101,1.6811,1.5861,1.048,1.0318,14.5716,13.7765,4.7906,5.1019,7.3483,8.3724,3.6579,3.1756,9.8602,10.2199,6.9612,6.7096,8.2445,7.755,3.7857,4.4614,1.181,1.2715,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd97,,,F,1.0706,1.5911,0.38436,0.37448,0.86232,0.88361,15.4203,2.884,2.7471,45.7527,45.5105,13.3453,13.5976,227.3956,226.3817,1.0778,3.213,2.8952,0.40967,0.35349,7.1348,11.6928,1.6423,1.5608,4.0042,3.981,7.0498,7.3593,4.0983,4.2268,0.07514,4.6514,2.164,2.241,0.34977,0.35342,4.1539,4.6051,3.9127,3.9407,1.7616,1.5895,10.8823,10.2165,3.1251,3.1103,3.9506,3.9186,5.1156,4.7483,1.6726,1.7345,1.9335,1.9795,3.8294,3.3382,7.2418,7.1633,1.8913,1.6533,6.7307,6.1329,11.629,10.8432,7.6887,7.7603,2.2504,2.3057,4.6196,4.5683,1.6669,1.575,18.3593,15.6377,5.7289,6.5377,3.6926,3.8233,0.88561,0.93278,2.2469,2.346,7.3002,7.0284,14.4949,14.557,3.2577,3.895,4.4759,4.5486,3.7221,3.1457,1.4161,1.318,3.8347,4.0597,10.0699,9.5413,2.816,3.0897,2.0447,1.9375,1.9107,2.0912,9.7332,11.6489,2.231,2.2485,1.9364,2.0384,11.2915,12.0317,1.6347,1.768,1.0979,1.1791,13.0801,13.6614,4.9428,5.198,8.554,9.5642,4.3785,4.0503,9.798,9.9009,7.6223,6.875,7.0993,7.0982,3.287,3.4384,1.3181,1.3575,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd98,81,81,F,1.8908,2.3987,0.28932,0.36604,0.59381,0.63104,14.5522,2.7353,2.6666,41.4208,39.9639,11.9078,12.1339,159.7323,147.6763,2.1695,2.4167,2.0602,1.642,1.3233,29.0169,24.8942,1.2833,1.2125,2.9937,3.0356,5.5917,5.908,3.6257,1.0756,0.06507,4.5791,2.2063,2.481,0.37744,0.37054,3.3471,4.2337,3.7258,3.7041,1.63,1.3762,9.2071,8.8703,2.8636,2.5654,3.455,3.7889,3.6222,4.1951,1.1132,1.1851,1.8156,1.7469,3.5773,3.2268,6.3936,6.4232,1.8216,1.8517,5.4161,5.3201,10.2109,10.0583,7.5401,6.9936,2.0495,1.9433,4.2339,4.2832,1.6024,1.6054,18.0319,16.1258,4.0341,4.9577,3.4751,3.427,0.97444,1.0864,2.1093,2.3079,7.3804,6.3,13.1951,13.2512,2.4347,2.9221,3.6371,4.0633,3.0486,2.8946,1.4235,1.1783,4.0167,3.9558,10.1163,10.1935,2.6322,2.7039,2.2838,2.2281,1.8362,1.8554,9.3724,11.4362,1.9772,2.1624,2.0478,2.2094,10.5575,10.3514,1.568,1.5262,1.0904,1.2068,12.7796,12.7141,4.6001,4.4744,6.9255,8.2916,3.9092,2.9443,9.7519,10.2162,6.3043,6.4992,7.4184,7.1955,3.0989,3.1119,1.3621,1.3766,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd99,77,77,F,1.9673,1.6631,0.33943,0.42607,0.70472,0.75395,15.3895,2.5753,2.5391,43.2933,43.9655,12.8401,13.7952,203.4859,201.5569,1.5338,2.8784,2.8871,0.93407,0.70448,17.501,16.8413,1.4408,1.4402,3.4965,3.5927,5.8988,6.4523,4.0879,4.2939,0.0892,4.2492,1.8515,2.431,0.41032,0.4046,3.7836,4.3799,4.0728,4.2081,1.8815,1.6574,9.3369,8.3923,2.8527,2.9137,3.8863,3.9962,3.9814,4.3306,1.4662,1.6233,2.168,2.0529,3.6716,3.4617,7.0434,7.3443,2.1868,2.1507,6.2753,5.8863,10.9749,10.9339,6.9763,6.3868,2.1421,2.3112,4.408,4.4899,1.8294,1.6942,18.1155,19.3029,5.4068,5.7345,3.9864,4.2283,1.161,1.3061,2.6622,2.8353,7.7103,6.8542,14.774,14.2256,2.7022,3.0631,3.7588,4.0772,3.5208,3.307,1.5509,1.4159,3.8963,4.3719,10.1131,10.1569,2.7173,2.9054,2.2872,2.2597,1.9097,2.1001,9.613,11.8159,2.4218,2.6664,1.9664,2.1094,11.0384,11.8402,1.5796,1.8146,1.2799,1.3256,14.225,15.3711,5.1473,5.3068,7.4666,8.4996,3.5579,3.1602,10.0615,10.3233,7.1485,6.9792,6.7543,6.3119,3.3345,4.1011,1.3266,1.4821,,18,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd100,,,F,1.4719,2.6631,0.33898,0.39117,0.8509,0.85531,15.9099,2.7586,2.8472,46.6869,46.3326,13.0052,13.538,178.6,183.289,1.5374,3.2315,2.9435,0.57082,0.41212,14.5741,12.8542,1.438,1.4402,3.4543,3.5172,6.3384,6.5612,3.9635,4.2762,0.08136,4.843,2.3411,2.4605,0.36423,0.36814,3.7748,4.4443,3.6892,3.9013,1.6191,1.4743,9.6515,8.714,2.8962,2.9022,3.5949,3.7729,4.5471,4.2491,1.6514,1.626,1.9503,1.9305,3.4809,3.2982,7.4447,7.3417,2.0011,2.0713,6.0951,5.8485,10.659,10.32,7.5148,7.3066,2.1271,2.2343,3.9748,4.1845,1.6016,1.6576,17.0565,17.4151,4.4835,5.3989,3.6215,3.7638,1.0147,0.9933,2.5935,2.4819,7.5197,6.6459,12.5042,12.3186,2.5253,2.7739,4.2119,4.3583,3.2545,3.5001,1.5009,1.4832,4.1905,4.555,9.7225,10.4812,2.9383,3.1626,2.1178,2.1921,1.7874,2.3211,10.2035,10.9914,2.1194,2.4598,1.7411,2.1408,11.793,11.9425,1.7384,1.9411,1.2428,1.2961,12.8768,13.303,5.1152,4.9431,8.0252,8.8826,4.2321,3.4805,9.5964,9.0157,7.2861,7.2733,7.7156,7.062,3.4062,3.6655,1.1627,1.4352,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd101,63,63,M,1.9176,1.8741,0.37982,0.41575,0.74336,0.66297,19.3173,3.0452,2.8676,48.6004,48.3435,15.7454,16.1223,231.234,218.6799,1.6454,2.93,2.7935,0.90852,0.87113,15.3522,25.111,1.6406,1.6675,3.7198,3.7001,7.2876,7.3533,4.7321,4.9244,0.08702,5.1619,2.1832,2.8821,0.35503,0.37781,4.5993,4.6941,3.7839,4.2189,1.8425,1.4939,10.414,9.5276,3.8376,4.0107,4.4022,4.3733,5.7872,5.2487,1.4331,1.4181,2.0197,2.0063,3.6668,3.3603,7.4038,7.6027,2.1543,2.0042,6.9756,7.3491,10.9034,11.4267,8.059,7.1441,2.3294,2.3498,5.0009,4.5013,1.7941,1.7659,17.2759,17.575,4.9397,6.8039,3.9778,3.9073,0.95657,1.0421,2.5409,2.2434,8.0209,7.2627,14.0717,13.0691,3.6969,4.1271,4.2927,3.9757,2.8235,3.2129,1.6808,1.5504,4.0044,3.962,10.6337,10.9686,2.6706,2.8595,2.3488,2.3986,2.826,2.6709,9.3621,10.1888,2.4519,2.6115,2.3609,2.3094,11.6764,11.6061,1.9137,2.4502,1.1482,1.2379,15.6048,15.0046,5.3208,4.9639,7.9453,9.0978,4.5952,3.6511,10.9764,11.59,7.5752,7.2648,7.8397,7.4728,3.9895,4.0213,1.741,1.7415,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd102,71,71,M,1.6659,1.578,0.41218,0.49526,0.83404,0.84425,18.0157,3.1672,2.9435,45.3326,45.9081,13.7119,13.784,201.0276,201.5569,1.7597,3.3865,3.1466,2.4881,1.7941,31.295,35.4198,1.6159,1.6229,3.7761,3.8252,6.6078,6.6044,4.4242,4.6618,0.0742,5.0696,2.3209,2.6387,0.38806,0.38339,4.0018,4.6638,3.7264,3.994,1.8691,1.6265,9.3369,9.4289,2.9077,2.8576,3.9024,3.9282,4.608,4.4212,1.5884,1.502,1.7464,1.8637,3.9918,3.6603,7.6589,8.1847,2.1897,2.1146,6.1998,6.259,12.4007,11.6051,7.6884,7.466,2.2809,2.2746,4.8109,4.9852,1.8653,1.927,20.3537,19.4553,5.1082,5.6511,4.1413,4.4599,1.2138,1.3369,2.6036,2.8358,8.254,7.1443,14.5562,14.6542,2.6053,3.2337,4.265,4.0608,3.1755,3.8005,1.5978,1.3913,4.426,4.724,11.4914,10.7039,2.8378,3.4943,2.2964,2.3743,1.8857,2.3583,12.1874,13.0189,2.1618,2.496,1.9664,2.1077,15.096,14.1058,1.5262,1.9727,1.3989,1.4476,13.344,13.1624,5.5549,5.8171,8.3019,9.0722,4.0222,3.38,10.5549,10.483,7.1236,7.2901,7.4283,7.7538,3.6638,3.8205,1.3417,1.3876,,24,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd103,78,78,M,3.0911,2.5393,0.37516,0.40494,0.80898,0.76239,20.0226,2.9012,2.8888,50.4762,50.7717,15.5572,16.8369,200.671,191.857,2.171,3.4166,2.8482,0.723,0.60964,31.4798,32.9243,1.2369,1.3799,3.4345,3.5956,6.777,7.01,4.6514,4.8963,0.06153,5.521,2.5032,2.9866,0.38647,0.37594,4.413,4.9207,3.817,3.8937,1.8139,1.6083,9.9299,9.1459,3.036,2.6903,3.5399,3.8617,4.1195,3.9248,1.5576,1.4114,1.7724,1.6752,3.6404,3.3957,6.7819,7.1315,2.1477,2.0934,6.3087,6.1344,11.4971,11.3263,7.9171,7.39,2.1805,2.2919,4.4076,4.5886,1.867,1.9912,17.5795,18.0269,4.8301,5.8612,3.9443,3.8288,1.0743,1.1249,2.6479,2.4471,8.4067,7.366,13.2145,13.9179,2.767,3.1364,4.14,4.3142,3.332,3.1734,1.4692,1.2833,3.9916,4.0479,10.5467,10.9285,2.949,3.4943,2.3488,2.3193,1.958,2.1136,9.877,11.1945,2.2138,2.3858,2.1285,2.3682,11.8972,11.0473,1.7788,1.8446,1.1022,1.3167,15.0862,15.0046,5.6763,4.9912,7.7449,9.7778,3.9259,3.2111,9.5575,10.0293,7.3794,7.301,7.2623,7.4731,3.4093,3.3076,1.5785,1.5672,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd104,73,73,M,1.6891,1.6088,0.37741,0.40435,0.86623,0.84337,17.8769,3.0643,2.7181,46.848,45.5447,15.1125,16.4401,237.8669,235.5834,1.6666,3.3327,3.1951,0.6202,0.57533,17.315,16.8017,1.6819,1.6904,3.4573,3.5927,6.9095,7.1101,4.5171,4.8556,0.07026,4.5578,2.0089,2.5824,0.40538,0.39964,3.9767,4.5432,4.0304,4.1379,1.9518,1.874,10.0996,9.7666,3.2433,3.1842,3.8663,3.9079,4.8374,4.7193,1.575,1.567,1.8574,2.1288,3.7899,3.8961,7.2803,7.5253,2.3691,2.3479,6.2791,6.6511,11.2911,10.5925,7.9751,7.7603,2.493,2.7266,5.0583,5.3289,1.815,1.8661,18.1561,19.2424,4.7661,6.1406,4.113,4.5732,1.1946,1.1086,2.6924,2.645,7.4767,6.5849,13.0278,12.5885,3.0377,3.2235,4.2082,4.5039,3.386,3.3622,1.55,1.964,4.0614,4.6726,10.4929,10.349,2.7635,3.0974,2.2143,2.3743,2.0598,2.4296,11.1539,13.3253,2.519,2.691,1.9752,2.1705,13.1141,13.3354,1.7196,1.9298,1.3438,1.4476,15.2896,14.8102,5.2265,5.189,7.5894,9.3438,4.4728,3.8011,10.3715,11.0531,7.4041,7.4843,7.7161,7.1663,3.5021,4.191,1.3729,1.5435,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd105,78,78,M,2.3554,1.8026,0.32142,0.34796,0.76392,0.72214,18.2564,2.5827,2.2936,45.7654,46.5014,14.843,14.6398,214.9513,210.1924,1.6106,3.2804,3.0792,0.61913,0.55086,16.018,17.3104,1.6167,1.6486,3.2204,3.2508,6.0502,6.2886,4.4157,4.4876,0.07934,4.7047,2.2577,2.4905,0.36905,0.35968,3.987,4.1443,4.0432,4.193,1.5732,1.3699,10.3634,9.6959,2.8047,2.9589,3.4233,3.3601,4.2553,4.114,1.4693,1.4953,2.0242,2.0334,3.3553,3.3437,6.4935,6.7072,1.8146,1.9946,6.2295,5.3417,9.8271,9.8925,7.1607,6.9145,2.0761,2.0924,3.9591,3.9864,1.6487,1.4935,15.2511,15.5038,5.123,6.2788,3.5021,3.5284,1.1758,0.94038,2.6392,2.4201,6.9133,6.6773,11.8751,13.1751,2.4654,2.7195,4.0096,3.8423,3.1579,3.5102,1.4939,1.3882,3.5351,4.0042,8.5837,9.7919,2.6174,2.9555,2.4073,2.5971,2.1563,2.4116,9.2381,10.672,2.2487,2.3807,1.9749,2.1973,10.304,10.8799,1.9636,2.0038,1.0546,1.1494,13.2237,13.1403,5.1528,5.0286,7.8621,8.5889,4.1595,3.5242,10.8623,10.729,7.4041,7.3352,7.2502,6.7235,3.4653,3.8118,1.4593,1.5514,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd106,78,78,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd107,68,68,M,1.9094,1.6825,0.35086,0.37769,0.75449,0.73158,18.339,2.6297,2.6578,44.0377,43.0669,16.0334,15.9721,224.9161,218.3612,1.8256,2.9139,2.6341,0.88156,0.96109,20.9274,21.4459,1.6406,1.6625,3.2359,3.4259,6.4965,6.3334,4.6023,4.8619,0.07814,5.5227,2.2461,2.688,0.37744,0.38384,4.0816,4.3795,3.7994,4.3225,1.8186,1.4925,8.8971,7.9713,3.0612,2.5087,4.2449,4.0338,4.7794,4.4389,1.3864,1.3727,1.7464,1.8514,3.6079,3.4426,6.9495,6.8111,2.1785,2.0042,6.6615,6.3345,11.0511,11.6521,7.7062,7.4427,2.1805,2.4742,4.6503,4.6495,1.7718,1.7409,18.1699,19.4868,5.1801,6.0122,3.9285,3.8976,1.1534,1.1781,2.6736,2.7218,7.7032,6.6487,13.5476,13.6697,2.8595,3.6473,4.1912,4.3198,3.2782,3.3625,1.5054,1.4181,4.063,4.1658,10.0122,9.6412,2.6144,3.0296,2.1187,2.2301,2.7315,2.6709,8.407,9.4535,2.3178,2.5155,1.9056,2.1134,11.7262,11.5573,2.2245,2.3654,1.404,1.4896,13.3726,13.451,5.225,5.4896,7.6196,8.5434,4.3004,3.879,8.8861,10.6744,6.9663,7.3223,6.4587,6.6487,3.4244,4.1011,1.455,1.4024,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd108,68,68,M,1.7737,1.6825,0.41218,0.47796,0.90295,0.84559,18.1318,2.9277,2.8569,46.848,46.062,14.1657,14.8935,205.0426,201.1678,1.4161,3.3869,3.1927,0.53646,0.60747,11.539,13.2744,1.4184,1.4046,3.8316,3.7431,6.7747,6.8888,4.2391,4.4261,0.06774,4.5578,2.1004,2.6607,0.396,0.4067,4.0148,5.0484,3.7264,3.7187,1.8044,1.5216,11.0966,9.15,3.2456,2.9452,3.767,3.7975,4.6632,4.2067,1.8231,1.7098,1.8467,1.7366,4.1116,3.7187,7.894,7.3827,2.3691,2.3994,6.3098,6.5097,11.5046,10.6593,8.1016,7.2431,2.3421,2.5254,5.0149,4.9493,1.9748,2.1069,17.4694,18.0269,5.1891,5.6598,4.0994,4.3193,1.0625,0.87314,2.7448,2.2468,8.2775,7.864,14.3491,14.599,3.084,3.47,3.9425,4.1008,3.4434,3.4407,1.5267,1.4844,4.3894,4.8098,10.7143,10.9055,3.2135,3.3232,2.2934,2.1069,2.4668,2.452,10.6031,11.0553,2.3909,2.7755,1.8061,2.1192,12.3494,11.9842,1.928,1.8785,1.1343,1.2818,14.6949,15.5816,5.3727,5.4671,8.9313,9.0983,4.3971,3.2142,10.2284,10.5715,8.0376,7.583,8.5438,7.7009,3.7418,3.5148,1.2779,1.3077,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd109,,,M,2.0915,1.8234,0.38402,0.3701,0.80513,0.79138,20.5451,2.7109,2.3536,47.9031,47.8809,17.0926,17.357,242.2642,238.1675,1.5056,3.5434,3.2985,0.5229,0.63498,11.9006,15.3692,1.57,1.5849,2.8927,3.046,6.6309,7.545,4.8613,5.103,0.09345,4.8524,2.3034,2.517,0.36905,0.38153,4.1278,4.4821,4.1555,3.8384,1.739,1.4939,9.7901,7.9641,2.272,2.4513,3.8895,3.5407,3.6957,3.3427,1.6102,1.4774,1.9656,1.8254,3.5985,3.292,6.6092,7.0076,2.0711,1.9794,6.4408,5.5668,10.9634,10.3938,7.7853,6.9625,2.0758,2.3593,4.0757,4.4564,1.6764,1.714,17.1404,17.1605,4.7816,5.4755,3.5735,3.7272,1.1486,1.1058,2.4473,2.7089,7.4902,7.0284,13.5871,12.7654,3.1751,3.5209,4.0595,3.9033,3.0849,2.8302,1.3612,1.4082,3.9743,4.224,9.3961,8.9795,2.8873,3.139,2.2028,2.3494,2.1988,2.5638,9.3223,10.283,2.3654,2.4704,2.0243,2.2362,13.1141,14.2066,1.9636,2.462,1.1188,1.188,14.4175,14.1541,5.4416,5.845,7.3513,8.5425,3.8853,2.9982,9.2904,10.575,7.0319,7.1043,7.3667,7.5218,3.3832,3.4373,1.5205,1.6412,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd110,66,66,M,1.8714,2.9737,0.19817,0.27353,0.74893,0.71856,15.0058,2.2682,2.2576,38.4725,35.054,12.2193,12.2415,155.842,152.4398,1.8466,2.8764,2.5777,1.0036,1.3765,20.2083,26.1031,1.2156,1.1355,2.8944,3.0905,5.0212,2.2488,3.6997,3.8378,0.07342,3.6568,1.8977,2.0875,0.27894,0.28347,3.0547,3.2107,3.3852,3.7157,1.293,1.1383,8.3049,7.6089,2.5168,2.626,3.1265,3.1499,3.1037,3.7213,1.4359,1.4531,1.5568,1.7017,2.8054,2.6506,6.251,5.6911,1.6023,1.48,5.6908,4.903,9.6125,8.338,6.11,6.1042,1.7172,1.9742,3.774,4.0693,1.2506,1.2201,14.8866,14.3917,4.5545,4.7546,2.8623,2.9419,0.75182,1.1048,1.9498,2.3047,5.4504,5.038,11.4705,10.7795,2.394,2.5733,3.3581,3.0576,2.708,2.9079,1.1581,1.259,3.2118,3.3874,8.2799,7.8937,2.4661,2.6495,1.8902,2.0758,1.5536,1.5521,8.1811,9.912,1.9813,1.9466,1.6502,2.0265,10.0125,9.5847,0.00244,1.3453,0.97633,0.79424,11.5543,11.176,4.4575,4.5485,6.8963,7.851,3.7049,2.9609,8.6072,9.0978,3.4409,5.6658,5.7369,6.3681,2.8756,2.8594,1.009,1.1861,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd111,,,F,1.2254,0.73524,0.00009,0.16158,0.51139,0.50656,9.0519,0,0.0006,36.5871,31.6077,10.0802,8.9953,94.0231,98.56,1.2754,2.6149,2.3865,0.88682,0.59913,10.6502,10.6452,0.88805,0.95612,0.65264,0.34756,4.141,2.2812,3.7611,3.9457,0.08356,3.6008,1.8031,2.0279,0.28045,0.2964,1.9435,0.00124,0.9969,0.46849,0,0.00414,5.3578,2.2506,2.9722,3.0912,0.00002,0.30529,4.1145,3.7841,0.34445,0.9014,1.3831,0.00757,0,0,3.8349,3.9341,0.8931,0.77512,5.4694,4.6349,5.5287,6.8215,6.7317,5.6735,0.03515,0.74684,0,0,1.1938,0.03454,0,13.927,4.6532,3.9079,0.5615,2.0093,0,0,0,0,0.00038,4.8291,8.7517,9.1824,2.4852,2.5733,3.4707,3.2673,2.5538,1.4087,0.48335,0.49832,1.3853,3.7408,7.7781,8.373,2.2952,2.4325,1.3262,1.6036,0,0.02077,0.00167,0.00568,1.4502,1.9931,1.457,1.7054,0.00012,0.00038,1.5154,1.582,0.43488,0.92855,6.0263,5.9188,0,0,0.20706,1.2354,3.7911,2.3676,7.8011,8.6697,5.9671,5.4002,5.4577,5.0815,1.1485,2.5035,0.78203,1.0864,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd112,76,76,F,1.9673,2.1503,0.35861,0.41066,0.68779,0.70386,15.8861,3.2648,3.1426,38.7047,35.1182,12.4128,12.7157,164.8177,160.3455,1.6855,2.7682,2.5093,1.277,1.6195,21.0918,28.2322,1.3283,1.3605,4.197,4.4232,5.8237,5.8946,4.2099,4.3906,0.07357,3.9415,2.0224,1.7593,0.36829,0.35794,3.6592,4.389,4.0025,4.4443,1.5163,1.312,9.7966,8.1952,2.7894,2.7036,3.9039,3.6837,3.8655,3.7368,1.3332,1.467,1.9335,1.9395,3.3008,3.0791,6.491,6.1466,1.7791,1.8205,5.3353,5.2871,9.6818,9.1264,6.0729,6.1198,1.9334,2.1102,3.9765,4.2487,1.5406,1.5482,16.9488,16.2955,4.3788,5.768,3.3425,3.4975,1.2496,1.0798,2.6036,2.549,7.2112,6.7388,11.4578,11.3677,2.1184,2.6117,3.576,3.6789,3.3829,2.7098,1.4666,1.3629,3.2455,3.8782,9.4506,9.4232,2.5847,2.6193,2.4494,2.4939,2.1145,2.3096,10.3534,11.8108,2.1623,2.2263,2.0867,2.3484,11.246,11.0993,1.7643,1.8047,1.122,1.1858,13.0925,13.3816,4.8122,4.6141,7.2411,7.4959,3.4034,3.011,8.6091,10.2199,6.9532,6.4311,6.7323,7.2069,3.591,3.4748,1.5917,1.4731,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd113,78,78,F,2.0444,1.9177,0.32408,0.34567,0.68779,0.63576,17.8348,2.5007,2.4381,45.6943,45.6732,16.5675,17.1,233.4803,235.5425,2.3852,2.8578,2.5612,0.89895,1.3508,42.9125,44.2152,1.6255,1.6671,2.9483,3.5345,6.109,6.6574,4.5856,4.8882,0.06422,5.265,2.2732,2.7071,0.32726,0.32526,3.7329,4.4029,3.6051,3.8894,1.4529,1.3156,8.5042,7.2396,2.2766,2.6745,3.8895,3.5278,3.6178,4.2084,1.4354,1.3576,1.8667,1.881,3.457,3.1838,6.9239,6.5679,1.9131,1.8321,5.9253,5.1279,10.1157,10.0939,6.4405,6.181,1.8888,2.2508,4.0403,3.7306,1.6125,1.6697,15.9057,14.1337,4.504,4.2735,3.1633,3.3068,0.93746,0.85182,2.3765,2.3455,6.988,6.5859,12.1609,11.286,2.629,2.9729,2.8718,3.5683,2.7918,3.1947,1.3185,1.3574,3.8666,4.3803,10.6191,10.2765,2.6608,2.7836,2.1284,2.0413,2.0598,1.9104,8.9611,10.0787,2.0433,2.3422,1.9403,1.9779,10.8173,9.9515,1.687,1.6416,1.1395,1.1874,11.9794,13.9965,4.8465,4.7191,6.3937,7.854,3.2599,2.6071,9.6159,8.8138,7.1344,6.7935,7.1958,6.3351,2.7421,3.1706,1.3862,1.3749,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd114,73,73,M,1.7782,1.8769,0.33312,0.35524,0.80725,0.80039,16.3872,2.5737,2.3883,42.9428,44.4366,13.7873,13.6501,210.1719,206.3478,1.5971,3.3738,3.111,0.6177,0.4371,16.2964,15.6225,1.3764,1.3795,3.0766,3.2674,5.9759,6.1968,4.0367,4.2692,0.07213,4.2492,2.0402,2.4515,0.34951,0.3594,3.7732,4.2505,3.7837,3.8937,1.6552,1.4523,9.622,8.5365,2.7977,2.7963,3.1711,3.7968,4.2472,4.0439,1.668,1.5917,1.9503,1.9246,3.4718,3.1771,6.7028,6.8122,2.0011,2.1391,5.5253,5.1719,10.1979,9.7307,7.2804,6.518,2.1651,2.2633,4.5201,4.3607,1.8351,1.771,16.9019,16.8676,4.5832,5.2048,3.6554,3.8401,1.0472,1.101,2.4465,2.4593,7.3224,6.5865,13.7425,12.9115,2.6285,2.7303,3.8391,3.6074,3.341,3.1727,1.4922,1.3509,3.8115,4.1069,9.7858,10.0684,2.8215,3.2074,2.1178,2.2312,1.7421,2.0994,8.5765,9.6135,2.0923,2.2325,1.8649,2.0482,11.4796,11.3869,1.618,1.8025,1.1997,1.2275,12.7223,13.2205,4.8783,5.1386,7.2817,7.5987,3.9745,3.4355,9.4762,9.8267,6.3043,6.5229,7.3106,6.9902,3.4062,3.6222,1.2927,1.5286,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd115,70,70,F,1.4797,1.6845,0.30608,0.32521,0.61742,0.55372,14.5161,2.3103,2.224,36.7519,36.7788,11.1152,11.2156,155.8267,154.0648,1.5709,2.554,2.3964,1.2937,1.3233,12.8318,17.155,1.3705,1.3058,2.877,3.0188,5.5258,5.3712,3.7621,3.9915,0.06387,4.0486,1.6853,2.0749,0.29277,0.31519,3.6232,3.5615,3.3663,3.6208,1.4324,1.3371,8.1283,7.3711,3.0698,2.9269,3.8102,3.659,4.4469,4.2504,1.1621,1.071,1.7031,1.6617,3.1985,2.8818,5.6155,4.9533,1.7184,1.8211,5.3178,4.6545,8.7021,5.4301,7.4337,6.9936,1.8575,2.0668,4.08,3.2876,1.4334,1.4253,14.7917,14.3917,4.4364,4.699,3.1511,3.348,0.86595,0.99356,1.8906,2.1825,6.357,5.7841,11.6544,8.7619,2.2418,2.7388,3.9017,3.794,3.1371,3.0791,1.211,1.1944,3.5566,3.9031,8.0695,8.4152,2.3769,2.5337,2.0359,1.9671,2.0186,1.9224,9.2046,9.4049,1.9175,1.9543,1.7177,1.756,10.0972,10.6331,1.5651,1.5971,1.0735,1.1186,11.7783,12.6023,4.2906,4.1638,6.1333,7.0676,3.3486,2.789,9.3038,10.0089,6.839,5.4729,7.0344,6.576,3.1351,3.1315,1.3323,1.4343,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd116,68,68,M,1.8597,3.3485,0.41779,0.45137,0.84385,0.87536,20.0511,3.4665,3.2867,50.8088,52.0304,17.3021,17.9163,244.7943,236.2561,1.4013,3.4804,3.2747,0.66291,0.86925,18.3746,18.7512,1.6981,1.7045,3.7896,3.9279,7.2191,7.6457,4.9062,5.0581,0.08937,5.1803,2.4314,3.1022,0.41184,0.39288,5.2074,5.2847,4.927,5.0384,1.9587,1.8149,13.0456,10.5443,3.3212,3.0346,4.6043,4.4329,4.9356,4.2724,1.7166,1.6786,2.0358,2.1122,4.3098,4.1818,8.2928,7.7808,2.5943,2.687,7.0655,6.8881,13.1288,11.3466,8.7273,8.2718,2.3336,2.6036,5.082,5.0043,2.1888,2.1174,21.2925,21.0629,5.5575,6.5476,4.35,4.6246,1.1214,1.282,2.8519,2.9983,8.9555,8.1268,17.2692,15.1973,3.7035,4.0524,5.0129,4.6758,3.9458,3.206,1.6757,1.6983,4.667,5.4284,12.5485,13.1864,3.1566,3.5841,2.6482,2.5969,3.2482,2.6774,10.9437,10.8701,2.3994,2.594,2.5367,2.7526,13.1514,13.5991,2.2641,2.1913,1.5271,1.5359,15.5987,17.0909,6.0927,5.8365,9.3326,9.7432,4.6967,3.4209,10.6237,11.8244,8.583,8.6959,8.592,8.0872,3.9384,4.4044,1.8975,1.699,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd117,69,69,F,1.5107,1.7982,0.32204,0.3637,0.80181,0.82209,14.5773,2.4055,2.2554,37.0575,37.9211,10.8299,10.9588,195.4017,194.5846,1.4373,3.1302,3.0526,0.91587,0.57124,9.7001,11.9184,1.3054,1.2801,2.9175,3.0858,5.9675,6.3845,3.8928,4.0697,0.07283,3.5114,1.7341,2.1023,0.34264,0.35883,3.753,4.0426,3.8315,3.8088,1.6455,1.563,10.3271,9.2931,2.7214,2.5355,3.5283,3.4761,3.9193,3.8232,1.4945,1.5631,1.8398,1.7378,3.3839,3.268,6.491,6.5727,2.0423,2.0206,5.202,5.3421,10.4349,10.0482,6.8722,6.2007,2.1152,2.2386,4.3939,4.6442,1.8351,1.6281,16.273,17.9973,4.3988,4.9917,3.6249,3.9652,0.86718,1.0718,2.3197,2.5646,6.6768,5.8604,13.4782,12.9215,2.2073,2.4851,3.6552,3.6789,3.3216,3.0267,1.3571,1.4634,3.4679,3.9003,9.5692,10.4289,2.6424,2.979,2.1178,1.9715,1.8668,2.2208,8.9747,10.3273,2.2909,2.5923,1.7444,1.9636,10.969,12.1035,1.7638,1.5331,1.1198,1.0429,14.2012,13.6172,4.5228,4.7192,7.8793,8.1314,3.3676,2.636,9.405,10.6911,7.1533,7.037,7.3909,6.8558,3.5618,3.639,1.2459,1.2654,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd118,62,62,M,1.7427,1.8381,0.39299,0.46279,0.88817,0.84559,18.8525,3.1739,3.1874,43.1093,42.0541,14.8142,15.6924,220.49,211.7031,1.9797,3.3869,3.1069,0.6202,0.48943,23.9601,26.0747,1.6076,1.6259,3.2779,3.4616,7.4431,7.1391,4.7611,4.9977,0.09828,4.1392,2.0434,2.4111,0.41184,0.39221,4.1313,4.8432,3.9964,4.2539,1.9347,1.8069,10.2318,8.6158,3.233,3.2388,4.0376,4.2215,4.9237,4.382,1.7055,1.5735,1.9041,1.9723,3.7308,3.8961,7.1771,7.1705,2.3976,2.3139,5.7775,6.2385,11.0364,9.9995,8.1675,7.031,2.4205,2.9018,4.3397,3.9488,1.9747,2.0006,18.2751,18.7104,5.0966,5.7884,4.113,4.4401,1.3629,0.99196,2.8271,2.5647,8.4474,7.2136,13.5985,13.3602,2.4513,4.0712,4.0858,4.1489,3.473,3.7584,1.6043,1.8233,4.4721,4.9408,11.1725,11.0417,2.9938,3.2237,2.3357,2.1631,2.548,2.3668,9.4866,10.8438,2.9609,3.063,2.0373,2.4078,12.1052,12.6951,1.9788,2.4575,1.2807,1.3146,14.4424,14.5211,5.1721,5.5874,7.9431,9.5454,4.1039,3.7429,10.1514,11.599,7.1765,6.757,7.932,7.7769,3.7857,3.8605,1.421,1.6804,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd119,68,68,M,1.7106,2.1247,0.41158,0.46097,0.96258,0.97955,20.8786,2.7537,2.96,44.9029,46.6539,14.8788,15.2766,236.4197,235.0482,1.582,3.6778,3.6464,0.9219,0.82917,16.9487,20.6057,1.6725,1.6611,3.8116,3.922,7.5697,7.4687,4.949,5.103,0.08648,4.1815,1.9299,2.493,0.42072,0.4264,4.6799,5.0841,4.2613,4.5901,1.8335,1.5872,11.4886,9.7685,4.2051,3.6806,4.329,4.6948,5.2677,5.4507,1.9382,1.799,2.2748,2.048,4.7077,4.0207,8.1722,8.1165,2.1071,2.1847,7.611,7.5108,12.4884,12.533,8.2528,7.7407,2.44,2.4643,5.134,5.3642,1.9128,1.8702,21.0876,22.995,6.0566,6.459,3.989,4.2002,1.0775,1.4265,2.4162,3.2474,8.4474,7.4916,15.9716,14.5309,3.9931,4.0524,4.6581,4.7609,4.1181,3.4357,1.6686,1.6744,4.5952,5.2682,12.5596,11.4987,3.2419,3.4822,2.5205,2.5786,2.2298,2.3546,11.659,13.0931,2.6084,2.7591,2.2845,2.5134,13.9001,15.1703,2.0578,1.9948,1.2925,1.3596,15.9411,15.5481,6.3356,6.1272,7.7676,8.9635,4.9057,4.5227,10.9949,10.5739,8.3,7.5284,8.7938,8.7411,3.6455,4.2773,1.6697,1.884,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd120,63,63,F,0.947,1.4228,0.338,0.36871,0.78938,0.73163,14.9846,2.4974,2.5269,37.2014,37.5008,12.8538,13.067,206.6841,204.0367,0.85575,3.0099,2.9228,0.4904,0.37352,9.5205,9.8829,1.3678,1.3795,3.6119,3.6167,6.6087,7.2292,3.7973,4.0073,0.05472,4.4555,1.9186,2.1231,0.33271,0.34819,3.4942,3.9099,3.7826,3.9087,1.6024,1.3806,9.1163,8.4283,3.4125,3.623,3.9589,3.8098,4.6451,4.2839,1.4466,1.3727,2.0596,1.7312,2.9616,3.2293,6.6275,6.4713,1.8239,2.1122,6.0335,5.6966,10.4005,9.3001,7.151,7.1164,1.9596,2.0619,4.1951,4.3926,1.5572,1.5371,15.7002,15.3404,4.7725,6.1161,3.3833,3.6508,0.95289,0.95416,2.3342,2.1599,6.8024,6.171,13.0276,12.1185,3.4065,3.5209,3.8708,4.0099,3.2295,3.5236,1.399,1.2897,3.3562,3.3135,8.8094,8.9741,2.619,2.8218,1.9479,2.0758,2.1452,2.3381,9.367,11.8537,2.133,2.2076,1.8385,2.0571,12.5547,12.1891,1.969,1.9839,1.054,1.0628,13.7446,14.6558,4.7906,4.5418,7.9005,8.8249,4.2942,3.1983,9.6935,9.4147,6.3966,6.0232,7.3189,6.7462,3.591,3.4934,1.4022,1.491,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd121,74,74,M,1.9976,2.6574,0.37359,0.40365,0.80898,0.84055,18.139,3.4004,3.1726,46.4549,46.4122,13.2315,13.1926,186.3442,188.7927,1.4848,3.2198,3.0054,0.697,0.63192,18.6368,20.5572,1.5003,1.4767,3.4841,3.6449,6.7414,7.0201,4.496,4.7381,0.07735,4.3414,2.1092,2.7387,0.35365,0.39845,3.7748,4.3216,3.7994,3.9673,1.6703,1.424,11.5015,10.5471,3.0608,2.6204,3.8993,3.8726,3.9569,4.0097,1.6281,1.7096,2.0217,1.9523,3.3553,3.1806,7.8632,7.2287,2.0211,1.9686,6.7955,7.0548,12.2909,12.1495,8.1904,7.5048,2.1988,2.2419,4.0911,4.5869,1.803,1.6942,16.7345,16.5372,5.2877,7.0711,3.6591,3.7484,0.95122,0.98826,2.516,2.4715,7.7053,6.6879,16.5679,14.8551,3.5384,4.0804,4.222,4.7097,3.614,3.6341,1.4668,1.4551,3.9418,4.2619,9.862,10.3953,2.8337,3.2276,2.1271,2.1922,2.1405,2.0094,9.398,11.1207,2.3581,2.4598,2.0512,2.2792,12.9492,12.1891,1.7931,1.8409,1.404,1.4052,14.0826,14.2731,5.5314,5.1182,7.8423,8.5608,5.1031,4.2271,10.3213,9.7753,6.6149,6.9714,8.0029,8.3303,3.5707,3.8957,1.5601,1.5567,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd122,77,77,F,1.5285,2.0916,0.38851,0.43293,0.82649,0.79891,15.8825,2.7961,2.753,39.8187,39.5951,12.0168,12.0742,219.7823,218.0444,1.4932,3.276,3.4019,0.39191,0.40243,9.3245,11.4231,1.4165,1.3738,3.7056,3.6962,5.7788,6.1208,4.1214,4.2939,0.07157,3.8669,1.8414,2.2057,0.38884,0.38596,4.0313,4.4341,4.0442,4.1215,1.047,1.5165,10.5402,8.65,2.8545,2.7239,3.6865,3.7297,4.2182,4.6735,1.5984,1.4048,2.1033,2.0148,3.1918,2.9635,6.7859,6.1466,1.8217,2.1075,6.1011,5.9517,11.252,9.242,7.457,6.4974,1.7172,2.4377,4.4082,4.6191,1.5811,1.7626,18.8515,19.0436,4.8132,5.6393,3.3879,4.132,0.86988,0.94417,2.0692,2.4319,7.4924,6.6947,12.6504,12.8625,2.6292,3.1976,4.0096,4.052,3.7049,3.3111,1.493,1.5862,3.6269,4.0267,9.6531,9.4623,2.8414,3.1342,2.1732,2.2121,1.9497,2.1131,9.8283,10.0157,1.8589,2.3806,2.0243,2.1588,10.8167,9.8087,1.6954,1.9001,1.1512,1.1818,13.8315,13.2583,5.1062,5.6746,7.7316,7.5155,4.204,3.6297,9.2928,10.6744,6.8712,7.2854,7.7847,6.6556,3.4369,3.4383,1.3584,1.3603,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd123,65,65,F,1.0614,2.0142,0.42838,0.46487,0.97755,0.99325,20.7412,3.2269,3.1873,54.1172,51.1016,16.8646,17.0034,238.5124,235.0903,0.98689,3.73,3.7705,0.49432,0.51393,11.3638,17.1136,1.7132,1.7342,3.8073,3.9279,8.4121,8.3647,4.949,5.103,0.08763,5.1803,2.4314,2.8277,0.41989,0.39329,4.4445,5.0058,4.3715,4.5444,2.1057,1.8698,10.7409,10.6139,3.9552,3.877,3.9169,4.1647,5.1616,5.3907,1.9183,1.8532,1.9307,2.3372,3.7273,3.7524,8.1061,7.7808,2.2496,2.031,7.7388,7.0699,13.085,12.6202,9.7277,8.1808,2.5657,2.8515,5.2704,5.76,2.0804,2.0161,19.4148,19.4226,5.9963,6.283,4.1489,4.2163,1.2839,1.1651,2.8146,2.8053,8.7683,7.5771,15.3481,16.1575,3.4887,3.8068,4.8411,4.9054,3.8269,3.6131,1.7302,1.597,4.6767,5.319,12.1176,12.5599,3.1361,3.4016,2.5382,2.6056,2.3964,2.2755,13.1736,13.663,2.7044,2.8759,2.0654,2.5826,13.9001,13.9171,2.0604,1.8219,1.3666,1.4442,15.8485,16.3673,5.5959,6.0978,9.3329,10.4137,4.7164,4.1028,12.1298,11.8495,7.9287,7.8247,9.5512,10.4928,3.5686,4.3187,1.4135,1.7839,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd124,72,72,F,0.97687,1.0427,0.08978,0.00296,0.61379,0.57692,17.0389,1.107,0.00029,41.548,39.5261,13.5685,14.195,76.6563,98.56,1.1125,2.6107,2.3076,0.79701,0.56191,11.6728,13.7295,0.81757,0.8757,2.1838,0.32999,1.9192,2.2488,4.3212,4.8843,0.08831,4.5306,2.0428,2.3454,0.27894,0.28477,4.133,0.00124,0.9969,3.1873,0.0014,0.00414,7.8428,5.0961,2.9722,2.6232,0.00002,2.1042,3.8996,3.6052,1.1199,1.1591,0.00088,0.00001,0,0,3.8349,6.1889,0.51662,0.77512,4.9385,5.2871,7.4539,9.6013,7.1065,6.2984,0.67733,0.74684,0,0.00012,0.66198,0.25043,0,0,3.8656,4.3309,1.0463,1.6916,0.86988,0.92442,2.2305,1.7162,3.9657,0.00046,8.7517,10.794,2.4347,2.3928,3.6369,3.5476,0,0.00015,0.00987,0.65244,1.3853,3.3313,8.3606,8.2426,2.3932,2.6127,1.8084,1.9431,0.53142,0.78485,0,8.1361,1.8547,0.90385,1.7635,1.6021,6.3496,9.7042,0.00244,1.6744,0.55918,0.79424,0.00055,10.7096,0,3.5064,5.1788,5.7734,3.3046,2.8935,7.6841,8.0135,5.8192,3.8933,6.3459,6.1399,0,0,0.78203,1.0059,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd125,,,M,3.2846,3.6291,0.38883,0.41851,0.91033,0.7787,18.92,3.1409,2.8943,49.4867,50.7717,14.2442,14.8935,200.6661,191.4103,2.9538,3.4705,3.3032,0.723,0.9025,33.5477,32.1618,1.4935,1.4795,3.4167,3.5025,6.5265,6.5896,4.6781,4.8258,0.06422,5.3158,2.4619,2.8048,0.40229,0.41953,4.3437,4.7927,4.1966,4.3594,1.6826,1.3355,8.9804,8.6024,4.1188,3.6852,4.058,4.1343,5.4218,5.4245,1.831,1.5806,1.9178,2.0259,3.4554,3.0266,7.5851,7.5475,2.01,2.0713,6.8691,6.6759,11.6844,10.6071,8.6267,8.3281,2.0355,2.0016,4.6909,4.7431,1.8667,1.638,16.5951,16.9671,5.1801,6.3818,3.6362,3.8194,0.95943,1.1203,2.3193,2.7707,8.2489,7.0379,13.8578,13.8302,4.4348,4.0946,4.4752,4.6941,3.652,3.5708,1.4614,1.425,4.1098,4.4787,10.8854,10.3925,3.3305,3.3571,2.4688,2.5682,2.2698,2.1531,8.9765,11.6356,2.0801,2.3082,2.1183,2.4406,10.3754,11.2965,1.7379,1.8754,1.2933,1.2777,14.1835,14.9559,5.5426,5.7578,7.3672,8.2916,4.5674,3.7598,10.0449,11.021,7.484,7.1273,8.383,7.9545,3.4516,3.713,1.3658,1.5647,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd126,78,78,F,2.6213,1.6601,0.30493,0.30698,0.69194,0.68323,16.5482,2.6305,2.3544,43.9449,42.9721,12.5217,13.1971,182.2084,180.6172,2.739,3.0506,2.9325,1.4552,1.3759,32.0847,27.6636,1.6206,1.5737,3.0487,3.0327,6.4526,6.5612,4.5871,4.78,0.0742,4.791,2.2339,2.5305,0.35638,0.31393,4.6707,4.7088,4.6534,4.4768,1.6715,1.3311,7.1019,8.3197,2.4866,2.3553,4.103,3.6261,3.9498,3.4998,1.2676,1.2548,1.647,1.9302,3.6471,3.3587,5.9779,6.184,2.01,2.0723,5.5449,5.7125,8.1016,9.3124,7.0298,6.3731,2.1543,2.2472,4.6155,4.7073,1.7976,1.9573,17.3195,17.4774,4.4185,4.831,3.741,3.7339,0.96211,0,0,0,8.1859,7.0865,9.9196,10.6656,2.5401,2.97,3.9142,3.7672,2.8762,2.8007,1.4123,1.5697,4.1182,4.4056,10.4842,10.1246,2.7822,2.8687,2.7653,2.7114,1.9538,2.399,9.4062,10.8398,1.9507,2.5923,2.2659,2.6109,12.413,12.1891,1.9026,2.0921,1.0818,1.2068,13.6742,14.2183,5.3303,5.1639,7.0237,8.661,3.8696,2.6645,10.1684,9.5733,5.8004,5.5943,6.7056,7.3564,2.9811,3.1545,1.5637,1.7596,,13,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd127,84,84,F,1.1814,1.3358,0.33228,0.3078,0.72047,0.75972,15.3461,2.8386,2.424,36.0805,35.768,11.5711,11.7821,190.6644,191.4973,1.2126,3.0429,2.8656,0.49291,0.49947,10.7542,11.4231,1.2675,1.2698,3.0508,3.0403,5.7971,5.8214,3.583,3.6547,0.08356,3.6008,1.8249,2.1906,0.39393,0.38098,3.9022,4.2462,3.7727,3.9851,1.6824,1.5717,9.8651,8.867,2.5118,2.6576,3.4372,3.5089,4.456,4.1151,1.3962,1.4737,1.9548,1.9079,3.3744,3.1138,6.5553,6.3805,2.0447,2.1454,6.044,5.9437,9.8718,9.9259,5.8811,6.2255,2.1145,2.328,4.7753,4.7252,1.8351,1.7607,16.202,16.2071,4.3612,6.1887,3.8381,3.9634,0.81059,1.0312,2.4699,2.5356,7.5331,6.4019,11.8751,12.5685,2.1902,3.1491,3.3293,3.2395,3.7248,3.7596,1.6195,1.4598,3.5992,3.9134,10.7288,9.9496,2.5847,2.7332,2.0377,2.1205,2.0738,2.0871,9.0376,11.3727,2.1154,2.5267,2.0082,2.0374,10.7378,11.5078,1.7546,1.6876,1.1435,1.2048,12.6128,13.2426,4.9768,4.9899,7.2187,8.4996,3.7321,3.3715,10.9059,10.3844,6.9538,6.1527,7.2049,6.9879,3.7315,3.9146,1.3266,1.3702,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd128,,,M,3.2846,1.8463,0.37706,0.42415,0.81764,0.8298,17.815,2.9475,3.0729,47.1015,47.6829,14.1082,14.456,205.0426,202.681,3.7567,3.4931,3.4276,1.1632,0.81228,27.4336,25.9158,1.5525,1.4988,3.5342,3.7316,7.2128,7.2452,4.6513,4.9142,0.08959,5.0169,2.4095,2.6607,0.46289,0.44193,4.6927,5.0519,4.9298,5.0997,1.7314,1.5185,8.765,8.4519,3.5259,3.2925,4.479,4.7189,5.1205,4.9089,1.6592,1.671,1.9532,2.0396,3.6164,3.4402,7.4447,7.3032,2.1532,2.1913,6.3129,6.6013,11.7256,11.0933,8.6267,7.9709,2.3364,2.4132,6.1433,7.4817,1.8636,1.9333,18.0466,18.7331,4.9686,5.9184,3.8157,3.9267,1.0921,1.3141,3.0654,2.9983,8.0824,7.5365,14.0727,13.4861,3.1577,3.5537,4.14,4.6941,3.7043,3.4439,1.6705,1.5328,4.2702,4.7489,11.966,11.4003,3.0825,3.3311,2.6482,2.6767,2.2216,2.4349,9.8726,11.0974,2.4355,2.5491,2.2133,2.8207,13.0102,12.3724,1.9862,2.1074,1.2933,1.2789,15.517,15.1134,5.3775,6.4636,7.7342,8.0099,4.8341,3.9651,12.3532,11.5268,6.9062,6.3731,7.6612,7.7587,4.2839,4.0213,1.6686,1.6912,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd129,71,71,F,1.7152,2.1247,0.30214,0.32609,0.59381,0.56468,14.5522,2.3875,2.4308,35.6957,36.9739,10.8299,11.1161,163.5324,160.3455,1.6263,2.5906,2.3865,0.70902,0.84058,16.1464,14.3974,1.1776,1.2209,3.2657,3.1877,5.7713,5.908,3.6515,3.8383,0.0668,3.5022,1.7419,2.2026,0.32475,0.32011,2.8713,3.5612,3.082,3.2009,1.2616,1.2674,8.5819,7.3052,2.9937,2.7883,2.9388,3.1499,3.6222,3.349,1.1052,1.0259,1.3754,1.4358,2.924,2.9207,5.785,5.2805,1.5507,1.5884,5.3459,4.7825,9.1119,9.0866,6.6465,5.6735,1.6305,1.7794,3.9474,3.2876,1.3504,1.4116,15.6446,14.9308,4.4185,4.699,2.8596,3.2702,0.91522,0.95454,1.9861,2.0616,6.2177,5.7511,11.1185,11.8429,2.3504,2.6527,3.4823,3.3195,3.2769,2.7994,1.0699,1.0839,3.4858,3.793,8.2805,8.9246,2.293,2.4247,1.8084,1.812,1.5889,1.9155,8.8486,9.5542,1.9193,1.9514,1.624,1.8708,10.3155,10.6862,1.3661,1.5083,0.99742,0.99286,11.9137,12.2212,4.577,4.4989,5.934,6.8321,3.0572,2.772,8.4191,10.605,6.0248,6.018,5.7754,6.0501,2.844,2.934,1.2209,1.0805,,25,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd130,71,71,M,2.5429,2.2419,0.39851,0.41387,0.85168,0.87128,20.4912,3.4126,3.292,44.0619,48.1425,14.9431,16.1352,243.9959,235.9845,2.3378,3.3612,3.1863,1.0172,1.1391,31.0961,35.8274,1.6508,1.6135,3.564,4.0526,7.0978,7.645,5.179,5.5917,0.0837,4.6172,2.1257,2.5363,0.40169,0.39288,4.143,5.0062,4.2508,4.0762,1.8335,1.492,10.4493,9.4514,3.5653,3.2987,4.3249,4.2639,4.7629,4.6747,1.5978,1.5289,1.9812,1.9114,3.89,3.716,7.7197,8.0385,2.1121,1.861,7.3873,5.9553,12.3394,11.8236,8.4486,7.895,2.2754,2.3409,4.9078,5.164,1.9846,1.8644,19.0468,20.7362,5.4709,6.1279,4.2,3.8396,1.1946,1.0477,2.3501,2.3342,8.5302,7.2792,15.1353,14.4218,3.1322,3.9171,4.5601,4.3266,3.0884,3.215,1.4141,1.6012,4.1098,4.2422,11.2018,11.3547,2.9925,3.2449,2.8719,2.4977,2.4557,2.6107,10.9354,11.4652,2.384,2.5227,2.4329,2.5305,11.9639,10.5878,2.0007,2.314,1.3844,1.4499,15.0529,15.5509,5.5665,5.677,8.4129,8.8502,4.3743,3.269,11.2587,11.59,6.9815,7.7327,7.5089,7.2254,3.1875,3.9585,1.7121,1.8672,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd131,77,77,F,1.3969,1.6251,0.3667,0.40996,0.80319,0.78801,16.0067,2.7406,2.7731,39.8187,40.0559,11.5711,12.3842,222.8908,219.2785,1.0389,2.7104,2.9587,0.41045,0.47194,8.7354,8.9561,1.3347,1.3672,3.3123,3.4984,6.5152,6.6266,4.1878,4.425,0.07406,3.7976,1.9454,2.3656,0.36306,0.35908,3.7742,4.5673,3.8245,3.708,1.925,1.6403,10.3245,8.9469,3.2507,3.4869,3.975,3.6877,4.6443,4.7757,1.6478,1.4683,2.0596,2.019,3.6771,3.4071,6.967,6.7018,1.9718,2.0739,6.0955,6.1595,10.7519,10.4886,7.4103,7.2027,2.2146,2.5249,4.1951,3.9037,1.665,1.7653,18.7904,19.0436,5.249,5.8987,3.9613,3.8823,1.149,1.0132,2.3706,2.5952,7.6361,6.7603,13.1632,12.9215,2.7967,3.3613,3.8176,4.0099,3.2773,3.5102,1.5666,1.6799,4.0465,4.3793,10.2035,10.4622,2.7705,2.8295,2.1981,2.2121,2.2397,2.265,9.7286,11.5521,2.0726,2.432,2.2013,2.1437,13.7294,14.2066,1.8825,1.9472,1.0058,1.1418,15.0981,14.7358,5.7842,5.7834,7.8793,8.2916,4.0534,3.8516,10.7547,10.8141,7.4092,7.3126,7.0993,6.8292,3.372,3.8793,1.7493,1.6046,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd132,65,65,F,1.3317,2.6417,0.33046,0.38328,0.88578,0.9011,15.9099,2.7801,2.6657,46.6869,46.7941,12.2852,12.8402,195.4017,191.6235,1.0805,3.1976,3.0452,0.76116,0.74344,21.4528,22.8015,1.4317,1.3632,3.5721,3.5654,6.7328,6.9254,4.0316,4.3083,0.07738,4.8149,2.4087,2.3526,0.34166,0.37409,3.689,4.4399,3.5452,3.6634,1.6289,1.4833,12.0358,9.8041,3.8947,3.6397,4.0322,4.0472,5.8685,4.8355,1.8278,1.6341,1.9458,2.0205,3.4846,3.268,8.1453,8.0387,1.9123,1.8568,6.8062,6.1348,12.1398,12.2544,9.0811,7.7076,1.9995,2.2419,4.0733,4.2487,1.7256,1.8406,16.6894,17.8445,5.1891,5.8435,3.5505,3.5377,0.95715,1.086,2.1619,2.5842,7.6757,6.5605,14.027,14.667,2.9056,3.3102,5.0403,5.2773,3.4757,3.6286,1.4048,1.4598,3.745,4.0424,10.7288,10.5432,3.052,3.2431,2.3245,2.3193,2.2849,2.1531,10.65,11.7391,2.133,2.3013,2.0354,2.5504,11.2796,11.8026,1.9978,1.9056,1.1433,1.1931,15.517,13.3558,4.8345,4.9149,7.9781,9.0722,4.0545,4.0134,10.1367,10.7538,6.8531,7.4313,8.145,7.8968,3.5707,3.876,1.5601,1.6201,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd133,80,80,F,1.4798,1.6062,0.29367,0.35503,0.74098,0.66949,19.3377,2.4566,2.4381,44.1686,44.4746,14.6805,15.6924,208.0846,199.2788,1.5677,3.1431,2.9396,0.77148,0.55524,11.4556,11.4524,1.5667,1.5621,3.0753,3.1295,7.0385,7.1107,4.5223,4.78,0.07937,4.7616,2.1792,2.5975,0.33802,0.32938,4.014,4.2455,3.5752,4.0666,1.7692,1.5632,9.768,9.4621,2.8765,2.8053,3.7881,3.6886,4.2208,4.0817,1.4599,1.2548,1.9501,1.9234,3.8571,3.3237,6.9239,7.0446,1.6926,1.7617,5.9028,5.7301,10.1361,10.4634,7.2789,7.1987,2.0758,2.4377,4.5338,4.5069,1.5598,1.7034,18.5382,18.6762,4.56,5.1462,3.572,3.8498,1.0455,0.94038,2.5015,2.3337,7.2669,6.6771,12.5616,12.5638,2.818,3.282,3.5627,3.8354,3.6352,3.337,1.4431,1.5583,3.7788,4.1181,9.8708,8.9795,2.7849,2.8722,2.3245,2.4469,2.1324,2.4509,9.3621,10.0157,2.2578,2.2947,2.1158,2.2828,11.9313,11.7583,1.6475,2.0461,1.1353,1.1825,15.2759,13.7535,5.0504,4.9993,7.3955,7.9466,3.9385,2.932,9.4038,9.8225,6.4901,7.3101,6.9366,7.06,3.2606,3.9061,1.299,1.5727,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd134,67,67,M,2.0299,2.3465,0.40465,0.46097,1.0559,1.0389,21.4893,3.0841,2.9926,56.6536,56.9775,16.0141,16.4765,261.275,255.7585,1.8762,3.9872,4.4519,0.54138,0.52111,17.6306,18.95,1.703,1.7045,4.5594,4.1137,8.2756,8.5587,5.0063,5.3616,0.08927,5.3382,2.5426,3.2572,0.43993,0.42072,5.0313,6.2693,4.2613,4.8254,1.8561,1.5044,11.0375,10.4278,3.5269,3.7533,4.1051,4.3044,4.9765,5.0715,2.1363,1.8749,2.0501,2.0053,4.3523,4.1805,8.6655,8.6057,2.3453,2.3903,6.5246,6.2247,12.7428,12.5009,8.4069,7.61,2.6095,2.4884,5.5249,5.5629,1.9699,1.7924,21.6418,21.8987,5.5605,7.5661,4.3291,4.5908,1.104,1.1651,2.711,2.5419,9.1858,8.0272,16.2557,15.24,3.2392,3.5588,4.4381,4.3997,2.8235,3.4886,1.7978,1.5529,4.1235,4.4808,10.3087,10.129,3.6548,3.5329,2.5473,2.6615,2.2,2.3546,12.1582,12.4476,2.625,2.4762,2.5395,2.7685,13.9635,15.0168,1.942,2.2687,1.2302,1.3364,17.0532,14.0924,6.077,6.6482,8.9082,10.0076,4.5474,3.8774,12.1353,11.7601,7.9658,8.5007,8.592,8.4546,3.8973,3.9893,1.5237,1.6449,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd135,76,76,F,1.2064,1.688,0.36376,0.40699,0.79481,0.81121,16.4464,2.8302,2.7236,45.4266,45.8795,13.4651,13.7074,222.5085,218.0444,1.0976,2.8776,2.8595,0.69273,0.59913,14.9818,18.4698,1.4824,1.5196,3.5759,3.7459,5.8994,6.5324,4.1389,4.377,0.07934,4.5442,2.1287,2.5065,0.35599,0.34714,3.8566,4.2396,4.0432,4.3491,1.6198,1.424,10.2123,9.2931,2.8545,2.4821,3.7618,4.0026,4.3337,4.3004,1.4613,1.5651,1.955,2.028,3.4477,3.2115,7.167,6.8239,1.8119,2.0083,5.6115,5.3327,11.7899,10.455,7.1358,6.6851,2.1988,2.2401,4.5323,4.427,1.6025,1.6783,16.898,16.0011,4.9089,6.2788,3.4502,3.7084,0.9308,0.94606,2.4373,2.3596,6.9936,6.5146,14.5319,12.5885,2.6264,2.9748,3.7202,3.724,3.614,3.0803,1.6746,1.4658,3.6985,3.9552,9.785,9.925,2.7711,2.9354,2.482,2.719,2.3869,1.9805,9.3051,10.6611,2.3685,2.3577,2.2022,2.3784,10.6051,11.4368,2.1924,1.6056,1.1622,1.1489,13.069,12.771,4.7457,4.1712,9.2243,8.0408,3.907,2.8281,9.6342,10.1731,8.2144,6.9651,7.2502,7.4169,3.384,3.5532,1.5173,1.4384,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd136,70,70,F,1.9017,1.7396,0.30692,0.33912,0.73639,0.75437,16.6514,2.2641,2.3089,40.1162,41.3507,13.9708,13.9549,219.0305,208.5733,2.2077,3.0009,2.8124,1.2669,1.2296,23.9601,28.1178,1.5007,1.4552,3.0136,3.3269,5.4271,6.0814,4.2798,4.6028,0.08474,4.3013,2.0402,2.4745,0.41304,0.3861,4.6665,4.5768,4.4494,4.8529,1.8315,1.453,12.0143,8.6865,2.7214,2.4011,4.479,4.3391,4.4505,3.7273,1.4172,1.4425,2.088,2.0518,3.6334,3.3457,6.9071,6.8231,2.0793,1.948,5.4261,5.6019,10.7731,10.131,6.9075,6.6139,2.0878,2.1075,4.4752,4.4217,1.8179,1.7203,15.0889,16.1093,3.8083,5.1746,3.7058,3.7272,1.161,0.84283,2.8441,2.3498,7.4045,6.9862,13.5638,12.5934,2.4921,3.2088,3.8105,3.8423,3.2295,3.2799,1.4431,1.4222,3.7788,3.9774,10.5466,10.1569,2.6235,2.7702,2.6974,2.5927,2.3873,2.4892,9.8726,10.8337,2.3103,2.4992,2.1795,2.3669,10.5172,11.0202,1.9195,2.2623,1.3271,1.3703,13.2237,13.2744,5.184,4.9853,7.6472,7.8636,3.7281,2.7232,10.6498,11.021,7.0378,6.9033,6.5625,6.366,3.0674,3.7842,1.7607,1.8382,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd137,85,85,F,1.772,2.1606,0.28582,0.31392,0.64989,0.63575,17.5521,2.7154,2.424,52.3719,51.7551,13.1793,13.5793,171.0863,167.2846,1.8472,2.9906,2.8025,2.2907,1.5853,34.6058,34.8398,1.4831,1.4867,3.1413,3.003,5.6714,5.9888,4.4153,4.6199,0.06925,5.1093,2.3297,2.7349,0.34766,0.32086,4.1125,4.228,3.6817,3.937,1.448,1.287,8.3589,6.0317,2.8653,2.9113,3.5283,3.9159,4.0084,3.6558,1.3234,1.137,1.8373,1.8077,3.4367,3.0718,6.9239,6.7018,1.6777,1.6461,6.1881,5.9591,9.9931,9.618,6.9544,6.1704,1.8612,1.932,4.6339,4.8775,1.4899,1.7359,16.5137,15.7695,4.8904,4.3309,3.3358,3.1832,1.0474,1.1086,2.4179,2.3819,7.0534,6.0357,12.435,11.9987,2.9651,3.0168,3.3211,3.4578,2.9952,2.9939,1.3545,1.3123,3.7725,4.3165,10.4549,10.1787,2.7887,2.7139,2.2408,2.2096,1.9047,2.1576,9.0295,10.9548,2.1258,2.0985,2.0478,2.2094,10.0972,11.5403,1.6696,1.8485,1.071,1.0709,12.8832,13.1632,5.1356,4.6124,7.2704,7.4959,4.3206,2.9199,9.3013,9.2975,5.9694,6.2873,7.0624,6.6926,3.0039,3.6266,1.2774,1.5239,,18,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd138,77,77,F,1.3969,0.25159,0.00009,0.13301,0.18236,0.51612,14.3243,0.00133,0,36.5871,31.6077,11.27,12.2296,131.7706,128.6959,0.97859,2.4553,2.2563,0.55739,0.65246,15.0645,13.1091,0.17428,0.19332,0.32208,0.79482,3.756,2.2812,3.7752,4.0564,0.08637,4.028,1.7952,1.9277,0.13799,0.28174,1.9435,0.00936,0.12458,0.46849,0.45181,0.00046,5.3578,2.2506,2.7469,2.3392,2.1079,0.43185,4.1145,4.1609,1.1498,1.0768,0,0.02155,0,0,5.5047,5.2277,0.88096,0.77512,5.3595,4.6349,6.7824,7.7991,6.4388,5.8332,0.02731,0.22842,0,0,0.66198,0.64037,0,0,4.5609,3.9079,2.2148,1.2391,0,0,1.7049,0,0.02225,3.6668,9.5092,11.6557,2.3532,2.5733,3.4634,3.1932,0,0.00223,0.00987,0.49832,2.3859,1.534,6.4692,6.5694,2.2397,2.5337,1.7214,1.7543,0.38842,0.02077,0.00167,0.00111,1.4502,0.90385,1.236,1.7054,0.00078,0.00007,0.00244,1.4383,0.55918,0.7997,0.00046,0.00005,3.4089,0,5.1788,1.2354,3.8805,3.2059,0.18875,7.6989,6.0248,6.3576,5.7754,6.1399,0,0,0.78203,0.31108,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd139,82,82,F,0.96939,1.0427,0.30261,0.35007,0.74098,0.67758,15.854,2.4722,2.1983,36.5871,36.7825,12.2977,12.711,160.9065,160.0347,0.91734,2.7989,2.6953,0.44707,0.33711,10.2828,10.1573,1.1609,1.2199,2.9175,2.8923,5.3109,6.3529,4.2723,4.6028,0.08417,4.5881,1.6783,1.9212,0.32299,0.32673,3.5549,3.6878,3.2802,3.5351,1.3371,1.3116,9.0441,6.643,2.4957,2.4132,3.0914,3.0202,3.4986,2.9575,1.4787,1.3345,1.566,1.4596,3.2655,2.8818,6.0282,5.6767,1.6023,1.6724,4.9759,4.7187,9.5365,8.6348,6.263,5.8912,1.5963,1.9589,3.866,3.8531,1.3566,1.4512,14.4447,14.4447,3.9047,4.2477,2.876,3.3491,0.9126,0.91099,2.138,2.04,6.2179,5.527,11.7952,10.7233,2.3876,2.3928,3.335,3.2681,2.9142,2.8078,1.1439,1.2007,3.3466,3.6918,9.4355,9.1818,2.5692,2.8395,2.1241,1.9411,1.79,1.6112,8.1605,8.8018,1.7699,1.9725,1.8371,1.9437,9.7805,10.5862,1.655,1.4938,0.96208,0.97981,10.0494,10.6457,4.4946,4.6449,6.8403,7.5258,3.4558,2.717,8.9171,8.1941,6.4507,5.4729,5.7073,5.9166,3.0771,2.9441,1.2155,1.3272,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd140,66,66,M,1.251,2.384,0.36818,0.37631,0.73452,0.73871,16.0896,2.9766,2.9262,41.6767,42.8081,13.6541,13.4048,197.4064,192.1346,1.2254,2.9465,2.5777,0.45092,0.46058,15.4596,16.483,1.4045,1.367,3.4885,3.483,6.2942,6.5321,4.1629,4.3168,0.07092,4.1112,2.0176,2.2029,0.34677,0.36524,3.0348,3.4642,4.8436,5.0995,1.59,1.2674,11.4893,11.0348,2.2925,1.9707,3.5572,3.5289,3.6838,2.9868,1.3679,1.4601,1.8886,1.8599,3.16,2.6735,6.5846,6.6884,1.768,1.7039,4.8907,5.7087,9.5773,9.8852,6.5715,5.6572,1.9596,1.9649,4.075,4.2049,1.5552,1.4987,15.5214,15.7201,3.9986,4.9917,3.1373,3.4001,0.92238,0.96225,2.1427,1.9437,6.4258,5.6687,11.5183,12.4628,2.0007,2.5224,3.5643,3.6689,3.3208,2.9411,1.3532,1.3155,3.228,3.7223,9.4578,9.3441,2.4831,2.5078,2.4649,2.3505,1.8438,2.183,12.4968,12.7977,2.1918,2.3422,1.9823,2.1863,10.8511,10.5874,1.5526,1.7159,1.0968,1.2261,12.8439,13.1053,4.2554,4.1389,8.5548,10.4398,3.5536,2.8037,9.2928,9.5526,6.9532,6.7096,6.7848,6.8696,3.2904,3.4155,1.3663,1.4821,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd141,58,58,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd142,80,80,F,1.8908,2.101,0.36634,0.38664,0.72047,0.69308,16.9978,2.8806,2.8398,45.5968,44.7344,12.9595,13.7952,201.9419,201.5569,1.8472,3.0205,2.6672,1.1542,1.1206,16.5071,19.5786,1.4367,1.393,3.5692,3.483,6.3999,6.712,4.3212,4.5547,0.08128,4.9098,2.1661,2.6837,0.33936,0.37298,3.6934,4.1722,3.5452,3.9905,1.5403,1.3214,9.1377,7.631,2.9806,2.5886,3.8478,4.1408,5.3005,4.5205,1.4296,1.2714,1.5552,1.9806,3.2689,3.3803,7.2272,6.6823,1.7995,1.8678,6.7318,6.6334,10.6799,9.8925,7.6717,7.1949,2.1112,2.2288,4.564,4.4931,1.5691,1.5201,15.9353,16.0376,4.7603,5.8726,3.4649,3.5284,0.9974,1.0348,2.4465,1.9644,6.5669,6.2112,12.738,11.9602,3.2278,3.919,4.3293,4.2739,2.7412,3.4076,1.3447,1.4334,3.8381,4.0857,11.2412,10.9054,2.8073,2.9113,2.1595,2.0982,1.8993,2.0319,9.654,11.1711,2.1371,2.2588,1.8863,2.0868,11.1179,11.8988,1.5466,1.8446,1.1365,1.1565,12.8768,14.141,4.9246,4.7759,8.0874,7.6319,4.7781,4.5027,11.0487,10.3864,6.2928,6.0375,6.2989,6.7205,2.6007,3.444,1.2354,1.244,,18,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd143,71,71,M,2.0706,2.0163,0.44771,0.53202,0.70174,0.75446,20.0813,3.3837,3.2867,52.467,51.1016,14.9431,15.1152,234.9673,235.1473,1.8735,2.93,2.8871,1.0422,1.2163,23.4697,26.9842,1.5604,1.5505,3.6942,3.827,6.1374,6.3966,4.8444,4.8368,0.08385,5.1432,2.3297,2.9156,0.40119,0.41096,4.7629,5.2022,4.7198,4.9237,2.0117,1.528,11.4851,11.1179,2.76,2.4011,5.3782,4.4735,4.4191,3.4888,1.5815,1.7013,2.2589,2.1163,3.7726,3.6591,7.5723,7.7173,2.206,2.281,6.8045,6.7684,11.2832,11.7343,7.5305,6.5798,2.5564,2.4717,5.1542,4.7431,2.0811,1.9903,18.9174,20.7362,5.92,6.9096,4.1554,4.1983,0.99532,1.2153,2.406,2.4826,8.4573,8.1543,14.1895,15.1973,3.0006,3.282,4.3265,4.4299,3.8414,3.6095,1.7426,1.8031,3.6144,3.9584,9.1509,9.5752,2.8551,3.1554,2.5812,2.5942,2.9821,2.7369,11.3623,11.1987,2.6656,2.7952,2.3959,2.5596,11.6594,11.6061,2.3105,2.1388,1.3847,1.3665,14.4455,14.4765,5.8532,5.5681,9.4162,10.3407,4.0087,3.3648,12.1353,12.7091,8.2011,6.9651,8.3218,8.8303,4.0728,3.9893,1.8975,1.5387,,25,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd144,71,71,M,2.0706,2.2637,0.37023,0.41771,0.84848,0.90626,19.0873,3.0522,2.9211,47.1015,47.7378,16.5091,17.0418,254.1394,252.0012,1.7692,3.4769,3.5191,1.2206,0.98823,20.2643,23.1056,1.5787,1.5442,3.8694,3.8748,7.756,7.9181,4.6823,4.9825,0.10334,5.2607,2.2935,2.9853,0.42072,0.40562,4.4839,5.052,4.2834,4.6529,2.0285,1.8149,10.9565,10.4591,3.7903,3.6443,4.2444,4.7194,5.0479,5.1742,1.6126,1.875,2.2622,2.3582,4.0094,3.4294,7.5073,6.7926,2.1728,2.3796,7.1322,7.4721,13.2069,10.8031,8.7088,8.4943,2.5698,2.4828,5.2704,5.6182,2.1056,2.0408,20.2924,20.4062,5.2318,7.1553,3.9216,4.4004,0.95657,1.0851,2.1266,2.4481,9.0757,7.9071,16.6756,13.2366,3.2751,3.9308,4.5189,4.6073,3.5302,3.206,1.7398,1.5248,4.0929,4.7152,11.2018,11.2292,3.2159,3.6673,2.5509,2.5832,2.4047,2.5193,10.9172,12.0117,2.5147,2.6129,2.4364,2.6681,12.9718,12.5472,1.9948,2.2289,1.4077,1.4442,15.111,15.6951,5.3727,5.8485,8.9082,10.4647,4.8376,3.3474,10.9764,11.324,6.9815,6.3939,8.6143,7.923,4.0663,4.4701,1.6556,1.8049,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd145,77,77,F,1.2064,1.7496,0.4066,0.45025,0.82078,0.75706,18.2648,2.9757,2.9597,42.1123,42.8051,14.0223,14.4078,207.7413,204.5753,1.0976,3.2075,3.0211,0.56721,0.60498,11.703,13.8937,1.4961,1.4683,3.4333,3.5921,6.889,7.1078,4.4261,4.701,0.07495,4.3534,2.1285,2.3922,0.40743,0.41275,4.0253,4.3886,3.8487,3.7848,1.9582,1.6768,10.6817,10.0979,2.6718,2.7667,3.878,4.4165,4.9072,5.0822,1.7124,1.5917,2.0318,2.0529,4.1246,3.5694,7.2356,7.5396,2.3994,2.3284,7.0424,6.7684,10.7304,11.7204,8.6739,7.8393,2.4205,2.6274,4.3592,4.0497,1.8843,1.9126,17.8334,19.015,5.2609,6.6358,4.1673,4.279,1.3035,1.1753,2.6164,2.8489,7.7828,7.2608,14.1547,13.7819,2.815,3.0348,4.5218,4.3422,3.2773,3.3622,1.6736,1.6574,3.988,4.2619,11.2169,10.6018,2.8849,3.205,2.1012,2.0748,2.3392,2.5135,10.2866,11.9748,2.7026,2.7016,1.9514,2.0736,12.7044,13.7325,2.0535,2.2269,1.1744,1.1728,15.0282,15.8737,5.4556,5.911,8.702,10.0674,3.7829,3.1956,11.0085,11.6074,7.5991,7.1363,8.0592,7.499,3.6638,3.9321,1.375,1.3679,,20,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd146,87,87,M,1.7884,2.1243,0.33007,0.37163,0.75455,0.69308,18.2564,2.8236,2.5904,47.6643,49.1911,14.7142,14.9308,203.9915,198.292,1.6943,2.9139,2.6953,0.85013,0.79444,19.6921,22.2409,1.6238,1.6337,3.4324,3.4661,6.4665,6.5824,4.4218,4.6959,0.07497,4.8108,2.231,2.9139,0.37744,0.38384,3.2603,4.256,4.3523,4.8572,1.6909,1.4409,9.2201,7.6134,2.8436,3.0208,4.1768,4.2043,4.4191,4.4701,1.5648,1.2714,2.0643,1.9395,3.3198,3.4748,7.2788,6.8644,1.9102,1.9128,5.9433,6.1578,11.1621,11.0186,7.6717,7.0595,2.1865,2.1182,4.4497,4.5402,1.5707,1.5011,19.3284,18.6921,4.2855,5.3522,3.6544,3.9303,1.0574,1.0397,2.2614,2.3043,7.5529,6.721,14.0409,12.6961,2.7509,3.3573,4.2749,4.0608,3.4493,3.0311,1.4161,1.2952,4.0614,4.3697,11.0041,10.9054,2.7099,2.9822,2.3244,2.4939,2.0784,2.5405,9.2869,11.0625,2.1907,2.3015,2.2047,2.4901,13.239,12.9802,1.8786,2.0301,1.2017,1.2064,13.117,13.3514,5.6312,5.2331,6.8716,7.7036,4.2413,3.4559,9.5773,9.1825,7.9654,6.4642,7.7021,7.7004,3.4632,3.4713,1.4877,1.9768,,24,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd147,65,65,F,0.98147,2.0464,0.38153,0.35894,0.81699,0.76205,14.7604,2.7492,2.2943,43.8019,41.2085,10.9827,12.3842,222.8908,218.0099,1.0466,3.0628,2.9396,0.69172,0.52345,11.5201,13.8937,1.5032,1.5031,3.2753,3.2971,6.2277,6.4197,3.9613,4.2762,0.07934,3.4571,1.9377,2.3748,0.33725,0.38035,4.2948,4.7178,4.0205,4.1261,1.8601,1.4945,9.6822,8.3233,2.8039,3.188,3.9024,4.2844,4.2944,4.0704,1.7166,1.589,1.8952,1.7861,3.617,3.096,6.7859,6.1158,1.8969,1.9966,5.7045,5.3777,10.6336,9.2592,6.9075,6.8839,2.2463,2.268,4.3957,4.3582,1.7652,1.7434,17.2759,16.9412,5.347,5.3321,3.8634,3.6573,1.1529,1.3891,2.663,2.7867,8.7052,6.9939,12.5616,13.1739,2.2418,2.3848,3.7422,3.7199,2.8518,2.889,1.5509,1.4125,3.5234,3.8467,9.6544,9.7498,2.8667,2.9691,2.4224,2.4669,2.0408,2.094,9.2486,11.3341,2.2256,2.3301,2.0732,2.3548,10.3754,11.4284,1.9249,1.8782,1.1423,1.1544,14.18,13.6172,5.5426,5.3156,7.5235,7.703,3.8805,3.0755,8.7703,9.8832,7.2047,7.2427,8.1007,7.7609,3.5694,3.4622,1.5697,1.5672,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd148,,,M,1.7034,1.8993,0.37903,0.43673,0.93913,0.93694,16.0602,3.0643,2.8993,48.197,48.8532,12.2852,12.9421,199.8175,193.6324,1.509,3.5816,3.3065,0.96487,0.65957,16.5462,22.3572,1.3243,1.3799,3.5193,3.6449,6.5098,6.5046,4.1216,4.3104,0.0892,4.7502,2.2093,2.7688,0.39874,0.39221,4.0849,4.8562,3.8215,3.8937,1.8782,1.6856,9.9299,8.2935,3.58,3.107,3.9933,4.0095,4.6282,4.7757,1.9135,1.7519,1.8946,1.8671,3.7029,3.3666,8.2067,7.9662,1.9291,1.969,7.1179,6.5106,12.1871,11.7461,9.2299,8.4921,2.2466,2.558,4.4371,4.626,1.703,1.849,19.4832,20.0176,5.6223,6.2481,4.1763,3.9091,1.156,1.0588,2.831,2.6298,7.4436,7.1258,14.935,14.0082,3.0831,3.3291,4.4433,4.6383,3.307,3.2974,1.5666,1.4832,4.4865,4.661,11.1166,11.096,3.0666,3.3833,2.1876,2.3017,1.9877,2.0437,10.6207,11.5437,2.3911,2.5105,1.8971,2.1113,13.5061,13.3993,1.6913,1.8518,1.1729,1.2064,14.5232,14.5068,5.101,4.9771,8.3652,8.5848,4.8322,3.7085,10.5438,11.3832,7.9936,7.898,8.5225,7.6055,3.7418,3.5155,1.2354,1.6448,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd149,78,78,F,2.6213,1.6601,0.27619,0.29139,0.63979,0.68516,19.2627,2.6305,2.424,43.6868,44.0063,14.5408,15.6678,221.3597,216.8382,2.486,2.7915,2.5093,2.2274,2.5342,41.0473,46.0499,1.627,1.6135,3.5212,3.5935,6.5226,6.3276,4.5237,4.7758,0.08132,4.6172,2.0275,2.241,0.32656,0.31457,3.6203,3.9099,3.919,4.1751,1.4501,1.3809,8.8451,7.2396,2.5845,2.3392,4.0917,4.1893,4.2373,3.7566,1.3279,1.3436,1.8546,1.7616,3.16,3.0175,6.2382,5.8168,1.6897,1.7576,5.8617,6.6108,8.7966,8.2972,7.3667,7.1401,2.0537,2.0975,3.97,4.0368,1.4458,1.5425,17.2115,17.557,4.5876,5.7645,3.1534,3.6539,1.2187,1.0156,2.5573,2.4345,6.6631,5.9829,11.8959,10.6118,2.4921,2.9607,4.0478,3.7471,3.3267,3.0269,1.4194,1.2029,3.1812,3.4843,9.2206,8.9534,2.6202,2.7031,2.2922,2.3503,1.8088,2.3093,10.0499,11.0569,2.1342,2.3082,2.0158,2.1973,10.3294,11.0202,1.662,1.8118,0.99239,1.0054,12.34,11.9706,5.1658,5.0469,6.9453,7.0505,3.2066,2.6126,9.6322,11.3991,6.5345,5.1763,6.7954,6.9116,3.5397,3.1957,1.3663,1.3907,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd150,76,76,F,1.94,2.5673,0.31472,0.33023,0.75633,0.71856,18.184,2.8236,2.5637,44.8791,45.9534,14.6356,15.227,226.8225,219.8805,1.9752,2.8578,2.6341,1.591,1.7795,27.9583,27.8679,1.5531,1.5621,3.4085,3.4327,5.9256,6.6111,4.5649,4.6879,0.0883,4.2462,2.1246,2.3728,0.3292,0.35762,4.0428,4.2533,4.0829,4.1644,1.4974,1.2591,8.3991,7.6577,2.8636,2.6632,3.974,4.0958,4.2585,4.0124,1.3929,1.3429,2.001,1.8292,3.2279,2.9111,6.9495,6.8111,1.8146,1.8986,6.0598,6.4085,10.3388,10.2638,7.4424,6.9718,1.9705,2.067,5.0936,4.5042,1.5878,1.5684,15.8963,16.3877,4.6874,5.3467,3.4559,3.3071,0.70435,0.99614,1.9456,1.8661,7.2827,6.4791,12.4217,11.6458,2.7901,3.0486,4.0845,4.4591,3.43,3.2124,1.2925,1.3122,3.6512,3.794,9.4082,8.9063,2.6608,2.8399,2.3053,2.305,2.2739,2.5638,8.9588,9.8737,2.1033,2.3203,2.0833,2.1555,11.9469,11.0473,1.8008,2.3003,1.2284,1.3028,12.6629,12.9671,4.8422,4.7932,7.1517,8.0712,3.9919,3.6118,9.2156,8.8828,6.0187,6.4783,6.6331,6.3247,3.24,3.321,1.3856,1.6211,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd151,71,71,M,1.7205,1.9789,0.41207,0.46676,0.786,0.7886,19.8139,2.6515,2.7248,50.8088,51.1779,16.6993,16.9913,240.1227,223.5984,1.656,3.2064,2.956,0.78669,0.9965,21.7979,24.3171,1.5958,1.6283,3.4216,4.0539,6.5392,7.1303,4.6514,4.9084,0.07881,5.3452,2.4314,2.9056,0.38806,0.37037,4.1302,4.3208,3.9866,4.1629,1.5645,1.5165,9.6515,9.4289,3.617,3.2017,3.5163,3.6665,5.3684,4.8355,1.5487,1.4104,1.6044,1.8184,3.5829,3.3174,7.2787,7.6979,1.8311,1.9785,6.497,6.6511,11.0529,11.0308,9.3943,8.2014,1.9759,2.3723,4.6196,4.6586,1.5766,1.659,19.4878,19.4487,4.8896,7.057,3.2559,3.5057,1.3629,1.2208,3.2078,3.2518,7.1172,6.1987,15.7108,13.2978,2.9628,3.3899,4.8417,5.0557,2.9993,3.215,1.2343,1.3536,4.0614,4.5595,10.2584,11.088,3.0984,3.0333,2.3438,2.4581,1.9221,2.3333,10.0432,11.0064,1.967,2.2691,1.9255,2.2682,12.4228,13.7325,1.7387,2.0163,1.1606,1.1858,13.0346,13.7179,4.9585,4.9962,7.4809,9.3389,3.8339,2.8841,10.2264,12.0709,7.484,8.7394,9.073,8.2145,3.0453,4.0589,1.2853,1.7914,,25,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd152,73,73,F,1.3194,1.8325,0.3095,0.32609,0.64534,0.66117,16.1442,2.3884,2.2759,40.9338,40.6259,12.0541,12.4071,183.9344,179.6528,1.4058,2.4729,2.4226,0.84938,0.81448,13.6408,14.8694,1.3159,1.2852,2.903,3.1938,5.9534,6.3217,4.0467,4.2826,0.07342,3.8579,1.9097,2.1798,0.31621,0.31325,3.1503,3.6164,3.4566,3.867,1.3136,1.3045,8.3621,7.6056,3.0178,2.9306,3.1699,3.0664,4.6168,4.3741,1.3194,1.3338,1.5684,1.6179,3.2655,2.8818,6.8854,5.9776,1.6023,1.707,5.9191,5.1349,10.126,9.1289,7.6111,7.0785,1.7255,2.0953,4.1291,3.9836,1.3793,1.4145,16.1624,15.5037,4.5528,4.5397,2.88,3.3491,0.86488,0.93562,1.8727,1.9728,6.2177,5.3046,12.5317,12.1185,2.8735,2.8417,4.0727,4.3462,3.1041,2.5717,1.0136,1.259,3.4679,3.5562,9.0214,8.625,2.6237,2.8395,2.0164,1.996,1.6189,1.8012,9.2046,10.7959,1.8589,1.9725,1.7705,1.8628,10.0972,10.6166,1.5024,2.099,0.95731,1.0415,12.3623,13.0649,4.0735,4.1648,6.4474,7.9897,4.2409,2.9199,9.0949,9.024,6.2459,6.8094,6.5621,5.9722,3.2322,2.7935,1.2863,1.4745,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd153,60,60,F,1.1864,2.1104,0.30825,0.34425,0.70782,0.72975,16.5658,2.4566,2.4613,41.9809,41.053,13.3855,13.5134,207.8096,204.0734,1.4058,3.1622,2.8714,0.50557,0.57025,11.4556,17.0265,1.4942,1.453,3.2816,3.1849,5.8613,6.0221,4.1046,4.3053,0.08405,3.9446,2.0435,2.4315,0.32816,0.34711,3.2997,3.854,3.5251,3.5366,1.59,1.3265,8.2133,7.7962,2.9617,2.7883,3.1549,3.0202,3.9569,4.0439,1.4647,1.5106,1.634,1.7092,3.3566,3.0064,6.4975,6.4713,1.6804,1.6831,6.1974,5.9591,9.9978,9.7188,6.3936,6.4209,1.9799,2.1191,3.7239,4.224,1.4155,1.4807,15.608,15.6616,4.8392,5.7343,3.2523,3.4232,0.94522,1.0109,2.4027,2.1599,6.5869,5.7755,12.931,12.523,2.8358,3.1354,3.9429,3.9801,3.1906,3.2185,1.3021,1.2695,3.4626,3.7326,8.9068,8.4977,2.685,2.9152,2.0597,1.9634,1.7161,1.9811,10.0771,10.8728,1.9844,2.0306,1.8621,2.0026,11.3434,11.0993,1.4643,1.7921,0.99556,1.0193,12.9783,12.0223,5.0658,4.7346,6.2964,7.0676,3.6293,2.9222,8.0329,9.8944,6.1503,6.4992,6.2989,6.3148,3.1211,3.5311,1.2484,1.3736,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd154,75,75,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd155,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd156,81,81,M,1.7884,2.2666,0.38018,0.39958,0.83178,0.86541,17.0328,3.5058,2.9733,46.091,45.7024,14.0298,14.0919,231.4533,216.712,2.2077,3.0928,2.9412,0.71055,0.79444,24.2377,27.473,1.457,1.501,3.5193,3.471,6.0941,6.2847,4.3434,4.6436,0.08504,5.265,2.4097,2.4515,0.3848,0.38339,4.2709,4.993,3.6892,3.9845,1.6909,1.4756,10.5402,9.1054,3.5068,3.4112,3.9927,4.2457,5.0668,4.8713,1.5559,1.6225,1.8274,2.0075,3.7987,3.7036,7.3608,7.0565,1.8664,2.0366,7.2028,6.6334,10.9034,10.4543,8.7859,7.7772,2.0819,2.2401,4.7462,4.8757,1.6264,1.6391,19.0835,18.0206,5.2269,6.0827,3.5027,3.7084,0.99992,1.1025,2.3493,2.3144,7.5962,7.0344,13.4496,12.5934,3.329,3.5629,4.8417,5.1101,3.238,3.14,1.4056,1.4428,4.5744,5.319,12.6814,11.2253,2.8216,3.1353,2.2767,2.4505,2.1442,2.1431,10.2478,11.3632,2.1154,2.5075,2.1939,2.4949,10.8167,11.5403,1.8069,1.7221,1.185,1.245,13.5275,13.2053,5.3766,5.7904,8.3254,9.3659,4.5964,3.6816,10.0179,9.587,7.1756,6.875,7.3208,7.4774,3.3528,3.4662,1.6937,1.5224,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd157,65,65,F,1.2305,1.6554,0.32915,0.39746,0.8032,0.7718,15.8051,2.7039,2.9263,43.2103,41.4904,13.0955,14.4498,205.4396,203.9892,1.0511,3.0205,2.7774,0.39387,0.28087,9.9076,12.8708,1.4047,1.4068,3.9906,3.9605,6.504,6.792,4.0793,4.3655,0.08,4.0092,2.0209,2.4886,0.36763,0.34401,3.5552,4.2382,3.7949,3.8737,1.7341,1.4917,10.396,10.0979,2.8999,2.4821,3.6925,4.0188,4.5978,4.4358,1.6458,1.491,2.0114,1.9849,3.4041,2.9772,7.0278,7.3443,1.9123,1.8953,6.6846,6.3392,10.8308,11.0308,7.2448,6.6905,2.0395,2.2312,4.1402,3.8364,1.5995,1.7134,16.7745,17.9409,5.4975,6.2414,3.5726,3.7893,0.95179,0.86847,2.5734,2.2468,7.3004,6.1415,14.5429,14.5686,2.6346,2.8215,3.9168,3.9903,3.5858,3.1111,1.3911,1.4314,3.4305,3.7284,9.3341,8.9996,2.5377,2.9176,2.0154,2.1089,1.8769,2.2773,9.3051,10.7917,1.9527,2.4391,1.9729,2.1959,11.3061,12.0145,1.823,1.9195,1.1177,1.2411,12.7223,12.3486,4.7624,4.6411,8.1802,8.483,4.1137,3.6745,9.275,9.556,7.3424,6.4642,7.457,6.9864,3.641,3.4506,1.3541,1.3646,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd158,77,77,F,1.9954,1.548,0.32408,0.37816,0.77616,0.7312,17.2983,2.7565,2.7351,46.7065,44.7829,13.6618,13.6165,185.1925,192.4074,1.4848,3.131,2.7903,1.0439,0.9251,18.5472,20.6888,1.4477,1.4159,3.515,3.6017,5.9398,6.4332,4.4063,4.6199,0.08331,4.7108,2.2577,2.3503,0.36072,0.37411,3.4662,3.9206,4.1186,4.3787,1.4647,1.4543,9.611,8.1491,2.7977,2.4942,3.5572,3.6814,4.1187,3.7362,1.4286,1.3838,2.1733,1.9849,3.1985,2.9802,7.1123,6.8737,1.711,1.6765,6.3087,6.3151,11.8917,10.7504,6.9399,6.489,2.0648,2.1982,4.3864,4.3332,1.5862,1.5876,17.0132,17.8174,4.7685,5.6435,3.3946,3.6157,0.99093,1.0506,2.416,2.3079,7.2709,6.2888,14.027,13.2739,2.8358,3.03,3.9081,3.882,3.4637,3.337,1.4136,1.5146,3.8792,4.3133,9.8678,10.0704,2.6384,2.7835,2.3783,2.3278,1.9819,2.3586,9.205,10.8398,2.1348,2.2951,2.0681,2.2152,11.2387,11.9987,1.6802,2.1613,1.0128,0.97977,13.6789,12.3174,4.6414,4.8619,7.3572,8.6879,4.0145,3.6198,9.3681,9.7264,6.8531,7.1655,6.726,7.097,3.6116,4.0303,1.3402,1.5738,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd159,79,79,M,2.97,2.3996,0.35908,0.4395,0.8053,0.83264,16.8618,2.9475,2.8851,46.091,46.3144,14.4089,15.1085,184.0221,180.6172,2.1683,3.3738,3.0368,1.845,1.3495,31.5536,28.2007,1.4372,1.4294,3.5275,3.8389,6.1854,6.1844,4.2355,4.4351,0.08239,5.0546,2.3841,2.893,0.40804,0.39964,3.6959,4.2915,4.3269,4.9404,1.6226,1.526,9.5111,8.5927,3.2915,3.2808,3.6925,3.8943,4.2814,4.1837,1.5576,1.4961,2.0242,2.118,3.4374,3.5254,8.1193,7.0153,1.9149,1.9565,6.4091,6.0722,11.8785,11.0933,8.238,7.8848,2.2221,2.4574,4.3572,4.6318,1.5732,1.7626,19.1137,18.56,5.1888,6.0602,3.8622,3.7905,1.0974,1.0778,2.5889,2.3342,7.6768,6.583,14.6255,13.3618,2.9953,3.0627,4.3302,4.1715,3.2014,3.3633,1.5978,1.634,4.1173,4.4781,10.2395,10.7938,2.9202,3.4943,2.4064,2.5625,1.874,1.8554,9.1008,10.2569,2.3019,2.5752,2.0732,2.6109,12.189,11.132,1.6362,1.6056,1.0751,1.1393,12.8768,13.7966,4.8616,5.0196,7.36,7.7832,4.1329,3.3888,9.3173,9.5487,7.5389,7.4732,7.6642,7.7587,3.7943,3.7475,1.3876,1.3547,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd160,63,63,F,1.5191,2.0916,0.32688,0.36515,0.83099,0.80084,16.589,2.3135,2.254,41.4415,40.3972,13.7794,14.3408,221.2064,219.3099,1.2727,3.1017,2.9821,0.48748,0.42583,10.2608,11.4231,1.6336,1.5897,3.3577,3.2971,6.2777,6.8479,4.4904,4.6137,0.08013,4.061,1.9454,2.2805,0.33859,0.37409,4.3417,4.7414,3.8345,3.8531,1.5732,1.2392,10.5402,10.418,2.4799,2.3839,3.7413,3.8315,3.631,3.1617,1.6117,1.5192,1.886,1.8746,3.559,3.1623,6.8065,6.4713,1.8516,1.8748,5.202,5.1135,10.8308,10.3478,6.8044,5.6364,2.1097,2.0203,4.491,4.5381,1.7652,1.7602,15.5214,16.6634,4.0748,4.9091,3.4535,3.2152,1.0147,0.84283,2.3642,1.9965,8.2987,6.458,14.1004,12.9215,1.9907,2.5511,3.7565,3.6264,2.9756,3.1942,1.4383,1.3155,3.8961,4.4008,9.8153,10.1896,2.7981,2.979,2.1158,2.0798,2.2513,2.2704,9.1566,11.3081,1.7636,2.1009,1.8904,1.9779,11.3061,11.7379,2.1303,1.8391,1.1654,1.1584,12.0203,12.8249,5.6201,5.1639,7.3278,8.9715,3.3676,2.7374,9.9849,10.31,8.2144,7.6602,8.0225,7.5228,3.4382,3.321,1.4195,1.36,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd161,,,F,1.098,1.9214,0.34892,0.39298,0.84736,0.81768,17.753,2.8389,2.7829,52.3719,51.3749,14.6161,14.7727,196.9166,193.6324,1.0822,3.2885,3.0832,0.71844,0.56021,13.19,19.5313,1.5705,1.5355,3.4541,3.5903,6.6463,6.9801,4.6454,4.8287,0.07952,4.6455,2.2732,2.5815,0.37755,0.38119,3.6227,4.1262,3.8848,3.9875,1.739,1.5448,10.4294,9.3961,3.3453,2.9833,3.7748,3.9037,4.4357,4.0704,1.6892,1.6194,1.6694,1.87,3.4709,2.8584,7.8411,7.0345,1.9686,1.9665,6.5135,6.0717,11.8356,10.2448,7.6048,7.0399,2.2787,2.2322,4.1706,4.6652,1.5515,1.6249,18.9184,18.6128,5.1333,6.6039,3.7639,3.9961,1.0106,1.0018,2.5683,2.4201,6.5382,5.8484,14.027,13.2393,2.8584,3.7408,4.1496,4.2388,2.5408,2.8991,1.5207,1.4118,3.5927,3.8657,10.1423,10.4042,2.6761,2.9176,2.2934,2.3322,2.2739,2.496,10.4726,11.527,2.3157,2.2731,1.9084,2.0661,12.0438,11.7937,1.928,2.0007,1.1435,1.1901,14.7709,15.2836,5.1302,5.3888,8.1468,9.733,4.4738,3.772,11.2315,10.8141,6.7731,7.4393,7.5165,6.5856,3.1664,3.42,1.375,1.5584,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd162,,,M,1.7432,2.3497,0.40865,0.45101,0.82482,0.86494,17.0328,3.0766,3.0593,46.5868,46.3326,14.0187,13.7906,179.8113,173.4067,1.8418,3.1805,3.0452,0.90834,0.86925,27.5036,31.4738,1.6159,1.5701,3.6942,3.7419,7.0836,7.2372,4.6607,4.9244,0.08606,5.2786,2.356,2.8769,0.40972,0.44292,4.7502,5.731,4.75,4.7265,2.0035,1.7596,10.4915,9.3956,3.1923,2.9878,3.9162,3.9037,4.7289,4.3423,1.5576,1.5954,2.0501,2.1225,3.7273,3.5203,7.7057,7.4301,2.0146,2.2924,6.7827,6.8933,12.0364,11.3178,8.7216,8.2718,2.5126,2.4912,7.0872,7.119,1.914,2.0682,17.3549,19.0342,5.6223,6.5834,3.9951,4.297,1.112,1.1123,3.2179,3.2518,8.3148,7.6204,14.0511,13.8103,3.0215,4.326,4.8417,4.6758,3.7704,3.4099,1.6473,1.5378,5.1543,5.229,12.5322,11.4987,3.1953,3.2771,2.5451,2.5942,2.4669,2.2933,9.6495,10.1888,2.7286,2.6807,2.2659,2.7252,13.7355,13.8755,1.9259,1.8458,1.1925,1.2452,15.8485,15.5816,7.2336,5.9421,7.6402,8.6432,4.5789,3.4209,10.6237,11.0443,7.1187,6.9533,7.8609,6.9864,4.0397,4.2005,1.5415,1.6201,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd163,68,68,M,3.3332,3.6291,0.3314,0.37454,0.76311,0.85008,15.54,2.3119,2.3186,42.7073,41.3001,12.9533,13.3627,223.5583,218.9022,2.3965,3.175,3.0014,2.2274,2.2641,41.0473,46.0499,1.5338,1.5028,3.4543,3.4382,6.3174,6.525,4.2118,4.4331,0.08508,4.3839,2.1521,2.3922,0.33708,0.34086,4.5016,4.5463,4.2001,4.1827,1.647,1.3958,10.0514,8.5799,3.666,3.2925,4.007,4.0985,4.5845,4.7757,1.412,1.5954,1.7367,2.1288,3.3536,3.1207,7.167,6.8404,1.8311,1.8854,6.1681,6.9006,12.5051,9.777,8.124,7.9692,2.0326,2.1453,5.0936,4.7437,1.6467,1.6445,15.8963,17.6316,4.62,6.1117,3.2639,3.5062,1.3235,0.7957,2.5579,2.346,7.2009,6.6809,13.9325,11.413,2.8883,3.4076,4.1184,4.5039,2.8152,2.9979,1.4456,1.4648,3.3776,3.9726,11.9276,11.5639,2.516,2.7347,2.3829,2.4087,2.1933,2.2527,9.7635,10.8337,2.0841,2.0967,1.9927,2.2743,10.9179,11.5033,1.9332,1.9195,1.09,1.0615,14.1835,14.5603,4.8429,5.3068,7.3116,7.7832,4.4602,3.5768,10.3873,10.4425,6.5986,6.4001,6.3507,6.245,3.1664,3.6834,1.4227,1.638,,15,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd164,,,M,1.2664,1.7778,0.47296,0.54456,1.1379,1.3139,27.2308,3.856,3.5903,58.2693,56.9775,21.5412,18.5846,277.1635,310.1523,1.2594,3.9712,3.8589,0.59472,0.52111,12.1007,10.7932,1.7895,1.7332,4.8434,4.7365,8.0712,8.2819,5.0187,5.26,0.07574,6.2257,2.6203,3.2572,0.45912,0.44193,4.5916,5.2964,4.2667,4.5754,2.0388,1.748,11.5993,11.3392,3.4268,3.9202,4.015,4.6146,5.4003,5.8995,2.0086,1.9169,2.0495,2.1407,4.1304,3.5467,8.9677,8.5935,2.2082,2.031,8.0131,7.6584,13.7261,12.7368,8.4174,7.5458,2.5657,2.5991,5.1387,5.7283,1.9441,2.1806,20.661,19.892,5.9957,7.3017,3.9365,4.2087,1.4549,1.4687,3.3463,3.1529,7.8364,6.8789,18.5499,14.5309,4.1232,4.4443,4.5684,4.8401,3.762,3.6131,1.6433,1.5735,4.6815,5.2682,12.5596,12.2125,3.3891,3.5912,2.5876,2.5935,2.2439,2.37,13.2796,15.0051,2.5784,2.6807,2.519,2.704,14.1164,16.6832,2.0604,2.3558,1.1057,1.1725,15.2906,16.8733,5.1148,5.3446,9.1267,10.0553,5.1807,4.8233,12.6491,11.8699,9.0556,9.1999,9.5512,8.5049,4.0039,4.5021,1.737,1.9208,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd165,,,M,1.0872,1.5972,0.34523,0.3078,0.8493,0.83318,16.1386,2.4875,2.3782,45.1277,45.5105,13.3453,13.6057,207.292,206.0394,1.0729,3.2016,3.1275,0.56116,0.60747,10.2828,10.8498,1.427,1.5457,3.1933,2.7149,7.0544,7.3428,4.3818,4.6656,0.07566,4.9875,2.1969,2.4238,0.33326,0.35564,3.9589,3.902,3.0836,3.3815,1.4324,1.5785,9.4929,8.5753,3.0752,2.9269,3.2912,3.5507,4.5377,4.4238,1.5984,1.5458,1.6764,1.5445,3.266,3.028,7.7755,7.1775,1.7184,1.6755,6.4091,5.9438,12.4007,11.8559,7.6127,7.7603,1.8401,2.2657,4.7897,4.9897,1.5055,1.5096,16.4595,17.2788,5.2024,5.7141,3.3946,3.8074,0.99093,1.0132,2.5118,2.1921,6.8223,6.1634,13.9325,14.4012,2.629,3.0265,4.3247,4.1702,3.1839,2.6854,1.2641,1.2898,3.8381,4.2412,10.1232,9.804,2.8883,3.1213,1.8739,1.7988,2.0627,2.2844,10.2644,11.4652,2.1689,2.4146,1.6847,1.8628,12.1767,10.7097,1.8382,1.8391,1.0023,0.99153,14.3383,14.5737,5.4557,5.694,7.6058,7.2648,3.9854,3.6107,11.6695,11.5268,7.3592,7.1959,7.268,7.8138,3.036,3.4214,1.3028,1.4479,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd166,77,77,F,0.93743,1.5729,0.41515,0.49526,0.88749,0.88139,19.2755,3.5829,2.9654,43.8728,43.5986,14.5408,15.2001,244.2927,239.2128,0.94766,3.1602,3.121,0.42881,0.47239,12.0578,13.7019,1.6961,1.6826,4.1266,4.1534,6.9894,7.2195,4.7738,4.9688,0.07484,4.483,2.1285,2.4111,0.3586,0.36743,4.105,4.7178,3.7652,3.9013,1.8044,1.5847,10.6495,9.2184,3.5942,3.8733,4.4781,4.1444,5.5947,5.2487,1.638,1.656,1.8272,2.0563,3.7229,3.6101,7.2433,7.5396,2.1202,2.0739,7.4434,7.291,11.8823,11.2161,8.4337,7.5703,2.2809,2.4936,4.827,4.3981,1.9846,1.9423,18.6709,18.9638,5.4663,6.8466,3.9207,4.1119,0.96357,1.2153,2.406,2.7991,8.254,7.1443,14.935,15.1973,3.5276,4.0349,4.5945,4.3266,3.3435,3.141,1.5666,1.6288,3.964,3.9408,10.8753,10.6018,2.9695,3.4545,2.1812,2.3191,2.53,2.8133,10.7664,11.6419,2.2365,2.5092,2.1686,2.1688,13.4823,12.4153,1.8695,2.5498,1.1764,1.2436,15.0981,14.606,5.58,5.1896,8.1186,8.7049,4.6428,4.0371,10.9764,11.0671,7.4,7.1273,7.3187,7.1342,3.6095,4.0113,1.7025,1.6248,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd167,,,F,2.4702,2.7696,0.29537,0.35678,0.77445,0.83678,15.9099,2.6014,2.512,42.7073,43.9089,12.9533,13.3136,177.4279,171.8839,2.4442,3.2181,3.0738,1.642,1.6117,32.6771,32.6877,1.3845,1.3981,3.2816,3.4883,5.8237,5.9495,4.1089,4.3615,0.07383,4.2673,1.9394,2.3787,0.38156,0.29494,4.0314,3.972,3.8964,4.3948,1.5145,1.1509,8.0657,6.643,2.7145,2.6323,3.4837,3.7782,3.897,3.4644,1.504,1.502,1.78,1.7789,3.1789,2.9676,6.9003,6.8066,1.9542,1.7568,5.9253,5.5437,10.2878,9.8852,6.5539,6.0849,2.084,2.0383,4.6986,4.7252,1.5375,1.5041,17.0282,16.0011,4.4909,4.6857,3.5202,3.3257,0.86988,1.0378,2.3197,2.2739,7.3052,6.459,13.7425,13.0122,2.7556,2.7213,3.3378,3.5655,2.9756,3.234,1.4573,1.2964,3.5991,3.8467,8.7866,8.986,2.6559,2.9555,2.5604,2.5174,2.0345,2.1707,9.4006,10.1888,2.1495,2.3203,2.2326,2.3484,11.7555,12.1483,1.7032,1.8146,1.0543,0.97977,12.3813,13.4099,4.8672,5.0469,7.9324,7.231,4.0455,2.934,8.8583,9.8944,6.787,6.5229,7.0659,6.9261,2.9811,3.1845,1.6507,1.8178,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd168,,,M,2.3602,2.2191,0.40497,0.42969,0.93134,0.88144,20.5604,3.2384,2.5032,50.8088,51.1758,16.2934,16.4765,226.904,226.1267,1.8804,3.2723,2.9317,1.7017,1.6401,27.8541,32.5525,1.7384,1.6728,3.7304,3.6981,7.1314,7.5892,5.0187,5.3218,0.08496,5.3954,2.4314,3.1022,0.41127,0.41953,4.3114,4.7051,3.9821,4.1033,2.0054,1.712,10.91,8.7108,3.4747,3.3389,3.9394,4.2215,5.1205,4.2253,1.5353,1.5289,1.8978,1.7371,3.9924,3.5318,7.1609,7.1825,1.9854,2.2165,6.3217,6.279,11.4121,11.318,8.7859,7.9709,2.4307,2.4985,4.3592,4.326,1.8048,1.8129,19.2703,19.457,5.3678,6.6039,4.2925,4.748,1.0939,1.3344,2.7597,2.771,7.8791,6.7738,14.0121,14.2988,2.7967,3.6547,4.6594,4.4217,3.1982,3.2356,1.6136,1.4553,4.0065,4.1789,10.0004,10.0897,2.9151,3.2449,2.3605,2.2773,2.3616,2.544,9.5072,11.2527,2.703,2.5128,2.0049,2.3359,12.3509,12.4876,1.9074,2.0896,1.2901,1.3937,14.678,15.1221,5.2316,5.4896,7.6402,8.7663,4.1829,3.5939,10.4968,10.2664,7.8639,7.0818,7.8174,7.9784,3.5851,3.7006,1.4593,1.5241,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd169,81,81,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd170,85,85,M,2.3255,2.4433,0.29753,0.36202,0.77114,0.85008,17.5478,1.7904,2.0219,44.5195,44.55,14.8474,15.227,202.8273,198.4048,2.1285,3.6133,3.1956,1.3331,1.1149,31.2259,35.4198,1.5987,1.5705,3.3525,3.5089,6.3113,6.6988,4.3418,4.6063,0.07994,4.4674,1.9961,2.4458,0.35653,0.33266,4.1619,4.4928,3.8806,4.2509,1.5103,1.3079,9.8747,8.5799,3.3055,2.9772,3.9223,4.1408,4.3989,4.0367,1.4921,1.6225,1.8245,1.9841,3.4374,3.0078,7.5047,7.3659,1.799,1.8851,6.3994,5.9628,11.5909,11.057,8.3547,7.895,2.0749,2.1359,4.5711,4.4754,1.6167,1.6204,16.5951,18.3016,5.0217,5.3515,3.5021,3.5062,1.4007,1.0809,3.1132,2.6228,7.3268,6.7864,12.8679,12.7389,3.1998,3.437,4.0602,4.4668,3.1402,3.2148,1.4235,1.55,4.0465,4.3793,10.4165,10.1024,2.7925,3.0104,2.3685,2.379,1.9543,2.6276,9.0906,10.5992,2.1878,2.2908,1.9529,2.2546,11.3061,10.5878,1.6802,2.2757,1.09,1.1799,13.3726,13.2744,4.962,4.9509,7.6196,9.142,4.0972,3.5299,9.5405,10.1258,7.3794,7.83,6.9153,7.6207,3.3421,3.9039,1.2969,1.4851,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd171,,,F,1.4719,1.5222,0.40101,0.42411,0.82649,0.82365,17.5712,3.3929,3.2863,47.735,46.55,14.3293,14.2393,219.8081,214.9522,1.2797,3.4931,3.2747,0.6201,0.63498,14.5098,20.0874,1.5032,1.5046,3.5463,3.9674,6.5958,6.6673,4.4811,4.7434,0.08608,4.4512,2.2093,2.5582,0.36763,0.38153,4.1037,4.7647,4.1578,4.2489,1.912,1.874,9.709,8.714,2.9744,3.1004,4.1558,4.4532,4.4619,4.9173,1.7484,1.6321,2.0685,2.0354,3.5537,3.4071,6.8956,6.7324,2.098,2.1497,6.2164,6.3408,10.0696,10.1351,7.262,7.0352,2.2323,2.9299,4.0993,4.6318,1.8028,1.8622,16.5157,17.4396,4.3612,5.8493,4.0234,4.2189,0.87342,1.0421,2.3443,2.6498,8.0842,7.0426,12.5042,11.9078,2.4873,3.2935,4.2119,4.2594,3.8289,3.7584,1.6373,1.7745,4.1515,4.7197,10.4458,10.9055,3.1078,3.163,2.1817,2.4293,2.2654,2.5104,10.5416,11.1943,2.3582,2.7123,1.943,2.1583,13.4046,13.7014,2.0535,2.3804,1.1415,1.2197,14.3386,13.1412,6.055,5.7834,6.9453,8.3486,3.6544,3.3642,10.4039,10.9036,6.9698,6.8865,8.145,8.1809,3.5754,3.7072,1.5501,1.6046,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd172,,,M,2.1427,2.2088,0.39812,0.45101,1.0761,1.026,20.4893,3.2379,2.9093,54.1172,51.7045,17.4447,17.7471,317.1721,277.4785,2.2262,4.58,3.7377,1.083,1.7229,29.6512,35.4198,1.828,1.76,3.9813,4.0556,8.2686,8.4379,6.6725,6.1972,0.09689,5.4387,2.3581,3.0136,0.42389,0.43386,4.8909,5.5532,4.75,5.4048,2.2207,1.8727,10.6342,9.5266,4.1079,4.0107,4.5488,4.9252,4.8477,4.4996,2.1282,2.1113,2.4494,2.3582,4.9292,4.1863,8.3586,8.4465,2.4575,2.4461,7.7853,7.4495,13.5408,13.9209,8.8864,8.1669,2.8399,3.027,5.1288,5.0043,2.1869,2.3385,18.3906,19.2424,5.7479,6.998,5.6107,4.6798,1.1033,1.0816,2.8466,2.4332,9.613,8.0067,16.1744,18.8747,3.0519,3.365,4.8151,4.8401,4.4607,4.0702,1.7615,1.7031,4.4494,4.6666,12.1045,11.9956,3.6236,3.6673,2.675,2.9166,2.8213,3.1049,11.8415,11.405,2.9609,3.2117,2.7202,3.0548,16.172,15.3695,2.3324,2.9964,1.476,1.5941,14.6949,15.5642,6.0927,6.056,8.9673,10.377,4.4728,3.3894,10.6237,12.9099,8.8789,8.0575,8.5532,8.4546,3.9268,4.2497,2.0162,2.2485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd173,70,70,M,1.7938,1.9797,0.40107,0.46097,0.90876,0.88892,20.5604,2.8016,2.7022,46.4131,46.3508,15.1496,15.8368,239.7024,243.7703,1.4449,3.518,3.3067,0.7684,0.49127,13.3892,13.0165,1.6508,1.6675,3.9642,4.111,7.861,8.006,5.0802,5.254,0.08748,4.8149,2.1822,2.4607,0.41983,0.41668,4.2614,4.8551,3.9685,4.3339,1.828,1.7542,12.1488,10.2752,3.793,3.6806,4.2881,4.582,5.0343,5.3392,1.7414,1.6232,2.0299,2.093,3.8489,3.7495,7.7699,7.6505,2.2603,2.2381,7.3727,7.0384,12.3094,11.6909,9.0195,8.1993,2.2466,2.7764,4.8567,5.0112,2.0872,1.984,19.315,18.8358,5.9148,6.3692,3.9778,4.2769,1.2125,1.2664,2.8339,2.7667,9.0934,7.8222,16.6489,14.0277,3.3058,3.9967,4.7296,4.7157,3.7074,3.4918,1.5394,1.798,4.1452,4.7365,10.4286,10.349,3.0501,3.3923,2.2954,2.2083,2.6699,2.6184,10.9608,10.8701,2.1618,2.7605,2.1036,2.273,13.1425,12.6607,2.1015,2.3021,1.3308,1.4972,16.095,15.6297,5.7812,5.4558,8.8988,9.6666,4.1761,4.0105,10.3266,10.3844,8.3095,8.0575,8.8288,8.0864,3.4631,3.4464,1.518,1.8382,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd174,,,F,1.3846,0.25159,0.08978,0.13301,0.18236,0.50331,14.3243,0,0.00029,3.1812,2.6377,2.8026,8.9953,94.0231,98.56,1.3648,2.6149,2.3976,0.91186,1.0824,16.5462,20.4219,0.80256,0.19332,0.32208,0.32999,5.4218,5.2142,4.2723,4.4911,0.09045,4.3332,1.3543,1.4673,0.31657,0.13082,0.00006,0.00124,0.12458,0.93454,0.00047,0.55737,1.1839,3.9193,2.9722,2.8543,0.00002,0.43185,3.525,3.7841,0.34445,0.9014,0,0.02155,0,1.9083,4.513,5.323,0.23156,1.0331,5.2199,4.7337,8.2175,9.5018,5.7237,5.792,1.7375,0.951,2.897,0,0.66198,1.2859,0,0,4.6078,4.6551,2.8596,1.2391,0,0.80674,1.9456,1.863,0.00154,3.6668,10.5996,10.6368,1.5521,2.0922,2.5461,0.40331,0.00197,0.00015,0.00001,0.05771,3.0192,3.4149,7.8066,7.4883,2.1424,2.0225,1.8548,1.812,0,0.78485,0.00167,8.1361,0.63246,1.181,1.5695,1.4588,0,0.00255,1.577,1.6524,0.91841,0.92855,0.00055,5.9188,0,3.7126,1.1506,6.0253,4.0787,2.9805,8.2253,7.9356,5.4504,3.8933,5.8082,6.0018,1.1485,1.414,1.1214,1.0864,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd175,78,78,F,2.0444,2.0586,0.37032,0.40137,0.80898,0.75558,17.2506,3.0714,3.0729,43.9993,43.0669,14.0298,13.9821,234.7419,237.6217,1.5455,3.3759,3.0573,0.91749,0.91392,21.2482,26.4455,1.5678,1.5818,3.8347,3.7625,6.7414,7.0318,4.5496,4.8185,0.07276,4.3222,2.1521,2.4787,0.36116,0.38526,3.9888,4.8437,4.2283,4.2454,1.7356,1.5505,10.3589,8.6848,2.9493,2.7817,3.6876,4.3316,4.56,3.6543,1.722,1.5799,1.9812,1.924,3.7183,3.7458,7.3072,6.9971,2.0343,2.0546,6.5811,6.031,11.7117,10.8608,7.462,6.1539,2.1723,2.241,4.4148,4.5886,1.8834,1.8683,19.346,18.6921,5.2723,6.0522,3.5675,3.7741,0.96212,1.1011,2.4741,2.5262,7.5522,7.0519,13.3432,13.4995,2.9491,3.6473,3.6394,3.7017,3.0623,2.8302,1.6061,1.3913,4.2989,4.5149,10.3332,10.7532,2.8099,3.1551,2.3395,2.5227,2.0325,2.008,8.52,9.9287,2.4092,2.4222,2.1513,2.4711,10.878,11.4156,1.7489,1.9516,1.3215,1.3509,13.286,13.631,5.5403,5.5811,7.1324,8.3272,4.2216,3.5,10.3213,11.1672,7.0388,6.3754,7.3028,7.2682,3.3673,3.42,1.3964,1.7641,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd176,81,81,M,1.7486,2.1243,0.33007,0.35524,0.70437,0.71856,18.057,2.6118,2.517,47.9737,45.9615,13.7119,13.7074,211.2005,209.0373,1.9086,2.8578,2.7905,1.1272,1.2229,19.7081,25.4214,1.4455,1.4316,3.1242,3.1863,6.1098,6.2285,4.496,4.7221,0.09323,4.8407,2.1319,2.3955,0.32969,0.32516,3.3465,3.8072,3.752,3.8488,1.5053,1.3079,9.2651,7.3997,2.76,2.374,4.0917,3.5647,3.6229,3.3427,1.4214,1.4531,2.1351,1.8651,3.2384,3.0987,6.6989,6.8975,1.6907,1.6806,4.1811,4.8611,10.7078,10.8271,7.354,7.1401,2.0766,2.3092,4.6803,4.3582,1.4989,1.4147,15.8289,16.0813,3.2197,4.7546,3.2845,3.3944,0.76618,1.0474,2.2727,2.3079,6.4771,5.8231,12.4739,12.6961,2.1773,2.5982,3.8081,3.7917,3.7873,3.3294,1.3766,1.4893,3.4985,3.7326,9.4002,9.0322,2.5917,2.7641,2.0792,2.0085,2.16,2.3329,8.3638,10.309,1.9772,2.4751,1.8667,1.965,11.1654,12.3921,1.62,1.9727,1.0201,1.0199,13.1769,13.6217,4.577,4.7366,7.0035,7.845,2.7508,2.71,10.6959,9.8716,6.606,6.8819,7.424,7.869,3.5707,3.9455,1.2959,1.508,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd177,70,70,F,1.6635,1.6088,0.31059,0.32269,0.68236,0.64418,17.8348,2.4563,2.2522,44.5434,45.0794,13.6201,13.6537,209.1347,205.3014,1.3861,2.4729,2.4742,0.71919,0.64214,8.2195,9.812,1.4367,1.4265,3.2527,3.1348,6.1767,6.7249,4.4063,4.782,0.07678,4.3332,2.2016,2.5436,0.30157,0.3211,3.8971,4.3819,3.7341,4.0023,1.7195,1.4873,9.8024,8.0959,2.9883,2.7883,3.5855,4.2033,4.1507,3.8821,1.3806,1.3227,1.946,1.8648,3.3897,3.3368,6.8917,6.5989,1.9662,1.912,5.9669,5.9248,11.0173,9.9259,6.8965,6.6771,2.0948,2.3387,4.4848,4.4931,1.7738,1.7254,16.2697,19.0743,4.6494,5.8084,3.8878,3.5533,0.90939,1.0709,2.4188,2.3103,7.1601,6.4494,13.5985,12.213,2.7901,3.0168,3.9417,3.9987,3.0972,3.4346,1.4956,1.5504,4.0214,4.4008,10.1131,10.1246,2.6985,2.6444,2.2352,2.4319,2.0085,2.008,9.9235,11.28,2.3405,2.2946,2.1024,2.2828,11.6578,12.5391,1.5729,1.6485,0.97385,0.97237,13.6789,13.0626,5.0284,5.2323,6.9792,7.6723,4.0576,3.325,10.8639,9.1754,5.9694,6.356,6.7739,6.6037,3.5694,3.9856,1.4512,1.3766,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd178,80,80,F,1.7205,1.3881,0.29367,0.33219,0.64989,0.63558,16.2942,2.5792,2.6666,40.571,41.8891,13.1521,13.6013,175.9135,171.8839,1.3921,2.8602,2.454,1.0165,0.87975,19.2048,20.0821,1.4477,1.429,2.903,2.8923,5.7143,5.9888,4.1648,4.377,0.07026,3.7738,2.1837,2.097,0.32224,0.31728,3.2435,3.6304,3.4572,3.5203,1.2952,1.0733,7.6621,2.2506,2.8323,2.7872,3.4278,3.7558,4.3684,3.9512,1.2676,1.3853,1.6705,1.7712,3.1813,2.8388,5.9454,5.6597,1.6023,1.6227,5.7857,5.1608,8.2424,8.5987,6.7317,6.0849,1.7066,1.9361,3.2808,3.5663,1.3553,1.3385,14.4447,13.0473,4.6187,4.5191,2.92,3.0824,0.89653,0.99356,2.1395,2.04,6.4539,5.6687,10.0789,11.5039,2.4945,2.5508,3.503,3.5527,2.9659,3.0269,1.2926,1.203,2.561,3.4659,8.5006,8.5223,2.5609,2.7336,2.0291,1.9261,1.8017,1.9084,8.5585,9.6952,1.8322,1.9725,1.8162,1.8933,10.3155,10.4681,1.5209,1.7361,0.88812,0.93688,11.829,11.831,4.3057,3.6742,5.7985,7.0145,3.5341,2.772,9.3058,9.3042,6.4699,6.1784,5.7073,6.2006,3.1211,3.1315,1.2066,1.4067,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd179,78,78,M,2.5948,2.2981,0.36398,0.40587,0.77148,0.79633,18.2488,2.9093,2.8187,44.0443,44.4978,13.2285,13.625,179.8113,171.3762,1.9943,3.1141,2.8595,0.90656,0.6879,27.8355,35.8274,1.6206,1.6387,4.1819,4.2137,6.5668,6.9259,4.3656,4.5859,0.0769,4.7097,2.2808,2.5773,0.37188,0.39006,4.0922,4.8551,3.872,3.8667,1.7983,1.5895,9.5638,8.5698,2.8901,2.8104,3.8864,3.7809,4.5201,3.8832,1.601,1.4114,1.8671,1.7217,3.617,3.292,6.9563,6.4949,2.2971,2.2985,6.1465,6.0101,10.6336,9.9763,7.3151,6.9718,2.2001,2.3104,4.2137,4.0383,1.9747,2.0006,17.4824,19.2089,5.1017,5.6835,4.1959,4.4361,1.051,1.1249,2.3312,2.4559,8.4067,7.2136,13.0178,12.3393,2.6925,2.9054,4.0324,3.9724,2.944,3.8005,1.4553,1.3463,3.7771,4.1234,10.1319,10.701,2.8765,3.2237,2.2922,2.2586,2.4668,2.4089,9.613,11.1918,2.309,2.6164,2.0147,2.0492,12.1052,12.4411,1.8569,1.9869,1.2988,1.3238,13.5985,12.9226,5.6004,5.6865,7.0275,8.6561,4.4664,3.2665,9.3204,9.8233,6.5891,7.437,7.1507,6.9893,3.524,4.0163,1.6067,1.5795,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd180,,,M,1.7692,2.6779,0.41651,0.46245,0.83141,0.88019,21.9754,3.5965,3.546,46.4131,47.4475,18.3548,18.4645,274.269,268.7903,1.4619,3.4092,3.3223,0.68417,0.62222,13.2917,15.3171,1.8399,1.9314,4.1009,4.158,7.7882,8.0637,5.1922,5.4939,0.0778,4.5193,2.0783,2.8725,0.41983,0.43353,4.5457,4.7119,4.4451,4.5935,1.6088,1.61,8.9804,8.4519,3.4265,3.9202,4.5488,4.622,4.0595,4.4845,1.697,1.7159,2.1004,2.1089,3.6097,3.2018,7.3746,7.2682,1.8119,1.9738,7.2028,6.6613,11.9523,11.1838,8.5437,7.8815,2.2932,2.36,4.5987,4.7548,1.5281,1.6862,17.6072,17.9409,5.6932,5.6108,3.7885,3.9717,1.1323,1.1741,2.8466,2.8748,8.014,6.5107,15.3673,14.6542,3.2996,3.0137,4.4969,4.5181,3.6679,2.9361,1.8614,1.4924,4.404,4.5832,12.1045,12.082,3.1435,3.3589,2.5021,2.4725,2.7622,3.1789,10.8522,10.8701,2.418,2.4749,2.3505,2.3431,9.9662,11.3994,2.3664,2.5081,1.1721,1.2978,16.326,16.1223,5.3443,4.9523,8.2692,10.6727,4.2164,3.2416,10.6544,11.59,7.6115,7.9968,8.0311,7.4704,3.7315,3.8073,1.7308,1.6412,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd181,70,70,F,1.3845,0.25159,0.08978,0.00296,0.51139,0.50656,2.0826,0,0.88732,3.1812,8.4133,3.8003,3.9949,94.0231,128.6959,1.3648,2.4134,2.0491,0.85361,0.61403,10.9143,12.3254,0.81757,0.31864,2.1838,1.2789,4.141,3.9641,3.7752,4.0564,0.07522,2.6869,0.88859,1.2793,0.31657,0.2964,3.0793,1.9898,1.2425,3.2021,0,0.00046,8.4476,2.2506,3.0625,2.938,0.30663,0.43185,4.5105,3.6811,0.93517,0.9014,0.01207,0.00096,0,0,5.1012,5.4726,0.51662,1.0331,5.9191,5.3593,7.2375,8.829,7.4808,6.62,1.6042,0.22842,0,0,0.16873,1.2201,0,7.2894,4.272,4.5191,2.9884,1.5469,0.86716,1.0146,2.1498,2.2291,0.00154,0.00046,8.7517,10.8954,2.7967,3.075,3.9653,3.6751,0,0.00015,0.00987,0.0049,3.0192,3.4752,8.5006,8.6143,2.4985,2.4325,1.7214,1.9085,0.53142,0.78485,0,0.00568,1.9447,1.4214,1.6185,1.7202,0,6.6888,0.00244,1.4383,1.0127,0.91649,0.00055,11.176,0,0,0.20706,6.4444,4.0379,2.7448,8.2253,7.9356,3.4409,3.4718,4.2566,4.5637,0,0,1.009,0.31108,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd182,71,71,M,1.9094,1.7396,0.37982,0.47086,0.7155,0.76914,19.5817,2.969,3.1851,56.2714,54.4207,16.5035,16.9913,250.1019,243.1891,1.5388,3.051,3.1014,0.93407,0.73717,24.6727,23.9703,1.6414,1.5944,4.1544,4.4532,7.9992,8.1564,4.9907,5.3377,0.10665,5.6788,2.4745,3.2572,0.42742,0.40515,4.8252,5.669,4.4494,4.6844,2.0035,1.8539,12.3409,11.1859,3.5648,3.1407,4.8738,4.6945,5.1395,5.1469,1.4334,1.4211,2.2589,2.1829,3.757,3.5865,7.4807,7.6027,2.2534,2.3058,7.4434,7.3809,12.869,11.3764,8.0021,7.4548,2.4049,2.8712,5.1192,5.5136,2.1056,2.1174,21.3816,20.5391,6.7079,6.9844,4.4057,4.5311,1.2452,1.2284,2.5709,2.6676,9.613,8.2845,16.2228,14.0277,3.3336,3.3014,4.3085,4.3724,4.1308,3.5868,1.6892,1.7511,3.8501,4.3477,10.1363,10.0436,2.8815,3.0873,2.6966,2.749,2.6032,2.5676,13.1671,11.1987,2.9933,3.0354,2.5206,2.8263,13.3306,13.3365,2.317,2.0633,1.5046,1.5587,15.565,15.2985,5.948,5.7074,9.1267,10.0076,4.4244,3.4882,11.5215,11.3401,8.6808,9.1999,7.07,6.8363,3.9793,4.3612,1.7,1.9453,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd183,,,F,2.9825,2.7696,0.33104,0.35194,0.68424,0.63576,15.9469,2.7199,2.7129,40.8386,41.5782,12.0475,12.2351,197.9988,188.5754,2.1683,2.818,2.577,3.9041,1.333,21.9802,26.8485,1.3569,1.3106,3.1034,3.1216,6.0833,6.0253,3.916,4.2195,0.07215,3.9495,1.9707,2.1249,0.32726,0.3343,3.2047,3.6379,3.7564,3.7041,1.5852,1.2892,8.3779,7.8979,3.1261,3.2017,3.3255,3.7673,4.5157,3.8546,1.2651,1.3025,1.8833,1.6296,3.1353,2.9207,6.2984,5.8965,1.5802,1.5971,5.9191,5.3593,9.6818,9.3713,7.3677,6.8258,1.9596,1.932,4.075,3.7145,1.3793,1.4691,16.7875,15.4965,4.6161,5.5906,3.2405,3.3339,0.84444,0.91292,1.8683,2.0004,6.357,5.7877,12.0458,11.6377,2.7992,2.9293,4.1069,4.1086,3.0267,2.9839,1.2979,1.0427,4.0214,4.516,10.5318,10.9108,2.5273,2.7655,2.1284,2.1509,1.8168,2.0021,8.0006,9.7953,1.9867,2.0985,1.8162,1.9533,9.5908,10.2525,1.5615,1.9203,0.99535,1.0239,11.8048,11.8102,4.244,4.2845,6.6309,7.5768,3.6124,2.7383,8.8258,9.8113,6.3846,6.6294,6.1222,6.727,3.2361,2.934,1.2118,1.508,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd184,67,67,F,1.6984,1.9137,0.28645,0.32602,0.77274,0.75163,15.6667,2.2721,2.4183,41.0787,41.3308,12.3419,13.0289,184.7169,185.9051,1.7597,3.0204,2.8438,1.9068,2.3651,31.2259,30.645,1.5892,1.5185,3.0887,2.9815,5.8471,5.9495,4.2378,4.3908,0.06895,4.5196,2.0428,2.1701,0.30745,0.32673,3.927,4.6022,3.5208,3.5961,1.6327,1.4523,9.0908,8.7436,2.8002,2.7609,3.8943,3.771,3.6079,3.2905,1.3929,1.3462,1.7233,1.6528,3.4434,3.0477,6.0063,5.9773,1.7867,1.8414,4.785,5.9258,8.7702,8.6306,6.7517,6.0287,2.1197,2.2357,4.7753,4.9177,1.6149,1.6391,15.0889,16.6634,4.149,5.3989,3.7264,3.5241,0.95841,0.96627,2.0625,2.3554,6.8932,6.6371,10.0935,10.0357,2.2858,2.7448,3.4874,3.8581,2.9334,2.5815,1.4327,1.4125,3.5982,4.2632,9.1639,9.9918,2.4115,2.5063,2.199,2.1578,2.0186,2.3287,10.5715,10.3747,2.0896,2.1983,1.9201,2.0287,10.5486,10.9252,1.6205,1.9041,0.97385,0.9413,11.8701,12.524,4.6414,4.3322,7.1656,8.8249,3.8231,2.7218,9.5553,9.7759,5.6425,5.7462,6.4215,5.8248,3.229,3.4937,1.5181,1.4112,,11,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd185,66,66,M,1.4915,2.2088,0.45089,0.47721,1.1379,1.1046,20.4108,3.8635,3.5903,52.4729,52.6494,17.4447,17.1017,300.9244,281.4037,1.397,4.2465,3.6808,0.82291,0.687,18.0742,17.5791,1.828,1.7408,4.0707,4.2109,7.9044,8.006,6.6725,5.7298,0.08206,4.551,2.2865,2.8917,0.43463,0.44588,4.3311,5.2964,4.6231,4.7798,1.9919,1.6462,12.0751,10.6247,3.4315,3.5156,4.6459,4.622,5.1925,5.3907,2.0902,1.9877,2.2927,2.1829,4.1828,3.8925,8.6704,7.8056,2.1982,2.3796,8.1387,7.263,13.2295,11.8957,9.2103,8.522,2.4687,2.5738,4.5169,5.4238,2.0872,2.1063,21.4524,21.8414,6.0093,7.712,4.0427,4.3252,1.4446,1.1415,3.1735,3.2518,9.1937,8.2813,15.3481,15.5401,3.7683,3.7785,5.1473,4.9123,4.3609,3.7082,1.6958,1.7998,4.7803,5.0463,12.5596,12.4284,3.4242,3.9265,2.585,2.5068,3.0101,3.0595,12.0861,13.1955,2.6098,2.7716,2.5971,2.7526,14.7043,14.409,2.3442,2.7258,1.3669,1.4624,16.9044,16.123,5.7327,5.9984,9.4078,9.71,5.0085,4.5227,11.3379,12.9099,8.223,7.8247,9.0227,8.3456,3.817,3.8605,1.9095,1.9208,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd186,,,M,1.7692,1.8618,0.36092,0.39427,0.59918,0.63104,18.2488,2.8062,2.7336,48.0518,47.956,14.062,14.2885,203.5624,203.3715,1.9683,2.7748,2.6663,1.1855,0.859,19.7081,22.5116,1.4184,1.4402,3.2994,3.4816,6.2039,6.3968,4.4367,4.6137,0.09914,5.0502,2.1661,2.3231,0.37411,0.36187,3.9769,4.2807,3.6279,4.0673,1.8008,1.502,8.7247,7.9909,2.5845,2.4377,3.6734,4.2908,4.2272,3.7318,1.2083,1.183,1.946,2.0334,3.798,3.4222,7.1548,6.5086,2.1154,2.066,5.9237,6.0503,11.6078,9.0324,6.9399,6.4933,2.2333,2.3544,4.3328,4.245,1.8545,1.8625,17.659,17.1771,4.4069,5.3522,3.9069,3.9735,0.98211,1.1127,2.4536,2.588,7.4819,6.3338,14.0337,12.3,2.519,2.982,3.7202,3.9667,2.8621,3.4064,1.5866,1.3049,3.6107,3.9284,9.1509,9.2245,2.7432,2.7176,2.1187,2.1676,2.1869,2.4133,9.6252,10.7874,2.3559,2.3962,1.9273,2.1727,11.8972,11.5573,1.9087,2.2289,1.2151,1.1464,14.4338,15.3711,5.2241,4.9642,7.6135,8.5425,3.6786,3.134,9.228,9.0897,6.8655,7.1108,6.9081,6.6037,3.5609,3.3907,1.5501,1.6638,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd187,67,67,M,1.1381,1.8593,0.3977,0.4778,0.86831,0.98359,22.4176,2.8016,2.7014,51.3774,51.1758,16.5514,17.4215,252.8798,250.2604,1.1866,3.5761,3.3742,0.51198,0.5261,11.9217,11.7896,1.6165,1.6675,4.106,4.158,6.6726,7.2052,4.8613,5.3312,0.0856,5.1861,2.4767,2.8574,0.43406,0.43215,4.262,5.3928,4.4752,4.6844,2.1453,1.7562,11.0375,10.7749,3.6048,3.2357,4.5708,4.8046,5.4003,5.6454,1.8746,1.8669,2.1829,2.1407,4.4148,4.1818,8.5003,7.8643,2.3084,2.4245,7.6287,7.1878,13.1236,11.6909,8.2528,7.61,2.7614,2.8047,4.8032,5.2531,2.0182,2.0987,23.4151,22.7685,5.467,6.6358,4.7054,4.9299,1.4549,1.1694,3.0988,2.5948,9.613,8.9122,15.3481,14.1545,3.5262,3.9308,4.6384,5.0193,3.8511,3.4729,1.8308,1.6954,4.0929,4.7787,11.966,11.4987,3.1107,3.6146,2.5021,2.519,2.2493,2.4474,13.2796,13.853,2.6135,2.9618,2.0654,2.5953,13.7001,14.6171,1.9096,2.0111,1.359,1.4242,18.3793,17.7633,6.5039,7.0728,10.4337,9.8394,5.0784,4.2936,12.5559,12.0068,8.4401,8.0384,9.7771,9.5122,3.9384,3.8351,1.4135,1.8285,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd188,64,64,F,1.0539,1.2781,0.40807,0.43187,0.93717,0.862,12.5951,2.8717,2.9504,22.5067,18.1896,10.3602,10.4877,234.1269,232.7609,1.2559,3.3797,3.189,0.35824,0.46899,14.272,17.4128,1.7519,1.8023,3.4765,3.5921,6.9093,7.0601,4.4591,4.7031,0.07949,4.061,1.7855,0.01307,0.37164,0.37195,4.2948,4.543,4.166,4.2311,1.6695,1.4732,8.727,8.8037,2.6469,2.5129,3.5002,3.308,4.5726,4.0687,1.6748,1.6574,2.0246,1.9795,3.4547,3.1156,6.4639,6.4863,1.9012,2.012,6.0584,5.5437,10.3798,9.242,6.9363,6.6783,2.1988,2.2228,4.6942,4.7063,1.6189,1.694,17.934,16.8229,5.2137,5.5906,3.7853,4.0888,0.9992,1.3214,2.4901,2.6061,7.6361,6.5001,13.4647,12.4403,2.5253,2.7195,3.9429,3.8423,3.4362,3.2415,1.5709,1.4832,3.7291,3.9752,10.4,11.349,2.7144,2.832,2.3548,2.2321,1.9541,2.1338,9.0724,10.3112,2.4268,2.4377,2.0367,2.295,10.6811,10.7284,1.7988,1.8025,1.1423,1.1712,13.2802,13.2358,5.3901,5.5141,7.9005,7.5996,3.9277,3.3885,10.7106,10.5715,7.0859,7.3087,7.3906,6.4441,3.9623,4.1668,1.5205,1.4265,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd189,68,68,F,1.427,1.5222,0.38902,0.41848,0.6968,0.69368,16.6075,2.9505,2.7813,44.7901,44.0634,13.6586,13.6537,222.5085,219.3099,1.0014,2.7141,2.6837,0.35763,0.33872,8.3227,9.9239,1.48,1.5027,3.1852,3.368,6.0902,6.4669,4.2851,4.4911,0.06888,4.4952,2.1428,2.4679,0.32629,0.35342,3.3465,3.8512,4.8436,5.0995,1.4813,1.4318,10.0514,8.2258,2.8293,2.8997,3.656,3.5289,4.1878,4.3683,1.4346,1.317,2.0242,1.9711,3.2345,3.3803,6.7407,6.8859,1.9636,1.9845,6.4408,5.9092,11.2782,10.6118,7.6388,7.0396,1.9707,2.2682,4.5803,4.4478,1.4951,1.5494,16.5137,17.0128,5.3586,5.4893,3.4848,3.7574,1.0033,1.2691,2.374,2.7088,6.4771,5.9222,13.6094,13.4861,2.877,3.3386,4.1711,4.1086,3.7043,3.138,1.3389,1.4993,3.4763,4.066,8.8048,9.6885,2.5917,2.7082,2.588,2.5068,1.8017,2.387,9.3223,10.283,1.967,2.4411,2.3015,2.3784,11.6976,11.7764,1.7924,2.1613,1.0058,1.0478,12.7821,13.237,5.0658,5.0962,7.9417,7.9887,3.8853,3.4955,10.3349,10.3009,7.2458,7.2637,6.8173,6.3119,3.2971,3.6428,1.5479,1.5275,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd190,60,60,M,2.3493,1.8381,0.38384,0.43673,0.99874,0.97955,19.4303,3.1983,2.9093,47.6832,49.3091,15.9503,16.6198,259.0133,245.8349,1.5952,4.0554,3.5866,0.5229,0.47953,13.3926,13.8588,1.73,1.6728,3.6072,3.5807,6.9086,7.1641,4.8321,4.873,0.08568,4.7656,2.1822,2.6358,0.40882,0.4058,4.3085,4.8562,4.2808,4.3726,2.1901,1.5811,10.3104,8.8765,3.7793,3.8162,3.767,4.0084,5.6101,5.5077,1.8976,1.8557,1.9812,2.0867,4.4148,4.2113,7.4238,7.1705,2.4687,2.4461,6.6404,6.5697,11.9174,11.9409,8.4337,7.7831,2.7488,2.4717,3.9635,4.0969,2.2046,2.3246,21.4648,22.995,5.0577,5.6886,4.6467,4.6622,1.3128,1.1447,2.831,2.8198,8.4573,7.1,14.5187,14.0223,2.9953,3.2581,4.4547,4.6073,3.7894,3.481,1.7978,1.589,4.2966,4.6564,11.0979,11.75,3.1361,3.2922,2.4836,2.5067,2.3931,2.2755,8.6843,10.0361,2.6084,2.6743,2.312,2.5114,12.4481,13.3904,2.0277,1.8458,1.2792,1.2655,14.6592,15.6987,5.5008,5.0501,7.9376,8.3013,3.8405,3.4278,11.0118,11.1369,7.8592,6.8017,8.3154,8.4584,4.49,3.8312,1.6241,1.6201,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd191,57,57,M,1.936,2.3628,0.37592,0.39586,0.91709,0.93429,17.5678,3.1894,3.0692,52.136,51.7045,14.4927,15.0749,196.9166,195.7271,1.4859,3.5952,3.3065,1.0107,1.0618,21.0366,26.646,1.5391,1.5034,3.5256,3.5172,7.0836,7.3432,4.4608,4.7218,0.08896,5.1432,2.4147,2.8921,0.41876,0.39487,4.7493,5.2022,4.2613,4.406,1.947,1.6626,11.3833,9.2355,4.0653,4.0436,3.9951,3.9037,5.5844,6.106,1.7722,1.8031,2.1354,1.8261,4.3478,4.1805,9.1032,7.8056,2.4687,2.4461,8.1901,7.291,13.1236,11.3764,9.0811,8.3281,2.5197,2.553,5.1184,5.3246,2.1883,1.9903,20.0268,19.6225,5.2269,6.4884,4.3027,4.5688,1.1664,1.0816,2.8439,2.7085,8.8946,7.3094,15.2634,13.9554,4.2089,4.0946,5.4657,5.1498,3.5463,3.3782,1.6039,1.4844,4.683,5.1161,12.4279,11.1221,3.1327,3.5022,2.3799,2.6984,2.2901,2.4531,10.0428,11.0553,2.4505,2.6349,1.9848,2.2966,13.1199,13.3634,1.9579,1.9948,1.6682,1.6854,15.3386,16.3673,5.5549,5.7904,7.8348,8.6945,4.6761,3.8,12.2937,11.8119,7.0929,8.5547,8.8052,7.7869,3.8534,3.6743,1.573,1.811,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd192,,,F,2.0768,2.5948,0.43007,0.45413,0.96199,0.92443,20.7412,3.4062,3.2314,46.4131,47.4532,15.0686,15.5227,241.6973,243.7703,1.9387,3.4753,3.3746,1.0926,1.0578,23.4697,28.2322,1.6519,1.6208,3.5515,3.7198,7.3645,7.4805,4.949,4.8368,0.07789,4.8141,2.3147,2.8658,0.37923,0.41411,4.4693,4.7298,4.4452,4.2475,1.915,1.7011,10.9498,10.1825,3.3215,3.2318,3.9016,4.2808,4.7354,4.4937,1.8751,1.741,2.1795,2.0427,3.6851,3.3415,7.6859,7.5038,2.0409,2.0793,6.9214,6.9187,12.3106,12.53,7.5137,7.5524,2.44,2.5042,4.5636,4.8107,1.7976,1.8622,20.5293,20.8177,5.5605,6.6154,3.8695,3.785,1.135,0.99429,2.5932,2.3513,8.2489,6.7738,15.5315,15.049,3.1874,3.783,4.3247,4.6409,3.6679,3.6265,1.7098,1.526,4.3629,4.6273,11.6293,11.3415,3.1033,3.3782,2.3321,2.2428,2.4729,2.6854,10.6365,12.9774,2.5801,2.4766,2.2951,2.1527,12.1477,12.0283,2.1807,2.3907,1.2302,1.2912,14.5554,14.0924,6.055,4.8832,8.5362,9.4176,4.4534,3.7427,12.0364,11.7601,7.9134,7.9968,8.4612,8.3303,3.8231,3.9851,1.6968,1.7511,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd193,67,67,M,1.0532,1.7796,0.3977,0.44792,0.89568,0.90411,19.9315,2.9757,2.9302,54.2284,54.4207,17.6577,19.6686,254.6872,251.7752,1.029,3.6065,3.5722,0.39387,0.46701,7.1348,7.4895,1.5787,1.5518,3.476,3.7792,7.4221,7.6297,4.7611,4.9977,0.07952,4.6166,2.6867,2.7214,0.42319,0.40079,4.6882,4.9975,4.6922,4.8784,1.8887,1.4723,10.1476,10.3484,2.4736,2.629,4.4059,4.783,3.6957,3.5316,1.7703,1.7455,2.1701,2.1407,4.0853,3.7187,7.894,8.1054,2.3123,2.3284,6.6247,6.9345,11.4399,11.3744,7.6316,7.335,2.2997,2.2419,5.0145,5.1103,2.1857,2.0045,19.8375,19.6619,4.8301,6.5332,4.2661,4.5659,0.99532,1.1342,2.3465,2.6403,8.9955,7.6082,14.7209,14.4591,3.0109,3.282,3.7753,4.4898,3.551,3.5614,1.6274,1.4428,4.2346,4.4781,11.1301,10.3925,3.1027,3.4223,2.6001,2.5068,2.2216,2.4094,9.9349,11.8108,2.6607,2.3256,2.3544,2.6408,11.673,11.8982,1.6382,2.072,1.3336,1.3946,16.2564,14.552,5.9055,5.5681,7.5884,8.6361,3.9438,3.2665,10.5337,9.7753,6.8985,7.8197,7.9797,7.5783,3.7111,3.8219,1.6167,1.6798,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd194,,,F,0.92151,1.602,0.39144,0.43745,0.88854,0.8219,18.4167,3.2466,3.1447,48.463,48.3369,15.2028,15.8019,216.4777,212.866,0.78724,3.2833,3.4302,0.4904,0.4663,8.8972,10.939,1.541,1.6093,4.0664,3.952,7.1738,7.6598,4.9907,5.3211,0.07369,4.2965,2.2981,2.493,0.36176,0.37472,4.2456,4.5795,4.8339,4.6767,1.7616,1.4925,9.3863,9.2074,3.3355,3.1286,4.1462,4.3879,4.9111,4.5894,1.7475,1.6028,1.9715,2.4049,3.4663,2.956,7.5378,7.8456,1.8882,2.0985,6.4854,6.36,11.7446,11.0853,8.7643,7.7195,2.3364,2.3498,4.0993,4.4844,1.8095,1.9573,17.5811,18.0269,4.7554,6.2887,3.7024,3.9559,0.99441,1.0727,2.1741,2.3924,7.3912,6.256,14.3784,13.1422,2.917,3.6599,4.6849,4.465,3.1835,3.1692,1.6807,1.5421,3.9742,4.4419,11.258,11.1859,2.9552,3.1965,2.585,2.5239,2.4429,2.5488,10.4306,10.3086,2.3034,2.3344,2.3544,2.3724,12.1241,11.8777,2.0045,2.3654,1.0892,1.1476,16.326,14.5561,5.2152,5.0618,7.9481,8.9545,4.1532,3.282,9.3057,10.0323,6.597,6.2479,8.3394,7.9776,3.3673,3.8601,1.6686,1.9146,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd195,56,56,F,1.172,1.7443,0.3781,0.42053,0.77349,0.8008,15.3697,2.7961,2.7336,49.447,50.7872,12.8401,13.1052,227.3956,216.712,1.0312,3.0233,2.9863,0.40818,0.44981,9.478,11.4231,1.5275,1.5147,3.2836,3.4101,6.345,6.5934,4.311,4.6199,0.07685,4.9801,2.407,2.6222,0.36866,0.37705,3.7805,4.3799,3.8964,3.7848,1.5604,1.5289,8.2161,8.5611,3.1004,3.0936,3.7112,3.763,4.2553,4.211,1.6085,1.5145,1.7598,1.7542,3.1919,3.1487,6.8956,7.1118,2.0352,2.1695,6.9569,5.9451,10.1663,10.8081,8.1911,7.7624,2.1301,2.3184,4.1706,4.0497,1.6016,1.6432,17.3506,17.8445,4.7603,5.7343,3.5454,4.0437,1.0517,1.1394,2.5962,2.9515,6.9324,6.4494,13.3397,13.5169,3.2278,3.7023,4.4483,4.2177,3.2753,3.286,1.5009,1.3667,3.849,4.1181,9.5387,9.5475,2.6687,3.0905,2.0263,2.0948,1.7874,2.187,10.3026,10.3747,2.3126,2.4821,1.8823,2.1378,11.9216,12.1035,1.5976,1.768,1.048,0.97977,13.9443,13.7765,4.9874,4.7219,6.1646,8.0024,4.3993,3.4542,9.1039,9.2653,7.0951,7.1332,7.1243,6.874,3.4384,3.6143,1.2809,1.4578,,27,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd196,,,F,0.70972,1.1257,0.39144,0.44492,0.80756,0.82268,17.0278,3.1739,3.0868,47.704,47.0212,13.5201,13.7356,207.1482,206.9141,1.399,3.328,3.0577,0.38128,0.36325,9.3245,12.5428,1.6529,1.6597,3.8407,3.8764,6.6755,7.1669,4.7493,4.9442,0.07497,4.4305,2.2414,2.6199,0.3643,0.38358,4.2456,4.6177,4.2161,4.3726,1.8072,1.5468,10.5965,10.1825,2.9026,3.5359,3.9817,4.3056,5.3005,5.0758,1.7124,1.5896,2.0912,2.1194,4.015,3.6101,7.0639,6.8061,2.1371,2.0894,7.1968,6.9482,11.7256,10.9206,7.5424,7.4574,2.0878,2.4125,4.8793,4.5013,1.7953,1.8622,17.659,18.4445,6.1579,6.6358,3.9067,4.0194,0.98132,0.98826,1.9825,2.2115,7.7828,6.6459,14.4949,14.6998,3.5384,4.2916,3.7584,4.2611,3.7074,3.5831,1.4431,1.6744,3.9393,4.4385,11.2018,11.0284,2.8906,3.1722,2.3018,2.2438,2.1039,2.3142,9.9071,10.6325,2.4704,2.5079,1.9836,1.9493,11.574,11.9453,1.969,2.0327,1.0766,1.1133,14.7744,14.8242,5.0951,4.9509,7.6392,8.903,4.3393,4.138,9.1951,10.6744,7.4213,7.5841,8.383,8.0899,3.5315,3.3372,1.5501,1.5055,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd197,71,71,F,1.1751,1.7805,0.41623,0.45137,0.96308,0.97955,21.8183,3.209,3.0987,48.2352,47.8478,19.0103,18.277,274.269,260.6464,1.6407,3.3784,3.1767,0.52761,0.47243,13.3926,13.1029,1.73,1.7506,4.3524,4.2961,7.3845,7.6489,4.949,5.1393,0.0856,4.9937,2.3699,2.7104,0.43463,0.41984,3.9151,4.9085,4.3377,4.5486,1.9291,1.7476,9.5148,9.2765,3.4265,3.3305,3.9933,4.6146,5.5107,4.7596,1.9505,1.8609,2.1221,2.1978,3.6033,3.9277,7.7757,7.4301,2.1538,2.2924,6.8332,6.6271,11.9752,12.0957,9.5438,8.0287,2.4591,2.6652,4.4131,4.5009,1.9242,2.0486,16.6491,19.9508,5.3816,5.8134,4.4345,4.623,1.1911,1.198,2.7194,2.5419,8.4927,7.0881,14.9589,13.9313,3.3716,3.47,4.7296,4.8176,3.5722,3.8995,1.7193,1.7466,4.1235,4.8286,10.5938,10.0353,3.2428,3.3523,2.4147,2.5299,2.2478,2.5347,10.2604,12.1538,2.502,2.7405,2.1415,2.4695,13.196,12.916,2.1247,2.3352,1.1758,1.2903,14.4175,13.4785,6.3356,6.056,8.4164,8.526,4.4704,3.7842,9.7527,10.9693,8.2144,7.5473,8.8288,7.9158,3.6747,3.753,1.5639,1.6751,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd198,56,56,F,1.2087,0.73524,0.30261,0.35366,0.60361,0.66216,14.5522,2.5567,2.8728,36.5871,36.5567,11.7082,11.9709,176.7668,171.0676,1.2238,2.554,2.728,0.33228,0.47194,10.8911,13.4527,1.3856,1.3888,3.0847,2.6506,5.6714,6.1034,3.9009,4.1105,0.08637,4.1318,1.6783,2.1048,0.36996,0.32475,3.4061,4.2642,3.2609,3.4818,1.6751,1.4159,9.5952,8.9399,2.8545,2.6239,3.755,3.771,4.1145,4.2103,1.2567,1.2728,1.7009,1.681,3.879,3.0808,5.0191,5.759,1.7907,1.977,5.566,5.3117,8.9138,8.2972,6.92,6.6783,2.0293,1.9433,4.1302,4.4628,1.6876,1.694,16.6386,17.3826,4.3254,5.3655,3.449,3.5504,0.92508,1.2399,2.4699,2.627,7.2857,6.2888,11.1503,11.0512,2.549,2.3928,3.6809,3.6751,3.2342,3.1904,1.459,1.1488,3.1223,3.7408,9.1766,9.3937,2.3909,2.5548,2.0682,1.9205,1.8636,2.2234,9.1566,11.6058,1.9527,2.054,1.9834,2.043,11.1343,12.3857,1.7454,1.9443,1.0766,1.1654,12.4816,11.6837,4.8107,4.542,7.36,8.6986,4.204,3.2493,9.4211,9.2394,6.2549,5.982,6.6466,5.995,3.5397,3.4939,1.445,1.4745,,23,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd199,68,68,M,1.4677,2.0873,0.45089,0.48466,0.96734,0.94374,19.4303,3.3837,3.3032,55.275,56.7564,18.9067,18.277,301.2319,293.5499,1.2497,3.6539,3.4198,0.58957,0.47243,8.5334,9.1183,1.828,1.7725,4.5594,4.6599,7.663,7.8543,5.0171,5.4028,0.08487,5.8009,2.6203,3.1022,0.45822,0.46748,5.0449,5.7206,4.3245,4.7315,2.0647,1.8727,12.1998,11.3392,3.6591,3.6169,3.8627,4.6635,5.2557,4.6995,1.9067,1.8225,2.1378,2.1611,4.3098,4.1805,8.7955,8.7704,2.4397,2.4946,7.0212,6.6433,13.0873,13.6809,8.5558,7.8045,2.7614,2.7463,5.1245,5.1103,2.0591,2.1957,20.661,20.5668,5.5348,6.6016,5.6107,4.8288,1.4549,1.1939,3.209,3.2326,9.3424,7.6078,15.9716,16.8572,2.7271,3.1976,4.423,4.1718,3.9394,3.481,1.8216,1.7248,4.248,4.9304,10.2779,11.3059,3.1107,3.3253,2.4661,2.3709,2.2439,2.3061,13.4065,12.296,2.502,2.754,2.272,2.5369,12.5464,13.1281,2.0136,1.8173,1.3886,1.38,16.4028,15.6987,6.8389,5.7798,8.4487,10.4137,4.2425,3.6212,12.6491,11.3395,8.4167,9.1999,10.7681,9.3224,3.9358,4.3612,1.6366,1.8049,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd200,80,80,F,1.6409,3.1677,0.32836,0.38856,0.75455,0.79298,16.4358,2.7168,2.824,42.7345,43.7109,13.3855,13.625,211.2005,210.2499,1.1862,2.8518,3.0048,0.66079,0.79444,21.4528,22.8015,1.5456,1.5705,3.1708,3.0976,6.5223,6.7553,4.3972,4.5684,0.08687,4.4952,2.1958,2.1846,0.39142,0.35829,3.9522,4.3325,3.6452,3.9682,1.631,1.3478,9.0586,7.639,3.0446,2.7653,3.9721,4.1408,3.8762,4.1721,1.5505,1.5511,2.1616,1.9412,3.2279,3.2506,6.3936,6.7179,1.7041,1.6724,5.6908,5.9248,10.7082,9.5931,6.9306,6.489,2.1928,2.2157,4.6756,5.0023,1.5878,1.6612,20.0742,19.5447,4.796,4.7546,3.1815,3.4098,1.0125,1.0506,2.3795,2.549,6.9498,6.5523,14.1728,12.6595,2.391,3.4122,3.9417,3.9102,3.1209,3.8005,1.6283,1.4926,3.5177,3.7548,9.5692,9.5476,2.6748,2.9855,2.0729,2.1462,2.1185,2.3096,8.407,9.9287,2.4806,2.3113,1.8621,2.173,12.4119,11.9836,1.8306,1.8118,1.1613,1.2219,12.967,13.9897,4.918,5.1003,7.4083,7.7603,3.977,2.9199,10.2397,10.3839,6.5968,6.5229,7.4341,6.7432,3.6933,3.9927,1.3885,1.5591,,22,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd201,72,72,M,1.076,1.2928,0.39689,0.43031,0.93717,0.8882,18.9176,3.2384,3.0922,40.9779,43.1548,14.0826,15.2682,211.353,212.0212,1.2612,3.3372,3.2016,0.70599,0.50083,11.703,11.6998,1.6559,1.668,3.5381,3.703,7.0833,7.3428,4.8194,5.0816,0.07497,4.7016,2.0673,2.4551,0.35327,0.38853,3.591,4.082,4.0376,4.1057,1.9295,1.7774,11.3817,9.9879,3.6757,3.6094,4.185,3.6082,5.0682,5.4507,1.6715,1.655,2.045,2.0529,3.7478,3.662,7.562,7.2979,2.3123,2.3994,7.3727,7.2429,11.5999,11.9409,8.3597,7.7624,2.5564,2.5654,3.9778,4.0456,1.815,1.6782,19.6606,16.8625,5.7287,6.2518,4.2999,4.7389,1.0288,1.1895,2.3303,2.7089,6.5218,5.9052,14.3784,13.9066,3.881,4.0524,4.6395,4.4501,3.8942,3.4282,1.6433,1.5799,3.4491,3.7688,10.1893,10.4832,2.9008,3.4545,2.4081,2.4581,2.53,2.7283,10.8533,12.6198,2.519,2.7957,2.1158,2.3094,13.7294,13.6664,2.1289,2.157,1.3268,1.3509,14.5232,15.0536,4.7982,4.9805,8.6232,9.6666,5.1807,4.2936,10.0806,10.4071,8.0255,7.898,7.1507,7.2254,3.5754,3.8459,1.3905,1.5647,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd202,67,67,F,1.0572,1.685,0.3531,0.36467,0.82722,0.80084,14.7753,2.4421,2.5513,40.8755,40.3972,12.0467,12.4071,214.4218,211.6229,1.2559,2.9997,2.9587,0.43641,0.4617,9.3026,12.7084,1.4997,1.4829,3.4545,3.5981,6.1788,6.4197,4.2401,4.4327,0.07442,4.224,1.8288,2.247,0.33734,0.34498,4.1037,4.7414,4.0004,4.4668,1.6198,1.4954,9.8956,8.714,3.1163,2.8373,3.7906,3.8421,4.1616,3.7909,1.5899,1.5263,2.0596,2.3372,3.6456,3.1803,7.7755,7.4944,1.8974,1.8575,6.0951,6.1879,10.6656,10.6636,7.3041,6.533,2.1682,2.2284,4.554,4.7776,1.6735,1.7134,16.9497,17.7121,5.1447,6.305,3.5136,3.688,1.116,0.94038,2.3443,2.2863,7.7854,6.8896,13.5206,13.3416,2.1297,3.0981,3.9188,3.8194,3.4493,3.1393,1.6746,1.4926,4.0339,4.6571,9.7306,9.8654,2.8314,3.0435,2.0389,2.0073,2.0855,2.2225,9.2486,10.7141,2.0888,2.0134,2.004,2.0488,11.1662,12.0145,1.7546,1.8612,1.2499,1.2975,13.0801,13.8829,5.3208,5.5874,7.3399,8.1279,3.6559,3.1956,9.3513,9.7427,7.3514,7.3608,7.3208,7.6994,3.4761,3.7653,1.2354,1.3469,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd203,,,F,2.0007,2.7942,0.29367,0.34872,0.76898,0.71092,18.765,2.1606,1.6876,45.8701,46.1531,15.7042,16.5544,250.4935,252.0335,1.8735,3.19,3.135,2.1389,1.9334,23.7121,26.3035,1.6059,1.5711,3.4568,3.4843,6.1423,6.2886,4.6091,4.8254,0.08037,5.1289,2.1969,2.7552,0.35605,0.32917,4.5652,4.7708,4.3829,4.3307,1.4708,1.386,11.4893,8.6865,2.9724,3.0178,4.2568,4.4032,4.6651,4.4391,1.4166,1.3429,1.6567,2.0095,3.548,3.134,6.8917,6.5236,1.7307,1.8647,6.3048,6.303,10.3783,9.1041,7.2899,7.5524,2.2026,2.1175,4.8096,4.9476,1.4899,1.5482,15.7914,16.6826,5.31,6.0615,3.2523,3.5958,1.0455,1.051,2.5523,2.6688,7.5088,6.8312,13.5206,12.9115,2.563,3.2759,4.2119,4.3338,3.0664,2.9979,1.5359,1.4244,4.2915,4.4635,10.554,10.1935,2.6384,2.7096,2.4221,2.2366,2.1164,2.4504,9.8726,11.5915,2.4519,2.3531,2.2267,2.3109,11.7555,12.0433,1.9502,2.2641,1.1353,1.1892,14.0128,14.2731,5.3901,4.9523,8.1688,8.2607,5.0079,4.0134,10.5029,9.6246,7.1459,6.709,6.9164,6.9798,3.229,3.3662,1.5637,1.6405,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd204,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd205,,,F,1.2254,1.8035,0.35779,0.39427,0.91074,0.90859,18.9336,2.5937,2.3667,46.9422,47.7378,14.8152,15.2393,223.1865,221.3182,1.0767,3.4077,3.1069,0.61029,0.6351,9.0393,11.9184,1.4998,1.4831,3.1969,3.2548,6.1682,6.9973,4.4021,4.5314,0.0823,4.8744,2.2487,2.6106,0.38425,0.37462,3.8431,4.431,3.3778,3.5961,1.767,1.6008,9.7817,8.7286,2.2066,2.7667,3.4588,3.5507,4.144,4.107,1.7707,1.8278,1.815,1.7798,3.5208,3.2115,6.7859,6.9801,2.0388,1.8867,6.9008,5.6291,10.6387,10.6652,7.2942,7.0594,2.1125,2.2657,3.9214,4.6092,1.7099,1.7409,17.9298,16.3119,5.2828,5.8863,3.7438,4.002,0.89149,1.0363,2.1702,2.549,8.3783,6.4523,13.4647,12.4664,2.8753,3.4845,4.253,4.0075,3.2367,3.1188,1.3391,1.3216,4.6508,5.2247,12.5485,11.1221,3.1027,3.281,1.8338,1.9054,2.1272,2.5347,10.5304,11.1943,2.2487,2.3985,1.6319,1.7846,11.5031,11.3856,1.6753,2.0647,1.1679,1.192,13.8315,13.631,5.152,5.415,7.6688,8.2928,4.3188,3.4805,10.1625,11.1999,7.2047,6.7122,7.3028,7.6262,3.036,3.6177,1.3803,1.3679,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd206,78,78,M,2.2182,2.1866,0.32142,0.35956,0.76311,0.83577,16.6371,2.4055,2.296,41.4415,41.053,14.0549,14.6336,191.9093,187.3303,2.3102,3.0601,3.0689,0.73085,0.53907,27.4718,31.4738,1.3688,1.369,3.5016,3.5827,6.3999,6.6506,4.3203,4.5839,0.07149,4.418,2.0428,2.5036,0.36765,0.36691,3.8738,4.44,4.3523,4.5412,1.6276,1.4072,11.4685,9.8121,3.5365,3.2596,4.2583,4.3708,4.8444,4.3473,1.5072,1.5673,2.0236,2.1016,3.459,3.4587,6.7407,6.7244,1.9463,2.0637,7.1322,6.2704,11.1523,9.777,8.124,7.0238,2.1682,2.0924,4.693,4.5076,1.682,1.7001,16.5157,16.0005,4.9104,5.3469,3.7817,3.7981,1.0469,1.101,2.2773,2.6416,7.2313,6.9618,14.7813,11.2573,3.0269,3.7758,4.2711,4.3095,3.1038,2.9576,1.6283,1.3618,4.0614,4.5279,12.422,11.1221,2.8393,3.1414,2.4221,2.5572,1.8926,2.2186,11.1617,12.8986,2.3067,2.4992,2.1158,2.3484,10.3294,11.8666,1.6811,1.7077,1.249,1.2961,13.0712,13.1603,4.7568,4.794,8.9673,8.6417,4.4602,3.1777,10.3739,11.1999,8.0088,7.6602,7.057,6.7432,3.5485,3.42,1.2864,1.6874,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd207,76,76,M,2.4682,2.739,0.37692,0.48236,0.72539,0.78073,21.9754,2.9475,2.8851,45.4788,46.8683,16.8651,17.357,249.6425,247.7543,2.3378,3.2705,3.1525,1.0172,0.83934,32.0847,27.6636,1.7454,1.7342,4.0675,4.6426,6.8653,7.0742,5.1514,5.3964,0.07715,5.1672,2.2369,2.5511,0.40007,0.39288,4.0449,4.6638,4.4877,4.5741,1.6155,1.6047,9.61,8.9409,3.4035,3.3618,4.4609,4.4687,4.6508,4.1609,1.4342,1.5264,2.3116,2.0697,3.801,3.662,6.7149,6.8529,2.2793,2.3147,5.8415,5.3991,11.4971,10.3585,8.0228,7.39,2.1145,2.3816,4.9921,4.9662,1.8465,1.8594,19.209,19.4124,5.1082,5.4347,3.7199,4.2172,1.2016,1.0275,2.5709,2.4593,7.957,6.9421,14.0951,13.5444,2.4513,2.7227,4.2082,3.8014,4.0166,3.0816,1.5266,1.5907,3.8501,4.4716,10.4412,10.0436,2.516,2.4612,2.61,2.7377,2.7315,2.5835,11.1857,12.3416,2.141,2.5278,2.2133,2.539,11.9639,11.8957,2.2121,2.0854,1.2897,1.2777,13.451,14.2373,4.9632,5.6441,8.4684,9.8821,4.1918,3.4138,9.8015,9.8591,7.6908,6.856,7.2679,7.3648,3.4042,3.7831,1.7493,1.8102,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd208,72,72,M,2.3977,2.2218,0.34701,0.39061,0.83986,0.83746,18.7864,2.5547,2.6413,49.1382,49.9308,16.2491,15.9902,221.782,219.4771,1.7846,3.3254,3.1951,0.9969,1.3385,22.1314,25.7898,1.6892,1.7045,3.4932,3.4907,7.2232,7.42,4.7272,4.8669,0.07709,5.521,2.5385,3.0156,0.41278,0.4046,4.4838,4.7492,4.9269,4.7265,1.6716,1.5185,9.615,9.8993,3.4901,3.2287,3.7911,4.1485,5.3684,4.8128,1.6222,1.6079,1.9017,1.8671,3.5592,3.4626,7.5756,7.3465,1.9296,1.936,6.2791,6.9885,12.0794,12.2219,8.7859,7.9709,2.0839,2.2879,4.3592,4.4863,1.5996,1.702,16.95,17.2614,4.9014,6.1903,3.6669,4.0077,1.0574,1.101,2.2237,2.3009,7.379,7.1587,14.027,13.859,2.5283,3.4953,4.8417,5.0557,3.4272,2.8476,1.4842,1.433,4.6583,5.0967,12.4279,11.6244,3.1435,3.3795,2.6482,2.7233,1.9748,2.3583,9.8217,11.0461,2.1786,2.3906,2.236,2.4642,12.0416,11.857,1.9731,2.1958,1.2173,1.2805,14.6241,14.0278,5.1235,5.1668,8.3553,8.4522,3.9936,3.6195,9.3681,10.0305,7.8527,7.1633,7.4012,7.6904,3.4631,3.5044,1.5479,1.8144,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd209,,,M,1.906,1.9242,0.29313,0.34162,0.73342,0.72214,17.3862,2.1408,1.8892,45.7654,45.8179,14.8474,14.4504,202.8273,198.8528,1.9683,2.9698,2.6235,1.6347,1.3141,27.9583,34.1486,1.5111,1.4886,2.539,2.6123,6.2733,6.9973,4.3958,4.4773,0.0769,4.8893,2.2037,2.2839,0.32918,0.34224,4.0784,4.2172,3.5228,3.7157,1.3882,1.5195,9.215,9.422,2.5623,2.577,3.9428,3.771,4.0939,4.3004,1.2694,1.4315,1.6408,1.569,3.1885,2.8959,6.5852,6.8975,1.9111,1.7852,5.9047,6.1523,10.3798,10.5797,7.3667,7.1987,1.8215,2.5249,4.2888,3.86,1.6467,1.5185,16.9559,17.1771,4.4501,5.0215,3.3879,3.6837,0.80958,0.94483,2.0343,2.2115,7.0663,6.2576,13.132,13.2393,2.4613,2.9236,4.1069,4.385,2.8904,2.4846,1.2066,1.5784,3.405,4.1248,9.385,10.1722,2.6926,2.8618,2.1635,2.0499,2.31,2.222,10.3188,10.8241,1.8589,2.5752,1.8823,2.0155,11.388,12.6951,1.8744,1.9435,1.0351,1.0478,13.5541,12.9407,5.0396,5.1526,8.1414,8.8438,3.5453,2.8751,8.8287,9.0516,6.7587,7.3057,7.5055,6.9864,3.2507,3.7415,1.4273,1.5435,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd210,71,71,F,1.169,2.0062,0.3887,0.41414,0.86623,0.90119,17.5955,2.7961,2.7179,47.5632,47.8739,14.2605,15.2682,204.2511,201.1678,1.3068,3.1839,3.1406,0.38128,0.37663,9.8956,9.8195,1.4856,1.4805,3.5165,3.4285,6.7267,7.0292,4.1478,4.3053,0.06495,4.8524,2.3034,3.0327,0.34124,0.37323,3.7785,4.237,3.6869,3.758,1.7313,1.4878,10.5402,8.7637,3.0221,2.7239,3.6053,3.7872,3.8024,3.9864,1.7743,1.7002,1.8365,1.9199,3.5505,3.1244,7.3746,7.0892,1.965,1.8386,7.1621,6.8599,10.9484,10.8121,7.9171,6.9625,2.2645,2.3387,4.2708,4.3046,1.6585,1.5606,17.153,18.325,5.1077,5.9594,3.6023,3.5912,1.0517,0.99,2.8046,2.4824,7.2826,6.7256,13.3617,13.328,2.6968,3.0631,4.331,4.3412,3.3159,3.5001,1.5253,1.5144,3.4491,3.8426,9.1766,9.4232,3.0069,3.4146,2.1566,2.0745,1.8528,1.9104,9.1447,11.9524,2.3375,2.5033,2.0193,2.2557,11.3285,12.42,1.6951,1.6417,1.1395,1.1304,12.557,14.3766,4.9767,5.6712,7.1324,8.3436,3.6415,3.4278,10.0073,8.9179,6.9716,5.8622,8.2166,8.0227,3.1766,3.7653,1.2975,1.3547,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd211,70,70,M,1.7938,2.0757,0.39908,0.47187,0.88765,0.90065,20.1977,2.7823,2.796,41.2298,45.4621,14.8788,15.6887,255.5603,249.3192,1.6673,3.3869,3.2824,0.80356,0.57124,13.3926,15.9618,1.7571,1.7879,3.9922,3.9109,7.4845,7.7073,5.044,5.2367,0.08971,4.3915,2.1635,2.5286,0.424,0.43687,4.1621,5.1269,4.0728,4.5632,2.1787,1.8866,10.2582,9.2428,3.6929,3.6542,4.4781,3.9394,5.6101,5.2259,1.7773,1.8106,2.3116,2.1163,4.4622,4.2113,7.7197,7.494,2.4397,2.3453,7.3727,7.9824,12.3948,12.9047,8.4174,7.5703,2.4956,2.8087,4.8834,5.2148,2.34,2.0408,20.5284,22.4796,5.4728,5.9604,4.2985,4.4376,1.1214,1.0533,2.8408,2.8104,8.7683,7.8866,15.7293,16.9706,3.2767,3.8449,4.6967,4.7029,3.7286,3.6257,1.7599,1.8233,4.2239,4.6613,11.262,11.1905,3.145,3.2491,2.3431,2.2643,2.378,2.3546,10.8847,11.1911,2.5801,2.9114,2.226,2.408,12.2645,12.7629,2.0492,1.7346,1.2963,1.3161,16.1595,15.2893,5.8532,5.8485,8.3652,7.9048,4.3351,3.5157,10.5549,10.683,8.049,7.6646,8.8345,8.47,4.0822,4.7317,1.5567,1.6874,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd212,69,69,F,1.6583,1.6088,0.30608,0.31776,0.51972,0.51612,14.6382,2.4093,2.2554,37.2794,36.591,11.27,11.7864,181.8204,171.5857,1.8529,2.6,2.3086,1.6199,1.2114,21.9802,19.7701,1.3894,1.3575,3.1335,3.1634,6.1763,5.8586,3.8112,3.9387,0.08637,3.8533,1.8249,2.0749,0.30474,0.13082,3.0547,3.5274,3.3055,3.5856,1.4168,1.3301,8.3049,7.7201,2.5845,2.5355,3.4983,3.3778,3.525,3.5058,0.93517,0.91633,1.6169,1.5775,2.918,2.9207,5.5713,5.6812,1.7798,1.8768,5.5004,4.7373,8.0468,7.9082,5.9926,5.8129,1.7858,1.9589,3.8611,3.8523,1.4493,1.4588,15.608,15.8574,3.8714,4.9703,3.0089,3.7779,0.89699,0.86559,2.2617,2.0853,6.5291,5.9184,10.4488,9.5771,2.639,3.1545,3.5715,3.5091,3.2271,2.5608,1.2641,1.1681,3.3295,3.7434,8.9068,9.2307,2.2618,2.5184,1.8902,1.9099,1.6424,1.8917,9.0129,9.9218,1.94,2.0234,1.6813,1.8973,10.2695,10.9442,1.5063,1.2898,1.0201,1.0551,12.3132,11.7939,4.4575,4.4989,6.2964,7.7904,3.7021,2.7232,9.2968,8.6869,6.4699,6.0329,5.3235,4.4876,2.9307,3.1484,1.2142,1.3,,13,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd213,83,83,F,1.8968,2.1846,0.29262,0.30203,0.67461,0.68516,15.3895,2.3103,2.1212,45.1767,45.7024,13.9568,13.6057,171.7744,172.7608,1.8418,2.9906,2.8601,1.642,1.0629,29.0169,29.1422,1.4,1.4265,2.6432,2.6509,5.3503,6.8531,4.2057,4.3908,0.08108,4.569,2.2701,2.3454,0.35392,0.3225,3.8254,4.2297,3.6596,3.7307,1.63,1.4523,7.1019,7.0736,2.8461,3.1124,3.4837,3.7782,3.6079,3.6558,1.1853,1.2057,1.8156,1.7378,3.7934,3.7458,6.3474,6.0265,1.9057,1.8477,5.6166,4.8611,8.7966,9.1264,6.5178,6.1198,2.0486,2.1982,4.0506,4.2049,1.7738,1.6848,18.0849,17.23,4.2365,4.9286,3.3972,3.5912,0,0,0,1.843,7.0677,6.5312,10.9882,11.3461,2.2858,2.7624,3.4874,3.4264,3.1751,3.4084,1.5467,1.4634,3.5027,3.6676,8.0695,8.5872,2.4831,2.6722,2.1187,2.0389,2.2401,2.0249,7.8636,9.1617,2.048,2.2402,1.7945,1.9808,10.3295,11.0377,1.8261,1.7204,1.017,1.0716,14.511,14.416,4.9319,5.0354,6.8191,7.0518,3.8231,2.9443,7.8694,8.7612,5.8447,6.0422,6.6229,5.8077,3.2162,3.6489,1.2052,1.4112,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd214,,,M,1.7432,2.3497,0.3771,0.40036,0.83178,0.81606,18.9937,2.7956,2.5116,46.4549,47.0264,15.8558,17.0724,226.5443,222.2557,1.4986,3.4931,3.2225,0.62802,0.61776,14.3883,14.9908,1.5997,1.6395,3.7231,3.7317,6.1196,6.4205,4.4829,4.6501,0.0791,4.7502,2.0938,2.6336,0.36122,0.41099,4.5652,4.9245,4.1091,4.2223,1.5345,1.4063,10.6055,9.6728,2.9724,3.1905,3.9646,3.6923,4.1831,4.1656,1.6799,1.6035,2.0772,2.019,3.5291,3.411,7.7152,6.6344,2.2971,2.2985,5.8415,5.5784,11.2832,10.9225,7.299,7.1804,2.0652,2.1152,4.8872,5.4779,1.9747,1.94,17.6235,17.2818,4.9089,5.4804,3.6162,3.8273,1.076,1.2117,2.3642,2.5397,8.371,7.7625,14.0732,13.5472,2.7573,2.764,3.6761,3.9033,3.356,3.5025,1.4526,1.2523,4.0638,4.3027,10.9706,11.3547,2.9268,3.1589,2.3548,2.5971,2.4287,2.4295,10.9172,11.8374,2.3497,2.2152,2.2234,2.4694,11.4383,11.229,2.1539,2.4099,1.2363,1.3149,13.741,13.6861,6.055,5.0587,9.1853,9.3025,4.5761,2.8313,11.8296,11.2477,8.0056,7.1293,8.0225,7.7644,3.1809,3.5224,1.5639,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd215,,,M,1.472,1.7228,0.30712,0.29998,0.71488,0.62016,22.0227,2.4722,2.1486,47.3816,46.1168,20.1528,22.1671,252.377,252.0335,1.3304,2.93,2.6566,0.74448,0.91308,16.2077,22.448,1.6753,1.6861,3.4877,3.3507,6.4965,7.862,5.179,5.4181,0.06747,4.7108,2.2199,2.7636,0.3253,0.35762,3.6203,4.0012,3.6874,3.8894,1.5678,1.3981,9.2794,9.8171,3.2654,3.3737,3.8488,4.0188,4.62,4.4191,1.4097,1.3032,1.8546,1.7904,3.2388,3.0946,6.9342,6.7266,1.8708,1.8303,5.988,5.3991,10.4622,10.6809,7.7523,7.0595,2.0058,2.1453,4.061,3.713,1.603,1.5188,16.8034,15.4965,4.6196,5.6222,3.3523,3.5882,1.1779,1.0018,2.7977,2.5682,7.0821,6.0886,13.3075,13.5345,2.9425,3.015,4.1983,3.7139,2.9091,3.1947,1.4194,1.3584,3.8381,3.8758,10.1944,9.5412,2.6261,2.7096,2.0447,2.1204,2.2033,2.2962,10.3561,11.3986,1.8912,2.2597,1.8414,1.9808,10.3122,11.5461,2.03,1.8732,1.0156,1.0551,11.8694,12.2416,5.2668,4.8915,7.4532,7.8033,4.5789,3.5745,10.3038,11.05,6.7587,7.0812,7.0344,6.9268,3.4556,3.4615,1.3506,1.4327,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd216,,,F,2.053,2.7942,0.35333,0.39298,0.70472,0.76914,16.0109,2.8526,2.5116,42.7073,43.9655,12.8512,13.5987,197.3612,191.4103,2.0004,2.8784,2.8124,1.157,1.3042,23.2901,35.4663,1.4021,1.3795,3.3097,3.2992,6.1602,6.5764,4.0924,4.3572,0.08302,4.0268,2.0322,2.3483,0.36577,0.36148,3.8072,3.7673,4.0828,4.2223,1.5354,1.3911,9.0441,7.9713,3.5365,3.319,3.3183,3.1451,4.371,4.2491,1.3995,1.4822,1.891,1.8109,3.3126,2.8161,6.4935,6.6884,1.7916,1.8571,5.5892,5.0373,10.1838,9.5801,7.7322,6.6418,2.0702,2.0882,4.1291,4.1746,1.5342,1.4147,17.5442,16.9539,5.1691,5.2764,3.4381,3.5511,0.97807,1.0543,2.0726,2.4565,6.3844,5.0512,13.5824,11.3686,2.2463,2.6631,3.9008,3.5079,2.99,2.706,1.3766,1.3295,3.5904,3.6484,10.0103,9.4168,2.6493,2.7311,2.2576,2.3411,1.9371,2.1707,8.9708,10.8637,2.3405,2.2573,1.9614,1.9697,10.3723,11.1521,1.8749,1.7742,0.95054,1.0654,14.2661,14.4419,4.5203,5.0496,6.6345,8.1728,3.5424,2.794,10.2994,11.021,6.6418,6.8169,6.7344,6.8159,3.1664,3.4748,1.4467,1.3116,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd217,,,M,1.7692,1.6315,0.40335,0.43093,0.91058,0.85904,18.8247,3.4584,3.5369,40.9779,42.0877,14.0223,14.2091,205.0426,208.7993,1.8418,3.6014,3.1956,0.68499,0.60686,15.1081,18.9404,1.6485,1.613,3.2779,3.3541,7.1647,7.512,4.7611,5.0523,0.10157,5.0892,2.3083,2.5288,0.4332,0.42106,4.1542,5.1149,4.0728,4.4546,2.1453,1.891,11.0966,9.9879,3.5938,3.6094,4.3668,4.6945,5.5107,5.2259,1.7129,1.7216,1.9532,2.3582,4.4396,3.6363,7.7699,7.494,2.097,2.1032,6.898,7.2798,11.7446,11.941,9.2334,8.7069,2.5046,2.9062,4.617,5.4238,1.9699,1.9384,21.3402,21.4013,5.92,7.6079,4.0039,3.9639,0.95377,1.048,2.3532,2.9135,9.1858,7.8222,14.0586,14.3792,3.2091,3.6819,4.7817,4.6343,3.7747,3.7584,1.6433,1.7466,5.0546,5.2164,12.5485,11.4852,3.0104,3.1923,2.5034,2.719,2.5655,2.7929,10.4138,11.9811,2.952,2.5227,2.2592,2.4642,12.8154,12.3724,2.0168,2.4797,1.2918,1.2837,17.9928,18.4898,6.1867,5.8365,8.2924,8.6411,4.7024,4.3046,12.9071,12.2536,7.0267,7.8232,8.0809,9.2731,4.0714,4.3525,1.5416,1.8456,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd218,83,83,M,1.7884,2.0487,0.29753,0.36521,0.79946,0.89488,16.1406,2.5652,2.4683,40.2388,39.7345,13.1521,14.4498,199.1276,191.6235,1.5099,3.0204,3.014,1.8227,1.7937,20.3411,24.0846,1.3688,1.3274,3.3423,3.1469,6.0833,6.1968,4.0164,4.2195,0.0592,3.7736,1.7942,2.2569,0.34664,0.32201,3.5452,4.0703,3.7381,3.5946,1.5609,1.3008,8.3621,8.6186,3.0125,3.0208,3.3731,3.4296,3.9572,3.5719,1.3855,1.6481,1.8537,1.7303,3.3157,3.3072,5.6871,5.6216,1.7474,1.8851,5.5048,5.3421,9.6194,9.5036,7.0311,6.367,2.1515,1.9626,4.3012,4.3307,1.3887,1.4061,15.8814,18.0442,4.3788,5.2818,3.4183,3.7118,0.99077,1.0822,2.2443,2.2739,6.7347,6.3837,11.9962,11.9519,2.6562,3.063,3.9054,3.852,2.9823,3.234,1.4504,1.3473,3.5992,4.313,9.7507,9.8654,2.4133,2.8056,2.1427,2.1447,1.8718,2.1503,7.9696,9.3435,2.0952,2.1719,1.9633,1.9493,11.2018,12.2039,1.7469,1.5256,1.1013,1.1726,13.4697,13.4957,4.6146,4.5418,6.6869,8.078,3.329,3.2556,8.2873,9.5963,6.787,5.9425,6.4587,6.3148,3.2372,3.8118,1.3829,1.2385,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd219,71,71,F,1.5061,1.8659,0.32204,0.36515,0.71864,0.75144,18.184,2.5676,2.7446,45.9086,46.1125,15.0423,15.0908,225.6701,218.9022,1.4932,2.9698,2.6784,0.39434,0.41122,8.5689,11.6139,1.5901,1.5956,3.6701,3.643,6.423,6.3334,4.6196,4.9294,0.07879,5.1619,2.1051,2.7636,0.33936,0.34498,3.9068,4.3097,3.9166,4.022,1.7927,1.5396,10.0299,8.3889,2.3608,1.9387,3.8597,4.2725,3.2572,3.0535,1.4097,1.4728,2.0226,1.8648,3.6211,3.1623,7.1137,6.8769,1.8764,1.8321,5.8093,6.1578,10.9587,10.7722,6.7914,5.6111,2.4026,2.5257,4.5636,4.5069,1.7088,1.7354,16.898,19.1102,4.618,5.8478,3.6345,3.9297,1.0201,0.97321,2.4763,2.3337,7.3267,6.5146,13.3708,11.94,2.4489,3.0392,3.733,3.6264,3.6965,3.3307,1.6172,1.5016,3.4587,3.8719,9.3981,9.27,2.5377,2.8084,2.0289,2.1205,2.1988,2.1897,9.3147,9.7572,2.5499,2.4252,1.906,2.1035,12.6393,11.8097,1.7931,1.7707,1.1543,1.1421,13.3892,12.9795,5.2933,5.0618,7.5884,8.3573,3.8696,3.151,10.6014,10.3844,7.0455,6.5395,7.5417,7.4294,3.6156,3.7456,1.4291,1.6057,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd220,60,60,M,1.0829,2.1211,0.46267,0.49714,1.076,1.1046,18.5915,4.2284,3.6921,50.2053,48.5206,15.4287,15.7193,256.5174,245.919,1.1281,3.9712,3.5866,0.70599,0.50083,11.4639,11.7896,1.8651,1.8386,3.8073,3.8252,7.6923,8.0637,5.0559,5.1015,0.08406,4.551,2.3995,2.8418,0.45814,0.46534,5.2074,5.7797,5.378,4.7371,2.0518,1.8573,12.1829,10.8554,3.2672,3.5363,4.6043,4.4329,5.3644,5.7109,2.4117,2.1113,2.4407,2.6485,4.2777,4.2636,8.5003,8.0257,2.4397,2.4444,7.6633,8.9127,13.9916,12.2709,8.0041,7.7402,2.6087,2.8087,5.6031,5.3815,2.0519,2.2059,21.3816,20.5486,7.0774,7.252,4.3885,4.4773,1.435,1.5159,3.3463,2.8764,9.613,7.9076,18.12,15.7612,3.7915,4.5715,4.6581,4.8159,4.2568,4.2748,1.8216,1.7236,4.3861,5.0508,12.2162,12.082,3.4349,3.9265,2.5151,2.6305,2.6939,3.1023,11.4327,14.5135,2.5869,2.7361,2.2951,2.8207,13.4291,14.0366,2.317,2.8636,1.6001,1.5341,15.6544,15.1686,6.3351,6.51,9.3803,10.9412,5.5059,3.9528,11.9661,11.7601,8.8438,7.8884,10.7681,9.1485,4.3531,4.4426,1.7493,2.2485,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd221,69,69,F,1.1823,1.5129,0.43242,0.47854,0.96308,0.94919,17.2523,2.9795,2.7306,46.5868,45.9081,14.305,14.6229,209.5972,208.7993,1.2229,3.8111,3.1016,0.70599,0.60686,11.259,13.8935,1.4597,1.4637,3.6951,3.7221,6.7091,6.7055,4.4045,4.6455,0.0698,4.7095,2.1308,2.6288,0.4115,0.40558,3.7856,4.3216,3.8487,3.8022,1.9727,1.6626,9.5148,8.6029,3.2904,3.1286,4.0372,3.5278,4.2814,3.8821,1.7744,1.9961,1.6638,1.7166,4.1246,3.5694,7.1827,7.1705,2.5778,2.6282,6.3483,6.0351,11.629,11.318,8.01,6.7187,2.4377,2.4742,4.1402,4.664,1.8843,1.8339,18.5718,17.763,5.2515,6.239,4.1808,4.1871,1.2881,1.0763,2.8271,2.4209,7.4819,6.5523,13.0986,14.2233,2.7691,3.2956,4.2554,3.9801,2.8161,3.016,1.577,1.5149,3.7144,4.4716,10.4475,10.1542,3.1027,3.4163,2.2934,2.2236,2.2662,2.253,10.4643,11.6001,2.6135,2.5627,1.9664,2.1959,13.0814,11.9528,1.9109,1.8531,1.1517,1.2197,14.1307,13.7765,5.3077,5.0925,7.6442,9.011,3.8065,3.151,9.9323,10.2392,6.8605,6.9201,7.932,7.7578,3.8343,3.6702,1.4206,1.6057,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd222,82,82,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd223,67,67,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd224,69,69,F,1.4994,2.5699,0.33898,0.376,0.8509,0.85531,15.9099,2.7586,2.629,43.2103,42.4254,14.0219,13.4048,209.5752,203.9727,1.3533,3.2315,3.05,0.4878,0.46211,13.6461,12.8542,1.4047,1.3426,3.3107,3.3873,6.8127,6.7768,4.0058,4.2395,0.06574,4.2492,2.0385,2.3954,0.34664,0.35564,3.7748,4.2369,3.7341,3.7334,1.7727,1.5045,9.8956,9.431,3.2174,3.1292,3.6974,3.806,4.7789,4.7757,1.702,1.626,1.8267,1.8526,3.6547,3.096,7.7436,7.3983,1.9263,1.6533,6.9214,5.9553,11.4244,11.3663,7.6419,6.8163,2.1066,2.3807,4.2293,4.2647,1.5906,1.5716,18.6572,19.922,5.027,6.1115,3.7639,3.8188,1.1499,1.097,2.9391,2.5253,7.6361,6.3812,14.5429,13.9554,2.7339,2.8797,3.7753,4.0649,3.1817,3.4162,1.4205,1.559,3.8115,4.0773,10.0636,9.6476,2.8667,2.9691,1.9479,2.1204,1.8787,2.1089,9.2722,11.6356,2.2487,2.5225,1.7585,2.0631,12.6388,12.2439,1.8207,1.8587,1.0959,1.1114,13.7294,14.0173,5.4325,5.566,6.8716,8.9568,4.3767,3.7762,9.187,10.6744,6.7222,7.4916,7.3755,6.8639,3.1664,3.9486,1.3212,1.3575,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd225,70,70,M,1.8751,2.3804,0.3603,0.3887,0.90359,0.87665,20.527,3.5473,3.1889,47.1373,46.6155,19.9017,19.9391,275.5598,293.5499,1.4859,3.4863,3.3067,0.7684,0.73717,13.7106,14.6384,1.8734,1.8123,3.9227,4.0694,7.122,7.7786,5.1695,5.4939,0.10334,4.2965,2.2621,2.5852,0.35228,0.39039,3.3884,4.1868,4.6043,4.3307,1.8993,1.6524,9.7817,8.3953,3.159,3.0072,3.5984,3.725,4.3472,3.9577,1.7792,1.7216,2.0886,2.1231,3.6814,3.0604,7.4396,6.9494,1.9291,2.0985,5.5486,4.9819,11.1621,10.9301,7.3862,6.8258,2.2271,2.4614,4.5022,4.5673,1.5451,1.6073,15.9832,17.9085,4.1544,4.7026,4.0234,3.9652,0.9308,1.0155,2.3465,2.756,7.2112,5.9329,14.5227,12.9319,2.6562,3.0025,3.5584,3.5354,3.0687,3.3423,1.4561,1.606,3.5588,3.9948,9.5439,9.2995,3.0069,3.2913,2.6482,2.4935,2.1353,2.4906,8.3787,9.6135,2.5005,2.6404,2.3361,2.5114,11.3061,11.229,1.7032,2.1538,1.1721,1.2399,15.2248,15.0896,5.1071,5.2913,7.4095,8.9635,3.919,3.125,9.5839,8.3378,6.597,6.9802,7.2509,7.5218,3.4066,3.7809,1.5637,1.7669,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd226,67,67,M,2.0592,2.9737,0.19817,0.29266,0.60887,0.55372,13.7663,1.8066,2.1042,25.2218,28.5729,10.8603,9.2054,155.2651,158.4892,1.9862,2.4818,2.3086,0.90182,0.79331,19.6009,21.5958,1.2833,1.2125,2.7027,2.8551,5.6653,5.5339,3.6233,3.802,0.06809,4.1864,1.7341,1.7352,0.31367,0.3141,3.1858,3.252,2.9997,3.1785,1.3371,1.0793,7.9338,2.2506,2.9717,2.7609,3.5447,3.2123,3.525,3.349,1.2138,1.0462,1.6873,1.7516,3.319,3.023,5.1012,3.9341,1.5262,1.6345,5.4548,3.8533,7.2375,7.7991,7.1065,6.1704,1.7375,2.0953,3.264,3.452,1.136,0.94623,15.6178,14.9308,4.4224,3.9079,2.888,2.9419,0.91522,0.93562,2.0355,2.0004,5.4759,4.7167,8.3232,11.3505,2.6285,3.3184,3.7099,3.0676,2.9917,3.2162,1.0875,1.1944,2.561,3.4438,8.3606,8.2201,2.4305,2.4325,1.7966,1.7303,2.265,1.9866,8.2449,10.3158,2.0072,2.059,1.5695,1.6021,10.3155,10.6762,1.7727,1.7153,0.81868,0.93688,13.3021,13.0419,4.5203,4.6449,6.3379,7.0634,3.3981,3.0462,8.1187,8.7234,5.9204,5.2296,5.7073,6.1755,2.9562,3.2472,1.1985,1.437,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd227,70,70,M,1.1133,1.7477,0.36818,0.39642,0.80229,0.80585,18.4232,2.7093,2.7719,46.5743,46.3326,14.882,15.0908,203.5591,202.825,0.98803,3.0849,3.014,0.37858,0.40243,9.9076,10.5276,1.4856,1.416,3.3313,3.3731,6.2558,6.49,4.5574,4.783,0.07685,4.7803,2.3524,2.7636,0.36866,0.36231,3.4068,4.1665,3.5908,3.6699,1.8008,1.5746,9.5238,8.6007,2.4294,1.9707,3.6022,3.3012,4.0272,3.4888,1.5833,1.6097,1.7505,1.7621,3.4857,3.2703,7.2787,7.029,1.9435,1.8999,6.6393,6.1018,11.2911,10.8767,7.7853,7.0528,2.3512,2.4717,4.2587,4.0497,1.585,1.6383,16.1406,17.2931,5.3586,5.3469,3.7478,3.8498,1.0517,1.1734,2.5278,2.155,6.9133,6.721,13.3617,12.0194,3.1751,2.8547,4.2075,4.3142,2.878,3.243,1.5115,1.5784,3.8402,4.0705,9.6819,10.2529,2.7381,2.9354,2.0377,2.0444,1.7874,2.1756,9.2483,10.1489,2.3178,2.3008,1.8635,2.085,11.5468,12.3687,1.5976,1.768,1.0135,1.0159,13.0346,12.251,5.0284,5.3351,7.0035,8.2933,3.8244,3.2683,9.4088,9.4013,6.8921,5.9411,7.1243,7.2249,3.0989,4.0353,1.2178,1.3337,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd228,71,71,F,1.1751,1.9234,0.39576,0.43211,0.82078,0.84704,12.5951,2.8766,3.1553,41.4208,42.0877,10.0498,10.4569,195.4331,194.1091,1.6407,3.3738,3.2358,0.89647,0.48349,16.2964,17.5791,1.5018,1.5031,3.6679,3.8632,5.9582,6.4197,4.1214,4.2449,0.07738,3.7344,1.7958,2.1274,0.36785,0.36524,3.8357,4.3344,3.8936,4.0109,1.6152,1.4061,10.0177,7.8224,2.3843,1.9387,3.4837,3.5149,3.5822,3.438,1.5953,1.6223,1.9482,2.0529,3.3082,3.3513,6.7028,7.2039,2.0107,1.9112,5.9047,5.8863,10.1979,10.3825,7.228,6.423,2.0721,2.0882,4.2555,3.9922,1.7598,1.6533,16.3461,17.0065,5.347,5.8084,3.5505,3.5098,0.86718,0.92597,2.344,2.0058,7.6104,6.5976,13.7425,12.722,2.4897,2.7448,3.8391,3.817,3.1038,3.5456,1.5482,1.313,3.7308,3.9774,9.6078,9.5026,2.8367,3.263,2.5604,2.4469,1.8432,2.183,8.9266,11.3727,2.2418,2.3991,2.2952,2.2493,10.7321,11.3597,1.7489,1.8782,1.0567,1.1133,12.0086,13.9965,5.0842,5.2669,7.7913,7.382,4.0704,3.7136,9.4464,10.1601,6.8552,6.8612,6.8298,7.2249,3.1547,3.6967,1.6442,1.8083,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd229,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd230,70,70,F,1.0932,2.2425,0.38859,0.38063,0.90904,0.88298,14.8189,2.7956,2.4744,40.8755,42.4788,12.1234,12.4512,179.8113,181.3242,1.2455,3.598,3.3827,0.42204,0.36448,11.1323,12.3222,1.2453,1.2098,2.8927,3.0905,6.4092,6.5655,3.674,3.8679,0.07738,4.0109,1.9369,2.2,0.35284,0.36524,3.0348,3.6164,3.8813,3.7464,1.4998,1.3265,8.3539,8.4172,2.9551,2.7953,2.7604,3.0994,4.4789,3.9864,1.6748,1.6232,1.7472,1.9383,3.319,3.1772,6.8021,6.8122,1.8028,1.7789,5.5892,5.9188,10.6744,10.1922,7.8148,6.6418,2.0023,2.1102,3.881,4.0453,1.4273,1.4588,14.0834,13.927,4.4501,5.2284,3.5136,3.6539,1.4516,0.98964,3.1132,2.5682,6.5291,6.2187,13.0276,11.7806,2.4359,3.1963,3.9002,3.938,3.2342,3.2572,1.2752,1.3506,3.4211,3.7649,9.1097,9.1856,2.9635,3.1722,2.0266,2.1204,1.4645,1.7651,9.7397,10.124,2.2277,2.353,1.7033,2.0754,11.246,11.7583,1.4708,1.5971,1.0038,1.0201,14.2012,14.5737,4.9108,4.9642,6.4474,7.5452,4.2512,3.4355,8.7626,10.575,6.0969,5.9425,6.2058,6.7205,3.2024,3.3764,1.2863,1.3844,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd231,67,67,M,2.324,3.4207,0.38883,0.40797,0.90347,0.82955,20.7649,2.8857,2.6392,46.4131,46.3326,14.9431,15.3178,255.5603,252.8184,1.9387,3.4705,3.1416,0.83194,0.73717,19.8549,24.3171,1.7571,1.7879,3.9512,3.9557,7.9992,8.6603,5.2238,5.4181,0.08937,4.8017,2.1832,2.6349,0.38748,0.37882,4.5569,5.0439,4.0464,4.5632,2.0285,1.6403,10.944,10.4591,3.3893,3.0459,4.0902,4.0826,4.7485,4.5272,1.8805,1.7489,2.1043,2.107,4.0324,3.716,7.7757,8.0385,1.9881,2.1666,8.2003,6.8015,12.5964,12.3279,8.3185,7.7564,2.6087,2.5033,5.0524,5.1775,1.7934,1.8106,19.129,19.4124,6.2659,6.2414,4.0791,4.4401,1.2187,1.1741,2.5524,2.6676,8.2489,7.0902,15.0737,13.9405,2.9397,3.5094,4.3358,4.5838,3.6501,3.324,1.8308,1.6557,4.4756,4.877,11.6043,11.7447,3.1658,3.2579,2.5473,2.6329,2.3931,2.2933,10.9354,12.8486,2.3984,2.6542,2.3015,2.6109,12.1602,13.2127,1.9788,1.9472,1.255,1.296,14.4163,14.4419,5.5549,5.6492,8.5548,10.0076,4.3743,3.7481,13.3909,11.3395,8.4401,8.1252,8.4608,8.3456,4.1771,4.2387,1.5917,1.7641,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd232,,,F,1.7082,1.8993,0.37168,0.3701,0.91709,0.93247,18.2717,2.8077,2.3543,46.231,45.8795,14.0054,14.0666,225.4359,218.9022,1.4226,3.5816,3.1706,0.9219,0.65957,16.123,20.6057,1.5324,1.5431,3.4135,3.4552,6.8393,7.1507,4.5814,4.6462,0.07652,4.8149,2.4087,2.4811,0.37894,0.40256,3.9954,4.5432,3.9139,3.9405,1.7432,1.6388,10.0996,8.8204,3.3453,3.0047,3.6876,4.1096,4.5468,4.4238,1.8133,1.7702,1.7941,1.841,3.5073,3.359,7.488,7.1407,1.9001,2.0747,6.6074,6.1703,11.9546,11.3263,8.111,7.2431,2.279,2.5254,4.6419,4.6044,1.688,1.7671,17.552,17.0816,5.1333,6.4312,3.7203,4.0138,1.4007,0.87729,3.1735,2.0853,7.7678,6.8728,14.5187,13.0691,2.959,3.6599,4.1956,4.214,3.5385,2.8476,1.4031,1.4772,4.6508,5.319,12.5322,11.9956,3.2514,3.3151,2.2169,2.2769,1.9607,2.336,9.2486,10.2569,2.2252,2.43,2.1162,2.2904,10.969,11.555,1.8172,2.1903,1.185,1.2404,13.752,13.1233,5.225,5.033,7.8348,8.7812,4.3171,4.0429,9.3057,9.8356,6.9127,7.0583,8.6274,8.3414,3.2376,3.3501,1.4788,1.5839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd233,78,78,F,1.651,1.9967,0.37607,0.39083,0.97399,0.93247,18.3099,2.7088,2.7962,44.7195,43.5553,15.0423,15.3354,224.9161,220.7889,1.2296,3.5816,3.3564,0.76519,0.54888,11.8847,17.4652,1.5958,1.5431,3.3313,2.9568,6.8393,7.2343,4.5327,4.6688,0.07896,4.3915,2.1421,2.2317,0.38394,0.38339,3.8191,4.5862,4.1578,4.2454,1.739,1.5872,10.0626,8.5753,3.036,2.5886,3.9693,3.8403,4.3766,3.7098,1.7744,1.7002,2.1221,1.9861,3.3516,3.1771,7.2848,7.1117,2.1574,2.0934,6.6586,6.7709,12.0599,10.95,7.3675,6.4034,2.2511,2.3889,4.7222,4.4251,1.7633,1.8793,18.0963,18.8355,5.0702,7.0699,3.7824,4.0138,0.91562,1.2595,2.1741,2.9477,7.4551,6.4523,14.7521,13.2366,2.6868,3.0981,3.9794,3.9102,3.0623,2.9777,1.5513,1.6004,3.8339,4.0115,10.113,10.457,3.0069,3.262,2.2741,2.2288,1.9097,2.1322,9.8857,11.5429,2.4463,2.568,1.9059,2.1705,13.0528,14.0706,1.7022,1.9207,1.2053,1.2195,13.8458,12.9226,5.7568,5.8128,7.8821,7.8033,3.9385,3.7756,10.4796,11.4096,6.8121,7.3223,7.83,7.2519,3.5694,4.0113,1.4588,1.7277,,30,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd234,65,65,F,1.2305,1.3598,0.30452,0.31776,0.53111,0.50656,13.0928,2.5523,2.1486,40.7245,40.055,10.0802,9.5908,160.604,158.4892,1.1402,2.6136,2.3865,0.66316,0.83641,14.4921,14.8694,1.2848,1.2494,2.9175,2.6506,5.5588,5.2142,4.2635,4.4306,0.07026,4.1212,1.8978,2.1798,0.31313,0.32923,3.2474,3.6304,2.9997,3.3041,1.3256,1.327,8.8051,7.3711,3.0625,3.1377,3.4843,3.5536,4.0344,3.8993,0.98201,1.0787,1.6736,1.6037,3.0341,2.8818,6.1182,5.238,1.5262,1.7072,5.6021,2.918,8.7273,7.6084,6.3517,5.8317,1.5963,2.1102,4.7066,5.0431,1.3868,1.3901,16.2826,15.7424,4.4236,4.9286,2.842,3.3619,0.86488,1.1393,1.8683,2.6202,6.2184,5.5221,11.1318,7.3624,2.5412,2.4894,3.3581,3.7054,3.2342,2.4669,1.031,1.1944,3.6173,3.8951,8.3795,9.7919,2.3909,2.5425,2.0205,1.9671,2.1352,2.2148,7.6447,9.1617,1.8589,1.8669,1.9633,1.8074,9.4524,10.5862,1.7054,1.635,0.98978,1.0246,12.8439,13.6217,3.9413,3.7126,6.6221,7.5438,3.4317,2.5859,9.3038,10.605,6.3524,5.4002,5.8082,5.7466,2.9813,3.3439,1.4047,1.3848,,20,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd235,57,57,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd236,71,71,F,1.169,1.4205,0.40629,0.45025,0.88136,0.96487,17.7466,3.0766,2.9921,45.1156,44.7829,14.2743,15.2682,207.7413,201.4517,1.0778,3.5761,3.3166,0.53597,0.66107,9.1226,11.297,1.6042,1.6286,4.0015,3.898,6.7091,6.6851,4.6308,5.0208,0.08487,4.9096,2.2046,2.7039,0.41552,0.42929,4.8787,5.3592,4.4752,4.8321,2.1383,1.7921,10.2283,9.7493,3.6497,3.6197,4.5117,4.1455,5.0832,5.0758,1.6807,1.8282,1.9532,2.3372,4.355,3.8123,7.775,7.2309,2.2004,2.443,7.0621,7.2798,12.4866,11.9568,9.0223,7.4205,2.6347,2.5848,5.1262,4.7385,2.0461,2.1414,21.4648,21.696,5.532,6.4609,3.9951,4.2465,1.1992,1.1753,2.9391,2.7667,8.9508,8.2845,16.2557,15.6467,3.423,3.7564,4.7616,4.7157,3.5302,3.58,1.8216,1.6584,4.4471,4.9742,11.9382,11.2253,3.1552,3.3151,2.5034,2.6615,2.8213,2.7727,10.9465,12.6483,2.7026,2.5913,2.0151,2.2296,13.9024,15.5381,2.3442,2.3887,1.5046,1.5581,19.5882,17.7633,5.7327,6.0978,8.488,9.6666,4.285,3.8769,10.5549,10.7001,8.4079,8.3261,7.5687,7.5491,4.171,4.4132,1.5661,1.7766,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd237,75,75,M,1.9908,3.1605,0.32875,0.42615,0.64944,0.70985,18.3977,2.5612,2.7291,44.3483,44.0482,15.0423,14.5574,236.8481,234.481,1.5639,3.0664,3.135,0.91749,0.86062,22.9569,26.8131,1.5877,1.5516,3.1749,3.5292,6.9816,6.9551,4.5649,4.8226,0.07334,4.1392,2.0322,2.4067,0.40804,0.39516,3.9011,4.591,4.0728,4.6331,1.6484,1.4906,9.61,9.6711,3.41,2.5846,3.7605,4.281,4.62,3.9512,1.2855,1.4147,1.9975,2.1016,3.9306,3.4063,6.6787,6.8859,2.2614,2.2618,5.9047,5.3991,11.3405,10.2401,7.3975,6.935,2.1145,2.162,4.2555,4.0897,1.8483,1.8683,18.6709,18.56,5.129,5.1925,3.6809,3.9485,1.0741,1.3387,2.3305,2.8206,7.1215,6.7388,12.9283,13.1751,2.7949,2.7213,3.9653,3.8862,3.407,3.4282,1.4587,1.4428,3.8419,4.0115,10.1712,10.2797,2.5366,2.5995,2.4661,2.5536,2.4415,2.5998,9.0742,10.8421,2.0801,2.4391,2.1189,2.4907,11.3933,12.6388,1.8124,1.9123,1.2912,1.2561,13.9708,14.0776,5.0381,5.3636,7.504,9.726,4.2825,3.4698,10.6873,9.1754,7.5884,6.856,6.7848,6.8749,3.4516,4.103,1.5697,1.699,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd238,66,66,F,0.98083,2.0565,0.38968,0.4778,0.84643,0.87536,19.2653,2.9099,2.9517,48.3012,49.2031,15.0782,16.0108,259.9497,245.8349,1.6012,3.2868,3.0832,0.50498,0.44135,15.7665,15.766,1.6471,1.5566,3.9886,4.1041,7.9992,8.0975,4.7485,5.1317,0.08499,4.7821,2.3053,2.987,0.38938,0.36376,4.1159,4.7909,3.9866,4.2762,1.7611,1.6265,10.6284,9.3932,3.2255,3.5413,4.0641,4.2007,4.8252,4.3597,1.7166,1.6786,2.0217,2.0523,3.9194,3.7492,7.2855,7.7366,2.0996,2.1027,7.4006,6.6613,10.9388,11.3971,8.1373,6.7788,2.0161,2.2737,4.6232,4.6051,1.7934,1.931,17.1763,18.6286,5.6932,6.9686,3.6719,4.3626,0.88085,0.98826,2.344,2.3509,8.0842,7.1113,14.3784,14.7594,3.3716,3.7458,4.3587,4.03,3.9737,3.5668,1.4205,1.4118,3.9776,4.6305,10.4929,10.9152,3.054,3.2431,2.2314,2.3585,2.1452,2.1484,9.3621,10.1492,2.3016,2.3246,2.1845,2.4219,11.1296,12.7845,1.8905,1.8478,1.1613,1.1288,14.4163,13.3202,5.0383,5.033,8.3038,9.4144,4.558,3.4209,10.0633,11.0679,7.4507,7.3212,7.3535,7.2036,3.3051,3.5219,1.6507,1.6296,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd239,68,68,F,1.3381,1.357,0.38364,0.43307,0.82696,0.84425,15.199,3.1106,2.9517,39.3487,37.8262,11.3847,11.7876,206.115,208.8861,1.6168,3.1369,3.0423,0.68917,0.83932,18.5788,17.7235,1.5157,1.4293,3.3584,3.4931,5.7788,6.17,4.0234,4.2791,0.07385,3.4571,1.9967,2.412,0.40259,0.395,4.0983,5.0062,3.811,3.9407,1.6824,1.4198,9.4246,8.2935,2.6463,2.5467,3.8309,4.2973,4.7451,4.0075,1.676,1.5896,1.8952,1.8734,3.5513,3.177,7.2336,6.7978,1.9793,1.948,6.071,5.8456,11.1808,10.2239,6.664,6.6743,2.1975,2.0384,4.7426,4.9916,1.6304,1.7096,17.3195,17.1496,5.1387,5.3515,3.843,3.7272,0.81059,0.93506,2.1051,2.3054,7.7634,6.5107,14.3263,11.7806,2.7901,3.3539,3.6301,3.809,3.179,2.8302,1.4161,1.2523,4.0842,4.2906,10.8726,10.6018,2.8322,3.2521,2.1552,2.17,2.1442,2.3381,8.8901,9.8186,2.4463,2.1929,2.0475,2.273,11.6113,11.9425,1.7268,2.002,1.2017,1.2128,13.2221,13.2053,5.0162,4.9208,8.0575,9.5454,3.9158,3.0737,9.3569,9.1723,6.7893,6.2011,7.5884,7.1295,3.3669,3.2269,1.3584,1.4851,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd240,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd241,60,60,M,1.6574,1.6088,0.41218,0.47384,0.86381,0.95116,17.7593,3.5829,3.292,47.8771,47.8739,13.857,14.0371,231.4533,222.1084,1.2497,3.8127,3.4711,0.64657,0.52111,11.703,13.599,1.5318,1.4938,3.6951,3.827,7.1738,6.8078,4.6513,4.9328,0.07571,4.4305,2.2438,2.6607,0.39005,0.39072,4.7629,4.9895,3.8856,3.8791,2.2097,1.7011,10.4015,10.0478,3.2468,3.2874,4.055,4.248,4.8925,4.7009,1.7915,1.993,1.9638,1.8366,4.3402,4.5852,7.6859,7.7943,3.6083,2.687,7.0274,6.3392,12.4007,12.02,8.3993,7.61,2.7088,2.4943,5.4889,5.5615,3.0691,2.1793,23.3061,23.3141,5.2143,6.6154,4.3394,4.5688,1.2879,1.3141,2.8271,2.8053,11.2819,9.517,15.5315,15.2108,3.5521,4.4609,4.3781,4.5183,4.1233,3.5979,1.8308,1.5149,4.044,4.089,11.0205,11.3723,3.0451,3.4223,2.1346,2.3505,2.3555,2.5135,11.533,12.4476,2.3298,2.5482,1.9056,2.2955,13.2394,14.6171,2.0535,2.3804,1.3847,1.4805,16.9133,16.1344,5.7831,5.9413,8.8443,10.1914,5.1463,4.0538,10.9754,9.5201,7.2645,8.8713,7.83,7.5491,3.6955,4.0978,1.4907,1.6622,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd242,68,68,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd243,70,70,F,1.814,2.1868,0.33461,0.37163,0.90213,0.87834,15.9099,2.4421,2.5169,37.5752,37.811,12.8538,12.4571,214.38,213.9673,2.2694,3.5536,3.4216,1.0738,1.2492,23.9601,30.2228,1.6417,1.5737,3.2159,3.3873,7.2992,7.3533,4.1214,4.319,0.05934,3.9853,1.9258,2.0377,0.35381,0.36204,4.2224,4.228,4.0996,4.1827,1.5401,1.2674,9.7966,8.9214,2.9077,2.5994,4.542,4.3733,4.7321,3.9091,1.7212,1.6332,2.0991,1.8331,3.3818,3.0894,7.3887,7.0611,1.9012,2.0807,5.5486,4.5079,11.1909,10.6209,8.2946,8.2792,1.9334,2.0203,4.693,4.5362,1.6125,1.4705,18.9317,18.6128,3.884,5.159,3.5657,3.717,0.94454,0.94417,2.4824,2.3545,7.2823,6.1492,13.0026,13.8452,2.4852,2.7058,3.9501,3.8738,3.4637,3.4294,1.3481,1.3295,3.5844,3.9134,10.1944,9.4536,3.2315,3.2922,2.6966,2.6301,2.3612,2.4359,11.3472,11.849,2.1781,2.3531,2.2051,2.3843,12.3752,12.5735,1.9579,2.1074,1.0543,1.0159,13.9778,14.0776,4.9902,5.2913,8.2692,9.085,3.7939,3.2115,9.6993,9.0894,7.1015,6.7864,7.3535,7.7004,3.2904,3.3353,1.8464,1.659,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd244,77,77,M,2.2506,2.7068,0.31295,0.35423,0.68649,0.76688,17.5478,2.5466,2.5252,47.9737,47.8809,13.8416,14.0666,208.9435,207.1667,1.9063,2.7718,2.5432,0.96452,0.97989,22.1314,27.0618,1.5922,1.4265,3.3018,3.2992,6.4129,6.4038,4.4807,4.7448,0.09914,4.7843,2.1661,2.5664,0.33009,0.33719,3.7635,4.1858,3.8023,4.0479,1.6852,1.3311,9.5403,7.6134,3.1261,3.0593,3.5675,3.9707,4.3213,4.1712,1.4199,1.4425,1.7346,1.7849,3.3536,3.3368,6.6888,6.9801,1.78,1.977,4.1811,4.9819,9.5823,10.0065,8.0981,7.0238,1.9676,2.117,4.3988,4.3331,1.5496,1.6175,18.9317,18.5232,4.1514,5.1165,3.5422,3.5511,0.8248,1.0072,2.678,2.4201,6.7768,6.2902,11.9513,12.7688,2.7573,2.8417,4.0742,4.0452,2.7727,2.889,1.3553,1.2695,3.6395,3.8467,9.6636,9.4371,2.6261,2.7835,2.0896,2.1462,2.3633,1.9164,10.741,11.3546,1.7935,2.1999,1.9403,2.1192,12.189,10.9797,1.7782,1.6999,1.1427,1.1368,13.015,13.2355,5.0937,5.2913,6.9308,7.0634,4.6808,3.125,9.3173,8.8561,7.0388,6.4179,6.5782,6.5726,2.8088,3.1907,1.2979,1.3832,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd245,,,F,1.3797,1.9878,0.32621,0.34666,0.77011,0.77586,15.9805,2.6216,2.626,48.774,47.0212,13.5126,12.9644,185.9887,190.6344,1.3542,3.1792,2.9131,0.39434,0.41529,13.5037,12.8542,1.4021,1.4396,3.1172,3.3626,5.9457,6.3183,4.1085,4.3026,0.08136,4.8838,2.3313,2.428,0.32816,0.34086,3.7014,4.1523,3.7458,3.9462,1.5847,1.4543,9.6351,8.5365,2.8047,2.8543,3.8625,4.156,4.3885,4.0367,1.5072,1.4891,1.7477,1.9075,3.5843,3.252,7.1609,6.9337,1.8574,1.7921,6.3087,6.3134,11.0529,10.5925,6.9075,6.6139,1.8405,2.259,4.6803,4.4796,1.6135,1.5606,17.6547,17.7781,5.2675,6.2003,3.2559,3.6691,0.98225,1.0087,2.2491,2.3329,6.932,6.5881,12.9693,12.9082,2.6698,2.8725,3.6185,3.992,2.755,2.8433,1.3248,1.4375,3.4763,3.9003,8.9099,8.986,2.6424,2.8218,2.0266,1.9385,2.1558,2.222,9.5254,11.4371,2.0819,2.3643,1.8823,2.0997,11.9216,12.0145,1.9087,1.9016,1.054,1.0628,13.6319,12.446,4.8672,5.1563,6.8248,9.011,3.7716,3.0195,9.2834,9.7759,7.2331,7.2648,7.636,7.624,2.6007,3.3509,1.3272,1.543,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd246,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd247,,,M,1.0872,1.759,0.47365,0.54746,1.0307,0.99715,23.9017,3.4755,3.3213,61.7421,54.2968,17.7021,19.2974,262.7638,255.3596,1.1103,4.0272,3.6808,0.8319,0.687,8.2404,7.4895,1.6958,1.6838,3.8314,3.8729,8.2756,9.5428,5.0063,5.3616,0.08406,5.1861,2.4037,3.2649,0.42072,0.43646,4.8039,4.9132,4.3102,4.4056,1.9587,1.8698,10.7409,9.3013,3.5269,3.1407,4.3249,4.6128,4.9765,4.9048,2.0136,2.4015,2.2834,2.092,3.9362,3.6086,8.6655,7.9513,2.37,2.281,6.5161,6.5946,13.3156,13.5711,9.245,8.5245,2.5593,2.7542,5.4808,5.7041,2.1551,2.0161,19.6171,21.0272,5.0552,6.3878,4.5626,5.6412,1.1923,1.3617,2.9956,2.8748,9.0934,7.9071,16.5453,17.4934,3.1577,3.2269,5.0772,4.9305,4.4008,3.6874,1.7193,1.597,4.5318,5.0554,12.5874,12.6692,3.4242,3.3589,2.5034,2.5747,2.5655,2.9455,12.0861,11.9236,2.5784,2.8759,2.3986,2.7252,15.096,13.0547,1.9853,2.5071,1.3146,1.3258,15.8672,15.6956,6.5039,6.1866,8.8275,10.9412,4.3969,3.3367,10.9754,12.624,9.0556,8.7673,9.5,9.5572,4.0728,4.4044,1.6556,1.9358,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd248,70,70,M,2.7489,2.6286,0.31464,0.30698,0.68649,0.70051,17.6069,2.6088,2.3782,48.3411,48.7275,15.2712,15.21,193.0484,194.9133,2.5576,2.8547,2.6429,2.333,2.2971,46.5001,32.0855,1.5922,1.4785,3.0753,3.0835,5.7264,6.3151,4.3958,4.4993,0.08197,4.7947,2.4587,2.5118,0.31593,0.33346,3.4889,3.7698,3.3259,3.5139,1.4292,1.3156,8.1014,8.3197,3.0901,2.9704,3.1416,3.3077,4.2131,3.5719,1.1853,1.3976,1.566,1.5965,3.1487,2.9832,5.7579,5.8912,1.5746,1.7386,5.3701,4.9142,8.2296,7.9189,7.3984,6.5803,1.8575,2.0723,3.5392,4.1221,1.3578,1.4864,14.8746,15.0329,4.5401,4.8218,3.0518,3.3495,0.86716,0.99614,2.1727,2.0936,6.1495,5.498,9.9196,9.5015,3.0861,3.1964,3.6815,3.5787,2.7216,2.6453,1.2743,1.1638,3.2125,3.4752,7.7055,7.6672,2.4819,2.8097,1.9343,1.916,1.6795,1.6901,8.1216,8.6894,2.0102,2.0244,1.7139,1.8051,9.8279,10.7286,1.5177,1.4484,0.97823,1.016,12.8832,12.8727,4.6263,4.5387,6.2696,7.3065,4.3206,3.0282,8.1262,0.43408,5.4796,5.5943,6.3894,6.3317,2.9562,3.0175,1.2254,1.1486,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd249,67,67,M,1.1381,2.1299,0.4192,0.47015,1.056,1.0282,19.511,2.7794,2.818,54.8997,56.9775,18.9067,18.4645,300.9244,294.1752,1.1773,4.0327,3.9457,0.58957,0.47953,8.2125,9.7437,2.0607,2.0654,4.8227,4.7899,8.509,9.0064,4.9821,5.1893,0.0839,6.2257,2.6203,3.3127,0.45912,0.46999,4.8283,5.3957,5.1362,5.3807,1.9744,1.6462,12.1998,11.3392,3.7472,3.6397,4.9359,5.2749,5.2677,4.6551,2.0902,2.055,2.4437,2.6153,3.757,4.1468,8.6418,8.5571,2.3816,2.4946,6.8803,6.8556,12.7428,13.2013,9.3788,9.0367,2.4049,2.6654,5.1739,5.7041,2.08,2.1063,21.3816,20.5668,6.0089,7.804,4.4177,4.5667,1.4549,1.2007,3.1735,3.2326,9.1937,7.9306,16.2184,15.8939,2.789,3.2581,4.8151,4.8561,3.968,4.5503,1.8635,1.7352,4.6463,5.0463,12.3998,11.2148,3.1754,3.5296,3.0945,2.9309,3.0347,2.8888,12.8155,13.663,2.5064,2.9618,2.5633,3.0548,15.9763,13.5612,2.3534,2.4649,1.4588,1.4707,15.5987,16.4776,5.4748,5.9984,9.415,10.4137,4.2425,3.3367,12.6491,11.7601,8.7938,8.5007,9.7771,10.4928,4.1574,4.1858,1.9688,1.9406,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd250,77,77,F,1.9954,2.6574,0.3152,0.30522,0.62861,0.6567,14.5161,2.7265,2.4451,41.4208,40.6259,11.9444,12.0896,160.9065,156.4949,1.8061,2.5942,2.6209,1.0608,1.7636,19.8248,26.1031,1.3705,1.3726,2.903,3.1734,5.8237,6.2038,3.9091,4.2195,0.07342,4.1373,2.0225,2.4001,0.30157,0.31632,3.2422,3.6379,3.0838,3.2021,1.6024,1.2892,7.1019,7.5739,3.0008,2.9306,3.5019,3.5536,4.1849,3.8993,1.2605,1.3117,1.6873,1.7516,3.1786,2.8575,6.2374,6.1889,1.7864,1.8086,5.3178,5.398,9.2611,9.4973,7.4134,6.9013,1.9458,2.067,3.4091,4.224,1.4493,1.3901,15.6573,14.3917,4.5609,4.638,3.4751,3.4232,0,0.80674,1.8906,2.0722,6.2184,5.6333,10.7111,10.794,2.6741,2.9729,3.8961,3.817,2.8824,2.8646,1.1772,1.2633,3.0563,3.4659,8.3131,6.5694,2.5732,2.7595,1.6208,1.6036,2.1279,2.0968,9.199,9.4049,2.0081,2.1226,1.236,1.9267,10.304,10.7323,1.8383,1.8326,0.98169,0.98277,11.7757,12.1336,4.0735,4.4567,6.2754,7.3065,3.8065,2.6126,9.1446,10.0019,6.3164,6.5275,6.2058,6.197,3.0771,2.9441,1.194,1.288,,9,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd251,84,84,M,2.4324,1.977,0.40488,0.42069,0.90876,0.844,18.92,3.4256,3.415,49.7958,50.3468,14.1435,14.4933,200.6661,192.0511,1.967,3.7959,3.1016,0.6937,0.9025,21.5353,24.4308,1.6221,1.6516,3.958,4.2565,6.5958,6.9055,4.7561,5.0564,0.08748,5.3158,2.3151,2.6607,0.39973,0.39996,4.5528,4.8983,4.3171,4.4386,1.9582,1.612,10.3955,8.7108,3.936,3.8162,4.4781,5.2039,4.8737,4.3545,1.7652,1.6762,2.088,2.1769,4.1246,3.5221,8.1492,8.0286,2.1539,2.0272,7.3665,6.4182,13.085,12.533,9.0811,7.6496,2.5327,2.4351,5.381,5.3529,1.8624,1.8724,20.216,19.8398,5.8715,5.6511,3.9158,3.8288,0.99114,1.2966,2.2511,2.7892,8.0025,8.0353,14.6469,14.356,3.4912,3.3266,4.2481,4.2296,3.6501,3.5668,1.6756,1.7149,4.2871,4.7769,10.9604,10.8883,3.1019,3.2606,2.7182,2.7492,2.5501,2.6774,10.7252,13.0556,2.4833,2.4864,2.1911,2.5326,12.4819,12.7961,2.0333,2.1193,1.2428,1.2837,16.2564,14.8241,4.9354,5.3446,8.2433,8.7963,4.9498,3.4548,10.9218,11.024,7.0448,7.245,8.9394,9.0002,3.5375,4.0353,1.7409,1.9453,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd252,68,68,F,0.63477,1.2525,0.35506,0.39595,0.87013,0.88549,16.0576,2.8103,2.385,40.2222,43.5704,12.6382,13.4068,214.4218,213.0231,0.88663,3.1976,2.7706,0.52741,0.3713,4.3307,5.9407,1.4165,1.3426,3.3505,3.2931,6.0299,6.5764,3.916,4.2351,0.05802,4.5469,2.1777,2.2385,0.36052,0.37558,3.9314,4.4443,4.174,3.9214,1.7569,1.5173,10.2154,9.1174,2.8211,2.5994,3.7412,3.9781,4.2675,3.7098,1.6748,1.5507,1.9472,1.8215,3.4663,3.0385,7.7436,7.6299,1.9463,1.9992,6.628,6.1703,11.5909,11.5205,7.2877,6.865,2.2909,2.3732,4.6062,4.8029,1.6483,1.7134,20.6697,20.5998,5.0702,5.9096,3.7041,3.847,0.89908,1.0709,2.212,2.5861,7.5197,6.5001,14.2378,13.9282,2.6699,3.0222,4.3247,4.03,3.1835,3.2974,1.5267,1.4802,3.6601,3.8112,9.1509,9.2855,2.8314,3.0087,2.2999,2.3915,2.0855,2.1001,9.7231,10.3831,2.3375,2.5155,2.0533,2.3251,10.9804,12.4411,1.7839,1.8025,1.048,1.1418,13.117,13.6614,4.6765,4.6651,7.822,8.6432,3.9771,3.4603,9.5839,9.7743,7.2631,7.3126,7.3208,7.775,3.4643,3.9856,1.4878,1.4731,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd253,,,M,1.7274,3.1062,0.44948,0.49714,0.82482,0.91774,20.0813,3.2801,3.251,51.6551,52.0429,16.4498,16.2637,256.3853,252.8184,1.8546,3.5434,3.5191,1.0926,0.80833,24.1001,21.7437,1.911,1.8386,3.5031,3.7195,7.1072,7.7363,5.2788,5.4606,0.07687,5.1347,2.4395,3.1022,0.38702,0.4173,4.5916,5.0133,3.9549,4.2539,1.6872,1.5999,9.7824,9.8993,3.617,3.9202,3.8354,4.261,4.8444,4.5748,1.6065,1.6861,2.0182,2.2199,3.801,3.7527,7.9794,7.8381,2.1982,1.9651,6.9214,6.6676,11.9752,11.0984,9.5438,8.1808,2.1702,2.3113,4.3896,4.9895,1.9747,1.917,20.3927,18.8358,5.0409,6.6693,4.2,3.9938,1.3779,1.1164,3.1735,3.4183,8.2049,7.864,14.54,13.7679,3.0004,3.5934,4.6508,4.8561,4.1233,3.4357,1.6373,1.5157,4.2989,5.0554,10.8608,11.2111,3.1953,3.2545,2.1909,2.2443,2.3324,2.4722,10.305,11.3632,2.3369,2.4625,2.0261,2.3045,12.4315,11.9276,1.9579,2.2641,1.2255,1.2903,16.4028,15.864,5.9055,6.0819,7.9138,8.3352,4.0864,3.879,9.187,9.4013,6.9535,6.5889,7.6852,7.4169,4.0397,4.28,1.5212,1.8382,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd254,67,67,M,1.0532,1.7796,0.3977,0.44488,0.93717,0.94418,19.9378,2.9065,2.9504,48.6657,48.3552,16.8057,16.4672,255.4177,253.8471,0.91896,3.3797,3.1989,0.42881,0.46701,10.8471,11.9061,1.7259,1.7342,3.8073,4.0496,7.8667,8.3308,4.8753,5.1663,0.0895,4.7606,2.405,2.8787,0.42028,0.40079,4.491,5.2696,4.2669,4.6529,1.9376,1.8069,11.5141,10.7841,3.1363,2.787,4.1476,4.4735,5.2542,4.9048,1.7703,1.7971,2.0501,2.1657,4.0094,3.7443,7.7769,7.938,2.1663,2.1507,6.8896,7.3628,11.4399,12.1345,8.2946,7.2409,2.6412,2.8087,4.9316,5.1166,1.9362,1.9251,19.5598,20.4062,5.861,6.283,4.23,4.365,1.2452,1.2561,2.5709,2.7659,8.5314,7.7965,14.1437,15.5411,3.7035,4.0155,4.4497,4.2128,3.5722,3.5961,1.8216,1.7236,4.49,4.9012,12.1757,11.6244,3.144,3.4725,2.3087,2.393,2.3324,2.1472,11.1595,13.663,2.2847,2.6542,1.9393,2.2296,11.8669,12.7485,2.1539,1.6366,1.1057,1.2469,16.4027,16.3673,5.7327,5.6455,9.3329,10.3903,5.1129,4.3046,11.6259,11.7028,8.7756,7.8241,8.5115,8.4033,3.8485,4.0978,1.4291,1.2157,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd255,68,68,M,2.3108,3.3485,0.3314,0.42607,0.89501,0.87128,13.3723,2.5394,2.7291,36.4172,36.5567,13.6038,13.2666,206.6841,199.762,2.1398,3.5952,3.3209,1.3331,0.92258,24.6327,32.5525,1.402,1.3426,3.1251,3.4931,6.1079,6.2847,4.1214,4.4513,0.06667,4.3839,2.0224,1.7593,0.3794,0.388,4.3437,4.8193,3.8127,4.076,1.047,1.4033,10.5865,9.2691,3.5365,3.2791,4.0779,4.1159,4.8708,4.7009,1.7733,1.6599,1.8302,1.9267,3.5009,3.2678,7.6692,6.9574,1.9296,2.012,7.429,6.7709,11.4524,11.1615,8.5381,7.0703,1.7375,2.0418,4.2543,4.7902,1.5256,1.5482,17.0585,17.3223,5.3864,5.6858,3.1968,3.9017,1.2881,0.91745,2.7454,2.3498,7.7634,6.8858,14.7813,13.7692,3.2217,2.9863,4.0605,4.4513,2.857,3.3705,1.4666,1.3122,4.1452,4.1885,10.1034,9.8269,3.2315,3.3865,2.2363,2.1047,2.0761,2.3633,9.7278,11.4371,1.9127,2.2394,1.9457,2.1104,12.0222,12.6192,1.7216,1.8994,1.1412,1.1288,13.278,13.3514,5.1473,5.2349,7.822,8.6945,4.9871,3.433,10.0806,10.1977,6.8655,7.0219,7.6691,6.5938,3.1664,3.7665,1.4241,1.4548,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd256,62,62,M,1.6975,1.8801,0.39299,0.42454,0.84292,0.93165,16.9774,2.7826,2.7179,43.4399,43.6504,13.3741,13.6731,201.9419,202.0467,1.8529,3.328,3.1305,0.94962,0.72341,22.5276,27.473,1.4437,1.393,3.2836,3.3801,6.6341,6.6353,4.2836,4.4911,0.08676,4.9875,2.2166,2.6553,0.42509,0.4197,3.9769,4.591,3.9727,3.9407,1.5749,1.4033,9.4278,8.2935,3.1718,3.274,3.9223,4.6635,4.214,4.0143,1.4602,1.7455,2.1351,1.9804,3.3057,3.0312,6.8294,7.1315,1.9506,1.991,6.1452,6.0304,11.0173,10.6209,8.1911,7.3711,1.9712,2.0016,4.013,4.5407,1.5256,1.6169,17.1221,17.2818,4.6453,5.0946,3.6011,3.6606,0.91864,0.99614,2.2491,2.2289,7.142,6.6809,13.7782,12.6961,2.8584,3.7925,3.9425,4.1883,3.356,3.0674,1.4236,1.313,3.7308,4.2412,10.2821,10.3125,3.145,3.3515,2.3854,2.1874,2.3381,2.5824,9.2992,10.5975,1.9902,2.1009,1.89,2.085,10.9745,12.0145,1.9245,2.1929,1.1412,1.192,14.5743,13.9615,4.9428,4.8014,7.6196,8.5936,3.7511,3.6446,9.6159,9.647,6.6418,7.2459,7.424,7.869,3.3747,3.533,1.5011,1.709,,29,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd257,63,63,F,1.3169,1.5863,0.32915,0.3078,0.90418,0.85531,16.6399,2.5579,2.1002,44.7662,43.3222,15.7526,15.4527,212.1288,208.929,0.9599,3.3942,3.1532,0.52741,0.66927,8.2404,11.2279,1.4574,1.4886,3.2129,3.1348,6.9927,7.053,4.2425,4.425,0.06458,4.6035,2.0725,2.5305,0.34664,0.33271,3.7942,4.2709,3.5918,3.8591,1.7298,1.4917,9.7765,8.6035,3.0752,3.0106,3.7866,3.9018,5.232,4.6911,1.7055,1.6595,1.8156,1.9199,3.524,3.0266,7.7755,6.8406,1.927,1.809,6.0577,5.7301,11.2242,10.8075,6.9015,6.5991,2.0948,2.2419,4.5714,4.5634,1.8392,1.638,16.2697,17.3371,4.3612,5.047,3.8306,3.5808,1.0106,1.1154,2.4732,2.8489,7.3543,6.0788,13.534,13.8302,2.5533,3.391,3.6454,3.8381,3.1751,3.322,1.5225,1.4884,3.4587,4.066,10.0705,9.983,2.9635,3.145,2.2006,2.1862,2.31,2.6695,10.2815,10.9914,2.2909,2.1968,1.9023,2.0971,11.9216,12.0505,1.7599,2.1825,1.0959,1.0907,13.5098,13.631,5.0149,4.9362,8.0252,8.4831,4.1039,3.6107,10.6544,10.3786,7.0859,6.7122,7.6637,7.9148,3.3421,3.6655,1.2969,1.4071,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd258,71,71,F,1.0318,1.1991,0.43242,0.45319,1.0815,1.3139,22.1157,3.5906,3.1242,51.3226,52.2059,19.0103,18.8096,317.1721,293.5499,1.1534,3.8622,3.7395,0.55657,0.40026,11.4171,14.178,2.2761,2.3875,3.9504,4.111,7.9898,8.1584,6.6725,6.1972,0.08319,5.1861,2.4043,2.9156,0.42315,0.44196,4.262,5.0318,4.7025,4.9237,2.0372,1.6474,10.1484,9.6673,3.6609,3.6121,4.5488,4.6612,5.2542,5.0647,2.1363,2.0776,2.5755,2.3948,4.0984,3.9985,7.569,7.7524,2.3816,2.4041,6.8896,7.1185,11.8861,11.7343,8.7859,8.1669,2.7488,2.6396,4.4531,4.9895,2.0997,2.1024,20.3927,19.457,5.3816,6.8424,4.6467,4.6903,1.1688,1.1164,2.8466,2.6437,8.9175,7.8075,15.3034,14.5863,3.2091,3.5237,4.9265,4.9123,4.4141,4.0353,1.7555,1.681,4.3129,4.9629,11.7594,11.2292,3.4242,3.7962,2.4912,2.6615,2.8028,2.9574,11.4864,13.0106,2.5064,2.8525,2.3505,2.5133,13.1865,13.6084,2.317,2.4649,1.6682,1.5587,15.6749,16.3306,5.8192,6.0978,9.123,9.547,4.5474,3.6894,9.975,10.6654,7.1791,8.3032,7.8027,7.5491,3.9782,4.4132,1.7496,1.9795,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd259,75,75,M,2.5243,2.6248,0.38142,0.40494,0.81126,0.6773,20.7649,2.6719,2.5116,51.4541,52.0746,17.5979,17.01,252.377,253.2682,1.967,3.3734,3.0505,1.6954,1.3342,26.4693,40.6739,1.718,1.7194,3.867,3.9178,7.9992,8.1564,5.2238,5.504,0.06528,5.521,2.3581,3.0709,0.37608,0.36839,4.2702,4.4582,4.2215,3.9356,1.6813,1.5719,10.3699,9.3302,3.0608,3.1698,4.1378,4.2821,4.3653,4.7357,1.4602,1.3091,2.0993,2.092,3.4718,3.1244,7.5488,7.5253,2.0209,2.0395,5.909,6.9885,12.6919,11.3466,8.238,7.7304,2.1437,2.3376,4.3869,4.4931,1.7018,1.6885,17.0565,18.3395,4.8132,6.6593,3.6362,3.8666,0.95246,0.97539,2.5734,2.6527,7.7032,7.0089,13.9705,13.2507,2.4873,3.6695,4.2749,4.593,3.5751,3.767,1.4234,1.486,3.5558,4.5039,11.9276,11.4018,2.7925,2.7031,2.5509,2.2809,2.3616,2.4738,9.9071,11.9748,2.1409,2.5171,2.2659,2.3017,11.1433,12.0283,1.9259,2.2135,1.1181,1.2324,14.3724,13.1717,5.0951,5.4085,8.0442,8.823,3.3494,3.2927,11.4796,11.024,7.1278,7.4062,7.4701,7.1663,3.4632,3.7579,1.6375,1.7159,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd260,73,73,M,1.7782,1.7113,0.33228,0.35524,0.83571,0.86541,18.057,2.5753,2.5135,45.3326,45.9631,14.3962,14.685,202.9975,194.6723,1.4449,3.276,3.1406,0.45596,0.51393,12.2069,17.6733,1.3961,1.3743,3.2112,3.33,6.889,6.9487,4.3656,4.5506,0.07643,4.061,2.1246,2.3728,0.39667,0.38027,4.4022,5.2078,4.102,4.3837,1.6918,1.3301,10.7424,9.325,2.9195,2.9567,4.3899,4.1455,5.2958,4.8578,1.697,1.7514,2.0832,2.1908,3.5009,3.4425,7.4894,7.2967,2.1665,2.0066,5.909,6.3132,11.4744,11.0916,7.6364,7.2098,2.1928,2.2288,5.0172,5.2192,2.1857,1.8696,17.3195,18.1861,4.8922,6.0172,3.9778,3.8039,0.95669,1.0397,2.2481,2.4209,8.6872,7.7043,13.8534,13.8302,2.4897,3.4594,4.0877,3.9757,3.2295,3.2469,1.6238,1.357,4.0692,4.8171,10.6008,10.0353,2.8883,3.2074,2.5789,2.5628,2.7669,2.7283,10.1299,10.647,2.421,2.4872,2.34,2.5356,12.1241,11.857,2.1174,2.0692,1.1181,1.195,13.661,14.6558,5.7548,5.4839,8.4112,8.4604,3.9039,3.5643,10.6511,10.5249,8.2011,7.9989,7.1214,7.6207,3.7857,3.6103,1.8053,1.7581,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd261,63,63,F,1.5757,1.6249,0.32915,0.3566,0.73506,0.67372,16.5658,2.7236,2.7342,43.2544,43.3333,13.7873,14.2481,222.8878,224.2603,1.2468,2.9427,2.6953,0.5428,0.65246,12.81,18.3889,1.596,1.5627,3.4732,3.5625,6.53,6.6266,4.3466,4.6248,0.08537,4.4765,2.1635,2.2029,0.30481,0.33925,3.614,3.8512,3.5266,3.5746,1.5496,1.4009,9.1051,7.639,3.2221,2.7063,3.4983,3.5289,4.6451,4.3938,1.381,1.3042,1.7233,1.7876,3.3098,3.1364,6.8294,6.0265,1.9636,1.8986,6.3048,5.5447,9.5259,8.7671,7.0608,6.2929,1.9334,2.1568,4.2386,4.3147,1.5144,1.5214,16.2826,17.0128,4.6266,4.7805,3.5983,3.6766,1.0125,1.0199,2.4473,2.3548,6.5869,6.2958,12.3066,10.6118,2.8549,3.3184,4.0098,3.7017,2.9641,3.1208,1.2823,1.1636,3.4532,3.7115,9.3965,8.9996,2.5377,2.7676,2.0291,1.8829,1.958,1.9332,8.9708,10.4337,2.117,2.2723,1.8018,2.1223,11.4033,10.3418,1.662,1.7338,1.0228,1.0716,12.7837,13.1121,4.5318,4.6593,7.6297,7.2062,4.1137,2.934,10.3461,9.1754,6.2705,5.6422,6.427,6.051,3.0297,3.3076,1.182,1.3832,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd262,72,72,F,1.2149,1.688,0.4066,0.43272,0.88136,0.87777,12.5951,3.1972,3.1177,21.6404,8.5017,10.6258,10.4069,208.768,208.7993,1.5249,3.213,3.0054,0.49829,0.81761,16.7432,16.4158,1.4291,1.2638,3.8497,3.816,6.3908,6.5896,3.9964,4.0475,0.06777,3.905,1.7779,1.1706,0.37104,0.36577,4.0261,4.2396,3.8936,4.144,1.6685,1.4319,9.7765,9.1829,3.1536,3.0867,4.542,4.3733,5.1156,4.6151,1.575,1.5289,1.9638,1.9246,3.443,3.0266,6.6059,6.8859,2.0423,2.1391,6.0251,6.0503,11.3008,11.183,7.457,7.2027,2.1145,2.2312,5.2766,5.1542,1.7598,1.6782,18.8515,18.7659,5.2137,6.0172,3.5988,3.8273,0.7652,0.97539,2.2466,2.3554,7.3176,6.0255,14.5541,14.2003,2.7764,3.6103,4.1496,4.1122,3.3829,2.9985,1.4548,1.4598,3.5904,3.9584,10.4938,10.0918,2.6373,2.8589,2.2922,2.3419,2.2832,2.5471,9.7747,10.3798,2.2717,2.2731,1.8764,2.0954,10.878,10.5419,2.1681,2.4502,1.0892,1.1393,13.4212,14.4246,5.1824,4.7806,7.6442,9.6603,4.0282,4.0503,9.7624,9.8328,8.4678,8.0185,7.1959,6.8798,3.6062,4.1721,1.4593,1.7159,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd263,42,42,F,1.0122,2.0464,0.49416,0.66196,0.96734,0.92443,21.0547,3.5937,3.546,56.5683,54.4932,17.4447,17.3113,274.0747,264.2635,0.97752,3.7959,3.2871,0.43769,0.44981,8.8972,10.2369,1.6958,1.6826,4.3591,4.47,7.9425,8.1584,5.139,5.3964,0.10549,5.7021,2.591,3.0924,0.45297,0.46534,5.2218,5.7206,4.3102,4.5632,2.0729,1.6984,11.7868,11.2047,3.1363,3.0552,4.7409,4.5986,5.4003,5.6454,1.9785,1.7889,2.1933,1.9869,4.4074,4.3146,9.3536,8.5571,2.3144,2.4124,7.6633,7.4932,13.5092,13.2035,8.4853,8.0601,2.6568,2.6402,5.4314,5.5629,2.1684,2.0045,21.001,20.2197,6.1715,7.3778,4.5732,5.068,1.4862,1.4687,4.4218,3.2439,8.7517,8.2845,18.12,16.9337,3.9473,4.0078,4.6395,4.8532,3.8129,3.6718,1.8616,1.5283,4.3861,5.0378,11.0276,11.9548,3.2419,3.5386,2.398,2.2643,2.9351,2.6442,13.2796,12.4476,2.625,2.7842,2.2822,2.4174,14.6459,15.5418,2.3664,2.8074,1.3669,1.3112,16.095,15.8389,6.8058,6.2148,9.3669,9.8394,4.9057,4.286,13.5756,11.3395,8.7938,7.8305,9.5096,8.911,3.9849,3.787,1.741,1.7801,,28,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd264,,,M,2.4514,2.3676,0.34798,0.42314,0.80167,0.81158,18.7864,2.7861,2.9263,47.8126,47.3623,14.8592,16.1352,217.423,213.1019,1.9764,3.0601,3.0689,1.4227,1.1206,30.6841,28.4876,1.7507,1.7644,3.5546,3.52,6.8573,7.1101,4.733,4.9825,0.08496,5.4297,2.2816,2.8787,0.36477,0.3541,4.1278,5.1017,3.8533,4.1694,1.7991,1.4925,10.0845,9.1769,3.6757,3.3702,3.9927,3.9395,5.0668,4.6911,1.5454,1.4961,1.6638,1.946,3.8851,3.6657,6.7819,6.7015,2.13,1.9279,7.3851,7.1021,11.3758,11.0449,7.9457,7.7907,2.2463,2.3745,4.617,4.8919,1.7877,1.7827,19.6653,19.8127,5.4944,7.057,4.0524,3.8396,1.1335,1.1895,2.6694,2.6843,8.1308,7.2991,14.1004,13.1896,3.6274,4.7783,4.4752,4.5582,3.1677,3.8125,1.4654,1.5605,3.6767,4.0902,10.2264,10.6747,2.63,2.9739,2.2603,2.2657,1.8431,2.3681,10.9578,10.8701,2.2138,2.2691,2.0977,2.3763,13.1425,12.3655,1.7731,2.0163,1.0849,1.1685,15.0862,14.7357,5.8085,5.7904,8.5253,8.8857,5.1011,3.7986,9.5405,9.8591,8.2179,6.9651,7.1298,6.9161,2.8794,3.8172,1.5101,1.5449,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd265,64,64,F,1.3555,1.8403,0.32741,0.37961,0.64242,0.70985,16.4367,2.6088,2.4605,42.3023,40.9443,13.2022,13.5134,195.6757,197.0866,1.2754,2.4729,2.5595,0.76116,0.91831,21.4528,24.447,1.4477,1.4044,3.2456,3.7764,6.0473,6.423,4.1197,4.4346,0.06403,4.1318,2.0225,2.6111,0.31937,0.33121,3.4262,4.3084,3.349,3.4818,1.6854,1.4915,9.7765,8.2846,2.6385,2.4315,3.5194,3.5452,3.6079,2.9575,1.3501,1.4257,1.6705,1.7166,3.5773,3.2291,6.2382,6.2742,1.9915,2.1343,5.1878,5.0071,10.0786,9.5955,6.4011,5.6364,2.165,2.1242,4.6803,4.4832,1.7515,1.678,16.898,17.3382,4.2694,5.159,3.8406,3.9596,1.0611,0.95079,2.3302,2.3324,7.1579,6.3289,11.2172,12.1057,1.9907,2.6691,3.3985,3.5657,2.878,3.1947,1.4724,1.2418,3.6173,3.9301,8.7866,8.5726,2.4115,2.4612,2.0113,1.9934,2.265,2.0978,8.8208,9.6952,2.0726,2.0846,1.7814,1.8273,10.6188,11.1387,2.0179,1.6764,1.249,1.2506,10.1465,12.6877,4.7292,4.6129,6.4613,7.561,3.241,2.6071,9.6445,8.188,6.3171,6.8627,6.6229,6.306,3.1653,3.535,1.3253,1.2516,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd266,83,83,F,1.8493,2.3804,0.32574,0.36188,0.75455,0.68479,16.6514,2.8236,2.2936,44.7209,44.5662,13.3747,13.3742,211.2005,210.2499,1.5971,3.1424,2.8508,0.74448,0.72752,15.6604,17.3104,1.3967,1.4462,3.2613,3.3909,6.3999,6.5046,4.3203,4.5859,0.08965,4.1429,1.9878,2.6862,0.34825,0.35774,4.0939,4.8586,4.1956,4.1184,1.797,1.6704,7.7391,7.6735,3.0589,3.0593,3.6777,4.1895,4.1008,4.4412,1.6425,1.2061,1.9982,1.9305,3.6814,3.252,7.133,7.4408,2.0611,2.1497,6.777,6.342,11.2816,11.3971,8.238,7.3401,2.2373,2.3702,4.4148,4.7222,1.8869,1.8939,19.556,20.5346,4.6369,5.5471,3.8145,3.9634,1.3088,1.0477,2.8271,2.7079,8.4599,7.3183,12.9644,13.5805,3.03,3.1802,4.3103,4.2739,3.6151,3.4062,1.5866,1.3626,3.7538,4.0189,9.9058,9.4853,2.8675,3.0299,2.2009,2.4505,1.8613,2.387,10.3476,10.2358,2.1903,2.5267,2.0325,2.4078,11.1964,12.3532,1.8027,1.9505,1.2301,1.3192,14.225,15.1137,5.1721,5.2827,7.1517,7.8364,4.5928,3.3597,12.3532,10.4191,7.4597,6.6694,7.3982,7.4517,4.1919,3.8205,1.5205,1.6345,,20,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd267,66,66,F,1.1174,1.6554,0.29497,0.35503,0.73701,0.62016,16.2768,2.3504,2.3391,42.2721,39.5261,13.2933,14.4498,177.4279,172.1287,1.005,3.0477,2.7733,0.60093,0.63503,7.0569,9.3133,1.5202,1.4491,3.0293,3.0355,5.8808,6.0675,4.4743,4.7221,0.08194,3.9762,2.0009,2.3794,0.34977,0.33861,3.6238,4.1459,3.9149,4.2189,1.593,1.2075,9.6351,7.6134,3.0698,3.1519,3.4136,4.1184,4.3094,4.0367,1.4607,1.2384,1.9727,1.9234,3.3588,3.1436,6.5651,6.8443,1.795,1.8084,5.7916,5.9248,9.9978,9.9826,6.7317,5.9821,2.0092,2.067,3.9888,3.8008,1.5936,1.618,15.6855,15.6616,4.7423,4.5397,3.3841,3.5479,0.98894,1.0146,2.374,2.3819,6.9458,6.2544,13.7151,12.054,2.4359,3.0273,3.6227,3.7607,3.341,3.2954,1.349,1.2667,3.8666,4.3803,10.4475,10.5408,2.4831,2.6815,2.1191,2.324,1.8668,2.3187,9.205,10.9548,2.1342,2.1999,1.7206,2.0694,10.8173,10.6935,1.6691,1.7874,0.99631,1.0006,12.2098,11.9291,4.3662,4.6578,7.2824,7.6417,3.7419,3.151,8.6424,9.2975,6.2928,6.7168,6.9366,6.6252,3.0346,3.122,1.2987,1.3545,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd268,,,F,1.6004,1.8949,0.34365,0.35194,0.76962,0.66949,19.5657,2.5624,2.7309,47.3816,47.0307,16.1704,15.9507,244.1906,238.2906,1.3511,3.1953,2.9132,0.4896,0.68711,13.6408,16.12,1.6668,1.7432,3.4389,3.4843,6.8344,7.1892,4.9035,5.103,0.08231,5.1586,2.1822,2.878,0.34728,0.36335,3.9057,4.1858,3.9291,4.1438,1.519,1.3681,10.0486,8.7841,2.8932,2.8439,3.9593,3.8697,4.2102,4.0006,1.5607,1.3091,1.8918,1.9025,3.4809,3.2473,6.8674,6.8443,1.891,1.8172,5.896,5.1279,10.6925,10.3866,7.2507,6.3868,2.2187,2.1152,4.5105,4.7098,1.5347,1.6073,18.4993,17.7601,4.56,4.7495,3.4517,3.5123,0.98315,1.0474,2.4536,2.4033,7.1172,6.2442,12.9491,12.8847,2.7901,2.7213,3.9417,3.7048,3.2803,3.3434,1.6624,1.3506,3.7277,4.0597,9.8708,9.7817,2.6336,2.7866,2.0447,1.9385,2.1501,2.222,10.1175,12.4954,2.1961,2.4992,1.9403,2.0972,12.813,11.6069,1.6533,1.927,1.054,1.0199,13.6528,13.9897,5.0477,4.7806,7.9453,8.7262,4.0576,2.8771,9.3204,9.4134,6.5286,6.3939,7.0754,6.8093,3.4193,3.321,1.5181,1.5485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd269,,,M,1.4349,3.2169,0.41779,0.45566,0.88504,0.93558,20.181,3.3457,3.4491,48.2352,47.6335,16.4222,16.6023,211.7753,209.0373,1.0849,3.2885,3.2016,0.48748,0.63062,16.9137,19.5064,1.5691,1.5431,3.7968,3.8682,7.2128,7.2372,5.1201,5.3211,0.10549,4.6608,2.2438,2.7104,0.41876,0.42106,4.3234,4.7603,4.2447,4.2489,1.8168,1.6336,10.6387,9.6959,3.4253,3.0991,3.8563,4.1345,5.1768,4.4205,1.7155,1.8925,2.1879,1.9546,3.7062,3.3493,7.859,7.2396,1.9592,2.0127,6.1063,6.9345,12.2567,11.6101,9.0216,7.4205,2.3253,2.36,4.3397,4.4862,1.8043,1.7826,19.4533,19.8127,5.123,7.0699,3.8657,4.0271,1.3035,1.3214,2.8271,3.0236,8.1859,6.8637,15.5635,14.6139,2.9678,3.2581,4.6118,4.4217,3.143,3.1158,1.6218,1.2838,4.1859,4.6726,11.011,11.0082,2.8216,3.29,2.2915,2.2236,1.9459,2.2866,11.1468,12.7921,2.3579,2.6528,1.9234,2.1408,14.0005,13.6874,1.6913,2.0222,1.1967,1.2087,15.1279,15.3658,5.3621,5.845,9.0184,8.4822,4.4602,3.38,10.3739,10.9036,7.9102,7.9303,8.4612,8.556,3.8232,3.3907,1.3803,1.5435,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd270,59,59,M,1.8962,2.2777,0.49537,0.52599,0.96734,0.92443,20.2776,3.8859,3.5903,61.7421,54.1574,16.6993,16.4774,247.6455,238.7424,2.9477,3.6067,3.4208,0.90834,1.16,34.3032,32.1618,1.8306,1.7332,3.9383,3.9778,7.4658,7.7363,5.3058,5.5975,0.08927,5.4568,2.4099,3.3315,0.40908,0.44027,5.4144,6.5349,4.7486,4.6396,2.7957,1.9361,12.1829,10.561,3.0673,2.9878,5.3782,4.6239,4.6639,5.1353,1.9621,1.6972,2.3046,2.1482,4.7109,4.5553,8.7955,7.9513,2.4687,2.5264,8.3795,7.263,13.3156,12.9958,8.6827,8.0205,2.7846,3.0093,6.1433,6.2151,2.196,2.3605,22.3671,21.8414,5.8744,6.7807,4.2825,4.1926,1.1751,1.1499,3.1048,2.9101,9.9152,9.517,16.4933,15.9462,2.9965,3.5541,5.1058,4.788,3.9048,3.3928,1.8616,1.8108,4.8073,6.5954,12.3998,12.4284,3.3305,3.5072,2.6785,2.5935,2.2238,2.5855,9.6495,11.3752,3.0105,3.1197,2.3484,2.7196,14.2536,14.8678,1.9236,2.0881,1.3886,1.3974,16.4919,16.7027,6.2438,7.8068,7.8621,8.2032,3.9312,3.7493,10.9754,11.8244,8.4167,7.7847,7.7771,8.105,4.5598,4.4532,1.5416,1.6919,,27,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd271,,,M,2.3602,2.354,0.39851,0.46097,0.84385,0.83008,18.0355,2.9449,2.8533,45.176,46.3144,15.0585,15.8368,222.5126,218.9022,2.0243,3.4051,3.1719,1.2856,0.80493,34.3074,42.9565,1.6223,1.5819,3.5515,3.6548,6.4035,6.5934,4.5409,4.8195,0.0742,4.9875,2.2895,2.5579,0.38806,0.40045,3.9011,4.4643,3.996,4.3376,2.0054,1.6986,11.418,10.0039,3.2858,3.0047,4.0902,4.1877,5.244,4.5931,1.5662,1.4481,1.6638,2.0771,4.0529,3.633,6.3506,6.8529,2.0828,1.99,7.213,7.3491,10.5798,10.2714,7.8219,7.7332,2.4205,2.5265,4.0914,3.86,1.7718,1.7827,17.0618,17.8445,5.9148,6.7421,4.1381,3.7927,1.3779,1.0588,3.0988,2.5888,7.9901,6.7422,12.0367,11.9078,3.2782,4.2916,4.2578,4.5411,3.0321,3.2469,1.55,1.7375,3.7024,3.7867,9.8164,9.3258,2.5342,2.8097,2.3357,2.2428,2.0362,2.2906,9.348,10.6313,2.4929,2.7539,2.1559,2.1582,11.6764,12.3687,1.9502,1.8219,1.3131,1.3509,15.3559,14.7357,4.9632,5.033,7.9376,7.7045,4.7781,4.1038,10.0073,10.2541,7.1765,6.8428,7.3909,7.4025,3.0893,4.2257,1.3216,1.4033,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd272,76,76,F,1.8949,1.9084,0.33943,0.42607,0.80725,0.78801,17.1812,2.6076,2.4323,30.3967,27.5385,16.5675,15.7259,242.2161,242.1665,1.6953,3.4092,3.0683,0.93131,0.83801,19.2048,23.2024,1.6071,1.5937,3.4389,3.605,6.5668,7.2052,4.4412,4.6769,0.08474,4.3606,2.1431,2.2858,0.40259,0.36049,3.8621,4.5673,3.991,3.7959,1.8843,1.5261,10.3634,10.0478,3.036,2.9037,4.1322,4.0153,3.7766,3.8834,1.5516,1.4874,1.7979,1.8386,3.8675,3.3823,6.9996,6.8111,2.0171,2.2114,6.15,6.2477,10.916,10.374,7.5424,6.8042,2.3802,2.5224,4.3869,4.6586,1.7892,1.7795,19.2383,19.3901,4.8922,7.0538,4.1567,4.367,1.0439,1.2361,1.9825,2.823,7.7828,6.9014,14.3784,13.5444,2.9139,3.2095,4.2429,4.385,3.1817,3.3625,1.6172,1.6324,4.1173,4.3339,10.5983,9.5412,2.8251,2.9516,2.4096,2.2331,2.351,2.497,9.4889,11.5959,2.4884,2.8676,2.1559,2.1704,12.7276,11.781,2.0422,2.0007,1.1625,1.2447,14.8003,14.2914,5.6198,5.0169,6.923,8.9752,3.9606,3.5773,10.8406,10.3233,7.8222,6.9867,7.6653,6.5938,4.0176,4.2425,1.6433,1.6638,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd273,,,F,0.94821,1.759,0.34421,0.34666,0.82722,0.80952,19.5657,2.5929,2.1533,53.3227,52.2641,16.1786,16.5544,208.0846,208.9042,0.86119,3.251,3.0569,0.38042,0.51123,10.2828,12.2315,1.5667,1.7181,3.6103,3.5786,6.9295,6.9347,4.4224,4.7567,0.07715,5.0798,2.229,2.8663,0.33326,0.35689,3.536,4.0012,3.8783,4.1267,1.8686,1.502,9.6779,7.8224,2.272,2.6605,3.7748,4.2725,3.5655,3.9624,1.7484,1.6736,1.983,2.1231,3.869,3.4222,7.3468,6.9971,1.8913,1.8763,6.4022,6.2477,11.0946,10.3938,7.2789,6.8258,2.5819,2.3653,4.4357,4.4796,1.6135,1.5953,19.6606,20.8052,4.9648,6.8442,3.9577,3.8819,1.1385,0.9933,2.7068,2.4105,6.977,6.2017,13.7059,12.8021,2.7022,2.9607,3.842,3.9987,2.8978,3.5007,1.6822,1.4475,3.8757,4.2619,9.6078,11.1281,3.1027,3.2698,2.1623,2.1987,2.1452,2.1484,9.3223,11.1711,2.423,2.4347,1.8823,2.0075,12.3454,12.0972,1.8131,1.8612,1.1543,1.1421,13.4679,12.9226,5.016,4.9362,7.3778,8.1728,3.6293,2.8795,10.1847,10.7882,7.1344,7.4943,7.8442,7.4294,4.1776,4.0681,1.3885,1.3337,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd274,72,72,F,3.1708,2.4934,0.33104,0.41514,0.84773,0.89128,16.0241,2.3358,2.2576,41.5171,43.1548,13.3111,13.3684,198.8894,191.857,2.9538,3.6912,3.4541,2.1753,2.2641,44.4104,48.6943,1.5208,1.4679,3.2202,3.3909,6.1456,6.7249,4.4743,4.6676,0.0883,4.484,1.9992,2.6174,0.3742,0.36038,4.0314,4.5673,3.7816,4.1751,1.7011,1.526,8.3991,7.1867,2.9997,2.7963,3.8832,4.1139,4.6639,3.9091,1.5935,1.602,2.033,1.8215,3.3802,3.4446,6.9563,6.8021,1.9041,1.951,6.1003,6.005,10.3411,9.618,7.7153,7.3653,2.1154,2.2613,4.6909,4.7063,1.6664,1.653,17.0565,17.8174,4.6626,5.7092,3.6261,3.7671,1.2513,0.96896,2.587,2.3596,7.1171,6.6371,12.738,11.0624,2.916,3.2256,3.9002,4.1242,3.614,3.3294,1.6195,1.2833,3.7818,4.0416,9.8266,9.4371,2.8682,3.2914,2.2052,2.1578,2.16,2.3381,9.638,11.8537,2.3064,2.3591,2.0861,2.295,11.7555,12.0034,2.1068,2.0129,1.2661,1.274,13.6084,13.4185,5.0937,4.7759,7.4343,8.5425,4.6134,3.5242,9.1168,9.2149,6.5685,6.2291,7.3176,6.8573,3.384,3.4713,1.5917,1.5275,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd275,74,74,M,2.8751,3.1783,0.14032,0.16158,0.87078,0.85732,19.2627,2.826,0.0006,50.9428,52.0746,14.5116,15.1085,226.5443,215.8183,2.6887,3.5007,3.1416,1.4552,1.7079,31.9599,39.4973,1.636,1.6516,0.65264,2.7921,7.0514,7.5452,4.6522,4.926,0.07221,5.1249,2.5086,3.0265,0.35928,0.3378,1.9435,3.2107,3.6586,1.1702,1.2883,0.00008,7.3412,5.0678,3.036,2.8084,3.1436,3.2403,3.9576,3.6558,1.7733,1.6267,1.7152,1.4748,3.3098,2.43,8.0084,7.6282,1.5507,1.7242,6.7827,6.5748,11.64,10.5925,7.6884,7.2196,1.6305,0.06594,3.3912,4.0338,1.2506,1.2859,15.1214,15.9414,3.4789,5.2485,3.0279,1.6916,1.3235,0.89426,2.8511,1.9918,5.201,5.0306,12.6504,12.0241,3.0322,3.6186,4.2992,4.1161,2.9659,2.4669,1.1439,0.00156,1.3402,3.282,7.7055,7.2975,2.9867,3.4163,2.1383,2.0874,1.79,1.8363,10.0499,10.8241,1.1899,1.1664,1.7793,2.2326,10.3122,0.00038,1.5749,1.6811,0.91841,1.0546,0.00046,5.9188,4.719,3.5064,6.8164,1.2354,3.5417,3.5506,8.2253,1.7797,6.6855,7.1869,8.0132,7.3823,2.623,2.7339,1.0821,1.376,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd276,67,67,M,2.1132,2.9716,0.3488,0.40487,0.72903,0.78925,19.2789,2.8485,2.6956,44.3483,48.1425,14.449,15.4454,231.234,228.3403,1.8849,3.4165,3.4276,1.2944,1.3042,22.6581,23.8012,1.7739,1.6123,3.4932,3.7316,7.4154,7.2452,4.9633,5.0355,0.07715,4.3107,2.0673,2.4745,0.40169,0.40055,3.6959,4.1603,4.1555,4.3443,1.6058,1.5729,9.7558,8.957,3.5254,3.1161,4.0083,4.2215,5.1395,5.0529,1.4359,1.582,1.9017,2.0259,3.4976,3.1806,6.8047,6.2539,1.9296,2.0977,6.1666,6.303,11.0967,10.3478,8.6663,7.4205,2.0858,2.4265,4.0733,4.1081,1.5356,1.6249,16.2846,16.929,4.9182,6.1555,3.8622,3.9294,1.0365,1.1781,2.4535,2.578,7.1452,6.4714,14.3784,13.6607,2.686,3.6695,4.5124,4.3142,3.4434,3.0969,1.4944,1.4536,4.3285,4.4619,10.9734,10.9054,2.5475,2.8295,2.4381,2.2345,2.0929,2.3306,9.8581,11.0579,2.1786,2.5171,2.2047,2.3454,11.5372,12.3543,2.031,2.0344,1.1729,1.2573,14.7709,14.4063,5.2471,5.3764,8.3387,7.9048,4.3422,3.7345,10.7106,10.8338,8.0376,7.6602,7.4701,7.1993,3.4566,3.8601,1.6937,1.8178,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd277,71,71,F,0.91006,1.7796,0.33871,0.42191,0.8021,0.81121,13.6372,2.5314,2.4605,34.594,24.6806,10.0498,10.4569,191.0961,188.3036,0.7582,2.9478,2.5125,0.46835,0.35424,8.3533,9.3133,1.2453,1.2944,3.3993,3.7478,6.1911,6.3845,3.7485,3.8384,0.06965,3.5511,1.7341,1.4796,0.32629,0.34819,3.1503,3.4415,3.3243,3.4425,1.532,1.3152,9.1822,7.7872,2.8977,2.81,3.2413,3.2309,3.7649,4.0584,1.6513,1.6527,1.4564,1.5085,2.9562,2.3836,6.3183,6.3211,1.623,1.6765,5.4081,4.5914,9.9493,9.5955,6.5107,6.1919,1.8762,2.1077,3.7883,3.9956,1.3567,1.3929,15.764,15.7201,4.2287,4.9112,3.4009,3.3619,0.92636,0.93562,2.1395,1.689,5.201,5.0106,11.8607,10.9923,2.3504,2.6444,3.3581,2.673,2.9142,3.1155,1.289,1.1968,3.3466,3.3135,7.3639,8.2201,2.557,2.9742,2.0129,1.9054,1.7183,1.6901,8.6724,9.53,1.9091,1.9402,1.7963,1.965,10.8766,10.0965,1.613,1.6225,0.98281,0.97981,12.212,13.4043,4.5952,4.2424,5.992,7.0271,3.6905,3.0278,8.9171,7.6989,6.6416,5.9566,7.0173,7.2069,2.8685,3.3439,1.1932,1.1738,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd278,70,70,F,2.2463,1.4758,0.14255,0.27353,0.5099,0.18576,18.029,2.2612,2.647,44.5851,44.6311,13.6405,13.5847,193.768,202.1358,1.9063,2.4966,2.3105,2.1389,2.2962,21.9802,24.0846,1.427,1.4433,0.23437,2.6509,6.3053,6.5321,4.3567,4.782,0.09323,4.7015,3.3807,2.6402,0.31367,0.13082,1.9435,3.3593,3.5266,0.46849,1.2644,1.2413,9.1916,7.6134,2.5013,2.0323,3.152,3.612,3.4484,2.9575,1.0283,0.91267,1.4845,1.5738,3.0341,2.5766,6.3474,5.9556,1.4337,1.6765,5.0955,5.0515,8.7273,8.6306,7.42,6.4468,1.6305,1.8822,4.2511,4.2817,1.136,1.294,12.9504,14.1142,3.8107,4.4411,2.88,3.0339,0.87055,1.0472,2.1614,2.3604,6.2585,5.6164,10.0935,10.7233,2.3409,2.5231,3.5564,3.448,2.7034,2.6457,1.163,1.3123,3.5454,4.5039,9.3965,10.1525,2.4996,2.6002,1.7214,1.865,1.6795,1.6536,7.8857,8.5934,0.63246,1.9167,1.457,1.7846,9.3165,10.5862,1.3264,1.3524,0.98978,0.99153,10.0494,0.00002,4.1068,4.1648,6.5404,1.6946,3.2913,2.717,9.0106,8.1941,6.0248,5.4729,5.4621,5.8077,2.581,3.0499,1.2254,1.3825,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd279,68,68,M,1.7737,2.6021,0.31295,0.30522,0.77176,0.81125,16.3958,2.0924,2.1122,42.7073,41.2085,13.9568,13.2882,223.5583,219.8805,2.0082,3.1135,3.0646,1.1453,1.103,18.5802,20.6888,1.585,1.5627,3.0357,3.3609,5.7971,6.3167,4.4644,4.7191,0.08211,4.4402,1.9541,2.6376,0.37038,0.36204,4.2224,4.6228,3.8806,4.2509,1.7654,1.6058,10.6755,9.2691,3.1923,3.191,4.2568,4.0468,4.5913,4.2309,1.5659,1.4739,1.9731,1.874,3.8415,3.4666,6.5806,6.4178,1.9718,2.0025,5.8681,6.1578,11.5109,10.3478,7.5887,6.9489,2.2909,2.1863,4.6503,4.542,1.805,1.8075,18.5382,18.5906,4.9089,5.8761,3.6261,4.0128,1.1529,1.0314,2.6736,2.4672,7.3176,6.9862,14.8189,13.5824,2.5712,3.2332,4.0877,4.5702,3.7595,3.4289,1.5771,1.318,4.0011,4.4955,10.3858,9.9764,2.949,2.9537,2.5824,2.379,2.3196,2.5132,10.3561,11.871,2.3463,2.2573,2.2704,2.1117,12.7276,11.8217,1.9105,2.2746,1.1188,1.2287,14.5554,14.3946,5.6586,5.2693,8.1537,8.332,3.8563,3.1124,10.2362,10.2256,7.8384,7.1021,7.3208,6.8548,3.384,3.7107,1.8464,1.5044,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd280,61,61,M,1.0829,1.7871,0.42259,0.45319,0.92814,0.9122,19.276,3.209,3.2484,47.2617,47.1271,15.6228,16.4775,216.4777,213.6136,0.96458,3.3499,3.1927,0.41045,0.40205,12.0578,13.301,1.5406,1.5725,4.0015,4.2053,7.4431,7.3593,4.8366,5.0056,0.07484,4.768,2.1884,2.7915,0.40196,0.40558,4.3311,4.8817,3.5838,3.6634,1.8186,1.5216,9.9073,8.9164,3.4883,3.1407,3.3643,3.3012,5.4766,4.9829,1.7335,1.8712,1.6794,1.7992,3.8209,3.8607,7.5272,7.3417,2.3816,2.2513,6.7307,6.8617,10.8778,11.3971,8.7503,7.7076,2.2809,2.4247,4.7897,4.9602,1.9747,1.8282,18.5718,18.15,5.2143,6.07,3.9652,4.276,1.1934,1.2654,2.7869,2.379,8.4599,7.0881,13.4412,14.6542,3.2577,3.65,4.453,4.6073,2.7456,2.9791,1.301,1.5149,3.8169,4.6272,10.1712,10.9152,3.0673,3.4163,1.9577,1.9937,2.0627,1.9596,9.7397,10.212,2.3484,2.5128,1.8343,2.0997,12.038,12.42,1.8111,1.6495,1.1517,1.1725,14.4163,13.7765,5.3775,5.5574,7.8592,8.1767,4.5361,3.6511,9.4148,10.4922,7.0391,7.1046,7.5165,7.1342,3.1005,3.8073,1.3691,1.3716,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd281,68,68,M,1.7106,2.1094,0.32552,0.35956,0.79656,0.84055,17.8149,2.4292,2.3693,40.8155,40.919,15.5442,15.9507,221.7553,220.7889,1.4986,3.101,3.5761,0.72004,1.0156,13.7106,19.5313,1.531,1.5799,3.4495,3.471,6.5668,6.6519,4.4392,4.6501,0.07276,4.418,2.0943,2.4701,0.36239,0.3594,3.7514,4.3399,3.5168,3.9608,1.5403,1.37,8.7675,8.843,3.1602,3.1029,3.6154,3.9702,4.3213,4.671,1.4866,1.6001,1.8056,1.8754,3.3218,3.178,6.7114,6.5727,1.78,1.8384,6.2295,5.7929,10.5139,9.8194,7.2669,7.061,2.0749,2.1766,3.9765,4.0432,1.5471,1.5011,14.7771,15.3404,4.8392,6.1279,3.0127,3.5882,1.1405,1.0583,2.2511,2.2739,7.0396,5.8159,12.6923,12.8625,3.0945,2.9551,4.0312,3.9903,3.4017,3.2404,1.5225,1.391,3.8115,4.165,9.588,9.1172,2.516,2.6815,1.9382,2.016,1.9497,2.1503,10.4524,10.3747,2.1786,2.2905,1.8567,2.0972,12.9492,11.781,1.8207,1.9479,1.0228,1.0522,12.1339,11.8028,4.4572,4.7787,8.3553,8.4213,4.5245,3.6195,9.3816,10.3845,6.4709,6.982,6.8489,6.4808,3.5721,3.5194,1.4206,1.5102,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd282,59,59,F,0.92769,1.5251,0.36371,0.40587,0.8218,0.90388,18.3676,2.8948,2.9707,44.9758,44.4757,15.0903,16.1998,241.6072,234.481,1.3199,3.5614,3.3742,0.72781,0.52345,11.539,14.2645,1.581,1.5442,3.8124,3.972,7.277,7.4816,4.9907,5.3791,0.0791,4.6172,2.2158,2.5881,0.38394,0.39248,4.2319,4.8562,4.0292,4.175,1.909,1.6648,9.8631,8.8709,3.3733,3.4592,3.8863,3.9784,4.7492,4.7242,1.6149,1.6788,2.0368,2.0205,3.7506,3.5507,7.3072,7.2071,2.2922,2.4793,7.2028,6.3827,10.9388,11.6942,7.7691,7.294,2.2809,2.2322,4.2543,4.5241,1.8856,1.8433,18.8893,19.8121,5.4728,5.9184,4.2661,4.623,0.97807,0.9325,2.3328,2.3415,7.8807,6.8789,13.3432,14.2988,3.3883,3.6268,4.2732,4.1536,3.5751,3.7512,1.3825,1.4118,3.9393,4.3011,11.55,10.8082,2.846,3.2234,2.2954,2.4427,2.206,2.6695,10.4643,11.6109,2.421,2.4598,1.8932,2.3397,13.467,12.9802,2.0578,2.1495,1.2573,1.318,15.0981,13.9844,5.4518,5.4277,7.6058,8.6181,4.285,3.7345,10.4039,11.6051,7.0181,7.4058,8.2445,8.0938,3.3019,3.8888,1.4593,1.5844,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd283,73,73,M,1.7097,1.8801,0.35138,0.37516,0.7993,0.75558,16.1879,2.4689,2.3891,41.5171,40.9443,13.0437,14.4498,212.4621,206.1572,1.7585,3.143,2.822,0.81809,0.66825,19.8907,17.1651,1.5633,1.5094,3.3506,3.2036,6.6585,6.9259,4.5083,4.7797,0.07654,4.447,2.0725,2.5286,0.3603,0.35723,4.1867,4.7587,4.0238,4.2081,1.7905,1.5847,9.5333,7.8532,3.4823,3.1543,3.6818,4.1343,4.6025,4.5617,1.5659,1.485,2.0899,1.9378,3.6334,3.3493,6.6504,6.4074,1.9583,1.9946,6.4052,5.7793,11.0369,9.9259,7.5965,6.4974,2.2146,2.2979,4.6942,4.9916,1.6467,1.7003,18.4993,18.1078,5.2188,5.8084,3.7841,3.7608,1.1529,0.9933,2.8894,2.5666,7.7634,6.7513,13.3822,11.7806,2.959,3.2256,4.0312,3.9573,4.1054,3.0311,1.5949,1.318,3.9427,4.2633,9.6993,9.759,2.6897,2.8665,2.1379,2.2715,1.8115,2.1338,7.6773,9.2961,2.1961,2.4872,2.1575,2.3099,11.9313,11.7583,1.7676,1.7077,1.2499,1.2912,13.2802,13.7731,5.0514,4.9431,7.5826,7.9271,4.6594,3.6985,9.0019,10.2826,7.4092,6.6392,7.7156,7.0749,4.3022,3.6062,1.3875,1.5657,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd284,68,68,M,1.9094,2.6021,0.39919,0.41321,0.90347,0.87128,18.3788,3.3179,2.9888,49.0386,50.5032,16.6983,16.7592,251.8469,247.8442,1.2255,3.4728,3.3067,0.53831,0.51445,12.814,18.2943,1.6981,1.6611,3.761,3.6271,6.8297,7.349,4.7557,5.0076,0.0778,5.3326,2.4335,2.6358,0.37417,0.37781,3.8217,4.8056,3.5163,3.7078,1.8425,1.5388,9.9073,8.7777,3.8968,3.8477,3.4866,3.5014,5.7872,5.5077,1.7155,1.7317,1.7829,1.7992,3.7271,3.5467,7.9381,7.4944,2.2056,2.2327,6.6404,6.5227,11.9333,11.8025,8.7067,8.008,2.2805,2.5026,4.6016,4.7795,1.8458,1.8702,18.9174,19.457,4.7661,6.1555,3.77,4.2172,1.0557,1.0539,2.6133,2.5482,8.4067,7.0344,14.489,13.859,3.0377,4.1036,4.4684,4.6941,3.4063,2.8947,1.4047,1.4691,3.9916,4.2252,11.1316,10.8777,2.904,3.3107,1.9027,2.1265,1.9541,2.3464,7.9696,9.5345,2.4033,2.6048,1.7949,2.1262,11.8631,11.9992,1.724,1.7895,1.1089,1.1887,14.6592,14.8471,5.8279,5.7578,8.3,9.3659,4.0864,3.2927,10.0453,10.954,8.3095,7.5473,8.5351,8.3974,3.3019,3.6503,1.2285,1.3603,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd285,,,M,2.0909,1.8234,0.35086,0.39595,0.84773,0.75988,15.4489,2.6115,2.354,37.5752,39.0933,11.4186,12.8773,155.8267,148.1433,2.2209,3.2315,2.8535,0.96117,0.86062,20.4639,24.447,1.3283,1.3088,3.0508,3.1734,5.5835,5.6857,4.2099,4.3714,0.06704,3.5022,2.0307,2.1231,0.38326,0.37687,4.672,5.2078,4.2416,4.3837,1.8262,1.492,11.4273,10.0351,2.6629,2.676,4.3249,4.3391,4.6672,4.4212,1.6222,1.4874,2.2748,2.0503,4.3521,3.8368,7.125,6.9016,2.2015,2.1961,6.4673,5.9617,11.8917,10.6593,6.8636,6.6743,2.3834,2.2343,4.8273,5.1096,1.8679,1.8729,20.8614,20.2197,4.9104,6.3498,3.9778,4.0204,1.1694,1.1983,2.5994,3.0079,8.3148,7.5175,13.8965,12.7972,2.7658,3.1849,3.6596,3.9485,4.0166,3.6735,1.6218,1.387,4.295,4.4619,10.263,9.9042,2.8667,2.9862,2.7409,2.6301,2.1122,2.3713,10.9379,11.7193,2.2067,2.3144,2.3842,2.3484,12.0314,11.3711,2.052,1.8785,1.1747,1.2057,14.7744,15.124,5.7812,5.9494,8.0531,8.8943,4.1829,3.3894,10.9218,9.5733,7.2129,6.9533,8.2434,8.1256,4.0663,3.9953,1.4877,1.7118,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd286,79,79,F,1.698,2.1247,0.23863,0.27429,0.52829,0.51612,17.4546,2.0018,2.0219,47.2334,46.6155,15.3667,16.1998,196.9166,196.9209,1.3648,1.1821,1.3047,0.91186,0.9965,16.123,29.3432,1.5111,1.4886,2.877,2.8063,5.9048,6.4873,4.4339,4.6758,0.08504,5.1619,2.231,2.893,0.2665,0.29135,3.3465,3.5615,2.9729,3.3815,1.2644,1.1268,8.1557,7.5543,2.7469,2.0323,3.4983,3.3895,4.2835,3.7566,1.0263,0.91296,1.547,1.5965,3.1704,2.7854,4.8245,5.323,1.4756,1.6585,5.1508,4.9819,6.7824,8.0032,7.017,6.1704,1.6042,1.9252,3.8935,3.7145,1.2819,1.294,14.0834,13.927,4.0748,4.4411,2.8623,2.9874,0.95104,0.90098,2.313,2.1757,6.112,5.3896,8.3232,9.3037,2.188,2.7125,3.4823,3.5905,2.3161,2.6453,1.1581,1.2007,3.2198,3.7408,8.7928,9.2035,2.4062,2.5425,2.0597,2.082,1.7678,2.0528,8.5484,8.6872,1.8475,1.9458,1.9361,1.9482,10.0125,9.5847,1.3738,1.5256,0.96674,0.97308,10.046,11.351,4.3057,4.1638,5.4316,6.9437,3.5277,2.717,7.1767,8.1941,4.6116,5.2566,5.2322,4.7509,2.4577,2.8697,1.2877,0.31108,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd287,60,60,F,1.6007,1.6665,0.36462,0.41872,0.79012,0.80224,15.3848,2.6323,2.7349,44.4358,44.1275,12.6874,12.8583,197.2012,194.5846,1.8529,2.9637,3.0646,1.6576,0.9679,31.295,33.0922,1.4408,1.4044,3.339,3.3873,6.376,6.6061,4.2099,4.4563,0.08197,4.7659,2.2166,2.4507,0.37411,0.36187,4.6665,4.6875,3.8432,4.0682,1.7616,1.5125,9.078,8.7033,3.2654,2.9169,4.0572,4.2725,4.7579,3.9091,1.555,1.446,1.9638,1.924,3.5851,3.4439,6.6772,6.7015,1.8046,1.8571,7.3851,6.2704,10.3745,9.8961,7.3151,7.0737,2.2909,2.3268,3.9591,4.1845,1.6876,1.6954,18.9184,19.0436,5.5567,6.1169,3.4573,3.6918,0.87342,1.0127,2.3321,2.3079,7.3249,6.6387,14.5233,13.4424,3.329,3.8769,3.9168,4.0348,2.8621,2.9963,1.6176,1.4114,3.5604,4.0922,10.2546,10.1246,2.764,3.3079,2.2838,2.4505,1.8993,2.3261,9.5891,10.1888,2.2897,2.3887,1.7647,2.0115,12.707,11.8385,1.6188,1.9809,1.2151,1.2125,13.9154,13.8629,5.0937,5.1072,7.3399,8.907,4.7781,3.9651,9.7965,10.1228,7.1283,7.395,7.9132,7.2595,3.4253,3.6177,1.3764,1.3711,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd288,82,82,F,1.1324,1.6201,0.34299,0.34514,0.72047,0.66949,17.0656,2.5342,2.4888,42.54,43.4035,13.6618,13.9885,177.9895,169.8775,1.0812,2.9698,2.8594,0.76116,0.52345,10.9034,10.6779,1.3784,1.4396,2.8663,2.9232,5.7143,5.913,4.3567,4.5977,0.07952,4.0219,2.0322,2.2817,0.34941,0.36975,3.6238,4.1357,3.3686,3.4235,1.6751,1.2721,8.6911,7.7611,2.4957,2.6644,4.013,3.771,4.0856,3.88,1.4942,1.256,1.8056,1.6942,3.3536,3.3072,6.7847,5.9039,1.7364,1.977,6.1881,5.6959,9.6295,9.0952,6.9399,6.0476,2.1604,1.9667,4.4706,4.8038,1.5936,1.5917,20.6697,20.9488,4.5508,5.7948,3.449,3.6528,1.0838,1.1074,2.6174,2.5883,6.8601,6.2902,11.4578,11.6121,2.6173,3.0863,3.5804,3.5905,3.3793,3.4832,1.3858,1.4357,3.6395,3.7834,8.6625,9.2699,2.7173,2.8473,2.0359,2.0096,2.2397,2.4953,10.3534,10.8728,2.0952,2.1021,1.928,1.9312,12.0085,12.0531,1.7494,1.7615,1.0766,1.1234,13.6789,13.2355,4.8591,4.6124,7.2411,7.8364,4.204,3.3708,8.1985,10.2199,6.1258,6.8865,6.6466,6.197,3.591,3.9377,1.3876,1.3082,,28,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd289,71,71,F,1.3691,1.7805,0.27858,0.31534,0.66322,0.64418,14.5013,2.3106,2.3365,40.7918,41.8891,11.9078,12.1483,165.8618,166.7693,1.0877,2.6811,2.5321,0.79701,0.80996,14.4921,17.155,1.2984,1.3372,2.8808,3.1734,5.3608,6.2038,3.9009,4.0614,0.07392,4.1908,2.0853,2.2142,0.32352,0.31563,3.4942,3.6683,3.3055,3.5139,1.3535,1.1709,8.9382,7.5739,2.7214,2.5598,3.2736,3.2403,4.3805,3.6086,1.3686,1.3591,1.5223,1.5681,3.266,2.8818,6.0282,5.4036,1.6284,1.6491,4.5203,5.2621,9.0157,8.829,7.017,6.0476,1.8869,1.9873,3.881,3.452,1.2819,1.3178,13.9244,14.4447,3.2197,4.7701,2.8635,3.1944,0.77061,0.91269,2.0719,2.0004,6.1492,5.3951,11.8959,11.5039,2.1773,2.4495,3.6394,3.6689,3.1041,2.6854,1.3296,1.1482,2.9716,3.5591,9.4578,8.7884,2.5732,2.8864,2.1241,1.9278,2.0846,1.6112,9.2561,9.5542,2.0583,1.9514,1.8371,1.9736,10.075,10.6331,1.7643,1.685,0.93261,0.96288,11.829,11.5294,3.9776,3.9575,6.7096,7.7045,3.3486,3.3862,7.8982,8.2836,6.605,6.3194,6.9277,6.0729,2.9747,3.0846,1.2277,1.4395,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd290,,,M,2.1427,2.2088,0.3203,0.35398,0.66088,0.59288,15.9729,2.5083,2.4381,36.3493,37.8398,12.6773,12.4571,214.38,210.9608,2.3852,2.8479,2.5816,1.0608,1.0467,31.9599,35.2975,1.5338,1.4785,3.2657,3.2508,6.1889,6.46,4.6084,4.8599,0.07302,4.1296,1.8688,1.9277,0.32918,0.33722,3.672,4.2821,3.7142,3.7338,1.6327,1.3598,10.3634,8.7738,2.6728,2.4377,3.7165,3.4424,3.525,3.1617,1.2883,1.1974,1.7721,1.8386,3.6528,2.9085,6.1785,5.9511,1.756,1.8851,5.3353,5.2449,9.5523,8.9927,6.8636,5.4669,1.9995,1.9518,4.0647,3.8008,1.6149,1.751,15.2511,14.8729,4.3234,4.831,3.3093,3.7779,1.0862,1.0691,2.3706,2.7089,7.1542,5.8331,10.9933,11.6384,2.1446,2.9097,3.4874,3.5603,3.0877,3.234,1.3766,1.1918,3.2502,3.5265,9.4155,8.6526,2.5458,2.7176,1.9922,2.0617,1.8017,2.3287,9.0085,9.4049,1.8493,2.0846,1.8307,2.0895,11.1104,12.1035,1.7405,1.9996,0.99631,0.99226,14.3595,14.3737,4.612,4.3968,7.384,8.3635,3.043,2.71,9.2928,10.2199,5.7197,6.0861,6.9312,6.576,3.0989,2.9068,1.166,1.4037,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd291,76,76,M,2.1555,2.0586,0.26593,0.29104,0.92367,0.89547,14.4951,2.1816,2.2676,32.5484,30.9771,11.3372,11.2483,151.1903,145.7123,2.1398,3.5536,3.4216,1.0796,1.2229,25.6969,31.4738,1.2695,1.2098,3.3326,3.2448,5.5596,5.5339,3.8767,4.0842,0.06895,3.6364,1.6058,1.8897,0.36629,0.33122,4.1811,4.7909,4.1966,4.5698,1.7569,1.5351,9.322,9.3047,2.8002,2.7682,3.9039,3.9929,4.2675,3.7368,1.7916,1.654,1.8305,1.8734,3.5851,3.4748,7.7827,7.6829,1.8319,2.012,6.7062,6.9697,11.6861,11.0853,7.2789,6.8854,2.3243,2.4051,4.4958,4.6036,1.8686,1.7966,17.4824,19.0194,5.5586,5.956,3.5876,3.9386,1.1108,1.2778,2.3443,2.8206,7.5522,6.6172,14.1004,13.2606,3.2372,3.7212,4.0513,3.8858,3.1999,3.0305,1.6007,1.559,4.2239,4.6253,10.2987,10.822,3.1078,3.4223,2.3053,2.3155,2.1558,2.2527,10.4786,10.1111,2.3339,2.5171,1.8971,2.0631,13.1141,13.3822,1.6382,1.9846,1.0787,1.1747,12.1339,14.3766,6.0924,5.811,8.0252,9.3872,4.363,3.3562,8.7725,11.5286,6.8531,7.0721,8.6274,8.1057,3.3044,3.4175,1.5081,1.5033,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd292,70,70,M,1.1133,2.1211,0.3977,0.45523,0.83316,0.79891,18.6779,2.4205,2.609,48.8941,47.9713,15.2305,15.384,241.6072,232.4718,1.2048,3.5614,3.3001,0.51198,0.5124,8.3477,11.0313,1.6653,1.6886,4.0851,4.1583,7.8667,8.2819,4.8413,4.9866,0.07484,4.9901,2.2373,2.693,0.40044,0.40503,3.9506,4.5045,3.7652,3.9264,2.048,1.6583,10.7409,9.2936,3.2255,3.342,3.8663,3.9223,4.2223,4.6278,1.6164,1.4953,1.8491,1.8637,3.7899,3.5127,7.2433,7.5253,2.2531,2.2985,6.3439,6.1703,11.7404,11.7663,8.2483,7.7312,2.6877,2.6274,4.8619,5.2523,1.8294,1.8758,19.2383,19.0645,5.6833,5.8435,4.2661,4.6011,1.0728,1.0871,2.8028,2.7168,7.5136,6.833,13.523,13.9313,2.959,3.1364,4.213,4.3338,3.4744,3.5953,1.9195,1.5343,3.6745,3.9841,9.785,9.845,3.0451,3.1213,2.236,2.232,2.2214,2.3303,10.5419,10.9396,2.6135,2.6018,2.138,2.3425,12.3454,13.1306,1.7615,1.7895,1.3468,1.4052,14.6171,14.8102,5.1829,5.5021,8.2998,8.6658,4.1368,3.6288,9.275,9.4013,7.6034,7.1216,7.5284,7.42,3.5851,3.753,1.6638,1.4363,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd293,75,75,M,2.508,2.5434,0.3469,0.36831,0.76392,0.80505,18.8058,2.828,2.5513,44.8174,45.253,13.2285,13.625,200.7114,193.8382,2.0844,3.2181,3.0823,1.3791,1.0578,31.5536,28.4876,1.3987,1.4462,3.3925,3.3951,6.1098,6.1968,4.7695,4.9747,0.08434,4.8811,2.2072,2.5587,0.35653,0.37411,3.9387,4.4643,4.1658,3.8636,1.4529,1.3079,9.1593,7.9713,3.2858,3.3618,3.4921,3.7912,4.4276,3.9855,1.5582,1.4929,2.0643,2.0207,3.3744,3.4177,6.9415,7.0253,1.681,1.7072,6.4061,5.6658,10.3745,10.3088,8.0981,7.1042,1.9783,2.117,4.6895,4.5042,1.6694,1.6692,16.7945,18.0128,4.9671,5.7343,3.2723,3.1832,1.0974,1.0315,2.6174,2.549,7.2313,7.4178,13.5206,12.722,2.7949,3.03,3.8945,4.0192,3.4637,3.2415,1.3406,1.3629,4.0349,4.503,10.1621,11.088,2.9241,3.4943,2.3147,2.4487,1.9166,2.4379,9.6623,10.1888,1.8947,2.3874,2.0861,2.5504,10.3122,10.2988,1.6388,2.002,1.1656,1.1554,12.0196,13.9965,4.8385,4.8888,7.4095,8.3409,3.7534,3.1602,9.3013,9.0908,7.546,7.5846,7.7021,7.062,3.2904,3.8118,1.3402,1.7581,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd294,,,M,1.535,2.3519,0.32695,0.34666,0.88578,0.83393,20.2468,2.4292,2.4242,52.1853,51.6413,18.8412,19.2974,254.6872,252.0335,1.2541,3.2742,3.0188,0.76519,0.83932,10.5676,12.0729,1.7198,1.7203,3.4955,3.6592,7.122,7.7973,5.4789,5.7108,0.07497,4.551,2.2014,2.7349,0.33859,0.36657,4.1037,4.5078,3.8248,3.7848,1.4738,1.3855,8.8693,7.1824,3.6393,3.0632,3.4588,3.7564,5.1205,4.8713,1.8121,1.7548,1.6044,1.6997,3.5829,2.9085,7.7073,6.8406,1.8119,1.8568,6.4583,5.801,11.9333,11.6521,7.2141,6.6054,2.1833,2.2603,4.6419,4.6375,1.6049,1.6885,17.3679,18.131,4.6431,6.0224,3.4976,3.6084,0.7652,1.0378,2.1498,2.4751,6.9914,6.5047,14.54,14.0082,2.959,3.3899,4.3247,4.1283,3.2949,3.1578,1.5133,1.3584,3.8449,4.0416,10.6316,9.5412,3.2685,3.3091,2.0263,2.0073,2.2022,2.5469,9.2869,10.4337,2.2365,2.3925,1.737,1.8628,11.2005,11.3711,1.9236,2.3175,1.2068,1.3692,14.4123,14.2595,4.9428,4.6124,7.1374,7.7894,3.8405,3.151,10.1534,9.7265,7.5898,7.4943,7.785,8.5218,3.6204,3.4013,1.3691,1.4266,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd295,73,73,M,1.7097,1.8801,0.3806,0.47086,0.69111,0.70871,19.6163,3.1379,3.1743,50.8783,50.9913,16.3949,16.4934,260.5051,255.3596,1.6773,3.0192,2.5632,1.0569,1.7229,24.6727,30.4423,1.9924,2.3875,4.1266,4.2102,7.7554,7.8547,4.9581,5.3393,0.08878,5.197,2.3638,2.9766,0.424,0.4197,4.3045,4.911,4.578,4.5085,1.7931,1.4355,11.0488,9.3894,3.7988,3.7189,4.3265,4.3491,4.8477,4.4191,1.4105,1.3508,2.0886,2.132,3.7029,3.4425,7.0512,7.1017,2.2534,2.2327,6.408,5.5669,11.4592,11.1838,9.1059,7.9709,2.3413,2.1445,5.035,5.1096,2.0997,2.0628,19.4266,21.7198,5.4499,5.7717,3.9207,3.858,1.3035,1.3013,2.906,2.9101,8.7348,7.5252,13.5649,13.9609,3.084,3.921,4.6118,4.8401,3.4287,3.5285,1.8193,1.4428,4.0853,4.9609,11.757,11.0804,2.7173,2.9882,2.4649,2.4628,2.7315,2.6107,11.3137,13.0931,2.7181,2.3966,2.1353,2.3318,14.0005,13.344,1.9137,2.1184,1.3218,1.4188,17.274,15.2984,5.7727,5.2693,8.7147,9.3659,4.142,3.6653,9.6541,9.647,7.0378,6.9201,7.4883,6.8548,3.9384,3.787,1.5917,1.5567,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd296,72,72,M,1.1722,1.6201,0.40752,0.44488,0.96308,0.99176,17.1183,3.1158,3.1553,48.5734,48.3369,13.6618,13.739,204.7483,201.4517,1.1215,3.5258,3.3065,0.62167,0.61212,11.9217,13.9922,1.4334,1.4402,3.4455,3.5921,7.4431,7.0505,4.4045,4.7452,0.0773,4.3414,2.2693,2.6622,0.37923,0.37258,3.8191,4.6754,3.5875,3.9013,1.7461,1.6648,8.8027,8.015,2.9744,2.7421,3.6724,3.9223,4.4789,3.8832,1.8764,1.8671,1.6328,1.841,3.3431,3.2323,7.7827,7.111,2.0011,2.0292,6.4312,5.9785,11.8036,10.8767,7.9171,6.7187,2.2787,2.3998,4.87,4.757,1.7524,1.7127,17.934,16.4015,5.1801,5.7175,3.9181,4.2291,0.98736,0.97539,2.3465,2.3561,8.1367,6.256,14.027,12.6961,2.6801,2.8618,4.4497,4.1709,2.7727,2.8893,1.3382,1.4844,3.9393,4.0665,9.6993,10.0684,3.1033,3.262,2.2847,2.2288,2.2511,2.538,8.8582,10.5872,2.4919,2.545,1.9772,2.1959,12.156,11.9346,1.9224,2.0007,1.1538,1.1954,13.9392,15.2206,4.9986,4.6472,7.6135,7.9887,3.9854,3.1461,8.9724,9.647,7.9658,7.8152,8.5438,8.1007,2.7457,3.7475,1.5549,1.6424,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd297,69,69,F,1.4432,2.6631,0.34514,0.38521,0.8503,0.83393,18.2485,2.828,2.6816,46.1595,44.3359,15.0817,15.8275,231.8648,230.6618,1.3132,3.4466,3.3502,0.6528,0.66511,10.5676,12.0729,1.6676,1.6544,3.2112,3.3731,7.2232,7.2998,4.8547,5.0355,0.07497,4.7526,1.9311,2.4738,0.34941,0.35235,3.9068,4.3446,3.4688,3.5727,1.7143,1.5756,9.8865,8.7428,3.1614,3.0693,3.4921,3.5026,4.1616,4.277,1.6416,1.6533,1.7386,1.7992,3.1709,3.0811,7.4447,7.3659,1.9111,1.9581,6.628,6.0817,11.4184,11.208,8.2312,7.6911,2.2095,2.3184,4.5274,4.6398,1.7375,1.711,17.4425,17.7781,4.9111,5.6435,3.8077,4.002,1.1335,0.99431,2.6567,2.4369,7.7055,6.6575,13.0986,13.9397,2.9668,2.8953,4.4969,4.61,2.9058,3.2478,1.4622,1.349,4.6508,5.0762,12.6814,11.478,2.8052,3.0174,1.857,1.9054,2.2098,2.4953,8.2134,9.7252,2.1903,2.4663,1.697,2.0287,11.7388,11.2645,2.2771,2.462,1.1141,1.1,13.7446,13.8267,4.886,5.5021,6.9161,9.2354,4.1368,3.6472,9.7843,10.1788,6.7324,7.2459,7.3909,7.3194,3.4382,3.5338,1.2779,1.6211,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd298,79,79,F,1.7829,2.2666,0.28869,0.2958,0.64989,0.66117,14.5161,2.3944,2.4183,31.4445,30.9771,11.1152,9.2054,165.7529,163.5753,2.1946,2.9639,2.7257,1.3304,1.0868,24.0659,29.5189,1.2633,1.2221,3.2393,3.2669,5.6804,5.6857,3.7026,3.8378,0.06805,3.905,1.7419,1.7352,0.31619,0.3005,3.0547,3.0857,3.471,3.867,1.3738,1.2669,8.5819,7.3052,3.0485,2.9403,3.3183,3.0994,4.5105,3.7876,1.3279,1.3182,1.5223,1.4077,2.825,2.5766,6.8854,5.9755,1.6709,1.48,5.7367,4.9571,9.9931,9.1289,7.151,6.1704,1.9543,1.7342,3.8826,3.9006,1.3135,1.2859,14.2998,14.4447,4.6161,4.7761,3.2018,3.201,0.83979,0.9423,1.8683,1.863,6.2585,5.0512,11.8607,10.9923,2.4359,2.7584,3.4874,3.3195,2.7926,2.6453,1.2503,1.1813,3.2327,3.7098,8.9068,9.5354,2.6796,2.6956,2.0278,2.0828,2.3633,2.2859,9.4345,9.3536,1.9487,2.2089,1.7315,1.9808,11.0423,11.0321,1.9312,1.722,1.0715,1.1667,11.4221,10.2517,4.2906,4.1389,6.2754,7.8777,3.7279,2.9609,9.1786,10.0089,6.6551,6.6077,6.5751,5.9166,2.8801,2.2786,1.2779,1.4395,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd299,72,72,F,1.2149,1.688,0.31039,0.32269,0.69047,0.67914,15.8248,2.3875,2.224,42.589,41.3001,11.6546,11.6878,184.6449,181.9258,1.4275,2.9717,2.7257,1.0092,0.94534,16.5462,21.4466,1.3497,1.3368,3.3698,3.1679,5.6575,6.1208,3.978,4.1256,0.06836,3.9879,2.0712,2.488,0.32412,0.34437,3.2007,3.5612,3.5491,3.6893,1.4324,1.2021,9.1675,7.5833,2.8281,2.8007,3.1416,3.0206,4.3805,3.8057,1.3537,1.3525,1.5568,1.5775,3.3157,3.2685,6.5448,5.9776,1.6315,1.6491,5.4517,5.1534,9.2611,9.4893,7.3228,6.8854,1.9296,1.9873,3.7048,4.0338,1.3142,1.3674,15.7992,16.7384,4.3477,4.6049,3.0863,3.2007,1.1405,0.95253,2.2511,2.1719,6.4407,5.8191,11.6879,10.7707,2.4852,2.5463,3.7109,3.5636,2.9772,2.4669,1.4053,1.1974,3.2841,3.6396,9.4355,9.3243,2.5203,2.5695,1.8315,1.9054,1.6664,1.5521,9.0756,9.8007,2.0628,2.2377,1.6319,1.9091,10.0863,10.8212,1.5058,1.4938,0.98978,1.0109,12.6635,12.5322,4.577,4.4677,6.903,7.9444,3.5277,2.5859,9.7252,11.3991,6.3678,6.0762,6.8304,6.4223,3.2797,3.1176,1.2667,1.1738,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd300,74,74,M,1.9976,2.5409,0.37592,0.39586,0.84848,0.85732,20.1977,3.263,2.9093,49.9101,50.1737,19.6819,20.1605,284.4215,281.4037,1.9368,3.3649,3.2768,1.2095,1.0131,21.4729,19.1291,1.6471,1.6516,3.6873,3.4106,6.6604,6.686,5.2238,5.4181,0.08937,5.3954,2.5913,2.8688,0.40362,0.41953,4.7016,5.4798,4.5407,4.6844,1.9409,1.8502,10.5766,10.3589,3.5648,3.1602,4.6459,4.5057,5.0217,4.3846,1.6422,1.6892,1.9633,2.107,4.1102,3.5318,7.5756,7.1408,2.1558,2.2165,6.8318,7.3628,11.9333,11.7124,8.7859,7.6818,2.493,2.7365,5.082,5.2148,1.9062,1.9469,18.9174,21.7198,5.289,6.4813,4.0723,4.3668,1.0185,1.2571,2.501,2.9477,8.5647,8.2845,13.4955,13.5805,3.5247,4.132,4.7817,5.0193,3.8191,3.206,1.6807,1.6954,4.3882,4.5837,11.2044,11.0082,2.8835,3.2276,2.7409,2.5935,2.7526,2.8887,10.778,11.8374,2.5064,2.6057,2.2516,2.6651,11.9639,12.9803,2.5439,2.5416,1.1967,1.2461,16.0237,15.3991,6.0927,6.09,9.5879,9.2554,4.6761,3.5939,10.3507,11.8854,7.3794,7.2786,7.5206,8.883,3.9384,3.5559,1.699,2.0798,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd301,78,78,F,2.0444,1.9478,0.32035,0.37285,0.73594,0.68479,17.1812,2.7039,2.5535,41.0361,40.8983,14.6937,14.9308,218.2553,213.0487,1.576,2.8752,2.6953,0.9213,0.79331,22.1398,20.5641,1.4824,1.4679,3.1153,3.3227,6.2423,6.641,4.1359,4.3168,0.07149,3.9657,1.9849,2.4347,0.33936,0.33672,4.0418,4.4726,3.4688,3.6281,1.7392,1.6704,10.8307,9.289,3.2835,3.0271,4.5358,3.949,4.7789,4.4484,1.4214,1.2756,1.9501,1.9795,3.6547,3.198,7.2795,7.5174,1.8574,1.9966,6.7827,6.1691,10.9587,11.1452,7.8612,7.1527,2.2388,2.4574,4.9065,5.2758,1.658,1.6784,17.3195,19.0194,6.0089,6.0522,3.449,3.5057,0.98736,0.88686,2.6087,2.346,6.9244,6.6371,14.0717,14.4684,2.6114,3.2759,4.3085,4.3191,3.8315,3.138,1.4436,1.6549,4.0614,4.4141,10.0915,10.4845,2.6235,2.7031,2.2631,2.3589,2.7442,2.5488,10.3889,11.1603,2.0726,2.2946,1.9298,2.2568,11.0016,10.8385,2.4477,2.2746,1.0551,1.0615,14.5183,13.9615,4.7941,5.1019,7.7676,8.8259,4.0282,3.1517,11.0128,9.9727,7.6657,6.709,7.5177,7.1663,3.4632,3.8793,1.5011,1.7457,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd302,85,85,F,1.772,2.1243,0.24275,0.28135,0.5909,0.60177,14.6471,1.7629,2.2189,41.9003,39.997,12.0467,12.1339,167.5756,166.7693,2.1695,2.4152,1.3047,1.0796,1.5123,24.0659,35.4663,1.3894,1.4048,2.6432,2.7921,5.5578,5.8612,3.8112,3.9915,0.08239,4.3959,2.1362,2.1701,0.27894,0.28347,3.415,3.8584,3.3216,3.5351,1.4276,1.2255,8.1557,7.0338,2.5231,2.0798,3.2202,3.1584,3.5413,3.1217,1.2126,1.183,1.572,1.401,2.8054,2.5791,4.8245,5.3721,1.5062,1.5814,5.3459,4.7346,7.2375,9.5018,7.0919,6.233,1.8498,1.7863,3.7044,3.7073,1.3077,1.294,13.6102,13.8636,4.6078,4.7761,3.0235,3.1743,0.99108,0.95253,2.1614,1.863,5.7964,5.0512,9.6374,10.4941,2.5157,2.5104,3.4874,3.6291,2.6327,2.5532,1.2154,1.2223,3.4873,3.7434,8.1223,8.4152,2.4834,2.5224,2.01,1.9134,1.902,1.6071,7.9816,9.713,2.0583,1.9178,1.8903,2.0836,9.3404,10.6186,1.4596,1.6225,0.98978,0.87415,11.9794,11.1137,3.9776,3.7976,5.4734,6.5211,3.7049,3.0278,8.1262,8.3686,6.4699,5.7493,6.2694,6.0238,2.5062,2.7339,1.369,1.2955,,13,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd303,68,68,F,0.63477,1.6016,0.42851,0.46989,0.81082,0.71904,17.5411,3.2281,2.9434,44.9758,43.6805,14.3962,15.1085,235.8337,237.6217,0.85913,3.5614,3.0874,0.38198,0.33279,4.9304,3.8601,1.7723,1.8143,3.7745,3.7971,7.3168,7.521,4.6039,4.8657,0.08194,4.4594,2.2798,2.4202,0.37164,0.37595,3.7686,4.237,4.1578,4.2191,1.7043,1.5729,10.4836,10.4475,3.4125,3.6314,3.5289,3.6665,4.9485,4.7218,1.6064,1.36,1.8778,1.8297,3.4137,3.4446,7.2356,7.0565,1.8764,1.9945,6.3455,5.9517,11.7478,11.1838,8.4337,7.7043,2.1066,2.3807,4.5022,4.5385,1.6397,1.6073,17.9356,18.5287,5.2515,5.1925,3.4874,3.6918,0.92792,1.0092,2.486,2.4369,7.2827,6.583,14.6369,15.1973,3.3381,4.1036,4.6824,4.7166,3.3505,2.9118,1.4257,1.4613,4.1739,4.4726,11.011,10.8082,2.9139,3.0225,2.2716,2.2211,2.0941,2.3918,10.5483,11.3873,2.2909,2.3548,2.1036,2.3694,12.0262,12.0505,1.9632,2.1074,1.0058,1.0199,16.326,13.9844,5.0504,4.9526,8.8186,10.3903,3.9609,3.287,10.2362,11.138,8.049,7.6602,7.358,6.8548,3.3051,3.8601,1.4543,1.6822,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd304,,,F,0.92151,1.6951,0.34892,0.42314,0.78518,0.80224,15.3697,2.8389,2.9263,38.3685,33.5396,12.6382,12.7019,206.2201,206.9141,1.3199,3.0233,2.6776,0.39685,0.27558,13.5037,14.9227,1.2104,1.1695,3.5597,3.6351,6.1316,6.4523,3.7026,3.8378,0.06704,4.4069,1.8736,2.0749,0.33588,0.34819,3.8308,4.0958,3.7171,3.6893,1.6267,1.4954,9.4689,7.0883,2.8737,3.1004,3.8267,3.8891,4.0345,4.3581,1.4866,1.4514,1.9731,1.8123,3.1757,3.1183,6.6665,6.6353,2.0352,2.1343,6.044,5.7158,10.3411,9.8925,6.8819,6.8705,2.1988,2.3,4.0546,4.2148,1.7021,1.618,17.5262,17.7766,5.347,4.7546,3.5988,3.7365,0.99077,0.9117,2.2721,2.2374,6.7355,6.163,12.6236,11.8988,2.9318,3.1354,3.512,4.0486,3.3518,3.1734,1.4504,1.349,3.3842,3.8426,8.5837,9.2029,2.6131,2.9354,2.1184,2.0161,2.16,2.3381,9.0473,9.7572,2.1059,2.1792,1.7315,1.8761,11.3061,11.9401,2.03,2.0129,1.1997,1.251,13.4697,13.5656,4.5228,5.1211,6.4613,8.4019,3.9499,2.9805,8.8691,10.0019,7.0912,6.6392,7.0603,6.9902,3.2585,3.5607,1.3288,1.4729,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd305,,,F,1.3846,1.6251,0.40101,0.41591,0.70439,0.71849,17.1365,3.5155,3.5369,43.2544,43.4035,14.5272,15.0169,252.5968,250.5173,1.2497,2.8766,2.7905,0.52265,0.50392,12.8766,18.2943,1.6519,1.5677,3.8481,3.8252,6.39,6.9179,4.5527,4.7728,0.0765,4.3606,2.1257,2.4388,0.39142,0.37594,4.143,4.993,3.5908,4.0023,1.8904,1.492,10.0036,8.2307,2.6981,2.4464,3.9303,3.9924,4.5354,3.6445,1.4334,1.4181,1.895,2.0387,4.5967,3.6769,7.3078,6.9637,2.2015,2.4366,7.044,6.2964,11.1909,11.1512,7.1607,6.5239,2.2256,2.1445,5.1711,4.6702,2.029,1.984,20.9149,20.9488,5.1591,6.0122,3.9853,3.9073,1.1739,1.2417,2.7194,2.823,9.411,7.3094,13.8398,12.1207,3.2368,3.895,4.0136,4.1079,3.2124,3.2658,1.5207,1.4832,3.6731,3.8688,10.6316,10.6302,2.7173,2.9152,2.3727,2.2428,2.4729,2.5671,9.638,11.6623,2.4806,2.4377,2.1469,2.4102,13.2599,12.5687,2.1924,2.0007,1.1572,1.2818,14.9338,16.2906,5.6541,5.4839,8.3049,8.9517,4.3471,3.6446,10.3038,10.5645,8.4678,7.7066,7.4883,7.624,3.5716,4.0113,1.6639,1.6991,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd306,69,69,F,1.5107,1.6665,0.38364,0.42715,0.82696,0.8298,16.2165,3.1379,3.0836,48.197,45.5465,13.5695,13.4048,222.5085,214.9522,1.6202,3.268,3.1275,0.86284,0.59173,16.018,17.5791,1.5304,1.5403,3.909,3.8361,6.7401,6.7992,4.3466,4.5983,0.06628,4.3414,2.2424,2.7285,0.37104,0.37195,3.6599,4.7194,3.928,4.0654,1.8044,1.5479,10.21,9.093,2.9077,2.883,3.9038,4.0305,4.608,4.24,1.6102,1.5399,1.7548,1.8616,3.5537,3.4007,7.1333,7.7366,2.083,2.0001,6.6099,6.3769,11.5585,10.6071,7.4618,7.1432,2.3421,2.3057,4.1164,4.6652,1.7698,1.7697,17.153,18.644,5.4842,6.0511,3.6362,3.9938,1.0214,1.0258,2.7321,2.7168,7.379,6.7189,14.3111,13.0863,3.2656,3.7622,3.823,4.1883,2.9058,3.2537,1.6253,1.3913,3.6314,3.9075,10.5986,10.701,2.7981,3.0905,2.2328,2.3589,1.8993,2.387,10.3188,11.9748,2.3582,2.4914,2.0833,2.2753,13.0528,13.1986,1.6691,1.9593,1.1956,1.2195,11.7635,13.483,4.8422,5.3068,8.1186,9.3659,4.755,4.1628,9.7527,10.1047,6.807,6.9201,7.2265,7.3164,3.5609,3.5219,1.3729,1.5694,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd307,72,72,M,1.7662,2.0757,0.37023,0.41771,0.85597,0.844,17.3904,2.8077,2.6911,46.7921,47.0264,14.4502,15.3281,267.0388,268.7903,1.4449,3.3649,3.1466,0.68417,0.83269,13.6408,19.5313,1.7834,1.7673,3.7169,3.8839,7.2232,7.7356,4.6439,4.9142,0.07881,4.8524,2.1871,3.0262,0.35534,0.39472,3.7686,4.3799,4.0215,4.2618,2.0285,1.5926,9.8631,8.5316,3.6251,3.2287,4.3834,4.4532,5.0469,4.2253,1.7166,1.6079,2.0182,1.9523,4.3331,3.8872,7.3746,7.2873,1.9854,2.0546,5.5486,5.6019,10.8476,10.6668,8.059,6.9788,2.5657,2.4261,4.3864,4.5528,1.9296,1.8594,21.0876,22.2924,4.6014,5.6453,3.884,3.8823,1.0288,1.2571,2.4232,2.8353,7.7103,7.3574,14.6607,13.2978,2.6258,3.1367,4.0362,3.9033,3.6679,3.5135,1.6731,1.5283,3.7472,4.3145,10.1712,10.0906,3.144,3.2634,2.3357,2.4643,2.5237,2.6184,10.8522,11.6791,2.4833,2.6404,2.1916,2.6651,14.1133,15.7442,2.0355,1.8968,1.2756,1.2789,17.322,15.6758,5.5129,5.8171,8.4684,10.2499,4.0282,3.3885,9.2774,9.905,7.9211,7.4204,8.3154,7.755,3.9793,3.7874,1.5133,1.6291,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd308,72,72,F,1.2149,1.2667,0.40112,0.41978,0.6968,0.70417,16.2031,2.6948,2.7349,38.9738,39.9015,12.7794,12.9974,219.7823,219.1379,1.5249,2.7141,2.4806,0.71919,0.83641,18.3746,14.3974,1.585,1.5497,3.5165,3.5921,6.4362,6.6977,4.5083,4.6997,0.08126,4.4376,1.6783,2.2808,0.35545,0.37595,3.9314,4.4443,3.7816,3.7848,1.7043,1.5373,9.2201,8.0967,3.3611,3.4506,3.7112,3.5278,4.3664,4.4701,1.381,1.467,1.6005,1.6707,3.3536,3.3089,6.6665,6.6353,1.9964,2.1695,5.4261,4.9306,10.4915,10.3628,7.4103,6.5829,2.1066,2.1914,4.3955,4.5033,1.7021,1.7052,16.1322,16.4381,4.2038,4.7026,3.8541,3.9634,0.76618,1.068,2.4737,2.4518,7.4045,6.823,12.4217,11.8988,2.5237,2.8267,3.9017,3.6074,2.9381,2.5608,1.4614,1.3463,3.4532,4.066,9.2661,10.0293,2.6493,2.8701,2.2136,2.2224,1.9492,2.1053,8.8464,10.0361,2.1568,2.3591,2.1469,2.1437,10.6894,11.2346,1.9533,2.1489,1.2428,1.2473,13.7655,13.4789,4.7568,4.5444,7.875,7.9679,3.3494,2.7703,10.1591,11.2121,7.4023,6.7973,7.7935,7.2509,3.3421,3.5983,1.492,1.467,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd309,,,F,1.2046,1.9878,0.35988,0.39427,0.87013,0.86239,16.0278,2.9039,2.5005,43.8192,41.9724,12.8206,13.0099,209.5752,208.7993,1.0479,3.2688,3.0452,0.52059,0.55843,9.5205,13.8935,1.4437,1.4848,3.5074,3.6406,6.7328,6.9887,4.2492,4.5118,0.07534,4.2476,2.0895,2.3908,0.36306,0.37608,4.2456,4.3208,4.0353,4.2223,1.7043,1.4917,10.5402,8.65,2.7324,2.4886,4.185,4.4532,4.7671,3.8144,1.7055,1.6122,1.9493,2.0322,3.4031,3.1771,6.4639,6.6506,1.9686,2.1343,6.3722,6.031,11.5109,10.716,7.1372,6.6054,2.2825,2.2644,4.7228,4.8081,1.5995,1.6576,17.934,17.7781,4.7728,6.069,4.0233,3.9596,1.161,0.92558,2.8894,2.3498,7.5173,6.4951,13.7589,13.6104,2.7022,2.9439,3.7753,3.7823,3.1835,3.2799,1.5158,1.4242,3.9639,4.3719,11.1179,10.429,2.6696,2.832,2.0389,2.0921,2.3003,2.4359,9.2486,10.3821,2.3581,2.3906,1.8956,2.0216,11.3061,12.6192,2.1924,2.0185,1.122,1.1339,12.8794,13.1233,5.1473,5.0618,7.1919,8.8539,3.7939,2.7602,10.994,9.225,7.0665,6.6392,7.83,7.7727,3.5694,3.5219,1.5549,1.574,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd310,78,78,M,2.2506,2.4877,0.36398,0.41604,0.84773,0.93165,17.3904,2.9475,2.8677,47.1015,46.8229,13.5663,13.784,186.3442,193.5193,1.9267,3.5737,3.1353,1.2206,1.0131,23.7819,21.5607,1.5003,1.4767,3.5463,3.8067,6.7219,6.9395,4.5974,4.7553,0.08896,4.7028,2.075,2.6622,0.42028,0.3954,4.4161,5.027,3.8483,4.1751,1.6703,1.4409,8.7883,8.6328,3.2764,3.4883,3.8788,4.0207,4.6626,4.6986,1.6126,1.741,2.0541,1.8261,3.4943,3.2519,7.6151,7.1775,2.0831,2.0713,6.9008,6.5861,12.309,12.039,8.0483,7.0595,2.1865,2.3409,4.8944,5.0112,1.7927,1.8793,19.6031,19.4226,4.6992,5.2485,3.7841,3.8039,1.1282,1.0283,2.4473,2.5911,8.0209,6.871,15.4421,14.8551,3.1322,2.9863,4.2286,4.3142,3.614,3.4729,1.5342,1.5059,4.0325,4.1715,9.9208,9.5475,2.9483,3.1717,2.5604,2.2582,1.9543,2.3681,9.0906,11.2548,2.3126,2.5092,2.2593,2.444,12.2499,11.8722,1.9026,1.9643,1.2933,1.2704,14.3506,14.9704,5.1579,4.9228,7.5605,9.1099,4.6594,3.4341,11.1253,9.6246,7.3433,7.6646,8.2629,8.4584,3.3345,3.9354,1.4701,1.4354,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd311,74,74,M,2.6836,2.2419,0.49233,0.66196,0.97871,0.98178,19.8097,3.3837,3.0724,55.3105,54.6501,16.2343,16.2485,251.5132,252.8866,2.6887,4.0002,3.717,1.614,0.94835,27.4336,32.9243,1.7454,1.7506,4.3591,4.6387,6.9086,7.2413,5.4042,5.7108,0.10009,5.3382,2.5426,3.2572,0.47356,0.44193,4.8283,5.4071,4.7486,4.6396,1.9503,1.7921,11.5993,10.561,4.1079,3.6852,5.3782,5.2039,5.3855,5.6165,1.9382,1.993,2.4361,2.5455,4.7077,4.2203,8.5003,8.2372,2.199,2.3465,8.2424,7.8584,13.7261,13.1241,9.3264,8.0698,2.5126,2.7616,6.1433,7.119,2.1622,2.2084,23.1467,22.7106,5.4008,6.6668,4.4105,4.3599,1.3226,1.5159,2.822,3.2996,9.1432,8.0971,16.1744,15.5508,3.7683,4.253,5.1058,5.3126,3.9048,4.0353,1.8217,1.7511,4.4357,4.6666,11.9382,12.8934,3.4228,3.5296,2.602,2.9316,2.5551,2.8574,11.9788,13.4742,2.6451,2.7405,2.5971,2.7172,14.7043,16.7357,2.123,2.3435,1.4588,1.3904,17.7623,19.1718,6.2652,6.8019,9.6912,9.2919,5.0689,4.8233,10.9431,11.9308,9.4883,9.0984,8.6714,8.5546,4.3135,4.1858,1.6525,1.9292,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd312,76,76,M,2.3907,2.3329,0.36748,0.37631,0.91709,0.93429,19.0873,2.7183,2.6985,50.1061,50.3468,15.8558,15.9721,218.3786,210.2855,2.0243,3.5952,3.1706,0.9969,1.2229,31.4798,35.4198,1.546,1.5431,3.1969,3.3512,6.0941,6.6066,4.6522,4.8287,0.07932,5.7295,2.5213,3.0942,0.40802,0.3906,4.3437,4.7927,4.2669,4.3726,1.8422,1.7701,10.0996,8.8765,3.4589,3.1602,4.0376,4.2908,5.4766,5.4245,1.7707,1.7889,2.1404,2.0336,3.6087,3.5761,7.3682,7.1972,2.1145,2.2221,6.6404,6.553,11.8917,11.0005,8.7859,8.3526,2.4405,2.5042,3.9635,4.4564,1.9846,2.0408,16.6491,19.2089,5.0577,5.8134,3.7824,4.4766,1.2338,1.2882,2.8666,3.182,8.3765,7.1,14.8914,13.2646,2.7967,3.4333,4.5124,4.5662,3.7968,3.6131,1.6501,1.5915,4.426,4.979,12.0596,11.6746,3.1953,3.3515,2.3728,2.5458,2.1933,2.5469,9.1008,10.5975,2.7401,2.6349,2.2269,2.4552,12.9067,12.2938,1.8163,1.9192,1.3445,1.5057,13.7849,13.9897,5.6763,5.4097,7.9431,9.5152,4.0754,3.1517,9.5405,9.0935,7.1278,7.5151,8.6274,7.9834,4.0428,4.2005,1.4672,1.5647,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd313,63,63,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd314,72,72,F,1.2149,1.688,0.45306,0.50415,0.92825,0.88654,18.9048,3.9326,3.6104,45.1156,48.2509,15.0445,15.6924,219.8286,222.3009,1.2419,3.6559,3.3788,0.50539,0.505,9.5783,10.6452,1.6559,1.668,4.2087,4.5059,7.6923,8.049,4.837,5.0959,0.07952,4.483,2.1973,2.8725,0.41983,0.42884,4.3045,4.8562,4.2808,4.3594,1.9295,1.8329,12.5747,9.9564,2.9026,2.8508,3.8081,4.3245,4.7671,4.5426,1.666,1.7333,2.1221,2.0503,3.6851,3.2088,7.6877,7.6505,2.207,2.4717,6.9214,6.7989,12.4007,11.7365,8.6739,7.0703,2.5593,2.7728,4.5501,4.9895,1.9531,2.0006,19.129,20.8052,5.3311,6.6482,4.4122,4.5659,1.2881,1.2561,2.9837,2.8198,8.135,7.1,16.6756,15.1053,2.8751,3.6473,4.7616,4.4089,3.7103,3.7879,1.6218,1.7352,3.9078,4.3599,10.7119,9.9819,3.144,3.4402,2.2716,2.3588,2.4618,2.544,10.0404,11.7189,2.7574,2.7405,2.1845,2.2468,13.6313,13.9885,2.0604,2.2269,1.3402,1.3974,15.887,14.8102,5.5008,5.8171,8.2718,10.1358,4.0972,3.8769,10.2496,10.1367,8.1435,7.7573,7.8127,8.105,4.3361,4.0317,1.5416,1.8215,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd315,71,71,F,1.0581,1.8813,0.29497,0.34214,0.6762,0.67914,15.0725,2.5199,2.4381,42.589,42.4254,12.0475,12.1868,169.9447,162.6556,1.1536,2.7353,2.4742,0.49291,0.42583,10.0298,11.4231,1.1754,1.2234,3.0847,3.1931,5.7713,6.0178,3.6709,3.8378,0.07988,4.8972,2.2356,2.7071,0.32078,0.31393,3.4942,3.9099,3.3155,3.4545,1.5849,1.3405,7.3584,7.7214,2.8211,2.5867,2.9388,3.6058,4.3882,3.8183,1.2911,1.3277,1.6595,1.569,3.0455,3.23,6.3907,6.0792,1.7564,1.6965,5.6698,6.1186,10.4233,9.5955,6.9075,6.233,2.0251,1.9518,4.12,4.5127,1.4273,1.4819,16.2826,15.9371,4.6429,6.0297,3.2405,3.2221,1.0838,1.1074,2.6271,2.4751,6.5775,5.9402,12.5677,12.523,2.5782,3.1264,3.5804,3.4415,3.1353,2.5608,1.2794,1.2729,3.75,4.1238,9.763,9.3708,2.6218,2.6956,1.9343,2.0096,1.4645,1.8917,9.2137,11.135,2.14,2.1045,1.8192,2.004,11.0944,11.7325,1.6063,1.582,0.86423,1.0415,13.2357,13.5356,5.2668,4.9414,6.8191,7.8799,3.907,2.9174,8.6452,8.8138,6.2157,6.4315,6.5985,6.5726,3.2024,2.7278,1.1932,1.3028,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd316,67,67,M,1.5343,2.2088,0.45089,0.48466,1.076,1.0289,19.511,3.5906,3.6729,58.2693,55.7769,16.1786,15.5489,284.0418,277.4785,1.7918,4.2465,3.8589,0.66879,0.56756,19.8907,24.3171,1.911,1.8031,4.5594,4.5662,6.9086,7.072,4.8321,4.9542,0.07859,4.8395,2.6033,3.1238,0.41955,0.43353,4.4445,5.2956,5.1362,4.4503,1.993,1.7786,11.2043,9.1982,3.1923,3.1932,4.6883,4.4564,4.7502,5.2218,2.0749,2.0359,2.4243,2.3081,4.1318,3.7187,8.6655,8.6021,2.2274,2.4546,8.2375,7.4495,13.3031,13.2035,8.6739,8.4522,2.5327,2.7616,5.134,5.7283,2.08,2.2084,21.4875,20.5391,5.7094,6.459,4.4177,4.5409,1.0667,1.3127,2.6667,2.7925,9.1432,8.048,16.4933,16.1211,3.2514,3.8068,5.1121,4.6758,4.157,3.6497,1.7328,1.7511,4.3882,4.8597,11.757,11.5563,3.1754,3.4725,2.3071,2.3709,2.6939,2.6774,12.0861,13.411,2.6904,2.9372,2.1073,2.5369,13.9001,13.257,2.2641,2.1005,1.305,1.2201,15.4497,15.9932,6.0927,6.09,8.3761,8.3587,4.0303,3.4122,11.646,12.0068,8.7417,7.7847,8.5754,8.4177,4.2107,4.3462,1.3967,1.7839,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd317,85,85,F,1.4892,0.86416,0.03898,0.095,0.52829,0.50656,2.0826,0,0.00075,7.4207,17.5955,2.8026,8.7931,76.6563,79.2274,1.4577,2.4249,1.9484,0.70216,0.72958,13.6634,17.9963,0.80256,1.0678,0.79783,0.79482,5.4218,5.2142,3.6257,3.8961,0.07921,4.1864,0.30153,1.9396,0.28045,0.2706,0.00006,1.9898,0.9969,1.1702,0.00005,0.00046,7.3412,3.9193,2.6871,2.0798,0.01217,2.1042,3.7766,3.438,1.0283,1.0787,0.75116,0.00757,0,0,4.513,5.238,0.23156,0.76651,4.8365,4.3656,8.2175,7.7384,6.3605,6.1207,0.02731,0.06594,0,0.00012,0.16873,0.05335,0,0,4.149,4.6551,1.0424,2.0093,0.86368,0.90098,1.8727,1.779,0.00038,3.6668,11.1318,11.3505,2.0591,2.7388,2.8509,2.673,0.00048,0.00223,0.00987,0.05771,2.3859,3.1833,8.3606,6.5694,2.2618,2.4325,1.8084,1.9036,0,0.02077,0,8.1361,1.1899,2.0031,1.5795,1.4588,6.3496,0.00038,1.577,1.6225,0.81661,0.92855,0.00029,5.9188,0,0,1.1506,6.0253,3.241,2.7703,7.1767,7.8501,6.839,6.2822,7.0344,6.0729,0,0,1.1316,1.0864,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd318,68,68,F,0.63477,1.2525,0.43242,0.49152,0.73258,0.72415,18.5757,2.9795,3.0593,43.8728,43.5792,14.3121,14.5162,252.5323,251.0024,1.399,2.914,2.5693,0.54312,0.4383,13.1004,15.1691,1.7416,1.7462,3.9642,3.7795,7.4277,7.6227,4.8547,5.2364,0.07254,4.7016,2.2993,2.584,0.3778,0.38373,3.494,4.1665,3.8644,4.3721,2.0067,1.6657,9.5148,7.6134,3.4265,3.6094,3.573,3.6637,4.2814,4.1815,1.4097,1.4728,1.7588,1.8169,4.1558,3.7492,6.3506,6.7281,2.2427,2.2471,5.7922,5.9517,9.3731,10.6215,7.7523,6.7187,2.4443,2.6051,4.574,4.6398,1.8408,1.927,18.8562,18.3019,4.634,5.2847,4.318,4.4564,1.0173,1.0964,2.3793,2.5356,7.7453,6.2442,10.9933,13.3923,2.3021,3.1687,4.1184,3.8106,3.0406,3.1416,1.4006,1.5388,3.6139,3.9295,9.1509,9.0072,2.672,2.9231,2.236,2.1061,2.1497,2.0249,10.4444,11.6057,2.4985,2.652,2.0158,1.9256,13.4823,12.6851,1.8306,1.7221,1.3268,1.3388,12.8557,12.9747,5.4532,5.078,7.4809,7.9897,3.8805,3.1956,10.1591,10.9917,6.5646,6.5064,7.5055,7.2509,3.3767,4.4614,1.3967,1.4045,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd319,73,73,F,1.4763,2.6631,0.30529,0.26814,0.6762,0.68034,15.8248,2.7353,2.1002,44.2266,45.4069,14.3029,15.0376,196.2657,189.4892,1.5709,2.5942,2.4073,0.67891,0.70164,14.9221,18.4698,1.4291,1.4771,2.9175,2.9815,6.1149,6.3793,4.0058,4.2019,0.06403,4.8159,3.3807,2.4648,0.30474,0.32318,3.8583,4.2174,3.4726,3.7476,1.5062,1.3681,7.8428,7.9211,2.8962,2.6499,3.611,3.8246,4.1507,3.7902,1.2911,1.317,1.5785,1.6887,3.1919,2.8304,6.9003,6.0792,1.8216,1.8303,5.4434,4.9819,10.126,9.9434,6.3517,6.0849,1.9381,1.9148,4.203,4.1875,1.4698,1.4512,16.966,17.0576,4.3254,4.7415,3.4751,3.3068,0.82125,1.0087,1.8906,1.9728,7.0534,6.3812,11.7179,11.453,2.817,2.8417,3.5763,3.5905,2.8743,2.6684,1.2992,1.3043,3.4858,3.7437,8.6154,9.3891,2.5917,2.7176,1.9205,2.0758,1.8168,1.9735,8.5085,10.6662,1.9847,1.9831,1.6813,1.9119,11.4033,11.2192,1.5249,1.7051,1.1365,1.1565,12.8832,13.6217,4.8591,4.8915,5.9791,6.9437,3.508,2.7374,8.8583,8.4178,5.8814,5.6132,6.9438,6.042,3.1211,3.2472,1.2066,1.3481,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd320,57,57,F,1.9503,2.3628,0.35333,0.37281,0.75449,0.68479,15.8861,3.0644,2.9981,44.0019,44.4978,13.6541,14.0383,210.9773,208.9042,1.7585,2.9777,2.5551,1.0608,0.81228,18.4747,20.8007,1.4408,1.3646,3.3088,3.2011,5.9114,6.4332,4.1089,4.3272,0.07564,4.3788,2.0161,2.6738,0.32261,0.31962,3.2435,3.9392,3.782,4.0768,1.5077,1.3397,9.2651,7.3997,3.0828,2.7925,3.7618,4.0233,4.429,3.9611,1.3995,1.3117,2.1614,1.9355,3.2431,3.0791,6.6455,6.6987,1.8387,1.7793,6.2151,5.9187,11.2782,9.8961,7.5827,6.7686,2.0158,2.0016,4.3231,4.3147,1.6135,1.5073,15.9353,16.2676,4.7022,4.2735,3.4751,3.4232,1.0944,1.016,2.2511,2.3819,6.4922,5.7178,13.6094,12.5967,2.8575,3.0963,4.0324,3.9945,3.4022,2.8977,1.4548,1.3618,3.9639,4.4955,10.1131,10.1935,2.6072,2.8,2.2052,2.2164,2.3256,2.5998,8.2392,10.6941,2.2331,2.3991,2.1024,2.2512,11.1343,12.8559,1.8124,1.9727,1.0685,1.0709,12.0196,11.6385,4.862,4.7219,7.3907,8.5425,3.8065,3.1602,10.1534,9.8389,6.8712,7.3543,6.9801,6.8305,3.3747,3.205,1.4878,1.6575,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd321,74,74,M,1.8958,2.2178,0.33941,0.37204,0.90359,0.84092,18.505,2.6411,2.474,47.9786,48.8023,15.7042,15.9721,229.3533,224.0768,1.4746,3.721,3.5098,1.0633,0.86279,21.6185,24.8558,1.6076,1.565,3.2747,3.353,7.0223,7.4677,4.6023,4.8254,0.08029,4.6817,2.2475,2.893,0.4252,0.40369,4.6665,4.8817,4.3955,4.3879,1.8782,1.6461,10.9287,9.3932,3.6929,3.5173,3.7911,4.6321,5.4773,4.7596,1.7881,1.6055,2.0381,1.918,3.869,3.6687,8.1022,7.8013,2.1533,2.1027,7.1179,6.7305,12.0911,11.8957,8.8442,7.7195,2.297,2.5254,4.4938,4.715,1.862,1.9,18.7096,19.3901,5.31,7.2955,4.2925,4.748,1.4007,1.2911,3.3463,3.0378,8.1859,7.0379,15.1456,15.5946,2.6114,3.2935,4.7305,4.4217,3.9426,3.353,1.6023,1.4772,4.4516,4.5149,11.5674,10.8436,3.0328,3.3782,2.2818,2.3024,1.806,2.1463,10.4786,12.5857,2.1795,2.6743,2.138,2.2909,13.1865,13.433,1.7788,1.9207,1.3419,1.5057,15.9411,16.0232,6.8058,6.0863,8.3097,8.1149,5.0079,3.433,10.0633,11.1999,7.0267,7.4313,8.1907,7.8021,3.9979,4.2005,1.3964,1.5216,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd322,69,69,F,1.1649,2.0062,0.42838,0.48445,0.8884,0.8969,17.1079,3.6893,3.5048,48.5734,47.9713,14.4586,14.4933,232.0406,225.7956,1.3068,3.619,3.3827,0.38128,0.36448,10.9352,13.6102,1.4582,1.5027,3.6951,3.8576,7.4221,7.4687,4.4563,4.6501,0.0721,4.3786,2.2981,2.5852,0.41983,0.41206,4.8806,5.078,4.2613,4.5297,2.0206,1.9626,9.8124,9.2893,2.9195,3.188,4.2691,4.5986,4.2944,4.4845,1.8231,1.7888,2.1033,2.308,4.3942,4.015,8.055,7.6282,2.2995,2.3378,7.6067,7.393,12.3394,12.1164,7.7853,7.2281,2.5657,2.7463,5.2013,5.367,2.0238,1.9821,20.9149,21.8414,5.5033,6.6156,4.3562,4.5033,1.0614,1.2117,2.7296,2.5027,9.1711,8.1578,16.7309,15.7612,3.3699,4.0413,4.5684,4.6343,3.6352,3.6257,1.8217,1.8326,4.5414,4.9629,12.1045,12.1496,2.9352,3.4545,2.3087,2.4109,2.0384,2.5855,10.1976,11.3309,2.6656,2.7234,1.9752,2.2297,13.1425,13.5479,1.8111,2.2683,1.3669,1.3665,16.4919,15.8498,5.3549,5.7856,8.2654,8.7963,4.5806,3.7427,12.0503,12.2536,7.0929,8.3187,8.0704,8.47,3.6455,4.2711,1.4907,1.7436,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd323,67,67,M,1.9942,2.3465,0.367,0.39642,0.68779,0.6752,17.3904,3.2081,2.9916,47.6643,47.0307,14.3293,15.0376,225.2247,217.8863,2.1828,2.914,2.7239,1.591,1.363,26.4693,21.5998,1.596,1.5403,4.4426,4.2979,6.3113,6.6129,4.6607,4.9461,0.07446,5.657,2.356,2.7406,0.36577,0.37297,4.1127,4.7897,4.4412,4.2701,1.6276,1.4371,11.4685,11.4997,2.9724,2.6353,4.5909,4.2639,4.7794,3.9519,1.3272,1.2683,2.2165,2.0577,3.4371,3.2728,5.7859,6.3431,2.0209,2.0388,6.6274,6.0786,9.6194,9.0001,7.5903,7.0945,2.1145,2.1942,5.0121,4.9652,1.7877,1.7203,16.2846,16.5372,6.0089,7.1611,3.6809,3.6734,0.98315,0.99809,1.9825,2.3509,7.6286,7.2627,11.8751,11.6384,2.9165,3.6447,3.9088,4.1568,3.356,3.2668,1.5566,1.4428,4.295,4.5968,12.0991,11.2253,2.7822,2.7031,2.6554,2.4977,2.3612,2.3883,12.6225,13.1955,2.1194,2.4597,2.2593,2.5142,12.1733,11.3597,1.9105,1.7346,1.1022,1.1554,13.268,14.2183,5.5635,5.3179,8.4487,10.3407,4.6521,3.5935,10.9819,11.7028,6.9194,6.4605,6.266,7.0149,3.4781,3.4383,1.6167,1.6273,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd324,70,70,F,1.2434,1.4205,0.3393,0.35337,0.79506,0.77713,17.2983,2.4047,2.448,39.7325,39.2713,14.3601,14.2666,202.9975,186.1223,1.148,3.2704,3.1275,0.69273,0.48349,13.0913,19.5313,1.4893,1.453,3.1251,3.2616,6.9816,6.9254,4.2961,4.5684,0.07385,3.9762,1.8288,2.2808,0.33346,0.35595,3.8518,4.1858,4.1263,4.5975,1.7692,1.4496,9.4821,8.5316,3.4087,3.1948,3.9783,3.6261,4.9237,4.8068,1.5363,1.5804,1.9232,2.0563,3.8378,3.4058,6.1642,6.4082,2.0611,2.0723,5.9288,5.7301,10.4651,10.0282,7.3975,7.5524,2.1353,2.3922,4.4469,4.3733,1.7617,1.7345,18.1155,18.1078,4.6593,5.3515,3.8878,3.7917,1.1711,1.2448,2.5616,2.5869,7.4214,5.955,12.9491,12.9082,2.9533,3.788,4.1069,4.61,3.1232,3.2668,1.5948,1.6605,3.6334,4.0943,10.0699,9.6885,2.7657,2.9404,2.1884,2.1631,2.2513,2.4363,10.3212,10.8106,2.1903,2.432,1.9547,2.2385,12.1241,11.3869,1.8179,2.2049,1.0998,1.1575,14.1307,14.4419,5.1071,5.3437,7.8089,8.1623,4.3661,4.138,9.4135,11.5286,7.4041,6.7935,7.7021,6.6838,3.1585,3.6306,1.5549,1.7159,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd325,75,75,F,1.9779,2.6574,0.33293,0.35524,0.68779,0.59288,16.3551,3.014,3.2433,44.0019,44.2579,12.1539,12.804,164.8177,161.0911,1.8746,2.9717,2.577,0.69365,0.56028,17.2587,21.7893,1.3243,1.3368,3.5583,3.5654,5.8237,5.8946,3.9747,4.2762,0.07564,4.4055,2.0028,2.4138,0.3306,0.33925,3.5866,3.7923,3.364,3.4544,1.5852,1.4318,9.5312,8.5595,3.1364,3.162,3.3255,3.612,4.1616,4.2504,1.203,1.1384,1.7128,1.8755,3.0947,3.3009,7.1564,6.5086,1.8475,2.1122,5.7367,6.3053,11.0946,9.4804,7.2798,7.0679,1.9705,2.3387,4.2511,4.3147,1.5083,1.5133,16.5137,16.1258,4.6221,5.3467,3.3801,3.7365,1.1405,1.0947,2.2511,2.3548,6.511,5.9402,14.7741,12.0321,2.8925,3.03,3.7932,4.0524,2.8824,2.4859,1.399,1.4791,3.8963,4.3122,10.5413,10.4332,2.7432,2.7039,1.9287,1.9934,1.9047,1.9638,10.4524,11.5164,2.0584,2.2128,1.7943,1.9755,11.7555,12.4066,1.6462,1.5474,0.98828,1.0666,14.4863,14.1541,4.5127,4.3746,6.9975,8.3436,4.3206,3.2846,8.8931,9.3063,7.3181,7.3087,6.5625,5.8683,3.3347,3.6681,1.3212,1.2385,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd326,77,77,F,1.2064,1.2667,0.40112,0.45025,0.82078,0.82365,18.213,3.1158,3.1574,46.3654,45.9081,15.2028,15.7193,237.9884,235.5834,1.4324,3.3734,3.0111,0.52755,0.57533,18.6368,17.7235,1.6604,1.6542,3.7019,4.0139,7.1405,7.4289,4.6372,4.8877,0.07985,4.7656,2.3699,2.5582,0.40119,0.41984,4.8787,5.2082,3.9925,4.5632,1.9942,1.6061,10.4915,9.553,3.3907,3.4654,4.3899,4.5763,4.8917,4.5272,1.676,1.671,1.8978,2.0487,4.3098,3.8123,7.4872,7.6979,2.1746,2.382,7.3511,6.3827,13.2069,11.2932,8.2699,7.4707,2.3336,2.4053,5.2013,5.4468,2.0711,1.9973,20.0056,19.5364,6.0093,5.6511,4.1554,4.4401,1.302,1.1499,2.951,2.9556,8.9555,8.0969,14.432,13.8103,3.3883,3.7622,4.3587,3.9757,3.332,3.2658,1.5889,1.7375,4.3186,4.8942,10.2967,10.6801,2.9552,3.0372,2.0389,2.0851,2.4781,2.7908,11.7534,11.7131,2.16,2.6925,1.8649,2.341,13.0812,12.6851,2.2101,2.376,1.244,1.3161,15.6544,17.1693,5.4748,6.337,8.3761,9.0181,4.5338,3.6894,11.0128,11.0671,8.7756,7.5533,7.7616,6.5995,3.5768,3.9839,1.4892,1.814,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd327,78,78,M,2.3554,2.6714,0.37692,0.40169,0.82463,0.81901,19.522,3.0675,2.8481,50.4762,50.3468,16.1704,16.5949,231.8648,231.8286,2.0243,3.3254,3.1595,1.6411,1.7795,30.6841,33.4058,1.7119,1.6522,3.867,3.8948,7.2864,7.5452,4.837,5.0712,0.08434,5.1119,2.4024,2.9806,0.38326,0.4173,4.491,4.8193,4.4452,4.3894,1.6874,1.5729,8.9804,8.4519,4.1188,3.6084,4.3366,5.1241,5.4773,5.0645,1.5758,1.4931,2.0236,2.0467,3.6164,3.4626,7.1123,7.0253,1.8605,1.993,7.0583,7.2429,11.9174,11.1838,8.0021,7.5044,2.1988,2.3816,5.2304,5.1542,1.7002,1.7025,17.5666,17.7121,5.1801,6.1117,3.528,3.9091,1.0921,1.0397,2.5263,2.756,7.379,6.9886,14.4409,13.4569,3.7168,4.0946,4.0239,4.3265,3.7074,3.5511,1.4891,1.526,4.0638,4.4456,11.258,10.0543,2.846,3.1414,2.7021,2.4977,2.2331,2.275,11.0358,12.7777,2.3019,2.2691,2.1613,2.6377,11.9413,12.5485,2.2771,1.9411,1.1729,1.2607,14.486,14.2564,5.3986,5.1103,8.4684,8.6116,4.4252,3.88,9.187,9.8591,8.0056,6.9651,7.6076,7.6639,3.7643,3.7072,1.5416,1.8601,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd328,72,72,F,1.2149,1.6201,0.40112,0.41591,0.77349,0.8008,17.8487,3.2685,3.1426,45.7299,44.4757,14.3962,14.7292,211.353,215.6791,1.2586,3.2123,2.8585,0.56721,0.51445,12.4613,12.2702,1.6023,1.613,3.8124,3.816,6.6585,6.8234,4.4484,4.7448,0.06899,4.4512,2.0938,2.4202,0.35107,0.38798,4.2276,4.8562,3.9127,3.9484,1.9261,1.874,9.0647,7.0113,3.233,3.5413,4.2217,4.5054,4.6451,3.8777,1.504,1.4953,2.0784,1.9378,3.6906,3.3415,6.9727,6.8267,2.0692,2.1293,5.4877,5.9188,10.1979,10.6496,7.262,6.8839,2.3463,2.7182,4.88,4.8665,1.7953,1.902,19.7995,19.6619,4.1514,5.0842,3.9613,4.2769,1.149,1.1988,2.3443,2.588,8.4599,7.4088,14.3297,14.4684,2.3021,3.1687,3.5923,4.0073,3.0623,3.215,1.7914,1.7466,4.1182,4.6327,10.9019,10.5044,2.7786,2.9568,2.2847,2.3419,2.2163,2.3883,9.6623,11.1147,2.3858,2.9716,2.1182,2.3188,11.3933,11.3869,1.7839,2.1825,1.0894,1.0998,14.1941,14.5211,5.3775,5.3156,7.4893,8.3125,4.0568,3.0282,10.5532,11.6074,7.2625,6.6694,7.4283,7.7727,4.0176,4.504,1.4453,1.7203,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd329,71,71,M,1.6236,1.69,0.39026,0.39471,0.86232,0.84092,17.8769,3.5155,3.292,48.961,49.0913,14.1657,14.4634,201.885,200.2379,1.6254,3.2733,3.0623,0.52761,0.60747,15.5073,15.0126,1.4916,1.4822,3.4345,3.4323,7.1738,7.3428,4.4848,4.7331,0.07026,5.4109,2.2979,2.6607,0.39933,0.44027,4.8784,5.4008,4.1115,4.241,1.9924,1.7008,11.4551,10.5471,3.1256,3.0054,4.3878,3.8371,4.8925,4.1609,1.9619,1.7295,2.1956,2.0577,4.244,3.9876,8.2273,8.1695,2.1596,2.0272,6.2753,6.0712,13.026,12.6099,8.945,7.9636,2.5749,2.5448,5.5455,5.4468,2.0711,1.8474,20.6739,20.7531,5.4473,7.3017,4.0835,3.9981,1.0672,1.1816,2.5152,2.7991,8.9555,7.7655,15.1999,15.7275,2.9491,3.1313,4.7305,4.4217,3.6151,3.2971,1.6218,1.5799,3.8501,4.3916,9.8164,9.759,3.3377,3.6146,2.6966,2.4935,2.3097,2.2081,10.5419,12.7437,2.6274,2.6031,2.5206,2.7526,14.1,15.5268,1.8934,1.6008,1.3198,1.3238,16.485,15.5468,5.871,5.5681,8.9082,10.0076,4.6521,3.4312,11.5183,11.0565,8.4316,9.3392,8.9099,8.8122,4.0489,3.7874,1.5167,1.3138,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd330,72,72,F,1.2241,1.2667,0.34399,0.38516,0.71864,0.71617,14.8491,2.4875,2.6066,42.589,42.4254,12.0435,12.6795,212.1663,212.0113,1.2238,2.9715,2.7905,0.42204,0.36505,11.1323,13.8198,1.4165,1.403,3.0212,3.0473,6.2558,6.4419,3.8928,4.078,0.06871,4.5469,2.2016,2.3794,0.31821,0.34545,4.2118,4.1603,3.7146,3.6477,1.524,1.4462,9.622,9.3178,2.8362,2.6577,3.6395,3.1584,4.4069,3.4814,1.428,1.3406,1.8365,1.8246,3.3608,3.0266,6.2261,6.2374,2.013,2.0723,6.044,6.1018,10.212,9.954,6.88,6.181,1.8522,2.2312,4.738,5.0687,1.6283,1.4705,16.273,17.0576,4.7324,6.1877,3.4901,3.86,0.7652,1.0491,2.0625,2.3043,6.5032,5.826,11.8607,12.0092,2.1902,3.1119,3.6688,3.5194,3.0486,3.3025,1.314,1.4125,3.5651,3.9854,8.9853,9.1132,2.4929,2.7706,2.0102,1.9472,2.0738,2.0631,11.2679,12.7977,2.2277,2.3931,1.8414,2.0385,10.8511,11.1521,1.6533,1.5861,0.93498,0.99363,13.4779,13.2611,4.518,4.3746,7.691,9.1592,3.6081,3.4955,10.921,9.5738,6.3782,5.8236,6.8304,6.5154,3.0691,3.6143,1.1985,1.153,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd331,69,69,M,1.4538,2.9422,0.42429,0.44617,0.89923,0.871,20.7649,3.4062,3.127,46.3204,46.8022,14.8788,15.2945,226.904,226.4608,1.0956,3.4863,3.1564,0.51198,0.48128,12.814,16.6159,1.7119,1.6373,3.8073,3.9264,7.2774,7.3533,5.131,5.2657,0.07484,4.4512,2.2275,2.5807,0.41486,0.44719,4.5332,4.9042,4.4752,4.6694,1.7656,1.6322,10.7934,10.3745,3.6394,3.0632,3.9016,4.4184,5.4766,5.1517,1.7703,1.656,2.0381,2.2589,4.2184,3.6769,8.1498,8.0387,2.1109,2.0272,6.9888,7.5747,14.1024,12.7368,8.8864,8.4943,2.3287,2.4247,4.69,5.2531,1.8857,2.0564,17.3005,18.7331,5.7983,7.0934,3.97,4.3626,1.0456,1.206,2.5254,3.0479,8.0824,7.0881,16.3772,15.2632,3.8541,3.9649,4.843,4.9054,3.6886,3.264,1.7302,1.6557,4.683,5.5126,12.5686,12.2753,2.9531,3.2482,2.4661,2.3709,2.4729,2.498,10.4511,12.1538,2.6607,2.7361,2.0373,2.3045,13.2089,13.1288,2.0567,2.2445,1.2019,1.2546,15.887,16.1223,6.2218,6.09,9.3669,10.4137,4.5674,4.0371,11.4734,11.5742,7.5306,8.3879,8.5532,8.0864,3.8575,3.6503,1.5776,1.6861,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd332,72,72,F,1.6203,1.7275,0.35805,0.37612,0.68493,0.6146,15.1679,2.9039,2.9964,39.8014,40.0559,12.0168,12.7184,190.7115,191.4973,1.509,2.7875,2.4984,1.2937,0.9251,12.8318,15.393,1.4408,1.3178,3.4974,3.6017,5.8336,5.8214,4.1153,4.1851,0.07015,3.7908,1.9097,2.3747,0.34592,0.36027,4.0405,4.1585,4.0829,4.1057,1.5197,1.3047,9.6351,9.3178,2.1377,1.8742,3.7618,3.7157,3.6957,3.4567,1.2702,1.1777,1.647,1.9806,3.2243,2.9635,6.6665,6.5838,1.8708,1.8986,4.9555,5.038,10.7232,10.9496,6.5715,5.6572,2.084,2.0882,4.3234,4.1108,1.5712,1.5268,15.7474,16.5266,3.8943,4.9091,3.7264,3.6247,0.86988,1.1048,1.9606,2.4209,6.74,6.1179,15.7108,13.6412,2.1773,2.6117,3.503,3.6689,2.9562,3.6754,1.3687,1.4233,3.6107,4.1078,8.3795,10.3191,2.5366,2.5063,2.4073,2.4581,2.2338,2.1041,8.4056,10.436,1.9772,2.0158,2.0168,2.1583,10.3723,11.5839,1.798,1.7159,1.0802,1.0938,11.5255,10.7096,4.5982,4.4778,6.8754,8.2312,3.3676,2.7485,9.3587,7.8501,6.8531,6.4601,6.9277,6.874,3.3878,3.6013,1.5205,1.543,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd333,69,69,F,1.6583,1.8097,0.28645,0.34264,0.60361,0.68262,15.5147,2.5025,2.5484,39.7329,39.5564,11.6495,11.7821,186.1888,190.1899,1.7597,2.6271,2.4995,1.6519,1.0868,19.6264,20.6888,1.5685,1.4265,3.2751,3.5801,6.0708,6.4532,4.2401,4.3906,0.06718,4.3073,2.1242,2.3144,0.32726,0.31728,3.672,4.6022,3.6869,3.9,1.5598,1.1635,7.6621,8.383,3.1413,3.3412,3.6584,3.869,4.214,3.8546,1.2083,1.3117,1.8156,1.9634,3.2742,3.0151,6.417,6.0792,1.7422,1.9011,6.3031,5.5408,9.9723,9.7291,7.4049,6.9013,2.0766,1.9626,4.0861,4.3943,1.4608,1.4944,16.9845,18.0381,5.4068,5.7216,3.4543,3.5479,0.84444,0.85443,2.2109,2.147,7.2797,6.4821,11.2172,12.3947,2.7949,2.892,3.8589,3.8423,3.4978,3.463,1.356,1.4158,3.639,3.8951,9.6636,9.4853,2.5703,2.7139,2.2408,2.2224,2.0846,1.9729,9.367,11.5268,2.3006,2.2483,1.9547,2.0408,11.2915,11.6058,1.6751,1.7921,1.0685,1.0907,12.2432,12.5947,4.6107,4.5871,6.7642,8.5524,3.8065,2.7602,9.6784,9.686,6.2549,5.83,7.0902,7.1955,3.1249,3.4857,1.3466,1.3736,,13,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd334,72,72,F,1.6203,1.9146,0.32046,0.35821,0.67646,0.61588,18.2718,2.7199,2.626,45.9086,45.9631,14.8152,14.6074,202.0779,201.3279,1.7597,2.9372,2.577,0.98311,0.9679,20.0417,19.2761,1.5907,1.5023,3.2527,3.187,6.4129,7.0902,4.5123,4.7356,0.08037,4.7414,2.2165,2.7636,0.31248,0.31325,3.7724,4.1858,3.5284,3.5419,1.7559,1.3901,8.562,8.383,2.9883,2.8007,3.6452,3.3012,4.738,3.929,1.4063,1.2807,1.547,1.6136,3.5418,3.2963,6.9781,6.8223,1.8429,1.9337,6.4583,5.6675,9.1167,10.6496,7.5607,6.9263,2.1353,2.1152,4.2146,4.325,1.5712,1.5915,18.2283,15.7424,4.7603,5.7343,3.4573,3.5828,0.97444,1.204,2.478,2.5673,7.0396,6.5976,11.1503,12.8189,3.0325,3.1802,3.9841,3.9924,2.7864,2.473,1.4724,1.2362,3.3779,3.8501,9.5582,9.3968,2.8203,3.0333,1.9343,2.0284,1.9191,1.9729,9.7397,11.177,2.5005,2.1021,1.8343,1.965,11.96,11.9346,1.5526,1.6417,1.1548,1.1623,12.9203,12.274,4.5318,4.8072,6.0292,8.2673,4.3661,3.3708,9.6925,10.2826,6.3734,6.1527,7.4567,7.2682,3.4248,3.4214,1.2763,1.3564,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd335,70,70,M,1.9853,1.759,0.37982,0.43307,0.86543,0.95116,16.0602,3.263,3.0868,46.4564,47.2241,13.3453,13.3684,222.5085,216.3348,1.7409,3.6778,3.6418,0.6937,0.67237,18.3746,21.454,1.4269,1.5129,3.4455,3.605,7.4431,7.4497,4.2283,4.3716,0.07643,4.7007,2.1339,2.7688,0.38429,0.38747,4.3327,4.9722,3.5838,3.3138,1.7432,1.6915,10.2154,9.9207,3.4823,3.3652,3.9506,4.0188,5.0832,4.3801,1.8278,1.8532,1.9458,1.996,4.0767,3.4284,8.2799,7.8013,1.9633,2.0006,6.6846,7.0384,13.1325,12.081,9.0811,7.8393,2.3243,2.6274,5.0183,4.8754,1.7081,1.8184,20.6915,19.892,5.117,6.8466,3.6767,3.9938,1.1451,1.0132,2.6987,2.3144,7.6513,6.8858,15.5243,14.8551,3.0677,3.5237,5.0403,5.2773,3.7331,3.6453,1.55,1.5683,4.8263,5.0648,12.8049,11.4852,3.2669,3.5992,2.3679,2.3847,2.548,2.2689,12.0025,13.0189,2.5161,2.8016,2.1073,2.3318,13.0812,14.6171,1.9446,2.1445,1.1721,1.2251,13.7294,14.8169,5.2705,5.09,9.1188,8.8943,4.2818,3.5384,10.3976,9.9203,7.7033,8.561,9.4681,9.5122,3.1766,3.7579,1.4361,1.5738,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd336,73,73,M,1.7801,2.5602,0.41651,0.46245,0.83316,0.79891,18.3098,3.5965,3.4738,49.3798,50.3468,15.0825,15.7173,222.5126,221.6688,1.2255,3.3786,3.1863,0.53831,0.47243,16.9137,16.4158,1.5114,1.4418,3.8316,3.827,7.0836,7.8167,4.5929,4.7553,0.08568,5.1803,2.2979,2.8095,0.38806,0.38773,4.3045,4.6851,3.8856,4.2189,1.8168,1.6083,10.8548,8.7108,3.2174,3.2874,3.987,3.9068,4.1039,4.4391,1.7405,1.5748,1.7889,1.9025,3.7308,3.507,7.1612,7.029,2.1974,2.1666,6.6582,5.6291,11.7056,11.1615,7.6085,7.3579,2.3294,2.3401,4.6356,4.8107,1.8468,1.9453,17.9533,18.4741,5.2318,5.7343,3.854,4.0077,1.1499,1.1615,2.6537,2.7107,8.0209,7.0344,14.1365,13.7679,3.0677,3.8664,3.8708,4.2695,3.6146,3.6564,1.6491,1.4159,4.248,4.555,10.9296,11.0804,2.9481,3.0225,2.2595,2.2281,2.2135,2.398,9.0906,10.1322,2.2324,2.4196,1.943,2.2018,12.1226,11.4577,1.9632,1.965,1.2302,1.2704,14.4163,14.2595,4.8324,5.0772,7.3627,8.3596,4.2216,4.1879,10.5653,10.954,7.067,7.4695,8.0311,7.2595,3.69,3.6908,1.5421,1.6896,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd337,71,71,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd338,,,M,1.705,1.0793,0.28531,0.32098,0.6096,0.54267,14.6471,2.3944,2.3271,7.8188,18.1896,0.71528,10.0326,168.1404,167.2846,1.7563,2.554,2.5125,0.99284,1.2114,16.8999,26.5933,1.4,1.4276,2.9832,3.0698,5.7143,6.0637,3.8951,4.0697,0.08783,3.926,0.88859,1.6169,0.30157,0.32011,3.2577,3.5158,3.102,3.1785,1.2883,1.1283,8.3589,7.0338,3.3005,2.6444,3.4983,3.7363,4.7214,3.929,1.1403,1.0259,1.681,1.6744,3.0302,2.7854,5.5859,3.9341,1.5262,1.6227,5.4694,3.8533,8.6221,6.8215,7.7439,6.8315,1.7016,1.892,3.3637,3.5663,1.3076,1.3178,14.8746,15.4708,4.2287,4.7701,2.92,2.9419,1.1493,0.9521,2.5994,2.1757,6.2531,5.6687,10.1412,9.1824,2.8122,3.1951,4.0199,3.5636,3.0829,3.112,1.1677,1.1352,3.0891,3.5591,9.4847,8.3454,2.1022,2.7654,1.7383,1.7402,1.9166,1.9303,8.3505,9.5882,1.9076,2.0031,1.457,1.6021,10.0972,10.9442,1.5787,1.582,1.0147,1.0886,12.5051,11.3018,5.1356,5.1003,6.1333,6.1559,3.7279,2.9742,8.0575,8.881,5.4535,5.1665,5.7627,5.2112,3.1211,3.3531,1.326,1.1515,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd339,,,F,0.70972,1.2959,0.34892,0.39511,0.87013,0.88146,17.5065,2.8534,2.7829,35.0639,35.1182,16.2098,16.4896,232.1245,225.8912,0.94698,3.1839,2.7706,0.35763,0.35349,7.0678,8.6117,1.5167,1.414,3.3828,3.33,7.1627,7.512,4.4731,4.701,0.08159,4.2224,1.9428,2.2734,0.39142,0.3918,3.5594,4.3072,4.0215,4.4858,1.6747,1.4703,10.4836,10.4591,3.1797,2.787,3.6347,4.0739,5.028,4.7039,1.8057,1.7536,1.7941,2.0719,3.5843,2.956,8.1453,8.1556,2.1574,2.0302,6.9628,6.143,12.2874,12.2691,7.6419,7.1563,2.1403,2.4183,3.9332,4.426,1.8738,1.6231,18.477,17.9842,5.279,6.4813,4.0038,3.9559,1.0106,1.0919,2.4053,2.5861,7.7828,6.178,15.9131,15.3681,3.0358,3.0161,4.3265,4.175,3.1583,3.1072,1.6075,1.4715,3.6601,4.0943,9.8438,9.6546,3.0379,3.1178,2.2143,2.1616,2.2087,2.4953,9.3283,11.5915,2.4315,2.5123,2.1469,2.2493,11.8168,11.5614,1.9763,2.1021,1.1978,1.2136,15.0565,14.2032,5.2241,4.9117,7.6044,8.7975,4.8322,3.6105,10.5653,10.1991,7.3975,7.6646,7.9912,7.6055,3.8404,4.103,1.3216,1.6621,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd340,,,F,1.5895,1.6818,0.40101,0.43272,0.82696,0.82436,15.5975,3.1972,3.0836,26.9492,27.3723,11.4186,12.2296,214.4995,213.1765,1.3578,3.328,3.1929,0.4579,0.41701,10.9352,12.3222,1.4997,1.4856,3.3584,3.4616,6.1974,6.4197,4.4591,4.7031,0.07095,4.5422,1.9186,2.1901,0.39035,0.37687,4.0432,4.5304,4.4772,4.8668,1.6186,1.4732,9.3977,8.9824,3.58,3.2596,4.1462,4.2508,4.6554,4.7694,1.7124,1.6028,2.1704,2.308,3.3626,3.3412,6.9456,6.9429,2.0423,2.0363,6.41,6.4585,11.1523,10.1414,8.7088,7.0703,2.1928,2.1942,4.0993,4.3498,1.6283,1.694,17.5795,17.6661,4.7728,6.0193,3.7199,3.9559,0.89224,0.85443,2.2469,2.346,7.9829,6.7603,14.516,13.0377,2.917,3.4076,4.4684,4.471,3.4022,3.2598,1.5704,1.4849,3.705,4.0902,10.5466,10.1569,2.9008,3.2234,2.5876,2.5935,2.3783,2.5337,9.7286,10.9738,2.4355,2.5069,2.2704,2.3724,11.388,12.4411,1.8124,2.1297,1.1223,1.263,13.0346,13.0842,5.115,5.2739,7.4967,9.1593,4.4996,3.7167,9.5941,10.7412,6.9062,7.0721,8.8179,7.755,3.46,3.6669,1.7003,1.7795,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd341,38,38,M,1.9259,2.1809,0.34273,0.33492,0.73419,0.69628,18.7455,2.5437,2.2522,45.7654,45.6187,15.2305,15.2435,203.9915,197.9945,1.7956,2.8752,2.5467,1.5235,1.3141,21.9802,21.0729,1.5904,1.5023,3.1242,2.8915,5.9256,6.431,4.6781,4.9461,0.08981,4.5608,2.2487,2.1259,0.30397,0.31632,3.672,4.1991,3.6489,4.0666,1.4974,1.4037,8.1557,7.1867,2.8367,2.9683,3.5839,3.5359,3.8457,3.7602,1.4345,1.3546,1.8398,1.8077,3.5199,3.3368,6.5829,6.1208,1.6895,1.6831,5.4161,5.1321,10.2767,9.9763,6.5107,6.4052,2.0023,2.1332,4.0403,4.3193,1.406,1.4807,16.5221,17.7432,4.0748,5.0582,3.3191,3.3948,1.0944,1.0018,2.3075,2.0936,6.975,6.6773,11.4993,11.8918,2.6285,2.7303,3.6165,3.448,3.1011,2.9593,1.4462,1.4126,3.5503,3.8922,8.8895,8.4977,2.5847,2.8352,2.1295,2.1676,1.7204,1.7698,9.0295,10.1974,2.0893,2.3736,1.928,2.0771,10.1076,11.0022,1.3702,1.3453,0.95964,1.009,13.1293,12.5684,5.2929,5.033,6.171,7.2704,3.1376,2.71,7.8694,10.2199,3.4409,5.4578,6.9204,7.0087,3.2715,3.5983,1.2178,1.1341,,9,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd342,,,M,1.4773,3.2169,0.38883,0.4002,0.88096,0.90119,19.522,2.8217,2.6265,49.3724,50.7717,15.1746,15.6105,253.2645,252.6338,1.3017,3.4143,3.1809,0.52265,0.54447,13.3892,15.3366,1.6517,1.6474,3.3033,3.3731,7.1647,7.252,4.7776,4.8736,0.08328,4.4829,2.51,2.801,0.37715,0.3918,4.7227,4.8237,4.0464,3.8636,2.2097,1.6783,12.0047,10.0351,3.1256,2.7666,3.7413,4.0188,4.8925,4.5426,1.7414,1.7413,2.1043,2.0867,4.3053,4.7688,7.329,6.9908,2.4457,2.4964,7.3738,6.2704,10.9388,9.9995,8.0483,7.1441,2.739,2.5448,5.0583,5.3086,2.3196,2.3246,20.0346,19.8549,6.2556,6.6358,4.7054,4.7475,1.0672,1.2289,2.5739,2.5155,11.2819,7.1431,13.5532,12.5885,3.03,3.3707,4.2321,4.1489,3.6965,3.1331,1.8723,1.7375,4.2871,4.8098,10.0915,12.2321,2.8289,3.1578,2.3018,2.2232,2.0498,2.2866,10.9025,12.8651,2.4163,2.8223,1.9752,2.1393,11.8669,12.42,1.8426,1.8746,1.3886,1.3923,14.6592,15.5642,5.1314,5.0238,8.9313,8.876,4.3743,3.7717,11.3561,11.8615,7.2861,6.8017,7.8526,6.7322,3.7315,3.9689,1.295,1.507,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd343,70,70,M,1.3735,2.1155,0.37286,0.37405,0.81699,0.81507,16.2223,2.8062,2.5513,44.5202,43.8058,13.5409,13.82,220.5805,220.6313,1.1023,3.2428,3.0054,0.55701,0.54806,11.7448,17.2025,1.5581,1.5483,3.4135,3.4552,6.7747,6.9254,4.3102,4.5147,0.07815,4.5216,2.0747,2.2835,0.32953,0.37323,3.5433,3.6751,3.3617,3.4893,1.4595,1.4543,10.6519,8.1467,3.1924,2.9269,3.5078,3.464,4.1096,4.2643,1.4859,1.5448,1.7421,1.7712,3.1352,2.6873,6.6617,6.6684,1.7637,1.7039,5.6325,4.866,10.4471,10.1853,6.7319,6.4209,1.885,2.3387,4.0824,4.6468,1.5278,1.5133,16.507,17.6929,5.0751,5.2048,3.3717,3.4982,1.1627,1.0747,2.663,2.3793,6.5869,5.9385,12.6398,11.4825,3.0861,3.7023,3.6682,3.6688,2.9334,2.9829,1.314,1.4802,4.118,4.5808,10.0101,10.1946,2.6373,2.9456,2.0164,1.9261,1.9492,2.0723,8.9115,10.4106,1.9955,2.5752,1.7823,1.756,11.4033,11.1563,1.495,1.6351,0.98169,0.99153,13.2802,13.027,5.0658,4.9899,7.5562,6.9192,3.6644,3.8033,10.3903,9.1754,6.0969,6.018,6.8304,6.7235,3.036,3.9592,1.1985,1.1738,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd344,75,75,M,1.2993,1.6239,0.36741,0.40093,0.78586,0.76662,15.5862,2.5003,2.459,43.3741,42.7712,12.9533,13.644,197.2012,191.6235,1.4058,2.9276,2.7669,0.45382,0.42583,11.4556,12.2916,1.4927,1.4856,3.5759,3.6017,6.8266,6.9487,4.8225,5.1026,0.0845,4.371,2.0083,2.2727,0.35545,0.34714,3.829,4.2242,3.7167,3.9101,1.7366,1.5746,9.322,7.0883,3.2221,3.5413,3.7881,3.9223,4.6551,4.9988,1.504,1.5263,2.0149,1.7423,3.6085,3.483,6.8863,7.2039,1.8166,1.8676,7.5167,6.8015,10.8623,11.4267,7.3271,6.8138,2.205,2.0638,4.8793,4.4251,1.5945,1.5915,18.4196,18.3843,5.7379,7.057,3.6345,3.847,1.135,1.1307,2.4558,2.7371,6.8932,6.6941,13.8385,14.1416,2.7936,3.6103,3.8176,4.052,3.2773,3.34,1.4504,1.3449,4.0465,4.555,10.1131,10.822,2.662,2.9231,2.2027,2.3037,2.0448,2.3339,9.3692,11.4371,2.1937,2.2928,2.0228,2.1981,13.7294,12.9802,1.8962,1.8785,1.0959,1.1494,14.486,14.4419,5.016,5.2827,8.0882,9.3872,3.9936,4.0874,10.5337,11.5678,6.8121,7.4916,7.6642,7.1894,3.3992,3.5039,1.6178,1.5556,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd345,66,66,M,1.0188,1.5136,0.36748,0.40136,0.86232,0.89996,17.4445,2.8256,2.818,44.6002,44.0634,14.4502,15.0749,221.7553,216.6593,1.0792,3.4127,3.1606,0.57073,0.47482,9.6558,9.3251,1.5318,1.5699,3.5115,3.6167,6.7086,7.1669,4.4242,4.6676,0.07575,4.5216,2.0977,2.4164,0.37715,0.37701,4.0472,4.4059,3.8199,4.0202,1.748,1.6215,10.3369,8.8204,2.8932,2.7239,3.6115,3.9289,4.2675,3.6558,1.8487,1.7568,1.8365,1.9466,3.4663,3.3725,7.9478,7.7764,2.0282,2.1666,6.6846,6.1691,12.0364,11.5464,7.2942,6.533,2.2787,2.4614,4.5711,4.5658,1.6708,1.7445,18.3811,17.8848,5.0409,6.0511,3.8145,4.099,1.1499,1.0867,2.6736,2.6498,7.0645,6.4198,14.54,13.1288,2.9165,3.0453,4.0656,3.9398,3.4272,3.0311,1.6075,1.5683,3.862,4.325,10.2469,10.6443,3.026,3.1477,2.1219,2.1286,1.9296,2.2208,10.1239,11.772,2.5713,2.4995,1.7805,2.1408,13.4418,13.3993,1.6445,1.8005,1.1929,1.2581,13.5861,14.0074,5.1467,4.7806,9.2243,9.4761,4.2762,3.2748,11.5183,11.0512,7.7819,7.0127,8.5122,8.3414,3.5756,3.3446,1.3372,1.507,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd346,70,70,F,1.6635,1.6088,0.38364,0.41575,0.74739,0.66297,16.4464,3.4437,3.1726,42.7345,43.9655,13.6586,14.5244,215.7579,213.5467,1.397,2.737,2.6837,0.6528,0.65246,17.2503,17.7824,1.596,1.5627,3.2779,3.2674,6.6101,6.6044,4.3426,4.782,0.07095,4.4594,1.9961,2.4458,0.35563,0.38798,4.1763,4.8432,4.0238,4.1302,1.6918,1.488,9.0314,8.1165,3.4774,3.3694,3.8148,3.7157,4.661,4.236,1.4992,1.3042,2.0242,1.9192,3.3301,3.359,6.9727,6.3426,2.1532,2.0302,6.5426,5.6658,11.1818,9.7698,7.2141,6.8839,2.1145,2.1445,4.4148,4.7967,1.8028,1.8406,16.7566,16.2543,4.7603,5.7345,3.9069,4.0204,1.0033,1.0916,2.5523,2.2434,8.2775,7.2392,12.9644,11.7532,3.4893,3.4979,3.8431,4.0772,3.5858,3.9138,1.4084,1.4322,3.9231,4.1789,9.7225,9.7817,2.7099,2.8687,2.1738,2.1047,2.1573,2.309,8.9266,11.3727,2.21,2.394,2.1426,2.4078,11.3061,12.8559,1.7839,2.1307,1.2807,1.2789,13.1853,13.6614,5.1721,5.0286,7.0599,7.9271,5.1031,3.3455,10.1591,9.2838,7.0388,6.4001,7.3982,6.6647,3.287,3.707,1.3983,1.7066,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd347,,,M,1.7335,1.907,0.31335,0.33643,0.77299,0.69324,17.3862,3.0232,2.86,49.2345,49.8549,14.3962,15.1274,207.6328,205.4184,1.6773,3.2314,2.83,0.85013,1.161,20.4945,25.7898,1.4785,1.4767,3.0887,3.2904,6.1882,6.49,4.1359,4.3835,0.07799,5.3115,2.2973,2.878,0.33253,0.35084,3.7968,4.4443,3.5752,4.0227,1.4974,1.3156,9.1421,8.3197,3.3281,3.0047,4.0703,4.1142,4.8153,4.3423,1.5454,1.231,1.5552,1.9302,3.3473,3.1787,6.8726,6.0265,1.7976,1.8207,6.7318,5.9868,10.9749,9.9019,7.8651,7.0528,1.9455,2.117,4.1058,4.4356,1.6049,1.6649,16.5415,17.0596,5.5586,5.555,3.2639,3.3495,1.2107,1.3535,2.8162,3.1151,7.1171,6.5059,12.8679,13.505,2.9056,3.2287,4.331,4.1288,2.8089,3.2478,1.3389,1.2952,4.1905,4.089,10.8753,10.3832,2.7692,2.7592,2.2215,2.2243,2.2739,2.1894,10.4524,10.2494,1.8947,2.2895,1.9335,2.1983,11.9596,11.6814,1.8213,1.7159,1.1543,1.1489,12.5855,12.6856,4.781,4.6362,7.5726,7.0505,4.2818,3.5751,10.6544,10.0025,6.8112,7.35,7.5836,6.4164,2.7421,3.1907,1.2488,1.543,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd348,85,85,F,2.2431,1.8675,0.25818,0.32265,0.63979,0.67914,15.5147,1.8066,1.7664,40.6976,40.1862,11.6065,11.9258,193.768,202.1358,2.2824,2.7353,2.5657,1.9068,2.2794,22.4678,33.7795,1.4291,1.4048,2.742,2.9049,5.9197,6.4419,4.1089,4.4346,0.0668,3.7738,1.9097,2.1249,0.28156,0.30458,3.8583,3.7673,3.3663,3.5395,1.4189,1.2255,7.9388,6.946,2.714,2.5089,3.175,3.1451,4.3906,3.9205,1.1853,1.4088,1.5672,1.557,3.0302,2.7854,4.513,5.7522,1.4739,1.5884,4.3628,5.2871,8.2175,8.4953,7.321,7.109,1.7262,1.8822,3.9624,3.9116,1.2638,1.2612,14.6268,14.7495,4.4493,4.6049,3.0235,3.2126,1.2187,1.0947,2.5856,2.4518,6.112,5.527,10.144,10.4151,2.5487,2.8267,3.5914,3.7857,2.7034,2.6425,1.1677,1.097,3.2502,3.8485,8.8201,9.3387,2.3909,2.5452,1.9146,1.8505,1.6664,1.6606,10.5834,11.0569,1.7994,1.9031,1.6124,1.756,10.9179,10.8799,1.6089,1.6524,0.86423,0.93595,11.829,11.7842,4.5279,4.8594,6.0433,6.1559,3.5277,2.6645,8.5565,10.4569,5.2529,5.2606,6.1097,6.3681,2.6569,2.9625,1.2118,1.1486,,8,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd349,63,63,F,1.0172,1.5136,0.338,0.3078,0.8493,0.85531,12.9634,2.8386,2.2636,41.4208,40.9443,11.0519,12.8773,195.4017,190.9265,1.1125,3.131,3.0997,0.35824,0.34487,9.4804,12.0323,1.3054,1.3726,3.4932,3.7125,6.1701,6.2495,3.9091,4.216,0.0684,3.5511,1.9454,2.488,0.33867,0.35564,3.5552,4.4638,3.84,3.708,1.6939,1.3752,9.1163,8.4278,2.8999,2.7963,3.344,3.3405,4.4789,4.6735,1.6513,1.7728,1.7333,1.7211,3.4674,2.9401,6.768,6.3596,1.8571,1.8854,6.114,5.6658,10.2878,9.9019,7.6388,7.101,2.0692,2.1743,4.357,3.9784,1.6467,1.7096,18.2283,17.3223,4.5508,4.7415,3.7047,3.678,0.8214,0.90998,2.2521,2.185,7.1542,6.358,12.5616,11.6401,2.7556,2.8357,4.0318,4.0664,2.7456,2.7807,1.4901,1.3874,3.5002,3.8426,11.9276,11.6746,2.8314,3.097,2.1593,2.0798,1.974,2.2326,9.151,10.8637,2.2235,2.2402,2.1021,2.1117,11.4501,11.5259,1.6444,1.8586,1.1126,1.0952,13.9114,12.6978,5.2838,4.8268,7.3672,7.3882,3.6506,2.8725,9.4267,9.8832,6.1392,6.3079,7.4184,7.2184,3.4556,3.4373,1.2774,1.4821,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd350,68,68,M,1.4677,1.8126,0.33456,0.37092,0.76962,0.77227,15.54,2.6297,2.7309,48.197,47.0212,13.0406,13.7581,178.6,181.3242,1.2465,2.9478,2.7669,0.55737,0.41764,9.5855,11.4231,1.4289,1.4316,3.4679,3.7227,6.1602,6.2609,4.1014,4.3168,0.08828,4.8149,2.3524,2.5628,0.34201,0.35342,3.4882,4.2006,3.349,3.8945,1.6056,1.3958,8.252,8.2641,2.79,2.4942,3.6133,3.6776,3.9814,3.8352,1.4985,1.4514,1.6922,1.8315,3.309,3.1183,7.1123,6.5483,2.013,2.0461,5.5082,4.832,11.3054,10.182,7.1085,6.4685,1.9966,2.067,4.3293,4.245,1.5869,1.6313,16.1322,16.7384,5.1691,5.0941,3.6181,3.6508,0.90069,1.0396,2.3342,2.4124,7.715,6.5881,13.6445,12.4233,2.4467,2.8267,3.6809,3.5443,2.7727,3.1135,1.4943,1.3155,3.753,4.0792,9.3593,9.5844,2.7711,2.7336,2.0246,2.021,1.779,2.1672,9.0977,11.135,2.0825,2.2483,1.9409,1.9736,11.1298,11.2192,1.7637,1.6485,1.2428,1.2506,13.6325,13.5618,5.1412,4.9445,6.6869,8.3044,3.4902,2.71,8.4749,10.1863,6.047,5.83,6.8489,7.3018,3.2797,3.2833,1.4185,1.5013,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd351,70,70,F,1.6635,1.6066,0.35586,0.39098,0.69622,0.68886,14.7753,3.0468,2.9964,39.8014,39.5951,12.0467,12.1929,197.9988,190.1632,1.6254,2.6159,2.6792,1.277,0.9251,16.9487,21.0381,1.4408,1.2638,3.3584,3.2992,5.8286,5.8002,3.9093,4.1222,0.07686,4.3435,2.0028,2.4327,0.35027,0.33321,3.6592,4.2505,3.8703,3.9464,1.4567,1.3804,8.8693,9.0173,2.8613,2.7036,3.6874,3.6323,3.7323,4.2084,1.2651,1.3635,1.8298,1.8077,3.3854,2.9356,5.7704,6.3067,1.8429,1.9552,5.5004,4.9728,8.5353,9.4931,6.5178,6.181,1.8889,2.1365,4.2837,4.3943,1.6125,1.6783,15.7474,17.2931,4.4501,5.159,3.3879,3.5451,0.86393,1.1393,2.4117,2.3196,7.2337,5.5905,10.0789,10.6656,2.391,2.7622,3.503,3.6566,3.1011,3.2404,1.2867,1.4934,3.8912,4.4367,9.8678,9.8654,2.5116,2.559,2.0759,2.17,2.1352,2.1299,9.0742,9.8007,2.0736,2.3358,1.9967,2.2002,11.4796,11.6743,1.7931,1.7159,1.1548,1.1368,12.6128,11.9064,4.7214,4.4374,8.0882,8.8826,3.8696,2.6126,9.3095,9.0894,5.4504,5.7462,6.839,6.4791,2.8492,3.639,1.392,1.4235,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd352,66,66,F,1.6984,2.0278,0.33687,0.34417,0.755,0.63995,16.589,2.6076,2.6409,45.3684,44.7344,13.3684,14.18,218.897,206.2584,1.4225,3.1424,2.7243,0.7039,0.91308,14.5168,16.8971,1.4966,1.5513,3.4389,3.5257,6.2583,6.6129,4.1737,4.3908,0.06403,4.569,2.2165,2.6862,0.33652,0.35654,3.6366,3.9538,3.7341,3.8908,1.5789,1.3397,8.7417,8.1047,2.4067,1.9707,3.497,3.7584,4.0856,3.7273,1.4613,1.26,1.6005,1.5445,3.2384,3.2423,6.6772,6.4322,1.6787,1.6118,5.5048,5.0406,10.4915,10.182,6.5453,5.6111,1.9222,2.1293,4.2933,4.2832,1.5471,1.5073,15.8517,16.7384,4.4627,5.1371,3.2523,3.2623,0.97444,0.87763,2.2389,2.0936,6.4158,5.8191,12.9666,12.054,2.2467,2.7019,3.6688,3.4415,2.9781,2.6236,1.2938,1.4634,4.0167,4.0479,9.7306,9.4207,2.6563,2.7139,2.1973,2.1061,1.9803,1.6677,8.9115,9.9579,1.9081,2.1403,2.0531,2.2569,10.8645,9.9515,1.7591,1.4484,1.0543,1.0849,11.8307,11.872,4.3702,4.592,7.3309,7.7262,3.6213,2.7703,8.964,9.5963,6.5753,6.0762,6.9153,6.3378,3.1851,3.7933,1.4243,1.3071,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd353,,,M,1.0778,1.759,0.46267,0.49261,1.0192,1.0282,19.4632,3.3837,3.3213,52.4729,52.6494,16.2712,15.9533,236.4197,232.5789,1.029,4.0002,3.7395,0.38198,0.46701,11.6656,9.0814,1.7723,1.7541,3.8314,3.9026,6.9086,6.9837,5.0559,5.3218,0.08055,4.551,2.2865,2.9156,0.40645,0.41572,4.3311,4.7603,4.1988,4.3594,1.8534,1.6172,10.8415,9.3961,2.9254,3.0178,3.8563,4.3245,4.7671,5.2218,2.4117,2.0771,2.1879,2.0412,3.8635,3.4205,8.289,7.6878,2.2603,2.1218,7.664,7.4188,13.7282,12.7422,8.7643,7.7111,2.3987,2.3765,4.4081,4.6051,1.9722,2.0006,20.8946,19.8562,5.6932,6.459,4.1426,4.0472,1.2433,1.2289,2.5147,2.6742,8.3765,7.1,17.4594,15.1511,3.4106,3.7497,4.3783,4.6446,4.0885,3.921,1.6906,1.8031,4.1503,4.7197,10.7119,10.9108,3.637,3.4016,2.2872,2.2443,2.4618,2.4206,10.541,12.0172,2.703,2.6115,1.9903,2.0812,12.197,11.7631,2.013,1.9948,1.1594,1.1901,15.0282,17.2763,5.305,5.198,8.4129,10.1914,4.2807,3.5542,10.6658,11.5009,9.0556,8.075,8.4958,8.3456,4.1855,3.787,1.4725,1.7284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd354,,,M,3.2846,2.7696,0.31531,0.33849,0.79543,0.89488,18.827,2.7801,2.4307,47.9737,45.9615,13.5526,13.8792,203.3339,198.292,3.7567,3.1337,3.0188,2.7545,2.3176,48.6081,48.6943,1.5907,1.6101,3.1774,2.7149,6.1978,6.4205,4.6548,4.7993,0.06372,4.7843,2.5427,2.52,0.35622,0.38207,4.717,5.2849,4.1799,4.677,2.0366,1.5811,10.2283,9.9313,3.6043,3.7261,4.1024,4.1096,5.2497,5.1742,1.4298,1.6513,2.1129,2.2501,3.9948,3.7032,8.1592,8.0387,2.1738,1.9651,7.4532,7.1014,12.6562,12.2544,9.125,8.4392,2.519,2.3374,5.1521,5.3641,1.9531,1.92,20.694,19.892,5.8092,6.1406,3.8968,4.0818,1.2135,1.1816,2.5249,2.9417,9.0827,8.048,15.0737,14.9531,3.2514,3.8068,4.5392,4.6879,3.6908,3.5359,1.7398,1.4449,4.262,4.6815,11.0616,10.9168,2.8699,3.3696,2.3728,2.5625,2.136,2.5132,10.2712,11.8231,2.6703,2.4878,2.1158,2.4582,13.3086,13.2148,1.8675,2.0005,1.14,1.1631,15.9535,16.1344,6.1867,5.7798,8.3652,8.8502,4.5822,3.6201,10.3976,11.324,8.0088,7.4672,7.3499,7.2146,4.0715,4.0992,1.3967,1.5884,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd355,68,68,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd356,78,78,F,2.0444,2.0471,0.305,0.34349,0.71488,0.67972,16.4358,2.5534,2.5904,41.9809,40.656,13.3684,13.5418,209.1347,205.3014,1.6855,3.1466,2.8508,0.55733,0.68775,15.4962,16.12,1.4942,1.501,3.5016,3.5172,5.8613,6.0637,4.1046,4.3251,0.07275,3.9415,1.8978,2.0572,0.33893,0.33044,3.4882,4.1264,3.4448,3.3318,1.4896,1.312,9.7966,7.9257,2.8537,2.5994,3.8625,3.6662,4.1126,3.6357,1.4702,1.2181,1.8091,1.5008,2.9758,2.8687,6.3907,6.0792,1.6958,1.6806,4.9966,5.0071,8.4138,10.063,6.8965,6.3161,1.9334,2.073,4.2237,4.1108,1.3704,1.391,17.2701,17.0576,3.9723,5.1595,3.3425,3.3962,0.87777,0.96039,2.2873,2.2649,6.7752,6.1271,10.1412,12.4296,2.4359,2.6606,3.6822,3.8015,3.3208,2.5815,1.3675,1.3871,3.5454,3.8109,9.5306,9.3441,2.685,2.7031,2.1101,2.0161,2.0855,1.8363,8.7289,10.8813,1.9568,1.9283,1.8461,2.0436,10.7378,11.831,1.5956,1.7127,0.91306,1.0339,12.212,12.3486,4.3702,4.6141,7.6297,7.5649,3.6665,3.0325,9.0106,8.3738,5.9477,5.6823,6.7739,6.0729,3.5091,3.205,1.194,1.4348,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd357,,,M,1.1606,1.9214,0.45669,0.47721,0.96734,0.92443,19.4303,3.4755,3.2314,52.467,51.6314,16.2712,15.5489,259.0133,245.919,1.1587,3.5553,3.3746,0.61029,0.66674,11.1642,11.297,1.8651,1.8368,4.0092,4.1462,7.7882,8.1197,4.903,5.1663,0.08406,4.9901,2.2373,2.8917,0.40561,0.43803,4.594,5.3101,5.1362,5.144,1.993,1.5544,11.4729,10.3576,3.1923,3.1103,4.5909,4.582,4.6793,4.7242,1.9067,1.7002,2.3205,2.1657,4.0984,3.8704,8.6182,8.6021,2.2274,2.3378,6.4716,6.7482,13.5076,12.2709,8.1568,7.7974,2.4832,2.4256,5.5381,5.6182,2.1857,2.1308,21.455,20.5486,5.7289,6.7797,3.9853,4.2172,1.2138,1.2966,2.9491,2.8154,9.1937,7.3773,17.1263,15.7574,3.3631,3.1518,4.2342,4.5039,4.2568,3.7082,1.7599,1.5735,3.8864,4.4398,10.4931,10.0097,3.3377,3.5386,2.585,2.6832,2.8756,2.6774,10.0404,12.7437,2.5869,2.5953,2.3842,2.7196,13.1865,15.2549,2.3346,1.8968,1.5271,1.5341,15.3281,16.7784,6.0073,5.8355,7.8348,8.2032,4.7519,3.3894,12.1353,11.1593,8.932,7.4672,8.7657,8.4413,4.0751,4.28,1.9135,1.9453,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd358,77,77,F,2.0414,2.2003,0.31394,0.34349,0.54594,0.52273,14.6397,2.7199,2.6902,41.8698,41.053,11.7407,12.1776,165.4738,164.9992,1.8061,2.6136,2.5125,1.285,1.0572,19.8248,19.1291,1.1776,1.1748,2.9122,3.0618,5.4951,5.863,3.6709,3.9382,0.08069,4.3562,2.1362,2.6526,0.32973,0.34344,3.0647,3.4415,3.9007,4.1591,1.5852,1.2267,8.2861,8.764,2.8367,2.666,3.2858,3.7772,4.4069,3.8352,1.3058,1.1591,1.8467,1.5836,3.1512,2.6099,6.8553,6.1687,1.7754,1.8086,5.6021,5.398,9.1167,9.4479,7.7439,7.39,1.9992,1.9626,4.075,3.452,1.5552,1.4147,18.9317,17.9772,4.0703,5.1795,3.4183,3.3071,1.0959,1.1569,2.3481,2.5346,5.6562,4.8291,10.2872,10.794,2.5604,2.7058,4.0166,3.6817,3.1011,2.5717,1.3571,1.1482,3.3779,3.6379,9.4847,9.2855,2.6595,2.7527,2.2248,2.2756,1.7696,1.9753,8.8763,9.5644,2.2016,2.3422,1.9547,2.1079,12.707,12.7934,1.5249,1.4435,1.0962,1.2385,13.402,12.9795,5.1658,5.1526,5.934,7.9899,3.3486,2.8583,9.0286,9.3309,5.2529,5.6658,6.5621,6.051,3.0028,3.1176,1.2927,1.2715,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd359,81,81,F,1.3569,1.6704,0.34891,0.4395,0.65782,0.70698,18.5757,2.5652,2.609,42.0401,41.9972,15.7042,15.9721,267.6029,268.7903,1.5549,2.9506,2.8594,0.5856,0.47649,9.7001,9.8195,1.773,1.753,3.1677,3.1863,6.2869,6.885,4.8324,5.0587,0.07369,5.0087,2.2446,2.4507,0.39569,0.3861,3.4098,4.2642,4.1808,3.8636,1.9423,1.7441,10.0195,9.6711,3.3108,3.0364,3.6053,3.7912,4.6187,4.5617,1.2497,1.4985,1.9242,1.8386,3.7893,3.3598,6.1382,6.0491,1.968,2.2016,5.9237,5.1608,10.3559,9.954,7.6983,7.5599,2.3789,2.4943,4.4826,4.3331,1.7567,1.7611,17.8055,16.2543,4.4835,4.9474,4.1108,4.365,1.1842,1.2033,2.7537,2.7218,6.7998,6.2112,13.0454,13.3618,2.9431,3.0025,4.0605,4.2296,3.3756,3.2033,1.6254,1.5388,3.8963,4.224,10.2587,10.2797,2.3769,2.8097,2.039,2.1058,2.0713,2.2076,10.4726,11.3227,2.426,2.6802,1.8823,1.8767,12.7044,11.6069,1.8825,1.8485,1.0894,1.1654,14.3595,13.9016,5.0549,5.2041,7.8463,8.6249,4.3743,3.433,9.9323,9.9701,7.4041,6.8093,7.4701,7.066,3.5289,4.3993,1.512,1.284,,30,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd360,70,70,F,1.8234,2.101,0.31472,0.33703,0.67646,0.68516,15.3895,2.7265,2.6558,40.8386,41.0896,12.794,13.2435,193.2219,187.3303,1.4826,2.9506,2.6429,0.95012,0.61403,14.775,17.7403,1.3158,1.3295,3.305,3.2011,6.0708,6.1844,4.0572,4.1851,0.07289,3.9879,2.0853,2.097,0.30675,0.31612,3.7014,4.2505,3.84,3.9087,1.4124,1.3274,9.031,7.6977,3.113,3.1377,3.7618,4.0186,4.7744,4.7694,1.4354,1.308,1.7941,1.946,3.3818,3.2724,5.7968,6.0089,1.8516,1.8854,6.2496,5.6047,9.3244,9.9822,7.5827,6.9309,1.8869,2.0668,4.0647,4.1199,1.5572,1.619,17.5442,17.2447,5.5586,5.7343,3.2927,3.5958,1.0385,1.358,2.4732,2.8206,7.6768,6.2544,11.9343,12.0916,2.7873,3.3539,3.8946,3.7503,3.0337,3.6754,1.356,1.3087,3.1223,3.4659,10.0705,8.7818,2.5732,2.8,2.0409,2.1325,1.8857,2.0482,8.6664,10.436,1.9919,2.1999,1.9496,2.1122,11.6234,11.7764,1.5526,1.635,1.1126,1.1358,12.0086,11.6837,4.9458,4.7641,7.3483,6.9192,4.0085,3.5419,8.6424,8.8356,5.9959,5.9566,6.839,6.5138,3.1351,3.3739,1.3782,1.4902,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd361,77,77,F,2.0414,1.7091,0.41783,0.45566,0.84292,0.8502,18.213,3.5829,3.0203,45.0054,46.7756,14.1435,14.2393,212.6126,209.4858,1.817,3.177,3.4019,0.6202,0.65416,15.1081,18.833,1.6509,1.6387,4.2836,4.4232,7.2796,7.4399,4.7913,5.0712,0.09828,4.6685,2.2158,2.6222,0.44246,0.42106,4.4161,5.0841,4.9269,4.7371,1.9919,1.7987,9.709,8.5735,3.3893,2.8913,4.2748,4.4052,3.9233,4.5504,1.6258,1.6616,2.0531,1.9881,3.757,3.5865,7.3967,6.974,2.2274,2.3336,6.1973,5.5669,11.4373,11.3263,8.01,7.5269,2.6412,2.9018,4.6501,4.7918,1.9726,1.9318,19.6234,20.5346,5.1453,5.7141,4.3013,4.472,1.1323,0.99196,2.7166,2.4369,8.135,7.5851,14.0727,14.5863,2.9953,3.2956,4.2554,4.3736,3.1299,3.3633,1.8216,1.8326,4.0363,4.6726,11.1301,11.5563,2.9846,3.1881,2.6484,2.855,2.5902,3.0844,10.9818,11.4351,2.8486,3.1128,2.3733,2.4695,11.8669,12.061,2.1254,2.5786,1.2498,1.3794,16.4195,15.2126,5.9048,5.5889,8.2692,11.0348,3.9083,3.2747,10.5549,10.7882,7.9778,7.1293,7.7904,7.7587,4.171,4.4704,1.6655,1.9146,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd362,74,74,M,2.2559,2.528,0.34803,0.39708,0.74275,0.77196,16.4468,2.848,2.8472,45.5968,46.7756,12.9595,13.3298,197.3612,194.5846,2.3102,3.1337,2.886,1.3331,1.3765,24.6327,28.6518,1.4275,1.4046,3.3746,3.2132,6.3537,6.7086,4.3105,4.5147,0.0756,4.7028,2.1753,2.5756,0.37411,0.36975,4.0183,4.3647,3.7875,4.1751,1.7572,1.6135,9.768,8.4609,3.4589,3.3702,3.7962,3.9788,4.6451,4.406,1.4118,1.3872,1.9869,2.0334,3.5418,3.411,6.5852,6.4578,1.9915,2.0545,6.4052,6.0717,10.4651,9.9986,8.3148,7.704,2.2145,2.3258,4.5939,4.4675,1.8564,1.8874,17.552,19.015,5.1217,6.0602,3.681,4.0128,0.93798,1.0488,2.1484,2.5591,7.6309,7.3574,13.0804,11.9541,3.0377,3.7467,4.0666,4.6582,3.0623,3.2148,1.4656,1.3778,3.509,3.8719,9.1884,9.2995,2.516,2.9176,2.1187,2.224,1.8592,2.5377,10.5304,11.772,2.3487,2.6018,1.9729,2.1163,12.6393,11.5086,1.5961,2.0163,1.1558,1.225,13.7849,13.7179,5.4026,4.9523,6.6432,8.7663,4.8341,4.1038,8.8843,9.6752,5.8241,6.0871,6.8489,6.4164,2.9832,3.9953,1.2853,1.5798,,18,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd363,70,70,F,2.2463,1.2763,0.35912,0.38133,0.6842,0.62575,18.1118,2.7349,2.6071,42.383,43.6108,14.3129,14.8204,202.9975,202.0467,1.764,2.8602,2.5658,1.6576,1.1008,23.1492,26.3035,1.5907,1.6443,3.9759,3.981,6.1025,6.4205,4.4218,4.6343,0.09071,4.0492,2.0073,2.6111,0.36046,0.36231,4.2008,5.0481,4.5555,4.4768,1.8186,1.6658,10.3699,9.9337,3.0369,2.787,4.0521,3.6886,4.5354,3.4644,1.2013,1.1384,1.9242,1.9128,3.8851,3.6831,7.0984,7.0253,2.1154,2.0571,6.6265,6.1018,12.3722,12.1164,7.6127,7.2232,2.2333,2.4862,4.5917,4.9408,1.854,1.9469,19.5505,20.0068,5.6415,6.7421,4.0524,3.8636,1.1739,1.3627,2.587,2.9477,8.0025,6.9166,14.1925,15.5411,2.6699,2.7448,4.3265,4.1288,3.1817,3.1566,1.5898,1.5459,4.2033,4.7197,10.2587,11.088,2.7099,2.9113,2.7653,2.9307,2.2924,2.4582,10.979,12.5961,2.2182,2.411,2.1795,2.4907,12.4333,12.9605,1.9259,2.0675,1.1482,1.1941,15.2759,15.2019,5.269,5.3068,8.2741,8.91,3.8563,3.309,10.4968,10.3864,8.0943,7.1293,7.2795,7.0857,3.9895,4.1668,1.5416,1.6291,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd364,71,71,F,1.7152,2.1377,0.26494,0.28521,0.60264,0.65514,16.1588,1.7629,2.1284,42.1735,39.9639,14.8867,14.9308,218.2553,203.7548,1.7956,2.6107,2.4742,1.1642,1.3391,20.2083,27.0472,1.3945,1.4105,2.8007,2.9232,5.5443,6.3151,4.0971,4.4346,0.07726,4.3073,2.1845,2.0325,0.30289,0.30766,3.6304,3.6044,3.102,3.1761,1.4618,1.2075,8.8451,7.9211,3.0625,3.1377,3.6942,3.6877,4.3094,3.6811,1.2558,1.308,1.668,1.8755,2.9731,2.8665,5.1012,5.3721,1.6897,1.6654,5.7857,6.1125,7.2375,8.1732,7.4134,6.4468,1.7141,1.892,4.7066,4.7063,1.4247,1.4402,14.0834,14.4447,4.5528,5.794,3.0089,3.1058,0.86595,1.0087,1.9498,2.1198,6.2531,5.6687,8.7517,11.5039,2.6741,2.9422,3.9653,3.7844,3.0137,3.2688,1.1366,1.2007,3.8912,4.2252,9.8678,9.4214,2.4819,2.6325,0.89588,1.6036,2.0738,1.9084,7.7493,9.5154,1.8589,2.1077,1.236,1.8973,9.5908,10.6186,1.6213,1.6416,0.97823,0.99695,11.3672,11.627,4.3692,4.5958,6.609,7.8423,3.9446,3.3708,8.6424,9.8662,5.9204,5.6132,6.1074,5.995,3.2361,3.0846,1.2277,1.1738,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd365,69,69,F,1.2011,1.5129,0.2921,0.29347,0.73701,0.69431,15.3515,2.4566,2.3782,38.1916,38.2802,12.6156,12.532,169.9447,167.2846,1.4058,2.9735,2.5551,0.60897,0.55943,9.7001,10.6452,1.3057,1.2745,3.0909,2.7618,5.4358,5.863,4.0474,4.1604,0.07921,3.9997,1.8047,1.9277,0.30675,0.31907,3.9181,4.1727,3.3686,3.5846,1.5816,1.1709,7.3584,7.8407,2.739,2.626,3.3527,3.5066,4.0486,3.7148,1.4702,1.3182,1.7128,1.6397,3.2698,2.954,6.094,5.6911,1.8534,1.8172,6.1881,5.5447,9.211,7.9189,6.4027,6.2007,1.8609,2.1157,4.7499,4.7252,1.5375,1.5917,15.809,16.5627,4.9289,5.7216,3.2639,3.332,0.86488,1.0864,2.2044,2.538,6.9634,6.1415,11.4926,9.4766,2.5253,2.5053,3.4624,3.2582,3.1353,2.6527,1.3055,1.3871,3.4464,3.6058,8.2793,9.303,2.3902,2.6572,2.1106,1.9715,1.974,2.0222,9.0554,10.3743,1.9175,2.1201,1.7206,1.9755,10.0863,10.6862,1.5651,1.8889,1.1226,1.0429,12.6635,13.4043,4.6055,4.2257,6.0292,6.5211,3.4514,2.789,8.1985,9.233,5.8814,5.1939,6.3501,5.8248,3.1211,3.4155,1.1819,1.3868,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd366,,,M,1.7391,2.3245,0.37555,0.3989,0.91709,0.93247,16.0602,2.8217,2.7962,46.8493,46.8022,13.5695,13.7581,183.1204,181.6168,1.8472,3.8025,3.3839,1.3285,1.0467,24.5416,31.6678,1.6159,1.5537,3.2753,3.3626,6.6341,6.9036,4.3728,4.7548,0.08038,4.6495,2.2877,2.6607,0.38062,0.38747,4.6087,4.9722,4.1953,4.4273,1.7432,1.5872,8.4829,8.015,3.1995,3.1601,3.9873,3.8943,4.1096,4.3007,1.6107,1.8278,2.0489,2.0414,3.6164,3.1803,7.4213,7.0588,1.9635,1.93,6.4805,5.5182,11.7117,11.3782,7.9132,7.3043,2.1214,2.5188,4.8757,4.9916,1.6397,1.7445,17.0565,16.7287,4.9671,5.3321,3.7438,4.0818,1.4516,1.0778,3.1735,2.7168,7.5373,6.3241,14.4541,13.0691,2.7967,2.892,4.2732,4.3462,3.6103,3.4893,1.4701,1.6605,4.0406,4.5595,9.9208,10.5648,2.9279,3.2339,2.3147,2.5682,2.3324,2.5273,8.7594,10.25,2.2032,2.3339,1.957,2.1435,11.4501,11.229,2.1247,2.462,1.2017,1.2342,14.7075,15.0872,5.193,4.6149,6.3222,8.151,3.919,3.4312,12.3532,11.403,8.4022,7.5473,7.7616,7.2301,3.5429,3.6927,1.573,1.709,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd367,66,66,M,0.84724,1.4936,0.39689,0.44694,0.80756,0.78801,19.3838,2.9065,3.0593,49.1356,50.4537,15.9503,16.1887,227.1472,218.6799,1.2298,3.1805,3.0423,0.44345,0.47239,11.4171,12.7441,1.48,1.567,3.6044,3.703,6.4733,6.5934,4.5012,4.7044,0.08194,4.5333,2.6456,2.8765,0.35605,0.38007,4.1325,4.6802,3.9139,4.0341,1.9076,1.4939,10.91,9.4337,2.4294,2.1827,3.878,4.0026,3.7092,2.9868,1.5735,1.446,1.7889,1.7242,4.0081,3.7032,7.4468,7.6804,2.1668,1.9794,6.3098,6.7557,11.6078,11.3352,7.5305,6.8854,2.2809,2.3889,4.7296,4.8735,1.7718,1.7519,18.9174,19.8127,5.2318,6.9267,4.0725,3.9303,1.423,1.2361,3.1735,3.0378,8.0011,7.1113,13.8663,13.9603,2.6801,3.3803,4.0096,4.3265,3.2923,3.215,1.6128,1.408,3.8961,4.0492,10.3809,10.5263,3.0949,3.1551,2.1346,2.2312,2.1501,2.398,9.1457,10.5872,2.3375,2.5716,2.004,2.2474,12.0085,12.6403,1.6382,1.8926,1.1297,1.1489,13.4679,12.9747,5.193,5.243,8.2762,9.9347,3.5958,3.2589,10.9979,11.3134,7.5951,7.2714,7.2099,6.8363,3.8343,3.8888,1.4436,1.4851,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd368,65,65,F,1.0879,1.8093,0.32332,0.36515,0.82722,0.80109,15.9099,2.5579,2.3883,43.8192,42.4254,13.3111,14.0108,204.8212,205.4184,0.98803,3.251,3.0119,0.69172,0.75845,15.0453,18.3588,1.4337,1.4625,3.1653,3.3637,5.7788,6.0675,4.0793,4.2939,0.07082,4.3788,1.9541,2.4741,0.32441,0.35922,3.2997,3.8435,3.5431,3.8433,1.4349,1.3045,8.2133,7.4818,2.8545,2.5867,3.7405,3.9781,3.7315,3.7213,1.4859,1.4938,1.7125,1.7092,3.2104,3.0175,6.8553,6.6506,1.7754,1.977,5.9253,5.7929,10.2643,10.455,7.662,7.1023,1.8187,1.8717,3.9839,3.9827,1.4172,1.458,14.918,15.7862,4.8392,5.4096,3.113,3.678,0.92238,0.83313,2.0523,2.2657,6.4642,5.5425,12.096,11.453,3.1107,3.1964,3.7771,3.9532,2.755,3.153,1.2818,1.1783,3.3725,3.6227,9.4847,9.1919,3.0705,2.9739,2.1101,2.0623,2.3256,2.4721,8.0006,9.6605,1.8465,2.0224,1.8653,2.1122,9.3404,9.5779,1.6939,2.1903,0.9244,1.0193,12.2432,13.0674,4.4581,4.2257,6.7678,7.7036,4.0843,3.7136,8.2873,8.3738,6.047,6.5145,6.3126,7.1199,2.623,3.3566,1.426,1.5763,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd369,72,72,F,3.4425,3.3687,0.14255,0.27429,0.5099,0.55213,18.029,2.1424,1.8892,49.1293,49.6968,15.3667,14.947,195.6455,202.1358,3.7567,2.4553,1.9484,1.614,1.6267,32.0847,32.1618,1.5656,1.58,0.79783,2.6212,5.9256,6.3966,4.6607,4.8807,0.06578,5.1249,2.5086,2.517,0.2665,0.13082,0.01082,3.5363,3.3117,1.3518,1.2952,1.1709,9.1916,9.7234,3.2294,2.8557,3.5019,3.4527,4.724,3.929,1.0283,1.0787,1.6408,1.4748,2.9731,2.9207,6.417,6.1736,1.5262,1.6461,5.6325,5.79,9.9723,10.9496,7.6609,7.54,1.8219,1.8303,3.8935,3.6438,1.3076,1.3178,14.6268,15.5038,4.2365,4.698,3.0279,3.16,0.78443,0.875,1.9498,2.1198,6.357,5.498,11.9567,13.2595,2.7527,3.1216,4.6824,4.4762,3.0043,2.7994,1.2926,1.097,3.4287,4.2617,9.3965,9.6138,2.6926,2.7527,1.7214,1.9992,1.8168,1.9767,9.2722,9.4062,1.4502,2.2928,1.697,1.8051,10.2695,10.6331,1.5787,1.6811,0.96188,1.0087,12.8693,0.00005,4.509,4.5871,6.6708,1.6946,4.0379,2.9199,10.6279,10.6914,6.5286,5.8972,7.0344,6.9869,2.6569,3.104,1.2066,1.2821,,23,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd370,60,60,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd371,65,65,M,1.0188,1.4794,0.39556,0.4675,1.0815,1.1002,20.4108,3.1739,2.9435,50.395,48.5069,17.1776,17.3113,277.1635,281.4037,1.1862,3.9806,3.5424,0.51741,0.47482,11.259,13.6102,1.767,1.8629,3.9813,4.0556,8.4121,8.5038,5.0292,5.2591,0.08351,4.4245,2.3995,3.0709,0.42315,0.42467,4.6799,5.2696,4.925,5.0995,1.9376,1.8866,11.1846,10.2967,3.7472,3.7189,4.2181,4.6612,4.8737,4.7242,2.0892,1.9169,2.2834,2.1815,4.3521,3.8796,8.4096,7.9531,2.4882,2.4793,6.4716,6.7557,13.0247,13.2137,8.4174,7.8711,2.4684,2.7463,4.8022,5.2025,2.1863,2.1228,21.4648,22.2924,5.3576,6.6668,4.4372,4.5409,1.0667,1.0919,2.7471,2.77,9.1315,8.0971,16.2557,15.3056,3.1577,3.4271,4.3781,4.6383,4.4008,3.921,1.8635,1.6954,3.9078,4.5055,11.2044,10.8436,3.637,3.9265,2.6001,2.5927,2.53,3.1023,10.1761,10.9396,2.5524,2.8981,2.3798,2.4552,12.2431,11.9634,2.0861,2.8052,1.359,1.3888,16.1595,16.3306,6.3356,6.4664,8.4112,10.0726,3.8405,3.3642,10.2496,12.0351,7.8592,9.266,9.1009,8.4288,4.0822,4.1858,1.6686,1.7888,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd372,87,87,F,1.772,2.1606,0.21445,0.27353,0.52829,0.4964,16.484,1.7629,2.1338,44.3705,44.7677,14.8867,14.7727,211.4838,212.0212,1.6943,1.1821,1.9484,3.4118,2.4151,22.6621,21.0729,1.457,1.4886,2.6102,2.6696,6.132,6.6802,4.2108,4.3908,0.0789,4.5381,2.2016,2.1259,0.31657,0.2706,3.614,3.6567,3.4291,3.632,1.2883,1.1268,9.8024,9.7234,2.3802,3.0567,3.2306,3.2248,3.5198,3.5719,0.98201,0.91267,1.5522,1.7017,2.9731,2.9251,4.8245,5.6812,1.6023,1.6468,4.785,5.0515,7.2375,7.589,6.5715,6.4209,1.6103,1.892,3.9457,3.5663,1.2713,1.4058,15.3492,14.971,3.9986,4.7415,2.8596,2.9419,0.90001,0.875,2.1815,2.1719,6.3421,5.5465,7.0908,7.3624,2.5487,2.8563,3.6667,3.5787,2.7353,2.889,1.2868,1.2394,3.5454,4.313,9.0731,10.0704,2.4819,2.4135,1.8917,2.0284,2.176,2.0249,9.1566,9.5542,1.7699,1.8238,1.7939,1.7054,9.573,8.8425,1.8005,1.6919,0.96188,0.99363,13.6378,12.6978,4.5393,4.5158,6.6708,8.2933,3.3046,2.3676,9.7064,10.0019,5.8236,5.1665,5.3235,5.3971,2.8391,2.9626,1.1985,1.4067,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd373,74,74,M,2.0435,1.7534,0.3806,0.43857,0.86543,0.90895,16.9774,2.6433,2.818,45.4266,46.4712,14.6255,15.2514,241.8319,240.4316,1.5056,3.4143,3.5722,0.67627,0.60964,14.164,15.393,1.682,1.7106,4.2836,4.4532,6.9078,7.0601,4.7595,5.2066,0.09828,5.0864,2.1742,2.6944,0.42152,0.43084,4.4161,4.8053,4.9298,5.0384,1.5345,1.4604,9.8237,9.1437,3.8419,3.4526,4.2875,4.4055,4.8737,4.7321,1.9038,1.7413,1.9053,1.9267,3.4999,3.3587,8.0655,7.6282,2.0366,1.9045,6.9397,7.1936,12.2567,12.1495,8.9198,7.8045,1.9009,2.4542,4.4352,4.7967,1.7934,1.8088,18.981,18.56,5.3816,6.9325,3.4848,3.8396,1.0365,1.2218,2.5254,3.0079,8.0025,6.9348,16.0082,14.581,3.8541,4.2514,4.5189,4.593,3.4063,3.5135,1.4353,1.5286,4.1452,4.4808,11.2044,10.7108,3.2935,3.5993,2.6482,2.7462,2.3698,2.4504,11.5448,13.0931,2.1623,2.4188,2.3544,2.4591,12.9718,13.939,1.9096,2.0633,1.3438,1.4764,14.6241,14.5441,5.5701,5.7834,9.2217,8.8607,4.6967,3.9613,11.1253,10.7558,7.9287,8.3187,8.8179,8.4709,3.1629,3.6655,1.5167,1.5945,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd374,85,85,F,1.4892,1.6062,0.29812,0.32521,0.64534,0.68323,16.3066,2.3106,2.3381,39.8051,39.3698,12.9291,13.5987,227.4627,224.409,1.2727,2.7004,2.4133,0.39136,0.33556,9.3603,12.0323,1.5167,1.4856,2.9631,3.2904,5.9534,6.9973,4.4214,4.636,0.08537,4.1429,2.0009,2.0971,0.30474,0.33266,3.8971,4.2866,3.637,3.9336,1.6598,1.4159,10.2123,8.6968,1.7932,3.1943,3.2363,3.6814,2.8214,4.1909,1.4105,1.3025,1.9109,1.8169,3.2698,3.2036,6.8854,5.9755,2.1574,1.9565,5.3644,5.038,9.1167,7.6442,6.8706,6.2727,1.9941,2.1102,4.4848,4.6442,1.6283,1.7554,16.3854,17.4805,4.0521,5.5991,3.5988,3.7893,0.97379,0.88686,2.4699,2.1715,7.0663,6.0505,10.2149,9.1824,2.4489,2.8563,3.6227,3.6789,2.9823,3.2733,1.3766,1.2667,3.479,3.6734,8.8723,8.8843,2.5379,2.629,2.1078,2.0955,1.9454,2.0723,8.9115,10.4337,1.843,2.137,1.7444,1.9482,10.1076,12.3044,1.5651,1.6919,1.0981,1.1,12.5908,13.045,4.7624,4.6129,7.4612,8.3409,3.8231,2.8757,9.6188,9.4275,5.8236,5.5943,6.4081,5.8248,3.3741,3.4438,1.1629,1.4283,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd375,71,71,F,1.3794,2.0062,0.33046,0.37961,0.75542,0.79791,17.1058,2.4055,1.8828,40.2924,41.9972,14.0525,14.3408,203.4714,200.6377,1.3542,2.8764,2.9775,0.96812,0.80996,12.8318,19.0423,1.4802,1.4815,3.0935,3.046,6.3214,6.4873,4.4025,4.5189,0.0694,4.4313,2.2288,2.3776,0.29862,0.33346,3.672,4.2377,3.3296,3.6208,1.7697,1.3901,9.8956,8.9056,3.0125,2.6481,3.7919,3.7099,4.1411,3.6652,1.6323,1.5051,1.5972,1.7166,3.5147,3.2042,6.702,6.399,1.887,1.8091,5.6349,5.4153,10.5139,9.8194,6.769,6.0849,2.2328,2.2163,3.9778,4.1749,1.8007,1.6848,15.1636,17.6316,4.0703,5.159,3.7058,3.3068,1.0259,1.0947,2.3254,1.9644,7.3543,6.6773,12.5317,12.9115,2.5854,2.8267,3.587,3.7395,2.7456,3.153,1.5009,1.3371,3.4634,4.0421,9.5306,9.3807,2.7282,2.9458,2.2631,2.2624,2.2739,2.3096,9.6857,9.8007,2.3858,2.3937,1.9084,2.2036,11.6645,10.0129,2.0422,1.8006,1.1135,1.1701,12.3468,11.8188,5.0937,5.0385,7.1713,8.903,3.7333,3.0401,8.8912,9.0897,6.212,6.1527,7.0624,6.9261,3.1503,3.2501,1.3263,1.4742,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd376,,,F,1.3846,1.7585,0.31844,0.33873,0.77274,0.70882,15.9805,2.8108,2.4307,38.9738,39.9079,11.4282,12.3842,170.1503,166.9242,1.5709,2.7104,2.4995,0.84938,1.1214,14.9221,18.4698,1.3866,1.403,3.286,3.1679,5.9261,6.4532,4.1144,4.2449,0.0668,3.8533,1.7907,2.2459,0.30933,0.31612,2.7669,3.5612,3.3663,3.4425,1.532,1.2979,7.3412,7.1444,2.8211,2.9441,3.6505,3.3553,3.7766,3.8993,1.4808,1.467,1.7233,1.6433,3.1468,2.6735,5.6871,5.8168,1.6315,1.6765,4.974,4.5324,8.1681,8.0032,6.4011,5.7436,2.0669,2.0121,3.1064,3.9956,1.5055,1.4147,14.4447,14.4447,5.1691,4.7936,3.3353,3.4097,0.96676,0.93037,2.313,2.2649,6.5291,5.903,11.6241,9.4766,2.3938,2.5231,3.271,3.5683,3.0137,2.6236,1.2908,1.2633,3.3466,3.5421,9.1521,3.5147,2.7143,2.7336,2.1241,2.1371,2.0023,1.9224,9.6469,9.4049,1.7636,2.0597,1.9439,2.0525,10.9179,11.0377,1.6377,1.7658,1.0962,1.2045,11.7757,11.5908,3.9761,4.3065,6.3379,7.378,4.1722,2.9199,9.3873,9.8046,5.7204,5.5943,6.4215,6.5678,2.9019,2.9014,1.2729,1.2649,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd377,,,F,2.1187,2.4283,0.38094,0.49937,1.0559,1.0069,20.0813,3.0452,2.8802,48.9778,49.9324,15.0686,15.8368,261.275,248.9335,1.9461,3.9712,3.5729,0.831,1.1687,27.5036,30.2222,1.6471,1.5566,3.6831,3.7221,7.6391,7.7881,5.0063,5.3238,0.08054,5.4387,2.4571,2.893,0.37346,0.37608,5.0313,5.6897,4.1799,4.8254,1.7309,1.6047,11.0596,10.3484,3.5348,3.3101,4.2881,4.9912,4.9726,4.4991,1.9368,1.9961,2.2787,2.1078,4.0838,3.8704,7.5062,7.4051,1.9341,1.936,6.5246,6.0712,12.0794,11.7584,8.4697,7.5458,2.3921,2.5063,4.652,4.9895,1.7081,1.7141,19.5598,19.4086,5.92,6.5712,3.6669,3.8828,1.3128,1.1895,2.9837,2.8704,7.7435,7.4088,14.935,13.2979,3.3631,3.7074,4.2576,4.1181,4.1181,3.6874,1.6274,1.6744,4.044,4.7787,11.3053,11.1584,3.1361,3.3253,2.3321,2.5062,2.6122,3.0844,10.9354,12.6483,2.3984,2.6027,2.1327,2.5914,13.6313,13.6084,2.0618,2.4655,1.2283,1.2912,16.0886,14.4207,5.2705,5.9736,9.1233,10.377,4.3351,3.4122,11.0128,11.6813,7.9658,7.5473,8.8386,8.5195,3.5559,4.0344,1.5697,1.9738,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd378,83,83,F,1.6495,1.578,0.38217,0.37955,0.7373,0.67729,16.6248,3.0643,2.5095,43.6651,43.2517,12.2102,12.5481,195.4331,197.3386,1.9729,3.1622,2.8167,0.75245,0.55524,26.0515,31.0712,1.6159,1.5537,3.514,3.5903,6.7414,6.8049,4.3405,4.5977,0.07095,4.5693,2.0673,2.296,0.35605,0.38153,3.9432,4.2462,4.1337,4.1862,1.778,1.5141,10.3955,9.2691,3.479,3.8733,4.168,4.0153,5.1395,5.4507,1.381,1.3091,2.0011,1.8469,3.5537,3.3666,6.7847,6.4232,1.9391,1.9458,7.1056,6.3359,10.8711,9.9612,7.8739,7.4427,2.1154,2.4243,4.7753,4.8286,1.6627,1.7445,17.3403,17.3969,5.6475,6.1245,3.7921,3.7696,0.97369,1.0076,2.4737,2.456,7.0561,6.5523,14.0717,13.4344,3.2264,4.0623,4.16,4.1288,3.614,3.3086,1.4499,1.4181,3.5546,4.1836,11.9276,11.4987,2.8008,2.8411,2.3147,2.2809,1.8993,2.1472,10.7561,12.3899,2.3145,2.3726,1.9547,2.3019,11.8972,12.05,1.6913,1.7569,1.0979,1.1631,11.7635,12.7452,4.5318,4.786,8.3165,9.0017,4.5964,4.0874,11.0118,11.9597,7.7819,7.1143,7.2185,6.3555,3.2982,3.5497,1.3499,1.3936,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd379,75,75,F,1.2991,1.6239,0.31039,0.34579,0.66914,0.6961,16.3066,2.514,2.4381,40.9338,41.159,12.3257,12.4668,187.1765,188.3036,1.4058,2.6384,2.3904,1.2937,0.9251,16.5462,18.5819,1.357,1.3672,3.0868,3.1088,5.6208,6.0637,4.1085,4.377,0.07429,4.3562,2.1362,2.2662,0.32989,0.34001,3.3315,3.7859,3.3117,3.473,1.6117,1.2721,8.2133,7.4818,2.8194,2.6499,3.1371,2.9876,4.4069,4.1589,1.2702,1.5362,1.4777,1.401,3.3099,2.9676,6.4935,6.1158,1.7086,1.6765,5.3701,5.398,9.7293,9.7692,7.1372,6.2984,2.1926,2.1329,3.7048,4.0876,1.3406,1.3034,15.7992,15.3283,4.8068,4.6049,3.1075,3.4232,0.94522,0.94874,2.4027,2.3324,6.2177,5.8552,11.5183,11.7615,2.6636,2.8064,3.8353,3.4255,2.9142,2.5717,1.4436,1.3086,3.1522,3.4752,8.4179,8.0475,2.5166,2.6127,2.0291,1.9054,1.7073,2.0783,9.0756,10.0487,2.254,2.2464,1.9277,2.0972,10.5813,11.2346,1.456,1.7159,0.99225,0.98202,12.1772,12.0462,4.6979,4.6898,6.4474,7.8321,3.6579,2.7544,9.1786,9.4147,6.3734,6.1784,6.2058,6.6038,3.1721,3.4438,1.2186,1.543,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd380,77,77,M,2.2224,1.9983,0.37516,0.43295,0.76377,0.78073,16.9601,3.0005,3.1944,43.9993,44.2579,13.4651,13.6165,201.0276,203.3715,2.2128,3.1412,3.1525,0.75245,0.56028,26.7509,21.5998,1.4427,1.4159,3.4167,3.5927,6.2917,6.46,4.4063,4.5547,0.09045,4.5531,2.1521,2.296,0.42742,0.4061,4.143,5.0062,4.3287,4.8409,1.5345,1.5065,9.2757,8.9824,2.8136,2.8104,4.0554,4.6146,4.2835,3.4644,1.4921,1.4976,1.9935,2.0581,3.635,3.331,7.0622,7.3628,2.0366,2.0663,6.4874,6.0351,11.4342,11.1036,7.2789,6.5803,2.0704,2.2619,4.4076,4.6051,1.8834,1.9333,17.6547,18.181,5.1801,6.0602,3.5202,3.8401,0.95669,1.036,2.516,2.5689,7.9189,7.3397,13.8534,13.2595,2.877,3.2409,3.9848,4.1406,3.0972,3.3007,1.5239,1.2838,4.2069,4.472,10.3551,9.8269,2.7524,3.0974,2.4777,2.4725,2.0408,2.3937,10.0021,10.2494,2.3338,2.3132,2.1977,2.5326,11.3694,12.8841,1.9995,1.9749,1.3166,1.3515,13.0346,13.7731,5.2241,4.8956,7.5073,8.5755,3.8052,3.4278,9.7314,10.1731,7.7471,6.628,7.2185,6.9968,3.4653,3.3312,1.6457,1.741,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd381,,,F,1.7082,1.0793,0.00009,0.02263,0.18236,0.51612,2.0826,0,0.00075,36.5871,37.5645,13.6038,10.7472,61.8725,128.6959,1.5533,2.239,1.3047,1.139,1.6288,16.8999,23.0926,1.3485,1.3058,0.23437,0.32999,5.6051,5.6673,3.6911,3.8383,0.07222,4.1908,1.6853,2.0198,0.2665,0.2964,0.00729,0.02955,0.72891,1.3518,0.0014,0.00008,5.3578,7.3169,2.9727,2.9829,0.30663,0.43185,3.7473,3.7841,0.84711,1.0768,0.75116,0.02155,0,1.9083,3.8349,5.6822,0.23156,0.52539,5.4548,4.7187,7.2375,9.0866,7.0311,6.1704,0.07,0.06594,0,0,0.66198,0.13214,6.9551,0,4.3704,4.8572,1.0424,1.6839,0,0,0,0,0.02225,0.00791,8.3232,10.6368,2.3425,2.5733,3.587,3.6789,0.00048,0.00223,0.00001,0.65244,3.4287,4.1002,7.7781,10.1114,1.593,2.0225,1.7966,1.6945,0.38842,1.5192,0,0,0.77084,0.90385,1.6502,1.7069,0.00012,10.5862,1.4138,1.3453,0.43488,0.64464,6.0263,0.00005,0,3.5064,5.1788,1.6946,3.7366,2.0489,7.6841,7.7857,4.9691,3.8933,4.674,4.7509,1.1485,0,1.2951,1.066,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd382,73,73,F,1.002,1.1684,0.35701,0.39595,0.92165,0.93429,18.9336,2.4968,2.609,48.463,47.9713,14.1985,14.6072,198.5983,189.1448,1.2408,3.3175,3.1428,0.32887,0.35349,9.3603,9.9571,1.4275,1.4602,3.1602,3.33,6.7086,6.9922,4.3976,4.5189,0.07534,4.5801,2.2973,2.4886,0.4105,0.40503,4.1159,4.6834,3.9349,3.8022,1.7091,1.4409,7.9801,8.2347,3.2221,3.4855,3.182,3.5014,4.6451,4.3597,1.8413,1.7519,1.9211,1.819,3.3057,3.2506,8.055,7.714,1.9102,2.0006,6.4317,6.1849,11.6498,11.941,7.5535,7.2396,2.279,2.3699,4.7042,4.8644,1.6815,1.6954,17.3195,17.7638,4.6431,5.5006,3.9181,3.7711,1.423,1.1154,3.1132,3.0629,7.7854,6.9348,13.3617,13.8299,3.327,2.9863,4.3247,4.2021,3.307,3.1919,1.4622,1.4362,3.6767,3.8112,8.7178,9.5578,3.1056,3.4163,2.0102,2.1205,1.8811,2.1756,9.279,9.8247,2.659,2.4218,1.8467,2.1408,10.3723,10.1415,1.5772,1.8005,1.1388,1.1887,13.5861,13.3816,4.9632,5.3547,6.8963,7.816,4.3785,3.1461,8.8864,10.2199,6.8894,6.1527,7.6754,7.3685,3.4306,3.4615,1.289,1.4584,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd383,57,57,F,1.3714,1.8035,0.34365,0.36928,0.73506,0.75144,17.0656,2.6297,2.6558,28.1916,26.922,13.5201,13.9885,218.897,213.4574,1.0877,2.9848,2.7632,0.48748,0.37352,7.6903,9.9204,1.5114,1.5046,3.6304,3.7227,6.5912,6.924,4.276,4.444,0.06204,4.6274,2.1431,2.4586,0.3558,0.35979,3.6402,4.4029,3.9905,4.038,1.7043,1.4819,9.3639,7.3997,3.2457,3.2515,3.8236,3.6323,4.3664,4.1656,1.4809,1.5192,1.9924,1.7317,3.2631,3.1008,6.7114,6.5727,1.843,2.0281,6.7628,6.1276,10.1663,9.7698,7.3151,6.7015,2.2034,2.0354,4.2837,4.3498,1.6526,1.8517,17.6219,17.8216,5.1508,6.069,3.6668,3.9596,1.0259,1.0262,2.3434,2.5356,7.7596,7.0358,13.4647,12.256,3.2217,3.7357,3.9088,4.0099,3.0972,3.61,1.5788,1.2491,3.6985,3.7867,9.5387,9.2741,2.6071,2.7702,2.2439,2.2224,2.225,2.3918,10.5362,11.0565,2.2575,2.3944,2.0147,1.9493,11.4539,12.536,1.6213,2.0261,1.0864,1.1799,13.233,13.0945,4.4777,4.7787,6.9792,7.6417,4.5806,3.5506,9.7064,9.7759,6.5102,6.4193,6.9366,7.2069,3.4253,3.3739,1.3872,1.508,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd384,70,70,F,2.4142,2.4877,0.40041,0.4186,0.91559,0.7873,16.0109,2.8766,2.7813,27.9343,24.6806,11.3847,9.2054,234.1269,236.364,1.5899,3.8025,3.6322,0.5229,0.70554,21.7125,25.9601,1.6255,1.6023,3.3926,3.3873,7.2696,7.7356,4.6439,4.9084,0.08415,4.9986,2.1931,1.4796,0.40169,0.41197,4.2935,5.1149,4.2071,4.378,1.8168,1.7542,10.8312,8.8843,3.8735,3.6257,3.9303,4.1119,5.6182,4.8355,1.7387,1.5724,2.0791,2.0414,3.757,3.5467,7.2503,6.9971,2.1899,2.2216,7.3613,6.143,11.9174,11.4696,8.7503,7.9282,2.4708,2.5783,5.035,4.9652,1.9531,1.9318,18.9489,18.7659,5.7094,6.3027,3.8753,4.2189,1.2605,1.2289,3.018,2.8146,8.6373,7.3094,14.6283,14.2003,3.0004,3.2917,4.453,4.2296,3.5463,3.1375,1.5594,1.589,4.4736,4.8769,10.5846,10.4413,3.1552,3.3151,2.313,2.5299,1.806,2.1615,9.7635,11.3454,2.6906,2.6789,2.1845,2.5945,12.4481,13.2651,1.5779,1.9479,1.3445,1.4624,14.4163,14.4765,5.1721,4.9381,6.8857,8.0251,3.8405,3.7422,9.1951,9.1445,7.6795,6.8017,8.5225,8.1635,3.1766,3.9042,1.49,1.6145,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd385,56,56,M,2.6594,1.8463,0.39851,0.42069,0.81764,0.82359,17.815,3.2034,3.0369,52.0037,52.0429,13.8184,14.1073,222.1523,214.3011,2.6887,3.0836,2.9412,2.0116,1.7961,37.5915,42.465,1.636,1.6259,3.6831,3.6962,6.9843,7.1651,4.5871,4.7797,0.06139,5.1974,2.3642,2.6146,0.36143,0.38007,4.2224,4.6228,4.3175,4.2489,1.9736,1.612,11.5855,10.5471,3.3215,2.9452,4.4897,4.0324,4.7764,4.6438,1.5758,1.6922,2.2165,2.0577,3.9318,3.5591,7.207,7.5082,1.9946,2.0778,7.3182,7.0548,11.1621,11.0308,8.3029,8.0496,2.5124,2.6274,4.3437,4.7763,1.9407,1.9858,17.9655,19.216,5.4008,7.0929,3.8847,3.8666,1.069,1.3124,2.5152,2.823,7.7828,7.3574,13.8898,12.8189,3.7035,4.3637,4.3302,4.473,3.4523,3.4322,1.7912,1.8031,4.0128,4.6291,11.011,11.1584,3.0453,3.2543,2.5579,2.2809,2.1122,2.6183,11.4189,13.1117,2.3079,2.345,2.333,2.3694,12.0913,11.5328,1.8799,1.9438,1.1184,1.1554,14.0477,14.2564,5.5017,5.1257,8.2807,9.2919,5.1129,3.9202,12.5354,11.8119,8.0088,7.6602,7.358,7.0813,3.7943,4.1072,1.5927,1.5567,,17,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd386,,,M,3.2846,2.7696,0.31531,0.39194,0.62673,0.71697,15.1615,2.7199,2.9263,38.8014,41.5414,11.4186,11.7189,160.604,150.5561,2.3965,2.8982,2.8842,2.1753,1.333,48.6081,58.4504,1.1776,1.1916,3.2657,3.5409,5.1972,5.319,3.6709,3.8378,0.06455,4.0486,1.8736,2.2808,0.36143,0.34739,3.7918,3.7891,4.0089,4.0614,1.5496,1.3274,8.1014,7.946,3.0725,3.2017,3.3183,3.2123,4.091,3.713,1.279,1.4147,1.8537,1.4748,2.924,3.037,6.9996,6.6064,1.727,1.8086,5.8928,5.5447,9.9931,10.5122,6.9544,6.7001,1.9673,2.1558,3.8826,3.7226,1.4928,1.5133,15.2981,16.5266,5.347,5.5906,3.0127,3.3918,0.92446,0.93037,2.2447,2.0936,6.511,5.7123,11.8607,12.0241,2.8122,3.015,3.5347,3.6566,3.1312,3.0674,1.2625,1.4418,3.0563,3.7611,8.9106,8.4977,2.7302,2.8994,2.4494,2.394,1.7456,1.8166,8.8763,10.0487,2.1132,2.3736,2.1189,2.1754,10.6811,10.188,1.5177,1.486,1.1105,1.1931,12.0196,12.524,4.3475,4.2596,7.0421,7.8423,3.7534,3.4441,8.5685,8.9853,6.6898,6.0762,6.7323,6.8856,3.1308,3.3662,1.26,1.2893,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd387,,,M,1.472,1.8551,0.30712,0.33912,0.7685,0.73343,17.3862,2.4722,2.4484,49.6817,47.6329,15.5442,15.9507,193.0484,189.237,1.2759,3.0757,2.7903,0.55737,0.49065,11.8023,13.7011,1.4893,1.4664,3.1985,3.1348,5.9142,6.0018,4.2859,4.4911,0.07934,4.4525,2.6456,2.801,0.32441,0.35654,3.3465,4.3084,4.0374,4.193,1.6345,1.4608,9.5082,6.9954,2.9937,2.9829,3.4136,3.6124,4.4989,4.0667,1.4693,1.4953,2.116,1.9849,3.5843,3.252,6.8726,6.4578,1.9263,1.9584,5.7045,5.9829,11.0778,9.4626,7.972,7.5597,2.1682,2.259,4.1371,4.2942,1.6125,1.6649,18.3467,18.7835,4.4835,5.121,3.6635,3.5098,1.25,0.94038,2.527,2.4201,7.2112,6.3666,13.799,12.1538,2.7174,3.0273,4.0927,4.5486,3.9717,3.507,1.5866,1.55,3.8029,4.1069,10.2546,10.4332,2.6235,3.0296,2.117,2.2649,1.874,2.5377,9.1919,10.4789,2.3685,2.3644,1.9273,2.2574,11.0874,11.6058,1.6362,1.8926,1.1141,1.1941,13.0274,13.6532,5.1361,4.9362,8.0882,8.4672,3.8669,2.7232,8.6424,9.6846,7.3304,7.3087,7.1958,6.8396,3.6156,3.6503,1.2969,1.5661,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd388,67,67,M,2.201,2.8467,0.39919,0.41321,0.90347,0.90626,17.7762,3.9094,3.6104,50.477,49.2328,13.2315,13.6731,179.8113,173.4067,2.1285,3.4753,3.3166,1.5234,1.6117,24.6327,31.4738,1.4275,1.5129,3.5275,3.8527,7.2128,7.5892,4.4045,4.5855,0.07643,5.1249,2.245,2.7782,0.39005,0.39072,4.7063,5.1765,4.102,4.5626,2.0518,1.7823,12.3409,10.4668,3.2742,3.1572,4.0791,4.1877,4.7458,4.5748,1.8057,1.7002,2.1354,2.0053,3.9948,3.633,8.3586,7.8013,2.1558,2.0666,7.5239,6.4983,13.4129,14.1385,8.4717,7.8848,2.5661,2.7207,5.342,5.247,1.9134,1.9384,21.1619,19.892,6.3417,6.5278,3.9365,3.9386,1.0477,1.2412,2.7296,2.5701,8.3811,7.27,16.4933,16.2596,2.9033,3.2287,4.0602,4.5181,3.7747,3.4918,1.668,1.8233,4.2871,4.728,11.1316,11.6249,3.0666,3.3833,2.7146,2.7114,2.3616,2.4288,11.6598,12.3416,2.5828,2.6564,2.6326,3.0548,13.3306,15.0108,1.9339,1.9948,1.2988,1.3265,15.3549,17.5194,5.3775,5.684,8.5548,9.2919,3.733,2.9982,11.3561,9.9939,7.1236,7.9968,8.5754,8.7519,4.0125,4.5557,1.5416,1.7839,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd389,76,76,M,2.0283,1.6631,0.36748,0.38915,0.80898,0.75558,18.2488,3.2752,2.8943,48.961,48.7685,13.2285,13.5793,195.3437,191.9704,2.0004,3.2757,2.9947,0.80317,0.84609,30.9267,28.8535,1.5456,1.5505,3.8694,3.6271,7.0232,7.3053,4.496,4.6343,0.06422,5.1249,2.3151,2.7688,0.41104,0.39221,3.955,4.6638,4.5114,4.6694,1.778,1.6258,9.9299,9.0159,3.3191,2.8913,4.103,3.6323,4.8252,4.3741,1.6944,1.5579,1.9812,2.1016,3.7029,3.4204,6.8956,6.7072,2.1301,2.2165,6.4392,5.9517,11.4971,10.8031,7.9709,8.097,2.0758,2.5249,4.4194,4.7261,1.8624,1.9,18.9592,18.2848,5.1217,5.6353,3.8495,4.3148,1.0743,1.3481,2.4975,2.9781,7.8807,7.1463,14.3478,13.0863,3.0013,3.0963,4.3109,4.0253,3.8191,3.2797,1.457,1.5328,4.074,4.5228,11.9621,11.1221,2.9241,3.1414,2.3183,2.5536,2.0051,2.399,10.2031,11.7189,2.2296,2.4754,2.0678,2.5356,12.7529,13.2339,1.5961,2.1613,1.3989,1.4805,14.6309,14.8706,5.2705,4.9228,7.077,8.2931,4.2872,3.3455,10.754,11.0679,7.3023,6.807,7.2326,7.2301,3.4093,3.6669,1.3402,1.7839,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd390,65,65,F,1.3555,1.8403,0.36347,0.40699,0.76775,0.77227,17.684,2.855,2.7236,47.2334,47.8707,14.2836,14.6336,204.8771,207.8898,1.368,3.2704,2.9702,0.39191,0.42677,13.0689,15.1691,1.4537,1.4491,3.7943,4.0042,6.6749,6.924,4.1359,4.2939,0.07498,4.6817,2.1308,2.8787,0.37755,0.35469,3.2603,4.0531,3.928,4.0966,1.6717,1.5808,10.6495,10.2165,2.4982,2.614,4.1768,4.2639,3.6957,4.0441,1.6425,1.4683,1.9782,1.9355,3.4889,3.0359,7.0693,7.1654,1.9519,1.9565,6.4673,6.0712,11.031,11.089,7.4874,6.8663,2.1682,2.4125,4.1164,4.2647,1.5715,1.5494,18.1699,18.1785,5.2515,6.5332,3.5735,3.7696,1.0793,1.0262,2.5962,2.5799,7.2702,6.029,14.6532,14.7968,2.5739,2.8725,4.0096,4.2366,3.279,2.7665,1.5768,1.6004,3.9087,4.325,10.5983,10.3743,2.8873,2.9862,2.2595,2.3419,2.3003,2.5248,9.5763,10.8314,2.1149,2.5716,1.9836,2.3492,11.6145,12.0433,2.0754,2.2746,1.1141,1.2219,14.4175,15.2734,4.7624,5.1211,7.2171,8.3731,3.6415,3.1632,10.6498,10.7687,6.6149,7.8232,7.1644,7.0025,3.7217,3.6669,1.455,1.7436,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd391,72,72,F,2.5027,2.2419,0.26034,0.29365,0.66067,0.66117,15.0058,1.6327,2.2076,39.9028,40.733,12.3303,12.8799,171.7744,166.9242,2.3921,2.9639,2.6601,1.0036,1.2492,27.4336,32.0552,1.376,1.4105,3.1281,3.1348,5.5596,6.2038,3.8951,4.0697,0.06455,3.9853,1.992,2.3747,0.33227,0.30427,3.5383,3.8019,3.3259,3.4294,1.3442,1.1981,8.3589,7.2641,2.9997,3.1124,3.1371,3.2403,4.2131,3.9989,1.3537,1.3399,1.4777,1.4889,3.0618,2.837,6.3894,6.0792,1.6336,1.5903,5.5892,5.0373,9.6125,9.6013,7.4049,6.9013,1.8843,1.7794,3.5392,4.1221,1.4448,1.3547,14.6268,15.4102,4.4501,4.7696,2.8623,3.1058,0.86488,0.99768,1.9324,2.1198,6.2368,5.4923,11.259,10.7707,2.2418,2.7624,3.9017,3.5079,2.482,2.5914,1.3296,1.1352,3.0558,3.7408,9.5582,9.0895,2.6072,2.6956,1.8902,2.003,1.9454,1.8952,8.5085,10.0321,1.9982,1.9931,1.7118,1.9091,10.5813,9.6896,1.4714,1.486,0.93125,1.0196,11.8048,11.5908,3.9413,4.1638,5.9791,6.8321,3.5341,2.6645,8.7626,9.1825,5.9154,5.2566,6.5621,6.5267,2.8801,2.9625,1.194,1.2057,,4,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd392,67,67,F,1.6407,2.0759,0.32688,0.35956,0.67283,0.61588,16.589,2.7705,2.7309,42.862,43.9089,12.1553,12.5481,183.5008,189.0925,1.6254,2.8602,2.5612,0.90852,0.93226,13.6285,18.1597,1.357,1.3464,2.8663,2.9232,6.1317,6.1409,4.0971,4.2449,0.06836,4.0268,1.9878,2.2817,0.31235,0.32294,3.5866,3.7709,3.7741,3.8937,1.6303,1.4061,8.749,8.7033,2.7178,2.7326,3.2858,3.7772,4.2043,3.8057,1.4493,1.335,1.7385,1.7952,3.2479,3.2423,6.3907,6.3928,1.6976,1.7443,4.3628,5.398,9.917,9.5955,7.1017,6.4803,1.936,2.0892,4.7066,5.1063,1.5055,1.5077,14.5359,14.971,4.4493,4.9091,3.3085,3.563,1.0589,1.1753,2.4473,2.5823,6.4216,5.5425,11.541,11.3677,2.0437,2.4683,3.6822,3.6566,3.3687,2.8977,1.3185,1.3871,3.6395,3.8171,9.6531,10.4289,2.5317,2.559,2.0525,2.1711,1.9255,1.9224,8.9115,11.0625,2.0676,2.207,1.928,2.1727,10.5223,11.7862,1.5466,1.6056,1.1388,1.1,13.7606,13.1831,4.612,4.5201,7.2698,8.5838,3.9037,3.0659,9.4004,9.8267,6.2713,5.8152,6.6545,6.051,2.9217,3.4155,1.3581,1.2955,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd393,69,69,F,0.82014,1.9381,0.38153,0.41064,0.90904,0.90859,18.8633,2.7501,2.7172,53.872,51.2891,15.6745,16.8369,251.9128,250.5173,1.0269,3.6718,3.2736,0.42116,0.44524,8.5651,7.5408,1.7496,1.698,3.9125,3.8966,7.6923,8.049,5.0371,5.2838,0.0767,4.6296,2.2352,2.97,0.38394,0.41433,3.6227,4.1262,3.7583,3.9433,2.1278,1.8047,12.1452,10.4851,3.1256,3.0552,3.5122,3.725,4.7354,4.5713,1.8746,1.6972,1.7588,1.8403,4.4396,4.1805,8.289,7.9227,2.2903,2.238,7.1181,6.9187,12.0698,11.0984,8.0098,7.7402,2.6877,2.6354,4.1272,4.2561,2.0461,1.9821,22.3019,20.2197,5.7511,6.4612,4.2661,4.623,1.2433,1.2654,2.8339,2.9189,6.6631,5.8604,15.2442,13.678,3.7035,4.3907,4.3736,4.5027,4.1684,3.7671,1.8682,1.502,3.915,4.3043,11.7678,11.2292,3.2494,3.3253,2.0891,2.2052,2.2098,2.0094,9.877,11.3727,2.5801,2.8383,1.7805,2.0773,14.1394,15.3695,1.8111,1.8484,1.2792,1.2697,15.2906,16.2906,4.7566,5.1211,7.8348,8.8807,4.6947,3.6511,10.0179,10.2812,8.0468,7.9303,8.5115,8.0899,4.0204,3.787,1.2908,1.3774,,29,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd394,,,F,1.2254,1.3062,0.35806,0.42314,0.81267,0.71904,15.3697,3.2366,3.0836,46.0148,45.5105,12.6874,14.0604,208.9435,206.1839,1.2586,3.3722,3.0505,0.35824,0.37161,10.462,10.9836,1.3494,1.3074,3.4841,3.605,6.3432,6.5824,3.8353,3.9321,0.07213,4.7108,2.1287,2.6648,0.37417,0.36187,3.4618,4.2382,3.7839,3.8937,1.7927,1.598,9.768,9.6711,2.7307,2.7791,3.5421,3.1584,4.1683,3.9864,1.6396,1.1769,1.7505,1.9466,4.0582,3.6603,7.0693,7.1654,2.1154,2.0292,6.0062,6.7482,11.756,11.0215,6.9763,7.1866,2.2373,2.3057,4.2587,4.3288,1.7617,1.7345,19.0404,19.922,4.9023,6.6593,3.9961,3.9652,1.051,0.87729,2.5278,2.1295,7.7075,6.6879,14.5391,14.557,2.7992,3.1911,3.8619,4.0772,2.5408,3.4049,1.5009,1.2603,3.6401,4.0433,9.1747,10.0151,2.8675,2.9739,1.941,2.065,1.9935,2.1097,10.0432,11.3227,2.4142,2.4252,1.7949,2.0831,11.1964,11.9453,1.7022,1.8587,1.2042,1.3157,14.6543,15.3658,5.1062,5.2108,7.6708,8.7829,3.9259,3.7136,9.4309,10.0089,7.1474,7.0429,7.1243,6.8292,3.4372,3.3907,1.3803,1.387,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd395,79,79,M,2.3616,2.0275,0.38417,0.39958,0.86217,0.84092,18.1318,2.6583,2.5944,52.0037,52.0746,15.0585,15.5424,231.9271,224.2628,1.7846,3.6263,3.2316,0.75266,0.86062,20.8601,25.9601,1.6406,1.654,4.0497,4.2169,7.663,7.8413,4.6624,4.8669,0.07789,5.521,2.245,2.9675,0.37909,0.40256,4.3461,4.9454,3.8379,3.9136,1.7091,1.6095,8.9804,8.6328,3.479,3.6252,4.058,4.0155,4.8648,4.3545,1.7707,1.6314,2.0217,2.1427,3.2742,3.0811,8.3507,7.6282,1.9635,1.993,6.628,6.2071,12.0676,11.0853,9.245,8.0287,2.2262,2.4247,4.57,5.0769,1.6585,1.7653,19.6031,19.0645,5.1801,5.981,3.7639,3.7608,1.4516,1.1039,3.123,2.631,7.5962,6.458,14.8922,13.0271,2.9069,3.6447,4.2481,4.2973,3.7979,3.0023,1.589,1.8031,4.1532,4.0821,10.4286,10.0906,3.1447,3.2955,2.1967,2.2288,1.9877,2.2906,10.2815,10.2494,2.3369,2.3339,2.0261,2.3153,11.8631,12.5485,1.5961,2.1445,1.1721,1.2805,13.4644,14.0875,5.269,4.7741,7.7627,8.3272,4.1087,3.7914,10.6544,9.9727,7.8387,7.5846,8.0132,7.5783,3.9268,4.0317,1.2959,1.672,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd396,,,F,1.3846,1.2513,0.33279,0.36562,0.77569,0.73163,14.4094,3.0468,2.8869,15.1677,8.4133,3.8003,2.9582,167.8266,166.051,1.2759,3.0233,2.8601,0.64781,0.68477,12.81,16.3416,1.1754,1.1916,3.6883,3.3777,5.3608,5.5218,3.4773,3.8961,0.08356,3.8533,0.88859,1.9396,0.36673,0.34565,3.6592,4.0964,3.8936,3.7464,1.6958,1.563,8.2922,7.1037,2.8194,2.8439,3.755,3.8891,3.2424,4.3597,1.557,1.4891,1.5209,1.6262,3.3155,3.1138,6.1247,5.8516,1.8886,1.8037,5.1878,4.5324,9.3017,8.9927,6.263,6.2959,1.9941,2.2721,4.2837,4.4628,1.585,1.5646,16.507,17.3935,4.0341,5.4096,3.5397,3.7671,0.8586,1.1048,2.4657,2.1956,6.9543,5.955,10.7111,10.6368,2.3938,2.5508,3.6369,3.0676,2.8424,2.4859,1.3375,1.4125,3.5786,3.8922,9.7507,9.6675,2.7143,2.7836,2.1427,1.9738,1.8636,2.187,9.0756,11.7269,2.0676,2.5069,1.7033,1.8391,10.8645,11.7862,1.6954,1.5947,1.0691,1.0558,11.5871,12.3486,4.7562,4.7393,6.7592,7.8429,3.9022,3.0052,9.4004,8.8561,6.3164,5.4729,6.5082,6.2387,3.018,3.1986,1.369,1.1738,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd397,71,71,M,2.154,1.4758,0.38384,0.43293,0.9583,0.94756,17.8395,2.4192,2.483,47.8771,48.0839,14.6129,14.7204,261.275,255.7585,1.5056,3.9042,3.6808,1.0017,0.76939,14.2137,19.5313,1.8646,1.8908,3.3802,3.4555,7.7925,8.0975,4.6494,5.0235,0.09098,4.7098,2.2981,2.6687,0.40882,0.4046,4.672,5.0472,4.4507,4.8321,1.8966,1.5044,10.1484,9.2428,3.7296,3.6806,4.1936,4.6945,5.9264,4.8128,1.9785,1.8609,1.9749,2.3372,4.0094,3.7021,8.1937,8.4465,2.2082,2.2212,7.6337,7.5284,12.3971,12.3279,9.125,8.0332,2.3675,2.3359,4.9104,5.1549,1.9492,1.8628,20.694,20.9488,5.4944,6.1152,4.0723,4.3627,1.0876,1.1164,2.8439,3.0303,8.371,7.5175,15.7167,14.4218,3.2211,4.0652,4.6508,4.7157,3.0754,3.5007,1.5037,1.3119,4.1098,4.7787,11.7594,11.096,3.4273,3.2579,2.4661,2.4726,2.2331,2.6676,12.0025,12.3322,2.336,2.6807,2.1073,2.575,13.0812,14.8469,1.9912,2.0494,1.3445,1.4764,15.0078,15.124,5.4414,6.0188,8.4524,8.0809,4.5964,3.88,9.684,10.7694,7.5512,7.4974,8.3288,8.4288,3.5694,3.1907,1.404,1.8601,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd398,66,66,F,1.5988,1.9337,0.37607,0.3701,0.81053,0.78419,14.7604,2.8302,2.4052,37.5752,37.811,10.9827,11.9739,234.1269,234.1957,1.2296,3.0354,2.6776,0.42204,0.41122,10.4673,11.423,1.6101,1.5737,3.3923,3.2226,6.5912,7.0209,4.0859,4.2973,0.0635,3.7976,1.8867,2.2169,0.32261,0.37323,3.7724,4.3947,3.7453,3.8165,1.7298,1.4819,12.0358,8.7968,2.5212,2.4886,3.5958,3.2958,3.8955,3.6052,1.5899,1.4891,1.7598,1.9445,3.8561,3.6374,6.7028,6.3222,2.0343,2.0685,5.8472,6.0013,11.0579,10.2545,6.8636,6.2255,2.2909,2.2357,3.9332,4.1199,1.7515,1.7049,18.8893,17.1431,4.8922,6.2003,3.6743,3.9735,0.98225,1.0611,2.4465,2.5842,7.6315,6.9068,13.1632,13.6564,2.4348,3.1119,3.863,3.5111,3.4747,3.7596,1.6822,1.4658,3.3725,3.7649,9.3341,9.6145,2.7605,2.9855,2.2158,2.2657,1.9259,2.0437,8.606,9.5882,2.0923,2.5251,2.0277,2.2152,10.8167,11.4156,1.655,1.9016,1.0314,1.1084,14.6636,13.4651,5.0951,5.057,8.4619,8.0408,3.4082,3.2554,9.275,8.2383,6.8894,7.0721,7.1644,7.2896,3.4794,3.9146,1.2959,1.6558,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd399,,,M,2.0909,2.3676,0.29701,0.32609,0.66088,0.66135,20.2468,2.7154,2.8728,47.3816,48.3698,19.6819,19.9391,242.2642,238.1675,2.1828,2.7718,2.647,1.7858,1.6401,23.1492,28.1178,1.6668,1.6544,3.5262,3.4843,6.8344,7.0742,5.0986,5.254,0.08054,4.8064,2.3064,2.5642,0.31593,0.43776,3.7329,4.0572,3.9166,4.2661,1.5749,1.3214,9.1593,7.9992,3.0739,2.8827,3.8993,4.0983,3.7929,4.1975,1.3046,1.3227,1.7695,1.9733,3.2315,2.9085,5.7859,6.4193,1.7869,1.8174,4.9028,4.866,9.0157,8.8146,7.1534,6.3627,2.0493,2.0831,4.2237,4.2348,1.5862,1.6313,15.9057,16.0015,4.1514,4.831,3.3546,3.4719,0.91522,1.204,2.3593,2.7598,6.9458,6.178,10.9882,11.5067,3.0861,3.3791,3.8353,3.5991,3.1785,3.4972,1.5145,1.4422,3.1766,3.4438,9.385,8.9741,2.6202,2.7096,2.397,2.2569,2.3616,2.3329,9.6931,11.3304,2.0896,2.1708,1.89,2.1163,11.7555,11.6246,1.8744,2.0005,1.3351,1.4734,13.2138,13.5618,4.5318,4.5387,7.6196,9.3403,3.6644,3.2754,9.6188,9.1201,6.8639,6.4001,6.7323,7.3564,3.1455,4.103,1.6093,1.5044,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd400,63,63,F,0.947,1.6452,0.40749,0.4675,0.88749,0.90897,17.7466,3.0841,2.675,35.0639,33.5396,14.4054,15.2271,222.5464,222.3009,0.89851,3.3652,3.1856,0.40118,0.34487,8.1124,8.8317,1.5114,1.4314,3.8803,3.8085,6.7086,6.8997,4.6454,4.9523,0.0845,4.6347,2.1036,2.3776,0.41876,0.41273,3.5594,4.2382,4.3377,5.2613,1.8887,1.6574,9.5148,8.3923,3.4045,3.3204,3.2401,3.308,4.0595,4.277,1.9038,1.741,1.9656,1.9711,3.7522,3.3434,7.4384,7.1972,2.1109,2.2249,6.6976,6.362,11.4342,11.49,8.4588,7.7564,2.3512,2.5063,3.9332,4.16,1.7657,1.7049,18.8893,19.56,5.3816,5.5351,4.1567,4.2231,0.92792,0.93141,2.7211,2.0748,7.7103,6.4163,13.8112,14.8506,3.2164,3.9331,4.4483,4.6582,3.6483,3.5953,1.6712,1.5579,4.2319,4.6726,10.2035,10.6738,3.1601,3.3962,2.4361,2.4628,1.878,2.3681,7.9696,9.5345,2.4103,2.6967,1.9982,2.2682,12.4315,12.4872,1.6445,2.4288,1.1899,1.2881,13.9933,14.177,4.7946,4.8619,7.2777,7.8636,3.6644,3.2678,10.2113,11.3401,7.9287,7.1664,8.5438,7.923,3.8612,3.9122,1.299,1.7766,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd401,75,75,M,1.7758,1.7113,0.37711,0.41771,0.83178,0.82436,18.0157,2.9039,2.9707,28.2987,26.488,16.2098,16.8291,201.0988,200.9291,1.3765,3.0928,3.5761,0.65501,0.53477,18.1727,16.0454,1.4537,1.4444,4.197,4.2289,7.159,7.5574,4.2237,4.6351,0.06628,4.0126,2.0164,0.2032,0.35475,0.36743,3.6289,4.0071,4.1186,4.2558,1.4902,1.4123,9.4737,9.431,3.2514,2.6444,3.6925,4.0747,4.2223,3.7986,1.4859,1.5448,2.0993,1.8755,3.2779,3.3803,6.6059,6.2539,2.0818,2.0685,6.2894,6.2837,11.0579,10.8045,7.5364,6.8854,1.9375,1.9197,4.2057,4.41,1.7035,1.6782,16.6407,17.2447,4.6329,5.3522,3.5685,3.8401,1.0741,0.97321,2.145,2.1904,6.7355,6.2112,14.5429,13.0271,2.8192,3.0453,4.0219,3.7681,3.5997,3.6648,1.2483,1.09,3.883,4.4389,10.3895,9.8585,2.6373,2.9457,2.3783,2.305,2.0859,2.008,9.2746,10.9721,2.2067,2.1929,2.2391,2.1287,10.3723,10.7072,1.7164,2.0697,1.2428,1.2777,13.5098,13.5656,4.7634,4.5444,7.5826,7.2811,3.916,3.5209,9.5535,9.3275,7.8384,6.6392,6.8313,7.097,3.24,2.9626,1.6457,1.5485,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd402,61,61,M,1.9816,2.1091,0.49537,0.53321,0.96856,0.97955,20.2776,3.3853,3.0601,52.7122,51.1016,14.9431,15.2945,233.6644,236.611,1.8617,3.6778,3.6642,0.68332,0.75136,27.5036,30.9263,1.7739,1.7979,3.9383,4.111,7.9724,8.3308,5.139,5.3933,0.09689,5.4789,2.4147,2.9334,0.46722,0.48151,5.0313,6.5134,4.6538,4.8085,1.8182,1.6856,11.4018,10.7749,3.5456,3.6252,5.3782,4.9235,5.3644,6.1359,1.931,1.8626,2.3046,2.4241,3.9677,4.1468,8.5003,7.9638,2.219,2.3465,8.5205,7.9981,13.9916,13.1241,9.7915,8.7069,2.6095,2.747,5.7194,5.4468,2.1551,1.9903,18.5704,19.4458,6.1579,7.6079,3.97,4.2769,1.5299,1.3386,3.6503,3.0387,9.4258,7.9523,19.0242,15.7252,3.864,4.253,5.2554,5.3126,4.4141,4.3849,1.7894,1.6911,6.1239,5.0463,11.9513,13.1864,3.4245,3.6673,2.8884,2.5927,2.3301,2.4889,12.6202,15.0051,2.6904,2.7361,2.1613,2.5945,15.2203,13.0547,1.9788,2.0494,1.4563,1.4442,15.8672,15.8127,6.7193,6.51,9.1852,9.2554,4.6666,3.8774,15.7637,11.8495,8.468,7.8305,10.7681,9.4607,4.0742,4.8047,1.5361,1.9453,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd403,,,F,1.4719,1.5222,0.40101,0.42626,0.8916,0.86239,16.6992,2.6128,2.4758,38.9026,39.9015,11.5346,12.8773,221.5317,224.2603,1.0956,3.5816,3.2196,0.6201,0.54447,14.947,18.7588,1.6274,1.6023,3.4874,3.5266,6.6755,6.6353,4.7595,4.873,0.08013,4.9457,1.9311,2.2432,0.38884,0.37258,3.6227,4.2679,4.1279,4.1145,1.7919,1.6753,9.6727,8.3923,3.0221,2.9999,4.0287,4.3187,4.6173,4.1609,1.6715,1.6232,1.9232,1.9723,3.6211,3.0604,7.5268,6.904,1.9964,2.0515,6.7567,7.438,12.3106,12.039,8.0404,6.9586,2.396,2.559,3.9765,4.1845,1.7502,1.5853,17.7502,16.929,5.7823,6.8641,3.882,4.074,1.1188,1.3634,2.3706,2.9477,7.7122,6.2941,13.9705,14.9175,3.9516,4.4609,4.3272,3.9968,3.1999,3.4076,1.5468,1.5883,4.301,4.6368,9.6993,10.0704,2.8498,3.2482,2.2089,2.2443,1.9107,2.3082,10.3026,12.5857,2.3189,2.4625,1.8932,2.2691,12.9492,12.9722,1.5796,1.8972,1.0885,1.2203,13.4644,13.1624,6.0924,6.1866,7.6688,8.8259,4.4252,3.3441,9.5839,11.9904,6.8655,7.5387,7.4341,7.5491,3.4653,3.7456,1.3179,1.7699,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd404,,,F,1.6135,1.5346,0.33048,0.33917,0.85789,0.82202,15.3515,2.7801,2.5866,42.7073,41.4904,13.8541,13.5961,204.8715,208.9042,1.2083,3.2742,3.0423,0.49291,0.55654,8.265,10.1129,1.2456,1.2494,3.6568,3.518,6.0299,6.3183,3.9107,4.0854,0.07213,3.607,1.9338,2.431,0.34237,0.33271,4.1866,4.3563,4.025,4.1862,1.6939,1.2721,9.5082,8.5316,2.6463,2.7791,3.5002,3.5066,4.2675,3.9551,1.5833,1.5824,2.0993,1.8123,3.176,2.9948,7.5047,6.904,1.799,1.7244,6.0112,6.0919,11.5909,10.958,7.1455,6.3731,2.1151,2.1536,4.4958,4.734,1.4764,1.5082,15.6477,15.6616,4.5922,6.4153,3.5876,3.4483,0.70435,1.0753,2.2727,2.2739,7.1172,6.0357,14.3263,14.6998,2.4613,2.9945,3.967,3.938,3.4737,3.2505,1.4978,1.4418,3.5844,3.8112,9.6417,9.9161,2.8626,3.1717,2.1743,2.3288,2.3633,2.5174,9.279,10.1847,2.2487,2.0967,1.9189,2.1408,10.5813,10.7317,1.9245,2.3556,1.0685,1.1289,12.212,11.6029,5.1824,4.7806,6.609,9.1804,3.8384,3.0659,9.2904,9.8113,7.3547,7.3967,7.5884,7.629,3.6063,3.6085,1.5011,1.5485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd405,69,69,F,1.1649,1.2937,0.41178,0.42411,0.89318,0.86678,16.0067,2.6128,2.4605,46.6868,44.7829,12.2852,12.2231,183.8891,179.6528,1.2559,3.6065,3.2316,0.67471,0.52345,13.2144,20.0874,1.357,1.3605,3.6768,3.7885,6.2893,6.0793,4.23,4.425,0.08828,4.7338,2.3143,2.7436,0.39117,0.38596,4.0944,4.4582,4.0509,4.2093,1.7895,1.6807,9.9299,8.3923,3.0811,3.1621,4.1037,4.3539,4.4619,4.3969,1.6549,1.6599,1.7646,1.9304,3.5305,3.1138,7.1379,6.8404,1.8574,2.0006,5.4877,5.6019,10.8476,10.2239,8.0791,7.1813,2.1745,2.559,4.6952,4.9199,1.732,1.845,17.828,16.9412,4.8364,5.6491,3.5876,3.7695,1.1688,1.1962,2.5856,2.5142,7.7004,6.9141,13.7589,11.7806,2.5522,2.8797,4.0199,4.0633,3.6146,3.1331,1.5607,1.5286,3.8848,4.1789,10.746,10.3582,2.9699,3.3524,2.2028,2.3503,2.2136,2.3713,9.8526,11.3454,2.3682,2.698,2.0332,2.3017,11.6764,10.5878,1.8433,1.8216,0.91095,1.0201,13.268,13.631,5.1136,5.2739,9.2243,9.1709,3.6954,3.2171,10.3038,10.2664,7.1015,6.9867,7.2099,7.1232,3.2917,3.5457,1.4361,1.7699,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd406,67,67,M,2.0299,2.9716,0.3488,0.38133,0.66017,0.64098,20.0226,3.0644,2.8481,45.4788,46.7756,19.9017,22.1671,249.6425,235.9845,2.0058,2.8547,2.6789,1.7114,0.9345,24.219,18.2188,1.7519,1.6123,3.5583,3.3121,6.6898,6.8994,4.8194,5.029,0.07733,4.8064,2.1092,2.5866,0.36046,0.35921,3.9387,4.1443,3.9487,4.2762,1.5169,1.3341,8.3779,7.6577,3.3733,3.1698,3.4629,3.9159,4.8153,4.447,1.2808,1.2683,1.7152,1.6752,3.1832,2.9111,7.1238,6.8267,1.78,1.8414,6.4392,5.801,10.4764,10.6215,7.5903,7.1973,2.0652,2.2107,4.6893,4.5669,1.5856,1.4705,16.6407,15.7424,4.6431,5.2418,3.0127,3.6503,0.99093,1.0348,2.0981,2.3577,7.0821,6.3812,12.5326,13.0084,3.2342,3.3791,4.1177,3.7863,2.7745,3.2478,1.3287,1.4418,3.9248,4.2673,11.1316,11.2784,2.7711,2.8395,2.1718,2.2756,1.958,2.336,8.6783,10.4308,2.14,2.303,2.0199,2.3099,10.1462,10.5874,1.6134,1.9438,1.0546,1.1527,13.927,13.8567,4.9428,4.7219,7.2704,8.151,4.0303,3.6641,10.2994,9.9939,6.6136,6.9033,6.6456,7.3433,2.4577,3.5039,1.5081,1.5239,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd407,67,67,F,1.3524,1.8403,0.36213,0.38861,0.76775,0.74588,16.0576,2.9314,2.8513,38.8014,39.5564,10.7408,11.3255,206.115,208.07,1.5796,3.2514,2.9636,0.58396,0.85075,16.7882,17.7235,1.4455,1.3178,3.3584,3.278,6.1144,5.9962,3.916,4.216,0.06777,3.8533,1.7779,2.3772,0.41347,0.39964,4.0253,4.265,3.9727,3.9407,1.6824,1.4319,9.6025,8.5927,3.58,3.2596,3.4373,3.6835,4.4068,4.1353,1.4898,1.472,1.8833,1.8498,3.3198,3.1244,6.6275,6.5727,1.9337,2.0598,5.9165,6.2899,10.9414,9.5007,8.2625,7.031,2.1152,2.259,4.4469,4.2041,1.5995,1.6313,18.477,17.4871,4.7324,6.047,3.8013,3.8912,1.0959,1.1926,2.4558,2.6654,7.0561,6.2544,14.7741,11.413,2.7949,3.0453,3.9425,3.7823,3.3074,3.1365,1.5673,1.4598,3.7861,4.0189,9.5387,9.4232,2.6424,2.8801,2.4071,2.2773,1.7536,1.999,9.4488,10.1489,2.3325,2.5731,2.0971,2.4206,10.9358,11.1387,1.6089,1.6453,1.1412,1.1858,12.7821,12.771,4.9108,5.2041,8.0461,7.5044,3.8047,2.9222,9.0405,10.4569,6.5968,6.074,7.2374,6.2784,3.2911,3.6428,1.353,1.376,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd408,78,78,M,2.3438,2.528,0.43358,0.47758,0.93015,0.95982,17.7762,3.3168,3.251,54.7687,56.7564,14.2406,14.2393,231.9229,230.6618,1.7914,3.5455,3.3501,0.9969,0.80833,27.5036,28.7946,1.7547,1.7725,4.3591,4.2979,7.1373,7.5574,4.7054,5.0235,0.08434,5.0099,2.4251,2.9885,0.45532,0.43711,4.7026,5.078,4.7665,4.7265,1.947,1.772,10.8969,9.1351,3.8929,3.4106,4.2875,4.6986,4.8737,4.8414,1.7874,1.8122,2.0531,2.0581,4.2401,4.1928,8.7955,8.1912,2.4687,2.4964,7.5239,7.418,13.6542,13.1241,8.9198,7.9282,2.4351,2.6506,5.1184,5.5136,2.2046,2.0095,19.5505,20.7538,5.154,6.8424,4.3013,4.6246,1.1743,1.3434,2.9956,2.8154,9.0757,7.9071,16.5941,15.8939,3.8712,4.4832,4.8025,4.701,3.762,3.5502,1.6433,1.7048,5.0546,5.319,12.0285,12.8934,2.9151,3.2276,2.6484,2.7304,2.2298,2.5265,11.473,13.2226,2.6649,2.9114,2.2133,2.5914,13.2394,13.423,2.1241,2.1184,1.4588,1.435,15.6729,15.7859,6.2855,6.51,8.4524,8.6043,4.9509,4.7436,11.3561,11.0505,8.4079,7.273,8.8573,8.5867,3.7601,3.9737,1.6713,1.741,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd409,65,65,M,1.0188,1.5845,0.42152,0.46211,0.89568,0.98359,18.6779,3.3844,3.1856,44.6002,44.4746,14.0223,14.6249,233.3043,236.364,1.2408,3.4125,3.3539,0.40967,0.32914,10.462,9.8195,1.7202,1.7194,3.9218,3.7795,7.631,8.049,4.8413,5.1317,0.04755,4.1392,1.9941,2.3025,0.41518,0.4362,4.3094,5.1149,4.4752,4.8409,1.9333,1.7987,12.1452,11.3323,2.9026,3.054,4.5053,4.4052,4.2944,4.7369,1.7793,1.7618,2.1933,2.192,4.3521,3.8796,7.7486,7.6505,2.4681,2.3336,7.0424,6.7989,11.5592,12.0056,7.462,7.775,2.6412,2.7017,4.4718,4.7032,2.2693,1.9821,21.3627,20.2197,5.677,6.6145,4.3885,4.5409,1.135,1.2654,2.822,2.8748,8.4573,7.2885,14.3478,14.4012,3.2424,3.895,4.3265,4.5039,3.6102,3.5426,1.8723,1.8326,4.4736,4.8835,10.997,12.0571,2.9363,3.1678,2.3431,2.278,2.9821,2.7369,12.0336,11.7424,2.6656,2.8106,1.9649,2.1608,12.5464,13.512,2.3606,2.3352,1.3131,1.3644,15.1682,16.593,5.6201,5.6885,9.3803,10.4137,4.4738,4.2325,11.2587,11.3832,7.9944,7.8241,8.8386,8.4288,4.1855,4.4704,1.3845,1.5798,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd410,79,79,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd411,71,71,M,2.154,1.6804,0.35086,0.42061,0.83986,0.87536,18.4101,2.6329,2.5817,48.6069,49.247,14.1985,14.5417,207.6328,202.681,2.0344,3.4839,3.3506,1.1855,0.9679,19.5055,23.1483,1.4184,1.41,3.4495,3.5927,6.338,6.6061,4.1711,4.6351,0.08959,5.0099,2.1319,2.52,0.37909,0.40045,4.7235,4.9895,4.034,4.1686,2.0206,1.7774,10.6153,9.3302,3.8375,3.5443,4.0902,3.8715,5.3855,4.7596,1.5306,1.5289,1.8845,2.1288,4.1304,3.6687,7.3608,7.2967,2.1596,2.0366,7.1069,7.5747,11.629,11.1868,7.7976,7.7994,2.5661,2.4985,5.2013,4.8805,1.8834,1.926,18.6234,19.0342,5.027,6.8466,3.8695,3.8569,1.0477,1.0477,2.7871,2.5253,8.4784,7.4477,13.8898,13.6697,3.1402,4.0632,4.4752,4.6446,3.5385,3.4918,1.5772,1.6331,4.3629,4.5832,10.3351,10.3626,2.846,3.1342,2.3294,2.2704,2.2906,2.4004,10.8847,11.4351,2.3616,2.6346,2.0387,2.2819,13.467,13.7414,1.9109,2.1958,1.3166,1.3388,15.1279,14.5441,5.0958,5.3369,8.1468,9.4172,4.2818,4.2232,10.5594,10.483,6.9535,6.7011,7.7904,6.5995,4.0663,4.6862,1.404,1.672,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd412,,,M,1.7635,1.9242,0.33253,0.371,0.67283,0.61588,18.827,2.5624,2.7309,47.8126,47.0307,16.2491,15.8947,237.2557,232.4672,1.7956,2.9116,2.6566,1.0422,1.1008,20.9274,25.6471,1.6818,1.6838,3.4324,3.4327,6.6898,7.862,4.917,5.1048,0.07963,5.1289,2.3064,2.7406,0.34592,0.35762,4.1278,4.341,4.1956,4.1532,1.6456,1.3958,11.4893,10.4668,3.6393,3.2504,4.5358,4.1444,5.2497,4.5205,1.2883,1.137,2.0403,1.8651,3.7518,3.2977,7.0512,6.9626,2.1025,1.9996,5.909,5.9589,11.0775,10.5122,7.7846,7.4548,2.1137,2.168,4.9001,4.4466,1.8179,1.7254,18.3593,17.7897,4.9089,5.3917,3.6406,3.62,0.98736,1.4219,2.406,3.056,7.9787,6.5125,13.2145,13.0377,2.5101,3.4953,4.071,4.0574,3.407,3.9138,1.4587,1.4755,3.8666,4.2633,10.0699,10.5648,2.7711,2.884,2.5809,2.2883,2.3301,2.3883,10.4753,11.28,2.21,2.3786,2.2957,2.1555,12.4675,12.2439,1.841,2.0647,1.1179,1.1536,15.0862,13.4651,5.0751,4.9962,9.1852,10.3407,4.7405,4.0134,10.8623,10.7558,6.9194,6.9543,7.1652,6.5834,3.6116,3.9927,1.5416,1.5321,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd413,80,80,F,1.6733,2.1439,0.29664,0.34427,0.64534,0.78021,17.5146,2.2173,2.1284,47.5632,48.7275,14.3518,14.8204,221.2064,216.8382,2.0508,2.5942,3.0347,1.1542,1.5123,31.4798,27.853,1.5413,1.5403,3.5262,3.4552,5.7264,6.5162,4.4807,4.6959,0.07932,5.0323,2.1969,2.517,0.37921,0.38384,4.514,4.9207,3.8856,4.0479,1.7531,1.453,10.1476,8.5907,2.739,2.5467,3.9927,3.9962,3.6079,3.9667,1.3409,1.4871,1.9335,1.8592,3.5009,3.176,7.1548,7.029,1.8311,1.951,6.6582,6.0086,10.6808,10.8506,7.5873,6.8042,2.2034,2.4893,4.8872,4.9883,1.6433,1.6784,17.6072,17.5116,5.6415,6.2736,3.6043,3.7081,1.1689,1.0646,2.6297,2.549,7.5348,6.9455,14.8903,14.5686,2.6346,2.9998,3.8946,4.4898,3.0849,2.9439,1.3856,1.4859,4.0387,4.555,9.6993,10.0704,2.7019,3.1183,2.035,2.1346,2.0996,2.354,9.8857,12.1449,2.4142,2.4608,1.9056,2.0887,9.9662,11.0202,2.1068,1.8785,1.2473,1.2036,13.6084,14.0631,5.0514,4.8412,7.7449,8.907,3.6249,3.4265,10.6959,11.05,8.7756,7.3659,7.4883,7.4794,3.3832,3.9455,1.3272,1.2854,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd414,69,69,F,1.4432,1.6845,0.3278,0.38328,0.81161,0.77713,17.1058,3.2602,3.0692,43.1869,44.4176,14.4356,15.3281,224.1112,214.9522,1.3807,3.2166,3.0246,0.95012,0.61403,14.775,18.3588,1.725,1.6234,3.6984,3.4106,7.0589,7.3428,4.4904,4.6407,0.07821,4.4313,2.0747,2.5036,0.34728,0.35834,3.8566,4.3325,3.6874,3.8767,1.7313,1.4917,9.0344,7.3366,3.3215,3.1114,3.8835,4.1679,4.6451,4.5901,1.7921,1.5455,2.0149,1.9079,3.3516,3.2514,8.055,7.0153,1.8882,1.8568,7.2177,5.8397,12.5964,12.02,7.378,6.5669,2.1066,2.3507,4.8213,4.5013,1.7208,1.6942,16.6476,17.8174,5.154,5.2654,3.8077,3.688,0.95669,1.0805,2.6087,2.5861,7.1431,6.7466,14.5562,13.8299,3.2577,3.2421,4.0656,4.0574,3.1038,3.0267,1.2881,1.5504,3.4305,3.9003,11.9276,11.4987,2.8671,3.0421,2.1158,2.1136,1.9877,2.144,8.7594,9.3482,2.2852,2.4615,1.8433,2.2691,10.5838,10.1415,1.7731,1.5331,1.0627,1.0709,13.6528,14.0778,4.761,5.0094,7.2817,7.816,4.4809,3.6297,10.6321,11.1606,7.2022,6.7122,7.1214,7.4329,3.0679,4.0429,1.289,1.3071,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd415,70,70,M,2.2566,2.2271,0.4137,0.46676,0.83316,0.81158,15.6103,2.8717,2.8533,46.6868,46.062,13.0052,13.4048,197.4064,192.1346,1.6755,3.1986,2.9435,1.2856,0.90151,19.1836,23.2024,1.5107,1.4293,3.4333,3.3868,6.06,6.5324,4.0537,4.2057,0.07213,4.7194,2.0771,2.7688,0.40743,0.40448,3.9011,4.591,4.258,4.4386,1.7895,1.5261,9.9299,8.2935,3.2408,2.8124,3.6154,3.7729,4.2915,3.7368,1.5978,1.5631,2.0791,1.9378,3.7029,3.3587,7.8367,7.3156,2.1491,2.2165,6.5811,5.7875,11.3922,10.2401,8.111,7.7168,2.4405,2.2768,4.4938,4.6044,1.8795,1.8465,18.7904,18.0206,5.4778,5.7343,3.7934,4.2233,1.2016,1.3387,2.5994,2.8206,7.6104,6.8344,14.774,12.3447,2.499,2.9338,4.6522,4.3904,3.8414,3.6112,1.8234,1.3626,4.1739,4.472,10.5318,10.2192,3.0706,3.0515,2.4688,2.5124,1.9813,2.0437,9.0305,10.3821,2.5828,2.3144,2.1916,2.4901,12.0085,10.5878,1.7086,1.8573,1.3166,1.4188,14.4276,15.3711,5.3515,5.2538,7.8821,6.9192,3.9037,3.3276,10.6186,11.1783,7.7471,6.6397,7.6653,7.4087,3.8196,3.8213,1.5652,1.7839,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd416,65,65,M,0.91329,1.6,0.42259,0.45319,0.94447,0.862,21.2508,2.9277,2.9504,49.3724,50.2409,16.7807,16.2637,251.8469,252.5392,1.0679,3.5816,3.2985,0.49501,0.51393,12.0578,13.6065,1.4966,1.5186,3.9666,3.9109,7.756,7.9311,4.9718,5.3312,0.07369,5.2162,2.6767,2.6687,0.38576,0.39605,4.8909,4.8834,3.8856,3.9932,2.0366,1.7566,11.1169,9.3961,3.233,3.1286,4.3517,4.1255,4.7354,4.3278,1.8042,1.7098,1.8721,1.8507,3.677,3.4071,8.2273,8.1502,2.1145,2.148,6.777,6.3223,12.3164,11.7461,8.5128,8.0794,2.6877,2.6424,4.8699,4.9883,1.9134,1.8339,20.2497,19.4124,5.8192,6.9378,4.1426,4.3458,1.0911,1.168,2.831,2.8748,8.254,7.0881,15.5843,13.8944,3.4225,3.1518,4.5945,4.6394,3.3505,3.5078,1.7635,1.4844,3.9334,4.1715,11.1316,11.3682,3.0666,3.2821,2.1717,2.1583,2.2661,2.6758,10.1761,11.9748,2.6695,2.7524,2.1862,2.3091,13.4558,13.7014,1.8275,1.7895,1.1784,1.2696,15.0981,15.5468,5.58,5.5664,8.3049,9.6666,4.0303,3.2111,10.9949,11.8903,7.9102,8.8837,8.8428,8.1909,3.7822,3.7596,1.6375,1.4363,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd417,52,52,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd418,80,80,F,1.3485,1.4875,0.28869,0.30794,0.68236,0.64816,15.3461,2.4715,2.3864,36.9984,37.5008,12.8056,12.8817,180.321,173.4067,1.4275,2.6058,2.4073,0.91186,0.81448,17.4891,15.7954,1.3494,1.3795,3.1153,3.2669,5.6667,5.8612,3.8742,4.1275,0.07933,4.5478,1.8688,1.9212,0.32475,0.32086,3.5549,3.9603,3.5605,3.8233,1.3405,1.2013,8.7539,7.3711,2.8281,2.8007,3.7154,3.8098,3.8655,3.8057,1.3511,1.308,1.7559,1.7906,3.1353,3.037,6.8854,6.1208,1.8231,1.9202,5.9901,4.56,9.6893,9.3124,6.5299,5.8129,1.8869,1.9946,4.12,4.2817,1.4764,1.4315,16.9845,15.7424,4.6187,5.0434,3.2234,3.201,0.86488,0.85443,2.054,1.9321,6.8672,6.2515,11.5183,11.6121,2.5476,2.4894,3.6394,2.673,2.8706,3.0103,1.2226,1.3048,3.446,3.752,9.2495,9.5354,2.5134,2.6127,2.1233,1.9205,1.8168,1.9191,8.3866,9.29,1.9487,2.108,1.7805,1.8628,10.5813,10.6697,1.6377,1.5759,1.0228,1.0497,12.5539,11.6837,4.4488,4.3385,7.3672,7.0518,3.4867,2.636,9.4346,9.3309,5.7197,5.7842,7.2726,6.4202,3.1378,3.2565,1.181,1.3227,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd419,,,M,1.8244,1.7773,0.37982,0.4225,0.93913,0.99575,18.0431,3.0452,2.7933,40.9779,41.6152,14.4054,14.7292,211.353,213.6856,1.6673,3.7728,3.3804,0.70855,0.57687,17.315,21.454,1.6274,1.6229,3.5593,3.7316,7.1682,7.4648,4.7611,5.0076,0.08054,4.8812,2.3544,2.3533,0.38062,0.39388,3.9795,4.6323,4.1555,4.2558,1.7356,1.5551,9.7385,9.2074,3.6393,3.2168,3.5855,3.4986,5.2421,5.0529,1.8976,1.8282,2.1221,2.0074,4.0838,3.719,7.4238,7.1633,2.2922,2.1218,7.0212,6.143,12.2302,11.891,9.3943,8.4002,2.325,2.4936,4.5711,4.7073,1.8294,1.931,19.7636,20.0958,5.206,5.3124,4.0994,3.9981,1.2922,0.96672,2.7102,2.5666,7.7678,6.84,15.2797,14.8551,3.0222,3.4664,4.5213,4.6394,3.8942,3.79,1.7464,1.5605,4.2966,4.5837,11.55,10.6004,3.0333,3.3311,2.5509,2.3517,2.0589,2.4296,9.7161,10.5565,2.2686,2.4188,2.2609,2.3094,12.4228,10.8132,2.1241,2.1074,1.3019,1.4156,15.3386,16.3673,5.1729,4.8718,7.6196,9.1099,3.8339,3.5834,9.3057,10.1731,8.2144,7.7407,8.5225,8.3006,3.9979,3.787,1.5519,1.6562,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd420,73,73,M,1.7097,1.8055,0.37741,0.38864,0.82463,0.78837,19.3173,3.4437,2.9424,54.9233,56.7564,16.2712,15.5489,213.239,213.4574,1.541,3.2757,3.0188,0.67856,0.66018,16.9311,15.766,1.6223,1.5566,4.0042,3.9746,6.4998,6.5896,4.4224,4.6727,0.06628,5.8009,2.5426,3.0321,0.41104,0.41598,4.0253,5.0653,3.8534,3.8667,1.4807,1.5194,9.3742,9.5107,3.2222,3.1698,3.3572,3.7713,4.8252,4.3278,1.5823,1.4712,1.6714,1.6997,3.3431,3.0894,7.2803,7.6226,2.0326,2.1032,6.4317,6.0712,11.0364,11.1264,8.7273,7.6818,2.0076,2.3104,4.9537,5.1103,1.7926,1.8645,18.6572,19.6619,5.2024,5.9404,3.7157,4.0288,1.368,1.1154,3.3604,3.0629,7.7854,6.256,14.4949,13.0867,3.084,3.3357,4.5213,4.3422,3.2949,3.4346,1.4431,1.3513,4.0284,3.962,10.7091,10.5263,3.1435,3.2146,2.1191,2.0545,1.8613,2.2998,11.1539,12.7921,2.2809,2.4928,1.9514,2.3093,11.8206,12.7485,1.495,2.0648,1.2547,1.2961,13.9848,14.2374,4.9632,4.9874,8.22,8.1149,4.5403,3.0447,9.2403,10.6328,7.6887,6.807,7.2818,7.01,3.4141,3.6533,1.2969,1.6822,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd421,,,F,1.3797,1.7778,0.37168,0.41575,0.83627,0.8721,15.3848,2.855,2.4744,41.246,42.4788,12.8616,13.4104,214.4228,216.1676,1.5923,3.1986,3.0054,0.47172,0.41701,13.2517,15.1691,1.4165,1.3603,3.4974,3.5774,6.1974,6.3968,4.1014,4.2444,0.07442,4.3788,1.9541,2.5137,0.3848,0.37462,4.4387,4.8666,3.7628,3.8348,1.7309,1.6272,9.9215,9.4183,3.6194,3.0178,3.4921,3.7515,5.0668,4.9183,1.7149,1.7159,1.8365,1.8812,3.9194,3.7629,7.6877,7.3983,2.0569,1.9651,6.9397,7.1021,11.3129,11.0739,8.4486,7.6911,2.2504,2.453,4.4371,4.6176,1.8225,1.8088,19.0915,18.56,5.6872,6.9267,3.6583,3.7608,0.8248,1.0363,2.2057,2.3063,8.0737,6.6387,13.5532,14.4684,3.7041,4.7783,4.7147,4.3777,3.1817,3.0267,1.4922,1.4181,3.6767,3.9075,10.6316,9.8269,2.8052,3.1183,2.1037,2.0253,2.3633,2.5838,10.0432,11.7189,2.384,2.4914,1.9514,2.1139,12.8708,13.5901,2.0422,2.0896,1.1607,1.1446,15.0529,15.6305,5.4518,5.8171,7.822,8.4148,5.1011,4.2271,10.2263,11.0531,7.2047,7.1608,8.6265,7.9545,3.3409,3.5607,1.455,1.4352,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd422,70,70,F,1.0932,2.0062,0.38968,0.4778,0.89568,0.96487,17.1079,3.1106,2.9302,46.1005,46.1134,14.5272,15.0169,244.2927,240.7816,1.0822,3.4963,3.5722,0.51198,0.51854,13.19,13.7839,1.5877,1.5699,4.1544,4.3739,7.7315,7.8543,4.615,4.8757,0.0721,4.3414,2.2135,2.7364,0.44294,0.40079,4.0018,4.6922,3.946,3.8279,1.8814,1.6751,11.8125,11.0348,2.5672,2.7667,3.7413,3.8315,3.9205,3.734,1.9619,1.993,1.8365,1.845,3.7062,3.3934,8.055,8.0029,2.1816,2.2216,6.3441,6.7482,11.4244,11.9897,7.6647,7.1455,2.2805,2.6598,4.3592,4.5919,1.8762,1.927,15.9832,17.6316,5.861,7.5661,4.2557,4.7389,1.2171,1.0919,2.7869,2.6667,8.6556,7.5323,14.0732,15.3184,2.8065,3.1364,3.944,4.1272,3.3505,2.86,1.301,1.729,3.8987,4.1259,10.1621,9.7632,2.9352,3.2234,2.238,2.1069,2.2739,2.4531,12.0336,11.7424,2.5713,2.7799,1.8633,2.1408,12.3146,13.6688,1.9433,1.9443,1.3268,1.3509,16.0654,15.2126,5.8484,5.7842,8.2807,10.4661,3.4082,3.7422,10.9979,11.2121,8.4401,7.8241,8.5351,8.1597,3.1968,3.7077,1.3778,1.3711,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd423,74,74,F,1.9465,2.1079,0.33461,0.42615,0.78957,0.78422,17.9951,2.5437,2.4758,45.8701,46.1134,15.3667,15.6229,200.671,193.8382,1.6953,3.1711,3.1412,0.55733,0.53477,17.315,18.7512,1.4275,1.4261,3.2747,3.3801,6.0473,6.2616,4.2859,4.4197,0.08828,4.7526,2.2165,2.5511,0.424,0.40369,3.8217,5.0653,4.3287,4.5085,1.7177,1.3301,9.6025,8.721,2.8084,2.8776,3.4206,3.2949,3.8762,4.1242,1.4945,1.4938,1.9271,1.8984,3.5967,3.4382,6.4935,7.0611,1.8674,2.0747,4.8656,5.1321,10.0786,10.4962,7.2448,6.3627,2.1125,2.0127,5.0773,5.473,1.7208,1.8231,15.7474,16.2676,4.6476,5.2048,3.6043,3.6112,1.0289,1.1274,2.7321,2.5255,7.3249,6.8637,12.096,12.6747,2.4452,2.8619,3.7202,3.5079,3.0972,2.9994,1.4839,1.3204,3.7694,4.2493,9.2007,10.294,2.7112,2.9952,2.4064,2.4099,2.1007,2.0582,8.606,9.752,2.3497,2.3807,2.312,2.444,10.6051,11.1387,1.7499,1.6008,1.0751,1.1747,14.4769,12.9276,4.761,4.7331,7.4666,8.0448,3.3701,2.863,9.0975,8.9107,6.6673,6.7252,7.7156,7.629,3.4653,3.4668,1.4701,1.6946,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd424,79,79,F,1.4436,1.794,0.28281,0.34527,0.66322,0.70714,14.8758,2.5395,2.3693,38.4189,37.0487,12.3825,12.6276,168.1404,168.5586,1.4373,2.7035,2.4073,1.0165,0.9251,16.5462,19.5786,1.3283,1.3443,3.056,3.1216,5.8808,6.2038,3.8287,3.9123,0.07357,4.1908,1.9231,2.0222,0.30771,0.30443,3.5062,3.9603,3.7177,3.7776,1.3442,1.1981,8.5819,7.8526,2.7977,2.7883,3.5759,3.1584,3.8261,3.8183,1.3511,1.3483,1.8398,1.7433,2.918,3.1579,6.0282,5.8603,1.8231,1.8575,5.1333,4.9289,8.7702,7.589,6.8063,6.181,1.8924,1.8338,4.1511,4.41,1.5491,1.5262,15.6855,14.7495,4.2287,5.5991,3.0089,3.1058,0.95977,1.0109,2.0355,1.9728,6.7463,6.2394,10.4835,10.2972,2.4452,2.8563,3.3211,3.3195,3.0284,2.8977,1.2226,1.3043,3.4844,3.552,8.5374,8.1036,2.3512,2.5337,2.1191,2.1573,1.8438,2.0222,8.3866,10.3158,1.9815,2.3052,1.7823,2.1863,10.5583,10.4778,1.6495,1.5861,1.1364,1.1707,11.9794,13.0674,4.7634,4.5958,6.9414,7.5258,3.329,3.0278,8.4191,8.7339,5.6425,5.655,6.4111,6.1349,2.9765,3.3531,1.2464,1.2715,,18,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd425,72,72,M,1.7662,2.0757,0.38425,0.44442,0.76377,0.81368,17.0328,3.4437,3.3105,47.704,47.0212,14.0298,13.9549,231.4533,225.8912,1.8418,3.3151,3.2768,0.9369,0.73334,24.1001,26.8131,1.5931,1.4938,3.5342,4.0526,6.7414,7.2578,4.5291,4.7356,0.09914,5.4297,2.3039,2.6607,0.4332,0.41206,4.7629,5.5532,4.4494,4.7752,2.1984,1.8573,10.6092,9.7493,3.8322,3.877,4.479,4.3491,5.6182,5.4991,1.5856,1.4481,1.9633,2.1225,4.4843,4.3243,8.1193,6.9168,2.4397,2.5264,7.653,7.8866,14.3893,13.9209,8.7088,8.3281,2.7846,2.8413,5.1739,5.1372,2.1863,2.3385,21.4648,21.9812,5.9387,6.6191,4.6467,4.6903,1.0185,1.2987,2.5683,2.6677,10.1498,9.2277,16.6257,17.155,3.6969,4.3693,4.7616,4.465,3.6908,3.5868,1.7702,1.8071,4.0449,4.5827,11.392,11.9548,2.9139,3.0873,2.5034,2.519,2.409,2.5265,10.979,12.5961,2.6274,2.8223,2.0732,2.6109,11.9125,11.7822,1.9105,2.8074,1.5078,1.5941,16.823,17.0909,6.1867,6.4053,8.2247,9.0832,4.9629,4.0374,10.2127,11.6252,8.0677,7.5171,8.9998,7.9237,4.5598,3.5559,1.518,2.034,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd426,,,F,1.9294,1.8618,0.32753,0.35374,0.79687,0.72388,18.765,2.8108,2.4307,44.8791,46.3665,15.0817,15.7361,208.0846,207.7314,1.9752,3.1148,2.7243,1.196,0.9679,31.4798,28.2525,1.546,1.5956,3.4389,3.4323,5.5724,6.0547,4.6091,4.8988,0.07994,4.7616,2.1661,2.7361,0.3306,0.35689,3.6203,3.9115,3.7381,3.994,1.4595,1.3156,9.8549,9.1459,2.6385,2.676,3.4909,3.8196,3.6079,4.107,1.5398,1.4381,1.6704,1.8386,3.2878,3.1043,6.9495,6.9626,1.711,1.78,6.2743,5.5259,10.1361,10.3825,7.3832,7.1467,1.845,2.2508,4.2386,3.86,1.4334,1.4807,17.4708,16.8245,4.9683,6.3066,3.3879,3.3495,0.88375,0.90998,2.2469,2.3338,6.722,5.9229,13.5111,12.5934,2.4574,2.9658,3.9979,3.952,2.6948,2.7667,1.2154,1.4269,3.6512,3.8657,9.138,8.6462,2.8045,2.8817,2.1584,2.1987,1.7744,1.9104,9.3051,10.4034,2.0246,2.2778,1.8649,2.0075,10.0062,9.5779,1.7384,1.7841,0.92726,1.0415,12.6073,13.2426,4.862,5.4272,7.3778,7.8923,3.9876,3.7343,9.0975,8.8459,6.605,6.9612,7.1688,7.0678,2.8918,3.5044,1.2877,1.3469,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd427,75,75,F,1.8862,1.7913,0.30692,0.37285,0.73639,0.73158,19.3377,2.5534,2.548,42.1882,41.6131,14.6805,15.1152,199.9507,192.1346,1.6454,2.93,2.6744,0.61913,0.40884,16.018,20.2561,1.3784,1.4245,3.0784,3.1931,6.1854,6.49,4.5237,4.7758,0.07654,4.7016,2.054,2.5637,0.34048,0.32201,3.4882,4.0625,3.5752,3.9845,1.6495,1.3676,7.6621,8.2659,3.3108,3.1698,3.6133,4.1069,4.3475,4.0367,1.4214,1.5106,1.5552,2.0093,3.3333,3.3072,6.5829,6.699,1.681,1.7072,6.1681,6.3134,9.9493,9.618,7.5987,7.4214,2.0886,2.1617,3.7239,4.0852,1.4788,1.5761,15.7992,16.2676,4.7725,5.8746,3.2845,3.4232,1.0125,1.0559,2.4535,2.3604,6.5775,6.1665,12.2619,11.6314,3.0239,3.1802,3.9848,3.8858,2.8089,3.1158,1.3447,1.4551,3.8624,4.3043,9.6819,10.7271,2.3207,2.8097,2.0348,2.0181,1.9813,2.3287,10.0317,11.035,2.1007,2.3358,1.9633,2.0026,12.8908,11.9836,1.5209,2.1633,1.033,1.1263,12.6424,12.3802,5.0396,4.7932,6.2964,7.8364,4.1358,3.4799,9.1039,9.5354,6.4901,6.522,6.3472,6.5334,2.8636,3.6681,1.2969,1.4931,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd428,36,36,M,2.2023,2.3369,0.3252,0.34666,0.76392,0.74291,18.827,2.3948,2.3042,49.2345,48.7858,14.8597,15.2001,231.6549,231.8286,1.576,3.1412,3.135,0.68395,0.63192,14.9264,16.7889,1.6193,1.565,3.2159,3.136,5.9457,6.5553,4.5223,4.875,0.07654,5.0567,2.452,2.6963,0.37691,0.38368,4.6205,5.0439,4.2179,4.8254,1.7531,1.5895,10.2892,9.6062,3.0589,2.787,4.3878,4.6239,4.4191,3.665,1.601,1.5151,2.0991,2.0581,3.8415,3.6495,7.3624,7.9761,1.968,2.1586,6.6247,6.717,12.3722,11.6051,8.4702,7.8092,2.3599,2.4261,4.9104,5.0957,1.7442,1.7233,20.5,19.6175,5.4842,6.1152,3.819,4.099,1.1424,1.3891,3.0654,2.9668,7.8601,7.372,15.0737,15.4109,2.6346,2.764,4.4483,4.473,3.6965,3.5359,1.6892,1.5858,4.3402,4.8399,10.6211,10.9055,2.8432,3.139,2.5404,2.5174,2.1702,2.4349,11.533,12.4707,2.309,2.4928,2.1552,2.3202,13.6313,14.0994,1.7809,1.868,1.3166,1.396,16.4903,15.5481,5.4518,5.8355,8.4524,8.6666,3.8384,3.1632,12.0503,12.2536,6.9815,7.7485,7.622,7.0794,4.1855,3.8312,1.492,1.5981,,18,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd429,79,79,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd430,56,56,M,2.6594,6.1146,0.38883,0.42061,1.0167,1.0389,19.4303,3.1409,2.7164,53.9778,52.6487,16.1786,16.505,241.6973,235.0903,2.6887,3.9391,3.5758,1.4552,1.3591,27.4336,42.0744,1.8306,1.7443,4.0497,3.9839,7.663,7.8519,5.0559,5.3238,0.07136,5.2348,2.4622,3.0265,0.46722,0.46999,4.001,4.706,4.3287,4.8387,1.5345,1.4604,9.4278,9.356,4.2052,5.3609,3.9293,4.6146,4.2007,4.2788,1.9942,1.9971,1.9712,2.048,3.4684,3.1803,7.8411,7.3827,1.8402,1.9738,7.0218,7.2467,11.5046,11.819,8.9198,7.9709,2.0146,2.3409,4.7042,4.4251,1.5318,1.6231,16.6894,17.3969,5.117,6.4401,3.5889,3.6606,1.2433,1.0916,2.8466,2.5253,7.2281,6.5107,14.0732,14.356,3.9516,4.2514,4.6118,4.701,3.4035,3.1692,1.4955,1.5144,4.0638,4.6896,10.9795,10.7779,3.3305,3.2634,2.5376,2.5789,2.2714,2.5469,10.4306,11.9197,2.1786,2.411,2.144,2.3431,9.9662,10.72,2.1247,2.1133,1.185,1.2546,16.326,14.7282,5.1528,4.861,7.9455,8.0809,4.3393,3.1908,9.2774,9.8591,8.0635,7.9222,8.0369,8.4928,3.5429,3.8601,1.6766,1.6991,,22,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd431,60,60,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd432,75,75,F,1.7085,2.0278,0.39267,0.44495,0.78849,0.77604,17.5233,3.5504,3.3039,46.0808,45.9534,14.4953,14.7498,222.79,211.7031,1.9797,3.1148,2.8797,0.81809,0.84058,24.2377,26.0747,1.4269,1.41,3.4167,3.53,6.1098,6.2847,4.0399,4.377,0.08676,5.0546,2.2006,2.5755,0.3835,0.41609,4.5528,4.9832,3.8856,4.0179,1.4807,1.4042,9.2757,8.3233,2.76,2.5467,4.058,4.1893,3.6229,3.1737,1.4797,1.4887,2.0299,1.9795,3.7123,3.5683,6.7617,7.2039,2.206,2.286,6.4462,6.3769,11.2782,11.0049,7.8232,7.0396,2.2026,2.0127,5.0149,4.8171,1.9705,1.8465,19.556,18.1065,4.7997,5.7884,3.6011,3.8036,1.112,1.1249,2.7166,2.5255,8.4822,7.5977,13.0026,13.2739,3.0039,3.282,4.1956,4.2907,3.0849,3.2136,1.6891,1.3087,4.0363,4.555,11.1301,10.7039,2.6559,2.8701,2.397,2.2704,2.4729,2.6416,9.3724,11.1711,2.5115,2.3422,2.2209,2.4456,12.189,11.6796,1.8124,2.0925,1.3271,1.4156,14.6949,14.3556,5.0958,5.1128,7.6135,8.5936,4.2164,3.2111,10.774,10.7102,6.7893,6.3731,6.9164,7.0025,3.7943,3.0403,1.5229,1.5567,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd433,68,68,M,1.4677,2.0873,0.32552,0.37309,0.72504,0.71617,15.5866,2.5612,2.7309,41.6767,40.8498,13.6541,13.8789,217.6363,212.866,1.6396,2.9139,2.7815,0.65389,0.52513,11.2721,10.6779,1.596,1.5818,3.4324,3.5981,6.423,7.0902,4.0537,4.2827,0.07738,4.0092,1.8396,2.431,0.34941,0.35774,3.7514,3.9625,3.8268,3.8667,1.5121,1.3265,9.0385,8.7436,2.8436,2.7274,3.9593,4.0244,4.388,4.2084,1.407,1.332,2.0596,1.9849,3.2388,3.0791,7.2479,7.1395,1.8451,1.8816,6.2743,6.4085,10.3327,10.0437,7.8232,7.335,2.0761,2.0882,4.5714,4.4478,1.585,1.5371,16.9728,15.7914,5.0661,5.8726,3.4649,3.6247,0.95943,0.93506,2.4247,2.3482,6.6631,5.6651,12.1609,12.3186,2.7509,3.237,4.0199,4.052,3.5997,3.1393,1.4978,1.3523,3.6697,3.9007,9.7114,9.845,2.6071,2.7592,2.2363,2.3743,1.8914,2.0437,9.5254,10.1888,2.1154,2.1298,2.0533,2.2179,12.754,12.2405,1.7509,1.7159,0.97914,1.0006,13.117,13.9897,4.7566,4.8888,7.3513,8.3013,3.916,3.151,10.3461,10.4819,6.3706,6.8049,6.0942,6.6487,3.6145,3.5823,1.3876,1.4197,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd434,80,80,M,1.4128,1.5609,0.31917,0.31044,0.71488,0.65465,22.1853,2.4642,2.424,47.3816,47.8809,17.7409,18.9707,240.1227,229.8856,1.2841,3.1254,3.1597,0.5503,0.47649,8.5689,9.1183,1.581,1.5958,3.1365,3.0846,6.1978,6.7694,4.9718,5.0581,0.07952,4.4861,2.1892,2.7442,0.34977,0.36923,3.591,4.2445,3.9055,4.0917,1.6198,1.3752,8.6911,7.677,2.4799,3.0771,3.3605,3.7912,3.7056,3.8834,1.3864,1.3252,1.7333,1.8498,3.3536,3.3375,6.6888,6.6987,1.6035,1.6888,5.263,4.832,10.6925,10.6215,6.9996,6.7395,2.0953,2.2053,3.8441,4.0969,1.5281,1.5863,15.7002,15.3838,4.1544,4.5397,3.2845,3.3321,1.0455,1.0559,2.4596,2.3819,7.1542,6.5312,12.5042,12.9016,2.3532,3.1137,3.7802,3.5787,2.6068,2.9264,1.4462,1.4606,3.2118,3.2435,8.0933,8.1084,2.7692,2.5619,2.0263,1.9991,2.0713,2.2295,8.9115,9.5644,2.3169,2.2222,1.7814,1.8628,10.8766,11.2346,2.1068,1.6047,1.017,1.0478,11.9065,11.831,4.4457,4.5847,6.4613,7.5438,3.8231,2.9982,8.3418,8.4294,6.545,6.1527,7.0344,7.0678,3.2372,3.7373,1.2917,1.304,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd435,,,M,1.7635,1.8618,0.39648,0.45981,0.91058,0.90002,18.8247,3.0841,2.9302,47.2617,46.6155,15.4287,15.8368,243.2493,240.7816,1.6673,3.3593,3.1069,0.6202,0.50891,18.6268,19.5064,1.7406,1.6728,3.6721,3.7863,7.4277,7.6661,4.6789,4.8963,0.079,4.8763,2.1986,2.5807,0.41841,0.39329,4.2319,4.8432,4.2669,4.1532,2.0067,1.7476,10.8415,9.6959,3.1299,3.0054,4.1937,3.6082,4.6793,4.6747,1.7718,1.7886,2.1043,2.0074,3.9362,3.719,7.7197,7.4957,2.3691,2.1961,6.8412,6.7684,12.309,11.3456,8.2507,7.4707,2.4991,2.4943,4.3176,4.5369,1.9705,1.9858,19.315,18.8358,5.3678,6.4185,4.1593,4.367,1.0789,1.1088,2.4677,2.4911,7.8791,7.2608,15.9737,13.9554,2.7447,3.3048,4.1216,4.2138,3.7968,3.353,1.7088,1.5283,4.1532,4.5911,10.6949,11.8842,2.8849,3.1626,2.5376,2.2345,2.415,2.2186,10.1561,11.4424,2.573,2.6048,2.3609,2.4949,12.4627,13.0042,2.0364,1.8896,1.2363,1.2655,14.6171,15.0623,5.4061,5.2538,8.3454,9.2066,4.5506,3.4882,11.7083,10.4191,8.1165,7.9424,8.2934,8.1949,3.8575,3.8459,1.5639,1.7839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd436,85,85,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd437,70,70,F,1.8234,1.2451,0.33943,0.34673,0.65252,0.6146,16.2942,2.9581,2.7742,38.9738,35.7295,12.9291,12.9974,181.3894,179.8191,2.1946,2.6804,2.7936,1.5235,1.1837,31.5216,25.8464,1.5208,1.4302,3.0985,3.0698,5.4613,5.9736,4.3972,4.5994,0.08132,4.0555,1.7952,2.0238,0.41304,0.39466,4.0849,4.8432,4.5278,4.8321,1.6747,1.3762,9.2715,8.7511,2.3796,2.1827,4.3265,4.2508,4.2997,3.6537,1.3332,1.2463,1.7367,1.84,3.7123,3.3823,6.491,6.5236,2.1746,1.9112,5.7916,5.9248,9.9738,10.1499,7.2462,6.4803,2.0677,2.2053,4.693,5.4779,1.9726,1.7188,16.5933,17.1496,4.6608,5.5648,3.9069,3.7779,0.98211,1.1123,2.5523,2.5312,8.2049,7.2221,11.8607,12.8847,2.5645,2.8618,3.8474,3.7681,3.1755,2.9289,1.4573,1.403,4.0449,4.6253,10.4931,10.7532,2.5701,2.898,2.5789,2.4456,2.409,2.399,11.0358,10.9116,2.1966,2.5075,2.2659,2.444,10.9318,11.4368,1.8144,2.1613,1.2498,1.2689,13.6742,13.1603,4.9986,5.057,8.6764,10.3583,3.6908,3.1751,9.4279,9.7264,6.7205,6.9033,6.9277,6.782,3.4478,3.5983,1.7211,1.6836,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd438,,,F,2.9825,6.1146,0.14255,0.26339,0.51139,0.50656,17.4546,1.6327,2.0219,47.2334,47.6829,13.6201,14.0245,175.9135,168.3196,2.2756,2.4553,2.0602,2.0029,2.2641,42.7786,43.4433,1.4893,1.5117,0.32208,2.6123,5.6653,5.9124,4.4153,4.782,0.07224,4.6495,2.3143,2.522,0.13799,0.2964,0.00019,3.3593,3.4566,2.4313,1.3526,1.2013,5.3578,6.6607,3.5365,3.2925,3.6505,3.6249,4.7544,4.3864,1.0263,1.0787,1.5785,1.5681,3.1507,2.7384,5.1012,5.323,1.4739,1.6468,6.071,5.9909,6.7824,8.6997,8.0838,8.1555,1.7141,1.9837,3.3912,3.825,1.1938,1.3864,16.3607,18.0565,4.4835,5.5864,2.8596,3.1934,0,0,0,1.843,6.2585,5.6164,9.6374,11.0512,2.9628,2.9022,3.8536,4.0405,2.6049,2.5532,1.0991,1.2335,3.2366,4.0634,8.3878,9.9817,2.2952,2.5337,1.6208,1.4917,2.3633,2.7685,7.7493,8.9628,1.354,1.9167,1.3134,1.8628,12.156,11.2192,1.9094,2.3105,0.93137,0.97895,13.6378,0.00013,4.2116,4.1648,6.9484,6.0253,4.2119,3.3708,9.3058,9.5078,6.3164,6.2291,2.8712,4.5637,2.9562,2.8697,1.326,1.5251,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd439,57,57,M,1.936,2.2777,0.35116,0.39515,0.78023,0.77604,17.0245,2.8217,2.5936,40.2924,41.6131,13.8985,14.1856,208.9435,203.9727,1.8418,3.1148,2.8264,0.96452,0.90545,21.4729,24.7165,1.6072,1.563,3.2613,3.4984,6.3973,6.5072,4.4392,4.6343,0.07485,4.5531,2.0673,2.4701,0.38239,0.37563,3.4618,4.2337,3.6847,4.1295,1.5605,1.5194,9.2715,7.0883,3.5223,3.0259,3.6255,3.8617,4.371,4.3734,1.5072,1.4028,1.7688,1.8211,3.6256,3.2268,6.9996,6.3426,1.8429,1.9946,6.045,5.9785,10.4929,10.082,8.7088,7.7479,2.0685,2.328,4.2837,4.4422,1.6125,1.7359,18.328,18.7835,4.9182,5.1658,3.7264,3.7478,0.92943,0.88176,2.0912,2.1453,7.7702,6.5976,13.0454,12.2163,2.9425,3.079,4.2481,4.2052,2.73,3.0456,1.5239,1.4082,3.8402,4.2493,9.2679,9.9918,2.6174,2.9924,2.1693,2.1665,1.6992,1.8289,8.3638,9.5017,2.1665,2.4751,1.8817,1.9533,10.932,10.8389,1.3661,1.7231,1.1318,1.1687,12.8768,13.1303,4.4891,4.786,6.7607,7.9897,4.2161,3.7343,9.4088,8.3738,3.5,6.0861,6.8489,6.4164,3.2797,3.6177,1.2809,1.3575,,15,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd440,73,73,M,1.7782,2.263,0.37023,0.42597,0.91712,0.90579,17.1042,3.5058,3.1889,45.4266,44.7344,14.377,14.4634,245.3837,236.2561,1.8418,3.5198,3.2736,1.2968,1.1827,19.8549,28.2322,1.6414,1.5819,3.7462,3.8729,6.8653,7.0953,4.6086,4.8199,0.07303,3.9406,1.9299,2.5824,0.40429,0.40491,3.8445,4.6323,4.1727,4.3787,1.7931,1.6322,10.2154,8.8426,3.2136,3.0364,4.0376,3.9079,3.924,4.243,1.6292,1.7233,2.1883,2.0207,3.842,3.5344,6.6275,6.4863,2.0653,2.0895,6.2164,5.7158,10.7232,9.5956,7.3862,7.4715,2.3463,2.3889,4.5074,4.7633,1.8834,1.8433,18.5718,18.6825,4.667,5.4804,3.7301,3.9294,1.0925,1.3627,2.5435,2.823,7.6211,7.3397,13.5985,12.4403,2.7764,3.2823,3.9794,3.9462,3.7979,3.1331,1.745,1.5248,4.2966,4.6368,10.2594,10.6903,2.6696,2.8523,2.5153,2.5628,2.0498,2.1338,10.094,11.6679,2.5048,2.698,2.2112,2.575,13.319,12.6851,1.6753,1.9435,1.3078,1.3509,15.6293,17.3921,5.2991,5.6746,8.3976,9.5454,3.2345,3.7492,10.205,11.6074,7.4318,7.6208,7.2265,6.6838,4.0715,4.6862,1.7147,1.7839,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd441,70,70,F,1.6635,1.4237,0.38902,0.40152,0.86623,0.84337,15.4609,2.7961,2.5944,39.3487,39.9079,10.7408,10.9588,236.2134,236.364,2.0508,3.2022,2.9369,0.80356,0.59173,23.9601,27.0618,1.6668,1.7354,3.867,3.8509,7.042,7.1699,4.2401,4.3716,0.07385,3.7344,1.8031,2.247,0.38647,0.39953,4.1233,5.0062,3.9071,3.8531,1.6576,1.6272,9.7638,8.2935,3.1375,3.0365,3.3643,3.701,4.1589,4.2445,1.7387,1.6035,1.6005,1.6262,3.7183,3.467,6.9795,6.8267,2.5778,2.6282,6.0352,5.7158,10.4929,10.2239,7.4103,7.2027,2.0858,2.3021,4.4076,4.626,1.8932,1.9912,20.3753,19.7497,5.0917,5.7345,3.5988,4.3252,0.76618,0.88625,2.4239,2.0058,8.372,7.5977,13.4647,11.7806,2.9628,2.9641,3.8431,3.9573,2.8152,2.6453,1.6195,1.349,4.0842,4.453,9.7306,10.1946,2.8498,3.1201,2.2922,2.1578,2.0918,2.2527,9.5891,9.8247,2.188,2.8676,2.0531,2.273,11.6364,11.8036,1.8383,2.0222,1.2749,1.3219,14.4455,16.7898,5.58,5.4671,7.3399,7.7603,3.9438,3.0447,9.5839,9.5963,6.7251,6.2354,7.3755,7.066,3.437,3.2801,1.4688,1.5661,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd442,62,62,F,1.2068,2.1104,0.32621,0.35247,0.785,0.78003,16.2768,2.4036,2.1702,41.246,40.9443,12.3419,12.4404,223.5163,221.6966,0.99997,3.2479,3.1144,0.52536,0.54806,7.0569,8.6117,1.5006,1.4293,2.908,3.2674,6.861,6.9254,4.2283,4.4831,0.06742,3.9657,1.9304,2.5107,0.37438,0.33822,3.494,4.5408,3.3778,3.7508,1.7009,1.5808,9.5089,9.3047,2.272,2.3365,3.5399,3.4536,3.8567,3.3427,1.4945,1.5804,1.7945,1.7916,3.3539,2.9772,6.5846,6.6103,2.0941,2.0545,5.202,5.5398,10.5798,9.954,5.989,5.2629,1.9995,2.2204,4.0403,4.4564,1.6283,1.6313,16.3854,17.2443,4.4002,5.2818,3.7832,3.8787,1.2031,1.1236,2.8354,2.6138,7.3804,6.9455,12.0367,12.4628,2.2139,2.7125,3.363,3.6226,3.3074,3.4143,1.4587,1.4754,3.993,4.0256,10.0864,10.1207,2.7231,2.9176,1.8025,1.865,2.2401,2.4906,10.5334,11.6679,1.8155,2.6116,1.6847,1.8051,12.0222,11.6246,1.8116,1.9443,1.0058,1.0927,13.233,12.6978,5.2426,5.057,8.4164,8.4213,3.3415,3.3079,9.2403,10.1258,6.8605,6.89,7.0173,6.2784,3.2317,3.639,1.4022,1.5247,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd443,,,M,1.8122,2.2777,0.33165,0.36378,0.82664,0.79912,15.9729,2.408,2.1381,44.7024,43.7242,13.9568,13.3684,198.8894,191.6235,2.0082,3.1175,3.0347,0.96452,0.64834,23.2901,32.7167,1.4005,1.4702,3.2613,3.2931,6.1788,6.3735,4.0628,4.3385,0.07383,4.7614,2.2356,2.3625,0.40662,0.41892,4.0313,4.591,4.5278,4.7752,1.6874,1.526,10.4985,9.2433,3.0901,3.1621,4.103,3.6261,4.6859,4.9988,1.6944,1.5579,2.1733,2.078,3.7183,3.6432,7.8632,7.3983,2.2614,2.1218,6.8111,6.1691,11.7629,11.183,8.1635,7.4707,2.1865,2.4265,3.9635,4.1749,1.8054,1.9573,17.659,19.2089,5.532,6.2585,3.8959,3.9945,1.3088,0.96247,2.6036,2.4824,7.3912,6.9421,15.2442,14.7553,2.6114,3.0741,4.2832,4.5236,3.4552,3.4183,1.5509,1.5915,3.831,4.4716,10.1363,10.1122,2.9695,2.9516,2.4381,2.5536,2.3281,2.7249,9.3621,11.4231,2.2488,2.425,2.1272,2.4694,10.8662,10.9786,2.0168,2.1913,1.3438,1.4347,15.8016,15.1143,4.9108,4.9214,7.8348,7.8636,4.0754,3.6107,10.2779,10.3233,6.5986,7.4313,7.785,7.1076,3.4369,3.9585,1.5776,1.8654,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd444,61,61,F,1.9503,1.6033,0.35333,0.39708,0.77616,0.74284,18.4171,3.0468,2.7872,47.735,46.55,15.073,16.4669,208.3674,204.9386,1.6454,3.1891,2.9529,0.78206,0.6879,15.4962,17.5594,1.4537,1.5146,3.8225,3.8851,5.8988,6.5764,4.5249,4.7913,0.07383,4.993,2.3057,2.5511,0.41104,0.39964,3.3471,4.1262,4.3287,4.8668,1.909,1.6815,9.7901,9.0578,2.8211,2.8576,3.5212,3.6788,4.5201,4.4391,1.4789,1.5151,2.0395,2.0697,3.8635,3.662,7.2911,8.0186,2.097,2.1148,6.7827,6.1079,11.9523,11.5205,7.6875,7.6841,2.4733,2.6598,4.4497,4.5514,1.8564,1.8724,17.8984,19.9508,5.6475,5.8606,4.2565,4.748,1.0662,1.2778,2.5406,2.8102,7.1327,6.7466,15.2442,14.0082,3.2368,3.9331,4.6201,4.4974,3.8079,3.442,1.6822,1.8436,3.8381,4.3267,10.1319,10.6461,2.8467,3.0972,2.4064,2.3505,1.7536,2.003,10.5483,11.5429,2.5308,2.691,2.312,2.1704,12.3347,13.3408,1.4394,1.7338,1.3989,1.3937,14.6171,15.2126,5.2933,4.9228,7.4809,8.9568,4.3263,3.8769,10.2263,11.1783,7.7549,7.64,7.3499,8.0069,3.7315,3.7596,1.6442,1.6448,,16,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd445,,,M,2.0714,2.5948,0.37359,0.41851,0.86274,0.87588,18.139,2.969,3.0276,47.1015,46.8404,14.3158,14.8935,203.5624,202.825,1.9267,3.4752,3.1809,1.2206,1.1802,21.5353,25.7898,1.5397,1.5793,3.8694,4.0496,6.7219,7.1641,4.5429,4.7758,0.07252,5.3858,2.356,2.6899,0.39676,0.44292,4.497,4.8817,3.8127,4.1694,1.6705,1.5772,9.5111,9.2301,3.312,2.8557,3.9353,4.2973,4.9972,4.6638,1.6292,1.8051,1.9782,2.0063,3.3301,3.2432,7.4872,6.6344,1.9915,2.2016,7.3851,7.3491,12.3948,10.374,8.271,8.0496,2.2221,2.4574,4.2543,4.3599,1.8225,1.7994,18.3811,18.4826,5.4944,6.4443,3.7024,4.099,0.95715,0.98826,2.1484,2.3509,7.8791,6.8637,15.5843,13.6704,3.859,4.3392,4.7147,4.6219,3.3535,3.0519,1.4161,1.5883,4.1452,4.0821,10.8608,10.8082,2.8849,3.2276,2.3679,2.2733,2.1933,2.5934,10.6069,11.491,2.1934,2.4393,1.8778,2.1583,11.9271,11.7937,1.969,2.1044,1.2498,1.3691,15.3155,15.9663,5.0162,5.3446,8.3387,9.1577,3.961,3.7427,9.1906,9.4851,7.3271,7.6945,8.0029,7.2595,3.4516,3.6428,1.4087,1.7502,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd446,70,70,M,2.3722,2.271,0.39339,0.4186,0.83864,0.87536,15.6103,2.6524,2.6901,27.9343,27.5385,11.3847,9.2054,221.5317,222.2557,1.7846,3.328,3.1929,1.0172,1.0467,20.8601,19.1291,1.6023,1.5737,3.339,3.3626,5.7788,6.1208,4.2464,4.4351,0.05934,4.4656,1.9054,2.2432,0.40169,0.36049,3.955,4.2625,3.8771,4.2382,1.6152,1.4936,8.7781,9.0157,3.2184,3.0384,3.5689,3.5452,4.4357,4.5886,1.5306,1.6513,1.5533,1.8077,3.5588,3.4426,6.3448,6.2422,1.7773,1.8647,5.6115,5.2871,9.3181,10.063,7.5887,6.9489,2.0721,2.3104,4.2552,4.2246,1.615,1.853,17.6055,17.3371,4.1007,5.1371,3.278,3.6606,1.0033,1.1275,2.5015,2.771,7.1281,6.1771,10.2149,12.4628,2.5712,2.7921,3.5564,4.0298,2.5222,3.3705,1.4668,1.2806,3.1812,3.4659,10.1893,9.9705,2.8132,3.1678,2.5604,2.2395,1.9658,2.1001,8.4056,9.8615,2.2032,2.4356,2.2609,2.1931,10.7378,10.7317,1.7924,1.8446,1.1589,1.1796,12.0217,11.9293,4.4488,4.6711,8.062,8.6646,3.5277,2.8738,9.4093,8.9908,5.4796,5.4892,6.9028,6.5539,3.0846,3.5311,1.6937,1.2297,,19,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd447,68,68,F,1.1521,1.2549,0.3775,0.42053,0.70439,0.73871,16.1426,3.1106,2.8869,39.1359,39.5897,12.6679,12.8817,206.115,204.8485,1.0792,2.8399,2.7815,0.42811,0.40076,7.1264,11.6928,1.4516,1.4856,3.4974,3.605,6.3432,7.0902,4.2425,4.3707,0.07686,4.4069,2.1196,2.2823,0.36306,0.37705,3.6412,4.3216,4.0296,3.9407,1.7233,1.4873,9.467,8.2846,2.8999,2.6903,3.9783,3.767,4.1145,4.0584,1.4787,1.5617,2.0395,1.8744,3.176,3.1008,6.6938,6.7178,1.8698,2.1135,6.2831,6.1344,10.9046,10.1853,7.5364,6.518,2.205,2.3733,4.1951,4.2942,1.665,1.7096,16.6827,17.8216,4.6822,5.8687,3.6668,3.9973,0.91859,0.88686,2.4188,2.346,7.7702,6.1771,13.2849,12.5919,2.1902,3.1491,4.0474,3.809,3.43,3.0311,1.535,1.4969,3.6697,3.8357,9.5387,9.3441,2.5347,2.8056,2.2439,2.1742,1.9619,2.1389,10.3026,10.8325,2.4304,2.4218,2.0861,2.2753,11.574,11.8684,1.6375,1.684,1.0876,1.1458,13.5537,13.2583,5.1681,4.9117,7.3716,7.816,3.6081,3.151,9.4309,9.1142,6.5747,6.0978,7.4883,6.2556,3.3817,3.8279,1.2649,1.3936,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd448,42,42,F,1.6311,1.6911,0.34508,0.35194,0.74861,0.68548,14.8491,2.6297,2.2943,39.8014,39.5951,11.5711,11.9739,184.6449,181.1042,1.7597,2.735,2.5595,1.6199,1.2296,23.1492,26.3035,1.5157,1.4512,2.8402,2.6628,6.6626,6.6044,3.9613,4.1549,0.08338,4.028,1.9454,2.3144,0.30481,0.33346,3.614,3.6553,3.4566,3.7116,1.4292,1.327,9.078,8.1956,2.9077,2.7067,3.4983,3.5732,3.4139,3.349,1.2358,1.2884,1.665,1.6296,3.0302,2.7766,6.3474,6.1736,1.5802,1.707,5.6899,6.2988,10.1838,9.6693,6.7667,6.2339,1.8516,2.0723,4.0283,3.8531,1.3567,1.3769,14.8866,15.7862,3.9228,5.8493,3.0863,3.6539,0.99292,1.0809,2.3593,2.1921,6.4642,5.5724,13.1167,12.0562,2.4852,2.4868,3.4528,3.7017,3.2271,2.4846,1.3857,1.2037,3.5002,3.8365,8.9542,9.1132,2.4883,2.6572,2.0205,2.0626,1.7461,1.8917,7.7997,9.1617,2.0893,2.2758,1.9628,2.0071,9.7905,10.2525,1.6103,1.65,0.97823,1.0087,13.1704,14.9077,4.6043,4.5158,6.6345,8.3502,3.7366,3.0659,8.6385,8.3972,5.9959,6.9838,6.8371,6.9046,3.5166,3.1253,1.3013,1.3098,,22,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd449,61,61,F,0.73794,1.1257,0.32996,0.34514,0.81262,0.7718,15.0725,2.7039,2.5866,24.3004,18.9006,12.0168,12.3273,180.3954,171.5857,0.87039,3.0354,2.8217,0.39474,0.47194,7.0678,7.5408,1.2196,1.1772,3.441,3.5786,6.1763,6.3217,3.583,3.6547,0.07224,4.0126,1.9258,1.1706,0.34166,0.33925,3.4068,4.0697,3.5503,3.5946,1.5703,1.3481,9.1366,8.764,2.8999,2.5994,3.6053,3.5404,4.1376,3.9712,1.5538,1.4503,1.7009,1.7798,2.9038,3.3668,5.6104,6.4082,1.7508,1.7823,5.6078,5.3117,9.6194,9.3132,6.769,6.181,1.9258,1.9433,3.9332,4.0007,1.4822,1.5761,15.5811,15.4102,4.4236,5.6877,3.3353,3.3897,0.95289,0.8375,2.3342,2.0461,6.7463,6.2394,12.1742,11.2481,2.4359,2.8267,3.4707,3.3711,3.2791,3.1727,1.3675,1.1918,3.5002,3.8911,8.8048,8.7801,2.5944,2.7336,2.1367,1.9738,1.9047,2.1672,9.1729,10.1847,2.0893,2.2124,1.7315,1.9473,10.8173,9.9871,1.7287,1.7456,1.0645,1.1152,10.918,10.7096,4.6414,4.7041,6.6766,8.733,3.6081,2.8539,9.3888,10.0019,6.6185,6.7777,6.9409,6.7532,3.3582,2.9795,1.369,1.3919,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd450,75,75,F,1.7085,1.9137,0.28645,0.36694,0.64983,0.6961,15.5147,2.5567,2.6666,39.9028,40.0559,12.2193,11.9709,175.9135,169.8775,1.402,2.7624,2.5093,1.8227,1.3495,17.8408,18.5819,1.3261,1.4068,3.0363,3.0414,5.5835,5.8946,4.2057,4.3579,0.06919,3.607,1.9097,2.4511,0.36046,0.30959,3.8669,4.5912,3.3815,3.5566,1.63,1.4914,9.031,6.643,2.9378,2.7872,3.8943,3.6877,3.9572,3.8322,1.3332,1.4257,1.7386,1.7489,3.3523,3.0266,6.0937,6.1212,1.8661,1.9025,5.566,4.9306,10.0847,9.6693,5.7237,5.962,2.0293,2.3252,4.139,4.0897,1.6742,1.6432,15.0889,15.3404,4.6182,4.3309,3.3546,3.7484,0.8514,0.85443,2.2221,2.3049,7.0436,6.2133,11.2172,12.1057,1.9227,2.4031,3.5301,3.6264,3.3006,3.34,1.3798,1.4934,3.659,3.8742,9.3893,9.1319,2.365,2.6722,2.0847,2.082,2.3256,2.4107,10.0747,10.3747,1.9527,2.2128,1.7293,1.9672,10.6755,11.4156,1.9312,2.0921,1.0691,1.1747,11.5871,11.8028,4.6107,4.7393,7.9335,9.3403,3.2296,2.6668,8.7907,10.4434,5.9591,6.2873,6.9028,7.0717,3.5707,3.62,1.3062,1.4862,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd451,58,58,M,1.7266,2.4181,0.37592,0.39484,0.80898,0.75558,19.1081,2.8117,2.1129,54.9233,54.4207,18.9067,18.277,240.1227,232.5789,1.4619,3.5596,2.9947,1.0092,0.73692,31.8545,32.6877,1.7416,1.7203,3.4765,3.3121,7.0514,7.5892,4.8195,4.9371,0.06925,4.4949,2.6203,2.8718,0.35107,0.38985,3.6402,4.4399,4.1032,4.1686,1.7255,1.4641,9.615,8.9364,3.6757,3.2925,4.1787,4.1444,5.0668,4.6493,1.722,1.6036,1.9111,1.7371,3.5588,3.3786,8.0084,7.683,2.0941,1.9279,6.8332,7.4721,11.4244,10.5925,8.4486,7.3194,2.2305,2.4542,4.3864,4.5046,1.8738,1.8625,16.9019,18.325,5.2902,5.956,3.7058,3.6573,1.1779,1.0477,2.5709,2.3418,7.7032,6.6172,13.799,13.5444,3.7782,4.3392,4.5378,4.451,3.4238,3.215,1.3825,1.4613,4.0904,4.2021,10.4226,10.2134,2.8432,3.2482,2.2741,2.1583,2.4557,3.0561,9.0906,11.1024,2.2365,2.4663,2.0631,2.4308,10.969,11.7937,1.8109,2.5081,1.1912,1.2461,12.557,12.9671,5.269,4.861,8.0874,10.6176,4.5674,3.8709,10.7106,9.8389,7.2022,7.4843,7.7968,7.2737,3.2606,3.4662,1.5101,1.7766,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd452,73,73,M,1.4175,1.8126,0.37835,0.42597,0.82649,0.90388,17.5262,2.9505,2.8513,48.4678,48.3552,14.4953,14.7292,250.2897,246.2771,1.3649,3.5434,3.5674,0.96487,0.90361,16.8999,20.6057,1.6457,1.5937,3.909,3.8762,6.39,7.0209,4.6086,4.8657,0.08385,4.8149,2.4087,2.7544,0.37346,0.38798,4.6665,4.7719,4.166,4.5723,2.1901,1.6953,10.9498,10.7749,3.3619,3.0047,4.1699,4.6239,4.6508,4.4996,1.7484,1.7519,2.1141,2.308,4.5784,4.3061,7.5756,7.6979,2.3144,2.3903,7.3511,7.2467,11.4524,12.7822,8.2946,7.7831,2.5202,2.593,4.2979,4.6949,2.0238,3.0114,20.5258,20.8553,6.0795,6.2518,4.2036,4.3773,1.1528,1.0991,2.5889,2.5647,8.4573,7.2554,14.7468,13.855,3.2767,3.4538,4.3781,4.5027,3.5209,3.5357,1.7251,1.774,4.2346,4.6571,10.6144,10.2366,3.144,3.3438,2.3587,2.5536,2.3058,2.5855,11.4327,12.5231,2.4833,2.6119,2.1181,2.7221,13.5346,14.2938,2.0739,2.1193,1.3218,1.4297,17.322,18.842,6.3587,6.2755,9.0598,10.4661,4.6325,3.9881,10.2779,10.6301,6.9815,7.3668,8.7133,8.1597,3.9961,4.4729,1.518,1.8423,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd453,59,59,F,0.73794,1.1257,0.40807,0.43187,0.86192,0.86685,16.2224,2.8766,3.0593,36.5871,35.1182,12.807,13.0618,236.2134,234.481,0.85913,3.3244,3.0577,0.40818,0.40851,6.8043,3.8601,1.727,1.7676,3.3666,3.4359,6.39,6.9475,4.7012,5.2915,0.07289,4.3015,1.9967,2.2594,0.38938,0.36723,4.1233,4.5795,3.5163,3.6771,1.7262,1.4732,9.0344,9.3719,2.4799,2.5487,3.4588,3.5507,3.7159,4.6735,1.7787,1.6616,1.8713,1.7573,3.3897,3.2724,7.2433,7.1633,1.9369,1.9448,6.7307,7.438,11.4824,11.3263,7.5873,6.5669,2.184,2.3387,5.1835,5.4468,1.5906,1.6862,20.6697,19.892,3.4789,6.9686,3.4504,3.9433,1.1739,1.0947,2.6417,2.4547,7.5197,6.6438,13.6957,13.5805,3.7041,4.2854,4.2429,3.9337,3.3483,3.8005,1.4622,1.3536,3.849,3.9752,9.4884,9.1856,2.995,3.1178,2.0113,2.1058,2.0743,2.1774,10.5252,11.2932,2.421,2.6528,1.9729,2.0773,13.1199,13.3993,1.755,1.7725,1.1449,1.1796,13.374,13.7966,5.5314,5.5141,8.042,8.483,4.7643,4.4913,9.6342,11.3991,7.0859,7.5846,7.4404,7.1663,3.6155,4.1011,1.4013,1.3774,,,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd454,75,75,M,1.5559,2.0764,0.37023,0.43857,0.80409,0.83264,18.1291,2.8302,2.8282,48.8941,49.7441,13.7119,13.784,206.3472,208.9042,1.33,3.1227,2.9435,0.45382,0.4663,18.6368,15.6225,1.4296,1.41,3.68,3.7474,6.4733,6.6497,4.4367,4.7556,0.07642,5.4564,2.2979,2.533,0.40259,0.41953,4.1159,4.6921,3.8534,3.8667,1.5749,1.4033,10.2074,8.6968,2.76,2.5467,3.767,3.5647,4.3653,3.651,1.6281,1.5848,1.9104,1.9553,3.8271,3.6591,6.6421,7.1118,2.2603,2.2513,4.1811,5.1164,11.0778,11.1512,7.6875,7.1498,2.1142,2.2165,3.9214,4.6734,1.8465,1.8729,18.5568,18.1861,3.2197,4.9917,3.6011,3.8036,1.1226,1.1154,2.8719,3.0342,8.254,6.9886,13.7059,13.5472,1.9228,2.5511,4.14,4.0925,3.3883,3.5025,1.4614,1.4242,3.7934,4.3477,10.4475,10.7974,2.8765,2.9691,2.2595,2.232,2.2849,2.4107,9.4488,10.4723,2.3103,2.438,2.0861,2.2512,11.7388,12.2178,2.0277,1.9429,1.404,1.4896,14.7021,14.8167,6.1697,6.2755,7.686,8.907,3.7545,2.9693,12.3532,11.2477,7.0455,7.2714,7.1959,7.0025,3.1809,3.713,1.4499,1.6621,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd455,72,72,F,1.2241,1.3928,0.40112,0.43272,0.82649,0.82365,15.199,2.7826,2.5681,43.7419,41.9724,13.7147,13.8789,227.3956,216.712,1.3381,3.3738,3.1719,0.52755,0.54285,13.8722,15.693,1.5032,1.5196,3.548,3.5929,6.1974,6.5512,4.1214,4.2268,0.07213,3.7562,1.9369,2.0572,0.41127,0.4067,4.0313,4.4059,4.2385,4.1261,1.8887,1.6453,10.1158,9.0189,3.8375,3.6542,3.9038,3.7964,5.5132,5.1157,1.7405,1.6122,1.9656,2.1023,3.7506,3.6101,7.2503,7.2979,2.2997,2.4717,6.898,6.4314,11.6005,11.819,8.2264,7.7043,2.3552,2.6274,4.3592,3.9037,1.9077,1.8939,17.8984,18.181,5.0555,6.1245,4.2061,4.279,1.0169,1.0159,2.3303,2.2716,7.5136,7.3574,14.5052,14.4012,2.7339,3.6695,4.6522,4.4974,3.5311,3.2132,1.7302,1.4684,4.2127,4.7365,10.9989,10.8734,2.9695,3.1578,2.3262,2.2733,2.3774,2.4288,10.098,11.1911,2.4015,2.6802,2.1469,2.2904,12.4549,11.489,2.2014,1.9948,1.2814,1.3214,15.7196,15.0048,5.1062,5.5097,8.0458,9.4595,4.0754,4.138,10.3852,11.6669,8.0635,7.3659,8.3589,8.0864,3.9409,4.1668,1.6375,1.6592,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd456,61,61,F,0.92769,1.4228,0.32996,0.40888,0.78518,0.80224,15.5056,2.3119,2.224,41.6372,40.055,12.6024,12.7326,223.5163,219.2785,0.86119,2.8816,2.5125,0.37858,0.37085,8.7002,8.8317,1.3677,1.3782,3.0072,2.9525,6.5266,6.5934,3.9552,4.171,0.06336,4.0092,1.9454,2.2817,0.36052,0.34565,3.6402,4.0426,3.3815,3.6338,1.7272,1.5009,9.1914,6.9954,2.197,2.2969,3.7695,3.5908,3.8715,3.9733,1.5982,1.4933,1.6897,1.7211,3.3842,3.0078,7.0202,6.3426,2.0388,1.6308,5.8472,5.6511,10.0606,9.6693,6.5453,5.4669,2.2476,2.4574,4.0403,4.039,1.6708,1.5096,16.2943,17.2443,4.5528,5.4096,3.5735,3.5912,0.95698,0.99619,2.3443,2.4103,7.1866,6.2086,13.3075,12.256,2.2547,3.4122,3.6688,3.6264,3.2061,3.4143,1.5133,1.5016,3.4532,3.8501,9.3981,10.4343,2.8393,3.0236,2.0144,1.9671,1.9107,2.4066,8.5765,10.7772,2.2353,2.2485,1.9409,2.0836,11.1654,11.7583,1.4596,1.9041,1.028,1.0783,12.3132,12.2416,4.6414,4.4374,7.473,8.5936,4.1722,3.1865,9.8461,8.1832,5.8607,6.5243,7.0991,6.2784,3.2089,3.7933,1.2959,1.4045,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd457,63,63,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd458,59,59,M,1.6574,1.6066,0.39299,0.43782,0.9256,0.8882,21.6469,3.1739,2.9527,48.6657,48.3369,19.2503,18.277,245.8511,245.8619,1.2513,3.7963,3.6642,0.60141,0.47953,9.5783,10.5276,1.5444,1.5431,4.0664,3.9746,7.756,8.049,4.8444,4.8368,0.06923,5.1861,2.359,2.7452,0.40804,0.39996,4.8855,5.2022,4.5119,4.5521,1.9942,1.5833,10.5766,9.3956,3.5084,3.4373,4.2689,4.6945,5.1768,4.9364,1.7743,1.7333,2.0658,2.2036,4.2276,3.8872,7.2526,7.338,2.4681,2.4152,7.2674,6.8556,12.2302,12.583,9.3943,8.4713,2.5593,2.4261,5.5306,5.2196,2.2693,2.0905,17.9655,19.0342,5.7094,6.6156,4.3027,4.5663,1.2922,1.198,2.7102,3.0479,8.2217,7.6204,16.6756,15.7275,2.4932,3.3037,4.5213,4.6879,3.3535,3.2658,1.6705,1.5858,4.4753,4.979,11.9382,11.4018,3.1566,3.2579,2.3587,2.3462,2.3003,2.4889,11.4864,11.405,2.4985,2.5487,2.3438,2.3556,13.2427,13.1288,2.013,2.4035,1.3131,1.4408,16.4027,15.8127,6.5039,6.0863,8.4524,9.5017,4.1918,3.7762,10.6104,11.9308,7.2645,8.7619,8.3394,9.2731,3.7822,3.8429,1.6375,1.7095,,24,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd459,62,62,F,0.73794,1.2525,0.31981,0.33326,0.51972,0.55213,15.0725,2.7265,2.6558,42.0515,40.6259,12.1718,12.2415,183.5008,189.0925,1.0008,2.4134,1.3047,0.60093,0.57737,7.8019,7.5408,1.3856,1.4276,3.3634,3.1882,5.8613,5.8789,4.0622,4.2057,0.06557,4.1593,1.8396,2.431,0.30935,0.32294,3.1858,3.5612,3.4572,3.4425,1.6303,1.258,8.7062,8.1047,2.3393,2.0926,3.175,3.7673,3.0771,2.9036,1.0283,1.0768,1.6913,1.7876,3.3099,2.9333,6.2984,4.8119,1.9636,1.7793,4.9555,5.1534,9.3723,7.9361,5.989,5.8332,1.9941,2.1521,4.7066,4.9177,1.5572,1.5077,16.2457,16.3877,3.5569,5.3461,3.6362,3.201,0.86368,0.95416,2.0625,2.0706,6.0084,5.8097,11.4705,9.5015,2.3956,2.7148,3.3985,3.4255,3.1906,3.2688,1.3021,1.4934,3.6139,3.9854,8.3795,8.4152,2.2618,2.5184,1.9313,1.916,1.5536,2.0229,8.2449,9.8218,1.8718,2.3422,1.7949,1.9804,10.6188,9.9601,1.5465,1.6792,1.028,1.0804,13.2609,14.9077,4.4287,4.4581,7.3672,7.4277,3.0225,2.776,8.8864,9.2684,6.2276,5.1763,5.4577,6.4185,3.0398,3.3856,1.1816,1.3482,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd460,68,68,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd461,,,F,2.9825,6.1146,0.26034,0.33732,0.80199,0.89488,14.8758,2.1662,2.0871,41.6776,39.997,14.7531,14.5715,206.4091,208.4223,1.8625,3.1337,3.0937,1.614,1.6117,31.5536,42.0744,1.4416,1.4423,2.8896,2.8971,5.4271,6.8531,3.7621,3.9915,0.05839,4.5072,2.2031,2.0325,0.33867,0.32938,3.8308,4.0549,3.6817,3.8894,1.4896,1.2075,9.0266,7.9235,3.0725,2.7925,3.1196,3.2958,4.3094,3.9242,1.4945,1.5863,1.8599,1.7867,3.1757,2.8601,6.9239,6.8267,1.7508,1.8174,5.6825,5.8648,10.4471,9.777,7.4049,6.9718,1.9258,1.9873,4.5428,5.0023,1.4028,1.4512,14.5359,15.5038,4.3617,5.2284,3.1373,3.1944,0.95179,0.96039,2.0981,2.037,6.6768,5.7379,12.1516,11.3461,2.7084,2.9214,4.1069,4.2322,2.9091,3.2537,1.2483,1.3871,3.5991,3.6484,9.4082,9.2097,2.685,2.9739,2.1584,2.3365,1.7858,2.1631,7.7528,8.6894,1.9345,2.1661,1.7177,1.9493,9.5908,9.7869,1.6188,1.7456,0.99225,1.0201,12.3846,12.7407,4.6988,4.8952,7.245,8.2609,3.9919,3.8647,9.0019,8.3007,6.1392,6.9838,6.0942,6.3349,3.1968,3.1706,1.274,1.2649,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd462,,,M,1.2664,1.7778,0.47296,0.53321,1.0307,1.001,21.4893,3.3473,3.4491,52.7122,51.3749,20.1528,19.9391,252.7015,251.7752,1.0976,3.9872,3.7395,0.5249,0.47953,11.892,13.7019,1.6182,1.6516,3.6811,3.827,7.2574,7.6489,4.79,5.1161,0.08168,5.2487,2.4159,2.9334,0.40149,0.41794,5.2218,6.5349,4.0337,4.5576,2.0576,1.8397,11.7868,10.6247,3.4315,3.107,4.015,4.261,5.1768,4.5287,1.8976,1.9829,2.1378,2.0561,4.3098,4.2753,8.1273,7.9531,2.6917,2.7388,7.0212,7.5747,13.1952,13.5068,9.1724,8.509,2.6877,2.7182,7.0872,5.9994,2.1869,2.1957,21.4524,21.8414,5.5177,7.712,4.5732,4.7621,1.1528,1.4687,2.9697,3.1529,8.8946,8.4238,15.2797,16.1211,3.2773,3.896,4.8151,4.4368,3.9737,3.6874,1.772,1.8557,4.4571,4.8597,12.1045,11.2148,3.1722,3.5993,2.2177,2.3784,2.206,2.5347,11.4475,14.9649,2.502,2.8525,2.1073,2.6861,13.6885,14.8469,1.8905,2.1631,1.3336,1.4414,16.3566,15.4939,5.871,5.8355,9.1852,10.2393,4.5474,3.8774,10.4075,12.9099,8.4316,9.266,9.1321,8.5049,4.1998,4.9952,1.4845,1.5387,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd463,59,59,M,1.527,1.3377,0.33456,0.34673,0.72504,0.75972,16.3958,2.6894,2.7342,39.3674,39.9079,12.7606,13.2435,204.8715,204.5753,1.3533,2.7989,3.0114,0.58583,0.66927,13.6408,20.0874,1.427,1.4316,2.8663,2.9976,5.6208,6.0221,4.0924,4.3227,0.07562,3.9446,1.9097,2.412,0.29862,0.31632,4.2118,4.6051,3.5926,3.7307,1.746,1.6658,8.8075,7.4654,2.9727,2.4976,3.8943,3.7683,4.2654,3.4881,1.4345,1.316,1.9731,1.874,3.7123,3.6591,6.0484,6.0799,1.9057,1.9845,6.045,6.1125,9.308,9.0001,6.7317,5.8129,2.2787,2.268,4.6756,4.7808,1.5995,1.6783,19.7995,19.7907,4.6208,6.0367,3.7853,3.8186,0.94853,0.88176,2.467,2.1489,7.2669,6.9151,11.6077,12.0337,2.6925,2.7676,3.6227,3.7017,4.2019,2.9361,1.4678,1.4449,3.8343,4.3267,10.2645,10.1122,2.4115,2.6449,2.4339,2.5971,2.2906,2.2416,10.1569,10.3747,2.0391,2.394,1.9529,2.1727,11.7128,12.9433,2.0048,1.9443,1.0636,1.0635,14.878,13.4651,5.328,5.2597,7.7759,7.382,4.0604,3.6118,8.8861,8.8356,6.2104,6.0908,6.4156,6.727,3.5091,3.4464,1.3541,1.4037,,29,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd464,69,69,F,1.4607,2.5289,0.30529,0.33023,0.70782,0.74291,16.7592,2.4722,2.2478,46.8572,45.0515,14.5509,14.6074,217.7609,217.4497,1.3807,2.9698,2.7257,0.74448,0.57124,8.5689,10.1129,1.585,1.4918,3.0092,3.3269,6.2733,6.7249,4.3009,4.5656,0.06774,4.8108,2.193,2.4775,0.3253,0.3378,3.7968,4.298,3.4303,3.7082,1.7392,1.5045,9.1163,6.946,2.8962,3.0446,3.5289,4.1184,4.5577,3.9646,1.3899,1.4211,1.5785,1.7166,3.8571,3.4222,6.6888,6.5926,1.7907,1.977,6.0933,6.3134,10.4929,9.9105,7.151,6.6771,2.2145,2.0638,4.3694,4.245,1.6487,1.6313,18.2191,15.6377,4.5922,5.9481,3.5422,3.847,0.81059,1.0076,2.3533,2.4319,7.2669,6.5312,13.0423,11.9541,2.767,3.7408,3.8353,3.882,2.7412,3.016,1.4436,1.2284,3.4985,3.7437,9.5439,10.9225,2.615,2.7835,1.9205,2.0181,1.9492,1.9104,10.5362,11.3254,2.3864,2.1077,1.8385,2.1139,10.9179,11.2965,1.6307,1.4896,1.1501,1.0952,13.8721,12.7444,5.0819,4.7759,6.9792,7.854,4.0782,3.9842,10.921,11.5678,6.3466,5.8152,6.8963,6.7322,3.1664,3.1222,1.2277,1.2654,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd465,,,M,1.2242,1.7443,0.34523,0.35194,0.83213,0.80952,18.4232,2.4047,2.647,49.9071,49.5596,14.8592,14.7444,214.9513,207.5702,1.053,3.134,3.0509,0.56116,0.60498,9.0393,11.297,1.5012,1.4795,3.1779,3.3951,6.6463,7.0188,4.6196,4.7553,0.08013,4.9801,2.2732,2.878,0.34201,0.33271,4.3417,4.7613,3.4303,3.5566,1.7262,1.4283,9.4689,8.7286,3.0493,2.9379,3.4866,3.3012,4.6859,4.24,1.5703,1.5824,1.7386,1.7992,3.4434,3.3071,7.4297,6.8294,1.9853,2.1409,5.9165,6.1547,10.7133,9.618,7.2899,7.3066,2.2825,2.2228,5.1835,5.2762,1.7524,1.7233,18.4993,18.1861,4.5705,5.2485,3.9055,3.8039,1.0611,1.0132,2.2514,2.2739,8.2987,7.2991,14.6607,12.9115,2.6611,3.0273,3.9695,3.9262,3.1839,3.5236,1.4692,1.4362,4.0413,4.453,9.8153,11.594,2.9635,3.1251,2.0819,2.1096,1.8025,2.1774,9.7397,10.4723,2.3426,2.5731,1.8696,2.0569,10.4106,11.5403,1.6251,1.6008,1.255,1.3149,14.0331,14.6553,5.3515,5.5574,7.8176,7.8301,4.0222,3.0447,9.0019,9.8113,7.1474,7.0818,6.996,6.9502,2.9482,3.6908,1.2186,1.2325,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd466,67,67,M,1.1381,2.0553,0.36818,0.40836,0.80229,0.88019,17.1094,2.7093,2.7139,45.0926,45.3358,13.6021,13.7333,204.7483,203.9892,1.2455,3.2123,3.0119,0.56721,0.59446,10.4673,12.636,1.4486,1.4602,3.3207,3.3873,6.0479,6.2847,4.3378,4.5443,0.07799,4.8812,2.2006,2.565,0.37715,0.37594,4.2709,4.3081,4.0554,4.0291,1.767,1.6155,9.6822,8.3953,2.8537,2.7274,3.6892,4.2542,4.1411,3.6543,1.6677,1.6616,1.8305,1.9725,3.371,3.2919,6.7028,6.5488,1.9686,2.041,5.9378,5.3023,10.1157,10.274,7.5401,6.4034,2.0948,2.4126,4.5218,4.5033,1.7375,1.678,17.022,17.052,4.6104,5.679,3.7478,4.0139,0.90211,1.086,2.3201,2.4243,7.4682,6.5976,13.4782,12.8021,2.9139,3.063,3.9442,3.6077,3.4238,3.7512,1.3489,1.5862,3.3272,3.9726,9.3981,9.3937,2.8557,3.1029,2.039,2.0181,1.9819,2.2773,8.3787,10.6941,2.2809,2.4123,1.9449,2.0808,11.2387,11.3869,1.5543,1.9657,1.1482,1.1778,13.7849,13.451,5.0751,4.9117,7.4666,7.8309,4.1368,3.6493,8.8287,8.3378,6.8385,6.9543,7.1558,6.8223,3.4521,3.7579,1.2959,1.4303,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd467,82,82,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd468,68,68,M,2.3108,2.7178,0.37359,0.40494,0.84541,0.75988,17.2224,2.9012,2.8888,45.1608,46.5014,14.4356,15.2271,253.6807,251.408,1.8735,3.3298,3.0874,0.83194,1.2124,21.8773,27.0472,1.6517,1.5701,3.7462,3.972,6.6072,7.2052,4.6494,4.9142,0.0902,4.4978,2.1287,2.7552,0.41104,0.39466,4.4839,5.0139,4.578,4.7001,1.9423,1.4728,10.4015,9.5266,3.7793,3.2695,4.3948,4.4935,5.2677,4.3988,1.6065,1.446,1.9532,2.1225,4.2283,3.8123,7.3624,7.0345,2.1739,2.0575,6.9008,7.5209,11.7478,11.49,8.5329,7.0703,2.4574,2.1942,4.7426,5.0405,1.9699,1.7961,18.6379,18.1078,4.7657,5.9037,4.0721,3.919,1.0032,1.2571,2.4741,2.8358,8.299,7.5851,13.4955,13.5805,3.2839,3.817,4.4303,4.3142,3.8173,3.4183,1.7399,1.4893,4.5414,4.6666,11.7274,11.0417,2.9151,3.0096,2.5812,2.5628,2.5237,2.6709,11.0441,14.123,2.4929,2.4391,2.2806,2.499,12.5486,11.894,2.2965,2.1388,1.3882,1.3937,15.565,15.3991,6.2855,6.09,8.6232,9.0909,4.3934,3.6813,10.9218,11.1606,7.1842,7.573,7.6612,7.0541,4.0715,4.1668,1.6686,1.5662,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd469,84,84,F,2.5515,2.5393,0.28306,0.31748,0.6043,0.55372,10.4775,2.5466,2.424,35.6957,36.6688,10.0498,10.191,150.0735,156.4949,2.7381,2.5696,2.3086,1.7219,1.2456,33.1003,28.5032,1.1776,1.1515,2.9122,3.0858,5.8359,5.5956,3.6257,3.8961,0.09289,3.905,1.9054,1.7593,0.32475,0.32923,3.0547,3.5363,3.082,3.1873,1.3738,1.2167,8.3779,7.634,3.5365,2.9975,3.2413,3.0922,4.7813,4.7757,1.3618,1.0476,1.4528,1.4724,3.0046,2.9676,6.0432,4.9533,1.5802,1.6285,5.9213,4.9571,9.1927,7.7636,7.5965,6.8138,1.8924,1.8822,3.8611,3.2876,1.3553,1.4588,14.7522,14.3944,4.6644,4.6762,3.0518,3.3108,0.89653,0.91292,2.2753,2.3515,6.4407,5.8155,11.8959,9.4157,3.0051,3.0388,4.0877,4.2322,2.482,2.6425,1.3055,1.1783,2.9264,3.7408,9.4847,8.9777,2.5692,2.7527,1.8084,1.8773,2.176,2.1802,8.7491,10.2945,1.9387,2.1738,1.637,1.8628,10.304,10.6862,1.853,1.7216,0.9635,1.016,11.4221,11.143,4.4287,4.5871,6.6645,8.2094,4.3661,3.433,9.0286,8.6697,6.7171,5.1942,7.1652,6.7166,2.7025,2.8671,0.78203,1.318,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd470,72,72,F,1.3139,1.4875,0.33224,0.34514,0.7897,0.69934,16.2942,2.9581,2.8869,39.28,38.1988,13.84,13.2666,183.5937,179.6528,1.4058,3.1279,2.8045,0.66814,0.90361,12.8097,22.1922,1.4299,1.41,3.277,3.2494,5.8613,6.1208,4.0367,4.2057,0.07562,4.2774,1.9186,2.4511,0.33734,0.35689,3.4662,3.9115,3.328,3.2997,1.5354,1.3555,8.9648,7.5552,2.8653,2.7421,3.5078,3.6776,3.2424,3.9242,1.571,1.3323,1.7108,1.6726,3.0618,3.037,6.3448,6.3067,1.7222,1.6755,5.6178,4.9122,9.4183,9.3594,7.662,7.5597,2.0669,2.0882,4.2837,4.3943,1.5055,1.5073,15.8594,16.6851,3.9228,4.6049,3.5012,3.3944,0.84444,1.063,2.4117,2.5113,6.9458,5.5905,12.0458,12.0337,2.2858,2.4851,4.0166,3.9033,3.2878,3.2954,1.3375,1.2897,3.4599,3.9756,9.4578,9.5578,2.8675,3.0323,1.9313,1.9671,1.9867,2.053,10.1397,11.246,1.9772,2.1403,1.7949,1.9267,11.6556,11.229,1.7637,1.6792,0.97945,1.0552,12.8344,13.2583,4.4485,4.7393,7.2411,7.0518,3.4634,2.7374,10.6279,9.5738,6.787,6.4764,7.0659,6.3351,2.8492,3.3739,1.3621,1.3835,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd471,83,83,M,2.4324,1.789,0.41411,0.46676,0.88817,0.95116,16.4676,2.7826,2.7179,44.8116,43.3422,13.4651,13.9352,232.7685,218.6799,2.3378,3.5455,3.1353,0.96117,0.90545,32.0847,39.4973,1.6007,1.5699,3.7248,3.6697,6.389,6.9475,4.4392,4.6325,0.07639,4.8812,2.2046,2.7989,0.40732,0.4067,3.955,4.6224,4.5114,4.7001,1.9226,1.7774,10.7538,9.6442,3.58,3.107,4.0571,4.2281,5.0682,4.6505,1.7919,1.8282,1.8574,1.9025,3.8675,3.7036,8.2799,7.9502,2.1301,2.2165,8.1062,7.1483,12.4447,11.6051,8.5372,7.4205,2.3747,2.6402,3.9635,4.6783,1.9883,2.0763,19.5505,20.0958,5.4709,6.1756,4.0342,4.2465,1.1214,1.3387,2.6174,2.9477,7.5734,6.9341,14.9277,14.2233,3.5247,3.7497,4.2992,4.3657,3.4744,3.79,1.5679,1.4844,4.448,4.9629,11.2847,10.6727,3.054,3.1923,2.1883,2.3179,1.9101,2.3082,11.2743,12.7777,2.3987,2.7524,1.9393,2.1839,13.4881,13.7982,1.6913,1.9873,1.2988,1.4188,16.0886,15.7859,5.4532,5.7834,9.0707,8.8749,3.961,3.9706,10.1279,10.7687,7.0267,6.5463,8.7804,8.4288,3.6974,3.8605,1.3371,1.5665,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd472,66,66,M,0.91253,1.7185,0.4192,0.46989,0.85179,0.80335,21.302,3.1087,2.9517,51.5385,52.0429,18.656,19.6686,275.5598,281.4037,1.399,3.1602,2.956,0.54312,0.40354,14.5741,15.1691,1.7834,1.7725,4.0291,4.1105,7.3684,7.6419,5.179,5.6066,0.0845,5.7021,2.4099,2.9013,0.38239,0.37884,4.2702,4.9016,4.5421,4.3136,1.8852,1.5635,10.91,9.2355,3.8322,4.0436,3.5981,3.6019,6.2507,6.106,1.6851,1.5806,2.1879,2.0867,3.7506,3.8607,9.1032,8.8549,2.0996,2.1921,8.1387,7.5129,12.4447,11.7461,9.2299,9.0367,2.3599,2.5075,4.9646,5.1549,1.8383,1.8544,19.571,19.1789,5.8715,6.5834,4.1537,4.365,1.1934,0.99429,2.3258,2.2115,8.152,7.2991,14.6469,14.562,3.7915,4.3392,5.1058,4.8644,4.0885,3.163,1.8173,1.7859,4.6463,5.0089,11.9382,11.2148,3.1447,3.2771,2.3262,2.3836,1.9944,2.3082,10.1976,11.4424,2.5849,2.7799,2.2729,2.2698,13.6143,13.7414,1.7086,2.0071,1.255,1.2741,15.2906,13.9844,5.3775,5.5664,8.554,8.8857,4.7073,4.4894,9.4709,10.9693,7.8527,7.2975,8.8288,7.8968,3.5686,3.6023,1.4701,1.6575,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd473,68,68,M,1.4925,1.69,0.30712,0.3308,0.71488,0.62016,14.4902,2.2033,2.2076,39.9292,39.0957,13.5025,13.2666,221.2064,204.5866,1.3807,2.735,2.4759,0.84938,1.0824,12.6277,15.4314,1.3057,1.3074,2.6449,2.6509,5.7971,5.3712,3.8112,4.0564,0.07027,3.9879,1.8396,2.2569,0.30035,0.3211,3.1858,3.5274,3.4566,3.5093,1.4349,1.3116,10.2363,8.5074,3.0433,3.1377,3.6036,3.3813,4.0344,3.7876,1.4214,1.3032,1.7567,1.7199,3.1138,2.7572,6.1725,6.0146,1.7864,1.7789,5.6325,5.1469,10.2109,9.5955,6.987,7.061,1.8898,2.0886,4.0824,4.1273,1.402,1.3479,16.3607,17.6678,5.2988,5.3886,3.2234,3.3491,0.86488,1.0918,1.8416,2.5113,6.2574,5.7841,11.7043,10.9002,2.6258,3.0388,4.0499,3.8738,3.0249,2.7669,1.2826,1.3871,3.1812,3.5086,8.5675,8.6526,2.5458,2.7139,2.06,2.0874,2.1352,2.0582,9.3578,10.9703,2.1836,2.2758,1.7206,2.0047,12.0609,11.7764,1.6339,1.6085,0.96674,1.0129,12.5938,13.4043,3.9938,4.3949,7.7316,8.5838,3.7392,2.9742,9.0243,9.6752,6.1677,6.4235,6.5243,6.2617,2.9747,3.4155,1.2238,1.3844,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd474,68,68,M,1.8597,2.3693,0.37592,0.4002,0.91709,0.89547,21.6469,3.263,3.0196,46.8023,46.3508,18.656,18.9707,274.269,268.0351,1.8655,3.515,3.3502,1.2206,0.83934,21.2596,21.7721,1.8652,1.9314,3.867,3.4106,6.7978,7.2896,5.3058,5.5975,0.09339,4.9295,2.1871,2.5866,0.3743,0.3749,4.7836,5.3592,3.9127,3.9611,1.9654,1.7945,10.9234,9.5276,3.8622,3.7189,4.1024,4.0983,5.4773,4.9143,1.6292,1.6946,1.9041,1.8671,3.9241,3.6712,7.7176,7.1408,2.1646,2.0287,6.5857,6.9885,12.2567,11.4622,8.4486,7.3152,2.5194,2.7365,5.082,4.8757,1.9883,2.1273,19.8372,19.8549,5.5605,6.6359,4.1537,4.2163,1.0477,1.0763,2.3282,2.5647,8.8638,8.1268,14.5562,14.397,3.1577,3.7497,4.2732,4.1933,3.2752,3.2974,1.6825,1.8071,4.5414,4.5776,11.9382,11.4003,3.0501,3.3036,2.5604,2.2809,2.4669,3.1789,11.1063,12.4028,2.3079,2.9829,2.2806,2.4232,13.5346,13.7982,2.0333,2.5849,1.2283,1.3699,16.485,15.6305,6.6401,6.1341,8.65,9.7647,4.3322,3.5177,10.6607,9.9939,7.6245,7.0766,7.8174,8.0069,3.9895,4.5021,1.5173,1.7415,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd475,75,75,F,1.7085,1.9137,0.32204,0.37602,0.80628,0.87696,15.9099,2.3119,2.5176,44.7024,44.7677,12.6024,13.0713,191.845,192.0136,1.8052,3.2781,3.0322,0.90312,0.84058,22.5276,26.0747,1.5685,1.5353,3.1653,3.3626,6.5392,6.6044,4.3635,4.5859,0.08456,4.418,1.8435,2.4456,0.34125,0.37409,3.689,4.0572,3.8477,4.0315,1.4111,1.448,10.2074,9.0189,3.3256,3.0209,3.7748,4.0314,4.724,4.9988,1.5565,1.602,2.0114,1.9447,3.2281,2.9067,6.5651,6.8066,1.6585,1.7665,5.9165,5.3023,9.7939,9.5801,7.7851,7.1973,1.8401,2.3922,3.7044,4.0007,1.5406,1.539,17.2194,17.2491,4.9089,5.4347,3.3717,3.5433,0.94556,0.92597,2.3593,2.3054,6.8223,5.9329,11.9211,11.9465,3.0167,3.0587,4.0199,3.8862,3.341,2.7968,1.3389,1.5862,3.4211,3.6734,9.8346,9.1992,2.8765,3.2074,2.0525,2.0955,2.0884,2.4654,9.3283,11.5268,1.8947,2.4123,1.9904,2.0328,11.5372,11.0545,1.9325,2.1118,1.1824,1.2125,13.7916,13.5656,5.1071,5.1194,8.2728,9.085,4.6134,3.3597,8.8287,10.0653,6.7171,6.3988,7.2258,7.0192,2.9813,3.7364,1.4087,1.5763,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd476,,,M,1.0872,2.0007,0.47365,0.54746,1.2526,1.0705,23.2577,4.2284,3.6104,61.7421,54.2968,21.5412,19.6858,242.0048,236.2561,1.0818,4.0002,3.5758,0.62167,0.43567,10.0023,9.9571,1.5473,1.5518,3.476,3.7195,7.3034,7.6297,4.9079,4.9725,0.08319,5.0225,2.51,3.2649,0.41518,0.41206,4.7026,4.9365,4.5119,4.6844,2.0576,1.9169,10.7095,10.4839,3.6394,3.2987,4.7203,4.6612,5.1768,4.6004,2.0892,2.0359,2.3805,2.2589,3.9924,3.6493,8.7955,8.6136,2.1663,2.3043,6.5161,6.7557,12.7852,12.3874,9.3264,9.3182,2.6347,2.7182,5.5455,5.76,2.0599,2.0095,19.1186,20.7538,5.0577,7.6079,4.4105,4.4773,1.2712,1.4265,2.822,3.2439,8.9508,7.7655,15.7167,15.7275,3.3631,3.6108,5.0403,4.7529,3.7286,3.6718,1.7728,1.729,4.5817,5.5126,12.0285,12.3097,3.8217,3.9265,2.4441,2.3972,2.4819,3.1129,10.2429,12.5361,2.4879,2.8525,2.3986,2.4483,11.9125,13.2622,2.0353,2.4123,1.3131,1.2201,15.6749,15.6956,5.5008,5.3513,8.4487,9.7647,4.7824,4.4032,11.6447,13.2127,8.4167,8.8782,9.1321,9.2947,4.0728,4.3525,1.6556,1.6751,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd477,,,F,0.96391,1.7785,0.34421,0.34666,0.78877,0.75894,14.8491,2.143,2.3382,44.3657,45.4069,12.3419,12.8799,190.7115,189.237,0.88663,3.1302,2.822,0.40723,0.39909,3.3372,7.33,1.2453,1.2494,3.0918,3.0414,6.1423,6.2495,3.7728,4.0067,0.06557,4.2336,2.1165,2.4515,0.3239,0.33865,3.4942,4.4638,3.4775,3.7565,1.6751,1.4608,8.9648,8.2659,2.1927,2.3528,3.3572,3.5066,3.8955,3.9218,1.4545,1.356,1.7567,1.9553,3.3626,2.8299,7.305,7.0382,2.0011,1.6308,6.4673,5.9785,11.3054,10.7504,7.2766,6.5913,2.0886,2.1764,4.5526,4.4931,1.8351,1.7294,15.2815,15.5124,5.5586,6.0264,3.7058,3.563,0.99093,1.2691,2.1803,2.755,7.7075,6.4436,13.7059,13.2739,3.2247,3.3791,3.9088,3.7471,3.3103,3.4972,1.4263,1.4734,3.5698,4.1836,9.3456,9.983,2.7925,2.8443,1.9505,1.996,2.265,2.3419,8.2134,9.6724,2.0896,2.2778,1.8567,2.0808,10.5583,11.2346,1.9312,2.0921,1.0904,1.1114,12.2432,11.9064,5.0951,4.6149,6.6345,7.7894,4.3903,3.4322,9.4211,8.1832,6.9538,7.2104,6.8173,6.8363,3.3992,4.0303,1.4593,1.5485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd478,70,70,M,2.5509,3.8623,0.41779,0.45747,0.88168,0.89123,18.3788,3.4665,3.0724,49.8605,49.98,14.4027,14.2393,231.3293,231.8286,2.8942,3.6189,3.3271,0.9969,1.0131,31.0961,37.1856,1.7119,1.6522,3.8649,3.7971,7.1682,7.3432,4.7557,4.9638,0.07588,5.1432,2.4147,2.3632,0.41841,0.44588,4.497,4.8014,4.7142,4.8166,1.7905,1.7273,12.0143,11.1179,3.5772,3.2168,4.5053,5.2039,5.0832,4.3846,1.8746,1.6251,2.2817,2.1078,4.3083,4.099,8.3668,8.1556,2.1126,2.0521,7.1162,6.143,13.4129,13.9209,8.5372,8.2718,2.44,2.5265,5.2766,5.4468,2.0182,1.9404,20.6739,22.6366,5.92,6.6154,4.2,4.1335,1.4446,1.3268,3.209,3.0387,8.9555,8.5192,17.4995,18.8747,2.4779,3.3407,4.3418,4.1715,3.8184,3.3267,1.8522,1.6058,4.4753,5.0508,12.5322,12.6692,3.4245,3.4562,2.5451,2.6305,2.4819,2.5505,12.7685,14.9649,2.6451,2.563,2.5633,2.8303,13.7001,14.2938,1.9948,2.0692,1.3666,1.4805,16.5771,16.123,6.8389,6.6482,10.4337,10.4647,4.2425,3.4548,11.4734,11.8615,8.4316,8.1252,8.592,7.8968,3.9793,4.4532,1.7025,1.6919,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd479,72,72,F,1.2149,1.6201,0.40112,0.39625,0.83346,0.81606,16.0576,3.2654,2.9888,42.281,43.1641,13.7147,14.0383,231.4533,219.7046,1.053,3.2075,2.8585,0.43104,0.40076,11.6656,13.7295,1.3347,1.3464,3.5562,3.3507,6.1788,6.3968,4.0367,4.2795,0.08828,4.1678,1.9234,2.431,0.37755,0.37462,3.6227,4.1665,3.5875,4.0423,1.7569,1.5045,10.1158,9.093,2.7563,2.5467,3.9964,4.2725,4.9481,4.5205,1.6677,1.6321,2.1616,1.9652,3.8508,3.4205,7.7255,7.7943,2.2056,2.4366,7.429,7.2429,12.3609,11.7365,7.7678,7.1563,2.3845,2.5044,4.2238,3.8306,1.8408,1.8544,20.216,19.1111,5.6932,6.6704,3.8157,3.9559,0.97834,1.0847,2.6087,2.5365,7.1866,6.583,15.9131,14.9929,3.9516,4.3637,4.3157,4.5236,4.1552,3.5359,1.7912,1.5862,3.7654,3.9774,10.9873,10.571,3.0239,3.2123,2.1205,2.2194,2.1452,2.2416,9.3621,11.4371,2.3767,2.4766,2.0082,2.2018,12.8154,13.4365,1.845,1.8573,1.0766,1.0558,14.6592,15.0032,5.2378,5.0618,7.6249,8.9471,3.961,4.0105,12.0503,12.4455,7.0929,7.6646,8.4258,8.4207,3.9782,4.2532,1.512,1.5591,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd480,74,74,F,1.4763,2.5699,0.3546,0.3887,0.8557,0.88298,14.0597,2.8526,2.5116,15.1677,17.5955,2.8026,10.4569,191.1721,188.7927,1.4373,3.5737,3.3271,0.76747,0.75322,17.332,18.4159,1.2104,1.1355,3.1933,3.5782,6.1456,6.3217,3.8345,3.9391,0.06259,4.0486,0.88859,1.1706,0.31996,0.35922,3.5233,3.6764,3.6048,3.7351,1.532,1.37,8.2133,8.5372,2.9174,2.9206,3.2431,3.2403,5.232,4.7725,1.6351,1.7728,1.6696,1.7516,2.9616,2.7766,6.8021,6.1158,1.8475,1.8034,5.9288,4.56,10.3594,10.1241,7.2669,6.4933,1.9334,2.1257,3.9268,4.0453,1.5572,1.4795,15.1184,15.8475,4.9182,5.2764,3.4009,3.3296,0.84444,0.93562,1.9498,1.9728,6.3706,5.5572,13.5206,13.1376,2.2015,2.7622,3.6165,3.4211,3.2383,2.9717,1.211,1.4754,3.8716,4.1086,10.3976,10.2134,2.919,3.1173,1.9577,2.0525,1.5783,1.8917,8.8773,9.3536,1.9982,2.2895,1.6124,2.196,10.712,10.0965,1.5063,1.4413,1.1365,1.1707,13.9343,13.2358,4.5393,4.3322,6.3504,7.5543,3.7279,3.0422,9.5941,10.0293,6.606,6.4859,7.2523,6.8396,3.1211,3.7394,1.009,1.1573,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd481,76,76,M,2.3907,2.2271,0.36748,0.38664,0.81045,0.76239,16.8618,2.7349,2.8282,44.7095,42.9856,14.5509,15.2514,232.1245,225.7956,1.5639,3.3865,3.0493,0.68395,0.67237,15.6604,18.7512,1.5997,1.563,3.2753,3.4333,6.5668,7.1303,4.4926,4.6844,0.07678,4.7015,2.2808,2.4515,0.37691,0.38226,3.955,4.798,4.2283,4.2454,1.7043,1.5579,10.1467,9.2931,3.036,2.5654,3.7413,4.1119,4.1683,3.651,1.6069,1.5151,2.1704,2.0427,3.6944,3.3957,7.0278,6.1921,1.9633,1.9945,6.0352,5.6651,10.6778,10.8045,7.4536,6.6398,2.2271,2.2746,4.7125,5.2192,1.6097,1.6697,18.1561,18.1078,4.8132,5.7717,3.8506,3.9091,0.82415,0.98109,2.4699,2.456,7.6286,7.0426,13.7507,13.5472,2.7022,3.0981,4.2119,3.7139,3.7759,3.0311,1.5676,1.4284,4.2336,4.4726,10.178,10.5002,2.6897,2.8665,2.482,2.4643,2.4415,2.4722,9.1457,11.7269,2.4765,2.4157,2.2022,2.5326,11.2387,11.7583,2.1681,1.9643,1.0843,1.2203,14.5554,14.8205,4.8616,5.0538,7.1324,9.2829,3.8214,3.0921,9.484,9.8936,6.8013,6.3754,7.1644,7.097,3.7418,3.6846,1.6639,1.7926,,20,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd482,82,82,M,2.4287,1.977,0.40488,0.42069,0.76377,0.7483,17.6046,3.4584,3.1133,46.8712,47.5675,13.7119,13.784,207.1482,208.2046,2.0899,3.1628,3.0211,0.74791,0.53907,24.7413,28.8535,1.6159,1.6486,3.9759,4.6426,7.0232,7.3494,4.3958,4.6248,0.06899,4.7028,2.0867,2.6622,0.3848,0.3722,4.497,5.2078,4.166,4.241,1.9654,1.671,9.4406,9.2893,2.8901,2.9137,4.1558,3.6082,4.9171,4.3846,1.49,1.366,2.0558,2.0471,3.9087,3.8139,7.7057,8.1054,2.1897,2.3608,6.2916,6.4785,12.6919,12.9861,8.1016,7.1042,2.5749,2.5063,5.5418,5.1372,1.9405,2.0682,20.6915,21.1393,4.884,5.5351,4.0677,4.3148,1.1591,1.2392,2.7402,2.7873,8.3811,8.0353,14.5562,16.4376,3.201,3.7682,3.944,4.2611,3.4796,3.7217,1.6074,1.5328,4.2617,4.7365,11.8125,11.4018,2.9034,3.0873,2.5153,2.2366,2.4669,2.5693,10.9025,11.8231,2.2067,2.6018,2.0678,2.3682,13.2148,12.3437,2.0048,2.1631,1.1406,1.195,15.5683,16.7898,5.0383,5.09,8.4426,8.9841,4.5465,3.5,11.1253,10.683,8.3126,7.3659,7.4054,7.2254,4.2226,4.504,1.4453,1.7203,,18,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd483,77,77,M,2.97,1.9015,0.32585,0.3637,0.78953,0.80505,17.052,2.3358,2.2161,28.1916,31.817,17.1083,15.7259,240.1227,234.1957,1.8683,3.3957,3.0368,1.4552,0.9762,26.4693,28.4876,1.682,1.6966,3.3506,3.5089,7.2864,7.3633,4.7012,5.0235,0.08777,4.484,2.1431,2.3776,0.34626,0.34711,4.105,4.1485,4.2539,4.5975,1.6813,1.3958,11.4893,9.8121,2.9305,2.8522,3.988,3.9784,3.7902,4.1909,1.5072,1.502,2.1033,2.078,3.3689,3.4428,6.6275,6.4367,1.9041,1.8094,5.9253,5.5668,11.0967,10.9496,7.1065,6.6851,2.1137,2.1152,4.4469,4.4597,1.585,1.5646,16.273,17.7601,4.9089,6.3498,3.5397,3.3836,0.90724,1.0109,2.1051,1.9321,7.1452,5.8159,14.5052,13.0867,2.4897,3.0329,3.9695,3.7836,3.4022,3.3423,1.4194,1.4233,3.509,3.9726,9.0555,9.3243,2.516,2.6815,2.3829,2.4939,2.027,2.008,9.7286,10.7457,2.1878,2.3807,2.0316,2.4694,10.4972,10.5874,1.6364,1.7742,1.1388,1.2379,12.967,12.4917,4.6055,4.6743,7.332,8.3096,3.8521,3.1602,9.405,9.5526,7.1714,6.271,7.0589,6.9877,3.3992,3.321,1.3838,1.376,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd484,84,84,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd485,83,83,M,1.5742,0.86416,0.03898,0.13301,0.92367,0.93247,9.0519,0,0.88732,7.4207,18.9006,3.8003,8.7931,76.6563,93.4871,0.75438,3.3942,3.0923,0.46835,0.55654,4.2276,7.33,0.21428,0.8757,0.23437,0.32999,1.9192,5.4137,4.0239,4.2908,0.06425,3.4172,0.30153,0.01307,0.35351,0.33044,0.01082,0.00936,0.9969,0.93454,0.0014,0.55737,7.3412,6.2744,2.2766,2.2721,0.00002,0.00108,3.7466,3.4434,1.7756,1.7519,0.75116,0.00001,1.969,0,6.7859,6.3805,0.23156,0.56823,5.3644,4.7591,10.4005,9.8519,6.106,5.6466,0.67733,0.951,0,0,0.16873,0.03454,0,7.2894,4.5945,4.7448,1.6316,2.0093,1.0149,0.9521,1.9861,1.863,0.01018,0.00018,11.8131,10.5233,2.2855,2.5727,1.0875,2.2694,0,0,0.00987,0.49832,2.561,2.6286,8.7343,7.4883,3.0069,3.2046,0.89588,1.7462,0.38842,0.60781,0,0.00111,1.4502,1.9167,1.457,1.9235,0,0,1.5465,1.6524,0.55918,0.88828,6.0263,0.00013,0,3.9575,0.20706,6.0253,3.4867,2.9609,7.2866,8.1941,6.839,6.358,7.2326,6.9261,0,0,0.78203,1.066,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd486,67,67,M,2.0299,2.8467,0.29945,0.26814,0.76374,0.74291,15.21,1.8786,2.1284,37.2794,36.8488,11.8484,12.1776,187.6209,192.4498,2.0632,2.9478,2.5833,0.71055,0.53907,18.5802,20.8007,1.3624,1.3295,3.0357,2.973,5.7702,5.4602,3.9919,4.2019,0.06877,3.9893,1.89,2.0473,0.31593,0.3202,3.9012,3.9163,3.6745,3.5946,1.4566,1.3463,8.7368,7.6056,3.0314,2.9306,3.1549,3.4206,3.9193,4.3767,1.391,1.394,1.8599,1.7378,3.3126,2.8304,6.0894,5.6216,1.9094,1.7804,5.1878,5.5156,9.211,7.589,6.3936,6.2854,1.7262,2.0892,3.98,3.7509,1.4358,1.3479,15.6477,15.3308,4.4364,4.7546,3.0777,3.4232,0.86488,0.875,2.0719,2.0058,6.8316,6.459,11.1185,8.7619,2.6285,2.8995,3.3919,3.2456,3.3883,2.925,1.2641,1.2633,3.446,3.3549,8.4878,8.7958,2.5922,2.7836,2.0759,1.9738,1.5783,1.7409,7.6447,9.1597,1.8137,2.0272,1.8662,1.8632,9.4524,9.5847,1.577,1.671,1.0023,0.99363,12.5938,12.1091,4.4457,4.3746,7.245,6.5171,3.4317,2.8757,8.6072,9.0978,5.8164,5.1939,6.1071,5.8461,3.1351,3.1119,1.3216,1.156,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd487,77,77,F,1.5285,2.0916,0.39267,0.39471,0.97399,0.84623,18.3099,3.2654,3.0353,45.5252,47.4532,15.0903,16.2466,208.3674,199.762,1.6097,3.0267,2.8334,0.4579,0.41871,17.0008,22.448,1.6221,1.6387,3.761,3.4106,6.6078,7.0423,4.5123,4.7287,0.07571,4.9937,2.3057,2.7915,0.3848,0.38759,4.3549,4.8887,4.0238,4.6331,1.739,1.6265,9.5148,7.0883,3.1363,3.162,3.5113,3.725,4.1589,4.5253,1.8772,1.8471,2.1172,2.1162,3.3301,3.4382,7.3327,7.2563,2.0326,2.1695,6.5563,5.7875,11.7056,11.192,8.2483,7.2914,2.3253,2.4611,4.2137,4.4862,1.8869,1.8874,16.6491,19.2089,4.8127,4.7454,3.7609,4.0716,1.2112,1.2561,2.8894,3.1151,8.0025,7.0519,13.3617,13.7819,3.4893,3.7682,4.0661,4.0452,3.5849,3.3267,1.6337,1.6574,3.8347,4.3723,9.8585,10.7271,3.3648,3.3962,2.3643,2.6984,2.0713,1.9848,9.3074,10.1489,2.3996,2.6346,2.1559,2.6993,10.0523,10.1446,1.8163,1.6056,1.2814,1.2837,14.8992,15.0872,4.4777,5.0094,7.6196,7.6473,4.7643,4.4913,9.6935,9.8361,7.1756,6.7381,7.8606,7.2737,3.8485,4.0113,1.3417,1.54,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd488,70,70,M,2.3722,2.1882,0.40428,0.42069,0.88168,0.7873,18.18,3.4256,3.415,49.7958,49.9308,14.4027,14.2393,202.5455,202.0467,1.7484,3.4051,3.1863,1.6411,1.6195,21.0366,26.646,1.7131,1.6981,3.4847,3.4516,7.2981,7.3432,4.8413,5.1161,0.0837,5.3158,2.386,2.7104,0.40229,0.39996,4.8252,5.2966,4.7198,4.6396,2.1559,1.5591,12.5335,11.0348,4.1079,3.6257,5.1061,4.47,5.9276,5.6454,1.7793,1.5806,2.4661,2.3948,4.7109,4.0095,7.125,7.0497,2.2963,2.2327,6.9756,7.5209,12.1539,11.4622,9.3943,8.2014,2.519,2.4884,5.082,4.9652,2.0238,2.0045,21.7015,21.4624,5.5313,6.6016,4.0039,4.2233,1.1528,1.2882,3.0377,2.8842,8.6872,8.6758,15.7273,14.9929,3.5042,3.9967,4.7817,4.7023,3.9768,4.5611,1.8121,1.5799,4.8073,5.2164,13.8605,12.3314,3.0825,3.2195,2.634,2.9316,2.2493,2.3546,13.2796,14.2092,2.4505,2.6625,2.5206,2.7172,14.1323,15.3695,1.9948,2.1958,1.4301,1.435,15.5683,17.4915,5.3963,6.0767,8.5548,9.2554,4.6666,3.7044,11.2573,10.7712,8.049,7.8247,8.8428,7.923,4.2315,4.3936,1.6655,1.6291,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd489,,,M,1.8244,1.8618,0.33936,0.371,0.84375,0.86541,18.1835,2.921,3.2433,52.136,51.6314,15.6745,16.4775,233.9477,236.1107,1.6673,3.2427,3.0246,0.68499,0.74077,17.1028,17.2753,1.7416,1.6234,3.6103,3.471,6.7978,7.0601,4.8324,4.8951,0.07789,5.4903,2.4314,2.7653,0.3788,0.38895,5.0449,6.2693,4.166,4.6529,2.0518,1.8727,10.9138,9.8544,4.1066,3.8466,4.7409,4.3491,6.4748,5.2487,1.697,1.7514,2.0731,1.9631,4.4508,4.1818,8.5667,8.9061,2.4397,2.4964,8.5205,6.8535,13.0245,12.3874,9.2575,9.3182,2.6408,2.8718,7.0872,7.119,2.0737,2.1228,25.3498,24.7661,6.2782,7.1033,4.3394,4.4733,1.0672,1.2007,2.6479,2.7707,9.1711,8.0611,15.1685,15.5126,3.8629,3.8992,5.2554,4.8221,3.7894,3.7346,2.0147,1.8233,4.2545,4.4228,11.5747,12.0571,3.1953,3.6146,2.4554,2.2643,2.3301,2.5855,10.9379,12.6198,3.0105,2.9926,2.3609,2.408,13.3668,14.2938,2.1401,2.4035,1.3198,1.3721,18.3793,15.6758,6.2078,6.1272,9.1853,8.6411,5.1129,3.7987,9.9835,10.6328,9.4883,7.4672,9.4185,9.3224,3.928,4.8917,1.5416,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd490,63,63,F,1.3169,1.6554,0.32915,0.38328,0.76722,0.74775,16.589,2.3948,2.3391,44.8116,45.1092,15.0964,15.7193,203.5476,202.5798,1.2004,3.2954,2.9395,0.37962,0.33279,7.9245,11.6139,1.4726,1.4248,3.1779,3.2548,6.4579,6.7714,4.2579,4.3867,0.07738,3.6723,2.0744,2.426,0.37157,0.36847,3.0348,3.5274,3.8813,4.0966,1.4324,1.3397,8.6472,8.4283,2.79,2.9299,4.0917,4.1893,4.2472,4.3568,1.4466,1.4039,1.7695,1.6037,3.16,2.9418,6.6617,6.6884,1.7564,1.8084,5.6021,4.9142,10.3594,9.8961,7.1017,6.3627,1.8612,2.0723,4.7066,4.6108,1.4825,1.5077,17.2089,16.5498,4.3617,5.2818,3.1269,3.5123,1.2031,1.0798,2.3862,2.3106,6.4539,5.8191,14.4077,11.9602,2.2855,2.6167,3.6186,3.6688,3.0267,2.6527,1.2867,1.3449,3.9221,3.9558,10.3858,9.3746,2.6424,2.7534,2.1409,2.324,2.1324,2.1978,10.5173,11.3986,2.0893,2.2263,1.928,2.1973,11.0072,11.6743,1.9332,1.8179,1.1259,1.2287,14.0155,14.1541,4.8131,4.9835,6.76,8.2508,3.707,2.9443,11.0618,9.2838,7.5898,6.5395,6.5402,6.4733,2.9747,3.6224,1.4467,1.293,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd491,42,42,F,1.148,1.5972,0.4108,0.44415,0.96308,0.98753,21.2508,2.9757,3.0375,48.9778,49.9324,17.7021,18.277,257.664,245.8349,1.2408,3.4471,3.3601,0.58957,0.61776,12.8766,14.1622,1.767,1.7719,3.9922,3.9769,7.9992,8.0449,5.0292,5.3218,0.08168,5.2487,2.359,2.7544,0.42315,0.4197,4.9389,4.8834,4.5119,4.5085,2.1984,1.8709,10.7409,9.3894,3.4268,3.144,4.177,4.4564,5.2557,4.7112,1.931,1.7658,2.0495,2.4049,4.4622,4.4791,7.4238,7.2141,3.6083,2.687,6.5246,7.0398,11.9174,11.49,8.6267,8.2913,2.8399,2.7463,4.2264,4.371,3.0691,2.1509,21.7015,21.1393,5.0577,6.4609,5.6107,4.8288,0.98527,0.9141,2.1777,2.448,11.2819,7.5799,14.54,14.4608,3.1577,3.8486,4.4759,4.1718,3.3535,3.4049,1.7728,1.8448,4.2346,4.6571,11.2934,11.75,3.2428,3.3523,2.3587,2.5062,2.5237,2.8887,9.9542,11.4424,2.332,2.9618,2.1327,2.5102,12.1602,13.9825,2.0739,2.2838,1.3308,1.4734,16.0237,17.2763,6.2855,5.9413,8.554,9.3659,4.1481,3.7773,12.2404,11.6445,8.0468,7.5473,8.2934,8.2145,3.8231,4.2711,1.518,1.7669,,28,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd492,81,81,F,1.7205,2.2666,0.27846,0.30203,0.66068,0.68516,12.4527,2.2485,2.1582,39.9292,41.3138,10.0841,10.4569,166.2224,166.051,1.402,2.8667,2.6601,0.60897,0.85075,13.7106,14.8694,1.2084,1.1916,2.8896,3.1734,5.37,5.4855,3.7611,4.0373,0.07283,3.6364,2.0853,2.4511,0.31619,0.3005,3.222,3.6379,3.5491,3.8616,1.3788,1.2656,8.1283,6.8492,2.5069,2.3553,3.1742,3.468,3.1037,2.897,1.3686,1.4088,1.4857,1.6998,2.8054,2.7766,6.0432,6.184,1.6284,1.4448,5.9336,6.2988,9.1927,9.1264,7.072,6.233,1.8215,1.892,4.0806,3.9006,1.4174,1.3479,16.3607,18.023,4.5545,5.5864,3.0517,3.1934,0.95698,1.0109,2.0981,1.9437,6.2368,5.5572,11.4677,10.8127,2.7967,3.0054,3.4823,3.4578,2.6661,3.0103,1.289,1.1681,3.228,3.5594,8.2793,8.5779,2.3912,2.5634,1.8836,2.0525,1.7651,1.9303,8.3544,9.8218,1.9076,2.0272,1.7939,2.0071,12.356,12.2405,1.4138,0.26866,0.97633,0.7997,11.9052,11.8102,4.408,4.7956,6.2964,6.4444,3.7965,3.5915,9.3038,8.7612,5.8192,5.4674,6.3405,6.3681,2.9562,3.0953,1.1816,1.1573,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd493,42,42,F,1.3067,1.4427,0.33749,0.37091,0.76607,0.72893,15.7677,2.8002,2.7129,44.2266,44.287,13.8539,14.1874,216.9418,211.7263,1.1402,2.7104,2.7936,0.59843,0.50891,10.9448,12.3254,1.5931,1.572,3.0935,2.9394,6.9572,6.9254,4.0983,4.3655,0.07534,4.7154,2.2166,2.3625,0.33326,0.34545,3.5976,3.9172,3.4303,3.4893,1.5324,1.4046,9.0586,7.1824,3.1924,2.9698,3.2381,3.8728,3.924,4.1909,1.6669,1.5238,1.7128,1.6809,3.315,3.1043,7.3887,7.0969,1.7184,1.7798,6.4022,6.2311,11.7899,10.7932,7.5535,7.0594,1.9705,2.2887,4.3231,4.3599,1.4989,1.4828,16.2577,15.3283,5.0661,6.1877,3.5095,3.5866,0.76618,1.0472,2.678,2.4786,7.1452,6.2017,14.6369,13.6412,3.0945,3.7357,3.7753,4.0677,3.0958,3.1391,1.3934,1.4362,3.3562,3.7437,8.3421,9.2995,2.6595,2.8701,2.0607,1.915,1.5783,1.7434,10.1397,11.0569,2.1775,2.3358,1.9056,1.9437,11.9596,11.7937,1.4107,1.7231,0.91742,0.97895,13.4238,12.5765,4.8931,4.7632,7.505,7.9897,4.3263,3.5384,10.4484,10.1939,6.8655,7.0953,8.0762,7.4425,2.8351,3.3844,1.2809,1.3774,,27,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd494,70,70,M,2.3722,2.0275,0.39851,0.43008,0.82585,0.84704,18.8525,3.1376,3.0593,47.2819,47.1271,14.4027,15.1274,204.8771,208.8861,1.9063,3.1805,3.0188,0.88156,0.91392,23.7819,25.4666,1.5525,1.5332,3.6831,3.7361,7.1738,7.3533,4.7321,4.9567,0.08971,5.0502,2.3034,2.7915,0.424,0.42072,4.5861,4.7492,4.578,4.8409,1.7895,1.625,10.414,9.9337,3.6973,3.2695,4.2748,5.1241,5.5844,4.775,1.6126,1.5875,2.2622,2.0629,3.7478,3.9985,8.1498,7.9502,2.0146,2.1027,7.4588,7.5011,12.5933,12.533,8.4069,7.4898,2.3463,2.4574,5.1107,5.1549,1.7927,1.8622,20.6739,22.5254,5.6039,5.9325,3.7024,3.9386,1.1161,1.0984,2.6776,2.3228,8.4927,6.871,16.0082,13.8627,3.6274,3.8992,4.5026,4.6383,4.0185,3.4322,1.8522,1.5328,4.0692,4.6291,11.258,11.3572,3.0673,3.1607,2.634,2.7462,2.2163,2.5327,10.8847,12.3441,2.3726,2.5491,2.3842,2.575,14.1133,13.344,1.8612,2.0504,1.3131,1.3784,14.0106,14.4107,5.3963,4.9523,8.3045,9.3025,4.5952,4.1756,11.4824,11.6813,6.5711,6.3939,7.8127,7.8928,4.2226,4.1146,1.5167,1.6912,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd495,76,76,F,2.1657,2.3713,0.2753,0.33274,0.66068,0.70803,15.6667,2.5395,2.2478,45.1767,46.0575,12.1718,12.9864,186.1888,194.9133,2.2209,2.9906,2.8438,0.99284,0.9762,25.644,28.677,1.5018,1.4829,2.9175,3.0835,6.4671,6.7086,4.2401,4.3401,0.0769,4.3864,2.2165,2.6199,0.36765,0.34224,4.6707,4.6941,4.2416,4.1686,1.6715,1.3311,10.0514,8.549,3.0485,2.6204,3.9394,3.6323,3.7929,3.4301,1.2883,1.4147,1.8374,1.9841,3.7591,3.5683,6.7149,6.7283,1.9459,1.7495,5.9901,6.2781,10.8467,9.5404,6.6954,6.6889,2.0889,2.2053,4.0914,4.0206,1.7212,1.8075,16.3896,16.2445,5.347,5.5959,3.5397,3.4544,0.98894,0.8659,2.4028,2.346,7.5088,7.1258,13.5638,11.9987,2.649,2.5224,3.8353,3.7471,3.3441,3.2658,1.5482,1.506,3.8961,4.3659,10.2237,10.1246,2.5347,2.559,2.3157,2.5971,1.8993,2.1631,8.8352,9.5492,1.9772,2.3301,1.9234,2.2002,9.6738,10.2525,1.6188,1.8485,1.0816,1.1654,14.6543,14.0051,5.1466,4.9853,7.7449,8.428,3.2599,2.9617,9.6159,9.841,6.5102,6.7777,6.8489,6.2131,3.7177,3.5572,1.2537,1.3832,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd496,87,87,F,1.772,2.2666,0.24275,0.27429,0.18236,0.50656,14.5561,2.3371,2.4308,37.3972,31.6077,13.5025,13.2666,169.9447,162.6556,2.2694,2.4134,2.0491,1.0796,1.5123,24.0659,26.8485,1.1776,1.1748,2.903,3.1797,5.4358,5.6857,3.6257,3.6547,0.079,4.7314,2.1841,1.9847,0.31367,0.2706,3.374,3.7447,2.9892,3.2009,1.5399,1.5195,8.3049,7.6089,3.1609,2.4466,3.0001,3.1499,4.4217,3.9218,0.93517,0.39954,1.5684,1.4795,2.522,2.9676,5.5942,5.323,1.6709,1.6831,5.7367,4.903,8.6314,8.542,7.3677,6.7321,1.8762,2.2386,3.6459,3.8523,1.4448,1.4944,15.6573,14.3917,4.95,4.7936,3.2401,3.8074,1.2187,0.9521,2.587,2.5682,6.2177,5.9198,10.0426,11.6557,2.2898,2.3928,4.0735,4.2322,2.8089,2.5532,1.2038,1.4125,3.3295,3.7434,9.0214,9.0072,2.4985,2.4191,1.6208,1.7311,1.4645,1.8012,10.4444,11.0569,2.0404,2.3903,1.6139,1.9267,11.9639,11.0321,1.3264,1.4383,1.1354,1.1874,13.8663,12.8537,4.5279,4.5958,6.8164,7.3055,3.1742,2.7703,8.6452,10.3875,5.0713,6.0437,5.3235,5.1306,2.8756,3.4748,1.2066,0.31108,,9,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd497,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd498,78,78,F,2.1015,1.9177,0.35875,0.41651,0.88037,0.90626,18.3676,3.1815,3.0003,49.1293,49.98,14.2442,15.2252,196.2657,196.7427,1.9063,3.4118,3.1706,0.70585,0.67293,13.6796,16.3416,1.6551,1.668,4.562,4.806,6.6072,6.5537,4.7557,4.9747,0.08648,5.0567,2.285,2.6358,0.41955,0.3954,4.4839,4.8014,3.9129,4.0606,1.8782,1.5592,9.7225,9.359,2.7035,2.3553,4.3834,4.2224,4.6672,4.8912,1.8249,1.7886,2.0688,2.0577,3.8345,3.6773,8.2534,7.6282,2.3691,2.2985,7.3873,6.8765,13.0247,12.3832,7.9634,7.1441,2.3956,2.5075,4.7958,4.9493,1.9933,2.0756,21.1619,19.8562,5.7094,7.1033,4.2036,4.3548,1.0456,1.0763,2.4162,2.756,8.4067,7.4276,16.6489,13.8627,2.8751,3.7368,4.5378,4.3266,3.5302,3.6869,1.7098,1.554,4.2029,4.453,10.9832,10.3925,2.921,3.1626,2.2603,2.3784,2.5655,2.7218,9.9349,11.0923,2.573,2.6743,1.9335,2.2297,12.707,13.6688,2.2101,2.2445,1.3989,1.3751,15.0282,15.6987,6.1697,5.811,8.2654,9.1577,4.1481,3.8769,10.6186,11.3401,8.7417,7.4974,8.9099,8.2614,4.1771,3.787,1.4725,1.7011,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd499,,,M,2.156,1.8484,0.40339,0.43782,0.81764,0.8298,18.1318,3.2379,2.8943,44.4048,44.55,13.8958,14.2091,222.5464,214.9522,1.7409,3.2033,3.1642,0.93131,0.80271,19.6921,20.8007,1.5508,1.523,3.5342,3.5591,6.389,6.6236,4.5649,4.6879,0.08345,4.6685,2.1492,2.8959,0.37217,0.37195,3.9011,4.707,3.7816,4.1655,1.7616,1.5479,8.8027,8.6328,2.9866,3.0912,3.8208,4.2067,4.4619,4.5886,1.6126,1.5372,1.9335,1.8215,3.4554,3.1651,7.5457,7.111,1.9123,1.9008,6.497,6.3408,11.1879,10.8876,7.3675,6.9152,2.1655,2.2879,4.698,4.7275,1.5996,1.714,16.9497,17.1771,4.6664,5.2485,3.6601,4.0818,0.91562,0.82726,2.3532,2.3054,7.5962,6.6826,13.8398,13.3089,3.0193,2.9863,4.2119,3.9337,4.0185,3.2415,1.4896,1.3862,4.0842,4.6213,10.0554,10.1525,2.8414,3.0748,2.2838,2.3392,2.2879,2.3419,9.9204,11.2932,2.3369,2.3591,2.1426,2.295,11.8972,14.364,1.8109,1.9593,1.1433,1.2447,13.7849,13.0626,5.3208,5.0563,7.9455,8.9968,4.0972,3.5745,10.3195,10.1367,7.7471,7.301,7.3982,7.1894,3.3464,3.5497,1.5318,1.7354,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd500,70,70,M,1.0263,1.685,0.39689,0.43745,0.97755,0.94374,17.2523,2.9065,2.9926,44.6183,44.7677,13.6021,13.6165,204.7483,208.7993,1.1203,3.3797,3.3145,0.62167,0.40354,12.6832,20.0874,1.314,1.5596,3.9127,3.8441,6.7055,6.8109,4.4848,4.7031,0.07566,4.5196,2.1521,2.4679,0.40429,0.41275,4.2709,4.8432,4.3388,4.7001,1.8884,1.5216,10.3218,10.3806,4.1066,3.9468,3.9169,4.1096,5.2677,5.3907,1.9135,1.8062,2.1498,2.2851,4.015,3.6952,7.8783,7.2396,2.1663,2.2954,7.3727,6.6759,12.5177,11.891,9.125,8.3309,2.4457,2.5384,4.0828,4.9383,1.9441,1.8628,18.6458,18.181,5.9367,6.5377,3.9951,4.1393,1.0051,1.3173,2.4824,2.7925,8.371,7.0512,15.5635,15.3204,3.2264,4.0377,4.8417,5.1498,3.7049,3.5506,1.5784,1.6753,4.2545,4.8171,11.966,11.4018,3.1747,3.3523,2.5101,2.519,2.4199,2.498,11.4609,13.853,2.703,2.7005,2.0373,2.6651,13.1105,14.7662,2.0604,2.2938,1.1812,1.1728,15.3386,13.9844,6.2218,5.9413,9.3803,10.4137,4.2942,3.287,10.7216,11.3682,7.9936,8.3879,8.8428,8.2014,3.4307,4.2711,1.3905,1.699,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd501,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd502,62,62,M,1.449,2.0832,0.45089,0.45716,0.94615,0.94616,19.3177,3.5623,3.1856,50.7498,50.4786,16.1704,15.9533,236.4197,235.0903,2.0648,3.6412,3.4656,0.66404,0.58997,32.0154,35.2975,1.6519,1.5566,3.6831,3.844,7.6923,7.8413,4.9713,5.0355,0.07859,4.9781,2.4731,2.8837,0.38702,0.37884,4.4445,4.9207,3.7839,3.8757,1.8691,1.7273,12.5747,10.8554,2.4207,2.8329,3.9002,3.8315,3.8567,4.0817,1.9036,1.9168,1.9582,1.874,3.8015,3.3434,8.289,7.7758,2.1171,2.2761,6.6099,6.3132,13.5076,12.9958,7.8756,7.0559,2.2496,2.4569,5.2704,5.5882,1.8855,2.0486,20.0056,22.332,5.3797,6.7797,4.0427,4.297,1.0121,1.1174,2.7904,2.7044,8.8146,8.1976,18.097,16.1211,2.8358,3.2542,4.4497,4.2021,3.4796,3.79,1.3382,1.4844,4.1452,4.675,10.2587,10.6738,3.1033,3.4414,2.1584,2.146,2.2846,2.4531,12.8035,12.1016,2.1409,2.7755,1.9962,2.341,14.1323,13.5612,1.9978,1.8785,1.278,1.318,16.1404,15.1834,5.5127,5.7834,8.4487,10.2393,3.8131,2.9982,10.4968,10.7687,8.4316,8.7619,8.4958,8.3006,3.1968,3.9146,1.2894,1.4851,,27,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd503,83,83,F,1.8493,1.9879,0.29262,0.29365,0.67461,0.68323,15.8248,2.3884,2.3038,42.5346,40.841,12.5059,13.1971,186.1888,187.3303,2.0012,2.7915,2.4984,0.80942,0.83269,24.2377,24.6515,1.5892,1.3961,3.056,2.8936,5.8626,5.8612,4.0983,4.3385,0.07515,4.5791,1.9767,2.3166,0.31619,0.31773,3.6388,3.7673,3.0838,3.3041,1.4892,1.1709,7.9338,7.8604,2.739,2.377,3.3255,3.4878,4.2373,3.6445,1.2911,1.3117,1.6913,1.707,3.2655,2.6735,6.6455,6.0968,1.8505,1.7793,5.1454,5.2755,10.4915,10.5122,7.1372,6.1704,2.0669,2.0197,4.7066,4.6193,1.4358,1.4152,16.7875,16.0011,4.3234,5.1368,3.3972,3.3457,0.97928,1.0543,2.2139,2.3548,6.5869,5.9385,11.7179,12.4296,2.2572,2.7125,3.6166,3.5683,2.8824,2.8929,1.2752,1.4357,3.3773,3.8719,8.6133,9.4057,2.5317,2.4612,2.1367,1.9278,1.8895,1.9609,9.2137,11.177,2.3006,2.14,1.8506,2.043,11.0944,11.5259,1.5565,1.6999,1.1354,1.1358,13.2609,12.7683,4.5203,4.5392,7.0421,8.3502,3.6213,2.772,8.8864,9.233,6.3734,6.4179,6.2694,6.3148,3.2024,3.3509,1.1985,1.3481,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd504,78,78,M,2.2182,1.6965,0.32095,0.30698,0.77299,0.74054,18.924,2.3931,2.3042,49.6817,47.6329,15.384,15.0071,225.6701,212.4724,1.6649,3.2673,2.9249,0.62177,0.5124,13.3926,15.3171,1.5413,1.5516,3.2527,2.8915,6.2583,6.4279,4.5176,4.8226,0.07937,4.9061,2.452,2.6963,0.35437,0.35074,4.0376,4.2297,3.9571,4.3225,1.6198,1.4608,9.7966,8.5753,3.3619,3.2162,4.1002,4.2457,4.2111,4.0704,1.6669,1.5808,2.2071,1.9523,3.6502,3.4296,7.2811,7.177,1.9583,1.9731,6.2743,6.3769,11.1006,10.4273,7.6127,7.2232,2.1151,2.4098,5.0588,4.9897,1.5463,1.5716,17.1404,18.3061,5.4778,6.0522,4.0133,3.5985,0.97523,1.0543,2.5773,2.4243,7.5173,6.585,14.0727,12.9678,2.4353,3.2169,4.0096,3.9476,3.4657,3.2757,1.4842,1.5883,3.7291,4.0705,9.7114,9.8741,2.8432,3.1626,2.0946,2.1171,2.1988,2.5104,9.5072,11.1918,2.3405,2.3887,2.004,2.249,12.6621,12.3791,1.7546,1.9192,0.98644,1.0239,15.2248,13.8296,5.6312,5.3632,7.0035,7.9466,3.6085,3.4955,8.7703,9.9311,7.0764,7.3722,7.8795,7.2301,3.5809,3.3805,1.3872,1.7699,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd505,82,82,F,1.8493,1.6123,0.31181,0.3308,0.67783,0.65911,16.4883,2.6126,2.5949,44.7662,44.7038,13.3684,13.5793,203.3559,194.6723,1.8472,2.6387,2.4391,0.87142,0.70622,20.9274,20.6963,1.4017,1.5236,3.1248,3.3227,6.1396,6.4332,4.1144,4.2449,0.06534,4.7614,2.1871,2.6402,0.30157,0.32294,3.7014,4.0549,3.6817,3.7666,1.4111,1.4318,8.749,8.5795,3.549,3.7261,3.611,3.7729,4.6025,4.47,1.4105,1.3803,1.7688,1.7282,3.1741,3.0175,6.3436,6.0799,1.8574,1.9966,6.1605,5.5242,9.5817,9.4931,8.0408,7.4786,1.8268,2.1182,4.1511,4.1875,1.603,1.5429,18.6572,17.1431,4.2855,5.9041,3.1417,3.7363,1.1493,1.1569,2.5856,2.5166,6.8223,6.0788,12.312,11.0624,3.0377,3.3791,3.9008,3.7316,3.0486,2.9593,1.2926,1.2927,3.6401,3.9007,10.0427,9.6318,2.5703,2.9875,2.0511,1.9411,1.8613,1.9084,9.4862,11.4371,1.8475,2.108,1.8414,2.0385,12.8154,12.1054,1.662,1.6453,1.1198,1.1368,12.8457,14.0655,5.2668,4.7741,7.8555,8.3436,4.6318,3.1517,10.2398,9.7327,6.1703,6.0375,6.9448,6.3351,2.9813,3.2268,1.1985,1.2918,,,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd506,67,67,M,1.7716,2.9737,0.32367,0.37309,0.7993,0.84055,15.5866,2.408,2.5176,44.7024,44.4994,12.8512,12.6969,187.5946,194.9133,2.1695,2.9478,2.7514,0.96452,0.86925,22.7909,27.473,1.5107,1.4856,3.2359,3.4071,6.4129,6.8349,4.0537,4.3835,0.06774,4.2701,2.0369,2.4456,0.33867,0.34344,3.8072,4.1335,3.5798,3.8894,1.5789,1.4318,8.84,7.6577,2.9201,2.9113,3.6133,3.949,4.3518,4.0173,1.555,1.4481,1.7386,1.6528,3.2779,3.0773,6.6202,6.7736,1.8429,1.8172,6.1465,5.6992,10.6705,9.777,7.5987,7.2067,2.0189,2.126,4.3939,4.7366,1.6863,1.6404,17.7966,15.9371,4.6874,5.2847,3.3523,3.5541,1.0474,1.1154,2.3142,2.393,6.6975,5.7379,12.1727,11.4618,2.916,3.0433,4.1711,4.2322,2.8706,2.8152,1.3722,1.4457,3.3776,3.9719,8.9288,9.1132,2.5703,2.9921,2.0759,2.324,2.0579,2.094,10.1397,11.1038,2.1348,2.164,1.8749,2.1321,10.3294,11.5403,1.8383,1.7524,1.0378,1.0199,14.5163,14.416,4.6988,5.0772,7.1729,8.448,3.8853,3.3175,8.9161,9.233,6.0187,6.7777,6.2058,6.051,3.0846,3.7653,1.4227,1.4272,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd507,,,F,1.098,1.9214,0.38436,0.35894,0.74951,0.7322,17.5238,3.1106,2.7854,48.0936,47.977,14.3963,15.3281,203.0384,197.9945,1.1536,3.0437,2.783,0.42811,0.41167,10.2608,10.2369,1.4087,1.4019,3.6797,3.643,6.3787,6.712,4.1359,4.3168,0.08,4.4861,2.036,2.8725,0.34747,0.35794,3.6412,3.948,3.7142,3.9462,1.8686,1.5874,9.5238,7.3997,2.7563,2.614,3.3712,3.7078,4.3337,3.9864,1.4147,1.4044,1.7333,1.7251,3.579,3.252,6.7401,6.8975,2.0385,2.1146,6.4408,6.0095,10.4929,10.32,7.3228,6.7154,2.2001,2.3723,4.1599,4.2832,1.7637,1.7715,16.2943,16.929,5.2024,6.0892,3.8847,4.1009,1.0201,1.0018,2.8046,2.4824,6.6446,6.171,12.9806,13.1579,3.0193,3.1802,3.9188,3.9682,3.2949,3.1188,1.5709,1.3905,3.5177,3.8426,8.9542,9.3937,2.578,2.826,1.9765,2.0921,2.3646,2.5998,10.5362,11.2567,2.2353,2.4615,1.8343,2.0694,11.8972,12.7485,1.9433,2.1403,0.97024,1.0201,13.9606,13.6172,4.8931,5.2493,7.5726,8.3409,4.2762,3.3969,9.6935,9.4147,7.1765,7.2637,7.5046,6.9893,3.3861,3.4384,1.369,1.5247,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd508,73,73,M,1.9515,2.1503,0.4137,0.47384,0.94335,0.85018,19.8097,3.3624,3.3039,46.4131,48.2509,15.7383,15.5489,271.7577,268.7903,1.8952,3.5553,3.2985,0.6202,0.57533,15.1081,18.833,1.9924,1.9322,4.1649,4.4826,7.4638,7.5241,4.898,5.1787,0.09281,5.2801,2.2732,2.9146,0.42318,0.44588,4.3234,5.052,5.378,4.7795,1.993,1.9169,9.3221,8.6029,3.4724,3.5156,4.2161,4.4271,5.0469,5.0647,1.827,1.9168,2.0886,1.9878,4.0094,3.9438,8.2799,7.714,2.2274,2.281,7.6351,7.418,13.6542,14.1385,8.4069,7.8139,2.4049,2.8718,4.8032,5.1753,1.9441,1.9712,19.4148,18.6366,5.5033,5.9604,4.4372,4.4134,1.1214,1.0833,2.6201,2.3924,8.5188,7.5516,16.1292,17.6266,3.2782,3.7749,4.4761,4.6383,3.9785,3.7346,1.4682,1.7248,3.9078,4.4385,11.392,10.8082,3.2833,3.3589,2.5812,2.5067,2.6699,2.4931,10.9818,10.6017,2.7195,2.754,2.2957,2.5133,13.703,13.0428,2.1302,2.0213,1.2925,1.3596,14.9386,14.8102,6.0849,6.0104,8.22,7.9048,4.4244,3.5157,10.6321,11.1606,8.1598,8.349,9.4681,9.4607,3.3051,3.8429,1.7496,1.7926,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd509,68,68,F,1.0668,1.8813,0.37667,0.42053,0.77349,0.74775,16.6075,2.8302,2.7139,41.4415,41.3507,13.1238,13.553,182.6154,180.5895,0.97752,3.131,2.8797,0.62914,0.41764,8.3533,9.1725,1.4021,1.4245,3.3727,3.2494,6.2917,6.0018,4.1216,4.3251,0.07442,4.4069,1.8955,2.0572,0.36866,0.37297,3.6238,4.0531,4.174,4.2191,1.7272,1.5665,9.655,7.8224,2.7482,2.6576,3.2401,3.7729,4.1411,4.021,1.4466,1.3872,1.9982,1.8123,3.2989,3.0274,7.2795,6.7408,2.0107,2.0545,5.7922,6.0717,10.83,10.4886,7.1455,6.423,2.205,2.3027,4.4437,4.6175,1.7361,1.7607,16.1406,17.148,4.9023,5.5959,3.7152,4.0287,1.1739,1.101,2.5934,2.4851,6.9133,6.1415,13.2712,12.5524,2.2855,2.9334,3.7528,4.0016,3.8079,3.6936,1.5513,1.4934,3.8419,4.0773,9.763,9.7817,2.9597,2.9739,2.3783,2.156,1.7073,2.003,10.4444,11.6036,2.3214,2.5033,2.126,2.2512,11.9271,11.9453,1.5819,1.6495,1.0058,1.0551,13.8315,13.237,4.5919,4.5162,7.5726,7.4442,3.6085,2.9212,9.4464,9.8113,6.1503,6.2275,7.2488,7.7727,3.3464,3.8057,1.3538,1.4211,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd510,,,M,1.7635,2.3056,0.49537,0.53321,1.1379,1.1046,22.1157,4.2284,3.7946,56.0955,56.8183,20.511,20.1605,334.9526,277.4785,3.0552,4.58,4.0127,0.85339,0.84311,34.3032,32.1618,1.828,1.7825,4.2474,4.2688,7.9044,7.709,5.4829,5.5975,0.10009,5.5966,2.6203,3.2649,0.42389,0.4242,5.4144,5.8186,4.4356,4.7641,2.178,1.8727,12.444,11.7363,3.7988,3.8477,5.3782,4.7189,6.0809,6.1359,1.9954,1.9445,2.1829,2.0581,4.3053,4.5852,9.3536,8.5002,2.3144,2.4791,8.6467,7.8584,15.13,13.5711,9.1568,8.4713,2.4956,2.5785,5.1521,5.1103,2.196,2.2302,21.2925,21.8987,6.3417,7.2066,4.3291,4.6312,1.2839,1.206,3.2179,3.0629,11.2819,9.517,16.9531,17.155,3.8629,4.7167,5.2637,5.3973,4.1233,3.4357,1.8664,1.681,4.9457,5.6503,14.9955,13.7199,3.3322,3.9265,2.5205,2.5789,2.6939,2.993,13.6552,13.853,3.0954,3.2494,2.3986,2.7196,13.5045,14.0994,2.2913,2.0328,1.3198,1.3644,17.0532,17.4002,6.5321,6.754,9.1233,11.8785,4.9509,3.4951,11.9661,15.6076,8.5808,9.1999,8.9331,8.4243,4.1276,4.2387,1.9364,1.6798,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd511,71,71,F,0.89572,1.8248,0.33877,0.376,0.68493,0.60891,13.6372,2.5314,2.5269,31.4445,26.922,9.9619,2.9582,167.8266,161.0911,0.7582,2.6387,2.4759,0.88682,0.75845,16.5462,17.7824,1.2156,1.1355,3.6935,3.7001,5.6649,6.0388,3.6997,3.79,0.05802,4.4285,1.7419,1.847,0.34178,0.34819,4.2008,4.228,4.0205,4.1024,1.6345,1.4061,9.4724,8.5942,2.4333,2.4959,3.4373,3.7889,3.9689,4.2687,1.2883,1.1912,1.7569,1.6895,3.6528,3.2291,6.5553,6.3928,1.8545,1.8321,5.8883,5.8721,9.9723,9.7291,6.263,5.6824,2.0994,2.1359,4.7904,5.0431,1.6169,1.6054,15.0889,17.1615,5.1387,5.7567,3.4381,3.6157,1.1153,1.1718,2.52,2.5797,7.1152,6.4163,12.731,12.4403,2.3112,3.2254,3.2939,3.3534,3.1755,2.7968,1.4007,1.4323,3.8139,3.7825,9.4965,9.2696,2.4883,2.7562,2.2975,2.1665,2.0489,2.1774,8.9115,10.0153,2.3006,2.3786,2.0228,2.295,9.7976,9.7869,1.9332,1.7911,1.1721,1.3157,14.878,14.5441,5.4504,5.3982,7.3483,7.9461,3.6249,2.9731,9.7767,8.7603,6.9612,6.79,7.0344,6.2351,3.198,3.4622,1.4499,1.2157,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd512,71,71,M,1.746,1.9789,0.44771,0.51409,0.91497,0.89123,21.694,3.273,3.2469,55.3105,61.1428,16.0141,16.4425,219.8286,221.6688,2.9477,3.3499,3.3489,0.70585,0.60686,36.3593,36.4767,1.5748,1.5725,3.6831,3.8632,6.7401,7.1811,4.8613,5.0581,0.09689,5.5523,3.0338,3.0924,0.41032,0.44292,5.4144,5.8186,4.7665,4.7795,2.076,1.6984,12.444,11.2047,3.3355,2.9745,4.8673,4.5637,4.7458,4.7009,1.7793,1.6946,2.5755,2.3856,3.9677,3.6493,8.4729,7.7808,2.1408,2.2066,7.7853,7.418,13.6542,12.7368,8.7273,7.6818,2.5203,2.7886,6.1242,7.4817,1.9892,2.1063,21.455,19.6175,6.0666,6.4883,4.0791,4.1871,1.435,2.0477,3.3604,2.8764,8.3169,7.2562,18.5499,14.581,3.7836,4.0731,5.0129,4.8921,3.7286,3.353,1.7193,1.7352,6.1239,5.4284,12.6315,12.5599,2.9699,3.3939,2.9142,2.5239,2.4748,2.6442,12.7685,14.1955,2.6093,2.7361,2.5514,2.7172,13.9407,15.2456,2.0988,2.3907,1.2279,1.3219,15.6293,15.8389,8.6997,6.2148,9.1267,9.2554,4.6666,3.8774,10.9431,10.7754,7.5991,8.0023,9.5512,9.4243,3.5375,4.372,1.737,1.9738,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd513,,,F,1.5895,1.597,0.33048,0.31414,0.86099,0.71512,15.3855,2.7565,2.3142,38.8014,39.0627,11.3847,12.0243,160.604,154.0648,1.7563,3.3497,3.0792,0.75266,1.161,17.4759,21.0381,1.1776,1.1974,3.1613,3.2175,5.4358,5.3712,3.4773,3.8337,0.08637,3.905,1.7441,2.2459,0.36996,0.33822,3.5452,4.1208,3.6452,3.6634,1.5678,1.3481,8.84,7.3052,2.7977,2.8439,3.3172,3.7782,3.9576,4.3597,1.6748,1.3681,1.8298,1.6528,3.1985,3.1139,6.6917,6.6103,1.7976,1.8084,5.5449,5.3117,10.126,9.9019,6.071,6.4066,2.1097,2.1712,3.9778,3.9422,1.4698,1.4695,15.6108,15.039,4.0341,5.4096,3.3117,3.4254,0.90939,0.93562,2.3765,1.979,6.4158,5.7266,13.7425,13.505,2.3938,2.2135,3.8105,3.789,3.5969,3.2757,1.3571,1.4634,3.4679,3.7223,8.9288,9.3891,2.9145,3.0096,2.0759,2.0874,1.6116,1.8836,10.5834,11.7943,2.2645,2.2111,1.7963,2.0569,11.5372,11.27,1.4755,1.486,1.1259,1.188,12.5704,12.1091,4.5457,4.7939,8.1414,7.965,3.785,3.0463,8.6452,9.024,6.656,7.0953,7.2523,6.4223,3.834,3.62,1.2267,1.2987,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd514,66,66,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd515,72,72,M,1.1722,1.4343,0.46576,0.50415,0.91315,0.86931,22.1811,3.7532,3.5314,52.467,51.8798,16.5514,17.1,263.77,262.7257,1.2612,3.6406,3.2963,0.58957,0.54996,12.8766,14.6384,1.8651,1.8589,4.409,4.47,7.9724,8.1564,5.459,5.7002,0.07254,5.2162,2.3581,2.9334,0.38887,0.38515,5.2958,6.5349,4.8816,5.24,2.2207,1.8727,11.7868,10.1609,3.0736,2.7352,4.8738,5.229,4.7934,3.8266,1.8665,1.8342,2.4494,2.6153,5.8776,4.4307,8.5667,8.5935,2.3395,2.238,6.6592,6.9187,13.4129,13.5711,8.4769,7.7312,2.8399,2.8999,5.6031,5.7163,2.196,2.2307,22.3671,20.2197,5.5313,6.6154,4.7054,4.7475,1.1047,1.3617,2.711,2.8102,10.1498,8.5151,17.1001,17.4934,2.9491,3.5934,4.5297,4.8401,4.8534,4.7752,2.0054,1.7511,4.5952,6.5954,12.5485,12.5599,3.2135,3.3253,3.2245,3.0549,2.9821,2.6669,10.9437,12.7861,2.8364,2.8316,2.5679,2.7415,12.4988,12.7629,2.25,2.0881,1.3605,1.3112,15.4497,15.4939,5.8192,5.6403,9.1853,9.0909,4.013,3.1777,10.9754,10.7712,9.0071,7.5284,8.9099,8.2868,4.1855,4.6504,1.8975,1.8423,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd516,64,64,F,1.3555,2.2589,0.39757,0.41591,0.83627,0.8502,15.5901,3.2654,3.0305,27.9343,26.922,11.3847,12.2296,182.6154,175.5307,1.6407,3.268,3.1144,1.0228,1.7229,24.6727,31.6678,1.3905,1.3888,3.3584,3.4984,6.1974,6.4419,3.9635,4.2019,0.0592,4.4285,2.0653,2.0377,0.35331,0.36107,3.525,4.0625,3.8771,3.9716,1.4162,1.2674,8.3732,7.7611,3.5365,3.3726,3.56,3.949,4.6025,4.7757,1.5823,1.6513,1.7721,1.8184,3.2779,3.0987,6.6275,7.1118,1.7615,1.8049,6.2446,5.5182,10.4005,10.3088,7.9421,6.8163,1.9313,1.9361,4.1951,4.3599,1.5732,1.4705,17.5442,16.4845,4.978,5.5142,3.1249,3.3962,1.2107,1.0559,2.687,2.5173,7.7453,6.3289,13.8189,12.3447,3.0135,2.9587,3.7771,3.5685,2.8518,2.7807,1.2918,1.097,3.5726,3.9026,10.3976,9.8551,2.8132,2.9473,2.0792,2.1286,1.9658,2.1503,9.6469,11.4362,2.1067,2.1833,1.9834,2.1959,10.9428,10.9786,1.8172,1.8446,1.0845,1.1685,12.3468,13.0649,4.8756,4.6149,6.5489,7.0387,4.7014,3.6985,10.5438,9.8716,6.5968,7.1043,6.9804,6.8696,2.4577,3.2565,1.2488,1.2297,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd517,78,78,M,1.7918,2.0487,0.41967,0.43145,0.91497,0.90002,20.5349,3.3624,3.127,47.6832,48.7685,16.8646,17.0418,255.4177,245.8349,2.0278,3.684,3.6464,0.70921,0.687,27.6324,35.4198,1.9706,2.0654,3.4847,3.7316,7.6238,7.9181,5.3058,5.7002,0.10334,4.8064,2.3699,2.5363,0.42318,0.4242,4.2614,4.8432,4.2613,4.3726,1.8675,1.6807,9.9833,9.5107,3.6497,3.5156,3.9169,4.6146,5.0981,4.3323,1.6968,1.8031,2.1221,2.2077,3.6851,3.6728,7.4427,7.4849,2.1389,2.3391,7.3665,7.4654,11.9225,12.0957,9.1059,7.7076,2.6095,2.6388,4.3397,4.0685,1.9892,1.9798,17.8055,19.9508,5.9148,6.459,4.373,4.7389,1.1714,1.3387,2.6736,2.8102,8.3765,7.0379,15.0358,14.356,3.5247,3.7212,4.5189,4.4682,3.0687,3.8125,1.8682,1.774,4.5414,4.9801,11.2362,10.8883,3.1184,3.3571,2.5376,2.6703,2.4349,2.2933,10.541,12.9365,2.7574,2.8073,2.3492,2.5286,13.1141,12.6387,1.9339,1.8458,1.1758,1.2251,14.4163,14.2564,5.3727,5.5218,8.2785,9.4144,4.6761,3.4209,9.6993,11.5286,7.7577,7.801,8.5756,8.4413,3.6312,3.8459,1.4654,1.8601,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd518,63,63,F,1.7016,1.8055,0.34365,0.34417,0.79656,0.76239,19.5657,2.6329,2.5642,49.7075,50.411,16.3949,16.3434,213.239,203.7548,1.4226,3.1135,2.8797,0.55127,0.65681,13.7106,15.693,1.4871,1.567,3.4955,3.6017,6.1423,6.6092,4.5013,4.6521,0.07879,4.8838,2.6122,2.8787,0.33893,0.35595,3.9597,4.3224,3.5284,3.7658,1.5737,1.3397,10.0486,8.3938,2.9883,2.8776,4.1002,4.0155,4.0791,4.3683,1.5457,1.53,1.6922,1.7867,3.3473,3.3071,7.1123,6.9626,1.7493,1.8207,6.0687,6.031,10.6808,10.751,7.5401,7.1467,2.062,2.3733,4.6062,4.626,1.4812,1.6862,17.2089,18.0381,4.4501,5.7645,3.2182,3.3068,0.90211,1.0543,2.486,2.3249,6.8009,5.9052,13.7507,12.9016,3.2711,3.1802,3.9979,4.4898,2.7727,2.9791,1.2794,1.6324,3.4772,4.066,8.9542,9.6546,2.7849,2.9231,2.2668,2.1061,2.161,2.4094,10.3066,11.8226,2.1348,2.5164,1.9542,2.2474,12.5547,12.271,1.8503,2.0925,1.1865,1.1464,12.6543,11.6763,6.0736,5.9421,8.2656,9.2047,4.2164,3.6198,9.0243,9.0897,6.8175,7.3101,7.0754,6.9268,2.6007,3.639,1.3845,1.638,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd519,63,63,F,1.1082,1.4588,0.40807,0.44492,0.90623,0.89213,18.4322,2.9065,2.8569,47.8697,47.8952,15.2445,15.9417,260.0396,252.4717,1.1862,3.6414,3.2963,0.67066,0.46197,11.3418,10.7903,1.703,1.6986,4.2337,4.6387,7.6391,7.8912,4.8435,5.031,0.07254,4.7338,2.2473,2.693,0.38576,0.39248,4.0018,4.431,3.6146,3.6477,1.6031,1.4319,9.1016,8.4172,2.8932,2.883,3.4588,3.5507,4.4789,4.2788,1.7069,1.6595,1.9211,1.7992,2.9622,3.1008,7.0986,6.8061,2.0352,2.0042,5.5253,6.2,10.7234,10.8721,7.659,7.2232,2.1092,2.2228,4.5969,4.8029,1.6016,1.6915,18.981,19.457,4.2927,5.8687,3.6406,3.717,0.88375,0.82726,2.364,2.3125,7.5173,6.256,13.6863,12.9016,2.5782,3.198,3.9066,4.1242,3.0912,3.0305,1.5482,1.4362,3.5588,3.8112,9.1766,9.8795,2.6761,2.8523,2.2158,2.2243,2.0239,2.1129,9.4862,10.3553,2.4704,2.3256,1.8859,2.1321,11.0717,12.0597,1.6388,1.7462,1.0894,1.0558,14.2123,14.4115,5.1681,4.608,7.2978,8.8088,3.9274,3.6472,10.3349,10.3302,7.0951,7.3352,7.785,7.3164,3.4643,3.5052,1.3985,1.4172,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd520,72,72,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd521,74,74,M,2.6836,3.3151,0.38885,0.42061,0.91712,0.94757,16.0602,2.9475,2.7411,45.7527,46.1531,13.1032,14.1874,217.6717,216.9257,2.486,3.6047,3.3065,1.1632,1.1149,33.5477,27.6636,1.6181,1.5295,3.5342,3.8415,6.0941,6.5556,4.2646,4.4778,0.09045,4.9098,2.4587,2.52,0.42028,0.4264,4.497,4.9042,4.2613,4.5286,1.6826,1.6054,9.4133,9.7383,3.2626,2.8124,4.1787,4.2174,4.9765,4.8578,1.8943,1.8532,1.8763,1.8671,3.6097,3.4204,8.0655,7.7014,1.8661,1.9303,7.2177,6.6334,12.5056,12.6202,8.8272,7.4859,2.0486,2.2966,4.8944,5.164,1.5698,1.5775,17.022,17.8445,5.3361,5.3035,3.6869,4.0173,1.0222,1.0588,2.7448,2.8104,7.5088,6.7189,15.3481,14.521,2.7636,3.688,4.5209,4.6446,3.4272,3.2757,1.4842,1.3639,4.0996,4.6604,10.5945,10.6224,3.3322,3.2771,2.4688,2.6283,2.2163,2.6226,11.1063,12.1081,2.2645,2.3132,2.2592,2.4753,10.9428,11.5078,1.8163,2.1613,1.2351,1.2723,14.1774,13.8474,5.2361,5.09,8.1119,9.5053,4.0133,3.3599,9.6917,9.7427,7.8592,8.7619,7.785,7.8928,3.5721,3.5497,1.5356,1.7669,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd522,62,62,M,1.6975,2.1094,0.45089,0.49261,1.0622,1.0531,20.545,3.856,3.6921,56.5683,54.4207,16.2934,16.9448,251.5132,245.919,1.0849,3.73,3.3865,0.66079,0.5242,11.4639,13.599,1.6182,1.712,3.8314,3.816,7.3745,7.4395,4.8444,5.1663,0.10009,5.1803,2.6033,3.1238,0.41216,0.41072,4.8252,5.4149,4.2834,4.5901,1.9744,1.8454,11.0375,10.3589,3.5938,3.1407,4.3878,4.5471,5.1805,4.4205,1.9942,2.0359,2.0317,2.192,4.1201,3.7492,8.6655,8.7704,2.219,2.3589,7.4006,7.5747,14.1024,13.1401,9.7277,9.5357,2.5382,2.8104,5.1245,5.3877,2.1056,2.2306,21.2925,21.8987,5.9832,7.1985,4.251,4.6312,1.1411,1.1816,2.7102,2.9417,9.1099,8.0971,16.1292,16.525,3.2773,3.9386,4.9467,4.698,3.0687,3.3622,1.6007,1.638,4.5817,4.7456,11.7274,11.3723,3.052,3.4414,2.3431,2.3709,2.1702,2.8163,11.0207,13.531,2.6274,2.594,2.272,2.4483,12.0314,13.0542,1.9694,2.1467,1.3886,1.5153,17.274,15.2985,5.6699,5.7074,8.8186,9.8517,4.4244,3.6813,11.3561,10.8921,8.4316,8.8782,9.5,8.911,4.0728,4.1858,1.5081,1.5846,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd523,81,81,F,1.8046,2.1243,0.32574,0.35031,0.72047,0.78396,16.9074,2.4036,2.3055,44.8116,44.0482,14.0549,14.6336,199.1276,184.7551,1.3463,2.9427,3.0347,0.96812,0.83269,16.0835,21.1877,1.3961,1.3795,2.8402,2.6628,6.0473,6.0733,4.259,4.5385,0.08755,4.752,2.2877,2.5975,0.3603,0.36148,3.5452,4.3267,3.7837,4.1044,1.6751,1.3797,9.7188,7.9641,2.2766,2.0088,3.732,4.0207,4.0856,3.4888,1.4647,1.5962,1.9544,2.1231,3.3102,3.1183,6.5065,6.2204,1.9435,2.0366,6.1881,5.6049,10.3651,10.0282,6.5453,5.2629,2.1151,2.2163,4.4706,4.5634,1.7652,1.7254,16.2457,16.0813,4.504,5.6852,3.7058,3.9194,1.1437,1.0161,2.5435,2.2739,7.1901,6.6941,11.4993,11.453,2.565,2.7676,3.587,3.5194,3.2014,3.3958,1.4511,1.357,3.5992,3.976,8.7866,8.8843,2.5279,2.5548,2.0109,2.1058,2.1869,2.4953,8.6214,10.309,2.0801,2.2911,1.8244,1.8969,11.6113,11.8859,1.8444,2.08,1.1501,1.2045,12.1472,13.4099,4.8672,5.424,7.0785,7.845,3.6908,2.7745,9.9975,8.3007,6.1258,6.6077,7.0991,6.7386,3.3855,3.8213,1.2381,1.4745,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd524,,,F,2.1892,2.2191,0.34863,0.39511,0.84773,0.81768,16.0109,3.0383,2.8188,46.4564,46.3508,13.5695,13.839,191.9809,190.6344,1.9862,3.23,3.0526,1.2095,0.98823,32.8686,35.2172,1.5564,1.5094,3.6117,3.4336,6.439,6.5824,4.3721,4.6654,0.07224,4.3048,2.0513,2.4806,0.3595,0.36148,3.7748,4.3399,4.0836,3.9407,1.5423,1.3642,9.913,7.8059,3.666,3.319,3.9873,3.7722,4.4068,4.2499,1.722,1.6683,2.0246,2.0332,3.2243,2.9133,7.1612,7.0611,1.78,1.8414,6.0555,6.0919,10.678,10.3429,8.1799,7.19,2.0076,2.2508,4.3567,4.3599,1.614,1.64,16.8387,16.5372,4.9023,5.4806,3.5012,3.499,1.0391,0.9475,2.8046,2.6527,7.2701,6.0886,12.0367,12.0241,2.686,3.392,3.9331,4.0192,3.614,3.3582,1.4095,1.4993,3.8189,4.0189,9.7858,9.6152,2.8168,3.205,2.3244,2.5846,2.0051,2.3093,9.1919,11.0462,2.1878,2.3013,2.2256,2.2754,10.0587,11.3625,1.8846,1.8047,1.0439,0.97977,12.0086,11.6837,5.0658,5.4187,7.9077,7.0505,3.8214,3.0921,9.3873,8.9908,6.7324,7.2334,7.6637,6.9879,3.3582,3.6428,1.6169,1.4384,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd525,80,80,F,1.7205,2.2666,0.29367,0.38244,0.64983,0.8218,14.5773,2.334,2.4183,31.4445,31.3093,11.27,12.2296,172.6784,168.0025,2.2694,2.5942,2.5125,1.6519,1.3233,34.6058,27.6636,1.2718,1.2221,3.1384,3.2548,5.1972,5.1752,3.7485,4.0073,0.0805,3.8533,1.7952,1.847,0.34677,0.3005,4.1619,4.341,3.5394,3.7508,1.6152,1.4061,7.6747,7.946,3.0828,2.4466,3.4588,3.6058,4.5105,3.8266,1.1853,1.4739,1.8056,1.8102,3.7518,3.4559,5.5218,5.7889,1.9057,1.9337,6.401,4.9571,8.9138,8.6055,7.7439,6.8462,2.0666,2.3092,4.3325,4.3419,1.6125,1.853,17.3819,17.4774,4.5744,5.0603,3.3546,3.5504,1.1702,1.012,2.587,2.4786,6.4777,6.1665,11.4926,11.6557,2.6925,2.7303,4.2499,4.1086,2.73,2.6171,1.3766,1.2806,4.063,4.6327,10.5467,10.7532,2.4985,2.559,1.9027,2.1265,1.874,2.1756,10.4444,10.2494,2.1371,2.2607,1.8475,1.9672,10.8662,10.7577,0.00244,1.8821,1.1752,1.2571,14.4338,13.4797,5.1528,4.6124,5.9791,7.8429,4.0085,2.7448,8.6424,10.1926,5.0048,6.0437,6.1074,6.3723,3.3421,3.535,1.2654,1.3082,,10,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd526,81,81,M,1.9074,1.4711,0.34998,0.42163,0.72158,0.75395,14.5802,2.6894,2.6071,32.158,29.3947,11.3372,11.2483,181.8204,179.8191,2.1946,2.7682,2.5432,0.89895,0.80271,24.2377,24.6531,1.3624,1.2873,3.4679,3.6105,5.8286,5.863,3.9964,4.1762,0.08783,3.5022,1.7578,1.847,0.36423,0.33649,4.5016,4.7454,3.817,3.8937,1.4124,1.2826,8.8617,8.4396,2.3843,2.2112,3.8864,3.891,3.7159,3.276,1.4702,1.6233,1.8946,1.9302,3.5513,2.9356,5.6104,5.8912,1.8392,1.7495,5.9514,5.2045,9.1946,8.6055,6.8706,5.6111,1.8924,2.0551,4.7228,4.8665,1.6411,1.778,15.1184,15.9692,5.1387,4.9424,2.9565,3.3296,0.7652,1.2608,2.4041,2.755,8.1639,6.9119,11.7788,10.6925,2.7873,3.1951,3.6227,3.5111,2.8518,2.7807,1.4353,1.3155,3.3984,3.8282,9.6544,10.4289,2.5922,2.7332,2.2838,2.3482,1.9666,2.1707,8.9611,11.3341,2.0466,2.1708,1.8789,2.0971,11.0166,10.5286,1.6975,1.7911,1.1752,1.251,12.3623,13.0674,5.4278,5.0587,7.2824,8.5524,3.4776,3.1058,8.1687,9.0894,5.9591,5.4002,6.4111,6.2356,3.4012,3.3617,1.3782,1.4652,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd527,67,67,F,0.98083,1.9037,0.34181,0.42802,0.81108,0.78801,15.0725,2.4974,2.3667,45.4569,46.1125,11.9307,12.1868,183.164,180.6172,1.1536,3.2171,3.05,0.51853,0.3713,9.4804,11.4972,1.2104,1.1772,3.0918,3.1621,6.1911,6.183,3.583,3.8961,0.07662,3.6723,2.2877,2.3526,0.40044,0.38667,4.1159,4.4999,3.3815,3.7508,1.7177,1.3762,10.4985,8.8036,2.912,2.5994,3.6842,3.6662,3.9812,3.6357,1.6513,1.4938,1.6897,1.9031,3.3539,3.2598,6.8619,7.2039,1.8571,1.8733,6.3087,6.0351,10.8761,10.9339,7.6875,6.499,2.2645,2.2053,4.6986,4.7252,1.6945,1.6649,19.14,19.1495,5.3553,6.2736,3.6345,3.6628,1.0943,1.0588,2.3336,2.3651,7.6315,6.7603,14.774,13.7377,2.5476,2.97,4.2997,4.1288,2.9653,3.4832,1.4922,1.4598,3.6601,3.8132,9.1747,8.9573,2.6336,3.0361,1.9203,2.0617,1.8432,2.4066,9.5254,10.4789,2.3965,2.2795,1.8567,2.0155,12.2499,12.3791,1.8749,1.8088,1.1771,1.2512,13.5233,12.9795,5.3208,5.5097,7.1919,9.672,3.8457,2.6919,11.0128,10.5006,7.3424,7.0463,7.1959,6.3085,3.1045,3.8793,1.3272,1.4327,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd528,73,73,F,0.95053,1.2928,0.43242,0.46979,0.73258,0.74553,18.5757,3.1525,2.9435,37.7172,36.1023,14.0826,14.9923,242.5288,247.9511,1.1321,2.8766,2.5551,0.44345,0.47239,11.9217,14.0786,1.6691,1.6826,4.3835,4.3739,7.3845,7.1998,4.7913,5.0959,0.08245,4.6385,2.1431,2.4878,0.36176,0.38798,4.105,5.0318,3.6146,3.9264,1.7993,1.6642,9.3863,8.5464,3.4774,3.6314,3.8236,3.4424,5.3886,5.4245,1.5116,1.5145,1.8272,2.0075,4.0853,3.6101,6.6665,6.9662,2.2603,2.3994,7.4434,7.4941,11.0173,10.7251,7.7846,6.7701,2.2256,2.4862,4.4076,4.6176,1.9531,2.0486,20.1227,19.7907,5.7379,6.5834,3.8157,4.1113,1.1934,1.2289,2.7318,2.8489,8.4067,7.5977,13.4412,12.9054,3.881,4.7744,4.203,4.2594,3.3756,3.0088,1.4818,1.5872,3.6767,4.0943,10.2318,10.6302,2.5366,2.8842,2.4339,2.4087,2.4464,2.6416,9.0724,10.8637,2.1629,2.5155,2.0354,2.1765,13.703,12.6607,2.1006,2.0007,1.1702,1.2297,15.8186,16.7898,6.3356,5.8365,7.4967,9.3389,5.1011,4.7905,11.2632,11.1225,7.4112,7.1363,8.0801,7.7644,3.5429,3.5923,1.5547,1.7159,,16,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd529,59,59,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd530,,,M,1.5226,2.3519,0.37592,0.38063,0.81053,0.7718,17.0328,2.7088,2.6895,43.9453,42.9074,14.305,13.7043,201.5903,202.825,1.2465,3.0205,2.7299,0.61848,0.50741,12.814,22.1922,1.4748,1.4666,2.8927,2.8971,6.3999,6.6506,4.4025,4.5983,0.08044,4.6274,2.0161,2.4471,0.32953,0.37066,3.614,3.7447,3.364,3.4235,1.5053,1.2772,8.2788,8.1155,2.8962,2.9999,3.2306,3.612,4.3805,4.1242,1.6593,1.5455,1.5528,1.401,3.266,2.6663,7.5457,7.4887,1.6284,1.6468,6.6976,6.1691,11.3479,11.5205,7.4874,7.0691,1.9222,1.8717,4.2511,4.3599,1.3578,1.4152,14.918,15.8475,3.4789,5.0946,3.5438,3.5958,0.95179,0.99614,2.1712,2.1599,6.112,5.4513,12.7816,13.649,2.9165,2.8953,4.3228,4.2739,2.8089,2.6457,1.2473,1.0427,3.7654,3.7825,10.4549,9.7632,2.8876,3.0323,1.8782,1.9054,2.0324,2.2844,8.0006,8.9833,1.9656,2.2599,1.7139,1.887,9.7905,9.9496,1.5454,1.9195,0.99556,0.98202,13.015,13.8267,4.245,4.3097,6.1485,8.3427,3.7684,3.2341,10.4029,10.729,6.4612,7.107,6.2989,6.3182,2.5902,3.3177,1.3372,1.5821,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd531,,,M,1.572,1.7228,0.41218,0.46265,0.8884,0.93788,17.0807,3.5829,3.4491,45.9326,45.8179,14.5272,14.8168,247.9735,238.7424,2.0648,3.6067,3.5191,0.43043,0.4617,23.0322,28.3623,1.7868,1.7979,3.6721,3.844,7.042,7.3654,4.7595,4.9371,0.079,5.0169,2.223,2.4809,0.37923,0.38339,4.8806,5.731,4.166,4.4546,2.0347,1.8397,11.2125,9.3998,3.1797,3.1103,4.3899,3.7658,4.8925,5.2218,1.7919,1.6611,2.1003,2.1225,4.2777,4.0207,8.3301,8.3258,2.2015,2.3479,6.9888,6.8257,13.085,13.2013,8.4769,8.1228,2.6347,2.8515,5.6031,5.5882,2.0711,2.1228,21.2925,21.1393,5.92,6.9543,4.2627,4.5688,1.1411,1.1816,2.5793,2.7925,9.3424,7.7655,15.1685,16.3448,3.329,3.1518,4.3302,4.7443,3.908,3.8995,1.7728,1.8071,4.1235,4.6291,11.262,11.6249,3.1552,3.6922,2.3431,2.3972,2.6122,3.1235,10.5419,11.6908,2.4833,2.6925,2.1534,2.4078,11.9125,13.0261,2.1015,2.9278,1.3886,1.4242,16.1404,15.2985,6.2855,5.7798,8.5253,10.0726,4.8376,3.7481,11.9661,12.5369,7.9211,8.1752,9.1009,7.9237,4.171,3.5559,1.5133,1.8456,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd532,,,F,2.4702,1.8463,0.14255,0.28135,0.5099,0.50331,18.029,1.8066,1.848,44.7195,43.7242,14.1835,14.7581,169.8396,169.0711,2.1683,1.1821,2.4588,1.6347,1.5123,32.5772,35.0719,1.4893,1.6013,2.1838,2.6509,5.3503,6.3151,4.1478,4.377,0.08239,4.5381,1.9767,2.1681,0.2665,0.2706,4.1339,4.4639,3.6745,3.6793,1.4914,1.2637,8.7368,6.4981,2.5013,2.626,3.3572,3.5531,3.596,3.349,0.84711,0.9014,1.8537,1.8102,3.605,3.2787,3.8349,5.6822,1.7422,1.8768,4.9759,4.866,7.4539,7.7916,6.5178,6.5562,1.9375,1.9837,4.1021,4.2474,1.6694,1.6576,17.0282,18.0565,3.8107,4.6551,3.5262,3.2152,1.0275,1.0809,2.5231,2.4552,6.9498,6.6371,7.0908,9.5015,2.4134,2.9221,3.6224,3.5991,2.857,2.8646,1.2938,1.2362,3.2263,4.0421,8.9821,9.8817,2.1424,2.6325,2.2408,2.2224,2.1488,2.2148,9.0085,10.5503,2.0676,2.1636,1.7647,2.1656,11.267,11.6814,1.8068,1.7894,0.98644,1.0146,11.9065,13.2205,4.9428,4.608,7.2698,7.6911,3.4528,2.6359,9.0337,9.7743,5.8236,5.7462,5.8082,5.2112,3.1005,2.8594,1.182,1.4648,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd533,60,60,F,1.521,1.7982,0.34365,0.41094,0.73506,0.71617,18.5066,2.5737,2.459,43.6868,42.7427,14.1985,14.7581,202.9975,202.0467,1.6499,2.7835,2.5595,0.83647,1.1214,17.1038,23.7469,1.4764,1.5309,3.3414,3.4333,6.2423,6.885,4.496,4.6521,0.08474,4.467,2.0402,2.4388,0.3848,0.39372,3.9559,4.3886,3.9487,4.1261,1.7983,1.5991,9.9299,8.3337,2.7959,2.9632,3.5842,3.8199,4.2242,3.9577,1.4599,1.3546,1.8833,1.7537,3.579,3.3957,6.9756,6.775,1.9065,1.8517,5.9433,5.984,9.9808,10.2714,7.1919,6.4703,2.2001,2.2395,4.2759,4.3288,1.6526,1.7025,18.9184,18.3019,4.62,5.7343,3.8106,4.002,1.3812,1.1394,3.1132,3.0378,6.6822,6.5859,13.7507,12.1722,2.1902,3.4594,3.9142,4.0482,3.2803,3.4872,1.6283,1.4934,3.911,4.224,10.2035,10.4845,2.6925,2.9152,2.4096,2.3193,1.9492,2.1322,10.5416,11.0757,2.4806,2.3903,2.2209,2.1285,11.9313,11.8957,1.9533,1.8782,1.1721,1.1728,13.8315,12.9869,5.0396,5.0925,8.1528,8.332,3.6908,2.992,10.6873,10.3233,7.3625,6.271,7.4188,6.5986,3.3092,3.5457,1.5479,1.6057,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd534,78,78,M,2.5948,2.782,0.31503,0.36202,0.67514,0.71167,18.8952,2.1957,2.17,46.8712,47.1271,14.6035,15.6678,231.6549,231.6862,2.0625,2.7931,2.6064,1.4125,1.6117,21.9802,29.5189,1.7255,1.7194,3.1365,3.3637,6.5226,7.0209,4.9035,5.1795,0.09881,5.2786,2.3957,2.5118,0.3306,0.32724,3.6203,3.8893,3.6724,3.9836,1.4031,1.2591,8.6472,7.6315,3.2748,3.3004,3.7405,4.2559,4.3475,3.6811,1.3782,1.4232,1.7157,1.5355,3.2104,2.8959,6.55,6.8975,1.5802,1.6461,4.1811,5.0515,9.5319,10.3433,7.4049,6.5803,1.6987,1.9837,3.8898,3.8452,1.3566,1.4892,14.9787,14.7416,3.6891,4.5397,3.0201,3.0025,1.0106,1.1475,2.5935,2.771,6.5434,5.903,11.5183,12.5646,2.6285,2.7303,3.8081,3.7048,2.8755,2.6854,1.2066,1.2362,3.0563,3.4659,8.4878,8.3464,2.6024,2.7641,2.163,2.0742,2.3098,2.4688,7.8636,9.1597,1.8214,1.9283,1.9357,2.2286,9.0997,9.6065,1.9312,2.0633,0.9568,1.0196,10.046,11.176,4.612,4.7418,7.1539,8.0917,3.2066,2.9305,7.3466,7.9356,5.9102,6.0194,6.5621,7.3433,3.0039,3.0846,1.5011,1.3872,,16,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd535,73,73,F,1.9465,2.5409,0.35861,0.3887,0.73419,0.68272,17.2506,2.6433,2.5116,43.9453,42.9074,13.2665,13.5003,204.0351,203.3715,1.7204,2.737,2.443,1.6285,1.4657,18.3726,20.6888,1.4367,1.4044,3.3618,3.2494,6.1854,6.4724,4.1745,4.3906,0.06836,4.3824,2.2713,2.383,0.35503,0.37308,3.4872,3.9461,3.6161,3.7338,1.4226,1.2674,9.0908,8.8485,2.5168,2.5467,3.984,3.771,4.0272,4.0078,1.3483,1.3227,1.8546,1.7489,3.1505,2.9676,7.2795,6.7801,1.7864,1.8851,5.5082,5.3211,11.1006,10.131,7.0919,6.3161,1.845,2.067,4.2099,4.2817,1.5443,1.5262,17.4139,17.156,4.8068,6.6411,3.3358,3.5511,1.0793,1.0156,2.3434,2.3103,7.1911,6.459,12.8679,12.6361,2.3287,2.6444,3.2946,3.7827,3.1751,2.8977,1.2066,1.2029,3.5726,4.1302,9.1639,10.0677,2.5347,2.629,2.1284,2.1573,1.8914,2.0912,9.2992,10.4337,1.9505,2.108,1.8956,2.0946,11.4796,11.6743,1.5249,1.635,0.99239,1.0338,13.723,13.1831,4.913,4.9414,7.473,8.1279,3.7965,2.8281,9.0975,9.9883,6.4836,6.8159,6.9366,6.6926,3.0679,3.0662,1.3985,1.4168,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd536,66,66,M,1.0188,1.4405,0.39689,0.4675,0.84832,0.92984,19.9315,2.4205,2.459,52.3858,51.6413,17.3021,17.5743,256.9331,252.5392,1.1862,3.2868,3.0577,0.47477,0.45813,11.259,10.2416,1.803,1.7979,4.0851,4.1105,7.8667,8.0618,4.917,5.1663,0.10549,5.3514,2.359,3.0709,0.3795,0.41085,4.491,5.0133,4.8339,5.065,1.9919,1.6751,11.0488,9.1168,3.1923,2.8373,3.4815,4.0501,4.4513,3.7909,1.6091,1.7606,1.9838,2.2167,4.1304,3.5318,7.7346,7.5038,2.207,2.3336,6.9263,6.4688,11.4399,11.9897,7.9804,7.1263,2.3789,2.7764,4.8273,5.3086,1.9705,2.0881,19.4685,18.8358,5.5605,5.9404,4.4065,4.5908,1.0728,1.0919,2.974,2.7557,8.135,7.5516,14.0606,14.9175,3.0832,3.7458,4.331,4.1161,3.1299,3.2658,1.7399,1.6954,3.9427,4.2673,11.1301,10.3832,2.7121,3.1605,2.5151,2.4725,2.0627,2.4296,10.5419,11.4977,2.6482,2.9659,2.1327,2.7252,13.2394,12.6592,1.6382,2.0789,1.3268,1.3258,14.9771,14.8471,5.58,5.5603,8.1468,8.3587,4.3993,3.4209,12.1353,12.5369,7.3705,6.8376,7.7616,8.4673,3.9895,4.8047,1.3371,1.8654,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd537,68,68,F,1.6335,2.2644,0.37607,0.40036,0.90904,0.92421,18.8633,2.9766,2.9262,46.3996,45.7221,16.4399,16.6023,226.5443,219.4771,1.3132,3.8423,3.4613,0.82291,0.57687,13.6461,15.3171,1.6406,1.6382,3.5761,3.4341,7.3263,7.4648,4.7729,5.0056,0.08648,4.7656,2.3474,2.5881,0.38983,0.39953,4.0747,5.0062,3.8644,4.0645,1.7043,1.5772,6.6486,8.015,3.8376,3.7808,4.1037,4.3187,5.0213,5.3907,1.6965,1.8106,2.0688,2.0427,3.3301,3.4177,8.1492,7.6282,2.1532,2.2249,7.4279,7.4654,12.3597,12.5652,9.0811,7.8541,2.4607,2.3359,5.3121,5.3815,1.9436,1.9557,19.6031,19.4226,5.4944,6.4884,3.6462,4.1875,0,0,0,1.843,8.5083,8.1543,14.5562,14.1192,3.7683,4.1271,4.6594,4.701,3.7478,3.4729,1.8234,1.4924,4.1503,4.1658,10.7091,10.0436,3.2315,3.2771,2.0289,1.9863,2.2332,2.4738,8.7033,9.29,2.6815,2.6048,1.9957,1.9836,12.4119,12.4872,2.1241,2.3175,1.2397,1.3699,14.6241,15.0348,6.1697,5.7798,6.5122,7.7894,4.7164,4.4913,10.7106,11.3401,8.0056,7.8152,8.8523,8.47,3.4329,3.9199,1.5501,1.6638,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd538,,,M,1.2664,1.3062,0.34523,0.38516,0.78518,0.80224,15.5862,2.4047,2.3381,40.2222,42.9952,12.526,13.0176,205.4985,206.3478,1.1023,2.8341,2.9863,0.56721,0.66107,15.0453,16.6159,1.4317,1.4044,3.1708,3.3637,6.1679,6.9973,4.0474,4.2721,0.07562,4.3723,2.0402,2.3656,0.34264,0.35521,3.8518,4.4173,3.637,3.8233,1.746,1.502,8.7247,7.8755,2.8749,2.8439,3.3572,3.7078,4.1683,4.2396,1.5278,1.4938,1.78,1.9553,3.6547,2.9085,6.7279,6.7179,1.8402,1.8748,5.9165,5.9785,10.8862,10.4886,7.662,7.3706,2.2858,2.453,4.4369,4.4796,1.6945,1.7425,17.5262,17.3834,4.9289,5.8863,3.5288,3.8233,1.0106,1.0018,2.0321,2.2592,8.1541,6.4821,14.3263,12.8021,2.6925,3.1491,4.0166,3.9903,3.3205,3.8938,1.4622,1.6281,3.5659,4.0902,9.6417,10.1722,2.7019,2.9354,2.3501,2.1949,2.0085,2.1576,8.4421,10.4308,2.2182,2.3344,2.0151,2.1779,11.1084,11.7583,1.6388,1.7712,1.0378,1.1263,16.8157,13.3589,5.6498,5.3514,7.9005,7.0505,3.9385,3.3888,8.6712,10.1258,6.5986,6.2275,6.9804,6.8292,3.2533,3.3372,1.3181,1.4584,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd539,70,70,F,1.9017,2.4115,0.37032,0.49937,0.91609,0.9122,17.1079,3.0714,2.675,45.0926,44.2557,14.5272,14.4878,233.7051,226.2861,3.0552,3.8025,3.6642,0.85339,0.91392,33.4486,37.4298,1.6026,1.5701,3.588,3.6548,7.2574,7.4687,4.741,5.0305,0.08971,4.9096,2.5427,2.4551,0.45814,0.40562,3.8621,4.5166,4.3269,4.8572,1.5749,1.5194,10.6055,10.2967,3.6982,3.9768,4.329,5.1241,5.6101,5.84,1.8133,1.7739,1.8904,1.946,3.4976,3.4587,8.2273,8.2525,1.7307,1.679,7.6726,7.1878,12.4884,12.533,8.6567,8.4392,2.0092,2.2619,4.6365,4.2041,1.6476,1.575,17.9356,17.0774,5.9573,7.0934,3.4302,3.5988,1.0851,1.2392,2.8652,3.0391,7.3909,6.833,14.9277,14.1186,3.4887,4.1582,4.7004,4.4368,2.9696,3.14,1.5266,1.4045,4.1739,4.7807,10.5945,10.6224,3.3648,3.5232,2.5789,2.5438,2.1122,2.6086,10.7664,12.6483,2.0801,2.2905,2.3573,2.3669,10.8545,11.3994,2.0784,2.1403,1.1412,1.1796,14.7075,14.4207,4.9239,5.09,8.5809,9.0617,4.3393,3.269,10.9051,10.1216,7.655,7.3592,7.8822,8.7411,3.4028,3.7335,1.4503,1.5449,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd540,73,73,M,1.4175,2.9115,0.34877,0.37769,0.69704,0.6752,17.4445,3.014,2.9262,40.8155,42.8051,14.3679,14.8204,202.9975,197.2042,1.6975,2.9848,2.7905,1.285,1.3765,18.3726,23.9591,1.3842,1.3795,3.6883,3.7474,6.1317,6.4332,4.2859,4.4197,0.06895,4.4349,2.0582,2.4586,0.31821,0.33925,3.0647,3.5832,3.364,3.3318,1.5734,1.3152,9.5312,7.9257,2.5892,2.1018,3.2736,3.612,4.1014,3.4888,1.3995,1.2706,1.4845,1.4724,3.1813,2.9207,5.9671,6.018,1.623,1.6651,5.1454,5.0373,9.5365,9.5883,6.9399,6.0476,1.9799,1.9589,4.075,4.2148,1.3578,1.4467,17.2115,18.1444,4.0023,5.1587,3.3423,3.4975,1.0072,0.97972,2.2305,2.3561,6.2179,5.9312,12.0255,12.0173,1.9228,2.3736,3.4528,3.7607,3.0061,2.8132,1.3816,1.2394,3.4229,3.8782,9.4002,9.5992,2.5458,2.7527,1.6855,1.7462,1.733,1.9155,7.7528,9.384,1.9175,2.1636,1.84,2.0156,11.4796,10.3115,1.456,1.7443,0.98281,0.99393,13.5014,14.1173,4.2554,4.3949,6.9817,7.5909,3.3486,2.772,8.6091,8.9387,3.5,6.5243,6.6545,6.1146,3.2715,3.3288,1.1665,1.5138,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd541,84,84,F,1.9884,1.9275,0.24275,0.26339,0.5099,0.55213,16.484,1.941,2.1284,43.9449,43.844,14.413,14.5866,208.2842,205.9744,1.5955,2.4553,1.9484,0.60897,0.57737,13.2517,18.5578,1.5111,1.4815,2.539,2.726,6.3053,6.5669,4.281,4.4961,0.06403,3.9762,1.8995,2.3454,0.31367,0.28174,3.8971,4.207,3.4688,3.6966,1.7697,1.3901,10.0099,9.7234,2.4088,1.9387,3.8351,4.4165,3.6266,2.9868,0.98201,0.91296,1.6243,1.7076,3.6547,3.198,5.1012,5.4726,1.965,1.7546,5.3338,5.7087,7.4539,8.0032,6.5453,5.2629,2.1323,2.1544,4.2652,3.9922,1.8007,1.6281,16.3854,17.9676,4.3924,4.9258,3.6023,3.4232,1.0611,1.1074,2.3642,2.4209,7.4214,6.6941,9.5092,9.4157,2.2124,2.7448,3.6394,3.7017,2.9641,3.3054,1.4724,1.4125,3.9209,4.0256,10.4193,10.4845,2.3909,2.5425,2.1101,1.9278,1.9666,2.0482,10.2866,11.6679,1.8117,2.2597,1.8244,2.043,11.6556,10.3418,1.5729,1.6792,1.017,1.0716,14.6309,14.2914,5.2541,5.5874,7.7676,8.6249,3.3676,2.8301,9.3204,9.9311,5.4202,5.6191,2.8712,5.3971,3.3409,3.8213,1.1629,1.3482,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd542,77,77,F,1.6374,2.2644,0.34156,0.36877,0.79656,0.76239,16.438,2.6411,2.512,38.9026,41.5414,12.6679,13.0618,164.8177,166.051,2.0996,3.0757,2.822,0.58529,0.53477,26.0515,28.241,1.4275,1.393,3.4247,3.4661,5.7447,5.9736,4.0924,4.3615,0.06589,4.5196,1.9967,2.0875,0.32632,0.35812,3.7026,4.0696,3.8572,3.7848,1.6717,1.5558,10.3271,9.0663,2.9997,2.6499,3.4373,3.4995,4.0084,4.021,1.571,1.4874,1.8537,1.6397,3.1786,3.2423,6.6402,7.0908,1.9111,1.9202,6.4408,5.3417,11.3715,10.7932,6.9763,6.6851,2.0721,2.3723,4.2837,4.4549,1.6863,1.5646,17.4987,17.6929,5.1762,5.4804,3.6451,3.847,0.90211,1.0639,2.2491,2.5365,7.3052,6.0318,14.7833,13.7377,2.9051,2.9587,3.9081,3.6946,3.2259,2.7489,1.3766,1.4082,3.4881,3.9719,9.3341,9.6203,2.7339,2.9473,2.1284,1.9738,1.9233,1.9125,9.7161,10.3112,2.2296,2.425,1.8467,1.9836,11.6466,12.1035,1.5158,1.4896,1.0981,1.1726,13.7655,13.2358,4.6269,4.3322,7.5562,8.1767,3.7684,3.0755,9.275,9.1618,6.5986,7.4128,7.3909,7.4294,3.6116,3.4399,1.2277,1.3227,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd543,66,66,M,1.7179,1.9408,0.41653,0.43868,0.76377,0.83217,18.8525,3.4732,3.0724,47.8126,47.3623,14.8459,15.6924,227.1472,226.1267,1.4292,3.3151,3.1863,0.53646,0.505,11.539,15.2159,1.5997,1.5332,3.8423,3.6981,6.3611,6.6266,4.6207,4.9294,0.079,4.1751,2.1741,2.493,0.36201,0.36027,3.9057,4.6754,3.8848,4.058,1.8843,1.598,9.0115,7.956,3.5335,3.2017,3.9933,3.9079,4.6282,4.5272,1.5285,1.5673,1.8603,1.9445,3.5537,3.5412,7.0847,7.3628,2.0385,2.1293,6.2472,6.1868,11.756,11.1868,8.3743,7.8698,2.3648,2.5953,4.8128,4.8052,1.9062,1.892,16.9497,19.3525,4.4069,5.0215,4.1783,4.2163,0.93798,1.0488,2.3478,2.5913,8.5083,7.2221,14.5547,14.5335,2.9326,3.7408,4.1769,4.3582,2.9391,3.3625,1.6822,1.5986,3.8961,3.9408,10.4931,10.2054,2.6508,3.0104,2.0289,2.016,2.01,2.0247,9.6623,11.2423,2.5005,2.7276,1.8568,2.0808,13.196,13.0428,1.9493,1.8999,1.249,1.2694,13.8315,14.5303,5.6451,4.9559,7.0035,7.344,4.6318,4.2588,9.9513,9.9701,7.067,6.8376,7.7847,7.1993,3.6312,3.6743,1.3885,1.3469,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd544,,,F,0.70972,1.2959,0.00066,0.02263,0.61379,0.58904,2.0826,0,0.0006,32.5484,33.0167,10.46,10.4069,76.6563,69.2732,0.85575,2.5696,2.3964,0.60093,1.0232,13.5658,14.8694,0.81757,0.8757,0.32208,1.2789,3.756,2.2488,4.0239,4.1428,0.06425,4.0486,1.8031,1.8897,0.13799,0.28347,1.9435,0.00216,0.72891,0.46849,0.0014,0.55737,1.1839,3.9193,3.0625,3.1377,2.1079,2.1042,4.6058,4.2839,1.3618,1.2807,0.00088,0.00096,0,0,6.085,5.5762,0.70935,0.90295,5.8928,5.5408,9.6125,9.1131,7.5827,7.2027,0.67733,0.06594,0.00011,0,0.16873,0.13214,0,0,4.5545,4.2477,0.5615,1.2391,0,0,0,0,0.00038,0.00046,11.7952,10.5233,2.4357,2.7388,4.0727,4.095,0.00048,0,0.48335,0.0049,3.0192,1.534,3.1452,3.5147,2.403,2.5224,1.6208,1.6036,0.53142,0.78485,0.00167,0.00111,1.4502,0.90385,1.6139,1.6021,0.00078,0,0.00244,1.7231,0.62791,0.79424,0.00029,0.00013,0,0,5.1788,6.0253,3.7279,3.0278,1.3359,7.6989,5.0713,3.4718,6.2058,6.3723,0,0.00001,1.1316,1.284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd545,,,M,2.1427,2.4089,0.35128,0.36272,0.78953,0.81368,16.4468,2.8989,2.7928,47.4525,48.8532,12.2102,12.1483,214.4218,210.1924,1.7914,3.4165,3.2747,1.0738,0.9762,20.8601,21.7721,1.4486,1.4048,3.2747,3.402,6.2039,6.5673,4.1046,4.2939,0.08405,4.6495,2.2981,2.533,0.37691,0.37661,3.955,5.0484,3.7408,3.8666,1.8904,1.6322,8.8971,8.6024,3.1609,3.0412,4.5316,3.9354,4.1616,4.5504,1.6085,1.5631,1.6638,1.6887,3.9312,3.6603,7.1612,7.4408,2.0976,2.2699,7.5239,6.5911,11.1037,11.3971,8.1904,7.1734,2.2869,2.3498,4.9833,4.9602,1.914,1.926,18.5625,18.4698,5.5567,6.2736,4.1554,4.1871,1.1161,1.0763,2.4211,2.2267,8.3722,7.5175,14.0727,13.8103,2.6114,3.3037,4.443,4.3191,2.7745,2.8826,1.4083,1.4578,4.1308,4.6327,10.9141,11.0971,2.8906,3.0225,2.3679,2.3836,2.7442,2.6107,10.8522,11.9634,2.3157,2.5487,2.123,2.3318,12.5585,12.5137,2.4477,2.1021,1.3104,1.396,13.344,14.6558,5.7484,5.3741,9.2217,10.3583,3.5424,2.9982,9.484,10.0305,7.6597,7.301,7.404,7.1894,3.0893,3.6655,1.4403,1.5945,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd546,,,M,2.1427,2.2088,0.36072,0.39427,0.77148,0.77604,19.0873,3.5473,3.3105,48.6004,49.0913,16.5091,16.6023,242.2161,241.3842,1.8617,3.1777,2.8485,1.2944,1.1065,20.8601,26.646,1.8519,1.806,3.7901,3.9264,6.4189,7.862,4.7776,4.9511,0.08496,5.265,2.1858,2.7104,0.37206,0.40229,4.6817,4.9454,4.4452,4.5412,1.6909,1.5551,8.2161,7.631,3.5068,3.9856,4.3948,4.5333,5.3886,5.2487,1.601,1.4028,2.0358,2.0178,3.635,3.3412,7.2951,7.4144,1.8605,2.089,6.825,7.1185,11.7478,10.6071,8.8586,8.2622,2.33,2.4574,4.8968,4.8373,1.7088,1.8261,17.8634,18.7841,5.1801,7.057,3.3473,3.8666,1.0366,1.0397,2.4466,2.4552,7.5348,6.9348,14.4409,13.678,5.4531,4.1988,4.453,4.6446,3.5751,3.4183,1.7302,1.5317,4.1182,4.3969,11.6293,11.0284,2.8099,2.8891,2.8719,2.6767,2.4205,2.5835,9.3692,10.3798,2.3996,2.5227,2.2952,2.4642,12.4923,11.3767,1.8814,2.3654,1.2173,1.3309,13.268,14.0161,4.4891,4.786,7.0237,8.4019,4.3393,3.5157,9.4148,9.7964,6.8985,6.3939,6.8234,6.9968,3.4329,3.9344,1.8464,1.9144,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd547,66,66,F,2.2635,2.8467,0.30493,0.36202,0.80199,0.82209,16.9803,2.5514,2.4236,41.9809,40.919,14.0509,14.3408,203.4714,198.4048,2.4417,3.2705,3.0496,1.0505,1.1271,23.4086,35.4663,1.4785,1.5513,3.23,3.5573,6.1098,6.7659,4.2758,4.444,0.07065,4.6412,1.8515,2.4775,0.35638,0.35902,3.4711,4.0703,4.0357,4.1261,1.5145,1.2892,10.3432,10.2613,3.0485,3.0054,3.5759,3.6124,4.2131,4.3195,1.6117,1.6922,1.8332,1.7401,3.2079,2.9676,7.6932,7.159,1.756,1.8851,6.0143,6.5865,11.3479,10.8767,7.9894,7.54,2.0704,1.9786,4.3012,4.5869,1.5406,1.5676,17.4693,17.557,5.3698,6.4612,3.5012,3.678,0.93798,0.88176,2.6087,2.0521,7.1218,6.6575,14.1547,14.2256,2.8735,2.8994,4.2997,4.5411,3.0679,2.9985,1.4296,1.2023,3.8863,4.1789,10.5467,10.7974,2.7925,3.1821,2.4017,2.3836,2.0579,2.387,9.2722,10.8637,2.0801,2.1708,2.2995,2.0593,11.769,11.555,1.8503,2.1903,1.0384,1.0655,13.278,13.5656,4.913,4.9431,7.822,9.423,3.9021,3.2833,9.6541,9.7158,7.9654,7.7569,7.057,7.6207,3.0846,2.9888,1.5927,1.5033,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd548,76,76,F,2.0414,2.0586,0.35861,0.40487,0.78957,0.81368,17.2506,3.0485,2.9163,45.4266,46.5014,13.3911,13.3742,204.8715,202.3092,2.0642,3.005,2.8334,0.87142,0.80183,31.4798,25.9303,1.4427,1.41,3.4841,3.5774,6.3999,6.5072,4.4063,4.5983,0.08132,4.9096,2.2072,2.4605,0.41347,0.4058,4.2935,5.1149,4.578,4.8613,1.5749,1.507,9.6025,7.8288,2.8271,2.7421,4.479,4.3732,4.4191,3.7368,1.5072,1.5372,2.088,1.9859,3.6456,3.5254,6.5731,6.8529,2.0326,2.0723,6.1465,6.031,10.4233,10.043,7.3667,6.6398,2.0189,2.5249,4.8757,4.8665,1.854,1.94,17.2619,18.8864,4.5494,5.6276,3.7157,3.9073,0.85424,1.2153,2.3197,2.4756,8.3811,7.5175,13.708,12.8021,2.6698,2.9054,4.0845,4.5702,3.9717,3.2132,1.4048,1.5516,4.074,4.6604,10.9155,10.6004,2.618,2.9555,2.8744,2.8236,2.3147,2.4738,8.407,10.309,2.1151,2.3726,2.2051,2.499,11.531,12.0834,1.9245,2.4502,1.2498,1.2704,13.344,14.584,5.3899,5.3741,7.3399,8.3409,3.8803,3.2833,9.197,9.4013,6.212,7.4058,6.406,6.3247,3.3582,3.8183,1.6655,1.9144,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd549,68,68,M,1.4925,2.0084,0.41916,0.46989,0.88555,0.93311,20.181,3.4732,3.0724,49.1356,50.5032,17.5141,17.357,254.6872,251.0024,1.2541,3.5467,3.4468,0.48238,0.51484,11.4639,12.7389,1.7338,1.7586,3.8116,3.6544,7.2876,7.6457,5.131,5.4334,0.08763,4.5484,2.271,2.4322,0.42509,0.4242,4.2614,5.5892,4.7343,4.8166,2.1787,1.9521,12.3409,10.4668,3.0736,3.0054,4.5708,4.6042,4.3487,4.5504,1.8746,1.7135,2.518,2.3948,5.8776,4.5553,8.1661,8.1695,2.3828,2.4461,7.0775,6.8361,13.4129,13.7005,8.111,8.0063,2.5795,2.7017,5.0183,5.2206,2.3643,2.1694,23.4151,21.5294,5.92,7.0711,4.4547,4.4773,1.2138,1.2987,2.822,2.7044,9.912,8.6758,16.5941,17.155,2.4932,3.2759,4.3364,4.3414,3.8184,4.5611,1.7599,1.798,4.4756,5.0378,12.8049,12.7487,3.1107,3.6837,2.588,2.5927,2.5551,3.0595,10.5847,13.0556,2.5524,3.1392,2.347,2.5011,12.3701,12.3724,2.0988,2.8636,1.3847,1.3888,16.3566,16.7898,6.6401,6.4053,9.1534,10.535,3.6544,3.5209,11.0173,11.1672,8.4316,8.005,8.9099,8.4177,4.0751,4.3416,1.7003,1.9146,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd550,67,67,M,1.9942,3.7549,0.38212,0.4002,0.8276,0.80952,19.522,3.263,2.9527,47.6832,46.7113,15.0437,14.8297,218.3786,211.5953,1.9461,3.2033,2.956,1.3521,0.98324,24.9669,33.0922,1.6242,1.6135,3.5084,3.4336,6.389,6.5824,4.7781,4.8736,0.08606,4.8141,2.1884,2.6944,0.37971,0.40045,3.9664,4.5166,3.6586,3.9836,1.7255,1.5455,10.8511,9.3164,3.4589,3.3702,4.1699,4.3733,4.7629,4.3423,1.6944,1.634,2.1616,2.0207,3.3473,3.0876,7.7255,8.0385,2.0831,2.0366,7.0218,6.5861,11.2832,11.9203,8.7852,7.7195,2.2267,2.4053,4.3593,4.2856,1.5913,1.659,18.3811,19.4868,5.3797,5.9223,3.8506,3.8636,1.1375,1.0764,2.2511,2.3727,7.8204,6.256,14.3784,13.2979,3.0269,3.7023,4.843,5.1101,3.7331,3.2757,1.3825,1.5915,3.705,3.9584,10.1319,9.4536,3.0672,3.2149,2.0511,2.1922,2.3003,2.7626,10.65,11.7391,2.2664,2.434,2.0512,2.3425,11.7584,11.7822,2.2965,2.3233,1.2017,1.3309,13.3726,13.2744,5.1062,5.0925,8.0641,9.0355,4.3743,3.4542,10.2414,9.9727,8.7756,6.9651,7.6691,7.1556,3.4275,3.6503,1.4823,1.7661,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd551,65,65,F,1.4362,1.9231,0.32621,0.35247,0.70166,0.63576,15.3855,2.7236,2.7129,38.8014,39.0627,12.0168,12.3273,183.508,189.0925,1.5677,3.0275,2.8601,0.97991,0.59791,11.9006,12.2702,1.5018,1.4039,3.4545,3.6003,6.6309,6.7055,4.3635,4.609,0.07783,4.4944,2.1196,2.2432,0.35284,0.36185,3.8518,4.2866,4.1806,4.2244,1.6695,1.3986,8.9648,7.3366,3.1718,2.9538,3.6452,3.6307,4.4936,4.1837,1.5275,1.2548,1.9935,1.9355,3.3588,2.9356,6.3448,6.2422,2.0401,2.1474,5.8617,5.6647,10.4233,9.8933,7.262,6.3129,2.1234,2.061,4.1491,4.2817,1.7021,1.7001,16.3461,18.131,5.1387,4.9534,3.8145,3.7771,0.90507,0.98826,2.4632,2.4201,7.1681,6.1634,13.0276,13.0122,2.7084,3.3573,3.9142,3.4132,3.341,3.1531,1.6283,1.425,3.8666,4.2633,10.402,10.4845,2.557,2.6702,2.3783,2.394,1.8787,2.6276,8.5765,11.1184,2.0783,2.1833,2.0236,2.1385,10.9663,10.6935,1.6691,1.9742,1.249,1.2561,14.0331,13.7678,4.7791,4.7331,8.0882,8.6658,3.6634,3.4955,10.3849,9.3483,6.8894,6.3731,7.5884,6.3555,3.1585,3.793,1.3501,1.5247,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd552,68,68,M,1.7106,1.8055,0.40335,0.43093,0.7155,0.66297,20.4111,3.4584,3.3859,50.1687,49.353,17.2068,17.9163,233.252,229.8856,1.6943,3.0192,2.8601,0.85013,0.91831,21.0366,20.6963,1.7943,1.7979,3.8725,4.0915,7.4638,7.8167,5.044,5.4334,0.08971,5.3587,2.4037,2.7782,0.4332,0.44196,5.2218,5.7879,4.6538,4.607,2.1383,1.9521,12.1829,11.3323,3.5938,3.5281,4.9359,4.7696,4.7629,4.612,1.5181,1.3674,2.088,2.3582,5.8776,3.8123,7.5488,7.7173,2.1746,2.2216,7.3182,6.7376,12.3948,10.9412,8.6267,8.0205,2.586,2.6735,5.5249,5.1372,2.0461,2.1738,21.6581,22.5254,6.7079,6.9844,4.0039,4.2557,1.4549,1.3124,3.0988,3.0303,8.6872,8.3647,16.7309,13.9946,2.4779,3.1976,4.2342,4.5411,3.6886,3.9377,1.8616,1.7809,4.0692,4.7807,12.6168,11.8877,2.7125,2.9435,2.6001,2.749,2.4819,2.4877,12.8035,12.8633,2.5064,2.8106,2.4697,2.8207,14.6459,14.3597,1.841,2.0321,1.4368,1.3923,16.9133,17.4915,5.6498,6.0188,9.6912,9.0232,4.1829,3.1072,13.3127,13.0103,8.3095,7.5535,8.5962,7.7869,4.2226,4.3634,1.5361,1.6912,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd553,71,71,M,1.9094,1.759,0.35086,0.37769,0.69746,0.59853,18.339,2.5722,2.4323,47.6643,48.7275,14.8152,14.7204,203.5591,202.0467,1.9452,2.9427,2.6557,1.3815,1.3385,31.295,32.6737,1.5987,1.5949,3.2272,3.5573,6.1374,6.3966,4.3656,4.5025,0.09045,5.412,2.3957,2.8167,0.33936,0.32724,3.6504,4.3647,3.6922,3.9845,1.5988,1.3642,10.0845,8.2846,3.0612,3.191,3.9927,4.1142,4.2242,4.2415,1.4331,1.2463,2.1351,2.028,3.3802,3.222,6.2382,5.5941,1.681,1.7072,6.0598,5.8975,10.2109,9.187,7.4049,7.2396,2.0092,2.1125,4.408,4.4569,1.406,1.458,17.2701,17.3434,4.4835,5.6198,3.3806,3.3321,1.0125,1.0295,2.3241,2.3519,7.5529,6.9119,13.7816,11.6314,2.4654,3.3288,4.1388,4.2241,3.2295,3.5025,1.4456,1.4233,3.8666,4.3925,10.444,10.1122,2.5148,2.7969,2.1693,2.2281,2.1039,2.4116,10.3066,11.2494,2.0589,1.9809,1.809,2.0408,11.3434,12.0998,1.6137,2.1993,0.92721,1.0054,12.8693,13.0842,4.8345,4.7072,8.1754,8.4831,3.5488,3.4265,10.8439,9.7265,6.4901,7.1108,6.8441,7.1399,3.2533,3.5039,1.2917,1.3618,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd554,53,53,F,1.2087,0.73524,0.28531,0.32098,0.60361,0.56468,15.1807,2.3884,2.224,24.3004,14.2174,12.8008,12.4571,168.1404,169.0711,1.2254,2.4818,2.4348,1.4247,1.5123,14.503,18.5578,1.3283,1.3074,3.1335,3.0497,5.5578,5.6835,3.9552,4.2351,0.07933,4.3435,1.8052,0.00144,0.32483,0.32491,3.0647,3.2967,3.3117,3.5351,1.2644,1.0793,8.7539,7.3169,3.038,2.7925,3.5447,3.3553,4.4469,3.6052,1.279,1.0909,1.665,1.4748,3.2655,2.5954,6.085,5.6597,1.5262,1.6765,5.4517,5.8648,9.211,8.829,7.4337,6.8854,1.6103,1.9178,3.5388,3.7306,1.2801,1.2859,15.6573,15.8776,4.6532,4.8572,2.7665,3.0824,0.89653,0.93037,2.2617,1.779,5.4504,5.0106,12.1545,10.152,2.6637,2.5224,3.9017,3.7844,2.971,2.557,1.1581,1.1783,2.9264,3.4843,7.7055,8.2426,2.4601,2.5272,2.0164,1.9261,1.8895,2.2844,8.2392,9.9004,1.9447,1.9458,1.8162,2.0026,12.156,10.3883,1.594,2.0657,1.0216,1.0804,13.9377,13.2611,4.4946,4.4892,6.6345,7.8777,3.7534,2.776,8.1985,1.7797,6.2459,5.6422,5.7073,5.8408,3.1378,2.9625,1.3372,1.4745,,24,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd555,77,77,F,1.9673,1.548,0.37638,0.43857,0.88855,0.85904,19.2653,3.5276,2.9424,46.3654,45.4929,16.3949,16.2485,237.8669,243.7703,1.5056,3.6539,3.2341,1.0633,1.1065,15.3522,18.9404,1.6568,1.6677,4.3835,4.534,7.7925,8.0582,4.8726,5.0683,0.09255,4.7656,2.1997,2.5881,0.4116,0.395,4.0849,5.1149,4.1727,4.5632,1.9022,1.7547,12.5747,10.6107,3.5938,3.144,4.0322,4.5149,5.1805,5.1473,1.9619,1.7173,1.9715,2.1815,4.1304,3.6149,8.1211,8.3258,2.2986,2.2471,7.6726,6.837,13.3156,13.6062,8.5558,8.4392,2.179,2.7616,4.8032,5.1549,1.9492,1.917,19.0468,19.4487,5.8744,7.0934,4.3741,4.6011,1.1528,1.1164,2.75,2.8608,8.6373,7.7693,16.4933,17.155,2.9033,3.2917,4.6395,4.8176,3.7221,3.4289,1.5949,1.7745,4.4756,4.7566,11.9149,11.9956,3.188,3.4088,2.3587,2.2643,2.2901,2.1323,10.7699,11.9197,2.3909,2.7234,2.3217,2.408,13.2599,12.6607,2.0029,1.7612,1.2701,1.3407,16.623,17.1693,5.8884,5.5968,8.8186,10.4647,4.013,4.0134,11.2587,11.0553,9.0556,8.005,9.3517,9.3224,3.8575,4.0113,1.5639,1.4363,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd556,68,68,F,1.8705,1.9084,0.30692,0.32252,0.60361,0.68262,14.6382,2.3884,2.2576,36.0362,36.3908,11.7082,12.7184,184.6449,189.0925,2.1946,2.6271,2.654,1.6199,0.859,31.5216,28.677,1.5685,1.3961,2.9829,2.8971,5.785,6.1208,3.9613,4.17,0.0805,4.5072,1.6783,2.0897,0.30289,0.31457,3.2578,3.9392,3.6051,3.6699,1.4226,1.3265,8.1557,7.6056,3.0625,2.9704,3.5839,3.3405,4.6058,4.7694,1.1403,1.3182,1.5209,1.569,3.3098,2.8601,5.6155,5.9773,1.6173,1.6831,5.6379,5.3117,8.946,9.0866,7.4372,6.7015,1.7858,2.1191,3.7044,3.9956,1.3704,1.4512,15.2181,15.6616,4.3769,4.5397,3.0517,3.4097,0.94034,0.9423,2.1893,2.2815,6.4922,5.9028,11.8959,10.7707,2.817,2.9729,3.5584,3.7928,2.7926,2.3332,1.2868,1.2794,3.2327,3.5265,8.6154,8.0475,2.3909,2.7152,2.2297,2.3411,1.7172,1.6317,9.8788,9.9218,1.9076,2.0597,1.9614,2.1411,11.0423,10.0129,1.3384,1.5016,1.0597,1.0794,12.738,12.0324,4.4519,4.6264,6.8963,7.6723,3.9158,2.789,8.0848,8.6869,4.9112,5.7462,6.3232,5.9117,2.8636,3.535,1.2877,1.1861,,24,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd557,66,66,F,1.1873,1.3598,0.27575,0.3229,0.53111,0.50331,16.2793,2.2485,2.1284,37.2891,31.6077,13.84,14.047,175.9135,173.5885,1.0692,2.4553,1.3047,0.79701,0.59913,10.3441,12.636,1.4893,1.6013,2.6449,2.3521,5.5578,5.8946,4.2851,4.486,0.08783,3.9762,1.8249,2.0458,0.28156,0.28347,4.2767,4.5078,3.0836,3.0507,1.6854,1.258,8.457,6.4981,3.0625,2.9538,3.7112,4.1679,4.5105,4.2772,1.0283,1.0787,1.6243,1.569,3.8335,3.4387,5.3857,4.9533,1.8818,0.90295,5.988,5.6047,8.7021,7.7991,7.6609,6.8315,0.67733,2.1752,4.139,4.4628,1.6433,0.05335,16.3678,17.6678,4.582,3.9079,3.449,3.3071,0.94853,1.063,2.467,2.1921,7.0396,6.4198,10.4488,12.1717,3.1107,3.5537,3.9359,3.6751,3.166,2.5717,1.2066,1.3582,3.3332,3.752,9.4991,9.1319,2.4834,2.6232,1.8725,1.9992,1.9813,2.2844,8.5484,9.4535,1.8465,2.3133,1.6124,1.9545,11.478,11.7764,1.6023,1.8391,0.43488,0.95781,13.8721,12.5684,5.1467,4.9642,6.7592,8.1054,4.0843,3.6446,9.1265,9.2085,5.2529,5.4578,5.2322,4.4876,3.2361,3.2693,1.3803,1.3774,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd558,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd559,43,43,M,1.1573,2.0007,0.34404,0.34666,0.78877,0.69324,17.1094,2.5342,2.2943,41.0361,42.157,15.8163,15.7577,232.1245,219.7046,1.0312,3.108,2.8485,0.47469,0.55654,10.2828,10.6779,1.5605,1.5627,3.2579,3.3626,6.1882,6.8479,4.2468,4.3579,0.07149,4.2492,2.0996,2.4153,0.34336,0.34954,4.1239,4.1603,4.025,4.1024,1.7392,1.4939,9.0344,8.1893,2.8749,3.0912,4.2545,4.3633,4.4695,4.3683,1.4653,1.256,1.9982,1.7496,3.5985,3.1623,6.5852,6.6309,1.9406,1.9966,6.2286,6.3134,10.0847,10.455,7.7851,7.335,2.0395,2.5188,4.8096,4.4466,1.6212,1.6383,17.2194,17.3969,4.56,5.5222,3.7438,3.5533,1.3088,1.0262,2.9837,2.7079,6.932,6.5707,12.4151,12.0916,2.9318,3.788,4.1184,4.2907,3.614,3.2505,1.4292,1.505,3.6334,3.8922,9.5312,10.4343,2.6174,2.7096,2.3943,2.2809,2.3196,2.4359,9.3692,10.6313,2.0373,2.474,2.0316,2.174,11.0016,11.5614,1.8179,1.8994,1.2068,1.2404,14.2447,13.7678,5.184,4.8506,7.8555,8.5434,3.9499,3.2804,10.6959,10.1041,6.8885,6.0908,6.5402,7.0134,3.2317,3.4662,1.5101,1.529,,25,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd560,68,68,F,0.93909,1.1991,0.3775,0.45212,0.75901,0.72415,18.5757,2.7433,2.7248,44.0934,42.9721,15.0423,14.7444,212.2345,207.636,0.85913,3.2479,2.83,0.41256,0.37085,8.1124,9.3953,1.4184,1.4848,3.548,3.6411,6.6087,7.1669,4.6503,5.0074,0.0791,4.7016,2.2166,2.386,0.41897,0.40369,3.8597,4.4758,3.7836,3.9292,1.909,1.6574,8.8971,8.4172,3.3301,3.1403,4.2217,4.3633,3.9233,4.5504,1.5278,1.4774,1.9782,1.9114,3.6771,3.4071,7.1137,7.1017,2.1663,2.3043,6.4854,6.3159,11.4941,11.318,8.01,7.1949,2.2752,2.4227,4.4352,4.4754,1.7839,1.8187,17.7483,18.5287,4.7603,5.6511,4.0677,4.3252,0.8944,0.78936,2.344,2.4963,7.8167,6.6459,13.8112,13.6718,2.796,3.2542,4.4075,4.2718,3.1857,3.2242,1.4047,1.502,3.8557,4.0705,10.0389,9.5413,2.7598,2.9231,2.151,2.2301,2.56,2.6107,11.0637,11.7131,2.309,2.6967,1.9582,2.2568,12.0586,11.6796,2.0533,2.1929,1.2176,1.3382,14.225,15.3711,5.4783,5.1257,8.3019,9.2047,3.6249,3.2554,10.5532,11.2121,7.655,7.1143,8.1214,7.7768,3.1875,3.4379,1.4087,1.7661,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd561,,,F,0.96391,1.9683,0.34421,0.35194,0.75465,0.67601,18.3779,2.4047,2.3463,46.1595,45.6187,16.2523,16.3434,231.9271,226.3817,0.7582,3.0437,2.8438,0.46074,0.45813,9.5205,9.9571,1.727,1.6711,3.5546,3.7125,6.2951,6.7694,4.552,4.7913,0.07685,4.582,2.0817,2.4679,0.34977,0.35074,3.9571,4.2776,3.8702,3.8531,1.748,1.5045,9.2652,8.8278,2.4799,2.636,3.5289,4.2033,3.7056,3.7832,1.5278,1.3252,1.9544,1.8292,3.9159,3.7623,8.1592,7.7822,1.9057,1.9973,6.8316,6.0308,12.0911,11.3466,7.2877,6.1539,2.2145,2.3684,4.5105,4.626,1.6664,1.668,18.3215,18.6762,4.5062,5.7645,3.5735,3.9422,1.0744,0.96672,2.5254,2.3596,7.1152,6.583,14.6369,14.9929,2.6968,3.0834,3.6688,3.6689,3.5678,3.0969,1.4826,1.3536,3.9715,4.4008,10.9296,10.9054,2.8815,3.0333,2.0891,2.0253,1.9221,2.144,8.9768,10.682,2.1961,2.4171,1.9069,2.0384,11.4033,11.7937,1.6696,1.8033,1.2626,1.2036,14.1397,15.1137,4.8783,4.7759,7.5447,8.3501,3.7189,3.5915,9.5773,9.9311,7.5386,7.2878,7.5888,7.7727,3.5721,3.6062,1.2649,1.3736,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd562,71,71,M,2.0417,1.6804,0.33936,0.38838,0.68032,0.70404,18.8952,2.5722,2.5622,47.2982,46.7113,14.8152,15.6924,224.9161,220.7889,1.576,2.8547,2.701,0.9213,0.8374,16.9221,21.7893,1.5997,1.5956,3.2359,3.368,6.4129,6.6236,4.6514,4.8807,0.08504,5.3587,2.3011,2.6567,0.36677,0.3396,3.987,4.1443,4.1555,4.193,1.6668,1.463,10.3634,9.8332,3.0608,2.787,3.988,4.3316,4.2242,3.9231,1.3386,1.1769,2.001,1.8766,3.7518,3.7458,6.6888,6.2417,1.9341,1.969,5.6115,4.8611,11.4592,9.954,7.5987,7.2232,2.1145,2.2977,4.2652,4.4422,1.5356,1.6189,18.6709,19.4487,4.8922,5.5199,3.6635,3.7465,1.0455,0.97938,2.3642,2.1904,7.1759,6.5146,14.348,13.5824,2.6562,2.892,3.5564,3.7503,3.0161,3.215,1.4842,1.4402,3.7818,4.4772,10.2469,10.3716,2.66,2.8985,2.482,2.156,2.4625,2.224,9.9962,11.6036,2.3103,2.5075,2.2014,2.2493,12.7629,12.5735,1.9074,1.7221,1.1388,1.2324,15.0862,14.3131,5.0316,4.9208,8.554,8.9686,3.9919,3.6118,10.3903,9.5733,7.9135,6.722,6.4587,7.1199,3.4653,4.2785,1.5229,1.54,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd563,74,74,M,2.2559,1.8026,0.33312,0.37163,0.76392,0.83577,18.3977,2.5722,2.2936,44.3483,44.0482,14.1985,14.2885,196.2657,193.8382,1.7484,3.3957,3.111,0.65389,0.39771,11.2721,10.2416,1.4111,1.4019,3.2159,3.2616,6.0473,6.7811,4.2391,4.4261,0.06574,4.569,1.9523,2.3483,0.33985,0.34954,3.6289,3.9826,3.5918,3.7666,1.4902,1.3681,9.5403,9.431,2.8537,2.8522,3.44,3.2949,4.3022,4.0143,1.468,1.5651,1.7472,1.7378,3.3098,3.1734,6.4935,6.5746,1.7364,1.6632,6.3031,5.7301,9.8271,10.0806,7.143,6.9145,1.9371,2.1584,4.6835,4.8029,1.4028,1.4819,15.7914,15.6616,5.0421,5.896,3.0127,3.3215,0.93959,1.0072,2.364,2.3455,6.9332,6.2481,12.0458,12.6747,2.4105,3.1963,3.967,3.9987,3.2383,2.8353,1.3361,1.4323,3.5659,3.8357,9.6531,9.925,2.516,2.7157,2.0792,1.9738,2.3646,2.5671,11.7534,11.7131,1.9867,2.1861,1.9188,1.984,10.3294,11.5328,1.7452,1.8216,0.99225,1.0546,13.1769,12.8537,4.9908,5.2071,8.2692,10.0223,3.7419,3.151,9.0405,10.532,6.6551,6.8159,6.8173,6.8255,3.2361,3.4622,1.369,1.279,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd564,,,F,2.1892,1.8484,0.29367,0.37155,0.73701,0.73047,16.589,2.1408,2.1251,40.1162,40.3567,12.5805,13.1133,184.7169,180.9211,2.2128,3.4557,3.0802,2.1389,2.2962,31.0836,32.6737,1.3987,1.4067,2.6102,2.3521,6.3181,6.0733,4.2293,4.3463,0.0592,4.2206,2.0658,2.3524,0.32458,0.33122,2.7234,3.5612,3.8416,4.2509,1.3526,1.244,7.3412,7.1535,3.3005,3.2724,3.507,3.5732,4.4286,3.5719,1.2358,1.4211,1.7241,1.5836,3.3157,2.9772,5.9779,6.4238,1.6718,0.77512,5.7857,5.5447,8.2424,9.3132,7.151,6.7045,0.07,1.932,3.8319,3.8452,1.3857,0.05335,14.5359,15.7892,4.493,6.0224,1.529,3.1974,0.96823,1.0146,2.1808,2.4552,6.357,5.5465,10.9055,10.7707,2.8925,3.1951,3.7932,3.817,3.2383,2.7994,1.2405,1.1783,3.0816,3.4659,8.0933,7.2975,1.593,2.5452,2.2248,2.3482,2.0571,1.9753,8.2392,9.8615,1.932,2.3203,2.0061,2.1163,10.2695,10.6697,2.0173,1.7249,0.81661,1.0415,13.6378,12.462,4.2338,4.2845,6.7642,6.9655,3.8052,3.2754,9.1446,8.7234,5.98,6.7168,6.1222,6.5267,3.2507,3.0018,1.2979,1.3732,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd565,78,78,F,1.8912,1.2451,0.35875,0.41846,0.74474,0.66297,18.1118,3.263,3.0353,45.1406,44.7829,14.1082,14.9131,196.2657,191.9704,1.5588,2.9796,2.5551,0.67891,0.85492,16.3604,20.2561,1.63,1.6671,3.7748,3.6981,6.8344,7.072,4.5574,4.7107,0.07821,4.447,2.0089,2.5824,0.37188,0.34498,3.8217,4.7194,4.1616,4.442,1.925,1.612,8.9774,7.0779,3.1133,3.0593,3.6643,4.2033,5.0257,4.3198,1.407,1.4181,2.0912,1.9395,3.5937,3.5761,6.3707,6.4863,2.0422,2.1293,6.3722,6.2477,9.3731,9.9192,7.4372,7.5524,2.2271,2.3889,4.139,4.5229,1.861,1.8577,16.6427,17.8174,4.6664,5.9481,4.0725,4.2163,1.2371,1.2911,2.5289,2.4799,8.0629,7.2221,12.312,12.8253,2.9419,3.3899,3.7753,4.0677,3.7103,3.0452,1.5948,1.5883,3.5982,4.1078,9.8266,10.0677,2.5036,2.8487,2.1817,2.4319,2.0394,2.1136,9.9235,10.6629,2.3214,2.4762,1.9957,2.2002,11.9822,11.0473,1.8222,1.9516,1.2038,1.2452,13.516,13.5868,4.4891,4.5162,7.1464,7.7732,4.5789,3.4312,8.8843,9.1825,6.72,6.9201,7.7307,6.6556,3.6254,3.9592,1.512,1.467,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd566,85,85,F,2.2431,2.3713,0.24275,0.27429,0.51139,0.50331,16.2793,1.6327,2.0219,44.8015,44.5662,14.3392,14.9923,193.768,202.1358,2.034,2.4966,2.5125,0.80942,0.97396,23.0969,24.6515,1.3988,1.4771,2.7027,3.0212,6.0014,6.525,4.1327,4.3385,0.08302,4.7614,2.231,2.4775,0.27894,0.28174,4.133,4.4639,3.7369,3.7307,1.6327,1.3625,7.5111,7.9235,3.1958,2.883,4.0617,3.7099,4.1096,4.1712,0.98201,0.39954,1.8693,1.7489,3.7518,3.4058,4.8245,5.2277,2.0307,2.0723,5.2713,4.8611,5.5287,7.9361,7.3984,7.2088,2.2263,2.2274,4.5653,4.4226,1.8236,1.9029,18.0849,17.9676,4.6476,5.3886,3.6362,3.6508,1.0472,0.95322,2.465,2.5666,7.4214,6.8184,8.7517,10.631,2.6636,3.0388,3.5584,4.0298,2.8835,2.889,1.4629,1.1636,3.3773,4.1248,8.5796,9.983,2.3769,2.5634,2.1295,2.082,1.859,1.9119,10.741,12.1633,2.0391,2.3422,1.7814,2.0895,11.4383,11.0828,1.4323,1.4332,1.1891,1.2125,14.878,13.7674,4.5863,4.7418,6.0292,6.846,4.6808,3.3708,9.2968,9.024,6.2211,5.6128,5.3235,2.5612,2.9832,3.4214,1.1849,1.3227,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd567,63,63,F,1.3169,1.3945,0.33749,0.38334,0.76722,0.74775,14.9542,2.8802,2.8383,41.6372,42.8081,12.6874,13.5987,193.2219,188.816,1.0877,2.7104,2.7014,0.64781,0.52592,10.9448,13.5929,1.2453,1.2494,3.3993,3.5782,6.1141,6.2609,3.8011,3.9321,0.07562,4.0424,2.0418,2.5436,0.38116,0.38098,4.0974,4.7429,3.6892,3.8233,1.9022,1.5216,9.9299,8.1491,2.8804,3.0648,3.9105,3.9781,4.0174,4.2491,1.6425,1.491,1.8491,1.9553,3.8763,3.0808,6.3183,6.0491,2.1371,2.0395,5.7045,5.3593,9.375,8.9153,7.7077,7.5597,2.2463,2.4574,4.3037,3.9037,1.7953,1.7602,16.9,16.7287,4.5494,5.5514,3.8992,4.074,1.0656,1.0929,2.4975,2.5262,8.8146,7.5771,12.476,12.0891,2.3938,2.7148,3.9501,4.0298,3.3205,3.8938,1.5453,1.5883,3.8343,4.0792,9.6819,9.8832,2.6493,2.9404,2.1191,1.9116,2.2397,2.141,8.6664,10.7917,2.421,2.6582,1.9496,2.0384,11.1298,11.759,1.8156,1.8896,1.0802,1.1133,14.2328,13.6172,5.4872,5.1639,7.6044,8.2609,3.0572,3.2476,9.0863,8.7986,7.2082,6.628,7.1644,7.7833,3.4242,3.8172,1.3806,1.454,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd568,70,70,M,1.0263,1.9964,0.37286,0.41664,0.7548,0.74553,18.7857,2.8948,2.7928,43.2213,42.7181,14.8142,15.2945,208.0855,207.7314,1.0466,3.0485,2.8025,0.47469,0.41701,7.0569,11.0313,1.4046,1.4067,3.6797,3.6962,6.3437,6.5824,4.6207,4.7553,0.07952,4.3915,2.0977,2.2749,0.36306,0.37297,3.8566,4.389,3.7596,3.9462,1.6695,1.4743,10.0061,8.0967,2.2066,2.0088,3.5958,3.5359,4.0272,3.7566,1.4898,1.4953,1.9548,1.8292,3.3082,3.2293,7.1238,6.5483,1.9686,1.8537,6.349,6.2781,11.4667,9.7698,6.5453,5.6169,2.1145,2.2542,4.491,4.626,1.6742,1.7025,16.7745,19.1102,5.3553,5.8746,3.5903,3.9265,1.0275,1.358,2.374,2.393,6.8009,6.4198,13.1705,12.6184,2.4613,2.9054,3.863,3.7827,3.4565,3.4893,1.4944,1.3463,3.509,4.0438,8.9099,9.9817,2.56,2.7641,1.9964,1.9991,1.6992,2.1557,9.205,10.4789,2.1817,2.4222,1.8506,2.0488,11.8479,11.3461,1.6063,1.5331,1.033,1.1325,12.2098,12.5322,4.5863,4.6141,7.077,7.6971,3.977,3.4805,9.4686,9.0897,6.4901,6.1527,7.2488,6.2556,3.4733,3.6533,1.2118,1.3227,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd569,60,60,F,0.97219,2.0565,0.38968,0.46912,0.88409,0.90897,17.1079,2.7122,2.818,46.1005,44.2557,14.4586,15.0453,247.6648,242.1665,1.6012,3.2868,3.0577,0.57306,0.49363,16.018,16.0797,1.6668,1.6986,3.9642,4.0556,7.3168,7.7516,4.6086,4.8599,0.07566,4.8149,2.3699,2.584,0.40908,0.41743,4.0944,5.0062,3.946,3.8279,1.9409,1.8866,9.8139,8.3848,3.233,3.4592,4.0035,3.4424,3.9233,4.5253,1.7773,1.77,1.895,1.8338,3.8851,3.719,7.5272,7.6172,2.1663,2.2817,7.0583,6.3827,12.5056,12.1495,8.2483,7.7564,2.4307,2.8087,4.6992,4.6702,1.9521,2.0486,19.5505,19.7907,5.1827,5.4933,4.3857,4.4896,0.96357,1.036,2.3791,2.5647,7.9915,6.6172,14.9277,14.0223,3.3883,3.7622,4.4089,4.3812,3.1581,3.2747,1.6172,1.7989,4.2673,4.7365,10.4931,12.2321,2.8168,3.0593,2.4071,2.3405,2.3606,2.2689,9.3578,10.7959,2.5147,2.9716,2.126,2.4102,11.6364,11.3434,2.1452,1.8219,1.3419,1.4499,14.4163,14.177,5.3901,6.1416,7.4083,8.1767,3.8625,3.657,10.1514,11.0443,8.0635,7.8519,8.5115,8.2014,3.7113,3.8429,1.421,1.5846,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd570,83,83,F,1.303,1.9365,0.32134,0.36515,0.68021,0.70712,16.4883,2.1957,2.1076,44.5808,45.0794,14.3392,14.1809,223.5583,230.7701,1.1402,2.7353,2.4134,0.45832,0.63062,11.6909,13.9922,1.6961,1.7106,2.877,2.8304,6.3211,6.5938,4.5341,4.7758,0.08328,4.3013,2.1958,2.3454,0.35576,0.3396,3.9558,4.0768,3.8024,4.0645,1.5703,1.3981,9.1413,7.9235,2.4034,2.1827,3.6395,3.6814,3.5655,3.3427,1.4199,1.4257,1.694,1.7789,3.1505,3.1181,6.9291,6.775,1.7687,1.6396,5.0955,4.9819,9.6295,10.2714,6.3538,5.6111,2.1097,2.2157,4.491,4.7098,1.5491,1.618,14.8858,14.7604,4.149,4.9474,3.1815,3.3074,1.1105,0.84283,2.7387,2.0936,6.2218,5.8155,12.0451,12.4296,2.1773,2.8097,3.2993,3.8015,2.8766,2.889,1.2752,1.4634,3.7818,3.884,9.1945,9.0322,2.5645,2.826,2.0447,2.2063,2.1488,2.2148,10.0499,11.0569,2.0896,2.4597,1.8653,2.1965,10.4564,10.72,1.9087,1.8612,1.1289,1.1,11.5543,11.627,4.612,4.542,8.1414,8.823,3.3671,3.3862,9.9435,10.3875,6.605,6.9313,6.7398,6.4808,2.8631,3.7364,1.4195,1.4652,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd571,66,66,M,1.4915,2.2987,0.41158,0.42549,0.82482,0.79891,15.6103,2.7826,2.5286,27.9343,24.6806,11.4282,12.2296,221.5317,216.5383,1.5266,3.2033,3.0526,0.64456,0.55086,9.9975,12.3254,1.5032,1.5031,3.548,3.5807,5.7788,6.0637,4.3635,4.609,0.07937,4.6274,1.8793,0,0.36481,0.37418,4.1037,5.0827,4.174,4.4546,1.7374,1.5125,11.3973,9.2691,2.9551,2.5994,3.6842,4.2802,4.8828,4.1815,1.7921,1.6036,1.8574,1.8315,3.547,3.4402,7.5102,7.1633,1.9996,2.0001,6.9008,6.9858,11.1879,10.4543,7.714,7.1609,2.2044,2.324,4.9316,4.9652,1.7396,1.7602,17.6072,17.2788,5.3311,6.1117,3.6354,3.9717,1.1282,0.98038,2.3336,2.1709,7.7854,6.7189,14.1004,12.5885,3.3382,3.7749,4.3676,4.2388,2.944,2.7283,1.3825,1.3862,3.6767,3.8467,10.5986,9.7879,3.0955,3.1923,2.2915,2.4505,1.8438,2.387,9.9349,10.7906,2.3157,2.4751,2.0277,2.2819,11.4383,12.6192,1.6802,2.08,1.1179,1.1536,14.8581,15.4411,4.955,4.8412,7.8793,8.2928,4.755,4.1028,11.2976,11.1783,7.1474,7.1021,8.383,7.7869,2.9482,3.42,1.3584,1.5497,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd572,59,59,M,1.8962,1.9902,0.49537,0.54746,1.2526,1.1002,18.5915,3.856,3.6104,51.8561,49.4891,16.6983,17.4471,262.7638,248.9335,3.0552,3.7482,3.4711,0.78974,1.2937,34.3032,32.1618,1.8024,1.7673,3.9383,4.1041,7.3263,8.0711,5.0559,5.3377,0.0834,5.1119,2.4159,2.8418,0.41998,0.4378,6.2992,6.5134,4.7486,4.9004,2.0347,1.9205,12.7054,10.6247,3.2672,3.6169,5.3782,4.6133,4.6793,5.2218,2.0533,1.9971,2.4661,2.5455,4.3098,4.015,8.6704,7.9513,2.1982,2.2869,8.2375,7.2262,13.5076,12.7422,7.9634,7.6174,2.5803,2.6731,5.7806,5.3445,2.0182,2.2306,21.7039,21.2525,6.8947,6.6668,4.2985,4.5667,1.5299,1.2063,3.6503,2.8933,8.9508,7.6754,16.5941,16.1575,3.2839,4.0413,4.2578,4.6073,3.9768,4.0353,1.7436,1.7511,4.3861,4.9801,10.4931,10.9152,3.637,3.9265,2.8884,2.5772,3.2482,3.0595,10.4511,12.7437,2.5801,2.7361,2.519,2.704,13.0814,14.6171,2.25,2.7258,1.3886,1.3833,16.9133,15.4939,8.6997,6.0863,9.3326,11.8785,4.7519,3.8453,12.6491,12.081,9.9739,8.0384,9.5096,9.5514,4.3531,4.3416,1.9393,2.0174,,27,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd573,,,F,2.4702,1.8463,0.27619,0.32243,0.73957,0.65465,14.9737,2.0987,2.2076,39.7329,39.5897,12.8008,13.7952,155.842,156.4949,2.2484,3.2673,2.7243,1.7219,2.2641,32.5772,46.0499,1.2833,1.2696,2.877,3.0212,5.6653,5.6381,4.0239,4.1851,0.06174,3.9853,1.9304,2.3657,0.30397,0.32726,3.2047,3.8966,3.6817,3.8616,1.2616,1.1283,7.942,7.634,2.7214,2.4377,3.507,3.7464,3.9572,3.9218,1.2694,1.3803,1.8194,1.7217,3.2384,2.8601,6.2469,6.4238,1.5676,1.5903,5.5048,5.6584,8.7966,8.8112,6.6618,5.4669,1.7172,2.0075,3.8898,3.7621,1.3728,1.4253,15.3492,15.039,4.3254,4.638,2.9884,2.9419,1.0275,1.0809,2.3593,2.4855,6.4158,5.7327,11.6879,10.2645,2.4921,2.8955,3.3378,3.5527,3.3883,3.1208,1.2868,1.3388,3.0891,3.3874,9.0041,8.282,2.5252,2.6542,2.1383,2.1779,2.0023,2.0428,7.6447,8.9628,1.8322,1.8238,1.8828,2.1471,9.7711,9.0197,1.6954,1.635,0.93137,0.97308,12.5938,11.7842,4.6043,4.5881,6.3379,7.378,3.6263,2.8583,8.0575,8.4428,6.839,5.4729,6.8277,7.0087,3.2507,3.3288,1.4512,1.0805,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd574,83,83,F,1.1324,1.3928,0.30571,0.32521,0.76212,0.7152,15.4763,2.2033,2.0586,33.5806,31.3093,12.8008,12.532,203.8109,201.3279,1.1857,3.067,2.83,0.42811,0.4617,10.7726,13.8198,1.2771,1.2439,2.742,2.9976,5.7702,5.8176,3.8355,3.9699,0.06699,3.6568,1.89,2.1901,0.30745,0.31193,3.222,3.5295,3.3701,3.5495,1.5597,1.3371,8.2003,8.2347,1.9566,2.0414,3.5019,3.4708,4.2997,3.8266,1.4808,1.3406,1.6169,1.7285,3.1757,2.6873,6.085,6.0492,1.7222,1.7244,5.3595,5.8648,9.7293,9.4931,6.0729,5.6169,1.8193,2.0345,3.8303,4.1336,1.3389,1.4058,14.8866,14.7416,4.5609,5.2227,3.2048,3.4158,1.0149,0.95079,2.3593,2.1558,6.4004,5.5572,11.9962,11.3461,2.1184,2.9338,3.3293,3.2582,2.7786,3.153,1.2641,1.3064,3.5868,3.794,8.7866,8.9244,2.403,2.7285,1.8642,1.7371,2.0023,2.0021,7.6447,9.5154,1.9447,1.9402,1.6437,1.9804,9.7905,10.5862,1.6444,1.6423,0.9635,0.98202,11.5987,11.8188,4.612,4.5881,7.2679,7.7181,3.6081,2.9298,9.1446,9.4275,6.2459,6.4189,6.2694,6.5267,3.018,2.9795,1.2221,1.1861,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd575,63,63,F,1.7016,1.6037,0.34508,0.35654,0.64699,0.6525,19.5657,2.6894,2.1533,48.6965,47.8809,15.6718,15.6548,209.6607,198.8349,1.6254,2.6384,2.654,1.277,0.85539,16.8999,14.3974,1.5907,1.5154,2.9734,3.0408,5.5724,6.3151,4.3976,4.5994,0.07252,5.4473,2.2979,2.8142,0.35155,0.33917,4.1125,4.3576,3.2609,3.8048,1.6128,1.2537,9.1914,9.7234,2.4683,2.3553,3.8943,4.4165,3.8567,3.3427,1.2982,1.3281,1.8713,1.841,3.443,3.3108,6.9342,6.7579,1.7976,1.8242,5.688,5.3327,11.0775,9.5404,6.9996,6.3769,1.9966,2.067,4.4169,4.5033,1.406,1.5183,16.1624,16.7384,3.9228,5.5329,3.3972,3.3636,1.1405,1.2119,2.6776,2.6288,6.7768,6.5859,13.43,12.4403,2.3112,2.5508,3.5847,3.5685,2.6471,2.9683,1.4296,1.4422,3.7653,4.0047,9.1945,10.9225,2.8073,2.898,2.199,2.4505,2.1988,2.4738,11.0103,12.0485,1.8586,2.1719,1.9774,2.2385,11.0384,11.6814,1.9087,2.1021,0.99556,1.0193,12.6543,13.483,5.184,4.608,8.1332,9.4317,3.4558,2.8296,9.7767,10.3875,6.8112,6.9033,6.8277,6.6647,3.2086,3.5457,1.4169,1.381,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd576,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd577,66,66,M,0.91329,1.714,0.3977,0.44415,0.92482,0.862,18.6779,3.1158,2.9302,45.3326,46.1125,15.0445,15.1504,237.8669,235.5834,0.78724,3.4963,3.1564,0.40118,0.37161,7.7344,7.1916,1.727,1.7194,3.7745,3.8764,7.7732,7.9295,4.7272,5.2915,0.07484,4.467,2.2621,2.5807,0.38576,0.37701,3.9767,4.4773,3.8644,3.9875,1.6453,1.5719,9.4246,8.957,3.6417,3.3652,3.8236,4.1588,5.2421,5.1469,1.7414,1.7317,1.9338,2.0205,3.6165,3.4426,7.0668,6.7579,1.9964,2.1019,6.0577,6.6269,11.0364,11.0186,8.5193,7.7624,2.1651,2.3112,4.5246,4.2283,1.7781,1.931,18.0963,18.8864,4.4501,5.5222,3.6617,4.0271,0.99419,1.0727,2.404,2.5647,7.6525,6.833,13.523,13.6104,3.6665,4.2514,4.1414,4.6383,3.7655,3.3859,1.596,1.4794,3.5506,4.0902,10.0705,10.1722,2.843,3.095,2.1271,2.1136,2.1501,2.0983,9.398,10.3083,2.4149,2.4704,1.843,2.0166,12.809,13.5901,1.9192,1.5331,1.189,1.2136,14.486,14.4765,5.7842,5.6432,6.8716,7.7832,4.5184,4.2588,9.4148,10.6744,6.6412,6.1527,7.8081,7.1257,3.384,3.9585,1.3372,1.2654,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd578,76,76,M,1.9071,2.5673,0.30154,0.33023,0.62673,0.70803,16.6617,2.7353,2.9035,45.1608,44.2557,14.0549,14.6336,193.1778,192.4498,1.1571,2.9616,2.7257,0.76116,0.87676,14.2,15.4314,1.3961,1.428,3.3468,3.7764,5.7264,6.0814,4.1144,4.377,0.07651,4.7659,2.3064,2.4794,0.33227,0.36174,3.9012,4.4726,4.1021,4.2913,1.5847,1.3681,9.913,8.5714,3.2626,3.2515,3.8917,3.6837,4.209,4.3568,1.3618,1.3701,1.9209,2.0771,3.1852,3.3483,7.1605,6.8644,1.9542,1.8935,6.2178,5.8453,11.1469,9.8852,7.6204,7.2067,1.8806,1.998,4.3328,4.4422,1.5572,1.5011,17.1221,17.3434,4.6104,5.7567,3.7817,3.5451,1.0648,1.0929,2.2614,2.2378,7.4902,6.7828,14.1728,12.1722,3.0013,3.0168,3.9841,4.0405,3.3441,3.3007,1.4666,1.4238,3.911,4.2804,10.1163,10.216,2.6925,3.0222,2.482,2.3193,2.2478,2.5173,9.2992,10.7959,2.1033,2.1298,2.0168,2.1861,10.7009,11.5985,2.1452,2.1044,1.0351,1.0655,12.9133,12.9542,4.8616,5.388,8.0442,8.9968,3.8119,3.2589,9.3095,9.8936,8.4678,7.3659,6.7398,6.634,3.3574,3.713,1.527,1.5321,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd579,65,65,M,1.4694,2.1107,0.39742,0.39625,0.74951,0.70779,18.9937,3.2685,3.1426,47.8126,46.7113,16.5091,16.2637,252.377,250.3627,1.3304,3.2393,3.135,0.64456,0.65246,18.3746,19.0497,1.7519,1.7979,3.6943,4.0139,7.4658,7.7091,4.8194,5.0823,0.07009,4.4861,2.236,2.5582,0.33588,0.40229,3.8308,4.4339,3.919,4.0202,1.828,1.5173,10.9565,9.7323,3.0653,2.9878,4.3517,4.3733,4.4695,4.1975,1.381,1.3727,1.8713,1.87,3.7478,3.507,6.9342,6.9429,2.39,2.3147,6.0687,6.6913,10.8435,11.1512,7.262,6.6851,2.1175,2.2929,4.5029,4.7261,1.815,1.8608,18.8562,19.7988,5.0966,6.4443,4.0994,4.5134,1.423,1.2133,3.209,2.8081,7.8169,6.6437,13.5199,13.2642,2.6698,3.198,3.8431,3.9724,3.5265,3.8409,1.3489,1.4865,3.5251,4.1599,8.8532,9.6546,2.5475,2.826,2.2065,2.3419,2.7145,2.5505,9.8581,11.1147,2.3016,2.3246,2.2013,2.3636,12.2431,11.7792,1.9137,2.1005,1.3224,1.3388,15.211,14.5999,5.1829,5.0238,7.8621,8.9635,3.9771,3.2399,10.8623,11.0565,6.7205,7.4058,7.0886,6.8093,3.3557,3.7579,1.9478,1.6296,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd580,59,59,M,2.3612,2.0322,0.39339,0.44495,0.70174,0.67811,17.6046,2.8479,2.7719,44.0812,44.4978,13.8667,13.9821,224.9191,218.4875,1.651,3.1193,2.8348,0.97819,0.84609,22.1398,29.4319,1.5866,1.5818,3.514,3.5655,6.7414,7.4037,4.3457,4.5147,0.08108,4.4978,1.9961,2.3922,0.40743,0.4058,4.3327,4.9042,4.3955,4.8613,1.8997,1.5261,11.5855,11.0556,3.7793,3.7946,5.0674,4.399,5.5844,5.3039,1.4992,1.4985,1.9956,2.118,3.8129,3.9511,7.0984,7.0253,2.2963,2.2756,7.4434,7.9981,11.9225,11.819,8.8586,8.3526,2.2302,2.4933,4.7105,5.0957,2.1551,1.9582,18.6028,18.5534,6.1579,7.1574,4.1808,4.3193,1.1898,1.3481,2.9708,2.8656,8.4573,7.21,15.2276,15.5091,3.864,4.5715,4.5189,4.6446,3.5688,3.3859,1.6283,1.6617,4.0738,4.7499,12.422,11.6244,2.7607,3.0142,2.771,2.6624,2.9302,2.4877,11.4327,14.025,2.3579,2.9716,2.3544,2.704,13.7538,14.7662,2.5439,2.0692,1.4368,1.3904,16.0842,16.071,5.7548,5.7842,9.4078,9.7432,4.6967,3.9702,11.2368,10.7001,8.2518,8.7394,8.2744,8.0864,3.6622,3.6306,1.7496,1.5427,,21,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd581,82,82,M,2.6191,2.3996,0.40488,0.42438,0.9567,0.99575,21.8183,3.2034,2.9093,47.8821,48.3291,16.5514,17.0034,254.1394,252.6338,1.6256,3.4505,3.3306,2.1061,1.9334,31.8545,38.6828,1.7338,1.7342,3.6943,3.8839,6.82,8.0247,4.8935,5.2435,0.08878,4.5193,2.1892,2.4445,0.45814,0.43386,4.3991,5.3212,4.7992,4.6196,1.993,1.6626,11.1846,9.6772,3.7591,3.613,4.5932,4.5869,5.7418,5.2259,1.948,1.8275,2.3205,2.0081,4.0056,3.8607,8.2273,8.2176,2.1816,2.1924,7.4279,7.4721,12.5933,12.2691,8.5372,8.3309,2.5593,2.6724,4.3481,4.3875,1.9726,1.8985,19.0468,19.4487,5.4008,6.1756,4.23,4.2106,1.0365,1.3173,2.4677,2.8608,8.5647,7.7965,15.2482,15.3204,3.2773,3.6204,4.6384,4.5282,4.2277,4.0702,1.7098,1.8436,4.2346,4.7365,11.5144,11.4892,3.425,3.5841,2.5671,2.3877,2.5551,2.7762,9.8581,11.519,2.7026,2.8007,2.333,2.4949,12.4627,12.5472,2.172,2.3236,1.3879,1.3937,17.0549,15.5659,6.2281,5.8365,7.4591,8.6361,4.9162,3.8453,11.4734,9.6688,8.223,7.1803,8.8345,8.4033,3.8521,3.8429,1.6556,1.9283,,26,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd582,67,67,M,2.069,2.9716,0.19817,0.28135,0.60887,0.6151,15.8484,1.6327,2.2449,36.777,35.054,11.8682,12.2415,193.1734,193.5193,1.6755,2.4818,2.5602,1.0796,1.3042,22.9569,25.7898,1.3624,1.369,3.0357,3.0356,5.5443,5.9124,4.2099,4.3906,0.07342,4.5791,1.8979,1.7593,0.2665,0.31519,3.5062,4.1491,3.5439,3.7476,1.5075,1.2714,8.2616,7.1535,3.2408,2.8266,3.1196,3.7782,4.5113,3.6052,1.2558,1.137,1.7128,1.7689,3.1919,2.5791,4.8245,5.759,1.9131,1.8321,6.173,6.1533,7.4539,8.1703,7.4372,6.4034,1.9375,2.0203,3.854,3.8523,1.5375,1.4705,15.8147,16.3618,4.6196,5.5864,3.4163,3.4001,1.0737,1.0314,2.1395,2.2973,6.74,5.6651,8.7517,10.6693,3.0239,3.4184,4.0487,3.5251,2.8593,2.6764,1.211,1.1968,3.1265,3.4752,8.079,8.1084,2.3174,2.7562,2.06,2.1573,1.5787,1.8287,8.0621,10.0256,1.9032,1.9178,1.843,2.2036,12.4461,12.8857,1.4138,1.6744,1.0968,1.2045,12.5855,13.0025,4.6006,4.7366,6.5027,7.378,4.5928,3.325,8.8583,8.9572,6.0248,5.7493,6.3232,6.0018,2.7704,3.3566,1.2209,1.4902,,9,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd583,82,82,F,1.1814,1.6201,0.38358,0.41034,0.81053,0.78801,16.0067,3.1379,3.0305,40.2388,42.8051,11.4282,12.3842,195.4331,191.9704,1.2419,3.3738,3.1595,0.81467,0.48349,11.9376,12.7441,1.359,1.3274,3.3584,3.0976,6.376,6.6497,4.2416,4.425,0.07686,4.0379,1.9707,2.0971,0.38957,0.29494,3.9522,4.389,4.2152,4.2558,1.7669,1.616,9.5952,8.3923,3.1163,2.7603,3.9442,4.1343,4.4936,3.7986,1.668,1.5748,2.0685,2.0529,3.8378,3.6495,6.768,6.1466,2.2451,2.4717,5.7045,5.9589,10.8862,9.8933,6.9015,6.6783,2.2997,2.5025,4.5074,4.7802,1.7839,1.7715,19.2383,20.0068,5.0917,5.7141,3.8301,4.3007,0.91562,1.1718,2.3443,2.5142,7.6104,6.7603,13.2712,12.5919,2.4357,2.8772,3.5627,3.7681,3.0386,3.6754,1.6731,1.554,3.5927,3.9948,10.2546,10.4622,2.6897,2.8781,2.3262,2.5971,2.4415,2.224,9.8526,11.0461,2.5048,2.6967,2.2136,2.5405,11.7128,12.7244,2.0972,1.8612,1.0818,1.1133,12.5188,12.9671,5.0335,5.2827,7.9481,9.4288,3.9933,3.5299,10.6321,11.3401,6.9792,6.718,7.5284,7.4025,3.4577,3.7072,1.6766,1.7641,,28,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd584,73,73,F,1.0728,1.4846,0.43242,0.49152,0.92814,0.94991,17.7466,3.1525,3.248,44.0934,43.0986,14.0101,14.4657,235.8337,237.6268,1.005,3.4963,3.392,0.42881,0.40076,8.8972,9.8195,1.7202,1.7586,3.6541,4.1054,7.3168,7.4762,4.6439,4.9351,0.0773,4.5422,2.0385,2.4066,0.37923,0.38759,4.1386,5.0062,3.8678,3.8757,1.9333,1.8123,9.3863,8.7286,3.233,3.1032,4.2217,4.4532,3.9233,4.7369,1.7926,1.9605,1.8274,1.8746,3.8131,3.5514,8.055,7.714,2.13,2.2699,7.2177,6.8933,12.5964,12.0413,7.9804,7.294,2.4377,2.7182,4.5917,4.626,1.9883,2.032,19.5505,19.6679,5.8715,7.1033,4.3741,4.5213,1.0728,1.2561,2.4162,2.9477,8.5083,7.5175,14.6469,15.5411,3.5397,3.4538,4.5684,4.3266,3.2259,3.2356,1.5468,1.597,4.0397,4.2848,10.7143,10.4042,2.9867,3.4223,2.1427,2.1169,2.6699,2.7283,11.3472,12.3416,2.564,2.8076,2.1764,2.1765,13.4823,13.6239,2.2121,2.1403,1.3402,1.3112,12.9467,14.6558,5.6541,5.7898,8.3019,8.7049,5.4604,3.7842,10.9174,10.9341,8.223,7.9989,8.9281,8.1597,3.251,3.7006,1.7576,1.7284,,25,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd585,77,77,F,1.8949,1.894,0.37638,0.47086,0.83404,0.75706,17.8318,3.1894,3.1873,48.1232,48.6387,14.4953,14.7292,217.423,213.6136,1.541,3.3798,3.0874,1.2486,1.08,26.1218,25.3654,1.5531,1.5147,3.9666,4.6426,6.7401,7.2447,4.5448,4.7205,0.07881,4.4512,2.2475,2.7424,0.38849,0.38773,4.7063,4.9132,4.5078,4.2093,1.9924,1.5177,10.2329,8.8426,3.3256,2.8124,4.0531,4.2542,3.9233,3.6543,1.5978,1.4104,2.1111,2.0354,3.7899,3.4222,7.1612,6.8294,2.1668,2.1645,6.5767,6.2837,10.8817,10.9826,7.262,6.5722,2.8092,2.4717,5.2013,5.5488,1.9356,1.8729,18.5625,19.9508,4.884,5.7884,4.7054,4.8288,0.85424,1.208,2.2517,2.5142,8.2489,7.9001,14.0337,12.7951,2.7691,3.1936,3.927,4.1079,3.8623,3.7312,1.9195,1.5328,4.2651,4.4163,10.9832,11.3682,2.9383,3.4943,2.2716,2.3392,2.1452,2.354,9.0305,11.7269,2.5828,2.7294,2.0719,2.2819,12.4988,12.8509,1.6382,1.8088,1.2498,1.3543,14.6511,14.7358,5.8085,5.4055,7.1324,8.3596,3.2345,3.1602,10.2725,9.6688,6.9565,6.1527,7.622,7.6262,3.8903,4.0228,1.2649,1.5846,,17,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd586,72,72,F,1.2241,1.8021,0.34773,0.36013,0.80711,0.77713,17.7846,2.8534,2.5373,48.0936,47.977,14.5685,14.7727,216.5298,210.1924,1.2792,3.2932,3.0832,0.69273,0.56191,15.6377,18.9404,1.5661,1.5034,3.0876,3.3076,7.0232,7.1699,4.5291,4.7758,0.079,4.8245,2.3034,3.0156,0.32441,0.37409,3.1277,3.4415,3.2802,3.4544,1.5475,1.443,9.3742,8.3897,3.3453,3.5413,3.2381,3.0664,4.6626,4.5031,1.6902,1.5799,1.4564,1.5965,3.1487,2.6506,7.2951,6.9637,1.7086,1.8008,6.2522,5.8054,10.9034,10.8522,8.271,7.19,1.9799,2.1075,3.881,3.8452,1.3142,1.301,16.0591,15.5558,4.5897,5.8863,3.3669,3.5866,1.1914,0.83847,2.7537,2.1453,5.7327,4.8291,13.0026,13.4861,3.0174,3.3791,4.2749,4.1283,3.1041,2.4846,1.3816,1.2335,3.4327,3.5833,10.0705,9.5476,2.9544,3.1342,1.9343,2.154,2.176,2.1431,9.151,10.5503,2.0741,2.2599,1.7975,2.1378,10.5583,11.5137,1.9236,1.6968,0.96674,1.0339,15.7621,14.3556,5.2431,5.4187,7.8114,8.2933,4.2409,3.6107,9.197,10.6744,6.7367,6.9714,8.145,8.1809,3.4556,3.2835,1.3212,1.5556,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd587,73,73,F,1.4415,2.5699,0.33898,0.41026,0.8557,0.83393,16.4182,2.5437,2.5484,44.2168,43.5553,12.5217,12.7326,207.8475,204.5753,1.33,3.2688,3.0452,0.79388,0.92141,12.6277,19.0423,1.3967,1.3821,3.4401,3.6105,5.8915,5.9124,4.0988,4.2753,0.08755,4.2336,1.8515,2.4289,0.38664,0.3918,4.3671,4.9046,4.0554,4.1261,1.6952,1.763,11.5015,10.0351,2.5892,2.4315,4.0791,3.865,4.2182,3.6537,1.6102,1.567,2.1733,2.0412,3.8834,3.4137,7.6877,8.0186,2.2039,2.1218,5.6893,6.7482,11.5909,12.4775,7.2789,6.5803,2.1234,2.5783,4.8273,5.473,1.9531,2.0564,19.556,19.7152,4.8922,6.5332,4.121,4.0472,1.1132,1.2433,2.711,2.6061,8.6739,7.6754,15.3987,14.5309,2.3287,2.8772,3.5923,3.9646,3.1875,3.4886,1.5768,1.6331,4.0449,4.6726,10.9706,10.7426,2.8378,3.1061,2.2872,2.3037,2.206,2.5253,9.3549,11.3454,2.1878,2.5716,2.1024,2.4352,12.189,12.3532,1.6382,1.8775,1.1517,1.2673,15.8186,15.2836,5.4956,5.4624,7.2171,7.9466,3.56,2.7383,10.994,10.683,7.0929,7.6646,7.9541,7.9123,4.0176,4.504,1.4241,1.5449,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd588,75,75,F,1.6914,2.0278,0.4353,0.45413,0.74044,0.73158,16.7411,3.6279,3.4738,46.7065,46.4122,12.1684,12.1483,231.3293,224.409,1.4629,2.7568,2.4984,1.2937,1.0519,21.0918,23.1056,1.585,1.5627,3.6551,3.8682,6.3195,6.5563,4.6607,4.9817,0.07698,5.1586,2.231,2.6432,0.38849,0.38373,4.8784,5.2082,4.4452,4.2475,2.1559,1.6986,11.2125,9.2691,2.8136,2.868,3.9162,3.9928,4.518,4.5253,1.4826,1.366,2.0558,2.1194,4.355,4.3243,7.7057,8.1847,2.4457,2.4964,7.0963,6.4688,12.2047,12.5009,7.4187,7.1973,2.586,2.5297,5.5142,5.1372,2.1863,2.0045,21.6581,21.5817,5.3797,6.9378,4.3326,4.4733,0.99532,0.9325,2.5734,2.3427,8.8586,7.5129,15.3034,15.2735,3.4728,3.4664,4.0656,4.1949,3.5849,3.5948,1.868,1.4684,3.9231,4.3719,10.6144,10.4791,2.8551,3.0972,2.3018,2.2356,2.2636,2.222,11.7534,12.5231,2.4163,2.7276,2.0277,2.1959,13.0812,15.2549,1.9195,1.6366,1.3131,1.3772,14.4163,17.2763,5.7917,6.0123,8.8275,9.5465,3.9606,4.0134,11.5295,11.6074,6.8571,7.4128,7.2006,7.5986,4.1919,3.8815,1.4808,1.3749,,23,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd589,,,F,1.0706,1.5911,0.38436,0.42053,0.83627,0.90499,18.2717,2.7122,2.7179,44.8393,43.5553,14.882,14.7444,208.496,206.0394,1.1534,3.328,3.0832,0.65429,0.66107,10.5676,12.2315,1.6042,1.633,3.7198,3.4659,6.8393,7.0601,4.3656,4.6267,0.07215,4.9875,2.3387,2.4507,0.40429,0.41743,3.7469,4.3216,3.9727,4.2877,1.7091,1.5455,10.4568,10.3137,3.0144,3.0912,3.7325,4.138,4.4619,4.3633,1.5899,1.77,1.9544,1.7632,3.4888,3.2115,7.6932,7.3827,1.9102,1.7568,7.231,6.8361,13.2069,12.02,7.5148,7.4574,2.2645,2.2322,4.574,4.8029,1.703,1.7058,19.1158,18.7306,6.1064,6.9135,3.7853,3.8819,1.0535,1.0249,2.7296,2.5553,7.9901,6.4788,15.1353,15.4839,3.0832,3.6204,4.3228,4.2021,3.8315,3.0539,1.6238,1.2876,3.7645,4.0597,10.1319,10.4497,2.7121,3.0905,2.1379,2.224,1.9191,2.1615,10.305,11.8171,2.3559,2.4146,2.1764,2.3742,14.1,13.0547,1.8846,1.7358,1.1264,1.1542,14.7709,15.2019,5.7421,4.9107,8.5548,9.4144,4.3993,3.0348,8.9606,9.9701,7.3271,7.9968,7.2099,7.775,3.9282,3.5224,1.4521,1.5657,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd590,43,43,F,0.98668,1.8414,0.34906,0.42314,0.81267,0.79086,17.5712,2.5021,2.609,48.0936,48.3698,13.7119,13.784,187.5436,180.9211,1.0689,3.1608,3.0738,0.44345,0.46701,9.599,9.8195,1.3722,1.315,3.4854,3.6105,6.2039,6.3765,4.2961,4.6406,0.07462,4.7782,2.3474,2.4605,0.38664,0.35033,3.2603,4.3072,4.0836,4.1033,1.593,1.5227,9.4724,8.9824,2.79,2.8543,3.2401,4.1069,4.0791,3.8755,1.5551,1.5263,2.0993,1.8123,2.9622,3.3513,7.6467,7.4944,1.7872,1.8084,6.4737,5.7707,11.5048,12.2668,7.7729,7.5597,2.0749,2.2204,4.5201,4.708,1.4698,1.6229,14.9524,17.1511,5.7265,5.896,3.4649,3.5988,0.9974,0.98038,2.4623,2.4017,7.7702,6.3666,14.115,13.8484,2.877,2.8953,4.3071,4.3582,3.356,3.1531,1.4383,1.2722,3.8557,4.1629,9.7114,9.3708,2.9139,3.0711,2.3548,2.2191,1.7161,2.03,9.7161,10.5191,2.25,2.1983,2.0151,2.1861,12.0262,12.061,1.5063,1.7509,1.0434,1.1263,13.2127,12.9795,4.6765,4.7393,8.0882,7.5044,3.9438,3.5299,10.9249,11.2121,7.4213,7.4732,7.4136,7.8874,3.4306,3.6608,1.3977,1.3732,,30,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd591,66,66,M,1.7179,2.2014,0.42297,0.43145,1.056,1.0531,22.1157,3.0201,2.7297,56.6536,56.9775,19.0103,18.9707,317.1721,277.4785,1.4746,3.8622,3.8589,0.57608,0.43567,14.6737,20.8669,2.4612,2.1712,3.9125,3.8762,8.9716,8.4379,5.937,6.1972,0.08927,6.2257,2.6867,3.2649,0.42509,0.43386,4.2524,5.4815,5.1134,5.7224,1.9376,1.8863,11.2043,9.9313,3.9552,3.6488,4.2875,5.2749,6.2507,4.613,2.0749,1.8749,1.9271,1.7176,3.89,3.9239,8.823,8.2358,2.4357,2.2114,6.9133,7.3628,12.2874,12.2691,8.5558,7.8045,2.4443,2.9018,5.3121,5.76,2.0133,2.1414,19.7636,21.0272,5.5313,6.1756,4.2925,4.6011,1.041,1.1651,2.693,2.379,9.1265,8.1268,15.5635,16.0116,2.9965,3.2917,4.6395,4.8903,3.5605,3.4564,1.4006,1.6829,3.9916,4.5055,11.3331,11.0082,3.4057,3.6186,3.0874,3.0549,2.6699,3.1235,12.1582,12.6033,2.9609,2.9932,2.9434,2.8625,13.3306,13.2312,2.0618,2.425,1.3429,1.3833,15.111,14.5999,6.2218,6.1762,8.7476,10.2506,4.6967,3.2423,11.5215,12.7536,8.4401,9.1999,8.4612,9.0002,3.7288,3.9967,1.9135,1.7583,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd592,70,70,M,1.8751,1.9879,0.44771,0.49261,0.91497,0.8445,20.0813,3.4755,3.2439,53.1828,52.2641,17.5865,17.5743,275.5598,294.1752,1.4161,3.6539,3.3696,0.62802,0.51445,14.5829,16.7889,1.8734,1.8386,4.2333,4.6599,7.2338,7.7786,5.459,5.5975,0.0834,4.5484,2.3553,2.8418,0.38806,0.38335,4.3893,4.4582,4.8816,4.7371,1.7974,1.5044,9.3221,9.359,3.4724,3.5156,3.907,3.9955,5.1796,4.7218,1.7792,1.5657,2.1172,2.2036,4.1722,3.9438,8.0084,7.4547,2.2056,2.1023,7.2674,6.639,12.347,12.0185,9.1257,7.4205,2.421,2.5075,4.5105,4.739,1.8996,1.7924,19.7097,19.4086,5.5033,6.6615,4.0524,3.9735,1.1101,0.87314,2.726,2.2374,7.8169,7.0023,14.5562,13.9405,3.3716,3.4271,4.7616,4.8982,3.7049,3.2288,1.7436,1.7998,4.1495,4.7152,11.6293,11.1584,3.0673,3.1342,2.5451,2.5832,2.4729,2.4288,10.533,12.368,2.4505,2.568,2.4364,2.5274,12.3701,10.8132,1.7379,2.0179,1.1482,1.2324,14.0018,15.0536,5.2403,5.0286,8.042,8.0809,4.3351,3.4882,10.4796,10.7712,6.597,6.7011,8.2108,8.2217,3.6747,4.1613,1.5085,1.8654,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd593,74,74,M,1.8958,1.548,0.32138,0.32916,0.60319,0.68262,19.6895,2.6213,2.517,49.7075,49.8549,16.0443,16.4591,213.239,207.5702,1.6214,2.7667,2.749,0.85013,0.79331,14.077,13.0165,1.5049,1.5146,3.1413,3.4574,6.3053,6.641,4.5223,4.7895,0.07497,5.7295,2.4571,2.5642,0.35437,0.33321,4.0376,4.3224,3.8533,4.144,1.5403,1.3787,9.913,8.8278,3.0608,2.9403,3.8597,3.6837,4.1507,4.0744,1.1403,1.2756,1.8245,2.0088,3.3608,3.3168,6.2469,6.4193,1.9853,2.0388,5.8617,5.1279,10.4349,10.5122,7.2742,6.5916,2.074,2.1402,4.2076,4.4356,1.6566,1.7132,15.5254,15.3404,5.0392,5.6353,3.5202,3.9017,0.93612,1.0155,2.261,2.2297,6.9936,6.5953,13.3075,13.4424,2.8122,3.0027,3.6132,3.4211,3.3441,3.2888,1.5482,1.5949,3.6701,4.1836,10.2366,10.2054,2.3174,2.8084,2.1981,2.2121,2.1988,2.222,10.0747,10.8967,2.0643,2.4873,2.1026,2.2505,12.0903,12.7244,1.8306,1.6485,1.0636,1.2203,12.2432,12.8249,4.8783,5.415,8.8547,10.2499,4.0913,3.2846,10.1514,10.6964,7.5457,7.1837,6.7848,7.1531,3.6063,3.5866,1.6192,1.3936,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd594,68,68,F,2.1805,1.9084,0.40957,0.42454,0.86543,0.87128,12.5951,2.9284,2.5095,21.6404,23.5087,12.6449,12.4571,214.4995,213.0231,1.817,3.3497,3.1889,0.70855,0.63192,13.6796,18.1597,1.4269,1.41,3.3584,3.3541,6.0299,6.4523,4.4591,4.7434,0.07502,4.9095,2.1931,0.2032,0.40247,0.40852,4.8125,5.2849,4.1919,4.5659,2.3092,1.6718,10.3061,9.2428,2.7977,2.9037,4.3756,4.3194,4.7671,4.8912,1.6726,1.5507,2.0832,2.2116,4.4148,4.0095,7.7176,7.4774,2.1301,2.129,7.1576,7.438,12.1627,12.5233,8.9171,7.7195,3.0055,2.5063,5.4808,5.1372,2.1264,2.3605,21.6418,21.8414,5.2902,6.1152,4.5976,4.6798,0.98736,1.1127,2.4198,2.7193,8.6872,8.2813,14.3888,14.611,3.0215,3.7806,4.7817,4.6343,3.8209,3.4639,1.8308,1.6605,4.3882,4.8942,11.5494,11.4892,2.8747,3.0748,2.5404,2.416,2.2216,2.5265,10.0428,12.9774,2.6885,2.8981,2.0711,2.2819,12.4988,12.3724,1.8799,1.9192,1.3379,1.4764,16.4919,17.2763,6.2438,5.9421,7.6318,8.1905,4.6318,4.1879,10.6104,11.9597,6.5986,7.7327,8.3084,7.9123,4.5346,4.4132,1.442,1.5449,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd595,81,81,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd596,58,58,F,0.99857,1.9683,0.38153,0.41664,0.77349,0.75879,17.5712,2.8135,2.7139,48.0936,48.3698,14.3962,14.5866,215.7579,212.556,1.0408,3.108,2.8797,0.62914,0.44762,9.6558,10.5276,1.4582,1.5196,3.3207,3.3873,6.3787,6.6196,4.2758,4.4306,0.07799,4.7194,2.2693,2.8859,0.37755,0.37594,3.8443,4.4354,3.6847,4.1797,1.6328,1.4906,9.467,8.5799,2.7614,2.5086,3.5002,3.6124,4.0791,3.9273,1.5192,1.4774,1.7747,1.5849,3.5843,3.4439,6.7819,7.0611,1.9391,1.9376,6.0143,6.5072,10.9634,10.4273,7.6316,6.9613,1.9809,2.2255,4.0914,4.2246,1.6189,1.64,18.315,18.8721,4.4676,5.4256,3.6215,3.73,0.9308,1.021,2.4858,2.5952,6.9852,6.5047,13.5871,12.3186,2.649,3.2088,4.0484,4.168,3.2803,2.6854,1.4587,1.3667,3.7277,4.3165,10.1147,10.5263,2.8045,2.9231,2.1593,2.2312,1.958,2.183,10.3066,11.6679,2.2016,2.2676,1.8653,2.249,11.4526,12.3543,1.5749,1.7358,1.054,0.97977,13.7655,12.9869,5.0858,5.1043,7.4809,9.1592,3.907,3.3555,9.2403,10.1601,6.1503,6.5548,6.9366,7.1531,3.5707,3.3509,1.3621,1.376,,27,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd597,74,74,M,2.2559,1.8026,0.41211,0.47384,0.71715,0.73047,20.5451,3.5829,3.292,47.6832,49.1911,15.5572,16.4765,260.1334,255.7585,1.6649,3.1193,3.1597,0.78206,1.0427,23.0982,26.0747,1.8326,1.7829,4.1266,4.2219,7.4658,8.0711,5.202,5.5824,0.09098,4.6047,2.2414,2.7442,0.42318,0.4362,4.3045,4.7719,4.7838,4.6196,1.7974,1.5801,11.0488,9.418,3.7591,3.255,4.479,4.6948,6.1535,5.0645,1.5225,1.6728,2.2342,2.1482,4.1379,3.8607,7.0327,7.3628,2.37,2.3284,7.6147,7.9157,10.1361,10.1935,8.5997,8.0332,2.422,2.3359,5.2304,5.5482,1.8236,1.8758,17.9533,18.5534,5.4944,6.7847,4.1959,4.4698,1.1911,1.164,2.8466,3.0391,7.9185,6.8283,13.9152,12.7949,3.7041,4.4443,4.6967,4.4974,3.8129,3.4774,1.7436,1.3119,4.0738,4.6896,11.392,11.2225,2.7524,3.0142,2.5451,2.6759,2.6137,2.7727,11.7534,12.6033,2.7907,3.2117,2.3959,2.5945,13.5707,13.2312,2.2121,2.5189,1.2903,1.3407,15.9411,15.5325,5.308,5.2519,8.9801,9.3648,5.1542,3.3474,10.9764,10.7163,7.1791,7.801,7.8174,7.0749,3.8196,3.4713,1.5567,1.8082,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd598,79,79,F,2.1836,1.9933,0.32836,0.38838,0.65297,0.78155,18.4429,2.5686,2.6066,49.1293,48.2143,14.6035,14.5574,209.0358,204.9386,1.9267,2.6675,2.8161,1.2616,0.859,21.2596,22.5116,1.5162,1.4795,3.3633,3.0976,5.785,6.5162,4.5123,4.7728,0.07898,4.9061,2.452,2.5642,0.37411,0.34531,4.4639,4.6505,4.1966,3.9908,1.6054,1.3855,11.4685,10.0351,2.725,2.5086,4.3688,4.2224,4.4505,4.3004,1.2013,1.4871,2.1347,2.1908,3.5291,3.2982,6.7401,6.8975,1.9635,2.0807,5.9047,5.9248,10.6118,10.6466,7.1372,6.9034,2.1112,2.2506,4.88,4.5042,1.7712,1.902,17.6235,18.0674,4.8922,6.1263,3.6617,3.8912,0.86718,1.0828,2.2727,2.7085,7.9787,6.9709,14.2384,13.7692,2.4873,3.2646,3.9054,3.9667,3.551,3.7512,1.4955,1.4648,3.9306,4.3719,10.263,10.3716,2.7583,3.231,2.61,2.4935,2.56,2.573,9.9071,11.8666,2.2296,2.5069,2.3544,2.499,13.0528,14.0706,2.0333,2.1631,1.1388,1.2447,14.0128,14.4115,5.5701,5.845,7.2171,8.3731,3.7227,3.1602,10.6511,10.0025,7.7471,6.6285,6.7935,6.9968,3.7283,4.3296,1.8464,1.7926,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd599,78,78,F,2.0444,1.7023,0.35875,0.41846,0.69746,0.74646,17.8724,2.9267,2.7264,44.5851,43.8058,13.6405,14.0245,216.9418,210.2855,1.576,2.8518,2.6784,1.0439,0.85943,18.5472,20.5572,1.4856,1.5288,3.4885,3.6449,5.9398,6.7046,4.5209,4.78,0.08345,4.447,2.0564,2.5824,0.35503,0.34714,3.7742,4.707,4.1658,4.2191,1.6198,1.3703,9.8747,7.6134,2.8527,2.8335,3.8148,4.1139,4.738,3.929,1.4599,1.4315,1.9178,1.7616,3.6101,3.4262,6.802,6.4318,1.9206,1.7568,5.9213,5.3991,10.9634,10.1499,7.4809,6.5888,2.0692,2.1152,4.2693,4.245,1.6189,1.5749,17.5442,17.0065,4.978,5.2847,3.6181,3.4975,0.96897,1.0935,2.3342,2.3106,7.5962,7.1113,13.5638,12.5967,2.916,3.0587,4.1069,3.9129,3.0267,2.9289,1.4943,1.3449,3.9427,4.3011,10.8854,11.6858,2.6925,2.8618,2.482,2.3329,2.3774,2.5998,10.0771,11.2567,2.3145,2.2097,2.1838,2.2297,11.8209,12.1483,2.0168,2.2135,1.0344,1.0849,13.6519,12.9686,4.4777,4.9805,7.467,8.7445,4.4703,3.2111,10.2263,11.1999,7.3625,6.3516,6.886,6.4441,3.5716,3.3445,1.6489,1.7349,,24,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd600,64,64,F,1.2305,1.4415,0.34508,0.36871,0.89225,0.9011,18.9336,2.4491,2.3982,45.473,45.4929,15.7042,15.9507,231.9271,225.7956,1.0767,3.3412,3.129,0.61565,0.66511,11.8547,14.0786,1.4988,1.4831,3.3229,3.4476,6.6726,7.0209,4.5223,4.6688,0.07985,4.5887,2.1986,2.3744,0.32816,0.35922,3.4262,3.9538,3.919,4.1044,1.8686,1.598,9.8865,8.3953,2.977,3.0648,3.1699,3.9082,4.6859,4.3597,1.7919,1.7002,1.6005,1.7612,3.5586,3.252,8.2067,7.7014,2.1543,2.0571,6.2916,6.5311,12.0698,10.5925,7.6887,6.8327,2.4026,2.4938,4.5201,4.626,1.7892,1.675,16.9019,17.2614,4.6329,5.9481,3.8992,3.8902,1.1334,1.1678,2.7527,2.5166,7.6551,6.1917,14.5547,11.7806,2.8065,3.788,4.1829,3.9337,3.1677,3.1734,1.4492,1.559,3.8029,4.1629,10.0636,9.5413,3.1078,3.1477,2.0154,2.1058,1.9454,1.9119,10.5416,10.8325,2.4884,2.6582,1.9957,2.3359,10.0057,11.0202,1.6307,1.6304,1.1062,1.0952,13.1822,13.451,5.5704,5.2538,6.9975,8.3573,4.4519,3.7429,9.4148,10.0274,6.8655,6.0979,8.2366,7.7009,3.0562,3.7731,1.2798,1.2157,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd601,81,81,F,1.8046,2.1243,0.32574,0.34567,0.73728,0.75571,17.4303,2.3429,2.448,47.2251,46.6155,13.6201,13.5847,186.1146,188.3665,1.6388,2.8578,3.1014,0.70902,0.65958,16.3604,17.3104,1.3159,1.2852,3.0689,3.0644,6.1149,6.3666,4.3567,4.6199,0.0791,4.41,2.1447,2.4424,0.34048,0.33121,3.7732,4.1821,3.6669,4.0342,1.5062,1.4543,9.913,8.297,2.8136,2.9113,3.5675,4.1184,4.2997,4.0173,1.4482,1.4737,1.9727,2.0164,3.3536,3.2514,7.4297,6.9337,1.9686,1.9641,6.3114,5.9709,11.4667,10.2401,6.9075,6.5991,1.9371,2.3387,4.4826,4.4478,1.606,1.539,16.9559,17.575,5.5607,6.0264,3.5282,3.6076,0.84214,1.0822,2.0343,2.5646,6.8932,6.5125,12.7445,12.0113,2.4654,3.1216,3.9081,3.9262,3.1579,3.3721,1.3248,1.4334,3.797,4.1962,10.2125,10.2134,2.6706,2.9706,2.0511,2.1462,1.8168,1.9104,10.9935,11.8374,2.0741,2.5155,1.737,2.1713,11.2915,11.6743,1.6429,1.6453,1.1956,1.1941,13.6789,12.446,4.4457,4.7871,7.9432,8.5848,3.6954,3.1314,9.2774,9.7264,6.2997,6.4311,7.2726,7.5208,3.1222,3.7842,1.1849,1.3108,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd602,78,78,M,2.3554,2.3329,0.36398,0.40699,0.83918,0.90499,17.6402,2.9093,2.8188,46.4549,46.3326,13.857,13.9821,234.7419,235.5834,1.8804,3.0928,2.8334,1.0505,0.80493,20.8601,18.992,1.6395,1.654,3.958,4.2364,6.8637,6.9732,4.5368,4.7758,0.09549,5.2141,2.2816,2.6607,0.45297,0.40562,4.6927,5.1973,3.9129,3.9611,1.6826,1.5246,10.3061,9.2236,3.0608,3.0593,4.3562,3.9212,4.3404,4.3734,1.6195,1.741,2.0197,2.0926,3.8294,3.5094,7.8887,7.9761,2.1126,2.187,6.6099,6.1879,12.2734,11.7461,8.1904,8.0794,2.2932,2.4247,5.0101,4.8757,1.7941,1.8302,20.9626,19.7118,5.0735,5.8314,4.121,4.4401,1.1424,1.0426,2.5793,2.531,7.8364,7.1587,16.0082,14.0277,2.6346,2.9945,4.4894,4.4023,3.0884,3.3622,1.5889,1.5065,4.0218,4.0697,10.6211,10.4699,3.0672,3.2698,2.5824,2.2356,2.2331,2.6086,11.9035,12.1081,2.3909,2.6499,2.5395,2.408,13.3306,11.9528,1.845,1.9102,1.3276,1.4137,16.0842,14.4107,5.538,5.6455,8.9673,8.7474,3.7227,3.2341,9.6541,9.7427,8.2265,7.7323,7.9541,9.2077,3.6974,3.9354,1.5167,1.569,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd603,71,71,F,1.169,2.2211,0.40473,0.44518,0.91961,0.94014,16.0578,2.7826,2.8797,27.9343,26.922,11.3847,10.4877,182.6154,178.0647,1.2058,3.6156,3.3065,0.67471,0.57687,11.4639,14.178,1.357,1.4112,3.8067,3.8847,6.1456,6.5134,4.0988,4.3168,0.07157,3.926,1.6853,1.7352,0.4115,0.40448,4.0432,4.5862,3.8534,3.708,1.8979,1.6322,9.3369,8.867,2.5892,2.5195,3.9024,3.8558,4.7709,4.4212,1.6807,1.7886,1.9731,1.8781,3.798,3.5344,6.6917,7.2492,2.0828,2.1371,6.4408,6.5097,11.3715,10.8608,8.1635,7.706,2.2737,2.5091,4.0914,4.41,1.7617,1.931,16.3896,18.7104,5.0661,5.6886,4.1567,3.9981,1.1688,0.97622,2.5403,2.4824,7.7153,6.5605,12.9644,13.0567,3.1303,3.4573,4.7147,4.2086,3.4069,3.6453,1.5567,1.5343,4.2319,4.089,11.7678,10.6859,3.1184,3.2634,2.2847,2.2356,2.4668,2.2689,9.6902,11.7092,2.4015,2.5227,2.0154,2.1861,10.5172,11.0202,1.9245,2.1543,1.1837,1.2128,12.5188,13.9965,5.259,5.1043,7.2187,8.2916,4.2818,3.7762,10.6562,11.1361,6.9716,7.2104,7.7021,7.4591,3.1766,3.8219,1.4453,1.5315,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd604,71,71,M,1.1685,2.1065,0.32337,0.34567,0.62618,0.6146,17.052,2.5881,2.626,45.0926,46.1134,13.7148,13.7906,212.1597,210.3322,1.2058,2.7931,2.728,0.60093,0.49987,11.6909,13.1846,1.3718,1.3106,3.2533,3.1882,6.0573,6.208,4.1745,4.3707,0.07726,4.5381,2.2577,2.3955,0.36996,0.35921,4.0076,4.2866,3.7408,4.1797,1.5737,1.4318,10.6025,9.2936,2.1377,1.9707,3.5212,3.7968,4.0272,3.4995,1.2605,1.1379,1.9211,1.7281,3.7934,3.7458,6.7912,6.5177,2.0676,1.8537,6.2322,6.0413,10.4518,10.0482,6.5732,5.6111,2.1515,2.2542,4.5653,4.8038,1.8236,1.6782,18.504,18.0674,5.3698,5.8761,3.5983,3.7728,1.116,1.164,2.4211,2.6539,7.2289,6.4399,13.0178,13.1911,2.8536,3.1936,3.7565,3.7017,3.1751,2.937,1.6097,1.4126,3.7788,4.6272,10.444,10.2366,2.7099,2.7176,2.3727,2.156,1.779,2.1672,9.1457,10.9548,2.4155,2.4873,2.1469,2.2894,11.6364,11.3597,1.7924,1.8485,1.2576,1.2325,15.3682,13.3589,5.016,5.2782,7.2171,8.9568,3.4082,3.4955,10.3299,9.225,7.2331,6.9025,7.4883,6.3369,3.4193,3.2866,1.4521,1.6094,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd605,72,72,M,2.4335,2.2218,0.49233,0.54456,0.92825,0.98008,21.694,3.2801,3.2469,56.5683,54.2968,18.8763,19.534,262.0686,248.9335,2.8942,3.4505,3.3746,1.4438,2.0014,33.1003,38.6828,1.7185,1.7586,4.1601,4.2289,6.9894,8.0247,5.0187,5.3377,0.09123,5.6612,2.4335,3.203,0.42315,0.45301,5.4144,5.8186,4.7142,4.6396,2.0035,1.9521,11.7868,11.4997,3.936,3.4106,4.8673,4.9235,5.0479,4.7112,1.7793,1.8626,2.4407,2.5455,4.3942,4.2753,8.6418,8.4934,2.3453,2.3465,8.2916,7.393,13.7426,13.5711,9.3788,7.3795,2.5104,2.5785,5.7806,6.0349,2.0711,2.2306,23.1467,21.5294,5.7479,6.6154,4.2634,4.4376,1.435,1.3617,3.123,2.8933,8.9555,7.7655,18.5499,17.4934,3.5247,3.6819,5.0926,4.698,3.9375,3.7138,1.7436,1.7338,4.6583,6.5954,12.0285,12.8823,3.0706,3.3782,2.5779,2.6703,2.699,2.8887,12.8155,13.4742,2.4879,2.8106,2.4697,2.661,14.6459,15.1703,2.3664,2.4095,1.5271,1.5587,16.9133,15.8389,6.0818,5.9652,9.3669,9.2497,4.8871,3.8453,11.2573,10.7754,9.6366,8.7673,8.5754,8.8122,4.0988,4.3612,1.9199,1.9406,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd606,43,43,M,1.614,1.9196,0.36223,0.40587,0.80181,0.78801,17.1094,2.9314,2.6746,36.0414,36.5007,13.6021,14.5244,217.6717,210.2855,1.4932,3.1711,3.2571,0.6035,0.63498,11.9869,17.4652,1.524,1.4622,4.197,4.2961,6.4276,6.6497,4.3581,4.5321,0.06704,4.6477,2.0486,2.3743,0.34124,0.37066,3.4598,3.9826,3.5203,3.5746,1.5789,1.2674,9.6515,9.431,2.9363,2.8431,3.6255,3.3012,3.9622,4.1837,1.4545,1.4568,1.7945,1.8199,3.3098,2.9085,6.7279,6.9662,1.9012,1.8172,4.8656,4.5079,11.1388,10.7722,7.5401,6.5977,2.0685,2.1521,4.2057,4.1706,1.603,1.5869,17.3505,17.3982,4.2927,4.9577,3.5021,3.4604,1.1739,1.0947,2.5573,2.538,7.3479,6.1736,14.5429,14.5686,2.7573,2.8064,3.9017,3.6434,3.1011,2.9831,1.343,1.3584,3.7978,4.0705,9.3593,9.5844,2.6174,2.9921,1.6855,1.4917,2.0085,2.1257,9.2722,9.8247,2.2809,2.2111,1.6847,1.9755,10.5838,11.0987,1.6188,1.6764,1.1006,1.0952,13.9114,13.4957,4.8122,5.0496,7.3309,7.6242,3.9092,2.7544,10.3461,9.1754,6.7924,7.4128,7.378,7.1638,3.3015,3.3617,1.2987,1.5317,,29,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd607,77,77,F,1.7403,2.0757,0.31102,0.34427,0.59381,0.55987,14.6382,2.5025,2.4888,41.1694,40.6259,11.9078,12.2676,160.9065,156.4949,1.4826,2.5696,2.3865,1.1237,1.5123,18.0568,29.3432,1.2711,1.2571,2.9937,3.1734,5.4358,5.8428,3.7661,3.9321,0.06877,4.3435,2.1362,2.6726,0.33009,0.33409,3.2047,3.6379,2.9807,3.1761,1.5506,1.3274,8.6472,7.8526,2.4154,2.151,3.2976,3.3077,3.5198,3.5843,1.191,1.1591,1.5935,1.5965,3.0743,2.9676,5.9454,5.8965,1.4739,1.6821,5.3796,5.1719,8.6786,8.9819,6.6337,6.1424,1.9455,1.9518,3.7048,3.452,1.3567,1.4467,14.4447,13.8017,4.5748,5.0603,3.2523,3.4097,0.90867,0.91269,2.2137,2.1719,6.4258,5.8155,10.0789,10.6368,2.3112,2.4072,3.4528,3.4264,2.8424,2.5013,1.3214,1.2083,3.1789,3.2435,8.3606,7.6672,2.3406,2.4191,1.8548,1.7543,1.9136,2.0017,8.1705,9.5345,1.9982,1.9283,1.712,1.8273,11.2482,10.584,1.6495,1.7153,0.99556,0.99393,11.9794,11.5571,3.9776,3.6356,6.6766,7.4277,3.6278,2.7428,9.1786,8.4194,5.9204,5.6658,6.3232,5.5822,2.8391,3.0175,1.2052,1.437,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd608,71,71,M,1.7205,1.7712,0.36092,0.41704,0.58763,0.60177,18.7857,2.8077,2.7248,42.3458,41.6131,14.0826,14.7581,202.5455,203.2097,1.3463,2.7074,2.6663,0.45382,0.42583,8.7032,8.9561,1.4537,1.5372,3.5454,3.6223,6.2906,6.5553,4.8098,5.0523,0.08231,4.1815,1.9834,2.5036,0.37755,0.38384,3.9522,4.5134,4.0376,4.0577,1.7356,1.3478,8.2161,8.8291,3.3611,3.4869,3.8917,4.1787,4.6451,4.3731,1.2135,1.1777,2.1365,1.9723,3.8378,3.7043,6.3707,6.4863,1.8818,2.1075,6.2476,6.6913,10.5798,9.5007,7.3862,7.2027,2.0878,2.1175,4.2076,3.9836,1.6097,1.7052,18.7861,17.9772,4.6593,6.4098,3.4573,3.8194,1.0214,1.1971,2.4596,2.5397,7.6216,6.9862,14.2384,13.1739,2.5283,3.3395,3.7902,4.2914,3.4637,3.2757,1.3383,1.2667,4.0214,4.4056,10.2036,10.2765,2.7339,2.8722,2.3575,2.2428,2.3381,2.4721,9.6499,11.3304,2.1166,2.1833,2.033,2.1287,12.3735,12.4075,1.8109,1.7909,1.0766,1.1685,13.9933,14.0776,5.1819,5.5213,7.2704,8.6561,4.2377,3.2846,10.754,10.3009,7.5898,6.271,6.9277,6.9893,3.2971,3.5224,1.5494,1.4355,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd609,,,M,1.2242,1.3062,0.43905,0.45319,0.88555,0.8969,22.1811,3.8859,3.6894,48.2352,48.8959,18.3548,18.8096,274.269,260.6464,1.2419,3.4038,3.1863,0.51198,0.66674,11.1642,11.6214,1.7632,1.8143,3.9504,4.1041,7.3684,7.4289,5.4789,5.7108,0.07365,4.6608,2.2438,2.7104,0.40709,0.41096,4.5827,4.9562,4.6047,4.6927,1.8997,1.5635,10.6153,9.9337,3.4268,3.4179,4.0349,4.2808,5.5947,5.1157,1.6571,1.7216,1.9838,2.2036,3.5908,3.6728,7.2526,7.338,2.0876,2.0895,6.9693,7.3628,11.0658,11.7204,8.5437,7.0703,2.5819,2.4717,5.0172,5.3641,1.7393,1.8623,18.7798,18.7659,5.7823,6.6482,4.0039,4.0194,1.1802,0.99429,2.5147,2.4017,8.039,7.1578,14.1578,14.2233,3.0519,3.9386,4.2732,4.1161,3.5302,3.2166,1.6974,1.6058,4.5414,4.5968,12.6383,13.0258,3.0453,3.2149,2.5458,2.719,2.4349,2.6854,10.5419,10.4781,2.5784,2.698,2.6052,2.8054,12.3388,11.9842,2.0602,2.3175,1.2019,1.3507,15.6352,15.8127,5.269,5.3547,7.9781,9.0967,4.4534,3.8774,11.2368,11.5678,7.1187,6.8181,7.622,7.2724,3.7315,3.9851,1.7368,1.8654,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd610,67,67,F,1.1873,1.4588,0.30681,0.33628,0.51972,0.50656,15.3463,2.5199,2.4063,38.4725,39.0933,12.3447,12.711,188.2278,190.3081,1.5796,2.4966,2.3076,0.72781,0.56191,19.7917,21.4459,1.5018,1.4829,3.3634,3.0238,6.1763,6.4532,4.0234,4.2874,0.08356,4.3323,1.6783,2.0198,0.31776,0.2964,3.1277,3.4415,3.4566,3.5093,1.5734,1.2979,8.457,9.0173,2.9883,2.6807,3.1416,2.9876,4.0345,3.4814,0.93517,0.91267,1.5951,1.4596,3.0341,2.43,5.6402,5.323,1.7222,1.738,5.5892,5.3117,8.0468,9.0866,7.3984,6.5798,1.9201,1.8822,3.8606,3.8523,1.4448,1.4152,13.7531,13.0473,3.8872,5.2153,3.2523,3.4483,0.90001,0.8312,2.0321,2.0058,5.201,5.1598,10.4835,10.6656,2.7453,3.1951,3.6893,3.852,2.9142,2.6527,1.2743,1.2394,3.403,3.545,8.9821,8.656,2.4985,2.5184,1.8642,1.8075,1.5536,1.946,9.2722,9.4049,1.9032,2.0597,1.6437,1.887,10.1462,10.6762,1.4817,1.6488,1.0084,1.0373,11.7783,12.8249,4.7844,4.369,5.934,7.6242,3.1376,2.9176,9.2156,10.0019,6.079,6.358,5.0697,2.5612,2.7553,3.1,1.166,1.2445,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd611,75,75,F,1.7085,2.2076,0.40132,0.42969,0.85519,0.844,16.6992,3.1972,3.0363,44.7234,43.9517,12.9595,13.3136,201.5903,200.7235,2.1695,3.3327,3.1302,0.76046,0.70164,27.4718,31.0679,1.527,1.4512,3.5052,3.5655,6.7515,6.6585,4.1826,4.3849,0.06798,4.6638,2.0488,2.8959,0.36785,0.38526,3.9106,4.706,4.1337,4.2311,1.8131,1.6322,10.4294,9.5449,3.2764,3.1114,4.0736,4.0747,4.9972,4.5715,1.5978,1.5824,2.1043,2.0074,4.3682,3.9472,7.7075,8.0058,2.2595,2.1023,7.0621,7.2798,11.4847,12.0056,8.1675,7.3194,2.1421,2.5005,4.472,4.7073,2.029,1.973,19.3203,19.6679,5.3372,6.6593,4.0038,3.7044,0.89837,0.95883,2.678,2.3596,9.4104,7.8587,13.8898,14.9175,3.9516,4.3637,4.2321,4.1949,3.9799,3.2817,1.3825,1.4376,4.0325,4.6613,10.9989,10.5044,3.0673,3.2769,2.3053,2.2809,1.8993,2.094,9.398,11.2423,2.1795,2.4123,1.9234,2.1104,13.703,12.0469,1.9493,1.8446,1.3847,1.379,15.111,15.0046,5.5549,5.4097,8.2128,8.4522,4.6967,4.3388,10.0498,10.2256,6.7731,7.7485,7.1644,7.6973,3.4362,4.0589,1.3541,1.3651,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd612,81,81,F,2.0795,1.9786,0.33199,0.37163,0.6519,0.68249,14.4818,2.642,2.5535,34.594,27.3723,11.3372,9.2054,160.604,152.4398,2.1398,2.86,2.7666,0.9527,0.96109,26.0403,31.0712,1.3705,1.2159,3.4679,3.5903,5.9261,5.7799,4.005,3.8789,0.0635,4.4656,1.7855,2.0852,0.32906,0.32832,3.3315,3.9495,3.5203,3.5419,1.6717,1.5558,9.752,8.7709,2.7894,3.0446,3.3679,3.7889,3.8655,4.3597,1.203,1.256,1.7244,1.7469,3.176,3.2423,4.7168,5.9773,1.8574,1.9966,4.9759,5.1469,8.1016,8.9819,6.9363,6.4803,2.0071,2.2721,4.0035,3.9422,1.6497,1.5876,17.0255,17.3371,4.2287,5.1569,3.5422,3.8186,1.0259,0.83847,2.3317,2.0521,6.7752,6.2394,10.6424,10.6656,2.5487,2.8267,3.7932,3.6077,2.9917,3.4872,1.5239,1.2806,3.3051,3.7411,8.6424,9.5133,2.4834,2.7655,2.0433,1.9328,2.0792,1.9191,8.6214,9.29,1.9772,2.1792,1.7945,1.9267,10.7378,9.8087,1.7591,1.5474,1.2042,1.2162,13.1937,13.8267,4.7484,4.5588,6.2404,7.9899,3.6905,2.7978,10.1158,10.483,5.8236,5.6658,6.1097,6.2847,3.2658,3.498,1.2221,1.2654,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd613,66,66,F,1.2587,1.6554,0.30608,0.32521,0.73957,0.67972,15.9805,2.3504,2.3381,37.2794,36.7825,11.6495,11.7864,187.6209,186.1227,1.0692,3.0429,2.8389,0.81467,0.48349,10.3441,12.8708,1.3159,1.315,3.0136,3.1621,5.7702,5.8428,4.0467,4.2908,0.07222,3.7043,1.89,2.0473,0.37365,0.33543,4.0253,4.4173,3.7258,3.7776,1.6345,1.3762,9.1242,7.7556,3.0625,3.0867,3.7112,3.6877,4.7257,5.0884,1.5589,1.231,1.9104,1.7916,3.4846,3.2061,6.285,6.2485,1.756,1.7728,5.3377,5.4696,9.7025,9.0001,6.88,6.2255,2.1197,2.2163,4.5074,4.6442,1.615,1.853,15.1184,15.5908,4.7128,5.7216,3.3492,3.3897,0.99046,1.1393,2.3142,2.6202,6.9498,6.5047,11.2089,12.2458,2.2418,2.7148,3.6394,3.3116,3.0018,3.1636,1.4622,1.4125,3.9209,4.3404,10.6008,9.9042,2.3836,2.6722,2.2169,2.2224,1.8017,2.1131,9.0295,10.2916,2.0774,2.2795,2.154,2.0593,10.304,11.0987,1.9533,1.8485,1.0551,1.1504,12.3623,12.524,4.7292,4.786,6.9255,8.9246,4.0085,3.1517,8.2148,9.8832,6.1758,6.8052,6.6822,5.8077,3.2797,3.2833,1.492,1.3482,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd614,,,F,1.6135,1.7191,0.40101,0.39625,0.86232,0.80957,17.5065,3.2449,2.9916,47.9629,49.3091,14.4927,14.7292,193.0484,182.5569,1.7563,3.2742,3.0562,0.66404,0.62222,11.2721,12.3254,1.6221,1.5677,3.8423,3.4106,6.6723,6.8129,4.7495,4.8736,0.0808,5.0323,2.3034,2.7276,0.3848,0.38773,3.8191,4.4443,3.996,4.4858,1.8131,1.5991,8.4829,8.6252,3.0653,2.9703,3.5113,3.7912,4.1831,4.6934,1.7783,1.6762,1.7524,1.9986,3.7522,3.507,7.1379,7.2824,2.1154,2.1146,6.2791,5.8863,11.5585,10.2448,8.0576,7.2281,2.4284,2.6051,4.4276,4.597,1.7892,1.8645,17.3549,18.4136,4.6992,5.7343,3.8753,3.9287,0.94289,1.4219,2.2491,3.2439,7.6309,6.6437,14.0727,13.2393,2.649,3.2931,3.9874,4.403,3.0321,3.4199,1.6822,1.6515,4.171,4.4166,10.5413,10.4257,2.8747,3.0897,2.1868,2.2288,2.0544,2.1338,9.9635,11.2932,2.426,2.5079,2.102,2.3454,12.3146,13.4365,1.8675,1.7462,1.1739,1.119,12.4816,12.2218,5.5017,5.566,7.9324,8.2916,4.2139,3.7982,10.6824,11.1783,7.6512,6.807,8.2934,7.6834,3.555,3.8605,1.6071,1.4731,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd615,79,79,F,1.4436,2.2159,0.29367,0.33948,0.66914,0.65911,14.5161,2.5199,2.5107,36.4172,37.5008,11.3372,11.9422,159.2096,154.1769,1.4373,2.8667,2.7708,0.91186,0.81448,12.8318,14.9981,1.1776,1.1916,3.1153,3.5577,5.4951,5.8214,3.6709,3.9038,0.06667,4.4656,2.0653,2.1388,0.34766,0.31239,4.0405,4.4443,3.5405,3.5366,1.4567,1.2669,8.0657,7.4469,2.9174,2.9632,3.7112,3.6587,3.8655,4.3597,1.1841,1.2057,1.7009,1.6726,3.2527,3.1043,5.5218,5.2805,1.681,1.6765,5.2199,5.5156,8.1992,8.5987,5.7237,5.9821,1.8889,1.932,4.0546,4.1749,1.4822,1.5684,17.2115,17.4131,4.0341,5.0582,3.0089,3.1944,0.95289,1.0864,2.2109,2.3106,6.988,6.4494,10.9757,10.7233,1.5521,1.2586,3.2993,3.385,3.2791,3.1365,1.3055,1.2007,3.4814,3.7111,8.3878,8.6851,2.3072,2.6319,2.0847,1.9411,2.0023,2.4066,9.6469,10.8398,1.952,2.1226,1.805,2.0444,10.5575,11.21,1.6364,1.9996,1.0813,1.1667,13.6011,13.0945,4.6608,5.0772,6.9574,7.8364,3.5536,2.7912,9.3058,9.2653,6.3524,5.6422,6.6466,6.1399,3.2322,3.3739,1.2654,1.4931,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd616,,,M,2.1427,2.4283,0.32695,0.35041,0.76311,0.69628,20.2468,3.1161,2.8481,53.3227,51.7924,19.9017,19.3243,251.1307,247.5545,1.6165,3.2181,3.1597,1.9578,1.356,22.2937,23.0663,1.7943,1.6123,3.5259,3.3121,6.7605,7.2896,5.0802,5.4028,0.08774,5.3437,2.4335,3.0753,0.37094,0.37354,4.2473,4.3304,4.5078,4.2701,1.5169,1.3642,9.1593,8.2497,3.6757,3.6169,3.9783,4.0944,4.8648,4.3587,1.5598,1.3429,1.8904,1.8732,3.4809,3.2226,7.0847,7.6169,1.8234,1.993,6.777,6.4522,10.6601,10.0437,8.4697,8.0496,1.9712,2.2508,4.6626,4.2041,1.6049,1.702,17.2382,16.5372,4.6664,5.0215,3.2559,3.6503,1.3114,1.1615,2.6987,2.5255,7.1152,6.5953,12.6236,11.6401,3.0322,3.0137,4.3485,4.5411,2.666,3.0846,1.3675,1.4915,4.0614,4.4726,11.9621,11.4018,2.949,3.0096,2.3548,2.2428,2.136,2.1829,9.0305,11.6356,2.1918,2.3759,2.0681,2.2792,10.6051,10.7422,1.8503,1.7524,1.1654,1.263,13.5181,13.2132,5.1361,4.7759,7.1078,7.9938,3.9435,3.0648,9.6993,9.7158,6.7545,6.8627,7.0973,6.782,3.4372,3.9592,1.5785,1.3547,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd617,73,73,F,1.5766,2.0916,0.4353,0.46979,0.88631,0.90118,16.0578,3.1208,3.0819,46.5324,45.7221,13.1032,14.1874,216.916,213.5467,1.6202,3.5946,3.355,0.43043,0.41167,11.2721,12.3222,1.5275,1.5342,3.9127,3.898,6.1701,6.6472,4.1518,4.2444,0.0769,4.3414,2.1408,2.4777,0.38887,0.38773,4.4824,4.6132,3.6892,3.3138,1.6031,1.5729,10.1467,9.7666,2.8436,2.8997,4.1937,4.0468,4.3549,4.4845,1.6965,1.7568,1.943,1.8215,3.9306,3.6493,7.4584,7.0565,2.0844,2.1027,6.1973,6.2477,11.0364,10.751,7.6647,7.4578,2.0397,2.4125,3.5995,4.1749,1.7524,1.7233,19.6606,18.46,4.5156,6.7995,3.8132,4.1119,1.2513,0.99431,2.7869,2.6527,7.1431,6.5859,14.5541,13.7377,2.4538,3.5306,4.0166,4.2453,3.3648,2.7665,1.5031,1.5149,4.0325,4.0267,10.0857,10.0404,2.816,3.1859,2.2934,2.2232,2.0784,2.5405,10.3188,11.4993,2.2235,2.4188,1.943,2.2022,12.7071,11.489,1.8163,2.0163,1.1517,1.1778,15.1168,15.9463,5.1911,4.8334,8.2656,10.1358,3.6081,4.138,10.1625,10.5792,6.9535,7.4393,7.8905,7.7769,3.5068,3.3893,1.4801,1.709,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd618,77,77,F,1.2064,1.6201,0.4066,0.41978,0.7548,0.7322,16.7998,2.6948,2.7719,46.7065,45.5105,14.0549,14.8204,224.0112,218.0444,1.2229,3.0485,2.8438,0.45832,0.51484,14.272,18.2943,1.4824,1.5046,3.5759,3.7691,6.504,6.3276,4.2944,4.4778,0.07519,5.1586,2.3034,2.7359,0.35599,0.36743,3.8395,4.707,4.0025,4.1057,1.925,1.7008,9.4406,8.8278,2.912,3.188,3.9933,3.6837,4.3337,4.6934,1.5192,1.5327,1.7889,1.946,3.6087,3.2088,7.2803,6.8294,2.1543,2.1293,6.349,5.7158,11.629,10.043,7.6717,7.466,2.1568,2.4943,4.7296,4.757,1.7396,1.8038,17.1033,16.8676,5.4778,6.3498,3.884,4.2465,1.0231,1.358,2.5523,2.5869,8.7052,7.5323,12.9693,12.4727,2.649,3.4953,4.0605,3.8519,3.386,3.5456,1.676,1.6004,3.7934,4.0424,9.9058,9.6351,2.662,2.9188,2.1738,2.2121,2.1826,2.3303,9.5358,10.4723,2.3948,2.6499,2.0533,2.295,12.413,12.5186,1.8786,2.1825,1.0998,1.1614,14.2656,13.7678,5.4232,5.6865,7.504,8.3486,4.0434,3.4341,9.8415,10.5103,7.2476,6.9282,7.7123,7.2184,3.5464,3.8172,1.4808,1.7436,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd619,,,F,1.2254,0.73524,0.03898,0.00296,0.52829,0.4964,17.0389,0.00039,0.0006,44.3447,43.8844,14.0525,13.9654,76.6563,93.4871,1.027,2.2385,2.0491,0.79701,0.56191,3.3372,5.1615,0.88805,0.8757,2.1346,0.34756,3.756,5.4137,4.2681,4.4544,0.06557,4.4837,1.8955,2.2317,0.27894,0.2706,3.9181,0.02955,0.12458,3.2557,0,0,7.9793,5.0678,2.5623,2.377,0.01217,0.43185,4.2043,3.7318,0.89669,0.91296,0.75116,0.02155,1.969,0,4.8245,5.238,0.8931,1.0331,5.3595,5.1164,7.4539,6.8215,7.1949,6.0476,1.7375,0.03638,2.897,0,0.66198,0.94623,0,0,4.6078,4.3309,2.7665,1.6916,0.83221,0.92442,1.8727,1.7162,3.9657,0.00791,9.6374,10.2972,2.188,2.7388,3.5643,3.4264,0,0,0.00001,0.05771,1.3853,3.0613,8.4179,8.0475,2.1424,2.1854,2.01,1.9636,1.2776,1.7508,0,0.00568,1.8137,1.181,1.8162,1.8074,0.00078,0.00255,1.4659,1.7702,0.55918,0.64464,0.00055,11.627,0,0,0.74456,6.0982,3.7545,2.7854,1.7984,7.9356,6.018,6.0329,4.2566,4.5637,0,0,1.1316,1.318,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd620,77,77,F,1.9673,1.6631,0.33943,0.37163,0.68032,0.61856,18.2718,2.8147,2.5252,44.5434,44.5889,13.7417,14.203,204.8212,199.3898,2.0004,2.6549,2.6793,0.98311,1.3809,22.3523,31.1846,1.5907,1.5154,3.4965,3.5212,6.5223,6.824,4.496,4.6758,0.09071,5.0892,2.1841,2.275,0.33936,0.34498,4.1127,4.4928,4.1956,3.7959,1.777,1.6704,9.5238,8.6831,2.7959,3.1124,3.6131,3.7122,4.2585,4.6934,1.3657,1.276,1.9982,1.9305,3.7816,3.3237,6.6787,6.8443,1.9449,1.8568,6.1003,5.3417,10.9046,11.6521,7.3233,7.087,2.1066,2.3362,4.2838,3.86,1.6819,1.6249,18.5382,18.4826,4.4676,4.698,3.8506,3.9422,0.99532,1.016,2.4596,2.3978,7.2652,6.6487,13.2712,13.7819,2.649,2.8064,4.0865,3.8106,3.8942,3.1969,1.3489,1.4301,3.6107,4.1836,9.6104,10.3533,2.5703,2.5647,2.3053,2.4272,1.8528,2.008,9.8283,10.0842,2.2844,2.2946,1.8818,2.3397,12.2882,12.0972,1.6462,1.927,1.1289,1.1941,13.7444,12.9747,5.3986,5.2331,7.4471,8.3409,3.7227,3.134,9.5553,9.8225,6.8894,7.437,7.5055,7.7538,3.4521,3.6967,1.4494,1.4376,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd621,80,80,F,1.6409,3.1677,0.28869,0.33274,0.61742,0.57692,16.1442,2.8393,2.6248,42.5346,43.8841,11.6546,11.7821,175.9135,171.8839,1.4675,2.554,2.3022,0.73919,0.72752,16.6148,15.8686,1.3866,1.3777,3.0363,3.0858,6.1982,6.1409,4.1327,4.3272,0.07651,4.0424,1.8995,2.6376,0.29277,0.28477,3.9012,4.2369,3.5208,3.5366,1.4918,1.1709,7.6621,6.4981,3.2184,3.1572,3.5586,3.4296,3.924,4.1909,1.2138,1.0462,1.5613,1.6097,3.2527,3.028,6.417,5.9776,1.8392,1.9871,5.0863,5.5081,9.3017,9.4018,6.5178,6.0284,2.053,2.0197,3.98,3.9178,1.5732,1.5532,15.7474,15.3838,5.1691,3.9079,3.4751,3.3438,0.8214,0.875,2.3095,2.2815,6.988,6.6575,11.987,12.4146,2.4945,2.7891,3.6552,3.5271,2.7412,2.6661,1.356,1.3048,3.659,3.9854,9.6417,9.4853,2.4883,2.6002,1.9343,2.1383,1.8168,2.0021,8.3505,9.1361,2.0698,2.1766,1.7118,2.0492,10.8173,11.0377,1.662,1.7841,1.0981,1.1358,12.0203,12.7331,4.9027,4.9853,6.6645,7.344,3.4902,2.6071,8.2168,8.4484,6.4666,5.7033,7.3189,6.3555,2.8918,3.0662,1.1396,1.4045,,25,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd622,83,83,M,2.6191,1.6601,0.34998,0.41846,0.8053,0.78801,17.0245,2.8146,2.5817,34.758,37.5008,14.0298,14.0919,194.9975,192.1346,2.2316,3.2322,3.1363,0.75245,0.63192,27.8355,28.2007,1.4111,1.4702,3.4495,3.7598,5.9398,6.5324,4.3167,4.5547,0.07313,4.6918,2.0201,2.5404,0.41347,0.39221,4.6205,5.04,4.578,4.8529,1.6576,1.3762,9.1016,8.015,2.6735,2.3237,4.2748,4.1455,3.8996,3.7566,1.5012,1.446,2.1566,1.9711,3.7123,3.6495,6.309,6.2374,2.1746,2.0685,5.1878,4.9021,9.3017,10.063,6.8636,5.6111,2.1928,2.061,4.9833,4.8665,2.044,1.9166,20.1227,19.4124,3.8406,5.159,4.0133,3.8039,1.161,1.2571,2.5994,2.5869,8.8107,7.6082,11.1503,12.5646,2.1773,2.6117,3.6552,3.4301,3.4705,3.6095,1.5768,1.2667,4.2673,4.4772,10.7798,10.1246,2.5263,2.5078,2.7133,2.9307,2.0384,2.2571,9.4306,11.1147,2.3987,2.3422,2.1531,2.4044,12.189,12.8559,1.8131,1.8531,1.3666,1.3888,15.565,15.2893,5.1314,4.8956,7.4589,7.9679,3.3745,2.863,9.7527,10.4126,6.659,6.5463,7.7492,7.1796,3.8404,3.122,1.3547,1.5981,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd623,68,68,F,1.8705,2.348,0.28634,0.33274,0.76898,0.71092,13.4202,1.7904,2.2076,31.918,26.0012,10.3602,12.2296,165.7529,160.3455,1.9525,2.9478,2.5608,1.0499,1.3809,15.5524,25.111,1.2687,1.2698,2.812,2.7183,5.2375,5.4876,3.8355,4.0854,0.06387,4.1318,1.9231,1.9396,0.31593,0.32726,3.0647,3.3433,3.353,3.5856,1.3535,1.1709,8.6147,8.764,2.5168,2.4243,3.0057,3.3077,3.4986,3.5516,1.3896,1.3693,1.5223,1.6998,3.1138,2.5954,6.0282,5.8603,1.6336,1.5618,4.9759,4.9289,6.7824,8.0032,5.9072,5.8332,1.9844,1.9626,3.5388,3.8849,1.3135,1.2201,14.8866,14.4036,4.3615,5.3461,2.9884,3.2493,0.96877,0.94701,2.0438,1.689,5.6562,4.7167,8.3232,10.6925,2.5157,2.5727,3.2876,3.0576,2.6669,3.1135,1.3816,1.1482,3.5145,3.6058,7.7781,8.5872,2.5458,2.8164,1.9926,1.9054,1.2293,0.60781,8.3107,9.5882,1.9189,1.8669,1.7391,1.9091,11.2482,10.5286,1.577,1.6105,0.96188,0.97981,11.7282,11.3018,4.5393,4.4013,6.097,7.5996,3.3967,2.789,8.8065,8.589,5.9552,5.6191,6.377,5.9166,3.1879,3.0854,1.2254,1.1486,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd624,38,38,M,1.1573,1.6479,0.47365,0.53321,1.0192,1.0396,17.706,3.2616,3.1397,49.9071,48.8077,14.2605,14.6229,212.8049,207.9718,1.1203,3.9806,3.6808,0.50539,0.52111,12.6832,13.1091,1.6551,1.6336,3.8073,3.8729,6.9086,7.1892,4.7493,4.9542,0.09152,4.9901,2.2871,2.6853,0.40882,0.40558,4.3511,4.7492,4.2808,4.4363,1.929,1.5833,11.0966,9.2512,2.9195,3.5436,4.011,4.4796,4.4464,4.4391,2.0902,2.0771,1.9507,1.8781,3.8763,3.3598,7.0561,7.3628,1.9857,2.3391,6.3994,5.8485,11.4971,11.1868,7.5148,7.775,2.2752,2.3452,4.3547,4.4844,1.7338,1.7383,18.7861,19.922,5.5177,7.0509,4.0427,4.1118,1.135,1.2002,2.831,2.9983,7.8601,6.8283,14.3784,15.1973,2.7873,3.5645,4.0248,4.3265,3.143,3.2356,1.5949,1.3049,4.0855,4.4056,10.2594,10.6416,3.5317,3.5993,2.2741,2.2083,2.4143,2.2311,10.541,11.9748,2.5115,2.6528,1.9234,2.0773,11.8206,11.3711,2.1924,2.0775,1.1172,1.1725,14.7744,14.2793,5.4026,5.2538,8.9313,9.318,4.6808,4.1879,11.5183,11.0671,8.0635,7.5473,8.5425,7.7009,3.7113,3.4214,1.4607,1.6896,,30,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd625,,,M,1.7432,2.4181,0.3603,0.39515,0.81466,0.79912,16.8618,2.3777,2.3271,44.8116,44.0719,14.325,14.2885,203.0384,200.3927,1.8418,3.2166,3.0562,1.2206,1.3385,22.5276,25.4214,1.4785,1.5011,3.1602,3.2548,6.6487,6.6985,4.3893,4.5443,0.06634,4.8812,2.1319,2.6553,0.38088,0.39281,4.0148,4.7538,3.6596,3.7338,1.6058,1.526,12.0358,9.3483,3.1602,2.787,4.2881,4.1444,4.3975,3.665,1.6422,1.4114,1.8262,1.7378,3.5592,3.3493,7.6692,6.6344,1.9337,1.8676,6.1465,5.9187,11.2242,9.8925,7.659,7.7103,1.9606,2.5188,4.7913,5.2192,1.688,1.7445,17.022,18.6146,5.1115,5.6222,3.7179,4.0173,0.92397,1.0828,1.9606,2.7085,7.2281,7.4088,13.3795,13.6704,2.7605,3.1118,4.2429,4.4668,3.5913,3.4705,1.3481,1.4956,4.1826,4.675,10.554,11.8842,2.8535,3.139,2.1584,2.0725,2.3147,2.5337,10.7561,12.2728,2.0741,2.3339,2.0193,2.1555,11.5471,11.229,1.7599,1.8926,1.185,1.2348,11.7635,12.7452,4.962,5.09,8.702,9.0983,4.3735,2.9155,11.4796,10.2256,7.1461,7.2026,7.5089,6.8749,3.3557,3.4365,1.4603,1.4272,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd626,74,74,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd627,58,58,M,1.8198,1.701,0.35086,0.39595,0.90359,0.85732,18.4101,2.6987,2.8006,46.848,46.3326,16.2345,16.5436,213.1064,210.3322,1.3021,3.4111,3.3502,0.6035,0.54061,14.0815,22.1922,1.4964,1.5615,3.4955,3.5212,7.0073,7.1699,4.5429,4.7162,0.08825,4.6514,2.1363,2.5866,0.36112,0.37156,4.4803,4.6875,3.8856,4.0645,1.7262,1.5665,8.9771,8.6024,3.0493,3.1288,4.0855,4.2457,4.2201,4.2643,1.7069,1.6574,2.1351,1.9526,3.6097,3.4043,7.0986,7.1017,1.8402,2.0083,6.7955,6.362,11.0199,10.5925,7.7003,7.335,2.4036,2.3359,4.6356,4.5683,1.7081,1.8184,16.9019,18.4445,4.6664,5.5222,3.4898,3.8787,0.88883,1.0924,2.1624,2.645,7.4436,7.2991,13.611,13.0492,2.7936,3.2245,4.2869,4.5738,3.6352,3.6648,1.4682,1.3963,4.3894,4.4619,10.5746,10.457,2.7481,3.231,2.1271,2.2194,2.1452,2.398,9.9635,11.2482,2.4963,2.5123,1.8904,2.0773,13.2427,13.1986,1.8131,1.9298,1.1423,1.1701,14.2123,13.156,4.9472,5.3547,7.9386,8.3596,3.9958,3.3648,10.754,10.3844,7.0859,6.271,7.83,7.4622,3.3019,3.5497,1.3272,1.7502,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd628,,,F,2.0007,2.3398,0.36363,0.40699,0.69746,0.75446,15.8861,3.5058,2.9733,43.2103,43.8841,13.0437,13.3684,179.8113,179.8191,1.8746,2.737,2.7014,1.157,1.1827,22.5276,27.4566,1.4408,1.4044,3.5692,3.6077,5.9759,6.0018,4.0879,4.3385,0.09045,4.0987,1.8995,2.0572,0.36577,0.3668,3.4872,4.5408,4.1806,4.2191,1.6327,1.563,9.655,8.2258,3.0958,3.0412,3.9353,3.8943,4.518,4.1254,1.4118,1.4735,1.7701,1.8514,3.492,3.0976,6.6202,6.8859,1.9065,1.9173,6.4408,6.0717,11.252,10.9586,8.0416,6.9457,1.9809,2.2284,4.4437,4.6175,1.6189,1.64,17.7966,16.4015,5.1762,5.3469,3.3153,3.6339,1.0943,1.1025,2.6174,2.5952,7.715,6.6826,14.1487,14.557,2.6346,2.8955,4.3228,4.4139,3.0284,2.7484,1.3406,1.3445,3.911,4.224,10.1131,9.7632,2.764,2.8595,2.4003,2.5088,2.1797,2.265,8.9266,10.8421,2.1623,2.4534,2.0168,2.3762,11.267,11.9228,1.6213,2.0838,1.0344,1.0478,13.9114,13.8689,5.0535,4.9853,7.3483,7.7141,4.0085,3.4249,7.6513,8.7986,6.7924,7.4313,7.2795,7.4622,3.2904,3.4748,1.3987,1.5216,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd629,72,72,F,1.2241,1.3928,0.40112,0.43648,0.95725,0.94991,17.8395,2.9065,2.8851,46.3654,44.4757,15.1125,15.8019,261.275,257.7759,1.4324,3.5761,3.3564,0.57608,0.34929,12.513,16.6564,1.767,1.7979,3.7231,3.8839,6.8462,6.9837,4.7495,5.0564,0.0856,4.7095,2.0938,2.6047,0.45814,0.43687,4.7502,5.3592,4.9298,4.4503,2.1559,1.6616,10.2582,9.9207,2.4736,2.629,4.6103,3.7658,3.6178,3.7881,1.8101,1.7618,2.1706,2.0626,4.8016,4.4791,8.2534,7.7758,2.6917,2.6145,6.2094,6.4221,13.0245,11.1448,7.3675,6.3126,2.7614,2.5305,5.1542,5.2259,2.3643,2.1069,22.3019,20.7531,5.249,5.6598,4.2825,4.6011,1.1132,1.1939,2.7166,2.6742,10.9811,8.6758,16.2184,13.2978,3.0109,3.2317,3.927,3.5657,3.279,3.4033,1.868,1.526,4.2966,4.8597,10.7798,10.2366,2.9381,3.1112,2.5458,2.5628,2.7526,2.7218,9.7231,10.9196,2.6022,2.5487,2.3798,2.3871,12.6872,13.1281,2.3823,2.0494,1.3146,1.4188,16.5398,16.123,6.3587,8.4787,8.1802,9.0832,3.9606,3.2142,10.6544,11.1783,8.7417,7.3638,8.9394,7.7009,4.1919,4.2425,1.9364,1.7795,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd630,69,69,F,1.4994,1.6845,0.2921,0.30794,0.73701,0.63995,17.8348,2.4566,1.9965,42.1882,38.1448,16.5675,16.6666,242.2642,237.8328,1.3123,2.9698,2.5658,0.77148,0.64214,10.9143,13.8935,1.5444,1.5891,3.6701,3.3777,5.8613,6.0547,4.4484,4.6727,0.07896,4.4765,2.0895,2.3483,0.3149,0.32214,4.2767,4.6051,3.8345,3.9407,1.6128,1.3674,8.5042,6.946,3.038,3.0106,3.9048,3.6923,4.0344,4.3767,1.381,1.4088,1.8751,1.7861,3.3523,3.5652,6.8917,6.2393,1.7203,1.679,6.1881,5.1279,9.5259,9.6776,6.3517,5.9821,2.0261,2.1568,4.5246,4.7098,1.5622,1.6195,15.7474,15.5124,4.954,4.6049,3.3492,3.3954,1.0275,1.1846,2.4179,2.4471,7.0663,6.4494,12.7,12.6184,2.6173,2.7213,3.5715,3.4132,2.8518,2.889,1.356,1.2784,3.639,4.1599,8.9276,10.1114,2.7887,2.7175,2.1623,2.2965,2.1558,2.3918,9.3087,9.9456,2.15,2.1861,1.8461,2.1134,10.5223,11.0987,1.8786,1.8775,1.2083,1.2805,12.0203,12.6023,4.4457,4.437,6.6645,7.7894,3.4902,2.7951,9.0286,9.0897,6.8511,6.5359,6.8277,6.2131,3.1005,3.4089,1.2908,1.4652,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd631,,,M,1.7635,2.1809,0.40865,0.46555,0.88638,0.8445,18.0355,3.0841,2.8802,47.289,46.6155,15.0585,15.2872,244.2927,240.4316,1.4963,3.23,3.1557,0.45382,0.54857,14.3883,16.12,1.7519,1.7979,3.8407,3.7607,7.202,7.3807,4.8612,5.0683,0.09305,4.7538,2.0867,2.6349,0.424,0.4175,4.5469,4.8014,4.5397,4.8321,1.9727,1.6583,12.0143,10.4668,3.4045,2.8124,4.5053,4.622,5.4003,5.6454,1.8746,1.9168,2.3805,2.1407,4.3331,3.9472,8.2534,8.0246,2.1126,2.1027,7.664,7.9981,12.5933,12.533,8.9198,8.1047,2.5327,2.5951,4.7472,5.1775,2.029,1.8696,21.3402,21.2525,5.9935,6.2518,3.8949,4.0194,1.302,1.3169,3.0467,3.0303,8.9555,7.8075,16.0082,15.7612,3.4708,3.9336,4.8411,5.3126,4.1181,3.4179,1.8664,1.6753,4.667,5.2247,12.5322,12.0823,3.1722,3.4822,2.398,2.2643,3.073,2.7908,10.778,12.9365,2.6904,2.568,2.3008,2.4613,12.6388,12.4904,2.3324,2.4258,1.3251,1.3703,15.8807,15.124,5.6371,5.308,9.4078,9.7432,4.5338,3.9702,11.6259,11.5742,8.5019,7.8884,8.8345,8.47,4.0003,4.6862,1.7648,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd632,60,60,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd633,77,77,F,1.9673,3.1605,0.37032,0.39586,0.85597,0.92421,18.8633,3.1815,3.0891,46.3996,45.7221,15.2028,15.5227,211.8331,206.891,2.3689,3.5467,3.1706,1.2968,1.1697,33.4486,27.6636,1.5691,1.5442,4.0283,4.6426,7.0836,7.7141,4.5237,4.8226,0.06372,5.657,2.4106,2.8265,0.41955,0.40562,3.9767,4.5958,4.1727,4.715,1.6874,1.4936,9.4278,9.0578,3.41,3.623,3.7962,4.2281,5.0832,5.0758,1.6422,1.7739,1.8618,2.0075,3.5851,3.4425,7.3682,7.5174,1.6895,1.8077,6.9728,6.8617,11.7478,11.941,8.0021,7.9235,2.0071,2.2879,3.9635,4.5407,1.6049,1.6417,18.6572,19.3072,5.705,5.9594,3.5975,3.7063,0.95715,1.0462,2.8094,2.7168,7.2435,6.84,14.9589,14.1192,3.6971,4.0946,4.6643,4.3266,3.3178,3.0519,1.5031,1.4322,3.9944,4.1795,10.2779,10.129,2.8206,2.9691,2.3321,2.5124,2.3616,2.4089,10.098,11.3462,2.2645,2.4391,2.1285,2.3431,12.4228,11.6069,1.7452,2.1538,1.2173,1.2452,13.1853,13.6239,4.8578,5.9056,7.763,8.0256,4.5894,3.9702,9.3424,9.8591,7.8387,7.3722,7.0666,7.42,3.6752,3.6222,1.4494,1.3872,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd634,70,70,M,2.7489,2.4934,0.34798,0.4164,0.72903,0.85008,18.8058,2.7281,2.9263,44.8174,43.5986,14.8592,15.1152,219.5922,216.9257,1.9764,3.1337,2.9317,0.723,0.67237,23.9601,24.6531,1.596,1.5332,3.3107,3.3512,6.5677,6.6044,4.7272,4.9817,0.08025,4.467,2.1081,2.7285,0.39933,0.41743,4.3489,4.8817,4.2179,4.2786,1.4807,1.4042,9.61,9.8993,3.8376,3.3336,3.7605,4.1485,5.5844,5.4245,1.3995,1.6502,1.9975,1.9606,3.4371,3.2226,6.9727,7.0446,2.0326,2.0302,7.2824,7.0384,10.7446,10.0447,8.1686,7.031,2.0386,2.2508,4.2543,4.8206,1.7906,1.8311,16.9207,17.4485,5.9367,5.9037,3.5685,3.8194,0.94556,1.2399,2.3493,2.8353,8.7052,7.3116,13.9812,12.5885,3.3058,4.0632,4.0239,4.168,3.5688,3.2132,1.4995,1.5727,3.6314,3.9812,9.9488,9.4371,2.7607,2.9405,2.4064,2.2356,2.2073,2.4509,11.4609,12.5231,2.0373,2.4873,2.2047,2.4785,13.5707,13.3092,1.8903,2.1118,1.3416,1.3923,12.8768,12.9795,5.4872,5.3632,8.1332,9.639,4.5338,3.6201,10.0449,9.7753,7.7549,7.4671,6.4587,7.4131,3.6204,3.4992,1.6481,1.6145,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd635,,,F,1.2254,1.3353,0.4011,0.43272,0.88295,0.90359,16.493,2.6128,2.6642,44.2168,44.6311,13.7794,14.0919,234.7419,237.6217,1.2594,3.0375,3.0418,0.45832,0.51484,14.272,16.4888,1.7228,1.7194,3.4765,3.4516,6.9093,6.9887,4.4318,4.7191,0.08831,4.341,1.9909,2.2727,0.41993,0.41273,4.3511,5.2259,4.1919,4.5297,2.1787,1.6616,10.7221,10.4591,3.1363,2.7219,4.3899,4.4052,4.9111,4.8068,1.9052,1.6606,2.2514,2.2036,4.5784,4.4307,8.3668,8.1556,2.7332,2.6585,7.0461,6.9858,13.5794,14.593,8.2946,7.3144,2.6408,2.553,4.7227,5.3086,3.0691,1.9798,21.4648,21.2525,5.2143,6.5332,4.35,4.4376,1.0694,1.0919,2.7448,2.5553,8.7517,8.0067,16.5453,18.8747,3.2767,3.8068,4.4497,4.471,3.6102,3.3629,1.868,1.5065,4.0738,4.7152,11.011,11.7447,3.052,3.1477,2.5021,2.5789,2.53,2.6774,10.5419,10.6017,2.5869,2.6159,1.9982,2.3513,13.1199,13.8755,2.124,2.1388,1.5078,1.5941,16.1595,15.9932,5.9981,5.4185,9.3329,10.0553,4.755,3.9205,11.2368,11.3682,7.9134,9.2875,8.4958,7.8021,4.1776,4.2673,1.4801,1.672,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd636,65,65,F,1.0614,1.5136,0.40807,0.44694,0.89568,0.89788,17.406,2.8422,2.7179,43.341,42.9947,14.4105,15.2271,247.6648,240.7816,1.0958,3.3797,3.1889,0.51198,0.44373,11.3418,10.2416,1.6961,1.6838,3.6811,3.7317,7.042,7.3652,4.5171,4.6688,0.07215,4.9457,2.2808,2.4809,0.3938,0.3918,3.7232,4.2915,3.9907,4.1379,1.954,1.5833,9.5148,8.6071,3.0653,3.1932,3.2401,3.308,4.5377,4.4391,1.7756,1.6232,1.7747,1.7537,4.1558,3.719,6.9456,6.9016,2.2727,2.4275,6.8547,5.6319,10.6336,10.3433,7.9926,6.9976,2.4928,2.5376,4.2896,4.4844,1.8762,1.8702,17.4702,19.0342,5.7823,5.8084,4.2999,4.472,1.0518,1.1447,2.5962,2.7371,7.7122,6.5707,13.5027,12.3503,3.3914,3.9099,4.0595,3.9573,3.1232,3.2415,1.577,1.4683,3.7653,4.1557,9.8438,9.4709,3.1027,3.2123,2.117,1.9962,1.8811,2.2295,8.2134,9.1474,2.3569,2.7957,1.9273,1.9836,12.9067,13.1256,1.7405,1.7153,1.2297,1.3373,13.8721,13.2358,5.4518,5.4435,6.883,7.5452,4.5806,3.8561,8.7703,9.6752,6.5685,6.3187,8.0592,7.7644,3.9895,4.0213,1.2975,1.387,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd637,74,74,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd638,72,72,F,1.6203,2.3068,0.4353,0.46979,0.85519,0.871,18.9252,3.2269,3.2484,53.872,51.6314,16.5424,16.2637,252.5748,257.2867,1.4166,3.3649,3.2768,0.4896,0.45813,15.3711,13.1029,1.7566,1.8629,4.7141,4.7899,7.7554,7.6113,4.7776,5.2066,0.09123,5.1803,2.5213,3.1424,0.4116,0.43803,4.4457,5.1269,4.7612,4.7795,1.9333,1.7987,11.4851,10.5471,3.2672,3.2388,5.0674,4.3879,4.8374,4.3278,1.7166,1.7505,2.2642,2.1657,4.0094,3.6086,8.3586,8.2176,2.2727,2.4546,6.7231,7.0548,13.4129,13.1241,8.6827,7.9709,2.4591,2.7562,5.2704,6.12,2.0599,2.0408,19.9341,19.1789,5.4599,6.4813,4.4065,4.3401,1.1281,1.3268,2.8339,3.0236,10.1452,8.2845,16.1744,16.551,3.3699,4.0809,5.0772,4.5567,4.8534,3.7879,1.8669,1.652,4.5318,4.8577,11.4473,11.0082,2.9151,3.2276,2.6001,2.5772,2.3612,2.7311,11.0441,14.5135,2.7286,2.9659,2.34,2.5624,13.6971,12.6387,2.0861,2.0213,1.3308,1.3665,15.8186,16.4787,5.8532,5.3741,9.3915,9.9955,4.5661,3.6813,10.4075,11.6252,7.6178,8.7673,8.8573,8.7519,3.7947,3.753,1.5167,1.6139,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd639,,,M,1.7335,1.907,0.31335,0.32609,0.79662,0.76442,20.2468,2.5862,2.4524,53.3227,51.3749,19.6819,19.6858,233.252,227.9725,1.6919,3.3151,2.9702,0.61913,0.54061,14.9264,18.9404,1.7228,1.683,3.4568,3.2132,7.0514,7.6112,5.131,5.26,0.10665,4.8087,2.174,2.6146,0.34614,0.35595,4.1325,4.6051,4.1956,4.1686,1.6275,1.4234,10.4229,9.3302,3.2255,3.3004,4.0641,4.1787,4.5684,4.1656,1.5598,1.5804,2.1033,1.9546,3.7219,3.6432,8.1193,8.0286,1.9341,1.9871,7.5573,6.5178,12.6562,11.8236,7.5535,7.2396,2.1682,2.283,4.6893,4.4916,1.5766,1.6195,19.129,20.1029,5.4263,5.7859,3.6554,3.7465,1.0744,1.3318,2.4232,3.0645,7.4902,6.833,13.9705,14.8265,3.0004,3.6812,4.5205,3.9437,4.092,3.337,1.5673,1.373,4.0128,4.3339,10.9355,10.0543,2.8099,2.9696,2.5509,2.4643,2.2073,2.354,10.2604,12.5857,2.3005,2.3149,2.2704,2.5305,12.813,12.9605,1.6953,2.1522,1.1188,1.1825,14.303,15.0536,5.4556,5.4263,7.8463,8.7975,4.1802,3.2678,12.5354,11.5007,7.5752,7.5846,7.057,7.1147,3.5994,3.6948,1.597,1.7839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd640,73,73,F,1.4415,1.9231,0.37753,0.41414,0.97399,0.93247,21.8183,2.9543,2.0924,51.132,51.4787,17.5212,17.6952,269.1573,265.6812,1.2841,3.5816,3.2736,0.8319,0.46197,18.1727,17.5791,1.7878,1.753,3.3666,3.2226,7.0514,8.2229,5.139,5.4311,0.0856,5.7021,2.6173,2.9056,0.42072,0.39698,4.4632,4.7119,4.7343,4.7668,1.9423,1.7921,10.6557,10.2967,3.0557,3.0346,4.4733,4.4564,4.4619,5.1005,1.9067,1.6788,2.4407,2.3081,3.9507,3.7492,8.5283,8.4465,2.2946,2.3516,8.1387,7.2986,13.0247,13.2137,8.2483,7.6426,2.4832,2.747,4.6503,4.7073,1.9722,2.0006,20.253,20.1029,5.9935,6.3692,4.3394,4.3599,1.0667,1.1345,2.656,2.5507,8.2049,7.1,15.2482,16.9706,3.2782,3.6204,4.3364,4.6549,3.9048,3.5056,1.6958,1.7352,4.2239,4.6815,10.6949,10.6224,3.1747,3.3151,2.3071,2.3972,2.5237,2.6713,11.1468,11.6598,2.6,2.7234,2.1402,2.2904,12.047,12.468,2.0751,1.9968,1.1758,1.2696,14.8152,16.2504,5.948,5.4624,8.5809,8.9492,4.8821,3.9205,10.2779,11.6839,7.5512,7.945,9.1009,8.1909,3.9782,4.4426,1.5567,1.7354,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd641,,,M,1.2242,1.7778,0.45669,0.47721,1.0112,1.0179,21.4302,3.2616,3.2469,52.467,51.6314,19.2977,19.3243,274.269,264.8382,1.6407,3.9872,3.7395,0.50053,0.52111,16.2964,19.6813,1.8399,1.8463,4.2333,4.5662,8.0712,8.006,5.2788,5.4606,0.0895,4.8087,2.3995,2.9334,0.45822,0.43215,4.8039,5.1765,4.9298,5.0995,1.947,1.6474,9.9596,8.8339,3.3355,3.6121,4.177,4.4564,4.2915,4.7057,1.9621,1.8626,2.1795,1.9631,3.6364,3.4285,7.894,7.4826,1.9779,2.2249,6.8332,7.2467,12.2567,10.9412,8.0576,7.0595,2.4351,2.6536,5.4889,5.1811,1.7927,1.8114,19.6477,21.7276,5.2143,6.4609,4.1489,4.2597,1.1411,1.3214,2.52,2.8998,8.3148,7.0839,15.9125,13.2366,3.3871,3.9065,4.5684,4.2086,3.5138,3.6049,1.6501,1.6911,4.0929,4.7365,10.9155,10.7779,3.218,3.3717,2.5458,2.719,2.415,2.2781,9.0305,11.1024,2.5064,2.9716,2.2957,2.5596,12.2645,13.0845,2.1055,1.8746,1.2293,1.3161,15.6352,14.8471,6.3356,6.2148,7.8621,7.2811,4.5806,3.9244,10.0955,12.9099,8.7417,7.5252,8.8345,8.0227,3.9793,3.9858,1.6697,1.699,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd642,,,M,1.4349,2.0474,0.47365,0.52148,1.0112,1.0389,19.5486,3.2801,3.2523,55.275,58.4906,16.2712,15.7609,241.6973,236.1107,1.8515,3.9391,3.8589,0.43043,0.46701,15.1081,15.1691,1.8306,1.7332,4.2474,4.6599,7.5007,7.7786,4.9821,4.8368,0.06923,5.5523,2.5426,2.7653,0.45912,0.57889,4.66,4.7603,4.6538,4.7668,1.7974,1.6807,9.9833,9.7867,2.9254,3.0178,4.5488,4.4329,5.2958,4.382,1.9942,2.4015,2.3292,2.0081,4.3083,4.1818,8.1707,7.7758,2.2547,2.238,6.777,6.639,13.026,11.7584,8.1276,7.61,2.4161,2.4569,4.8567,5.7283,2.0711,1.9903,18.5704,18.5534,4.8565,6.7995,3.989,4.3998,1.1047,1.2117,2.7166,2.6676,9.1132,7.7744,16.0264,16.188,2.9033,3.1821,4.6522,4.6057,3.4368,3.8011,1.668,1.4758,4.2989,5.0378,11.7594,11.1584,3.1107,3.5993,2.5151,2.6615,2.5551,2.5593,12.0025,13.5281,2.5591,2.6349,2.2391,2.5102,15.4733,15.2823,1.8934,1.9968,1.3666,1.3974,15.1314,15.8127,5.4539,5.845,8.8443,9.4176,3.9975,3.2111,11.1648,12.9099,7.9287,8.3479,9.4681,10.4928,3.5129,4.0353,1.7041,1.6139,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd643,67,67,M,1.0532,2.2035,0.33255,0.37961,0.78938,0.74588,15.54,2.7586,2.7351,44.2266,44.6837,13.8782,13.5976,183.5937,188.2762,1.1281,3.1302,2.9396,0.76116,0.56191,11.468,12.7246,1.4317,1.4602,3.1172,3.2011,6.0978,6.0018,3.9635,4.2019,0.07662,4.2701,1.928,2.3794,0.33087,0.35398,3.7026,4.0964,3.3575,3.2997,1.7272,1.5505,7.7391,7.5552,3.0346,2.8047,3.974,3.7975,3.9068,3.6558,1.557,1.4042,1.6815,1.681,3.2442,3.1139,6.4112,6.6884,2.0352,2.0292,6.15,5.8245,9.7925,10.455,7.7077,7.6062,2.2402,2.4574,4.2933,4.4422,1.6283,1.5583,17.9403,17.23,4.5508,4.6717,3.7438,3.9861,1.0959,1.0539,2.4385,2.5883,7.3388,6.5865,12.7733,12.4233,2.4105,2.9202,3.7771,3.9945,3.2878,3.4143,1.5816,1.5183,3.9721,4.1086,10.0818,9.8832,2.8906,3.1551,2.199,2.1434,2.0855,2.2497,10.5834,11.0569,2.1937,2.4025,2.154,2.2782,11.0072,10.5878,1.7931,1.9032,1.1622,1.054,13.8315,13.1121,5.2929,4.6608,7.4343,7.0387,3.8521,3.0755,8.6424,8.8138,6.5753,6.2479,7.0173,6.8798,3.4193,3.7528,1.3964,1.5497,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd644,59,59,M,1.0829,2.0553,0.47365,0.52148,0.96734,0.98178,19.3177,3.6181,3.7724,52.246,51.3749,16.2343,16.2485,233.6644,231.5152,1.2058,3.5258,3.4208,0.62167,0.50392,8.3477,11.0313,1.6126,1.712,3.9218,4.0556,7.2574,7.3432,4.7611,4.9866,0.08406,5.3514,2.6767,3.0338,0.38983,0.37809,4.8252,5.5532,3.9549,4.6529,1.8453,1.7542,11.1846,9.9313,3.5456,3.2148,4.1476,4.3491,5.1805,4.3308,1.8042,1.8927,2.0182,2.1815,4.0984,3.8139,8.2928,7.929,2.1974,2.2053,7.0218,7.3491,13.5408,12.9958,8.4174,7.7831,2.415,2.6168,5.5455,5.4468,2.0095,1.9903,19.5149,20.5379,5.2318,6.4609,4.0039,4.297,0.96357,1.1499,2.4824,3.0079,8.8697,8.0969,16.7568,16.525,3.2767,4.3706,4.5359,4.9418,3.751,3.6293,1.6007,1.6983,4.1503,4.7152,11.8125,12.6524,3.0666,3.3782,2.2122,2.2438,2.1703,2.8163,11.1992,12.5624,2.2067,2.6944,2.0631,2.3603,12.0438,12.7485,2.0578,2.4258,1.2767,1.296,15.9956,15.9663,6.3356,6.0863,8.7476,10.095,4.558,3.4209,10.8951,11.9809,8.3095,8.0384,9.5234,9.1485,4.0728,4.4132,1.5171,1.6804,,30,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd645,70,70,M,1.8751,1.9879,0.41207,0.4871,0.786,0.7312,19.121,2.7537,2.8133,47.2982,46.7113,15.1701,15.5338,191.2965,192.0136,3.0552,2.9243,2.5551,0.88156,0.6879,34.3032,36.3813,1.5564,1.5505,3.5165,3.7195,6.4362,6.8349,4.7561,4.9442,0.08307,5.0502,2.323,2.5363,0.38849,0.3793,4.3671,4.9016,4.4397,4.5414,1.6933,1.3355,10.8675,9.553,2.8136,2.666,4.2331,4.6944,4.4505,3.665,1.4797,1.4114,2.1733,2.1482,3.7219,3.6374,7.6698,8.0619,1.9341,2.0637,6.6592,6.2801,11.2832,11.3361,7.8756,7.5597,2.1137,2.0685,4.4131,4.626,1.7698,1.7697,16.9,16.2445,5.6771,6.1169,3.6457,3.7084,1.0789,1.164,2.5683,2.392,7.8601,7.5175,13.2145,14.5863,2.5739,2.9422,4.2732,4.0253,3.4287,3.4183,1.4614,1.3618,4.0044,4.479,10.4458,10.339,2.8815,3.1608,2.495,2.5067,2.3196,2.399,10.4753,11.871,2.1154,2.2394,2.0316,2.5356,11.9364,11.8982,1.9195,2.0675,1.1638,1.2545,13.0801,13.2544,5.5635,5.3514,7.8463,8.0099,4.1595,3.1887,10.6498,10.0025,6.9663,7.8232,6.9707,6.9268,3.4632,3.3353,1.4823,1.6912,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd646,82,82,F,1.6495,1.4237,0.33199,0.34673,0.65782,0.67135,18.2149,2.6878,2.6787,42.0401,42.0141,14.882,14.5574,223.1865,219.8805,1.0956,2.9372,2.7905,0.66079,0.70622,11.8547,15.3692,1.5024,1.5027,2.8663,2.8551,6.0014,6.2407,4.4157,4.5656,0.07934,4.3109,2.2713,2.493,0.36239,0.35723,3.987,4.1991,3.2609,3.4818,1.5732,1.4399,10.2475,9.0189,2.4154,1.8742,3.4837,3.5616,4.1327,3.4998,1.3917,1.3091,1.7829,1.681,3.3997,3.237,6.8535,5.647,2.0941,1.9565,6.8719,6.2974,10.1361,9.3713,6.6337,6.1424,2.1097,2.1242,4.7897,4.3981,1.7361,1.6281,16.4198,17.2491,5.2902,5.7157,3.4901,3.7205,1.0611,1.0947,2.4179,2.5113,7.3406,6.5123,11.4993,12.3947,3.0322,3.1802,3.6394,3.7017,3.1616,2.7968,1.4614,1.3473,3.3708,3.6512,9.3341,9.2696,2.5379,2.7861,1.9343,1.9934,1.7999,2.1672,9.1737,11.1282,2.1507,2.164,1.7402,1.9755,10.6278,11.8666,1.5454,1.7943,1.1179,1.054,12.1472,14.3766,4.9428,5.2782,7.077,9.4901,4.2762,3.2493,9.9435,11.3991,5.5752,5.4892,6.3412,6.245,3.2715,3.2229,1.2209,1.3702,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd647,68,68,F,0.93909,1.7796,0.33871,0.41026,0.81267,0.79086,15.0725,2.143,2.442,45.4569,45.9694,12.0435,12.804,207.8475,208.4223,0.85296,3.1608,3.0526,0.38198,0.39513,4.2276,7.6682,1.2675,1.2696,3.2018,3.136,5.7828,6.0178,3.8767,4.0842,0.06557,4.5285,2.2165,2.4605,0.33588,0.3502,4.0076,4.1787,3.2948,3.4546,1.6054,1.4948,9.622,9.1829,2.8002,2.7682,3.2035,3.579,4.5008,3.9864,1.6064,1.4671,1.7128,1.6726,3.1411,3.3483,7.8632,7.3465,2.0352,2.0266,6.6976,5.9451,11.5592,11.2543,7.4874,7.109,1.8806,2.2395,5.1835,5.1372,1.6708,1.5917,18.6572,19.1382,5.027,5.873,3.7009,3.8976,1.1499,1.0747,2.946,2.8104,7.1015,6.4951,14.5052,14.4608,2.6699,3.0631,3.9848,4.0192,3.0249,3.4832,1.314,1.2236,3.7856,4.304,8.7178,10.6683,2.8671,3.0323,1.6855,1.7311,1.6514,2.0994,10.8712,12.1633,2.0246,2.2325,1.84,2.1099,13.6885,14.0706,1.6063,1.8587,1.1721,1.2162,13.5233,14.4139,4.7906,4.6801,8.6764,9.7304,3.6327,3.2589,9.4686,11.3991,6.6682,7.7485,7.2523,7.1257,3.2024,3.4214,1.1396,1.4355,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd648,62,62,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd649,66,66,M,1.4915,2.0363,0.41158,0.44488,0.98247,0.94357,19.4632,2.9065,2.9926,46.3204,46.6539,15.4577,15.5595,233.6644,245.6422,1.0389,3.6414,3.3822,0.41122,0.37814,12.0578,13.6065,1.6629,1.6433,3.8073,4.0015,7.1682,7.4805,4.7738,4.9841,0.07591,4.6608,2.1306,2.5172,0.4115,0.41197,3.6227,4.2382,3.8487,3.8279,1.9226,1.7476,10.6387,10.181,3.0094,3.0648,3.7866,4.0472,4.653,4.5748,1.9183,1.77,1.8849,1.9445,3.6851,3.285,7.4065,7.6012,2.1971,2.2216,7.0325,6.4482,10.9587,11.6942,7.6887,7.3998,2.4733,2.6598,4.1402,4.4862,1.8468,1.9334,16.9474,19.4458,5.2143,6.6358,4.0721,4.3173,1.2688,1.1086,2.7194,2.249,7.9901,6.6941,14.5429,15.991,3.2577,3.0137,4.3009,4.2138,3.4063,3.6293,1.6262,1.686,3.5558,4.0093,10.0705,9.8724,3.1056,3.3923,2.2887,2.1538,2.2397,2.5934,9.4889,11.3752,2.5224,2.9716,1.8859,2.1393,12.1052,12.0331,1.8382,2.4288,1.1744,1.2978,14.8198,14.2793,5.259,5.1906,7.8348,8.9635,4.4744,3.8011,10.3709,11.0075,7.9936,7.9222,8.5115,7.6055,3.5681,3.7456,1.5011,1.7284,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd650,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd651,43,43,F,1.0437,1.5845,0.34906,0.39511,0.87013,0.83318,17.9623,2.7496,2.8472,35.0639,36.5567,16.2098,16.2364,212.1288,213.7681,1.22,3.3323,3.0832,0.6389,0.6351,11.4171,16.1099,1.6559,1.5954,3.7794,3.8888,7.2864,7.0505,4.6835,4.9351,0.07262,4.9875,1.9311,2.4701,0.36866,0.34565,4.1325,4.4953,4.0128,4.2877,1.8447,1.5632,9.6472,9.2595,3.2433,3.2794,3.8236,4.1651,5.028,4.6713,1.7055,1.6321,2.0866,2.0336,3.7229,3.7527,7.2433,7.2397,2.1974,2.2699,6.4499,6.1025,11.0199,10.9211,8.4769,7.3711,2.3834,2.5044,4.4276,4.6039,1.8996,1.9723,17.8984,18.0269,4.8995,5.9567,3.9101,4.1875,1.0288,1.1962,2.4162,2.578,7.8169,7.3397,13.4418,13.3923,3.0024,3.2917,4.0239,3.9573,3.4648,3.4189,1.745,1.6584,3.5927,4.0902,10.2264,10.5771,2.8168,3.3577,2.2177,2.2839,2.1405,2.4603,10.2031,11.6036,2.3716,2.7641,1.8764,2.2326,12.3494,12.8191,1.9694,2.0111,1.1929,1.2417,15.8016,14.7676,5.0968,5.5021,7.9386,8.8259,4.1539,3.8011,10.6824,11.1783,7.0391,6.718,7.8439,6.5938,3.5886,3.7456,1.4508,1.6558,,29,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd652,70,70,M,2.2566,2.6714,0.29097,0.33732,0.79242,0.82209,17.1029,2.5066,2.3539,47.376,47.8809,15.5951,15.9902,195.6455,187.6717,2.7035,3.6133,3.2196,2.2907,1.3495,46.5001,44.2152,1.5261,1.4444,3.0378,3.046,6.1882,6.0733,4.5078,4.8195,0.06532,4.7414,2.3143,2.6407,0.35381,0.32917,4.717,4.8834,4.2546,3.7959,1.7309,1.4374,10.4229,10.181,3.7436,3.8162,4.2444,3.8546,5.8801,5.6826,1.6702,1.6624,2.2834,1.9936,3.7591,3.6101,8.1498,8.2525,2.0569,2.1179,7.5426,7.1014,12.5933,11.8236,9.1151,8.2622,2.406,2.3699,5.2766,5.4468,1.8926,1.6768,19.571,20.4507,6.6368,6.4612,3.9408,3.8912,1.4516,1.3127,3.2335,2.8933,8.4784,7.6204,13.7943,13.855,3.5262,4.132,5.0949,5.2492,3.9048,3.5135,1.668,1.5647,6.1239,5.0036,12.1757,12.7505,2.9314,3.3696,2.1883,2.232,2.2996,2.6345,10.9025,12.1538,2.3189,2.2607,1.9457,2.0657,13.6885,13.3365,2.2965,2.1929,1.0787,1.1387,17.0549,15.2019,6.8389,6.1341,8.702,9.3758,4.7643,3.8453,9.2836,11.5286,8.4027,7.6602,6.996,7.0541,4.0663,4.2387,1.4892,1.463,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd653,75,75,F,1.3335,1.9878,0.37753,0.40435,0.90904,0.88549,15.4609,3.4437,3.1726,45.7527,45.3358,12.2852,12.6276,188.9378,188.3036,1.0805,3.619,3.3788,0.55737,0.41764,10.8471,12.3222,1.4927,1.4829,3.4455,3.605,6.3384,6.6497,5.0321,5.3791,0.08499,4.2516,2.2701,2.3744,0.36673,0.36524,3.3679,4.2642,3.8721,4.0771,1.6453,1.3465,8.8763,8.2665,2.4799,2.614,3.6471,3.7564,3.5822,3.7362,1.6893,1.6946,1.7505,1.8814,3.4374,3.0591,7.0941,7.1677,1.6766,1.7576,6.5135,5.8863,10.9484,11.1411,7.6875,7.0399,2.0495,2.0345,4.3071,4.1942,1.4812,1.5011,16.2296,16.3922,4.7603,5.7343,3.508,3.3068,1.2338,1.097,2.687,2.5173,7.728,5.9197,13.8825,13.2739,3.0039,3.1758,4.1216,4.095,3.0664,3.2241,1.2794,1.3506,3.9344,4.0479,9.7225,9.4214,3.0239,3.3554,2.1566,2.133,1.8528,1.9191,9.3724,10.283,2.3169,2.2422,2.1021,2.1117,10.0057,10.2205,1.6764,1.7361,1.0156,1.0199,12.6629,11.6763,5.1302,4.6124,7.2824,7.5649,3.8119,3.4278,9.0975,9.2288,7.1714,7.2878,7.3755,7.4517,3.1968,3.4857,1.3581,1.4548,,27,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd654,,,M,1.906,2.6779,0.37359,0.40169,0.84848,0.89401,18.139,3.0661,2.86,52.4901,52.9065,14.3158,14.2885,207.7413,206.9141,2.2077,3.5946,3.4216,1.2944,1.1149,29.6512,31.4738,1.4964,1.4994,3.5275,3.487,6.4998,6.5824,4.2391,4.6351,0.06372,5.4789,2.4826,3.1424,0.40229,0.39996,4.0148,4.706,3.7408,3.7338,1.7255,1.5999,9.615,9.2765,3.897,3.6443,3.182,3.8802,4.9248,5.2862,1.6195,1.7904,1.8373,1.7867,3.5592,3.4262,7.569,7.9761,1.9915,2.1913,6.6404,6.9762,11.0295,11.0308,8.6267,8.3164,2.1655,2.2919,4.7728,4.9662,1.8383,1.9217,18.2342,18.8355,5.0615,6.6156,3.7214,4.0077,1.2995,1.0018,2.5579,2.4105,8.3722,6.7738,14.1004,13.6104,2.8502,3.0963,4.5601,4.8903,3.2812,3.0305,1.4818,1.4079,4.0301,4.2587,10.4929,9.9819,3.2048,3.3865,2.1295,2.082,2.0324,2.1756,10.8847,11.9634,2.1795,2.3931,2.0512,2.2904,12.809,12.0972,1.8463,1.8785,1.2255,1.235,13.9443,14.2595,5.5548,5.4055,8.3019,9.0355,4.0509,3.38,9.257,9.8113,7.1922,7.4566,7.2278,6.5995,3.4062,3.4426,1.5695,1.6421,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd655,,,F,0.70972,1.2959,0.34421,0.3078,0.83563,0.73903,17.3583,2.4491,2.2608,38.9068,39.0627,15.3667,15.5561,224.1112,219.8805,0.85296,3.0712,2.886,0.39387,0.32914,8.5651,11.2279,1.48,1.4314,3.3185,3.2448,7.159,7.109,4.2859,4.4056,0.06425,4.0219,2.1788,2.3743,0.32632,0.33996,3.4537,3.8893,4.075,4.2093,1.4168,1.3231,10.2834,8.3617,3.0752,2.9269,3.4909,3.6125,4.6875,4.4206,1.5565,1.5231,2.1033,1.8167,3.1741,2.8304,6.1785,6.4193,1.8028,1.679,6.3031,5.5259,9.525,9.2094,7.0608,6.367,1.8908,2.0892,4.2837,4.5037,1.4358,1.4145,15.3359,15.3404,5.3553,5.4664,3.1968,3.4098,0.8214,0.94874,1.9884,2.037,6.3844,5.5724,11.259,10.9002,2.6433,3.3184,3.927,3.7928,3.5997,3.4294,1.3361,1.3531,3.479,3.6734,9.1884,9.3891,2.6373,2.7702,2.482,2.0805,2.1804,2.4603,10.3212,12.4954,2.2016,2.4992,2.033,2.4478,12.0609,10.3589,1.9632,1.9839,1.0543,1.0716,12.7223,11.8028,4.4074,4.1201,8.2998,8.7912,4.4664,3.4117,10.6959,10.0536,6.8406,6.3452,7.1688,6.2784,3.4521,3.429,1.6067,1.5869,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd656,81,81,F,1.8046,2.1606,0.32574,0.34796,0.73728,0.71856,16.438,2.1957,2.1338,44.5325,44.4463,14.8867,14.4504,243.5345,241.3842,2.0082,2.8752,2.6235,0.89895,0.72752,24.2377,25.4666,1.5712,1.5847,2.9483,3.2567,6.109,6.6129,4.4743,4.6758,0.07654,4.1502,1.9878,2.6526,0.35492,0.34181,3.4711,4.1868,4.1658,4.1827,1.6128,1.4608,10.0108,9.422,2.2766,1.9387,3.2035,4.2033,2.8214,3.1715,1.4097,1.3728,1.8886,1.7789,3.4718,3.0591,6.3825,6.2204,2.078,1.6308,5.1472,4.866,9.9738,10.0806,6.5732,6.0214,1.9676,2.2542,4.624,4.4826,1.6708,1.6189,17.1331,17.23,3.8406,5.1587,3.5804,3.6691,0.98894,1.0087,2.3305,2.3165,7.1542,6.1907,13.1951,13.0458,2.0591,2.8097,3.6394,3.8015,3.1616,2.9994,1.399,1.4125,3.5588,4.2202,9.385,10.0366,2.4831,2.7242,2.5552,2.0805,1.79,2.2773,9.1566,10.2318,2.1623,2.303,2.2133,2.1754,10.0684,10.188,1.7788,1.8418,1.0539,1.0615,12.6128,13.0649,4.854,5.3437,7.8423,7.9899,3.3745,2.6071,9.6188,9.5526,7.2718,6.271,6.7759,6.5792,3.1879,3.8217,1.6481,1.4648,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd657,78,78,F,2.2232,1.9983,0.38699,0.36041,0.81323,0.83691,18.4171,2.9093,2.5095,45.0844,46.4712,14.0881,14.456,215.1196,211.6229,1.8946,3.2781,3.0335,0.91151,0.79468,20.8601,24.3171,1.5569,1.5064,3.4792,3.5827,6.389,6.5072,4.4157,4.5314,0.07934,5.0541,2.2072,2.4891,0.32351,0.3668,4.0784,4.1485,4.0903,4.0245,1.8676,1.5454,9.9959,7.8224,3.113,2.8563,4.168,3.9354,4.1589,4.2499,1.722,1.5735,1.9232,1.87,3.6102,3.2787,7.3072,7.0765,2.1538,2.0694,6.6393,5.4912,11.629,11.1036,7.9804,7.2814,2.3407,2.4051,4.3623,4.8702,1.7549,1.6534,17.828,17.9538,5.5448,5.5906,3.8847,3.785,0.92943,1.2595,2.406,2.5869,6.5382,5.9132,14.0337,12.4328,2.8595,3.0587,4.5195,4.0231,2.73,3.0846,1.6731,1.5016,3.596,3.9007,8.9853,9.2741,2.8414,2.9696,2.3147,2.2191,2.2513,2.5471,9.654,11.5959,2.3864,2.4878,2.1426,2.3094,11.9639,10.9797,1.9446,2.1495,1.1188,1.1536,12.9133,13.7731,5.1356,4.9208,8.2728,9.4595,4.0302,3.5751,9.6342,9.1618,6.6682,7.3668,8.3288,8.1635,3.4165,3.3893,1.5894,1.5717,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd658,84,84,F,1.303,2.3053,0.28468,0.31748,0.66914,0.67863,14.5013,2.4448,2.3864,39.2901,41.5414,11.6514,12.0021,177.7723,175.5353,1.1253,2.5942,2.3258,0.49291,0.41883,10.4673,12.0323,1.3457,1.3058,2.9419,3.1734,5.7447,5.863,3.7745,3.8384,0.06985,4.3323,1.8979,2.3747,0.32352,0.30443,3.5102,3.7447,3.4291,3.5241,1.4122,1.2669,8.2003,8.2641,2.9717,2.81,3.4843,3.0922,4.5982,4.24,1.3936,1.3117,1.668,1.8109,2.7222,2.7854,6.251,6.4238,1.7222,1.7244,5.8928,5.957,9.1927,9.6013,7.5242,6.8138,1.8843,1.8256,3.6723,4.0453,1.4247,1.4152,13.7531,13.927,4.6187,5.7343,3.0777,3.1934,0.86488,0.93562,1.9456,2.1198,6.5251,5.7123,11.7,11.7615,2.5782,3.0621,4.1069,4.1086,2.8824,2.9963,1.2663,1.097,3.5145,3.7326,9.4991,9.2175,2.3512,2.5782,1.8642,1.7303,1.8168,1.9125,8.2134,9.8791,1.9955,2.0272,1.7498,1.7416,10.1462,10.6331,1.5787,1.5947,0.96188,0.93605,11.2428,11.351,3.9938,4.2436,6.171,5.7734,3.6124,3.1956,8.2168,7.8501,5.98,6.1394,6.2989,6.9058,2.7553,3.0846,1.221,1.1515,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd659,69,69,F,0.82014,1.9782,0.42838,0.48445,0.94447,0.85018,19.4632,3.3825,3.2439,48.2352,47.8478,16.1704,15.5489,271.7577,268.7903,0.89851,3.684,3.6848,0.41122,0.41167,4.3307,4.2156,1.9924,2.3875,4.3237,4.6387,8.509,8.5038,5.4042,5.7002,0.0791,4.6203,2.2473,2.8725,0.35327,0.40403,3.6612,4.2915,3.7167,3.9006,2.3199,1.6718,11.0488,8.7738,3.5942,3.5156,3.5122,3.9082,4.9417,5.0647,1.8042,1.8342,1.7505,1.841,4.3053,4.5553,8.0655,8.2372,2.2903,2.3867,6.4716,6.5227,11.4399,11.9897,8.4486,7.6197,2.7532,2.4938,4.1164,4.2561,2.3643,2.2307,17.8055,19.1663,5.5177,6.6615,4.5976,4.6903,1.156,1.1447,2.7977,2.6437,8.0739,6.3517,13.7059,14.0223,2.9953,3.3159,4.4969,4.7443,3.2949,3.3972,1.8308,1.4772,3.9757,4.1169,10.8608,11.3682,3.2135,3.4671,2.1219,2.2052,2.2022,2.37,10.1239,11.4977,2.4929,2.8273,2.0512,2.288,12.3146,13.4365,1.9192,2.1538,1.3669,1.3112,14.6592,15.1221,5.269,4.9526,7.3627,8.757,4.0864,3.7481,10.9728,11.6669,7.0388,7.0721,8.3394,8.0934,3.6974,3.7857,1.6101,1.7354,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd660,66,66,M,1.0188,1.5845,0.39689,0.44694,1.0266,0.99923,17.8395,2.9757,2.9926,48.961,47.9699,15.1601,15.8275,241.6973,232.5789,1.0778,3.9562,3.5729,0.67066,0.65957,8.2404,11.6139,1.57,1.4938,3.8883,3.8966,7.3745,7.4816,4.6513,4.9523,0.08636,4.7606,2.271,2.5672,0.39874,0.40583,4.3436,5.1379,3.7839,4.1655,1.9181,1.6284,10.6342,9.6959,3.2456,2.9833,4.3899,4.2821,4.7354,4.7009,1.8996,1.8671,2.038,1.874,4.1116,3.6149,8.2978,8.1165,2.3994,2.3336,6.5161,7.0398,12.9346,12.624,7.9318,7.466,2.2805,2.4185,5.0995,4.9883,1.9726,1.9251,20.8946,19.892,5.0435,6.1711,4.3027,4.5688,1.041,1.0477,2.5683,2.756,8.3811,7.5977,15.0508,13.855,2.9953,3.5947,4.5684,4.2157,3.5722,3.5426,1.5949,1.4956,4.496,4.9629,11.2362,11.0971,2.9352,3.2697,2.2847,2.3784,2.2216,2.3883,10.4138,10.9396,2.4033,2.6349,1.9059,2.2601,13.703,12.0469,2.0578,1.8785,1.2573,1.3638,16.623,15.2893,5.7327,5.3595,8.3652,10.0223,4.5181,3.9706,10.6498,11.6051,8.3,7.898,8.9394,8.3456,3.9849,4.2005,1.295,1.7457,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd661,73,73,F,1.4415,2.5699,0.30529,0.34872,0.61742,0.67411,17.5146,2.8393,2.548,47.2334,46.647,14.3158,14.1809,193.1778,192.4498,1.2558,2.7667,2.5595,0.67471,0.80996,14.7903,15.7483,1.4111,1.4396,3.3018,3.5801,6.109,6.3183,4.5571,4.6879,0.09549,5.1586,2.1661,2.7387,0.31235,0.31773,4.2118,4.7613,4.0205,3.9356,1.5847,1.3981,8.1043,7.8755,2.8962,2.6636,3.8336,4.156,3.6229,3.349,1.2126,1.3803,2.1351,2.0471,3.3431,3.3089,6.0359,5.5941,2.0011,2.1343,4.974,4.9948,8.294,8.6306,6.7667,6.2403,2.0035,2.0892,4.4777,4.6176,1.8028,1.8793,17.0132,17.3434,4.1136,5.0349,3.6215,3.717,0.92397,1.086,2.1727,2.2378,8.8146,7.2201,9.7986,10.8007,2.391,2.7622,3.6227,3.6517,3.5997,3.859,1.4084,1.2523,3.5234,3.976,8.6133,8.4504,2.3909,2.5995,2.4224,2.3242,2.2523,2.4107,9.3087,10.2318,1.9175,2.0384,1.9927,2.1863,10.0684,9.9601,2.0533,2.0344,1.275,1.2233,13.2124,13.8689,6.0849,5.8365,6.5474,7.8364,3.8231,2.8301,9.2968,9.2394,5.2529,6.0194,6.6822,6.2006,3.4362,3.46,1.455,1.4862,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd662,66,66,F,2.1921,1.9408,0.3587,0.40487,0.74275,0.79027,17.8283,3.2081,3.0369,46.231,46.3144,13.8184,14.4429,221.8362,214.3011,1.817,3.2981,3.127,1.5235,1.1391,26.6813,28.7946,1.5756,1.5497,3.8694,3.7625,6.0281,6.5563,4.4726,4.6769,0.09039,4.6394,2.1363,2.4462,0.38088,0.39029,4.4161,4.9245,4.1678,4.5025,1.7043,1.6136,9.2715,9.03,2.7894,2.7817,3.9873,4.0958,4.518,3.665,1.4334,1.4603,2.1704,2.169,3.4554,3.2018,7.2911,7.5113,1.8605,1.9173,6.2807,6.1868,11.4373,12.1345,7.6647,7.0396,2.336,2.3936,4.8872,5.4779,1.7385,1.7076,16.9497,17.8174,4.6092,6.0297,3.3473,3.5057,1.2135,1.1109,2.5359,2.5841,7.6513,6.256,14.3491,15.3184,2.2906,3.2549,4.4021,4.471,3.5269,3.353,1.7034,1.634,4.023,4.6571,10.1977,11.3595,2.8337,3.1414,2.4381,2.3505,2.4669,2.5135,12.2547,12.5231,2.316,2.2691,2.0711,2.3153,11.6578,11.5573,2.0972,2.1495,1.2567,1.189,14.4769,13.7678,5.1473,4.8506,7.6891,8.1905,3.8669,3.1314,10.3976,10.2256,7.6082,7.1874,7.2679,8.135,3.4457,3.6839,1.5459,1.5876,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd663,,,F,1.3846,1.6709,0.33048,0.35194,0.76962,0.72214,16.589,2.8108,2.5641,44.7209,42.9856,12.2102,12.9864,169.4901,165.6806,1.5677,3.1279,2.7707,0.74711,1.1214,16.3604,21.8116,1.3605,1.3431,3.0508,3.1165,5.6714,5.8789,3.916,4.1478,0.07584,4.6035,1.9992,2.2839,0.34264,0.35398,3.7732,4.1523,3.6926,4.0423,1.6327,1.3311,8.8763,7.1597,2.725,2.676,4.013,4.1743,4.738,4.3741,1.5878,1.4048,1.9177,1.9841,3.443,3.1138,7.1564,7.4144,1.7508,1.8384,6.6711,5.9553,10.5303,10.32,7.3271,7.1804,2.1197,2.2472,4.3567,4.3288,1.5505,1.5606,16.2457,14.1337,5.4068,5.121,3.4976,3.4001,1.1689,1.3535,2.5289,2.7815,6.9133,6.5123,13.5206,12.9678,3.1303,3.6115,4.1177,4.5263,3.1402,3.4972,1.6273,1.4734,3.6334,4.2202,10.3657,10.033,2.8765,2.9583,2.198,2.232,2.1405,2.4953,9.6887,11.6623,2.1665,2.3643,2.0192,2.1077,11.6976,12.2178,1.8799,1.8926,1.0384,1.0199,11.7282,13.483,4.8735,4.7759,7.2698,7.7036,4.8341,4.4032,10.5224,10.1685,6.9698,6.3754,7.3906,6.2131,3.4253,3.5572,1.5917,1.5591,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd664,78,78,F,2.1015,1.7534,0.35875,0.41846,0.80167,0.80252,16.8748,3.1894,3.0055,46.7065,46.8022,12.1684,12.9864,221.3739,215.926,1.817,3.4557,3.2747,0.9369,0.80183,20.9617,24.447,1.566,1.563,4.1883,4.4826,6.5677,6.8909,4.4926,4.6407,0.08331,4.6394,2.1092,2.4806,0.36965,0.35868,3.796,4.2625,4.2631,4.3443,1.7043,1.5373,11.5262,10.5443,3.8419,3.877,3.5163,4.0095,5.8685,5.4337,1.5548,1.4381,1.9559,2.028,3.4846,3.177,7.2114,7.5174,1.8882,2.0083,7.4434,7.4941,12.2302,11.6909,8.211,7.7564,2.3363,2.3702,4.5803,4.2283,1.7081,1.675,17.2759,16.4015,6.1064,7.0538,3.6601,3.8704,0.95122,1.0421,2.3532,2.9104,8.3682,6.6941,15.2902,12.8711,3.6796,4.0329,4.6384,4.701,3.1835,3.2658,1.6736,1.4596,4.0838,4.6253,10.9995,11.2471,2.9034,3.0109,2.1883,2.3037,2.0085,2.3187,10.5334,11.4886,2.3067,2.345,2.1876,2.3018,10.3294,11.3625,1.9731,1.9411,1.1198,1.2447,13.0274,12.9521,5.3963,5.0169,9.1852,10.0076,4.3393,3.8,11.5183,11.6051,7.7033,9.3392,9.073,7.882,3.8261,3.5532,1.4867,1.5661,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd665,81,81,F,1.7983,2.3061,0.38217,0.39958,0.81323,0.79912,16.6075,3.3177,2.9646,41.8136,42.8051,12.9262,12.6969,201.5903,200.9291,2.0012,3.3865,3.3223,1.2944,1.363,25.6969,28.2816,1.4831,1.4302,3.5052,3.4336,6.7515,6.9395,4.2579,4.4731,0.05934,4.1678,1.9234,2.4742,0.3743,0.37608,3.8895,4.706,4.0025,4.2913,1.7905,1.6322,9.5422,8.9214,2.8765,2.6903,3.6476,3.4536,4.1849,4.1151,1.6222,1.4878,1.8219,1.7401,3.5202,3.1838,6.8021,6.6439,1.8657,1.9182,6.2898,5.9092,11.0169,9.5404,7.6388,7.7103,2.1323,2.1914,4.554,4.8029,1.6097,1.6313,18.328,17.1374,4.5897,6.3066,3.5288,3.8828,0.98132,0.94417,2.5015,2.3596,7.6393,6.3241,13.3432,12.8625,2.4105,3.2646,3.842,3.7681,3.1849,3.61,1.4656,1.4125,4.0996,4.6726,9.3961,11.1281,2.9846,3.1608,2.5105,2.4182,1.9803,2.6276,9.279,11.5521,2.4268,2.394,2.2845,2.3251,11.3061,11.6975,1.9533,1.9261,1.1318,1.1993,14.7075,14.2032,5.2593,5.2323,8.062,9.4288,3.4725,3.4278,8.8843,9.5526,7.5978,6.7864,7.2399,6.6158,3.524,3.4857,1.5479,1.5869,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd666,,,F,1.0344,2.0142,0.38794,0.42186,0.93717,0.96084,18.3676,2.7501,2.796,45.6943,47.2679,14.8592,15.0095,259.9497,257.2867,1.0822,3.5258,3.2736,0.58957,0.54994,11.6909,13.7011,1.8652,1.8031,3.9125,4.0496,7.4845,7.4579,4.7272,4.9063,0.07143,4.7194,2.2135,2.782,0.38429,0.3918,3.6059,4.4614,4.1032,4.6331,2.1901,1.7011,11.0488,10.3745,3.6048,3.9856,4.2583,4.611,4.8849,4.5031,1.7703,1.6975,2.0494,2.2115,4.3402,4.4307,7.1333,7.5082,2.3144,2.4791,6.4488,6.7482,10.9388,11.5102,8.1686,7.7564,2.6877,2.593,4.2896,4.7792,2.4392,2.3246,20.9149,21.4624,5.6307,6.4612,4.2061,4.3548,0.91035,0.95426,2.3478,2.0313,7.9787,7.3397,14.7209,14.397,2.9069,3.5094,4.6522,4.6343,3.5209,3.6147,1.8723,1.6958,3.9944,4.5439,11.3053,11.7447,3.054,3.1178,2.3587,2.4637,2.4892,2.7218,9.7278,11.782,2.3616,2.7234,2.0151,2.3762,11.9125,12.6403,2.123,1.9569,1.3308,1.3937,15.1168,17.2763,5.1829,5.2739,8.2241,10.3903,3.8339,3.4278,10.8458,10.5715,8.4027,7.5473,8.5351,7.7869,4.5598,4.28,1.421,1.7699,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd667,73,73,M,1.7782,1.6608,0.3806,0.41414,0.86217,0.82955,18.6723,3.5276,3.3105,51.3695,51.2861,15.2336,15.1132,229.0916,218.6799,1.8655,3.2733,3.107,0.67846,0.66825,15.1081,18.3588,1.4269,1.4625,3.5275,3.9674,6.5958,6.5537,4.7695,4.9747,0.10157,5.4473,2.354,2.8418,0.36423,0.38007,3.3884,4.1264,4.1206,4.3443,1.778,1.5141,9.8631,7.8224,3.4087,3.2663,3.5358,4.016,4.6626,4.6044,1.7,1.6079,2.1043,2.0322,3.6102,3.2268,8.1707,7.7014,1.8119,1.9738,7.1179,6.4962,13.026,12.0395,9.245,8.8932,2.325,2.3702,4.4676,4.7548,1.4812,1.6073,15.8594,17.9085,4.7446,5.8612,3.6043,3.8937,1.1914,1.0988,2.5579,2.3418,6.7463,6.1349,15.9131,14.8551,2.779,3.2318,4.5317,4.6005,3.7581,3.2757,1.7034,1.4893,3.4491,3.9719,10.0705,9.8994,3.1553,3.4016,2.3581,2.409,1.9658,2.3182,10.3476,11.9811,2.3909,2.4608,2.2822,2.2562,11.7584,12.7485,1.5779,1.8972,1.1548,1.1544,13.7717,12.6499,5.1356,4.861,7.4458,8.7445,4.1453,3.7508,11.1253,11.1783,7.1278,7.9303,8.9394,7.9237,3.4329,3.6839,1.4701,1.7326,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd668,62,62,F,0.97219,2.0464,0.38859,0.42948,0.86557,0.90859,15.8825,2.884,3.1461,43.2103,42.7712,14.574,15.2514,247.6648,240.4316,1.0822,3.4038,3.1719,0.36495,0.39153,9.4804,10.6412,1.6961,1.7106,3.3503,3.4616,6.9843,7.1892,4.4591,4.6325,0.0773,4.65,2.2446,2.584,0.40429,0.395,4.3436,5.2234,4.2669,4.5297,1.9409,1.5833,9.8315,8.3848,2.9195,3.0648,4.2217,4.3391,4.4619,4.7057,1.7773,1.8278,2.2834,2.0178,3.9367,3.6493,7.0668,6.9801,2.1663,2.1507,7.0274,5.6291,11.2816,10.7645,7.5873,7.4715,2.5124,2.4718,4.9537,4.8665,1.8856,1.8161,19.8375,20.5315,5.2828,5.5648,4.1108,4.2597,1.0648,1.0919,2.7321,2.755,8.6305,7.3773,13.7059,13.3923,3.329,3.6257,3.9794,3.6426,4.0271,3.6095,1.6501,1.5359,3.9334,4.5439,10.9155,10.9844,3.1579,3.3609,2.5382,2.3877,2.4781,2.7929,10.0747,11.3632,2.4489,2.6967,2.0367,2.4102,12.0507,11.3711,2.0714,2.3105,1.1343,1.225,15.1682,14.8102,6.2218,6.1341,8.4066,8.8943,4.1901,3.7345,9.7343,9.6752,6.9663,6.7011,8.0704,7.7644,4.1919,4.2163,1.4808,1.638,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd669,82,82,F,1.9443,2.1846,0.33199,0.37163,0.62574,0.53621,15.4763,2.9772,3.0729,38.7047,36.5567,11.4282,11.7593,181.8204,171.3762,1.9525,2.89,2.577,1.1172,0.98823,18.4747,24.3512,1.3342,1.3129,3.6883,3.4659,5.9114,6.3217,4.1153,4.1851,0.06718,3.5022,2.1196,2.2594,0.34677,0.35866,3.8395,3.7891,4.8436,4.4503,1.6303,1.411,10.0514,8.7709,3.094,3.0649,3.156,3.7673,4.3094,4.2605,1.3058,1.1591,1.8886,1.7516,3.4529,3.331,6.6402,6.5989,1.7864,1.8205,5.9191,5.653,9.9808,10.0529,7.7153,6.499,2.0819,2.061,4.2076,4.4521,1.5342,1.4846,16.7945,16.1953,5.347,5.3515,3.4502,3.5912,1.1773,1.3535,2.5403,2.7371,6.4771,5.8518,11.7179,12.3186,2.5476,2.9334,3.9359,3.809,2.666,2.6764,1.3766,1.3048,3.2502,4.066,9.1,10.1722,2.656,2.6747,2.7515,2.5239,2.176,2.2416,8.6843,9.8752,2.21,2.2995,2.236,2.4753,11.2005,11.2192,1.758,1.7911,1.1105,1.2012,13.015,12.5684,5.1658,5.3764,7.7913,7.5987,3.3494,2.8296,8.5336,8.8204,6.8639,6.7252,7.1652,6.3369,3.4478,3.104,1.597,1.5224,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd670,71,71,M,1.7662,2.5602,0.37359,0.4002,0.84848,0.91015,19.4836,2.8217,2.6821,48.2744,47.0307,15.3319,15.5684,229.3533,231.6862,1.3795,3.5712,3.4515,0.96487,0.80324,18.8623,20.7198,1.7119,1.6762,3.3033,3.3339,7.2992,7.4648,4.9821,5.1795,0.07793,4.8325,2.1742,2.9146,0.37903,0.4173,4.6665,4.8887,4.0639,4.2762,1.6874,1.763,9.7824,9.1769,3.8622,3.5443,3.8148,4.3245,5.9236,5.4128,1.6422,1.8712,1.8778,1.946,3.6456,3.4123,7.7769,7.1772,1.9996,2.0934,6.6404,6.1905,12.0794,12.6202,8.8942,8.4392,2.133,2.4943,4.2543,4.4863,1.7927,1.8793,16.3713,18.0269,5.1992,5.3124,3.7335,4.0164,1.0694,1.2208,2.3621,2.8608,8.0842,7.0492,14.54,14.1186,3.0051,3.2581,4.7296,4.7609,3.4017,3.141,1.5949,1.6004,4.1532,4.6726,10.1034,10.4413,3.2138,3.2634,2.313,2.3517,2.1988,2.37,9.8581,12.3986,2.1795,2.4188,2.1939,2.4785,12.73,12.7047,2.0578,2.1958,1.2255,1.3117,13.6246,14.2183,6.1697,5.9672,8.0063,9.4595,4.0175,3.7842,9.187,10.1731,7.4455,7.3335,6.8234,7.3685,3.4165,3.8073,1.6442,1.5662,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd671,67,67,M,2.201,1.9408,0.29313,0.36202,0.79662,0.85586,16.7018,2.3291,2.2576,40.1162,41.8891,12.9291,13.5865,212.6955,213.6637,1.817,3.4557,3.2747,3.4118,2.2794,26.3421,31.4738,1.5006,1.4829,3.1985,3.3637,6.633,6.9259,4.2283,4.4831,0.06579,4.2206,2.0418,2.3656,0.37607,0.39372,4.218,4.8432,4.0353,4.1827,1.8107,1.5468,9.6822,8.7108,3.6045,3.7731,4.0279,4.2973,4.4068,4.0624,1.3929,1.6225,1.8743,1.8734,3.7118,3.3957,6.1642,7.1173,2.3994,2.094,5.9047,6.0503,10.3559,10.134,7.7411,6.9909,2.3611,2.4643,4.2888,4.7792,1.9521,1.92,19.1785,18.56,4.873,5.8415,3.9652,4.0128,1.1486,1.169,2.726,2.6288,8.299,7.3183,13.5857,12.3503,2.4894,3.1119,4.0166,3.8016,3.2259,3.1734,1.5578,1.4956,4.0659,4.4787,10.7798,10.1246,2.6229,3.108,2.4017,2.4487,2.1232,2.4227,9.8283,10.1492,2.4155,2.4218,2.2136,2.3556,12.3611,12.9722,1.7809,1.9593,1.4049,1.4476,15.2759,15.8737,5.3897,5.3501,8.3553,8.4831,3.7227,2.9982,10.1293,10.3233,7.4092,6.7763,7.2049,7.2896,3.5074,4.1227,1.5479,1.6421,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd672,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd673,,,M,2.0714,2.7942,0.38142,0.39586,0.81828,0.79912,18.528,3.0452,2.7933,50.1061,49.9308,14.2442,14.3871,204.8771,203.6258,1.764,3.1175,2.8751,0.73085,0.67237,17.2587,21.1877,1.6042,1.6382,3.4847,3.5353,6.6341,7.0188,4.7781,4.873,0.07383,5.1974,2.3642,2.8663,0.39933,0.41953,4.3489,4.7603,4.4397,4.8409,1.5749,1.4017,11.5015,11.0556,4.1188,3.9468,4.3528,4.6612,5.6182,5.6975,1.6258,1.5179,2.1334,2.1918,3.8271,3.9239,7.2855,7.8456,2.1739,2.0286,6.825,6.8617,12.1539,11.8957,9.1142,8.4392,2.0054,2.1453,4.9001,4.9652,1.8408,1.8544,18.5568,16.4964,6.0089,7.4299,3.5454,3.86,1.1378,1.0831,2.5793,2.6667,8.6493,7.5799,15.2276,15.049,4.1232,4.4832,4.843,5.1469,3.0718,3.1692,1.4263,1.4658,4.1502,4.6815,12.2162,13.0753,3.1894,3.5992,2.7182,2.7492,2.2152,2.5327,13.1671,13.3238,2.1781,2.2731,2.3361,2.5142,15.0636,13.344,1.8906,2.0854,1.1537,1.3167,16.485,14.4207,6.1193,6.09,8.8145,9.8517,4.5519,3.9702,12.5488,12.5369,7.5951,8.7619,8.5962,8.0864,3.4012,3.3501,1.5167,1.9359,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd674,74,74,M,2.2484,2.1866,0.37023,0.47086,0.72539,0.80505,17.1042,2.9475,3.1851,44.1353,45.0794,13.6618,13.5847,183.1204,175.5307,2.2128,3.0601,2.8334,1.083,0.98823,22.3523,25.9073,1.4299,1.41,3.8316,3.816,6.3008,6.438,4.1848,4.4267,0.08239,4.4055,1.9394,2.2922,0.40119,0.40055,4.1542,4.8551,4.2416,4.5286,1.8814,1.492,9.5638,8.0959,3.3529,3.4883,3.9385,3.9962,4.2915,3.9855,1.4992,1.4961,1.9812,2.1162,3.7113,3.6728,6.9727,7.6169,2.2614,2.2618,6.1998,5.7875,11.0044,11.5102,8.01,7.3706,2.3552,2.4893,4.4148,4.7795,1.9705,1.94,16.9,18.181,5.129,5.555,4.1673,4.1871,1.2138,1.228,2.5856,2.4514,8.371,7.2737,13.305,13.8784,2.5282,3.0741,3.944,4.1958,3.8173,3.5472,1.5889,1.6584,3.7147,4.4716,10.2645,10.216,2.7381,3.1118,2.5153,2.5628,2.2698,2.4724,8.5287,10.7917,2.418,2.7952,2.2266,2.6306,12.1226,12.8559,1.8633,2.2187,1.4049,1.3937,13.2144,13.1624,5.4278,5.1639,7.2698,8.2982,3.8761,3.3175,10.0453,9.7669,7.0635,6.628,8.0801,7.9146,4.0715,4.2752,1.5415,1.699,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd675,68,68,F,1.1521,1.4711,0.41178,0.44488,0.89961,0.91061,17.5546,2.7612,2.7962,44.6824,43.5553,14.898,15.1504,234.567,226.2861,1.1203,3.6414,3.5674,0.38181,0.40851,11.9217,13.6065,1.6961,1.725,4.0092,3.9839,8.15,8.5207,4.6835,4.9351,0.0721,4.6347,2.2946,2.4551,0.3795,0.38682,4.0148,4.7612,3.9139,3.8022,2.048,1.6751,10.944,10.0979,3.2255,3.342,4.3541,3.6082,4.8364,4.5748,1.7773,1.6546,1.895,1.9062,4.0529,3.6657,7.7486,8.0385,2.0631,2.1645,7.3504,6.8257,11.4524,11.051,7.9314,7.1973,2.6347,2.6404,4.8096,5.1367,1.6226,1.7671,18.5718,18.6825,6.2659,6.283,4.0725,4.3668,1.104,1.2392,2.6238,2.7659,7.7435,7.4088,14.7813,13.678,3.4103,3.5097,4.0661,4.3679,3.5265,3.3582,1.8216,1.4691,4.4753,4.8399,11.2847,11.3682,3.1027,3.3871,2.198,2.3017,2.5655,2.9222,11.5448,14.123,2.4929,2.8076,2.0243,2.1704,12.2162,11.8905,2.0183,2.3236,1.1172,1.2427,14.8198,16.1223,5.5522,5.6205,8.7476,10.0674,4.5361,3.6212,11.7123,13.0103,7.7577,7.5582,8.4456,7.923,3.7315,4.2773,1.404,1.6371,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd676,67,67,F,1.3524,2.2589,0.33046,0.37961,0.76722,0.75879,18.765,2.6216,2.7351,46.1595,44.2208,15.7885,15.9721,253.2645,246.3704,1.3046,3.3077,3.0802,0.74711,0.8071,11.8451,12.2916,1.5787,1.5958,3.4389,3.2132,6.908,7.072,4.5223,4.8226,0.07334,4.7194,2.1502,2.4648,0.34201,0.34086,3.9906,4.4029,3.8483,4.0842,1.7298,1.4873,9.5628,8.6007,3.1375,3.0013,3.6724,3.8455,4.4374,4.2415,1.555,1.5804,1.623,1.7612,3.371,3.2919,7.2803,6.9337,2.078,1.9279,6.0313,5.5784,11.1909,10.4273,6.88,6.1336,2.0758,2.2401,4.5246,4.6398,1.7018,1.653,17.359,17.3382,4.4676,5.0349,3.7478,3.6686,1.0608,1.0867,2.5254,2.4209,7.1764,6.5407,13.0986,13.0377,3.0377,3.0137,3.6227,3.6566,2.9381,3.0846,1.2954,1.3552,3.9268,4.4256,9.3961,9.8654,2.9357,3.0676,2.1214,2.116,1.9191,2.1053,8.5765,10.1649,2.0801,2.2795,1.8492,2.2664,11.1084,10.9432,1.495,1.5861,1.0818,1.1167,13.8458,13.8689,4.8465,5.1043,6.9534,8.3501,4.3206,3.125,8.7703,8.3972,6.8385,5.8622,7.5813,7.9148,3.3557,3.6266,1.2368,1.4265,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd677,71,71,F,1.5061,2.1183,0.32688,0.3637,0.74204,0.71617,17.1812,2.5827,2.6409,45.3977,44.7344,13.6618,13.784,210.1719,203.9892,1.3533,2.9465,2.5833,0.7039,0.83269,16.2077,22.2409,1.4437,1.4402,3.0985,3.3269,6.2423,6.5321,4.3212,4.6656,0.07074,4.3109,2.1502,2.4777,0.34178,0.33722,3.8357,4.2709,3.3296,3.4546,1.6598,1.4243,9.1163,7.6977,2.76,2.4315,3.796,3.5407,4.4989,3.4998,1.4702,1.36,1.7108,1.5008,3.443,3.4422,6.97,6.8267,1.8877,1.912,6.4052,5.9591,10.4915,10.1351,7.2804,6.62,2.0495,2.126,5.1604,4.8278,1.6125,1.6432,17.4987,18.0381,4.6266,5.3515,3.3523,3.7272,0.90939,0.82726,2.4632,2.2468,6.9498,6.3584,12.3274,11.286,2.1902,2.97,4.0487,3.9262,2.9137,2.7489,1.4084,1.4634,3.217,3.4843,9.1558,8.6526,2.5765,2.8801,2.1612,1.9738,2.0448,1.6677,8.407,9.29,2.0353,2.0089,1.8506,2.0384,10.3295,10.7317,1.8383,1.4705,1.1006,1.1584,13.5014,14.2142,4.9319,4.8268,7.059,7.5526,4.1324,3.8647,9.0106,8.8161,6.545,6.3576,6.8173,6.042,3.2372,3.9455,1.1819,1.2715,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd678,68,68,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd679,68,68,F,2.1805,2.6169,0.37032,0.48236,1.0167,0.99715,21.1231,3.5473,3.1726,51.3774,49.6062,15.2087,15.5227,259.0133,252.3158,2.0269,3.9721,3.5729,1.083,0.83934,22.5744,18.2188,2.0366,1.9322,3.6721,4.065,8.9716,9.0064,5.3058,5.648,0.07715,5.4377,2.4872,3.1347,0.40429,0.42219,4.66,4.7119,4.4507,4.6694,1.8966,1.5044,9.9833,9.7383,4.3357,3.979,4.4609,4.8636,4.7214,4.4561,1.9621,1.993,2.325,2.1978,3.8489,3.4205,8.1707,8.2176,2.219,2.3001,6.9251,7.2521,13.085,12.9861,8.8864,7.9636,2.422,2.4884,4.2825,4.5369,1.9484,1.8683,20.0056,18.9638,5.2143,6.1152,4.1304,4.2597,1.0667,1.2664,2.4232,2.8102,8.299,7.1,16.0264,15.3056,3.5509,3.9308,4.843,4.9123,4.2568,3.4357,1.8635,1.589,4.4494,4.7032,11.5462,11.0971,3.1107,3.3609,2.7021,2.8164,2.3058,2.4349,11.1617,13.5281,2.7574,2.6625,2.2609,2.6109,12.047,11.9634,2.1117,2.0979,1.378,1.3904,15.0942,15.4411,6.0849,5.8365,8.9673,9.3025,4.9629,3.9864,11.1253,11.4038,8.398,8.8782,8.592,8.3974,4.0397,4.3612,1.6521,1.9359,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd680,66,66,F,2.2635,2.2014,0.29537,0.36355,0.70782,0.79027,18.765,2.2307,2.0219,41.516,41.8891,15.384,15.6229,239.7919,234.481,1.5343,3.1193,2.9426,1.8227,1.356,24.1438,24.0846,1.6668,1.6522,3.4519,3.7797,6.2869,6.6066,4.6372,4.9407,0.07303,5.2561,2.3083,2.275,0.37576,0.33861,4.0314,4.2709,3.9487,4.1862,1.7703,1.6658,11.5262,8.6865,3.5068,3.4771,3.697,3.9467,4.7899,4.406,1.3361,1.5117,1.6044,1.8645,3.4663,3.1207,6.9495,6.9801,1.8311,1.9196,6.5386,5.3417,10.3783,10.1935,7.8971,7.5909,2.1745,2.328,4.5636,4.5033,1.6467,1.7025,19.3284,20.032,5.6771,5.3886,3.4898,3.6918,1.0299,1.1741,2.5278,2.6654,7.1152,6.5312,12.5616,12.5685,2.8549,3.0027,4.7147,4.4089,3.1755,3.5078,1.447,1.3203,4.1905,4.4228,11.0806,10.6859,2.7902,2.9405,2.3438,2.3789,1.9282,2.3143,10.8576,11.6791,2.3996,2.6018,2.1559,2.1995,13.5346,13.1986,1.8628,1.6991,1.0551,1.1747,13.2127,13.7966,4.913,4.861,8.5253,9.6355,4.2425,3.7481,10.8882,10.5685,7.3159,7.1991,7.1222,7.2184,3.3421,3.9377,1.3983,1.543,,18,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd681,,,F,2.2889,2.2088,0.27774,0.31392,0.77445,0.74054,14.9737,2.5066,2.3142,37.2794,37.5008,12.3825,12.7122,159.7323,147.6763,2.2209,3.3094,3.0874,1.6519,1.2296,32.5772,32.1618,1.2633,1.2439,3.5016,3.5651,5.3636,5.6673,3.8095,3.9084,0.06174,4.3959,1.8821,1.9635,0.3289,0.33122,2.7234,3.252,3.5251,3.5093,1.293,1.1283,1.1839,7.3052,2.7547,2.6323,3.0057,3.3077,4.3906,3.9551,1.4286,1.4084,1.4857,1.5681,3.1757,2.6506,6.6602,6.2393,1.6023,1.6585,4.3628,5.3117,10.4005,10.3489,4.9555,6.4066,1.7016,1.9626,3.3912,3.7555,1.1024,1.289,15.2181,15.039,4.0341,6.0224,2.9884,2.9727,0.96211,0,0,0,5.201,5.1598,12.3632,12.4296,2.0264,3.0026,3.7986,3.6566,2.6049,2.5003,1.1439,1.3871,3.3135,4.041,2.9491,8.6851,2.6424,2.6193,2.1583,2.0085,1.5943,1.6606,8.9832,9.4062,1.8489,1.9725,1.8162,2.0039,9.7467,9.5275,1.5177,1.514,0.93562,1.0772,12.5572,11.3042,3.6495,3.7126,6.2696,6.1559,3.7333,3.064,8.1187,7.6989,6.1503,6.6717,6.1222,6.9058,3.049,3.1986,1.3559,1.2505,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd682,72,72,F,1.3139,1.8325,0.3095,0.33854,0.78395,0.81125,15.9099,2.3291,2.416,41.246,40.8498,12.1718,12.3273,207.8475,208.4223,1.1808,3.1302,3.0054,0.46983,0.49947,11.8682,13.7295,1.3407,1.3782,3.0136,3.2567,5.5432,6.17,3.978,4.1549,0.07538,4.0235,1.8414,2.6526,0.34237,0.34954,4.2214,4.8586,3.5208,3.7565,1.717,1.5756,9.655,8.714,3.0698,3.1519,3.344,3.7782,3.9569,3.8821,1.601,1.6173,1.6913,1.819,3.6944,3.252,7.1771,6.7408,1.9019,1.8935,5.8726,5.5259,11.629,10.1434,7.2669,6.8705,2.0948,2.2395,4.0828,4.0897,1.6526,1.64,18.5382,18.6722,4.7324,5.5142,3.7639,3.9717,0.90791,0.85443,2.3201,2.2308,7.7854,6.7189,13.1632,13.6564,2.3938,2.5273,3.8586,3.7238,2.6068,2.8893,1.4056,1.4125,4.0842,4.2848,9.8462,10.0704,2.8919,3.1042,1.9287,1.9375,1.9047,2.0871,9.3938,11.8537,2.1487,2.668,1.8307,2.1223,12.7812,12.1891,1.6444,1.6738,1.2462,1.3015,14.7237,13.949,5.7421,5.078,7.7568,8.4996,3.4153,2.9305,9.5659,9.5963,6.8894,7.0953,7.0173,7.1796,3.0863,3.5044,1.2779,1.3564,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd683,73,73,F,1.7655,1.714,0.26494,0.32098,0.63979,0.68323,16.3267,2.2612,2.5176,42.1735,40.1862,13.7794,13.2882,166.1759,161.0911,1.8052,2.7915,2.5595,1.5059,0.96842,29.0169,30.645,1.4831,1.5195,3.0363,2.8971,5.7143,6.0637,4.1046,4.4513,0.08786,4.3839,2.0523,2.4976,0.32412,0.32086,3.4799,3.9115,3.6329,3.994,1.293,1.244,7.907,7.7611,3.0178,2.6499,3.4909,3.2949,3.4139,3.2028,1.1841,1.3635,1.8551,1.6868,3.3157,3.3375,5.9454,6.1212,1.5676,1.6468,4.9538,5.3201,8.1016,9.4479,6.5107,6.2589,1.4676,2.1329,3.8898,4.0453,1.2819,1.3178,14.4447,13.0473,3.8871,5.1368,0.5615,3.2493,1.0474,1.1114,2.2443,2.4669,6.5478,6.2112,9.9196,10.6368,2.391,3.029,3.363,3.5683,3.4017,3.2688,1.3064,1.4125,3.2125,3.3203,8.3131,7.6789,2.3769,2.6462,2.2046,2.1578,1.8895,2.3029,8.8208,9.9004,1.866,2.302,2.0061,2.1471,10.3155,10.4681,1.5565,1.7874,0.86423,0.99226,11.7783,11.3018,4.3662,4.5958,6.171,7.4743,3.1376,3.0225,8.1262,8.589,6.018,6.358,6.2694,6.141,3.2172,3.6085,1.3876,1.4548,,6,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd684,,,F,0.96391,1.4305,0.38436,0.37448,0.90904,0.8853,16.6818,2.7433,2.7543,46.1005,43.6805,12.1553,12.4512,195.4331,194.1091,0.89851,3.5215,3.1564,0.35758,0.38107,8.4332,7.1916,1.329,1.385,3.2753,3.402,6.6481,6.924,4.3203,4.7548,0.08831,4.7338,2.1388,2.4238,0.36996,0.38153,3.7785,4.4281,3.9995,4.0309,2.0187,1.5544,9.5638,9.03,3.5942,3.6094,3.6643,3.7564,5.0459,5.0758,1.6893,1.6599,1.8804,1.8645,4.1558,3.8139,7.0307,6.8769,2.1424,2.0406,7.1181,6.1348,10.4518,10.3429,7.5965,6.9152,2.4205,2.4643,4.2708,4.3046,1.7657,1.7426,19.6606,18.4105,5.2609,6.1245,3.7965,3.9652,0.9789,0.95711,2.5257,2.4715,7.6256,6.6438,14.8903,13.5201,3.3182,3.921,3.8431,4.1272,3.5914,3.6341,1.6736,1.3539,3.8716,4.224,10.1462,11.349,2.9145,2.9473,2.2766,2.1578,1.8787,2.0218,9.877,11.3727,2.3569,2.5123,1.9457,2.1113,14.1,15.7442,1.8938,1.7569,1.0314,1.0655,16.8157,15.9463,5.4985,5.6432,7.6058,8.6249,4.2942,3.7427,10.4039,10.9036,7.1523,7.0293,7.9797,7.5228,3.6244,3.707,1.4799,1.5321,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd685,,,M,1.8122,1.9242,0.36223,0.38581,0.84375,0.82841,17.1042,3.1769,3.0891,50.5497,50.868,14.0187,13.9654,225.4359,216.3348,2.9852,3.1017,2.8595,0.70855,0.72065,34.3032,37.4298,1.6059,1.6295,3.6873,3.7474,7.2128,7.5452,4.4392,4.7381,0.06153,5.3115,2.3494,2.9806,0.35622,0.3749,4.1811,4.1983,4.0413,4.1302,1.7572,1.7188,10.0903,9.9207,3.1718,2.7666,4.168,3.6082,4.8643,4.1815,1.6944,1.6736,2.1776,1.8167,3.5208,3.1244,8.3507,7.9227,1.9519,1.9376,6.6099,6.2659,11.5745,11.7106,8.6827,8.1669,2.3304,2.5265,4.2979,4.7503,1.7385,1.5853,17.8634,18.6146,5.0735,7.1588,3.6601,3.7203,0.91818,0.97539,2.486,2.4072,7.9787,6.2331,14.4871,14.4608,2.9678,3.6447,4.6508,4.5282,3.4796,2.8947,1.745,1.4613,3.8402,4.3723,10.1423,10.129,3.1566,3.6922,2.1909,2.1538,2.2136,2.6226,10.533,10.3086,2.231,2.4751,2.1402,2.2384,11.7584,12.0433,1.7931,1.9298,1.0609,1.1133,13.233,12.7089,5.1854,4.861,7.7679,8.7812,4.4534,3.5935,10.6321,11.6839,7.8387,7.1061,8.3154,8.8303,3.5559,4.0968,1.5951,1.5876,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd686,67,67,M,2.0592,2.9737,0.32875,0.37163,0.78957,0.77604,15.54,2.5686,2.3883,41.6776,40.9443,12.5599,12.9305,214.4218,211.5953,1.7914,3.2514,2.9787,1.2968,1.1802,20.9617,19.7701,1.5495,1.5483,3.441,3.5891,6.3445,6.6563,4.0983,4.3026,0.0592,4.2476,2.0943,2.3922,0.32855,0.34086,3.7724,3.7891,3.752,3.937,1.4168,1.37,8.0545,7.9803,2.308,2.0926,3.6484,3.5536,3.7048,3.5075,1.6117,1.5231,1.8537,1.5836,3.1985,2.9111,6.8976,6.1158,1.5931,1.6831,4.9555,5.7087,10.0606,10.5122,5.7616,5.6016,1.885,2.1319,4.7066,4.8286,1.4174,1.4901,16.1474,16.0813,4.1136,4.9112,3.019,3.3897,1.0072,1.2013,2.2617,2.3196,6.4258,5.8097,12.9666,12.8216,1.9227,2.9607,3.1703,3.5476,3.0302,2.6236,1.3185,1.4125,3.5856,3.9134,8.6625,8.5862,2.6897,2.8164,2.1383,2.1517,2.2401,2.0968,9.308,10.3273,2.117,2.2758,1.8621,2.0287,10.8149,9.6896,1.6339,1.6876,0.9568,1.0772,12.967,12.3174,4.3475,4.3949,6.6869,8.448,3.3671,2.9305,9.1446,9.7743,6.5286,6.4601,7.0173,6.8856,2.9307,3.2984,1.3243,1.3116,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd687,,,F,0.96391,1.9683,0.38436,0.42948,0.85179,0.86678,18.4167,2.9099,2.9334,45.8701,45.9534,15.3206,16.2466,267.0388,262.7257,1.3199,3.2868,3.0832,0.44021,0.40205,9.3245,9.3251,1.73,1.6981,3.3802,3.3801,7.0833,7.6457,4.733,4.9063,0.07262,4.9937,2.1871,2.6349,0.37921,0.38596,3.6059,4.2642,4.2348,4.3787,1.7931,1.5635,10.0928,8.844,3.4045,3.4042,3.6347,3.8269,3.9233,4.1975,1.6187,1.8051,2.1883,1.8469,3.7308,3.5344,6.9795,6.9429,2.0996,1.9665,6.5811,6.1344,10.9084,10.3938,7.5401,7.4574,2.2261,2.2322,4.574,4.2041,1.7718,1.7049,17.1763,17.4396,5.0285,5.6957,3.6261,3.9297,1.0648,1.1028,2.5015,2.6782,7.5734,6.4805,13.0066,13.0492,2.917,3.1118,3.8431,3.9924,3.6679,3.3711,1.4922,1.4475,3.7861,4.1477,9.3593,10.2529,2.7628,2.8781,2.482,2.5628,2.0918,2.538,9.6913,10.9738,2.309,2.4628,2.3438,2.3384,13.4046,11.8704,1.8116,2.1538,1.1978,1.2912,15.887,15.0896,5.4491,4.9107,8.2728,9.1169,4.3805,3.6472,9.8461,10.4569,7.0181,7.0812,7.2099,7.4638,3.7418,3.4992,1.5479,1.5275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd688,,,F,1.8719,2.2777,0.29367,0.33643,0.70782,0.75571,16.589,1.7904,1.6365,40.1162,40.1862,13.1359,13.5134,193.768,190.9265,1.3921,2.8773,3.0114,1.8227,2.4151,20.3675,22.3409,1.3159,1.3782,2.7027,2.9976,5.4271,5.8946,4.1144,4.3744,0.06895,3.7736,1.8978,2.412,0.3289,0.33044,3.0547,3.4415,3.5491,3.6205,1.2883,1.2013,9.215,7.974,2.9717,2.9683,3.5447,3.464,4.3906,3.839,1.3361,1.4735,1.7125,1.6617,3.3157,3.0064,6.176,5.5941,1.4337,1.5903,5.5892,4.9021,10.2323,8.88,7.2899,6.9263,1.6305,1.9649,3.9625,4.0779,1.3077,1.4058,14.5359,15.4708,4.9535,5.1693,2.9884,3.2009,0.76993,0.99768,2.1904,2.0826,5.7327,5.0106,11.8607,11.3461,2.4852,2.3704,3.7986,4.0298,2.971,2.7267,1.1439,1.2441,3.5566,4.0922,8.8094,9.7931,2.5985,2.7534,1.9205,1.9261,1.974,2.3381,8.7491,9.9004,1.9127,1.9458,1.7401,1.9091,10.3155,10.6964,1.823,2.3003,0.99225,0.97981,12.5051,11.3042,4.6205,4.5485,6.2404,7.845,3.56,2.8245,7.8982,9.6319,6.787,6.5275,6.7344,6.9261,3.1351,2.9626,1.3803,1.4037,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd689,80,80,F,1.3485,1.9365,0.34366,0.40203,0.72047,0.78381,14.8491,2.6329,2.8472,43.2933,42.7712,12.6874,13.3627,203.3559,200.2379,0.99997,2.7682,2.8738,0.52536,0.55107,11.5201,13.6065,1.2675,1.2944,3.2456,3.5409,5.7309,6.2727,3.9107,4.1256,0.07786,4.6779,2.2356,2.9126,0.38703,0.38422,3.8597,4.4628,3.8941,3.9087,1.7096,1.3301,9.7211,8.2935,2.8537,2.4821,3.7906,3.9881,4.5008,4.5532,1.4787,1.6233,1.8938,1.9959,3.3536,3.2598,6.6588,6.5488,1.6958,1.6806,5.5955,5.9031,10.7078,9.3001,7.7997,7.1949,2.1066,2.168,4.2552,4.0497,1.5622,1.5684,15.8147,16.2676,3.9228,5.2674,3.5655,3.1832,1.0638,1.2518,2.404,2.7629,7.2009,6.4913,14.7741,11.413,2.6821,2.8797,3.9008,3.9573,3.238,3.5102,1.4901,1.3261,3.862,4.3803,11.2412,10.6859,2.5224,2.8084,2.1981,2.3494,2.1703,2.4362,9.8526,11.0579,2.2717,2.2464,2.1024,2.0593,11.4526,12.6388,2.03,2.0129,1.0553,1.1785,13.402,13.206,5.1254,5.1214,6.6432,8.1567,4.0754,2.9737,10.0829,9.3483,6.9084,5.9411,7.2502,6.8696,3.2215,3.9512,1.5101,1.6424,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd690,,,M,1.7692,2.3628,0.35128,0.38088,0.58763,0.56069,16.4468,3.0644,2.8677,43.1869,43.9655,13.1238,14.18,216.9418,213.1765,1.6565,2.7499,2.3865,1.1529,0.9251,22.3641,21.5615,1.5756,1.5627,3.4518,3.4564,6.1754,6.7659,4.1518,4.3251,0.06798,4.4087,1.9574,2.4315,0.33314,0.35762,3.7724,4.2505,3.5284,3.7761,1.5737,1.4063,8.7598,8.0827,2.74,2.6745,3.497,3.7968,4.1187,4.0584,1.2651,1.1673,1.6922,1.7867,3.2243,3.3513,7.337,6.4576,1.9155,1.9845,6.401,5.7652,11.0946,9.6693,7.19,6.5239,2.0669,2.0924,4.3231,4.2832,1.6125,1.6445,17.0588,17.2683,5.5586,5.6491,3.3256,3.688,1.0474,1.3891,2.5617,2.5673,6.8183,5.9402,14.3049,13.1739,2.5476,3.5556,4.0845,4.012,3.2949,3.0444,1.2908,1.3053,3.7856,3.9703,9.763,9.7656,2.7068,2.7176,2.0129,2.1265,2.0579,2.0723,9.2833,11.7269,2.2296,2.2895,1.7823,1.9482,11.0944,11.9053,1.7643,1.6792,1.0866,1.1234,12.34,13.045,5.2668,4.6149,7.8114,7.703,3.5453,3.6446,9.228,9.5963,7.3304,7.0896,7.1652,6.4164,3.1447,3.46,1.326,1.3337,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd691,57,57,F,0.97219,2.0565,0.3887,0.43588,0.92482,0.93694,15.9782,2.7433,2.8797,45.7527,45.3358,12.6077,13.3627,209.5672,199.762,1.6012,3.6414,3.1706,0.50557,0.47482,15.5073,13.2896,1.4535,1.4293,3.6542,3.6697,6.0299,6.5324,4.1197,4.3505,0.0892,4.7502,2.1071,2.7359,0.45814,0.4197,4.2012,5.1149,4.2447,4.2128,1.6705,1.3355,9.4278,8.5927,2.8613,2.4821,3.6584,3.7729,4.1802,3.4301,1.7835,1.7206,1.9712,1.9795,4.0664,3.6493,7.6897,7.6172,2.3123,2.286,6.2753,5.5622,11.2832,11.9431,7.2766,6.5649,2.1988,2.0924,4.8872,5.473,1.8856,1.8702,19.5598,19.6225,5.2675,6.0264,4.1427,4.2231,1.135,1.208,2.8408,2.6167,8.3148,7.5516,14.3049,15.5411,2.649,2.9748,4.5205,4.3583,3.43,3.5506,1.5768,1.313,4.4084,4.5149,10.5846,11.3595,2.9001,3.3577,2.3548,2.2733,2.0588,2.1707,10.3026,11.8231,2.3778,2.2995,2.0373,2.3153,12.6388,13.1306,1.8131,1.7612,1.2498,1.3596,15.6729,15.6956,5.6773,5.515,7.9138,8.2508,4.2139,3.1461,11.1648,10.7882,6.7893,6.9714,8.8179,8.0934,3.8404,3.9377,1.6067,1.4683,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd692,76,76,M,1.5559,2.2088,0.41967,0.47015,0.9567,0.94014,18.3099,2.9277,3.1277,44.4048,42.9856,14.0826,15.2682,233.3043,237.6217,1.0389,3.3593,3.0368,0.54862,0.40647,12.2949,12.4405,1.581,1.5431,3.4499,3.53,7.1647,7.5241,4.6823,5.0437,0.08168,4.3915,2.1285,2.2749,0.40532,0.40852,3.6227,4.3072,3.9349,3.8022,1.9261,1.6953,10.4493,10.0478,2.4765,2.636,4.185,3.6082,3.6957,3.6543,1.8605,1.7206,1.8721,1.9553,3.7062,3.3786,8.055,7.6878,2.207,2.3139,5.6893,6.7557,12.4566,11.2932,7.2984,6.6398,2.3512,2.4943,4.1706,4.5103,1.8294,1.6533,20.216,18.46,4.8115,6.6358,3.9216,4.3173,1.2128,1.1846,2.7515,2.7873,8.4907,6.7466,14.9277,15.991,2.4754,4.0712,3.6774,3.7823,3.1982,3.1692,1.6007,1.5872,3.9639,4.3267,10.5746,10.3525,2.9381,3.043,2.2006,2.3017,2.0784,2.5104,10.7664,11.7576,2.5161,2.6802,2.0977,2.1704,12.7812,12.6866,1.7802,2.0461,1.1899,1.2919,14.5554,15.5468,5.4414,5.0804,8.2259,9.5017,3.4082,3.4542,11.0085,11.4096,7.09,7.2026,8.1518,7.7609,3.8261,3.7445,1.4845,1.6424,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd693,,,M,2.3602,2.9031,0.14032,0.16158,0.83391,0.69515,14.4951,2.1816,0.00075,31.918,32.6378,11.7082,12.2415,94.0231,69.2732,2.165,3.0354,2.8504,1.1642,1.103,23.9601,24.2618,1.3485,1.3328,0.65264,0.79482,5.3345,5.499,3.8951,4.1507,0.06805,4.7314,2.0486,2.3445,0.32855,0.32814,0.01082,3.2967,2.0098,0.46849,0,0.55737,1.1839,6.2744,2.6818,2.377,0.30663,3.2248,3.7315,3.438,1.4588,1.2706,1.3705,0.90154,0,0,6.0282,5.5762,0.23156,1.0331,4.8365,4.8529,8.7702,9.0866,5.9288,5.921,1.4676,0.22842,0,0,1.136,1.289,0,13.8636,3.5569,4.2477,0.5615,1.4103,0,0,0,0,0.00154,5.0306,9.934,10.4941,2.3876,2.4894,2.6426,0.40331,2.482,0.00015,0.01065,0.65244,3.0192,3.3874,6.4692,6.5694,2.7144,2.8395,1.8795,1.7975,1.4476,2.0783,0,8.1361,0.77084,1.4214,1.7401,1.9235,0,10.5862,1.5309,1.8326,0.88717,0.87415,0.00052,0.00013,0,0,1.1506,6.0253,3.1221,2.8935,7.6841,1.7797,6.4699,5.6422,5.7627,6.3723,2.581,2.7339,1.1692,1.5138,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd694,82,82,F,1.9443,1.505,0.38217,0.36041,0.81323,0.83691,16.8748,2.7477,2.6533,44.2168,45.0794,12.6576,13.3627,201.9419,194.6723,1.4967,3.3865,2.7078,0.93407,0.79468,19.1836,20.2442,1.4017,1.3677,3.3923,3.1863,6.1684,6.423,4.3212,4.5147,0.06836,4.9096,2.1563,2.5975,0.32973,0.32912,3.5866,3.6751,3.9007,4.1044,1.5053,1.448,8.9583,8.1706,3.351,3.0364,3.6484,3.5289,4.5664,3.9989,1.5559,1.4739,1.8551,1.7712,3.3098,2.8371,6.5829,6.4178,1.8475,2.1122,5.4694,5.9031,9.8386,10.4329,7.2921,6.9263,2.0103,2.2343,4.2511,4.3599,1.5144,1.4147,16.5221,17.1232,5.1691,5.7175,3.3303,3.6508,0.94522,1.0396,2.2873,2.549,6.3937,5.6687,11.4578,12.1925,2.7084,3.3288,3.5847,3.9804,2.9696,2.8302,1.5225,1.407,3.1766,3.7408,9.1188,9.2995,2.7144,2.9405,2.1037,2.0413,2.0792,2.0528,9.0473,10.761,1.9636,2.2588,1.9139,2.1272,10.6278,11.5328,1.687,1.8782,0.94846,1.0318,13.5541,14.141,4.3475,4.2012,7.5235,7.3055,3.6442,2.7232,8.5336,9.8046,6.1268,6.8094,6.4508,6.6487,3.1827,3.3445,1.3872,1.3651,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd695,75,75,F,1.6914,2.1377,0.39267,0.41321,0.81053,0.79891,16.2031,2.7861,2.7236,26.9492,29.3947,13.1125,10.7472,214.4995,213.1765,1.3861,3.276,3.0526,0.4579,0.4114,15.0825,15.1691,1.541,1.5818,3.7056,3.7474,6.5677,7.2176,4.266,4.5907,0.07678,4.6708,2.0194,2.2552,0.36763,0.3668,4.0261,4.5673,3.6431,3.9127,1.8172,1.5453,10.6495,9.3164,3.1924,3.162,4.1937,3.8546,4.2223,4.1656,1.7149,1.5579,1.8849,1.8394,3.7151,3.507,7.7255,7.4957,2.0926,2.0694,6.4317,6.5007,11.4744,11.2161,8.01,6.499,2.3454,2.3732,4.3869,4.527,1.7781,1.931,17.8334,18.181,5.3553,5.8761,3.7967,3.8823,1.0391,0.96247,2.4686,2.4715,7.6448,6.6438,14.5541,14.0082,2.5289,3.1473,4.3442,4.1709,3.1817,3.2242,1.5037,1.4578,4.0614,4.675,10.5746,10.0353,3.0423,2.9516,2.2934,2.1538,2.0784,2.5476,9.9962,11.8666,2.2339,2.4873,2.0199,2.3017,11.4997,11.9453,2.1068,2.1021,1.0409,1.1084,14.8528,14.2914,5.1136,5.226,7.3278,8.6034,3.7911,3.2554,10.6511,10.5664,8.7756,7.583,8.3589,7.7869,3.2341,3.4015,1.4761,1.7436,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd696,,,M,2.0909,2.4283,0.37592,0.40797,0.80898,0.88019,19.1081,2.9664,3.2433,47.3925,47.977,15.4577,15.3233,200.671,192.0511,2.3689,3.1986,3.0823,1.3521,0.98823,32.6771,35.2975,1.5261,1.5186,3.5256,3.9674,5.785,6.3151,4.9193,5.0683,0.07963,4.9321,2.2006,2.4848,0.37608,0.38422,4.6817,4.8666,4.2546,4.4273,1.6058,1.5717,10.8155,9.6728,3.2294,3.1698,4.1378,4.4266,4.9356,4.2724,1.5978,1.6513,1.9493,1.8592,4.0767,4.0054,7.5386,7.1392,1.9797,2.0793,6.9569,6.3392,11.7629,11.3663,8.9171,7.9168,2.2316,2.4574,4.2979,4.371,1.8071,1.902,17.9113,18.0269,5.3797,6.2736,3.7817,4.0128,1.0959,1.0764,2.5249,2.2716,8.3291,7.0902,14.9589,14.0082,2.815,3.5212,4.3783,4.2177,3.476,3.3711,1.562,1.4835,4.0223,4.4456,10.5945,10.1777,2.8432,3.2203,2.3847,2.5669,2.0408,2.275,10.3188,11.9255,2.3285,2.4393,2.312,2.4406,11.5031,11.857,1.8463,2.0471,1.1537,1.1887,13.4679,13.0121,5.4292,5.4277,8.0641,8.4522,3.7279,3.1314,10.3299,10.5685,7.8222,7.4062,7.6612,7.01,3.3345,3.519,1.5652,1.6978,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd697,72,72,M,2.655,3.3151,0.38212,0.4002,0.83472,0.82347,20.0511,3.0675,2.4915,44.9029,46.3144,19.6819,22.1671,274.269,264.8382,1.8157,3.4092,3.1856,2.333,1.5606,27.8541,33.0259,1.7878,1.76,4.562,4.6401,7.4658,7.7499,4.7738,5.0816,0.08187,4.9098,2.1822,2.6861,0.40169,0.40543,4.0449,4.7562,4.2631,4.193,1.9409,1.5591,9.9833,8.3848,3.6674,3.5156,4.1725,4.5054,4.8648,4.6747,1.5559,1.502,1.9403,2.2218,3.9924,3.633,6.7149,6.8975,2.0828,2.1913,8.2003,7.418,10.3388,9.1474,8.7088,7.7479,2.4574,2.5044,4.6107,4.6044,1.7906,1.7795,17.8055,17.0774,5.2269,6.1117,3.8739,3.9634,1.0939,1.1148,2.5889,2.5841,7.6286,6.9886,13.5111,11.413,3.2767,3.7523,5.1058,5.1469,3.4459,3.2288,1.5468,1.526,5.0315,4.9147,10.9272,10.9844,2.9925,3.0873,2.7146,2.5113,2.6297,2.8888,8.8302,9.7018,2.502,2.568,2.2806,2.6651,11.7262,11.6796,2.3043,2.3435,1.2551,1.3028,14.6258,16.4787,5.514,5.5141,8.2241,7.9048,4.2807,3.5781,9.7843,9.6752,7.0983,6.6397,7.0993,7.0749,3.5021,4.2257,1.7794,1.7715,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd698,80,80,F,1.7205,2.3061,0.36634,0.37252,0.65782,0.70742,14.0597,2.8581,2.8888,41.4208,42.0877,12.0467,12.1993,197.4064,196.6974,2.1695,2.89,2.8594,1.591,0.81228,24.6327,22.5146,1.5685,1.5129,3.2185,3.1469,6.3445,6.712,4.0537,4.2817,0.07149,4.4217,2.2031,2.2922,0.37921,0.3722,3.4098,4.1665,4.0025,4.2182,1.647,1.3813,7.8043,8.7033,2.9201,2.8047,3.6452,3.4714,4.2208,3.8352,1.1841,1.4232,1.8219,2.028,3.459,3.3375,6.7847,6.8122,2.0098,2.0363,5.6078,5.8139,10.3783,10.0698,7.3975,6.7154,2.0666,2.061,4.5803,4.5069,1.7633,1.6281,14.7771,17.1141,4.5417,5.1595,3.4608,3.6112,1.0033,1.243,2.4465,2.8353,6.8316,5.9402,13.132,13.3602,2.6741,2.8618,3.6938,3.7823,3.652,3.5732,1.5225,1.4158,3.4772,4.0438,8.8201,9.6546,2.7883,2.7864,2.3854,2.1949,1.7577,2.0237,9.3578,10.1847,2.2384,2.2152,2.1513,2.0593,11.6466,11.3856,1.5548,1.8485,1.1782,1.2125,12.34,11.6029,4.5919,4.8888,7.202,7.5452,3.9385,3.4603,9.3058,9.7034,6.2515,7.107,7.2488,6.8573,3.7856,3.7177,1.4193,1.4827,,10,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd699,79,79,M,2.3554,2.528,0.35908,0.37573,0.84859,0.87665,19.0873,2.9012,2.8973,52.136,53.3131,16.2603,16.4775,226.5443,222.2557,1.8804,3.5737,3.2963,1.3138,0.80833,21.4729,23.1056,1.5748,1.6101,4.1883,4.0548,6.0964,6.3917,4.6548,4.7993,0.08182,5.7295,2.4037,2.97,0.33923,0.39039,3.9888,5.0653,3.9291,3.9875,1.6952,1.3515,9.5111,8.3233,3.3529,3.0459,3.8788,4.281,4.5113,4.3734,1.6252,1.6967,2.0784,1.9804,3.2742,3.23,7.894,7.3659,1.7185,1.9282,7.1162,6.4182,12.5272,11.1448,8.478,7.5703,2.1151,2.2165,4.3481,4.602,1.5878,1.5775,16.5951,18.0674,5.289,5.7859,3.5288,3.5444,0.94508,1.0543,2.5158,2.5482,7.6393,6.3241,15.1793,13.9946,3.2577,2.9863,4.4323,4.059,3.4287,3.1969,1.4462,1.4648,4.1098,4.3793,10.8285,10.7938,3.1435,3.3515,2.5824,2.2883,2.3606,2.498,8.8352,9.7018,2.1495,2.5272,2.4137,2.408,11.2387,10.8385,1.8633,2.1633,1.1412,1.1544,12.9133,13.5356,5.5704,5.3741,7.2978,8.3125,3.9438,3.1461,9.8415,10.611,7.6887,7.8346,8.6143,8.1057,3.4275,3.7391,1.7211,1.659,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd700,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd701,,,M,1.5598,2.3519,0.32695,0.33492,0.85789,0.89401,22.0227,2.3362,2.3042,53.3227,51.7551,20.1528,18.5846,301.2319,289.5558,1.2541,3.4143,3.3085,0.60023,0.50891,16.9137,16.0797,2.0607,2.0654,3.4955,3.3147,7.4154,7.7973,5.5358,6.5029,0.07289,4.8961,2.2423,2.5833,0.33463,0.36657,4.3017,4.7414,3.8345,4.0842,1.7262,1.4503,9.6779,8.7777,2.272,3.0567,3.8353,3.9903,3.7056,4.0006,1.702,1.7304,1.946,2.092,3.5967,3.2787,7.5841,7.6213,2.0941,1.9565,6.6846,6.0644,12.0364,11.9897,7.5911,7.1587,2.2909,2.3409,4.7442,4.3981,1.7396,1.7522,17.4425,17.8445,5.5035,6.305,3.5735,3.6766,1.1499,1.0984,2.5147,2.5839,7.7854,7.3763,14.0511,13.8299,3.0325,3.1802,4.2779,4.2021,3.0754,3.2668,1.5618,1.6307,4.1515,4.4731,10.8285,9.9015,2.7134,3.1821,2.1158,2.2649,2.1136,2.0983,10.2035,11.8171,2.3858,2.6031,1.9729,2.1262,12.4549,11.9276,1.8444,1.7915,1.1747,1.3692,13.4238,13.9897,5.514,5.5574,8.2654,8.0809,4.2727,3.2117,9.6917,9.9009,7.2022,6.6285,8.1233,8.3006,3.4643,3.8601,1.3957,1.6448,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd702,71,71,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd703,60,60,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd704,68,68,F,1.8705,2.0842,0.33293,0.37454,1.0118,1.0389,16.6399,2.7586,2.6953,43.4399,43.6108,12.4688,12.4404,183.164,188.2762,2.0012,3.9562,3.6808,0.96117,0.97396,19.6009,17.4876,1.3243,1.4068,3.1933,3.4071,6.5098,6.6813,4.1609,4.3349,0.0666,4.024,1.9338,2.1274,0.32784,0.37409,2.7234,3.5832,4.8436,4.6767,1.6303,1.488,9.7385,8.9364,2.6925,2.5118,3.9589,4.1877,4.9336,5.1317,2.1282,2.1113,1.8085,1.7447,3.3422,3.2018,8.1594,7.683,1.6907,1.7665,7.469,7.0699,12.5933,12.6597,7.5137,7.4715,1.9809,2.3409,4.7066,5.1063,1.4247,1.5352,16.4094,18.6146,5.2269,5.956,3.7885,3.5866,1.2128,1.1072,2.6034,2.7089,6.2531,5.7994,15.0508,14.9531,3.5953,4.7783,4.3247,4.4864,3.3483,2.8897,1.5225,1.3536,4.4639,4.4619,12.6383,11.9956,3.5317,3.3085,2.7515,2.5969,2.3223,2.4288,9.1008,11.1024,2.0875,2.432,2.3544,2.3843,11.1343,12.0145,1.7559,2.2757,1.0877,1.0662,13.6084,13.4789,5.1372,5.189,7.2187,9.423,4.5952,3.4728,10.1293,11.1999,8.4401,8.0185,7.8081,8.135,3.4369,3.2801,1.7211,1.6861,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd705,61,61,M,1.0829,2.1065,0.35485,0.3983,0.75525,0.72415,15.7424,2.8989,2.5005,38.9738,38.1988,11.5711,12.8773,176.7668,171.8839,1.6012,2.8784,2.5693,0.44021,0.42677,11.2721,10.2416,1.3105,1.4068,3.6935,3.4659,5.6649,5.9736,4.0058,4.2195,0.06809,3.6008,1.8736,2.2459,0.41347,0.4058,3.4098,4.3072,3.7836,3.708,1.5457,1.5165,9.7558,8.4411,2.6629,2.6644,3.455,3.7099,4.4477,3.88,1.4847,1.4891,1.7333,1.7087,3.1878,3.1423,6.5553,6.7244,1.9155,1.8999,5.8726,5.5259,9.8718,9.5931,6.4027,5.962,2.084,2.3027,3.9765,4.16,1.5897,1.5684,17.0588,16.2543,4.9182,5.7014,3.5202,3.7955,0.95977,0.88686,2.0237,2.2307,7.3004,6.0505,11.7143,11.3677,2.4467,2.5807,3.3581,3.4539,3.466,3.349,1.3357,1.3552,3.4569,3.6058,9.3981,9.8588,2.656,2.8352,2.0266,2.0626,2.0792,2.1911,9.308,11.135,2.0922,2.3806,1.9834,2.0231,10.6894,10.6166,1.6953,1.8146,1.0894,1.1527,12.2797,13.4043,4.6988,4.7041,7.184,9.011,3.6559,3.1751,9.2834,9.5526,6.4643,6.6294,7.3189,6.8558,3.0771,3.407,1.3782,1.4112,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd706,83,83,F,2.3766,1.977,0.29262,0.29365,0.6034,0.54267,14.5522,2.4093,2.3038,39.2901,39.5897,10.9827,11.9258,150.0735,158.4892,1.6755,2.5906,2.4348,0.80942,1.3954,15.6604,23.0926,1.2633,1.2439,2.903,3.1734,5.4358,5.3712,3.8095,3.8384,0.06536,4.193,1.8979,2.4745,0.31183,0.32624,3.6178,3.6567,3.0319,3.1001,1.4283,1.2669,10.2834,8.8204,2.4957,2.3375,3.1309,3.2309,3.1037,3.1715,1.191,1.071,1.3754,1.4724,2.9789,2.9207,5.878,5.4726,1.7086,1.5903,5.1103,4.7346,9.1185,8.542,6.4929,6.1207,1.7635,1.7794,3.8303,3.6506,1.4448,1.4695,15.6446,14.9308,4.4224,4.7415,3.0089,3.2009,0.9126,0.91269,2.2297,1.9965,6.29,5.8191,11.2838,10.7235,2.4134,2.5508,3.3919,3.5194,2.5222,2.9323,1.2066,1.3123,3.2125,3.3066,9.4578,8.7818,2.1394,2.2801,1.3262,1.7462,1.7183,1.7508,7.5687,8.8018,2.0072,2.0234,1.6185,1.8973,9.6834,9.9496,1.4465,1.5759,1.028,1.0804,13.7673,12.6978,4.6412,4.7418,6.8857,8.078,3.6278,2.7428,10.6279,10.729,6.4507,6.0329,6.1071,5.5284,2.9765,3.6224,1.1585,1.2599,,13,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd707,71,71,F,1.3691,2.1387,0.39757,0.43272,0.93015,0.94014,15.8825,3.3034,3.0363,26.9492,26.488,11.4186,9.2054,208.768,201.1678,1.6168,3.6945,3.3804,0.40751,0.42677,16.018,15.6225,1.5018,1.4302,3.8051,3.4106,6.3908,6.5824,4.3788,4.7548,0.07331,4.061,1.6298,0,0.40645,0.4067,4.1578,4.8551,3.9349,3.8791,1.8887,1.6751,10.5965,9.9061,2.6925,2.6576,3.7413,3.8315,4.3497,3.9712,1.7283,1.751,1.9211,1.881,4.0582,3.6493,7.859,7.6505,2.3123,2.2694,6.1998,6.0712,11.5592,11.9897,7.2448,7.1866,2.2386,2.6404,4.4081,4.9408,1.9531,1.9734,19.8372,19.7497,5.249,5.6598,4.3885,4.6011,1.1168,1.2289,2.711,2.6843,8.254,7.0512,14.0732,15.7739,2.4538,3.2931,4.0656,4.4864,3.1999,3.0753,1.3382,1.5728,4.1452,4.3793,10.9141,10.8542,2.9001,3.1423,2.1876,2.3017,1.8914,2.6756,11.3717,12.4707,2.5048,2.8383,1.8061,2.0657,12.3752,13.31,1.7175,1.8994,1.3271,1.3784,14.5554,15.1137,5.5665,5.5218,8.0531,9.3385,3.6665,3.5643,10.2362,10.683,7.1714,7.1143,8.145,8.0934,3.1447,3.9839,1.3367,1.3774,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd708,76,76,M,1.9908,2.1079,0.40048,0.46097,0.74044,0.79298,18.9937,3.1693,3.2469,44.8174,43.5986,14.6805,15.7034,231.234,226.1267,1.7692,3.1431,3.1593,0.91151,0.8374,27.5036,33.0922,1.5748,1.5505,3.588,3.8527,6.9816,7.2578,4.6514,4.9142,0.08193,4.1392,2.0744,2.5484,0.396,0.40448,4.5323,5.2259,4.4397,4.2093,2.0372,1.612,11.2125,8.65,3.0608,2.6393,3.9162,3.6873,4.1014,3.8832,1.4992,1.4887,2.0381,1.8781,3.8432,3.7458,6.9727,7.0497,2.39,2.3092,6.7955,6.8933,11.1777,10.6973,8.2483,7.1734,2.5281,2.6396,5.0773,4.9186,1.9088,1.9712,19.1785,19.1382,5.3062,6.4884,4.113,4.3193,1.112,1.0763,2.726,2.9164,7.8364,7.0519,13.534,12.9455,3.0215,3.9531,4.0595,4.2611,3.6483,3.4099,1.6007,1.502,3.7771,4.3145,10.2645,10.4386,2.6174,3.3079,2.3952,2.2563,2.0362,2.3543,8.9212,10.9196,2.564,2.7098,2.2014,2.4949,12.3611,13.6688,1.8131,1.7895,1.3989,1.3937,14.6636,15.8737,5.2241,5.5878,7.7449,9.2829,4.0794,3.6813,10.5029,10.3844,6.9792,6.5551,7.7616,7.4622,4.0663,4.2752,1.4503,1.5925,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd709,80,80,M,2.1872,1.9983,0.35908,0.37573,0.65297,0.6146,17.6402,2.7109,2.3891,46.8712,47.6829,15.5442,16.3434,193.0484,185.9035,2.7035,2.9116,2.5816,0.89895,0.97396,29.6633,22.5146,1.2369,1.3368,3.5524,3.4578,6.1911,6.3666,4.3188,4.4773,0.08456,5.0169,2.4095,2.517,0.34048,0.37066,4.1127,4.5078,3.8248,4.1694,1.4914,1.4037,8.6076,7.8604,2.8271,2.9632,4.2449,4.4762,4.4505,3.6686,1.3862,1.2463,1.9062,2.0771,3.697,3.169,7.2561,6.6497,1.8439,1.8575,6.2476,6.2837,10.7234,9.777,6.9075,6.5675,1.94,2.1584,4.6503,4.4597,1.8138,1.7523,17.3819,17.1345,4.4187,5.0735,3.3972,3.5504,1.2371,1.2771,2.3862,2.8206,7.3224,6.7962,12.6504,12.4403,2.563,2.9422,3.6454,3.9682,3.1325,3.2598,1.4666,1.4334,3.9268,4.3404,10.5983,10.033,2.7173,2.7866,2.2052,2.4319,2.0784,2.2927,9.1766,11.0625,2.2016,2.4534,1.957,2.1973,10.0587,10.7422,1.7931,1.7751,1.2357,1.2233,14.511,14.0776,5.1361,5.0241,6.3222,7.7603,3.6526,3.2171,9.3013,9.4851,6.9612,5.7033,6.5625,6.051,3.5716,3.7665,1.3929,1.4548,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd710,72,72,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd711,56,56,F,0.76151,1.6951,0.39807,0.43187,0.88409,0.88139,15.9782,3.1972,3.0922,27.9343,29.3947,11.4186,11.2483,219.7823,216.6957,0.78724,3.131,3.0526,0.42881,0.43749,6.2042,5.4567,1.3677,1.3106,3.8051,3.8835,6.7328,7.1078,4.2416,4.4267,0.07101,3.7976,1.7855,1.872,0.35605,0.37595,4.3417,4.4857,3.7628,3.5946,1.7381,1.5585,10.6009,9.15,3.0513,3.1002,3.6115,3.5452,4.2648,4.1242,1.7212,1.7317,1.9548,1.8366,3.8561,3.2994,7.2418,7.5396,2.1025,2.0694,6.6099,5.9025,12.728,11.7365,8.01,6.717,2.1745,2.3112,4.5274,4.5898,1.7046,1.7233,20.694,20.5201,4.5537,5.092,3.8323,4.2087,0.97369,0.95711,2.4443,2.3337,7.5541,6.7603,14.9677,14.4608,2.5004,3.5556,4.0595,3.817,3.7248,3.7596,1.4047,1.2898,3.4532,4.066,8.402,9.9817,2.9268,3.3577,2.1178,2.0168,1.8025,1.9596,10.9132,11.4351,2.2182,2.6967,1.8492,2.0488,13.7294,13.7014,1.823,1.598,1.1607,1.0429,15.0981,14.8241,5.3815,5.911,8.2741,8.5848,4.1595,3.5506,8.9606,9.8046,7.6223,7.4062,7.2326,7.8874,3.5397,3.6608,1.181,1.2918,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd712,,,M,2.0909,2.4089,0.37414,0.49937,0.96245,0.96388,19.3177,3.5473,2.9424,52.246,51.7045,16.2343,15.7609,271.7577,264.2635,2.0269,3.7728,3.3865,0.85339,1.5041,22.5744,30.2228,1.7878,1.7696,4.1649,4.0548,7.7925,8.006,4.9783,5.3393,0.08927,4.9834,2.3995,2.9334,0.43993,0.44274,3.7422,4.4399,4.0728,4.2762,1.9423,1.8329,9.9833,8.8339,3.8966,3.6443,4.1725,3.6082,4.8737,5.2218,1.9135,1.8006,2.0224,2.092,3.9924,3.7492,7.8422,7.4269,2.1389,2.0521,7.4434,7.4712,12.3948,11.9568,8.7067,8.3526,2.493,2.5785,4.3572,4.5241,1.7718,1.6743,20.8946,22.3925,5.154,6.6359,3.9365,3.9386,0.95377,0.93811,2.3328,2.448,8.0739,6.6877,15.1099,13.8627,3.2751,3.7497,4.5756,4.8401,4.1233,3.6874,1.6705,1.5735,4.2127,4.6327,11.8125,11.9956,3.3305,3.5993,2.5473,2.2582,2.3449,2.5193,9.7635,10.4789,2.5457,2.5227,2.3842,2.2904,10.878,11.4368,1.9446,2.462,1.1437,1.1887,15.0529,14.0924,4.8574,4.9381,8.2728,8.519,4.5474,3.6135,8.8582,9.8591,8.4167,7.5252,8.8428,8.716,4.3135,3.9858,1.5173,1.7415,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd713,77,77,F,2.1657,2.2575,0.28634,0.32409,0.6043,0.54267,12.9797,2.5523,2.8728,37.3972,36.5007,10.6258,11.7116,149.5422,152.4398,1.979,2.5334,2.3976,1.9068,1.6943,42.7786,39.4973,1.2833,1.2722,2.965,3.0356,5.6649,5.6857,3.8345,3.9321,0.09289,4.1864,1.8249,1.9487,0.30681,0.32475,3.2699,3.7709,3.7564,3.6465,1.3738,1.2669,7.6621,7.5739,3.0485,2.7131,3.2202,3.7772,4.7257,3.929,1.2567,1.1591,1.7346,1.4748,2.9562,3.1579,5.7713,5.6822,1.6173,1.6227,5.6021,5.3117,8.7021,9.0866,7.3677,6.8608,1.8889,1.8431,3.4091,3.2876,1.3504,1.4588,14.7522,14.4036,4.1007,4.7701,3.0517,3.0339,0.8586,0.91269,2.0355,2.0004,6.5869,5.9402,10.4835,10.4941,2.5604,2.9097,3.9066,3.6751,2.971,2.8078,1.2918,1.0427,3.2841,3.6512,8.0695,8.6851,2.4062,2.5224,2.035,2.0096,1.5512,2.0559,8.1705,9.6935,1.9656,1.9283,1.8162,2.0436,10.8173,10.2406,1.3384,1.7322,0.88812,1.0146,11.2428,10.4476,4.3692,4.369,6.6741,7.5258,3.9089,2.95,7.8694,8.1941,4.9691,5.6658,6.5118,6.2765,2.6693,2.8594,1.2951,1.4395,,13,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd714,69,69,F,1.4607,2.5699,0.3546,0.39394,0.88578,0.88361,16.6248,2.8485,2.1129,41.9494,45.4621,13.9568,13.7906,183.5937,180.5895,1.2558,3.5467,3.3007,0.67471,0.57124,15.4596,16.8971,1.4414,1.41,3.4495,3.3722,6.5606,6.7055,4.2579,4.3716,0.07305,4.4055,2.0523,2.296,0.38263,0.36376,3.847,4.2821,4.0089,4.1261,1.6852,1.5717,10.0299,8.1347,3.4823,3.2596,4.0372,4.138,4.7813,4.6986,1.6649,1.5992,2.0217,1.8469,3.459,3.2514,6.3183,7.1173,2.0423,2.1124,6.497,6.1703,10.2323,10.3088,8.3597,7.3711,2.1865,2.5432,4.2838,4.6652,1.6708,1.7671,17.8419,17.9409,5.1762,5.8435,3.8806,4.0437,1.0469,0.97321,2.6796,2.4819,7.8204,6.6449,13.1652,12.5919,2.9069,3.0348,4.1078,4.2907,4.1054,3.4705,1.5676,1.5183,3.3776,4.0273,9.2661,10.9225,2.9475,3.2659,2.4224,2.3517,2.4199,2.4724,9.3074,10.0153,2.384,2.698,2.1272,2.3425,11.7388,11.7631,2.1118,2.3175,1.1843,1.2432,13.9606,14.5211,5.5403,5.6419,7.0375,7.6848,4.4703,3.6288,8.6091,9.4147,6.6673,7.0721,7.3667,7.1295,3.2911,3.6927,1.4361,1.5449,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd715,70,70,F,2.2463,1.2763,0.40041,0.42454,0.83404,0.84704,16.6992,2.6128,2.4731,43.4399,43.1009,14.0549,14.456,213.0143,208.929,1.7409,3.1805,2.8585,0.92808,0.6879,19.2048,24.8629,1.6142,1.5693,3.5165,3.3237,6.5265,6.7553,4.281,4.5116,0.06634,4.8812,2.2993,2.587,0.36116,0.37371,3.8215,5.0653,3.6267,3.7666,1.7374,1.5448,10.6009,8.8907,3.1602,3.1288,4.0336,4.0244,4.4357,4.114,1.5306,1.6513,1.9098,1.7326,3.801,3.3232,6.5731,7.2039,2.0844,2.0571,6.4408,5.7707,10.0786,10.3433,7.9804,7.0396,2.1745,2.2619,4.8757,4.9493,1.914,1.8161,19.2383,19.1789,4.884,5.4532,3.843,3.9386,1.1946,1.0763,2.946,2.6949,8.9869,7.6754,12.5579,13.0087,2.4894,2.9607,4.0676,4.2322,2.857,3.2537,1.5567,1.2866,4.2033,4.5808,11.033,10.643,2.8132,3.145,2.3488,2.3751,2.4054,2.6562,10.0348,10.9985,2.4092,2.3889,2.1513,2.3682,12.44,13.2339,2.0183,2.157,1.1612,1.1544,14.9771,15.6348,5.4539,5.4185,8.0458,8.4213,4.0434,2.8313,11.0128,10.1216,7.1756,7.0293,7.2265,7.3194,3.5269,3.3211,1.6302,1.8083,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd716,72,72,F,1.2149,1.4343,0.33224,0.36871,0.80711,0.80659,17.2136,2.4875,2.5484,36.0414,37.5008,14.377,14.685,197.3373,197.3386,1.1023,3.3875,3.1365,0.60754,0.44803,13.0913,19.5313,1.524,1.4541,3.3206,3.3873,6.5034,6.7714,4.5094,4.7468,0.08208,4.4402,1.9428,2.2734,0.32524,0.35689,3.4262,3.854,3.2943,3.4893,1.6303,1.5558,9.322,8.7428,2.6981,2.636,3.2381,3.0948,4.2654,3.9242,1.5534,1.5673,1.5935,1.557,3.3333,3.0591,6.6059,6.2393,1.6315,1.78,5.7045,5.8453,10.3411,9.7188,6.3145,6.2339,2.1926,2.2395,4.2057,4.3247,1.3135,1.3208,17.2089,16.929,4.5508,5.2674,3.2251,3.5057,0.92508,0.93964,2.1091,2.1709,6.4642,5.7511,12.6236,12.2537,2.4569,3.1413,3.2939,3.5603,2.8626,2.6527,1.4922,1.3216,3.5991,3.8171,9.1639,9.008,2.8557,3.0096,2.2098,2.1827,1.7216,1.7434,8.8201,9.6724,2.3766,2.2182,1.9023,2.0287,10.0402,9.5779,1.5257,1.6524,0.98281,1.0415,12.2797,12.5322,4.5699,4.2424,7.3237,7.3882,3.6665,3.0225,9.0975,8.3738,6.3764,7.2334,6.8304,6.8396,3.2715,3.5044,1.2809,1.3071,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd717,74,74,M,1.9976,2.6574,0.29945,0.26814,0.74893,0.78396,17.922,1.7904,2.0219,48.3411,47.8282,15.0955,15.21,216.5298,211.5953,1.9461,2.9465,2.8692,0.96452,1.1293,20.2643,25.4214,1.596,1.4938,3.0753,3.3076,5.7202,6.0487,4.3547,4.6214,0.09914,5.3858,2.3011,2.7923,0.35605,0.32201,3.8541,4.3693,3.7611,4.0342,1.3769,1.25,9.321,8.3897,2.9717,3.0208,3.5949,4.2033,3.6229,4.3597,1.4359,1.4568,1.9544,2.0164,3.3102,2.5302,6.9781,7.3443,1.7364,1.764,6.9251,6.8599,11.0369,11.3971,7.8756,7.3695,1.7262,1.932,4.6062,4.4569,1.4684,1.4708,16.0764,15.5558,4.9671,6.4362,3.1249,3.1743,1.3235,1.1475,2.8271,2.9714,7.1171,6.5059,12.4739,13.6328,3.2278,3.9225,4.331,4.3142,3.2821,3.0315,1.3601,1.09,4.063,4.555,10.3809,11.088,2.7602,3.0474,2.1584,2.3365,1.7536,1.7651,9.3026,11.9524,1.8475,2.3311,1.9357,2.2474,10.9701,11.5614,1.6063,1.5134,1.0351,1.12,12.7223,12.9671,5.4504,5.1752,7.8294,8.6986,4.363,3.4542,9.187,10.6744,6.8385,6.9714,6.726,6.9869,3.4306,3.104,1.2178,1.3766,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd718,,,M,1.472,1.6605,0.41623,0.45137,0.8884,0.93558,16.0602,2.6524,2.7179,26.9492,26.922,11.4186,11.2483,236.2134,233.4226,1.2092,3.5215,3.4736,0.45832,0.39307,8.2854,9.075,1.7202,1.7676,3.8116,3.972,6.7746,7.0953,4.6039,4.9294,0.08013,4.6347,1.9864,2.1959,0.41932,0.39804,3.9022,4.5045,3.9727,4.1302,1.912,1.7562,11.3973,9.89,3.2221,2.6444,3.7686,3.9928,5.0371,4.6505,1.7756,1.7739,1.9109,1.8394,3.8129,3.4047,7.7436,8.1054,2.2727,2.443,7.2009,6.6257,12.5177,12.624,7.6887,7.101,2.2496,2.6168,4.3592,4.4844,1.9933,1.9397,20.6915,20.5391,5.9286,6.1171,4.1808,4.3548,1.2997,1.2289,2.5573,2.723,8.3682,7.1554,14.9277,14.8265,3.2252,3.7682,4.1912,4.3679,3.3855,3.0753,1.4654,1.5109,3.6745,3.9295,9.8438,9.6351,3.0955,3.3871,2.4224,2.3405,2.2439,2.2416,10.9132,11.3309,2.418,2.8676,2.0971,2.3136,11.8631,11.9453,2.0754,2.0697,1.1837,1.2827,14.6171,15.864,5.4748,5.2538,8.1537,9.7342,4.5964,4.0371,9.2928,10.4922,7.3547,7.1143,8.2166,7.9158,3.3019,3.6503,1.4135,1.4614,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd719,,,M,1.4773,3.2169,0.41779,0.45745,0.86853,0.93311,20.6291,3.4665,3.4491,48.2352,49.3091,17.5141,17.7471,270.7593,264.2635,1.8515,3.4769,3.5674,0.58529,0.54447,13.6796,14.6384,1.911,1.8463,4.3307,4.2688,7.4658,7.7363,5.3512,5.7002,0.08487,5.343,2.2935,2.693,0.41953,0.45301,4.3893,5.2956,5.378,5.0384,1.6088,1.5729,11.7542,10.5471,2.9748,3.5359,4.6459,4.4735,4.4464,4.7057,1.8746,1.7088,2.4243,2.3755,4.049,3.9438,8.3668,7.7927,2.2274,2.1865,8.2003,7.4712,13.7282,14.593,7.5148,7.775,2.1437,2.3376,5.0995,5.164,2.1857,2.0045,20.253,21.8722,5.5976,6.6146,3.7817,4.1009,1.1113,1.0978,2.6201,2.5842,8.9555,8.5192,16.6257,16.2596,3.7168,3.9248,4.0656,4.2651,3.4368,2.9794,1.5704,1.5123,4.3679,4.9742,10.9832,11.0082,3.1033,3.3923,2.5151,2.5533,3.0347,2.6291,10.2478,12.3441,2.5634,2.5496,2.2822,2.4041,11.9639,12.0283,2.2942,1.9968,1.3198,1.4408,15.5683,16.3306,5.8464,5.6207,9.4162,10.3903,4.5674,3.88,10.9764,10.7754,8.9029,8.3261,8.8659,8.5194,4.1574,3.9535,1.741,1.8361,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd720,67,67,F,1.6984,1.8055,0.27858,0.34264,0.51972,0.51612,16.484,2.6305,2.8728,42.862,44.4366,12.5217,13.3701,186.1888,188.3036,1.509,2.4134,2.2563,0.73919,1.161,14.9498,16.1252,1.357,1.3274,3.1049,3.4816,6.1767,6.0733,4.0467,4.2826,0.06836,4.024,1.9878,2.4515,0.32726,0.2706,3.9012,4.2226,3.4726,3.8945,1.63,1.3311,9.031,8.3706,3.0612,2.9698,3.5715,3.6125,4.3431,4.0173,0.34445,1.0787,1.6243,1.9466,3.6528,3.096,6.2374,5.6812,1.9131,1.9357,5.6825,5.3211,9.8718,8.88,6.7317,6.4209,2.0261,2.1102,4.1792,4.0897,1.6742,1.7359,16.1075,16.0015,4.9339,5.6348,3.6617,3.8057,1.0474,1.1971,2.477,2.578,6.9498,5.9329,11.9343,12.0337,2.2463,2.5231,3.5914,3.852,3.4479,3.3582,1.3761,1.3204,3.2502,3.9756,9.1,9.3937,2.3769,2.3682,1.8645,1.9992,1.7598,2.0182,10.1362,11.457,2.0698,2.0306,1.8284,1.9736,10.9318,12.3044,1.618,1.6572,1.1141,1.2271,14.0018,14.2731,4.612,4.6129,7.1729,8.6986,3.5424,2.8507,8.5336,9.2394,5.9959,6.7968,5.4577,5.6543,3.834,3.407,1.1396,1.2918,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd721,64,64,F,1.0614,1.4794,0.338,0.38516,0.8218,0.76205,13.8913,2.5342,2.5326,35.6957,37.8398,13.6038,13.793,209.8405,204.3795,1.0778,3.0354,2.7564,0.48196,0.46211,7.8491,10.1129,1.2456,1.2439,3.7678,3.6648,5.7788,6.0392,3.6997,3.9038,0.06699,3.856,2.0653,2.2432,0.3558,0.34884,3.7247,4.2505,3.8936,3.8088,1.5732,1.4123,9.4821,8.2294,2.8537,2.7953,3.4373,3.5066,3.6404,4.021,1.6478,1.4671,1.9524,1.9219,3.1855,3.6121,6.4928,6.515,1.9155,1.8953,5.1369,4.9659,8.4138,8.9153,7.8314,6.8462,2.0704,2.0882,3.9332,4.16,1.6411,1.6816,17.5442,16.473,4.3477,5.5991,3.579,3.6686,1.25,1.2308,2.663,2.7659,7.2337,6.3289,10.0935,10.794,2.4357,2.8563,3.9425,3.8006,3.5688,3.463,1.4511,1.3652,3.1766,3.5086,9.3341,8.9741,2.8982,2.9733,2.1409,2.0798,1.6549,2.0229,9.0917,10.7265,1.9772,2.0966,2.1575,2.1287,10.8056,11.5033,1.6217,1.8446,1.0645,1.2068,13.6325,12.9407,4.8385,5.1331,7.887,7.9444,3.4604,2.6359,9.4686,11.3991,5.4535,5.6191,6.5955,6.3317,3.4306,3.8118,1.4521,1.3732,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd722,77,77,F,1.94,3.1605,0.305,0.31106,0.60861,0.58904,15.585,2.3546,2.2964,45.1767,45.3358,12.1718,12.1483,164.8177,162.7586,1.7158,2.4152,2.0602,1.1437,1.3765,22.5833,25.6471,1.2633,1.3001,3.0363,3.199,5.6364,5.6381,3.6257,3.8961,0.08508,4.7154,2.2701,2.4648,0.31183,0.3141,3.6304,4.0468,3.6926,3.8233,1.3738,1.364,8.6533,6.4981,2.5233,2.1018,3.3731,3.5531,3.8222,3.3574,1.2126,1.1425,1.8686,1.7489,3.1681,3.0475,5.7579,5.671,1.8534,1.8748,5.3796,5.1321,8.5353,7.9082,6.9996,6.6139,1.8889,2.067,4.146,4.1706,1.585,1.5387,17.4139,15.7695,3.8872,4.6551,3.1025,3.8057,0.95202,1.1393,2.054,2.5346,7.3388,6.6575,10.8521,10.631,2.5875,2.5733,3.4647,3.4211,2.7013,2.8929,1.2663,1.1482,3.1766,3.282,8.0933,8.1084,2.2744,2.5425,2.2297,2.2243,1.8432,1.9753,8.2496,9.9004,1.9487,2.0089,1.9552,2.1863,10.8173,11.0022,1.4323,1.6744,1.0904,1.1784,13.015,13.8267,4.9246,5.0286,6.8403,7.378,3.1376,2.6359,8.0776,9.0978,6.1989,5.1763,6.5082,6.0501,2.8088,3.3566,1.3985,1.5013,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd723,72,72,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd724,,,F,1.8314,1.7773,0.29367,0.33703,0.73118,0.73343,15.8051,2.1606,2.17,39.7329,39.5897,12.295,12.7122,193.1734,189.7608,1.5099,2.8093,2.5693,0.73919,0.81622,17.332,21.454,1.4416,1.4105,2.7905,2.6628,5.6208,6.17,3.9919,4.2179,0.07342,3.6568,1.9527,2.4745,0.29742,0.3202,3.2578,3.5812,3.5491,3.9,1.2952,1.0793,7.8428,7.3169,3.0178,2.9441,3.6484,3.5536,3.7902,3.6811,1.4296,1.4211,1.7559,1.6433,3.3157,3.0976,6.0894,6.184,1.4389,1.6654,5.3781,4.7812,10.0847,10.207,7.0311,6.2984,1.8219,1.9667,4.0806,4.2148,1.3728,1.4901,14.8866,15.8776,4.0023,4.8732,3.0279,2.9419,0.76618,1.063,2.054,2.3079,6.5291,5.9402,12.1521,12.8253,2.4852,2.5807,3.7986,3.4415,2.8593,2.5608,1.2154,1.2695,3.217,3.5086,8.1223,7.8027,2.5089,2.6681,1.8645,1.9992,1.9867,2.3505,8.5484,10.6662,1.932,1.9031,1.5118,1.7202,12.1904,10.584,1.5641,1.9742,0.86423,0.9414,12.5051,11.5294,4.5284,4.7366,6.8963,7.845,3.4065,2.8245,8.8583,8.5418,6.3043,7.2104,6.2058,6.5658,2.9562,2.9014,1.3288,1.491,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd725,76,76,M,2.1555,2.0471,0.28581,0.29365,0.76374,0.67972,14.4951,2.0987,2.0871,30.325,34.3648,11.3372,11.9739,149.5422,152.4398,2.2824,3.2147,2.8348,0.53909,0.55943,24.2377,25.4666,1.2848,1.2696,2.7561,3.0077,5.6653,5.3712,4.2723,4.5907,0.07654,4.4837,2.0307,2.0222,0.41304,0.3861,4.6205,5.3274,4.5397,4.6694,1.6576,1.3355,9.5074,7.8838,2.4034,2.1827,4.2748,3.9394,4.2997,3.9733,1.6669,1.3252,1.955,1.9711,3.6471,3.4748,7.3746,6.9971,1.799,1.764,5.6941,5.9829,12.3722,12.1164,6.9763,6.5016,2.1928,2.2163,5.506,5.0665,1.5622,1.5626,19.992,20.2757,4.7874,5.7567,3.5438,3.4975,1.0923,0.7957,2.4473,2.3482,7.6393,7.1258,16.0082,14.521,2.6534,3.1621,3.9417,3.7679,3.5137,3.0969,1.5397,1.4598,3.9265,4.5439,10.9155,10.8734,2.8467,3.4943,2.4381,2.4109,2.2996,2.399,9.3692,10.6316,2.3726,2.1443,2.126,2.3188,13.239,12.3655,2.0045,1.9643,1.185,1.2342,14.4338,15.1137,5.5314,5.9494,7.2187,8.2955,3.8065,3.0462,8.8861,10.1731,7.1714,8.5547,7.8127,7.1147,3.7288,3.8991,1.468,1.5846,,18,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd726,82,82,M,2.4324,1.789,0.42506,0.47758,0.88817,0.88892,18.1318,3.2366,3.2469,54.7687,56.7564,14.6699,14.8209,243.2493,246.0271,2.8942,3.0267,2.9412,0.70921,0.87269,27.4336,42.0744,1.6668,1.725,4.3591,4.2961,7.5791,7.8753,4.7272,4.9567,0.09689,5.3158,2.5184,2.9938,0.4116,0.41953,5.5549,5.7797,4.2447,4.5632,2.0576,1.8502,12.4061,11.0348,3.8929,3.5396,4.7409,5.0423,5.9264,5.3039,1.7703,1.7041,2.0766,2.4767,4.2434,4.2753,8.4729,7.887,2.2712,2.2793,7.7388,7.4932,13.3726,13.3026,9.6405,8.5245,2.5698,2.5785,6.1433,5.9994,2.0711,2.232,21.4875,21.8987,6.7632,7.1985,4.3326,4.5033,1.2839,1.2076,2.8387,2.9983,9.1132,8.0611,18.097,15.5508,3.9931,4.4609,4.9467,4.8221,4.0885,4.1904,1.7251,1.681,4.7803,5.5754,13.1268,13.4261,3.1894,3.6051,2.6554,2.9166,2.7442,2.993,13.1671,13.2842,2.6904,2.6119,2.5514,2.7744,15.2203,15.7924,2.3664,2.3435,1.4368,1.4414,18.4689,17.4955,5.7831,6.0819,9.3803,10.377,5.1807,4.6918,10.9431,10.7322,9.4883,7.9968,9.5512,9.1223,3.7601,4.2711,1.7937,1.8674,,27,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd727,,,F,1.9294,2.9353,0.35333,0.36272,0.78957,0.77604,17.356,2.8196,2.3543,42.8216,43.4585,14.0525,14.4429,193.1778,178.1077,1.8418,3.1279,2.9098,0.71055,0.53907,17.2587,18.95,1.5261,1.5011,3.2631,3.2373,6.2401,6.3666,4.3457,4.5321,0.07934,4.1296,1.9878,2.4066,0.37094,0.34565,3.4536,4.2164,4.0836,4.1261,1.5756,1.2772,9.913,8.3953,2.8367,2.9999,3.6255,4.0095,3.9569,4.3597,1.4466,1.4328,2.1704,2.0164,3.4809,3.0359,6.8101,6.3769,1.7704,1.8822,5.0863,5.0373,10.9414,10.0529,6.7667,6.1336,2.084,1.9178,4.2293,3.9922,1.5936,1.6947,15.6855,16.0798,4.2927,5.1587,3.3093,3.5511,0.85504,0.9423,2.3346,2.2592,7.3471,6.3947,13.5638,11.9602,2.5604,3.1137,3.4664,3.8581,3.4737,3.507,1.3192,1.2201,3.4634,3.6227,8.5837,8.7801,2.7231,2.9473,2.3244,2.156,2.1279,2.1299,9.3026,9.8737,2.1166,2.0966,1.9823,2.1163,9.6738,10.2205,1.7711,1.9016,1.0284,1.0849,14.0725,14.1541,4.7457,4.7331,8.2093,9.085,3.4604,2.8836,8.6881,9.0516,7.3816,7.4671,6.726,6.8159,3.2904,3.3172,1.312,1.4548,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd728,,,F,1.4719,1.9231,0.35988,0.42314,0.81161,0.71904,15.3697,2.7088,2.7731,43.7226,41.4904,12.8401,13.5987,193.2219,190.6344,1.6097,3.4931,3.0792,0.96487,0.93226,16.9487,23.0601,1.438,1.4294,3.4331,3.7598,6.0833,6.4181,3.9635,4.1549,0.07584,4.3017,1.9992,2.6111,0.36677,0.38346,3.4662,4.256,4.0828,4.0309,1.6977,1.4914,10.7613,8.65,3.5335,2.5846,4.013,3.6261,4.661,3.9813,1.5534,1.3078,2.0772,1.9412,3.3198,3.0064,7.1203,6.8121,1.9041,1.781,6.1003,5.8649,11.0529,10.131,7.2141,6.6054,2.1145,2.2312,4.2544,4.2817,1.7,1.5749,16.1322,19.5531,5.123,5.7175,3.6591,3.5847,0.99093,1.0283,2.4368,2.3818,7.6315,5.9329,14.7741,12.4801,2.3636,2.8215,4.2714,4.3583,3.4737,2.9361,1.4194,1.4314,4.0904,4.6604,10.2587,11.8842,2.8251,3.1525,2.3783,2.2396,2.4287,2.522,9.2486,10.4106,2.1495,2.2778,2.0681,2.1307,11.6883,11.229,1.841,1.9102,1.1721,1.235,14.2661,14.2731,4.4485,4.7192,7.686,8.8539,4.0133,3.4355,11.7083,11.8119,6.9127,7.3543,7.0906,6.9893,3.6116,3.4622,1.511,1.5107,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd729,80,80,F,1.7983,2.3061,0.32836,0.38838,0.70437,0.79298,16.4883,2.7039,2.6431,44.8116,45.0829,13.1475,13.1926,186.1146,191.4973,1.8042,2.7141,2.9426,0.73085,0.9965,27.8543,35.4198,1.527,1.5078,3.3097,3.0976,6.4004,6.8634,4.281,4.5315,0.08108,4.6477,2.2165,2.6837,0.41104,0.40503,3.9954,4.706,4.5114,4.7752,1.5345,1.5065,9.6025,8.3923,3.3055,3.1572,4.0571,4.0985,4.7749,4.2722,1.3995,1.4871,1.7701,2.0487,3.6944,3.4626,6.6325,6.1674,2.2793,2.2694,6.3722,5.8456,11.2782,10.0638,7.8024,7.3043,2.0386,2.3851,4.3398,4.7792,1.7901,1.8106,16.3678,16.4015,4.884,5.4893,3.4848,3.7084,0.89224,1.4219,2.0523,3.189,8.1308,6.8637,12.8679,12.213,2.5101,3.3573,3.9739,4.1172,3.6146,3.5831,1.572,1.5832,3.9306,4.5049,11.6293,10.8734,2.5366,2.8487,2.1883,2.1862,2.2135,2.4654,8.8302,11.1184,1.9527,2.3079,1.9851,1.9697,11.3666,12.1998,1.8433,2.2049,1.1437,1.2219,13.8721,13.2713,5.0958,4.9228,6.702,8.5755,3.9936,3.3648,9.484,9.8091,7.0665,6.8428,7.6584,7.2896,3.5559,3.4383,1.4593,1.7511,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd730,72,72,M,1.1935,1.2667,0.40752,0.42411,0.98247,0.98753,18.0477,3.3929,3.3583,44.6002,45.1092,14.668,14.8643,251.5014,251.7752,1.3381,3.9712,3.8846,0.39685,0.34422,14.6737,13.2896,1.6414,1.613,3.5869,3.8377,6.9086,7.0601,4.6023,4.9294,0.08285,4.65,2.0673,2.6004,0.40645,0.41984,4.5323,4.7119,4.4342,4.7001,1.9727,1.8047,10.8441,10.3745,2.9195,2.833,4.3528,4.4052,4.6672,4.5426,1.9036,1.8671,2.1956,2.2036,4.0432,3.719,8.3301,7.7758,2.4263,2.3336,6.4488,6.2659,13.3156,14.593,8.7643,7.4604,2.5197,2.7266,4.5987,4.739,1.9437,2.0006,21.1619,20.9488,5.92,6.5476,4.4654,4.7475,1.0593,1.2417,2.5683,2.723,8.3765,7.0379,16.1292,16.2596,3.201,3.4271,4.7909,4.7157,3.6151,3.34,1.6337,1.7745,4.5744,5.1719,12.654,11.6244,3.3221,3.5478,2.3477,2.36,2.5902,2.9222,11.6151,12.8633,2.7574,2.8669,2.126,2.2562,13.3956,15.0108,2.0618,2.2086,1.3989,1.4764,15.2906,15.864,6.0849,6.1341,9.0598,10.0553,4.826,3.7508,11.646,11.8495,9.075,9.3392,8.9394,7.9158,3.9793,4.191,1.4845,1.7203,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd731,70,70,M,1.7938,1.8769,0.40335,0.44027,0.83404,0.82365,18.6723,2.9757,2.9334,44.4048,43.5986,14.3121,13.7043,195.3437,194.1091,1.9683,3.0836,2.8334,2.4881,1.7937,31.2259,31.4738,1.3987,1.3671,3.5052,3.5655,6.1684,6.4181,4.7781,4.9511,0.07446,4.7161,2.0012,2.7436,0.40007,0.40852,3.8231,4.6224,3.996,4.2762,1.8884,1.5216,9.0756,7.8604,2.3608,1.9387,3.6643,3.7713,3.631,2.9868,1.5978,1.5631,1.8833,1.8114,3.6966,3.4071,6.4928,6.1466,2.2997,2.4181,6.0389,5.6658,9.0886,9.9822,6.7914,5.4669,2.3802,2.5384,4.4469,4.8775,1.815,1.8608,17.4694,16.3119,5.1017,5.7343,4.2661,4.4896,0.9992,1.2013,2.5015,2.155,7.1601,6.7388,10.897,11.286,2.8378,3.1118,3.3378,3.6226,3.3205,3.1812,1.6136,1.5388,3.3984,3.9719,9.185,9.2029,2.5342,2.8521,2.3854,2.1631,1.8491,2.0912,8.3544,11.1184,2.6713,2.45,2.2136,2.2782,10.0523,10.6935,1.8366,1.8025,1.3215,1.3577,12.5188,12.7452,4.9027,5.1725,7.887,7.5909,3.3701,3.4265,8.6881,8.8161,6.8639,6.7163,7.7847,7.1796,3.8343,4.4614,1.5652,1.5925,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd732,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd733,68,68,M,3.3332,3.6291,0.42772,0.43967,0.96199,0.98753,21.4302,2.9795,2.8993,50.7475,50.3468,16.8651,17.9163,263.77,270.7394,2.9538,3.8127,3.7705,2.0116,1.4126,48.6081,48.6943,1.803,1.6123,3.6831,3.7863,8.2756,9.0064,5.3512,5.6575,0.07588,4.9834,2.382,3.0709,0.4115,0.43803,4.7836,4.8834,4.7486,4.8188,2.4906,1.6462,9.5249,8.6029,4.3025,5.3609,4.1936,5.0423,5.8801,5.2487,1.931,1.7971,1.9982,2.1078,4.8016,4.2113,7.9794,7.4269,2.3828,2.4508,6.9693,7.2798,11.7446,11.941,8.4069,7.5458,2.8403,2.5951,3.5995,4.6734,2.029,2.3946,19.249,19.457,4.8565,6.1756,4.7054,4.7688,1.0667,1.0991,2.8028,2.5253,8.8586,8.0067,13.918,13.2979,3.6796,4.1988,4.4497,4.5039,3.7894,3.5056,1.8308,1.6164,4.1503,4.4685,10.6296,9.9015,3.3305,3.3865,2.6785,2.7114,2.4994,3.1072,11.0358,11.849,2.5064,2.6625,2.6052,2.7685,11.8669,13.0542,2.0045,2.425,1.5046,1.5834,14.6511,15.1221,5.8085,4.9107,9.2217,11.8596,5.673,3.3474,9.5575,9.8591,8.0468,7.9222,8.5115,8.4413,4.0397,4.0213,1.7168,1.9738,,27,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd734,,,F,1.2046,1.7443,0.33279,0.36378,0.89225,0.83393,16.6399,2.6802,2.474,40.966,41.5782,14.7578,14.5574,212.1288,208.929,0.94521,3.3175,3.0832,0.37254,0.37663,8.1124,7.6527,1.5486,1.5353,3.5721,3.6167,6.9295,6.9347,4.4644,4.7331,0.07642,4.6347,2.2948,2.0809,0.37157,0.3541,4.1239,4.543,3.8848,3.9136,1.7764,1.5897,10.0875,9.0663,3.0513,3.0365,3.7037,3.6973,4.3404,3.9577,1.575,1.5651,1.8804,1.9725,3.4663,3.3725,6.5852,6.7736,2.0107,1.9651,6.044,5.7301,10.4651,10.6496,8.0791,6.9457,2.0948,2.2613,3.9591,4.1749,1.5913,1.5482,18.477,18.15,4.4945,5.5329,3.7639,3.8333,1.0679,1.0691,2.3888,2.5646,7.142,6.4494,13.5857,13.2642,2.5253,3.0222,4.0858,4.2322,3.2367,3.4619,1.4431,1.3626,3.9221,4.3803,10.2035,10.4746,2.9475,3.0096,2.206,2.2859,2.1804,2.4227,9.877,10.4723,2.2235,2.3097,2.154,2.4206,10.9804,11.2389,1.7802,1.9931,1.2499,1.3205,13.927,12.9686,4.7484,5.1019,7.822,9.191,3.8384,3.3715,9.7965,10.221,7.3625,7.3967,7.5089,7.1746,3.3992,3.6828,1.3875,1.4851,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd735,71,71,M,2.655,2.5057,0.34798,0.38133,0.80167,0.6773,20.4839,2.8697,2.9339,48.6965,47.9699,19.9017,19.6858,242.2161,234.785,1.8683,3.4165,3.0874,2.333,1.4126,27.8541,37.1856,1.5877,1.5857,3.4955,3.8535,6.1374,6.4205,4.7216,4.8287,0.06139,5.7295,2.4335,2.4848,0.32855,0.35922,3.9962,4.2709,3.9291,4.3225,1.5988,1.3642,9.0266,8.3197,3.7436,3.7251,3.573,4.0757,5.137,5.0715,1.4847,1.2057,1.983,1.8123,3.7108,3.2787,7.1123,6.5809,2.0307,2.0713,6.2901,6.3901,10.5303,9.4804,8.0408,7.6174,1.9458,2.272,4.6016,4.5385,1.7617,1.6646,19.346,19.457,4.4528,5.2485,3.7199,3.8912,0.98305,0.99809,2.465,2.3545,7.7032,6.585,11.8728,10.9522,3.0135,3.2917,4.1184,4.3141,3.2545,3.4832,1.314,1.3935,3.6173,4.2632,10.2264,9.8585,2.516,2.8084,2.4446,2.2366,1.9658,1.9848,9.3081,10.8421,2.2356,2.4285,2.2267,2.4206,11.0717,13.2127,1.8902,1.6304,1.122,1.2385,13.344,13.8829,5.3766,5.1182,6.883,6.9655,4.0864,3.5419,9.3569,9.647,6.5891,6.1394,6.726,6.9116,3.0679,3.9727,1.6442,1.3138,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd736,63,63,F,1.5191,2.3068,0.40132,0.39625,0.97399,0.88935,20.8786,3.2685,2.9293,49.3724,48.8077,18.8412,18.6924,284.4215,289.5558,1.2541,3.515,3.2413,0.51741,0.51445,10.2175,13.4763,1.7789,1.7719,3.9227,3.8304,7.1371,7.645,5.139,5.4329,0.07365,4.551,2.271,2.8765,0.35463,0.40337,4.1239,5.0139,3.5971,3.7606,1.8186,1.4925,9.5148,9.2595,3.0636,3.0106,3.4866,3.725,5.232,4.7483,1.9135,1.7252,1.8267,1.7542,3.8484,3.448,7.4065,7.7366,2.0859,1.9279,6.2791,6.4785,11.1808,10.8291,8.0846,7.1042,2.3641,2.4256,4.8872,5.473,1.8926,1.8702,18.5568,18.1012,4.9111,6.0193,3.6354,3.7465,1.1946,1.4277,2.7194,3.3245,8.2775,7.2792,14.2011,13.3618,2.818,3.6547,4.0324,4.4898,3.2812,3.1812,1.577,1.408,3.9242,4.1715,10.8726,10.017,3.052,3.3911,2.0377,2.1205,1.9944,2.3005,12.1224,12.4431,2.3034,2.4625,2.0512,2.5141,13.5552,12.6387,1.7405,1.8118,1.1388,1.0952,13.451,13.1667,5.6004,5.6885,8.1119,8.6043,3.9845,3.7664,9.7753,10.519,8.3,7.5026,8.5438,7.6834,3.4794,3.3844,1.2798,1.7839,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd737,71,71,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd738,68,68,M,1.7737,1.9084,0.41653,0.46245,0.90295,0.90002,18.9345,3.3624,3.1856,47.8528,49.0781,16.543,17.1,252.8798,252.5392,1.4859,3.7797,3.5098,0.68606,1.0156,21.7125,22.5706,1.9924,1.9055,3.5031,3.438,9.902,8.5587,5.4042,5.5975,0.10157,4.6203,2.2414,2.6527,0.4332,0.45301,4.7617,5.4149,4.8522,4.6196,1.9503,1.8397,12.1998,11.3323,4.3357,4.2792,4.8738,4.6948,6.4285,5.1517,1.8746,1.875,2.3227,1.9869,4.5707,4.0108,8.3668,8.4465,2.2117,2.2756,7.653,7.9981,13.1952,12.2544,9.1203,8.4392,2.4591,2.5398,5.416,5.3445,2.1684,2.1273,22.9942,22.7106,5.8744,8.0952,3.9216,4.3173,1.2861,1.3386,2.8666,3.0391,9.1937,8.0971,16.7309,15.7275,3.2263,3.9225,4.7004,4.9493,4.4008,3.206,1.6749,1.5605,4.3679,4.6666,12.422,13.0258,3.2799,3.5523,2.4717,2.6305,2.5274,2.6442,12.0336,14.9649,2.815,2.9926,2.3492,2.5102,13.7001,14.2938,2.1401,2.2289,1.443,1.4984,16.4919,14.8746,6.6401,6.5596,10.7075,9.5109,4.5474,3.8956,12.5488,12.1876,7.8023,7.7573,9.5488,8.8366,4.0762,4.1146,1.5567,1.8601,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd739,66,66,M,1.7674,1.9681,0.41207,0.4871,0.78849,0.78422,19.3173,2.7823,2.6672,46.2948,47.0264,14.6805,15.2766,231.234,226.1267,1.8546,3.1953,3.011,2.4881,1.4126,26.0293,25.3654,1.7384,1.7008,3.5981,3.6548,7.4277,7.4648,4.9581,5.0683,0.08488,4.9295,2.1822,2.987,0.3835,0.39259,4.6665,4.8934,4.0195,4.0245,1.954,1.528,10.7934,9.5276,3.5653,3.5693,4.2634,4.0153,4.6554,4.5407,1.5659,1.4114,1.6638,1.9025,3.7899,3.448,6.7819,7.1315,2.5778,2.7388,6.2522,6.9006,10.4622,10.0065,8.211,8.0496,2.3645,2.4717,4.4131,4.715,2.044,2.1063,19.0835,16.8625,5.92,6.07,4.2036,4.5134,0.88156,0.87229,2.678,2.346,8.8107,7.724,13.0423,13.5444,2.9533,3.3159,4.1983,4.4752,2.8161,2.9791,1.5422,1.5149,3.964,4.1789,11.7754,11.3547,2.9241,3.1414,2.3922,2.2428,2.6137,2.8484,9.5323,10.6313,2.2728,2.652,2.1272,2.4102,11.8631,12.5485,2.2121,2.1467,1.3308,1.4734,14.6949,14.7828,6.0849,6.2755,7.9453,9.0832,4.3004,3.6297,10.7296,9.5776,6.7205,7.2459,7.8855,7.4971,3.0571,4.2257,1.421,1.5449,,12,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd740,66,66,M,1.0188,1.5911,0.40752,0.44492,1.0266,1.0531,17.2523,2.9081,3.0375,45.9326,45.9081,13.8923,14.4147,204.2511,201.1678,1.0958,3.9562,3.7395,0.50539,0.44762,12.6832,16.8039,1.4087,1.3757,3.5193,3.3868,6.8393,7.113,4.4045,4.5314,0.08927,4.3786,2.1753,2.7688,0.42072,0.40079,3.6659,4.2915,3.9787,4.2371,1.8884,1.6751,11.5855,10.6247,2.9179,2.8508,3.7866,4.0266,4.1802,3.9577,2.0892,1.8749,1.8946,1.8732,4.3682,3.839,7.6897,8.1847,2.3816,2.4717,6.2753,6.9345,11.8036,11.941,7.3121,6.8955,2.4733,2.6274,4.5803,4.597,2.0238,2.0756,20.0268,18.9053,5.3743,6.6668,4.2661,4.623,1.1499,1.1447,2.5994,2.7449,7.7828,6.6879,16.2235,15.5401,2.8536,3.1911,4.3511,4.03,3.307,3.2415,1.5037,1.4691,4.6508,4.8786,10.9272,11.0417,3.1754,3.4671,2.1379,2.1517,2.0761,2.2773,10.4753,11.1911,2.3569,2.7755,2.0752,2.3136,12.3388,13.6688,1.7268,1.7956,1.3336,1.4476,14.6592,15.5642,5.2361,5.2441,8.4487,9.8394,3.9385,3.3885,10.7573,9.5201,7.9936,8.7619,8.5351,8.3303,3.5809,3.7006,1.3266,1.376,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd741,,,M,1.705,1.9622,0.33253,0.34666,0.80628,0.72388,15.9729,2.8085,2.6953,39.1359,39.2713,11.3847,12.3842,163.5324,161.6748,1.6859,3.1175,2.83,0.86284,0.59791,14.9264,16.8971,1.3569,1.3431,3.0823,3.0858,5.8808,6.17,3.9747,4.1256,0.07157,3.5022,1.8657,2.2569,0.3662,0.34181,3.525,4.1665,3.6452,3.7776,1.5756,1.37,8.84,6.643,2.6629,2.7311,3.8625,3.806,4.4477,3.8276,1.6514,1.491,2.0596,2.1023,3.6256,3.285,6.4328,6.5195,1.7615,1.844,5.917,6.2311,9.9444,9.3001,5.8811,6.2007,2.1573,2.2053,3.9765,4.2894,1.5598,1.6211,17.6219,15.9371,4.6573,6.0297,3.4902,3.6247,0.95977,0.94874,2.4117,2.5555,6.9508,5.8159,11.2149,11.6121,2.563,2.982,3.5715,3.3384,3.4737,3.349,1.4622,1.4734,3.2263,3.7115,8.8048,9.2699,2.8215,2.9733,2.2838,2.1925,1.8088,2.1015,9.091,10.4034,2.4206,2.3013,2.0206,2.2512,10.0863,11.4156,1.6444,1.8025,1.0128,1.0655,12.2098,11.6837,5.2431,5.3443,7.36,7.231,3.9745,3.5751,9.3038,9.556,6.3524,6.4189,7.0991,7.5036,3.4306,3.7653,1.4243,1.3936,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd742,,,F,2.0768,2.7942,0.29367,0.26814,0.70782,0.78396,15.4625,2.2721,2.2576,41.5171,41.8891,12.0541,12.1993,175.9135,168.0025,1.9862,3.1331,3.0149,0.53909,0.49958,23.2901,28.3623,1.2879,1.2696,3.3326,3.1348,5.5506,5.5759,4.0902,4.1851,0.07538,4.2206,2.0853,2.4315,0.39599,0.38533,4.8125,5.3369,4.1115,4.406,2.0347,1.6768,11.1842,8.65,2.9997,3.5436,4.0376,3.6837,4.3518,4.2503,1.3679,1.5117,2.0489,1.9723,4.1116,3.7629,6.767,6.6884,2.24,2.0647,5.7922,5.984,11.0778,10.1888,7.3862,7.4574,2.6347,2.4985,5.1655,5.2192,1.8856,1.9772,16.5933,19.4458,4.9089,5.3515,3.9283,3.8666,1.1758,1.1753,2.5856,2.5397,8.3148,7.9295,13.5114,13.6704,2.5237,2.8357,3.9653,4.0099,3.8079,3.2797,1.7978,1.4758,4.0853,4.7365,10.5318,10.9108,2.6559,3.1183,2.4381,2.3155,2.3606,2.2704,8.7061,10.7917,2.3616,2.3962,2.0151,2.1995,11.531,12.8559,1.9074,2.0222,1.2255,1.2275,14.9386,15.2984,5.3303,5.6207,7.332,8.6776,4.0615,2.6808,10.7547,10.5394,7.0612,7.037,7.6584,7.4087,4.0125,4.504,1.4808,1.6896,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd743,73,73,F,1.0728,1.0427,0.00009,0.095,0.51139,0.51612,2.0826,0.00039,0.00075,7.4207,8.5017,9.3302,2.9582,76.6563,98.56,1.261,2.4134,2.1047,0.75667,0.59913,10.9448,12.3983,1.3485,1.2801,0.23437,0.32999,5.5588,5.8867,3.9009,4.0697,0.07933,3.5114,1.3543,0.00144,0.28045,0.2964,0.00729,1.9898,2.0098,1.1702,0.00047,0.00008,5.3578,2.2506,2.9727,2.5867,2.1079,0.12649,3.9992,3.9611,1.1498,0.91267,0.75116,0.90154,0,0,4.8245,4.5657,0.51662,0.77512,5.6021,3.8533,5.5287,5.4301,6.8819,6.1704,0.02731,0.06594,0,0,0.16873,0.03454,0,0,4.3769,4.6551,1.0424,1.2391,0,0.80674,1.9456,1.863,0.02225,0.00046,8.7517,8.7586,2.2862,2.4894,1.4146,2.3413,0.00048,0.00223,0.00987,0.0049,1.3402,3.1833,8.4179,7.2975,2.2915,2.5425,1.7966,1.7975,0.38842,0.78485,0.00068,0.00568,0.63246,1.4214,1.5795,1.4588,0,6.6888,1.577,1.6423,0.81868,0.79424,0.00029,0.00005,0,0,0.01333,0.29404,3.8999,2.9009,7.3466,8.188,5.9204,5.1665,5.7369,5.3353,1.1485,0,1.2863,1.0059,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd744,74,74,M,2.2559,2.6714,0.3548,0.37589,0.68424,0.67135,17.2224,3.014,2.9211,43.1869,44.0063,14.0298,14.0371,218.897,215.3137,1.9463,2.7718,2.4984,1.7486,1.7961,19.6264,18.5819,1.5866,1.563,3.6117,3.8535,6.8938,6.9676,4.6607,5.0074,0.0778,4.4978,2.0776,2.3782,0.34677,0.35866,3.591,3.9461,3.8023,4.2509,1.4162,1.3156,9.078,8.0827,2.9493,2.8335,3.697,4.0314,4.1992,4.1139,1.3782,1.3227,1.7157,1.8211,3.2388,3.1364,6.5704,6.2158,1.6897,1.6831,5.6631,5.9258,10.7082,9.9763,7.972,7.3653,1.885,2.153,4.0733,4.4103,1.5862,1.5073,15.8147,15.7201,4.1239,5.2674,3.2708,3.5123,0.94556,0.99614,1.9052,2.4728,6.5775,6.163,12.97,11.9541,2.5712,3.1483,4.0742,3.8876,3.0321,3.2733,1.3934,1.3584,3.4985,3.7223,9.5692,9.4709,2.6622,2.727,2.4446,2.2883,1.8769,2.3182,8.4421,10.0361,2.1024,2.3736,1.9035,2.2365,11.1104,11.0545,1.568,1.8724,1.0767,1.1152,13.1822,13.6217,4.2116,4.1389,7.0718,7.8364,3.4917,3.4265,9.7064,9.3275,6.2997,6.4764,6.3472,7.4131,3.3013,3.1706,1.1903,1.5023,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd745,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd746,70,70,F,1.4797,2.6631,0.35988,0.37612,0.8509,0.88298,16.0576,2.644,2.6265,46.8493,45.2721,12.2852,12.7157,214.4218,214.5005,1.3807,3.4678,3.1606,0.53477,0.5124,11.539,12.2916,1.5032,1.4615,3.2753,3.4883,6.439,6.8349,4.2133,4.4057,0.06774,4.7502,2.0771,2.4648,0.35381,0.37297,3.9558,4.44,3.7408,3.8499,1.5735,1.5289,8.727,9.0157,2.8962,2.7682,3.4588,3.8728,4.5374,3.6543,1.6091,1.6481,1.9482,1.9933,3.4367,3.0718,7.4213,6.8239,1.9435,1.969,5.5253,5.79,11.4184,9.8852,7.5728,6.8854,2.0685,2.328,4.8109,4.9177,1.5897,1.6422,16.95,17.1605,4.0023,5.1371,3.4163,3.6837,1.0275,0.9933,2.4536,2.4369,6.988,6.4971,14.1938,13.0492,2.3021,3.0187,3.8961,4.1008,3.1038,3.5456,1.4048,1.467,3.4532,3.9003,9.0214,9.2855,2.9145,3.1626,2.1037,2.0798,1.8433,2.2295,10.3997,10.6629,2.2056,2.4663,1.7945,2.1122,11.0072,10.3115,1.7591,1.6047,1.2499,1.2935,13.7606,13.4751,4.9246,5.0354,8.0252,8.7912,4.0265,2.932,9.1039,10.0392,7.422,7.4732,7.5884,7.0412,3.1045,3.8057,1.0384,1.2325,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd747,76,76,M,1.8553,2.3987,0.3829,0.49937,0.91712,0.91589,17.5678,3.3177,3.2616,51.8561,51.1779,14.5233,14.7498,239.8651,232.5789,1.6015,3.4863,3.3601,0.9219,0.54888,14.9264,18.833,1.5712,1.4938,3.4333,3.6449,7.7315,7.9181,4.741,5.0816,0.0834,5.078,2.2797,2.6146,0.4105,0.40055,4.8806,5.078,3.9685,4.2128,2.1921,1.7476,12.1488,10.3576,3.2764,2.9452,4.2634,3.949,4.6917,4.1531,1.8746,1.7519,1.7464,1.9185,4.4148,4.3243,8.22,8.0387,2.2547,2.3903,6.3441,6.5007,13.3156,14.1385,8.9171,7.9709,2.6996,2.4943,5.1245,4.7707,2.0182,2.5162,21.0876,20.2197,5.5575,6.4883,4.6542,5.068,0.88156,0.88625,2.0343,2.448,9.1937,7.4069,16.7568,17.6266,2.3636,3.3407,5.0403,5.1498,2.7745,3.014,1.8759,1.5388,4.6767,4.7456,12.1045,11.8877,3.188,3.5841,2.3747,2.2395,2.4338,2.7929,11.9035,12.7777,2.4394,2.7123,2.0756,2.4352,12.5464,10.8132,1.9286,2.2319,1.3388,1.5057,14.0523,16.7898,5.5426,5.7074,8.2807,9.9955,4.1829,3.2142,10.8166,10.5715,8.4167,8.7619,8.8052,8.4243,3.5681,3.9689,1.5661,1.8736,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd748,63,63,F,1.5191,1.7275,0.35802,0.40283,0.70166,0.74646,19.7882,2.6297,2.6191,50.4762,49.5695,15.6101,16.4393,212.9949,206.1572,1.33,3.0192,2.8438,0.4579,0.51484,16.0833,20.0821,1.5525,1.6283,3.3207,3.2834,6.4129,6.7086,4.6091,4.8988,0.07896,4.8838,2.3305,2.5815,0.38664,0.37661,4.1621,4.4827,3.8432,3.8531,1.6668,1.4379,9.2715,8.8278,3.3611,3.4869,3.7112,3.9223,4.6393,4.475,1.407,1.4737,1.8267,1.819,3.492,3.4177,6.8871,7.0287,1.8942,2.0747,7.2028,6.0086,10.916,10.0447,7.7182,6.9412,2.1543,2.259,4.6062,4.6586,1.5732,1.5537,17.552,18.4488,5.9004,5.981,3.6114,3.7638,1.1633,1.3496,2.946,2.9714,6.6016,6.4198,13.8112,12.7949,3.0269,3.6257,4.0605,4.3198,3.3074,2.7669,1.4201,1.4297,3.911,4.3267,10.9795,10.3832,2.7068,2.8618,2.1717,2.2243,1.9221,2.1968,10.5416,11.2932,2.3559,2.3931,1.9234,2.2326,10.8545,10.7422,1.8207,1.7509,1.1423,1.1687,13.7916,13.3131,5.1528,4.6124,7.1464,9.011,4.4673,3.879,9.684,11.5286,7.0517,7.6237,6.266,7.1199,3.3528,3.3445,1.3595,1.376,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd749,71,71,F,0.89572,1.8003,0.40749,0.45523,0.86557,0.90897,17.9005,2.6515,2.7022,44.0934,44.2579,12.8078,13.3136,207.9605,204.3795,0.94698,3.3244,3.0577,0.49432,0.35424,11.1899,13.6102,1.4296,1.4402,3.5115,3.438,6.7928,7.053,4.2623,4.4197,0.07082,4.1429,1.9941,2.3954,0.4115,0.4046,3.847,4.4059,3.8487,3.8279,2.0067,1.712,10.1158,8.9469,3.2766,3.2794,3.7899,3.891,4.9111,4.8578,1.7835,1.6606,1.7889,1.7542,4.0231,3.719,8.2799,8.1556,2.1109,2.226,7.0963,6.2801,12.1871,11.8236,7.9751,6.9263,2.3336,2.5896,4.7042,5.2758,1.7892,1.7445,18.5718,18.1078,5.532,6.2199,4.1567,4.1871,1.0173,1.0249,2.6416,2.5262,7.6211,6.6459,15.2276,15.6892,2.6114,3.2931,4.5219,4.4651,2.944,3.1812,1.4492,1.4553,3.8449,4.3267,10.1363,10.5432,3.1027,3.1236,2.1346,2.0623,2.0761,1.9606,9.7747,12.3986,2.5161,2.4762,1.9364,2.0736,12.0438,13.4129,1.8701,1.6056,1.1837,1.2162,14.2843,14.2374,5.4783,5.799,8.4254,8.0408,4.1453,3.4129,12.0503,12.2536,7.7819,6.6764,8.5351,7.7448,3.1664,3.6306,1.4008,1.4168,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd750,70,70,M,2.2566,2.271,0.41601,0.43868,0.90401,0.85904,18.92,3.2182,3.0055,50.7498,51.4787,16.1122,16.505,243.9959,247.7543,2.2262,3.2833,3.1863,1.7017,1.5606,28.2264,25.9303,1.6568,1.6886,3.8649,3.6544,7.1072,7.7073,4.9232,5.0355,0.08488,5.3326,2.4767,3.1022,0.39307,0.40229,3.7422,4.3947,3.7816,4.2509,1.6786,1.5455,10.4985,8.8907,3.6251,3.2987,4.3301,4.1444,4.8849,4.6044,1.5867,1.5289,1.946,1.8648,3.3687,3.2473,7.7057,7.0443,1.9065,1.9198,6.9133,6.5861,11.8356,11.183,8.8942,8.5248,1.9676,2.5249,4.3009,4.2856,1.6815,1.7671,18.8515,19.5969,5.1663,6.7603,3.8506,3.7696,1.1645,1.0916,2.6924,2.5913,6.7768,6.7388,14.5372,13.8944,3.55,2.9551,4.5756,4.6394,3.5722,3.5511,1.2483,1.4859,3.831,4.2412,10.1363,9.804,3.1327,3.6146,2.3289,2.2563,2.2039,2.8493,9.8412,11.1711,2.238,2.4641,2.2234,2.2655,12.3611,11.894,2.0784,2.3159,1.2173,1.3382,14.4175,14.2564,5.2541,5.366,7.3627,9.4771,4.5184,3.7167,11.0831,10.4671,7.0448,7.83,7.2099,6.9869,3.1222,3.8219,1.6481,1.7362,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd751,74,74,M,1.6791,2.1439,0.45089,0.51409,0.9569,0.94771,18.2541,3.3473,3.0203,47.7163,48.7685,16.4399,16.4672,236.4197,232.8723,2.0508,3.6277,3.4656,0.66404,0.49127,23.6087,27.0618,1.5877,1.5518,3.6942,3.6544,7.756,7.7881,4.8366,5.0564,0.08872,5.4297,2.2946,2.8658,0.42072,0.42533,4.8787,5.3957,3.9685,4.8254,2.0117,1.8329,10.5766,10.3806,3.6982,3.8687,4.1476,4.8279,5.6182,5.6975,1.9382,1.8669,1.9862,2.048,4.3942,3.8872,8.1211,7.9638,2.3976,2.094,8.3124,8.9127,15.13,12.3988,8.5558,8.3164,2.493,2.8712,5.1655,4.5129,2.0737,2.2084,22.0412,22.5254,5.6053,7.2491,4.2565,4.5213,1.1047,1.3173,2.9956,2.9101,9.1646,8.0611,16.1744,15.5091,3.5489,3.3014,4.0666,4.5662,4.0695,3.7375,1.6808,1.7048,4.2029,4.9304,11.7678,11.096,3.2971,3.5234,2.3438,2.393,2.3964,2.5327,10.8503,12.0172,2.952,3.2117,2.2822,2.1959,14.1394,15.7442,1.9579,2.3352,1.359,1.4012,17.7623,17.7633,5.8884,5.9984,10.2352,9.2497,4.7164,3.7762,11.2722,11.8615,8.4316,8.0575,9.3517,9.4607,4.0293,4.0109,1.5133,1.7511,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd752,72,72,F,2.0414,1.6804,0.37638,0.47086,0.71715,0.79298,17.0278,3.0714,3.1851,43.1869,42.0541,14.6937,15.3027,236.8481,236.9625,1.8952,2.914,2.8595,1.2616,0.81228,23.4697,21.5615,1.5712,1.5671,3.3926,3.3801,6.1025,6.6472,4.4183,4.6521,0.07994,4.4349,1.9574,2.6111,0.38849,0.41609,4.143,4.8562,3.4672,3.4546,1.7091,1.5246,10.8675,9.0953,2.7959,2.8104,4.0336,3.5342,4.2208,4.1721,1.5225,1.6233,1.6794,1.5008,3.826,3.5148,7.3078,7.3983,2.5778,2.6585,6.3098,6.3769,11.4121,10.8608,7.7665,7.1023,2.2095,2.4243,5.2099,5.5488,1.9356,1.8975,19.5017,19.8761,5.5605,5.4933,4.1958,4.279,1.112,1.2063,2.8719,3.182,8.4599,7.9001,14.0586,13.5169,2.5444,3.1483,4.3439,4.2284,3.0249,2.6854,1.4475,1.4844,4.0449,4.453,11.033,10.6859,2.6687,3.0474,2.0965,1.9116,2.1501,2.5641,11.5793,13.1117,2.4149,2.7957,1.8492,2.0385,13.2394,13.2312,1.7839,2.1825,1.2912,1.3214,15.5207,14.9497,5.1721,5.1173,7.7676,9.2829,3.5488,3.2779,11.2976,10.5685,7.067,7.4671,7.404,7.4591,3.2944,3.8183,1.3492,1.3876,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd753,42,42,F,1.0437,1.4794,0.3781,0.37448,0.86623,0.89996,18.9336,2.8135,2.6533,43.8728,48.1425,14.0223,14.6249,204.8771,208.7993,1.2612,3.3652,3.1767,0.60754,0.60498,10.9034,17.1136,1.5667,1.5442,3.4135,3.5981,6.7055,6.9801,4.5223,4.7552,0.07416,4.8977,2.3544,2.522,0.32524,0.34323,3.5976,3.9538,3.7341,3.9433,1.5942,1.4382,8.7598,9.0157,3.2457,3.4506,3.5586,3.9289,4.9972,5.1312,1.7817,1.7477,1.7385,1.8092,3.2479,3.0901,8.1453,7.9662,1.7646,1.8822,7.6726,6.837,12.4447,11.6051,8.4717,7.3152,2.0058,2.2419,4.357,4.447,1.4937,1.5371,15.5811,17.9085,5.7094,6.4401,3.3117,3.6606,1.0662,1.1734,2.3621,2.7867,7.1452,5.9329,13.9705,13.0691,3.0955,3.65,4.4497,4.3142,3.2949,3.2146,1.2343,1.407,4.301,4.7032,10.0915,11.3595,2.8052,3.1821,1.941,2.021,1.8433,2.0528,8.2043,10.0256,2.1132,2.3013,1.8357,2.0808,11.0166,12.0331,1.7731,1.8484,1.054,1.1263,13.4644,13.8567,5.1071,4.6472,6.6708,8.6432,4.6594,4.3388,9.8516,10.6744,7.2022,7.3722,7.8081,8.5218,3.3557,3.558,1.181,1.3575,,24,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd754,,,F,1.2254,1.4841,0.40101,0.42626,0.88136,0.8853,16.2165,2.6524,2.5681,42.281,41.6152,14.6801,14.7056,211.7795,209.0373,1.2229,3.4127,3.1564,0.65429,0.74287,13.5658,16.3416,1.524,1.4666,3.3727,3.4931,6.6481,6.4111,4.4644,4.6618,0.08345,4.6685,2.2356,2.565,0.40259,0.39793,3.9944,4.7133,4.2385,3.9356,1.9727,1.7011,9.0647,8.6328,3.2255,3.0768,3.9775,4.2067,4.2915,4.1815,1.6748,1.6599,1.8574,1.8514,3.7899,3.5148,7.3072,7.1395,2.3994,2.3479,6.6265,5.9187,12.5051,12.039,7.9804,7.335,2.4928,2.5896,4.8619,4.9715,1.8294,1.8661,20.6915,21.4013,5.1801,5.4893,4.1673,4.2215,0.95715,1.1718,2.3435,2.7517,8.4398,6.7513,15.1099,14.5309,2.5289,3.0981,4.4075,4.3583,3.8531,3.5708,1.6438,1.4969,3.9242,4.3719,10.2395,9.8269,2.846,3.1251,2.313,2.2563,1.9892,2.4296,9.9635,12.8486,2.497,2.7957,1.9335,2.0631,11.8168,11.3856,1.8463,1.7895,1.2814,1.3373,13.6742,13.6861,5.3927,5.4055,7.6058,8.6945,3.7227,2.9982,10.3852,10.3277,7.1485,7.273,8.0801,8.0864,3.9793,4.0681,1.3885,1.3774,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd755,70,70,M,1.8751,1.6123,0.38402,0.41575,0.86696,0.83459,18.6723,3.0452,2.7471,47.8771,49.3091,15.0817,16.4669,219.3807,213.4574,1.6516,3.2742,2.973,0.70921,0.72598,18.0742,16.8413,1.6406,1.6625,3.4573,3.5025,7.1846,7.2325,4.7611,4.9841,0.08307,4.6514,2.236,2.4322,0.41104,0.39466,4.1933,5.0062,4.4494,4.9566,1.7091,1.61,9.3977,8.9329,3.41,3.4179,4.1936,3.7658,5.0682,4.9263,1.876,1.7241,2.0236,2.0081,3.4684,3.5254,8.1937,7.7014,1.9996,2.2647,6.8062,6.7305,11.5841,11.6856,8.2528,7.3152,2.3364,2.4614,5.0773,5.1549,1.8869,1.9318,18.0466,18.6945,5.6872,7.1033,3.9408,4.3007,1.0477,1.0991,2.5739,2.3727,7.9189,7.0519,13.918,13.9609,3.0269,3.3266,4.3761,4.2128,3.5605,3.324,1.6736,1.6168,4.2617,4.7365,11.2044,10.8436,3.2669,3.6146,2.4064,2.4628,2.5902,2.9678,10.3656,11.3632,2.2488,2.7294,2.2234,2.4949,12.809,12.5071,2.2245,2.4649,1.3224,1.4156,14.6241,15.5816,5.7568,5.7904,7.9386,8.0099,4.1733,3.6876,10.0615,10.7882,8.2011,7.7066,8.5425,8.4413,3.69,3.8341,1.6489,1.6804,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd756,63,63,F,1.1082,2.1104,0.39576,0.46912,0.82078,0.86494,18.213,3.2785,3.2469,43.5641,43.3698,14.0223,14.1673,207.7413,207.7314,1.3404,3.0836,2.8595,0.50557,0.58428,17.9412,18.4159,1.6551,1.6336,3.7896,3.8252,7.4172,7.2876,4.7272,4.9872,0.07177,4.739,2.0488,2.4809,0.38613,0.37462,3.6152,4.1208,4.0376,3.958,1.5789,1.5165,10.6519,10.0039,2.8146,2.883,3.6925,4.5149,4.648,3.8144,1.7484,1.7159,1.8298,1.7612,3.1789,3.1181,7.7075,8.1054,1.7608,1.8516,6.6592,6.7684,11.64,11.5464,8.2946,7.4707,2.0761,2.2919,4.1164,4.4862,1.614,1.5996,18.8515,17.9772,5.1217,6.4883,3.401,3.8074,1.0173,1.0348,2.5015,2.5647,6.5218,6.2902,14.7577,13.6328,3.1751,3.6115,4.3071,4.1161,3.1583,3.34,1.5894,1.3237,3.8381,4.2314,10.7288,10.4622,2.9328,2.9473,2.2975,2.3179,2.2087,2.4582,10.9132,11.7576,2.2717,2.2676,2.0228,2.2008,11.8116,12.313,1.6339,1.9727,1.0344,1.062,13.1853,14.102,4.5318,4.786,8.3254,9.3758,4.3969,3.746,10.6511,11.0209,7.7819,7.395,8.383,7.8828,3.8261,3.4857,1.3584,1.4667,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd757,60,60,F,0.73794,1.2959,0.31981,0.31718,0.7034,0.61588,15.854,2.5083,2.3782,36.0362,37.9211,12.4457,12.7314,187.6209,189.7608,0.39686,2.9848,2.5938,0.75667,0.59913,5.9624,5.4567,1.4289,1.5457,3.0887,3.0698,5.7414,5.9495,3.9973,4.1478,0.06598,3.856,1.8047,2.0897,0.29742,0.31632,4.4036,4.7127,3.4372,3.9644,1.593,1.497,7.1019,8.6227,2.3393,2.3661,3.8306,4.1199,3.8648,3.0535,1.3864,1.3032,1.7233,1.7612,4.0664,3.5415,6.0282,5.8168,1.8708,1.9973,5.4548,5.4631,8.7702,8.1703,6.0729,5.4669,1.9596,2.2657,4.738,5.0431,1.8138,1.7733,16.3678,17.3371,4.3234,5.047,3.4559,3.5098,0,0,0,0,8.4398,6.8858,11.6241,10.7795,2.2886,2.3848,3.5715,3.3854,3.2383,3.322,1.2803,1.4934,3.5234,3.8922,7.3639,8.6851,2.5116,2.5536,2.2215,2.0887,1.8636,2.0306,9.091,9.8737,2.0384,2.0134,1.9189,2.0071,10.0863,11.0022,1.6975,1.8485,1.0663,1.1058,16.8157,13.3589,5.5127,5.3156,6.7591,8.2312,3.4931,2.6126,8.8864,0.43408,5.9591,6.252,6.2429,6.727,2.9372,3.3372,1.2537,1.4223,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd758,72,72,F,1.6456,1.6911,0.35805,0.39595,0.59698,0.66216,14.7753,2.8349,2.5936,43.7226,43.7109,10.9827,11.7821,160.604,152.4398,1.6254,2.554,2.5491,0.97819,0.66018,13.6285,20.0874,1.3705,1.3129,3.3618,3.5292,5.8808,5.6047,4.2761,4.4197,0.06534,4.4952,2.0488,2.4741,0.35503,0.33838,3.8395,4.6895,3.7875,3.8088,1.5062,1.5289,9.083,8.1748,2.9111,2.9632,3.8895,3.8558,4.4989,4.0367,1.1621,1.3277,1.8262,1.7433,3.3523,3.1244,6.7407,6.5989,1.9519,1.8037,6.2322,5.3497,9.9808,9.6693,7.4809,6.935,1.9513,2.3723,4.121,4.3288,1.6125,1.6417,17.6055,17.9538,5.1447,5.6348,3.6316,3.7955,1.0275,1.1971,2.465,2.5797,8.1308,6.3241,13.0804,13.1739,2.916,3.0027,4.0501,3.7503,2.73,2.9128,1.3675,1.3536,4.1859,4.6327,9.8153,9.7247,2.7711,2.7031,2.2408,2.1047,2.16,2.2527,10.5834,10.536,2.1067,2.4821,1.9457,2.0265,13.2372,14.0706,1.8112,2.0838,0.99239,1.0552,13.7655,12.9226,5.1721,4.7219,7.2196,8.9246,3.9083,2.8841,9.3173,9.1445,6.9716,6.9543,6.6344,6.245,3.1503,3.2213,1.5011,1.467,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd759,,,M,2.142,2.3369,0.49537,0.52148,1.0112,0.97834,19.4859,3.6181,3.546,55.3105,56.8183,18.9067,18.277,262.0686,255.3596,1.5952,3.9872,3.9457,0.68395,0.67293,18.5788,24.8629,1.911,1.8286,4.8227,4.6401,8.15,9.5428,4.9821,5.2364,0.09633,5.6612,2.4251,3.2649,0.47709,0.47859,4.5916,5.214,5.1134,5.4048,1.9376,1.8698,11.7542,11.4997,3.936,3.7189,4.3528,5.229,5.2677,4.6995,1.9785,1.9511,2.4494,2.6153,3.7273,3.7021,8.823,8.2358,2.2824,2.031,6.8332,6.639,13.085,11.6051,9.2334,8.0698,2.4049,2.8718,5.1387,5.1103,2.0872,2.2084,21.3093,19.6175,5.4599,7.2491,3.9158,4.0271,1.435,1.3173,2.9005,2.9983,9.613,7.8726,16.2184,14.2233,2.789,3.2581,4.8025,4.8561,3.8602,4.5503,1.8669,1.6954,4.8073,5.319,12.0215,12.4284,3.218,3.6673,2.9604,3.0611,2.4781,3.1049,13.6552,13.2572,2.8536,2.8016,2.5449,3.0548,15.9763,13.0547,2.0737,2.4655,1.3666,1.4414,15.7713,17.4915,5.5008,6.337,9.3669,10.0058,4.1829,3.1072,11.866,11.7601,8.4167,8.5007,8.9331,9.0002,4.0204,3.9535,1.6686,1.9208,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd760,69,69,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd761,,,M,1.906,1.6315,0.38402,0.41575,0.81323,0.78801,19.5817,3.0452,2.7813,44.0619,44.7231,15.1165,15.5424,231.234,222.6818,1.6516,3.268,2.9924,0.95945,0.84609,17.223,16.8413,1.6406,1.6102,4.1544,4.4232,7.2191,7.4399,4.6823,4.9773,0.08199,5.5227,2.3083,2.8265,0.36116,0.36064,4.1278,4.3208,4.4412,4.1508,1.7381,1.5468,10.7837,10.3377,3.617,3.144,3.5163,3.6841,5.1395,4.528,1.7405,1.589,2.0185,1.9447,3.4663,3.2473,7.3624,7.338,1.9406,1.9938,6.4351,6.2111,11.6005,11.0933,8.5437,8.2913,2.3364,2.4574,5.0588,4.6616,1.7108,1.6942,16.5157,17.7121,5.2541,5.9325,3.8306,3.8401,1.0921,1.1039,2.6164,2.531,7.9901,6.3866,14.1938,12.9319,3.0051,3.2581,4.6967,4.6005,3.7979,3.4439,1.6491,1.5579,3.9418,4.3659,11.258,10.6984,3.1447,3.3091,2.5473,2.2321,2.2098,2.2578,9.7535,10.4723,2.2087,2.5093,2.2704,2.2384,10.4564,10.72,1.9704,1.9181,1.1482,1.1489,15.517,13.8296,5.4325,4.9899,7.9417,8.9708,3.8339,3.3175,10.1525,10.4229,7.6925,7.2786,8.3154,8.1057,3.8612,3.7077,1.5081,1.7914,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd762,82,82,F,2.5515,2.3996,0.38217,0.42061,0.73159,0.83327,16.9978,3.1409,3.0003,45.4266,46.5014,13.1238,13.6368,179.8113,176.2179,2.0844,3.2181,3.1525,0.90656,0.91392,31.4798,32.9243,1.6206,1.6486,3.7689,3.7625,6.5392,6.6985,4.6544,4.9407,0.07639,5.0696,2.1986,2.6222,0.39973,0.40491,4.0922,5.1149,4.1808,4.2958,1.4807,1.5165,9.6946,8.867,3.4933,3.4771,4.0572,3.9929,4.7813,3.8777,1.4342,1.4931,1.8904,2.0088,3.9597,3.5221,6.9291,6.4949,2.0828,2.1913,6.7318,6.4095,10.9084,10.207,8.7088,7.9168,2.0702,2.3084,4.3896,4.7509,1.7934,1.8114,16.5933,17.4151,6.0676,5.9223,3.4848,4.0077,1.0939,1.3187,2.8006,2.7011,8.5647,7.5905,12.6504,11.9078,3.483,3.9171,4.4684,4.2973,3.2812,3.14,1.506,1.4284,4.2069,4.5857,10.8854,10.6517,2.7355,2.9739,2.4675,2.1631,2.4349,2.2689,9.7635,11.2527,2.1495,2.2691,2.033,2.2819,11.8239,11.8684,1.8144,2.1445,1.2564,1.2561,15.565,15.8069,5.3621,5.6941,6.9792,8.5524,4.755,4.0374,9.9513,11.5286,7.1344,6.9792,6.4975,7.1199,3.5287,3.6508,1.5171,1.6345,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd763,68,68,M,1.8597,1.9663,0.41653,0.45606,0.63104,0.70698,17.6046,3.4732,3.0601,44.1094,42.9721,14.3679,14.4955,245.6176,239.0348,1.6214,2.7718,2.6597,0.68917,0.73466,21.7125,24.3171,1.7943,1.8143,3.7896,3.6544,6.39,7.1303,4.5856,4.7728,0.07328,4.4376,2.0275,2.4133,0.40743,0.4066,3.2603,4.2382,4.1727,4.2191,1.8675,1.6008,10.4493,10.4475,2.9363,2.7433,3.7878,3.9068,4.1992,4.0584,1.3409,1.3822,2.1498,1.8545,3.8129,3.4631,6.5651,6.2539,2.3994,2.1961,6.6239,5.9105,11.5109,10.2843,7.4103,6.8608,2.3725,2.5839,4.4497,4.8107,1.8483,1.8811,18.4156,18.181,5.1518,7.0509,4.0221,4.2283,0.96542,0.9641,2.4699,2.4017,7.9901,6.5523,13.5199,13.6704,3.0325,3.919,3.9382,3.6426,2.9628,3.2644,1.7912,1.4835,3.5904,4.1302,9.6417,9.6885,2.6338,2.8218,2.2089,2.1862,2.3098,2.6695,10.3956,11.4993,2.4463,2.7957,2.0833,2.3636,12.8515,12.4872,2.2101,2.0213,1.3271,1.3577,15.2759,15.6985,5.308,5.1043,9.415,9.8517,4.1802,3.144,10.8406,11.3401,7.2476,7.8476,7.544,6.9893,3.7857,4.3993,1.5697,1.7354,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd764,69,69,F,1.5307,2.3068,0.37607,0.44067,0.89651,0.91061,17.1079,2.8217,2.818,45.649,44.2208,14.4356,15.0749,240.1943,238.5675,1.2296,3.8423,3.5201,0.60023,0.39072,10.462,10.1571,1.5478,1.5138,3.3703,3.6285,7.0223,7.3494,4.6268,4.8254,0.08537,4.7502,2.2158,2.5288,0.41993,0.39698,4.2709,4.8432,4.4282,4.8529,1.8194,1.7273,10.1448,10.1,3.793,3.6542,4.6459,4.6187,5.5132,4.8128,1.7756,1.8106,2.088,2.3666,3.6668,3.5799,7.7769,7.3983,1.9208,2.089,7.4588,7.1014,12.9681,11.9568,9.89,8.7069,2.4045,2.7886,5.2304,5.1811,1.7108,1.8136,20.8868,21.4013,5.467,6.7802,3.6544,4.0271,1.0851,1.3187,2.8387,2.8154,7.7507,7.1587,16.0082,15.4195,3.7885,3.8397,4.8417,5.1469,4.09,3.353,1.7267,1.7763,4.5097,4.728,10.5846,10.4413,3.1019,3.2913,2.4554,2.3709,2.8213,2.7369,11.1598,12.3416,2.426,2.6346,2.0825,2.4102,13.6971,14.0994,2.4074,2.1929,1.1744,1.2461,15.887,15.5481,5.6312,5.4501,8.3106,10.1914,4.5184,3.7136,10.9174,10.6301,8.6455,8.1752,9.4414,10.4928,4.1023,4.4729,1.5578,1.5959,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd765,67,67,M,2.324,3.7549,0.3314,0.35524,0.76392,0.69628,15.1792,3.1161,2.8071,44.0019,42.9074,12.0435,12.2351,204.1758,186.1223,2.1398,3.2506,2.8086,1.7499,2.2971,31.5216,24.8942,1.5107,1.4615,3.5583,3.4907,6.2639,6.5673,4.2378,4.3463,0.07515,4.1865,2.0849,2.4787,0.38156,0.38384,4.0312,4.4643,3.8215,4.1694,1.6798,1.4409,9.61,8.1491,3.3529,3.1842,3.9353,3.9788,4.3989,4.1411,1.4298,1.3538,2.0749,1.9804,3.3198,3.3346,6.4508,6.2417,1.8973,1.8733,6.0933,5.8453,10.2323,10.5122,7.7153,7.3653,2.1988,2.2343,4.5939,4.2041,1.5906,1.5507,19.3284,18.4001,4.9289,5.7175,3.7639,3.6814,0.98811,1.1088,2.4536,2.3792,7.0436,6.6186,13.5857,13.1579,2.811,2.8953,4.0742,4.095,3.4493,2.6187,1.4656,1.5771,3.6701,4.313,9.6819,10.1946,2.5475,2.9875,2.2838,2.1434,2.2136,2.3988,9.2469,10.8421,2.421,2.2908,2.0154,2.2574,12.2882,12.271,1.8156,2.002,1.2017,1.2125,14.4863,14.1021,5.0316,5.3437,7.0785,8.4124,4.2413,3.5751,8.7907,9.8233,6.5685,7.4393,7.0417,6.3085,3.5091,3.7462,1.6071,1.7051,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd766,70,70,M,2.2566,2.7068,0.31531,0.37155,0.68649,0.6755,18.505,2.7265,2.626,47.6643,46.7113,14.6035,14.6074,229.3533,230.6618,1.9463,2.9139,2.7815,1.6972,1.9334,24.1549,22.3409,1.7119,1.6611,3.4568,3.7797,6.2951,6.2886,4.6409,4.8807,0.08744,4.9321,2.1997,2.6567,0.36072,0.35979,3.4038,4.1868,3.996,3.9214,1.7992,1.5874,10.6495,9.6728,3.1304,3.0054,3.2952,3.9159,5.0648,4.5205,1.2982,1.2057,1.7944,1.8184,4.0582,3.6497,6.2903,5.8516,2.0976,2.0001,7.213,7.0508,10.4651,9.3713,7.7523,7.5794,2.2103,2.3,4.057,4.3193,1.7473,1.6782,18.3593,18.5906,5.8092,7.0699,3.6354,3.9297,0.95246,0.93811,2.1484,1.979,7.1579,6.6771,13.5111,12.1538,3.9516,4.6205,4.5601,4.5731,3.6326,3.4061,1.4201,1.3463,3.8863,4.2633,10.4286,10.7938,2.4133,2.7969,2.3357,2.2366,1.7744,2.3681,9.877,11.2423,1.8117,2.1804,1.9255,2.0946,11.8801,11.3597,1.8172,2.1903,1.1548,1.2017,15.3682,15.5509,5.2541,5.1072,7.9077,9.2829,4.9115,4.3046,11.3106,10.2256,7.0983,7.4671,7.057,6.9046,3.5166,3.7842,1.4593,1.463,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd767,75,75,F,1.7085,1.6037,0.34399,0.33352,0.65252,0.53621,17.0633,2.6553,1.6978,34.758,36.7788,14.3518,14.6543,202.9975,197.7453,1.3813,2.6811,2.3086,0.84938,0.66018,13.7106,19.5313,1.3988,1.4771,3.1242,3.1877,5.785,5.9647,4.2355,4.3401,0.08637,3.8579,2.1788,2.4701,0.3093,0.31632,3.222,3.6304,3.3117,3.5351,1.4349,1.3607,8.2616,7.1867,2.1377,2.1827,3.5019,3.3813,3.7159,3.0535,1.3214,1.0909,1.6705,1.6246,3.2655,2.7572,5.7968,5.6822,1.7184,1.6755,5.3459,4.8097,9.5989,8.5717,6.5576,5.6364,1.7443,2.067,3.7305,3.825,1.4458,1.3901,16.2045,16.5257,4.6532,4.4411,3.2927,3.2221,0.95698,0.83313,2.1427,2.04,6.3032,5.6333,11.7952,10.0887,2.3876,2.7622,3.6552,3.4301,2.971,2.557,1.135,1.241,3.0514,3.3203,8.7364,8.282,2.5692,2.6444,2.0348,1.916,1.7999,1.9735,8.3544,8.6872,1.8465,2.0846,1.7793,1.8628,10.1731,10.6762,1.568,1.7361,1.028,1.0615,12.5938,12.2939,4.4287,4.8594,6.6741,7.5258,3.4902,2.8583,8.0776,9.2684,5.8164,5.5948,6.3232,5.9814,3.0398,3.0175,1.2209,1.2325,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd768,,,M,2.4514,2.4089,0.39339,0.42069,0.84385,0.85492,16.5496,2.6948,2.6985,44.8116,45.0829,15.0964,16.055,226.9296,224.5786,2.0899,3.3298,3.1269,0.83194,0.91392,22.4138,27.7174,1.5439,1.5028,3.3659,3.3958,7.0253,7.3654,4.4644,4.6501,0.07074,5.0864,2.3209,2.386,0.37188,0.37608,4.2935,4.4821,3.8856,4.0654,1.4291,1.4063,10.3589,9.4514,3.8947,3.3825,3.9415,4.1119,5.7872,4.8355,1.4588,1.6513,1.8245,2.0563,3.7175,3.6952,6.7149,6.5105,2.1025,2.1343,6.7589,6.1329,11.4592,9.954,8.5381,8.1669,1.8851,2.1568,4.3957,4.4695,1.6841,1.7132,19.1215,18.8358,5.5035,5.8435,3.3717,3.5735,0.89143,1.1835,2.4027,2.7925,7.2157,6.6371,13.4418,13.6704,3.329,3.4979,4.3358,4.2296,3.4978,3.3582,1.4353,1.5133,3.831,4.4716,10.7288,10.457,2.8168,3.097,2.3685,2.3789,2.0924,2.1325,10.2866,11.9325,2.0795,2.327,1.89,2.2119,12.7071,12.5606,1.9471,1.8673,1.2473,1.274,15.0319,13.3589,5.2471,5.0196,7.8322,8.2792,4.2333,3.7933,9.9654,10.2541,7.1689,7.1782,7.2374,6.6838,3.305,3.4464,1.3778,1.5241,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd769,57,57,F,1.09,1.759,0.27157,0.31534,0.77434,0.7267,14.8758,2.826,2.4267,44.2266,45.1092,12.1718,12.9864,172.6784,175.5353,0.98114,3.0233,2.8504,0.37644,0.40243,10.2828,10.1573,1.3544,1.3295,3.0487,3.1336,5.9261,6.2662,3.9964,4.2179,0.07021,4.7154,2.1563,2.5717,0.34166,0.33122,3.829,4.4173,3.3575,3.6281,1.5816,1.3767,9.083,9.3719,1.7932,2.267,3.7112,3.806,3.8567,3.5516,1.5457,1.4384,1.7945,1.7211,3.3818,3.1244,6.8917,6.3769,1.7704,1.7798,5.263,5.0406,10.1361,10.3478,6.7914,5.2629,2.2026,2.2163,4.7897,4.6865,1.6167,1.6417,16.898,17.7897,4.0023,4.7415,3.3806,3.4263,0.97367,0.94805,2.3446,2.0501,7.1016,6.4971,13.7425,13.0736,1.9228,2.3736,3.6688,3.6264,2.9823,3.2688,1.4818,1.4634,3.4599,3.9003,9.4355,9.1429,2.56,2.8218,1.9203,1.9424,1.9819,2.1131,8.2043,9.2757,2.4092,2.1983,1.8343,1.965,11.1747,11.27,1.7331,1.6919,1.0854,1.1247,12.3468,13.4099,4.854,5.045,6.903,7.5987,3.241,3.2476,9.6935,8.5418,7.0635,6.3516,7.0973,6.8856,3.1462,3.8166,1.2987,1.4045,,26,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd770,,,M,1.572,2.3519,0.34803,0.35398,0.8503,0.89401,18.4232,2.7281,1.9421,50.9428,49.4891,14.1985,14.443,207.3131,205.0193,1.33,3.4769,3.1416,0.79521,0.64834,13.6461,16.6564,1.5049,1.6013,3.2747,3.2285,6.5606,6.8129,4.4367,4.7434,0.07896,4.9801,2.452,3.0753,0.33725,0.35564,3.3679,3.8893,3.4448,3.6966,1.5597,1.4382,8.2133,7.1535,2.9077,2.9683,3.5078,3.5026,4.2648,4.0704,1.6902,1.7505,1.721,1.8599,3.315,3.1008,7.7073,7.0443,1.787,1.7039,6.6952,6.4522,12.309,11.2932,7.9171,6.9652,2.0766,2.3507,4.2386,4.5869,1.4273,1.4807,17.4708,16.8245,4.8343,6.305,3.704,3.4528,1.0098,0.95079,2.5739,2.4824,6.5434,6.2187,13.7943,14.4641,2.4321,3.2931,4.0661,4.1933,3.0249,3.1365,1.2752,1.4913,3.5927,3.8112,9.3456,10.4343,2.8667,3.145,2.0246,2.1265,1.9396,1.9332,10.3476,11.3254,2.2357,2.4944,1.8775,2.0661,11.6976,11.5614,1.7331,1.7361,1.0042,1.062,13.5211,13.4789,5.0284,4.7741,6.5474,7.854,3.7545,3.3642,9.0337,9.8944,7.3304,7.6438,7.7894,7.2682,3.2024,3.7475,1.457,1.3575,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd771,,,M,1.705,1.9622,0.37089,0.43307,0.63104,0.71834,18.5205,2.9314,3.1461,48.0518,46.55,14.851,15.1504,267.6029,265.6812,1.3861,2.9139,2.7239,0.57386,0.54447,18.0767,20.429,1.8734,1.806,3.7231,4.1054,6.4189,7.862,4.7557,5.0523,0.09281,4.9634,2.231,2.6944,0.44246,0.40369,4.1933,5.2728,4.9964,4.7795,1.7931,1.5044,10.4915,9.3894,2.9883,3.0912,4.479,4.582,4.4191,4.0228,1.3657,1.3406,1.9532,2.0626,4.0094,3.719,6.9342,7.1017,2.5485,2.3058,6.9008,6.8933,10.2882,10.1935,7.462,7.0737,2.1175,2.3084,4.9316,4.7431,2.1056,2.1069,19.1785,19.6619,4.9397,6.4996,4.1427,4.3773,0.9308,0.95883,2.486,2.3596,9.0652,7.724,13.5111,13.5444,3.3382,4.0349,3.8353,4.1868,3.1579,3.2658,1.3391,1.4462,3.9306,4.4385,10.4931,10.2765,2.66,2.884,2.4234,2.278,2.826,2.573,9.7286,10.3083,2.1371,2.6164,2.0106,2.311,10.4106,10.4154,2.2245,2.462,1.3277,1.3388,14.2328,14.9704,5.8464,5.4839,8.2705,8.8502,4.3263,3.2678,10.9218,11.1361,7.0378,7.3223,7.6678,7.0574,3.5983,4.0972,1.4878,1.7801,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd772,,,M,1.2664,1.4427,0.34523,0.34514,0.76607,0.63995,16.0896,2.5367,2.7087,42.2721,42.9952,12.0541,12.7531,183.508,180.5895,1.1253,2.9276,2.6557,0.66316,0.56191,11.6728,15.3654,1.357,1.3274,3.0985,2.9394,5.7202,5.8428,4.0467,4.1851,0.07651,4.1112,2.0712,2.4976,0.308,0.31632,3.6214,3.9603,3.5208,3.7078,1.5703,1.3804,8.7062,7.4835,2.8545,2.9999,4.0128,3.771,4.5577,4.0752,1.5505,1.3397,1.7244,1.7248,3.1353,3.3483,6.6711,6.0968,1.8708,1.9871,5.6379,5.8724,9.1167,9.1926,7.4337,6.8258,2.0158,2.1257,4.4139,4.734,1.5712,1.5314,15.9353,14.1337,4.9339,4.722,3.3153,3.6596,1.0474,1.0539,2.5617,2.538,6.9332,6.2017,11.1503,12.0337,3.0861,3.7121,3.5564,3.8858,3.0249,3.0444,1.2908,1.3574,3.6173,3.9111,9.9124,9.6351,2.5036,2.7152,2.1612,1.9411,1.8636,1.9191,9.2833,9.9433,2.0698,2.1766,1.7206,1.9149,10.8173,9.9601,1.5526,1.6495,1.1435,1.1594,12.9133,13.3816,5.0819,5.045,7.2187,7.7262,3.8853,3.8792,8.8861,9.2149,6.3734,6.1784,7.2726,6.3369,2.9755,3.2833,1.3028,1.2839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd773,66,66,M,1.7179,1.9408,0.41653,0.45566,0.88765,0.89123,18.8525,3.1087,2.9926,47.2819,46.6155,16.6983,16.2637,244.7943,243.7977,1.4746,3.5268,3.355,0.57608,0.51445,13.6461,15.3171,1.8519,1.806,4.0077,4.2219,7.4638,7.6321,4.7461,5.1317,0.09345,4.8763,2.1822,2.5755,0.4116,0.41012,4.2709,4.8562,4.5559,4.5741,1.8936,1.8003,10.91,9.2433,3.8322,3.7225,3.5981,3.4986,5.1616,4.7594,1.7414,1.7041,2.0311,2.2589,3.7029,3.5574,7.7176,7.6814,2.37,2.094,7.2009,7.1724,12.869,11.6909,9.5438,8.0287,2.415,2.7266,4.7042,5.2206,1.8856,1.8939,19.129,19.457,5.6932,7.2955,4.1567,4.1335,1.154,1.1164,2.3501,2.5701,8.0824,7.2221,16.6489,14.1533,3.0215,3.9386,4.7616,4.7157,3.7221,3.7879,1.6757,1.964,4.5414,4.4619,11.1166,10.9054,2.9925,3.3923,2.4912,2.5438,1.9963,2.3224,10.9172,11.7282,2.4739,2.5079,2.0654,2.5142,12.0314,11.7792,1.6166,2.0301,1.2918,1.2694,13.5275,13.2611,5.5548,5.6808,8.2433,8.6043,4.013,3.4659,10.0179,11.1494,6.6149,6.5463,9.5234,9.4371,3.9409,4.4704,1.3371,1.7313,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd774,66,66,F,1.8287,2.794,0.29367,0.31106,0.70782,0.72975,16.2768,2.2641,2.2964,36.777,36.6688,12.7606,12.532,186.1888,196.4083,1.6263,3.0009,2.9325,1.5747,1.3591,22.9569,21.0729,1.2905,1.2703,3.3468,3.2691,6.1763,6.7606,4.0467,4.1604,0.05839,4.7314,2.1795,2.3445,0.32983,0.3378,3.2699,3.8893,3.782,4.3948,1.5849,1.5195,9.215,8.6035,2.8566,2.6632,3.507,3.949,3.8655,3.5316,1.4113,1.4735,1.7721,1.4748,3.2104,3.3009,5.9671,5.8965,1.6804,1.7443,5.3459,5.4631,9.6194,9.4893,5.7237,6.2403,2.0158,2.2395,3.7044,3.9116,1.3857,1.6229,14.9787,14.8729,4.5748,5.4552,3.3085,3.6918,1.1529,1.012,2.687,2.5861,6.4877,6.2112,11.9962,11.2481,1.5826,2.0922,3.5715,3.4301,3.2367,2.9716,1.343,1.4125,3.4994,3.352,9.0836,8.7818,2.728,2.7311,2.4446,2.4939,2.1353,2.1062,8.9115,10.7917,1.9698,2.2402,1.8778,2.0482,10.304,11.4284,1.5956,1.7159,1.1226,1.1536,12.1472,11.7258,5.2929,5.1526,6.9928,8.2312,3.2296,2.9346,9.3173,8.3686,6.3729,6.7653,6.5985,6.5334,3.2361,3.224,1.3466,1.4517,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd775,,,F,0.92151,1.7207,0.00066,0.16158,0.5099,0.50331,9.0519,0,0.88732,32.5484,34.3648,12.6449,13.0618,61.8725,128.6959,0.88663,2.2385,2.4588,0.57092,0.68775,15.0453,16.6159,0.81757,0.8757,0.32208,0.34756,1.9192,4.1722,4.0239,4.2826,0.06336,3.8579,1.9315,2.1901,0.13799,0.29135,0.00729,0.02955,2.0098,2.4313,0.00005,0.00414,7.3881,2.2506,2.9727,2.6493,0.30663,0.00108,3.8261,3.4881,1.0283,1.0787,1.3754,0.00757,0,0,3.8349,5.2277,0.23156,0.77512,4.974,4.6545,7.4539,7.6084,5.7237,6.181,0.00098,0.74684,0,0,1.1999,0.13214,0,14.5091,4.149,4.1832,1.529,1.4103,0.9344,0.9948,2.1815,1.689,3.9657,4.7167,9.5092,7.3624,1.5521,2.4031,3.2957,3.2673,2.5538,0.00015,0.01559,0.02459,2.561,1.548,2.9491,8.1084,2.1022,2.6449,1.5261,1.7311,0.53142,1.5192,0.00167,0.00809,1.4502,1.181,1.6185,1.4588,0,0.00038,1.5154,1.6524,0.81661,0.92855,6.0263,0.00013,0,3.5064,0.20706,1.2354,3.043,2.95,0.18875,1.8453,6.2211,5.8038,5.8082,5.6944,0,2.5035,1.1214,1.0059,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd776,,,M,2.0909,2.3676,0.34803,0.38088,0.88037,0.89401,18.4101,2.7755,2.6816,50.9428,50.3785,15.5627,16.4823,250.4935,246.3704,2.0269,3.4118,3.1983,1.3285,1.0467,25.644,28.2816,1.6981,1.6217,3.4955,3.3147,6.6072,7.3519,4.8324,4.9601,0.08199,5.6373,2.4335,3.0942,0.39667,0.41794,4.2935,5.1269,4.0501,4.5754,2.1278,1.5544,10.9138,10.4839,3.9194,3.6397,4.2881,5.1241,5.8801,5.1517,1.913,1.6055,1.9208,1.9974,4.5784,4.2753,8.2928,7.8643,2.4397,2.5662,7.4532,8.0441,12.8101,11.3764,8.5372,8.4392,2.5803,2.3359,4.9078,5.3086,2.0519,2.1308,18.5999,19.4458,5.8092,7.1553,4.3027,4.5908,0.95657,0.95883,2.3546,2.0313,9.0652,7.9308,13.9705,14.2988,3.1874,3.712,4.3109,4.6446,3.2752,3.2658,1.6736,1.3778,4.2346,4.4808,10.6008,10.0906,3.2514,3.6757,2.5593,2.719,2.3058,2.5265,10.9172,11.3546,2.5118,2.6625,2.1613,2.6698,10.4106,11.8666,1.9339,2.1913,1.4417,1.4499,14.6949,15.4411,5.6305,6.1416,8.2807,9.081,4.3969,3.4122,10.9979,11.3401,7.5512,6.722,8.3799,8.0899,3.6312,3.8254,1.5318,1.9283,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd777,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd778,84,84,M,1.5742,1.6062,0.29753,0.31776,0.83649,0.73903,17.4707,2.3874,2.1832,28.2987,28.5729,15.0955,15.9417,212.7922,207.9718,1.2083,3.3738,3.0505,0.5428,0.65416,11.1642,12.0729,1.5486,1.5185,2.8452,2.6895,6.7747,6.9347,4.5049,4.8049,0.07896,4.3013,1.9664,2.5404,0.33326,0.34224,3.8971,4.1821,3.5918,3.6793,1.6622,1.2721,9.6025,7.6763,2.977,2.9299,3.6395,3.3012,4.1831,4.1712,1.6117,1.5892,1.7721,2.0122,3.2279,3.0151,7.3887,6.9637,1.7995,1.6615,5.9028,5.4306,11.4824,10.7932,7.0125,6.1769,2.1062,2.067,5.1835,4.8805,1.4764,1.4807,14.5155,14.7816,4.8904,5.2317,3.401,3.5882,0.92238,0.99768,2.5409,2.4017,6.8183,6.3862,13.7474,14.0834,2.4654,2.8563,3.7215,3.3854,3.1402,3.2517,1.356,1.2667,3.7308,4.165,9.763,9.4709,3.0705,3.1236,2.1494,2.0334,1.8433,2.1257,8.3107,11.1184,2.2056,2.2928,1.843,2.1536,11.2482,11.0545,1.6375,1.6085,0.93125,1.0552,13.2791,13.4957,4.7568,4.5418,7.2102,7.382,4.0615,3.1865,8.8843,8.8356,6.2515,6.3187,6.5284,6.3148,3.3015,3.0403,1.221,1.3028,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd779,60,60,F,0.92769,1.7185,0.3531,0.37516,0.75255,0.71849,15.4203,2.5937,2.1727,36.5847,36.591,12.6773,12.7019,206.6841,204.3795,0.83792,2.967,2.6235,0.35594,0.40315,7.1264,8.6117,1.4352,1.4044,3.3077,3.3626,6.504,7.0331,4.0316,4.2692,0.07224,3.9657,1.8688,2.1023,0.34125,0.33672,3.5309,4.161,3.5203,3.7157,1.7669,1.4445,9.622,9.422,2.7307,2.4546,3.3154,3.701,4.1376,3.9218,1.5542,1.36,1.7128,1.7798,3.9505,3.5095,6.2909,6.3199,1.9719,2.0388,6.1011,5.984,10.8354,9.9752,6.8063,6.0848,2.2858,2.3387,4.1951,4.0677,1.597,1.6823,18.1155,16.3033,4.6056,6.0443,3.6457,3.717,0.95164,0.87376,2.467,2.1715,6.8672,6.1665,13.43,13.2512,2.5444,2.8955,3.7099,3.4132,3.4593,3.463,1.4922,1.4297,3.4599,3.7284,9.0836,9.1818,2.4122,2.7676,2.0859,1.9634,1.9803,2.0925,9.2381,11.4231,2.0923,2.2947,1.8662,2.0488,10.8149,11.5403,1.6023,1.8002,1.054,1.1084,14.4338,13.6917,4.6608,5.0496,7.9005,8.5608,4.0615,3.1136,9.2164,9.556,6.5134,7.0975,6.9804,6.9503,3.372,3.6979,1.4436,1.3868,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd780,72,72,M,1.6659,1.911,0.36223,0.34799,0.73354,0.67601,16.6236,2.8349,2.7087,44.5325,43.7242,12.4688,13.4894,195.4331,187.6717,1.7597,2.9715,2.7632,0.87142,0.72752,21.5357,20.9017,1.329,1.3672,3.2405,3.2132,6.4173,6.7574,4.3203,4.5935,0.08553,4.5306,1.928,2.431,0.3662,0.38346,3.8518,4.591,3.6892,3.994,1.6977,1.3625,9.2201,8.549,3.3108,3.1002,4.1216,3.9354,4.3475,3.9855,1.4506,1.2884,2.0596,2.0427,3.2742,3.0773,6.7407,6.1208,1.8887,1.9946,5.7441,5.1608,10.1011,9.3001,7.7077,7.3258,2.1928,2.2381,4.7753,4.7063,1.6397,1.6432,17.3195,17.7897,5.1387,5.1693,3.754,3.6247,1.0169,1.2308,2.4028,2.7815,7.0534,6.5059,12.3274,11.2573,2.6285,2.9729,4.0166,3.8561,3.356,3.3721,1.5709,1.3509,3.5451,3.9871,8.8094,9.6203,2.5917,2.7031,2.2052,2.1578,1.8088,2.3713,9.6857,11.3304,2.3824,2.1861,1.9084,2.0482,11.4599,12.0531,1.7022,1.8216,1.1692,1.2271,13.5233,13.237,4.9167,5.0354,7.2698,8.9842,3.8761,3.0422,9.3873,9.1618,6.7367,6.7279,6.9707,6.2351,3.7811,3.4857,1.3243,1.3482,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd781,68,68,M,1.4677,1.6353,0.33456,0.33917,0.83563,0.81498,15.5866,2.6543,2.5483,41.9111,41.053,13.7147,13.5961,191.9809,186.1227,1.5677,3.2615,3.0423,0.79388,0.74077,17.1028,16.5609,1.2967,1.3175,3.7678,3.3777,6.2277,6.0018,4.0316,4.2826,0.08136,4.2476,1.9767,2.3922,0.34237,0.36317,4.0667,4.4607,4.025,4.2223,1.6462,1.3022,10.2123,8.5907,3.58,3.3694,4.011,4.0985,4.371,4.388,1.6681,1.6683,1.8752,1.9733,3.3062,2.9085,6.8021,6.6103,1.7791,1.7798,5.6078,5.0373,10.9298,9.4626,7.5965,6.9309,2.0261,2.1521,4.8213,4.8081,1.614,1.5982,18.2283,17.3826,5.123,5.0145,3.4535,3.5075,0.76103,1.2608,1.8906,2.8575,7.0645,6.5859,14.774,12.9639,2.5712,2.9658,3.7109,3.8561,3.238,3.5456,1.3809,1.4083,3.8666,4.2777,9.588,10.4812,2.9483,3.1042,2.0389,1.996,1.9439,2.4013,9.6499,11.6562,2.2357,2.175,1.8749,2.0026,10.4972,11.21,1.6696,2.0656,1.2437,1.3149,13.6084,14.2142,4.9428,4.9208,6.923,9.1424,3.4917,2.9305,8.8843,9.0894,6.8531,6.9515,7.1959,6.8573,3.3582,3.407,1.3987,1.3646,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd782,,,M,2.3602,2.354,0.44332,0.4622,0.84385,0.90499,20.1268,3.8859,3.6894,52.467,51.6143,15.5148,15.5338,226.9296,228.3403,1.8804,3.5737,3.3742,1.6411,0.97101,26.3421,31.4738,1.7801,1.76,3.8649,3.844,7.2765,7.6112,5.131,5.3218,0.0834,5.3326,2.4273,3.1424,0.37923,0.37882,5.2218,6.2693,4.7198,4.8058,1.8561,1.7032,12.1829,11.3323,4.1079,3.7251,4.8673,4.5057,5.9276,5.3039,1.5978,1.8365,1.9532,1.9949,4.5707,4.1805,8.6182,7.8056,2.2712,2.238,8.4875,7.2915,13.0873,11.4622,9.89,8.0698,2.3152,2.7886,5.5249,5.367,2.1622,2.0628,23.3061,24.7661,6.7632,6.5278,4.1494,4.2597,1.0121,1.1499,2.5152,3.6312,9.613,8.8695,15.1685,14.5335,3.4708,3.896,5.1121,5.2492,3.7221,3.4918,1.6825,1.652,4.683,5.4284,13.1268,13.4261,3.1553,3.4725,2.771,2.5815,2.4748,2.9346,12.6225,13.853,2.5219,2.7016,2.3648,2.5945,14.1011,15.3695,2.1289,2.0328,1.2301,1.3937,16.1595,15.8389,5.8532,6.2345,10.4337,9.8517,4.0303,3.3599,10.9754,12.2043,8.4022,8.5007,8.4258,7.8828,4.171,4.5021,1.5416,1.8144,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd783,,,F,1.6004,1.6818,0.4011,0.41978,0.70439,0.73306,15.3697,2.8969,2.7854,39.28,37.8262,11.5711,11.7522,214.4995,211.5945,1.5266,2.8518,2.8019,0.6528,0.85075,18.3746,19.9328,1.569,1.5671,3.2779,3.2638,6.1315,6.7046,4.8225,4.9601,0.08872,4.3534,1.7441,2.0238,0.36122,0.38853,3.9906,4.4443,3.7994,4.2871,1.9181,1.612,10.4467,9.6452,3.2654,2.7063,3.878,4.1787,4.4357,4.0124,1.381,1.4425,2.038,1.9358,3.8129,3.7495,6.6665,6.8859,2.2922,2.3336,6.4408,5.5669,10.8308,10.1414,7.5364,6.935,2.1953,2.3635,4.2838,4.4422,1.7839,1.8608,17.659,17.4723,4.7685,5.4804,4.2061,4.1983,0.98315,1.2595,2.145,2.6061,7.7075,6.8542,14.1938,13.2393,2.4353,3.237,4.0487,3.952,3.3648,3.2242,1.6061,1.318,3.4305,4.0438,9.7815,10.1114,2.6322,2.9555,2.3326,2.4643,2.351,2.7685,10.5882,10.8106,2.0726,2.6802,1.89,2.3513,10.5172,10.6166,2.172,2.4649,1.404,1.4896,14.8003,15.0896,5.4026,5.0555,8.0531,9.5542,3.5424,2.9222,10.6511,11.1361,8.1109,7.7066,7.6584,6.6838,3.7857,3.713,1.4725,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd784,68,68,F,1.1081,1.4588,0.41178,0.43031,0.90623,0.89213,15.8825,2.8717,2.8993,46.6868,41.5348,14.574,15.1093,234.7223,243.7703,1.0368,3.6718,3.2963,0.41045,0.32748,9.478,11.423,1.6653,1.7385,3.3666,3.3541,6.9086,6.9837,4.2464,4.4351,0.07494,4.6514,2.055,2.6837,0.38613,0.37462,4.4387,5.2078,3.9127,4.0202,1.9654,1.7295,10.7424,10.2165,3.2456,3.342,3.8627,3.9079,4.7458,4.2839,1.6807,1.6574,1.9038,1.7836,3.9295,3.6657,7.5386,7.6012,2.2427,2.4717,6.2753,7.2898,11.6498,11.562,8.1582,7.6911,2.4307,2.559,4.617,4.9895,1.9705,1.9251,19.5017,19.4553,5.6833,6.5377,4.1554,4.367,1.2922,1.2654,2.8511,2.6167,8.6305,6.9939,14.0138,14.6139,3.327,3.6229,4.14,4.2651,3.4149,2.8141,1.4083,1.5343,4.0397,4.6327,10.4226,10.6738,3.1888,3.278,2.2169,2.232,2.2044,2.3988,12.4641,11.7131,2.2067,2.6789,2.138,2.3251,12.5464,13.1373,1.792,1.9505,1.1764,1.2581,14.4163,14.6967,4.9986,5.2937,8.5548,10.0223,4.2942,3.5506,10.6511,10.9341,8.1435,7.8519,7.7616,7.8874,3.4093,3.7731,1.4217,1.5694,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd785,72,72,F,1.7667,1.7712,0.30214,0.34425,0.60861,0.55987,14.4818,2.5792,2.5209,37.3972,39.0933,12.1234,12.2415,204.1758,197.7453,2.1946,2.4167,2.0602,1.0386,1.6288,19.6009,20.4219,1.438,1.3319,2.8162,2.8551,5.4613,5.6857,3.9227,4.128,0.06877,4.5122,1.868,2.097,0.33652,0.32923,4.6707,4.7088,3.6922,3.937,1.5075,1.327,9.1163,7.9909,2.9722,2.9113,3.6154,3.4711,3.525,4.3767,1.1052,1.0504,1.8398,1.7537,3.3431,3.1244,5.5218,5.4559,1.7203,1.8174,5.5049,4.7812,8.6786,8.9819,6.5178,5.792,1.9652,2.1288,4.738,4.9177,1.6876,1.6649,16.1707,16.3618,4.2287,5.1045,3.4543,3.3728,0.95977,1.0312,2.2221,2.3519,7.5348,6.6947,10.1412,10.6368,2.2858,2.6445,3.587,3.4132,2.8518,3.2537,1.3481,1.4323,3.8343,3.884,10.2821,9.8551,2.3072,2.6232,2.2297,2.1753,1.7456,1.999,8.6032,10.6941,2.0583,2.106,1.9851,2.0408,11.0944,11.9346,1.5177,1.6726,1.071,1.1367,12.0203,12.6856,5.1854,5.0538,6.9817,6.5171,3.4931,2.7978,9.3013,9.3142,5.4535,5.1939,6.5118,6.1755,2.8088,3.407,1.2827,1.4343,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd786,38,38,F,1.3067,1.7453,0.36199,0.39515,0.8032,0.80585,16.6483,2.8349,2.8014,48.4185,45.7319,13.9034,14.0919,221.9736,222.2557,1.1484,3.1017,2.8595,0.5807,0.50392,13.2144,16.6564,1.4269,1.4848,3.1602,3.4984,5.9398,6.4486,4.0602,4.2057,0.06871,4.7338,2.2973,2.6553,0.35182,0.36399,3.4598,4.1459,3.7611,3.8591,1.5732,1.3186,8.7247,9.3786,2.8613,2.9999,3.5689,3.7872,4.2208,4.2491,1.6681,1.6131,1.8392,1.845,3.2552,2.9676,7.2433,7.1853,1.7701,1.6396,6.0143,7.2898,11.1527,11.0049,7.8756,7.2232,2.074,2.2539,4.3303,4.3498,1.5471,1.5917,16.9533,16.5803,4.2296,6.8039,3.4302,3.3495,1.0243,1.0322,2.5015,2.4786,7.6551,6.2928,14.1547,13.0863,2.7967,2.8953,4.4021,4.2388,2.9196,3.3705,1.4431,1.4614,3.8381,4.1946,9.9597,8.9795,2.8671,3.4545,2.1184,2.1522,1.8613,2.3464,9.2722,11.3081,2.2717,2.2222,2.0082,2.1378,11.2387,11.5614,1.6951,1.9593,1.0854,1.1023,11.8307,12.6877,5.4666,5.3632,7.059,9.6603,3.8308,3.2341,11.1686,10.5726,6.6149,7.1111,7.3856,7.1076,3.1721,3.7653,1.4588,1.5514,,,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd787,70,70,M,2.1179,1.814,0.37982,0.42851,0.82479,0.8298,18.0157,3.2805,3.0044,47.2617,47.7378,14.5685,15.1321,219.5922,207.3053,1.7619,3.2033,3.0496,2.4881,1.5945,26.4693,32.5525,1.6551,1.6677,3.7901,3.4106,6.7746,7.2413,4.6544,5.0235,0.08878,5.412,2.3011,2.8688,0.4116,0.41953,4.183,4.8432,4.578,4.8529,1.5749,1.5165,9.3742,9.356,3.7296,3.742,4.2485,4.8046,5.3855,6.106,1.6592,1.6483,1.9229,1.9267,3.5851,3.4626,7.7699,7.4774,1.8791,1.9302,7.4434,7.5011,12.869,12.2219,8.4174,7.895,2.0092,2.4742,5.2766,5.247,1.5318,1.7626,17.9356,17.7781,5.154,5.6858,3.63,3.9938,1.1161,1.2298,2.7163,2.7449,8.3038,6.8283,16.0082,15.1511,3.5489,3.6819,4.6581,4.451,3.322,3.1531,1.5266,1.5286,4.0449,4.4781,11.392,11.5531,2.8835,3.4545,2.7653,2.855,2.3058,2.6676,11.3717,13.0931,2.2032,2.3726,2.4329,2.4694,12.7136,12.4278,1.8124,2.0005,1.3351,1.4482,14.0826,14.7414,5.7917,5.1752,8.6764,8.8607,4.3393,3.5177,10.5549,11.0686,8.1165,8.349,8.6143,7.8026,3.7288,3.6306,1.6618,1.6798,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd788,75,75,M,1.1357,1.2667,0.37711,0.47086,0.85271,0.93558,17.0687,2.8092,2.6904,39.7325,38.1988,13.1626,13.6368,182.6154,181.6168,1.0368,3.2688,2.8585,0.35758,0.35349,7.1348,8.9561,1.4654,1.453,3.6399,3.7361,6.7055,6.8109,4.1745,4.4331,0.07935,3.7562,1.8414,2.2808,0.38429,0.3918,3.8443,4.4341,4.0025,4.1057,1.6747,1.526,7.9801,8.8291,3.1924,2.7603,3.6724,4.1139,4.1389,4.0441,1.4659,1.7455,1.9894,1.9305,3.3082,3.2293,6.6938,6.1466,2.0818,2.041,6.5625,6.6913,11.1388,9.4626,7.457,7.0737,2.1234,2.3635,4.3975,4.597,1.8351,1.7927,19.4878,18.46,5.5586,6.9267,3.8306,4.0194,0.9992,1.0646,2.4732,2.5911,7.6655,6.1601,13.2849,12.2667,3.2164,3.2421,3.967,3.7679,3.3518,3.1812,1.6273,1.4831,3.5927,3.9031,9.6531,9.8724,2.8322,3.1626,2.4071,2.5846,2.0085,2.1631,9.4488,12.1018,2.2844,2.5758,2.0825,2.6109,12.8154,13.1281,1.7638,1.8636,0.91095,1.0201,13.5181,13.1667,5.0806,5.023,7.9324,9.1592,4.0746,3.4762,9.228,8.9908,6.7367,6.0908,6.6344,6.2847,3.479,3.7364,1.5695,1.6449,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd789,67,67,M,2.324,2.9245,0.37308,0.40169,0.85597,0.92421,19.4224,2.6583,2.6985,45.4788,46.4712,14.6805,15.6887,218.3786,219.696,1.9461,3.4678,3.1706,0.83194,0.87113,20.9617,24.4308,1.5748,1.5812,3.5115,3.4382,6.0964,6.6066,4.7321,4.8045,0.09549,4.8141,2.4087,2.7387,0.39874,0.38667,4.3085,4.5795,4.2998,4.2489,1.7778,1.6258,10.3104,8.6968,2.8367,2.8047,4.0779,4.3187,4.648,4.2478,1.4602,1.7568,1.9111,1.9185,3.5208,3.0876,6.8605,6.9149,1.9915,2.2165,6.6582,6.3345,11.0511,10.8271,7.8651,7.39,2.3363,2.3745,4.5711,4.9116,1.7046,1.7279,18.2342,18.2664,4.8301,6.4312,3.8145,4.3392,0.90043,0.99913,2.2057,2.2115,7.7004,6.4523,14.0121,12.1207,3.0193,3.0161,4.5195,4.2907,3.8443,3.7636,1.6043,1.4014,4.3285,4.8769,10.5983,10.9108,2.9268,3.1201,2.6472,2.4977,2.2924,2.4531,8.6843,10.0361,2.2252,2.5627,2.2957,2.4728,11.0874,11.3461,1.9259,2.1118,1.1721,1.2343,14.2656,14.9704,5.0335,4.9874,7.1324,9.169,4.2064,3.7136,10.8623,11.0443,7.3975,7.3592,7.4054,7.7587,4.3022,3.9507,1.6713,1.7926,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd790,,,M,1.7692,2.6779,0.3548,0.39298,0.74861,0.76914,19.2789,2.8156,2.1129,46.7108,46.3508,15.3319,15.2435,231.2623,225.3591,1.3795,3.1254,2.9098,0.74448,0.64834,16.0833,16.0797,1.531,1.5949,3.3925,3.2285,6.1315,6.4279,4.5176,4.8226,0.07879,4.843,2.2394,2.8517,0.38263,0.38368,4.1933,4.9016,3.6892,3.9609,1.7418,1.492,9.7901,8.8246,3.2184,3.3618,3.5855,3.7713,3.924,4.114,1.3582,1.4084,1.694,1.9725,3.7092,3.3957,7.2561,6.9971,2.0676,2.1155,7.044,6.4095,11.4824,11.3663,8.3547,7.706,2.2048,2.2861,4.7105,4.5129,1.8225,1.9573,19.4435,18.6366,4.822,5.9727,3.8381,3.8473,1.1779,0.87729,2.8354,2.185,8.0737,7.1143,14.4703,14.4591,3.329,3.6257,4.4969,4.5183,2.8161,3.1692,1.4161,1.4658,3.6314,4.1078,9.1747,10.1186,2.7925,3.0222,2.1191,2.3505,1.7536,1.999,9.8458,10.8637,2.309,2.559,2.004,2.3093,11.3873,11.7937,1.3661,1.6744,1.2363,1.3015,14.2843,14.2374,5.1473,5.3351,7.7578,8.3501,4.5928,3.8792,9.3513,10.3875,7.1485,7.1782,6.5782,6.6487,2.9482,3.7323,1.2827,1.3766,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd791,71,71,F,1.0318,1.9964,0.38153,0.43293,0.93717,0.92369,16.4958,2.9099,3.0989,48.291,45.5465,12.7423,12.6339,212.7231,208.4765,1.0689,3.6718,3.3065,0.62167,0.36724,12.0578,12.59,1.4535,1.4302,3.5193,3.605,7.4431,7.4648,4.2425,4.4057,0.0823,4.4305,2.2473,2.7068,0.37903,0.36376,4.3436,4.4821,3.8871,3.9611,1.6987,1.5729,8.9774,8.8037,2.6469,2.7017,3.9048,4.0858,4.9072,4.9089,1.7756,1.6861,1.9335,1.9305,3.5829,3.4439,6.4928,6.6353,1.8289,1.9731,6.071,6.2477,10.5798,10.716,7.3228,7.3066,2.0071,2.3807,4.738,4.64,1.6585,1.7001,17.2619,17.4151,4.4945,5.8088,3.699,3.8671,1.0147,1.1025,2.3241,2.756,7.3909,7.1136,13.7507,13.6104,2.9064,3.2318,3.9044,4.0073,4.1054,3.2415,1.4168,1.6183,3.5002,4.0273,10.1893,10.5184,3.0069,3.3844,2.2934,2.1061,2.2136,2.1323,9.5891,11.3752,2.3719,2.568,1.9189,1.9355,12.5547,12.7961,1.8612,1.9589,1.1983,1.2432,15.0565,15.0623,5.6586,5.4624,6.8468,8.3562,4.6134,3.7508,9.6495,10.5995,7.2331,7.3936,7.2326,7.629,3.33,3.7391,1.3748,1.4071,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd792,70,70,M,1.9853,2.4115,0.43308,0.45413,0.92387,0.94418,17.4475,3.5495,3.2867,47.2617,46.647,13.857,14.0666,209.5972,198.6874,1.8746,3.4863,3.2914,0.831,0.80271,31.0526,28.2816,1.3918,1.3603,3.8883,3.7987,6.7401,7.2447,4.4045,4.7452,0.06422,4.7631,2.3474,2.7688,0.37923,0.388,4.5751,4.7217,4.2546,4.5723,1.6088,1.526,8.7883,8.015,3.5571,3.7731,4.0572,4.1651,5.1278,4.9364,1.7652,1.953,1.8904,1.946,3.5851,3.4382,8.1492,7.714,1.8545,1.969,6.9008,7.0976,13.3156,13.2035,8.9198,7.4859,2.0071,2.2966,4.6356,4.7261,1.6093,1.6204,18.981,19.1402,4.9671,5.9594,3.4902,3.6918,1.154,1.1846,2.7402,2.6742,7.8118,7.2392,16.1744,15.4631,3.6274,4.4832,4.5938,4.2157,3.316,3.4076,1.4431,1.345,4.0325,4.472,11.5494,11.6858,3.0706,3.281,2.3244,2.3972,1.9877,2.3958,9.1766,11.2548,2.1878,2.1443,2.2995,1.8964,12.3388,12.5849,1.8628,1.8922,1.1412,1.225,15.3155,15.2695,4.9632,5.0538,7.2241,8.0917,4.5039,3.9706,11.3807,11.8903,7.5918,7.7407,8.5754,8.5867,3.1809,3.8888,1.5061,1.4067,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd793,63,63,F,1.3169,1.4415,0.33749,0.36871,0.72891,0.78381,15.3515,2.8802,2.7872,40.2222,41.9286,12.4128,12.711,221.3739,218.4875,0.99997,2.735,2.6776,0.35781,0.34422,7.1264,8.6117,1.4407,1.3995,3.0935,2.8827,6.3437,6.6266,3.8742,4.0614,0.07686,4.0997,2.0515,2.0971,0.35576,0.34531,3.9906,4.4443,3.3778,3.5566,1.7009,1.5665,10.3895,9.1054,2.8804,2.7872,3.6842,3.7975,4.0174,4.2088,1.4346,1.5264,1.7108,1.8246,3.4031,2.9356,5.9671,6.3211,2.0941,2.0114,6.0311,6.1595,8.7174,9.542,7.1912,6.9145,2.12,2.307,4.5939,5.0252,1.7633,1.7602,16.3461,17.8216,5.249,6.2887,3.843,3.8823,0.96521,1.0004,2.2491,2.3509,7.4214,6.6826,10.0789,10.4941,2.4613,3.2169,3.9841,3.6651,2.9641,3.1416,1.4629,1.2784,3.5992,3.9031,9.9622,9.925,2.3867,2.7751,2.0016,1.8798,1.8025,2.187,11.2679,13.3253,2.1817,2.2485,1.9056,1.9312,12.0903,12.3532,1.6462,1.7159,1.1305,1.1,12.5015,12.6856,5.2152,5.5213,8.4644,9.4761,3.9162,3.1956,10.1367,11.1225,5.4535,5.7279,6.7056,6.7899,2.8794,3.5311,1.2809,1.4327,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd794,62,62,M,1.0035,2.013,0.35485,0.39098,0.87013,0.86678,16.2223,2.765,2.5936,41.9111,41.5099,12.8616,12.6969,187.5946,186.1227,1.0689,3.2016,3.0738,0.76905,0.75845,13.5658,16.3416,1.4045,1.3603,3.3107,3.402,7.159,7.4497,4.3203,4.5859,0.07494,4.9095,2.1792,2.3533,0.36866,0.38207,3.6289,4.2164,3.6892,3.9433,1.8107,1.4445,9.3369,8.4609,3.312,3.0768,3.7866,4.138,4.3664,4.1133,1.7055,1.5507,1.7979,1.8144,3.6906,3.285,6.702,6.7637,2.1424,2.0388,5.9165,5.6651,10.9634,10.1658,8.0228,7.3139,2.4733,2.1182,4.2544,4.6949,1.7718,1.6402,18.0849,17.2491,4.978,5.555,3.9069,3.7339,0.90043,1.1074,2.3443,2.4012,7.1431,6.3584,13.7493,12.7032,2.5745,3.2646,4.0742,4.2322,3.0912,3.5236,1.5267,1.425,3.5864,3.8132,9.1747,9.3243,2.8883,3.0421,1.9936,1.9863,1.9439,2.2866,9.4994,11.8537,2.5605,2.2124,1.7949,1.9759,11.4526,10.7097,1.6503,1.8972,1.1656,1.2287,14.225,14.6553,5.016,4.9639,7.0275,8.8807,3.5488,2.8841,8.8843,8.4851,6.656,7.1111,7.8442,7.0749,2.9698,3.3935,1.4022,1.3835,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd795,73,73,M,1.7782,1.9797,0.4732,0.52148,0.9569,0.94418,18.0598,3.2651,3.2469,50.2053,49.5695,15.1601,15.5227,251.5132,253.2682,1.6015,3.0267,2.7458,0.67856,0.58997,15.7665,20.4611,1.7266,1.7644,4.0675,4.2219,7.1373,7.252,4.6366,5.0235,0.09316,5.4473,2.2979,2.8039,0.40196,0.41953,4.5381,4.7719,3.8379,4.2871,1.9736,1.8123,11.7269,10.1609,3.8376,3.7808,4.3541,4.7194,5.5132,5.4337,1.9382,1.8626,1.9862,2.2199,3.7899,3.8607,7.9899,8.1521,2.3994,2.1016,7.3727,6.0727,12.5056,12.6099,9.1343,8.509,2.5382,2.8413,4.7472,5.0112,1.9822,2.0408,18.5704,19.1663,6.1064,7.4299,4.1413,4.0524,1.3035,1.4731,2.9956,3.2996,7.8857,7.3574,15.2482,15.24,3.2264,3.921,5.0772,5.1101,4.0695,3.6231,1.6736,1.8071,4.5744,5.2682,11.9513,12.082,3.218,3.6757,2.1406,2.1169,2.3698,2.8163,10.979,12.6904,2.7026,2.6346,2.0475,2.3425,13.2394,13.5132,2.008,2.5498,1.2562,1.2789,14.5903,16.0232,5.3815,5.5847,8.702,9.0617,4.9162,3.9216,11.6447,12.1876,7.9287,7.7847,8.7938,8.1909,3.8903,4.4701,1.518,1.814,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd796,72,72,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd797,65,65,M,1.4694,1.5382,0.35587,0.39092,0.80181,0.764,16.6236,2.8802,2.8869,42.7345,43.3698,12.1684,12.5481,183.5008,175.5307,1.3297,3.131,2.8264,0.68417,0.72341,14.9498,18.9404,1.357,1.3431,3.5052,3.6003,5.8286,6.0637,4.0467,4.2817,0.08755,4.1112,1.8995,2.2376,0.37755,0.38098,3.9944,4.4443,3.8771,3.708,1.8072,1.4945,9.0756,6.9952,2.8047,2.4821,3.6569,3.7782,3.8762,4.0097,1.5072,1.4384,1.8298,1.7573,3.579,3.595,7.337,7.2824,2.2207,2.2212,5.7668,5.7707,11.1322,10.9339,7.2789,6.8615,2.3641,2.5376,4.491,4.734,1.8465,1.9557,16.9497,18.4741,4.634,4.6717,3.9069,3.9735,1.1256,0.99431,2.8719,2.3545,7.4045,6.9014,14.7741,13.0863,2.7174,2.959,3.5627,3.9987,3.0754,3.1812,1.4083,1.4613,3.9639,4.3404,10.1621,10.1122,2.9314,3.0087,2.3773,2.4479,1.7598,2.0229,10.5362,10.2494,2.4037,2.6018,2.0711,2.3109,11.6578,11.7583,1.4817,1.8025,1.2301,1.2992,13.9848,12.9276,4.8735,5.2827,7.7578,7.4442,3.8457,3.0755,8.6424,8.8356,6.7924,6.5064,6.9409,6.9161,2.9657,3.6702,1.353,1.4197,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd798,67,67,F,2.1921,3.4207,0.35333,0.39382,0.85869,0.87834,16.9978,2.8156,2.5116,41.8076,42.4788,13.6586,13.9885,216.9418,215.3137,1.8762,3.3065,3.1951,1.0738,1.0131,21.2596,21.7721,1.5581,1.5028,3.2747,3.402,6.0941,6.2616,4.4608,4.6501,0.07945,5.4817,2.3083,2.587,0.41673,0.41245,4.8125,5.4008,4.1919,4.5297,2.0347,1.712,9.8315,8.6029,3.1923,3.2706,3.9775,4.2067,4.1389,4.4238,1.638,1.7304,2.0694,2.107,3.97,3.4294,7.1346,7.0831,1.9564,1.951,6.3904,5.8456,10.83,10.7645,7.8192,6.9976,2.5275,2.4569,5.1739,5.5882,1.8043,1.7827,18.7008,20.4507,5.5448,5.3515,4.23,4.0173,1.1424,1.0588,2.6776,2.7089,8.6305,7.5323,13.6382,14.5989,2.5289,3.3048,3.9853,4.2914,3.7704,3.442,1.7189,1.6574,3.8698,4.5049,10.2469,12.2321,2.9145,3.2914,2.4688,2.6283,2.3606,2.4724,9.7635,10.5547,2.6442,2.4864,2.1272,2.4642,11.1964,12.0505,1.9788,2.0854,1.2551,1.2789,15.9285,16.1059,5.8484,5.7856,8.3674,8.4672,3.5453,3.2747,9.6761,10.121,7.5884,7.1608,7.9132,7.4704,4.1771,4.1558,1.404,1.7581,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd799,70,70,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd800,70,70,M,1.9853,2.5945,0.29011,0.36604,0.77114,0.81387,16.7766,2.1408,2.1251,41.0899,41.3308,13.6647,14.0153,184.7169,192.4498,2.0004,2.8868,3.0606,2.1389,2.2042,24.6327,29.7356,1.5705,1.5101,2.812,2.7183,6.2639,6.7606,4.3457,4.5443,0.06455,4.4674,1.9767,2.1681,0.37607,0.3793,4.0314,4.6224,3.6452,3.839,1.6226,1.3762,9.0055,7.9235,3.5365,3.6789,3.3643,3.6307,4.661,4.5617,1.3855,1.4961,1.7346,1.7313,3.2742,3.0698,6.6833,6.4074,1.804,1.8851,6.1681,5.7929,10.2183,10.0583,8.2625,7.9692,2.0839,2.2274,4.2768,4.4549,1.5878,1.5626,15.9353,15.7639,4.5922,5.6453,3.4517,3.7108,0.95377,0.88686,2.0228,2.0853,7.2669,6.4523,12.1609,11.7685,3.0755,3.0161,4.0742,4.6831,3.2383,3.2241,1.515,1.3588,3.5234,4.313,9.8346,10.0704,2.6322,2.7938,2.2326,2.2421,2.0579,2.4538,8.7033,9.0151,2.2645,2.2497,1.8764,2.0771,10.5223,10.1415,1.8786,2.4288,1.2626,1.2987,13.2127,13.9064,4.7634,4.7787,7.2121,8.151,4.5785,3.1517,8.7907,10.0653,6.3706,6.8627,6.9438,6.7432,3.7283,3.5338,1.5549,1.6896,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd801,75,75,F,1.8862,1.3802,0.41783,0.45566,0.69111,0.75446,18.5757,3.5829,3.0601,44.1127,43.0669,13.7417,14.203,242.5288,243.6928,1.5971,2.8518,2.8656,0.4896,0.46211,18.6268,21.5958,1.682,1.6861,3.9988,4.2565,7.3845,7.4805,4.8612,5.173,0.09316,4.8811,2.1492,2.584,0.4332,0.42533,4.1324,5.0062,4.2608,4.2558,1.9153,1.874,10.1158,9.5056,3.2468,2.9772,4.0641,4.6635,4.7726,4.5407,1.4105,1.5106,2.0685,1.9671,4.1116,3.9049,6.9815,7.3443,2.4681,2.3994,7.7853,7.0318,10.6118,9.1474,8.2699,7.5703,2.5695,2.9299,4.4718,4.8397,1.9531,1.9912,20.0624,20.0068,5.8369,6.459,4.4105,4.5558,1.2138,1.1694,2.5709,2.4756,8.4927,7.5175,14.2384,12.0891,3.4373,3.7749,4.3781,4.7097,3.143,3.3622,1.5422,1.7809,4.0044,4.4419,10.9995,10.8883,2.662,2.9561,2.3799,2.2733,2.4669,2.6416,10.3956,10.9446,2.9609,3.0354,2.0367,2.2698,13.703,13.2247,2.2141,2.2449,1.2293,1.3398,15.2906,15.1376,6.055,5.4671,8.5402,8.6411,4.755,3.9216,8.8582,10.1458,8.2144,7.5533,6.6521,7.0184,3.5716,4.4614,1.518,1.885,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd802,70,70,M,2.5682,2.5057,0.44772,0.47721,0.9567,0.94418,19.8097,3.2616,3.2469,51.6551,52.9312,16.5035,16.2637,252.4425,247.8442,1.967,3.2723,3.011,0.9969,1.1271,23.4697,36.4723,1.7408,1.7807,3.6721,3.9576,7.3845,7.6489,4.898,5.3312,0.06528,5.2348,2.5519,3.0748,0.40149,0.41953,5.3921,6.2693,4.5078,4.6844,1.9744,1.8502,14.1407,10.7841,4.1079,3.6084,4.9595,4.5057,5.5132,5.1041,1.9785,1.9829,2.2203,1.9878,4.4508,4.1818,8.2928,7.929,2.2712,2.238,7.9388,7.3117,12.7852,11.4622,9.3788,8.509,2.5104,2.6036,5.682,5.367,1.9128,1.9469,23.2146,23.2876,6.8947,7.6079,4.3326,4.2153,1.2171,1.1499,2.7102,2.9781,8.5891,8.2813,14.6469,13.8944,3.0519,4.0652,5.0772,5.2773,3.9781,3.7082,1.6039,1.5012,4.7803,5.6503,12.0986,12.8934,3.3322,3.5232,2.771,2.6622,2.5551,2.6774,12.1475,12.8633,2.6274,2.7294,2.5206,2.7415,15.5797,15.5381,2.3089,2.1388,1.3445,1.4542,18.732,17.9714,5.7327,6.0819,9.6912,9.7432,4.27,3.7773,11.3379,11.9809,9.4883,7.8519,8.8066,8.0227,3.7104,4.0978,1.6713,1.6449,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd803,71,71,M,1.1563,2.1065,0.3977,0.41591,0.7548,0.74553,18.6779,3.4389,3.3859,46.5743,46.7941,15.0903,15.5261,212.2345,206.891,1.2058,2.9796,2.6744,0.45092,0.46058,8.2125,12.4534,1.6551,1.6677,3.8725,4.1054,7.4702,7.3533,4.9413,5.1048,0.07497,4.4861,2.2798,2.5807,0.35063,0.3749,4.105,4.8586,3.9055,4.144,1.8904,1.5935,10.944,9.7323,3.1299,3.0054,4.3541,3.9212,4.5785,4.5908,1.601,1.4712,1.895,1.9555,3.8015,3.4047,7.2356,7.7366,1.9719,2.0981,6.0251,6.7482,11.0364,10.8291,8.111,7.0238,2.3611,2.4261,4.7913,5.473,1.7385,1.7545,19.1785,17.8962,4.8922,6.3818,4.0725,4.1335,1.0288,1.1615,2.5254,2.5841,8.083,7.372,14.4871,13.3618,2.5498,3.392,4.0314,4.2453,3.2812,3.5007,1.5422,1.6168,4.3787,4.6282,11.0041,11.2471,2.8073,2.9231,2.206,2.3604,2.415,2.5405,10.9578,11.3546,2.231,2.4928,1.9562,2.341,11.8337,11.0059,2.013,2.1021,1.0802,1.0622,14.8198,16.6941,5.3727,5.4263,8.3254,10.0674,5.0079,4.0134,11.0128,11.7028,8.3095,7.3659,7.404,7.1076,3.4781,4.0344,1.4087,1.7661,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd804,73,73,F,0.95053,1.4216,0.41178,0.44194,0.75901,0.72415,17.0278,3.1158,3.1553,41.8136,42.8051,13.2066,13.5003,207.1482,208.2046,1.2298,3.2123,2.8348,0.49501,0.46211,13.2144,13.1091,1.427,1.41,3.5562,3.8377,6.3432,6.5896,4.3567,4.5859,0.07385,4.6708,2.1428,2.9126,0.38613,0.38384,3.494,4.5408,3.8199,4.0966,1.6038,1.5455,9.2757,7.3551,2.8977,2.7817,3.667,3.767,4.429,4.0038,1.6085,1.5256,1.7588,1.8092,3.1526,3.0811,7.3344,7.1181,1.7872,1.8384,6.3114,5.5182,12.728,12.1495,7.4874,6.7447,2.2026,2.2721,4.2587,4.2669,1.5856,1.5507,18.9184,18.3019,4.6266,5.2654,3.3141,3.5057,1.423,1.0197,3.3463,2.7079,7.3804,6.5001,15.1999,14.59,2.8358,2.9587,4.0656,4.0574,3.179,3.286,1.562,1.3237,3.9087,3.9558,10.1163,10.9135,2.9202,3.0236,2.2934,2.3771,1.874,2.9146,9.1609,9.8247,2.1149,2.2905,2.1026,2.2569,12.189,11.2389,1.6764,2.3233,1.1812,1.2436,12.0086,13.9965,5.2666,4.8268,7.3309,7.9887,3.9919,3.5751,11.2632,10.7229,6.807,7.5387,8.4258,8.2217,3.4372,3.4857,1.426,1.5738,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd805,78,78,F,2.2232,2.2575,0.25479,0.30203,0.77549,0.69934,13.4202,2.8878,2.5005,41.4208,39.5261,11.4024,11.7876,171.7744,167.2846,1.6755,3.1777,2.8508,0.99284,1.0471,22.6963,21.5607,1.3894,1.3178,3.23,3.4568,5.5835,5.8002,4.0622,4.1428,0.05839,4.4656,2.0122,2.6174,0.32983,0.32201,3.6304,3.7698,3.471,3.5396,1.5145,1.2167,8.2003,7.7738,3.1261,3.1679,3.4278,3.3553,4.1616,3.9989,1.4789,1.3728,1.6705,1.8599,2.9935,2.8852,6.6455,6.1482,1.6976,1.7242,5.3701,5.1095,11.0778,10.4329,7.3984,6.7154,1.9992,1.8248,3.881,4.1817,1.4458,1.3406,15.3894,14.8729,4.7128,5.3886,3.3093,3.2354,0.75182,1.1393,1.8727,2.755,6.4771,5.5572,12.6504,11.4825,2.817,3.0587,3.9066,3.5787,3.2949,3.1509,1.3346,1.1783,3.3794,3.7529,9.4847,9.5752,2.6424,2.8801,1.8934,1.9134,2.0846,2.0774,8.8546,9.5542,1.9955,2.1766,1.7975,2.0444,10.8766,9.8087,1.7054,1.8889,0.97945,0.99597,11.2428,11.143,3.6495,4.3949,6.9414,6.9655,3.7716,2.9174,9.6322,8.6697,6.3706,6.6344,6.5243,6.5267,2.8801,2.8594,1.1696,1.3481,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd806,66,66,M,1.251,1.7871,0.34632,0.36013,0.76607,0.75649,16.2223,2.4421,2.4052,41.9111,40.3972,13.0437,14.0561,222.8878,218.4875,1.1402,3.2123,2.9242,0.45832,0.41701,10.8911,11.9061,1.4582,1.4878,3.1779,3.2548,6.1603,6.2285,4.2851,4.4306,0.07799,4.0555,1.9304,2.2376,0.33859,0.35654,3.9057,4.3819,4.1263,4.5698,1.5505,1.2267,10.1877,10.3806,2.7924,2.7963,3.9002,3.865,4.0486,3.665,1.504,1.4976,2.1704,2.2036,3.325,3.1803,6.802,6.4713,1.9542,1.9202,6.1974,6.2167,11.1388,10.0482,6.5539,6.416,2.084,2.0197,4.1792,4.1746,1.6742,1.6576,15.2511,15.7862,4.8922,6.9135,3.6053,3.264,1.1437,0.96672,2.3706,2.0826,6.9324,6.4971,14.7577,13.5824,2.3955,3.2169,3.8619,3.8194,3.0718,2.9576,1.5482,1.3618,3.9639,4.4101,9.8153,9.7247,2.6174,2.7641,2.5382,2.5786,2.3869,2.7322,9.398,10.5547,2.3405,2.3944,2.0971,2.3584,11.6645,11.9987,2.0737,2.0854,1.0998,1.2379,13.1769,13.206,5.016,4.9117,7.6249,8.5595,3.3701,3.4955,9.9435,10.2392,7.09,6.6392,7.0546,6.4441,3.4653,3.564,1.511,1.5103,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd807,78,78,M,2.2182,2.1866,0.32095,0.38052,0.69146,0.70985,16.9104,2.5007,2.5484,44.1237,43.0669,14.6255,15.0998,217.7609,211.5945,1.651,3.2062,2.8349,1.4125,0.92777,14.2137,17.9963,1.4824,1.501,3.0378,3.2567,6.3181,6.641,4.1359,4.2444,0.06634,4.3788,1.9909,2.3794,0.30745,0.35084,3.614,3.6764,3.353,3.5203,1.6024,1.312,8.3796,7.9803,3.1958,3.0649,3.0951,3.3902,4.1039,4.5886,1.3279,1.1769,1.634,1.5836,3.4709,3.3375,6.3165,6.3211,1.626,1.6765,5.7367,6.2311,9.9493,10.0363,6.9306,6.2984,1.9799,2.0567,4.0824,4.3926,1.3793,1.5183,16.1205,15.8475,4.7725,6.8442,3.2048,3.3918,0.90939,1.0472,2.054,2.2267,6.6262,6.1349,12.7591,11.9541,2.8122,3.0453,3.8372,3.4578,3.1839,2.8132,1.3346,1.2964,3.6512,3.9871,9.6417,9.6351,2.5263,2.6462,1.994,1.9934,1.9454,1.7981,9.6585,10.3562,1.9962,2.1403,1.8475,2.0026,11.8801,11.3743,1.8172,1.6524,0.98098,1.0087,13.9343,13.2611,4.385,4.3894,6.1646,7.2704,3.8214,2.9174,8.7626,9.8845,6.212,6.329,6.2989,6.3182,3.2322,3.082,1.2277,1.1861,,29,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd808,,,F,1.5218,1.8949,0.31844,0.35398,0.60361,0.66216,16.4399,2.3829,2.2554,42.3023,42.1947,13.3855,13.5134,192.0432,190.6344,1.5677,2.5334,2.654,1.0092,1.3233,13.6285,16.1431,1.4005,1.3958,2.8397,2.7899,6.0479,6.7249,4.0924,4.2973,0.07065,4.0424,2.0418,2.1701,0.30933,0.33346,3.0647,3.5518,3.0838,3.0507,1.4232,1.2674,8.3539,7.5833,3.0178,2.7067,3.4983,3.3553,4.4989,3.6652,1.2567,1.2692,1.7031,1.7092,3.0947,2.7572,5.6571,5.9975,1.771,1.8174,5.5892,5.9031,8.9138,9.4202,7.3677,6.8281,1.8516,1.9786,3.7048,4.224,1.4825,1.4795,16.2163,15.5558,4.3704,4.4411,2.9565,3.4097,0.92958,0.87763,2.2873,2.1757,6.5291,5.7755,11.987,10.9002,2.2418,2.8772,3.5564,3.8126,2.8627,2.7057,1.2925,1.3436,3.2253,3.5591,9.9978,8.0475,2.2952,2.6542,1.8795,1.9431,2.1353,2.2219,7.7493,9.1597,2.0628,1.9514,1.7118,1.756,9.0997,9.9496,1.9249,1.7894,0.97945,1.0621,12.5572,13.2426,4.4581,4.6129,6.3937,8.3427,3.9158,2.5859,10.1534,11.05,6.6551,6.9838,6.5751,6.306,2.9951,3.564,1.4654,1.2821,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd809,76,76,M,2.1555,2.0586,0.36748,0.40836,0.85597,0.7873,18.099,3.2752,2.7766,46.439,46.7941,14.4232,15.2271,226.2902,216.6957,1.7044,3.52,3.1809,0.6202,0.51638,15.7665,21.454,1.5413,1.604,4.0283,4.2169,6.0964,6.3966,4.5814,4.7728,0.07026,5.2801,2.2816,2.7361,0.40169,0.39996,4.497,4.7927,4.8339,5.1585,1.6716,1.61,9.7824,9.7867,2.9376,2.8335,3.907,3.9788,3.8024,3.7881,1.6261,1.5151,2.1033,2.0697,3.801,3.5809,7.0278,6.542,2.206,2.1961,5.7465,6.0413,11.4592,9.9612,7.5401,7.1401,2.1145,2.2613,4.6893,4.7032,1.7718,1.8114,18.6379,18.6722,5.1017,5.9067,3.9369,4.2283,0.96542,1.0912,2.2466,2.5839,7.4354,6.8637,14.3491,13.6802,3.1677,3.47,3.9653,3.9476,3.6352,3.5668,1.4048,1.433,4.0996,4.4885,10.3332,10.3429,2.8232,3.0225,2.6455,2.855,2.1997,2.2704,9.5323,10.9738,2.3449,2.3237,2.2957,2.499,12.4119,12.8509,1.6382,1.976,1.2933,1.2774,14.6309,14.7676,5.0316,5.1668,7.0021,8.9471,3.9083,3.4278,9.7846,10.611,7.1187,6.8181,6.8234,7.2224,3.4275,3.6979,1.5637,1.8672,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd810,74,74,M,2.6836,2.4934,0.44772,0.47721,0.94335,0.9122,19.8097,3.2616,3.2469,56.0955,56.7564,16.1786,15.7609,284.0418,294.1752,2.4679,3.2723,2.9317,1.4552,1.6117,31.9599,31.1066,1.9924,1.9859,4.8227,5.3069,7.3684,8.0711,4.9581,5.1393,0.08187,5.3382,2.6479,3.1238,0.4509,0.43215,6.2992,6.5349,4.7025,4.6396,2.0829,1.7596,11.3124,9.3175,3.7575,3.255,4.7146,5.0423,5.9276,5.0088,1.9067,1.8925,2.4361,2.3948,4.3523,4.1818,8.7955,8.5002,2.3084,2.4791,6.4488,6.2111,13.3156,13.2035,9.89,7.3795,2.5661,2.3277,5.7806,5.7041,2.1684,2.2302,21.001,20.6639,5.4599,6.3715,4.3291,4.4773,1.1752,1.3127,2.6736,2.9477,9.1937,7.9306,17.1263,15.8939,3.0431,3.3266,4.7004,4.8159,4.0074,4.7752,1.7436,1.3778,4.2617,4.7152,11.2934,11.5563,3.425,3.3253,2.602,2.7492,2.7622,2.7762,10.1849,12.6483,2.6093,2.6807,2.519,2.5133,12.2152,12.7845,2.3606,2.48,1.4417,1.5153,15.6749,15.2985,6.0073,5.7415,7.8592,8.5741,4.0864,3.3894,10.6237,10.4451,8.932,7.5284,8.6714,8.6,4.0003,3.8888,2.0162,1.9208,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd811,38,38,M,1.7123,1.6168,0.46431,0.48466,0.96734,0.98753,17.8395,3.273,3.179,46.6652,44.7829,14.6129,15.1321,257.0058,247.3031,3.0552,3.7437,3.3285,0.70921,0.60686,34.3032,37.4298,1.911,1.8616,4.0435,4.1447,7.6391,7.8547,4.7595,5.031,0.08496,5.2607,2.4095,2.3533,0.44294,0.44719,5.7576,5.2847,4.8522,5.24,2.3092,1.8069,11.3124,10.4839,3.1923,2.8318,4.8673,5.0758,5.3221,5.1041,1.931,1.8927,2.4494,2.6153,5.8776,4.036,8.5592,7.9513,2.37,2.5662,8.7332,7.4188,13.3726,13.213,8.7216,8.5248,2.8403,3.027,5.7806,5.4811,2.1684,2.3605,22.9857,23.6993,6.0093,7.0693,5.6107,4.6622,1.1033,1.1123,2.9631,2.6437,9.1265,8.4238,16.1744,15.7252,2.9965,3.6547,5.0778,4.8221,3.5676,4.1904,1.8616,1.8233,4.7816,6.5954,12.654,12.2125,3.4228,3.6051,3.0362,3.0549,3.0685,2.9678,10.1976,10.9396,2.8486,3.063,2.519,2.7196,13.1199,13.4711,2.3634,2.5338,1.6682,1.5941,16.5313,15.4303,5.9048,5.6403,8.2718,10.377,4.2872,3.269,10.6104,11.324,9.4883,9.3392,9.4185,9.4607,4.5346,4.3584,1.8232,1.9406,,29,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd812,72,72,F,1.3139,1.6704,0.30776,0.29998,0.66914,0.64816,14.4818,2.2485,2.2676,37.0198,36.3908,10.8299,11.1161,167.8266,161.0911,1.1402,2.7121,2.4391,1.4247,0.94534,16.8999,21.4466,1.3283,1.2801,3.0868,3.0618,5.2375,5.499,3.8768,4.0697,0.06809,4.0379,1.7779,2.0068,0.31777,0.31612,3.324,3.8019,3.4566,3.7116,1.4349,1.3301,8.6533,7.634,2.8002,2.6481,3.1549,2.9876,3.2424,3.2605,1.2982,1.2728,1.4564,1.4596,2.9935,3.037,6.3894,6.5742,1.7015,1.7072,5.6178,4.5914,9.6125,9.6013,6.4027,5.8317,1.8869,1.9148,3.9268,3.8008,1.31,1.3169,16.5137,18.3016,4.4236,5.2418,3.2927,3.3296,0.78443,1.0571,2.3095,2.2291,6.2179,5.9198,11.4578,10.8127,2.4852,2.5463,3.3293,3.1632,3.1041,2.7091,1.2826,1.1608,3.5027,3.7223,9.4528,9.5354,2.656,2.8395,2.1121,2.1509,1.5512,2.0559,7.8549,9.2757,1.9505,2.0945,1.9324,2.1863,11.8479,11.7764,1.6217,1.9228,1.0127,1.0615,13.402,12.6978,4.5521,4.3385,6.702,7.8799,3.6249,2.776,8.6539,8.4367,5.7387,5.4674,6.8304,7.1955,3.0394,3.46,1.3987,1.3618,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd813,70,70,F,1.0932,1.5129,0.43242,0.47015,0.89568,0.89013,18.213,3.3168,3.1011,46.3654,45.5105,16.4399,16.9913,253.0074,248.2285,1.2612,3.5198,3.2644,0.61565,0.49349,11.9217,12.2916,1.7571,1.7673,3.8407,3.4106,7.1371,7.7091,4.8324,4.873,0.0698,4.6608,2.142,2.4738,0.3586,0.38798,4.0656,4.6922,4.1578,4.715,1.9226,1.6284,9.369,8.7108,3.4087,3.6094,4.0035,4.0678,4.2417,3.9562,1.8133,1.7536,2.045,2.308,3.5937,3.4285,7.3327,7.1825,2.0876,2.1293,6.3217,6.3284,10.6601,10.0065,8.4587,7.5869,2.3552,2.4351,4.7125,4.6561,1.7906,1.9573,17.4425,19.015,4.6329,6.3081,3.8968,4.0077,1.0728,1.0821,2.8028,2.4332,8.2987,7.1143,13.5111,13.5444,2.499,3.3407,4.0605,4.5183,3.3051,2.9777,1.6497,1.5939,3.9078,4.5049,10.4514,10.2366,3.2923,3.278,2.4661,2.5572,2.4415,2.544,9.9668,11.2567,2.1961,2.3887,2.144,2.3124,12.1052,11.8777,1.8109,2.1538,1.1702,1.2581,13.5098,12.9226,5.4539,5.8453,7.8089,8.9854,4.0434,3.3203,10.2398,11.1361,7.2718,6.8181,8.6265,7.7009,3.7811,4.3703,1.5951,1.6978,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd814,71,71,M,1.1563,1.7871,0.34004,0.38264,0.75542,0.79963,15.4595,2.4491,2.354,42.4737,42.4254,12.5599,12.8583,191.845,185.9051,1.1866,2.9519,3.0418,0.55737,0.49958,10.0298,11.3273,1.4203,1.4402,3.4679,3.6167,5.8336,6.1034,4.105,4.2268,0.07222,4.0424,2.0209,2.5436,0.37157,0.36647,3.3719,4.256,3.7875,4.0768,1.6751,1.3301,9.4737,8.3897,2.739,2.4315,3.4136,3.7782,3.862,3.5075,1.4613,1.4568,1.7751,1.8114,3.3626,2.9867,6.7912,6.5746,1.7143,1.8008,5.2995,5.2621,10.4471,9.8519,6.8044,6.0214,1.9966,1.9589,4.351,3.9784,1.6823,1.575,16.2457,15.9692,4.0023,5.2818,3.5422,3.3153,1.072,1.1334,2.3434,2.4251,7.3804,6.0357,12.5317,12.2537,1.9228,2.8097,3.4707,3.7607,2.99,3.2688,1.4978,1.1681,3.7861,4.304,9.3632,10.1896,2.7925,2.9753,2.3109,2.4182,1.9371,2.183,8.9765,9.9641,2.0736,2.1298,1.9562,2.0946,11.0117,11.7327,1.6691,1.8782,1.0798,1.2068,11.8307,12.1319,4.749,4.1712,6.8248,8.3262,3.4034,2.9298,9.5553,11.3991,6.6416,6.4193,7.2374,6.8396,3.2658,3.0953,1.426,1.3732,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd815,67,67,M,1.9942,2.794,0.37359,0.39484,0.85597,0.92421,17.2224,3.3177,3.1426,48.291,48.3369,13.6021,14.1589,204.2511,204.5753,1.8061,3.5105,3.2914,1.2968,1.1149,24.5416,35.4198,1.5049,1.4994,3.5275,3.5353,7.1666,7.2452,4.5448,4.7205,0.08896,4.7843,2.363,2.5756,0.40882,0.4058,4.3437,5.04,4.3388,4.9566,1.4807,1.3887,8.7883,8.5372,3.1133,3.406,3.8788,3.8743,4.2951,4.3734,1.5984,1.7233,1.8298,1.9555,3.3301,2.956,7.8367,7.3893,1.8319,1.9303,6.6976,5.9451,12.4167,12.1164,8.4702,7.8848,1.9673,2.1453,5.0995,4.8373,1.5318,1.5974,17.2382,16.165,4.8343,5.7141,3.5589,3.6084,1.112,1.2448,2.6163,2.8358,7.8601,6.1601,15.3481,14.581,2.4321,3.2931,4.4969,4.6582,2.6471,3.3911,1.4666,1.5133,4.0638,4.6253,10.0818,9.8654,3.1334,3.446,2.4675,2.5458,2.2073,2.1272,9.1008,10.1322,2.0875,2.2795,2.144,2.499,9.6738,10.4426,2.031,1.7062,1.3351,1.4499,13.9778,14.1363,5.1302,4.7641,7.3572,8.3272,3.5488,3.7422,10.6186,11.05,7.3975,7.9303,7.9021,7.6055,3.5295,3.7475,1.3964,1.3138,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd816,70,70,M,2.2566,2.4877,0.3603,0.40487,0.77148,0.83577,18.099,2.7349,2.6895,44.3483,43.3222,14.1702,14.9131,215.1196,216.0617,1.9387,3.2181,3.0496,1.3331,0.98324,26.0293,31.0679,1.569,1.5064,3.3659,3.4098,6.1374,6.2847,4.4157,4.6267,0.07234,5.0696,2.0012,2.6837,0.37608,0.39281,3.9011,4.4643,3.6847,3.839,1.7778,1.5173,9.7901,8.5799,3.3932,3.1842,3.3643,3.7718,4.4286,4.2499,1.6085,1.5631,1.8467,1.7326,3.8925,3.522,7.1346,7.0611,1.9854,2.0934,6.9891,6.5106,11.0529,10.7645,7.8971,7.3653,2.2825,2.5023,4.5899,4.6398,1.7892,1.8645,19.2383,19.6679,4.7657,6.1169,3.7545,3.785,0.99992,1.1274,2.2975,2.7867,7.5161,6.6487,13.534,12.7951,3.329,3.6427,4.2499,4.2138,3.4363,3.215,1.5133,1.4859,4.1739,4.555,10.1163,10.349,2.8906,3.2237,2.2363,2.2657,1.6959,1.999,10.0348,11.491,2.3996,2.4608,2.0158,2.1705,12.817,13.6959,1.6103,1.6304,1.2933,1.3027,15.1759,15.6985,5.4238,5.7101,7.8176,8.3436,4.5235,3.6446,9.187,10.1458,6.8383,6.8049,7.3909,7.2615,3.7418,3.9354,1.3401,1.4168,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd817,,,M,2.442,2.2088,0.39851,0.4186,0.90347,0.87588,20.4912,3.2034,2.9293,41.2298,41.6152,15.737,16.8806,219.3807,212.556,2.739,3.4963,3.2644,1.3331,1.2163,31.4071,37.1856,1.7507,1.7807,4.562,4.7365,7.7554,7.5645,5.0958,5.2591,0.07256,5.5227,2.2461,2.4809,0.3742,0.40337,4.9389,5.3908,4.7368,4.4768,1.9753,1.5811,11.2125,9.2381,3.254,3.0346,4.0521,4.1485,4.7485,4.3545,1.6863,1.656,2.1378,2.2501,4.3098,4.0108,7.6692,7.6441,2.0146,1.9238,6.7231,6.1079,11.9037,11.3178,8.1276,7.895,2.4351,2.5376,6.1242,7.119,1.9296,1.7188,18.2185,15.6377,5.2541,6.047,4.0725,3.9717,1.1224,1.1499,2.5579,2.8057,8.3169,7.4477,14.5391,13.5837,3.4225,3.9171,4.3358,4.2973,3.4353,3.4774,1.8173,1.5378,3.8864,4.526,11.6293,10.9844,2.9475,3.154,2.634,2.7942,1.9748,2.3082,11.1063,12.4028,2.4394,2.6346,2.1412,2.6681,13.5707,13.5132,1.7676,1.6991,1.2988,1.3772,16.7998,15.3062,5.6822,5.6492,8.3254,7.9048,4.4744,3.3562,10.3299,10.8338,8.1165,8.0185,8.5504,8.1256,3.6974,4.372,1.5882,1.6946,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd818,,,F,1.8719,1.9902,0.35333,0.36018,0.90359,0.89401,17.8724,2.8912,2.7928,45.9086,44.2557,14.668,14.8209,203.5476,190.1264,1.6673,3.3942,3.1069,0.67846,0.75136,18.4515,23.2024,1.5202,1.5078,3.1251,3.4098,6.6078,6.7055,4.5094,4.7287,0.07485,4.3164,2.1688,2.5484,0.39667,0.4058,3.6059,4.2337,3.996,4.175,1.6705,1.526,10.1495,9.9207,3.3453,2.9352,4.185,4.1444,4.6793,4.362,1.7283,1.6599,1.8156,1.9304,3.4718,2.9772,7.6589,7.3465,1.8942,2.089,6.8316,6.7376,11.9752,10.2448,7.7678,7.0399,2.2757,2.3532,4.2693,4.7563,1.5707,1.5606,19.14,18.8235,5.027,6.9267,3.8106,3.9294,0.94817,1.0491,2.5158,2.5365,7.2797,6.1634,14.6205,13.0377,3.1843,3.4526,4.4075,4.3679,3.386,3.0753,1.6373,1.433,4.301,4.5968,10.554,11.8842,2.8289,2.9691,2.5186,2.1874,2.4047,2.4738,10.6365,11.3873,2.4103,2.6018,2.1272,2.3742,13.0447,13.3993,1.9352,2.0007,1.2249,1.1464,14.3724,14.0169,5.1077,5.0761,8.3967,9.4176,4.3971,3.1925,9.7519,9.3063,7.6223,6.722,7.932,7.8093,3.8261,3.793,1.518,1.5275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd819,,,M,1.8122,2.9353,0.37308,0.49937,0.89651,0.95116,18.1907,3.2805,3.251,50.2053,49.6266,14.9631,15.3354,247.9735,247.7543,1.8546,3.9042,3.5758,1.2025,0.92258,22.7888,21.7437,1.8519,1.8178,3.7896,3.8439,8.15,8.5451,4.9633,5.0355,0.07715,5.1347,2.4147,2.7782,0.37903,0.41433,4.8039,4.9002,3.7443,3.6634,2.0518,1.5833,10.7487,8.8545,3.8622,3.5228,4.3756,4.0324,5.3855,5.0088,1.6107,1.8556,1.8671,1.8386,4.0231,3.5467,8.5667,8.4934,2.1121,1.9651,7.3738,7.0384,13.2295,11.7461,9.3268,8.2014,2.5281,2.3359,5.1739,5.1811,1.8795,1.9333,19.4148,20.819,5.2401,6.9686,4.1783,4.0818,0.95377,1.0488,2.1777,2.531,8.3722,8.0353,14.5562,14.397,3.0519,3.8449,4.4684,4.6073,3.3855,3.0305,1.6705,1.4578,4.5414,4.8399,11.9149,11.1221,3.2048,3.6146,2.3679,2.2809,2.3058,2.6226,10.3656,11.5437,2.5147,2.6081,2.0387,2.3682,13.5346,13.4711,1.9352,1.9968,1.1967,1.2696,14.6949,15.2437,5.3899,5.3513,8.2924,7.9048,4.0864,3.3719,10.4968,11.9308,7.4072,7.2427,7.8609,7.0857,4.0728,4.5021,1.4135,1.7661,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd820,66,66,F,1.2587,1.4588,0.30681,0.33628,0.51972,0.51612,15.3463,2.5792,2.7309,39.28,39.5897,12.3447,12.711,204.1758,197.9945,1.2004,2.2385,1.9484,0.55739,0.49987,9.5855,10.6412,1.3283,1.3726,3.222,3.3818,6.5442,6.8969,4.0474,4.2721,0.07935,3.8579,1.8793,2.247,0.30681,0.2964,3.0373,3.5274,3.5266,3.5419,1.6024,1.4009,8.201,7.7556,3.0221,2.6865,3.8102,3.6877,4.0486,3.6052,0.98201,0.39954,1.53,1.557,3.3842,3.2457,5.7713,4.5657,1.688,1.6118,5.7857,5.6047,8.5534,6.8215,6.8965,6.489,2.0464,2.1191,3.8606,3.9178,1.3135,1.4058,14.9787,16.4313,4.6161,6.1161,3.2755,3.563,0.94853,0.81513,2.1241,2.2468,6.29,5.6315,10.8509,10.2972,2.4036,2.7676,3.7258,3.852,3.1041,2.6527,1.3021,1.3388,3.2198,3.5591,8.5374,8.6143,2.4819,2.3682,2.1635,2.1578,1.859,1.8952,8.7332,9.29,2.1787,2.1021,1.928,2.1697,10.7359,10.9252,1.7104,1.65,0.97439,1.0621,13.8663,12.5765,4.3692,4.4989,7.2679,7.0627,3.3701,2.4503,8.1985,8.881,5.9102,5.5943,5.4577,6.1399,2.9372,3.564,1.3829,1.3844,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd821,77,77,M,2.5948,2.6248,0.38142,0.49937,0.91609,0.9122,18.6209,2.973,3.1574,52.246,52.6487,16.1122,16.8369,251.9128,253.2682,2.5729,3.8423,3.6848,1.4227,1.6117,23.4086,29.5189,1.6457,1.6387,4.11,4.2565,7.6391,7.9181,4.7729,5.1026,0.07709,5.4377,2.5032,2.8718,0.41953,0.42929,4.218,4.9562,4.7665,5.1481,1.9409,1.8698,12.1488,9.5747,3.8929,3.613,4.177,4.8171,5.4773,4.775,1.6863,1.7889,1.919,2.0053,4.1722,3.7021,8.0764,8.1502,2.1121,2.2066,7.267,6.6433,12.0698,11.9897,8.4069,8.0063,2.4574,2.5398,4.57,4.6036,1.7941,1.8131,15.9832,17.9085,5.9573,5.6858,4.23,4.3773,1.104,1.0764,3.1048,2.9135,7.9592,7.1731,14.935,14.0223,3.1072,3.6108,4.6643,4.9493,3.3178,3.4886,1.6757,1.3827,4.3186,4.7769,12.0991,11.6746,3.2138,3.5245,2.9604,3.1656,2.4205,3.0943,10.098,11.7391,2.5524,2.4352,2.5662,3.3079,13.4418,12.6851,2.2156,2.9278,1.2897,1.3543,16.0842,17.1693,5.5129,5.4629,8.2241,10.6727,4.0864,3.7773,11.0118,12.9099,8.2144,8.0185,8.4608,8.1909,3.5129,3.6103,1.6957,2.1845,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd822,83,83,M,1.5742,0.86416,0.03898,0.02263,0.92367,0.93247,14.3243,0.00133,0.88732,7.8188,18.1896,2.8026,9.5908,61.8725,69.2732,1.4577,3.4248,3.3065,1.5198,0.92777,22.6621,22.1617,0.81757,0.8757,2.1838,0.32999,1.9192,4.1722,4.2635,4.4197,0.07222,4.7754,1.3543,1.4143,0.35284,0.32201,3.7247,0.02955,0.9969,3.1873,0.00047,0.00046,7.9765,2.2506,2.5548,2.377,0.00002,2.1042,4.2668,3.9733,1.6918,1.77,0.01207,0.02155,0,0,6.6917,6.6129,0.8931,0.90295,5.1454,5.1852,10.3411,9.865,6.071,5.921,0.00098,0.03638,0,0,0.06173,0.05335,6.9551,0,4.9535,6.1776,1.529,1.4103,1.1627,1.121,2.5856,2.4471,0.01018,3.6668,11.8131,12.5187,2.3226,2.4072,1.4146,0.40331,1.3448,0,0.01559,0.49832,3.0192,3.5591,8.954,8.656,2.8493,3.0987,1.8207,1.7543,0.53142,1.5192,0,0.00568,1.9127,1.181,1.5795,1.4588,0,0.00255,1.5154,1.4484,0.55918,0.92855,6.0263,11.176,0,3.5064,0.74456,6.5015,3.5325,2.7383,8.2168,7.8501,6.5997,6.4179,7.2509,7.2298,0,1.414,1.009,1.0864,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd823,82,82,F,1.9443,1.9275,0.31181,0.35751,0.67646,0.66215,15.8248,2.514,2.4381,44.8015,43.3422,13.4103,13.6501,192.7491,185.9051,1.6565,2.7004,2.5657,0.70902,0.63192,18.6268,20.5572,1.5018,1.501,3.035,2.8936,6.4665,6.3572,4.2118,4.4853,0.08069,4.2701,2.2701,2.2817,0.32726,0.34543,3.7088,4.2297,3.5926,4.0881,1.7697,1.3823,9.7188,7.3997,2.4154,1.9387,3.7778,4.4545,3.6372,2.9868,1.4815,1.2683,2.0226,1.9402,3.8571,3.5683,6.3825,6.1208,1.6926,1.6118,6.15,5.7805,9.375,10.5956,5.7616,5.62,2.2165,2.2274,4.3988,4.5069,1.6284,1.5915,16.6386,16.5803,4.4818,5.0582,3.4252,3.4544,1.2371,0.9933,2.5856,2.4201,7.3471,6.4788,12.0451,12.1207,2.6698,2.5224,3.2939,3.6689,3.2014,3.2688,1.5709,1.5697,3.8757,4.3925,9.8585,9.7247,2.4883,2.5695,2.2541,2.3503,1.9107,2.9146,7.8857,9.3435,2.254,2.4534,2.0154,2.2385,12.1226,11.0634,1.6495,2.3233,1.017,1.0783,15.0454,14.7956,5.0677,5.2665,7.2824,7.845,3.2599,2.7703,9.4464,8.8138,6.4666,6.435,6.8489,6.8798,3.437,4.0303,1.385,1.5497,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd824,,,M,1.7635,2.3628,0.34803,0.42314,0.88171,0.87588,18.4101,2.7755,2.8472,46.4549,47.4475,14.882,15.0095,234.7223,235.5425,1.6673,3.5323,3.3271,1.2968,0.73692,21.6185,24.8558,1.7868,1.7237,3.2159,3.353,6.8653,7.1892,4.6366,4.8963,0.09024,4.735,2.0089,2.9853,0.41411,0.3954,4.0849,4.8562,3.991,4.4858,1.7418,1.6807,10.0928,10.4591,4.2051,3.6397,4.0902,3.7717,5.4773,5.4337,1.9052,1.6251,2.1351,2.0518,3.801,3.4814,7.488,8.0186,2.3466,2.2119,7.3727,6.6334,12.1627,12.2691,8.4587,7.3144,2.3956,2.5297,4.013,4.4564,2.0804,2.0987,18.9612,19.9306,6.1579,6.5332,4.1959,4.3668,1.1842,1.2911,2.5359,2.8102,8.988,7.896,14.935,15.3184,3.8559,4.0731,3.9041,4.2366,3.5463,3.5357,1.7034,1.6753,4.4736,4.8453,11.9595,11.5639,2.9862,3.3782,2.3243,2.3462,2.4414,2.4047,11.6151,13.853,2.519,2.7582,1.9848,2.0887,13.2148,13.3354,1.9339,2.0675,1.3886,1.443,16.3539,15.1134,6.5039,6.09,8.4487,10.4647,4.7643,3.9651,11.1648,10.4425,7.9658,7.5026,8.4564,7.499,3.69,3.8459,1.4725,1.7277,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd825,67,67,M,2.1132,2.3465,0.37023,0.40036,0.84541,0.71981,16.8618,3.2081,3.0003,42.4316,43.6504,12.1684,12.4512,186.3442,188.7927,2.2732,3.2742,3.0792,0.69365,0.63192,22.7909,27.2133,1.329,1.4112,3.5571,3.5172,6.5098,6.5072,4.3567,4.6199,0.06628,4.4313,2.0028,2.296,0.41104,0.39221,3.9011,4.8056,4.0728,4.0614,1.8422,1.6258,9.5422,9.6711,3.5068,3.7731,4.1787,4.0324,4.8444,4.5713,1.6944,1.5808,1.8098,1.7836,4.1515,3.4137,7.0278,6.8121,2.206,2.031,7.213,5.6319,11.059,10.374,8.6663,7.7479,2.3802,2.5573,3.5995,3.9769,1.8483,1.9334,17.3549,18.6858,5.8835,5.7717,3.9778,3.9639,0.88883,1.2153,2.478,2.7867,8.4822,7.1113,14.1437,13.2393,2.815,3.4565,4.5189,4.3582,3.1583,2.7484,1.5783,1.4613,4.074,4.7365,10.7091,10.9108,2.8168,2.9473,2.4688,2.2563,2.7669,2.5835,10.1522,11.9255,2.4985,2.5496,2.0953,2.3763,13.4418,13.9885,2.2245,2.1021,1.2302,1.2987,14.1941,14.6553,5.6201,5.8128,7.9751,9.8165,4.4239,3.5477,11.0324,9.9203,7.6908,7.2786,8.5122,8.1256,3.5289,4.2257,1.5917,1.5959,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd826,69,69,F,1.5107,2.0916,0.40132,0.44518,0.88136,0.90077,19.6702,3.122,2.9504,50.0217,50.2409,14.5116,14.7292,232.3607,222.6818,1.246,3.5737,3.3827,0.43104,0.46857,10.0023,10.1571,1.5279,1.6101,3.6044,3.5807,6.7091,7.0209,4.7463,5.0523,0.0767,5.0798,2.3782,2.6814,0.38887,0.38119,4.5569,5.2078,3.8333,3.9875,1.8335,1.7547,11.3833,9.4337,3.2956,3.2515,4.3878,3.949,5.0371,4.6911,1.7817,1.8925,1.8721,1.9267,4.1116,3.6603,8.2978,8.1068,2.1813,2.2869,7.3511,6.9959,11.5745,11.9897,8.1276,7.7831,2.2754,2.4943,4.7915,4.5129,2.044,2.0628,19.933,18.6366,6.0093,6.5834,4.0038,4.3173,1.1375,1.2654,2.822,2.8748,8.8107,7.8587,14.7468,13.855,3.9516,4.0329,4.6395,4.4217,3.3178,3.1188,1.4561,1.5012,4.1308,4.3083,10.9553,10.3914,3.0398,3.3833,2.0485,2.0849,2.3943,2.7249,11.1617,12.4476,2.5713,2.8273,1.9957,2.1608,12.9511,13.815,1.9224,2.0007,1.1238,1.3167,16.485,15.3658,5.6773,5.6403,7.8463,9.0459,4.958,4.2271,10.9764,11.0209,7.3333,7.3378,8.1518,9.2077,3.4632,3.4992,1.6093,1.6424,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd827,,,F,1.3846,1.6709,0.35806,0.37281,0.80181,0.80585,16.6818,2.8072,2.4509,43.4399,42.5625,12.1539,12.1483,180.3954,179.8191,1.6237,3.131,3.1275,0.78669,0.74344,17.1038,20.0338,1.3866,1.3777,3.3313,3.5573,6.376,6.2932,4.1609,4.3349,0.0849,4.1112,2.0875,2.3954,0.37365,0.34498,4.1808,4.9016,3.6757,4.0424,1.7991,1.5351,8.2922,8.2497,2.3608,1.9387,4.0143,4.2844,4.144,3.7566,1.5099,1.6001,1.7788,1.8734,3.6033,3.4439,7.4857,7.1407,2.2971,2.443,5.7668,6.1849,11.1879,10.6118,7.3121,6.8854,2.3611,2.5224,4.7746,4.8171,1.9356,1.94,20.6697,19.6175,5.1845,5.9417,4.1959,4.0782,1.1689,1.1249,2.6036,2.6654,8.0346,7.1449,13.7589,12.1207,2.4348,2.9274,3.6774,3.8858,3.3483,3.4832,1.5618,1.5583,4.2069,4.6213,10.9832,10.5044,2.8699,3.043,2.2169,2.4293,1.9439,1.8554,9.9204,10.536,2.4037,2.6115,1.9772,2.2659,12.0085,12.6192,1.7988,1.5474,1.275,1.2689,13.9848,15.2893,5.269,5.4523,6.5474,7.5909,3.7931,3.0401,8.2148,8.7986,6.72,5.8152,7.0508,6.9968,3.4384,3.8429,1.4754,1.3071,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd828,70,70,F,1.3845,1.2513,0.27575,0.30794,0.66068,0.64816,15.6667,2.4715,2.2608,36.0362,36.3923,12.6156,13.067,169.8396,168.5586,1.4577,2.7121,2.4742,1.8227,1.4956,22.6621,24.0846,1.3261,1.315,3.1697,3.0497,5.5596,5.7188,4.0474,4.2826,0.08356,4.3073,1.8249,2.0852,0.30681,0.31728,2.9398,3.0857,3.3117,3.5395,1.4618,1.1709,8.2616,6.0317,2.739,2.5355,3.6505,3.3813,4.3906,3.7148,1.2982,1.3576,1.7233,1.5836,3.0474,2.43,6.1677,5.6728,1.8505,1.8986,4.3628,5.3421,9.2611,9.1482,5.9288,5.8129,1.9543,1.7342,3.3637,3.8523,1.402,1.4402,14.8596,14.7495,3.4563,4.5191,3.2287,3.3512,0.97386,0.8659,2.2617,1.689,5.4759,4.8291,11.7788,11.3461,2.0007,2.5273,3.2956,3.2516,3.166,2.6527,1.2826,1.3043,3.0192,3.4843,7.7781,8.2426,2.5273,2.6722,2.1467,2.0745,1.6116,1.7698,8.8763,9.4062,1.9189,2.1794,1.8687,2.0071,10.5813,10.3,1.5309,1.5334,1.0735,1.1272,11.5543,11.627,4.3139,4.3593,5.934,7.3877,3.3486,2.6668,8.1262,9.3042,5.9102,6.213,6.2694,5.995,2.7025,3.0175,1.2809,1.2893,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd829,,,M,1.7433,2.3245,0.37555,0.41405,0.80898,0.86494,17.0328,2.644,2.8133,46.8232,45.0515,14.0187,14.1856,217.6717,213.7234,2.2077,3.2171,3.0937,1.2206,1.3141,22.4138,29.1534,1.5006,1.4994,3.548,3.7316,6.1754,6.46,4.4848,4.701,0.07334,5.2786,2.2816,2.6047,0.38064,0.38263,3.6059,4.256,3.7816,4.186,1.6909,1.4936,10.6519,8.7883,3.2294,3.0271,3.984,4.138,4.4276,4.671,1.6126,1.5954,2.0749,2.0332,3.3198,3.0902,7.4396,6.8404,2.0209,1.9686,5.9165,5.9483,11.2191,10.9225,7.659,7.4887,2.1865,2.4265,4.2754,4.4549,1.6016,1.6784,18.3073,19.3029,4.667,5.8863,3.7841,3.7465,1.0214,0.9475,2.416,2.214,7.1542,6.0886,13.0986,13.3673,2.7967,3.0453,4.0727,4.059,3.9717,3.6122,1.5397,1.554,3.7308,4.211,9.9058,9.6412,3.0984,3.163,2.1295,2.3505,2.2332,2.5638,10.0515,11.527,2.3781,2.6607,1.875,2.2295,11.9639,11.9425,1.8433,2.3003,1.1198,1.2447,12.0217,11.5783,5.0806,5.3437,8.3,8.5511,3.8803,3.4703,10.6511,10.0025,7.3246,7.4312,7.0993,7.1531,3.2917,3.9146,1.5062,1.5099,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd830,75,75,F,1.6611,1.4877,0.30776,0.29998,0.76212,0.73343,17.2136,1.7904,1.7664,42.54,40.841,14.3601,14.8204,203.8109,197.7453,1.7563,3.0443,2.5632,0.65389,0.61212,15.5073,19.029,1.5486,1.5185,2.8007,2.8304,5.5443,6.3151,4.4183,4.6409,0.07879,4.3013,2.2031,2.3166,0.32499,0.34001,3.5363,3.6044,3.3259,3.5054,1.4349,1.2021,9.1996,7.0883,2.4154,2.0088,3.2306,3.1451,3.4484,3.1617,1.4479,1.3462,1.5568,1.5965,3.1138,2.6464,6.5448,5.9755,1.7214,1.719,4.8907,5.1719,9.6125,9.1892,6.4405,5.8332,1.73,2.0018,3.8785,4.0338,1.3389,1.373,14.7917,15.0329,4.1649,4.8732,3.1968,3.2152,1.072,1.0199,1.915,1.954,6.101,5.527,11.4578,10.8127,2.3956,2.5807,3.2669,3.6566,2.8743,2.6854,1.1366,1.2695,3.2478,4.2617,9.385,9.7247,2.4895,2.6495,2.1467,1.9715,1.7326,1.6318,8.3525,9.53,1.8224,2.2089,1.8371,1.9312,9.7805,9.5847,1.5671,1.8796,0.95964,1.0666,12.738,11.9064,4.244,4.2436,7.2102,8.131,3.329,2.7218,8.8912,10.605,5.6891,6.0194,6.6063,5.9373,3.0722,3.104,1.2047,1.4348,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd831,70,70,M,1.3735,2.1299,0.38266,0.35447,0.74951,0.78396,19.1081,2.7961,1.9421,49.2345,50.5032,15.7789,15.6548,218.9212,207.5702,1.2123,3.2393,3.011,0.46983,0.54857,11.7448,17.2025,1.5012,1.4886,3.3738,3.3626,6.5912,6.9055,4.4829,4.6137,0.08328,4.4525,2.382,2.6963,0.33725,0.37521,3.7686,4.1727,3.5798,3.9264,1.6328,1.3598,9.467,8.5673,2.977,2.8084,3.8488,3.891,4.2553,3.7832,1.4827,1.4774,1.7788,1.9075,3.3536,3.1892,7.1609,6.9971,1.9012,1.8858,6.9008,6.1276,11.6078,11.0215,7.5148,6.4034,2.0059,2.272,4.2386,4.2942,1.5451,1.5761,17.3399,17.0128,5.2609,6.2003,3.2639,3.6503,0.86718,1.0087,2.2727,2.2819,7.1759,6.1987,13.9134,12.7389,3.2217,2.9863,4.2429,3.917,2.7013,2.9829,1.5348,1.4375,3.4431,4.1002,9.1677,9.6885,2.7692,2.8781,2.1566,2.2312,2.1136,2.4116,10.4524,11.5164,1.9919,2.3702,1.9582,2.2568,12.5547,12.2405,1.8068,1.7496,1.0135,1.1325,15.5874,14.0278,5.0284,4.7806,7.6077,9.423,4.2727,2.932,9.4088,9.5962,7.422,7.2202,6.886,7.097,3.1503,3.3445,1.3748,1.4683,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd832,,,F,1.5218,1.5472,0.4011,0.42549,0.86831,0.89996,16.2165,2.6524,2.796,27.9343,27.3723,12.9291,12.8817,208.768,201.4517,1.6097,3.4143,3.1564,0.53477,0.74287,17.2503,16.0797,1.4516,1.4856,3.339,3.3541,6.5265,6.6608,4.2133,4.3716,0.07313,4.0092,1.868,1.872,0.38924,0.37809,4.0432,4.431,3.9071,3.9064,1.9203,1.5833,10.6009,9.9061,3.2457,2.7063,3.9002,3.8315,5.0371,4.5931,1.7916,1.7477,2.1555,2.0414,3.8675,3.4571,8.2067,8.2525,2.1371,2.0751,6.8062,6.6257,11.8785,12.0056,7.6419,7.1949,2.2267,2.4227,4.5922,4.6191,1.7617,1.711,19.8372,19.7907,5.4805,5.5351,4.1567,4.0524,1.0744,1.0588,2.7871,2.7557,7.7053,6.8144,14.7733,14.9175,3.1322,3.3266,4.4569,4.5236,3.2773,3.2129,1.589,1.6605,4.301,4.7566,11.0806,10.643,3.0069,3.2946,2.0485,2.0921,1.9097,1.9606,9.6216,12.15,2.3909,2.568,1.9149,2.0657,13.6143,12.3655,1.7454,1.6453,1.2462,1.3205,14.5232,14.5068,5.4556,5.6808,7.3116,9.1592,4.8432,3.7085,10.1525,11.0531,6.5968,7.0953,8.3723,8.3901,4.0176,4.2425,1.2864,1.3716,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd833,67,67,M,2.1132,2.794,0.38142,0.42992,0.84385,0.87536,21.9754,3.0522,2.8533,51.4541,50.5091,18.656,18.8096,269.1573,265.6812,1.9461,3.4118,3.3754,0.92013,0.83801,22.1314,26.8131,1.8652,1.8286,3.958,3.9769,7.4638,7.7786,5.1523,5.4395,0.08937,5.3326,2.6508,3.0942,0.4116,0.41953,4.413,5.0139,4.927,4.7795,2.1278,1.891,9.7817,8.2205,3.5772,3.5281,4.4146,4.9235,5.149,4.7594,1.6245,1.6786,1.9956,2.1078,4.6571,4.1805,7.8411,7.5475,2.3144,2.2793,8.2003,7.263,12.9681,11.9568,8.9198,8.1669,2.5202,2.6036,4.8022,5.122,2.0711,2.0161,18.5999,19.2424,5.4456,6.1711,4.3326,4.472,1.2076,1.0816,2.5524,2.5482,9.1937,7.9308,16.0082,15.049,3.1402,3.6819,5.0926,4.5567,3.6886,3.0816,1.6389,1.5248,5.0546,5.0967,12.5485,11.9956,3.1953,3.2579,2.5671,2.3877,2.2331,2.2081,9.1766,10.682,2.4879,2.5487,2.4137,2.408,13.703,12.6851,1.9471,1.8977,1.3379,1.4984,16.4195,15.5599,5.871,6.1416,7.4967,7.416,4.0864,3.3599,9.5689,9.4013,8.0677,7.6646,7.7944,7.0857,4.3022,4.4532,1.6241,1.6836,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd834,83,83,F,1.6495,2.2007,0.35661,0.41651,0.65782,0.70871,16.0067,2.8989,2.8888,41.7928,43.1641,13.6541,13.538,184.0221,180.3862,1.9741,2.89,2.8842,0.7124,0.79444,24.2377,26.8131,1.527,1.4679,3.4478,3.6176,6.4362,6.3572,4.3747,4.5147,0.07442,4.4313,2.0523,2.2805,0.38748,0.29494,3.2603,4.1665,4.2152,4.2191,1.7381,1.7656,8.749,8.3081,3.0371,2.9403,3.6958,3.6837,4.0084,4.3969,1.4815,1.4068,2.1221,1.881,3.7816,3.5094,6.6711,6.4318,1.8818,2.0747,6.7724,6.0086,11.2782,10.0282,7.5987,7.101,2.2271,2.6388,4.5803,4.5634,1.5715,1.6189,16.3896,18.3061,4.5062,5.7645,3.449,3.9294,0.9656,0.88686,2.5492,2.3415,6.9508,6.5146,13.4024,12.5919,2.7339,3.392,3.9841,3.9945,3.6483,2.9361,1.4419,1.5383,3.3847,3.8719,9.5582,9.6318,2.6072,2.8801,2.4381,2.4182,1.9282,2.5377,9.8283,10.5983,2.418,2.6031,2.1977,2.2753,11.1179,12.4411,1.7123,1.9727,1.1612,1.2048,12.4816,12.5947,4.6414,4.7787,7.7578,8.3409,3.2345,3.3715,9.4371,9.2288,7.1756,6.7973,7.6584,6.6556,3.4632,3.602,1.4877,1.5099,,,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd835,83,83,M,2.4287,2.1835,0.38018,0.39083,0.75549,0.79633,17.4098,2.7349,2.7139,47.6643,49.1911,15.072,15.2872,185.7545,188.816,2.8942,3.0892,2.9426,1.3138,0.91086,31.0961,31.4738,1.3688,1.3274,3.1718,2.9568,6.6749,6.9036,4.2355,4.4351,0.06398,4.8141,2.323,2.8859,0.36383,0.37311,4.717,4.8237,4.2298,4.4273,1.9654,1.5926,10.4294,9.6728,3.4933,3.2791,4.5358,4.5057,5.0217,4.6911,1.5594,1.4874,2.1334,2.0209,4.0231,3.5095,7.5501,7.4849,2.1738,2.1136,7.6067,7.4941,12.347,12.081,8.7859,7.4859,2.5327,2.4061,5.2304,5.0665,1.9984,1.8644,19.8668,20.1679,5.8835,6.1406,3.8968,4.0077,1.1224,1.2571,2.5666,2.8358,8.299,7.598,15.1414,14.581,3.3699,4.2916,4.8417,4.9054,3.9799,3.4449,1.5781,1.7375,4.4357,4.7407,11.4473,11.3723,2.7125,3.231,2.7424,2.4977,2.2832,2.6086,11.4189,13.411,2.3767,2.7005,2.5662,2.6396,12.4627,12.6866,2.0355,2.3352,1.1929,1.2963,15.5288,16.0232,6.0073,5.245,8.8275,9.0617,4.4749,3.6816,10.6607,11.8244,7.655,6.6764,7.622,6.7795,4.0715,4.5021,1.7607,2.0348,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd836,,,M,1.4349,2.3519,0.43905,0.49152,0.83141,0.79891,20.1268,3.3853,3.2314,48.2352,48.3698,16.6933,16.6023,252.5748,247.8442,1.6642,3.3454,3.2016,0.76046,0.83932,16.1951,19.5064,1.6981,1.6373,4.2337,4.0548,7.0978,7.6661,5.179,5.4219,0.07009,4.5193,2.036,2.7424,0.40743,0.41572,4.0209,4.4059,3.7836,3.9828,1.8691,1.616,9.9077,8.9164,3.8376,3.877,4.2691,4.1499,6.0872,5.5077,1.7484,1.5724,1.7979,1.8671,3.7506,3.6101,7.3288,6.643,2.1914,2.3796,5.9213,5.9589,11.7056,10.374,8.7636,8.4315,2.2302,2.4053,5.2766,4.8805,1.8996,1.927,18.5568,18.6286,5.233,5.1925,4.318,4.4733,1.3779,1.198,2.9005,2.877,7.3224,7.9262,14.0121,13.6802,2.8999,3.2917,4.2779,4.2382,3.53,3.5953,1.5949,1.4683,3.9418,4.0697,10.8753,11.2827,3.1021,3.1765,2.3751,2.3405,2.4781,2.4877,10.7458,11.4351,2.3965,2.6129,2.2951,2.288,13.4291,12.6607,1.9352,2.0896,1.2078,1.2912,16.095,15.3062,5.2471,4.9771,8.1537,8.9545,4.5403,3.3271,9.2774,10.6328,7.7549,7.4204,8.0653,7.9146,3.6254,3.645,1.7588,1.8178,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd837,71,71,M,1.1685,1.7477,0.37835,0.40435,0.81053,0.80585,21.302,2.816,2.8133,52.995,51.7551,16.0141,16.4425,222.79,216.6593,1.0312,3.4324,3.2747,0.41256,0.46701,8.3108,12.4534,1.5114,1.4831,3.4878,3.7316,6.9328,6.7992,4.8444,4.9725,0.07254,4.8961,2.3782,2.8663,0.36763,0.38007,3.6558,4.1727,3.7167,3.7606,1.7432,1.6524,9.6822,8.6004,3.0094,2.6239,3.7748,4.0282,4.2553,4.4054,1.5735,1.5989,1.946,1.7632,3.371,3.2519,7.6467,7.4826,1.978,2.0545,6.0951,6.4625,11.5048,11.2161,7.9171,7.0848,2.3243,2.3889,4.2587,4.2647,1.585,1.5917,16.2943,18.5287,4.2296,5.0735,3.6591,3.8902,0.94454,1.0405,2.4726,2.645,6.5017,5.8604,13.8714,14.0717,2.6053,3.6695,4.2997,4.1161,3.6965,3.349,1.4492,1.4459,4.4639,4.4619,11.2544,10.2604,2.8467,3.1822,2.3396,2.4581,2.3381,2.452,9.768,10.3831,2.2669,2.3627,2.3008,2.2557,12.1095,11.9634,2.013,2.2687,1.054,1.0159,13.0426,13.4857,5.0806,4.7806,7.9386,9.6603,3.8384,3.8033,10.6544,10.4071,7.8222,7.5841,7.4341,7.1257,3.33,3.639,1.7025,1.885,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd838,60,60,M,2.3493,1.6033,0.35086,0.39382,0.77616,0.83678,15.0982,2.8802,2.7181,46.127,45.8428,12.0435,12.6795,214.4218,213.0231,1.8946,3.2981,3.1435,2.4881,2.8079,26.3421,25.9303,1.5581,1.5699,3.1933,3.3873,6.1889,6.6249,3.9613,4.2179,0.07515,4.8407,2.2072,2.4507,0.39049,0.38263,4.001,4.706,3.2609,3.5727,1.6918,1.5999,9.5858,8.2935,3.2222,2.9452,3.4866,3.3355,4.3475,4.4238,1.4203,1.4929,1.5552,1.569,3.6944,3.3075,5.7859,6.0491,1.9057,1.9376,5.8883,4.9571,9.374,9.274,7.659,8.097,2.0293,2.3184,4.3234,4.4611,1.7157,1.6743,17.284,17.1605,4.7874,5.0603,3.882,3.8828,1.0611,0.97622,2.5015,2.4072,7.6393,6.7513,11.9343,11.6384,2.7573,3.0025,4.0727,4.3736,2.7034,2.5606,1.506,1.2784,3.5234,4.2632,9.1457,9.759,2.5089,2.8487,1.9103,2.1279,2.3646,2.6416,9.151,10.1489,2.3064,2.3548,1.6775,2.0569,10.9514,10.7577,1.7782,1.9298,1.1223,1.1993,13.8721,13.2358,5.2099,5.2255,7.875,8.3409,3.9385,3.1517,9.6188,9.9883,7.1689,7.1332,7.4054,7.1796,3.524,3.3076,1.3372,1.5665,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd839,,,M,3.2846,3.8497,0.41779,0.45606,0.84385,0.84107,18.3788,3.9094,3.6894,43.1093,43.4145,14.4027,14.4955,233.3043,234.481,3.7567,3.8467,3.5866,1.614,1.6117,22.5303,24.2618,1.7519,1.7443,3.5981,3.8377,7.6923,7.6113,4.9633,5.1621,0.07687,4.3915,1.9909,2.4388,0.396,0.4066,4.1386,4.8551,3.996,4.4849,1.896,1.6172,12.1488,11.1179,3.4009,3.0364,4.1024,3.9395,4.6508,4.4561,1.5758,1.5666,1.7564,1.84,3.6851,3.8104,7.0622,6.8761,2.112,2.1159,6.0687,6.0095,11.8823,11.1868,7.457,6.9489,2.1953,2.3084,4.2137,4.8068,1.7793,1.8645,19.0582,19.9306,4.8132,6.3697,3.8949,3.9287,1.2128,1.2119,2.8441,2.8748,8.7052,7.8788,14.7521,14.6542,2.8502,3.5094,3.8431,4.2453,3.2782,3.3625,1.4656,1.2876,4.0638,4.6404,10.4458,11.3059,3.0239,3.1765,2.408,2.4979,2.1797,2.5476,10.0741,11.871,2.316,2.411,2.2845,2.2754,11.8206,11.7822,2.0784,2.0881,1.3416,1.4482,16.4028,14.5999,6.0458,5.4435,7.9431,9.2497,4.5506,3.7717,10.5653,9.9939,7.5918,7.83,7.2099,7.1531,3.3051,3.4214,1.6507,1.6296,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd840,,,F,1.0344,1.5136,0.39144,0.4675,0.97755,0.98178,21.2508,3.2466,2.9435,50.0217,50.4743,18.3548,17.9844,245.8511,243.7977,1.22,3.9712,3.5866,0.8319,0.50083,14.3835,15.3171,1.8519,1.8616,3.9642,4.111,7.9524,7.709,5.459,5.5975,0.08487,4.8712,2.405,2.9334,0.43406,0.41984,4.4987,4.7275,4.4733,4.5444,1.9665,1.8698,10.1484,10.4839,3.7986,3.5228,4.4059,4.6128,6.5936,5.9042,1.9505,1.7409,2.1031,2.1736,3.8456,3.7717,7.9612,7.494,2.4882,2.4275,6.6404,7.2898,11.9546,12.7822,8.8942,8.1993,2.5593,2.7017,4.7472,4.9715,1.9822,2.0095,18.5718,19.2424,5.0552,6.7807,4.3013,4.6246,1.041,1.2987,2.693,3.0479,8.5634,7.7043,14.3888,14.0223,3.3631,4.0809,4.6353,4.7023,4.0885,3.7082,1.8664,1.6495,4.3629,4.7538,11.7594,11.3723,3.2799,3.5992,2.5205,2.519,2.5237,2.8133,11.4609,13.2572,2.5921,2.7605,2.1619,2.7803,13.3956,13.2312,2.1358,2.5189,1.2925,1.2697,15.6544,15.5816,6.2855,6.0104,9.3803,10.4137,4.7925,4.2936,10.4408,12.624,8.223,8.0185,8.7938,8.4413,4.0345,4.2673,1.5527,1.9406,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd841,60,60,F,0.99857,1.4305,0.36656,0.41872,0.8032,0.81121,17.5712,3.1599,3.0891,43.8728,42.9721,14.0101,14.1673,204.2511,200.8307,1.0368,3.1805,2.973,0.39387,0.37085,11.6656,17.0265,1.5573,1.5355,3.588,3.5591,6.8949,6.9551,4.1903,4.4735,0.07533,3.8657,1.9905,2.3954,0.37715,0.37247,3.8895,4.5299,3.5497,3.8767,1.7919,1.5396,9.5927,9.03,2.7324,2.7017,3.4866,3.6034,4.2695,4.4054,1.6458,1.6122,1.6794,1.8746,3.6966,3.3553,7.1779,7.3729,2.1738,2.041,6.2753,5.9628,11.8823,10.2448,7.2448,6.6851,2.3641,2.5257,4.947,4.7252,1.7486,1.7434,19.2383,20.2757,5.0421,5.9526,3.9463,4.1149,1.051,0.95972,2.7296,2.456,8.3181,6.6289,14.489,13.0492,2.8378,2.9641,3.9044,3.6426,2.7106,3.243,1.6253,1.5109,3.862,4.0697,9.588,9.5475,2.6336,3.0361,1.9027,2.083,1.8712,1.9596,10.9132,12.1633,2.3362,2.5267,1.7402,2.0736,12.7629,11.489,1.9493,1.65,1.1622,1.1901,14.1941,14.2595,5.4232,5.5811,8.3242,8.0248,4.6808,3.819,9.6935,10.6654,6.6682,7.0975,7.4283,7.094,3.757,4.1613,1.4022,1.4168,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd842,71,71,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd843,,,M,1.7245,1.907,0.37089,0.43673,0.99874,0.99325,19.4859,2.855,2.818,47.8821,47.8478,16.1704,16.4775,284.0418,281.4037,1.4817,4.2465,3.6457,0.83068,0.56756,14.5829,20.9043,1.8646,1.8031,3.6109,3.5983,7.1682,7.6513,4.8321,4.9638,0.07553,4.7502,2.2473,2.7544,0.4105,0.39221,4.5332,5.0139,4.4507,4.5444,2.1901,1.6462,10.4015,10.1,4.2051,3.5443,4.5708,4.4935,5.4218,5.0088,1.9382,1.8275,2.3232,2.2036,4.5784,4.5646,8.2534,8.4465,2.4457,2.3453,7.0212,7.5209,13.5794,14.1385,9.1257,7.4859,2.5698,2.5738,5.506,5.2196,2.4392,2.3385,21.001,22.4796,4.8565,7.252,4.31,4.2674,1.041,1.02,2.2485,2.4911,10.9811,9.8321,17.4594,18.2389,3.2211,3.8449,4.8025,4.465,4.0271,3.9462,1.8669,1.5796,4.6583,5.0762,12.3998,12.0823,3.2514,3.5371,2.3477,2.3462,2.9351,2.7929,13.1736,12.3878,2.3298,2.6361,2.2267,2.4483,16.172,15.5268,2.4074,2.2917,1.3871,1.5153,19.5882,15.6758,6.6401,8.4787,8.7147,9.0181,4.9162,3.9216,12.1298,11.5007,8.5019,7.5284,9.4185,9.5514,4.5645,4.1453,1.7496,1.686,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd844,,,F,2.1892,2.2847,0.29367,0.39194,0.77445,0.7483,15.4625,2.5066,2.7821,48.197,47.2955,13.4103,13.538,212.6955,207.636,1.651,3.3094,2.9947,1.8794,1.6943,20.3411,19.7701,1.4291,1.4294,3.3423,3.278,6.2277,6.5512,4.0879,4.3006,0.0849,4.4861,2.2424,2.4605,0.35503,0.32475,4.2473,4.7178,4.1455,4.0762,1.5075,1.2167,9.2651,8.714,3.0589,2.7925,3.3061,3.7968,3.8457,3.9248,1.4166,1.3872,1.7701,1.8075,3.5987,3.483,7.5047,7.2602,1.7615,1.8571,6.1452,5.8485,11.3479,11.2543,7.8192,7.3695,1.9371,1.9649,4.3328,4.4422,1.4899,1.5537,15.482,16.5744,4.9477,5.555,3.0127,3.16,1.3235,1.1394,2.951,2.6167,8.0372,6.7189,13.6094,13.6328,2.8378,2.9641,4.4146,4.3462,2.7013,2.9829,1.3089,1.2955,3.7873,4.6272,10.2125,10.9152,2.839,3.0087,2.2576,2.2356,1.6549,1.8166,9.2992,11.7269,1.9962,2.0384,2.0332,2.1117,10.6811,10.8191,1.6103,1.5334,1.2151,1.3157,12.5572,12.7331,5.0514,5.0411,6.6039,9.011,4.1722,3.2111,10.774,9.5776,7.0951,7.83,6.5751,6.3349,2.6007,3.0542,1.3538,1.153,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd845,81,81,M,2.3255,2.0334,0.29851,0.37155,0.79946,0.85586,17.1029,2.3291,2.448,42.8216,42.5416,15.8163,15.9721,208.2842,213.7972,2.3436,3.2147,3.3138,0.91151,0.87676,22.5303,22.3935,1.5605,1.5028,3.5016,3.7797,6.5677,6.6851,4.4392,4.6325,0.06526,4.484,2.0673,2.4458,0.32784,0.32938,3.7968,4.3399,3.5452,3.9,1.7272,1.5373,9.6472,9.1829,3.479,3.623,4.0572,3.9018,5.0822,5.2862,1.504,1.5875,1.7762,2.0563,3.5505,3.0477,7.1156,6.5485,1.8311,1.8854,6.2204,5.801,11.7404,10.8507,7.2141,6.7001,2.1214,2.2737,4.3988,4.2283,1.6097,1.6249,16.273,17.3382,4.6453,4.9584,3.5027,3.6918,0.8514,1.0543,2.2521,2.5839,7.0534,6.1634,14.6532,12.7792,2.5101,3.3037,3.7494,4.0093,3.318,3.2799,1.4504,1.5012,3.5927,3.9948,10.0699,9.6318,2.7524,2.8589,2.199,2.1786,2.0996,2.4363,9.7286,10.8438,2.2032,2.327,1.8592,1.9533,11.7555,11.759,1.9502,2.0129,1.0959,1.1114,11.8694,12.2416,5.0937,5.1043,7.3309,7.9473,4.0568,3.6288,9.0381,9.686,7.0764,6.5692,7.0659,6.9968,3.2606,3.602,1.4593,1.5321,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd846,38,38,M,2.2023,1.8234,0.37982,0.3701,0.83178,0.86541,17.5262,2.8806,2.4915,50.9428,50.3785,14.1082,14.3546,213.1412,210.3322,1.7409,3.2428,3.1136,0.92808,1.1293,22.6963,26.1031,1.4853,1.4994,3.7943,3.7931,6.6078,6.9036,4.2758,4.486,0.06596,5.1974,2.5086,3.0338,0.35381,0.38798,3.6402,4.1603,3.928,4.1591,1.7043,1.4411,9.1016,8.3197,3.3215,2.8557,3.4007,3.6034,4.6919,3.9091,1.722,1.6786,1.8441,1.8211,3.5773,3.3786,7.9794,7.1407,1.7773,1.7464,6.4312,6.553,11.5046,10.95,8.6542,7.7697,2.2825,2.3507,4.4497,4.5385,1.6049,1.595,17.2759,17.4283,5.4068,5.8612,3.5876,3.4528,1.0464,1.0646,2.4232,2.5482,6.6446,6.2187,13.7817,12.9016,2.5745,3.1473,4.6522,4.451,3.5913,3.2505,1.5898,1.4126,3.8402,4.1396,9.9252,9.5475,3.0673,3.3577,2.3685,2.3436,1.8433,2.3937,9.5891,10.212,2.3581,2.4704,2.123,2.2904,10.3294,10.4154,1.6388,1.9505,1.1721,1.235,11.7635,12.0462,4.4457,4.5847,7.3309,9.3403,4.0222,2.932,10.1514,11.021,7.0259,6.5889,8.7133,7.9834,3.4457,3.3353,1.5081,1.5661,,26,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd847,63,63,F,1.0172,1.5136,0.36371,0.34978,0.81262,0.764,16.6818,3.1599,2.9916,42.7345,43.4035,13.3747,13.8672,209.5672,208.2046,1.0778,3.1175,2.7845,0.56721,0.4383,12.0578,13.1846,1.6261,1.5537,3.8347,3.3777,6.1978,6.8479,4.5341,4.7364,0.07952,4.4765,2.0895,2.3954,0.33346,0.35342,4.1239,4.5454,4.0004,4.2371,1.7392,1.6665,9.5333,7.8532,2.4294,2.4514,3.8306,3.9903,3.6957,2.9868,1.6624,1.5799,2.0217,1.9358,3.371,3.4177,6.4928,6.6439,1.9519,1.9683,6.15,6.0413,10.8135,10.1351,6.3269,5.4669,2.205,2.3113,4.5939,4.9116,1.6819,1.7026,17.934,17.4396,4.6322,5.5006,3.6023,3.847,0.90858,0.98109,2.4632,2.4105,7.6361,6.6289,13.6382,12.7654,2.9139,3.0453,3.5763,3.6566,3.4353,3.5511,1.4654,1.3913,3.5002,3.9726,9.3341,9.3937,2.6897,2.9706,2.117,2.1517,2.2332,2.4227,9.3087,9.5644,2.3034,2.3008,1.8737,2.1656,11.7388,11.9228,1.6953,2.1538,1.09,1.0907,12.9211,13.8689,5.0013,5.0618,7.5731,8.6879,3.7511,3.4955,9.4762,9.6116,7.0455,6.5395,7.8998,7.3576,3.3019,3.6143,1.299,1.3876,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd848,78,78,F,2.1015,1.9786,0.32035,0.38244,0.69194,0.71028,15.8248,2.6118,2.5326,39.8187,39.0957,11.5711,11.4985,176.0942,171.8839,1.979,3.0506,2.9228,0.74791,0.53907,26.0515,28.8535,1.3894,1.3178,3.0293,2.9421,5.7143,5.8428,4.0902,4.1604,0.06777,4.7754,2.0194,2.4327,0.32688,0.3312,3.7014,4.1335,3.6026,3.8616,1.6668,1.3184,10.7304,8.7758,2.4154,2.4884,3.3679,3.7099,3.8955,3.6357,1.2855,1.3851,1.5566,1.6097,3.3842,3.1838,5.7968,6.1889,1.7367,1.8472,5.1103,4.7521,8.7702,9.1264,6.6618,6.0849,2.0071,2.1137,4.3694,3.86,1.5529,1.5761,15.7474,15.7201,4.2694,5.6877,3.2251,3.8057,0.95977,0.85182,2.4632,2.0058,6.6045,6.2958,10.0935,10.6656,2.5506,2.3928,3.6227,3.6789,2.8424,2.6425,1.5467,1.259,3.7187,4.0705,9.1317,9.3708,2.5609,2.7702,2.1693,2.2421,1.9935,1.9753,9.4006,10.672,1.9698,2.1207,1.7793,2.1134,11.4599,10.5286,1.5884,1.7338,1.0284,1.0946,10.1465,11.176,5.0937,5.2665,7.8577,8.0317,3.8999,2.8583,10.1367,9.1754,4.9838,5.655,6.6937,6.1146,3.1455,3.5311,1.2277,1.4648,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd849,60,60,F,0.97219,2.0565,0.38153,0.38063,0.97399,0.84623,19.4632,2.8135,2.5286,51.4541,52.0429,18.9067,18.277,254.6872,247.5545,1.2058,3.4992,3.2413,0.32887,0.46701,11.6909,15.3654,1.7259,1.6719,3.5761,3.4843,7.1126,7.6406,4.9581,5.0079,0.07289,4.4949,2.382,2.8663,0.33999,0.41099,4.1539,5.0472,4.0903,4.5632,1.7178,1.4503,9.7824,8.7777,2.9195,2.9567,3.8336,4.0944,4.7084,4.5713,1.8976,1.9168,1.8574,1.7242,3.559,2.956,7.569,7.6213,2.1532,1.9996,6.4169,5.8914,11.4744,11.5464,7.9878,7.2098,2.1125,2.2419,5.0773,5.1775,1.8843,1.6231,18.328,18.6825,4.7554,5.4664,3.9278,3.7655,0.98736,1.2153,2.3972,2.3196,8.0824,7.4916,13.3617,14.0717,2.5344,3.1664,4.3442,4.2295,3.1595,3.2644,1.4257,1.407,4.0397,4.4781,11.0806,10.3925,2.9862,3.2821,2.4147,2.3505,2.0408,2.2906,9.4866,11.0974,2.3654,2.5279,2.3609,2.5141,11.9169,10.5878,1.8111,1.9181,1.1057,1.1544,13.8458,14.0631,5.6004,5.7898,6.9161,7.2648,3.9274,3.4882,9.7843,10.519,6.7545,7.4393,7.7964,7.8138,3.0513,3.8292,1.5259,1.5662,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd850,68,68,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd851,70,70,F,1.0932,2.2425,0.3887,0.43588,0.91609,0.95982,18.4167,2.8581,2.675,44.7195,44.5889,14.6141,14.6398,251.9128,252.6338,1.2058,3.5761,3.3564,0.55657,0.54806,10.4673,11.6214,1.5478,1.541,3.9886,4.086,7.756,7.9311,4.7729,5.0056,0.08487,4.1392,1.988,2.3516,0.41552,0.41668,4.1808,4.7719,3.946,4.0179,2.1901,1.8069,11.8125,9.3483,2.4207,2.6605,3.878,3.9291,3.9498,3.7017,1.7916,1.7909,1.9154,1.87,4.5784,4.7688,7.3327,7.0565,2.3084,2.3903,5.9596,6.2781,11.7404,10.958,7.6647,6.9586,2.6568,2.7017,4.4081,4.5886,2.2148,2.1793,22.3019,20.8553,4.8922,5.3035,4.4065,4.7389,0.92943,0.9641,2.3138,2.3554,9.9152,7.1431,14.1806,13.6412,3.4221,3.8664,4.1769,4.1586,3.5792,3.8995,1.7978,1.798,3.9334,4.3659,11.7754,10.8883,2.8142,3.1859,2.3575,2.3405,2.0334,2.3224,11.2743,13.2226,2.332,3.1392,2.0955,2.2557,12.2162,11.5328,1.7417,2.002,1.2963,1.2694,14.4276,16.593,5.6451,5.2538,7.8018,8.9635,4.0972,3.8687,10.0498,11.599,7.1523,7.1802,7.8027,6.5938,4.171,4.6862,1.3179,1.6621,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd852,62,62,M,1.5052,1.3377,0.30712,0.33326,0.83649,0.69515,16.544,2.5652,2.5483,43.9449,42.9074,13.3855,13.6731,212.1597,208.929,1.3533,3.0915,2.7707,0.8956,1.1214,15.8165,20.6888,1.5593,1.4265,3.0487,2.8827,7.159,7.2325,4.4644,4.6137,0.08415,4.5881,2.2288,2.1681,0.34728,0.35547,4.2948,4.7414,4.1263,4.2093,1.8843,1.5934,9.5333,8.2294,3.1718,2.9379,4.2217,4.4762,4.1589,4.5504,1.7632,1.5204,1.9982,1.924,3.6496,3.169,7.7755,7.3579,2.0385,2.2292,7.429,7.438,12.3609,11.5383,7.7182,7.1302,2.3294,2.1863,4.7913,4.8052,1.8397,1.8594,19.6031,19.2897,5.2269,6.3374,3.9577,4.1393,1.0051,0.9475,2.486,2.3596,7.6531,6.9455,14.1925,13.6718,3.2782,3.9967,4.5219,4.4089,3.4069,3.4449,1.6254,1.4114,4.074,4.5857,10.8558,10.6738,3.0069,2.9696,2.3548,2.2809,2.2996,2.4504,8.7594,10.6662,2.1629,2.4411,2.1189,2.1588,12.4119,12.0972,1.8633,1.9102,1.2947,1.3407,13.3067,13.7966,5.1681,5.3547,7.6196,8.7445,4.1901,4.0503,9.4148,9.8356,6.7222,6.5463,8.3288,8.0227,3.8343,4.1011,1.4135,1.6371,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd853,80,80,F,2.3475,2.391,0.29664,0.38052,0.6034,0.67411,14.6382,2.3546,2.3089,38.7047,38.2802,12.0467,11.9709,197.7947,196.9209,2.2209,2.4167,1.9484,1.7486,1.7941,23.1492,28.1178,1.432,1.2638,2.8986,3.0835,6.1144,6.1409,3.6911,3.898,0.0805,4.181,1.7952,2.0458,0.33936,0.3005,4.6707,4.6505,3.6969,3.9147,1.5075,1.2471,8.6533,8.8485,3.0485,2.7653,3.9039,3.891,4.4469,4.0269,1.2592,1.3182,2.1555,2.019,3.4434,3.3346,5.4139,5.7918,1.8534,1.9337,5.6825,5.4631,8.9138,8.6193,7.3677,6.8615,1.9596,2.0203,4.738,4.5531,1.682,1.6204,17.4139,16.2445,4.5417,5.3655,3.4487,3.5479,1.0387,1.012,2.7924,2.7079,6.8416,6.6186,11.7067,9.9508,2.7084,3.1951,4.1069,4.2322,3.2295,3.5374,1.3248,1.3629,3.5234,4.313,9.0214,11.594,2.3909,2.4191,2.2341,2.2164,2.1641,2.4295,9.367,11.4371,1.9221,2.1403,1.8789,2.2119,12.0222,11.0993,1.6953,2.1259,1.2357,1.2756,13.4212,13.1624,5.0381,5.045,7.5235,8.8565,3.8047,3.3078,9.4618,9.7759,5.8814,5.6658,6.5955,5.8248,3.0039,3.7665,1.2959,1.5241,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd854,80,80,F,1.6409,2.7372,0.30555,0.33023,0.78395,0.81137,14.6547,2.2592,2.3382,40.2388,41.3507,10.9827,12.8773,206.2201,206.531,1.2191,3.2514,3.4019,0.33228,0.41167,13.9526,13.7839,1.2456,1.2125,3.2393,3.1679,6.5442,7.2292,3.7435,3.9924,0.06589,4.4285,2.0161,2.0971,0.36629,0.33266,4.1763,4.6218,4.1115,4.6432,1.8172,1.5585,10.0875,9.7493,2.7775,3.0567,4.0193,3.7157,4.3022,4.0752,1.5072,1.6173,2.0011,2.2589,3.8675,3.4058,6.1386,6.4193,2.1371,2.0778,6.0584,5.984,10.5798,10.3478,7.1949,6.9034,2.3552,2.5257,4.3975,4.6175,1.7644,1.8793,19.209,18.4001,5.1387,6.3066,3.9101,3.9993,1.1758,1.1001,2.663,2.5839,6.7998,6.5047,14.5233,13.4344,2.4873,3.1963,4.2429,4.3095,3.8079,3.6112,1.5771,1.5799,4.0363,4.6815,10.2587,11.088,2.6072,2.8523,2.5382,2.5942,2.293,2.3988,11.0103,12.0117,2.3362,2.4188,2.1534,2.3548,12.5585,11.8217,2.0754,2.0344,1.0636,1.1654,14.2522,14.177,5.6586,5.2185,8.0531,10.1358,3.8384,3.5834,9.6149,10.121,7.7471,7.3592,7.1644,7.6207,3.69,4.2711,1.6302,1.8361,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd855,71,71,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd856,72,72,F,1.7667,1.9797,0.31573,0.33854,0.67783,0.61474,18.7678,2.5881,2.5641,45.9086,46.1134,15.7042,15.9902,208.0846,198.8349,1.6214,2.6549,2.3258,0.90852,0.85966,14.2137,16.0191,1.5049,1.5309,3.2527,3.2644,5.7264,6.0547,4.5223,4.8289,0.08606,4.8108,2.3064,2.7636,0.3093,0.32294,3.5363,3.9115,3.8572,4.3721,1.4615,1.3791,9.8024,8.2846,2.4333,1.8742,3.4909,3.9159,3.7092,3.0535,1.3537,1.3032,1.6704,1.6285,3.2878,3.1364,6.6711,6.5838,1.7754,1.8384,5.215,4.9948,9.9931,9.9434,6.3269,5.6364,1.8888,2.1125,3.6314,3.825,1.4951,1.5494,14.8746,15.3838,4.3704,5.1462,3.3717,3.3321,0.99442,1.1334,2.465,2.5823,6.5032,6.2902,11.4993,12.4296,2.2572,2.8097,3.3377,3.7054,3.1755,2.5717,1.3089,1.3053,3.2327,3.7294,9.385,9.2696,2.5166,2.6174,2.1301,2.1923,1.9935,2.0631,8.8208,9.8791,2.1918,2.4992,1.8823,2.0576,11.2482,11.6743,1.6495,1.635,0.9634,0.95781,12.5558,12.1091,4.7292,4.5871,6.5404,8.0408,3.3671,2.7485,8.6091,8.5418,6.1677,6.4641,6.4508,7.1199,2.9019,3.4214,1.3862,1.3991,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd857,,,M,1.472,3.2169,0.38885,0.42992,0.82482,0.86494,20.0511,2.6819,2.6265,49.5065,49.9543,15.1496,15.6105,237.9884,236.611,1.246,3.5596,3.2316,0.47477,0.51484,14.8505,13.1091,1.7228,1.6728,3.5761,3.6223,7.3645,7.6227,5.0649,5.3294,0.07369,4.6296,2.382,2.8765,0.40804,0.38032,4.6799,4.9207,4.2669,3.9313,1.6798,1.5551,10.0504,9.7867,3.1614,2.9878,3.9169,4.43,4.502,4.0704,1.7124,1.626,2.1566,1.9723,4.0767,3.7492,7.5756,7.2141,1.9633,2.0176,6.1063,6.7557,11.4472,11.1036,8.4702,7.7475,2.3783,2.4717,4.7105,5.473,1.7108,1.8075,18.9592,19.8121,4.4945,7.0699,3.6261,4.0288,0.96612,0.98826,2.3546,2.1265,7.7854,7.0902,14.0138,13.5247,2.6754,2.9439,4.0129,4.4058,3.279,3.0642,1.6501,1.5605,4.248,4.196,10.4165,10.5263,3.0706,3.2543,2.2009,2.3503,2.0456,2.008,10.1761,11.3632,2.5339,2.6346,2.1557,2.3748,10.7852,11.5403,1.7499,1.9056,1.1155,1.1942,13.4679,12.7089,4.886,5.0385,8.3976,8.9686,3.9274,3.2665,10.774,9.5985,7.9591,7.2714,8.5351,7.755,3.4577,3.6702,1.4193,1.5738,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd858,,,M,1.7034,1.8993,0.31335,0.33703,0.71488,0.67601,18.1835,2.7265,2.7446,48.3411,49.2031,16.2345,16.8369,237.2557,232.4672,1.141,2.9698,2.7257,0.66079,0.73466,11.8547,15.2159,1.5714,1.6395,3.5262,3.3507,6.4965,7.3519,4.6023,4.8988,0.08385,4.993,2.2037,2.5562,0.29742,0.32832,4.2767,4.5454,4.0004,4.317,1.7009,1.4917,10.0486,8.0967,2.4294,3.2637,4.011,3.8403,3.6178,4.3597,1.4097,1.2884,1.943,1.874,3.325,3.2919,6.8917,6.6305,1.9012,2.1122,5.7465,5.5668,10.6744,10.5973,6.5715,6.4755,2.0312,2.3518,4.7442,4.8081,1.7641,1.902,16.507,18.7104,5.0392,5.8975,4.0233,3.9559,0.87342,0.99913,2.4188,2.6003,7.7032,7.1206,12.4217,12.6961,2.4489,2.764,3.5847,3.5196,3.3692,3.1812,1.4955,1.5504,3.3725,4.0438,9.6544,10.0366,2.6595,2.8,2.1868,2.1073,2.2033,2.2465,9.3147,10.8421,1.9698,2.474,2.0531,2.1981,12.809,12.0868,1.8315,1.8519,1.0849,1.0635,12.2098,12.5947,5.3932,5.5811,8.2169,8.6658,3.7189,2.8281,10.4219,10.5249,7.3246,7.0146,6.5856,6.736,3.6364,3.6428,1.5697,1.5708,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd859,60,60,M,1.527,1.9196,0.29313,0.34214,0.77299,0.70882,17.8149,2.4425,2.4566,46.765,45.0515,17.1083,17.3113,256.3853,242.4689,1.2911,3.3142,3.0792,0.59421,0.68775,10.5676,13.5929,1.7259,1.6711,3.6701,3.518,7.0451,7.7499,4.5718,4.8195,0.08537,4.993,2.1997,2.3503,0.33087,0.35902,4.4763,4.6591,4.2539,4.2844,1.6968,1.3625,11.4685,8.6865,2.4207,2.8329,3.7151,3.9186,3.7056,3.734,1.4866,1.3036,1.9935,1.8592,3.559,3.2291,7.3593,6.7408,2.01,1.9112,5.9253,5.1279,11.8204,11.0469,6.7914,6.6889,2.1151,2.0384,4.5636,4.4832,1.861,1.8683,15.809,15.5037,4.8132,5.0603,3.5397,3.6194,0.95904,1.4141,2.4188,3.189,7.3403,7.4901,14.1504,13.0271,2.4538,2.7921,3.6132,3.5354,3.4362,3.8409,1.4573,1.3436,3.7538,4.1629,9.3632,10.0684,2.9048,3.0676,2.3395,2.4487,2.0699,2.008,8.8464,9.9287,2.3101,2.5449,2.1559,2.2557,10.8173,11.4156,1.7032,1.7918,1.1613,1.189,13.2791,12.771,4.9428,5.5021,8.0442,8.0248,3.9876,3.125,9.2928,8.9853,7.5752,7.1608,7.424,7.624,3.2606,3.3935,1.4217,1.6946,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd860,65,65,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd861,61,61,M,1.7028,1.6037,0.36092,0.3983,0.65252,0.68886,15.7424,2.8002,2.6672,38.9738,39.5897,11.4282,11.7522,234.1269,237.6217,1.141,3.1112,2.8485,0.66079,0.91831,14.7903,17.7497,1.7519,1.8629,3.5761,3.4552,6.2869,6.6129,4.2161,4.3401,0.07385,3.8533,2.1196,2.2169,0.35463,0.36817,3.6715,4.1722,4.1806,4.1184,1.5604,1.3434,9.1377,7.8755,2.1927,1.9707,3.988,3.8408,3.7056,3.3427,1.4815,1.2221,1.9935,1.8123,2.9622,3.0773,6.5553,6.5838,1.7813,1.6396,4.9555,4.7346,9.3723,9.1926,6.9363,6.6783,2.0816,2.1359,4.2057,4.4131,1.5406,1.4705,15.5214,16.3922,3.9415,5.6877,3.2182,3.3215,0.91562,1.063,2.0237,2.3819,6.6045,5.9829,11.7143,12.0173,2.0007,2.6631,3.7422,3.5443,3.341,2.9289,1.3937,1.4634,3.3779,3.8911,9.185,8.9996,2.7524,2.8399,2.482,2.3436,2.2011,2.141,10.5173,11.3986,2.0174,2.2222,2.033,2.2297,11.388,12.8559,1.737,1.8612,1.1365,1.1701,12.3623,11.8028,4.4519,4.6651,6.9975,7.4959,3.3415,3.0741,9.7064,9.2653,6.9532,6.6077,6.5402,5.9814,3.591,3.3372,1.1903,1.5632,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd862,71,71,M,2.0706,2.2637,0.37023,0.38864,0.81045,0.75047,17.6402,3.1894,3.0369,54.9233,56.7564,13.6561,13.9499,232.7685,222.6818,1.716,3.3798,3.0505,1.0738,1.4858,21.0918,26.646,1.5006,1.5011,3.5463,3.4564,6.633,7.0526,4.3893,4.6199,0.09914,5.1974,2.6203,2.8718,0.36829,0.37323,3.7742,4.4399,3.4672,3.6281,1.5817,1.3911,9.5111,8.7777,3.1718,3.191,3.5399,3.3978,4.3472,4.671,1.6222,1.366,1.6815,1.881,3.3102,3.1487,8.0084,7.7822,1.7307,2.0201,7.2177,6.6397,11.5999,11.5883,8.2312,7.704,1.9967,2.2887,4.3303,3.86,1.5406,1.5684,16.859,16.4964,5.2269,6.4362,3.5657,3.6965,0.94289,0.9423,2.4858,2.5647,7.0436,6.5059,13.5884,13.649,3.0322,3.6186,4.3736,4.4226,3.5666,3.337,1.5266,1.4893,3.9944,4.3122,10.2587,10.9135,2.8467,2.9739,1.6855,1.2675,1.9607,2.2076,9.7397,10.212,2.0795,2.3702,1.637,1.7846,11.7584,12.5788,1.6913,1.8999,1.1548,1.2082,14.1763,14.5737,5.101,5.415,7.7578,8.1767,4.5235,4.2588,10.1534,11.0686,6.6418,7.1655,7.6791,7.8138,3.4062,3.7784,1.3268,1.4479,,24,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd863,82,82,F,1.8968,1.9275,0.27647,0.36694,0.68677,0.6961,14.7621,2.5792,2.9367,41.1694,40.1862,11.702,12.2415,151.1903,158.4892,1.4826,3.1331,2.8579,1.139,0.88738,16.0835,21.1877,1.1776,1.2209,3.0887,3.1621,5.6364,5.863,3.6515,3.8679,0.07442,4.0235,1.9849,2.4515,0.37578,0.35033,3.3471,4.1262,3.3778,3.3318,1.2661,1.0733,8.4879,2.2506,2.9111,2.4976,3.8625,3.5908,3.7323,3.1737,1.4815,1.3406,1.7108,1.6942,3.0455,2.8694,6.8535,6.1208,1.6958,1.5903,5.9253,5.3593,9.9808,10.3489,7.171,6.3769,1.7066,1.9754,3.8262,4.1536,1.4788,1.5493,15.2981,14.3917,4.713,4.1832,3.2234,3.3636,0.94132,1.0822,2.1641,2.538,6.1655,5.7327,12.096,11.6458,2.6433,2.7213,3.5914,3.6566,3.0958,3.2162,1.0991,1.3048,1.3402,3.282,7.7055,7.6672,2.6424,2.7096,2.3245,2.2649,2.1442,2.309,8.9611,9.4049,1.9076,2.2202,1.9529,2.1863,10.105,9.6108,1.6339,1.722,1.0691,1.1654,11.7757,11.66,4.4519,4.7041,6.2754,7.4959,3.6278,3.0422,9.3058,0.58342,6.0969,6.8052,6.2694,6.366,3.0771,3.2268,1.3985,1.4327,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd864,69,69,F,1.2011,1.4205,0.30608,0.34025,0.60361,0.54267,13.0928,2.514,2.4613,36.4172,36.6688,9.9298,8.9953,181.8204,179.8191,1.2126,2.4152,1.9484,0.57092,1.0232,21.4528,21.4459,1.251,1.2571,3.286,3.5782,6.5442,6.9044,3.6257,3.6547,0.07313,3.7344,1.7938,1.9212,0.32452,0.32938,3.0547,3.5949,3.1181,2.9999,1.5496,1.3804,8.7165,7.0113,3.1924,3.0106,3.1309,3.0663,4.1653,3.8993,1.3618,1.0462,1.5935,1.4353,2.9789,2.8665,6.2614,4.8119,1.7245,1.8433,5.4694,2.918,9.4183,7.7384,7.2798,6.7321,1.8036,2.1365,3.8611,3.713,1.4358,1.3385,15.7992,17.3748,4.5609,4.7552,3.2653,3.6399,0.8214,0.99619,2.1498,2.2289,6.2184,5.4577,11.541,9.4157,2.3938,2.7173,3.7103,3.6077,2.8626,2.4846,1.2019,1.4754,3.2253,3.4659,8.3383,7.8937,2.4929,2.5184,1.8084,1.7432,1.878,2.2844,8.3505,9.53,1.9076,2.3422,1.6459,2.0326,11.3144,11.3458,1.6038,2.0657,0.91742,0.96288,13.8663,13.1403,4.5521,4.4989,5.992,7.6459,3.2066,3.0052,8.5565,8.9796,5.9102,5.9119,6.3501,5.0815,2.977,3.6681,1.3062,1.5251,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd865,,,F,1.5784,1.5346,0.36741,0.40093,0.83099,0.85018,17.753,2.5015,2.5391,48.342,47.9713,13.7119,13.6537,207.1482,204.3795,1.2083,3.307,3.1302,0.80831,1.0156,14.2,18.1597,1.427,1.5129,3.5454,3.5516,6.9977,7.3654,4.2758,4.4716,0.07533,4.5801,2.2438,2.4032,0.38388,0.39993,3.6059,4.2337,3.5875,3.9127,1.909,1.6815,10.2154,8.9469,3.6045,3.3301,3.7573,4.0186,5.3684,5.0645,1.6892,1.6321,1.9727,1.9523,3.6334,3.3553,7.0482,6.8061,2.0876,1.9665,6.2496,6.3901,10.5808,9.8852,8.7636,7.4205,2.3719,2.5448,4.408,4.4675,1.7502,1.678,18.2727,18.6825,4.983,6.1171,4.1763,3.8937,0.98811,1.4219,2.3888,3.2474,7.6251,6.397,14.2384,13.2393,3.0167,3.4076,4.6594,4.2157,3.8942,3.4918,1.7725,1.6183,3.596,4.0902,9.9252,10.1186,2.8747,3.1717,2.1158,2.0821,2.2332,2.4004,10.0432,11.527,2.3965,2.6607,1.9364,1.9086,12.0262,11.7937,1.9862,2.0038,1.2115,1.2128,15.1427,14.2914,5.2241,5.3888,8.8547,9.6355,4.6318,3.6876,10.2263,10.6301,7.5306,7.8476,8.0809,7.5228,3.8903,4.0228,1.3821,1.3711,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd866,80,80,M,2.1872,2.1181,0.38417,0.41475,0.86696,0.83459,20.4912,3.4004,3.1726,50.1687,50.7717,15.737,17.4503,203.3824,201.5569,2.3689,3.3327,3.1863,0.78974,0.6879,31.4071,25.9303,1.5391,1.523,3.5051,3.5956,7.1738,7.5892,4.8613,4.8368,0.06534,4.9834,2.3782,2.6146,0.40229,0.40543,4.6416,5.1973,3.817,3.9064,1.6874,1.3301,12.5335,11.0348,2.7035,3.0499,3.9415,4.4165,4.2944,4.211,1.9619,1.7173,1.7788,1.9959,3.5291,3.0266,8.055,7.7758,1.9445,2.0366,6.7979,6.9187,11.0295,11.0843,7.8035,7.1023,1.9676,2.2508,4.9316,5.0112,1.7,1.653,16.859,17.1496,5.3576,7.252,3.6591,3.8036,1.1898,1.1695,2.3862,2.5269,7.7507,6.6826,13.9812,13.3673,3.5384,4.0349,4.5026,3.9757,3.4978,3.138,1.4013,1.4428,4.1098,4.5808,10.9296,11.2111,2.921,3.0782,2.0896,2.0953,2.1988,2.1323,13.4065,12.296,2.0466,2.4391,1.9056,2.1104,11.7584,13.0542,1.7268,1.7595,1.2351,1.2325,13.5098,13.4751,5.1464,5.1503,8.5548,9.7432,3.961,3.5384,10.1525,12.2043,8.4167,7.5533,7.6168,6.8548,3.4093,3.7727,1.2649,1.3603,,28,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd867,60,60,M,2.3493,2.4455,0.43308,0.49147,0.93134,0.85018,21.6469,3.6279,3.5314,46.4131,47.2679,18.8763,18.4645,284.4215,276.5258,2.0269,3.538,3.2196,0.90656,1.0427,32.0154,32.1618,1.9706,1.9859,4.7141,4.7899,7.4638,8.0711,5.202,5.5824,0.08054,5.4007,2.2732,2.8658,0.3835,0.38335,4.3893,4.4582,4.8339,4.7265,1.7656,1.5801,9.9073,8.7777,3.4035,3.5363,4.4146,4.4055,4.2417,4.4845,1.7155,1.6145,2.2342,2.0348,3.371,3.1803,7.8367,7.2602,1.9635,1.936,6.9628,6.6613,12.2567,11.4929,8.5372,7.9027,2.3599,2.3374,4.4752,4.739,1.7108,1.844,19.992,20.8052,5.0555,6.9267,3.8657,3.7695,0.88156,0.99787,2.344,2.0501,7.8836,6.6826,14.6469,14.0719,3.483,3.5209,4.4752,4.5411,3.6103,3.0816,1.6749,1.4865,4.2319,4.4781,10.9155,11.6858,3.1435,3.6146,2.4717,2.6703,2.2298,2.6919,9.8726,10.8337,2.6013,2.4828,2.272,2.5655,11.6594,13.3605,1.9494,2.1182,1.1654,1.2197,15.517,14.2032,5.4234,5.2036,8.3038,8.6043,4.5806,3.4341,9.4148,9.7962,7.2375,7.1021,8.3288,7.9545,4.1776,3.9858,1.6556,1.6827,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd868,72,72,M,2.0706,2.2637,0.38777,0.40435,0.8276,0.86541,18.3098,3.1676,3.0369,52.0037,51.4787,15.2336,15.1132,201.0988,201.4843,2.3689,3.4166,3.3058,1.2206,1.4488,26.7043,28.7946,1.7131,1.7194,3.867,3.8835,7.55,7.42,4.8413,5.1026,0.09689,5.1249,2.4215,3.0942,0.39676,0.39221,4.7391,4.8237,4.1678,4.5723,2.076,1.7295,9.7225,8.8339,3.8459,3.742,4.1558,5.1241,5.8801,6.106,1.5758,1.602,2.2065,2.2823,4.0231,3.6712,7.4038,7.0828,2.0828,2.2221,7.4822,6.837,11.5377,11.666,8.4697,7.9692,2.5281,2.6402,4.2264,4.371,1.9883,2.1285,17.9113,19.7148,5.154,6.1152,4.1426,4.4401,0.96612,1.2153,2.2511,2.5312,8.2049,7.6371,13.918,13.7814,3.5262,3.9308,4.5601,4.7023,3.4648,3.5831,1.7034,1.8031,4.4736,4.6564,12.3452,11.7641,3.0706,3.2909,2.3321,2.5229,2.2714,2.4738,9.9635,11.4424,2.3298,2.5919,2.1415,2.6306,13.196,13.2148,1.9105,2.3804,1.2561,1.3543,15.111,15.0348,5.6393,5.1257,7.9455,8.7328,4.9498,3.4951,9.7753,9.875,7.8384,7.2975,6.996,7.5251,3.6594,4.372,1.6968,2.0798,,25,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd869,69,69,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd870,63,63,M,1.9176,2.1091,0.4137,0.47384,0.91497,0.89123,18.8247,2.9277,3.0375,45.176,45.438,15.3206,15.5578,253.6807,253.4884,2.9477,3.3869,3.1767,0.69059,0.9025,36.3593,37.077,1.7198,1.7534,3.8649,3.8847,7.2046,7.252,4.8194,4.9841,0.08981,4.9582,2.323,2.5881,0.42318,0.4264,4.4918,5.0472,3.8483,4.0315,2.0372,1.8239,10.7095,9.4514,3.5698,3.2663,4.015,4.6146,5.35,4.7596,1.7283,1.6232,2.038,2.0677,3.7273,3.7717,7.4872,7.5937,1.9854,2.187,6.3439,6.2247,11.2508,10.8291,9.3943,8.509,2.5671,2.6036,4.3943,4.7448,1.9134,1.9772,18.2068,19.0342,5.1518,6.6525,4.2446,4.3651,1.3779,1.2987,3.2335,2.9585,8.4822,7.2885,13.8898,12.9054,3.2392,3.8769,4.8417,4.9457,4.0885,3.7346,1.5771,1.5065,6.1239,4.9147,11.7102,11.9548,3.145,3.5232,2.5604,2.2563,2.3964,2.2755,11.1617,13.0189,2.703,2.6048,2.2918,2.4632,13.5707,13.6084,2.0276,1.8219,1.2814,1.4349,16.0842,15.5816,6.3984,6.056,9.0707,8.8749,4.5474,3.7044,13.3909,11.403,7.6178,7.0818,8.0704,7.75,3.9717,4.4532,1.5173,1.983,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd871,,,F,2.0768,2.5948,0.36363,0.35028,0.84517,0.71981,16.0109,3.0755,3.1086,42.0515,42.0877,13.5409,12.9644,197.4064,189.4892,1.9862,3.3311,2.9947,0.69365,0.63192,19.6009,23.2024,1.4299,1.4602,3.6679,3.4916,6.3384,6.5824,4.2283,4.3714,0.07934,4.8972,2.2339,2.3701,0.33923,0.37418,3.8518,4.591,3.5452,4.0342,1.5504,1.3386,10.2379,9.8088,3.0958,2.7666,3.878,3.6886,4.2182,4.0038,1.6422,1.4878,1.9458,1.8215,3.5291,3.2919,7.2356,6.8239,1.7508,1.6632,6.3686,5.8721,11.6078,9.5404,7.5401,6.6031,2.0793,2.0882,4.4849,4.5669,1.6494,1.575,16.5415,17.0596,5.1762,6.1279,3.4302,3.2221,1.0589,1.0988,2.3305,2.5173,7.6361,6.9862,14.3111,12.9115,2.2015,2.8955,4.354,4.5263,3.1579,3.0444,1.4382,1.3442,4.063,4.4731,10.5467,10.3525,2.8322,3.0236,2.1635,2.2243,1.9107,1.8554,10.4538,11.5164,2.1166,2.2599,2.0752,2.0593,11.7555,11.3869,1.7301,1.7658,1.1007,1.189,12.0196,12.5947,5.4666,5.566,7.8463,8.5608,3.7321,3.2341,9.484,9.0935,7.09,7.1959,6.9358,6.8223,3.3832,3.5823,1.3181,1.3773,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd872,65,65,F,1.0614,1.4405,0.36405,0.40995,0.81057,0.82268,18.3313,2.9817,2.9707,44.0934,43.9793,14.8142,15.0095,245.9835,238.2906,1.22,3.5596,3.2985,0.59421,0.47243,11.3418,10.2416,1.5444,1.6363,3.4573,3.6449,6.8266,6.9732,4.5649,4.6879,0.07949,4.3915,2.2948,2.4388,0.36306,0.35821,4.1037,4.5147,4.2348,4.2786,1.6987,1.4512,10.0514,9.2074,3.0493,2.8827,3.5958,3.7952,4.2102,4.0006,1.5804,1.5448,2.1566,2.0336,3.564,3.3493,6.8047,6.5105,2.08,1.9996,5.7922,6.0722,10.6118,10.4842,7.6388,7.1455,2.1234,2.2633,4.3525,4.4611,1.7549,1.8075,17.3403,18.3061,4.796,6.0522,3.7853,3.6766,1.0214,0.96672,2.3888,2.1904,7.3406,6.8634,13.4647,13.7917,2.5854,3.2549,4.1069,4.4299,3.8623,3.2087,1.4896,1.4648,3.5177,3.9719,9.1677,9.5133,2.8675,3.1765,2.4073,2.269,1.9296,1.9848,9.0742,9.7572,2.3338,2.3013,2.1534,2.2512,10.6811,10.9252,1.7676,1.6056,1.1606,1.1536,13.516,12.771,4.854,5.198,8.4112,7.6319,3.7911,3.5643,10.1847,9.225,7.3246,7.2427,7.3667,7.2536,3.3444,3.4992,1.3417,1.4384,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd873,81,81,F,1.4798,1.5609,0.38358,0.41475,0.77349,0.77227,16.7031,3.0643,2.8676,45.5968,43.6805,13.9034,14.2481,217.6717,213.0487,1.6396,3.2954,3.0874,0.66256,0.55524,16.018,19.0497,1.457,1.5196,3.7696,3.8361,5.9398,6.4181,4.1648,4.3251,0.07934,4.7098,2.1287,2.5773,0.41347,0.4058,4.1933,4.8432,4.9269,4.7371,1.9518,1.6657,8.8971,9.0173,2.8613,2.868,4.3265,4.1455,4.4505,4.5504,1.6425,1.4891,2.0685,2.1359,4.1379,3.5694,6.6917,6.4318,2.5485,2.4275,5.9378,5.9854,10.4518,9.954,7.6982,7.1527,2.5124,2.666,4.2825,4.7563,2.0599,1.9973,20.0624,20.0958,5.1453,6.3498,4.3562,4.5683,0.94556,0.9325,2.4188,2.346,8.988,7.6754,13.9152,12.9215,2.5729,3.1664,4.1226,4.2771,3.3994,3.6752,1.6807,1.7989,4.2673,4.7197,10.9832,11.0417,2.8919,3.0748,2.6035,2.749,2.4047,2.5125,10.9578,12.4163,2.6482,2.5913,2.3015,2.6993,13.2599,13.6239,1.8179,2.2683,1.5733,1.6854,14.6949,14.7676,5.3775,5.8481,8.22,8.974,3.8384,2.8841,10.5224,9.9203,7.1187,7.0542,7.1507,7.5036,3.7857,4.3223,1.6525,1.8194,,26,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd874,66,66,M,1.1435,2.1299,0.3977,0.4778,1.056,1.0069,22.1157,2.7823,2.6904,51.3774,52.0304,16.0141,16.8806,256.5174,250.6816,1.2455,4.0002,3.6457,0.58957,0.43567,11.473,13.7019,1.7834,1.7725,3.8407,3.6648,8.0712,8.0618,5.139,5.4263,0.08805,5.0304,2.3995,2.5833,0.45814,0.40079,4.2134,5.3928,3.9685,4.8254,2.0372,1.6474,10.5744,10.3589,3.6929,3.4526,4.3899,4.5471,5.6221,5.8708,1.9833,1.8749,1.8946,2.0053,4.1304,3.9239,9.1032,8.7704,2.4681,2.3284,8.0131,7.2915,13.5794,13.6062,8.7891,8.1756,2.6568,2.5033,4.9646,4.8757,1.9726,2.0564,19.6963,20.819,5.8797,6.7807,4.31,4.5908,1.1411,1.282,2.9708,2.7667,8.8638,7.8222,16.5453,16.8572,3.9931,4.0078,5.5638,4.6758,3.4054,3.481,1.7694,1.5283,4.3129,4.8597,10.3351,12.2321,3.1361,3.4088,2.2122,2.3784,2.415,2.3546,11.3381,11.9307,2.3298,2.6807,1.9903,2.2659,13.4291,13.5479,1.8808,2.1538,1.3468,1.4984,15.4497,14.708,5.2916,5.3351,8.4487,10.3903,4.8871,3.9117,11.0118,12.7536,8.4401,8.8837,9.1299,8.5049,3.6955,4.0978,1.4169,1.7699,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd875,68,68,F,0.63477,1.5445,0.40736,0.44415,0.75901,0.71771,17.5233,2.9065,3.1461,44.8393,44.7677,14.3962,15.1274,209.4883,207.8898,1.0371,2.9507,2.5608,0.39387,0.33279,7.0678,9.9204,1.4574,1.4822,3.4455,3.5655,6.0902,6.2616,4.1289,4.4119,0.06836,4.0109,1.9299,2.399,0.36176,0.37595,3.9314,4.4354,3.5168,3.5419,1.6552,1.488,8.2161,9.3719,2.912,2.8997,3.8895,3.818,4.0174,4.3568,1.5285,1.3036,1.9458,1.9933,3.4031,3.0718,7.1564,7.1098,1.978,2.0461,6.4061,6.2311,11.1006,10.8506,7.2789,7.0679,2.1403,2.3551,5.2099,5.5488,1.6742,1.7134,16.7566,18.5287,4.7811,6.0806,3.6826,3.9559,0.97367,1.0092,2.6087,2.4369,6.8416,6.5407,13.2145,13.4995,2.3724,2.8215,3.9841,4.0772,3.3518,3.2598,1.4922,1.5144,3.77,4.1238,9.588,10.0684,2.5645,2.7096,2.1334,1.9634,2.0672,2.1097,11.2679,12.3052,2.2627,2.1522,1.7444,1.9291,11.5031,12.0331,1.7366,1.6488,1.0058,1.0628,13.2317,14.0778,5.2838,4.6608,6.883,8.9568,3.9162,3.0325,9.4371,9.5487,7.3514,7.1363,7.8998,7.4704,3.6826,3.8071,1.2368,1.3092,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd876,68,68,F,2.1805,2.7178,0.31472,0.33023,0.77445,0.81137,14.6547,2.7801,2.4307,42.9428,43.9089,12.9884,13.0713,195.6757,188.5754,1.9235,3.175,3.0452,0.73085,0.63192,13.6796,16.1431,1.4291,1.4771,3.5762,3.5353,6.0502,6.2609,3.9488,4.2762,0.08394,4.2673,1.8461,2.4289,0.34048,0.34711,3.6096,4.1264,3.6498,3.8348,1.5942,1.5289,9.8747,8.3938,3.0958,3.0693,3.3527,3.3355,3.9531,4.1558,1.5769,1.6001,1.8219,1.7303,3.2989,3.3483,6.4975,6.5746,1.8877,1.9966,5.9135,5.7301,9.8718,9.9986,6.5107,6.2854,2.0816,2.3027,4.0959,4.3599,1.5347,1.5583,16.1322,14.1337,4.713,5.555,3.4976,3.6339,0.89696,1.0474,2.364,2.5646,6.9458,6.6387,11.5183,11.8295,2.515,2.7739,3.3919,3.5657,3.1999,3.5001,1.5673,1.3746,3.2455,3.7294,8.8549,9.2696,2.8251,3.2521,2.2541,2.1665,1.8432,1.9191,8.5765,9.6645,2.2909,2.42,1.9201,2.0608,10.1462,11.1387,1.6205,1.6453,1.0866,1.0907,12.9211,12.274,4.4488,4.8888,6.9255,7.0687,3.3701,2.814,8.6881,8.8161,6.3171,6.252,6.6768,6.3182,3.1721,3.6013,1.4013,1.3716,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd877,,,M,2.0909,2.2191,0.38502,0.35447,0.81126,0.72388,18.3098,3.0755,2.7933,50.1061,50.4537,14.1435,14.4678,200.6661,184.7551,1.764,3.101,2.6057,1.591,1.0467,22.4678,18.2188,1.4935,1.5513,3.909,3.518,6.1977,6.4279,4.5574,4.6879,0.07497,5.0099,2.407,2.6814,0.35492,0.37066,3.209,3.5812,3.9487,4.4858,1.5475,1.4082,9.2071,6.9954,3.0371,2.9703,4.0917,3.6261,4.518,4.3734,1.6222,1.5179,1.6729,1.6617,3.2431,2.6873,7.5272,7.3659,1.7245,1.7877,6.6976,6.8599,11.3922,10.95,8.1911,8.0794,2.2187,2.2914,4.7066,4.5076,1.4837,1.4987,16.4094,16.2403,4.6992,6.1699,3.3669,3.4941,1.0464,1.2771,2.3815,2.9948,6.5291,6.1179,12.97,13.0084,2.6868,3.2931,4.3736,4.473,3.1755,2.5717,1.6624,1.4297,3.8402,4.0047,10.4938,10.1569,2.8099,2.9862,2.0868,2.1921,2.2662,2.3133,9.3692,10.283,2.3077,2.3788,1.9324,2.0954,11.1179,12.313,1.9433,1.7118,1.0968,1.1767,14.0128,13.9615,5.0658,4.7219,7.36,8.3409,3.6124,3.1314,8.6424,9.6846,6.8314,6.2275,7.0973,6.3763,3.5756,3.4373,1.512,1.5591,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd878,71,71,M,2.0772,1.4758,0.37982,0.43293,0.93709,0.94991,20.181,3.2752,2.9293,52.995,52.2641,16.4498,16.2637,247.6455,246.0271,1.7044,3.6778,3.6642,0.70585,0.67293,21.7979,17.1651,1.7454,1.7342,4.0497,4.0091,7.7925,8.0582,5.0063,5.26,0.09689,5.2348,2.5519,2.9434,0.43993,0.44274,5.0084,5.2022,4.4509,4.8387,1.9744,1.6462,11.4297,10.0604,4.1188,3.6443,4.8738,4.7696,4.8737,4.5748,1.6968,1.7971,2.0089,2.1978,4.4508,4.1805,8.4549,7.8643,2.6917,2.6585,7.6351,7.2262,13.1325,11.4929,9.3591,8.0698,2.4377,2.5305,5.1262,5.7283,2.1863,2.0756,20.0268,21.7276,5.9832,6.6154,4.2119,4.4957,1.1411,1.1174,3.1823,2.9585,8.7517,8.3609,16.2367,14.9929,2.9965,3.4704,4.7004,4.8982,3.7074,3.5426,1.6262,1.7338,4.3933,4.8453,11.5462,11.1584,3.139,3.4822,2.771,2.9735,2.7449,2.4931,10.5419,10.4781,2.7286,2.7716,2.3361,2.8207,13.884,13.7414,2.4477,2.462,1.564,1.5834,15.8807,17.1693,5.8817,6.4636,9.1853,9.0905,4.6967,4.0134,12.2937,12.6052,8.1598,7.825,8.4958,8.0872,4.2226,4.3416,1.7308,1.9795,,30,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd879,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd880,66,66,M,1.251,1.8593,0.37286,0.42741,0.82078,0.90388,17.1853,2.8077,2.96,46.5868,47.4475,13.5201,13.9499,225.4359,218.0444,1.2586,3.1369,3.0149,0.45832,0.51393,9.5783,12.0729,1.5304,1.5138,3.5115,3.6449,6.7928,6.6585,4.3009,4.7452,0.08624,4.2532,2.022,2.6622,0.41216,0.39466,4.4166,4.8014,4.2447,4.3722,1.7177,1.4379,9.3977,9.8993,2.9195,2.8047,3.7906,3.8715,4.2877,3.813,1.5682,1.7455,2.1043,2.0412,3.4943,3.1806,7.6467,8.0186,2.0366,2.1409,6.2792,7.0398,10.8778,10.9211,7.5911,6.6398,2.3599,2.3699,3.9635,4.5407,1.7524,1.8185,17.5795,17.4076,5.3002,6.1699,3.7024,3.7771,0.90858,0.93811,2.8094,2.3054,8.1367,6.5107,13.5532,13.4995,2.1297,3.1687,3.842,4.1242,3.4657,3.4197,1.7098,1.5647,3.6622,3.9552,9.9622,9.7498,2.8314,3.1626,2.1732,2.4427,2.2654,2.1822,9.5323,11.7492,2.384,2.6404,2.0533,2.3763,12.4595,12.1891,2.1247,1.8478,1.1711,1.2389,12.8794,14.6558,6.055,5.6865,7.5626,8.7829,3.6085,3.151,9.6993,10.121,6.7893,6.5463,6.996,7.0982,3.7483,4.2773,1.5695,1.5876,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd881,72,72,F,1.6456,2.2936,0.40132,0.46555,0.9344,0.92369,17.5546,2.9449,3.1851,44.3271,45.1092,13.5453,13.8831,186.3442,192.0136,1.6254,3.8423,3.3804,0.66879,0.51725,14.9264,18.9404,1.3688,1.3672,3.8316,3.816,7.1738,7.3633,4.5974,4.7553,0.07026,4.5422,1.8435,2.1089,0.40885,0.4067,4.1313,4.8562,4.3377,4.8321,1.8884,1.6648,9.3369,8.9824,3.5374,3.319,4.0193,3.786,4.8267,4.7116,1.7926,1.6611,2.2107,2.1097,3.7522,3.4696,8.1226,7.9662,2.219,2.1023,6.9008,6.9697,12.1398,12.2691,8.6053,7.4604,2.3951,2.5063,4.7042,5.3641,1.9521,1.9734,17.3549,17.1806,4.9671,5.6858,4.0221,4.0323,1.156,1.2433,2.6034,3.0645,8.5634,7.7965,15.1456,15.5946,3.7035,4.0329,4.5219,4.6343,4.0695,3.7375,1.6667,1.5328,4.496,4.9118,11.4914,10.8734,3.1184,3.3717,2.1884,2.2734,2.1185,2.1323,11.533,12.5624,2.6451,2.7005,2.154,2.3556,12.3971,13.6959,1.9862,1.9479,1.2255,1.1468,16.7818,15.7859,5.6699,5.6432,8.1332,8.526,4.958,3.9864,11.3807,11.3682,7.4,7.7847,7.8548,7.2254,3.4307,4.0353,1.5882,1.6345,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd882,70,70,M,1.6679,1.4877,0.39026,0.43782,0.69111,0.70386,19.6163,3.2466,3.1512,49.1356,50.3468,15.6101,16.6198,260.1334,255.7585,1.2276,3.2393,3.135,0.76519,0.64214,12.6832,16.1099,1.8269,1.8629,3.9218,4.0653,7.4658,7.6321,4.8753,5.2435,0.10334,5.2514,2.4024,2.8167,0.42742,0.4264,4.7016,4.9002,4.2007,4.5723,1.8632,1.5635,9.5249,10.7998,3.1995,3.5363,3.9933,4.1715,4.6508,4.5407,1.2497,1.4181,1.9989,2.1736,3.7478,3.5344,6.7401,6.8529,2.2117,2.4717,6.2894,6.1346,11.3758,10.8031,7.9472,7.7973,2.5819,2.2855,5.1262,5.4779,1.8932,1.8628,17.1216,19.7148,4.8301,6.9096,3.9216,4.2172,1.5388,1.3141,2.9385,2.9983,7.8924,7.1463,15.7108,13.1422,3.1577,3.7877,4.1829,4.1715,3.1299,3.1072,1.7572,1.3119,3.9231,4.479,10.9355,11.3682,2.7692,2.9561,2.4656,2.4726,2.3964,2.5135,12.1475,12.4476,2.6482,2.3817,2.1712,2.3124,12.73,12.5431,1.8814,2.599,1.1512,1.2673,14.1941,13.1412,5.308,5.7857,8.3019,9.2497,4.3969,3.2927,10.3715,11.7028,7.7577,9.3392,7.2679,7.01,3.7217,3.3907,1.5318,1.7801,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd883,70,70,M,2.5509,3.1783,0.37308,0.39586,0.84541,0.81119,19.4224,2.8121,2.1129,46.8023,46.8547,15.0782,15.2435,224.5213,219.4771,2.2756,3.6912,3.5098,1.2856,1.1149,22.5744,29.5189,1.4988,1.4886,2.8927,3.0362,6.0941,6.5669,4.7781,4.9542,0.08025,4.5608,2.1004,2.5511,0.3742,0.38035,4.6559,4.6875,3.8871,4.0682,1.6038,1.6095,10.6055,9.7323,2.8461,2.7771,4.0736,4.2559,4.7321,3.9091,1.5559,1.502,1.9638,1.9358,3.7183,3.7713,7.6522,7.1392,1.9459,1.9547,6.5007,6.005,11.9638,11.2543,8.3185,7.868,2.1412,2.3243,4.5636,4.4916,1.6433,1.695,18.2191,18.5906,5.1518,6.275,3.6635,3.7203,1.1664,1.016,2.3258,2.4038,7.4436,7.3763,14.637,13.9554,3.0109,3.1313,4.5601,4.4762,3.4353,3.3294,1.6097,1.4794,4.1532,4.675,10.3175,10.822,3.0398,3.1765,2.5824,2.3193,2.4464,2.4722,9.5763,11.1207,2.3824,2.4914,2.3544,2.288,11.1179,11.5614,1.9259,1.9948,1.1141,1.225,15.211,14.3161,4.9108,4.9431,7.1919,8.8281,4.1277,3.2117,10.0276,9.5776,7.6795,7.6438,8.3084,8.3414,3.6393,3.7475,1.6167,1.5867,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd884,87,87,F,2.5154,2.5393,0.21445,0.28135,0.18236,0.55213,14.5561,1.7629,2.0902,32.5484,31.3093,10.8299,9.2054,153.3452,160.0347,2.9439,2.239,2.2563,1.0796,1.3042,27.4336,28.4876,1.2695,1.2944,3.0357,2.973,5.5596,5.6835,3.6233,3.8961,0.06724,4.1212,1.8031,1.7352,0.13799,0.2964,2.9398,3.2967,3.3663,3.583,1.3535,1.1725,8.1557,7.8407,2.9268,2.6632,3.175,3.1499,3.4139,3.7213,0.84711,1.0768,1.5568,1.4596,2.7222,2.6506,4.8245,4.8119,1.727,1.8205,4.9759,2.918,7.4539,6.8215,6.5107,5.6824,1.8215,1.7392,3.9639,3.5202,1.3545,1.3417,14.6268,14.4036,3.9047,4.8218,3.2287,3.2347,0.86595,0.94701,1.9498,2.0881,5.4504,4.8291,8.7517,9.1824,2.2858,2.9097,2.8718,2.673,2.482,2.5914,1.2201,1.1608,3.446,3.6676,8.6133,9.1429,2.1394,2.0225,1.8917,2.154,1.6795,1.946,8.5484,9.8218,1.866,2.0093,1.7391,2.1863,10.0649,10.4778,1.577,1.6307,1.0735,1.1272,11.4221,11.143,4.5521,4.5588,7.0421,7.4277,3.785,2.3676,9.1786,7.8501,5.9671,5.4729,5.0697,4.5637,2.9765,2.7339,1.2863,1.4902,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd885,67,67,M,1.0532,1.6573,0.46576,0.48466,1.0622,1.0282,22.1157,4.0632,3.6921,56.0955,55.6083,18.656,19.2974,334.9526,310.1523,1.4649,4.58,4.4519,0.39685,0.34487,8.7032,8.6635,2.0607,1.9859,4.5594,4.534,8.9716,9.0064,5.4829,5.7108,0.08055,5.0304,2.4745,3.567,0.4509,0.46534,4.4445,5.2964,4.6159,4.9035,2.048,1.7468,12.0024,9.9564,5.0955,4.4077,4.7146,4.7696,6.4285,5.3388,2.1282,1.9877,2.2817,2.0682,4.5707,4.2203,8.7955,8.6057,3.6083,3.5482,7.6633,7.365,13.3031,13.2035,9.6405,9.5357,2.6568,2.6402,4.9104,5.1103,2.1403,1.9903,21.0876,20.5668,5.9957,7.1985,4.4177,4.6553,1.1411,1.2664,2.8182,2.7667,8.9508,8.6131,16.6346,15.8939,3.881,4.0524,4.8151,4.8903,4.1295,3.6497,1.7793,1.7338,4.5817,5.0762,13.1268,14.0712,3.6548,3.5234,2.6001,2.575,2.5521,3.0561,11.659,13.0106,3.0954,3.0354,2.5621,2.8625,13.3159,15.0108,2.0353,2.9278,1.4563,1.4624,15.7713,17.4915,5.8817,5.6941,8.6646,10.9412,5.1129,4.8233,12.5316,11.8495,9.075,8.9813,9.2186,8.911,3.7601,3.9737,1.6655,2.1845,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd886,66,66,M,1.4915,2.0764,0.42297,0.46538,0.90623,0.93788,19.6638,3.3844,3.3032,48.2352,47.8952,15.4842,15.6173,233.7051,232.5789,1.5208,3.6945,3.4613,0.9219,0.49127,9.9975,10.2369,1.5714,1.5518,3.8423,3.827,7.7315,8.0637,4.6489,4.9773,0.08168,4.9937,2.2895,2.9146,0.40645,0.40558,4.3311,4.7275,4.2808,4.2118,1.9291,1.8123,10.9565,9.3998,3.6757,3.3525,4.3249,4.1255,4.9726,5.1473,1.7,1.875,2.0311,2.0205,3.7271,3.5514,7.5378,7.6979,2.1663,2.2053,6.825,6.6334,12.2189,11.8957,8.0599,7.7994,2.4443,2.7728,4.1448,4.5369,1.8996,1.825,19.933,19.5969,5.92,6.4618,4.2496,4.7389,1.1188,1.0477,2.647,2.756,7.8987,7.3397,14.6283,14.356,3.3883,3.7877,4.4323,4.6383,3.908,3.6147,1.7725,1.7031,4.044,4.5085,10.7119,11.3595,3.0328,3.3871,2.4554,2.2345,2.409,2.6758,9.7332,12.15,2.5524,2.9716,2.2822,2.4308,12.9718,13.4365,2.1401,2.2746,1.2297,1.2694,15.8016,16.071,5.3815,5.6419,8.3976,9.0967,4.2807,3.4659,12.0364,12.3787,8.4022,7.5473,8.5756,8.0934,4.2047,4.0109,1.5527,1.6944,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd887,59,59,F,1.6007,1.9337,0.37607,0.4225,0.8916,0.82955,15.3848,2.9039,2.7928,38.3685,36.1023,10.7408,11.7116,214.4995,213.9673,1.6202,3.5215,3.1606,0.66404,0.67355,16.3604,16.0797,1.6061,1.5537,3.5593,3.5929,6.1079,6.6574,4.2378,4.4331,0.0694,4.0379,2.1196,2.1231,0.38647,0.38685,4.4387,4.8887,3.9127,4.0412,1.5457,1.4604,10.1467,8.8426,3.5335,3.107,3.9695,4.1159,4.371,4.1656,1.6926,1.6122,1.9335,1.9798,3.5291,3.2042,7.3344,7.0611,2.0366,1.948,6.9569,6.9697,10.5811,10.0437,8.1686,7.5859,1.9201,2.162,4.4148,4.851,1.8225,1.7827,17.1404,18.6146,4.7657,6.1406,3.7157,3.5533,0.95943,1.0459,2.4555,2.3342,7.9264,6.5107,14.8903,13.5201,3.5384,4.0349,4.639,4.4217,3.43,3.6112,1.4236,1.5727,4.1098,4.2848,10.3697,10.027,2.8168,2.9691,2.198,2.1786,2.1039,2.3988,9.4488,11.4371,2.0584,2.0134,2.1557,2.3556,11.5031,12.0145,1.8444,1.9298,1.2562,1.2992,13.2127,12.6499,5.3515,5.2036,7.8793,8.7663,4.5894,3.8479,10.4796,9.5167,7.3433,7.2427,7.6691,7.062,3.1629,3.7906,1.3547,1.5839,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd888,60,60,F,0.73794,1.6016,0.40736,0.44492,0.94447,0.94991,18.0477,3.5023,3.292,48.463,49.2031,14.6903,15.24,257.0058,252.8184,1.0269,3.3784,3.2768,0.343,0.35349,7.8019,9.3953,1.8399,1.8908,3.8073,3.8729,6.39,6.9475,4.8238,5.029,0.07632,4.4512,2.2438,2.4322,0.38702,0.3918,4.3045,5.3101,4.4397,4.2475,1.9153,1.6783,10.9138,9.6717,2.4294,2.614,4.1462,4.1255,3.6178,3.9624,1.8605,1.8557,2.0912,2.0677,4.0056,3.6493,7.5062,7.5396,2.4263,2.3994,6.9142,6.4482,11.5048,11.8586,7.5873,7.109,2.2997,2.611,4.8757,5.164,1.9441,2.0881,19.4145,20.5315,5.7983,5.3124,4.35,4.5683,1.0923,1.2561,2.8408,3.182,8.3169,7.2885,14.7468,14.8265,3.2252,3.7458,4.3511,4.2138,3.4069,3.34,1.8635,1.6058,4.044,4.5911,10.7143,11.103,3.026,3.2149,2.3262,2.2624,2.4349,2.6774,10.5252,12.5361,2.4149,2.6879,2.1469,2.3318,14.0005,13.0547,2.0353,2.1005,1.2573,1.3638,14.5903,14.8471,5.7812,5.4671,8.188,10.0223,3.9499,3.5935,11.0128,11.1672,7.1836,7.8687,8.3394,8.0872,4.1919,4.0681,1.6639,1.659,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd889,58,58,M,2.3607,1.9842,0.49233,0.53321,1.0192,1.0531,20.2776,3.3473,3.4016,52.7122,51.7924,17.4447,17.357,258.846,252.6338,2.1323,4.0554,3.7722,0.68499,0.9025,24.7413,33.0922,1.8024,1.7408,3.5557,3.8527,7.9044,8.0582,5.3512,5.594,0.08927,5.3954,2.3239,2.8917,0.40882,0.41598,4.6817,4.911,4.4356,4.5521,1.7857,1.5044,10.1484,9.8771,3.7575,3.4106,4.1462,4.7189,5.917,5.1157,2.0086,1.9169,1.8845,1.946,3.5908,3.1803,7.5841,7.4051,1.8657,1.936,6.825,7.4654,11.9546,11.192,9.3943,8.509,2.3287,2.3452,5.0145,5.2531,1.8095,1.8406,18.0466,17.8445,4.8565,5.6858,3.4898,3.5057,1.2881,1.1793,2.831,2.9983,8.0218,6.5107,14.7521,13.8944,3.6274,3.8397,4.5189,4.5039,3.3178,3.0519,1.6705,1.5123,4.5414,4.8769,12.6383,13.0153,3.1361,3.4016,2.8244,2.5598,2.4104,2.7765,11.3381,13.1292,2.2138,2.4641,2.3959,2.2754,13.0102,13.1306,1.9454,2.5205,1.2901,1.3205,15.3155,14.4207,6.0924,6.0104,8.8275,9.1517,4.6967,3.6511,10.3849,12.624,9.075,7.8241,8.5504,7.9834,3.7217,3.8601,1.737,2.0155,,27,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd890,56,56,M,1.6205,2.0832,0.49537,0.54456,1.2526,1.0289,20.0813,3.856,3.6104,52.7122,51.8798,17.3021,17.5743,267.6691,262.7257,1.7918,3.7434,3.4854,0.52761,0.54061,19.8907,27.1511,1.7185,1.6728,4.2333,4.534,7.6391,7.8519,5.0187,5.3992,0.08788,5.1347,2.4335,2.8551,0.56403,0.48888,5.3921,6.5134,4.6571,4.9237,2.0206,1.8539,11.7868,10.561,3.8322,3.8687,4.9595,4.6986,4.8737,4.4561,2.4117,2.055,2.4437,2.3582,4.3098,4.2753,8.2928,8.4139,2.6615,2.6585,7.3665,6.8257,13.5076,13.5711,9.1203,8.122,2.6408,2.8515,7.0872,6.2151,2.1883,2.2429,21.7039,21.2659,5.5976,7.3017,4.4547,4.5409,1.1047,1.3434,2.8166,2.8053,10.1452,7.9306,16.1292,18.2389,2.7271,3.6621,4.8557,4.8013,4.0271,3.5479,2.014,1.8448,4.6583,5.4421,12.0215,12.1484,3.6548,3.8127,2.6035,2.5927,2.9821,3.1049,10.778,12.6904,2.7286,2.754,2.5449,2.7172,11.0075,12.0834,2.3606,2.4655,1.3198,1.2201,16.5771,15.2985,6.2281,6.0604,9.415,10.9412,5.0079,4.0462,11.2573,10.4451,9.6366,8.8713,8.9394,8.6315,4.1643,4.5874,1.8468,1.7715,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd891,76,76,M,2.7779,2.2981,0.3829,0.40435,0.83472,0.82841,15.6103,2.3084,2.1381,39.8187,41.3138,12.526,13.4096,214.4995,209.6925,1.8625,3.3738,3.0683,2.333,2.2641,27.8541,32.0552,1.402,1.3743,3.4449,3.6449,6.06,6.431,4.1089,4.3835,0.05934,4.7314,2.1931,2.2823,0.37608,0.36925,3.6959,3.972,4.1337,4.3225,1.603,1.3463,9.2071,8.9214,3.897,3.7251,3.4837,3.7729,4.9248,5.3417,1.5012,1.4739,1.8904,1.8075,3.1786,3.3483,6.309,5.8322,1.9206,1.8477,6.2496,6.1533,10.4349,9.1892,8.2468,7.895,2.0647,2.1743,4.2837,4.4549,1.6863,1.5214,16.2808,16.9539,5.5586,6.0172,3.6809,3.4488,1.1486,1.0646,2.6924,2.5008,6.9332,6.5634,12.5042,11.2573,3.0051,3.3539,3.9739,3.9903,3.0486,2.7283,1.5467,1.4269,3.8139,4.1396,10.5986,10.7938,2.9406,3.2449,2.3053,2.5227,1.7536,1.8166,9.5891,10.3895,2.0801,2.2588,2.084,2.5336,12.0222,11.7325,1.7066,1.6524,1.1105,1.2235,13.7655,13.1624,4.9585,4.7741,7.875,7.9461,4.6134,3.4559,10.0829,10.8338,7.2629,6.8695,7.636,6.2556,3.0725,3.434,1.2281,1.493,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd892,,,M,1.2242,1.3353,0.34404,0.38516,0.91074,0.83393,15.7424,2.5367,2.5622,39.3674,39.9015,13.3726,14.4498,203.3339,200.6377,0.94521,3.5536,3.2942,0.35594,0.32748,8.1124,9.3953,1.4203,1.4159,3.2747,3.402,6.1701,6.5324,4.3788,4.6214,0.08831,4.2224,1.8288,2.2459,0.34201,0.3502,3.5552,4.1131,3.8268,4.0966,1.8686,1.5801,9.6424,8.7428,2.8999,2.8431,3.2401,3.5014,4.3766,3.9562,1.7129,1.5778,1.8392,1.8104,3.6496,3.1623,6.8619,6.4367,1.9208,1.8994,5.8726,6.2899,10.4929,10.182,7.972,6.8315,2.4026,2.5556,4.1951,4.2647,1.5712,1.6823,17.5811,19.0743,4.2627,5.5222,3.8847,3.8233,0.95122,1.0004,2.2521,2.3165,6.8672,5.9229,13.5573,13.0458,2.7174,3.0273,3.9002,3.8377,3.1817,3.3625,1.5399,1.5459,3.5493,3.8906,9.0555,9.1319,2.8535,3.0225,2.0266,1.9375,1.6664,2.0229,9.151,10.4723,2.3189,2.3484,1.7805,1.8761,10.5838,11.8666,1.6013,1.5947,1.0798,1.0794,15.3682,14.3161,4.607,4.9805,7.1374,7.5543,3.8047,3.3642,10.3689,11.2121,6.5286,6.4315,7.5485,7.7833,3.1547,4.3223,1.1396,1.2918,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd893,,,F,1.6135,1.5346,0.33048,0.3566,0.73506,0.78925,14.4094,2.5686,2.7342,31.4445,27.5385,11.3372,10.4877,191.845,178.1077,1.4354,2.6927,2.8613,0.58583,1.0232,17.332,23.9591,1.2041,1.2041,3.1034,3.0618,6.1316,6.3217,3.6565,3.8378,0.08783,4.0379,1.8832,1.872,0.34237,0.34291,4.0667,4.4639,3.6926,3.8233,1.5088,1.3047,9.5082,7.974,3.0369,2.9704,3.5399,3.7889,3.8261,4.3767,1.4482,1.582,1.7155,1.7469,3.4805,3.1735,6.1247,6.2422,1.6994,1.6888,5.3695,5.038,10.2904,10.2545,6.7667,5.6735,1.9375,2.0892,4.3398,4.41,1.616,1.778,15.5254,14.971,4.4809,4.9112,3.3353,3.3153,0.90791,1.2608,2.3197,2.155,6.988,6.2133,11.9567,12.0241,2.4359,2.7223,3.6552,3.5091,2.9381,2.9079,1.3089,1.2633,3.5786,3.721,9.9622,9.3258,2.5695,2.9742,2.1566,2.1371,1.8438,2.1911,9.2137,11.0462,2.0736,2.1226,1.805,2.0231,10.5813,11.3597,1.7988,1.5903,1.2824,1.2473,11.9065,11.3042,4.6001,4.6743,6.5966,8.9246,4.1722,3.0282,8.8861,9.5963,6.8511,6.1394,7.1958,6.9902,3.0398,3.0854,1.2267,1.2057,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd894,86,86,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd895,,,F,1.0344,1.5845,0.00066,0.02263,0.80246,0.69515,14.3243,0,0,31.918,30.9771,11.27,12.2296,94.0231,128.6959,0.91734,2.7104,2.4995,0.44707,0.36505,4.2276,2.7368,0.17428,0.95612,0.23437,1.2789,4.141,5.4137,4.0239,4.1604,0.06336,3.1358,1.8977,2.1231,0.27894,0.28477,1.9435,0.02955,2.0098,1.3518,0.45181,0.41169,7.3881,6.4636,2.9727,2.9022,0.01217,0.43185,3.9193,3.6811,1.4588,1.3351,0.01207,0.00001,0,0,6.3795,5.9755,0.88096,0.90295,5.4081,5.3117,9.2611,9.1482,7.1065,6.3769,0.07,0.02822,0,0,0.66198,0.25043,0,0,4.5401,4.2477,1.6316,1.5469,0.75182,0.99356,2.1498,1.9918,3.9657,0.00046,11.987,10.7707,2.4036,2.4495,3.7986,3.5196,0.00048,1.4087,0.48335,0.02459,3.2118,1.534,8.4179,8.0475,2.4627,2.6824,1.816,1.7402,1.2776,1.7508,0.00068,0.00568,0.63246,1.181,1.6459,1.6021,0,0,1.4682,1.5134,0.55918,0.91649,0.00029,0.00013,0,0,1.1506,0.29404,3.9528,2.8771,7.2866,8.0135,6.2157,6.3576,6.5621,5.9117,1.1485,0,0.78203,0.31108,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd896,69,69,F,1.1823,1.9234,0.38433,0.42053,0.83627,0.90499,18.9336,3.1106,2.7471,47.362,47.0307,15.2445,15.6313,233.9581,234.3481,1.5549,3.3722,3.3145,0.54312,0.57533,11.9869,12.2702,1.7282,1.7506,3.8725,3.8361,7.2046,7.2372,4.9062,5.0856,0.07369,4.7502,2.055,2.7104,0.38394,0.37884,3.9506,4.7506,3.6586,3.8165,1.6552,1.6095,8.9804,8.4519,2.9159,2.6903,3.182,3.9702,4.4789,4.0207,1.6102,1.8278,1.6044,1.5889,3.3057,3.078,7.3682,7.0969,1.8764,1.8477,6.408,5.5888,12.728,11.5383,7.7665,7.0528,2.0495,2.1914,4.6626,4.8038,1.5897,1.5163,16.3713,16.9412,3.4789,5.0349,3.4976,3.5057,0.95246,1.0889,2.3328,2.1921,8.2987,6.3241,15.1685,13.567,2.7593,3.5094,4.1868,4.0075,2.5408,2.3332,1.349,1.2876,3.9393,4.0256,10.3809,10.2134,2.7121,2.8523,1.941,2.021,1.7326,2.2491,9.8485,12.15,2.4641,2.1443,1.8192,2.1099,12.0262,12.0214,1.6089,1.8484,0.97945,1.0339,13.4644,14.4139,5.4232,5.5574,7.7627,8.3562,3.9383,2.9199,9.3569,9.8267,7.067,7.5171,8.2629,7.9047,2.9562,3.2073,1.2951,1.2297,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd897,67,67,M,2.1132,2.619,0.31295,0.31106,0.67514,0.68034,15.21,2.3546,2.1381,39.5813,41.3138,12.4457,12.9972,216.8783,211.5953,1.8735,2.9616,2.6841,1.285,1.2494,20.0417,23.8012,1.5866,1.5891,2.8896,2.9205,5.9197,6.6249,4.2161,4.3906,0.05839,3.607,2.1305,2.2823,0.30397,0.31632,3.7595,4.2821,3.5228,3.7082,1.5088,1.37,10.2363,8.8204,3.0589,2.7925,3.5283,3.2958,3.897,3.8057,1.2651,1.3351,1.7649,1.7326,3.3608,3.0266,6.1182,5.698,1.756,1.8647,5.6166,5.5081,9.5523,8.5717,6.5178,6.181,1.9707,2.2289,4.0647,4.1749,1.615,1.6313,16.9418,17.4131,6.5173,5.4848,3.3425,3.8057,0.78443,1.0109,2.2044,2.2115,7.2283,6.4791,13.1651,10.8007,2.6285,2.9729,3.3378,3.7827,2.857,3.016,1.2483,1.3582,3.5569,3.9026,9.3981,9.4283,2.4601,2.6325,2.0433,1.996,2.2401,2.1299,8.2134,9.5882,1.8405,2.2325,1.9834,1.9437,10.6894,10.6331,1.7409,1.684,0.99239,0.9414,13.2124,12.8537,4.6608,4.3894,7.384,7.6242,3.69,2.7218,10.2397,10.6964,6.6412,6.8627,6.7954,6.2351,2.8594,3.4508,1.4436,1.354,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd898,65,65,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd899,,,M,1.5598,1.7228,0.39026,0.40187,0.74951,0.76914,18.7409,3.4389,3.5369,48.6004,48.3369,14.9631,16.1352,227.1472,224.409,1.2497,2.7835,2.7936,0.80831,0.62222,11.9217,13.301,1.6559,1.668,3.8725,3.8729,7.2765,7.2998,4.8435,5.1317,0.0767,4.8763,2.1403,2.7276,0.37417,0.38153,4.3893,4.993,4.0464,4.2539,1.6909,1.4074,8.2161,7.0779,3.8622,3.6443,4.0855,4.1787,5.2367,5.4507,1.5815,1.4735,1.9053,1.946,3.6097,3.5412,6.8726,6.303,2.2971,2.4041,6.6615,7.0976,11.1777,9.8933,8.5381,7.8541,2.2263,2.1402,4.3943,4.8397,1.8932,1.7924,17.8634,16.4964,5.1801,6.07,4.1427,4.4698,0.99441,0.87229,2.4975,2.3482,8.0611,7.5175,14.0337,12.7654,2.8502,3.1821,4.6581,4.701,3.0486,2.9677,1.4721,1.4322,3.6144,3.9812,10.3011,10.5002,2.6608,2.9875,2.482,2.2366,2.2,2.2578,9.9975,10.1111,2.2717,2.3966,1.9848,2.2385,12.0309,11.0059,1.9912,1.8746,1.1305,1.195,13.6414,15.0795,4.8756,5.388,6.7642,7.0505,3.9936,3.6195,9.6159,8.8561,7.067,6.7763,7.6076,7.2184,3.4653,3.42,1.4227,1.7457,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd900,53,53,F,0.78548,1.602,0.4108,0.44194,0.93386,0.862,17.8318,2.9757,2.8993,48.463,47.9713,14.4232,15.0453,255.5603,245.8349,0.89851,3.6065,3.2316,0.35781,0.34422,5.7605,5.4567,1.7259,1.7644,3.8314,3.972,6.6523,7.0526,4.5171,4.7162,0.0698,4.7095,2.2414,2.5672,0.36176,0.37195,3.9222,4.389,4.4772,4.2701,1.6685,1.4051,11.4685,9.9564,3.1256,2.7219,3.907,3.5921,4.6793,4.0075,1.7675,1.6599,2.0246,1.8331,3.4223,3.2678,7.562,7.4051,1.9369,2.0127,6.4317,6.9345,11.6498,10.95,8.0483,7.0559,2.1988,2.2914,4.6893,4.6375,1.658,1.702,17.3869,16.4964,5.861,6.2414,3.7817,3.7981,1.2879,1.0249,2.9285,2.7085,7.2823,6.6438,14.1938,13.2978,2.5652,3.198,4.0606,4.2841,3.0849,2.9118,1.6075,1.5132,3.5251,3.9075,9.4506,9.2995,2.984,3.2543,2.3548,2.4087,2.0334,2.008,9.7326,10.8637,2.3028,2.4377,2.0825,2.3094,10.3122,10.7422,1.6696,1.7462,1.0876,1.1527,13.233,13.7731,5.184,5.0385,8.554,8.876,4.7405,3.1916,9.329,11.3991,8.1165,8.4616,8.145,7.7768,3.8232,3.4379,1.2649,1.493,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd901,,,F,1.3846,1.6251,0.35806,0.39511,0.76962,0.74775,17.472,2.5015,2.459,43.8168,43.3698,13.5685,13.7074,209.1347,205.0193,1.1862,3.2704,2.8482,0.37962,0.33279,7.9245,8.9561,1.4535,1.4262,3.5951,3.5981,6.1603,6.4486,4.2681,4.4056,0.08755,4.5531,2.0895,2.4138,0.38703,0.38422,4.4022,4.5768,3.7764,4.1438,1.778,1.453,10.0195,9.1459,2.8039,3.0178,3.7412,4.2067,4.3337,4.1353,1.4466,1.3838,1.983,1.9305,3.6496,3.4759,6.6504,6.8066,1.8166,1.9458,6.5625,6.303,10.8761,10.131,6.9399,6.9034,2.2044,2.2312,4.4369,4.4217,1.5622,1.5482,18.1699,18.5906,5.2675,6.2736,3.572,3.9433,1.1529,0.97321,2.946,2.3545,6.4777,6.358,13.5199,13.5201,3.2656,3.431,3.4721,3.9724,3.5678,3.3294,1.3825,1.4648,4.118,4.2848,10.3551,10.2617,2.754,2.9276,2.3773,2.2883,2.1997,2.4363,9.2381,11.0625,2.4218,2.5251,2.126,2.2206,11.478,11.9228,1.7494,2.1259,1.1512,1.2287,15.1168,15.9463,5.0858,4.9117,8.3342,9.747,3.9438,3.5995,10.2738,9.1754,7.0181,7.4916,7.2461,6.3369,3.365,3.4379,1.5081,1.4559,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd902,82,82,F,1.9884,2.1846,0.29262,0.29104,0.68661,0.65911,16.4883,2.6305,2.4451,45.5295,44.7344,13.5214,13.8792,193.768,187.6717,1.8746,2.5942,2.6209,2.1389,1.6943,27.9583,30.4423,1.2369,1.5596,3.056,3.199,6.3053,6.5563,4.1629,4.3572,0.09045,5.2141,2.437,2.5975,0.32483,0.32086,3.2422,3.8966,3.7369,3.6699,1.4189,1.386,8.6533,8.244,3.3932,3.248,3.0914,3.7078,4.6393,4.3129,1.2651,1.26,1.7385,1.7433,3.2907,2.9913,5.7704,6.1212,1.6897,1.707,6.3686,5.8975,8.6221,9.0053,7.7439,7.6062,1.7777,2.1886,3.9937,3.9827,1.4334,1.4901,16.2826,17.0576,5.0888,6.0483,3.3879,3.3068,0.99977,0.95079,2.5231,2.1671,6.8391,5.8557,9.7986,10.794,2.8549,3.3182,3.7771,3.9945,2.8904,2.9128,1.2868,1.1636,3.3051,3.7111,9.5582,9.4709,2.5116,2.8842,2.0792,2.1951,2.0324,2.0631,9.4895,10.5983,1.8465,2.302,1.928,2.1995,11.6466,11.1364,1.662,1.7886,0.96188,1.0552,12.6543,12.2939,6.0736,6.1341,7.3483,6.9192,4.0534,3.2846,9.4346,9.8267,5.4202,5.328,6.5118,6.0238,3.0039,3.187,1.3782,1.4652,,8,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd903,81,81,F,2.3475,2.0334,0.35661,0.41846,0.81285,0.78801,17.8283,2.4689,2.6642,49.1293,50.3468,14.3963,15.3281,190.2468,185.9051,2.0344,3.2757,3.0335,0.9369,0.80271,24.7413,31.4738,1.2369,1.2852,3.5759,3.7691,6.3221,6.3666,4.3799,4.5321,0.08875,5.6373,2.2973,2.8859,0.38626,0.37054,4.4161,4.9207,4.1455,4.1686,1.717,1.3355,8.6949,7.8979,2.76,2.3237,4.2449,4.1326,4.7794,3.9813,1.4602,1.4603,2.0658,2.0148,3.7123,3.5809,7.2788,7.2682,1.8708,1.9008,5.1454,5.8724,11.3475,11.0739,8.9171,7.6496,2.336,2.2603,4.5884,4.5009,1.7108,1.7522,17.3549,18.1861,4.5317,5.4103,3.572,3.4739,0.91698,0.93811,2.3383,2.448,7.6286,7.2659,13.6863,13.4861,2.3741,3.1216,4.6594,4.7166,4.1552,3.5449,1.6491,1.4083,4.0363,4.4163,11.3982,10.8777,3.1435,3.3523,2.4523,2.5088,2.4047,2.6226,9.3074,9.8837,2.2138,2.3759,2.123,2.4591,11.478,10.8834,1.9245,2.3556,1.2877,1.2506,14.511,13.9016,4.7946,4.9835,7.0275,8.4124,4.0265,3.4548,8.8258,9.4134,6.545,7.3668,7.1565,6.9968,3.5559,3.8118,1.4878,1.7766,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd904,71,71,F,1.0581,1.8003,0.3531,0.36467,0.74204,0.77268,16.0576,2.8389,2.4052,44.3657,44.4463,12.6024,13.3701,207.8475,202.681,0.96045,3.1424,2.7903,0.47469,0.41701,12.2358,17.2025,1.3907,1.4396,3.1613,3.2616,6.3437,6.7574,4.1878,4.3579,0.06279,4.7614,2.2446,2.6051,0.3558,0.35723,3.9597,4.44,3.8641,3.8667,1.7559,1.5746,8.9771,9.3719,3.1163,2.7219,4.0617,3.9018,4.6443,4.362,1.4787,1.4048,1.9869,1.8254,3.5985,3.4439,7.167,7.3983,1.9583,1.969,6.6846,6.2801,11.1037,11.7204,7.901,7.0559,2.2388,2.4933,4.5815,4.6586,1.6585,1.7445,17.0713,19.0194,4.7811,5.8726,3.6583,3.7695,0.95377,1.0405,2.486,2.4684,7.3268,6.8634,12.8451,13.6697,2.8595,3.2256,4.5195,4.1949,3.4796,3.767,1.4678,1.5459,3.988,4.516,10.1977,10.4413,2.6424,2.8801,2.2006,2.2966,2.4668,2.6416,9.7326,11.5268,2.3375,2.5716,2.0332,2.2828,12.1052,12.0034,1.9634,2.2746,1.1223,1.2438,12.9657,14.8169,5.1467,5.388,7.9005,8.8669,4.0545,3.4603,10.5438,10.8141,7.4092,6.5395,7.4701,6.7795,3.2376,3.9146,1.5177,1.7349,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd905,71,71,F,1.0318,1.8813,0.32332,0.37096,0.74204,0.77891,13.6372,2.5686,2.7309,34.594,30.9771,11.4024,10.4069,205.4985,203.5602,1.0689,2.8773,2.6776,0.49291,0.41701,9.4417,12.7084,1.2041,1.2199,3.286,3.5577,6.1141,6.3659,3.6561,3.79,0.0694,2.6869,1.9864,2.1231,0.34178,0.32526,3.525,4.3267,3.5503,3.7041,1.6054,1.5558,8.1043,7.8663,2.7482,2.6576,3.7618,3.7777,4.0345,3.7309,1.4607,1.431,1.7009,1.7573,3.1919,3.3009,5.9464,6.0146,1.8708,1.8979,5.9517,4.56,8.1681,9.5883,6.3471,6.1563,2.0023,2.2386,4.0691,4.2802,1.6189,1.8517,17.2272,17.9538,4.6573,5.1305,3.3978,3.6339,0.92508,1.0883,2.4117,2.4684,7.1542,6.3289,9.9196,10.4941,2.4105,2.7019,3.4624,3.0676,3.2061,3.5001,1.515,1.4125,3.1812,3.3066,8.1016,8.1385,2.5609,2.9458,2.0144,2.0828,2.4668,2.7322,8.9115,10.4034,1.8586,2.2933,1.9255,2.0571,10.0684,10.188,1.7599,1.8088,1.0645,1.1234,12.2302,12.375,4.6001,4.6651,6.7642,7.7036,4.0704,3.3969,9.3058,8.8161,6.079,5.8038,6.7932,7.5208,3.2162,3.8118,1.3992,1.387,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd906,78,78,F,2.2232,2.1181,0.35861,0.37573,0.78953,0.74459,16.9978,2.6719,2.5373,43.9453,44.2579,14.5509,15.0908,243.5345,241.3842,1.6649,3.1141,3.1597,0.68917,0.67237,17.1038,21.7893,1.6819,1.7385,3.5761,3.5827,6.4965,7.1034,4.4222,4.6343,0.07783,4.6274,2.0488,2.275,0.36905,0.41099,3.9314,4.5432,3.8245,4.0654,1.6826,1.4743,9.611,8.7286,2.6925,2.636,3.7405,4.3316,4.1992,3.6543,1.4466,1.4084,1.946,1.924,3.3082,3.0901,6.8294,6.8122,1.9406,2.0083,5.3836,5.9258,10.1157,10.6215,7.1607,6.4803,1.9676,2.1242,4.6196,4.7776,1.732,1.7697,17.029,17.2614,4.1009,5.2674,3.5726,3.7084,0.90724,1.0611,2.3664,2.3792,7.3528,6.7962,12.7591,13.5472,2.589,3.0277,3.5755,3.9804,3.3518,3.322,1.4759,1.2667,3.5506,4.1078,9.7941,10.0151,2.6384,2.826,2.3047,2.5616,2.2259,2.5253,10.3775,11.6194,2.0466,2.1833,2.0199,2.3843,11.4539,11.0993,1.7032,1.9742,1.1998,1.2805,13.6789,13.1053,5.0937,5.0241,7.4471,8.9842,4.0434,3.1213,10.1591,9.2838,6.6418,7.2459,7.2502,7.9148,3.6145,3.6608,1.2959,1.5727,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd907,69,69,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd908,85,85,M,1.5742,1.794,0.29753,0.36521,0.71488,0.68479,16.1406,2.2307,2.301,33.5806,31.3093,12.6679,12.4571,197.7947,197.3386,1.7253,2.735,2.4852,0.65389,0.55943,16.2964,18.2211,1.4005,1.4245,2.967,3.199,6.1602,6.7606,4.0628,4.2692,0.07289,4.224,1.8977,2.1951,0.35576,0.33266,4.014,4.4173,3.2609,3.5961,1.4124,1.3463,8.8617,8.5704,2.4154,2.4886,3.7112,3.6662,4.6228,4.2478,1.4296,1.3277,1.7788,1.7313,3.3659,3.176,6.6602,6.1208,1.8534,1.9376,5.4434,5.3117,9.1167,10.5956,6.9363,6.4434,1.8888,1.9433,4.3398,4.2832,1.8007,1.7058,15.8517,17.241,4.7128,5.2048,3.1511,3.6399,0.97444,1.0718,2.299,2.4124,7.1215,6.5859,11.7,13.8452,2.4047,2.6527,3.5914,3.5196,3.1616,2.9593,1.2803,1.1985,3.6173,4.1302,9.7755,10.0366,2.6748,2.7595,2.0965,1.9205,2.1353,2.2465,8.9708,10.1847,2.0676,2.1624,1.8506,1.9524,12.1904,11.706,1.6213,1.6968,1.0551,1.1494,12.5908,12.8978,5.0937,5.0354,7.7568,8.8088,3.7279,3.6751,9.4762,9.8832,5.5752,5.6132,7.4184,7.629,3.1249,3.2269,1.2189,1.4045,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd909,,,F,0.92151,1.602,0.00066,0.13301,0.80246,0.69515,17.0389,0,0.0006,28.1916,31.817,16.5675,16.3152,251.1307,246.3704,0.87039,2.9714,2.7632,0.52741,0.68775,10.5676,13.9193,1.6182,1.6449,0.23437,2.6696,5.7414,6.0814,4.3581,4.4773,0.07101,4.0219,2.1431,2.3776,0.32524,0.32201,1.9435,0.00936,3.3953,0.93454,1.2952,0.00414,7.3881,5.0961,2.9727,2.8431,3.2736,0.12649,3.525,3.7876,1.4784,1.3669,0,1.5738,3.0474,2.6506,6.1677,5.9607,1.4865,1.602,5.6178,4.9659,8.7273,8.2636,6.3936,6.6314,1.6103,0.951,3.8319,3.9688,0.06173,0.94623,14.8596,0,4.4236,4.1832,2.876,1.4103,0.78443,0.875,1.8416,2.0616,5.4504,0.00791,10.8521,11.3505,2.4036,2.5231,3.5942,3.4211,0.00197,2.6661,1.1439,0.49832,2.561,2.5736,8.079,7.5474,2.5692,2.7175,0.89588,1.7462,0.38842,0.02077,8.3107,9.697,0.63246,1.2601,1.457,1.7054,10.0125,6.6888,1.4385,1.7702,0.81661,0.93595,6.0263,0.00013,3.9938,3.6742,5.4248,6.0253,3.6293,3.2059,0.18875,8.6697,6.1677,6.2873,5.7754,5.9166,1.1485,0,1.2951,1.2516,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd910,80,80,F,1.6409,1.6911,0.28869,0.31078,0.66914,0.64418,16.415,2.4778,2.4451,40.6976,41.3308,13.1359,13.5961,175.0226,172.1287,1.7253,2.7299,2.3678,2.2907,2.2971,23.9851,19.7701,1.4427,1.4433,3.056,2.8936,5.8237,5.747,4.1648,4.3104,0.079,4.3839,1.928,2.1836,0.31313,0.31457,3.4889,3.9528,3.5405,3.6771,1.3405,1.1981,7.9338,7.7611,2.8002,2.7897,3.4837,3.4338,4.4069,3.8821,1.1853,1.2692,1.681,1.7313,3.1985,3.0729,5.7398,5.7918,1.8392,1.8816,5.7627,5.1349,8.181,7.9082,7.1919,6.1704,1.8889,2.0551,3.9937,3.9178,1.5451,1.5387,16.1707,15.5558,4.739,5.2764,3.2287,3.3416,0.92508,0.875,2.1241,2.04,6.9458,6.2888,10.9055,9.4766,2.817,2.8995,3.587,3.5476,2.8904,2.7057,1.3185,1.3473,3.4814,3.752,8.2793,8.4152,2.4305,2.4644,2.0607,2.0745,1.9557,2.0723,9.0554,11.135,1.9656,2.2377,1.7823,1.9672,10.075,9.5586,1.568,1.7204,1.0539,1.0783,13.3021,13.4957,4.7634,4.5871,7.202,7.0627,3.8803,2.3676,9.2968,10.0392,6.5646,6.358,7.1652,6.782,3.2361,3.3617,1.2052,1.3919,,10,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd911,72,72,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd912,,,M,2.171,2.3369,0.49537,0.54746,0.94615,0.96877,19.4632,3.5623,3.2863,61.7421,54.4932,16.5035,17.4471,247.6455,241.611,1.7692,3.5677,3.4198,0.90834,1.16,27.5036,31.6678,1.6981,1.6405,4.4662,4.0548,7.1341,7.4395,4.9036,5.1795,0.09633,5.4942,3.0338,3.203,0.41998,0.44274,4.4457,4.7603,4.7992,4.7795,1.9233,1.6616,10.414,9.6673,4.3025,3.979,4.5932,4.47,5.4218,6.106,2.0136,1.8998,2.4361,2.3081,4.3083,4.2753,9.4739,8.5002,2.3084,2.4245,8.2375,8.0259,13.5149,12.9207,9.1257,8.2622,2.422,2.5738,5.0009,5.1103,2.1457,2.0987,21.7039,21.2659,5.4008,6.4996,4.2661,4.3599,1.1743,1.0816,3.1048,2.4332,8.8697,7.5799,16.4933,15.9462,4.4348,4.7167,5.5638,5.2811,3.5676,3.6453,1.7342,1.689,4.667,5.079,12.1176,12.8934,3.6548,3.3589,2.634,2.9166,2.7442,2.5593,10.0428,10.6017,2.6885,2.7716,2.3484,2.7196,12.2645,11.8722,2.3121,2.1086,1.4581,1.4624,16.5771,17.7676,6.2486,6.0104,7.3627,8.9854,4.9057,4.286,12.1298,11.2477,8.7417,7.3194,9.1304,9.0054,4.0728,3.9535,1.7648,1.7775,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd913,38,38,F,1.2087,1.4841,0.32915,0.35337,0.76607,0.72214,15.5579,2.8236,2.5641,38.8014,38.1988,11.4186,11.7876,155.8267,148.1433,1.4275,2.7104,2.4742,0.71919,0.56021,16.0833,17.2999,1.2687,1.3368,2.9734,2.9935,5.4951,6.0637,3.7026,3.898,0.07522,4.1864,2.105,2.2594,0.33412,0.3312,3.753,4.0964,3.5405,3.723,1.5121,1.3872,9.4724,6.9954,2.7214,2.6644,3.4837,3.4995,3.7649,4.0124,1.49,1.4559,1.6922,1.7433,2.9616,3.1423,5.9909,6.0089,1.9155,1.8386,5.9514,4.903,9.5989,9.2094,6.9363,6.6783,2.0251,2.0723,4.0035,4.1536,1.5356,1.539,16.4198,15.7914,4.7423,4.7448,3.5983,3.3296,0.95289,1.1393,2.2389,2.4471,7.3052,6.2544,12.9889,13.0671,2.4574,2.5508,3.5942,3.5354,3.2791,2.9593,1.5482,1.1968,3.5569,3.8132,9.3965,9.5578,2.5252,2.6722,2.144,1.9116,1.8438,2.0017,9.2137,10.8398,2.0896,2.2928,1.8839,1.8074,10.8766,11.1711,1.5466,1.4413,1.122,1.1898,12.7796,12.5322,4.6107,4.6141,6.5719,7.7698,4.0787,3.0648,10.3689,9.1754,6.4612,6.4601,6.839,6.9649,3.5994,3.3739,1.3663,1.2715,,23,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd914,56,56,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd915,61,61,M,1.0829,1.7871,0.35485,0.41704,0.91074,0.86239,18.5205,2.5937,2.6066,46.7921,45.0515,15.7042,16.4393,247.7454,228.3948,0.96458,3.4077,3.3145,0.40818,0.36461,8.988,10.1571,1.6938,1.7432,3.3828,3.353,7.0514,7.2372,4.7557,5.0523,0.07484,4.7098,2.055,2.8265,0.35463,0.37363,4.1239,4.6051,3.9055,4.058,1.8044,1.4939,10.3104,8.8765,2.9679,2.8053,3.975,3.9784,4.344,4.6735,1.6649,1.6232,1.895,1.7371,3.5586,3.4006,7.3682,7.0828,2.1785,1.9045,6.7307,6.5106,10.8375,9.9995,7.7665,6.9412,2.3641,2.3374,5.0588,4.3981,1.8483,1.9333,17.2759,19.015,5.5995,6.1245,3.6462,3.7711,1.1224,1.1694,2.2511,2.4768,7.7032,6.6289,13.8112,12.5885,2.7936,3.1364,4.4489,3.9337,3.4238,3.4407,1.4083,1.4082,3.9393,4.0665,10.3809,10.2192,2.7134,2.9456,2.1158,2.1923,2.2846,2.3419,10.6953,10.6325,2.3766,2.6081,1.9056,2.2171,12.4923,12.1054,2.0567,2.2361,1.2068,1.2881,13.6414,14.8169,5.4325,5.799,8.0641,9.3872,4.5761,3.38,10.5653,10.5006,7.3547,7.2714,7.457,6.9902,3.4632,3.8254,1.4607,1.4851,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd916,78,78,M,2.2224,2.1866,0.32095,0.36355,0.68437,0.60891,18.2564,2.6118,2.517,46.862,46.8638,15.7042,15.8947,224.9161,224.2603,1.9669,2.7718,2.4984,1.6954,1.2492,22.4678,23.0663,1.7507,1.6711,3.4519,3.5651,6.2729,6.5553,4.8238,5.0816,0.07446,5.1289,2.3064,2.7552,0.32995,0.33925,3.9962,4.3574,3.7453,4.0227,1.3613,1.3156,9.0266,8.5795,2.5233,2.4315,3.9293,4.1485,3.6178,2.9868,1.3279,1.276,1.946,2.0332,3.3185,3.2963,6.639,6.1687,1.7203,1.8851,5.9901,5.9248,10.3783,10.3489,6.9996,6.3627,1.8401,2.1293,4.2421,4.245,1.4822,1.5507,16.7875,17.4937,4.4676,5.6198,3.1417,3.4739,0.90939,1.0087,2.1223,2.6003,7.1016,6.5859,12.5317,11.6458,2.4897,3.2332,3.4384,3.9724,3.2014,3.3958,1.4013,1.4998,4.0214,4.4008,10.9795,11.5531,2.5224,2.8097,2.0759,2.0413,2.1324,2.496,10.4588,11.2932,2.0433,2.0887,1.8667,2.0571,10.8511,10.7072,1.7931,1.7615,1.0687,1.0778,13.4697,13.6532,4.9319,4.7508,6.9792,8.8565,3.8696,3.4441,10.3841,11.0686,6.3966,7.2334,6.9438,7.0025,3.3855,3.7028,1.3595,1.244,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd917,73,73,M,1.7782,1.7113,0.37741,0.43293,0.9583,0.88654,17.706,3.1894,3.0363,48.961,48.3369,13.857,14.203,211.353,210.2499,2.2077,3.4963,3.2125,0.68499,0.6989,19.5055,16.0454,1.4916,1.4867,3.5463,3.8389,6.6341,6.8129,4.4811,4.7031,0.07785,5.3454,2.3151,2.6607,0.37691,0.40045,4.2709,4.4975,3.8333,4.0109,1.6918,1.4472,9.8237,8.8246,3.4823,3.2987,3.5113,3.308,4.7813,4.5121,1.9183,1.6251,1.8441,1.7537,3.2698,3.2506,8.4134,7.7014,1.8882,1.9182,6.8062,6.6613,12.0698,11.4147,9.2299,8.5602,2.1802,2.4542,4.1804,4.3247,1.5698,1.659,19.7012,18.46,5.5995,6.6693,3.7639,3.7859,1.0517,0.96247,2.4677,2.5682,7.5173,6.7709,15.2442,14.2702,3.329,2.9863,4.5317,4.5282,3.3178,2.7968,1.5676,1.4613,4.1739,4.4141,10.2967,10.4699,3.2135,3.4402,2.2767,2.1583,2.0579,2.3211,9.279,10.8637,2.4315,2.5789,1.9836,2.3492,10.9804,11.7822,1.755,1.7874,1.2249,1.2087,14.8992,14.7676,5.0968,5.8195,7.3955,9.1593,4.7024,3.5745,10.7106,10.1041,7.8592,7.8346,8.0369,7.2595,3.5021,3.7809,1.4013,1.3936,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd918,,,F,1.2722,1.8035,0.31747,0.33873,0.61902,0.6151,16.3066,2.6088,2.6409,39.8014,39.9862,13.5734,13.3837,183.5937,181.9258,1.4275,2.4818,2.7273,0.58583,0.56994,17.9412,15.7954,1.4017,1.4642,3.0847,3.0414,5.4271,6.17,4.1206,4.3053,0.06259,4.3562,1.8435,2.2057,0.34199,0.34291,3.6799,4.1134,3.5926,3.7187,1.6267,1.4454,8.84,8.6227,2.4298,1.9707,3.4373,3.5531,4.0856,3.7318,1.2567,1.1912,1.6328,1.5445,3.3107,3.3668,6.3586,6.0792,1.887,1.9845,6.6155,5.1608,9.9738,10.1241,6.5278,6.3457,2.0261,2.1242,3.815,3.7073,1.603,1.6175,17.2272,15.7695,4.8713,5.679,3.4487,3.5504,0.97444,0.91099,2.2753,2.2308,6.8223,6.2394,13.3397,13.0736,2.9165,2.9293,3.7588,3.8006,3.2791,3.235,1.4939,1.2441,3.0891,3.4752,9.1558,8.6156,2.6748,2.5619,2.1184,1.915,2.0792,1.8952,9.1447,10.3869,1.9431,2.054,1.8506,2.1139,11.1104,11.7583,1.6751,1.7921,1.0866,1.1289,11.5255,11.9293,4.4457,4.7226,7.184,8.3724,4.2164,3.3708,8.7626,8.1117,6.7171,6.3519,7.0344,6.4136,3.5994,3.498,1.4654,1.4548,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd919,70,70,F,1.0932,1.9234,0.3887,0.42053,0.7548,0.77244,17.8487,2.9505,2.7813,45.0844,45.8795,13.7119,13.739,207.1482,202.3092,1.0818,2.8624,2.8231,0.65429,0.4371,11.468,12.4405,1.3907,1.4462,3.5593,3.5929,6.3999,6.5046,4.2681,4.5385,0.07894,4.6274,2.1986,2.6047,0.39142,0.38422,3.8443,4.4609,3.5958,3.9462,1.7531,1.6008,10.6817,9.289,3.1163,3.2706,3.776,3.865,4.8917,4.0775,1.5597,1.5145,1.8338,1.9445,3.5073,3.3437,6.8101,7.1118,1.9686,2.226,6.1716,6.3053,10.8761,10.4273,7.6364,7.1455,2.2858,2.3936,4.3218,4.7902,1.7698,1.8106,18.2342,19.4868,4.667,5.7092,3.8806,4.1708,0.91859,0.9117,2.486,2.2468,8.3181,6.6417,14.6495,12.3503,2.7509,3.2931,3.7584,4.1958,3.5913,3.2797,1.535,1.6004,3.5659,3.976,10.4938,10.7974,2.5645,2.7702,2.4339,2.2809,2.4199,2.6416,10.7561,11.7576,2.3965,2.4766,2.0367,2.3742,13.196,14.0706,1.9286,2.0007,1.1812,1.2696,13.9848,14.0169,5.6004,5.45,8.5253,10.2499,4.5115,3.6198,11.0128,10.5739,7.3502,7.3967,7.7161,6.5938,3.2861,4.2196,1.4831,1.4268,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd920,67,67,M,2.324,2.619,0.31464,0.35003,0.77548,0.74054,16.7018,2.2687,2.1212,39.7455,41.3138,12.6679,13.7081,212.1663,208.3012,1.7697,3.175,2.9787,1.322,1.1802,20.2083,21.0729,1.4486,1.41,2.7027,2.7183,5.4613,5.9736,4.1197,4.2444,0.06895,3.9495,2.0517,2.353,0.32632,0.34954,3.672,4.1335,3.7177,3.8908,1.5077,1.37,10.0108,7.974,3.1261,3.1377,3.5759,3.7297,4.7744,4.4391,1.5505,1.4933,1.8194,1.7867,3.2079,2.8601,6.6938,6.3596,1.8516,1.7419,6.2356,5.5259,10.0606,10.082,7.662,7.1949,1.9707,2.0765,3.6314,4.146,1.603,1.5201,18.0319,17.3748,4.3545,5.5514,3.3978,3.4975,0.85757,0.94874,2.1498,2.2947,6.8601,6.6575,13.5857,12.9678,2.6611,2.9293,3.7771,3.9033,3.4017,3.2241,1.3481,1.2418,3.3466,3.7696,9.1884,9.1818,2.8873,3.0435,2.1284,2.2649,2.1279,2.5173,9.6822,10.8251,2.1216,2.1021,1.6495,2.0608,11.8801,10.3589,1.9325,1.9261,1.1388,1.1631,12.0086,12.7452,4.9585,5.1859,7.332,8.7445,3.8669,3.2059,8.6881,10.4434,6.787,7.0583,8.1322,7.3823,2.9755,3.3739,1.289,1.5251,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd921,71,71,M,2.4335,1.8026,0.44772,0.47721,0.84292,0.90499,19.3443,3.6181,3.5314,51.8561,50.9913,16.1786,16.2485,231.234,224.0169,2.5576,3.3786,3.1863,0.70585,0.67237,26.7043,28.4876,1.5439,1.5793,3.5084,4.0539,7.1647,7.5452,4.7321,4.8669,0.07026,5.3954,2.5519,3.0321,0.37923,0.38685,5.5549,5.8186,4.0353,4.5576,1.9744,1.8397,12.444,10.5471,3.9194,3.8162,4.1051,3.9395,6.4748,5.1517,1.6065,1.8712,2.0489,2.1163,4.3098,4.1928,8.3586,8.0257,2.4397,2.4461,7.4532,6.8535,13.026,13.2013,9.245,8.0698,2.4591,2.9018,6.1242,7.119,2.2046,2.2306,21.4875,22.995,6.0666,6.6154,4.1494,4.279,1.1743,1.2966,2.8387,2.877,9.3424,8.1578,15.1999,15.709,3.0222,3.8068,4.9467,4.9305,4.0885,3.7879,1.6433,1.7352,4.9277,5.6503,13.1268,14.0712,3.2048,3.4562,2.3357,2.393,2.027,2.5855,11.4211,13.2842,2.952,3.2117,2.272,2.1765,13.6313,14.6171,1.8902,2.2938,1.359,1.4972,18.3793,19.4519,6.1867,6.8019,10.4337,9.2497,4.27,3.6135,10.8951,11.6813,7.1236,7.7573,7.5687,8.105,4.1919,4.5021,1.7147,1.6424,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd922,,,M,1.906,1.9242,0.33253,0.3327,0.78023,0.78003,18.0333,2.5624,2.5135,49.6817,48.7858,14.2836,14.3571,202.9975,198.4048,2.0082,3.1135,3.0083,1.2669,1.1008,34.3074,42.9565,1.5922,1.6284,3.4342,3.5257,5.9142,6.3966,4.4807,4.6407,0.07932,5.1904,2.3151,2.4445,0.36765,0.35363,4.2224,4.993,4.1953,3.9313,1.8186,1.5935,8.2026,7.9713,2.8653,3.5436,4.0572,3.9962,4.091,4.6278,1.504,1.446,2.0536,2.0307,3.7726,3.2617,7.0709,7.6169,2.2451,2.0647,6.2522,5.7875,12.3722,12.53,7.7729,7.5044,2.3463,2.3315,4.8032,4.7091,1.8856,1.917,19.5505,20.5346,4.4528,5.9041,3.9278,3.8288,1.1534,1.0477,2.5934,2.4783,8.9934,7.8788,15.0737,13.859,2.563,3.2931,4.265,4.1715,3.9799,3.6869,1.5889,1.3778,4.2069,4.5279,9.6993,10.5648,2.7607,3.0104,2.3829,2.3517,2.2924,2.5638,9.638,11.0461,2.3178,2.3339,2.1409,2.3153,12.0085,12.5391,1.8109,2.002,1.1891,1.2696,16.4195,14.7357,5.9055,5.8485,7.2704,8.2955,3.5453,3.5915,9.6784,9.5354,7.3081,7.5915,7.4136,7.1556,3.9793,3.8888,1.5085,1.5884,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd923,73,73,F,1.9465,2.8461,0.31394,0.33023,0.77404,0.74054,19.3377,2.3948,2.3042,46.9422,47.8707,15.4577,15.0071,231.6549,230.4366,1.7547,3.1953,2.8934,1.591,1.3591,22.5833,21.0729,1.7119,1.6762,3.4519,3.471,6.2951,6.2886,5.0649,5.254,0.07764,4.8017,2.305,2.517,0.34048,0.35224,3.4312,3.9461,3.8483,4.186,1.5077,1.3156,9.215,8.7724,2.9724,2.8776,3.2952,3.9159,4.5008,4.671,1.5582,1.5804,1.6044,1.8077,3.2907,2.9913,7.1609,7.0588,1.6907,1.7386,6.2472,5.5447,9.7032,10.1935,7.7532,7.2098,1.9513,2.1453,4.1144,4.4863,1.4585,1.5352,17.4708,17.8261,4.3346,5.1174,3.0127,3.2623,1.3114,0.98964,2.8271,2.3338,6.7752,6.6575,11.8764,12.7252,3.0313,3.7357,4.0324,3.9033,2.8762,3.243,1.314,1.3935,3.4229,3.8719,9.2661,9.1195,2.8919,3.0323,2.3076,2.5549,1.8613,2.3958,8.7061,9.7252,2.1623,2.2222,2.0147,2.3397,12.1904,12.0214,1.5262,2.1633,1.0627,1.1167,12.8832,13.2355,4.913,5.4783,6.9817,9.4771,3.5417,3.8739,8.7703,8.3738,6.656,7.1111,7.1243,6.4441,2.9755,3.8118,1.4054,1.6609,,18,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd924,66,66,M,1.7179,2.3465,0.39742,0.42969,0.92208,0.94771,16.0602,3.3034,3.0836,27.9343,26.488,11.4186,12.2296,221.5317,215.5509,2.1765,3.7728,3.3285,0.90834,0.47793,19.6009,22.3572,1.6274,1.5897,3.4499,3.5025,7.6957,7.6113,4.6039,4.8818,0.07571,4.2336,2.0653,0,0.38062,0.40256,3.9944,5.0653,3.8533,3.8791,2.1453,1.8047,12.5747,10.2752,3.6393,3.2596,4.1024,4.4165,4.8849,4.4996,1.7756,1.8671,1.9062,1.881,4.2709,3.8123,7.759,7.9281,2.2995,2.3896,8.2003,7.5129,12.4866,11.8559,8.8478,7.4859,2.5281,2.9062,5.3121,5.3529,2.1264,2.0763,21.1619,22.2924,6.8947,6.6145,4.113,4.3627,1.1411,1.2063,2.7166,2.5701,9.0934,7.8866,15.5243,15.5091,3.4373,3.8449,5.0361,4.8221,3.3855,3.2415,1.6007,1.964,4.8073,5.1719,12.5686,11.4852,3.0946,3.4223,2.2603,2.3024,1.806,2.5132,10.4511,12.6198,2.7195,2.7591,2.1978,2.3748,14.1133,15.1703,1.9533,2.2445,1.3871,1.4764,17.2871,19.1718,5.6498,5.3595,8.8186,8.6411,4.6325,3.9244,11.5773,10.7001,6.9815,7.4313,8.6274,8.556,4.0714,4.8501,1.5237,1.6597,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd925,80,80,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd926,75,75,F,1.2991,1.9365,0.32621,0.35031,0.92165,0.93429,16.6399,2.6548,2.5483,40.966,43.5704,14.0509,14.0136,203.4714,198.292,1.0767,3.3221,3.1428,0.8319,0.54888,9.514,13.5929,1.5486,1.4958,3.1251,3.4984,6.1682,6.4778,4.281,4.4961,0.06742,4.5116,2.0943,2.2662,0.35381,0.36814,3.4872,4.3267,3.7837,4.0768,1.767,1.5801,10.3271,9.2589,2.8977,2.8396,3.7866,3.8558,4.2675,4.011,1.7919,1.7568,1.7677,1.7612,3.4663,3.3072,8.055,7.8124,2.0107,2.0571,6.628,5.5622,11.2669,11.4554,7.228,6.9034,2.2328,2.268,4.2837,4.6318,1.7361,1.7409,17.0713,18.1056,5.0421,6.3066,3.6601,3.8318,1.2128,1.0964,2.6036,2.6421,7.3406,6.7466,14.2617,13.963,2.6346,2.9748,4.4569,4.2322,3.3074,3.322,1.5709,1.3513,3.7107,4.0416,9.8443,9.6351,2.9867,3.2123,2.0409,2.0849,2.1558,2.4363,9.9962,11.28,2.2575,2.2497,2.0082,2.0999,11.8239,10.7097,1.8903,2.0675,0.97024,0.99363,12.9657,13.8689,4.8783,5.0385,7.3278,8.907,3.907,3.2341,10.9218,10.1216,7.2631,7.3967,7.8905,7.3576,3.757,3.7699,1.573,1.5795,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd927,,,F,0.70972,1.2525,0.00066,0.13301,0.77549,0.81137,2.0826,1.107,0.00029,30.325,26.0012,12.6449,13.067,97.6268,128.6959,0.81443,3.0233,3.0646,0.42906,0.39869,4.1696,7.6682,0.81757,0.19332,0.32208,0.79482,5.4218,5.8867,4.2723,4.4202,0.07224,4.8564,2.0194,1.6169,0.38336,0.37054,1.9435,0.00124,2.0098,1.3518,0.45181,0.00414,7.3412,7.3169,1.983,1.8742,0.23731,0.30529,3.7466,3.4567,1.4479,1.5448,0.00088,0.00096,1.969,0,6.6402,6.6129,0.23156,1.0331,5.215,4.9122,10.5636,9.8194,6.263,5.7349,1.7255,0.02822,2.897,0,0.66198,0.94623,0,0,4.6078,4.7546,2.8596,1.6916,0.92238,0.94425,1.915,1.7162,0.00154,0.00046,12.1516,11.3461,2.1433,2.7388,3.3985,3.295,0,0.00015,0.00001,0.0049,3.0606,2.6286,8.6448,6.5694,2.557,2.9638,1.5261,1.2675,0.38842,0.78485,0,8.1361,1.354,1.2601,1.6139,1.7069,6.3496,0,1.5879,1.7702,0.81661,0.79424,0.00052,0.00013,0,3.5064,5.1788,1.2354,4.2459,2.8771,1.7984,8.1941,6.6416,6.2873,7.424,6.7532,0,0,1.1316,1.2821,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd928,,,M,1.7335,2.2655,0.38218,0.39718,0.8276,0.80084,15.6103,2.7956,2.6911,46.8493,47.4475,13.3453,13.839,201.5903,200.344,1.9086,3.2024,3.0014,1.2968,1.3149,23.7819,24.0846,1.4013,1.3821,3.4135,3.444,6.2277,6.5512,4.145,4.3835,0.07383,4.7631,2.4087,2.6234,0.38586,0.38747,4.1233,4.8432,3.6279,4.1858,1.739,1.6083,9.5422,8.3923,3.0008,2.9022,3.4617,3.7078,4.5471,4.5253,1.6222,1.4028,1.8373,1.7849,3.7183,3.7036,7.1612,6.7408,1.7907,1.8414,5.8883,6.0919,11.1037,9.5801,7.7672,7.4548,2.2504,2.3401,4.2137,4.5229,1.4899,1.7034,17.7483,17.0774,5.1316,6.4312,3.4252,3.6339,1.0517,1.0322,2.5015,2.357,7.6513,7.0546,13.611,12.5696,2.5712,2.8797,4.0199,4.1374,3.53,3.4705,1.5588,1.3536,3.7538,4.3477,10.2318,10.7974,2.9075,3.2237,2.3751,2.269,1.6549,1.8166,9.8458,11.4231,2.2682,2.4751,2.0756,2.273,11.9822,12.057,1.3661,1.5016,1.1412,1.1993,14.878,14.0278,4.955,5.1128,7.4471,8.2508,4.2512,3.38,9.5575,10.1458,5.8607,6.0871,7.1975,6.3369,3.2215,3.444,1.3226,1.4197,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd929,73,73,M,1.7782,2.263,0.37023,0.43295,0.91609,0.95982,19.0873,3.5276,3.1726,50.7498,51.2977,15.8558,16.5995,232.3607,224.409,1.9797,3.7357,3.4854,0.831,0.50083,25.7333,30.2222,1.6363,1.7373,3.7304,3.8729,7.3263,7.5892,4.8366,5.2066,0.08748,4.9781,2.4731,3.0753,0.42028,0.42884,4.4445,4.8053,4.3715,4.8936,1.5749,1.4033,7.9801,9.481,3.1197,3.0054,4.1078,4.2174,5.6521,4.613,1.876,1.8532,1.9053,1.823,3.635,3.4425,7.894,7.159,1.9996,1.9996,6.8803,7.3491,12.4007,11.3456,8.4853,8.032,2.1833,2.2165,4.3869,4.7967,1.8869,1.8501,20.8868,19.892,4.6266,6.6359,3.6316,3.7363,1.0851,1.2664,2.906,2.8198,8.0629,7.0881,15.2482,14.7553,3.7168,4.3392,4.3302,4.6409,3.3793,3.0753,1.5359,1.4126,4.1452,4.7807,11.8649,12.7505,3.425,3.6757,2.3321,2.412,2.4729,3.1049,11.5448,12.5624,2.1795,2.3966,2.2995,2.4613,13.1865,15.2549,1.8109,2.8636,1.2266,1.3691,13.4644,13.7179,5.3932,5.845,7.4343,8.5741,4.5894,3.9702,10.3976,11.8615,9.075,8.561,8.3723,8.1949,3.6254,3.4384,1.5229,1.6412,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd930,,,M,1.7635,1.9242,0.31335,0.36732,0.79662,0.82209,20.2468,2.5394,2.4381,48.9823,48.7858,17.0926,17.01,251.1307,245.2991,1.6919,3.3151,3.0983,0.61913,0.54447,17.315,20.0338,1.7228,1.6234,3.4877,3.4564,6.8653,8.0247,5.179,5.6066,0.08694,4.8087,2.174,2.987,0.36026,0.35012,4.1278,4.6802,3.9487,3.7471,1.7262,1.4517,10.0486,9.2595,3.2255,3.2162,4.0376,3.9881,5.0648,5.1473,1.4613,1.5029,1.8946,1.8812,3.4371,3.2432,6.8674,6.7283,1.9964,1.9996,7.7992,7.4757,10.4518,10.5973,8.0404,7.4887,2.1918,2.0673,4.5636,4.542,1.8048,1.8088,16.9019,17.3834,5.8715,6.4712,3.7058,3.6686,1.1856,1.0871,2.7318,2.5253,8.9869,7.5799,13.0276,13.909,3.2372,4.2916,3.8945,4.2695,3.3216,3.275,1.4724,1.3442,4.1182,4.2021,10.4286,9.9015,2.7524,2.8295,2.3357,2.2809,2.1997,2.1325,10.3188,10.9985,2.1961,2.3944,2.0686,2.2792,11.8972,12.417,1.8222,1.9274,1.09,1.1504,14.2123,14.5737,5.8279,5.2185,7.6464,7.7956,4.0299,3.2927,9.9145,10.4126,7.1689,7.0146,6.9538,6.9161,3.6254,3.707,1.5785,1.5717,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd931,71,71,F,1.1751,1.4205,0.3775,0.43293,0.82078,0.90388,15.9782,2.7961,2.818,40.2222,41.6152,12.6382,13.4068,222.5085,226.454,1.368,3.1876,2.9384,0.38128,0.37161,14.5741,13.8356,1.7547,1.7893,3.4765,3.6449,7.0589,7.512,4.5527,4.7758,0.08036,4.4112,2.1285,2.2385,0.38425,0.38596,3.9022,4.4341,4.0215,3.9407,2.0187,1.7945,10.0195,8.7286,3.2221,3.4042,3.821,3.9924,4.2417,4.4412,1.7315,1.7455,1.8849,1.9253,3.9318,3.5415,7.133,7.0765,2.1363,2.2761,6.6074,6.0722,11.3876,11.1868,8.111,6.7788,2.5382,2.8104,4.8619,5.2523,1.954,1.9858,20.9626,19.8562,4.7728,5.6511,4.2627,4.5908,1.0299,1.0919,2.5739,2.5365,7.7004,6.5824,13.8112,13.6718,2.796,3.4097,4.16,3.9337,3.3756,3.0305,1.6253,1.8071,3.7308,4.3916,10.444,11.349,2.9475,2.9691,2.2439,2.2657,2.0188,2.1338,10.3026,11.8666,2.5605,2.7952,2.1686,2.3425,14.1,13.5612,1.9026,1.7056,1.3019,1.2201,15.0981,16.123,5.4556,5.7834,8.5253,9.5465,3.9385,3.7762,10.3715,10.6501,8.115,7.8241,8.3154,8.1256,3.8404,3.616,1.4217,1.54,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd932,81,81,F,1.6874,1.4237,0.28932,0.3229,0.6762,0.61564,15.4763,2.2485,1.8892,40.6976,38.1448,11.0862,11.7821,169.8396,169.618,1.9741,2.7299,2.4226,1.9068,2.4151,42.7786,43.4433,1.3342,1.2873,2.6432,2.3521,5.3345,5.6467,3.8723,4.1105,0.0605,4.4656,2.1165,2.1249,0.30289,0.31885,3.415,3.6553,3.2654,3.6208,1.4618,1.2468,7.4411,6.9027,2.4088,2.151,3.6036,3.3553,3.7966,3.5516,1.2539,1.2354,1.7421,1.5836,2.9935,2.8388,5.7398,5.6728,1.6173,1.0331,4.785,4.9093,8.3535,8.4368,5.4476,5.459,1.8577,1.8303,3.8319,3.825,1.2638,1.3208,15.1883,15.5908,4.149,4.4411,3.0201,3.0339,0.97928,0.94701,2.1427,2.0881,6.3032,5.4923,9.7986,10.3966,1.8272,2.2493,3.2993,3.4339,2.9738,2.7091,1.2625,1.2394,3.2125,3.3802,8.2959,7.6789,2.3072,2.4325,2.2098,2.2212,2.0023,1.6677,8.5484,9.8218,1.894,2.2377,2.0061,2.1697,10.3928,10.8212,1.3738,1.6744,0.88717,1.0621,12.8439,12.0223,4.6205,4.6898,7.202,7.0627,3.0945,2.3676,8.8494,9.2684,5.0048,5.655,6.2429,6.0501,2.9302,3.2392,1.4436,1.3825,,6,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd933,73,73,M,1.9515,2.8461,0.30154,0.26814,0.60887,0.59923,16.9955,2.7353,2.1002,41.0361,41.6131,14.3029,14.7858,193.1778,188.7927,2.2084,2.6794,2.6209,0.7124,0.85492,27.4718,27.8679,1.4372,1.4572,3.3698,3.0238,5.7264,6.3167,4.2138,4.3908,0.07364,3.9853,2.1837,2.1259,0.30935,0.32624,3.6725,4.1821,3.6869,3.9,1.5756,1.3463,10.3634,8.7758,3.2184,3.0384,3.5194,3.7297,4.1389,4.0899,1.2567,1.1384,1.8156,1.7537,3.3402,3.3368,6.417,6.1736,1.7185,1.8822,6.5168,5.4306,9.8271,10.3489,6.9544,6.3129,1.9334,2.1584,3.8307,3.5663,1.5936,1.4935,15.7474,15.3404,5.0421,5.1979,3.3093,3.427,1.0385,1.1753,2.5617,2.771,7.4986,6.4788,12.3066,12.0092,2.3636,2.9097,3.9081,3.6264,3.3267,2.9717,1.3553,1.4634,3.0558,3.4659,8.5675,8.9741,2.4895,2.7751,2.2046,2.0918,2.1563,2.5641,8.5484,9.8218,2.0676,2.3358,1.9643,2.0868,11.2482,11.7657,1.737,1.9443,1.1388,1.1707,12.5704,12.6023,5.1579,5.4272,7.3278,8.8249,3.5488,2.9305,10.6498,9.2838,7.5225,6.9282,7.0344,7.2938,3.309,3.6834,1.4047,1.5247,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd934,80,80,F,1.8046,2.2666,0.23863,0.28135,0.77549,0.761,15.6312,2.2682,2.3055,42.8936,41.2085,13.2443,13.2882,177.4279,173.5885,1.8042,3.0186,2.8084,1.1642,1.2296,23.7819,26.1031,1.3135,1.2852,3.1843,3.2691,5.6364,5.6835,4.0902,4.2826,0.08676,4.5072,1.928,2.1089,0.36412,0.33122,3.7732,3.9163,3.5221,3.7654,1.4402,1.3245,8.3732,7.1597,3.1923,2.7131,3.3255,3.5531,4.1389,4.2358,1.4715,1.4878,1.5528,1.6262,3.3126,3.1043,7.0857,6.775,1.5746,1.6118,5.6698,5.7125,11.7899,9.7307,7.5987,7.1609,1.8998,2.022,3.8459,4.0693,1.3793,1.4548,15.2181,15.3404,4.3218,5.2317,3.0518,3.293,1.0589,1.0809,2.2721,2.4518,6.9458,6.0318,14.489,11.7817,2.817,3.4845,3.9066,3.9485,2.708,2.473,1.3545,1.3473,3.3135,3.9112,9.0214,9.3387,2.4499,2.8032,2.0291,2.0073,1.7461,1.6606,8.0006,9.1597,1.9919,1.9402,1.9277,2.0436,9.6834,8.8425,1.6217,1.6524,0.99556,1.0459,12.6424,11.3018,4.862,4.9445,6.9574,7.344,3.6579,3.0225,8.2873,7.7179,6.5968,6.6294,6.7108,6.9261,2.7421,3.1627,1.2484,1.2057,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd935,,,M,1.7433,2.4181,0.43308,0.45254,0.92208,0.94771,16.4676,3.1208,2.8802,44.6183,43.3222,12.9595,13.0713,233.3043,237.6268,2.1695,3.5677,3.3274,0.54138,0.54061,23.0322,27.7174,1.7406,1.7194,3.5031,3.438,7.042,7.3652,4.5718,4.7162,0.08338,4.7605,2.2993,2.5881,0.40149,0.41572,3.9559,5.1348,3.6586,3.3138,1.8094,1.7701,10.2283,9.9207,3.8968,3.8477,4.3899,3.8371,5.5844,5.4991,1.7919,1.8557,1.9582,1.9114,4.1116,3.6687,8.1661,8.1695,2.1816,2.2954,7.469,8.9127,12.4884,13.6809,9.2206,8.7069,2.09,2.5375,4.3481,4.4862,2.0802,2.0095,20.216,19.1111,5.7287,6.5834,4.2,4.3627,1.3109,1.206,2.7194,2.7707,8.9175,7.8075,15.1685,18.2389,3.4708,3.5237,4.5392,4.701,3.7894,3.6453,1.3489,1.4553,4.3894,4.6564,11.0276,10.6004,3.2315,3.3865,2.0792,2.1522,2.6699,2.7929,9.8217,12.3986,2.3497,2.6164,1.9514,2.311,13.3086,12.6387,2.1254,2.2086,1.3198,1.3772,15.5987,17.2763,5.5959,6.1416,7.8592,9.0459,4.5822,4.0371,10.9174,10.4229,7.7947,7.5284,7.785,7.6973,3.1968,3.7906,1.5011,1.7011,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd936,,,M,1.4773,1.8551,0.30712,0.36732,0.77299,0.70023,15.1615,2.3874,2.1702,36.3493,37.8398,11.6495,11.9739,183.508,188.2762,1.5374,2.9478,2.5777,0.74448,0.93226,15.7404,20.5697,1.3624,1.3058,3.3698,3.3626,5.9114,6.3248,4.105,4.1428,0.06387,3.9415,1.8688,2.0198,0.31937,0.33844,3.5102,4.4638,3.7826,3.7464,1.5756,1.312,9.1366,7.5833,3.5049,3.6789,3.6569,3.2958,4.9808,5.2862,1.5043,1.3707,1.5777,1.7166,3.7108,3.169,6.2909,6.9755,2.0307,2.1474,7.4434,7.1014,10.0847,10.4634,7.8971,6.8163,1.9334,2.1873,4.1511,4.0677,1.7515,1.7383,16.9,17.0849,5.154,6.4098,3.6011,3.6508,1.0231,1.0797,2.4677,1.9644,7.0677,6.6371,11.7043,12.1925,3.8559,4.3907,4.0661,4.2771,2.7353,3.0103,1.3089,1.4614,3.4844,3.8391,10.0705,9.6318,2.4547,2.8032,2.0266,2.2063,1.7874,2.2225,9.2833,10.7959,1.9955,2.2464,1.7206,2.1408,11.9469,11.8684,1.6147,1.6047,1.1843,1.2512,16.8157,15.5659,5.2471,4.7219,7.2698,7.416,4.7073,4.4913,9.3013,9.9631,6.2276,5.8152,6.839,6.874,2.9562,3.8071,1.164,1.4343,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd937,60,60,M,1.2958,2.0553,0.42253,0.46989,0.98247,0.98753,19.5486,2.8799,2.9785,56.6536,56.7564,16.2603,16.3574,256.5174,247.3031,1.2229,3.9562,4.4519,0.62167,0.42444,10.2175,9.6637,1.6471,1.7288,4.8434,4.806,7.5007,7.6419,4.8366,4.9977,0.08168,5.5523,2.6203,3.2649,0.45912,0.48888,4.7092,5.4798,4.3245,4.5754,1.8182,1.6856,12.1998,11.7363,4.093,3.5443,4.015,4.3044,5.5844,5.84,1.8996,1.7618,2.1378,2.1611,4.7077,4.2798,8.5003,7.9227,2.4397,2.4964,8.1387,7.4932,12.7428,11.6909,8.4174,7.7599,2.4161,2.7616,5.1192,5.3877,2.0591,2.0987,21.3627,21.2659,7.0774,6.5332,3.9652,4.2189,1.5652,1.0074,3.6503,2.4369,9.1711,8.6758,16.2184,14.5863,3.7683,3.8397,4.7235,4.9495,3.9781,3.8385,1.8217,1.7511,4.4745,4.6564,12.3452,11.2148,3.182,3.4822,2.3087,2.4637,2.3555,2.6854,12.6225,13.663,2.5856,2.7716,1.9456,2.2296,15.4733,13.7474,2.0751,2.3804,1.5078,1.5341,16.1404,15.1686,6.7193,7.8068,9.3915,10.3903,4.9629,4.5727,13.3127,11.3395,7.9658,8.5007,9.5512,9.4607,3.8973,4.191,1.4801,1.7766,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd938,74,74,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd939,84,84,F,2.5515,2.2981,0.28306,0.33732,0.73594,0.64941,14.7621,2.5534,2.8728,33.9342,31.817,11.7082,12.6372,152.1523,150.5561,2.9439,3.0892,2.9396,1.8794,1.333,37.5915,39.4973,1.1776,1.146,3.1843,3.5668,5.6364,5.8214,3.6515,3.898,0.06895,3.9853,1.9258,2.0377,0.3239,0.36174,3.3315,3.7698,3.5266,3.6905,1.293,1.0793,7.942,6.2744,3.5365,3.1161,3.0001,3.0663,4.661,4.7694,1.4435,1.2706,1.5568,1.7025,3.1757,3.1579,6.6402,6.1208,1.5372,1.6227,5.4517,5.3421,9.9931,10.0939,8.124,8.0496,1.7255,1.9873,3.5388,3.2876,1.3007,1.3856,15.2414,14.3944,4.4809,3.9079,2.888,2.9727,1.1577,0.9521,2.6694,2.1671,6.3421,5.5465,12.9694,12.0113,2.2418,2.7624,3.9359,4.0298,2.5222,2.8552,1.2641,1.4357,1.3402,3.4659,8.3383,7.5474,2.7339,2.7595,2.1241,2.1573,1.5943,1.6318,10.0499,11.035,1.94,1.9458,1.7033,2.0971,11.9596,10.5286,1.3702,1.5016,0.91841,1.0318,11.9794,12.0324,4.612,4.5881,6.171,7.0145,4.0085,3.433,8.5211,10.2199,3.5,6.5243,6.0942,6.6038,3.018,3.224,1.1316,1.1515,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd940,71,71,M,1.1722,2.0486,0.37286,0.44442,0.80409,0.86494,18.5205,2.8302,2.7139,48.8941,49.247,14.062,14.5417,201.885,203.2097,0.9901,3.2932,3.0859,0.41352,0.51123,8.3108,9.1725,1.4184,1.4159,3.548,3.8487,6.3787,6.5072,4.6503,5.0437,0.0791,4.9901,2.3305,2.6234,0.41447,0.4061,4.3436,5.2169,3.9821,4.5626,1.5345,1.4033,10.5766,9.553,2.4294,2.1827,4.1476,4.5763,3.6957,3.3427,1.676,1.8051,2.0784,2.2589,3.4999,3.4428,7.4427,7.1853,2.1532,1.9112,5.7902,7.0398,9.9814,10.134,7.6875,7.2814,2.1301,2.2603,4.7746,5.2259,1.7524,1.7519,16.859,17.4076,5.0751,6.07,3.6053,3.7618,0.95715,1.056,2.2511,2.2739,8.039,6.9028,12.9806,12.5685,2.4569,2.7676,3.8536,4.4898,3.7049,3.7512,1.6891,1.4998,3.9265,4.6305,10.4458,10.3626,2.9034,3.205,2.2177,2.3585,2.1703,2.4738,9.1457,10.7141,2.309,2.2818,2.0228,2.3682,12.9067,13.448,1.6753,2.4288,1.2053,1.2452,13.374,12.9795,6.0924,5.7798,7.1324,8.0099,3.6415,3.1632,10.6885,10.5249,7.0612,7.3153,8.3403,7.6834,3.384,3.8172,1.4436,1.7095,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd941,79,79,M,2.3438,2.1882,0.35908,0.41846,0.84859,0.87128,18.099,2.973,2.9211,47.3925,47.9934,14.6699,14.8643,267.0388,260.6464,1.7692,3.3327,3.0683,1.7017,1.6401,26.6813,28.2816,1.8646,1.8286,4.0497,4.2565,6.2151,6.64,4.695,4.8258,0.08702,5.343,2.3039,3.0262,0.33912,0.40403,3.9314,4.574,3.6874,3.6726,2.1278,1.8047,10.0996,9.5056,3.3932,3.9856,4.2634,3.949,4.7289,4.3545,1.5758,1.602,1.9862,2.0271,4.4396,3.839,7.2911,7.4435,2.0653,2.0981,6.628,6.5865,11.3876,11.3352,8.2907,8.0496,2.5203,2.6731,4.5717,4.7808,1.9296,1.9126,21.3402,21.1393,5.1333,6.2887,3.8847,3.8569,0.99419,1.1127,2.3435,2.4756,7.3201,6.8789,13.8898,14.0717,2.7764,3.4704,4.4323,4.6028,3.6501,3.5868,1.5422,1.652,4.0614,4.4731,10.8608,11.6858,3.1894,3.2634,2.2964,2.2597,2.3058,2.497,9.6312,10.3083,2.4929,2.4864,2.1271,2.2384,10.878,10.7317,1.841,2.0925,1.3879,1.3751,14.6467,16.2504,4.9246,5.9736,8.2587,9.3758,4.181,3.4799,9.5689,9.1445,7.575,7.5151,7.2258,7.1076,3.5074,3.9851,1.4135,1.7118,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd942,68,68,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd943,71,71,M,2.4335,2.4877,0.34798,0.42061,0.77148,0.83678,20.4839,2.7661,2.9189,48.2744,46.7113,15.0686,15.5424,200.671,191.9704,2.4442,3.175,3.0569,1.6411,1.2971,31.0961,40.6739,1.4837,1.5372,3.4401,4.0539,6.2423,6.5553,4.9079,4.8368,0.07932,5.1451,2.2072,2.5363,0.37168,0.37411,3.9151,4.3394,4.2631,4.2489,1.7569,1.5322,8.4829,7.8979,3.2858,3.3004,3.4638,3.8802,4.6551,4.3731,1.601,1.5399,1.919,1.8075,3.3523,3.411,7.5272,7.3156,1.6895,1.7072,5.7668,6.553,11.5909,11.192,8.9171,7.8072,2.3287,2.4132,4.4849,4.6375,1.5496,1.6422,17.3679,17.8445,4.618,5.0215,3.6567,3.9422,1.0759,1.1086,2.6479,2.3228,7.2827,6.1987,14.0951,13.6328,2.4513,3.2931,4.453,4.5838,3.316,2.7283,1.6136,1.3539,3.705,3.9134,10.6434,10.4622,2.9202,3.1608,2.3244,2.305,1.9166,2.3958,10.5362,10.1079,2.3178,2.4795,2.3008,2.2904,10.8545,10.7317,1.8628,1.9123,1.1644,1.1993,14.8685,15.2836,4.9246,5.0469,7.4343,8.5434,4.1918,3.0282,10.1514,10.3233,7.9654,7.2878,7.3906,7.3258,3.4165,3.5983,1.5479,1.5275,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd944,58,58,M,1.6205,1.3377,0.39026,0.43211,0.8916,0.89213,18.0157,3.2785,3.1047,44.6002,43.9517,15.1125,16.1998,203.3824,204.3392,1.3533,3.2723,3.0423,0.67856,0.72341,16.1951,20.0561,1.5049,1.4805,3.5571,3.6077,6.8741,7.1811,4.5496,4.8014,0.07994,4.0834,1.7664,2.5484,0.36785,0.36743,3.3679,4.256,4.0128,4.175,1.7381,1.5874,10.0401,8.5316,3.312,3.1292,3.5421,3.5014,4.7247,4.5272,1.6965,1.656,1.8537,1.8645,3.6547,3.0604,7.3344,7.0892,1.9583,2.0598,6.497,6.1595,11.756,11.192,7.714,7.1302,2.184,2.3684,4.574,4.739,1.6815,1.668,18.2342,17.9842,4.6329,5.0215,3.7853,4.1119,0.90751,1.021,2.5825,2.5689,6.975,5.8557,14.6369,14.4641,3.0677,3.4843,4.1216,4.1536,3.2705,3.4872,1.4668,1.318,3.217,3.4659,9.2661,8.6749,2.9996,3.1178,2.4096,2.409,1.8769,2.008,9.151,11.1282,2.3352,2.5758,2.3159,2.3636,10.3723,11.4368,1.9026,1.8446,1.2428,1.3256,13.286,13.7731,4.7566,4.9941,8.2718,8.0248,4.5785,3.5745,8.7778,9.8046,7.1922,6.8695,7.7968,7.2737,3.5397,3.3889,1.4503,1.5844,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd945,75,75,F,1.6914,1.9555,0.44814,0.47721,0.78849,0.7886,17.5233,3.4082,3.3032,44.969,46.1134,13.8184,14.0371,216.916,207.3053,1.6899,3.1891,3.0014,0.93131,0.84058,21.0366,27.1511,1.3918,1.3795,3.9666,4.2364,6.3214,6.5321,4.2532,4.4261,0.08755,4.752,2.2487,2.428,0.40743,0.41072,4.8784,5.3592,4.2007,4.4546,1.9924,1.6144,10.2582,9.5056,3.0119,2.895,4.3249,4.7084,4.4505,4.5504,1.5285,1.4887,2.1033,2.2354,4.2434,4.099,7.0622,6.8231,2.097,2.1032,6.2898,6.4085,11.1621,9.5801,8.0448,7.3579,2.5564,2.5812,5.1542,5.2224,2.1264,1.973,18.2185,19.4458,5.6415,6.3878,4.2496,4.5688,1.112,1.22,2.3051,2.5427,8.6581,7.6754,14.2573,11.3686,3.0666,3.7458,3.8536,4.1958,3.5208,3.5708,1.7251,1.5915,4.0738,4.7152,10.9141,11.75,2.8045,3.4536,2.6966,2.575,2.2661,2.5125,11.2913,11.7131,2.5147,2.6401,2.3544,2.5286,13.196,13.2247,1.9074,2.1193,1.2072,1.2275,14.6511,15.5659,5.305,5.1503,8.3761,9.0181,4.4738,3.7598,11.0487,11.599,7.5951,7.1802,7.7904,7.4025,3.6254,3.7517,1.7121,1.8049,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd946,69,69,F,1.1823,1.5129,0.35506,0.37612,0.83213,0.81498,16.6277,2.8534,2.5817,40.966,41.159,13.3747,13.553,191.9809,185.9051,1.053,3.2427,2.9369,0.81467,0.75845,15.0453,17.6247,1.4064,1.3671,3.515,3.5516,7.0073,7.4677,4.1878,4.425,0.07562,4.224,1.9941,2.2,0.36996,0.35716,3.6289,4.1208,3.9071,3.8667,1.6426,1.563,10.0401,7.8059,3.3215,3.1286,3.7573,3.8098,4.4174,3.971,1.7315,1.6194,1.8298,1.845,3.2989,3.0901,6.3183,6.3211,2.0401,1.9994,5.9165,6.2899,9.7293,9.9061,7.7153,7.1609,2.1498,2.3593,4.2057,4.3599,1.8351,1.6782,17.7419,17.1771,4.0075,5.8687,3.7851,3.7478,0.93798,1.0828,2.4041,2.549,6.7355,6.1179,11.541,12.0241,2.7949,3.0168,3.9359,3.7681,3.3205,3.1188,1.4622,1.3536,3.3779,3.7284,9.1,9.2699,2.6696,2.8781,2.0832,2.0505,2.0884,2.4953,8.5287,10.6662,2.4919,2.4218,1.8749,2.0989,11.1654,12.4066,1.6953,1.9809,1.1622,1.1725,13.2802,13.8267,4.719,4.8703,7.822,7.9887,4.0913,3.2329,8.7778,8.3378,6.2276,6.0375,7.2326,6.7432,3.591,3.3844,1.4741,1.5795,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd947,69,69,M,2.1889,2.7178,0.41651,0.45745,0.96199,0.99176,18.9611,3.3179,3.1684,43.1093,42.0541,14.449,14.7498,251.5014,247.3031,1.9461,3.8127,3.3285,0.831,1.2937,23.4697,29.8965,1.718,1.7644,3.5557,3.8377,8.15,8.5207,4.6789,4.9244,0.07485,4.467,1.9909,2.4458,0.37923,0.38773,4.1313,4.7119,3.8533,4.0384,1.9376,1.7295,10.9565,9.4514,3.3603,3.0346,4.1024,3.9467,4.6632,4.4996,1.8996,1.8532,1.7548,1.7836,4.0432,3.5221,7.894,8.0619,2.1974,2.2761,6.5246,6.259,11.9546,11.8025,8.3185,7.8848,2.4443,2.4985,4.7873,4.9715,1.8458,1.9453,18.5718,18.4741,4.9903,5.3035,3.9216,4.4004,1.0775,1.1116,2.656,2.5166,8.372,7.0037,14.8922,13.2979,2.9953,3.5094,4.3302,4.1854,3.0321,3.1416,1.5115,1.4155,4.0406,4.6327,10.9019,10.9844,3.4273,3.3717,2.5604,2.5088,2.2714,2.5248,11.1992,11.1987,2.3298,2.8676,2.1531,2.4032,11.8631,11.7792,2.0422,1.9261,1.2933,1.3543,15.1247,14.7828,5.7548,5.6205,8.2741,8.9492,4.4534,3.6212,10.2284,11.1606,8.4316,8.4616,8.4608,8.3006,3.3878,3.8217,1.6638,1.8083,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd948,76,76,M,2.4682,2.4571,0.28581,0.33732,0.65022,0.70051,15.3609,2.3546,2.3038,42.5346,42.6192,12.794,13.644,151.1903,148.1433,2.7381,3.0829,2.8349,0.99284,1.5065,31.3476,32.0552,1.2711,1.2994,3.3326,3.2175,5.3636,5.6673,3.8011,3.8831,0.08302,4.0987,2.0712,2.5436,0.41304,0.38533,4.0312,4.706,4.1727,4.6432,1.6703,1.5717,9.61,8.2307,3.666,3.319,4.1108,4.3194,4.9808,4.0945,1.4815,1.3429,1.8778,1.953,3.7183,3.3382,7.167,6.9648,1.9019,1.8953,6.4312,6.4585,12.3185,12.081,8.5193,8.0496,2.0495,2.4265,4.2979,4.2699,1.6483,1.7445,20.3537,18.4001,5.6415,5.9223,3.7841,4.0077,1.1702,1.3535,2.9708,2.8146,8.0908,6.6326,14.9277,14.9531,2.5282,2.7739,4.0047,4.0093,2.944,2.9253,1.5239,1.5872,4.074,4.7787,11.3982,10.7039,2.7099,2.8411,2.6472,2.8041,1.9108,2.3713,9.1919,11.7269,1.9431,2.345,2.2918,2.3124,14.0005,13.0547,1.7924,2.1135,1.1721,1.2275,14.225,15.124,4.9986,5.0761,7.2824,8.0917,3.8669,3.134,10.9174,10.6438,7.8384,6.6392,7.2795,7.1147,3.3409,3.9026,1.6507,1.6991,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd949,85,85,M,2.6191,2.5393,0.38018,0.39586,0.74336,0.78073,16.1262,2.6719,2.6895,39.2035,41.5414,12.6382,13.4068,201.5903,200.7235,2.1683,3.175,3.0335,1.0505,1.2494,25.6969,28.4876,1.6206,1.5737,3.3738,3.1469,6.5881,6.6044,4.6038,4.8757,0.08126,4.814,2.0194,2.3144,0.38239,0.38384,3.7422,4.2915,4.1091,4.2311,1.7418,1.6694,9.5638,8.3953,3.479,3.1567,4.168,4.5054,4.7899,4.7757,1.4113,1.4146,1.9208,1.8671,3.8508,3.3598,6.9071,7.0253,2.0468,2.1019,6.0251,5.3023,11.0173,10.0447,7.8474,7.4427,2.2476,2.3732,3.9778,4.426,1.7657,1.6281,17.0618,16.9412,4.9182,5.6348,3.9253,3.8666,0.90442,0.99913,2.2481,2.1599,7.7374,6.5146,13.305,11.2738,2.5289,2.8619,4.0199,3.952,3.3483,2.7283,1.5778,1.4449,3.5546,3.9026,11.9276,11.4987,2.7524,2.8589,2.5593,2.2662,2.1933,2.2847,8.7266,9.9287,2.2682,2.5752,2.2937,2.2557,11.3061,11.9401,1.792,1.9411,1.3166,1.3644,13.9933,13.8501,5.2099,5.4187,8.0461,8.6843,4.2109,3.6641,10.6321,11.59,7.1461,6.7763,7.4054,6.4164,3.269,3.3501,1.6457,1.8361,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd950,65,65,F,0.98147,1.759,0.33504,0.38328,0.82722,0.81606,13.6372,2.4491,2.354,40.7918,41.3507,10.0802,8.9953,223.5163,216.5383,1.029,2.9997,2.9587,0.343,0.41529,8.3108,11.6928,1.4165,1.3632,3.5597,3.455,6.1974,6.1372,3.8999,4.1494,0.06742,3.1358,1.988,2.097,0.33985,0.34437,3.6402,3.9625,3.6874,3.7863,1.6426,1.4954,9.7765,9.1829,2.8293,3.0208,3.5675,3.3355,4.3404,4.0278,1.6187,1.671,1.8392,1.7542,3.2442,3.6121,7.8632,6.6344,1.9155,2.1122,6.0584,5.5259,10.8778,10.2375,7.1358,7.1866,2.1651,2.2204,3.9778,4.228,1.5917,1.5876,17.3869,17.9538,4.2627,5.9041,3.6249,3.8401,1.0832,1.1926,2.1203,2.9515,6.6975,6.2394,14.7833,13.0736,2.5652,2.7924,4.0136,3.8738,3.2367,3.4594,1.4407,1.3513,3.8068,4.3145,10.444,10.1569,2.7955,2.9977,2.1191,2.0623,1.963,1.9125,9.3283,10.4723,2.0923,2.1792,1.7206,2.0569,10.4972,11.5839,1.7638,1.533,1.0297,1.1325,13.2237,13.027,4.8122,4.8952,8.062,7.965,3.9745,3.5751,9.887,10.4126,7.3024,7.1457,7.1644,6.2556,3.2606,3.9512,1.3372,1.3227,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd951,,,M,2.4514,2.0322,0.34701,0.34666,0.84531,0.71981,22.0641,2.5624,1.6978,52.1853,52.2641,20.511,19.3243,245.8511,238.2906,2.233,3.3497,3.0874,0.96117,1.0446,32.8686,36.3813,1.6193,1.6208,3.5546,3.8535,6.9738,7.0742,4.8444,5.103,0.10665,5.6373,2.3638,2.9675,0.37894,0.3934,4.2702,4.7775,4.2215,3.9313,1.6155,1.552,9.615,9.4377,3.8376,3.3336,4.0561,4.0122,5.7872,5.2259,1.6092,1.4878,1.8085,1.8671,3.8239,3.8607,7.5028,6.8239,2.2793,2.2232,7.1968,7.4721,12.1627,10.7906,8.2625,7.5048,2.133,2.4125,4.6893,4.7795,1.8483,1.8501,18.9174,19.788,5.8835,6.6704,3.7239,4.276,0.94118,1.1814,2.0523,2.751,8.8827,7.5799,15.7273,13.7679,3.7168,5.7639,3.9853,4.2695,3.8443,3.163,1.4291,1.4772,4.1098,4.3027,10.9989,10.0543,3.0706,3.2449,2.3244,2.2809,2.0026,2.3823,11.1992,12.4707,2.1732,2.4762,2.2256,2.2655,12.5486,13.1256,1.8902,2.8074,1.3407,1.4052,16.4027,15.0927,6.077,6.0104,8.3242,9.1652,4.6967,4.1031,9.9513,9.7962,7.0267,7.1852,7.7944,7.2036,3.2533,3.4383,1.6169,1.7415,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd952,69,69,F,1.4994,2.6631,0.34606,0.38521,0.69704,0.64098,17.3583,3.0644,2.8513,43.2544,43.4035,13.8917,14.4429,203.3339,201.5569,1.4373,2.9139,2.8019,0.47172,0.49947,16.0833,20.0821,1.3945,1.3795,3.3088,3.1882,6.1564,6.3614,4.2623,4.5315,0.0892,4.3788,2.0161,2.3483,0.35284,0.35716,3.525,3.9461,3.6267,3.9336,1.5942,1.3199,10.1877,9.1753,2.8482,2.7817,3.984,4.0141,4.2835,4.1327,1.3679,1.2057,2.033,2.0164,3.2479,2.9676,6.5704,6.0968,1.8239,2.0598,6.1681,5.7585,9.5523,10.5956,7.0904,6.3769,2.1142,2.0547,4.0911,4.1706,1.5811,1.5876,15.1184,16.5744,5.123,6.1263,3.4649,3.86,0.8514,1.0391,2.1904,2.3103,6.8391,6.3812,12.0458,13.5345,2.2906,3.2931,3.9168,3.9667,3.3829,3.2799,1.4056,1.3618,3.9989,4.2587,10.3754,9.9526,2.3849,2.6581,2.3501,2.2649,2.2338,2.5173,9.7286,10.7874,2.2844,2.2895,2.1534,2.0593,11.388,12.094,1.6137,1.9742,1.2428,1.2614,13.8201,13.1121,4.8735,5.0962,7.077,9.1424,3.8805,2.992,9.4279,9.1445,6.4612,6.5359,7.3106,7.624,3.3747,3.6085,1.5415,1.6046,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd953,70,70,F,2.4142,2.2218,0.33104,0.42615,0.83918,0.8721,16.0241,2.3362,2.2964,41.5171,45.4621,12.6077,12.9331,214.4218,210.2855,2.0844,3.2027,3.0738,0.83194,0.76028,23.9601,26.8131,1.5208,1.4512,3.3505,3.5089,6.2277,6.7249,4.4644,4.7191,0.09323,4.4402,1.9541,2.296,0.41184,0.3906,4.6205,4.8598,4.2447,4.5975,1.926,1.7562,10.9287,10.1742,3.0371,3.0054,4.2444,4.399,4.3487,4.7369,1.5516,1.5666,2.2787,2.1359,4.3682,4.0207,7.1384,7.3729,2.0694,2.2066,7.6147,6.5178,11.3475,11.0739,7.7003,7.1441,2.3845,2.7207,4.4032,4.9895,2.035,1.984,20.7405,20.5486,5.5976,7.1611,3.8739,4.2149,0.95377,1.036,2.5734,2.549,9.1646,7.8788,13.8898,13.0046,3.1843,3.3043,4.3009,4.3724,4.0074,3.4918,1.8121,1.7543,4.2617,4.7365,10.4945,10.3626,2.8378,3.2449,2.5976,2.855,2.4736,2.5505,9.2692,11.6356,2.4833,2.6944,2.3842,2.6681,12.0314,12.9433,1.9556,2.2623,1.3605,1.379,14.6511,17.4915,5.1314,4.8956,6.923,8.0256,4.2727,3.3894,10.9979,11.1783,7.3433,7.1216,7.8609,7.4728,3.9793,4.2752,1.6713,1.5202,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd954,60,60,F,1.6007,1.9146,0.36347,0.40587,0.81818,0.82365,17.9623,2.8241,2.5681,46.1595,46.635,13.6561,13.873,206.3472,203.3802,1.7597,3.2027,3.0054,1.5235,1.3809,31.295,33.4058,1.4961,1.4541,3.3207,3.3141,6.6723,7.0188,4.3567,4.6199,0.06532,4.6394,2.1004,2.4806,0.35503,0.37608,3.7313,4.1727,3.8964,4.0682,1.7692,1.5874,9.7901,8.6035,3.2904,2.9452,3.8993,4.138,4.3664,4.2503,1.5516,1.5372,1.8671,1.8507,3.3523,3.2678,6.8674,6.4708,1.8311,1.93,6.0933,6.3134,10.3745,9.9259,7.659,7.1498,2.2048,2.3807,4.1706,4.5183,1.6885,1.6313,17.5811,18.325,4.9182,5.7157,3.5901,3.8426,1.161,1.2133,2.8162,2.8842,7.3052,6.6387,13.5573,13.4424,2.9431,3.0627,4.0702,4.2594,3.386,3.1416,1.3933,1.4181,3.5251,3.8657,9.6719,9.4352,2.9635,3.2237,2.0511,2.1921,2.0051,2.2584,10.3026,11.0887,2.3077,2.3726,1.8901,2.173,12.0222,11.9228,1.6444,2.0838,1.161,1.1584,13.5098,13.3514,4.5318,4.9835,7.763,8.2238,4.1034,3.1844,9.0019,9.2288,7.0259,7.2854,7.0906,6.8573,3.3051,3.4384,1.3723,1.3711,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd955,78,78,M,3.0911,2.5393,0.37516,0.40365,0.84848,0.87834,18.1907,2.8857,2.8398,46.439,46.0664,14.2442,14.3871,200.6661,191.4103,2.2756,3.6912,3.3839,2.0116,1.4956,31.2259,32.0552,1.3688,1.3587,3.5275,3.8389,6.1684,6.4669,4.5574,4.7364,0.06372,5.0502,2.3057,2.7636,0.41278,0.39466,4.0091,4.7562,4.5114,4.6694,1.6962,1.3355,9.615,8.9409,3.6043,3.623,4.3265,4.7189,5.3684,4.7596,1.5978,1.6225,1.9053,2.1288,3.4999,3.4748,7.3746,7.0828,1.795,1.8851,7.0583,7.1021,12.1539,12.1686,8.5997,7.7697,2.0495,2.0016,4.827,5.3246,1.5281,1.5775,17.7081,16.0005,5.1874,5.6858,3.6869,3.4488,1.2995,1.2298,2.8414,2.9668,8.2643,7.372,14.0658,13.9066,3.9516,4.4609,4.2578,4.593,3.1325,3.1692,1.3809,1.4158,4.3894,5.0361,11.757,10.7933,3.0706,3.1881,2.7021,2.7233,2.1122,2.6676,11.5448,13.0472,2.1878,2.2995,2.3358,2.2754,9.9662,11.4284,1.8675,2.0741,1.2384,1.2961,13.268,14.2373,5.3727,5.5141,8.1332,8.7963,4.4252,4.1879,9.6149,11.9904,6.8985,7.0583,7.7156,7.0299,3.3832,3.6508,1.5237,1.5672,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd956,68,68,M,1.8597,2.6021,0.30154,0.33027,0.69146,0.65329,15.5866,2.3546,2.3038,38.4725,39.0933,12.2977,12.4404,188.2278,194.9133,1.6263,2.8093,2.6841,0.69365,0.59791,14.9264,21.9909,1.3624,1.315,2.8944,3.0414,5.7971,5.5759,4.145,4.1851,0.06565,3.9495,1.89,2.0222,0.30675,0.31563,4.133,4.1983,3.5469,3.7776,1.4124,1.3274,8.0657,7.2396,2.5069,2.5517,3.5194,3.4004,3.8955,3.4814,1.2911,1.3576,1.7125,1.7282,3.1919,3.0048,6.1386,5.759,1.6994,1.6888,5.6885,4.9306,9.6159,9.1482,6.8636,5.8129,1.9844,2.0345,3.9624,3.9006,1.4245,1.4548,14.5155,14.5091,3.9228,4.7552,3.2234,3.3296,0.76103,0.79301,2.1241,1.9321,7.0436,6.3812,12.7,11.827,2.1221,2.4683,3.7215,3.6789,3.0878,3.3054,1.4511,1.2037,3.6107,3.8171,9.7507,10.4289,2.5148,2.6681,2.144,1.9411,2.0738,1.9609,8.9708,10.3743,1.9175,2.1636,1.8667,2.0156,11.2482,10.2998,1.6213,1.6416,0.96188,0.99286,11.9794,11.1137,4.6001,4.9238,6.3937,7.8321,3.2598,2.7703,9.1265,9.1825,6.2157,6.018,6.2998,6.1193,3.1653,3.3739,1.3568,1.3848,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd957,,,M,2.1427,2.4283,0.27463,0.31748,0.65022,0.6567,17.5521,2.8393,2.3782,45.7654,46.3144,17.1083,17.357,242.2161,238.2906,1.9669,2.7931,2.4759,2.2907,1.9334,19.6264,21.0381,1.7801,1.7443,3.6701,3.5296,6.2777,6.5556,4.6057,4.9294,0.09039,5.0546,2.231,2.7636,0.29742,0.31393,4.4232,4.6633,3.8345,4.2382,1.4529,1.3767,10.2363,8.6252,3.1364,2.9269,4.0336,4.1119,4.5157,3.6558,1.2354,1.2884,2.038,1.8781,3.7219,3.7446,5.6571,5.671,2.0589,2.0723,6.0598,5.7805,8.0071,8.6306,7.7439,7.6062,1.8889,2.0831,4.7228,4.7063,1.7793,1.8793,18.9489,20.1029,5.0966,5.4664,3.0089,3.5735,1.1493,1.243,2.6392,2.5869,7.1681,6.5859,8.3232,10.6118,2.7605,3.4704,4.0605,4.4023,3.7043,3.859,1.3361,1.3629,3.9306,4.4367,10.3895,10.5725,1.593,2.8521,2.2248,2.2859,2.1185,2.4116,8.8901,10.8421,2.238,2.353,2.1426,2.2782,11.3873,11.4781,1.5149,1.9192,1.09,1.0943,15.2248,15.2984,5.328,5.0925,7.3279,9.726,4.0344,2.9155,10.0717,10.417,5.8004,5.9119,6.5118,5.9722,2.9747,3.6533,1.3599,1.5647,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd958,76,76,M,1.1357,1.7496,0.32501,0.34567,0.92165,0.88935,18.2564,2.3362,2.647,49.0461,47.6329,15.0423,14.7204,203.9915,198.4048,1.029,3.4111,3.2125,0.39907,0.37814,10.3441,9.6637,1.5049,1.4666,3.4495,3.5857,6.7928,6.9347,4.5574,4.7287,0.0698,4.9801,2.174,2.7544,0.33326,0.35564,3.5433,3.854,3.5266,3.7761,1.4067,1.4063,9.1051,8.336,3.4156,3.0523,3.4909,3.7558,4.7749,4.1609,1.7915,1.8342,1.7108,1.7876,3.2413,3.3803,8.1937,7.683,1.9094,1.9581,6.6976,6.8599,11.5841,11.941,9.0811,7.9168,1.885,2.0739,4.5526,4.6586,1.4951,1.5214,17.2089,17.3982,4.9671,6.07,3.113,3.9265,1.3114,1.1114,2.8439,3.0216,6.3706,5.7266,13.6094,13.8303,3.4065,3.896,4.453,4.5027,3.4185,3.4294,1.3089,1.2491,4.3285,4.728,10.231,10.4413,3.0453,3.2821,1.9205,2.2063,2.0579,1.9104,9.6833,10.4789,2.0466,2.2599,1.7118,2.0694,10.0057,11.4284,1.7499,1.6304,0.99021,1.0239,11.7635,11.8102,5.0806,4.6149,7.4083,7.7832,4.285,3.8479,10.6873,10.6914,6.047,7.1046,8.3723,8.5867,3.1968,3.0854,1.2238,1.2918,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd959,68,68,M,1.9094,1.9663,0.37089,0.42178,0.90876,0.90626,17.6402,3.3177,3.1177,46.4549,47.4475,14.2605,13.7046,201.9419,195.9681,2.9852,3.684,3.3839,0.68332,0.6361,33.4486,36.4767,1.6159,1.6271,3.8694,3.8576,6.7401,7.4037,4.589,4.8199,0.06153,5.0546,2.5427,2.8145,0.38429,0.37465,3.9791,4.2575,4.1206,4.3726,1.5401,1.5227,9.3647,8.7108,3.3191,2.9452,4.0287,4.1651,4.6626,4.4358,1.7817,1.7886,1.8298,1.823,3.3854,3.2018,8.055,7.714,1.978,2.0515,6.6247,6.2071,11.64,11.8025,8.4893,7.7407,2.0562,2.4125,4.5711,4.5385,1.6169,1.7653,17.3506,19.0194,5.0217,5.6957,3.6053,3.9675,0.95377,1.0155,2.4558,2.4667,7.2701,6.7256,13.6094,13.2979,3.0677,3.1802,4.0047,4.1568,3.2752,3.2356,1.5031,1.4181,3.7311,4.24,10.4,10.0906,3.1435,3.3865,2.5509,2.5805,2.5448,2.5273,9.4866,12.15,2.3529,2.5496,2.2556,2.575,12.1052,11.5614,1.7727,2.195,1.0979,1.1542,13.1853,14.0161,4.8422,5.0241,7.3572,9.423,4.1532,3.4117,9.2403,9.647,6.7251,7.4916,7.8905,8.4928,3.1766,4.0589,1.6409,1.8102,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd960,65,65,F,1.1076,1.3598,0.36371,0.40587,0.87013,0.90119,17.5955,2.7863,2.8797,47.735,47.8739,14.2605,15.2252,245.3837,235.9845,1.0792,3.2866,3.0859,0.57188,0.44755,9.6558,9.6637,1.5158,1.5196,3.5165,3.7598,6.4114,6.74,4.6308,4.9063,0.07985,4.5837,2.2981,2.6527,0.37417,0.34714,3.6227,4.2337,4.0128,4.3376,1.7043,1.4936,10.1877,9.301,2.6981,2.4513,3.5289,4.0501,3.9205,3.4888,1.7302,1.8278,1.983,1.9523,3.492,3.2703,7.1333,7.5174,2.0165,2.0947,6.8316,6.5861,11.1866,11.4554,7.7853,7.146,2.2388,2.2746,4.2896,4.2647,1.7892,1.6913,17.1072,17.6304,5.0409,5.6957,3.7609,3.9596,0.89224,0.95416,2.678,2.4824,7.3406,6.721,14.2378,13.1288,3.2217,2.8547,4.3009,4.175,3.1835,3.2136,1.4561,1.4658,3.8402,4.1234,9.2007,9.5475,2.7557,3.108,2.2143,2.1583,1.7577,2.03,9.3051,11.9524,2.4268,2.3577,2.0199,2.2512,10.3723,11.5078,1.5904,1.7077,1.0864,1.1393,12.8768,13.0121,5.0819,5.243,7.2661,8.9568,3.9438,3.4355,10.6959,10.729,7.5386,7.3378,8.145,7.8093,3.2797,3.6927,1.3538,1.493,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd961,73,73,M,1.6891,2.2007,0.32552,0.35956,0.59698,0.63104,17.5517,2.3829,2.2448,43.2213,40.841,15.0955,15.8019,232.1245,226.3817,1.4226,2.6794,2.4134,1.1237,0.76939,16.123,18.2211,1.5604,1.5973,2.9734,3.0408,6.3113,6.5945,4.3958,4.8843,0.07276,4.3109,2.1845,2.4347,0.34375,0.32516,3.8541,4.3399,3.4303,3.5961,1.7181,1.5505,10.2363,8.5074,3.1609,3.191,3.9493,3.4424,4.214,4.0173,1.3058,1.1912,1.7659,1.7366,3.3198,3.5652,6.8917,6.2913,2.0388,2.0114,6.7724,6.401,10.126,9.7291,6.9129,7.1164,2.2145,2.4265,4.5969,4.5669,1.7475,1.7409,16.6827,17.0816,5.0555,5.9096,3.6669,3.7741,1.0611,0.99431,2.465,2.4369,7.2289,6.5477,12.5326,11.984,3.0269,3.807,3.7588,3.8016,3.473,3.5948,1.4436,1.5459,3.993,4.3122,10.0864,10.3716,2.7302,2.8722,2.0965,1.9205,2.2849,2.4582,8.2134,10.25,2.1961,2.434,1.8945,2.0488,12.921,12.0868,2.069,2.0038,1.1427,1.1358,13.1937,13.4957,4.913,5.4187,7.9016,8.8249,4.5928,3.8687,9.3681,10.6744,7.3159,6.8093,7.5055,6.2351,3.2533,3.876,1.5011,1.5136,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd962,77,77,M,1.6946,2.1247,0.37711,0.41771,0.7548,0.68479,15.6103,2.7088,2.7719,17.4511,14.2174,9.3302,3.9949,182.6154,179.6528,2.0996,2.7682,2.5595,0.89895,0.80324,24.2377,27.1775,1.2967,1.3368,3.6399,3.7474,6.1141,6.183,4.11,4.2826,0.079,4.0379,0.01071,1.1706,0.37188,0.37066,3.8507,4.0696,4.1186,4.2244,1.5828,1.1857,8.6949,9.0757,2.8271,2.7872,3.5212,3.4296,3.525,3.88,1.4491,1.2728,2.1566,2.0164,3.4485,3.177,6.3448,6.2422,1.9206,2.012,5.3781,4.7591,9.8718,10.0482,6.8706,5.6735,1.9596,2.0383,4.3398,4.1489,1.5715,1.6054,16.1075,15.9692,4.8364,6.139,3.6249,3.8273,1.3812,1.0161,3.123,2.5253,6.5669,6.171,12.4183,12.4628,2.7174,2.9293,2.5461,2.3413,3.551,3.2757,1.493,1.3204,3.7788,3.884,10.2125,10.7938,2.3207,2.7302,2.4793,2.2883,2.1007,2.2859,9.2381,10.4106,1.967,2.3203,2.0168,2.1983,11.1343,11.0993,1.6544,1.9957,1.161,1.1993,13.6789,13.027,4.8385,4.7192,7.3483,7.3882,3.4902,2.814,9.3173,9.8113,6.4836,6.9802,6.8311,6.9503,3.4369,3.9512,1.2959,1.3618,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd963,,,F,2.053,3.1127,0.36363,0.32138,0.70472,0.71856,17.356,2.7477,2.2636,45.0926,45.2612,14.3518,14.9131,203.0384,197.9945,2.2084,2.9465,2.7187,1.1172,1.3765,23.0322,35.4663,1.3988,1.428,3.4311,3.5257,5.9256,6.9973,4.2138,4.3707,0.06495,4.3864,2.1071,2.4456,0.30675,0.36524,2.7234,3.6164,3.8416,4.0384,1.4349,1.3079,7.3881,7.1368,3.666,3.7261,3.5572,3.3778,5.1278,5.4507,1.3679,1.3508,1.8441,1.8599,3.3566,3.0902,6.3165,7.1173,1.7864,1.8647,6.9756,7.2429,9.1927,10.6466,7.8971,7.4887,1.8851,2.0619,3.1064,4.0456,1.4273,1.458,16.0591,15.7639,5.0888,5.7261,3.1025,3.5444,1.1493,1.0322,2.4373,2.2378,6.5291,5.7123,11.343,13.0084,3.8629,4.3907,3.914,4.1242,3.1312,3.3434,1.3185,1.313,3.0514,3.4843,7.7055,7.5474,2.672,3.0222,2.1383,2.2194,1.8025,1.9119,10.3476,10.8241,2.0466,2.2394,1.737,2.1713,11.9639,12.3543,1.6347,1.7541,0.88812,1.0064,13.0274,12.251,5.0149,4.7219,6.9414,7.3055,4.9115,3.9616,8.5176,7.6989,6.1197,6.4992,6.5621,6.3247,3.0548,3.5039,1.164,1.5708,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd964,66,66,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd965,,,F,0.70972,1.2525,0.34421,0.37091,0.81146,0.764,17.7846,2.5342,2.7543,40.896,41.152,13.5467,14.0153,216.9418,209.6925,1.1615,3.1175,2.822,0.36495,0.34422,11.1323,11.9061,1.5012,1.4491,3.3185,3.2011,6.9572,6.9395,4.2532,4.6351,0.07985,3.7562,2.0176,2.3776,0.34513,0.37409,4.1239,4.6802,3.5085,3.4546,1.6275,1.4833,9.6815,8.0039,3.1924,2.9538,3.8864,3.6587,4.1039,4.0345,1.6458,1.4976,1.6815,1.6726,3.5592,3.0588,7.5268,7.6213,1.9173,1.8986,6.6976,6.362,11.4472,11.7663,7.901,7.0528,2.0886,2.3551,5.2099,5.5488,1.6125,1.7134,17.6055,17.1771,4.7446,6.0615,3.6826,3.7893,1.1946,1.0199,2.3766,2.5952,7.7854,6.8875,13.8112,15.7739,2.796,3.1118,3.9041,3.9532,3.3687,3.34,1.5239,1.4082,4.023,3.9408,9.8153,9.845,2.9314,2.9733,2.0016,1.9671,1.9359,2.1053,7.6773,9.912,2.3405,2.432,1.9364,2.1139,11.3471,11.7325,1.7509,1.7062,1.2357,1.3149,13.2791,14.4246,5.193,4.9853,7.059,7.7548,3.9385,3.1461,10.1847,9.5167,7.09,7.6438,6.9409,7.9921,3.6155,3.1706,1.3581,1.4946,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd966,77,77,F,1.9673,2.1503,0.305,0.38244,0.6034,0.6127,14.6397,2.5445,2.4758,41.3288,41.053,12.1234,12.0742,176.0942,171.0676,1.8061,2.6271,2.5154,0.89895,0.6879,20.2083,24.2123,1.2718,1.2242,2.8162,2.8551,5.8536,6.2727,3.7026,3.9038,0.07289,4.1318,2.0453,2.3454,0.33936,0.3141,3.7277,4.1335,3.6051,3.5946,1.5405,1.3274,8.1557,8.0098,2.4866,2.3553,3.4837,3.6058,4.0856,4.1609,1.2083,1.1929,1.6328,1.6887,3.1512,2.9341,6.0359,6.2742,1.8534,1.8994,6.1881,6.1828,8.6314,9.1264,7.1919,6.3769,2.038,1.9589,4.3012,4.0897,1.5451,1.5493,15.6855,15.9692,4.6568,5.3467,3.4559,3.8057,0.89391,1.1048,2.2109,1.9644,6.5775,5.7755,8.7726,10.4941,2.5652,2.9214,4.0324,3.7844,3.0043,3.0148,1.2752,1.1488,3.6139,3.9031,9.5141,9.1919,2.4985,2.5634,2.1889,2.3411,1.7461,2.2491,8.0006,9.7953,2.0373,1.9831,1.9643,2.0287,12.156,11.8026,1.5081,1.635,1.1364,1.1941,12.9133,12.9226,4.6055,4.6141,6.2964,8.2094,3.907,3.0052,8.0575,9.3309,6.079,5.1293,6.5621,5.8077,3.0297,3.2663,1.353,1.4902,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd967,72,72,F,2.0414,1.6804,0.37638,0.43295,0.84292,0.84107,16.4958,2.9267,3.0819,46.1005,45.2612,13.4651,13.784,211.9412,208.929,1.8061,3.2198,3.0738,0.6937,0.75575,21.4729,20.9017,1.4942,1.4679,3.5463,3.5983,6.7401,6.8888,4.2692,4.4778,0.07148,4.3048,2.1753,2.4456,0.37691,0.36925,4.3489,4.4999,3.6746,3.839,1.6453,1.5729,9.0115,7.8604,3.2904,3.1394,3.4921,3.2949,4.2417,4.011,1.6195,1.6028,2.0376,1.8254,3.3198,3.2323,6.8956,7.0472,1.9686,2.0293,6.5811,5.9785,10.3411,10.3088,8.0576,7.146,2.1988,2.3113,4.8128,4.5013,1.6021,1.7134,18.9184,19.9306,5.0888,5.6453,3.6617,3.8666,0.88561,1.021,2.1624,2.5646,7.1016,6.6809,13.2348,12.7032,3.1998,3.2421,4.0595,3.9924,3.8079,3.3111,1.5253,1.2866,3.8666,4.106,10.2366,10.4257,2.9008,3.1722,2.1295,2.1096,1.8566,1.9191,9.8788,10.212,2.2339,2.474,1.7823,2.2018,11.6594,11.7327,1.6251,1.598,1.122,1.1818,12.557,12.6856,5.1068,5.5878,7.4458,7.3055,3.9438,3.3476,10.0453,10.1367,7.0951,7.3936,7.7616,6.7235,3.4369,3.7102,1.1849,1.3108,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd968,75,75,F,2.0548,1.7023,0.36445,0.41872,0.68032,0.70698,18.4171,3.1676,2.7766,44.1127,43.4867,14.4027,15.3281,222.5464,216.6957,1.6106,2.6126,2.4835,0.86284,0.8374,19.1836,21.5958,1.5439,1.6443,3.6943,3.7474,6.6104,6.4111,4.5769,4.7468,0.08474,4.7616,2.3187,2.6047,0.36423,0.36399,3.6901,4.2625,4.1658,4.2786,1.7366,1.5874,9.6472,7.9257,2.8901,2.8997,4.0083,4.2323,4.1992,4.4238,1.3862,1.5362,1.919,1.8544,3.5073,3.4422,7.1137,7.107,1.8942,1.9946,6.9891,6.3329,11.4342,10.7932,7.8756,7.5599,2.2787,2.4227,4.4676,4.5402,1.5996,1.7425,18.2829,18.3586,5.1591,5.7989,3.5675,3.6104,0.99441,1.2133,2.4198,2.5876,7.2797,6.6941,13.305,12.9016,3.0832,3.8253,4.3071,4.2052,3.0754,2.9994,1.596,1.5541,4.0614,4.4726,10.1131,10.3582,2.6925,3.0296,2.2716,2.4319,2.2513,2.4227,9.654,11.5959,2.3178,2.474,2.0977,2.2557,12.1733,11.132,1.9074,2.0921,1.1782,1.2195,14.7709,14.606,5.0316,5.033,7.8114,8.5936,4.0794,4.2325,10.5337,10.5685,7.4318,6.5692,6.7199,6.9968,3.1585,3.3501,1.4361,1.5884,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd969,66,66,M,0.84724,1.7185,0.3977,0.44194,0.88409,0.8219,19.3435,2.7612,2.6721,45.3326,45.2649,14.5408,15.1152,239.7024,235.5425,0.78724,3.1602,3.0188,0.49761,0.49363,7.5822,9.9239,1.7118,1.7088,3.7745,3.8012,7.7732,7.9295,4.6789,5.0208,0.07369,4.1392,2.0528,2.3744,0.41897,0.42563,3.7232,4.3216,3.811,3.9407,1.8186,1.6453,11.1169,8.9531,3.332,3.1909,3.2401,3.6841,5.0393,5.172,1.6549,1.5702,1.8267,1.8645,3.7168,3.507,7.2452,7.0828,2.1663,2.2954,7.4434,7.4495,11.1037,10.964,7.7678,7.4578,2.3512,2.5762,4.1164,4.2699,1.8408,1.8339,19.4435,18.4817,5.6932,6.7319,3.8157,4.3392,1.273,1.0984,2.44,2.77,7.5534,6.583,12.9644,13.1896,3.2372,3.9531,3.9041,3.9924,3.53,3.307,1.6808,1.4969,4.0465,4.089,10.4226,10.2564,2.8498,3.1161,2.1178,2.146,2.176,2.1531,8.9747,10.3553,2.4015,2.45,1.9514,2.1839,11.6594,11.8905,1.8111,1.9032,1.2019,1.3117,14.6171,14.9169,5.1464,4.9526,8.3342,9.3872,4.285,3.8482,9.9526,10.146,7.1756,6.875,7.3187,7.2039,3.6254,4.2459,1.521,1.507,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd970,,,M,1.7433,2.3245,0.40865,0.41321,1.0465,1.0069,20.4108,3.74,3.4738,51.3226,50.5091,15.1496,15.5261,233.6644,236.6437,1.9797,4.0272,3.6754,1.0738,1.1065,31.4798,29.7356,1.8519,1.8286,3.958,4.0653,8.2756,9.3331,5.2466,5.4219,0.07616,5.1347,2.4147,2.9334,0.47669,0.44193,4.4457,4.8053,4.7838,5.316,2.1762,1.6474,9.5249,8.2205,3.1923,3.1621,4.5601,4.8171,4.1389,4.7357,1.9785,1.8275,2.4494,2.3856,5.8776,4.4307,7.3468,7.2873,2.4575,2.423,6.8896,6.8257,11.2816,11.508,7.8192,7.9235,2.5661,2.6536,4.1448,4.5369,2.196,2.1024,20.8614,20.2197,5.117,6.4884,4.2985,4.5667,1.2274,1.0533,3.1048,2.5553,8.1339,7.0881,14.0727,13.5805,2.9397,3.1936,4.3109,4.7443,3.968,3.9462,1.7436,1.6829,4.2989,4.9742,10.4945,11.3595,2.921,3.1965,3.0874,2.9309,2.8213,2.5593,9.6887,12.15,2.6022,2.8106,2.5633,2.7744,14.2536,14.3597,2.5439,2.1991,1.4417,1.443,13.344,15.2206,5.8464,5.8171,7.0599,8.2955,4.2164,3.4882,10.3841,12.7536,7.6115,6.3064,8.7804,7.923,3.9177,4.2673,2.0162,1.6798,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd971,67,67,M,2.0299,2.8467,0.37692,0.4713,1.0559,1.0282,27.2308,2.969,2.9302,51.3652,50.3785,17.6235,18.2437,267.6691,268.7903,2.0269,3.73,3.7705,0.831,0.73717,31.4798,31.0679,1.73,1.7008,4.7141,4.7899,8.0712,8.3188,5.0187,5.2838,0.07687,5.3326,2.359,2.9397,0.45912,0.47435,4.4632,5.3928,4.7992,5.01,1.8966,1.3935,11.7542,10.0604,3.0736,3.0552,4.2181,4.6944,4.2201,4.1975,2.4117,1.9169,2.4777,2.3582,4.3129,4.3146,8.4549,8.1521,2.5943,2.687,6.777,7.1936,13.1236,12.3874,8.0981,7.7784,2.422,2.283,5.1863,5.5615,2.2046,2.1285,19.3203,20.819,5.3797,6.6668,4.3027,4.4376,1.041,1.5042,2.7471,3.2996,9.0757,7.724,15.3602,15.7275,3.3871,3.9225,4.4752,4.6028,4.5249,3.6933,1.7251,1.4322,4.3679,4.979,10.9832,11.1584,3.4057,3.6837,2.5671,2.5942,2.415,2.5739,12.1582,11.7424,2.4879,2.3966,2.2593,2.5655,15.4733,16.7357,2.0878,2.1086,1.3336,1.4052,15.5987,15.8127,6.055,5.4839,8.8272,9.0909,4.3263,3.144,10.7756,11.9308,8.4401,7.4672,8.7387,8.8122,4.2315,4.0589,1.6302,1.9359,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd972,,,F,1.6135,1.7191,0.33279,0.38686,0.83645,0.81498,16.6399,2.6115,2.3667,44.2168,42.9856,14.325,14.2885,213.2188,208.3012,1.5266,3.2427,3.2571,0.8956,0.86925,16.123,20.6057,1.4597,1.4622,3.2129,3.136,6.5265,6.6927,4.2692,4.4441,0.06634,4.418,2.2031,2.3908,0.37607,0.37687,3.6059,4.2679,3.7611,3.8908,1.6668,1.5455,9.8237,8.9214,3.3215,2.9169,3.8619,3.9018,4.62,4.24,1.6851,1.671,1.7651,1.8812,3.3198,2.9772,7.2848,7.2873,1.8851,1.9731,6.3114,5.7875,11.4184,10.8767,7.7182,6.8327,2.1152,2.4126,4.252,4.447,1.6483,1.7425,16.3713,16.3119,4.5537,5.7948,3.7885,3.7955,1.0469,1.0322,2.5962,2.7089,7.3804,5.9329,12.6272,13.6124,2.9425,3.6599,4.0129,3.9903,3.386,3.34,1.4978,1.408,3.8115,4.0773,10.7288,10.046,2.9635,3.1965,2.1873,2.3017,2.2662,2.4509,10.0348,11.0757,2.0801,2.4188,2.0332,2.1754,12.4675,12.9722,1.9352,2.0921,1.1501,1.1887,13.117,14.6558,5.1302,5.1386,7.6231,9.672,4.3971,3.5506,10.0955,10.6438,7.0859,6.9025,7.3535,7.2536,3.7856,3.321,1.5917,1.7284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd973,71,71,F,0.91006,1.7975,0.33877,0.4069,0.8021,0.79086,13.8913,2.4047,2.3065,37.0198,37.9211,11.4024,12.0243,191.845,185.9035,0.81582,3.0204,2.7514,0.42906,0.39153,8.3108,11.2279,1.3054,1.2745,3.6119,3.703,6.1141,6.2495,3.7544,4.0073,0.06336,3.9856,1.8821,2.1023,0.3361,0.33925,3.4068,4.4638,3.328,3.7407,1.593,1.3152,9.7765,8.209,2.1927,2.2721,3.8864,3.7777,4.0272,4.1609,1.6434,1.5837,1.7659,1.8045,2.9622,2.8406,6.4639,7.2039,1.7143,1.7072,6.4408,5.8485,9.7925,10.4962,7.2789,6.7015,1.8609,2.0345,4.2837,4.1489,1.4585,1.3901,15.0275,16.5744,4.7728,5.555,3.5012,3.4232,0.89908,1.0864,2.2727,2.3651,7.715,6.6947,11.4705,11.6458,3.0193,3.4184,4.0289,4.052,3.2045,3.1365,1.3481,1.2037,3.8912,4.1643,10.0818,9.1172,2.5036,2.8032,2.0967,2.0505,2.1442,2.2416,8.7491,10.7917,2.0584,2.137,1.9255,2.0831,10.9514,11.831,1.6213,1.7159,1.1365,1.0937,12.5704,11.9064,5.038,5.2349,6.1036,8.2094,4.3188,3.5751,8.8258,10.3822,6.4643,6.0232,7.0991,6.8856,3.0346,3.0542,1.2729,1.387,,21,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd974,64,64,M,0.84179,1.6145,0.35485,0.38861,0.81057,0.83207,16.1386,2.8389,2.5079,44.3657,43.8058,12.3822,12.711,183.164,180.6172,0.85575,3.1208,2.8448,0.44707,0.36505,4.3307,6.8798,1.3605,1.3106,3.3107,3.3873,6.0902,6.0523,4.0164,4.1762,0.06888,3.6723,1.8995,2.1089,0.34124,0.34588,3.6412,4.0426,3.84,3.708,1.7272,1.5756,8.2922,8.2665,2.1927,2.2969,3.4439,3.6835,3.7092,2.9575,1.466,1.5029,1.8392,1.8045,3.4529,3.0385,6.7427,6.6506,1.9519,1.9121,6.4204,5.3497,10.2643,10.8075,6.3538,6.1424,2.2476,2.4936,4.2238,3.8306,1.6885,1.5313,16.2943,17.23,4.7997,5.0941,3.4504,3.5057,0.95179,0.91153,2.1051,2.2308,7.3388,5.5905,12.931,13.2739,2.5652,2.7864,3.5763,3.5683,3.53,3.4705,1.4201,1.5383,3.8792,4.516,10.0101,11.594,2.7692,2.9354,2.1219,1.9634,1.9047,2.2326,7.8324,9.5154,2.3959,2.6346,1.865,2.0997,11.2387,11.7583,1.823,1.8033,1.0432,1.0716,12.3433,12.3411,4.5608,4.7226,6.8385,8.9246,3.5579,2.8539,8.6424,10.1926,6.212,6.4992,7.1975,6.3085,3.4362,3.7394,1.3778,1.4355,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd975,38,38,F,1.148,2.3561,0.37051,0.39718,0.65164,0.62575,17.684,2.4479,2.6413,47.2334,47.4352,14.4953,15.2271,196.9166,196.9209,1.1773,2.9639,2.454,0.75667,0.59913,16.9137,22.448,1.5525,1.5355,3.5524,3.5654,6.1315,7.2718,4.2468,4.532,0.08687,4.993,2.193,2.5698,0.38664,0.3722,4.0747,4.3795,4.0828,4.0245,1.6751,1.3813,8.4244,7.9427,2.9551,2.9022,3.8353,4.0207,4.2272,4.3683,1.3806,1.2807,1.9617,1.9402,3.4547,3.2963,6.6888,6.3827,1.9102,1.9731,5.988,5.6651,10.8467,9.8933,7.35,7.1759,2.1137,2.1743,4.7753,4.5042,1.7208,1.7254,15.809,17.1511,4.5705,5.5648,3.5726,3.5958,1.0611,0.97321,2.4763,2.456,7.7122,7.0339,13.5884,12.5524,2.8514,3.0815,3.9653,3.9102,3.182,2.706,1.3287,1.4849,3.9268,4.3659,9.6993,9.8654,2.5383,2.6174,2.3783,2.5227,2.2011,2.4116,9.1766,11.0625,2.2296,2.2182,2.123,2.3548,11.3144,10.8834,1.9325,1.7346,1.1297,1.2324,13.374,13.6614,5.1412,5.3351,6.8489,7.7894,3.919,3.2493,8.9923,9.0935,6.2974,6.1527,6.3412,6.2909,3.24,3.6681,1.5318,1.4384,,25,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd976,57,57,F,1.1864,1.3062,0.35998,0.39515,0.91074,0.89996,18.2717,2.7863,2.86,45.2867,44.7,16.2345,16.1223,237.2557,235.5425,1.0767,3.3942,3.2487,0.8319,0.51725,9.4417,12.0729,1.4855,1.4805,3.1602,3.3512,7.0223,7.3652,4.5649,4.7141,0.08831,4.9457,2.2046,2.5881,0.38263,0.38119,3.8443,4.4773,3.8848,3.8958,1.6918,1.5455,9.3977,8.7777,3.1375,3.1074,3.5002,3.7564,4.2951,4.1837,1.6807,1.7886,1.8365,1.8822,3.3588,3.4177,7.1771,7.1705,2.08,2.0292,5.7668,6.4625,11.4184,11.1327,7.8299,7.0559,2.1498,2.307,4.6419,4.6415,1.6016,1.6868,18.9184,20.1029,5.1316,5.3124,3.8288,4.0139,0.90751,0.82726,2.7211,2.2308,7.2826,7.1136,13.8398,13.3673,2.2058,3.1687,4.2749,4.214,3.6146,3.2757,1.4826,1.4794,4.0904,4.6213,10.5318,10.9108,2.9279,3.2697,2.0891,2.1169,2.0941,2.2148,9.9635,12.0075,2.16,2.3548,1.843,2.2691,13.5264,13.7014,1.7802,1.8484,1.0314,1.0551,13.5861,14.2522,5.1911,5.3351,7.6231,8.3562,3.6559,3.5387,10.2398,9.5201,7.4213,7.5846,7.3364,7.4622,3.2215,4.0182,1.3284,1.6094,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd977,,,M,1.8244,1.7773,0.38402,0.42715,0.9256,0.98383,16.9774,3.1894,3.1105,46.1005,45.9631,13.9055,14.3408,245.3837,240.6768,2.0082,3.5718,3.3564,0.67846,0.49127,34.3074,42.9565,1.7739,1.7742,3.958,3.8441,6.9093,7.2413,4.7493,5.0523,0.08694,5.2392,2.45,2.6607,0.41552,0.40317,4.3671,5.027,4.2808,4.5286,1.8993,1.6856,10.3104,10.3088,3.5456,3.2148,3.9646,3.9903,5.056,4.3988,1.7919,1.8671,2.0381,2.0304,4.0984,3.719,7.4065,7.2141,2.2758,2.2498,6.6586,7.3491,11.9174,11.1868,9.1142,7.9636,2.2496,2.4912,4.4531,5.3315,1.8932,1.9465,20.9626,20.8177,5.0217,6.4231,4.31,4.5663,0.96612,1.2063,2.3328,2.7193,7.9592,7.0519,14.027,14.0717,2.7841,3.2917,4.7616,4.2157,3.9737,3.9895,1.4922,1.526,4.0325,4.5085,11.55,10.5044,3.1888,3.2771,2.5153,2.5747,2.2523,2.538,9.2692,10.1322,2.3781,2.4754,2.2845,2.4642,10.8167,10.4154,1.9579,2.3654,1.2918,1.3219,15.211,15.6951,5.0013,5.9056,7.8072,8.9756,4.0865,3.4341,10.6511,9.7778,7.6795,7.014,8.3154,7.9776,3.5021,3.7906,1.6092,1.8181,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd978,57,57,F,0.97219,2.0464,0.42838,0.46487,0.88749,0.80335,18.9252,3.2269,3.1874,48.3012,48.3435,14.851,15.6887,244.2927,240.4316,1.0689,3.1602,2.9317,0.32887,0.50571,11.6656,17.0265,1.6629,1.6886,3.7745,4.0915,6.9894,7.2195,4.8195,4.9371,0.08194,4.1751,2.1741,2.4858,0.36758,0.39472,4.1325,4.8562,4.0215,4.1081,2.0067,1.7008,9.8139,9.5744,3.1299,2.7666,4.5316,3.8371,5.1156,4.3212,1.7743,1.5748,1.8769,2.0088,3.9318,3.719,7.4427,7.5396,2.206,2.2575,6.3098,6.7482,11.8823,11.0984,7.9878,7.1498,2.4205,2.5448,4.9001,4.9602,1.9984,1.984,18.9174,19.1789,4.8301,5.9689,3.9951,4.3998,0.8944,1.2153,2.212,2.7991,8.0346,7.2737,14.0658,13.0046,2.7658,3.2347,4.2176,4.2021,3.6146,3.6648,1.5468,1.5283,4.1826,4.5911,10.5938,12.2321,3.0955,2.9862,2.4081,2.2428,2.2238,2.5405,11.3717,11.6598,2.564,2.7276,2.0151,2.1835,12.197,12.0597,1.9763,2.1403,1.2176,1.2399,14.3833,14.2595,5.1729,5.5878,8.1332,9.5542,3.7048,2.9731,9.6993,9.8936,6.7893,7.4058,8.0704,7.9146,3.2917,3.8605,1.421,1.5821,,30,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd979,75,75,M,1.4578,2.9422,0.41517,0.45137,0.9344,0.85018,18.92,3.4614,2.9654,47.2617,46.647,15.1593,16.0108,219.3807,215.3137,1.3578,3.4863,3.2644,0.71604,0.5242,18.6368,16.4151,1.6766,1.6217,3.9127,4.1534,6.9894,6.9837,4.6789,5.0208,0.07369,4.6608,1.9311,2.6349,0.40007,0.40583,4.0148,4.4059,3.7583,3.7606,1.6038,1.4472,10.5865,8.8036,3.4931,3.0259,4.4781,4.1499,4.8648,4.5272,1.7792,1.5178,1.9731,1.7632,3.1852,3.1487,7.3746,7.2071,1.8574,1.8109,6.3129,5.8914,11.1909,10.6668,8.4587,7.8139,2.0562,2.1838,4.5029,4.6375,1.6742,1.7132,19.4878,19.7988,4.9014,5.2069,3.3141,3.3948,1.3035,1.1039,2.8439,2.631,7.8204,6.256,14.0951,12.909,3.0377,3.6115,3.9874,4.2536,3.341,3.5604,1.4839,1.4247,4.0596,4.3836,11.1316,10.8082,2.9406,3.1765,2.2922,2.1069,2.4781,2.5693,10.7458,11.6419,2.2418,2.175,2.0447,2.2179,13.6885,14.2066,1.8934,2.157,1.1412,1.2462,12.7673,12.375,5.7568,5.7842,8.2315,8.9968,3.962,4.2588,10.5029,10.6501,6.9127,7.437,7.9912,7.7644,3.5284,3.6948,1.5697,1.5869,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd980,,,M,1.535,2.3519,0.31019,0.33643,0.70429,0.74291,15.1615,2.1606,2.2449,39.7329,38.9969,12.669,13.2435,219.0305,211.6229,1.6202,3.0009,2.8438,1.0228,0.87975,16.9487,21.2815,1.5756,1.5818,2.812,2.7183,5.4613,5.8946,4.3635,4.6656,0.09323,4.3109,2.2288,2.4327,0.33346,0.33062,3.7805,4.0059,3.5926,3.6793,1.4226,1.3265,7.9558,7.6056,2.9717,2.8662,3.2035,3.5507,3.4139,4.3597,1.4113,1.4425,1.5911,1.7076,3.2345,2.858,6.0063,5.5941,1.6994,1.6651,5.4548,4.8097,9.0157,8.6055,6.5178,6.4476,1.8401,2.073,3.854,4.228,1.4788,1.4698,14.8866,15.3404,4.035,4.4877,3.0089,3.3074,0.86393,0.96225,1.9456,2.0043,6.7294,5.9385,11.6879,10.7233,2.4842,2.4894,3.6165,3.4649,2.7014,2.889,1.2926,1.2029,3.3135,3.6375,8.474,8.7801,2.5611,2.7836,2.1973,2.3482,1.6189,1.7184,8.5585,9.6952,1.9345,2.0234,2.0977,2.2876,9.573,9.5779,1.4817,1.5134,1.0546,1.1247,12.8832,14.9077,3.9289,4.2596,5.4316,5.7734,3.3046,2.5859,7.8694,7.8168,5.9591,5.6128,6.2429,5.9373,2.7421,3.2472,1.3226,1.3387,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd981,77,77,F,1.9673,2.1079,0.3152,0.38244,0.6034,0.65986,18.5245,2.7265,2.8026,45.9086,44.7344,14.882,15.2551,223.1865,216.5383,1.9463,2.7748,2.5432,1.0386,0.92265,15.5524,16.1252,1.5439,1.5154,3.4568,3.471,6.1374,6.2847,4.4829,4.655,0.0781,5.2392,2.437,2.2641,0.34677,0.35342,3.7514,4.1858,3.8483,4.022,1.5538,1.4645,9.8747,7.3997,2.76,2.7737,3.9054,4.1302,4.429,4.1327,1.2651,1.3347,1.9098,1.9265,3.7934,3.4622,7.1137,7.1677,2.0844,2.0266,5.9028,6.4625,11.2191,10.7645,7.6875,6.499,2.0793,2.2401,4.1371,4.2584,1.8236,1.675,17.7483,17.1771,4.3612,5.345,3.579,3.8273,1.1702,1.1781,2.663,2.6843,7.7289,6.3117,13.5985,12.9016,2.5498,3.0329,4.1829,4.5702,3.3216,3.0269,1.4573,1.5133,3.7758,4.3477,10.2645,10.4332,2.662,2.8985,2.397,2.305,2.4415,2.8733,9.1919,11.7269,2.1166,2.5731,1.9035,2.2433,11.3666,11.132,2.0737,2.3159,1.1141,1.2012,15.1168,14.7992,4.4777,4.8908,7.5731,7.9887,3.4725,3.4871,9.6495,9.6846,7.4112,6.7763,6.5751,6.3247,3.1629,3.7323,1.573,1.6979,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd982,84,84,M,1.9074,2.0425,0.29851,0.33948,0.77299,0.7267,17.5478,2.2592,1.6365,49.6817,47.6329,15.8175,15.7577,185.7545,188.3036,1.9452,2.9243,2.7632,1.1272,1.0629,18.4747,23.9591,1.4111,1.4035,3.2204,3.1562,5.9048,6.3666,4.2355,4.532,0.08137,5.7308,2.5086,2.8142,0.34048,0.33044,3.6238,4.0625,3.5394,3.7116,1.5609,1.3911,9.3444,7.8532,2.8281,3.1124,3.3561,4.0757,3.897,4.3767,1.4613,1.3727,1.6913,1.7378,3.2079,3.3009,6.6989,6.8975,1.9111,1.8094,4.8656,5.1164,10.3594,10.3088,6.9996,6.8239,2.1412,2.2539,4.3939,4.3582,1.5356,1.5372,16.2697,17.76,4.5832,5.679,3.4163,3.1832,0.90939,1.0543,2.1803,2.3106,6.5775,6.2523,12.2619,12.7688,2.7174,2.9748,3.9364,3.5443,2.8904,2.9296,1.4327,1.4418,3.4679,4.1248,8.8549,9.7931,2.5765,2.7175,1.9343,2.1935,1.8421,1.9729,8.3107,9.53,2.5005,2.3967,1.8307,2.0155,11.0228,11.0828,1.5454,1.7181,1.1644,1.1358,12.0203,12.0462,4.6414,4.6578,6.702,7.0518,3.69,3.3626,8.6881,8.2383,6.5134,6.5389,7.0417,6.4523,3.1547,3.1627,1.2118,1.3482,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd983,79,79,F,1.698,1.9137,0.29367,0.35158,0.74065,0.69431,16.4358,2.1606,2.2449,41.0899,41.8891,13.3855,13.625,214.5078,207.5702,1.4225,3.0156,2.6408,1.3804,0.87975,14.918,21.9909,1.4495,1.5129,2.8007,2.6895,6.0473,6.7249,4.1737,4.3714,0.06877,3.7736,1.9707,2.1259,0.32918,0.3225,3.7968,4.3399,3.637,3.8908,1.5505,1.2255,9.2651,7.3997,2.4866,2.577,3.941,3.8098,3.9211,3.9273,1.4599,1.3124,1.8262,1.8526,3.4391,3.134,6.251,5.2681,1.6958,1.6491,5.6166,5.398,10.2323,6.8215,6.4011,6.2403,2.0023,1.9304,4.1371,4.0897,1.616,1.5982,15.7002,15.8765,4.3617,4.4411,3.3085,3.3457,1.0472,1.1114,2.4732,2.6654,6.9852,6.6941,11.8131,9.1824,2.394,2.7622,3.4624,3.8015,3.2045,2.9794,1.5424,1.2056,3.2502,3.3549,9.4578,8.6526,2.5116,2.6449,2.187,2.1827,1.8636,2.3505,8.5287,11.1184,1.9568,2.1794,2.1469,2.2008,10.0684,11.831,1.8684,1.7496,1.017,1.0373,11.8048,12.0324,4.7292,4.5346,7.3309,8.3733,3.8231,2.6359,8.8287,9.0978,5.5752,5.5943,6.427,5.8461,3.1879,3.0854,1.3964,1.4652,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd984,77,77,F,1.3969,1.6251,0.35805,0.42163,0.7972,0.81016,16.7998,2.5003,2.5326,43.4399,42.7181,14.0549,14.2885,207.3131,202.5402,1.5034,3.2037,3.137,0.53477,0.61212,8.5689,8.6961,1.4574,1.4666,3.7056,3.7001,6.0475,6.4486,4.2798,4.484,0.07519,5.0864,2.3083,2.5773,0.36443,0.3541,3.4878,4.0703,4.1337,3.7959,1.4902,1.3434,9.4737,8.1347,2.9111,2.9299,3.6892,3.5908,4.1014,4.1994,1.4545,1.5448,2.116,1.9402,3.2104,2.9676,6.802,7.2039,1.7143,1.6118,6.3087,5.7707,10.9749,10.9211,7.8756,7.1263,2.1112,2.0882,4.408,4.4597,1.5691,1.4705,17.2152,17.2491,5.1888,5.555,3.0127,3.3068,1.1577,0.96672,2.7402,2.3338,6.977,6.4823,12.8679,13.4861,2.8735,3.0486,4.2749,4.0452,3.0718,3.2644,1.349,1.2952,3.8402,4.1231,9.8443,9.6412,2.8424,3.0109,2.4073,2.2883,1.7536,1.7184,9.3074,10.8637,2.2909,2.3531,2.0151,2.1204,10.6811,11.5461,1.4659,1.5334,1.0962,1.1931,12.7796,14.3766,5.1361,4.9117,7.3237,7.6587,4.1368,3.8424,10.0134,10.221,6.3043,6.9714,7.0902,6.9268,3.5983,2.9888,1.3977,1.304,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd985,67,67,M,2.0592,1.9408,0.29313,0.33912,0.71488,0.75437,15.54,2.0924,2.2449,44.7024,44.4463,12.3419,12.7122,175.9135,167.656,1.9235,2.9715,2.8124,1.5059,1.2229,29.0169,30.645,1.2879,1.312,2.6102,2.7921,5.5588,5.6673,4.1089,4.2826,0.10203,4.6035,2.0122,2.7071,0.36412,0.32201,3.525,4.1264,3.8641,4.2509,1.4566,1.287,7.9338,6.9952,2.5383,2.3237,3.1152,3.7782,3.4484,3.5843,1.4296,1.4807,1.7289,1.8114,3.2229,2.5302,6.3907,6.2676,1.8146,1.8676,5.9336,5.3497,10.2767,10.3227,6.5539,6.0848,1.8898,2.0662,3.815,3.7189,1.4698,1.3406,14.7917,15.4755,4.5545,4.4877,3.2234,3.4488,1.0149,1.012,2.1395,2.3651,6.7347,6.0421,12.5317,11.6458,2.4613,3.1116,3.3211,3.5271,2.5288,2.8991,1.2938,1.4422,3.2478,3.9112,8.474,8.4504,2.5847,2.7433,2.3289,2.0805,1.7412,1.7184,8.1811,9.4848,2.1623,2.2263,2.0686,2.1385,10.5813,10.188,1.5671,1.4705,1.0968,1.1767,12.2302,12.1091,4.8389,4.4744,5.6447,7.0676,3.4317,3.3858,7.8694,8.3972,6.4855,6.0233,6.5271,6.141,2.6007,3.3372,1.3226,1.3,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd986,59,59,M,1.6574,1.7948,0.39026,0.43093,0.91058,0.8445,20.5349,3.4584,3.415,49.1356,50.3468,15.1496,15.6313,211.7753,210.2499,1.2497,3.619,3.2782,0.60141,0.50392,12.8766,16.0191,1.63,1.6102,3.7338,3.844,7.6238,8.1197,4.9718,5.103,0.09345,4.6166,2.4731,2.7424,0.44246,0.42106,4.8252,4.8834,4.578,4.8409,1.9942,1.874,10.944,10.7749,3.6982,4.0107,4.6043,4.6612,5.6182,5.1517,1.9619,1.7295,2.1829,2.1829,4.1558,3.9928,8.2534,8.1068,2.2995,2.3001,7.4279,7.2798,12.5231,13.2071,9.89,7.3795,2.4969,2.7542,4.8567,4.7385,2.0523,2.0763,20.2924,19.8121,5.467,7.3017,4.4177,4.7516,1.1961,1.1105,2.9391,3.0938,9.7874,7.7744,16.6489,15.8939,2.9965,3.6547,4.8151,4.7157,3.7221,3.7671,1.7342,1.662,4.4546,4.9742,12.3452,12.7505,3.2833,3.5392,2.5151,2.719,2.9821,2.6774,12.0336,12.8633,2.7909,3.063,2.3505,2.6698,15.4733,15.5268,2.5439,2.1086,1.4417,1.4254,16.485,17.4915,6.3587,6.1762,9.5879,9.2554,4.4728,3.8956,10.8951,10.4451,8.2907,8.0575,8.5225,8.556,4.1855,4.479,1.8053,1.8285,,26,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd987,82,82,F,1.9257,2.4213,0.31181,0.36521,0.77147,0.7886,16.8427,2.0987,2.442,40.1162,40.656,12.6679,13.4068,191.1721,192.4498,1.3921,3.1058,3.0023,1.1107,0.88033,21.6844,22.1617,1.4005,1.367,3.3326,3.2285,6.1098,6.423,4.3567,4.5977,0.08415,4.4837,2.0045,2.2823,0.37691,0.29494,4.6087,4.9207,4.1115,4.4668,1.8041,1.5935,7.3584,8.0933,2.8636,2.9299,4.3591,4.172,4.7794,3.9091,1.5548,1.5263,1.9956,1.9395,3.6079,3.4204,6.0677,5.8168,1.7867,1.8768,6.3722,6.6108,9.6121,9.187,7.2921,7.0962,2.1568,2.4673,5.0149,5.122,1.6876,1.7671,17.3195,17.8174,4.6369,5.3467,3.5027,3.5057,1.161,1.0314,2.9314,2.631,7.6286,7.4088,11.8751,11.4544,2.5498,2.9422,4.0318,3.6651,3.4353,3.4893,1.5898,1.5727,4.4412,4.6581,12.0108,11.6746,2.481,2.7706,2.5208,2.4725,2.2788,2.2995,9.6931,10.3831,2.3824,2.568,2.1977,2.7221,12.3347,12.8857,2.1247,1.8118,1.2437,1.3149,14.2447,13.156,5.0146,5.1128,7.1517,7.7603,3.6327,3.3626,8.6424,10.121,6.545,6.7279,7.7492,6.9502,3.4165,3.7462,1.6489,1.6201,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd988,67,67,M,1.0532,1.9381,0.4192,0.48436,0.92814,0.98008,20.9789,3.1164,2.7297,52.3858,51.6143,15.5148,15.5261,219.8286,215.5509,1.0868,3.4963,3.3065,0.55657,0.51445,8.2125,14.2795,1.5992,1.5431,3.7968,3.8835,6.6481,6.5537,4.8613,5.1095,0.08317,5.3514,2.245,2.9766,0.39005,0.4173,4.8909,5.7021,4.0238,4.5901,1.8561,1.8003,11.1846,10.1,3.2136,3.3204,3.8627,4.4796,5.1236,4.6505,1.7475,1.8556,2.1378,2.192,4.4074,4.1818,7.7346,7.494,2.3084,2.3465,7.0775,7.5747,12.1627,12.26,8.4853,7.8698,2.3599,2.7463,5.5455,5.5108,2.0461,2.2419,23.2146,23.6993,5.7455,6.3692,4.3059,4.6011,0.92792,2.0477,2.1741,2.8764,9.1099,8.5192,15.2276,15.7275,3.3336,3.8068,4.6395,4.9495,3.9394,3.6718,1.8499,1.7339,4.2239,4.6571,11.3053,10.7779,3.027,3.3923,2.2314,2.2907,2.2846,2.5347,11.1598,12.4274,2.1149,2.6057,1.9903,2.311,14.1133,15.5022,2.0604,2.2269,1.3218,1.3721,15.5683,16.9267,6.055,6.0188,8.9801,9.0181,4.2807,3.2927,12.1353,12.6052,6.8571,7.8232,8.1153,8.4928,4.5346,4.3634,1.3845,1.5694,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd989,52,52,F,1.0437,2.0142,0.3781,0.42741,0.89568,0.8853,16.4958,2.7122,2.7414,48.291,48.8532,13.3855,14.18,203.0384,205.443,1.0818,3.6065,3.4104,0.57073,0.4371,11.1851,13.4527,1.4802,1.4678,3.3703,3.4555,6.8393,6.8095,4.3818,4.6013,0.07566,4.8524,2.2394,2.5912,0.40044,0.41743,3.5594,4.2642,3.5168,3.6771,1.5749,1.4033,10.1495,9.301,3.2457,3.1286,4.0287,3.7683,4.9972,4.6493,1.7855,1.791,1.9458,1.9652,3.1526,3.0312,7.6897,7.3827,1.8708,1.969,6.9397,7.3491,12.8493,11.5383,8.5289,7.8815,2.2026,2.2914,4.2099,4.1942,1.6093,1.6313,19.7012,19.1111,5.532,6.6359,3.401,3.8396,1.2274,0.91745,2.6924,2.3482,7.785,5.8557,15.1999,14.0277,3.6274,4.46,4.6967,4.2157,3.182,3.2136,1.5666,1.4242,4.1173,4.1658,10.6008,10.4497,3.0451,3.262,2.1334,2.071,1.806,2.1131,10.313,11.4886,2.3682,2.5731,2.0512,2.2904,12.197,12.0034,1.7731,1.8977,1.1899,1.1941,13.516,13.1667,4.8559,4.9899,7.7679,8.9471,4.958,4.1028,10.3849,10.7102,7.0929,8.3187,9.4681,9.4243,3.1045,4.1011,1.3856,1.7457,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd990,75,75,F,1.6611,1.6066,0.33224,0.34673,0.64699,0.63576,16.1442,2.9581,2.3731,46.0148,41.5348,11.6546,11.7593,176.0942,168.3196,1.7563,2.6058,2.3904,0.85013,0.70622,15.8165,17.7824,1.329,1.3106,3.4732,3.5856,5.6714,6.2727,4.0467,4.2908,0.08069,4.6878,2.1447,2.3503,0.35155,0.33838,3.9292,3.972,4.0442,3.9214,1.6495,1.4159,9.083,6.4981,2.8613,3.1124,3.5839,3.4995,4.4989,3.9646,1.4101,1.3399,1.8795,1.7849,3.1786,3.23,6.9349,6.8111,1.7967,1.6615,6.3717,5.6966,10.4915,10.1922,7.4808,7.0962,2.0833,2.0384,4.5323,4.6951,1.4937,1.4828,17.2701,15.7424,4.5744,4.3309,3.4381,3.5433,0.90939,1.0918,2.2221,2.3577,6.7355,6.163,12.1727,11.6922,2.4105,2.9248,4.1711,4.2322,2.9196,3.0989,1.343,1.259,4.0167,4.5059,10.5467,10.7532,2.7196,2.6747,2.3259,2.3377,1.9047,2.1631,7.7528,9.5154,2.0783,2.1009,2.0355,2.2569,9.3165,9.3671,1.5249,1.5256,1.0548,1.1476,13.8201,13.3969,4.862,4.7314,6.8754,7.7141,3.6506,3.3384,8.2148,8.8561,6.5347,6.1394,6.6456,7.0134,3.2904,3.122,1.3282,1.2157,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd991,76,76,M,1.5559,2.2987,0.36254,0.40699,0.88578,0.84337,17.4445,2.4479,2.6413,46.439,45.3765,13.857,14.203,213.0143,210.3322,1.33,3.3649,3.0923,0.57386,0.55086,11.4556,12.2702,1.4726,1.4491,3.7248,3.7664,6.7266,6.9789,4.3378,4.6654,0.08328,4.8149,2.2729,2.6004,0.39444,0.41892,3.8191,4.9085,3.872,4.0341,1.6705,1.763,10.1495,9.0663,3.2456,3.2515,3.6842,4.1302,5.0371,4.6537,1.7387,1.5971,2.0114,1.8215,3.8329,3.4205,7.7152,6.9574,2.0828,2.129,6.8111,6.8617,12.6256,12.039,8.0404,7.2711,2.1234,2.5783,4.5169,4.5886,1.8667,2.0881,20.694,20.5998,4.7657,6.4884,3.9253,4.3998,0.97834,1.0488,2.486,2.5689,8.8827,7.7799,13.7943,14.9175,3.6971,4.4832,4.2927,4.2841,3.8289,3.215,1.5948,1.4691,3.9334,4.3267,10.6008,10.3125,2.8643,3.205,2.1346,2.0953,1.8433,2.4013,10.5483,11.3462,2.3529,2.6048,2.004,2.2462,10.878,11.5985,1.7417,1.9298,1.1594,1.2545,14.9771,16.2906,5.6305,5.2538,8.1468,9.747,4.4252,4.1879,11.3807,10.0853,6.9535,7.8232,7.7968,7.8874,3.7539,3.7831,1.3729,1.5694,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd992,60,60,M,2.3612,2.4455,0.39851,0.41321,0.91033,0.7873,21.6469,3.74,3.1242,50.1687,50.3468,16.0141,16.4425,243.9959,234.785,1.7846,3.4863,3.2644,1.3138,0.83934,20.8601,21.7721,1.6519,1.6516,3.7304,4.0139,6.9125,7.072,5.0986,5.2838,0.08496,5.4453,2.5213,3.1424,0.40362,0.44292,4.9389,5.1581,4.7992,5.144,2.0829,1.5591,12.0024,10.561,3.8459,3.613,4.8629,4.8883,5.8801,5.3929,1.8383,1.5799,2.3493,2.4241,4.3098,4.1805,7.9612,7.8688,2.4802,2.4508,7.4822,7.8584,12.9681,12.2345,9.3264,8.0287,2.4956,2.4717,5.1184,5.0957,2.1869,2.1111,21.4875,22.0139,5.9286,7.0711,4.31,4.1926,1.0477,1.2987,2.4162,2.7892,9.1132,8.1578,16.0082,15.5401,3.7683,4.7167,4.7004,4.7023,3.7286,4.5503,1.8499,1.6557,4.5952,5.1719,12.6814,13.0753,3.3891,3.5296,2.6785,2.7365,2.8756,2.7762,10.9608,12.6483,2.6818,2.7361,2.6326,2.7685,13.4439,14.2938,2.5439,2.3887,1.476,1.5581,17.0532,17.0932,5.7831,5.7904,9.1233,10.4647,5.0085,3.9216,10.9754,10.1761,8.583,8.5607,8.8402,8.4324,4.1973,4.2668,1.9142,2.3404,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd993,82,82,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd994,77,77,M,2.5948,2.5434,0.36398,0.34978,0.84531,0.75988,19.4836,2.7183,1.6978,53.3227,52.6487,16.2343,15.7577,250.4935,242.4689,1.967,3.6189,3.0573,1.3138,0.98324,21.4729,23.1056,1.7566,1.6123,3.1969,3.3637,7.2338,8.2229,5.0371,5.3238,0.09547,5.3622,2.2973,2.8663,0.39667,0.40503,4.4639,4.7492,3.9999,3.9356,1.6155,1.6272,10.4211,9.3013,3.0608,3.0593,4.0322,4.0084,5.232,4.9048,1.5559,1.4381,2.0541,1.9836,3.7183,3.2977,7.4758,7.1392,2.1491,2.187,6.497,5.1279,10.9587,10.4273,8.7588,7.9027,2.3412,2.3532,4.6196,4.4826,1.8545,1.9126,15.9832,15.7639,4.7554,5.4804,3.7179,3.9267,1.4516,1.3369,3.3463,3.2326,8.4599,7.7625,13.3795,12.3503,2.7025,3.0027,4.7616,4.4969,3.8942,3.6564,1.6825,1.4045,4.0659,4.7787,11.0276,11.2111,3.1435,3.2922,2.3605,2.2356,2.3774,2.4047,10.5882,11.9748,2.3484,2.6018,2.1619,2.3018,13.7355,14.0706,1.841,1.8926,1.2564,1.2912,16.623,14.2793,6.3351,6.2148,8.1528,8.3587,4.0509,2.9737,11.5215,11.0679,7.5884,7.1782,7.8609,7.1638,4.0742,3.3935,1.5415,1.5876,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd995,78,78,F,1.651,1.6088,0.36376,0.41604,0.64699,0.71834,15.4609,2.8072,2.7248,40.8899,40.8498,13.8539,13.8789,208.768,204.9386,1.2191,2.6387,2.4852,0.5428,0.60498,14.272,18.2943,1.4352,1.3657,3.6399,3.4659,5.8286,5.8946,4.11,4.3349,0.07935,4.1318,2.0658,2.1249,0.36866,0.34498,4.2008,4.9016,4.2546,4.2558,1.8139,1.6105,10.0875,8.6968,2.8047,2.5654,3.9493,4.1895,4.5978,4.3966,1.4172,1.467,1.9242,1.9723,3.7151,3.3598,6.9727,7.3443,2.1154,2.0739,6.4388,5.9628,11.252,11.1264,6.9763,6.2929,2.297,2.4936,4.7746,5.1096,1.7298,1.7233,19.6234,20.5346,4.9969,5.6491,3.7934,3.9769,1.1499,1.1072,2.6108,2.5356,7.6513,6.6326,13.3822,12.4664,2.8575,3.3613,3.512,3.7017,3.3855,3.4972,1.6095,1.5814,4.0413,4.7197,10.3697,10.2366,2.6925,2.7864,2.2249,2.4505,2.1185,2.535,10.0747,11.6001,2.3067,2.5758,2.1182,2.3763,13.2599,13.9885,1.6474,2.1613,1.1752,1.2275,15.0964,15.6348,5.4985,5.6432,7.3278,8.3731,3.8563,3.1164,10.1611,10.9917,6.3782,6.5463,6.2905,6.4156,3.9793,4.504,1.3901,1.5103,,16,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd996,52,52,F,0.98668,1.9683,0.39807,0.44618,0.84458,0.83008,18.213,3.0766,2.9517,45.1005,45.9534,16.6983,16.7592,263.77,268.0351,1.1536,3.1393,3.0569,0.43528,0.46058,10.2175,9.3251,1.773,1.753,4.1009,4.0091,7.7554,7.9311,4.9413,5.1393,0.0767,4.061,2.0528,2.493,0.36176,0.40229,4.1239,5.2956,3.7583,3.9127,1.6038,1.3676,10.9234,9.0953,3.4774,2.5846,3.7257,3.7674,4.7629,4.24,1.6416,1.6131,1.9211,1.5849,3.7591,3.2994,7.4872,7.338,2.1663,2.0042,6.3441,6.1025,11.9429,11.2569,8.7503,7.7076,2.0704,2.2381,4.5884,4.9597,1.9356,1.8465,18.9489,19.7988,5.7511,5.6059,3.6362,3.6112,0.95246,1.036,2.4247,2.4667,8.3148,7.4916,16.2235,14.7553,2.7841,3.4704,4.5218,4.4217,3.3074,2.557,1.4263,1.3588,3.7873,4.1069,9.8438,8.9795,2.9475,3.095,2.1687,2.3915,1.9963,2.2573,10.5252,10.8325,2.4704,2.0967,2.1575,2.4219,11.0717,11.5156,1.9278,2.0327,1.1812,1.245,13.4679,13.8829,5.4278,5.4839,8.2656,8.0809,4.2425,3.3203,10.3299,9.5738,7.3433,7.64,8.5962,7.6834,3.3574,3.4373,1.3599,1.5839,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd997,77,77,M,2.3554,2.3118,0.43358,0.4622,0.84734,0.89128,19.5678,3.4062,3.217,46.4131,46.8022,15.8199,16.2485,247.9735,239.0348,1.8804,3.5105,3.2413,1.0172,1.363,27.5036,33.0922,1.6414,1.7288,4.3835,4.2137,7.1405,7.7091,4.6823,4.9142,0.07881,5.657,2.2369,2.5582,0.39528,0.4125,4.3893,4.7217,4.8339,4.7265,1.929,1.7618,10.91,9.6772,3.2677,3.0346,4.103,3.6873,5.244,4.2724,1.6126,1.6225,2.0381,2.078,3.9507,3.4284,7.5378,7.6027,1.896,1.8884,6.6846,6.7247,12.4167,12.0185,8.4893,7.7304,2.5819,2.6388,4.5246,4.7597,1.8095,1.6642,18.3983,18.6762,5.2318,6.6359,4.0723,4.0173,1.1802,1.0821,2.6736,2.6489,8.0025,7.0492,15.2797,15.049,3.0754,3.9171,4.4547,4.4752,3.6483,3.4639,1.6473,1.6164,4.2336,4.5016,11.2044,11.9548,2.9008,3.1722,2.634,2.8041,2.1797,2.7311,9.6355,11.5521,2.6656,2.4766,2.2806,2.6408,12.1602,11.8777,1.9494,2.2623,1.2933,1.2789,15.0454,14.9497,5.0146,5.6441,7.6425,8.5741,4.1733,3.4209,13.3909,11.5462,7.484,6.6764,9.073,8.4207,4.0428,4.0228,1.4503,1.8654,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd998,,,F,2.0768,2.5948,0.29367,0.26814,0.80199,0.76361,15.4625,2.5899,2.1002,37.5752,39.0933,11.0862,12.8773,214.5078,216.0617,1.6165,3.0186,2.8231,0.80942,0.79331,16.1464,18.95,1.5508,1.5497,2.9175,3.2904,5.8471,5.9495,4.2378,4.3579,0.06204,4.0486,1.8977,2.1388,0.32458,0.32814,3.2578,3.5295,3.6048,3.7338,1.4618,1.2669,10.2834,8.7173,3.1958,2.9704,3.4843,3.5732,4.1653,3.8993,1.5363,1.5231,1.6789,1.8755,3.2345,2.8371,5.7968,5.3721,1.9094,1.7546,5.9747,6.1533,9.4841,8.9927,7.3246,6.7154,1.73,2.0197,3.8826,4.1536,1.4358,1.3417,14.2288,13.927,5.0751,6.305,3.0614,3.16,1.0737,1.1394,2.1395,2.9239,6.2531,5.7841,11.9962,10.9002,2.7949,3.1354,4.0727,4.303,3.2227,2.8302,1.1581,1.3442,3.5868,3.7849,9.9622,9.4709,2.5944,2.8395,2.187,2.3322,2.0023,2.1001,9.1502,9.4049,1.8137,2.2089,2.0199,1.8964,10.3928,11.0022,1.7469,1.9516,1.0156,1.062,11.7783,12.1336,4.7844,4.3322,8.1137,8.823,3.8065,3.1314,9.6628,9.1892,6.7587,6.1329,6.8298,6.9502,3.1351,3.1986,1.3872,1.5102,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd999,62,62,M,0.84179,1.6,0.42259,0.46211,0.81082,0.79086,17.0687,3.1087,2.9517,43.1869,43.6755,13.5428,13.9885,252.5323,252.8866,0.94698,3.3734,3.1989,0.343,0.35349,6.2042,2.7368,1.7118,1.6868,3.7745,3.8252,6.9093,7.2195,4.7054,4.9351,0.07685,4.3606,2.2948,2.4677,0.38938,0.38373,4.3436,4.5795,4.2161,4.2786,2.0067,1.6583,11.0966,9.4514,3.4125,3.1948,4.2583,4.0324,4.5785,4.7193,1.466,1.5179,2.1033,2.0867,4.1246,3.6913,6.3506,6.9149,1.9946,2.1847,7.6067,6.5178,10.3559,10.1935,7.4103,7.4715,2.5124,2.4742,4.9065,4.757,1.7094,1.7279,19.0915,19.8549,6.2659,6.1769,4.0342,4.2002,1.0043,1.1624,2.3435,2.7088,7.0677,6.5407,14.8903,12.6821,3.3914,3.7792,3.927,4.2536,3.7191,3.4282,1.8317,1.6753,3.4305,3.9003,10.1893,10.4746,2.7607,2.8589,2.3799,2.3847,2.5684,2.6709,12.2547,12.1081,2.4163,2.6944,2.126,2.3251,13.3306,12.6851,1.9653,2.1495,1.2132,1.3239,15.1482,14.8242,5.3756,5.1752,9.0184,9.5017,3.9609,4.0371,10.5029,11.1783,7.8527,7.6208,6.4975,7.4131,3.8094,4.3993,1.4135,1.5449,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,
-desd1000,75,75,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,
+subjectcode,subjectage,subjectageyears,gender,_3rdventricle,_4thventricle,rightaccumbensarea,leftaccumbensarea,rightamygdala,leftamygdala,brainstem,rightcaudate,leftcaudate,rightcerebellumexterior,leftcerebellumexterior,rightcerebellumwhitematter,leftcerebellumwhitematter,rightcerebralwhitematter,leftcerebralwhitematter,csfglobal,righthippocampus,lefthippocampus,rightinflatvent,leftinflatvent,rightlateralventricle,leftlateralventricle,rightpallidum,leftpallidum,rightputamen,leftputamen,rightthalamusproper,leftthalamusproper,rightventraldc,leftventraldc,opticchiasm,cerebellarvermallobulesiv,cerebellarvermallobulesvivii,cerebellarvermallobulesviiix,leftbasalforebrain,rightbasalforebrain,rightacgganteriorcingulategyrus,leftacgganteriorcingulategyrus,rightainsanteriorinsula,leftainsanteriorinsula,rightaorganteriororbitalgyrus,leftaorganteriororbitalgyrus,rightangangulargyrus,leftangangulargyrus,rightcalccalcarinecortex,leftcalccalcarinecortex,rightcocentraloperculum,leftcocentraloperculum,rightcuncuneus,leftcuncuneus,rightententorhinalarea,leftententorhinalarea,rightfofrontaloperculum,leftfofrontaloperculum,rightfrpfrontalpole,leftfrpfrontalpole,rightfugfusiformgyrus,leftfugfusiformgyrus,rightgregyrusrectus,leftgregyrusrectus,rightioginferioroccipitalgyrus,leftioginferioroccipitalgyrus,rightitginferiortemporalgyrus,leftitginferiortemporalgyrus,rightliglingualgyrus,leftliglingualgyrus,rightlorglateralorbitalgyrus,leftlorglateralorbitalgyrus,rightmcggmiddlecingulategyrus,leftmcggmiddlecingulategyrus,rightmfcmedialfrontalcortex,leftmfcmedialfrontalcortex,rightmfgmiddlefrontalgyrus,leftmfgmiddlefrontalgyrus,rightmogmiddleoccipitalgyrus,leftmogmiddleoccipitalgyrus,rightmorgmedialorbitalgyrus,leftmorgmedialorbitalgyrus,rightmpogpostcentralgyrusmedialsegment,leftmpogpostcentralgyrusmedialsegment,rightmprgprecentralgyrusmedialsegment,leftmprgprecentralgyrusmedialsegment,rightmsfgsuperiorfrontalgyrusmedialsegment,leftmsfgsuperiorfrontalgyrusmedialsegment,rightmtgmiddletemporalgyrus,leftmtgmiddletemporalgyrus,rightocpoccipitalpole,leftocpoccipitalpole,rightofugoccipitalfusiformgyrus,leftofugoccipitalfusiformgyrus,rightopifgopercularpartoftheinferiorfrontalgyrus,leftopifgopercularpartoftheinferiorfrontalgyrus,rightorifgorbitalpartoftheinferiorfrontalgyrus,leftorifgorbitalpartoftheinferiorfrontalgyrus,rightpcggposteriorcingulategyrus,leftpcggposteriorcingulategyrus,rightpcuprecuneus,leftpcuprecuneus,rightphgparahippocampalgyrus,leftphgparahippocampalgyrus,rightpinsposteriorinsula,leftpinsposteriorinsula,rightpoparietaloperculum,leftpoparietaloperculum,rightpogpostcentralgyrus,leftpogpostcentralgyrus,rightporgposteriororbitalgyrus,leftporgposteriororbitalgyrus,rightppplanumpolare,leftppplanumpolare,rightprgprecentralgyrus,leftprgprecentralgyrus,rightptplanumtemporale,leftptplanumtemporale,rightscasubcallosalarea,leftscasubcallosalarea,rightsfgsuperiorfrontalgyrus,leftsfgsuperiorfrontalgyrus,rightsmcsupplementarymotorcortex,leftsmcsupplementarymotorcortex,rightsmgsupramarginalgyrus,leftsmgsupramarginalgyrus,rightsogsuperioroccipitalgyrus,leftsogsuperioroccipitalgyrus,rightsplsuperiorparietallobule,leftsplsuperiorparietallobule,rightstgsuperiortemporalgyrus,leftstgsuperiortemporalgyrus,righttmptemporalpole,lefttmptemporalpole,righttrifgtriangularpartoftheinferiorfrontalgyrus,lefttrifgtriangularpartoftheinferiorfrontalgyrus,rightttgtransversetemporalgyrus,leftttgtransversetemporalgyrus,montrealcognitiveassessment,minimentalstate,agegroup,handedness,updrstotal,updrshy,adnicategory,edsdcategory,ppmicategory,alzheimerbroadcategory,parkinsonbroadcategory,neurodegenerativescategories,dataset,apoe4,rs3818361_t,rs744373_c,rs190982_g,rs1476679_c,rs11767557_c,rs11136000_t,rs610932_a,rs3851179_a,rs17125944_c,rs10498633_t,rs3764650_g,rs3865444_t,rs2718058_g,fdg,pib,av45,tiv,row_id
+desd1,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,0
+desd2,63,63,M,1.7427,1.8381,0.41218,0.46676,0.89412,0.95116,17.0807,2.8799,2.8569,48.291,49.1019,14.5272,14.8643,251.9128,247.3031,1.4817,3.7933,3.4613,0.76747,0.83932,16.1951,17.7235,1.7801,1.7879,3.9642,4.1041,7.7925,8.3188,4.5171,4.7141,0.08029,4.7538,2.2414,2.782,0.46722,0.50087,4.1324,5.2181,4.0304,4.406,1.9376,1.9169,11.7556,11.3323,4.1066,3.6542,4.2634,4.7084,5.1616,4.3323,1.913,1.7971,2.1776,2.0677,4.7077,4.0108,7.5102,7.7366,2.37,2.2114,6.7231,7.8621,12.2189,11.5383,8.059,7.0396,2.4049,2.7365,4.5917,4.7032,2.029,2.1228,23.4151,25.1051,6.0089,6.4813,4.1489,4.5134,1.5388,1.23,4.0337,3.0378,9.1099,8.1976,15.6628,15.1973,3.3699,3.9336,4.4303,4.4299,3.9737,3.8385,1.6844,1.8071,4.49,4.6564,11.4914,11.1584,3.2419,3.6186,2.1743,2.2242,2.3698,2.3546,12.4968,13.1955,2.5524,2.7361,1.8932,2.1393,15.4733,15.3695,1.8934,2.0921,1.3308,1.379,16.0237,16.2906,6.5781,6.08,10.7075,10.4647,4.9162,4.2936,12.5559,11.8495,8.0468,7.8247,8.5756,7.7869,3.6455,4.0873,1.4827,1.7277,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,1
+desd3,67,67,M,2.0299,2.3463,0.37023,0.38063,0.86274,0.89655,17.6402,2.7109,2.6265,49.1382,50.411,14.4502,14.685,206.845,208.07,2.0632,3.5737,3.3827,1.0738,1.3385,24.7413,35.4198,1.5987,1.5034,3.3313,3.4098,6.6723,6.8129,4.741,4.9601,0.08488,5.4789,2.4147,2.5363,0.37894,0.40256,4.0314,4.6224,3.7816,4.0384,1.739,1.5897,10.0903,9.0663,3.617,3.3389,4.0601,4.1485,5.0459,4.9183,1.8231,1.6055,1.8714,2.0053,3.6944,3.3934,8.1594,8.202,2.3466,2.3139,7.4588,7.4757,13.5794,13.2008,9.3268,8.4713,2.2504,2.4185,4.3461,4.6652,1.9437,1.9734,20.694,20.8177,5.5567,6.1711,4.1427,4.3458,0.9974,1.1342,2.3328,2.6677,7.4036,6.5824,17.1263,15.9462,3.3382,3.6229,4.965,4.698,3.5792,3.7512,1.397,1.6515,4.2545,4.1885,10.5938,10.4257,3.1722,3.3091,2.0511,2.3505,1.8857,2.3823,10.2604,11.0923,2.5053,2.7641,2.0512,2.3017,11.6594,11.3597,1.5262,1.7909,1.2078,1.2087,14.4163,15.864,5.101,4.9962,7.8322,8.4148,4.6325,3.8,10.6186,10.483,7.3705,7.5284,8.3799,8.4207,3.3918,3.876,1.2864,1.4683,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,2
+desd4,,,M,1.5226,3.2169,0.41779,0.46245,0.86853,0.89788,21.9754,3.4614,3.4491,50.1582,50.524,20.511,19.9391,270.7593,262.7257,1.7918,3.4143,3.1983,0.58529,0.50891,17.2587,19.3711,1.9156,1.8368,4.3524,4.2688,7.4658,7.6321,5.1695,5.4939,0.05304,4.8395,2.4117,2.6853,0.41983,0.44719,4.4445,5.2956,5.1362,4.6196,1.7905,1.6399,12.1998,11.0556,3.4724,3.6169,4.4059,4.6239,5.1796,4.6995,1.8057,1.7295,2.3493,2.3582,4.1304,3.9049,8.1661,8.4139,2.2933,2.2119,7.267,6.877,13.1288,12.533,9.7277,8.1808,2.4607,2.5951,5.134,5.1775,2.0811,2.1285,21.3816,20.2197,6.3417,6.5278,4.1427,4.4401,1.4862,1.2882,2.9385,2.9189,9.1132,7.8726,16.6756,15.7612,2.789,3.2581,4.8151,5.0193,4.157,3.2288,1.8631,1.774,5.0546,5.319,12.5322,12.0702,3.218,3.6186,2.4234,2.3462,2.6699,3.1235,11.4327,13.2572,2.502,2.8007,2.2951,2.3045,12.6305,12.5137,2.2121,2.7258,1.359,1.5153,16.095,15.2893,5.5008,6.0767,9.4078,10.0726,5.0079,3.6212,12.6887,12.2536,9.0593,8.2163,7.7771,7.5491,4.1771,4.2673,1.839,1.6804,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,3
+desd5,71,71,M,1.9663,2.5945,0.31503,0.30522,0.68437,0.70803,18.025,2.5083,2.1486,49.2345,47.6329,15.0955,15.3101,195.6455,190.9265,2.3436,2.9331,2.6429,1.591,1.7079,42.9125,32.0855,1.5564,1.58,3.2943,3.1297,5.7264,6.0853,4.4807,4.7448,0.06139,5.0099,2.407,2.7923,0.33161,0.33103,4.3118,4.3576,4.1956,3.9908,1.5988,1.4082,10.0514,9.8171,3.6043,3.7731,4.2506,3.9212,5.3581,5.2487,1.2354,1.3508,1.9209,2.0053,3.4846,3.0266,6.1182,6.4238,1.8311,1.8763,6.6274,5.7301,9.7939,10.4842,8.124,7.8848,1.8405,2.1418,4.827,4.5362,1.6467,1.751,17.3505,17.1683,5.2675,5.1925,3.4559,3.5098,1.0974,0.9852,2.6924,2.3513,7.0561,6.6809,11.8751,11.9078,2.9533,3.2256,4.3718,4.2296,3.4978,3.138,1.3601,1.5716,3.831,3.884,9.5098,9.1429,2.4062,2.8489,2.4793,2.3813,2.0647,2.2927,9.6216,10.9738,1.9902,2.3644,2.0106,2.1983,11.4383,11.9401,2.052,1.8732,1.0551,1.0794,13.3024,14.0778,4.9585,5.2777,7.9453,8.9686,3.8339,3.4434,10.9249,10.9214,7.8856,7.2786,6.9801,7.3507,3.365,3.6655,1.3856,1.3732,,21,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,4
+desd6,69,69,F,1.5307,2.3068,0.37607,0.40036,0.80229,0.79138,16.4464,2.8581,2.8398,42.4316,42.7181,12.9262,13.0713,197.4064,194.5308,1.6499,3.0757,2.8996,0.57647,0.62636,14.9264,20.9043,1.4414,1.4625,3.5052,3.5172,6.1317,6.2847,4.1648,4.2973,0.07275,4.024,2.0418,2.3787,0.38924,0.38263,3.494,4.2679,4.0509,4.0309,1.7528,1.616,9.3369,8.9824,2.5892,2.5467,3.9783,3.767,3.9812,3.7362,1.5534,1.4384,2.1879,2.1023,3.6085,3.3786,6.8553,7.0287,1.9583,2.1135,5.7902,6.0413,11.1523,10.5925,7.228,6.5722,2.2146,2.3243,4.196,3.9784,1.6304,1.6445,17.9707,17.575,4.6056,5.8687,3.7301,3.9945,0.83247,0.94137,2.678,2.4072,7.2337,6.4805,14.0717,13.3602,2.3287,2.8772,3.7539,3.809,4.2019,3.4705,1.6075,1.4114,3.4634,3.7409,9.2515,9.1856,2.8393,2.9583,2.4381,2.2396,2.4625,2.3096,9.6216,11.5521,2.4806,2.4704,2.0955,2.1582,11.9596,13.0261,1.8008,1.9957,1.1843,1.2064,14.2656,15.3711,5.3756,5.3664,7.4589,8.907,3.69,2.8281,8.8287,9.8046,6.5968,6.5463,7.4341,7.9148,3.8196,3.6143,1.6071,1.7511,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,5
+desd7,66,66,M,1.1798,2.9028,0.44948,0.48466,0.89923,0.93238,18.633,3.6181,3.1242,54.7687,54.2968,15.2336,15.5561,233.7051,234.3481,1.5549,3.4753,3.4736,0.57306,0.505,11.9006,13.0408,1.7282,1.7807,4.106,4.2102,6.9894,7.1641,5.0171,5.3218,0.08206,4.7116,2.2871,2.8039,0.3795,0.38335,4.2319,4.8177,4.8483,4.6196,1.6872,1.552,9.4278,9.2074,3.1833,2.9703,4.2689,4.6371,4.6917,4.7116,1.7,1.6788,1.8752,2.0075,3.635,2.956,8.3507,7.9662,2.1532,2.0545,7.1179,6.4182,13.026,12.2691,8.0041,7.2098,1.9363,2.2267,4.693,5.5136,1.7941,1.7827,19.4878,20.3142,5.206,6.6615,4.2,4.1335,1.0789,1.2771,2.5902,2.8102,8.2489,6.5107,14.6469,15.5411,3.2252,3.7023,4.2992,4.1536,3.238,3.5007,1.493,1.433,4.0397,4.4808,10.4458,10.0906,2.9501,3.3362,2.588,2.5239,2.5608,2.7929,12.1224,12.1016,2.1918,2.4598,2.2835,2.3384,12.5464,13.2651,1.7559,2.5071,1.1871,1.2696,13.8458,13.1667,5.4232,5.7578,7.7824,9.726,3.9609,3.5157,10.3976,10.0838,7.3692,7.2786,8.7056,8.3901,3.5721,3.8205,1.6957,1.9245,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,6
+desd8,75,75,F,2.0548,1.7534,0.36445,0.39969,0.68032,0.68886,18.4171,3.5473,2.9424,44.5434,44.0719,14.0881,14.573,215.1196,210.2855,1.576,2.8602,2.8842,1.0439,0.9797,16.2377,25.9844,1.5573,1.6024,3.588,3.6017,6.1977,6.4279,4.6796,4.9817,0.08816,4.467,2.0232,2.2749,0.36116,0.37288,3.591,4.1264,4.0554,4.1057,1.4226,1.3156,9.7382,10.7998,2.6701,2.7326,4.0083,3.6886,4.5201,4.2088,1.2883,1.2057,1.891,1.9733,3.2384,3.0987,6.8047,6.2417,1.6958,1.7617,6.2295,5.8054,11.0579,10.8045,6.9075,6.367,1.9783,2.2289,4.3009,4.245,1.5406,1.5493,14.7771,16.5744,4.9182,6.6411,3.5051,3.4254,0.85424,1.0087,1.9606,2.3554,7.1452,6.583,14.0717,12.909,2.4574,3.1687,3.6301,4.0524,3.4978,3.1473,1.4383,1.4993,3.797,4.2644,10.5466,10.1122,2.6071,2.8,2.3395,2.379,2.3381,2.7322,11.1595,11.9307,2.133,2.4597,2.0867,2.1754,10.6755,10.5874,1.9312,2.1403,1.0567,1.1685,12.6629,11.6951,4.4488,4.6578,8.3242,9.2554,4.0754,3.4355,10.9059,9.5743,7.5951,7.1782,6.266,7.0149,3.305,3.7394,1.5177,1.5321,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,7
+desd9,73,73,F,1.5766,1.7982,0.32204,0.37309,0.79481,0.88831,16.9803,2.408,2.224,40.966,45.4621,15.3503,16.2466,202.8273,197.9945,1.509,3.1148,2.9821,1.0092,1.1402,14.918,18.3588,1.4597,1.4444,2.8452,2.6895,6.3008,6.643,4.2859,4.5385,0.0659,4.484,2.0725,2.4018,0.32784,0.37409,3.7968,4.4399,3.3092,3.9608,1.7559,1.3901,8.4829,6.946,3.0625,3.3412,3.6777,3.9282,4.2102,4.1242,1.5594,1.6223,1.6705,1.8498,3.5073,3.1244,6.8863,6.7072,1.8319,1.8858,5.8617,5.8756,11.0778,10.043,7.662,7.4214,2.0604,2.1013,4.7241,4.8278,1.6467,1.6649,16.5415,17.3049,5.0392,5.121,3.5027,3.8057,0.88375,0.85443,2.1526,2.0058,7.0396,6.358,13.687,13.5095,2.6741,3.0273,4.0595,4.1272,3.0878,2.9939,1.3612,1.313,3.5927,3.8657,9.6531,9.6351,2.8919,3.097,1.9382,1.9991,1.7577,1.7989,9.0679,10.9721,2.0698,2.2895,1.8567,1.8632,11.3304,11.9425,1.5063,1.4938,1.033,1.0159,13.374,13.6062,4.913,4.7508,6.171,7.2704,3.8065,2.9731,9.0949,9.2975,6.8383,6.1527,7.2108,6.8396,3.1547,3.7251,1.3013,1.2385,,12,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,8
+desd10,,,M,1.7391,2.2178,0.3771,0.3989,0.74336,0.67477,17.4098,2.8217,2.8133,45.9484,45.9534,14.4953,14.685,232.1245,222.6818,1.7547,2.9796,2.5467,0.69365,0.93272,16.9311,18.5819,1.5756,1.5671,3.3206,3.4066,6.1315,6.7017,4.4807,4.6755,0.08606,4.9321,2.3064,2.7552,0.39973,0.39964,4.0747,5.1149,3.996,4.4585,1.8315,1.6258,8.8971,7.9803,2.6921,2.636,3.4206,3.7713,4.2585,3.5991,1.5225,1.3727,1.623,1.7251,3.8484,3.3823,7.4195,6.7801,2.2614,2.4181,5.6115,4.8611,11.629,10.589,7.3228,6.8854,2.1175,2.3184,4.8872,4.8373,1.9521,1.926,19.0582,20.7362,5.0812,5.0145,3.8301,4.3392,1.3812,1.3627,3.2335,2.9585,8.3811,7.2885,13.3822,11.7806,2.4489,2.9441,3.7109,3.5079,2.9123,2.9264,1.3391,1.2236,4.0065,4.4101,10.4945,10.1787,2.6925,2.7921,2.0868,2.1704,1.958,2.1911,8.6214,10.0321,2.1408,2.7755,1.906,2.1656,12.0507,11.0828,1.5209,1.7595,1.2912,1.378,13.344,13.3514,6.5321,6.1866,6.7607,7.9938,3.7333,2.7544,11.2632,10.0564,6.2928,6.4311,6.2905,7.0134,3.463,3.2835,1.2975,1.4578,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,9
+desd11,,,M,1.7432,1.907,0.37903,0.43673,0.86381,0.87597,18.9345,3.1106,3.1461,47.8528,47.8739,15.8558,16.8291,232.3607,216.712,1.4746,3.5946,3.355,0.57608,0.54447,14.5098,16.2363,1.5439,1.5518,3.909,3.827,7.0836,7.4687,4.6711,4.9331,0.07026,4.7821,2.4087,2.8305,0.36201,0.39096,4.5993,4.8193,3.6746,3.758,1.739,1.503,10.414,9.1054,3.2468,2.9745,3.9038,4.0282,5.1156,4.5287,1.7196,1.6892,1.946,1.9305,4.0838,3.5694,7.2855,7.5082,2.2997,2.4181,7.2674,6.9482,10.7373,11.1452,8.1373,7.2431,2.1655,2.3079,4.2543,4.4298,1.8856,1.9333,17.8984,18.425,5.9004,5.956,4.1427,4.0782,1.2274,1.1088,2.7318,2.7557,8.0737,7.2554,14.2011,13.9693,3.6274,4.1271,4.3085,4.2138,3.2821,3.1416,1.5816,1.4159,4.2346,4.0821,10.4651,10.2192,2.9151,3.154,2.2328,2.3157,2.1136,2.0983,11.4951,12.3052,2.231,2.3627,2.1271,2.3763,12.0913,12.6403,1.9704,1.9207,1.3019,1.3577,14.6592,15.8069,5.1692,5.2826,8.1971,8.9906,4.5519,3.7044,10.0179,10.7694,6.9565,6.3939,8.3723,7.9834,3.9895,3.6266,1.5601,1.6391,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,10
+desd12,69,69,F,1.5307,1.9337,0.36717,0.36453,0.73506,0.76414,14.8189,2.7088,2.2654,41.0787,41.5099,12.0467,12.1929,208.768,205.4184,1.2191,3.0156,2.8124,0.43641,0.39153,7.9119,11.6928,1.2675,1.2722,3.4311,3.6406,6.1316,6.3217,3.8095,3.9123,0.07538,4.0092,1.9707,2.5672,0.38336,0.38368,4.16,4.766,3.8127,3.9851,1.8107,1.5216,8.8971,7.6242,3.1339,3.0936,3.8671,3.6261,4.2951,4.1254,1.5116,1.4683,1.8272,1.8144,3.6087,3.4439,7.1605,7.2682,2.1543,2.3049,6.1452,6.1849,11.0786,10.9211,8.111,7.1042,2.3611,2.5257,4.8651,5.122,1.9846,1.9582,18.7979,17.9772,4.6608,5.7645,3.9285,4.1118,0.98736,1.2398,2.2975,2.7371,8.6556,7.3094,13.7059,12.3497,3.4065,3.431,3.9583,4.0664,2.9884,3.2242,1.6136,1.4956,3.6731,3.976,10.113,10.7938,2.7887,2.8443,2.3396,2.3371,2.4287,2.4724,8.7332,10.7917,2.3974,2.4704,2.0151,2.3492,11.7135,12.5679,1.85,1.8216,1.2132,1.2275,13.8315,14.0778,5.1314,5.6746,7.0267,7.8364,4.3188,2.8313,9.3013,9.8547,7.0665,7.1664,7.404,7.2767,3.4988,3.7456,1.5205,1.811,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,11
+desd13,,,M,2.0714,2.3398,0.33165,0.3327,0.73419,0.74291,15.1615,2.5676,2.7446,44.0019,43.9793,12.0541,12.1993,216.8783,207.5702,1.5639,2.9519,2.6804,0.5229,0.4371,11.4556,15.2159,1.4013,1.4276,2.9851,2.9205,6.1396,6.4532,4.1089,4.2449,0.07988,4.4217,2.1421,2.0325,0.3253,0.33722,3.5102,3.6764,3.5631,3.8348,1.5852,1.448,8.3796,8.4283,3.0314,2.8439,3.156,3.7772,4.3431,3.5666,1.4359,1.4315,1.7098,1.8599,3.2388,2.8371,6.8553,6.7179,1.8387,1.7793,5.7367,6.2988,10.8862,10.1434,6.7317,6.6889,1.9201,2.0354,4.075,4.3193,1.4837,1.5133,15.7914,15.8574,4.6161,5.2485,3.3936,3.4982,0.89908,1.0072,2.1395,2.2592,6.5287,5.6651,13.7493,12.1722,2.7174,2.97,3.5957,3.992,2.8152,2.9105,1.2938,1.2667,3.4599,3.7649,9.9978,9.1992,2.5765,2.7641,2.0859,1.9738,1.7387,1.8289,8.8901,11.7269,2.1689,2.1021,1.7945,1.8391,11.2482,12.057,1.4708,1.7841,0.93125,1.0552,10.1465,12.363,4.7844,4.1201,6.8164,8.2916,3.8803,3.0401,9.8015,10.221,6.5747,6.1163,6.9153,6.2556,2.7704,2.934,1.1692,1.284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,12
+desd14,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,13
+desd15,75,75,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,14
+desd16,,,M,1.906,2.1809,0.3203,0.35398,0.77114,0.69324,18.827,3.0232,3.0729,46.765,46.4122,15.4287,16.4669,213.239,208.5733,1.7547,3.2064,2.6057,0.97819,0.79331,21.2482,23.1821,1.6167,1.5667,3.2204,3.368,6.4276,6.5824,4.6522,4.9407,0.09039,5.1289,2.2255,2.5866,0.35492,0.34401,4.588,4.7708,4.1091,4.5723,1.5504,1.3397,9.8747,8.1307,3.1261,2.8373,3.9223,4.156,4.4217,3.7909,1.5323,1.2884,2.0772,1.9711,3.5967,2.956,7.2513,6.5086,1.9445,1.9945,5.896,6.1578,10.9034,9.9763,7.6111,7.2196,2.2026,2.2381,4.4849,4.9814,1.5897,1.6169,20.0742,20.032,4.631,5.0735,3.579,3.4737,0.86988,1.0935,2.2389,2.3103,7.4436,6.5107,13.6863,13.0122,2.9064,3.2409,4.1069,4.1683,3.551,3.0803,1.6097,1.3049,4.023,4.4781,10.4514,10.2797,2.7925,2.8399,2.3053,2.5954,2.2033,2.4724,8.6783,9.4535,2.3009,2.1443,2.1182,2.4406,10.7852,10.1415,1.6544,2.0798,1.1289,1.1825,13.3726,13.1233,4.9246,5.384,7.1078,8.661,3.7684,3.1314,9.5535,9.8225,6.8894,7.0721,7.2623,6.6037,3.384,3.7102,1.385,1.4376,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,15
+desd17,73,73,M,1.7782,1.6608,0.33228,0.38838,0.77985,0.74284,16.6371,2.6987,2.824,42.862,43.6108,14.7578,15.2294,212.1288,208.3012,1.9452,3.101,2.9098,0.9369,0.72958,16.5071,19.3908,1.4087,1.3795,3.4854,3.5903,5.8336,5.9647,4.1085,4.3744,0.08137,4.3723,1.9541,2.3787,0.36577,0.33822,3.796,3.972,3.6161,3.9836,1.4111,1.3787,9.5932,8.6007,2.8047,2.5654,3.3349,3.7099,4.3885,3.651,1.557,1.4559,1.8181,1.6895,3.2384,3.1364,6.7427,6.5512,1.6585,1.7386,6.3686,6.0013,10.5636,10.1241,7.017,6.5722,1.8268,1.9589,4.3293,4.2832,1.4496,1.5183,16.1397,17.148,4.6822,5.3467,3.1269,3.3918,0.89696,1.0396,2.4117,2.2973,6.5478,5.9402,12.9694,12.4628,2.5476,2.9691,3.8619,3.7471,3.0337,3.3054,1.1486,1.3043,3.77,4.3165,10.4549,10.2765,2.8215,3.139,2.0896,2.1748,1.6872,2.03,9.2992,10.3112,1.8465,2.0887,1.8621,2.1058,11.8479,11.3597,1.3702,1.8612,1.0767,1.1387,12.7223,13.045,4.5457,4.6411,6.7607,8.428,3.5325,3.035,9.887,10.2162,5.8607,6.0422,6.3472,6.2909,3.1447,3.0542,1.2903,1.4235,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,16
+desd18,79,79,F,1.4436,0.86416,0.30261,0.32521,0.78395,0.74054,17.2983,2.5066,2.4484,28.1916,30.9771,16.5675,16.4259,249.6425,228.3948,1.0956,3.183,2.8485,0.51198,0.55086,10.7726,12.0729,1.6691,1.6868,2.9703,3.0403,6.4687,7.2052,4.5376,4.783,0.07985,4.1429,2.1036,2.4878,0.34941,0.3225,4.2214,4.5454,3.4647,3.5566,1.5645,1.497,9.2651,6.9954,2.8328,2.8522,3.8864,3.5342,3.9622,4.3597,1.5043,1.5317,1.8143,2.0122,3.3082,3.0901,6.3894,6.5195,2.0388,2.1391,5.8415,5.5784,10.1838,9.8519,7.1912,6.6139,2.0704,2.3079,4.139,4.4521,1.7361,1.8136,17.1331,17.2443,4.6989,5.2936,3.3256,3.5735,0.97379,1.0639,2.3854,2.5646,7.1579,6.4971,12.6236,11.7817,2.6821,3.1752,3.6132,3.724,2.9884,3.8938,1.572,1.5144,3.5904,3.9871,8.9276,9.303,2.8008,3.0073,2.0391,1.9531,2.2397,2.3091,9.3905,10.9196,2.2308,2.432,1.8056,2.1223,12.0309,10.7097,1.8786,2.0576,1.2947,1.3149,12.0217,13.9965,4.8591,4.7508,7.4631,7.9938,3.7965,3.151,9.3513,9.2653,6.4914,6.1163,6.7739,6.9261,3.3092,3.9865,1.3062,1.4931,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,17
+desd19,73,73,M,1.7097,1.6037,0.37741,0.43295,0.86543,0.88892,18.1318,2.9505,2.8851,40.9779,42.4788,14.1702,14.6072,211.353,210.2499,1.1571,3.5946,3.3827,0.58387,0.505,11.259,12.3254,1.5159,1.4679,3.8803,3.7431,6.7928,7.1078,4.5574,4.78,0.0808,4.5196,2.0895,2.4153,0.37217,0.37705,3.8507,4.8056,3.9907,4.6331,1.7461,1.6524,10.0996,9.8771,3.793,3.877,4.055,3.8726,5.7872,5.3388,1.6893,1.5593,2.0749,2.3372,3.547,3.4626,8.1498,7.0153,1.9793,2.1136,7.611,7.5129,12.6562,12.9047,9.0223,8.1756,2.1777,2.2929,4.5711,4.9408,1.5995,1.668,19.1158,19.1402,5.9148,6.5834,3.7214,4.132,1.0222,0.98038,2.5152,2.456,8.039,7.0344,15.5968,16.9706,3.881,4.4832,4.6353,4.6343,3.4459,3.1111,1.4561,1.4475,4.0406,4.6815,10.3831,10.6224,3.0398,3.0748,2.0389,2.0921,2.01,1.9606,10.6365,11.8171,2.5713,2.438,2.0082,2.2049,13.2599,12.4153,1.8172,1.6056,1.0766,1.1458,14.3383,14.8115,5.3249,5.3547,8.702,9.7342,5.1031,4.1522,9.975,10.6654,7.4507,8.7394,7.7595,6.7795,3.33,3.9344,1.3957,1.3991,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,18
+desd20,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,19
+desd21,56,56,F,1.2087,0.73524,0.00009,0.00296,0.18236,0.4964,9.0519,0,0.00075,24.3004,18.9006,10.3602,10.4069,97.6268,128.6959,1.2754,2.4553,2.2563,1.4247,1.5123,17.4891,20.4219,1.3485,1.3058,0.23437,0.79482,5.5578,5.4562,3.8544,4.1275,0.08356,4.7754,2.3187,1.1706,0.27894,0.29135,0.00006,0.00124,0.9969,1.1702,0.00047,0.41169,7.5287,7.3169,3.0178,2.584,0.30663,0.12649,3.525,3.349,0.98201,0.91267,0.75116,0.00001,0,0,3.8349,5.4726,0.51662,0.56823,4.9538,4.7812,7.2375,8.542,6.6465,6.181,0.03515,0.02822,0.00011,0,0.03295,0.05335,0,0,3.9723,4.8572,1.529,1.6916,0.86393,0.94701,1.988,1.863,0.01018,0.00791,8.7517,10.152,2.3425,2.5727,3.2884,3.2516,1.3448,1.4087,0.00001,0.05771,3.2366,4.0421,8.6133,9.4057,2.1394,2.1743,1.6208,1.6036,0,0.02077,0.00167,0.00809,1.4502,1.2601,1.457,1.7069,0.00012,0.00038,1.5465,1.514,0.81868,0.91649,0.00052,0.00013,0,3.5064,0.20706,1.4319,3.9022,2.0489,7.6841,7.8501,6.3164,6.0329,2.8712,4.5637,0,0,1.2142,1.2157,,23,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,20
+desd22,68,68,M,1.4677,1.8126,0.35587,0.3887,0.77569,0.77185,15.5862,2.5722,2.3667,44.3657,43.8844,13.0955,13.538,207.292,203.5602,1.2191,3.1302,2.7903,0.58691,0.58428,12.3522,12.4405,1.4317,1.4848,3.5951,3.5565,5.9759,6.7606,4.0316,4.2692,0.07514,4.7614,2.2017,2.5773,0.38664,0.35469,3.4618,4.1942,3.7408,3.6754,1.8041,1.6574,10.0875,9.0189,2.8527,2.7682,3.1711,3.7968,3.9531,3.8832,1.6085,1.5122,1.8194,1.7831,3.6404,3.4007,6.8976,6.7179,1.8166,1.8109,6.4052,5.3269,10.6778,9.5801,7.3752,6.7321,2.4733,2.6616,4.5714,4.4832,1.5505,1.6947,18.3073,18.6762,5.2188,5.5331,3.5876,3.8333,1.149,1.0947,2.4941,2.3793,7.3004,6.6773,13.0443,11.827,2.8103,3.0027,4.0289,3.6946,3.386,3.4143,1.4083,1.798,3.9715,4.1086,9.7306,9.7817,2.8557,3.0435,2.1409,2.1163,1.5787,2.0237,9.7535,11.8537,2.3189,2.4663,1.9582,1.8767,11.793,10.5878,1.5548,1.9722,0.97914,1.0054,14.6636,14.2914,5.0969,5.388,7.8577,8.6249,3.7382,3.2554,9.7912,11.4757,6.3764,6.3079,7.0838,6.7322,3.3918,4.1227,1.385,1.3618,,,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,21
+desd23,,,M,2.0909,2.3676,0.29701,0.33854,0.79543,0.85586,15.1615,2.5652,2.5642,41.0787,42.4345,12.1718,12.1868,206.2201,203.3802,2.2824,3.1412,3.05,0.71055,0.67237,23.0322,26.4464,1.4088,1.3777,3.3423,3.4101,6.3466,6.6196,4.2099,4.4831,0.07149,4.4087,1.9909,2.296,0.37038,0.32201,3.9387,4.5912,4.174,4.1261,1.4344,1.312,9.9686,8.5698,2.8367,2.8543,4.0779,4.0305,3.6079,4.1558,1.4653,1.5289,2.1704,2.0307,3.4999,3.3346,6.0937,5.759,1.7869,1.8084,5.6166,5.4153,9.9723,9.4124,6.6465,6.1563,1.9783,2.1288,4.4082,4.4005,1.6876,1.6692,15.8517,15.3283,4.3769,5.159,3.5051,3.4254,1.161,1.0315,2.7515,2.6154,7.1579,6.6186,13.2245,12.6595,2.5099,2.7921,3.733,3.6689,3.4737,3.6122,1.4939,1.4791,3.5726,3.9948,9.6417,9.4352,2.6072,2.9977,2.4911,2.5616,2.2478,2.2704,10.5173,12.1449,2.1918,2.5449,2.0772,2.3484,11.1306,11.5145,1.9259,1.9195,1.0825,1.1747,13.6011,12.9521,5.4504,5.3156,8.1537,8.4604,3.9092,3.0755,9.0863,9.7264,6.7479,6.89,6.9707,7.5208,3.372,3.9865,1.5917,1.5275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,22
+desd24,68,68,F,2.1805,2.6169,0.38699,0.42061,0.93134,0.96084,18.3676,3.4004,3.1726,44.8791,47.2679,13.2285,13.5784,197.4064,192.1346,1.764,3.6778,3.1016,1.2944,1.1697,22.5276,29.8965,1.4477,1.4602,3.4455,3.5266,7.0836,7.3633,4.2391,4.532,0.06774,4.5381,2.142,2.4424,0.37346,0.37323,4.5751,4.6505,4.102,3.958,1.8044,1.5454,9.0756,7.8604,2.9077,2.8104,3.4638,3.5014,3.6404,3.813,1.5867,1.953,1.9307,1.8215,3.7522,3.6374,6.3707,6.5488,2.1897,2.3608,5.7385,5.4965,9.375,8.9153,7.5424,6.62,2.2463,2.4224,4.7904,5.1063,1.8236,1.8448,19.8375,19.0645,5.1017,5.5906,3.7934,4.1708,0.9789,1.2595,2.5015,2.3999,7.4214,6.6393,13.2977,12.4403,2.3021,2.6117,3.9653,3.6946,3.6778,3.6147,1.5778,1.3698,4.426,4.6368,11.4473,11.3572,2.8132,2.9473,2.4793,2.4272,2.0239,2.3937,8.8464,9.7252,2.4155,2.3962,2.123,2.2782,12.3611,12.5431,1.6654,1.8226,1.1916,1.2275,13.344,14.0161,4.8749,5.226,7.3907,7.9887,3.5958,2.794,9.4038,9.5963,6.6434,6.5064,7.6852,7.094,4.2839,3.8205,1.2975,1.7914,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,23
+desd25,,,F,2.053,2.342,0.36363,0.34978,0.75449,0.64941,16.0109,2.7109,1.9421,46.0148,46.5014,14.7531,15.0423,195.6455,184.7551,1.6027,2.9427,2.5777,1.1926,0.85539,22.3641,23.4172,1.4893,1.4886,3.3206,3.3909,6.0573,6.0733,4.2159,4.3714,0.08239,5.1619,2.3064,3.0603,0.35492,0.36107,3.6504,4.1722,3.6749,4.0342,1.5197,1.3397,9.5718,9.0312,3.1958,3.3412,3.5283,3.7872,4.4513,4.467,1.3899,1.3803,1.6694,1.8175,3.4547,3.5652,7.0434,6.775,1.7704,1.9282,6.3686,5.3417,11.3758,9.7307,7.3151,7.1467,2.0076,2.1056,4.3071,4.3926,1.4899,1.6286,16.2826,16.1953,5.5954,5.1925,3.2182,3.4739,1.0275,1.3061,2.4179,2.379,6.9332,6.4805,13.2145,13.0671,3.0174,3.8253,3.8176,4.0298,2.7727,2.8783,1.4383,1.3618,3.8666,4.2252,10.3976,9.9042,2.7099,2.9231,2.1981,2.2243,1.6872,1.7989,9.2746,11.3341,1.9636,2.1624,1.9664,2.2002,10.6978,11.5328,1.5451,1.4705,1.1501,1.2017,13.5541,13.1303,4.854,5.4187,8.0882,8.0248,4.3206,4.0503,9.9513,11.0529,6.656,6.7096,7.0344,6.2131,3.2715,3.2693,1.3538,1.3,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,24
+desd26,69,69,F,1.5107,1.6665,0.31226,0.32269,0.68245,0.65911,15.8248,2.5523,2.7342,37.2891,36.5007,12.6773,13.067,206.6841,198.8349,1.3977,2.7652,2.6792,0.4878,0.39808,8.5689,11.6928,1.2771,1.4068,3.1583,3.255,6.1763,6.46,3.8095,4.0073,0.08783,4.6425,1.8249,2.1023,0.30397,0.31632,3.9181,4.2396,3.5752,3.8233,1.7195,1.4819,9.2651,8.0959,3.2835,2.8805,3.8597,3.8098,4.4276,4.0752,1.4101,1.291,1.7762,1.8338,3.2698,3.23,5.9951,5.9684,2.0098,2.0685,6.044,4.56,9.3244,8.5717,7.4372,6.8615,2.1265,2.2156,4.5939,4.6442,1.6016,1.694,18.315,18.6722,4.6208,5.1305,3.7841,4.0888,0.95977,0.94417,2.4632,2.456,6.988,5.8159,12.056,10.0357,3.3381,2.8547,4.0153,3.6688,3.0912,3.5001,1.4724,1.1636,3.5493,3.8951,9.5692,9.8994,2.3836,2.7302,1.9203,2.0851,2.3054,2.2416,9.091,11.7269,2.1371,2.3149,1.8192,2.0525,11.769,11.9425,2.069,1.7456,1.249,1.2771,13.8315,13.0945,4.7624,4.4989,8.0461,8.5647,4.0972,3.325,9.5659,10.0305,6.6185,5.1942,6.5751,5.9166,3.4556,3.535,1.3268,1.3773,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,25
+desd27,61,61,M,2.3612,1.6033,0.40428,0.43782,0.71715,0.7483,19.121,2.9757,2.9517,45.5865,45.5447,14.6805,15.2393,236.8481,235.5425,1.576,2.9303,2.8842,0.86303,0.80183,16.9221,20.2561,1.6726,1.6677,4.0851,3.9839,7.5919,7.8519,4.7738,5.031,0.08257,4.9634,2.1403,2.5734,0.40259,0.41012,4.0922,5.0062,4.3287,4.8613,2.1787,1.5177,11.0332,9.553,3.7903,3.3336,4.3688,3.7658,5.6182,4.8328,1.5225,1.5617,1.9532,2.1225,4.4622,4.7688,7.3078,7.338,2.6917,2.7388,7.4683,7.9157,11.7478,11.318,7.7976,7.3764,2.4956,2.5384,5.0773,4.9652,2.4392,1.9582,21.3402,22.2924,5.5976,6.998,4.2817,4.5659,0.95657,0.99224,2.4969,2.3337,11.2819,9.2277,15.3673,14.0082,3.1402,3.817,4.0725,4.1161,2.8978,3.4049,1.6974,1.5065,4.0853,4.4808,10.9989,10.9054,2.5383,2.7861,2.7182,2.8041,2.826,2.6709,10.2712,11.2918,2.6482,2.6129,2.3842,2.4695,13.703,13.2247,2.2523,2.0692,1.5271,1.5581,16.5771,16.3306,5.7164,6.1416,8.488,8.6666,3.8339,3.657,10.7756,10.7882,7.9778,7.6945,7.9541,7.5228,4.2226,4.1668,1.9393,1.6449,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,26
+desd28,,,M,1.535,3.2169,0.38883,0.40365,0.88096,0.89798,18.528,2.7088,2.6821,50.477,50.5032,16.2491,15.9507,255.5603,247.3031,1.3455,3.4752,3.3067,0.67856,0.72065,16.9311,20.0561,1.7338,1.7012,3.3503,3.353,7.2876,7.6489,4.7272,4.926,0.08182,5.0798,2.3782,2.6146,0.35228,0.37781,4.1866,4.6051,3.7443,3.6726,1.6968,1.4243,10.1467,8.5417,3.4747,3.2287,4.011,3.6622,4.9487,4.6911,1.7707,1.6007,1.9177,1.7211,3.8271,3.3982,7.5841,7.111,1.9965,2.0042,6.2715,5.5784,11.9333,10.9849,8.6267,8.122,1.9363,2.4542,4.7897,4.9897,1.8071,1.8088,19.4685,19.7988,4.7661,5.1144,3.8657,3.7771,1.2147,0.97622,2.6694,2.3337,7.3543,7.1516,14.5319,13.3737,2.7967,3.3834,4.1414,4.059,3.6326,3.4407,1.3532,1.5023,4.1098,4.3836,10.3175,9.8585,3.1334,3.3091,2.0263,1.9328,2.3964,2.6854,10.2644,10.8993,1.8912,2.4795,1.8492,2.0808,12.038,12.061,2.1804,2.1044,1.1297,1.2271,15.0529,15.2695,5.0638,5.5021,8.1754,8.5652,4.0782,3.7495,10.6321,10.1939,8.4678,8.4616,7.3755,7.2509,3.1222,3.8991,1.3803,1.3876,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,27
+desd29,38,38,F,1.0122,1.5949,0.4108,0.44694,0.89568,0.98359,19.6702,2.9757,2.7297,51.3226,49.6062,16.2343,16.1223,240.1943,232.4718,1.22,3.4963,3.5674,0.57188,0.40354,14.3835,13.1091,1.6519,1.7288,4.0851,4.0694,7.8667,8.0449,4.9633,4.9725,0.08168,5.3514,2.4571,2.8277,0.47669,0.47435,5.0084,5.3957,4.3245,4.5901,2.1921,1.8866,11.7556,10.5471,3.2868,3.2794,4.1051,4.6635,5.1925,5.172,1.8057,1.6975,2.0501,1.9869,4.3402,4.7688,8.3586,7.9227,3.6083,2.6585,7.9388,7.3809,13.0247,11.6909,8.7216,8.1993,2.8399,2.7266,5.1192,5.0934,2.3381,2.3385,22.3019,21.8414,5.7287,6.4612,4.5976,4.7475,1.0477,1.3173,2.974,2.6437,9.912,9.2277,16.2557,14.1545,3.3871,3.7497,5.0129,5.1498,3.6886,3.5137,1.8759,2.08,4.7711,5.079,12.7939,11.8877,3.1093,3.4562,2.1884,2.268,2.1405,2.3546,11.4609,13.663,2.6649,2.9372,2.1977,2.4613,13.4291,14.8469,1.9694,2.2641,1.305,1.3258,17.0002,16.3306,6.1193,6.7152,9.1852,10.4661,4.4744,3.9702,11.9661,13.0103,7.9591,9.2875,9.4185,9.1485,4.5346,4.3584,1.5519,1.7362,,8,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,28
+desd30,75,75,M,1.2993,1.1638,0.4372,0.48436,0.88555,0.90118,17.8769,3.4062,3.217,45.3326,45.5105,14.668,14.8168,243.2493,236.0462,1.5549,3.1602,2.8952,0.6035,0.51854,16.3904,17.7235,1.682,1.6447,3.9988,4.2565,7.202,7.7356,4.4222,4.7647,0.08831,4.0834,2.021,2.4679,0.42742,0.42533,4.3094,5.1149,4.1919,4.5901,1.9919,1.7987,10.4493,10.1742,3.5938,3.3301,4.1476,4.1455,5.4003,5.6975,1.8133,1.8106,1.9715,2.0081,4.3623,3.6769,8.1226,8.2525,2.1746,2.1924,8.3124,7.5284,14.8414,12.7368,8.4069,8.0601,2.3789,2.8515,4.8032,5.2206,2.1684,2.0161,20.0268,20.0068,5.467,6.4883,4.0721,4.4004,1.1214,1.3013,2.8519,2.9639,9.1646,7.7043,16.1292,15.7574,3.7915,4.3637,4.6967,4.5792,3.5548,3.7346,1.6705,1.7745,4.0738,4.9304,10.7119,10.822,3.3943,3.446,2.5382,2.5832,2.3964,2.6919,10.9025,13.0556,2.5869,2.6925,2.126,2.4763,14.0489,15.0168,2.172,2.0692,1.3277,1.3721,16.4028,14.5999,6.2652,5.9672,8.2741,8.91,3.961,3.4659,10.2779,10.7001,8.5913,7.5284,9.2186,9.067,3.4307,4.0344,1.6101,1.6139,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,29
+desd31,67,67,M,2.201,2.2014,0.39908,0.42969,1.0214,1.0389,21.1231,3.2034,2.941,54.1172,51.7551,16.7208,17.3212,295.4615,277.4785,1.5952,4.14,3.5424,0.63939,0.52111,13.3926,14.9908,2.0607,1.9055,3.7748,3.8851,7.9898,7.709,5.5358,6.8376,0.08788,5.4387,2.2812,2.9397,0.42072,0.42857,5.0084,5.3908,4.3388,4.5521,2.178,1.8709,11.2043,10.1,3.936,3.616,3.8627,4.0202,6.1535,5.2259,2.4117,2.0771,2.0694,2.0081,4.355,4.1863,8.1061,8.2176,2.4397,2.3453,7.4279,7.8621,13.1236,13.5068,8.7852,8.1993,2.5046,2.7017,5.1288,5.2524,2.0737,2.1414,21.7015,20.5668,5.9957,7.2491,4.4372,4.5659,1.156,1.168,2.8466,2.6437,9.1132,7.2201,15.8443,16.525,3.2782,3.9065,4.8411,5.0482,3.7221,2.9794,1.6771,1.652,4.5817,5.2164,13.1268,13.4261,3.4242,3.3693,2.458,2.2643,1.9329,2.3224,10.1234,12.6483,2.7907,3.2494,2.1454,2.5141,14.0228,14.3597,1.6779,1.8922,1.3669,1.4984,14.9338,15.9932,5.3621,5.6207,7.9376,8.7975,4.2807,3.4122,10.9431,11.8244,7.9287,7.4672,8.8052,9.0002,3.9358,4.4532,1.5882,1.5427,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,30
+desd32,58,58,M,1.5612,2.2414,0.3203,0.33873,0.79242,0.82209,16.3958,2.6616,2.4236,37.5752,37.0487,13.1125,14.047,208.9435,202.3092,1.2465,3.1891,3.0054,0.64657,0.57025,11.6909,13.7011,1.4087,1.4105,3.1843,3.0497,5.6575,5.9124,4.1144,4.2763,0.06204,3.7908,1.7907,2.0749,0.33867,0.36657,3.4872,3.6764,3.0941,3.2021,1.5496,1.3152,8.6147,8.6227,2.8962,2.7961,3.3255,3.4535,3.9622,4.2358,1.4545,1.6001,1.5951,1.4353,3.1138,2.6735,6.6938,6.2661,1.7798,1.7464,5.6021,5.2871,10.2643,10.3083,6.8966,6.3769,1.8169,2.1584,3.8303,4.0876,1.402,1.391,15.608,15.4708,4.1007,5.1595,3.2523,3.4232,0.78443,1.063,1.7925,1.9644,6.4487,5.3896,13.7151,13.1477,3.0861,3.7023,3.7103,3.6077,3.2567,2.9716,1.2868,1.403,3.8624,4.1643,10.6191,9.804,2.7692,2.9109,1.816,1.9422,1.974,1.6677,9.6268,9.5542,1.8322,2.2111,1.8284,2.004,11.2915,11.229,1.6691,1.9203,1.0127,1.0816,12.5938,12.8249,3.9938,4.2591,6.6708,7.6242,3.7963,3.6446,9.887,10.4126,6.3043,6.982,6.8311,6.8558,3.2361,3.2693,1.2987,1.4745,,27,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,31
+desd33,65,65,F,1.1076,1.4711,0.31981,0.30065,0.74801,0.73343,15.7677,3.1161,2.7264,41.6767,41.5099,12.1718,12.3273,216.8783,210.1924,1.397,3.1622,2.9145,0.57306,0.47243,18.0767,16.4151,1.327,1.4598,3.1985,3.2132,6.1978,6.5134,3.8723,4.078,0.07562,3.9657,2.0712,2.3908,0.32953,0.34954,3.9012,4.1727,3.344,3.8945,1.6128,1.2537,10.0281,8.7428,3.3108,3.4506,3.8351,3.9018,5.1283,5.2214,1.4345,1.3838,1.7233,1.946,3.5829,3.096,6.6202,6.3769,1.804,1.7798,5.9213,5.4972,10.6744,10.182,7.143,6.8839,2.0886,2.1157,4.3325,4.5037,1.6284,1.7359,14.7771,16.1093,5.1447,5.4697,3.4649,3.3438,0.97444,0.96225,2.2389,2.1671,6.9634,5.8557,13.2245,13.2512,2.9346,2.9748,3.6761,3.7021,2.8152,3.3633,1.3953,1.3155,3.4763,4.0438,11.9276,11.4852,2.6563,2.9202,2.0682,2.1748,2.0884,2.3381,9.091,11.3341,2.0783,2.2928,1.7206,2.1411,11.2387,10.7297,1.9052,2.1538,1.1433,1.1368,12.5704,11.7939,4.5608,4.1708,7.0375,7.9466,4.6134,3.6107,10.754,11.1606,7.2331,6.3516,6.8173,6.5138,3.0893,3.558,1.3372,1.5315,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,32
+desd34,,,M,2.1427,3.3379,0.38212,0.40797,0.81126,0.79891,21.9754,3.0452,2.6392,44.9029,45.4351,20.511,19.3243,233.252,226.2861,1.9387,3.2171,3.0569,1.3282,1.5703,20.8601,26.3035,1.7416,1.6813,3.958,3.9746,7.4658,7.4687,5.179,5.4181,0.07793,4.9582,2.305,2.8265,0.3595,0.40375,4.588,4.8887,4.1953,3.8636,1.7778,1.4939,10.7409,10.418,3.8376,3.877,4.3249,4.1444,5.7418,5.4337,1.5935,1.4381,2.1033,2.019,3.801,3.7443,7.6692,8.0058,2.2793,2.2381,7.4822,6.837,13.2069,11.7461,9.0216,8.3526,2.4906,2.5257,5.2304,5.2762,2.044,2.0756,19.8668,19.8398,5.4008,6.8622,3.97,3.919,1.0672,1.4507,2.4162,3.2996,9.1937,8.1268,14.1925,14.7594,5.4531,3.9248,4.5392,4.7609,4.1552,3.0816,1.668,1.5209,4.2033,4.3027,11.0616,11.0284,2.9048,2.9583,2.5404,2.3272,2.3058,2.5132,11.4189,12.296,2.497,2.7005,2.1508,2.4102,13.5346,12.6387,1.841,2.0407,1.3669,1.4796,15.6293,15.5659,6.077,6.2148,8.9082,9.081,4.9552,4.0462,10.9819,12.0709,7.6178,7.1688,7.622,7.0299,4.2839,3.8312,1.5229,1.4679,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,33
+desd35,71,71,F,1.8953,2.4115,0.31394,0.32609,0.75633,0.69628,18.1667,2.8236,2.7342,49.1293,46.9867,13.8184,14.0371,222.8878,212.4724,1.9086,3.0437,2.6516,1.0913,1.2296,20.0417,30.4767,1.5756,1.5023,3.1413,3.4333,6.4173,6.3334,4.5162,4.7205,0.08896,5.0099,2.6122,2.6363,0.33161,0.31962,3.672,4.4141,3.5394,3.723,1.5403,1.4003,8.9475,8.3197,3.2748,2.8124,3.3572,4.0757,4.4276,3.8832,1.5648,1.3538,1.6922,1.881,3.3082,3.0791,6.3436,6.5343,1.8661,1.8986,5.6631,5.1164,10.071,10.3227,7.4809,6.8663,2.0251,2.1378,4.061,4.4564,1.6125,1.7132,18.0319,17.3049,4.4035,4.6679,3.3978,3.7108,0.90939,0.93192,2.3346,2.0722,7.3471,6.1601,13.5824,12.9678,2.8068,2.8064,3.8961,3.6434,3.1839,3.1727,1.2908,1.4375,3.6384,4.1078,9.3456,9.9817,2.6024,2.6193,2.0348,2.0618,1.8017,1.9104,9.4373,10.7874,1.9431,2.5075,1.8819,1.9808,11.9271,10.3115,1.5209,1.598,1.1644,1.1358,11.8694,12.6877,4.9902,4.9642,6.7607,7.6473,3.7534,2.6919,10.1591,10.0025,6.8385,6.4859,7.5813,6.4223,3.1238,3.4508,1.3216,1.326,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,34
+desd36,81,81,M,1.9291,1.9031,0.40488,0.46279,0.82479,0.82436,18.9345,2.7537,2.6901,49.2956,49.2067,16.5091,16.9913,252.377,252.4717,1.4986,3.5434,3.2985,1.1107,0.98997,17.0473,23.0199,1.7408,1.7008,4.6811,4.806,7.8667,8.0449,4.8424,5.0769,0.09339,5.3622,2.4159,2.6687,0.44246,0.4175,3.9769,4.8437,4.6764,4.6396,1.954,1.5591,11.0332,9.1351,3.5126,3.3525,4.2161,4.7696,4.486,3.8834,1.7124,1.5749,1.8305,2.0095,4.1722,3.5142,7.4427,7.6012,2.2667,2.3404,7.1162,6.4688,12.3185,11.3035,8.6267,7.9495,2.5382,2.5075,4.1448,4.3875,1.8856,1.8544,20.0056,19.8121,5.3678,5.5294,4.2036,4.3773,1.1114,1.22,3.0786,3.0391,7.8807,6.8762,15.1353,14.0277,3.2996,3.47,4.4323,4.7097,3.307,3.2469,1.6389,1.5516,4.404,4.6581,11.1725,11.3723,3.0672,3.0676,2.6198,2.5927,2.4994,2.6107,11.0345,13.0527,2.6906,2.5278,2.4737,2.3669,13.2394,13.7982,1.9433,2.1403,1.2841,1.3407,17.322,15.7859,5.4238,5.3283,8.4129,9.3872,3.8853,3.3642,11.7123,10.4191,8.2179,8.7394,8.5756,8.0227,3.8567,3.9321,1.737,1.6296,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,35
+desd37,,,F,1.2254,1.7778,0.31856,0.36125,0.68245,0.6525,16.589,2.5881,2.626,44.5808,44.7038,15.0964,15.8019,211.4838,209.0373,1.0877,2.6675,2.6663,0.59843,0.7613,8.2404,14.2795,1.4423,1.4316,3.2751,3.1456,5.8336,6.0853,4.2808,4.4716,0.07451,3.9762,2.0073,2.4582,0.308,0.31632,3.1277,3.4415,3.7564,3.6699,1.6024,1.3699,8.0897,7.4654,2.8613,2.9829,3.4696,3.2669,4.6168,4.3864,1.2676,1.3351,1.8686,1.7712,3.6539,2.9464,5.9454,6.2742,1.7114,1.6888,5.9191,5.5437,8.9138,9.2321,7.7439,7.5599,2.0035,2.0886,3.881,4.0852,1.4035,1.4864,14.9787,16.1093,4.7423,4.5592,3.3847,3.4254,1.0638,0.9521,2.5231,2.5647,5.201,4.8291,10.2149,10.6368,2.8358,3.0388,4.0858,4.2052,3.3883,3.1904,1.3766,1.2018,3.2841,3.8911,8.8201,9.6145,2.4601,2.7861,1.9765,1.8408,1.8613,2.2883,10.1397,11.035,1.8947,2.2483,1.7402,1.9149,11.9216,11.27,1.5249,1.7874,0.97823,0.99393,14.878,14.7956,4.719,4.8594,6.5027,7.5654,3.6124,3.2554,8.6072,10.3875,4.9838,5.3564,6.1222,6.2477,3.4306,3.4934,1.3253,1.5367,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,36
+desd38,78,78,F,2.2232,1.9983,0.31394,0.35678,0.62861,0.78021,16.4367,2.4036,2.1212,41.9809,41.053,13.9568,13.9998,216.9418,210.9608,1.7409,2.7308,2.9383,0.61913,0.66511,18.2873,17.2753,1.5531,1.5185,3.1335,3.3637,6.4004,6.824,4.4214,4.6407,0.07783,3.8513,2.0515,2.481,0.37094,0.35084,4.0076,4.2551,3.8641,4.144,1.6328,1.5206,10.0845,8.4609,2.8436,3.1124,3.8478,4.0207,3.862,4.3633,1.2126,1.5264,1.8262,1.8514,3.1832,3.0312,6.6504,6.5727,1.7872,1.8822,5.9901,5.9854,11.0044,10.082,7.8314,6.9625,2.0666,2.3593,4.121,4.4131,1.5127,1.659,15.482,15.5038,4.7777,5.8084,3.4751,3.6837,1.0469,1.243,2.4596,2.6061,6.8614,6.1415,13.5985,12.1722,2.6698,3.1119,3.9739,3.9485,3.1583,3.4872,1.3911,1.4831,4.0349,4.3803,10.2395,10.1024,2.6131,2.9742,2.3289,2.17,2.2011,2.265,9.2584,10.6118,2.0896,2.7168,1.89,2.2119,11.2482,12.1035,1.8222,1.9011,0.98644,1.0054,11.8694,11.8028,5.0658,5.1386,7.822,8.3096,3.2599,3.1124,10.7106,10.9917,6.0187,6.435,7.0624,6.7899,3.2658,3.7364,1.3929,1.5738,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,37
+desd39,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,38
+desd40,56,56,F,0.98668,1.9683,0.34906,0.39511,0.8218,0.83691,17.0213,2.8389,2.7995,46.8232,46.8022,14.5272,15.2514,185.7545,189.237,1.0689,3.2615,3.1136,0.36495,0.46058,8.3182,9.812,1.5261,1.4418,3.1933,3.4984,6.7747,7.0248,4.5049,4.7758,0.0698,4.6817,2.1004,2.6944,0.33588,0.3502,3.4694,3.9495,3.4775,3.5396,1.8882,1.5746,9.9959,9.1829,3.4156,3.4771,3.5289,3.5026,4.502,3.8821,1.5899,1.5824,1.6794,1.8246,3.5537,3.2787,7.3385,8.0186,1.8969,1.9491,6.6846,6.4182,11.2911,11.5883,8.7503,7.4859,2.4026,2.4884,4.6803,4.527,1.5629,1.5869,16.5157,18.612,5.1874,6.4758,4.1537,3.8233,0.97807,1.0092,2.2481,2.2928,7.1327,6.2017,14.7833,14.0277,3.5262,3.0137,5.281,4.8644,2.878,3.0989,1.6136,1.5784,3.4491,3.9726,9.6719,9.6351,2.8052,3.1118,1.857,1.865,1.8115,1.9729,9.877,10.8637,2.3928,2.5996,1.712,1.8273,11.2152,11.5103,1.6444,1.6304,1.0058,1.0628,13.5098,13.4185,4.761,4.9149,7.4591,7.0687,4.9115,3.1916,9.2977,9.0157,7.5386,7.6438,7.1298,7.3685,3.6974,3.9042,1.164,1.3308,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,39
+desd41,84,84,M,1.7884,2.3061,0.39004,0.46097,0.88168,0.84559,16.5496,2.7826,2.5286,38.9026,40.8598,12.9291,13.067,182.6154,180.3862,2.1647,3.3649,2.7078,1.0926,1.0629,25.4195,33.4058,1.4427,1.4046,3.3123,2.9568,6.5123,6.7011,4.2692,4.4197,0.05934,4.9095,2.0486,1.9847,0.396,0.40055,4.0148,4.6224,4.1186,4.1862,1.7983,1.5216,10.4294,9.2691,3.7436,3.6542,3.9927,3.786,4.9466,5.2862,1.575,1.4579,1.9472,2.0205,3.7308,3.2994,6.7279,6.303,2.0692,2.1454,6.6274,6.2899,11.1523,10.2843,8.7636,8.4943,2.179,2.3851,4.3037,4.0383,1.7906,1.931,17.3819,18.181,5.0702,5.9184,3.7697,4.132,1.3629,1.0727,2.75,2.7557,7.4036,6.7709,13.4496,13.6802,2.5101,3.3709,4.5213,4.4946,3.43,3.7596,1.6273,1.6584,4.2966,4.728,11.3053,10.7039,2.843,3.1608,2.4381,2.3405,2.2924,2.309,9.3621,11.5268,2.3126,2.3079,2.0953,2.1688,12.5355,13.31,1.9556,2.0648,1.1912,1.2275,15.3559,16.4787,5.0316,4.7531,7.6318,8.6945,4.3767,3.7842,9.798,9.8233,7.5457,7.4695,7.5284,7.0749,3.3044,3.9927,1.5177,1.7277,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,40
+desd42,69,69,M,1.9111,3.3485,0.38885,0.39586,1.0465,0.99923,20.4108,2.9664,2.8676,48.9778,47.6807,18.8412,19.534,295.4615,276.5258,1.4619,4.14,3.7377,0.9213,1.1687,14.7058,20.9043,2.4612,2.1712,3.5761,3.4843,8.509,9.5428,5.5358,6.8376,0.09881,5.3437,2.4043,2.7544,0.39874,0.42219,4.7092,5.5783,4.0195,4.8254,2.4906,2.235,9.9596,8.6029,4.7937,4.0042,3.9693,4.0084,6.0872,5.4991,1.8941,1.859,2.0541,2.3666,4.4396,4.3061,8.1211,7.6282,2.3828,2.4964,7.664,7.5284,13.5794,13.9209,9.1343,8.3888,2.7532,3.0093,5.1245,4.7707,2.1622,2.3385,20.0268,22.1759,5.3864,6.4884,4.3394,4.472,1.4007,1.198,3.0988,3.0236,9.1099,8.4889,16.5941,18.2389,3.6534,4.0946,4.4433,4.7443,3.6908,3.3928,1.8133,1.7989,4.4471,4.5776,12.6383,12.5753,3.1093,3.3091,2.3243,2.393,2.0996,2.253,9.7635,11.782,2.6564,2.6057,2.0654,2.4174,13.6869,13.8755,2.031,1.8173,1.244,1.3937,16.5313,15.1134,6.2078,6.1272,7.8592,8.0251,4.9166,4.0538,9.975,10.146,7.5512,8.8477,9.0227,8.8122,4.9804,4.1858,1.4403,1.7066,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,41
+desd43,71,71,M,1.746,1.6608,0.4372,0.47758,0.88817,0.90065,18.0157,3.2366,3.1011,28.2987,24.6806,16.2098,16.143,220.49,216.4528,3.0552,3.0267,3.0642,0.70921,0.73893,34.3032,35.2975,1.5997,1.5793,3.514,3.5921,7.2128,7.0505,4.3457,4.5189,0.06699,4.65,2.1931,1.2793,0.41841,0.41668,3.8895,4.4643,4.0304,4.3508,1.8534,1.6453,10.5986,10.0039,3.5084,3.2663,4.0641,3.9282,5.2421,4.9089,1.7835,1.8106,2.1221,1.9378,3.7478,3.5094,8.188,8.2525,2.1596,2.3391,6.9397,6.4314,13.0873,12.624,9.1724,8.509,2.5019,2.5033,4.4081,4.7702,1.7718,1.8758,19.0468,20.032,5.0409,7.2785,4.0427,4.3392,1.2125,1.0727,2.5793,2.3063,7.8255,6.5605,15.1353,14.8918,3.1322,3.2269,4.5392,4.4881,4.0885,3.4065,1.7914,1.6515,3.9418,4.4385,10.3831,10.0407,2.9619,3.205,2.3357,2.5124,2.4625,2.5273,9.6355,11.7092,2.7909,2.8316,2.3008,2.5286,13.467,13.6167,1.9978,2.2938,1.3019,1.3238,16.0842,16.071,5.2705,5.189,7.3116,8.8669,4.1539,3.7472,10.4791,11.6839,7.4455,7.5915,9.2186,9.4371,3.9177,3.8815,1.7025,1.6449,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,42
+desd44,71,71,M,1.7205,2.0757,0.32552,0.37309,0.74253,0.67372,17.0912,3.1161,3.2433,44.7095,44.6837,13.2066,13.6731,200.7114,195.7271,1.6565,3.0156,2.5632,0.90852,0.82843,21.0366,26.4455,1.4414,1.4602,3.6883,3.8632,6.137,6.4687,4.5571,4.7205,0.08126,4.3222,1.9992,2.6862,0.33936,0.34498,3.209,3.6379,3.424,3.4235,1.5506,1.5785,10.6284,8.8907,3.0125,2.6903,3.3075,3.7772,5.3005,4.3308,1.4345,1.3199,1.6913,1.7952,3.0947,2.7854,6.7407,6.1736,1.8475,1.9121,6.4583,5.7288,11.0579,9.5933,7.7756,7.0399,2.1833,2.1914,4.7066,4.6193,1.4626,1.4152,16.5137,17.4723,5.5448,5.6222,3.4649,3.6837,1.0391,1.3535,2.1381,2.5823,6.2184,5.5572,13.3822,12.5696,2.8595,2.9022,4.0595,3.9476,3.4479,3.2124,1.4436,1.3552,3.4641,3.6512,8.9099,9.6203,2.5377,2.8487,1.9343,1.8505,1.9497,2.0428,11.3563,12.7921,2.2408,2.1983,1.8192,2.1099,10.9516,10.6517,1.5615,1.6792,0.97115,0.99286,13.741,14.141,4.509,4.7331,8.2741,7.965,4.6134,3.3708,9.275,9.7034,6.3846,6.8159,6.1222,6.1146,3.3747,3.5497,1.2277,1.4578,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,43
+desd45,74,74,F,1.2942,1.6704,0.46511,0.53202,0.95187,0.8882,21.2508,3.9117,3.5903,56.5683,56.8183,18.8763,19.2974,254.6872,252.6338,1.3381,3.5553,3.3209,0.60679,0.55859,18.6368,16.4151,1.7185,1.7644,4.8227,5.3069,6.9894,8.0247,4.949,5.3393,0.07497,5.1312,2.5184,3.0924,0.39528,0.40558,4.7026,4.9878,4.7368,4.9237,2.076,1.6751,10.7095,10.1702,3.3212,3.4855,4.6459,4.783,4.7502,4.7242,2.0136,1.7252,2.3046,2.3372,3.757,3.7043,8.4729,7.9531,2.2082,2.3336,6.9133,6.3392,13.2295,12.594,8.4853,7.7564,2.6347,2.7764,5.3472,5.7041,2.1361,2.0045,20.8946,19.892,5.5995,6.7807,4.3857,4.2674,1.1114,1.4277,2.9491,2.8764,9.4497,7.9687,14.5562,13.859,3.483,3.3266,4.2342,4.2177,3.5676,3.0816,1.8682,1.652,4.044,4.5595,11.9621,12.1496,3.4242,3.5296,2.4649,2.4979,3.0347,3.007,10.778,12.5857,2.502,2.8535,2.2951,2.7252,13.1865,14.8469,2.2913,2.9278,1.3871,1.3112,15.7713,15.6951,6.0073,6.0767,8.5693,10.0058,4.9162,3.819,10.9431,10.7712,8.2518,7.8519,8.7657,8.6,3.9849,4.4426,1.7496,2.1337,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,44
+desd46,85,85,M,2.4324,1.977,0.39004,0.4186,0.91559,0.86442,20.5604,3.2034,2.7164,46.4131,46.7941,15.0686,16.4669,217.3875,210.2855,2.486,3.5816,3.2341,0.68332,0.68632,32.6771,28.5032,1.5691,1.6101,3.564,3.7459,6.4035,6.5046,4.79,5.1122,0.08694,4.7388,2.0089,2.542,0.3743,0.39472,4.4987,4.9454,4.2998,4.4056,1.7432,1.5632,10.1476,8.8426,3.1536,2.7674,4.0376,3.9395,4.2951,3.5316,1.8121,1.7241,2.0558,2.0427,3.9484,3.4063,7.3327,7.2071,2.2004,2.2513,6.5007,6.1879,10.6601,10.6636,8.111,7.1042,2.2448,2.3452,4.8872,5.2531,2.0095,1.984,19.1862,19.8549,4.8127,5.8415,3.9285,4.2374,1.2879,1.2911,2.9837,3.182,8.4573,7.1,13.7507,13.5472,2.3636,2.9945,4.3228,3.9757,3.0386,3.0088,1.4654,1.3203,4.0301,4.9304,10.9832,11.3415,3.2494,3.3085,2.3183,2.5669,2.1324,2.1484,9.0305,9.8837,2.2898,2.4903,2.0049,2.1435,11.7388,11.9634,1.7802,1.7062,1.3146,1.4137,14.4163,15.2734,5.3775,5.5847,7.8423,8.1279,3.7321,3.2115,12.3532,11.2281,7.0697,6.8017,8.1233,7.7609,3.5269,3.5607,1.4467,1.3695,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,45
+desd47,,,F,1.7082,1.9622,0.32688,0.38686,0.755,0.79298,15.8051,2.7168,2.824,45.7527,44.3359,12.9229,12.6969,181.3894,179.8191,1.6859,3.0205,2.6776,0.78206,0.62222,14.9264,19.029,1.4408,1.5129,3.5597,3.5856,5.9114,6.3765,4.11,4.3744,0.07564,4.8325,2.3064,2.9126,0.34125,0.34147,3.4662,3.9461,3.5503,4.1295,1.5789,1.4543,9.6351,8.2258,2.8194,2.9022,3.8625,4.1743,4.2695,4.0278,1.4613,1.4568,1.7829,1.7176,3.2281,3.23,7.1605,6.8644,1.537,1.6821,6.0933,6.1703,11.1322,10.043,7.1372,6.5239,2.1092,2.4893,4.2754,4.3288,1.4245,1.5082,15.6477,17.6316,4.1451,5.5864,3.0127,3.6691,0.9992,1.0691,2.2594,2.3106,6.6768,6.1665,14.3049,13.1579,2.767,3.16,4.0705,3.9398,3.2753,3.2185,1.3766,1.5583,3.5002,3.7223,8.8048,9.8588,2.7282,2.9627,2.199,2.0918,2.0855,1.9119,8.3638,10.6662,2.2296,2.5164,1.9201,2.1408,10.6278,11.3625,1.7494,1.4896,0.98281,1.0193,13.6789,14.1173,4.761,4.5418,7.0275,7.5649,3.7716,3.5915,9.3587,8.7603,7.2625,6.3516,6.5402,6.4156,3.2585,3.6681,1.4013,1.3844,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,46
+desd48,82,82,F,1.9884,2.0425,0.27846,0.31392,0.60264,0.57692,15.1807,2.4715,2.1736,41.9003,39.5261,12.3419,13.4894,150.0735,152.4398,1.5338,2.5906,2.4249,1.3804,1.6288,19.2048,20.4219,1.2711,1.2571,3.0092,3.0644,5.5578,5.7188,4.2723,4.502,0.07988,4.2129,1.992,2.6376,0.31777,0.31338,3.324,3.8019,3.082,2.9999,1.2661,1.244,8.7539,7.3711,2.5231,2.5086,3.3255,3.2248,3.7048,3.7213,1.0905,1.1673,1.3705,1.5598,3.0341,2.5302,6.3474,6.0265,1.4389,1.5971,5.6178,4.8529,8.7273,9.0178,6.3145,6.4052,1.5963,1.8303,4.0824,4.2672,1.3728,1.4145,15.5645,14.4036,4.6429,4.7696,2.7665,3.1058,0.97386,0.94805,2.0321,1.689,6.0777,5.3863,9.9196,10.794,2.1221,2.4894,3.6682,3.6074,2.6661,2.473,1.0437,1.019,3.4569,3.7111,3.1452,8.9246,2.4627,2.7255,1.8795,1.7402,1.7696,1.6677,8.5085,9.8752,1.932,1.9466,1.6058,1.8206,9.7805,10.8802,1.5209,1.4705,0.95731,0.99393,11.7282,11.5294,3.9761,3.7126,6.092,6.9517,3.3981,2.8757,8.1262,0.43408,5.9552,5.349,5.4621,5.5822,2.8801,2.9167,1.2267,1.3825,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,47
+desd49,63,63,M,1.7427,1.8381,0.39299,0.43782,0.9583,0.94616,21.1231,3.2466,2.9293,50.1687,50.4537,17.5141,18.1067,254.6872,251.408,1.4859,3.5677,3.2935,0.82291,0.57999,11.9006,15.3112,1.5787,1.6101,3.909,3.6271,7.2696,7.645,5.1201,5.26,0.08199,5.3452,2.4622,2.8277,0.40429,0.41953,4.8909,5.7021,4.6922,4.8058,2.1984,1.8397,11.4851,10.561,3.0736,2.7352,4.8629,4.4899,4.5585,3.5239,1.8605,1.6975,2.4661,2.3582,4.8016,4.036,8.3668,8.1502,2.2082,2.3867,6.8045,7.0548,13.1325,13.5068,8.111,7.7168,2.7532,2.7562,5.3636,5.247,2.1684,2.1509,20.8231,20.6388,6.0089,6.5377,4.6542,4.7688,1.0366,1.1405,2.7904,2.8748,10.1498,8.6758,16.2557,15.8882,3.2767,3.8068,4.2342,4.5411,3.5676,3.6265,2.0147,1.798,4.3861,5.0508,10.6949,11.8842,3.182,3.4822,2.771,2.5935,2.3301,2.4889,10.4138,11.0923,2.502,2.8525,2.6326,2.7526,12.3388,13.1306,2.0029,2.0854,1.5078,1.5581,16.3539,14.6418,5.5948,5.6492,8.9082,9.5109,4.3263,3.4209,11.2573,10.7372,7.1236,8.7619,8.9099,8.5194,4.2315,4.2512,1.7,1.7581,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,48
+desd50,,,M,1.5598,2.3519,0.35128,0.42314,0.88578,0.89401,17.6387,2.7861,2.5116,46.4549,46.7941,14.6161,15.0908,241.8441,247.9511,1.0014,3.5946,3.3827,0.41122,0.41122,8.988,9.3251,1.727,1.7506,3.2129,3.3731,6.2151,6.5938,4.6086,4.8599,0.08438,4.7538,1.9311,2.7387,0.35228,0.35235,4.2948,4.4607,4.4397,4.4768,1.6462,1.4914,11.4893,9.8041,2.2925,1.9707,4.2689,4.6187,3.5655,3.0535,1.7069,1.6574,2.0246,2.2167,3.3687,3.4402,7.5378,7.1853,2.0165,1.9565,6.2743,7.2898,11.4399,11.2543,7.6647,6.9652,2.1137,2.2542,4.7958,4.7272,1.7018,1.702,18.8515,19.0436,5.861,6.9686,3.7199,3.9433,1.2881,1.2392,2.9837,3.0342,7.3528,6.6438,14.5541,13.9554,2.6292,2.9412,4.4146,4.3679,3.407,3.337,1.4257,1.4832,4.0904,4.7499,10.554,11.103,2.9582,3.3696,2.3548,2.4438,2.5237,2.8133,11.0103,11.6419,2.2357,2.4873,2.0151,2.3764,11.8206,11.2645,2.0168,2.5498,1.1353,1.1631,14.0128,15.2734,5.3286,5.4055,7.2368,9.2354,3.4049,3.2476,10.5594,11.1672,7.3333,7.2026,8.145,7.7768,3.459,3.5388,1.4823,1.6804,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,49
+desd51,83,83,F,0.96939,1.4216,0.38358,0.40137,0.90904,0.85866,15.4609,2.9099,2.7712,33.5806,27.5385,12.6382,13.067,206.115,201.4517,1.0792,3.3797,3.0111,0.42345,0.40076,8.1124,9.812,1.4927,1.4039,3.8497,3.972,6.3384,6.5896,4.0859,4.3505,0.09045,3.9719,1.7441,2.2508,0.35063,0.38798,3.4719,4.161,4.2152,4.2191,1.6824,1.4061,10.4568,9.6452,2.79,2.7036,3.3154,3.4296,4.7709,4.3938,1.6893,1.6332,1.9493,1.9652,3.4137,2.9165,7.1333,7.2979,1.9463,1.8953,6.9891,7.438,10.83,11.1452,7.714,6.8163,2.0692,2.2288,4.0035,4.0007,1.5375,1.5716,16.859,16.3033,5.4805,5.8408,3.8878,3.9433,0.97369,0.8659,2.486,2.185,7.1218,6.2515,14.1306,14.3444,3.9516,4.0329,4.0606,3.9337,3.5858,3.1969,1.5482,1.4462,3.8716,4.224,9.5597,9.1172,2.8236,3.2482,2.3395,2.3436,1.9166,2.1707,9.1566,10.212,2.2056,2.341,2.2428,2.1555,10.6811,10.7284,1.8902,1.7153,1.1517,1.1825,12.6986,12.3802,4.6107,4.6411,7.6472,7.3882,5.1011,4.1522,10.1637,9.0615,7.3433,7.1633,7.5484,7.4169,3.2215,3.6669,1.5637,1.3077,,24,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,50
+desd52,82,82,F,1.8968,2.0425,0.27846,0.28521,0.63979,0.68516,15.0058,2.3106,2.1212,44.2379,44.0165,13.9568,13.5418,149.5422,160.0347,1.8418,2.6058,2.6793,0.90182,0.79331,19.7081,24.3171,1.2833,1.2125,2.8007,2.8304,5.6653,5.5759,4.2723,4.484,0.08069,4.4944,2.0083,2.1259,0.28156,0.28338,3.6258,3.6044,2.9892,3.1761,1.2616,1.1709,7.9338,7.1684,2.4866,2.377,3.5441,3.6249,3.9211,3.8911,1.2676,1.3436,1.668,1.707,3.1813,2.6735,5.9454,5.6597,1.4389,1.7242,5.2199,4.9948,8.9138,7.589,6.7517,5.6572,1.7255,1.9304,4.7066,4.6193,1.2819,1.3178,14.5155,14.4447,4.5832,4.7936,2.88,3.1944,0.9126,1.1048,2.1893,2.3047,6.0549,5.7272,11.6879,8.7619,2.3409,2.5463,3.5804,3.6517,2.9641,3.1208,1.0991,1.0839,3.5651,3.7834,8.9276,9.1429,2.355,2.6495,1.3262,1.4917,1.6959,1.69,8.5085,10.4308,1.8322,1.9358,1.6185,1.8628,10.9701,10.0129,1.6089,1.5334,0.93137,0.96288,12.0018,11.7258,4.5284,4.8594,6.6645,6.8818,3.3981,2.8583,8.5685,9.2085,6.5997,5.1293,6.7848,6.0514,3.1211,3.2392,1.2863,1.066,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,51
+desd53,78,78,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,52
+desd54,,,M,1.1606,1.9214,0.42253,0.46211,0.96308,0.94919,18.9611,3.2036,3.1873,43.1093,43.1576,15.1165,15.6313,271.7577,267.9129,0.9901,3.5761,3.4198,0.43205,0.37814,11.3638,12.3222,1.7632,1.7879,4.1009,4.1105,7.7554,7.9295,5.0559,5.2591,0.0895,4.9582,2.0488,2.5288,0.40908,0.40558,4.1386,5.0318,4.0304,4.1629,2.1453,1.8239,11.0332,10.0039,3.5942,3.0259,4.199,3.8371,5.0809,5.1469,1.827,1.7909,2.1879,2.0911,4.4843,3.9472,7.5062,6.9908,2.4357,2.1961,6.8691,6.5972,11.3129,11.0739,8.0599,7.1813,2.7614,2.7728,4.8757,5.0952,2.1883,1.9821,21.3627,22.2087,5.7289,6.5377,4.6542,4.6622,1.3779,1.2654,3.1132,2.8081,9.1646,8.3647,14.3478,13.9693,3.2368,3.7622,4.2318,4.5593,3.3535,3.4049,1.9195,1.7339,4.1235,4.5595,10.8753,11.2292,3.0333,3.3844,2.249,2.2492,2.4892,2.7283,10.2429,11.2918,2.5524,2.9659,1.943,2.1835,12.038,11.9001,2.0739,2.0881,1.3131,1.3258,16.3566,15.864,5.893,5.4185,8.5253,9.6666,4.3785,4.138,10.3507,11.7076,8.3095,7.9989,8.4394,7.7869,4.2226,4.504,1.4801,1.7277,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,53
+desd55,80,80,M,1.6273,2.0759,0.38417,0.40137,0.81699,0.78837,18.3098,3.1379,3.0353,50.477,49.6266,15.2028,15.8275,208.0846,208.07,1.2083,3.3786,3.0368,0.80831,0.80324,10.5676,12.0729,1.4764,1.4664,3.4841,3.7227,6.7747,6.9395,4.4367,4.6769,0.07898,4.4525,2.2797,2.5815,0.36112,0.39096,3.9888,4.7133,4.0432,4.2877,1.739,1.6524,9.6822,8.5698,2.8901,2.8104,3.8671,4.156,4.9481,4.5858,1.7555,1.5455,2.1221,2.1565,3.9771,3.5142,7.8411,6.904,2.1739,2.041,6.581,6.2477,13.058,11.9185,7.5424,6.9489,2.2271,2.3057,4.4383,4.9116,1.8424,1.8658,19.8668,20.1029,4.7311,6.6039,3.854,3.8318,1.0923,1.1569,2.7155,2.8132,8.0209,7.1143,15.3965,15.7801,2.8358,3.2287,4.5205,4.1709,3.8942,3.3267,1.5676,1.318,4.1515,4.6815,10.8726,11.0971,3.1078,2.9733,2.3548,2.5088,2.4104,2.6854,9.4866,11.0461,2.3375,2.474,2.3008,2.3384,12.6872,12.5431,2.0007,2.4035,1.1388,1.1817,14.3833,14.0776,5.1148,5.0385,7.4589,8.907,3.9383,3.38,9.8516,10.1788,7.7471,7.273,8.7657,7.8021,3.3345,3.6533,1.6092,1.6204,,30,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,54
+desd56,83,83,F,2.5515,1.6601,0.27846,0.30282,0.69473,0.63575,13.995,2.5523,2.3544,39.2901,35.7295,10.0841,2.9582,149.5422,150.5561,2.6575,3.1177,2.8579,1.0499,1.0629,29.6633,28.4876,1.2923,1.2571,3.0887,3.1734,5.1972,5.499,3.7544,3.9391,0.06724,3.7344,1.9054,2.3524,0.27877,0.28347,3.2605,3.6751,3.3928,3.7476,1.3535,1.1683,8.1734,7.7738,2.3843,2.1666,3.2202,3.1855,3.2195,3.4434,1.3537,1.3032,1.5522,1.7025,2.522,2.8706,6.0937,6.1212,1.6336,1.48,5.0955,5.3201,9.2611,9.6013,6.4929,5.7349,1.9543,1.9076,3.774,3.452,1.31,1.3169,15.608,14.3944,3.9986,4.7415,2.876,3.0824,1.2187,1.2013,2.6953,2.627,6.2177,5.5724,11.1185,11.2481,2.0316,2.9579,3.0665,3.3195,2.482,2.8991,1.3296,1.1681,3.1522,3.3313,8.7343,8.625,2.4347,2.7157,2.01,2.1325,1.726,1.6428,9.0129,9.5542,1.9955,1.9458,1.8059,1.9808,10.8766,10.3,1.6089,1.5971,0.95731,0.79424,11.7757,11.1137,4.4485,4.5881,6.2754,6.8321,3.0945,2.863,8.6072,10.3875,6.5997,6.4235,6.9277,6.0514,3.018,2.9441,1.2047,1.1738,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,55
+desd57,69,69,M,2.1889,2.6169,0.37359,0.42992,1.0214,0.99715,20.8786,2.9664,2.8569,51.3652,49.4891,15.737,16.4425,271.7577,262.7257,1.7914,3.8137,3.6642,0.54138,0.52111,17.2587,21.454,1.8646,1.8178,3.9512,3.9769,8.2686,9.0064,5.3058,5.5975,0.09881,4.9834,2.3553,2.9013,0.47669,0.57889,4.7836,4.9365,4.6159,4.9035,2.178,1.748,10.1484,9.1168,3.936,3.6257,4.6883,4.7655,6.0872,4.8128,1.9067,1.6975,2.4661,2.6485,4.4843,4.2113,7.3468,7.1772,2.3453,2.238,7.6337,7.5284,11.0658,10.751,9.1142,8.5248,2.6877,2.7207,5.1739,5.2935,1.9893,1.9903,20.5258,22.5254,5.4263,6.3374,4.4122,4.3599,1.2274,1.2664,2.9697,2.9983,8.2947,7.4477,14.3478,13.8644,3.2514,4.3706,4.5218,4.8159,4.4008,4.3849,1.772,1.6954,4.2239,4.6003,11.3331,11.2292,3.2764,3.2771,2.6198,2.9735,2.5521,2.6311,12.0025,11.405,2.5921,2.8525,2.3733,2.5953,14.2141,15.5268,2.2965,2.4575,1.2988,1.2201,15.1482,15.8389,6.0927,6.1272,8.9801,9.318,4.3133,3.7664,9.6149,10.4922,7.7947,7.8687,8.5756,7.923,4.1574,4.479,1.7121,1.9204,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,56
+desd58,,,M,1.7099,1.9622,0.29313,0.34214,0.83649,0.88831,20.2468,2.3874,2.3042,52.1853,51.6143,17.0926,17.5254,255.5904,252.0335,1.4746,3.3734,3.0843,0.91186,0.72341,13.6285,14.1622,1.7571,1.8143,3.4877,3.3121,7.4154,8.1874,5.2607,5.6066,0.08927,5.4004,2.4099,2.5815,0.39667,0.41743,3.8401,4.8056,3.7167,3.9264,1.7178,1.5999,10.1495,8.6252,3.8966,3.5443,3.987,3.6973,6.5936,4.8355,1.7149,1.6967,2.1616,2.0271,3.6944,3.4006,7.569,7.0443,2.3691,2.094,6.4671,5.1279,11.7446,10.9849,8.878,8.055,2.2511,2.3532,4.6196,4.6176,1.9077,1.9,18.9174,19.8121,4.6587,5.7279,4.1959,4.0524,1.1856,1.3173,3.0377,2.9983,8.9869,7.6159,14.4703,13.3737,2.7196,2.9293,4.4433,4.2973,3.6908,3.2288,1.5199,1.4924,4.1452,4.1885,10.1034,9.739,3.0672,3.2999,2.2065,2.1925,2.1558,2.0094,10.0317,11.4424,2.1934,2.4944,2.1073,2.4102,13.4558,13.9885,2.2771,1.7712,1.2561,1.2789,16.53,15.1221,6.4748,6.0104,7.6425,8.3562,4.0568,3.7508,9.7343,9.905,8.1109,7.9222,8.5351,8.5374,3.5721,3.6503,1.6067,1.4731,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,57
+desd59,61,61,F,1.9503,2.1091,0.37235,0.35447,0.84848,0.86195,16.9978,2.7477,2.7087,43.5612,43.6108,12.2102,12.6795,194.8429,187.6717,1.8042,3.3497,3.2487,0.96117,0.96109,21.5353,27.1511,1.3243,1.4598,3.1969,3.402,6.1684,6.5134,4.2532,4.4331,0.07934,4.1865,1.9369,2.4289,0.36628,0.37418,3.3719,4.3072,3.8813,4.1591,1.767,1.5388,8.4829,8.015,2.4067,2.0088,3.6471,3.6034,3.6838,3.0535,1.6252,1.7728,1.8537,1.8386,3.8561,3.7713,6.4639,6.6506,2.1634,2.1019,5.8472,5.9482,9.0886,10.043,5.7616,3.9167,2.2751,2.1863,4.2754,3.9488,1.7892,1.5853,18.7861,19.0436,4.873,5.555,3.8495,3.8666,0.82415,1.0847,2.2521,2.645,7.4682,6.5312,10.2149,11.453,2.0264,2.97,3.576,3.5683,3.3793,3.4832,1.5676,1.4934,3.5992,3.8622,8.7866,9.5578,2.6696,2.8781,2.5824,2.4643,1.9867,2.0437,9.0085,10.4789,2.4155,2.5069,2.3544,2.4631,12.1021,12.1998,1.8846,1.8025,1.218,1.2342,14.878,14.2914,5.2369,5.0469,7.4343,7.6587,4.2459,3.3969,8.3438,9.2653,5.2529,5.4892,7.3189,7.4087,3.5037,3.5923,1.5927,1.5925,,4,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,58
+desd60,77,77,M,1.6946,2.0278,0.38561,0.38864,0.90904,0.87665,18.92,3.0664,2.4915,52.136,51.6143,16.5424,17.0418,254.1394,252.0335,1.5379,3.6065,3.4104,0.60679,0.54806,16.3904,16.4151,1.7198,1.6813,3.7169,3.7317,6.82,7.627,4.9062,5.3393,0.08788,5.3587,2.4024,2.6814,0.46289,0.47435,4.8787,5.3908,4.7992,5.24,2.1984,1.7786,11.7556,9.3483,2.9748,2.9137,4.479,5.2749,4.9481,4.5894,1.7571,1.7317,1.9633,2.1078,4.7109,4.3061,8.4549,7.7927,2.5943,2.687,7.3182,7.2798,13.5794,13.7005,8.4769,7.868,2.8493,2.5297,5.2506,5.7541,2.2046,2.1793,21.3627,21.5817,5.8715,6.4988,4.8671,4.8288,1.2995,1.2063,2.8466,2.8748,8.9508,8.6758,17.4594,18.2389,3.8712,4.2514,4.3364,4.6409,3.5605,3.2166,1.7694,1.6983,4.3933,4.9885,11.5462,10.8883,3.0398,3.4414,3.0945,3.1971,2.3698,2.2081,9.6495,11.3454,2.6084,3.1392,2.6326,2.8263,13.884,13.2247,2.0364,2.0775,1.3892,1.4347,15.8807,15.4303,5.5008,5.8355,7.9376,8.0251,4.6947,3.88,9.1951,9.9701,7.1278,8.5547,9.7771,9.1,3.6455,3.9967,1.7,1.8601,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,59
+desd61,71,71,F,0.88743,1.4807,0.41178,0.44694,0.73258,0.73871,17.5233,3.1158,3.0777,48.463,48.6368,14.4953,14.5866,222.79,214.3011,1.0371,2.914,2.5467,0.343,0.37683,7.0678,11.6928,1.5279,1.4918,3.4333,3.4716,6.8949,7.1078,4.4484,4.6521,0.07462,4.9481,2.1171,2.7406,0.36758,0.38853,4.5177,4.7298,3.8871,3.9484,2.0195,1.671,10.8441,10.1825,3.1833,3.1103,4.0641,3.7157,4.9485,4.3198,1.4985,1.4774,1.8603,1.8507,4.0432,3.6493,6.8674,7.1118,2.2727,2.4152,6.5135,6.5072,11.0967,10.6118,8.8272,7.7772,2.3645,2.5839,4.8619,4.9906,1.7839,1.8187,18.5568,18.3843,5.8192,6.8622,4.2999,4.5908,1.0391,1.1307,2.6416,2.7659,7.7507,7.0426,14.8189,14.6998,3.327,3.5629,4.5218,4.451,3.53,3.4179,1.5037,1.4835,4.3402,4.728,10.8726,11.0804,2.6368,2.9404,2.1848,2.3589,1.9439,2.4296,10.2712,11.5437,2.3682,2.6664,2.084,2.3094,12.8154,12.9605,1.5209,1.9298,1.3468,1.4764,13.8576,12.9795,5.2991,5.424,8.1528,9.9347,4.2942,3.8033,10.9051,11.7076,7.1474,7.5901,7.7616,6.9862,3.1766,4.1227,1.3417,1.5647,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,60
+desd62,,,M,1.7692,1.6315,0.39299,0.42956,0.9256,0.98383,18.0431,3.1376,2.7306,51.3695,52.0429,14.6129,14.5715,243.9959,240.6768,1.4746,3.8127,3.6418,0.76747,0.72399,21.7979,20.9017,1.6519,1.6259,4.1544,4.3726,7.7925,8.0618,4.9036,5.1795,0.08054,5.3454,2.4353,2.8273,0.43463,0.40515,4.0747,4.4975,4.3287,4.9404,1.909,1.6461,11.0332,9.1874,3.6394,3.6314,4.3436,4.7194,5.1925,5.3392,1.8405,1.8067,1.9271,2.0259,3.7929,3.4047,8.0764,7.8643,2.37,2.4793,7.7388,7.393,12.8101,11.6909,8.6053,8.008,2.2386,2.4876,4.9001,4.6561,1.8762,1.8594,20.6915,19.6175,5.5567,6.4884,4.1808,4.3548,1.1033,1.2987,2.9708,2.6437,7.6655,6.885,15.1099,14.397,4.1232,4.46,4.7235,4.4881,3.5138,3.3782,1.5624,1.7859,4.1849,4.8217,10.9989,10.7779,2.9862,3.3923,2.5205,2.6759,2.5608,2.6713,10.8533,11.7282,2.4033,2.9716,2.1409,2.661,13.5061,14.0706,2.2141,2.1372,1.2293,1.2694,15.6293,15.0032,5.2991,4.9639,8.5693,9.4761,4.5894,3.7044,10.0276,12.7536,8.2518,8.7619,9.4185,9.0765,3.5037,3.7374,1.5511,1.8285,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,61
+desd63,87,87,F,1.772,1.3881,0.29191,0.3229,0.64983,0.67914,15.3461,2.3944,2.5176,36.7438,37.9211,11.0862,11.6878,167.5756,164.9992,1.6263,2.7915,2.5432,1.1098,0.85943,18.0568,18.2211,1.2156,1.1515,2.965,3.0473,5.8359,6.2727,3.7026,3.898,0.07933,4.028,2.0653,2.2594,0.33227,0.3005,3.6304,3.7709,2.9997,3.2009,1.5849,1.2516,8.457,7.2867,2.6871,2.7326,3.1265,3.0663,3.6222,4.1139,1.3767,1.3351,1.4898,1.5681,2.918,3.1571,6.0063,5.6911,1.7015,1.6345,5.1103,5.2337,9.3244,9.1252,6.3145,6.5562,1.9381,1.7763,3.7305,3.9116,1.3389,1.4058,13.307,14.5091,4.3988,4.8572,3.1492,3.3438,1.0387,1.0747,2.2643,2.1921,6.3421,5.8155,12.4758,11.6314,2.3741,2.7173,3.6369,3.5636,2.6327,2.6425,1.211,1.2268,3.0558,3.2689,8.3131,7.6672,2.403,2.6449,1.8084,1.7543,1.7987,1.6677,9.2137,10.3743,2.0893,2.164,1.5695,1.9636,11.1104,11.0321,1.4979,1.685,1.0042,1.0318,11.829,12.7407,4.4575,4.6578,6.6309,7.5526,3.8999,3.0401,8.1985,8.1117,6.2985,6.5127,6.3405,6.2006,2.581,2.7935,1.1214,1.4395,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,62
+desd64,80,80,F,1.8908,2.3987,0.36634,0.40836,0.75455,0.67372,17.356,3.1894,3.1426,42.7345,43.4145,13.2066,13.3742,201.5903,200.1052,1.5971,3.0205,2.6672,0.4896,0.41883,18.6268,23.2024,1.3718,1.3376,3.5052,3.5774,6.0902,6.4523,4.2961,4.6436,0.06899,4.5531,2.0564,2.2879,0.41104,0.40055,3.4098,4.2679,4.258,4.2454,1.6798,1.3355,9.5858,7.9257,3.1364,3.0649,3.455,3.7547,4.3213,4.1242,1.4921,1.3591,2.0772,1.881,3.5773,3.4007,6.3825,6.303,1.8536,2.0366,5.6349,5.5544,9.6159,10.063,7.5364,7.6057,2.2932,2.0924,4.3572,4.3147,1.6854,1.6391,16.6491,16.165,4.4035,4.9091,3.449,3.8401,1.0214,1.101,2.4465,2.2434,7.2337,6.6773,10.9933,12.0241,2.7527,2.7212,3.6371,3.7316,3.1209,2.7283,1.72,1.3436,3.8912,4.2633,9.8153,9.6138,2.764,2.9646,2.4135,2.2773,1.9658,2.3143,9.3905,9.8466,2.421,2.3991,2.2428,2.4076,12.8277,13.0462,1.7123,1.9411,1.1692,1.1687,13.9114,14.0161,4.8984,4.9381,7.4967,8.3733,3.8308,2.7602,9.6935,9.5963,6.9532,6.4193,7.2461,6.9603,3.6933,3.2693,1.5479,1.5672,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,63
+desd65,,,F,1.6004,1.6818,0.36741,0.40996,0.76962,0.75879,17.2171,2.7093,2.8282,42.7345,42.7427,14.9968,15.2551,208.0855,204.9386,1.2083,3.2064,2.9787,0.66079,0.64834,11.259,12.3254,1.4802,1.4805,3.339,3.1849,6.1679,6.4181,4.1359,4.3168,0.07519,4.1678,1.9834,2.5436,0.36306,0.36231,3.6238,4.3267,3.5168,3.6905,1.8041,1.3823,9.3639,8.4609,2.8999,2.9829,3.9054,3.7099,3.9735,4.1411,1.5398,1.4514,1.7829,1.7798,3.695,3.1335,7.337,6.8662,2.1897,1.9547,5.7668,6.3053,10.8828,10.6209,7.143,6.7004,2.3407,2.0127,4.3567,3.9784,1.7486,1.7409,19.4533,19.245,5.1017,5.6835,3.9069,3.5284,1.0201,0.97622,2.5015,2.4824,7.9019,6.5125,13.7782,12.8805,2.5345,2.8797,3.9417,4.1678,2.9823,3.4832,1.5399,1.2029,3.797,4.1069,9.1317,9.5475,2.7925,2.9475,2.0359,2.0142,2.4668,2.1978,9.1502,11.3727,2.2627,2.1624,1.8378,1.984,12.9534,12.1891,1.9109,1.6888,1.0766,1.1387,12.4816,12.7452,5.3249,4.9639,7.5605,8.5838,3.6293,3.3276,9.0019,9.8944,7.3442,7.0293,7.0508,6.9268,3.2086,3.082,1.3691,1.4827,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,64
+desd66,63,63,F,1.7016,1.8801,0.34365,0.36127,0.755,0.79298,17.7846,2.6777,2.7309,47.2251,47.8707,14.1082,14.5162,213.2188,206.891,1.3861,2.9139,2.9775,0.44145,0.39909,13.0689,14.9227,1.5049,1.5513,2.9851,3.3269,6.4665,6.6555,4.6607,4.8877,0.07678,4.3138,2.0463,2.6222,0.34776,0.37354,4.1466,4.7178,4.0374,4.0577,1.8409,1.6665,8.8971,8.1155,2.5383,2.4315,4.0143,3.6323,3.5822,3.1617,1.5192,1.485,1.9982,1.9224,3.5305,3.2451,6.7617,6.7072,2.1785,2.0406,5.8472,5.6658,10.1011,10.2714,6.4011,5.4669,2.2463,2.3544,4.2838,4.4298,1.8653,1.825,16.1406,15.3283,5.0812,5.7141,3.854,3.8787,0.87342,1.1814,2.3686,2.4756,8.9934,7.1431,12.4217,11.453,2.4907,2.5224,3.3293,3.6264,3.5849,3.3267,1.4701,1.4118,3.9306,4.224,9.8153,9.4709,2.7282,2.9658,2.3943,2.3329,2.0408,2.008,10.0747,10.3747,2.1004,2.4615,1.9927,1.9493,12.1733,12.1998,1.5956,1.9069,1.1181,1.1489,12.3433,12.2218,5.4414,5.3632,7.1656,7.854,3.3701,2.814,9.4402,9.1445,6.3466,6.3098,7.4567,6.2784,3.2215,3.7842,1.385,1.5102,,29,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,65
+desd67,75,75,M,1.6014,2.0363,0.38561,0.42597,0.88136,0.90626,19.6638,3.1106,2.4915,54.2284,56.7564,16.2603,16.1223,213.4166,211.7263,1.3578,3.5712,3.3065,0.57608,0.44917,9.3245,10.939,1.5901,1.5537,3.9886,4.2169,6.7267,6.9214,4.6503,4.9331,0.07735,5.5523,2.6203,3.0682,0.42573,0.43687,4.8714,5.3957,4.7486,4.7668,2.076,1.7786,10.5766,10.3484,3.1923,3.0643,4.7858,4.3879,5.0981,4.6505,1.913,1.8925,2.3292,2.1829,3.9677,3.7187,8.823,9.7987,2.207,2.3896,7.3511,6.7305,12.6225,12.5923,8.6827,7.9342,2.5671,2.5848,5.4616,6.12,2.0523,2.1563,21.7039,20.5391,5.9957,6.4612,4.1304,4.2652,1.0672,1.3127,2.501,2.8102,9.0757,7.9306,16.6489,16.0116,2.9033,3.2347,5.0057,4.9305,4.0271,3.4918,1.6892,1.6983,4.4305,4.9742,11.4473,11.6249,3.3221,3.2491,2.6001,2.713,2.2238,2.6079,10.3739,11.6908,2.6649,2.9114,2.5206,3.0548,13.4881,13.5479,1.8163,2.072,1.5046,1.5581,16.53,16.3563,5.5948,5.6492,8.4487,9.5017,4.1532,3.1072,10.7296,11.324,7.9658,7.5332,8.5438,8.6315,4.1574,4.5087,1.6521,1.699,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,66
+desd68,81,81,M,2.6191,1.6601,0.41411,0.47796,0.9583,0.862,17.2523,3.0201,3.1553,46.091,48.2509,14.6937,15.1321,251.5014,252.5392,1.5899,3.5268,3.2942,0.68395,1.0311,18.3746,23.0601,1.718,1.7807,4.3835,4.3575,6.9178,7.0601,4.7012,4.9244,0.08702,4.3842,1.9311,2.4745,0.40534,0.40583,4.5861,4.9562,4.3379,4.7752,1.912,1.7823,10.7095,10.1702,3.7793,3.8162,4.1937,4.1455,5.0343,4.3323,1.8996,1.7173,1.9989,2.0304,4.0081,3.4294,7.7757,7.8381,2.2082,2.4793,6.9251,6.7984,11.7446,11.5464,8.4069,7.7564,2.3747,2.611,4.3691,4.7181,1.9492,1.9712,17.9533,19.015,5.7823,6.5377,4.0427,4.2149,1.1281,1.22,2.822,2.8842,8.135,7.1,13.8898,14.0719,3.6256,3.8397,4.4893,4.5582,3.3994,3.4886,1.5772,1.6557,4.1235,4.5911,10.9989,11.096,3.2669,3.4016,2.458,2.4106,2.3449,2.6919,10.596,11.6129,2.316,2.6944,2.0387,2.4174,13.4418,13.5991,2.1391,2.2449,1.3177,1.4297,17.322,14.8471,6.0458,5.7101,7.7676,8.9752,4.5039,3.2678,10.3266,10.7001,8.0056,7.898,8.8386,8.1949,3.708,3.9851,1.518,1.6597,,27,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,67
+desd69,,,F,1.0706,1.2781,0.38794,0.41664,0.74739,0.7832,15.3848,2.7122,2.7349,39.3674,39.5564,12.6382,13.0176,219.7823,222.2557,1.0778,2.86,3.0083,0.64781,0.50392,9.5205,13.9193,1.585,1.5627,3.4216,3.3868,7.0444,7.1954,4.0537,4.2817,0.07014,4.4069,2.0977,2.2385,0.3361,0.32912,3.4598,3.8512,3.7741,3.8737,1.6117,1.411,8.9583,9.481,3.0221,2.9683,3.6484,3.2669,4.2654,3.7841,1.381,1.4328,1.7505,1.7447,3.4529,2.8299,6.0484,5.6216,1.9636,1.8816,5.4877,5.4631,10.3798,9.0952,6.92,6.6905,2.0833,2.061,3.9765,4.0007,1.5278,1.5214,16.7566,15.9371,4.4185,5.3288,3.5988,3.688,0.95841,0.875,2.1641,2.2308,6.5434,6.0421,12.4217,11.9449,2.5782,2.7924,3.6761,3.7928,2.8152,3.1947,1.2752,1.3436,3.5588,3.6757,8.402,8.4152,2.4115,2.8056,2.0716,2.1286,2.1497,2.0978,9.0846,10.3112,2.2418,2.2152,1.7805,2.196,10.1731,11.2346,1.9249,1.612,1.0546,1.1289,13.8968,12.6978,4.7844,4.5418,7.9005,8.0448,3.8384,2.8281,10.3461,11.05,6.7893,6.0233,6.4587,6.1066,2.8891,3.3935,1.3803,1.4168,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,68
+desd70,78,78,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,69
+desd71,58,58,F,0.99857,1.7414,0.34181,0.41026,0.81298,0.81016,15.5056,2.6802,2.7995,48.774,45.5465,12.6077,12.7326,207.8475,202.3092,1.1103,3.2027,3.0738,0.44345,0.39909,14.947,18.2943,1.4352,1.4294,3.0823,3.3609,6.1788,6.5008,4.0058,4.171,0.07584,4.704,2.3313,2.6553,0.39444,0.38493,3.8431,4.3886,3.6452,3.8666,1.6552,1.5808,10.4568,8.8545,2.8737,2.666,3.9693,3.891,4.2102,4.107,1.5953,1.6097,1.8693,1.9031,3.3198,3.268,7.0986,6.9452,1.9435,1.781,6.1375,5.8779,11.4184,10.8767,7.6204,7.1502,2.0994,2.5188,4.4276,4.4569,1.6735,1.6692,18.315,17.763,5.249,6.1263,3.7851,3.6104,0.99017,1.0889,2.2753,2.5861,7.1016,6.1395,13.1632,13.4239,2.7509,2.8725,4.2429,4.012,3.3159,3.286,1.5348,1.4832,3.745,4.0252,9.8992,9.6351,2.9279,3.0593,2.1191,2.0545,2.0855,2.0218,10.0317,11.4993,2.2809,2.4615,1.843,2.085,11.0072,11.3711,1.7164,1.6792,1.2017,1.2342,12.34,11.5783,4.6988,4.7226,8.2762,8.0408,3.3772,3.3862,10.1367,10.5664,7.0391,6.5548,7.3667,7.7004,3.4369,3.7364,1.4022,1.3469,,23,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,70
+desd72,78,78,M,1.7918,2.1243,0.2972,0.35158,0.7685,0.69628,17.5478,2.5534,2.6666,47.9737,48.3291,14.1082,14.9131,202.9975,201.3279,1.1571,3.143,2.8714,0.58387,0.47649,11.8847,17.4652,1.5012,1.501,3.2527,2.9568,6.3611,6.8546,4.3675,4.4876,0.07815,4.9481,2.1969,2.5664,0.36026,0.34224,3.8518,4.1991,3.6431,4.1797,1.7669,1.3901,9.7188,9.6711,3.042,2.7674,3.7919,4.0413,4.3885,3.665,1.5594,1.3406,1.8272,2.0771,3.8571,3.6495,6.8674,5.647,2.1634,2.1155,6.1681,5.7585,10.1361,8.9927,7.2899,7.1401,2.1214,2.0127,4.5309,4.4899,1.8738,1.8729,18.2751,17.8268,5.129,5.5199,3.9369,3.7981,0.9656,1.0397,2.4737,2.3103,7.1901,6.5953,13.5027,12.0562,2.563,2.8136,4.1177,4.1456,3.1402,3.5374,1.5158,1.3295,3.4305,3.6379,9.3341,9.1187,2.8765,3.1551,1.9765,2.065,2.2135,2.4133,9.7286,10.7874,2.0774,2.1045,1.7949,2.0569,11.574,12.0505,1.6213,2.1993,1.1089,1.1614,14.3833,14.2595,5.1077,4.8334,7.5447,8.3731,4.204,3.8647,8.5336,10.0392,6.3764,5.9411,6.3894,6.1349,3.3421,3.7842,1.2189,1.491,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,71
+desd73,76,76,F,1.8949,1.3802,0.35875,0.37575,0.65252,0.63576,16.8748,2.8806,2.7872,46.7065,45.9081,12.6576,14.0604,160.9065,160.0347,1.6692,2.9506,2.5938,0.92382,0.97396,18.5472,20.5697,1.4111,1.4019,3.1852,3.187,5.7143,5.9495,4.3919,4.6656,0.08037,4.993,2.1171,2.4032,0.34125,0.34323,3.8254,4.3176,3.7177,4.0424,1.6327,1.3184,9.913,7.9257,2.9111,2.4942,4.013,4.2457,4.3431,4.5532,1.4152,1.3347,1.8952,1.9302,3.2689,3.1256,7.0467,7.3371,1.7185,1.8472,6.497,6.1849,10.9749,11.4554,7.2448,6.233,2.1926,2.1617,4.4383,4.4597,1.3704,1.4901,16.2826,17.4871,5.1888,5.6435,3.2182,3.5444,1.2128,1.0929,2.5934,2.3079,7.1171,6.6941,14.1728,13.1288,2.9165,3.03,3.6688,3.5194,3.1616,2.7669,1.4397,1.4926,3.9743,4.3803,10.2395,9.9526,2.7068,2.7592,2.2326,2.4505,2.0855,2.3586,8.9611,11.3341,2.3375,2.3786,1.9335,2.3513,11.3061,12.6653,1.6088,1.9041,1.0038,1.0772,13.7655,13.3816,4.6871,4.7192,6.8857,7.8364,4.2164,3.3597,10.4408,9.5738,7.422,6.5692,6.9081,7.1556,3.4745,4.0303,1.2969,1.7699,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,72
+desd74,77,77,F,1.9673,2.8461,0.33293,0.42615,0.78023,0.78422,16.8427,2.6143,2.7829,42.7345,42.5416,14.0549,14.4579,198.5983,197.3386,1.6855,3.0522,2.8692,1.157,1.0578,21.6844,22.8793,1.6183,1.6056,3.3506,3.4616,6.1977,6.7046,4.4807,4.6758,0.07234,4.4349,1.9851,2.4388,0.37217,0.33822,3.2603,4.1208,4.1616,4.2191,1.4647,1.3274,9.5932,8.3953,3.0446,2.9403,4.1768,4.4532,4.9171,4.2452,1.4653,1.4146,2.0236,1.8755,3.2079,2.9676,6.836,6.2539,1.9615,1.9173,5.9288,5.9483,10.9414,8.9824,7.151,6.5649,1.9513,2.1293,4.165,4.1706,1.5375,1.539,15.5214,15.8475,4.6644,6.0483,3.1633,3.5812,0.92636,1.0472,2.3765,2.3103,6.8024,6.6575,12.6504,11.7532,2.9064,3.688,3.6224,4.0093,3.3829,2.8882,1.314,1.4402,3.5904,3.9301,10.402,9.804,2.7381,2.7938,2.5381,2.3986,2.3147,2.3713,8.8352,9.4535,2.2067,2.3531,2.1847,2.3099,10.712,10.2988,2.0045,2.0344,1.0128,1.0522,13.9114,12.3174,4.6414,4.7897,6.6039,8.9842,4.1733,3.1777,10.4029,9.8716,6.0187,6.7777,6.6822,6.1146,3.2971,3.4506,1.6639,1.8178,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,73
+desd75,81,81,F,1.3485,1.8325,0.32134,0.37602,0.67783,0.70712,16.3111,2.4642,2.4381,40.571,41.159,13.1521,13.93,194.9975,189.1448,1.1402,2.7353,2.4134,0.55737,0.76297,21.4528,24.447,1.4372,1.4388,2.7133,2.6628,6.0978,6.3765,4.2798,4.4197,0.06877,4.6274,2.0045,2.2,0.31937,0.33103,3.2997,3.7709,3.3055,3.5396,1.5475,1.37,8.6147,8.6227,2.2766,2.0088,3.1507,3.4878,3.3844,3.0535,1.2855,1.3546,1.6913,1.7142,3.2655,2.9913,6.176,5.698,1.7754,1.7464,4.8907,5.8218,9.5523,8.7208,5.7616,5.6016,1.8609,1.9433,4.0806,4.2148,1.4825,1.5077,15.6178,15.8475,4.149,5.3989,3.3093,3.4158,0.97928,0.96225,2.3302,1.9147,6.3032,5.8097,11.541,10.4151,1.852,2.7676,3.363,3.5905,2.9641,3.2162,1.2925,1.2729,3.4229,3.6734,8.2805,8.9246,2.4313,2.4135,1.9103,1.9743,1.7651,2.2497,9.0085,9.9579,1.9126,1.9953,1.8158,1.9312,10.0972,10.8212,1.5309,1.7093,1.0483,1.0497,13.7673,13.1403,4.509,4.5392,6.5966,7.5637,3.5403,2.7854,8.8864,9.5526,6.4643,5.7493,6.4502,5.8683,2.8685,3.1222,1.2209,1.4045,,28,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,74
+desd76,61,61,M,2.3493,2.4455,0.35128,0.38133,0.84773,0.83178,18.339,2.7661,2.6821,50.9428,50.4786,15.5627,16.2364,253.2645,252.0335,1.9368,3.3311,3.1951,2.1061,1.9334,24.1549,19.7701,1.7198,1.7194,3.4955,3.7739,6.6072,6.686,4.8238,4.9601,0.08307,5.6116,2.5519,3.0265,0.33923,0.35595,4.2473,4.7613,4.1956,4.0762,1.7905,1.4925,9.1013,8.843,3.6393,3.3389,3.8898,4.0122,4.7055,4.6044,1.6422,1.6079,1.9656,2.2077,3.6906,3.198,7.894,7.3156,1.9719,1.9279,6.9397,6.5748,11.7446,11.0933,8.8864,7.6496,2.2305,2.36,4.6232,5.0769,1.7002,1.6868,16.8669,17.7781,5.1801,6.6039,3.5903,3.688,0.98305,1.0459,2.3532,2.2716,7.5962,6.9119,14.0409,14.5989,2.1188,3.3037,4.2779,4.5181,2.8978,3.1158,1.4907,1.6476,4.1452,4.6571,10.9995,11.096,2.9699,3.2698,2.3157,2.3272,2.31,2.3117,8.7061,10.0361,2.3864,2.4864,2.138,2.4308,11.6113,11.857,2.1247,1.6991,1.1994,1.2805,13.6742,12.6499,5.2403,5.6441,7.1078,9.726,4.1025,3.7167,10.2113,10.1761,8.2144,7.583,7.4341,7.5218,3.5716,3.3848,1.6241,1.4211,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,75
+desd77,,,M,2.171,2.3676,0.32695,0.371,0.7271,0.74459,18.0333,2.2687,2.3463,45.9484,45.2612,15.5951,15.8947,203.5476,194.6723,1.947,2.8581,2.5777,0.71055,0.85492,15.5524,17.7403,1.4935,1.4444,3.1677,3.3637,6.1315,6.6802,4.1289,4.2763,0.0769,5.2786,2.2369,2.4471,0.31937,0.3343,4.0428,3.972,3.6817,4.0423,1.6495,1.4051,9.913,8.3889,3.0446,3.0013,3.8351,4.1743,4.6168,4.3473,1.4113,1.4315,1.6729,1.9201,3.4889,3.0078,6.9003,6.7283,1.8657,1.8935,5.6505,6.8921,10.6925,9.7307,7.6111,7.7103,1.9606,2.0625,4.6062,4.5402,1.5356,1.5442,16.2808,16.5078,4.9339,6.4362,3.3936,3.5985,0.70435,1.0072,2.1808,2.297,6.8391,6.2941,12.1609,11.3543,2.9587,3.3767,3.7109,4.1242,2.755,2.7807,1.3389,1.2667,3.3562,4.066,9.1457,10.1186,2.5765,2.9875,2.1284,2.2649,2.2033,2.4362,8.9765,9.8737,2.0741,2.1719,1.8823,2.0608,11.9469,11.3461,1.8895,2.2553,1.0551,1.0943,12.5964,11.9654,5.0937,5.2669,8.2169,9.085,4.6134,3.6118,8.5336,9.6914,7.2047,7.5151,6.9801,6.9502,2.7421,3.0403,1.4508,1.4275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,76
+desd78,,,M,1.7692,1.701,0.46431,0.48466,0.94615,0.8882,21.3172,3.7532,3.5314,53.1828,52.2641,18.3548,18.277,262.0686,257.7759,3.0552,3.6067,3.4104,0.70855,0.58997,34.3032,37.4298,1.911,1.8463,4.2333,4.5662,7.3684,7.6513,5.1523,5.3933,0.08927,5.3587,2.6508,2.8551,0.41032,0.41794,5.7576,5.8186,4.571,4.8936,2.2097,1.9205,11.7868,9.7685,3.7986,3.5196,4.4609,4.7189,5.5132,4.1745,1.9833,1.8342,2.325,2.048,4.2709,4.5646,8.5667,7.8056,2.7332,2.6111,7.5573,7.8584,13.1952,11.3035,8.5558,7.9282,2.8403,3.0093,5.1521,5.2113,2.3381,2.3246,20.661,21.2659,5.9957,6.9543,4.7119,5.0118,1.1411,1.1754,2.831,3.0938,9.9152,7.8726,16.6489,14.6139,3.5247,3.9336,4.3109,4.5838,4.157,3.2288,1.7702,1.8138,4.722,5.5754,12.5596,12.2125,3.0314,3.4223,2.8499,2.5561,2.53,2.9455,10.4138,10.647,2.8364,2.8316,2.6326,2.8625,13.1199,13.5991,2.2101,2.2838,1.359,1.3665,16.823,17.7676,6.0458,6.0767,8.6232,11.8785,5.1807,4.0462,11.9661,13.2127,8.7938,8.5477,9.2186,8.911,4.1643,4.2005,1.6686,1.9831,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,77
+desd79,,,M,1.1606,2.3561,0.47365,0.54746,0.96734,0.98178,19.3177,3.273,3.1684,54.7687,54.1574,16.1786,16.5995,271.7577,265.6812,1.1773,3.4125,3.3822,0.8319,0.47793,14.8505,18.833,1.8444,1.8178,4.0291,4.158,7.3684,7.6513,4.7776,5.1161,0.08805,4.6166,2.2871,2.6853,0.45532,0.46534,4.5854,5.2181,4.63,4.9237,1.9153,1.7476,11.4297,10.3576,3.7986,3.7225,4.3528,4.622,5.4218,5.3929,1.948,1.8556,2.4437,2.6485,4.2283,4.1818,8.823,8.4934,2.3498,2.238,7.6287,8.0441,13.9916,13.2533,8.8864,8.3526,2.3599,2.747,4.9104,5.1103,2.0711,2.0628,20.2924,19.6225,6.1715,7.2491,4.4177,4.3599,1.1214,1.1164,2.8466,2.8053,9.196,7.8222,17.1263,16.1211,3.4708,3.7564,4.8411,5.3126,3.9768,3.7138,1.8614,1.7543,4.9277,5.2164,12.0285,12.1484,3.2428,3.7096,2.588,2.5969,2.6699,2.9574,10.4138,12.9774,2.3846,2.8669,2.3494,2.5804,13.2394,13.2312,2.1174,2.4797,1.4368,1.3904,15.7713,17.0909,6.1697,5.9413,9.4078,11.0348,4.9162,3.9117,11.866,11.7601,8.5808,8.3054,9.0227,8.4177,4.1855,4.28,1.7493,1.948,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,78
+desd80,73,73,F,1.002,1.4216,0.40629,0.44194,1.0815,1.026,20.4108,3.212,3.0196,51.3774,52.0746,17.4447,17.01,252.7015,253.9332,1.22,3.9872,3.6979,0.43528,0.33711,8.2854,8.6635,1.7723,1.7541,4.2087,4.5662,8.5553,8.5451,5.0063,5.3377,0.08861,4.4245,2.2373,2.97,0.45912,0.57889,4.7836,5.1765,4.2667,4.5576,2.076,1.8698,11.5993,10.8554,4.7937,4.4077,4.015,4.3044,5.6221,5.8995,1.9954,2.1113,1.9982,2.0626,4.7077,4.2203,8.9677,9.7987,2.7332,2.7388,8.1387,7.9157,13.0245,12.9861,9.245,9.5624,2.7488,2.7463,5.3636,5.8873,2.34,1.9821,21.6418,22.0556,5.696,7.1553,4.7054,4.9299,1.4446,1.3973,2.9005,3.3245,8.7683,8.5037,16.5637,15.8882,3.6796,4.5715,4.98,5.647,3.5751,3.5502,1.7555,2.08,4.3129,4.6564,10.9604,11.3723,3.3891,3.4088,2.4656,2.3972,2.2439,2.3061,12.4968,11.6598,2.6904,2.9495,2.1508,2.6861,12.5464,13.1306,2.0492,1.9472,1.3847,1.4624,18.3793,15.6758,6.262,6.08,9.1852,9.8394,5.3792,3.9205,11.9661,12.1876,7.5164,8.9813,9.5512,9.1,3.7104,4.0873,1.5511,1.5416,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,79
+desd81,60,60,F,0.97219,1.759,0.33504,0.37441,0.75465,0.79963,16.1622,2.4875,2.5484,44.5202,44.55,12.5599,12.7326,180.3954,171.3762,0.91896,3.0307,2.6776,0.39474,0.40243,8.1124,7.1916,1.4005,1.367,3.6119,3.5786,6.2558,6.3765,4.0602,4.2061,0.07325,4.6638,2.2356,2.2641,0.32261,0.33844,4.0819,4.8586,4.0004,4.038,1.7991,1.4945,9.083,6.9952,2.6141,2.5195,3.8306,3.8421,4.5978,4.362,1.5099,1.4933,1.8055,1.9966,3.4443,3.177,7.3078,6.5086,2.0366,2.1155,6.0955,5.345,10.5303,9.8659,7.3233,7.3066,2.1953,2.324,4.4148,4.7222,1.8029,1.902,17.5666,19.015,4.0075,5.2847,3.8541,3.8465,1.1256,0.87729,2.3051,2.3054,8.4398,6.7962,12.9491,13.0122,2.7054,2.9748,4.1804,4.2322,3.0754,3.5374,1.4578,1.387,4.0284,4.503,9.7225,10.4812,2.8246,3.0087,2.2439,2.2624,2.2135,2.398,9.3905,11.6489,2.3864,2.4218,2.102,2.3251,13.196,14.2066,2.052,1.8886,1.0813,1.0938,13.0274,14.2183,5.9981,5.8481,7.184,7.9869,4.0222,3.2142,10.0134,9.8361,6.9538,7.3223,7.2818,6.8558,3.0571,3.8888,1.505,1.5738,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,80
+desd82,73,73,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,81
+desd83,66,66,M,1.7674,1.9681,0.44771,0.53429,0.63104,0.74646,21.694,3.5623,3.217,53.1828,51.7551,16.5911,17.1,249.6425,238.7424,3.0552,2.8547,2.8842,1.1855,1.5703,33.4486,35.0719,1.7801,1.7443,4.1402,4.2219,7.7882,7.5645,5.0986,5.3992,0.10009,5.3115,2.4335,2.8273,0.42742,0.44719,5.4144,5.2847,4.7486,4.6396,2.1383,1.5926,12.4061,11.3323,3.3355,3.1698,5.1061,4.6133,4.7764,4.5407,1.2855,1.5106,2.2825,2.2501,5.3607,4.2798,6.9342,7.3443,2.3084,2.4791,8.2916,7.4495,10.9084,11.4554,8.5128,7.7304,2.6087,2.5075,5.7806,5.5629,2.0714,2.0756,22.9857,22.7685,5.8744,7.1611,4.4043,4.6553,1.435,1.5042,2.9005,2.8949,8.6872,8.4238,14.4125,14.6139,3.5397,3.7749,4.6643,4.8159,3.8602,3.0816,2.0435,1.7338,3.8501,4.4772,10.2318,9.739,2.6144,2.9435,2.602,2.5239,2.5274,2.6107,13.1671,11.5897,2.6482,2.7405,2.6326,2.7685,13.0812,13.5479,2.1358,2.599,1.3886,1.3665,17.274,15.8498,5.7327,5.6403,10.1282,9.081,4.9509,3.4951,10.4075,11.3401,8.8438,7.5533,7.36,7.5415,4.0988,4.3416,1.6686,1.9406,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,82
+desd84,65,65,F,1.3555,2.2589,0.33046,0.37961,0.64242,0.71697,14.5161,2.3829,2.224,40.7918,40.9443,12.3163,12.8799,191.4117,195.881,1.2126,2.5942,2.5602,0.64781,0.40884,11.7448,13.6065,1.3856,1.4396,3.0072,3.1216,6.1602,6.5673,3.9009,4.1507,0.07027,4.5122,2.0021,2.1836,0.33314,0.33409,3.2474,3.9392,3.5752,3.8616,1.8882,1.5153,9.622,8.8677,2.7907,2.833,3.7878,4.0186,4.5577,4.0269,1.4172,1.5204,1.815,1.8263,3.869,3.3237,6.0063,6.3199,1.9449,1.7852,6.8592,7.438,9.2432,9.4202,7.3233,6.7686,2.3719,2.5384,4.2057,4.7902,1.5375,1.5494,18.0849,18.6146,5.569,6.6593,3.8941,3.8186,1.0439,1.323,2.2721,2.393,7.5001,5.955,10.2149,10.6656,3.3871,4.0632,4.0474,3.7121,3.1817,3.4872,1.7361,1.5459,3.5351,3.9562,9.1766,9.1818,2.4115,2.7706,2.0682,1.9411,2.7577,2.7322,8.7885,10.436,2.0888,2.3116,1.9056,2.1099,10.9663,11.5403,1.9137,2.3175,0.97914,0.98202,14.511,14.6131,4.607,4.8703,7.9005,8.3596,4.363,3.7769,9.4762,10.605,4.9838,5.7279,6.2998,6.2477,3.3092,4.3223,1.5501,1.5055,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,83
+desd85,66,66,M,1.4694,2.2987,0.32552,0.34567,0.69704,0.61588,15.21,2.5612,2.626,39.8014,40.8598,12.4457,12.4404,197.9988,187.6717,1.4373,3.0009,2.5632,0.4878,0.39808,9.7001,11.423,1.3283,1.2745,3.9906,3.8441,6.0708,6.0733,4.1014,4.1851,0.07289,3.7738,1.8396,2.3772,0.31235,0.34819,2.7669,3.4415,3.7741,3.7464,1.5734,1.373,3.2251,9.012,2.2925,2.3661,3.4696,3.2669,3.8648,3.4434,1.3899,1.3032,1.7505,1.9383,3.1846,2.6099,6.1642,5.8912,1.8396,1.8904,5.1369,5.5081,9.917,9.2873,6.3538,6.0848,2.0464,1.9197,3.1064,3.7306,1.4837,1.4795,15.764,15.3308,4.4224,5.1045,3.4559,3.6231,0,0,0,0,5.7327,4.7167,11.541,11.6121,2.1433,2.7125,3.2957,3.5655,2.755,2.7807,1.3816,1.2201,3.4211,3.8782,7.3639,8.5779,2.5732,2.5647,2.1078,2.0161,1.974,1.9638,9.3283,9.5542,1.7636,2.2263,1.7444,1.7416,10.6592,11.4156,1.6023,1.9203,1.0433,1.0849,12.3132,13.0649,4.0735,4.3549,6.6869,8.1767,3.2195,2.772,8.5565,7.6989,6.1488,6.3194,6.3405,6.727,3.2925,3.2663,1.3691,1.4862,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,84
+desd86,66,66,F,1.2587,1.7177,0.38364,0.41664,0.7548,0.72415,17.5712,3.1106,2.4915,43.8168,43.3698,14.0423,14.4078,213.0143,206.1572,1.0976,2.8766,2.5777,0.50568,0.66927,16.4044,21.2815,1.4184,1.3657,3.5593,3.6937,6.0902,6.2616,4.4063,4.5025,0.06836,4.4952,2.0564,2.4315,0.35475,0.36743,3.5452,4.1131,3.7949,4.055,1.8686,1.502,9.1914,7.6134,2.2066,1.8742,3.5689,3.8617,4.0856,3.6756,1.5285,1.5054,1.8194,1.7596,3.5202,3.1916,6.8294,6.303,2.0793,1.9794,6.666,6.2704,10.9634,9.9019,6.5278,5.6169,2.3719,2.5224,4.1469,4.0497,1.7235,1.6281,16.7345,18.6146,4.7603,6.0522,3.8634,3.8426,1.0944,1.2013,2.3075,2.5586,6.8938,6.5125,13.0638,11.7806,2.877,3.03,3.6956,3.6566,3.316,3.0267,1.4006,1.5541,3.6401,4.0399,9.7507,9.5026,2.8073,2.9706,2.1167,2.1711,1.5756,2.1324,9.0295,10.9548,2.0726,2.5033,1.8687,2.0946,11.5468,12.6951,1.647,1.8782,1.1062,1.1623,13.2221,12.943,4.6871,4.4374,6.883,7.8429,4.3805,3.6493,9.4686,9.2149,6.2928,6.0908,7.4567,6.2556,3.3918,4.1227,1.299,1.2297,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,85
+desd87,60,60,M,2.3612,2.1091,0.39851,0.42969,0.78849,0.80505,18.3098,3.1376,2.8533,45.5865,46.8683,14.2442,13.7043,201.0276,200.344,2.1285,3.1412,2.9782,2.4881,1.6943,31.5216,28.7946,1.3987,1.4068,3.5193,3.4941,6.0473,6.4181,4.4367,4.7121,0.07994,5.2786,2.437,2.6288,0.41127,0.42219,4.001,4.4643,4.0728,4.3508,1.9582,1.5591,10.4294,9.3932,2.6385,2.4011,4.1322,4.5763,4.1195,3.4995,1.3855,1.502,2.0791,2.0471,3.9318,3.4707,6.8047,6.7324,2.39,2.3589,5.9165,5.3991,11.0775,10.8031,6.9075,7.1866,2.5124,2.5257,3.5995,4.6783,1.7901,1.8758,19.2383,20.0176,4.9089,5.9526,4.2661,4.5213,0.98132,1.1718,1.9825,2.5269,7.3267,6.6487,14.516,13.6412,2.4179,2.8025,3.5923,3.8738,3.6352,3.5708,1.7914,1.6574,3.3487,3.9726,9.1766,9.5155,2.7607,2.9739,2.5976,2.5011,2.0929,2.399,11.1468,12.3052,2.6458,2.9642,2.1795,2.7221,12.8111,12.271,1.62,1.9438,1.3131,1.3238,14.6309,14.7358,5.1077,5.3845,8.3565,9.6382,3.6213,2.9346,11.0128,11.3401,7.0267,6.6646,7.0886,6.9161,4.2839,4.2163,1.4217,1.8423,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,86
+desd88,77,77,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,87
+desd89,,,M,1.7692,1.9902,0.38019,0.42851,0.90876,0.80523,18.92,3.0643,2.9504,45.176,45.7024,14.9021,15.7034,237.8669,233.4226,1.6919,3.6414,3.2341,0.6937,0.50083,13.2517,13.0165,1.7416,1.7534,3.7169,3.7317,7.663,7.9311,4.8194,5.0305,0.08307,4.1815,2.021,2.4456,0.38884,0.40256,4.1933,5.0062,3.7839,4.0341,1.6139,1.763,10.7906,9.1975,3.5698,3.2596,4.3756,3.949,5.0362,4.7112,1.6649,1.5896,1.8918,2.0259,4.1186,3.6493,7.7197,7.7465,2.1971,2.0793,7.0424,7.9824,11.9752,10.5925,8.7852,7.4205,2.2263,2.5896,4.3896,4.7967,2.044,2.0763,19.6056,20.1029,5.4599,6.9325,3.8132,3.9294,1.1688,1.0477,2.6537,2.3342,9.4104,7.5799,16.2235,13.5201,3.8541,4.4443,4.9467,5.3126,3.6326,3.4065,1.6746,1.589,4.5097,4.9629,11.2362,10.7426,3.2315,3.5072,2.2767,2.3017,2.4843,2.6184,10.0542,10.9446,2.418,2.4995,2.1876,2.408,13.884,12.0469,1.9454,2.1021,1.3886,1.4764,14.6949,16.1223,5.5549,5.5889,7.6425,8.6361,4.958,4.4032,11.0831,11.5678,7.2628,7.8346,9.073,8.0227,3.8485,3.8991,1.5964,1.4679,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,88
+desd90,,,M,1.535,3.2169,0.42772,0.46979,0.85776,0.89013,20.0511,3.1208,2.8533,49.9711,50.7717,16.6933,16.4774,254.1394,257.2867,1.2541,3.4752,3.3067,0.5428,0.54447,13.9526,16.483,1.7571,1.7829,4.7141,4.806,7.3684,7.7073,4.8753,5.3393,0.0767,5.2514,2.4024,2.9397,0.40948,0.41794,4.9389,4.8237,4.4507,4.2912,2.0729,1.8239,10.8441,8.3359,3.0636,3.2526,3.5981,3.9289,4.3404,4.6934,1.7149,1.7514,1.9749,2.2218,3.9362,3.5318,7.6151,7.7126,1.9854,2.2647,8.2003,7.1483,12.4866,11.7584,7.9894,7.2281,2.7488,2.7562,3.9635,4.6783,1.9892,2.0095,20.253,19.7988,5.4663,6.1152,4.6467,4.7475,1.1114,1.1105,2.3051,2.5701,8.3765,7.4626,16.2228,14.8918,3.1402,3.8486,4.2286,4.1489,4.1233,3.6257,1.9195,1.7048,4.2346,4.8171,10.6144,11.103,2.8367,3.3641,2.2915,2.2839,2.0859,2.2891,9.1008,10.682,2.5118,2.8669,1.8859,2.0773,10.9804,12.9433,1.8905,1.8746,1.2255,1.2912,14.6171,16.7898,5.5549,5.4097,8.3454,8.6043,4.4738,3.6135,10.0633,10.7372,7.4072,8.5547,7.6754,8.105,3.9782,4.0992,1.3885,1.3773,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,89
+desd91,72,72,F,3.1708,4.2231,0.29537,0.36355,0.69194,0.78021,15.8248,2.3546,2.2924,41.5171,40.3567,13.0955,13.7861,166.1759,164.9992,2.3965,3.2062,3.0014,2.333,1.4453,30.421,25.9158,1.1776,1.2209,3.5762,3.8535,5.8359,5.6381,3.6561,3.8679,0.06805,4.181,1.9527,2.6174,0.33867,0.31728,4.1184,4.1983,4.025,4.1827,1.5598,1.2993,8.3621,6.9027,3.2626,3.4883,3.3731,3.4338,4.2111,3.7602,1.3782,1.5117,1.7701,1.8175,3.3008,2.8406,7.0857,6.3426,1.799,1.8049,5.6505,5.398,11.1146,10.1499,7.4049,6.4034,1.9967,2.0551,4.3525,4.1746,1.593,1.5185,16.9418,16.4845,4.0703,6.1776,3.4751,3.4975,0.80958,1.1048,1.9456,2.2739,7.1152,6.3947,14.7741,12.1722,2.8925,3.0587,3.8961,3.6955,2.8518,3.0989,1.4136,1.4233,3.4679,3.9112,9.1097,9.27,2.754,2.9555,2.3643,2.305,2.1352,2.0968,9.6585,9.8247,1.967,2.2394,2.1189,2.1385,11.8801,11.9346,1.687,1.9722,1.1365,1.1631,12.1339,11.9293,5.0937,5.1869,7.4343,6.9655,3.6014,3.3078,8.4749,9.0897,7.2282,6.7935,6.9801,7.1049,3.0863,3.4506,1.4603,1.5795,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,90
+desd92,75,75,M,1.1357,1.7496,0.4372,0.46979,0.89181,0.89013,19.3435,3.3825,2.9654,51.3695,52.2059,16.1786,15.7609,243.2493,243.6928,0.96045,3.7797,3.6642,0.42881,0.46857,11.3638,13.6102,1.4966,1.414,3.8883,3.6544,7.4221,7.6489,4.9907,5.3377,0.0845,4.5333,2.3012,2.8921,0.40972,0.41572,3.8431,4.7612,3.811,4.0341,1.9181,1.6474,10.8415,9.3302,3.6417,3.3652,4.0641,4.2007,5.1805,4.6537,1.7,1.7317,1.8769,1.7176,3.5642,3.2088,8.5283,7.9502,1.9759,2.2647,7.1179,7.2429,13.5076,13.1241,9.1151,7.4604,2.3152,2.4574,4.3592,4.2669,1.7527,1.7804,17.9957,17.0774,5.7983,5.8408,4.2485,4.7516,1.1033,1.1895,2.3481,2.7371,8.083,6.256,16.5453,16.3448,3.5397,3.7497,5.0403,4.6758,3.2752,3.2242,1.4083,1.4683,4.7711,5.319,12.8049,11.2148,2.8835,3.4545,2.1876,2.3024,2.0026,2.3082,9.8581,11.6623,2.2728,2.4352,1.9456,2.2955,13.0102,13.01,1.8207,2.0071,1.3402,1.4764,13.2791,13.7179,5.3963,5.4097,8.2762,8.7963,4.817,4.5027,10.0179,9.6752,7.2645,7.7323,9.1321,9.1223,3.4093,3.8341,1.4892,1.7436,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,91
+desd93,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,92
+desd94,71,71,M,2.5429,2.8987,0.29097,0.33732,0.70429,0.75571,17.4707,2.2641,2.448,47.9737,48.7275,15.5951,16.5436,185.7545,193.5193,2.171,2.9109,3.1014,2.2907,2.2962,24.6327,40.6739,1.5261,1.4805,3.286,3.0238,6.132,6.4687,4.3958,4.5656,0.07383,4.7947,2.4087,2.6407,0.36377,0.33195,4.6707,4.7127,4.2416,4.2844,1.4529,1.5195,10.4229,10.1825,3.676,3.2695,4.6704,4.8279,5.0423,5.0822,1.4435,1.4735,2.0991,2.1908,3.8415,3.4666,6.9781,6.7266,2.0676,2.086,7.1322,7.0976,10.6118,9.8852,7.7846,7.2281,1.8908,2.2619,4.827,4.3981,1.7976,1.8793,18.0849,18.8864,5.1077,6.3697,3.2708,3.9386,0.94556,1.0312,2.3346,2.5031,8.0824,7.5175,14.5233,13.4044,3.8541,3.8397,3.8945,4.3265,3.9717,3.7512,1.3601,1.433,3.9306,4.4385,11.3053,11.3547,2.7432,2.8332,2.7021,2.4977,2.5274,2.8484,10.0021,10.8967,2.2356,2.559,2.4329,2.6109,11.6578,13.0261,2.2965,2.5636,1.0636,1.2203,15.0078,14.4063,5.8532,4.9523,8.1998,9.6918,4.817,3.3581,10.8166,10.4451,8.2518,7.583,7.0187,7.4025,3.365,3.8213,1.7894,2.0348,,24,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,93
+desd95,74,74,M,1.8958,1.548,0.41211,0.47384,0.93709,0.94991,20.6291,2.8799,3.0777,44.0619,48.1425,14.8788,15.3827,267.0388,270.7394,3.0552,3.7357,3.3285,0.69059,0.6361,33.4486,28.5032,1.8646,1.8286,4.7141,4.7899,7.9524,8.0582,5.1695,5.4219,0.09098,4.1815,1.9377,2.6155,0.56403,0.48151,4.5569,5.2964,5.1362,5.0995,1.9153,1.7476,11.7542,10.6247,3.2672,3.5281,4.6459,4.1455,5.3644,5.3039,1.871,1.8006,2.3227,1.9631,3.6364,3.4284,8.1722,8.4465,1.9759,2.2924,7.653,7.8866,12.3971,12.594,7.592,6.9489,2.3956,2.5375,5.5418,5.3815,1.7385,1.8038,19.6031,21.7276,5.696,6.2518,3.9853,4.2149,0.99532,1.1741,2.1777,2.5701,8.0011,6.9028,15.3602,15.1511,3.9931,4.5715,4.0865,4.5236,4.7587,3.921,1.5705,1.5986,4.5284,4.661,12.5872,11.6746,3.1056,3.3939,2.6285,2.5561,2.9302,2.5593,10.8847,12.8486,2.5229,2.4352,2.2556,2.5655,14.1,13.344,2.3121,2.1133,1.2279,1.3596,15.3155,14.5561,5.7842,5.9413,9.5451,9.5109,3.961,3.282,12.5316,12.1876,9.0071,7.8884,8.5115,8.7411,4.0762,4.1668,1.699,1.8654,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,94
+desd96,77,77,F,1.2064,1.7496,0.33224,0.37092,0.8358,0.80952,14.5773,2.5314,2.4613,32.1332,26.922,11.7082,12.1776,191.0961,187.3303,1.2123,3.177,3.1363,0.35824,0.37814,9.3603,11.3273,1.2104,1.2209,3.1251,3.5668,6.2277,6.2495,3.8095,3.9391,0.06589,4.4555,1.8736,1.8897,0.36629,0.34739,3.6412,4.0426,3.7475,3.7776,1.8686,1.4445,9.6351,8.7108,2.7307,2.6644,3.5675,3.6058,4.2182,3.9712,1.6396,1.6683,1.7751,1.9003,3.7118,3.3786,6.7028,6.3805,2.2451,2.286,6.044,5.5259,10.8467,9.8992,6.664,6.4066,2.4026,2.2861,4.1951,4.1942,1.8653,1.8501,18.0849,16.3033,5.0812,5.1979,4.318,4.748,1.149,1.2289,2.7166,2.5255,6.59,6.2187,13.2849,12.9215,2.8378,2.7303,3.512,3.789,3.1817,2.9439,1.6497,1.4791,3.6401,3.8132,8.9276,9.0072,2.9582,3.043,2.1566,2.0798,1.8491,2.2295,9.4895,10.8398,2.2067,2.3903,1.796,2.0231,11.574,11.5101,1.6811,1.5861,1.048,1.0318,14.5716,13.7765,4.7906,5.1019,7.3483,8.3724,3.6579,3.1756,9.8602,10.2199,6.9612,6.7096,8.2445,7.755,3.7857,4.4614,1.181,1.2715,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,95
+desd97,,,F,1.0706,1.5911,0.38436,0.37448,0.86232,0.88361,15.4203,2.884,2.7471,45.7527,45.5105,13.3453,13.5976,227.3956,226.3817,1.0778,3.213,2.8952,0.40967,0.35349,7.1348,11.6928,1.6423,1.5608,4.0042,3.981,7.0498,7.3593,4.0983,4.2268,0.07514,4.6514,2.164,2.241,0.34977,0.35342,4.1539,4.6051,3.9127,3.9407,1.7616,1.5895,10.8823,10.2165,3.1251,3.1103,3.9506,3.9186,5.1156,4.7483,1.6726,1.7345,1.9335,1.9795,3.8294,3.3382,7.2418,7.1633,1.8913,1.6533,6.7307,6.1329,11.629,10.8432,7.6887,7.7603,2.2504,2.3057,4.6196,4.5683,1.6669,1.575,18.3593,15.6377,5.7289,6.5377,3.6926,3.8233,0.88561,0.93278,2.2469,2.346,7.3002,7.0284,14.4949,14.557,3.2577,3.895,4.4759,4.5486,3.7221,3.1457,1.4161,1.318,3.8347,4.0597,10.0699,9.5413,2.816,3.0897,2.0447,1.9375,1.9107,2.0912,9.7332,11.6489,2.231,2.2485,1.9364,2.0384,11.2915,12.0317,1.6347,1.768,1.0979,1.1791,13.0801,13.6614,4.9428,5.198,8.554,9.5642,4.3785,4.0503,9.798,9.9009,7.6223,6.875,7.0993,7.0982,3.287,3.4384,1.3181,1.3575,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,96
+desd98,81,81,F,1.8908,2.3987,0.28932,0.36604,0.59381,0.63104,14.5522,2.7353,2.6666,41.4208,39.9639,11.9078,12.1339,159.7323,147.6763,2.1695,2.4167,2.0602,1.642,1.3233,29.0169,24.8942,1.2833,1.2125,2.9937,3.0356,5.5917,5.908,3.6257,1.0756,0.06507,4.5791,2.2063,2.481,0.37744,0.37054,3.3471,4.2337,3.7258,3.7041,1.63,1.3762,9.2071,8.8703,2.8636,2.5654,3.455,3.7889,3.6222,4.1951,1.1132,1.1851,1.8156,1.7469,3.5773,3.2268,6.3936,6.4232,1.8216,1.8517,5.4161,5.3201,10.2109,10.0583,7.5401,6.9936,2.0495,1.9433,4.2339,4.2832,1.6024,1.6054,18.0319,16.1258,4.0341,4.9577,3.4751,3.427,0.97444,1.0864,2.1093,2.3079,7.3804,6.3,13.1951,13.2512,2.4347,2.9221,3.6371,4.0633,3.0486,2.8946,1.4235,1.1783,4.0167,3.9558,10.1163,10.1935,2.6322,2.7039,2.2838,2.2281,1.8362,1.8554,9.3724,11.4362,1.9772,2.1624,2.0478,2.2094,10.5575,10.3514,1.568,1.5262,1.0904,1.2068,12.7796,12.7141,4.6001,4.4744,6.9255,8.2916,3.9092,2.9443,9.7519,10.2162,6.3043,6.4992,7.4184,7.1955,3.0989,3.1119,1.3621,1.3766,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,97
+desd99,77,77,F,1.9673,1.6631,0.33943,0.42607,0.70472,0.75395,15.3895,2.5753,2.5391,43.2933,43.9655,12.8401,13.7952,203.4859,201.5569,1.5338,2.8784,2.8871,0.93407,0.70448,17.501,16.8413,1.4408,1.4402,3.4965,3.5927,5.8988,6.4523,4.0879,4.2939,0.0892,4.2492,1.8515,2.431,0.41032,0.4046,3.7836,4.3799,4.0728,4.2081,1.8815,1.6574,9.3369,8.3923,2.8527,2.9137,3.8863,3.9962,3.9814,4.3306,1.4662,1.6233,2.168,2.0529,3.6716,3.4617,7.0434,7.3443,2.1868,2.1507,6.2753,5.8863,10.9749,10.9339,6.9763,6.3868,2.1421,2.3112,4.408,4.4899,1.8294,1.6942,18.1155,19.3029,5.4068,5.7345,3.9864,4.2283,1.161,1.3061,2.6622,2.8353,7.7103,6.8542,14.774,14.2256,2.7022,3.0631,3.7588,4.0772,3.5208,3.307,1.5509,1.4159,3.8963,4.3719,10.1131,10.1569,2.7173,2.9054,2.2872,2.2597,1.9097,2.1001,9.613,11.8159,2.4218,2.6664,1.9664,2.1094,11.0384,11.8402,1.5796,1.8146,1.2799,1.3256,14.225,15.3711,5.1473,5.3068,7.4666,8.4996,3.5579,3.1602,10.0615,10.3233,7.1485,6.9792,6.7543,6.3119,3.3345,4.1011,1.3266,1.4821,,18,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,98
+desd100,,,F,1.4719,2.6631,0.33898,0.39117,0.8509,0.85531,15.9099,2.7586,2.8472,46.6869,46.3326,13.0052,13.538,178.6,183.289,1.5374,3.2315,2.9435,0.57082,0.41212,14.5741,12.8542,1.438,1.4402,3.4543,3.5172,6.3384,6.5612,3.9635,4.2762,0.08136,4.843,2.3411,2.4605,0.36423,0.36814,3.7748,4.4443,3.6892,3.9013,1.6191,1.4743,9.6515,8.714,2.8962,2.9022,3.5949,3.7729,4.5471,4.2491,1.6514,1.626,1.9503,1.9305,3.4809,3.2982,7.4447,7.3417,2.0011,2.0713,6.0951,5.8485,10.659,10.32,7.5148,7.3066,2.1271,2.2343,3.9748,4.1845,1.6016,1.6576,17.0565,17.4151,4.4835,5.3989,3.6215,3.7638,1.0147,0.9933,2.5935,2.4819,7.5197,6.6459,12.5042,12.3186,2.5253,2.7739,4.2119,4.3583,3.2545,3.5001,1.5009,1.4832,4.1905,4.555,9.7225,10.4812,2.9383,3.1626,2.1178,2.1921,1.7874,2.3211,10.2035,10.9914,2.1194,2.4598,1.7411,2.1408,11.793,11.9425,1.7384,1.9411,1.2428,1.2961,12.8768,13.303,5.1152,4.9431,8.0252,8.8826,4.2321,3.4805,9.5964,9.0157,7.2861,7.2733,7.7156,7.062,3.4062,3.6655,1.1627,1.4352,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,99
+desd101,63,63,M,1.9176,1.8741,0.37982,0.41575,0.74336,0.66297,19.3173,3.0452,2.8676,48.6004,48.3435,15.7454,16.1223,231.234,218.6799,1.6454,2.93,2.7935,0.90852,0.87113,15.3522,25.111,1.6406,1.6675,3.7198,3.7001,7.2876,7.3533,4.7321,4.9244,0.08702,5.1619,2.1832,2.8821,0.35503,0.37781,4.5993,4.6941,3.7839,4.2189,1.8425,1.4939,10.414,9.5276,3.8376,4.0107,4.4022,4.3733,5.7872,5.2487,1.4331,1.4181,2.0197,2.0063,3.6668,3.3603,7.4038,7.6027,2.1543,2.0042,6.9756,7.3491,10.9034,11.4267,8.059,7.1441,2.3294,2.3498,5.0009,4.5013,1.7941,1.7659,17.2759,17.575,4.9397,6.8039,3.9778,3.9073,0.95657,1.0421,2.5409,2.2434,8.0209,7.2627,14.0717,13.0691,3.6969,4.1271,4.2927,3.9757,2.8235,3.2129,1.6808,1.5504,4.0044,3.962,10.6337,10.9686,2.6706,2.8595,2.3488,2.3986,2.826,2.6709,9.3621,10.1888,2.4519,2.6115,2.3609,2.3094,11.6764,11.6061,1.9137,2.4502,1.1482,1.2379,15.6048,15.0046,5.3208,4.9639,7.9453,9.0978,4.5952,3.6511,10.9764,11.59,7.5752,7.2648,7.8397,7.4728,3.9895,4.0213,1.741,1.7415,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,100
+desd102,71,71,M,1.6659,1.578,0.41218,0.49526,0.83404,0.84425,18.0157,3.1672,2.9435,45.3326,45.9081,13.7119,13.784,201.0276,201.5569,1.7597,3.3865,3.1466,2.4881,1.7941,31.295,35.4198,1.6159,1.6229,3.7761,3.8252,6.6078,6.6044,4.4242,4.6618,0.0742,5.0696,2.3209,2.6387,0.38806,0.38339,4.0018,4.6638,3.7264,3.994,1.8691,1.6265,9.3369,9.4289,2.9077,2.8576,3.9024,3.9282,4.608,4.4212,1.5884,1.502,1.7464,1.8637,3.9918,3.6603,7.6589,8.1847,2.1897,2.1146,6.1998,6.259,12.4007,11.6051,7.6884,7.466,2.2809,2.2746,4.8109,4.9852,1.8653,1.927,20.3537,19.4553,5.1082,5.6511,4.1413,4.4599,1.2138,1.3369,2.6036,2.8358,8.254,7.1443,14.5562,14.6542,2.6053,3.2337,4.265,4.0608,3.1755,3.8005,1.5978,1.3913,4.426,4.724,11.4914,10.7039,2.8378,3.4943,2.2964,2.3743,1.8857,2.3583,12.1874,13.0189,2.1618,2.496,1.9664,2.1077,15.096,14.1058,1.5262,1.9727,1.3989,1.4476,13.344,13.1624,5.5549,5.8171,8.3019,9.0722,4.0222,3.38,10.5549,10.483,7.1236,7.2901,7.4283,7.7538,3.6638,3.8205,1.3417,1.3876,,24,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,101
+desd103,78,78,M,3.0911,2.5393,0.37516,0.40494,0.80898,0.76239,20.0226,2.9012,2.8888,50.4762,50.7717,15.5572,16.8369,200.671,191.857,2.171,3.4166,2.8482,0.723,0.60964,31.4798,32.9243,1.2369,1.3799,3.4345,3.5956,6.777,7.01,4.6514,4.8963,0.06153,5.521,2.5032,2.9866,0.38647,0.37594,4.413,4.9207,3.817,3.8937,1.8139,1.6083,9.9299,9.1459,3.036,2.6903,3.5399,3.8617,4.1195,3.9248,1.5576,1.4114,1.7724,1.6752,3.6404,3.3957,6.7819,7.1315,2.1477,2.0934,6.3087,6.1344,11.4971,11.3263,7.9171,7.39,2.1805,2.2919,4.4076,4.5886,1.867,1.9912,17.5795,18.0269,4.8301,5.8612,3.9443,3.8288,1.0743,1.1249,2.6479,2.4471,8.4067,7.366,13.2145,13.9179,2.767,3.1364,4.14,4.3142,3.332,3.1734,1.4692,1.2833,3.9916,4.0479,10.5467,10.9285,2.949,3.4943,2.3488,2.3193,1.958,2.1136,9.877,11.1945,2.2138,2.3858,2.1285,2.3682,11.8972,11.0473,1.7788,1.8446,1.1022,1.3167,15.0862,15.0046,5.6763,4.9912,7.7449,9.7778,3.9259,3.2111,9.5575,10.0293,7.3794,7.301,7.2623,7.4731,3.4093,3.3076,1.5785,1.5672,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,102
+desd104,73,73,M,1.6891,1.6088,0.37741,0.40435,0.86623,0.84337,17.8769,3.0643,2.7181,46.848,45.5447,15.1125,16.4401,237.8669,235.5834,1.6666,3.3327,3.1951,0.6202,0.57533,17.315,16.8017,1.6819,1.6904,3.4573,3.5927,6.9095,7.1101,4.5171,4.8556,0.07026,4.5578,2.0089,2.5824,0.40538,0.39964,3.9767,4.5432,4.0304,4.1379,1.9518,1.874,10.0996,9.7666,3.2433,3.1842,3.8663,3.9079,4.8374,4.7193,1.575,1.567,1.8574,2.1288,3.7899,3.8961,7.2803,7.5253,2.3691,2.3479,6.2791,6.6511,11.2911,10.5925,7.9751,7.7603,2.493,2.7266,5.0583,5.3289,1.815,1.8661,18.1561,19.2424,4.7661,6.1406,4.113,4.5732,1.1946,1.1086,2.6924,2.645,7.4767,6.5849,13.0278,12.5885,3.0377,3.2235,4.2082,4.5039,3.386,3.3622,1.55,1.964,4.0614,4.6726,10.4929,10.349,2.7635,3.0974,2.2143,2.3743,2.0598,2.4296,11.1539,13.3253,2.519,2.691,1.9752,2.1705,13.1141,13.3354,1.7196,1.9298,1.3438,1.4476,15.2896,14.8102,5.2265,5.189,7.5894,9.3438,4.4728,3.8011,10.3715,11.0531,7.4041,7.4843,7.7161,7.1663,3.5021,4.191,1.3729,1.5435,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,103
+desd105,78,78,M,2.3554,1.8026,0.32142,0.34796,0.76392,0.72214,18.2564,2.5827,2.2936,45.7654,46.5014,14.843,14.6398,214.9513,210.1924,1.6106,3.2804,3.0792,0.61913,0.55086,16.018,17.3104,1.6167,1.6486,3.2204,3.2508,6.0502,6.2886,4.4157,4.4876,0.07934,4.7047,2.2577,2.4905,0.36905,0.35968,3.987,4.1443,4.0432,4.193,1.5732,1.3699,10.3634,9.6959,2.8047,2.9589,3.4233,3.3601,4.2553,4.114,1.4693,1.4953,2.0242,2.0334,3.3553,3.3437,6.4935,6.7072,1.8146,1.9946,6.2295,5.3417,9.8271,9.8925,7.1607,6.9145,2.0761,2.0924,3.9591,3.9864,1.6487,1.4935,15.2511,15.5038,5.123,6.2788,3.5021,3.5284,1.1758,0.94038,2.6392,2.4201,6.9133,6.6773,11.8751,13.1751,2.4654,2.7195,4.0096,3.8423,3.1579,3.5102,1.4939,1.3882,3.5351,4.0042,8.5837,9.7919,2.6174,2.9555,2.4073,2.5971,2.1563,2.4116,9.2381,10.672,2.2487,2.3807,1.9749,2.1973,10.304,10.8799,1.9636,2.0038,1.0546,1.1494,13.2237,13.1403,5.1528,5.0286,7.8621,8.5889,4.1595,3.5242,10.8623,10.729,7.4041,7.3352,7.2502,6.7235,3.4653,3.8118,1.4593,1.5514,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,104
+desd106,78,78,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,105
+desd107,68,68,M,1.9094,1.6825,0.35086,0.37769,0.75449,0.73158,18.339,2.6297,2.6578,44.0377,43.0669,16.0334,15.9721,224.9161,218.3612,1.8256,2.9139,2.6341,0.88156,0.96109,20.9274,21.4459,1.6406,1.6625,3.2359,3.4259,6.4965,6.3334,4.6023,4.8619,0.07814,5.5227,2.2461,2.688,0.37744,0.38384,4.0816,4.3795,3.7994,4.3225,1.8186,1.4925,8.8971,7.9713,3.0612,2.5087,4.2449,4.0338,4.7794,4.4389,1.3864,1.3727,1.7464,1.8514,3.6079,3.4426,6.9495,6.8111,2.1785,2.0042,6.6615,6.3345,11.0511,11.6521,7.7062,7.4427,2.1805,2.4742,4.6503,4.6495,1.7718,1.7409,18.1699,19.4868,5.1801,6.0122,3.9285,3.8976,1.1534,1.1781,2.6736,2.7218,7.7032,6.6487,13.5476,13.6697,2.8595,3.6473,4.1912,4.3198,3.2782,3.3625,1.5054,1.4181,4.063,4.1658,10.0122,9.6412,2.6144,3.0296,2.1187,2.2301,2.7315,2.6709,8.407,9.4535,2.3178,2.5155,1.9056,2.1134,11.7262,11.5573,2.2245,2.3654,1.404,1.4896,13.3726,13.451,5.225,5.4896,7.6196,8.5434,4.3004,3.879,8.8861,10.6744,6.9663,7.3223,6.4587,6.6487,3.4244,4.1011,1.455,1.4024,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,106
+desd108,68,68,M,1.7737,1.6825,0.41218,0.47796,0.90295,0.84559,18.1318,2.9277,2.8569,46.848,46.062,14.1657,14.8935,205.0426,201.1678,1.4161,3.3869,3.1927,0.53646,0.60747,11.539,13.2744,1.4184,1.4046,3.8316,3.7431,6.7747,6.8888,4.2391,4.4261,0.06774,4.5578,2.1004,2.6607,0.396,0.4067,4.0148,5.0484,3.7264,3.7187,1.8044,1.5216,11.0966,9.15,3.2456,2.9452,3.767,3.7975,4.6632,4.2067,1.8231,1.7098,1.8467,1.7366,4.1116,3.7187,7.894,7.3827,2.3691,2.3994,6.3098,6.5097,11.5046,10.6593,8.1016,7.2431,2.3421,2.5254,5.0149,4.9493,1.9748,2.1069,17.4694,18.0269,5.1891,5.6598,4.0994,4.3193,1.0625,0.87314,2.7448,2.2468,8.2775,7.864,14.3491,14.599,3.084,3.47,3.9425,4.1008,3.4434,3.4407,1.5267,1.4844,4.3894,4.8098,10.7143,10.9055,3.2135,3.3232,2.2934,2.1069,2.4668,2.452,10.6031,11.0553,2.3909,2.7755,1.8061,2.1192,12.3494,11.9842,1.928,1.8785,1.1343,1.2818,14.6949,15.5816,5.3727,5.4671,8.9313,9.0983,4.3971,3.2142,10.2284,10.5715,8.0376,7.583,8.5438,7.7009,3.7418,3.5148,1.2779,1.3077,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,107
+desd109,,,M,2.0915,1.8234,0.38402,0.3701,0.80513,0.79138,20.5451,2.7109,2.3536,47.9031,47.8809,17.0926,17.357,242.2642,238.1675,1.5056,3.5434,3.2985,0.5229,0.63498,11.9006,15.3692,1.57,1.5849,2.8927,3.046,6.6309,7.545,4.8613,5.103,0.09345,4.8524,2.3034,2.517,0.36905,0.38153,4.1278,4.4821,4.1555,3.8384,1.739,1.4939,9.7901,7.9641,2.272,2.4513,3.8895,3.5407,3.6957,3.3427,1.6102,1.4774,1.9656,1.8254,3.5985,3.292,6.6092,7.0076,2.0711,1.9794,6.4408,5.5668,10.9634,10.3938,7.7853,6.9625,2.0758,2.3593,4.0757,4.4564,1.6764,1.714,17.1404,17.1605,4.7816,5.4755,3.5735,3.7272,1.1486,1.1058,2.4473,2.7089,7.4902,7.0284,13.5871,12.7654,3.1751,3.5209,4.0595,3.9033,3.0849,2.8302,1.3612,1.4082,3.9743,4.224,9.3961,8.9795,2.8873,3.139,2.2028,2.3494,2.1988,2.5638,9.3223,10.283,2.3654,2.4704,2.0243,2.2362,13.1141,14.2066,1.9636,2.462,1.1188,1.188,14.4175,14.1541,5.4416,5.845,7.3513,8.5425,3.8853,2.9982,9.2904,10.575,7.0319,7.1043,7.3667,7.5218,3.3832,3.4373,1.5205,1.6412,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,108
+desd110,66,66,M,1.8714,2.9737,0.19817,0.27353,0.74893,0.71856,15.0058,2.2682,2.2576,38.4725,35.054,12.2193,12.2415,155.842,152.4398,1.8466,2.8764,2.5777,1.0036,1.3765,20.2083,26.1031,1.2156,1.1355,2.8944,3.0905,5.0212,2.2488,3.6997,3.8378,0.07342,3.6568,1.8977,2.0875,0.27894,0.28347,3.0547,3.2107,3.3852,3.7157,1.293,1.1383,8.3049,7.6089,2.5168,2.626,3.1265,3.1499,3.1037,3.7213,1.4359,1.4531,1.5568,1.7017,2.8054,2.6506,6.251,5.6911,1.6023,1.48,5.6908,4.903,9.6125,8.338,6.11,6.1042,1.7172,1.9742,3.774,4.0693,1.2506,1.2201,14.8866,14.3917,4.5545,4.7546,2.8623,2.9419,0.75182,1.1048,1.9498,2.3047,5.4504,5.038,11.4705,10.7795,2.394,2.5733,3.3581,3.0576,2.708,2.9079,1.1581,1.259,3.2118,3.3874,8.2799,7.8937,2.4661,2.6495,1.8902,2.0758,1.5536,1.5521,8.1811,9.912,1.9813,1.9466,1.6502,2.0265,10.0125,9.5847,0.00244,1.3453,0.97633,0.79424,11.5543,11.176,4.4575,4.5485,6.8963,7.851,3.7049,2.9609,8.6072,9.0978,3.4409,5.6658,5.7369,6.3681,2.8756,2.8594,1.009,1.1861,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,109
+desd111,,,F,1.2254,0.73524,0.00009,0.16158,0.51139,0.50656,9.0519,0,0.0006,36.5871,31.6077,10.0802,8.9953,94.0231,98.56,1.2754,2.6149,2.3865,0.88682,0.59913,10.6502,10.6452,0.88805,0.95612,0.65264,0.34756,4.141,2.2812,3.7611,3.9457,0.08356,3.6008,1.8031,2.0279,0.28045,0.2964,1.9435,0.00124,0.9969,0.46849,0,0.00414,5.3578,2.2506,2.9722,3.0912,0.00002,0.30529,4.1145,3.7841,0.34445,0.9014,1.3831,0.00757,0,0,3.8349,3.9341,0.8931,0.77512,5.4694,4.6349,5.5287,6.8215,6.7317,5.6735,0.03515,0.74684,0,0,1.1938,0.03454,0,13.927,4.6532,3.9079,0.5615,2.0093,0,0,0,0,0.00038,4.8291,8.7517,9.1824,2.4852,2.5733,3.4707,3.2673,2.5538,1.4087,0.48335,0.49832,1.3853,3.7408,7.7781,8.373,2.2952,2.4325,1.3262,1.6036,0,0.02077,0.00167,0.00568,1.4502,1.9931,1.457,1.7054,0.00012,0.00038,1.5154,1.582,0.43488,0.92855,6.0263,5.9188,0,0,0.20706,1.2354,3.7911,2.3676,7.8011,8.6697,5.9671,5.4002,5.4577,5.0815,1.1485,2.5035,0.78203,1.0864,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,110
+desd112,76,76,F,1.9673,2.1503,0.35861,0.41066,0.68779,0.70386,15.8861,3.2648,3.1426,38.7047,35.1182,12.4128,12.7157,164.8177,160.3455,1.6855,2.7682,2.5093,1.277,1.6195,21.0918,28.2322,1.3283,1.3605,4.197,4.4232,5.8237,5.8946,4.2099,4.3906,0.07357,3.9415,2.0224,1.7593,0.36829,0.35794,3.6592,4.389,4.0025,4.4443,1.5163,1.312,9.7966,8.1952,2.7894,2.7036,3.9039,3.6837,3.8655,3.7368,1.3332,1.467,1.9335,1.9395,3.3008,3.0791,6.491,6.1466,1.7791,1.8205,5.3353,5.2871,9.6818,9.1264,6.0729,6.1198,1.9334,2.1102,3.9765,4.2487,1.5406,1.5482,16.9488,16.2955,4.3788,5.768,3.3425,3.4975,1.2496,1.0798,2.6036,2.549,7.2112,6.7388,11.4578,11.3677,2.1184,2.6117,3.576,3.6789,3.3829,2.7098,1.4666,1.3629,3.2455,3.8782,9.4506,9.4232,2.5847,2.6193,2.4494,2.4939,2.1145,2.3096,10.3534,11.8108,2.1623,2.2263,2.0867,2.3484,11.246,11.0993,1.7643,1.8047,1.122,1.1858,13.0925,13.3816,4.8122,4.6141,7.2411,7.4959,3.4034,3.011,8.6091,10.2199,6.9532,6.4311,6.7323,7.2069,3.591,3.4748,1.5917,1.4731,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,111
+desd113,78,78,F,2.0444,1.9177,0.32408,0.34567,0.68779,0.63576,17.8348,2.5007,2.4381,45.6943,45.6732,16.5675,17.1,233.4803,235.5425,2.3852,2.8578,2.5612,0.89895,1.3508,42.9125,44.2152,1.6255,1.6671,2.9483,3.5345,6.109,6.6574,4.5856,4.8882,0.06422,5.265,2.2732,2.7071,0.32726,0.32526,3.7329,4.4029,3.6051,3.8894,1.4529,1.3156,8.5042,7.2396,2.2766,2.6745,3.8895,3.5278,3.6178,4.2084,1.4354,1.3576,1.8667,1.881,3.457,3.1838,6.9239,6.5679,1.9131,1.8321,5.9253,5.1279,10.1157,10.0939,6.4405,6.181,1.8888,2.2508,4.0403,3.7306,1.6125,1.6697,15.9057,14.1337,4.504,4.2735,3.1633,3.3068,0.93746,0.85182,2.3765,2.3455,6.988,6.5859,12.1609,11.286,2.629,2.9729,2.8718,3.5683,2.7918,3.1947,1.3185,1.3574,3.8666,4.3803,10.6191,10.2765,2.6608,2.7836,2.1284,2.0413,2.0598,1.9104,8.9611,10.0787,2.0433,2.3422,1.9403,1.9779,10.8173,9.9515,1.687,1.6416,1.1395,1.1874,11.9794,13.9965,4.8465,4.7191,6.3937,7.854,3.2599,2.6071,9.6159,8.8138,7.1344,6.7935,7.1958,6.3351,2.7421,3.1706,1.3862,1.3749,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,112
+desd114,73,73,M,1.7782,1.8769,0.33312,0.35524,0.80725,0.80039,16.3872,2.5737,2.3883,42.9428,44.4366,13.7873,13.6501,210.1719,206.3478,1.5971,3.3738,3.111,0.6177,0.4371,16.2964,15.6225,1.3764,1.3795,3.0766,3.2674,5.9759,6.1968,4.0367,4.2692,0.07213,4.2492,2.0402,2.4515,0.34951,0.3594,3.7732,4.2505,3.7837,3.8937,1.6552,1.4523,9.622,8.5365,2.7977,2.7963,3.1711,3.7968,4.2472,4.0439,1.668,1.5917,1.9503,1.9246,3.4718,3.1771,6.7028,6.8122,2.0011,2.1391,5.5253,5.1719,10.1979,9.7307,7.2804,6.518,2.1651,2.2633,4.5201,4.3607,1.8351,1.771,16.9019,16.8676,4.5832,5.2048,3.6554,3.8401,1.0472,1.101,2.4465,2.4593,7.3224,6.5865,13.7425,12.9115,2.6285,2.7303,3.8391,3.6074,3.341,3.1727,1.4922,1.3509,3.8115,4.1069,9.7858,10.0684,2.8215,3.2074,2.1178,2.2312,1.7421,2.0994,8.5765,9.6135,2.0923,2.2325,1.8649,2.0482,11.4796,11.3869,1.618,1.8025,1.1997,1.2275,12.7223,13.2205,4.8783,5.1386,7.2817,7.5987,3.9745,3.4355,9.4762,9.8267,6.3043,6.5229,7.3106,6.9902,3.4062,3.6222,1.2927,1.5286,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,113
+desd115,70,70,F,1.4797,1.6845,0.30608,0.32521,0.61742,0.55372,14.5161,2.3103,2.224,36.7519,36.7788,11.1152,11.2156,155.8267,154.0648,1.5709,2.554,2.3964,1.2937,1.3233,12.8318,17.155,1.3705,1.3058,2.877,3.0188,5.5258,5.3712,3.7621,3.9915,0.06387,4.0486,1.6853,2.0749,0.29277,0.31519,3.6232,3.5615,3.3663,3.6208,1.4324,1.3371,8.1283,7.3711,3.0698,2.9269,3.8102,3.659,4.4469,4.2504,1.1621,1.071,1.7031,1.6617,3.1985,2.8818,5.6155,4.9533,1.7184,1.8211,5.3178,4.6545,8.7021,5.4301,7.4337,6.9936,1.8575,2.0668,4.08,3.2876,1.4334,1.4253,14.7917,14.3917,4.4364,4.699,3.1511,3.348,0.86595,0.99356,1.8906,2.1825,6.357,5.7841,11.6544,8.7619,2.2418,2.7388,3.9017,3.794,3.1371,3.0791,1.211,1.1944,3.5566,3.9031,8.0695,8.4152,2.3769,2.5337,2.0359,1.9671,2.0186,1.9224,9.2046,9.4049,1.9175,1.9543,1.7177,1.756,10.0972,10.6331,1.5651,1.5971,1.0735,1.1186,11.7783,12.6023,4.2906,4.1638,6.1333,7.0676,3.3486,2.789,9.3038,10.0089,6.839,5.4729,7.0344,6.576,3.1351,3.1315,1.3323,1.4343,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,114
+desd116,68,68,M,1.8597,3.3485,0.41779,0.45137,0.84385,0.87536,20.0511,3.4665,3.2867,50.8088,52.0304,17.3021,17.9163,244.7943,236.2561,1.4013,3.4804,3.2747,0.66291,0.86925,18.3746,18.7512,1.6981,1.7045,3.7896,3.9279,7.2191,7.6457,4.9062,5.0581,0.08937,5.1803,2.4314,3.1022,0.41184,0.39288,5.2074,5.2847,4.927,5.0384,1.9587,1.8149,13.0456,10.5443,3.3212,3.0346,4.6043,4.4329,4.9356,4.2724,1.7166,1.6786,2.0358,2.1122,4.3098,4.1818,8.2928,7.7808,2.5943,2.687,7.0655,6.8881,13.1288,11.3466,8.7273,8.2718,2.3336,2.6036,5.082,5.0043,2.1888,2.1174,21.2925,21.0629,5.5575,6.5476,4.35,4.6246,1.1214,1.282,2.8519,2.9983,8.9555,8.1268,17.2692,15.1973,3.7035,4.0524,5.0129,4.6758,3.9458,3.206,1.6757,1.6983,4.667,5.4284,12.5485,13.1864,3.1566,3.5841,2.6482,2.5969,3.2482,2.6774,10.9437,10.8701,2.3994,2.594,2.5367,2.7526,13.1514,13.5991,2.2641,2.1913,1.5271,1.5359,15.5987,17.0909,6.0927,5.8365,9.3326,9.7432,4.6967,3.4209,10.6237,11.8244,8.583,8.6959,8.592,8.0872,3.9384,4.4044,1.8975,1.699,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,115
+desd117,69,69,F,1.5107,1.7982,0.32204,0.3637,0.80181,0.82209,14.5773,2.4055,2.2554,37.0575,37.9211,10.8299,10.9588,195.4017,194.5846,1.4373,3.1302,3.0526,0.91587,0.57124,9.7001,11.9184,1.3054,1.2801,2.9175,3.0858,5.9675,6.3845,3.8928,4.0697,0.07283,3.5114,1.7341,2.1023,0.34264,0.35883,3.753,4.0426,3.8315,3.8088,1.6455,1.563,10.3271,9.2931,2.7214,2.5355,3.5283,3.4761,3.9193,3.8232,1.4945,1.5631,1.8398,1.7378,3.3839,3.268,6.491,6.5727,2.0423,2.0206,5.202,5.3421,10.4349,10.0482,6.8722,6.2007,2.1152,2.2386,4.3939,4.6442,1.8351,1.6281,16.273,17.9973,4.3988,4.9917,3.6249,3.9652,0.86718,1.0718,2.3197,2.5646,6.6768,5.8604,13.4782,12.9215,2.2073,2.4851,3.6552,3.6789,3.3216,3.0267,1.3571,1.4634,3.4679,3.9003,9.5692,10.4289,2.6424,2.979,2.1178,1.9715,1.8668,2.2208,8.9747,10.3273,2.2909,2.5923,1.7444,1.9636,10.969,12.1035,1.7638,1.5331,1.1198,1.0429,14.2012,13.6172,4.5228,4.7192,7.8793,8.1314,3.3676,2.636,9.405,10.6911,7.1533,7.037,7.3909,6.8558,3.5618,3.639,1.2459,1.2654,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,116
+desd118,62,62,M,1.7427,1.8381,0.39299,0.46279,0.88817,0.84559,18.8525,3.1739,3.1874,43.1093,42.0541,14.8142,15.6924,220.49,211.7031,1.9797,3.3869,3.1069,0.6202,0.48943,23.9601,26.0747,1.6076,1.6259,3.2779,3.4616,7.4431,7.1391,4.7611,4.9977,0.09828,4.1392,2.0434,2.4111,0.41184,0.39221,4.1313,4.8432,3.9964,4.2539,1.9347,1.8069,10.2318,8.6158,3.233,3.2388,4.0376,4.2215,4.9237,4.382,1.7055,1.5735,1.9041,1.9723,3.7308,3.8961,7.1771,7.1705,2.3976,2.3139,5.7775,6.2385,11.0364,9.9995,8.1675,7.031,2.4205,2.9018,4.3397,3.9488,1.9747,2.0006,18.2751,18.7104,5.0966,5.7884,4.113,4.4401,1.3629,0.99196,2.8271,2.5647,8.4474,7.2136,13.5985,13.3602,2.4513,4.0712,4.0858,4.1489,3.473,3.7584,1.6043,1.8233,4.4721,4.9408,11.1725,11.0417,2.9938,3.2237,2.3357,2.1631,2.548,2.3668,9.4866,10.8438,2.9609,3.063,2.0373,2.4078,12.1052,12.6951,1.9788,2.4575,1.2807,1.3146,14.4424,14.5211,5.1721,5.5874,7.9431,9.5454,4.1039,3.7429,10.1514,11.599,7.1765,6.757,7.932,7.7769,3.7857,3.8605,1.421,1.6804,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,117
+desd119,68,68,M,1.7106,2.1247,0.41158,0.46097,0.96258,0.97955,20.8786,2.7537,2.96,44.9029,46.6539,14.8788,15.2766,236.4197,235.0482,1.582,3.6778,3.6464,0.9219,0.82917,16.9487,20.6057,1.6725,1.6611,3.8116,3.922,7.5697,7.4687,4.949,5.103,0.08648,4.1815,1.9299,2.493,0.42072,0.4264,4.6799,5.0841,4.2613,4.5901,1.8335,1.5872,11.4886,9.7685,4.2051,3.6806,4.329,4.6948,5.2677,5.4507,1.9382,1.799,2.2748,2.048,4.7077,4.0207,8.1722,8.1165,2.1071,2.1847,7.611,7.5108,12.4884,12.533,8.2528,7.7407,2.44,2.4643,5.134,5.3642,1.9128,1.8702,21.0876,22.995,6.0566,6.459,3.989,4.2002,1.0775,1.4265,2.4162,3.2474,8.4474,7.4916,15.9716,14.5309,3.9931,4.0524,4.6581,4.7609,4.1181,3.4357,1.6686,1.6744,4.5952,5.2682,12.5596,11.4987,3.2419,3.4822,2.5205,2.5786,2.2298,2.3546,11.659,13.0931,2.6084,2.7591,2.2845,2.5134,13.9001,15.1703,2.0578,1.9948,1.2925,1.3596,15.9411,15.5481,6.3356,6.1272,7.7676,8.9635,4.9057,4.5227,10.9949,10.5739,8.3,7.5284,8.7938,8.7411,3.6455,4.2773,1.6697,1.884,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,118
+desd120,63,63,F,0.947,1.4228,0.338,0.36871,0.78938,0.73163,14.9846,2.4974,2.5269,37.2014,37.5008,12.8538,13.067,206.6841,204.0367,0.85575,3.0099,2.9228,0.4904,0.37352,9.5205,9.8829,1.3678,1.3795,3.6119,3.6167,6.6087,7.2292,3.7973,4.0073,0.05472,4.4555,1.9186,2.1231,0.33271,0.34819,3.4942,3.9099,3.7826,3.9087,1.6024,1.3806,9.1163,8.4283,3.4125,3.623,3.9589,3.8098,4.6451,4.2839,1.4466,1.3727,2.0596,1.7312,2.9616,3.2293,6.6275,6.4713,1.8239,2.1122,6.0335,5.6966,10.4005,9.3001,7.151,7.1164,1.9596,2.0619,4.1951,4.3926,1.5572,1.5371,15.7002,15.3404,4.7725,6.1161,3.3833,3.6508,0.95289,0.95416,2.3342,2.1599,6.8024,6.171,13.0276,12.1185,3.4065,3.5209,3.8708,4.0099,3.2295,3.5236,1.399,1.2897,3.3562,3.3135,8.8094,8.9741,2.619,2.8218,1.9479,2.0758,2.1452,2.3381,9.367,11.8537,2.133,2.2076,1.8385,2.0571,12.5547,12.1891,1.969,1.9839,1.054,1.0628,13.7446,14.6558,4.7906,4.5418,7.9005,8.8249,4.2942,3.1983,9.6935,9.4147,6.3966,6.0232,7.3189,6.7462,3.591,3.4934,1.4022,1.491,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,119
+desd121,74,74,M,1.9976,2.6574,0.37359,0.40365,0.80898,0.84055,18.139,3.4004,3.1726,46.4549,46.4122,13.2315,13.1926,186.3442,188.7927,1.4848,3.2198,3.0054,0.697,0.63192,18.6368,20.5572,1.5003,1.4767,3.4841,3.6449,6.7414,7.0201,4.496,4.7381,0.07735,4.3414,2.1092,2.7387,0.35365,0.39845,3.7748,4.3216,3.7994,3.9673,1.6703,1.424,11.5015,10.5471,3.0608,2.6204,3.8993,3.8726,3.9569,4.0097,1.6281,1.7096,2.0217,1.9523,3.3553,3.1806,7.8632,7.2287,2.0211,1.9686,6.7955,7.0548,12.2909,12.1495,8.1904,7.5048,2.1988,2.2419,4.0911,4.5869,1.803,1.6942,16.7345,16.5372,5.2877,7.0711,3.6591,3.7484,0.95122,0.98826,2.516,2.4715,7.7053,6.6879,16.5679,14.8551,3.5384,4.0804,4.222,4.7097,3.614,3.6341,1.4668,1.4551,3.9418,4.2619,9.862,10.3953,2.8337,3.2276,2.1271,2.1922,2.1405,2.0094,9.398,11.1207,2.3581,2.4598,2.0512,2.2792,12.9492,12.1891,1.7931,1.8409,1.404,1.4052,14.0826,14.2731,5.5314,5.1182,7.8423,8.5608,5.1031,4.2271,10.3213,9.7753,6.6149,6.9714,8.0029,8.3303,3.5707,3.8957,1.5601,1.5567,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,120
+desd122,77,77,F,1.5285,2.0916,0.38851,0.43293,0.82649,0.79891,15.8825,2.7961,2.753,39.8187,39.5951,12.0168,12.0742,219.7823,218.0444,1.4932,3.276,3.4019,0.39191,0.40243,9.3245,11.4231,1.4165,1.3738,3.7056,3.6962,5.7788,6.1208,4.1214,4.2939,0.07157,3.8669,1.8414,2.2057,0.38884,0.38596,4.0313,4.4341,4.0442,4.1215,1.047,1.5165,10.5402,8.65,2.8545,2.7239,3.6865,3.7297,4.2182,4.6735,1.5984,1.4048,2.1033,2.0148,3.1918,2.9635,6.7859,6.1466,1.8217,2.1075,6.1011,5.9517,11.252,9.242,7.457,6.4974,1.7172,2.4377,4.4082,4.6191,1.5811,1.7626,18.8515,19.0436,4.8132,5.6393,3.3879,4.132,0.86988,0.94417,2.0692,2.4319,7.4924,6.6947,12.6504,12.8625,2.6292,3.1976,4.0096,4.052,3.7049,3.3111,1.493,1.5862,3.6269,4.0267,9.6531,9.4623,2.8414,3.1342,2.1732,2.2121,1.9497,2.1131,9.8283,10.0157,1.8589,2.3806,2.0243,2.1588,10.8167,9.8087,1.6954,1.9001,1.1512,1.1818,13.8315,13.2583,5.1062,5.6746,7.7316,7.5155,4.204,3.6297,9.2928,10.6744,6.8712,7.2854,7.7847,6.6556,3.4369,3.4383,1.3584,1.3603,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,121
+desd123,65,65,F,1.0614,2.0142,0.42838,0.46487,0.97755,0.99325,20.7412,3.2269,3.1873,54.1172,51.1016,16.8646,17.0034,238.5124,235.0903,0.98689,3.73,3.7705,0.49432,0.51393,11.3638,17.1136,1.7132,1.7342,3.8073,3.9279,8.4121,8.3647,4.949,5.103,0.08763,5.1803,2.4314,2.8277,0.41989,0.39329,4.4445,5.0058,4.3715,4.5444,2.1057,1.8698,10.7409,10.6139,3.9552,3.877,3.9169,4.1647,5.1616,5.3907,1.9183,1.8532,1.9307,2.3372,3.7273,3.7524,8.1061,7.7808,2.2496,2.031,7.7388,7.0699,13.085,12.6202,9.7277,8.1808,2.5657,2.8515,5.2704,5.76,2.0804,2.0161,19.4148,19.4226,5.9963,6.283,4.1489,4.2163,1.2839,1.1651,2.8146,2.8053,8.7683,7.5771,15.3481,16.1575,3.4887,3.8068,4.8411,4.9054,3.8269,3.6131,1.7302,1.597,4.6767,5.319,12.1176,12.5599,3.1361,3.4016,2.5382,2.6056,2.3964,2.2755,13.1736,13.663,2.7044,2.8759,2.0654,2.5826,13.9001,13.9171,2.0604,1.8219,1.3666,1.4442,15.8485,16.3673,5.5959,6.0978,9.3329,10.4137,4.7164,4.1028,12.1298,11.8495,7.9287,7.8247,9.5512,10.4928,3.5686,4.3187,1.4135,1.7839,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,122
+desd124,72,72,F,0.97687,1.0427,0.08978,0.00296,0.61379,0.57692,17.0389,1.107,0.00029,41.548,39.5261,13.5685,14.195,76.6563,98.56,1.1125,2.6107,2.3076,0.79701,0.56191,11.6728,13.7295,0.81757,0.8757,2.1838,0.32999,1.9192,2.2488,4.3212,4.8843,0.08831,4.5306,2.0428,2.3454,0.27894,0.28477,4.133,0.00124,0.9969,3.1873,0.0014,0.00414,7.8428,5.0961,2.9722,2.6232,0.00002,2.1042,3.8996,3.6052,1.1199,1.1591,0.00088,0.00001,0,0,3.8349,6.1889,0.51662,0.77512,4.9385,5.2871,7.4539,9.6013,7.1065,6.2984,0.67733,0.74684,0,0.00012,0.66198,0.25043,0,0,3.8656,4.3309,1.0463,1.6916,0.86988,0.92442,2.2305,1.7162,3.9657,0.00046,8.7517,10.794,2.4347,2.3928,3.6369,3.5476,0,0.00015,0.00987,0.65244,1.3853,3.3313,8.3606,8.2426,2.3932,2.6127,1.8084,1.9431,0.53142,0.78485,0,8.1361,1.8547,0.90385,1.7635,1.6021,6.3496,9.7042,0.00244,1.6744,0.55918,0.79424,0.00055,10.7096,0,3.5064,5.1788,5.7734,3.3046,2.8935,7.6841,8.0135,5.8192,3.8933,6.3459,6.1399,0,0,0.78203,1.0059,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,123
+desd125,,,M,3.2846,3.6291,0.38883,0.41851,0.91033,0.7787,18.92,3.1409,2.8943,49.4867,50.7717,14.2442,14.8935,200.6661,191.4103,2.9538,3.4705,3.3032,0.723,0.9025,33.5477,32.1618,1.4935,1.4795,3.4167,3.5025,6.5265,6.5896,4.6781,4.8258,0.06422,5.3158,2.4619,2.8048,0.40229,0.41953,4.3437,4.7927,4.1966,4.3594,1.6826,1.3355,8.9804,8.6024,4.1188,3.6852,4.058,4.1343,5.4218,5.4245,1.831,1.5806,1.9178,2.0259,3.4554,3.0266,7.5851,7.5475,2.01,2.0713,6.8691,6.6759,11.6844,10.6071,8.6267,8.3281,2.0355,2.0016,4.6909,4.7431,1.8667,1.638,16.5951,16.9671,5.1801,6.3818,3.6362,3.8194,0.95943,1.1203,2.3193,2.7707,8.2489,7.0379,13.8578,13.8302,4.4348,4.0946,4.4752,4.6941,3.652,3.5708,1.4614,1.425,4.1098,4.4787,10.8854,10.3925,3.3305,3.3571,2.4688,2.5682,2.2698,2.1531,8.9765,11.6356,2.0801,2.3082,2.1183,2.4406,10.3754,11.2965,1.7379,1.8754,1.2933,1.2777,14.1835,14.9559,5.5426,5.7578,7.3672,8.2916,4.5674,3.7598,10.0449,11.021,7.484,7.1273,8.383,7.9545,3.4516,3.713,1.3658,1.5647,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,124
+desd126,78,78,F,2.6213,1.6601,0.30493,0.30698,0.69194,0.68323,16.5482,2.6305,2.3544,43.9449,42.9721,12.5217,13.1971,182.2084,180.6172,2.739,3.0506,2.9325,1.4552,1.3759,32.0847,27.6636,1.6206,1.5737,3.0487,3.0327,6.4526,6.5612,4.5871,4.78,0.0742,4.791,2.2339,2.5305,0.35638,0.31393,4.6707,4.7088,4.6534,4.4768,1.6715,1.3311,7.1019,8.3197,2.4866,2.3553,4.103,3.6261,3.9498,3.4998,1.2676,1.2548,1.647,1.9302,3.6471,3.3587,5.9779,6.184,2.01,2.0723,5.5449,5.7125,8.1016,9.3124,7.0298,6.3731,2.1543,2.2472,4.6155,4.7073,1.7976,1.9573,17.3195,17.4774,4.4185,4.831,3.741,3.7339,0.96211,0,0,0,8.1859,7.0865,9.9196,10.6656,2.5401,2.97,3.9142,3.7672,2.8762,2.8007,1.4123,1.5697,4.1182,4.4056,10.4842,10.1246,2.7822,2.8687,2.7653,2.7114,1.9538,2.399,9.4062,10.8398,1.9507,2.5923,2.2659,2.6109,12.413,12.1891,1.9026,2.0921,1.0818,1.2068,13.6742,14.2183,5.3303,5.1639,7.0237,8.661,3.8696,2.6645,10.1684,9.5733,5.8004,5.5943,6.7056,7.3564,2.9811,3.1545,1.5637,1.7596,,13,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,125
+desd127,84,84,F,1.1814,1.3358,0.33228,0.3078,0.72047,0.75972,15.3461,2.8386,2.424,36.0805,35.768,11.5711,11.7821,190.6644,191.4973,1.2126,3.0429,2.8656,0.49291,0.49947,10.7542,11.4231,1.2675,1.2698,3.0508,3.0403,5.7971,5.8214,3.583,3.6547,0.08356,3.6008,1.8249,2.1906,0.39393,0.38098,3.9022,4.2462,3.7727,3.9851,1.6824,1.5717,9.8651,8.867,2.5118,2.6576,3.4372,3.5089,4.456,4.1151,1.3962,1.4737,1.9548,1.9079,3.3744,3.1138,6.5553,6.3805,2.0447,2.1454,6.044,5.9437,9.8718,9.9259,5.8811,6.2255,2.1145,2.328,4.7753,4.7252,1.8351,1.7607,16.202,16.2071,4.3612,6.1887,3.8381,3.9634,0.81059,1.0312,2.4699,2.5356,7.5331,6.4019,11.8751,12.5685,2.1902,3.1491,3.3293,3.2395,3.7248,3.7596,1.6195,1.4598,3.5992,3.9134,10.7288,9.9496,2.5847,2.7332,2.0377,2.1205,2.0738,2.0871,9.0376,11.3727,2.1154,2.5267,2.0082,2.0374,10.7378,11.5078,1.7546,1.6876,1.1435,1.2048,12.6128,13.2426,4.9768,4.9899,7.2187,8.4996,3.7321,3.3715,10.9059,10.3844,6.9538,6.1527,7.2049,6.9879,3.7315,3.9146,1.3266,1.3702,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,126
+desd128,,,M,3.2846,1.8463,0.37706,0.42415,0.81764,0.8298,17.815,2.9475,3.0729,47.1015,47.6829,14.1082,14.456,205.0426,202.681,3.7567,3.4931,3.4276,1.1632,0.81228,27.4336,25.9158,1.5525,1.4988,3.5342,3.7316,7.2128,7.2452,4.6513,4.9142,0.08959,5.0169,2.4095,2.6607,0.46289,0.44193,4.6927,5.0519,4.9298,5.0997,1.7314,1.5185,8.765,8.4519,3.5259,3.2925,4.479,4.7189,5.1205,4.9089,1.6592,1.671,1.9532,2.0396,3.6164,3.4402,7.4447,7.3032,2.1532,2.1913,6.3129,6.6013,11.7256,11.0933,8.6267,7.9709,2.3364,2.4132,6.1433,7.4817,1.8636,1.9333,18.0466,18.7331,4.9686,5.9184,3.8157,3.9267,1.0921,1.3141,3.0654,2.9983,8.0824,7.5365,14.0727,13.4861,3.1577,3.5537,4.14,4.6941,3.7043,3.4439,1.6705,1.5328,4.2702,4.7489,11.966,11.4003,3.0825,3.3311,2.6482,2.6767,2.2216,2.4349,9.8726,11.0974,2.4355,2.5491,2.2133,2.8207,13.0102,12.3724,1.9862,2.1074,1.2933,1.2789,15.517,15.1134,5.3775,6.4636,7.7342,8.0099,4.8341,3.9651,12.3532,11.5268,6.9062,6.3731,7.6612,7.7587,4.2839,4.0213,1.6686,1.6912,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,127
+desd129,71,71,F,1.7152,2.1247,0.30214,0.32609,0.59381,0.56468,14.5522,2.3875,2.4308,35.6957,36.9739,10.8299,11.1161,163.5324,160.3455,1.6263,2.5906,2.3865,0.70902,0.84058,16.1464,14.3974,1.1776,1.2209,3.2657,3.1877,5.7713,5.908,3.6515,3.8383,0.0668,3.5022,1.7419,2.2026,0.32475,0.32011,2.8713,3.5612,3.082,3.2009,1.2616,1.2674,8.5819,7.3052,2.9937,2.7883,2.9388,3.1499,3.6222,3.349,1.1052,1.0259,1.3754,1.4358,2.924,2.9207,5.785,5.2805,1.5507,1.5884,5.3459,4.7825,9.1119,9.0866,6.6465,5.6735,1.6305,1.7794,3.9474,3.2876,1.3504,1.4116,15.6446,14.9308,4.4185,4.699,2.8596,3.2702,0.91522,0.95454,1.9861,2.0616,6.2177,5.7511,11.1185,11.8429,2.3504,2.6527,3.4823,3.3195,3.2769,2.7994,1.0699,1.0839,3.4858,3.793,8.2805,8.9246,2.293,2.4247,1.8084,1.812,1.5889,1.9155,8.8486,9.5542,1.9193,1.9514,1.624,1.8708,10.3155,10.6862,1.3661,1.5083,0.99742,0.99286,11.9137,12.2212,4.577,4.4989,5.934,6.8321,3.0572,2.772,8.4191,10.605,6.0248,6.018,5.7754,6.0501,2.844,2.934,1.2209,1.0805,,25,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,128
+desd130,71,71,M,2.5429,2.2419,0.39851,0.41387,0.85168,0.87128,20.4912,3.4126,3.292,44.0619,48.1425,14.9431,16.1352,243.9959,235.9845,2.3378,3.3612,3.1863,1.0172,1.1391,31.0961,35.8274,1.6508,1.6135,3.564,4.0526,7.0978,7.645,5.179,5.5917,0.0837,4.6172,2.1257,2.5363,0.40169,0.39288,4.143,5.0062,4.2508,4.0762,1.8335,1.492,10.4493,9.4514,3.5653,3.2987,4.3249,4.2639,4.7629,4.6747,1.5978,1.5289,1.9812,1.9114,3.89,3.716,7.7197,8.0385,2.1121,1.861,7.3873,5.9553,12.3394,11.8236,8.4486,7.895,2.2754,2.3409,4.9078,5.164,1.9846,1.8644,19.0468,20.7362,5.4709,6.1279,4.2,3.8396,1.1946,1.0477,2.3501,2.3342,8.5302,7.2792,15.1353,14.4218,3.1322,3.9171,4.5601,4.3266,3.0884,3.215,1.4141,1.6012,4.1098,4.2422,11.2018,11.3547,2.9925,3.2449,2.8719,2.4977,2.4557,2.6107,10.9354,11.4652,2.384,2.5227,2.4329,2.5305,11.9639,10.5878,2.0007,2.314,1.3844,1.4499,15.0529,15.5509,5.5665,5.677,8.4129,8.8502,4.3743,3.269,11.2587,11.59,6.9815,7.7327,7.5089,7.2254,3.1875,3.9585,1.7121,1.8672,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,129
+desd131,77,77,F,1.3969,1.6251,0.3667,0.40996,0.80319,0.78801,16.0067,2.7406,2.7731,39.8187,40.0559,11.5711,12.3842,222.8908,219.2785,1.0389,2.7104,2.9587,0.41045,0.47194,8.7354,8.9561,1.3347,1.3672,3.3123,3.4984,6.5152,6.6266,4.1878,4.425,0.07406,3.7976,1.9454,2.3656,0.36306,0.35908,3.7742,4.5673,3.8245,3.708,1.925,1.6403,10.3245,8.9469,3.2507,3.4869,3.975,3.6877,4.6443,4.7757,1.6478,1.4683,2.0596,2.019,3.6771,3.4071,6.967,6.7018,1.9718,2.0739,6.0955,6.1595,10.7519,10.4886,7.4103,7.2027,2.2146,2.5249,4.1951,3.9037,1.665,1.7653,18.7904,19.0436,5.249,5.8987,3.9613,3.8823,1.149,1.0132,2.3706,2.5952,7.6361,6.7603,13.1632,12.9215,2.7967,3.3613,3.8176,4.0099,3.2773,3.5102,1.5666,1.6799,4.0465,4.3793,10.2035,10.4622,2.7705,2.8295,2.1981,2.2121,2.2397,2.265,9.7286,11.5521,2.0726,2.432,2.2013,2.1437,13.7294,14.2066,1.8825,1.9472,1.0058,1.1418,15.0981,14.7358,5.7842,5.7834,7.8793,8.2916,4.0534,3.8516,10.7547,10.8141,7.4092,7.3126,7.0993,6.8292,3.372,3.8793,1.7493,1.6046,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,130
+desd132,65,65,F,1.3317,2.6417,0.33046,0.38328,0.88578,0.9011,15.9099,2.7801,2.6657,46.6869,46.7941,12.2852,12.8402,195.4017,191.6235,1.0805,3.1976,3.0452,0.76116,0.74344,21.4528,22.8015,1.4317,1.3632,3.5721,3.5654,6.7328,6.9254,4.0316,4.3083,0.07738,4.8149,2.4087,2.3526,0.34166,0.37409,3.689,4.4399,3.5452,3.6634,1.6289,1.4833,12.0358,9.8041,3.8947,3.6397,4.0322,4.0472,5.8685,4.8355,1.8278,1.6341,1.9458,2.0205,3.4846,3.268,8.1453,8.0387,1.9123,1.8568,6.8062,6.1348,12.1398,12.2544,9.0811,7.7076,1.9995,2.2419,4.0733,4.2487,1.7256,1.8406,16.6894,17.8445,5.1891,5.8435,3.5505,3.5377,0.95715,1.086,2.1619,2.5842,7.6757,6.5605,14.027,14.667,2.9056,3.3102,5.0403,5.2773,3.4757,3.6286,1.4048,1.4598,3.745,4.0424,10.7288,10.5432,3.052,3.2431,2.3245,2.3193,2.2849,2.1531,10.65,11.7391,2.133,2.3013,2.0354,2.5504,11.2796,11.8026,1.9978,1.9056,1.1433,1.1931,15.517,13.3558,4.8345,4.9149,7.9781,9.0722,4.0545,4.0134,10.1367,10.7538,6.8531,7.4313,8.145,7.8968,3.5707,3.876,1.5601,1.6201,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,131
+desd133,80,80,F,1.4798,1.6062,0.29367,0.35503,0.74098,0.66949,19.3377,2.4566,2.4381,44.1686,44.4746,14.6805,15.6924,208.0846,199.2788,1.5677,3.1431,2.9396,0.77148,0.55524,11.4556,11.4524,1.5667,1.5621,3.0753,3.1295,7.0385,7.1107,4.5223,4.78,0.07937,4.7616,2.1792,2.5975,0.33802,0.32938,4.014,4.2455,3.5752,4.0666,1.7692,1.5632,9.768,9.4621,2.8765,2.8053,3.7881,3.6886,4.2208,4.0817,1.4599,1.2548,1.9501,1.9234,3.8571,3.3237,6.9239,7.0446,1.6926,1.7617,5.9028,5.7301,10.1361,10.4634,7.2789,7.1987,2.0758,2.4377,4.5338,4.5069,1.5598,1.7034,18.5382,18.6762,4.56,5.1462,3.572,3.8498,1.0455,0.94038,2.5015,2.3337,7.2669,6.6771,12.5616,12.5638,2.818,3.282,3.5627,3.8354,3.6352,3.337,1.4431,1.5583,3.7788,4.1181,9.8708,8.9795,2.7849,2.8722,2.3245,2.4469,2.1324,2.4509,9.3621,10.0157,2.2578,2.2947,2.1158,2.2828,11.9313,11.7583,1.6475,2.0461,1.1353,1.1825,15.2759,13.7535,5.0504,4.9993,7.3955,7.9466,3.9385,2.932,9.4038,9.8225,6.4901,7.3101,6.9366,7.06,3.2606,3.9061,1.299,1.5727,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,132
+desd134,67,67,M,2.0299,2.3465,0.40465,0.46097,1.0559,1.0389,21.4893,3.0841,2.9926,56.6536,56.9775,16.0141,16.4765,261.275,255.7585,1.8762,3.9872,4.4519,0.54138,0.52111,17.6306,18.95,1.703,1.7045,4.5594,4.1137,8.2756,8.5587,5.0063,5.3616,0.08927,5.3382,2.5426,3.2572,0.43993,0.42072,5.0313,6.2693,4.2613,4.8254,1.8561,1.5044,11.0375,10.4278,3.5269,3.7533,4.1051,4.3044,4.9765,5.0715,2.1363,1.8749,2.0501,2.0053,4.3523,4.1805,8.6655,8.6057,2.3453,2.3903,6.5246,6.2247,12.7428,12.5009,8.4069,7.61,2.6095,2.4884,5.5249,5.5629,1.9699,1.7924,21.6418,21.8987,5.5605,7.5661,4.3291,4.5908,1.104,1.1651,2.711,2.5419,9.1858,8.0272,16.2557,15.24,3.2392,3.5588,4.4381,4.3997,2.8235,3.4886,1.7978,1.5529,4.1235,4.4808,10.3087,10.129,3.6548,3.5329,2.5473,2.6615,2.2,2.3546,12.1582,12.4476,2.625,2.4762,2.5395,2.7685,13.9635,15.0168,1.942,2.2687,1.2302,1.3364,17.0532,14.0924,6.077,6.6482,8.9082,10.0076,4.5474,3.8774,12.1353,11.7601,7.9658,8.5007,8.592,8.4546,3.8973,3.9893,1.5237,1.6449,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,133
+desd135,76,76,F,1.2064,1.688,0.36376,0.40699,0.79481,0.81121,16.4464,2.8302,2.7236,45.4266,45.8795,13.4651,13.7074,222.5085,218.0444,1.0976,2.8776,2.8595,0.69273,0.59913,14.9818,18.4698,1.4824,1.5196,3.5759,3.7459,5.8994,6.5324,4.1389,4.377,0.07934,4.5442,2.1287,2.5065,0.35599,0.34714,3.8566,4.2396,4.0432,4.3491,1.6198,1.424,10.2123,9.2931,2.8545,2.4821,3.7618,4.0026,4.3337,4.3004,1.4613,1.5651,1.955,2.028,3.4477,3.2115,7.167,6.8239,1.8119,2.0083,5.6115,5.3327,11.7899,10.455,7.1358,6.6851,2.1988,2.2401,4.5323,4.427,1.6025,1.6783,16.898,16.0011,4.9089,6.2788,3.4502,3.7084,0.9308,0.94606,2.4373,2.3596,6.9936,6.5146,14.5319,12.5885,2.6264,2.9748,3.7202,3.724,3.614,3.0803,1.6746,1.4658,3.6985,3.9552,9.785,9.925,2.7711,2.9354,2.482,2.719,2.3869,1.9805,9.3051,10.6611,2.3685,2.3577,2.2022,2.3784,10.6051,11.4368,2.1924,1.6056,1.1622,1.1489,13.069,12.771,4.7457,4.1712,9.2243,8.0408,3.907,2.8281,9.6342,10.1731,8.2144,6.9651,7.2502,7.4169,3.384,3.5532,1.5173,1.4384,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,134
+desd136,70,70,F,1.9017,1.7396,0.30692,0.33912,0.73639,0.75437,16.6514,2.2641,2.3089,40.1162,41.3507,13.9708,13.9549,219.0305,208.5733,2.2077,3.0009,2.8124,1.2669,1.2296,23.9601,28.1178,1.5007,1.4552,3.0136,3.3269,5.4271,6.0814,4.2798,4.6028,0.08474,4.3013,2.0402,2.4745,0.41304,0.3861,4.6665,4.5768,4.4494,4.8529,1.8315,1.453,12.0143,8.6865,2.7214,2.4011,4.479,4.3391,4.4505,3.7273,1.4172,1.4425,2.088,2.0518,3.6334,3.3457,6.9071,6.8231,2.0793,1.948,5.4261,5.6019,10.7731,10.131,6.9075,6.6139,2.0878,2.1075,4.4752,4.4217,1.8179,1.7203,15.0889,16.1093,3.8083,5.1746,3.7058,3.7272,1.161,0.84283,2.8441,2.3498,7.4045,6.9862,13.5638,12.5934,2.4921,3.2088,3.8105,3.8423,3.2295,3.2799,1.4431,1.4222,3.7788,3.9774,10.5466,10.1569,2.6235,2.7702,2.6974,2.5927,2.3873,2.4892,9.8726,10.8337,2.3103,2.4992,2.1795,2.3669,10.5172,11.0202,1.9195,2.2623,1.3271,1.3703,13.2237,13.2744,5.184,4.9853,7.6472,7.8636,3.7281,2.7232,10.6498,11.021,7.0378,6.9033,6.5625,6.366,3.0674,3.7842,1.7607,1.8382,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,135
+desd137,85,85,F,1.772,2.1606,0.28582,0.31392,0.64989,0.63575,17.5521,2.7154,2.424,52.3719,51.7551,13.1793,13.5793,171.0863,167.2846,1.8472,2.9906,2.8025,2.2907,1.5853,34.6058,34.8398,1.4831,1.4867,3.1413,3.003,5.6714,5.9888,4.4153,4.6199,0.06925,5.1093,2.3297,2.7349,0.34766,0.32086,4.1125,4.228,3.6817,3.937,1.448,1.287,8.3589,6.0317,2.8653,2.9113,3.5283,3.9159,4.0084,3.6558,1.3234,1.137,1.8373,1.8077,3.4367,3.0718,6.9239,6.7018,1.6777,1.6461,6.1881,5.9591,9.9931,9.618,6.9544,6.1704,1.8612,1.932,4.6339,4.8775,1.4899,1.7359,16.5137,15.7695,4.8904,4.3309,3.3358,3.1832,1.0474,1.1086,2.4179,2.3819,7.0534,6.0357,12.435,11.9987,2.9651,3.0168,3.3211,3.4578,2.9952,2.9939,1.3545,1.3123,3.7725,4.3165,10.4549,10.1787,2.7887,2.7139,2.2408,2.2096,1.9047,2.1576,9.0295,10.9548,2.1258,2.0985,2.0478,2.2094,10.0972,11.5403,1.6696,1.8485,1.071,1.0709,12.8832,13.1632,5.1356,4.6124,7.2704,7.4959,4.3206,2.9199,9.3013,9.2975,5.9694,6.2873,7.0624,6.6926,3.0039,3.6266,1.2774,1.5239,,18,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,136
+desd138,77,77,F,1.3969,0.25159,0.00009,0.13301,0.18236,0.51612,14.3243,0.00133,0,36.5871,31.6077,11.27,12.2296,131.7706,128.6959,0.97859,2.4553,2.2563,0.55739,0.65246,15.0645,13.1091,0.17428,0.19332,0.32208,0.79482,3.756,2.2812,3.7752,4.0564,0.08637,4.028,1.7952,1.9277,0.13799,0.28174,1.9435,0.00936,0.12458,0.46849,0.45181,0.00046,5.3578,2.2506,2.7469,2.3392,2.1079,0.43185,4.1145,4.1609,1.1498,1.0768,0,0.02155,0,0,5.5047,5.2277,0.88096,0.77512,5.3595,4.6349,6.7824,7.7991,6.4388,5.8332,0.02731,0.22842,0,0,0.66198,0.64037,0,0,4.5609,3.9079,2.2148,1.2391,0,0,1.7049,0,0.02225,3.6668,9.5092,11.6557,2.3532,2.5733,3.4634,3.1932,0,0.00223,0.00987,0.49832,2.3859,1.534,6.4692,6.5694,2.2397,2.5337,1.7214,1.7543,0.38842,0.02077,0.00167,0.00111,1.4502,0.90385,1.236,1.7054,0.00078,0.00007,0.00244,1.4383,0.55918,0.7997,0.00046,0.00005,3.4089,0,5.1788,1.2354,3.8805,3.2059,0.18875,7.6989,6.0248,6.3576,5.7754,6.1399,0,0,0.78203,0.31108,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,137
+desd139,82,82,F,0.96939,1.0427,0.30261,0.35007,0.74098,0.67758,15.854,2.4722,2.1983,36.5871,36.7825,12.2977,12.711,160.9065,160.0347,0.91734,2.7989,2.6953,0.44707,0.33711,10.2828,10.1573,1.1609,1.2199,2.9175,2.8923,5.3109,6.3529,4.2723,4.6028,0.08417,4.5881,1.6783,1.9212,0.32299,0.32673,3.5549,3.6878,3.2802,3.5351,1.3371,1.3116,9.0441,6.643,2.4957,2.4132,3.0914,3.0202,3.4986,2.9575,1.4787,1.3345,1.566,1.4596,3.2655,2.8818,6.0282,5.6767,1.6023,1.6724,4.9759,4.7187,9.5365,8.6348,6.263,5.8912,1.5963,1.9589,3.866,3.8531,1.3566,1.4512,14.4447,14.4447,3.9047,4.2477,2.876,3.3491,0.9126,0.91099,2.138,2.04,6.2179,5.527,11.7952,10.7233,2.3876,2.3928,3.335,3.2681,2.9142,2.8078,1.1439,1.2007,3.3466,3.6918,9.4355,9.1818,2.5692,2.8395,2.1241,1.9411,1.79,1.6112,8.1605,8.8018,1.7699,1.9725,1.8371,1.9437,9.7805,10.5862,1.655,1.4938,0.96208,0.97981,10.0494,10.6457,4.4946,4.6449,6.8403,7.5258,3.4558,2.717,8.9171,8.1941,6.4507,5.4729,5.7073,5.9166,3.0771,2.9441,1.2155,1.3272,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,138
+desd140,66,66,M,1.251,2.384,0.36818,0.37631,0.73452,0.73871,16.0896,2.9766,2.9262,41.6767,42.8081,13.6541,13.4048,197.4064,192.1346,1.2254,2.9465,2.5777,0.45092,0.46058,15.4596,16.483,1.4045,1.367,3.4885,3.483,6.2942,6.5321,4.1629,4.3168,0.07092,4.1112,2.0176,2.2029,0.34677,0.36524,3.0348,3.4642,4.8436,5.0995,1.59,1.2674,11.4893,11.0348,2.2925,1.9707,3.5572,3.5289,3.6838,2.9868,1.3679,1.4601,1.8886,1.8599,3.16,2.6735,6.5846,6.6884,1.768,1.7039,4.8907,5.7087,9.5773,9.8852,6.5715,5.6572,1.9596,1.9649,4.075,4.2049,1.5552,1.4987,15.5214,15.7201,3.9986,4.9917,3.1373,3.4001,0.92238,0.96225,2.1427,1.9437,6.4258,5.6687,11.5183,12.4628,2.0007,2.5224,3.5643,3.6689,3.3208,2.9411,1.3532,1.3155,3.228,3.7223,9.4578,9.3441,2.4831,2.5078,2.4649,2.3505,1.8438,2.183,12.4968,12.7977,2.1918,2.3422,1.9823,2.1863,10.8511,10.5874,1.5526,1.7159,1.0968,1.2261,12.8439,13.1053,4.2554,4.1389,8.5548,10.4398,3.5536,2.8037,9.2928,9.5526,6.9532,6.7096,6.7848,6.8696,3.2904,3.4155,1.3663,1.4821,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,139
+desd141,58,58,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,140
+desd142,80,80,F,1.8908,2.101,0.36634,0.38664,0.72047,0.69308,16.9978,2.8806,2.8398,45.5968,44.7344,12.9595,13.7952,201.9419,201.5569,1.8472,3.0205,2.6672,1.1542,1.1206,16.5071,19.5786,1.4367,1.393,3.5692,3.483,6.3999,6.712,4.3212,4.5547,0.08128,4.9098,2.1661,2.6837,0.33936,0.37298,3.6934,4.1722,3.5452,3.9905,1.5403,1.3214,9.1377,7.631,2.9806,2.5886,3.8478,4.1408,5.3005,4.5205,1.4296,1.2714,1.5552,1.9806,3.2689,3.3803,7.2272,6.6823,1.7995,1.8678,6.7318,6.6334,10.6799,9.8925,7.6717,7.1949,2.1112,2.2288,4.564,4.4931,1.5691,1.5201,15.9353,16.0376,4.7603,5.8726,3.4649,3.5284,0.9974,1.0348,2.4465,1.9644,6.5669,6.2112,12.738,11.9602,3.2278,3.919,4.3293,4.2739,2.7412,3.4076,1.3447,1.4334,3.8381,4.0857,11.2412,10.9054,2.8073,2.9113,2.1595,2.0982,1.8993,2.0319,9.654,11.1711,2.1371,2.2588,1.8863,2.0868,11.1179,11.8988,1.5466,1.8446,1.1365,1.1565,12.8768,14.141,4.9246,4.7759,8.0874,7.6319,4.7781,4.5027,11.0487,10.3864,6.2928,6.0375,6.2989,6.7205,2.6007,3.444,1.2354,1.244,,18,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,141
+desd143,71,71,M,2.0706,2.0163,0.44771,0.53202,0.70174,0.75446,20.0813,3.3837,3.2867,52.467,51.1016,14.9431,15.1152,234.9673,235.1473,1.8735,2.93,2.8871,1.0422,1.2163,23.4697,26.9842,1.5604,1.5505,3.6942,3.827,6.1374,6.3966,4.8444,4.8368,0.08385,5.1432,2.3297,2.9156,0.40119,0.41096,4.7629,5.2022,4.7198,4.9237,2.0117,1.528,11.4851,11.1179,2.76,2.4011,5.3782,4.4735,4.4191,3.4888,1.5815,1.7013,2.2589,2.1163,3.7726,3.6591,7.5723,7.7173,2.206,2.281,6.8045,6.7684,11.2832,11.7343,7.5305,6.5798,2.5564,2.4717,5.1542,4.7431,2.0811,1.9903,18.9174,20.7362,5.92,6.9096,4.1554,4.1983,0.99532,1.2153,2.406,2.4826,8.4573,8.1543,14.1895,15.1973,3.0006,3.282,4.3265,4.4299,3.8414,3.6095,1.7426,1.8031,3.6144,3.9584,9.1509,9.5752,2.8551,3.1554,2.5812,2.5942,2.9821,2.7369,11.3623,11.1987,2.6656,2.7952,2.3959,2.5596,11.6594,11.6061,2.3105,2.1388,1.3847,1.3665,14.4455,14.4765,5.8532,5.5681,9.4162,10.3407,4.0087,3.3648,12.1353,12.7091,8.2011,6.9651,8.3218,8.8303,4.0728,3.9893,1.8975,1.5387,,25,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,142
+desd144,71,71,M,2.0706,2.2637,0.37023,0.41771,0.84848,0.90626,19.0873,3.0522,2.9211,47.1015,47.7378,16.5091,17.0418,254.1394,252.0012,1.7692,3.4769,3.5191,1.2206,0.98823,20.2643,23.1056,1.5787,1.5442,3.8694,3.8748,7.756,7.9181,4.6823,4.9825,0.10334,5.2607,2.2935,2.9853,0.42072,0.40562,4.4839,5.052,4.2834,4.6529,2.0285,1.8149,10.9565,10.4591,3.7903,3.6443,4.2444,4.7194,5.0479,5.1742,1.6126,1.875,2.2622,2.3582,4.0094,3.4294,7.5073,6.7926,2.1728,2.3796,7.1322,7.4721,13.2069,10.8031,8.7088,8.4943,2.5698,2.4828,5.2704,5.6182,2.1056,2.0408,20.2924,20.4062,5.2318,7.1553,3.9216,4.4004,0.95657,1.0851,2.1266,2.4481,9.0757,7.9071,16.6756,13.2366,3.2751,3.9308,4.5189,4.6073,3.5302,3.206,1.7398,1.5248,4.0929,4.7152,11.2018,11.2292,3.2159,3.6673,2.5509,2.5832,2.4047,2.5193,10.9172,12.0117,2.5147,2.6129,2.4364,2.6681,12.9718,12.5472,1.9948,2.2289,1.4077,1.4442,15.111,15.6951,5.3727,5.8485,8.9082,10.4647,4.8376,3.3474,10.9764,11.324,6.9815,6.3939,8.6143,7.923,4.0663,4.4701,1.6556,1.8049,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,143
+desd145,77,77,F,1.2064,1.7496,0.4066,0.45025,0.82078,0.75706,18.2648,2.9757,2.9597,42.1123,42.8051,14.0223,14.4078,207.7413,204.5753,1.0976,3.2075,3.0211,0.56721,0.60498,11.703,13.8937,1.4961,1.4683,3.4333,3.5921,6.889,7.1078,4.4261,4.701,0.07495,4.3534,2.1285,2.3922,0.40743,0.41275,4.0253,4.3886,3.8487,3.7848,1.9582,1.6768,10.6817,10.0979,2.6718,2.7667,3.878,4.4165,4.9072,5.0822,1.7124,1.5917,2.0318,2.0529,4.1246,3.5694,7.2356,7.5396,2.3994,2.3284,7.0424,6.7684,10.7304,11.7204,8.6739,7.8393,2.4205,2.6274,4.3592,4.0497,1.8843,1.9126,17.8334,19.015,5.2609,6.6358,4.1673,4.279,1.3035,1.1753,2.6164,2.8489,7.7828,7.2608,14.1547,13.7819,2.815,3.0348,4.5218,4.3422,3.2773,3.3622,1.6736,1.6574,3.988,4.2619,11.2169,10.6018,2.8849,3.205,2.1012,2.0748,2.3392,2.5135,10.2866,11.9748,2.7026,2.7016,1.9514,2.0736,12.7044,13.7325,2.0535,2.2269,1.1744,1.1728,15.0282,15.8737,5.4556,5.911,8.702,10.0674,3.7829,3.1956,11.0085,11.6074,7.5991,7.1363,8.0592,7.499,3.6638,3.9321,1.375,1.3679,,20,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,144
+desd146,87,87,M,1.7884,2.1243,0.33007,0.37163,0.75455,0.69308,18.2564,2.8236,2.5904,47.6643,49.1911,14.7142,14.9308,203.9915,198.292,1.6943,2.9139,2.6953,0.85013,0.79444,19.6921,22.2409,1.6238,1.6337,3.4324,3.4661,6.4665,6.5824,4.4218,4.6959,0.07497,4.8108,2.231,2.9139,0.37744,0.38384,3.2603,4.256,4.3523,4.8572,1.6909,1.4409,9.2201,7.6134,2.8436,3.0208,4.1768,4.2043,4.4191,4.4701,1.5648,1.2714,2.0643,1.9395,3.3198,3.4748,7.2788,6.8644,1.9102,1.9128,5.9433,6.1578,11.1621,11.0186,7.6717,7.0595,2.1865,2.1182,4.4497,4.5402,1.5707,1.5011,19.3284,18.6921,4.2855,5.3522,3.6544,3.9303,1.0574,1.0397,2.2614,2.3043,7.5529,6.721,14.0409,12.6961,2.7509,3.3573,4.2749,4.0608,3.4493,3.0311,1.4161,1.2952,4.0614,4.3697,11.0041,10.9054,2.7099,2.9822,2.3244,2.4939,2.0784,2.5405,9.2869,11.0625,2.1907,2.3015,2.2047,2.4901,13.239,12.9802,1.8786,2.0301,1.2017,1.2064,13.117,13.3514,5.6312,5.2331,6.8716,7.7036,4.2413,3.4559,9.5773,9.1825,7.9654,6.4642,7.7021,7.7004,3.4632,3.4713,1.4877,1.9768,,24,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,145
+desd147,65,65,F,0.98147,2.0464,0.38153,0.35894,0.81699,0.76205,14.7604,2.7492,2.2943,43.8019,41.2085,10.9827,12.3842,222.8908,218.0099,1.0466,3.0628,2.9396,0.69172,0.52345,11.5201,13.8937,1.5032,1.5031,3.2753,3.2971,6.2277,6.4197,3.9613,4.2762,0.07934,3.4571,1.9377,2.3748,0.33725,0.38035,4.2948,4.7178,4.0205,4.1261,1.8601,1.4945,9.6822,8.3233,2.8039,3.188,3.9024,4.2844,4.2944,4.0704,1.7166,1.589,1.8952,1.7861,3.617,3.096,6.7859,6.1158,1.8969,1.9966,5.7045,5.3777,10.6336,9.2592,6.9075,6.8839,2.2463,2.268,4.3957,4.3582,1.7652,1.7434,17.2759,16.9412,5.347,5.3321,3.8634,3.6573,1.1529,1.3891,2.663,2.7867,8.7052,6.9939,12.5616,13.1739,2.2418,2.3848,3.7422,3.7199,2.8518,2.889,1.5509,1.4125,3.5234,3.8467,9.6544,9.7498,2.8667,2.9691,2.4224,2.4669,2.0408,2.094,9.2486,11.3341,2.2256,2.3301,2.0732,2.3548,10.3754,11.4284,1.9249,1.8782,1.1423,1.1544,14.18,13.6172,5.5426,5.3156,7.5235,7.703,3.8805,3.0755,8.7703,9.8832,7.2047,7.2427,8.1007,7.7609,3.5694,3.4622,1.5697,1.5672,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,146
+desd148,,,M,1.7034,1.8993,0.37903,0.43673,0.93913,0.93694,16.0602,3.0643,2.8993,48.197,48.8532,12.2852,12.9421,199.8175,193.6324,1.509,3.5816,3.3065,0.96487,0.65957,16.5462,22.3572,1.3243,1.3799,3.5193,3.6449,6.5098,6.5046,4.1216,4.3104,0.0892,4.7502,2.2093,2.7688,0.39874,0.39221,4.0849,4.8562,3.8215,3.8937,1.8782,1.6856,9.9299,8.2935,3.58,3.107,3.9933,4.0095,4.6282,4.7757,1.9135,1.7519,1.8946,1.8671,3.7029,3.3666,8.2067,7.9662,1.9291,1.969,7.1179,6.5106,12.1871,11.7461,9.2299,8.4921,2.2466,2.558,4.4371,4.626,1.703,1.849,19.4832,20.0176,5.6223,6.2481,4.1763,3.9091,1.156,1.0588,2.831,2.6298,7.4436,7.1258,14.935,14.0082,3.0831,3.3291,4.4433,4.6383,3.307,3.2974,1.5666,1.4832,4.4865,4.661,11.1166,11.096,3.0666,3.3833,2.1876,2.3017,1.9877,2.0437,10.6207,11.5437,2.3911,2.5105,1.8971,2.1113,13.5061,13.3993,1.6913,1.8518,1.1729,1.2064,14.5232,14.5068,5.101,4.9771,8.3652,8.5848,4.8322,3.7085,10.5438,11.3832,7.9936,7.898,8.5225,7.6055,3.7418,3.5155,1.2354,1.6448,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,147
+desd149,78,78,F,2.6213,1.6601,0.27619,0.29139,0.63979,0.68516,19.2627,2.6305,2.424,43.6868,44.0063,14.5408,15.6678,221.3597,216.8382,2.486,2.7915,2.5093,2.2274,2.5342,41.0473,46.0499,1.627,1.6135,3.5212,3.5935,6.5226,6.3276,4.5237,4.7758,0.08132,4.6172,2.0275,2.241,0.32656,0.31457,3.6203,3.9099,3.919,4.1751,1.4501,1.3809,8.8451,7.2396,2.5845,2.3392,4.0917,4.1893,4.2373,3.7566,1.3279,1.3436,1.8546,1.7616,3.16,3.0175,6.2382,5.8168,1.6897,1.7576,5.8617,6.6108,8.7966,8.2972,7.3667,7.1401,2.0537,2.0975,3.97,4.0368,1.4458,1.5425,17.2115,17.557,4.5876,5.7645,3.1534,3.6539,1.2187,1.0156,2.5573,2.4345,6.6631,5.9829,11.8959,10.6118,2.4921,2.9607,4.0478,3.7471,3.3267,3.0269,1.4194,1.2029,3.1812,3.4843,9.2206,8.9534,2.6202,2.7031,2.2922,2.3503,1.8088,2.3093,10.0499,11.0569,2.1342,2.3082,2.0158,2.1973,10.3294,11.0202,1.662,1.8118,0.99239,1.0054,12.34,11.9706,5.1658,5.0469,6.9453,7.0505,3.2066,2.6126,9.6322,11.3991,6.5345,5.1763,6.7954,6.9116,3.5397,3.1957,1.3663,1.3907,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,148
+desd150,76,76,F,1.94,2.5673,0.31472,0.33023,0.75633,0.71856,18.184,2.8236,2.5637,44.8791,45.9534,14.6356,15.227,226.8225,219.8805,1.9752,2.8578,2.6341,1.591,1.7795,27.9583,27.8679,1.5531,1.5621,3.4085,3.4327,5.9256,6.6111,4.5649,4.6879,0.0883,4.2462,2.1246,2.3728,0.3292,0.35762,4.0428,4.2533,4.0829,4.1644,1.4974,1.2591,8.3991,7.6577,2.8636,2.6632,3.974,4.0958,4.2585,4.0124,1.3929,1.3429,2.001,1.8292,3.2279,2.9111,6.9495,6.8111,1.8146,1.8986,6.0598,6.4085,10.3388,10.2638,7.4424,6.9718,1.9705,2.067,5.0936,4.5042,1.5878,1.5684,15.8963,16.3877,4.6874,5.3467,3.4559,3.3071,0.70435,0.99614,1.9456,1.8661,7.2827,6.4791,12.4217,11.6458,2.7901,3.0486,4.0845,4.4591,3.43,3.2124,1.2925,1.3122,3.6512,3.794,9.4082,8.9063,2.6608,2.8399,2.3053,2.305,2.2739,2.5638,8.9588,9.8737,2.1033,2.3203,2.0833,2.1555,11.9469,11.0473,1.8008,2.3003,1.2284,1.3028,12.6629,12.9671,4.8422,4.7932,7.1517,8.0712,3.9919,3.6118,9.2156,8.8828,6.0187,6.4783,6.6331,6.3247,3.24,3.321,1.3856,1.6211,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,149
+desd151,71,71,M,1.7205,1.9789,0.41207,0.46676,0.786,0.7886,19.8139,2.6515,2.7248,50.8088,51.1779,16.6993,16.9913,240.1227,223.5984,1.656,3.2064,2.956,0.78669,0.9965,21.7979,24.3171,1.5958,1.6283,3.4216,4.0539,6.5392,7.1303,4.6514,4.9084,0.07881,5.3452,2.4314,2.9056,0.38806,0.37037,4.1302,4.3208,3.9866,4.1629,1.5645,1.5165,9.6515,9.4289,3.617,3.2017,3.5163,3.6665,5.3684,4.8355,1.5487,1.4104,1.6044,1.8184,3.5829,3.3174,7.2787,7.6979,1.8311,1.9785,6.497,6.6511,11.0529,11.0308,9.3943,8.2014,1.9759,2.3723,4.6196,4.6586,1.5766,1.659,19.4878,19.4487,4.8896,7.057,3.2559,3.5057,1.3629,1.2208,3.2078,3.2518,7.1172,6.1987,15.7108,13.2978,2.9628,3.3899,4.8417,5.0557,2.9993,3.215,1.2343,1.3536,4.0614,4.5595,10.2584,11.088,3.0984,3.0333,2.3438,2.4581,1.9221,2.3333,10.0432,11.0064,1.967,2.2691,1.9255,2.2682,12.4228,13.7325,1.7387,2.0163,1.1606,1.1858,13.0346,13.7179,4.9585,4.9962,7.4809,9.3389,3.8339,2.8841,10.2264,12.0709,7.484,8.7394,9.073,8.2145,3.0453,4.0589,1.2853,1.7914,,25,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,150
+desd152,73,73,F,1.3194,1.8325,0.3095,0.32609,0.64534,0.66117,16.1442,2.3884,2.2759,40.9338,40.6259,12.0541,12.4071,183.9344,179.6528,1.4058,2.4729,2.4226,0.84938,0.81448,13.6408,14.8694,1.3159,1.2852,2.903,3.1938,5.9534,6.3217,4.0467,4.2826,0.07342,3.8579,1.9097,2.1798,0.31621,0.31325,3.1503,3.6164,3.4566,3.867,1.3136,1.3045,8.3621,7.6056,3.0178,2.9306,3.1699,3.0664,4.6168,4.3741,1.3194,1.3338,1.5684,1.6179,3.2655,2.8818,6.8854,5.9776,1.6023,1.707,5.9191,5.1349,10.126,9.1289,7.6111,7.0785,1.7255,2.0953,4.1291,3.9836,1.3793,1.4145,16.1624,15.5037,4.5528,4.5397,2.88,3.3491,0.86488,0.93562,1.8727,1.9728,6.2177,5.3046,12.5317,12.1185,2.8735,2.8417,4.0727,4.3462,3.1041,2.5717,1.0136,1.259,3.4679,3.5562,9.0214,8.625,2.6237,2.8395,2.0164,1.996,1.6189,1.8012,9.2046,10.7959,1.8589,1.9725,1.7705,1.8628,10.0972,10.6166,1.5024,2.099,0.95731,1.0415,12.3623,13.0649,4.0735,4.1648,6.4474,7.9897,4.2409,2.9199,9.0949,9.024,6.2459,6.8094,6.5621,5.9722,3.2322,2.7935,1.2863,1.4745,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,151
+desd153,60,60,F,1.1864,2.1104,0.30825,0.34425,0.70782,0.72975,16.5658,2.4566,2.4613,41.9809,41.053,13.3855,13.5134,207.8096,204.0734,1.4058,3.1622,2.8714,0.50557,0.57025,11.4556,17.0265,1.4942,1.453,3.2816,3.1849,5.8613,6.0221,4.1046,4.3053,0.08405,3.9446,2.0435,2.4315,0.32816,0.34711,3.2997,3.854,3.5251,3.5366,1.59,1.3265,8.2133,7.7962,2.9617,2.7883,3.1549,3.0202,3.9569,4.0439,1.4647,1.5106,1.634,1.7092,3.3566,3.0064,6.4975,6.4713,1.6804,1.6831,6.1974,5.9591,9.9978,9.7188,6.3936,6.4209,1.9799,2.1191,3.7239,4.224,1.4155,1.4807,15.608,15.6616,4.8392,5.7343,3.2523,3.4232,0.94522,1.0109,2.4027,2.1599,6.5869,5.7755,12.931,12.523,2.8358,3.1354,3.9429,3.9801,3.1906,3.2185,1.3021,1.2695,3.4626,3.7326,8.9068,8.4977,2.685,2.9152,2.0597,1.9634,1.7161,1.9811,10.0771,10.8728,1.9844,2.0306,1.8621,2.0026,11.3434,11.0993,1.4643,1.7921,0.99556,1.0193,12.9783,12.0223,5.0658,4.7346,6.2964,7.0676,3.6293,2.9222,8.0329,9.8944,6.1503,6.4992,6.2989,6.3148,3.1211,3.5311,1.2484,1.3736,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,152
+desd154,75,75,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,153
+desd155,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,154
+desd156,81,81,M,1.7884,2.2666,0.38018,0.39958,0.83178,0.86541,17.0328,3.5058,2.9733,46.091,45.7024,14.0298,14.0919,231.4533,216.712,2.2077,3.0928,2.9412,0.71055,0.79444,24.2377,27.473,1.457,1.501,3.5193,3.471,6.0941,6.2847,4.3434,4.6436,0.08504,5.265,2.4097,2.4515,0.3848,0.38339,4.2709,4.993,3.6892,3.9845,1.6909,1.4756,10.5402,9.1054,3.5068,3.4112,3.9927,4.2457,5.0668,4.8713,1.5559,1.6225,1.8274,2.0075,3.7987,3.7036,7.3608,7.0565,1.8664,2.0366,7.2028,6.6334,10.9034,10.4543,8.7859,7.7772,2.0819,2.2401,4.7462,4.8757,1.6264,1.6391,19.0835,18.0206,5.2269,6.0827,3.5027,3.7084,0.99992,1.1025,2.3493,2.3144,7.5962,7.0344,13.4496,12.5934,3.329,3.5629,4.8417,5.1101,3.238,3.14,1.4056,1.4428,4.5744,5.319,12.6814,11.2253,2.8216,3.1353,2.2767,2.4505,2.1442,2.1431,10.2478,11.3632,2.1154,2.5075,2.1939,2.4949,10.8167,11.5403,1.8069,1.7221,1.185,1.245,13.5275,13.2053,5.3766,5.7904,8.3254,9.3659,4.5964,3.6816,10.0179,9.587,7.1756,6.875,7.3208,7.4774,3.3528,3.4662,1.6937,1.5224,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,155
+desd157,65,65,F,1.2305,1.6554,0.32915,0.39746,0.8032,0.7718,15.8051,2.7039,2.9263,43.2103,41.4904,13.0955,14.4498,205.4396,203.9892,1.0511,3.0205,2.7774,0.39387,0.28087,9.9076,12.8708,1.4047,1.4068,3.9906,3.9605,6.504,6.792,4.0793,4.3655,0.08,4.0092,2.0209,2.4886,0.36763,0.34401,3.5552,4.2382,3.7949,3.8737,1.7341,1.4917,10.396,10.0979,2.8999,2.4821,3.6925,4.0188,4.5978,4.4358,1.6458,1.491,2.0114,1.9849,3.4041,2.9772,7.0278,7.3443,1.9123,1.8953,6.6846,6.3392,10.8308,11.0308,7.2448,6.6905,2.0395,2.2312,4.1402,3.8364,1.5995,1.7134,16.7745,17.9409,5.4975,6.2414,3.5726,3.7893,0.95179,0.86847,2.5734,2.2468,7.3004,6.1415,14.5429,14.5686,2.6346,2.8215,3.9168,3.9903,3.5858,3.1111,1.3911,1.4314,3.4305,3.7284,9.3341,8.9996,2.5377,2.9176,2.0154,2.1089,1.8769,2.2773,9.3051,10.7917,1.9527,2.4391,1.9729,2.1959,11.3061,12.0145,1.823,1.9195,1.1177,1.2411,12.7223,12.3486,4.7624,4.6411,8.1802,8.483,4.1137,3.6745,9.275,9.556,7.3424,6.4642,7.457,6.9864,3.641,3.4506,1.3541,1.3646,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,156
+desd158,77,77,F,1.9954,1.548,0.32408,0.37816,0.77616,0.7312,17.2983,2.7565,2.7351,46.7065,44.7829,13.6618,13.6165,185.1925,192.4074,1.4848,3.131,2.7903,1.0439,0.9251,18.5472,20.6888,1.4477,1.4159,3.515,3.6017,5.9398,6.4332,4.4063,4.6199,0.08331,4.7108,2.2577,2.3503,0.36072,0.37411,3.4662,3.9206,4.1186,4.3787,1.4647,1.4543,9.611,8.1491,2.7977,2.4942,3.5572,3.6814,4.1187,3.7362,1.4286,1.3838,2.1733,1.9849,3.1985,2.9802,7.1123,6.8737,1.711,1.6765,6.3087,6.3151,11.8917,10.7504,6.9399,6.489,2.0648,2.1982,4.3864,4.3332,1.5862,1.5876,17.0132,17.8174,4.7685,5.6435,3.3946,3.6157,0.99093,1.0506,2.416,2.3079,7.2709,6.2888,14.027,13.2739,2.8358,3.03,3.9081,3.882,3.4637,3.337,1.4136,1.5146,3.8792,4.3133,9.8678,10.0704,2.6384,2.7835,2.3783,2.3278,1.9819,2.3586,9.205,10.8398,2.1348,2.2951,2.0681,2.2152,11.2387,11.9987,1.6802,2.1613,1.0128,0.97977,13.6789,12.3174,4.6414,4.8619,7.3572,8.6879,4.0145,3.6198,9.3681,9.7264,6.8531,7.1655,6.726,7.097,3.6116,4.0303,1.3402,1.5738,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,157
+desd159,79,79,M,2.97,2.3996,0.35908,0.4395,0.8053,0.83264,16.8618,2.9475,2.8851,46.091,46.3144,14.4089,15.1085,184.0221,180.6172,2.1683,3.3738,3.0368,1.845,1.3495,31.5536,28.2007,1.4372,1.4294,3.5275,3.8389,6.1854,6.1844,4.2355,4.4351,0.08239,5.0546,2.3841,2.893,0.40804,0.39964,3.6959,4.2915,4.3269,4.9404,1.6226,1.526,9.5111,8.5927,3.2915,3.2808,3.6925,3.8943,4.2814,4.1837,1.5576,1.4961,2.0242,2.118,3.4374,3.5254,8.1193,7.0153,1.9149,1.9565,6.4091,6.0722,11.8785,11.0933,8.238,7.8848,2.2221,2.4574,4.3572,4.6318,1.5732,1.7626,19.1137,18.56,5.1888,6.0602,3.8622,3.7905,1.0974,1.0778,2.5889,2.3342,7.6768,6.583,14.6255,13.3618,2.9953,3.0627,4.3302,4.1715,3.2014,3.3633,1.5978,1.634,4.1173,4.4781,10.2395,10.7938,2.9202,3.4943,2.4064,2.5625,1.874,1.8554,9.1008,10.2569,2.3019,2.5752,2.0732,2.6109,12.189,11.132,1.6362,1.6056,1.0751,1.1393,12.8768,13.7966,4.8616,5.0196,7.36,7.7832,4.1329,3.3888,9.3173,9.5487,7.5389,7.4732,7.6642,7.7587,3.7943,3.7475,1.3876,1.3547,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,158
+desd160,63,63,F,1.5191,2.0916,0.32688,0.36515,0.83099,0.80084,16.589,2.3135,2.254,41.4415,40.3972,13.7794,14.3408,221.2064,219.3099,1.2727,3.1017,2.9821,0.48748,0.42583,10.2608,11.4231,1.6336,1.5897,3.3577,3.2971,6.2777,6.8479,4.4904,4.6137,0.08013,4.061,1.9454,2.2805,0.33859,0.37409,4.3417,4.7414,3.8345,3.8531,1.5732,1.2392,10.5402,10.418,2.4799,2.3839,3.7413,3.8315,3.631,3.1617,1.6117,1.5192,1.886,1.8746,3.559,3.1623,6.8065,6.4713,1.8516,1.8748,5.202,5.1135,10.8308,10.3478,6.8044,5.6364,2.1097,2.0203,4.491,4.5381,1.7652,1.7602,15.5214,16.6634,4.0748,4.9091,3.4535,3.2152,1.0147,0.84283,2.3642,1.9965,8.2987,6.458,14.1004,12.9215,1.9907,2.5511,3.7565,3.6264,2.9756,3.1942,1.4383,1.3155,3.8961,4.4008,9.8153,10.1896,2.7981,2.979,2.1158,2.0798,2.2513,2.2704,9.1566,11.3081,1.7636,2.1009,1.8904,1.9779,11.3061,11.7379,2.1303,1.8391,1.1654,1.1584,12.0203,12.8249,5.6201,5.1639,7.3278,8.9715,3.3676,2.7374,9.9849,10.31,8.2144,7.6602,8.0225,7.5228,3.4382,3.321,1.4195,1.36,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,159
+desd161,,,F,1.098,1.9214,0.34892,0.39298,0.84736,0.81768,17.753,2.8389,2.7829,52.3719,51.3749,14.6161,14.7727,196.9166,193.6324,1.0822,3.2885,3.0832,0.71844,0.56021,13.19,19.5313,1.5705,1.5355,3.4541,3.5903,6.6463,6.9801,4.6454,4.8287,0.07952,4.6455,2.2732,2.5815,0.37755,0.38119,3.6227,4.1262,3.8848,3.9875,1.739,1.5448,10.4294,9.3961,3.3453,2.9833,3.7748,3.9037,4.4357,4.0704,1.6892,1.6194,1.6694,1.87,3.4709,2.8584,7.8411,7.0345,1.9686,1.9665,6.5135,6.0717,11.8356,10.2448,7.6048,7.0399,2.2787,2.2322,4.1706,4.6652,1.5515,1.6249,18.9184,18.6128,5.1333,6.6039,3.7639,3.9961,1.0106,1.0018,2.5683,2.4201,6.5382,5.8484,14.027,13.2393,2.8584,3.7408,4.1496,4.2388,2.5408,2.8991,1.5207,1.4118,3.5927,3.8657,10.1423,10.4042,2.6761,2.9176,2.2934,2.3322,2.2739,2.496,10.4726,11.527,2.3157,2.2731,1.9084,2.0661,12.0438,11.7937,1.928,2.0007,1.1435,1.1901,14.7709,15.2836,5.1302,5.3888,8.1468,9.733,4.4738,3.772,11.2315,10.8141,6.7731,7.4393,7.5165,6.5856,3.1664,3.42,1.375,1.5584,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,160
+desd162,,,M,1.7432,2.3497,0.40865,0.45101,0.82482,0.86494,17.0328,3.0766,3.0593,46.5868,46.3326,14.0187,13.7906,179.8113,173.4067,1.8418,3.1805,3.0452,0.90834,0.86925,27.5036,31.4738,1.6159,1.5701,3.6942,3.7419,7.0836,7.2372,4.6607,4.9244,0.08606,5.2786,2.356,2.8769,0.40972,0.44292,4.7502,5.731,4.75,4.7265,2.0035,1.7596,10.4915,9.3956,3.1923,2.9878,3.9162,3.9037,4.7289,4.3423,1.5576,1.5954,2.0501,2.1225,3.7273,3.5203,7.7057,7.4301,2.0146,2.2924,6.7827,6.8933,12.0364,11.3178,8.7216,8.2718,2.5126,2.4912,7.0872,7.119,1.914,2.0682,17.3549,19.0342,5.6223,6.5834,3.9951,4.297,1.112,1.1123,3.2179,3.2518,8.3148,7.6204,14.0511,13.8103,3.0215,4.326,4.8417,4.6758,3.7704,3.4099,1.6473,1.5378,5.1543,5.229,12.5322,11.4987,3.1953,3.2771,2.5451,2.5942,2.4669,2.2933,9.6495,10.1888,2.7286,2.6807,2.2659,2.7252,13.7355,13.8755,1.9259,1.8458,1.1925,1.2452,15.8485,15.5816,7.2336,5.9421,7.6402,8.6432,4.5789,3.4209,10.6237,11.0443,7.1187,6.9533,7.8609,6.9864,4.0397,4.2005,1.5415,1.6201,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,161
+desd163,68,68,M,3.3332,3.6291,0.3314,0.37454,0.76311,0.85008,15.54,2.3119,2.3186,42.7073,41.3001,12.9533,13.3627,223.5583,218.9022,2.3965,3.175,3.0014,2.2274,2.2641,41.0473,46.0499,1.5338,1.5028,3.4543,3.4382,6.3174,6.525,4.2118,4.4331,0.08508,4.3839,2.1521,2.3922,0.33708,0.34086,4.5016,4.5463,4.2001,4.1827,1.647,1.3958,10.0514,8.5799,3.666,3.2925,4.007,4.0985,4.5845,4.7757,1.412,1.5954,1.7367,2.1288,3.3536,3.1207,7.167,6.8404,1.8311,1.8854,6.1681,6.9006,12.5051,9.777,8.124,7.9692,2.0326,2.1453,5.0936,4.7437,1.6467,1.6445,15.8963,17.6316,4.62,6.1117,3.2639,3.5062,1.3235,0.7957,2.5579,2.346,7.2009,6.6809,13.9325,11.413,2.8883,3.4076,4.1184,4.5039,2.8152,2.9979,1.4456,1.4648,3.3776,3.9726,11.9276,11.5639,2.516,2.7347,2.3829,2.4087,2.1933,2.2527,9.7635,10.8337,2.0841,2.0967,1.9927,2.2743,10.9179,11.5033,1.9332,1.9195,1.09,1.0615,14.1835,14.5603,4.8429,5.3068,7.3116,7.7832,4.4602,3.5768,10.3873,10.4425,6.5986,6.4001,6.3507,6.245,3.1664,3.6834,1.4227,1.638,,15,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,162
+desd164,,,M,1.2664,1.7778,0.47296,0.54456,1.1379,1.3139,27.2308,3.856,3.5903,58.2693,56.9775,21.5412,18.5846,277.1635,310.1523,1.2594,3.9712,3.8589,0.59472,0.52111,12.1007,10.7932,1.7895,1.7332,4.8434,4.7365,8.0712,8.2819,5.0187,5.26,0.07574,6.2257,2.6203,3.2572,0.45912,0.44193,4.5916,5.2964,4.2667,4.5754,2.0388,1.748,11.5993,11.3392,3.4268,3.9202,4.015,4.6146,5.4003,5.8995,2.0086,1.9169,2.0495,2.1407,4.1304,3.5467,8.9677,8.5935,2.2082,2.031,8.0131,7.6584,13.7261,12.7368,8.4174,7.5458,2.5657,2.5991,5.1387,5.7283,1.9441,2.1806,20.661,19.892,5.9957,7.3017,3.9365,4.2087,1.4549,1.4687,3.3463,3.1529,7.8364,6.8789,18.5499,14.5309,4.1232,4.4443,4.5684,4.8401,3.762,3.6131,1.6433,1.5735,4.6815,5.2682,12.5596,12.2125,3.3891,3.5912,2.5876,2.5935,2.2439,2.37,13.2796,15.0051,2.5784,2.6807,2.519,2.704,14.1164,16.6832,2.0604,2.3558,1.1057,1.1725,15.2906,16.8733,5.1148,5.3446,9.1267,10.0553,5.1807,4.8233,12.6491,11.8699,9.0556,9.1999,9.5512,8.5049,4.0039,4.5021,1.737,1.9208,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,163
+desd165,,,M,1.0872,1.5972,0.34523,0.3078,0.8493,0.83318,16.1386,2.4875,2.3782,45.1277,45.5105,13.3453,13.6057,207.292,206.0394,1.0729,3.2016,3.1275,0.56116,0.60747,10.2828,10.8498,1.427,1.5457,3.1933,2.7149,7.0544,7.3428,4.3818,4.6656,0.07566,4.9875,2.1969,2.4238,0.33326,0.35564,3.9589,3.902,3.0836,3.3815,1.4324,1.5785,9.4929,8.5753,3.0752,2.9269,3.2912,3.5507,4.5377,4.4238,1.5984,1.5458,1.6764,1.5445,3.266,3.028,7.7755,7.1775,1.7184,1.6755,6.4091,5.9438,12.4007,11.8559,7.6127,7.7603,1.8401,2.2657,4.7897,4.9897,1.5055,1.5096,16.4595,17.2788,5.2024,5.7141,3.3946,3.8074,0.99093,1.0132,2.5118,2.1921,6.8223,6.1634,13.9325,14.4012,2.629,3.0265,4.3247,4.1702,3.1839,2.6854,1.2641,1.2898,3.8381,4.2412,10.1232,9.804,2.8883,3.1213,1.8739,1.7988,2.0627,2.2844,10.2644,11.4652,2.1689,2.4146,1.6847,1.8628,12.1767,10.7097,1.8382,1.8391,1.0023,0.99153,14.3383,14.5737,5.4557,5.694,7.6058,7.2648,3.9854,3.6107,11.6695,11.5268,7.3592,7.1959,7.268,7.8138,3.036,3.4214,1.3028,1.4479,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,164
+desd166,77,77,F,0.93743,1.5729,0.41515,0.49526,0.88749,0.88139,19.2755,3.5829,2.9654,43.8728,43.5986,14.5408,15.2001,244.2927,239.2128,0.94766,3.1602,3.121,0.42881,0.47239,12.0578,13.7019,1.6961,1.6826,4.1266,4.1534,6.9894,7.2195,4.7738,4.9688,0.07484,4.483,2.1285,2.4111,0.3586,0.36743,4.105,4.7178,3.7652,3.9013,1.8044,1.5847,10.6495,9.2184,3.5942,3.8733,4.4781,4.1444,5.5947,5.2487,1.638,1.656,1.8272,2.0563,3.7229,3.6101,7.2433,7.5396,2.1202,2.0739,7.4434,7.291,11.8823,11.2161,8.4337,7.5703,2.2809,2.4936,4.827,4.3981,1.9846,1.9423,18.6709,18.9638,5.4663,6.8466,3.9207,4.1119,0.96357,1.2153,2.406,2.7991,8.254,7.1443,14.935,15.1973,3.5276,4.0349,4.5945,4.3266,3.3435,3.141,1.5666,1.6288,3.964,3.9408,10.8753,10.6018,2.9695,3.4545,2.1812,2.3191,2.53,2.8133,10.7664,11.6419,2.2365,2.5092,2.1686,2.1688,13.4823,12.4153,1.8695,2.5498,1.1764,1.2436,15.0981,14.606,5.58,5.1896,8.1186,8.7049,4.6428,4.0371,10.9764,11.0671,7.4,7.1273,7.3187,7.1342,3.6095,4.0113,1.7025,1.6248,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,165
+desd167,,,F,2.4702,2.7696,0.29537,0.35678,0.77445,0.83678,15.9099,2.6014,2.512,42.7073,43.9089,12.9533,13.3136,177.4279,171.8839,2.4442,3.2181,3.0738,1.642,1.6117,32.6771,32.6877,1.3845,1.3981,3.2816,3.4883,5.8237,5.9495,4.1089,4.3615,0.07383,4.2673,1.9394,2.3787,0.38156,0.29494,4.0314,3.972,3.8964,4.3948,1.5145,1.1509,8.0657,6.643,2.7145,2.6323,3.4837,3.7782,3.897,3.4644,1.504,1.502,1.78,1.7789,3.1789,2.9676,6.9003,6.8066,1.9542,1.7568,5.9253,5.5437,10.2878,9.8852,6.5539,6.0849,2.084,2.0383,4.6986,4.7252,1.5375,1.5041,17.0282,16.0011,4.4909,4.6857,3.5202,3.3257,0.86988,1.0378,2.3197,2.2739,7.3052,6.459,13.7425,13.0122,2.7556,2.7213,3.3378,3.5655,2.9756,3.234,1.4573,1.2964,3.5991,3.8467,8.7866,8.986,2.6559,2.9555,2.5604,2.5174,2.0345,2.1707,9.4006,10.1888,2.1495,2.3203,2.2326,2.3484,11.7555,12.1483,1.7032,1.8146,1.0543,0.97977,12.3813,13.4099,4.8672,5.0469,7.9324,7.231,4.0455,2.934,8.8583,9.8944,6.787,6.5229,7.0659,6.9261,2.9811,3.1845,1.6507,1.8178,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,166
+desd168,,,M,2.3602,2.2191,0.40497,0.42969,0.93134,0.88144,20.5604,3.2384,2.5032,50.8088,51.1758,16.2934,16.4765,226.904,226.1267,1.8804,3.2723,2.9317,1.7017,1.6401,27.8541,32.5525,1.7384,1.6728,3.7304,3.6981,7.1314,7.5892,5.0187,5.3218,0.08496,5.3954,2.4314,3.1022,0.41127,0.41953,4.3114,4.7051,3.9821,4.1033,2.0054,1.712,10.91,8.7108,3.4747,3.3389,3.9394,4.2215,5.1205,4.2253,1.5353,1.5289,1.8978,1.7371,3.9924,3.5318,7.1609,7.1825,1.9854,2.2165,6.3217,6.279,11.4121,11.318,8.7859,7.9709,2.4307,2.4985,4.3592,4.326,1.8048,1.8129,19.2703,19.457,5.3678,6.6039,4.2925,4.748,1.0939,1.3344,2.7597,2.771,7.8791,6.7738,14.0121,14.2988,2.7967,3.6547,4.6594,4.4217,3.1982,3.2356,1.6136,1.4553,4.0065,4.1789,10.0004,10.0897,2.9151,3.2449,2.3605,2.2773,2.3616,2.544,9.5072,11.2527,2.703,2.5128,2.0049,2.3359,12.3509,12.4876,1.9074,2.0896,1.2901,1.3937,14.678,15.1221,5.2316,5.4896,7.6402,8.7663,4.1829,3.5939,10.4968,10.2664,7.8639,7.0818,7.8174,7.9784,3.5851,3.7006,1.4593,1.5241,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,167
+desd169,81,81,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,168
+desd170,85,85,M,2.3255,2.4433,0.29753,0.36202,0.77114,0.85008,17.5478,1.7904,2.0219,44.5195,44.55,14.8474,15.227,202.8273,198.4048,2.1285,3.6133,3.1956,1.3331,1.1149,31.2259,35.4198,1.5987,1.5705,3.3525,3.5089,6.3113,6.6988,4.3418,4.6063,0.07994,4.4674,1.9961,2.4458,0.35653,0.33266,4.1619,4.4928,3.8806,4.2509,1.5103,1.3079,9.8747,8.5799,3.3055,2.9772,3.9223,4.1408,4.3989,4.0367,1.4921,1.6225,1.8245,1.9841,3.4374,3.0078,7.5047,7.3659,1.799,1.8851,6.3994,5.9628,11.5909,11.057,8.3547,7.895,2.0749,2.1359,4.5711,4.4754,1.6167,1.6204,16.5951,18.3016,5.0217,5.3515,3.5021,3.5062,1.4007,1.0809,3.1132,2.6228,7.3268,6.7864,12.8679,12.7389,3.1998,3.437,4.0602,4.4668,3.1402,3.2148,1.4235,1.55,4.0465,4.3793,10.4165,10.1024,2.7925,3.0104,2.3685,2.379,1.9543,2.6276,9.0906,10.5992,2.1878,2.2908,1.9529,2.2546,11.3061,10.5878,1.6802,2.2757,1.09,1.1799,13.3726,13.2744,4.962,4.9509,7.6196,9.142,4.0972,3.5299,9.5405,10.1258,7.3794,7.83,6.9153,7.6207,3.3421,3.9039,1.2969,1.4851,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,169
+desd171,,,F,1.4719,1.5222,0.40101,0.42411,0.82649,0.82365,17.5712,3.3929,3.2863,47.735,46.55,14.3293,14.2393,219.8081,214.9522,1.2797,3.4931,3.2747,0.6201,0.63498,14.5098,20.0874,1.5032,1.5046,3.5463,3.9674,6.5958,6.6673,4.4811,4.7434,0.08608,4.4512,2.2093,2.5582,0.36763,0.38153,4.1037,4.7647,4.1578,4.2489,1.912,1.874,9.709,8.714,2.9744,3.1004,4.1558,4.4532,4.4619,4.9173,1.7484,1.6321,2.0685,2.0354,3.5537,3.4071,6.8956,6.7324,2.098,2.1497,6.2164,6.3408,10.0696,10.1351,7.262,7.0352,2.2323,2.9299,4.0993,4.6318,1.8028,1.8622,16.5157,17.4396,4.3612,5.8493,4.0234,4.2189,0.87342,1.0421,2.3443,2.6498,8.0842,7.0426,12.5042,11.9078,2.4873,3.2935,4.2119,4.2594,3.8289,3.7584,1.6373,1.7745,4.1515,4.7197,10.4458,10.9055,3.1078,3.163,2.1817,2.4293,2.2654,2.5104,10.5416,11.1943,2.3582,2.7123,1.943,2.1583,13.4046,13.7014,2.0535,2.3804,1.1415,1.2197,14.3386,13.1412,6.055,5.7834,6.9453,8.3486,3.6544,3.3642,10.4039,10.9036,6.9698,6.8865,8.145,8.1809,3.5754,3.7072,1.5501,1.6046,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,170
+desd172,,,M,2.1427,2.2088,0.39812,0.45101,1.0761,1.026,20.4893,3.2379,2.9093,54.1172,51.7045,17.4447,17.7471,317.1721,277.4785,2.2262,4.58,3.7377,1.083,1.7229,29.6512,35.4198,1.828,1.76,3.9813,4.0556,8.2686,8.4379,6.6725,6.1972,0.09689,5.4387,2.3581,3.0136,0.42389,0.43386,4.8909,5.5532,4.75,5.4048,2.2207,1.8727,10.6342,9.5266,4.1079,4.0107,4.5488,4.9252,4.8477,4.4996,2.1282,2.1113,2.4494,2.3582,4.9292,4.1863,8.3586,8.4465,2.4575,2.4461,7.7853,7.4495,13.5408,13.9209,8.8864,8.1669,2.8399,3.027,5.1288,5.0043,2.1869,2.3385,18.3906,19.2424,5.7479,6.998,5.6107,4.6798,1.1033,1.0816,2.8466,2.4332,9.613,8.0067,16.1744,18.8747,3.0519,3.365,4.8151,4.8401,4.4607,4.0702,1.7615,1.7031,4.4494,4.6666,12.1045,11.9956,3.6236,3.6673,2.675,2.9166,2.8213,3.1049,11.8415,11.405,2.9609,3.2117,2.7202,3.0548,16.172,15.3695,2.3324,2.9964,1.476,1.5941,14.6949,15.5642,6.0927,6.056,8.9673,10.377,4.4728,3.3894,10.6237,12.9099,8.8789,8.0575,8.5532,8.4546,3.9268,4.2497,2.0162,2.2485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,171
+desd173,70,70,M,1.7938,1.9797,0.40107,0.46097,0.90876,0.88892,20.5604,2.8016,2.7022,46.4131,46.3508,15.1496,15.8368,239.7024,243.7703,1.4449,3.518,3.3067,0.7684,0.49127,13.3892,13.0165,1.6508,1.6675,3.9642,4.111,7.861,8.006,5.0802,5.254,0.08748,4.8149,2.1822,2.4607,0.41983,0.41668,4.2614,4.8551,3.9685,4.3339,1.828,1.7542,12.1488,10.2752,3.793,3.6806,4.2881,4.582,5.0343,5.3392,1.7414,1.6232,2.0299,2.093,3.8489,3.7495,7.7699,7.6505,2.2603,2.2381,7.3727,7.0384,12.3094,11.6909,9.0195,8.1993,2.2466,2.7764,4.8567,5.0112,2.0872,1.984,19.315,18.8358,5.9148,6.3692,3.9778,4.2769,1.2125,1.2664,2.8339,2.7667,9.0934,7.8222,16.6489,14.0277,3.3058,3.9967,4.7296,4.7157,3.7074,3.4918,1.5394,1.798,4.1452,4.7365,10.4286,10.349,3.0501,3.3923,2.2954,2.2083,2.6699,2.6184,10.9608,10.8701,2.1618,2.7605,2.1036,2.273,13.1425,12.6607,2.1015,2.3021,1.3308,1.4972,16.095,15.6297,5.7812,5.4558,8.8988,9.6666,4.1761,4.0105,10.3266,10.3844,8.3095,8.0575,8.8288,8.0864,3.4631,3.4464,1.518,1.8382,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,172
+desd174,,,F,1.3846,0.25159,0.08978,0.13301,0.18236,0.50331,14.3243,0,0.00029,3.1812,2.6377,2.8026,8.9953,94.0231,98.56,1.3648,2.6149,2.3976,0.91186,1.0824,16.5462,20.4219,0.80256,0.19332,0.32208,0.32999,5.4218,5.2142,4.2723,4.4911,0.09045,4.3332,1.3543,1.4673,0.31657,0.13082,0.00006,0.00124,0.12458,0.93454,0.00047,0.55737,1.1839,3.9193,2.9722,2.8543,0.00002,0.43185,3.525,3.7841,0.34445,0.9014,0,0.02155,0,1.9083,4.513,5.323,0.23156,1.0331,5.2199,4.7337,8.2175,9.5018,5.7237,5.792,1.7375,0.951,2.897,0,0.66198,1.2859,0,0,4.6078,4.6551,2.8596,1.2391,0,0.80674,1.9456,1.863,0.00154,3.6668,10.5996,10.6368,1.5521,2.0922,2.5461,0.40331,0.00197,0.00015,0.00001,0.05771,3.0192,3.4149,7.8066,7.4883,2.1424,2.0225,1.8548,1.812,0,0.78485,0.00167,8.1361,0.63246,1.181,1.5695,1.4588,0,0.00255,1.577,1.6524,0.91841,0.92855,0.00055,5.9188,0,3.7126,1.1506,6.0253,4.0787,2.9805,8.2253,7.9356,5.4504,3.8933,5.8082,6.0018,1.1485,1.414,1.1214,1.0864,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,173
+desd175,78,78,F,2.0444,2.0586,0.37032,0.40137,0.80898,0.75558,17.2506,3.0714,3.0729,43.9993,43.0669,14.0298,13.9821,234.7419,237.6217,1.5455,3.3759,3.0573,0.91749,0.91392,21.2482,26.4455,1.5678,1.5818,3.8347,3.7625,6.7414,7.0318,4.5496,4.8185,0.07276,4.3222,2.1521,2.4787,0.36116,0.38526,3.9888,4.8437,4.2283,4.2454,1.7356,1.5505,10.3589,8.6848,2.9493,2.7817,3.6876,4.3316,4.56,3.6543,1.722,1.5799,1.9812,1.924,3.7183,3.7458,7.3072,6.9971,2.0343,2.0546,6.5811,6.031,11.7117,10.8608,7.462,6.1539,2.1723,2.241,4.4148,4.5886,1.8834,1.8683,19.346,18.6921,5.2723,6.0522,3.5675,3.7741,0.96212,1.1011,2.4741,2.5262,7.5522,7.0519,13.3432,13.4995,2.9491,3.6473,3.6394,3.7017,3.0623,2.8302,1.6061,1.3913,4.2989,4.5149,10.3332,10.7532,2.8099,3.1551,2.3395,2.5227,2.0325,2.008,8.52,9.9287,2.4092,2.4222,2.1513,2.4711,10.878,11.4156,1.7489,1.9516,1.3215,1.3509,13.286,13.631,5.5403,5.5811,7.1324,8.3272,4.2216,3.5,10.3213,11.1672,7.0388,6.3754,7.3028,7.2682,3.3673,3.42,1.3964,1.7641,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,174
+desd176,81,81,M,1.7486,2.1243,0.33007,0.35524,0.70437,0.71856,18.057,2.6118,2.517,47.9737,45.9615,13.7119,13.7074,211.2005,209.0373,1.9086,2.8578,2.7905,1.1272,1.2229,19.7081,25.4214,1.4455,1.4316,3.1242,3.1863,6.1098,6.2285,4.496,4.7221,0.09323,4.8407,2.1319,2.3955,0.32969,0.32516,3.3465,3.8072,3.752,3.8488,1.5053,1.3079,9.2651,7.3997,2.76,2.374,4.0917,3.5647,3.6229,3.3427,1.4214,1.4531,2.1351,1.8651,3.2384,3.0987,6.6989,6.8975,1.6907,1.6806,4.1811,4.8611,10.7078,10.8271,7.354,7.1401,2.0766,2.3092,4.6803,4.3582,1.4989,1.4147,15.8289,16.0813,3.2197,4.7546,3.2845,3.3944,0.76618,1.0474,2.2727,2.3079,6.4771,5.8231,12.4739,12.6961,2.1773,2.5982,3.8081,3.7917,3.7873,3.3294,1.3766,1.4893,3.4985,3.7326,9.4002,9.0322,2.5917,2.7641,2.0792,2.0085,2.16,2.3329,8.3638,10.309,1.9772,2.4751,1.8667,1.965,11.1654,12.3921,1.62,1.9727,1.0201,1.0199,13.1769,13.6217,4.577,4.7366,7.0035,7.845,2.7508,2.71,10.6959,9.8716,6.606,6.8819,7.424,7.869,3.5707,3.9455,1.2959,1.508,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,175
+desd177,70,70,F,1.6635,1.6088,0.31059,0.32269,0.68236,0.64418,17.8348,2.4563,2.2522,44.5434,45.0794,13.6201,13.6537,209.1347,205.3014,1.3861,2.4729,2.4742,0.71919,0.64214,8.2195,9.812,1.4367,1.4265,3.2527,3.1348,6.1767,6.7249,4.4063,4.782,0.07678,4.3332,2.2016,2.5436,0.30157,0.3211,3.8971,4.3819,3.7341,4.0023,1.7195,1.4873,9.8024,8.0959,2.9883,2.7883,3.5855,4.2033,4.1507,3.8821,1.3806,1.3227,1.946,1.8648,3.3897,3.3368,6.8917,6.5989,1.9662,1.912,5.9669,5.9248,11.0173,9.9259,6.8965,6.6771,2.0948,2.3387,4.4848,4.4931,1.7738,1.7254,16.2697,19.0743,4.6494,5.8084,3.8878,3.5533,0.90939,1.0709,2.4188,2.3103,7.1601,6.4494,13.5985,12.213,2.7901,3.0168,3.9417,3.9987,3.0972,3.4346,1.4956,1.5504,4.0214,4.4008,10.1131,10.1246,2.6985,2.6444,2.2352,2.4319,2.0085,2.008,9.9235,11.28,2.3405,2.2946,2.1024,2.2828,11.6578,12.5391,1.5729,1.6485,0.97385,0.97237,13.6789,13.0626,5.0284,5.2323,6.9792,7.6723,4.0576,3.325,10.8639,9.1754,5.9694,6.356,6.7739,6.6037,3.5694,3.9856,1.4512,1.3766,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,176
+desd178,80,80,F,1.7205,1.3881,0.29367,0.33219,0.64989,0.63558,16.2942,2.5792,2.6666,40.571,41.8891,13.1521,13.6013,175.9135,171.8839,1.3921,2.8602,2.454,1.0165,0.87975,19.2048,20.0821,1.4477,1.429,2.903,2.8923,5.7143,5.9888,4.1648,4.377,0.07026,3.7738,2.1837,2.097,0.32224,0.31728,3.2435,3.6304,3.4572,3.5203,1.2952,1.0733,7.6621,2.2506,2.8323,2.7872,3.4278,3.7558,4.3684,3.9512,1.2676,1.3853,1.6705,1.7712,3.1813,2.8388,5.9454,5.6597,1.6023,1.6227,5.7857,5.1608,8.2424,8.5987,6.7317,6.0849,1.7066,1.9361,3.2808,3.5663,1.3553,1.3385,14.4447,13.0473,4.6187,4.5191,2.92,3.0824,0.89653,0.99356,2.1395,2.04,6.4539,5.6687,10.0789,11.5039,2.4945,2.5508,3.503,3.5527,2.9659,3.0269,1.2926,1.203,2.561,3.4659,8.5006,8.5223,2.5609,2.7336,2.0291,1.9261,1.8017,1.9084,8.5585,9.6952,1.8322,1.9725,1.8162,1.8933,10.3155,10.4681,1.5209,1.7361,0.88812,0.93688,11.829,11.831,4.3057,3.6742,5.7985,7.0145,3.5341,2.772,9.3058,9.3042,6.4699,6.1784,5.7073,6.2006,3.1211,3.1315,1.2066,1.4067,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,177
+desd179,78,78,M,2.5948,2.2981,0.36398,0.40587,0.77148,0.79633,18.2488,2.9093,2.8187,44.0443,44.4978,13.2285,13.625,179.8113,171.3762,1.9943,3.1141,2.8595,0.90656,0.6879,27.8355,35.8274,1.6206,1.6387,4.1819,4.2137,6.5668,6.9259,4.3656,4.5859,0.0769,4.7097,2.2808,2.5773,0.37188,0.39006,4.0922,4.8551,3.872,3.8667,1.7983,1.5895,9.5638,8.5698,2.8901,2.8104,3.8864,3.7809,4.5201,3.8832,1.601,1.4114,1.8671,1.7217,3.617,3.292,6.9563,6.4949,2.2971,2.2985,6.1465,6.0101,10.6336,9.9763,7.3151,6.9718,2.2001,2.3104,4.2137,4.0383,1.9747,2.0006,17.4824,19.2089,5.1017,5.6835,4.1959,4.4361,1.051,1.1249,2.3312,2.4559,8.4067,7.2136,13.0178,12.3393,2.6925,2.9054,4.0324,3.9724,2.944,3.8005,1.4553,1.3463,3.7771,4.1234,10.1319,10.701,2.8765,3.2237,2.2922,2.2586,2.4668,2.4089,9.613,11.1918,2.309,2.6164,2.0147,2.0492,12.1052,12.4411,1.8569,1.9869,1.2988,1.3238,13.5985,12.9226,5.6004,5.6865,7.0275,8.6561,4.4664,3.2665,9.3204,9.8233,6.5891,7.437,7.1507,6.9893,3.524,4.0163,1.6067,1.5795,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,178
+desd180,,,M,1.7692,2.6779,0.41651,0.46245,0.83141,0.88019,21.9754,3.5965,3.546,46.4131,47.4475,18.3548,18.4645,274.269,268.7903,1.4619,3.4092,3.3223,0.68417,0.62222,13.2917,15.3171,1.8399,1.9314,4.1009,4.158,7.7882,8.0637,5.1922,5.4939,0.0778,4.5193,2.0783,2.8725,0.41983,0.43353,4.5457,4.7119,4.4451,4.5935,1.6088,1.61,8.9804,8.4519,3.4265,3.9202,4.5488,4.622,4.0595,4.4845,1.697,1.7159,2.1004,2.1089,3.6097,3.2018,7.3746,7.2682,1.8119,1.9738,7.2028,6.6613,11.9523,11.1838,8.5437,7.8815,2.2932,2.36,4.5987,4.7548,1.5281,1.6862,17.6072,17.9409,5.6932,5.6108,3.7885,3.9717,1.1323,1.1741,2.8466,2.8748,8.014,6.5107,15.3673,14.6542,3.2996,3.0137,4.4969,4.5181,3.6679,2.9361,1.8614,1.4924,4.404,4.5832,12.1045,12.082,3.1435,3.3589,2.5021,2.4725,2.7622,3.1789,10.8522,10.8701,2.418,2.4749,2.3505,2.3431,9.9662,11.3994,2.3664,2.5081,1.1721,1.2978,16.326,16.1223,5.3443,4.9523,8.2692,10.6727,4.2164,3.2416,10.6544,11.59,7.6115,7.9968,8.0311,7.4704,3.7315,3.8073,1.7308,1.6412,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,179
+desd181,70,70,F,1.3845,0.25159,0.08978,0.00296,0.51139,0.50656,2.0826,0,0.88732,3.1812,8.4133,3.8003,3.9949,94.0231,128.6959,1.3648,2.4134,2.0491,0.85361,0.61403,10.9143,12.3254,0.81757,0.31864,2.1838,1.2789,4.141,3.9641,3.7752,4.0564,0.07522,2.6869,0.88859,1.2793,0.31657,0.2964,3.0793,1.9898,1.2425,3.2021,0,0.00046,8.4476,2.2506,3.0625,2.938,0.30663,0.43185,4.5105,3.6811,0.93517,0.9014,0.01207,0.00096,0,0,5.1012,5.4726,0.51662,1.0331,5.9191,5.3593,7.2375,8.829,7.4808,6.62,1.6042,0.22842,0,0,0.16873,1.2201,0,7.2894,4.272,4.5191,2.9884,1.5469,0.86716,1.0146,2.1498,2.2291,0.00154,0.00046,8.7517,10.8954,2.7967,3.075,3.9653,3.6751,0,0.00015,0.00987,0.0049,3.0192,3.4752,8.5006,8.6143,2.4985,2.4325,1.7214,1.9085,0.53142,0.78485,0,0.00568,1.9447,1.4214,1.6185,1.7202,0,6.6888,0.00244,1.4383,1.0127,0.91649,0.00055,11.176,0,0,0.20706,6.4444,4.0379,2.7448,8.2253,7.9356,3.4409,3.4718,4.2566,4.5637,0,0,1.009,0.31108,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,180
+desd182,71,71,M,1.9094,1.7396,0.37982,0.47086,0.7155,0.76914,19.5817,2.969,3.1851,56.2714,54.4207,16.5035,16.9913,250.1019,243.1891,1.5388,3.051,3.1014,0.93407,0.73717,24.6727,23.9703,1.6414,1.5944,4.1544,4.4532,7.9992,8.1564,4.9907,5.3377,0.10665,5.6788,2.4745,3.2572,0.42742,0.40515,4.8252,5.669,4.4494,4.6844,2.0035,1.8539,12.3409,11.1859,3.5648,3.1407,4.8738,4.6945,5.1395,5.1469,1.4334,1.4211,2.2589,2.1829,3.757,3.5865,7.4807,7.6027,2.2534,2.3058,7.4434,7.3809,12.869,11.3764,8.0021,7.4548,2.4049,2.8712,5.1192,5.5136,2.1056,2.1174,21.3816,20.5391,6.7079,6.9844,4.4057,4.5311,1.2452,1.2284,2.5709,2.6676,9.613,8.2845,16.2228,14.0277,3.3336,3.3014,4.3085,4.3724,4.1308,3.5868,1.6892,1.7511,3.8501,4.3477,10.1363,10.0436,2.8815,3.0873,2.6966,2.749,2.6032,2.5676,13.1671,11.1987,2.9933,3.0354,2.5206,2.8263,13.3306,13.3365,2.317,2.0633,1.5046,1.5587,15.565,15.2985,5.948,5.7074,9.1267,10.0076,4.4244,3.4882,11.5215,11.3401,8.6808,9.1999,7.07,6.8363,3.9793,4.3612,1.7,1.9453,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,181
+desd183,,,F,2.9825,2.7696,0.33104,0.35194,0.68424,0.63576,15.9469,2.7199,2.7129,40.8386,41.5782,12.0475,12.2351,197.9988,188.5754,2.1683,2.818,2.577,3.9041,1.333,21.9802,26.8485,1.3569,1.3106,3.1034,3.1216,6.0833,6.0253,3.916,4.2195,0.07215,3.9495,1.9707,2.1249,0.32726,0.3343,3.2047,3.6379,3.7564,3.7041,1.5852,1.2892,8.3779,7.8979,3.1261,3.2017,3.3255,3.7673,4.5157,3.8546,1.2651,1.3025,1.8833,1.6296,3.1353,2.9207,6.2984,5.8965,1.5802,1.5971,5.9191,5.3593,9.6818,9.3713,7.3677,6.8258,1.9596,1.932,4.075,3.7145,1.3793,1.4691,16.7875,15.4965,4.6161,5.5906,3.2405,3.3339,0.84444,0.91292,1.8683,2.0004,6.357,5.7877,12.0458,11.6377,2.7992,2.9293,4.1069,4.1086,3.0267,2.9839,1.2979,1.0427,4.0214,4.516,10.5318,10.9108,2.5273,2.7655,2.1284,2.1509,1.8168,2.0021,8.0006,9.7953,1.9867,2.0985,1.8162,1.9533,9.5908,10.2525,1.5615,1.9203,0.99535,1.0239,11.8048,11.8102,4.244,4.2845,6.6309,7.5768,3.6124,2.7383,8.8258,9.8113,6.3846,6.6294,6.1222,6.727,3.2361,2.934,1.2118,1.508,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,182
+desd184,67,67,F,1.6984,1.9137,0.28645,0.32602,0.77274,0.75163,15.6667,2.2721,2.4183,41.0787,41.3308,12.3419,13.0289,184.7169,185.9051,1.7597,3.0204,2.8438,1.9068,2.3651,31.2259,30.645,1.5892,1.5185,3.0887,2.9815,5.8471,5.9495,4.2378,4.3908,0.06895,4.5196,2.0428,2.1701,0.30745,0.32673,3.927,4.6022,3.5208,3.5961,1.6327,1.4523,9.0908,8.7436,2.8002,2.7609,3.8943,3.771,3.6079,3.2905,1.3929,1.3462,1.7233,1.6528,3.4434,3.0477,6.0063,5.9773,1.7867,1.8414,4.785,5.9258,8.7702,8.6306,6.7517,6.0287,2.1197,2.2357,4.7753,4.9177,1.6149,1.6391,15.0889,16.6634,4.149,5.3989,3.7264,3.5241,0.95841,0.96627,2.0625,2.3554,6.8932,6.6371,10.0935,10.0357,2.2858,2.7448,3.4874,3.8581,2.9334,2.5815,1.4327,1.4125,3.5982,4.2632,9.1639,9.9918,2.4115,2.5063,2.199,2.1578,2.0186,2.3287,10.5715,10.3747,2.0896,2.1983,1.9201,2.0287,10.5486,10.9252,1.6205,1.9041,0.97385,0.9413,11.8701,12.524,4.6414,4.3322,7.1656,8.8249,3.8231,2.7218,9.5553,9.7759,5.6425,5.7462,6.4215,5.8248,3.229,3.4937,1.5181,1.4112,,11,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,183
+desd185,66,66,M,1.4915,2.2088,0.45089,0.47721,1.1379,1.1046,20.4108,3.8635,3.5903,52.4729,52.6494,17.4447,17.1017,300.9244,281.4037,1.397,4.2465,3.6808,0.82291,0.687,18.0742,17.5791,1.828,1.7408,4.0707,4.2109,7.9044,8.006,6.6725,5.7298,0.08206,4.551,2.2865,2.8917,0.43463,0.44588,4.3311,5.2964,4.6231,4.7798,1.9919,1.6462,12.0751,10.6247,3.4315,3.5156,4.6459,4.622,5.1925,5.3907,2.0902,1.9877,2.2927,2.1829,4.1828,3.8925,8.6704,7.8056,2.1982,2.3796,8.1387,7.263,13.2295,11.8957,9.2103,8.522,2.4687,2.5738,4.5169,5.4238,2.0872,2.1063,21.4524,21.8414,6.0093,7.712,4.0427,4.3252,1.4446,1.1415,3.1735,3.2518,9.1937,8.2813,15.3481,15.5401,3.7683,3.7785,5.1473,4.9123,4.3609,3.7082,1.6958,1.7998,4.7803,5.0463,12.5596,12.4284,3.4242,3.9265,2.585,2.5068,3.0101,3.0595,12.0861,13.1955,2.6098,2.7716,2.5971,2.7526,14.7043,14.409,2.3442,2.7258,1.3669,1.4624,16.9044,16.123,5.7327,5.9984,9.4078,9.71,5.0085,4.5227,11.3379,12.9099,8.223,7.8247,9.0227,8.3456,3.817,3.8605,1.9095,1.9208,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,184
+desd186,,,M,1.7692,1.8618,0.36092,0.39427,0.59918,0.63104,18.2488,2.8062,2.7336,48.0518,47.956,14.062,14.2885,203.5624,203.3715,1.9683,2.7748,2.6663,1.1855,0.859,19.7081,22.5116,1.4184,1.4402,3.2994,3.4816,6.2039,6.3968,4.4367,4.6137,0.09914,5.0502,2.1661,2.3231,0.37411,0.36187,3.9769,4.2807,3.6279,4.0673,1.8008,1.502,8.7247,7.9909,2.5845,2.4377,3.6734,4.2908,4.2272,3.7318,1.2083,1.183,1.946,2.0334,3.798,3.4222,7.1548,6.5086,2.1154,2.066,5.9237,6.0503,11.6078,9.0324,6.9399,6.4933,2.2333,2.3544,4.3328,4.245,1.8545,1.8625,17.659,17.1771,4.4069,5.3522,3.9069,3.9735,0.98211,1.1127,2.4536,2.588,7.4819,6.3338,14.0337,12.3,2.519,2.982,3.7202,3.9667,2.8621,3.4064,1.5866,1.3049,3.6107,3.9284,9.1509,9.2245,2.7432,2.7176,2.1187,2.1676,2.1869,2.4133,9.6252,10.7874,2.3559,2.3962,1.9273,2.1727,11.8972,11.5573,1.9087,2.2289,1.2151,1.1464,14.4338,15.3711,5.2241,4.9642,7.6135,8.5425,3.6786,3.134,9.228,9.0897,6.8655,7.1108,6.9081,6.6037,3.5609,3.3907,1.5501,1.6638,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,185
+desd187,67,67,M,1.1381,1.8593,0.3977,0.4778,0.86831,0.98359,22.4176,2.8016,2.7014,51.3774,51.1758,16.5514,17.4215,252.8798,250.2604,1.1866,3.5761,3.3742,0.51198,0.5261,11.9217,11.7896,1.6165,1.6675,4.106,4.158,6.6726,7.2052,4.8613,5.3312,0.0856,5.1861,2.4767,2.8574,0.43406,0.43215,4.262,5.3928,4.4752,4.6844,2.1453,1.7562,11.0375,10.7749,3.6048,3.2357,4.5708,4.8046,5.4003,5.6454,1.8746,1.8669,2.1829,2.1407,4.4148,4.1818,8.5003,7.8643,2.3084,2.4245,7.6287,7.1878,13.1236,11.6909,8.2528,7.61,2.7614,2.8047,4.8032,5.2531,2.0182,2.0987,23.4151,22.7685,5.467,6.6358,4.7054,4.9299,1.4549,1.1694,3.0988,2.5948,9.613,8.9122,15.3481,14.1545,3.5262,3.9308,4.6384,5.0193,3.8511,3.4729,1.8308,1.6954,4.0929,4.7787,11.966,11.4987,3.1107,3.6146,2.5021,2.519,2.2493,2.4474,13.2796,13.853,2.6135,2.9618,2.0654,2.5953,13.7001,14.6171,1.9096,2.0111,1.359,1.4242,18.3793,17.7633,6.5039,7.0728,10.4337,9.8394,5.0784,4.2936,12.5559,12.0068,8.4401,8.0384,9.7771,9.5122,3.9384,3.8351,1.4135,1.8285,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,186
+desd188,64,64,F,1.0539,1.2781,0.40807,0.43187,0.93717,0.862,12.5951,2.8717,2.9504,22.5067,18.1896,10.3602,10.4877,234.1269,232.7609,1.2559,3.3797,3.189,0.35824,0.46899,14.272,17.4128,1.7519,1.8023,3.4765,3.5921,6.9093,7.0601,4.4591,4.7031,0.07949,4.061,1.7855,0.01307,0.37164,0.37195,4.2948,4.543,4.166,4.2311,1.6695,1.4732,8.727,8.8037,2.6469,2.5129,3.5002,3.308,4.5726,4.0687,1.6748,1.6574,2.0246,1.9795,3.4547,3.1156,6.4639,6.4863,1.9012,2.012,6.0584,5.5437,10.3798,9.242,6.9363,6.6783,2.1988,2.2228,4.6942,4.7063,1.6189,1.694,17.934,16.8229,5.2137,5.5906,3.7853,4.0888,0.9992,1.3214,2.4901,2.6061,7.6361,6.5001,13.4647,12.4403,2.5253,2.7195,3.9429,3.8423,3.4362,3.2415,1.5709,1.4832,3.7291,3.9752,10.4,11.349,2.7144,2.832,2.3548,2.2321,1.9541,2.1338,9.0724,10.3112,2.4268,2.4377,2.0367,2.295,10.6811,10.7284,1.7988,1.8025,1.1423,1.1712,13.2802,13.2358,5.3901,5.5141,7.9005,7.5996,3.9277,3.3885,10.7106,10.5715,7.0859,7.3087,7.3906,6.4441,3.9623,4.1668,1.5205,1.4265,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,187
+desd189,68,68,F,1.427,1.5222,0.38902,0.41848,0.6968,0.69368,16.6075,2.9505,2.7813,44.7901,44.0634,13.6586,13.6537,222.5085,219.3099,1.0014,2.7141,2.6837,0.35763,0.33872,8.3227,9.9239,1.48,1.5027,3.1852,3.368,6.0902,6.4669,4.2851,4.4911,0.06888,4.4952,2.1428,2.4679,0.32629,0.35342,3.3465,3.8512,4.8436,5.0995,1.4813,1.4318,10.0514,8.2258,2.8293,2.8997,3.656,3.5289,4.1878,4.3683,1.4346,1.317,2.0242,1.9711,3.2345,3.3803,6.7407,6.8859,1.9636,1.9845,6.4408,5.9092,11.2782,10.6118,7.6388,7.0396,1.9707,2.2682,4.5803,4.4478,1.4951,1.5494,16.5137,17.0128,5.3586,5.4893,3.4848,3.7574,1.0033,1.2691,2.374,2.7088,6.4771,5.9222,13.6094,13.4861,2.877,3.3386,4.1711,4.1086,3.7043,3.138,1.3389,1.4993,3.4763,4.066,8.8048,9.6885,2.5917,2.7082,2.588,2.5068,1.8017,2.387,9.3223,10.283,1.967,2.4411,2.3015,2.3784,11.6976,11.7764,1.7924,2.1613,1.0058,1.0478,12.7821,13.237,5.0658,5.0962,7.9417,7.9887,3.8853,3.4955,10.3349,10.3009,7.2458,7.2637,6.8173,6.3119,3.2971,3.6428,1.5479,1.5275,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,188
+desd190,60,60,M,2.3493,1.8381,0.38384,0.43673,0.99874,0.97955,19.4303,3.1983,2.9093,47.6832,49.3091,15.9503,16.6198,259.0133,245.8349,1.5952,4.0554,3.5866,0.5229,0.47953,13.3926,13.8588,1.73,1.6728,3.6072,3.5807,6.9086,7.1641,4.8321,4.873,0.08568,4.7656,2.1822,2.6358,0.40882,0.4058,4.3085,4.8562,4.2808,4.3726,2.1901,1.5811,10.3104,8.8765,3.7793,3.8162,3.767,4.0084,5.6101,5.5077,1.8976,1.8557,1.9812,2.0867,4.4148,4.2113,7.4238,7.1705,2.4687,2.4461,6.6404,6.5697,11.9174,11.9409,8.4337,7.7831,2.7488,2.4717,3.9635,4.0969,2.2046,2.3246,21.4648,22.995,5.0577,5.6886,4.6467,4.6622,1.3128,1.1447,2.831,2.8198,8.4573,7.1,14.5187,14.0223,2.9953,3.2581,4.4547,4.6073,3.7894,3.481,1.7978,1.589,4.2966,4.6564,11.0979,11.75,3.1361,3.2922,2.4836,2.5067,2.3931,2.2755,8.6843,10.0361,2.6084,2.6743,2.312,2.5114,12.4481,13.3904,2.0277,1.8458,1.2792,1.2655,14.6592,15.6987,5.5008,5.0501,7.9376,8.3013,3.8405,3.4278,11.0118,11.1369,7.8592,6.8017,8.3154,8.4584,4.49,3.8312,1.6241,1.6201,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,189
+desd191,57,57,M,1.936,2.3628,0.37592,0.39586,0.91709,0.93429,17.5678,3.1894,3.0692,52.136,51.7045,14.4927,15.0749,196.9166,195.7271,1.4859,3.5952,3.3065,1.0107,1.0618,21.0366,26.646,1.5391,1.5034,3.5256,3.5172,7.0836,7.3432,4.4608,4.7218,0.08896,5.1432,2.4147,2.8921,0.41876,0.39487,4.7493,5.2022,4.2613,4.406,1.947,1.6626,11.3833,9.2355,4.0653,4.0436,3.9951,3.9037,5.5844,6.106,1.7722,1.8031,2.1354,1.8261,4.3478,4.1805,9.1032,7.8056,2.4687,2.4461,8.1901,7.291,13.1236,11.3764,9.0811,8.3281,2.5197,2.553,5.1184,5.3246,2.1883,1.9903,20.0268,19.6225,5.2269,6.4884,4.3027,4.5688,1.1664,1.0816,2.8439,2.7085,8.8946,7.3094,15.2634,13.9554,4.2089,4.0946,5.4657,5.1498,3.5463,3.3782,1.6039,1.4844,4.683,5.1161,12.4279,11.1221,3.1327,3.5022,2.3799,2.6984,2.2901,2.4531,10.0428,11.0553,2.4505,2.6349,1.9848,2.2966,13.1199,13.3634,1.9579,1.9948,1.6682,1.6854,15.3386,16.3673,5.5549,5.7904,7.8348,8.6945,4.6761,3.8,12.2937,11.8119,7.0929,8.5547,8.8052,7.7869,3.8534,3.6743,1.573,1.811,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,190
+desd192,,,F,2.0768,2.5948,0.43007,0.45413,0.96199,0.92443,20.7412,3.4062,3.2314,46.4131,47.4532,15.0686,15.5227,241.6973,243.7703,1.9387,3.4753,3.3746,1.0926,1.0578,23.4697,28.2322,1.6519,1.6208,3.5515,3.7198,7.3645,7.4805,4.949,4.8368,0.07789,4.8141,2.3147,2.8658,0.37923,0.41411,4.4693,4.7298,4.4452,4.2475,1.915,1.7011,10.9498,10.1825,3.3215,3.2318,3.9016,4.2808,4.7354,4.4937,1.8751,1.741,2.1795,2.0427,3.6851,3.3415,7.6859,7.5038,2.0409,2.0793,6.9214,6.9187,12.3106,12.53,7.5137,7.5524,2.44,2.5042,4.5636,4.8107,1.7976,1.8622,20.5293,20.8177,5.5605,6.6154,3.8695,3.785,1.135,0.99429,2.5932,2.3513,8.2489,6.7738,15.5315,15.049,3.1874,3.783,4.3247,4.6409,3.6679,3.6265,1.7098,1.526,4.3629,4.6273,11.6293,11.3415,3.1033,3.3782,2.3321,2.2428,2.4729,2.6854,10.6365,12.9774,2.5801,2.4766,2.2951,2.1527,12.1477,12.0283,2.1807,2.3907,1.2302,1.2912,14.5554,14.0924,6.055,4.8832,8.5362,9.4176,4.4534,3.7427,12.0364,11.7601,7.9134,7.9968,8.4612,8.3303,3.8231,3.9851,1.6968,1.7511,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,191
+desd193,67,67,M,1.0532,1.7796,0.3977,0.44792,0.89568,0.90411,19.9315,2.9757,2.9302,54.2284,54.4207,17.6577,19.6686,254.6872,251.7752,1.029,3.6065,3.5722,0.39387,0.46701,7.1348,7.4895,1.5787,1.5518,3.476,3.7792,7.4221,7.6297,4.7611,4.9977,0.07952,4.6166,2.6867,2.7214,0.42319,0.40079,4.6882,4.9975,4.6922,4.8784,1.8887,1.4723,10.1476,10.3484,2.4736,2.629,4.4059,4.783,3.6957,3.5316,1.7703,1.7455,2.1701,2.1407,4.0853,3.7187,7.894,8.1054,2.3123,2.3284,6.6247,6.9345,11.4399,11.3744,7.6316,7.335,2.2997,2.2419,5.0145,5.1103,2.1857,2.0045,19.8375,19.6619,4.8301,6.5332,4.2661,4.5659,0.99532,1.1342,2.3465,2.6403,8.9955,7.6082,14.7209,14.4591,3.0109,3.282,3.7753,4.4898,3.551,3.5614,1.6274,1.4428,4.2346,4.4781,11.1301,10.3925,3.1027,3.4223,2.6001,2.5068,2.2216,2.4094,9.9349,11.8108,2.6607,2.3256,2.3544,2.6408,11.673,11.8982,1.6382,2.072,1.3336,1.3946,16.2564,14.552,5.9055,5.5681,7.5884,8.6361,3.9438,3.2665,10.5337,9.7753,6.8985,7.8197,7.9797,7.5783,3.7111,3.8219,1.6167,1.6798,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,192
+desd194,,,F,0.92151,1.602,0.39144,0.43745,0.88854,0.8219,18.4167,3.2466,3.1447,48.463,48.3369,15.2028,15.8019,216.4777,212.866,0.78724,3.2833,3.4302,0.4904,0.4663,8.8972,10.939,1.541,1.6093,4.0664,3.952,7.1738,7.6598,4.9907,5.3211,0.07369,4.2965,2.2981,2.493,0.36176,0.37472,4.2456,4.5795,4.8339,4.6767,1.7616,1.4925,9.3863,9.2074,3.3355,3.1286,4.1462,4.3879,4.9111,4.5894,1.7475,1.6028,1.9715,2.4049,3.4663,2.956,7.5378,7.8456,1.8882,2.0985,6.4854,6.36,11.7446,11.0853,8.7643,7.7195,2.3364,2.3498,4.0993,4.4844,1.8095,1.9573,17.5811,18.0269,4.7554,6.2887,3.7024,3.9559,0.99441,1.0727,2.1741,2.3924,7.3912,6.256,14.3784,13.1422,2.917,3.6599,4.6849,4.465,3.1835,3.1692,1.6807,1.5421,3.9742,4.4419,11.258,11.1859,2.9552,3.1965,2.585,2.5239,2.4429,2.5488,10.4306,10.3086,2.3034,2.3344,2.3544,2.3724,12.1241,11.8777,2.0045,2.3654,1.0892,1.1476,16.326,14.5561,5.2152,5.0618,7.9481,8.9545,4.1532,3.282,9.3057,10.0323,6.597,6.2479,8.3394,7.9776,3.3673,3.8601,1.6686,1.9146,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,193
+desd195,56,56,F,1.172,1.7443,0.3781,0.42053,0.77349,0.8008,15.3697,2.7961,2.7336,49.447,50.7872,12.8401,13.1052,227.3956,216.712,1.0312,3.0233,2.9863,0.40818,0.44981,9.478,11.4231,1.5275,1.5147,3.2836,3.4101,6.345,6.5934,4.311,4.6199,0.07685,4.9801,2.407,2.6222,0.36866,0.37705,3.7805,4.3799,3.8964,3.7848,1.5604,1.5289,8.2161,8.5611,3.1004,3.0936,3.7112,3.763,4.2553,4.211,1.6085,1.5145,1.7598,1.7542,3.1919,3.1487,6.8956,7.1118,2.0352,2.1695,6.9569,5.9451,10.1663,10.8081,8.1911,7.7624,2.1301,2.3184,4.1706,4.0497,1.6016,1.6432,17.3506,17.8445,4.7603,5.7343,3.5454,4.0437,1.0517,1.1394,2.5962,2.9515,6.9324,6.4494,13.3397,13.5169,3.2278,3.7023,4.4483,4.2177,3.2753,3.286,1.5009,1.3667,3.849,4.1181,9.5387,9.5475,2.6687,3.0905,2.0263,2.0948,1.7874,2.187,10.3026,10.3747,2.3126,2.4821,1.8823,2.1378,11.9216,12.1035,1.5976,1.768,1.048,0.97977,13.9443,13.7765,4.9874,4.7219,6.1646,8.0024,4.3993,3.4542,9.1039,9.2653,7.0951,7.1332,7.1243,6.874,3.4384,3.6143,1.2809,1.4578,,27,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,194
+desd196,,,F,0.70972,1.1257,0.39144,0.44492,0.80756,0.82268,17.0278,3.1739,3.0868,47.704,47.0212,13.5201,13.7356,207.1482,206.9141,1.399,3.328,3.0577,0.38128,0.36325,9.3245,12.5428,1.6529,1.6597,3.8407,3.8764,6.6755,7.1669,4.7493,4.9442,0.07497,4.4305,2.2414,2.6199,0.3643,0.38358,4.2456,4.6177,4.2161,4.3726,1.8072,1.5468,10.5965,10.1825,2.9026,3.5359,3.9817,4.3056,5.3005,5.0758,1.7124,1.5896,2.0912,2.1194,4.015,3.6101,7.0639,6.8061,2.1371,2.0894,7.1968,6.9482,11.7256,10.9206,7.5424,7.4574,2.0878,2.4125,4.8793,4.5013,1.7953,1.8622,17.659,18.4445,6.1579,6.6358,3.9067,4.0194,0.98132,0.98826,1.9825,2.2115,7.7828,6.6459,14.4949,14.6998,3.5384,4.2916,3.7584,4.2611,3.7074,3.5831,1.4431,1.6744,3.9393,4.4385,11.2018,11.0284,2.8906,3.1722,2.3018,2.2438,2.1039,2.3142,9.9071,10.6325,2.4704,2.5079,1.9836,1.9493,11.574,11.9453,1.969,2.0327,1.0766,1.1133,14.7744,14.8242,5.0951,4.9509,7.6392,8.903,4.3393,4.138,9.1951,10.6744,7.4213,7.5841,8.383,8.0899,3.5315,3.3372,1.5501,1.5055,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,195
+desd197,71,71,F,1.1751,1.7805,0.41623,0.45137,0.96308,0.97955,21.8183,3.209,3.0987,48.2352,47.8478,19.0103,18.277,274.269,260.6464,1.6407,3.3784,3.1767,0.52761,0.47243,13.3926,13.1029,1.73,1.7506,4.3524,4.2961,7.3845,7.6489,4.949,5.1393,0.0856,4.9937,2.3699,2.7104,0.43463,0.41984,3.9151,4.9085,4.3377,4.5486,1.9291,1.7476,9.5148,9.2765,3.4265,3.3305,3.9933,4.6146,5.5107,4.7596,1.9505,1.8609,2.1221,2.1978,3.6033,3.9277,7.7757,7.4301,2.1538,2.2924,6.8332,6.6271,11.9752,12.0957,9.5438,8.0287,2.4591,2.6652,4.4131,4.5009,1.9242,2.0486,16.6491,19.9508,5.3816,5.8134,4.4345,4.623,1.1911,1.198,2.7194,2.5419,8.4927,7.0881,14.9589,13.9313,3.3716,3.47,4.7296,4.8176,3.5722,3.8995,1.7193,1.7466,4.1235,4.8286,10.5938,10.0353,3.2428,3.3523,2.4147,2.5299,2.2478,2.5347,10.2604,12.1538,2.502,2.7405,2.1415,2.4695,13.196,12.916,2.1247,2.3352,1.1758,1.2903,14.4175,13.4785,6.3356,6.056,8.4164,8.526,4.4704,3.7842,9.7527,10.9693,8.2144,7.5473,8.8288,7.9158,3.6747,3.753,1.5639,1.6751,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,196
+desd198,56,56,F,1.2087,0.73524,0.30261,0.35366,0.60361,0.66216,14.5522,2.5567,2.8728,36.5871,36.5567,11.7082,11.9709,176.7668,171.0676,1.2238,2.554,2.728,0.33228,0.47194,10.8911,13.4527,1.3856,1.3888,3.0847,2.6506,5.6714,6.1034,3.9009,4.1105,0.08637,4.1318,1.6783,2.1048,0.36996,0.32475,3.4061,4.2642,3.2609,3.4818,1.6751,1.4159,9.5952,8.9399,2.8545,2.6239,3.755,3.771,4.1145,4.2103,1.2567,1.2728,1.7009,1.681,3.879,3.0808,5.0191,5.759,1.7907,1.977,5.566,5.3117,8.9138,8.2972,6.92,6.6783,2.0293,1.9433,4.1302,4.4628,1.6876,1.694,16.6386,17.3826,4.3254,5.3655,3.449,3.5504,0.92508,1.2399,2.4699,2.627,7.2857,6.2888,11.1503,11.0512,2.549,2.3928,3.6809,3.6751,3.2342,3.1904,1.459,1.1488,3.1223,3.7408,9.1766,9.3937,2.3909,2.5548,2.0682,1.9205,1.8636,2.2234,9.1566,11.6058,1.9527,2.054,1.9834,2.043,11.1343,12.3857,1.7454,1.9443,1.0766,1.1654,12.4816,11.6837,4.8107,4.542,7.36,8.6986,4.204,3.2493,9.4211,9.2394,6.2549,5.982,6.6466,5.995,3.5397,3.4939,1.445,1.4745,,23,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,197
+desd199,68,68,M,1.4677,2.0873,0.45089,0.48466,0.96734,0.94374,19.4303,3.3837,3.3032,55.275,56.7564,18.9067,18.277,301.2319,293.5499,1.2497,3.6539,3.4198,0.58957,0.47243,8.5334,9.1183,1.828,1.7725,4.5594,4.6599,7.663,7.8543,5.0171,5.4028,0.08487,5.8009,2.6203,3.1022,0.45822,0.46748,5.0449,5.7206,4.3245,4.7315,2.0647,1.8727,12.1998,11.3392,3.6591,3.6169,3.8627,4.6635,5.2557,4.6995,1.9067,1.8225,2.1378,2.1611,4.3098,4.1805,8.7955,8.7704,2.4397,2.4946,7.0212,6.6433,13.0873,13.6809,8.5558,7.8045,2.7614,2.7463,5.1245,5.1103,2.0591,2.1957,20.661,20.5668,5.5348,6.6016,5.6107,4.8288,1.4549,1.1939,3.209,3.2326,9.3424,7.6078,15.9716,16.8572,2.7271,3.1976,4.423,4.1718,3.9394,3.481,1.8216,1.7248,4.248,4.9304,10.2779,11.3059,3.1107,3.3253,2.4661,2.3709,2.2439,2.3061,13.4065,12.296,2.502,2.754,2.272,2.5369,12.5464,13.1281,2.0136,1.8173,1.3886,1.38,16.4028,15.6987,6.8389,5.7798,8.4487,10.4137,4.2425,3.6212,12.6491,11.3395,8.4167,9.1999,10.7681,9.3224,3.9358,4.3612,1.6366,1.8049,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,198
+desd200,80,80,F,1.6409,3.1677,0.32836,0.38856,0.75455,0.79298,16.4358,2.7168,2.824,42.7345,43.7109,13.3855,13.625,211.2005,210.2499,1.1862,2.8518,3.0048,0.66079,0.79444,21.4528,22.8015,1.5456,1.5705,3.1708,3.0976,6.5223,6.7553,4.3972,4.5684,0.08687,4.4952,2.1958,2.1846,0.39142,0.35829,3.9522,4.3325,3.6452,3.9682,1.631,1.3478,9.0586,7.639,3.0446,2.7653,3.9721,4.1408,3.8762,4.1721,1.5505,1.5511,2.1616,1.9412,3.2279,3.2506,6.3936,6.7179,1.7041,1.6724,5.6908,5.9248,10.7082,9.5931,6.9306,6.489,2.1928,2.2157,4.6756,5.0023,1.5878,1.6612,20.0742,19.5447,4.796,4.7546,3.1815,3.4098,1.0125,1.0506,2.3795,2.549,6.9498,6.5523,14.1728,12.6595,2.391,3.4122,3.9417,3.9102,3.1209,3.8005,1.6283,1.4926,3.5177,3.7548,9.5692,9.5476,2.6748,2.9855,2.0729,2.1462,2.1185,2.3096,8.407,9.9287,2.4806,2.3113,1.8621,2.173,12.4119,11.9836,1.8306,1.8118,1.1613,1.2219,12.967,13.9897,4.918,5.1003,7.4083,7.7603,3.977,2.9199,10.2397,10.3839,6.5968,6.5229,7.4341,6.7432,3.6933,3.9927,1.3885,1.5591,,22,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,199
+desd201,72,72,M,1.076,1.2928,0.39689,0.43031,0.93717,0.8882,18.9176,3.2384,3.0922,40.9779,43.1548,14.0826,15.2682,211.353,212.0212,1.2612,3.3372,3.2016,0.70599,0.50083,11.703,11.6998,1.6559,1.668,3.5381,3.703,7.0833,7.3428,4.8194,5.0816,0.07497,4.7016,2.0673,2.4551,0.35327,0.38853,3.591,4.082,4.0376,4.1057,1.9295,1.7774,11.3817,9.9879,3.6757,3.6094,4.185,3.6082,5.0682,5.4507,1.6715,1.655,2.045,2.0529,3.7478,3.662,7.562,7.2979,2.3123,2.3994,7.3727,7.2429,11.5999,11.9409,8.3597,7.7624,2.5564,2.5654,3.9778,4.0456,1.815,1.6782,19.6606,16.8625,5.7287,6.2518,4.2999,4.7389,1.0288,1.1895,2.3303,2.7089,6.5218,5.9052,14.3784,13.9066,3.881,4.0524,4.6395,4.4501,3.8942,3.4282,1.6433,1.5799,3.4491,3.7688,10.1893,10.4832,2.9008,3.4545,2.4081,2.4581,2.53,2.7283,10.8533,12.6198,2.519,2.7957,2.1158,2.3094,13.7294,13.6664,2.1289,2.157,1.3268,1.3509,14.5232,15.0536,4.7982,4.9805,8.6232,9.6666,5.1807,4.2936,10.0806,10.4071,8.0255,7.898,7.1507,7.2254,3.5754,3.8459,1.3905,1.5647,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,200
+desd202,67,67,F,1.0572,1.685,0.3531,0.36467,0.82722,0.80084,14.7753,2.4421,2.5513,40.8755,40.3972,12.0467,12.4071,214.4218,211.6229,1.2559,2.9997,2.9587,0.43641,0.4617,9.3026,12.7084,1.4997,1.4829,3.4545,3.5981,6.1788,6.4197,4.2401,4.4327,0.07442,4.224,1.8288,2.247,0.33734,0.34498,4.1037,4.7414,4.0004,4.4668,1.6198,1.4954,9.8956,8.714,3.1163,2.8373,3.7906,3.8421,4.1616,3.7909,1.5899,1.5263,2.0596,2.3372,3.6456,3.1803,7.7755,7.4944,1.8974,1.8575,6.0951,6.1879,10.6656,10.6636,7.3041,6.533,2.1682,2.2284,4.554,4.7776,1.6735,1.7134,16.9497,17.7121,5.1447,6.305,3.5136,3.688,1.116,0.94038,2.3443,2.2863,7.7854,6.8896,13.5206,13.3416,2.1297,3.0981,3.9188,3.8194,3.4493,3.1393,1.6746,1.4926,4.0339,4.6571,9.7306,9.8654,2.8314,3.0435,2.0389,2.0073,2.0855,2.2225,9.2486,10.7141,2.0888,2.0134,2.004,2.0488,11.1662,12.0145,1.7546,1.8612,1.2499,1.2975,13.0801,13.8829,5.3208,5.5874,7.3399,8.1279,3.6559,3.1956,9.3513,9.7427,7.3514,7.3608,7.3208,7.6994,3.4761,3.7653,1.2354,1.3469,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,201
+desd203,,,F,2.0007,2.7942,0.29367,0.34872,0.76898,0.71092,18.765,2.1606,1.6876,45.8701,46.1531,15.7042,16.5544,250.4935,252.0335,1.8735,3.19,3.135,2.1389,1.9334,23.7121,26.3035,1.6059,1.5711,3.4568,3.4843,6.1423,6.2886,4.6091,4.8254,0.08037,5.1289,2.1969,2.7552,0.35605,0.32917,4.5652,4.7708,4.3829,4.3307,1.4708,1.386,11.4893,8.6865,2.9724,3.0178,4.2568,4.4032,4.6651,4.4391,1.4166,1.3429,1.6567,2.0095,3.548,3.134,6.8917,6.5236,1.7307,1.8647,6.3048,6.303,10.3783,9.1041,7.2899,7.5524,2.2026,2.1175,4.8096,4.9476,1.4899,1.5482,15.7914,16.6826,5.31,6.0615,3.2523,3.5958,1.0455,1.051,2.5523,2.6688,7.5088,6.8312,13.5206,12.9115,2.563,3.2759,4.2119,4.3338,3.0664,2.9979,1.5359,1.4244,4.2915,4.4635,10.554,10.1935,2.6384,2.7096,2.4221,2.2366,2.1164,2.4504,9.8726,11.5915,2.4519,2.3531,2.2267,2.3109,11.7555,12.0433,1.9502,2.2641,1.1353,1.1892,14.0128,14.2731,5.3901,4.9523,8.1688,8.2607,5.0079,4.0134,10.5029,9.6246,7.1459,6.709,6.9164,6.9798,3.229,3.3662,1.5637,1.6405,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,202
+desd204,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,203
+desd205,,,F,1.2254,1.8035,0.35779,0.39427,0.91074,0.90859,18.9336,2.5937,2.3667,46.9422,47.7378,14.8152,15.2393,223.1865,221.3182,1.0767,3.4077,3.1069,0.61029,0.6351,9.0393,11.9184,1.4998,1.4831,3.1969,3.2548,6.1682,6.9973,4.4021,4.5314,0.0823,4.8744,2.2487,2.6106,0.38425,0.37462,3.8431,4.431,3.3778,3.5961,1.767,1.6008,9.7817,8.7286,2.2066,2.7667,3.4588,3.5507,4.144,4.107,1.7707,1.8278,1.815,1.7798,3.5208,3.2115,6.7859,6.9801,2.0388,1.8867,6.9008,5.6291,10.6387,10.6652,7.2942,7.0594,2.1125,2.2657,3.9214,4.6092,1.7099,1.7409,17.9298,16.3119,5.2828,5.8863,3.7438,4.002,0.89149,1.0363,2.1702,2.549,8.3783,6.4523,13.4647,12.4664,2.8753,3.4845,4.253,4.0075,3.2367,3.1188,1.3391,1.3216,4.6508,5.2247,12.5485,11.1221,3.1027,3.281,1.8338,1.9054,2.1272,2.5347,10.5304,11.1943,2.2487,2.3985,1.6319,1.7846,11.5031,11.3856,1.6753,2.0647,1.1679,1.192,13.8315,13.631,5.152,5.415,7.6688,8.2928,4.3188,3.4805,10.1625,11.1999,7.2047,6.7122,7.3028,7.6262,3.036,3.6177,1.3803,1.3679,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,204
+desd206,78,78,M,2.2182,2.1866,0.32142,0.35956,0.76311,0.83577,16.6371,2.4055,2.296,41.4415,41.053,14.0549,14.6336,191.9093,187.3303,2.3102,3.0601,3.0689,0.73085,0.53907,27.4718,31.4738,1.3688,1.369,3.5016,3.5827,6.3999,6.6506,4.3203,4.5839,0.07149,4.418,2.0428,2.5036,0.36765,0.36691,3.8738,4.44,4.3523,4.5412,1.6276,1.4072,11.4685,9.8121,3.5365,3.2596,4.2583,4.3708,4.8444,4.3473,1.5072,1.5673,2.0236,2.1016,3.459,3.4587,6.7407,6.7244,1.9463,2.0637,7.1322,6.2704,11.1523,9.777,8.124,7.0238,2.1682,2.0924,4.693,4.5076,1.682,1.7001,16.5157,16.0005,4.9104,5.3469,3.7817,3.7981,1.0469,1.101,2.2773,2.6416,7.2313,6.9618,14.7813,11.2573,3.0269,3.7758,4.2711,4.3095,3.1038,2.9576,1.6283,1.3618,4.0614,4.5279,12.422,11.1221,2.8393,3.1414,2.4221,2.5572,1.8926,2.2186,11.1617,12.8986,2.3067,2.4992,2.1158,2.3484,10.3294,11.8666,1.6811,1.7077,1.249,1.2961,13.0712,13.1603,4.7568,4.794,8.9673,8.6417,4.4602,3.1777,10.3739,11.1999,8.0088,7.6602,7.057,6.7432,3.5485,3.42,1.2864,1.6874,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,205
+desd207,76,76,M,2.4682,2.739,0.37692,0.48236,0.72539,0.78073,21.9754,2.9475,2.8851,45.4788,46.8683,16.8651,17.357,249.6425,247.7543,2.3378,3.2705,3.1525,1.0172,0.83934,32.0847,27.6636,1.7454,1.7342,4.0675,4.6426,6.8653,7.0742,5.1514,5.3964,0.07715,5.1672,2.2369,2.5511,0.40007,0.39288,4.0449,4.6638,4.4877,4.5741,1.6155,1.6047,9.61,8.9409,3.4035,3.3618,4.4609,4.4687,4.6508,4.1609,1.4342,1.5264,2.3116,2.0697,3.801,3.662,6.7149,6.8529,2.2793,2.3147,5.8415,5.3991,11.4971,10.3585,8.0228,7.39,2.1145,2.3816,4.9921,4.9662,1.8465,1.8594,19.209,19.4124,5.1082,5.4347,3.7199,4.2172,1.2016,1.0275,2.5709,2.4593,7.957,6.9421,14.0951,13.5444,2.4513,2.7227,4.2082,3.8014,4.0166,3.0816,1.5266,1.5907,3.8501,4.4716,10.4412,10.0436,2.516,2.4612,2.61,2.7377,2.7315,2.5835,11.1857,12.3416,2.141,2.5278,2.2133,2.539,11.9639,11.8957,2.2121,2.0854,1.2897,1.2777,13.451,14.2373,4.9632,5.6441,8.4684,9.8821,4.1918,3.4138,9.8015,9.8591,7.6908,6.856,7.2679,7.3648,3.4042,3.7831,1.7493,1.8102,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,206
+desd208,72,72,M,2.3977,2.2218,0.34701,0.39061,0.83986,0.83746,18.7864,2.5547,2.6413,49.1382,49.9308,16.2491,15.9902,221.782,219.4771,1.7846,3.3254,3.1951,0.9969,1.3385,22.1314,25.7898,1.6892,1.7045,3.4932,3.4907,7.2232,7.42,4.7272,4.8669,0.07709,5.521,2.5385,3.0156,0.41278,0.4046,4.4838,4.7492,4.9269,4.7265,1.6716,1.5185,9.615,9.8993,3.4901,3.2287,3.7911,4.1485,5.3684,4.8128,1.6222,1.6079,1.9017,1.8671,3.5592,3.4626,7.5756,7.3465,1.9296,1.936,6.2791,6.9885,12.0794,12.2219,8.7859,7.9709,2.0839,2.2879,4.3592,4.4863,1.5996,1.702,16.95,17.2614,4.9014,6.1903,3.6669,4.0077,1.0574,1.101,2.2237,2.3009,7.379,7.1587,14.027,13.859,2.5283,3.4953,4.8417,5.0557,3.4272,2.8476,1.4842,1.433,4.6583,5.0967,12.4279,11.6244,3.1435,3.3795,2.6482,2.7233,1.9748,2.3583,9.8217,11.0461,2.1786,2.3906,2.236,2.4642,12.0416,11.857,1.9731,2.1958,1.2173,1.2805,14.6241,14.0278,5.1235,5.1668,8.3553,8.4522,3.9936,3.6195,9.3681,10.0305,7.8527,7.1633,7.4012,7.6904,3.4631,3.5044,1.5479,1.8144,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,207
+desd209,,,M,1.906,1.9242,0.29313,0.34162,0.73342,0.72214,17.3862,2.1408,1.8892,45.7654,45.8179,14.8474,14.4504,202.8273,198.8528,1.9683,2.9698,2.6235,1.6347,1.3141,27.9583,34.1486,1.5111,1.4886,2.539,2.6123,6.2733,6.9973,4.3958,4.4773,0.0769,4.8893,2.2037,2.2839,0.32918,0.34224,4.0784,4.2172,3.5228,3.7157,1.3882,1.5195,9.215,9.422,2.5623,2.577,3.9428,3.771,4.0939,4.3004,1.2694,1.4315,1.6408,1.569,3.1885,2.8959,6.5852,6.8975,1.9111,1.7852,5.9047,6.1523,10.3798,10.5797,7.3667,7.1987,1.8215,2.5249,4.2888,3.86,1.6467,1.5185,16.9559,17.1771,4.4501,5.0215,3.3879,3.6837,0.80958,0.94483,2.0343,2.2115,7.0663,6.2576,13.132,13.2393,2.4613,2.9236,4.1069,4.385,2.8904,2.4846,1.2066,1.5784,3.405,4.1248,9.385,10.1722,2.6926,2.8618,2.1635,2.0499,2.31,2.222,10.3188,10.8241,1.8589,2.5752,1.8823,2.0155,11.388,12.6951,1.8744,1.9435,1.0351,1.0478,13.5541,12.9407,5.0396,5.1526,8.1414,8.8438,3.5453,2.8751,8.8287,9.0516,6.7587,7.3057,7.5055,6.9864,3.2507,3.7415,1.4273,1.5435,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,208
+desd210,71,71,F,1.169,2.0062,0.3887,0.41414,0.86623,0.90119,17.5955,2.7961,2.7179,47.5632,47.8739,14.2605,15.2682,204.2511,201.1678,1.3068,3.1839,3.1406,0.38128,0.37663,9.8956,9.8195,1.4856,1.4805,3.5165,3.4285,6.7267,7.0292,4.1478,4.3053,0.06495,4.8524,2.3034,3.0327,0.34124,0.37323,3.7785,4.237,3.6869,3.758,1.7313,1.4878,10.5402,8.7637,3.0221,2.7239,3.6053,3.7872,3.8024,3.9864,1.7743,1.7002,1.8365,1.9199,3.5505,3.1244,7.3746,7.0892,1.965,1.8386,7.1621,6.8599,10.9484,10.8121,7.9171,6.9625,2.2645,2.3387,4.2708,4.3046,1.6585,1.5606,17.153,18.325,5.1077,5.9594,3.6023,3.5912,1.0517,0.99,2.8046,2.4824,7.2826,6.7256,13.3617,13.328,2.6968,3.0631,4.331,4.3412,3.3159,3.5001,1.5253,1.5144,3.4491,3.8426,9.1766,9.4232,3.0069,3.4146,2.1566,2.0745,1.8528,1.9104,9.1447,11.9524,2.3375,2.5033,2.0193,2.2557,11.3285,12.42,1.6951,1.6417,1.1395,1.1304,12.557,14.3766,4.9767,5.6712,7.1324,8.3436,3.6415,3.4278,10.0073,8.9179,6.9716,5.8622,8.2166,8.0227,3.1766,3.7653,1.2975,1.3547,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,209
+desd211,70,70,M,1.7938,2.0757,0.39908,0.47187,0.88765,0.90065,20.1977,2.7823,2.796,41.2298,45.4621,14.8788,15.6887,255.5603,249.3192,1.6673,3.3869,3.2824,0.80356,0.57124,13.3926,15.9618,1.7571,1.7879,3.9922,3.9109,7.4845,7.7073,5.044,5.2367,0.08971,4.3915,2.1635,2.5286,0.424,0.43687,4.1621,5.1269,4.0728,4.5632,2.1787,1.8866,10.2582,9.2428,3.6929,3.6542,4.4781,3.9394,5.6101,5.2259,1.7773,1.8106,2.3116,2.1163,4.4622,4.2113,7.7197,7.494,2.4397,2.3453,7.3727,7.9824,12.3948,12.9047,8.4174,7.5703,2.4956,2.8087,4.8834,5.2148,2.34,2.0408,20.5284,22.4796,5.4728,5.9604,4.2985,4.4376,1.1214,1.0533,2.8408,2.8104,8.7683,7.8866,15.7293,16.9706,3.2767,3.8449,4.6967,4.7029,3.7286,3.6257,1.7599,1.8233,4.2239,4.6613,11.262,11.1905,3.145,3.2491,2.3431,2.2643,2.378,2.3546,10.8847,11.1911,2.5801,2.9114,2.226,2.408,12.2645,12.7629,2.0492,1.7346,1.2963,1.3161,16.1595,15.2893,5.8532,5.8485,8.3652,7.9048,4.3351,3.5157,10.5549,10.683,8.049,7.6646,8.8345,8.47,4.0822,4.7317,1.5567,1.6874,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,210
+desd212,69,69,F,1.6583,1.6088,0.30608,0.31776,0.51972,0.51612,14.6382,2.4093,2.2554,37.2794,36.591,11.27,11.7864,181.8204,171.5857,1.8529,2.6,2.3086,1.6199,1.2114,21.9802,19.7701,1.3894,1.3575,3.1335,3.1634,6.1763,5.8586,3.8112,3.9387,0.08637,3.8533,1.8249,2.0749,0.30474,0.13082,3.0547,3.5274,3.3055,3.5856,1.4168,1.3301,8.3049,7.7201,2.5845,2.5355,3.4983,3.3778,3.525,3.5058,0.93517,0.91633,1.6169,1.5775,2.918,2.9207,5.5713,5.6812,1.7798,1.8768,5.5004,4.7373,8.0468,7.9082,5.9926,5.8129,1.7858,1.9589,3.8611,3.8523,1.4493,1.4588,15.608,15.8574,3.8714,4.9703,3.0089,3.7779,0.89699,0.86559,2.2617,2.0853,6.5291,5.9184,10.4488,9.5771,2.639,3.1545,3.5715,3.5091,3.2271,2.5608,1.2641,1.1681,3.3295,3.7434,8.9068,9.2307,2.2618,2.5184,1.8902,1.9099,1.6424,1.8917,9.0129,9.9218,1.94,2.0234,1.6813,1.8973,10.2695,10.9442,1.5063,1.2898,1.0201,1.0551,12.3132,11.7939,4.4575,4.4989,6.2964,7.7904,3.7021,2.7232,9.2968,8.6869,6.4699,6.0329,5.3235,4.4876,2.9307,3.1484,1.2142,1.3,,13,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,211
+desd213,83,83,F,1.8968,2.1846,0.29262,0.30203,0.67461,0.68516,15.3895,2.3103,2.1212,45.1767,45.7024,13.9568,13.6057,171.7744,172.7608,1.8418,2.9906,2.8601,1.642,1.0629,29.0169,29.1422,1.4,1.4265,2.6432,2.6509,5.3503,6.8531,4.2057,4.3908,0.08108,4.569,2.2701,2.3454,0.35392,0.3225,3.8254,4.2297,3.6596,3.7307,1.63,1.4523,7.1019,7.0736,2.8461,3.1124,3.4837,3.7782,3.6079,3.6558,1.1853,1.2057,1.8156,1.7378,3.7934,3.7458,6.3474,6.0265,1.9057,1.8477,5.6166,4.8611,8.7966,9.1264,6.5178,6.1198,2.0486,2.1982,4.0506,4.2049,1.7738,1.6848,18.0849,17.23,4.2365,4.9286,3.3972,3.5912,0,0,0,1.843,7.0677,6.5312,10.9882,11.3461,2.2858,2.7624,3.4874,3.4264,3.1751,3.4084,1.5467,1.4634,3.5027,3.6676,8.0695,8.5872,2.4831,2.6722,2.1187,2.0389,2.2401,2.0249,7.8636,9.1617,2.048,2.2402,1.7945,1.9808,10.3295,11.0377,1.8261,1.7204,1.017,1.0716,14.511,14.416,4.9319,5.0354,6.8191,7.0518,3.8231,2.9443,7.8694,8.7612,5.8447,6.0422,6.6229,5.8077,3.2162,3.6489,1.2052,1.4112,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,212
+desd214,,,M,1.7432,2.3497,0.3771,0.40036,0.83178,0.81606,18.9937,2.7956,2.5116,46.4549,47.0264,15.8558,17.0724,226.5443,222.2557,1.4986,3.4931,3.2225,0.62802,0.61776,14.3883,14.9908,1.5997,1.6395,3.7231,3.7317,6.1196,6.4205,4.4829,4.6501,0.0791,4.7502,2.0938,2.6336,0.36122,0.41099,4.5652,4.9245,4.1091,4.2223,1.5345,1.4063,10.6055,9.6728,2.9724,3.1905,3.9646,3.6923,4.1831,4.1656,1.6799,1.6035,2.0772,2.019,3.5291,3.411,7.7152,6.6344,2.2971,2.2985,5.8415,5.5784,11.2832,10.9225,7.299,7.1804,2.0652,2.1152,4.8872,5.4779,1.9747,1.94,17.6235,17.2818,4.9089,5.4804,3.6162,3.8273,1.076,1.2117,2.3642,2.5397,8.371,7.7625,14.0732,13.5472,2.7573,2.764,3.6761,3.9033,3.356,3.5025,1.4526,1.2523,4.0638,4.3027,10.9706,11.3547,2.9268,3.1589,2.3548,2.5971,2.4287,2.4295,10.9172,11.8374,2.3497,2.2152,2.2234,2.4694,11.4383,11.229,2.1539,2.4099,1.2363,1.3149,13.741,13.6861,6.055,5.0587,9.1853,9.3025,4.5761,2.8313,11.8296,11.2477,8.0056,7.1293,8.0225,7.7644,3.1809,3.5224,1.5639,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,213
+desd215,,,M,1.472,1.7228,0.30712,0.29998,0.71488,0.62016,22.0227,2.4722,2.1486,47.3816,46.1168,20.1528,22.1671,252.377,252.0335,1.3304,2.93,2.6566,0.74448,0.91308,16.2077,22.448,1.6753,1.6861,3.4877,3.3507,6.4965,7.862,5.179,5.4181,0.06747,4.7108,2.2199,2.7636,0.3253,0.35762,3.6203,4.0012,3.6874,3.8894,1.5678,1.3981,9.2794,9.8171,3.2654,3.3737,3.8488,4.0188,4.62,4.4191,1.4097,1.3032,1.8546,1.7904,3.2388,3.0946,6.9342,6.7266,1.8708,1.8303,5.988,5.3991,10.4622,10.6809,7.7523,7.0595,2.0058,2.1453,4.061,3.713,1.603,1.5188,16.8034,15.4965,4.6196,5.6222,3.3523,3.5882,1.1779,1.0018,2.7977,2.5682,7.0821,6.0886,13.3075,13.5345,2.9425,3.015,4.1983,3.7139,2.9091,3.1947,1.4194,1.3584,3.8381,3.8758,10.1944,9.5412,2.6261,2.7096,2.0447,2.1204,2.2033,2.2962,10.3561,11.3986,1.8912,2.2597,1.8414,1.9808,10.3122,11.5461,2.03,1.8732,1.0156,1.0551,11.8694,12.2416,5.2668,4.8915,7.4532,7.8033,4.5789,3.5745,10.3038,11.05,6.7587,7.0812,7.0344,6.9268,3.4556,3.4615,1.3506,1.4327,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,214
+desd216,,,F,2.053,2.7942,0.35333,0.39298,0.70472,0.76914,16.0109,2.8526,2.5116,42.7073,43.9655,12.8512,13.5987,197.3612,191.4103,2.0004,2.8784,2.8124,1.157,1.3042,23.2901,35.4663,1.4021,1.3795,3.3097,3.2992,6.1602,6.5764,4.0924,4.3572,0.08302,4.0268,2.0322,2.3483,0.36577,0.36148,3.8072,3.7673,4.0828,4.2223,1.5354,1.3911,9.0441,7.9713,3.5365,3.319,3.3183,3.1451,4.371,4.2491,1.3995,1.4822,1.891,1.8109,3.3126,2.8161,6.4935,6.6884,1.7916,1.8571,5.5892,5.0373,10.1838,9.5801,7.7322,6.6418,2.0702,2.0882,4.1291,4.1746,1.5342,1.4147,17.5442,16.9539,5.1691,5.2764,3.4381,3.5511,0.97807,1.0543,2.0726,2.4565,6.3844,5.0512,13.5824,11.3686,2.2463,2.6631,3.9008,3.5079,2.99,2.706,1.3766,1.3295,3.5904,3.6484,10.0103,9.4168,2.6493,2.7311,2.2576,2.3411,1.9371,2.1707,8.9708,10.8637,2.3405,2.2573,1.9614,1.9697,10.3723,11.1521,1.8749,1.7742,0.95054,1.0654,14.2661,14.4419,4.5203,5.0496,6.6345,8.1728,3.5424,2.794,10.2994,11.021,6.6418,6.8169,6.7344,6.8159,3.1664,3.4748,1.4467,1.3116,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,215
+desd217,,,M,1.7692,1.6315,0.40335,0.43093,0.91058,0.85904,18.8247,3.4584,3.5369,40.9779,42.0877,14.0223,14.2091,205.0426,208.7993,1.8418,3.6014,3.1956,0.68499,0.60686,15.1081,18.9404,1.6485,1.613,3.2779,3.3541,7.1647,7.512,4.7611,5.0523,0.10157,5.0892,2.3083,2.5288,0.4332,0.42106,4.1542,5.1149,4.0728,4.4546,2.1453,1.891,11.0966,9.9879,3.5938,3.6094,4.3668,4.6945,5.5107,5.2259,1.7129,1.7216,1.9532,2.3582,4.4396,3.6363,7.7699,7.494,2.097,2.1032,6.898,7.2798,11.7446,11.941,9.2334,8.7069,2.5046,2.9062,4.617,5.4238,1.9699,1.9384,21.3402,21.4013,5.92,7.6079,4.0039,3.9639,0.95377,1.048,2.3532,2.9135,9.1858,7.8222,14.0586,14.3792,3.2091,3.6819,4.7817,4.6343,3.7747,3.7584,1.6433,1.7466,5.0546,5.2164,12.5485,11.4852,3.0104,3.1923,2.5034,2.719,2.5655,2.7929,10.4138,11.9811,2.952,2.5227,2.2592,2.4642,12.8154,12.3724,2.0168,2.4797,1.2918,1.2837,17.9928,18.4898,6.1867,5.8365,8.2924,8.6411,4.7024,4.3046,12.9071,12.2536,7.0267,7.8232,8.0809,9.2731,4.0714,4.3525,1.5416,1.8456,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,216
+desd218,83,83,M,1.7884,2.0487,0.29753,0.36521,0.79946,0.89488,16.1406,2.5652,2.4683,40.2388,39.7345,13.1521,14.4498,199.1276,191.6235,1.5099,3.0204,3.014,1.8227,1.7937,20.3411,24.0846,1.3688,1.3274,3.3423,3.1469,6.0833,6.1968,4.0164,4.2195,0.0592,3.7736,1.7942,2.2569,0.34664,0.32201,3.5452,4.0703,3.7381,3.5946,1.5609,1.3008,8.3621,8.6186,3.0125,3.0208,3.3731,3.4296,3.9572,3.5719,1.3855,1.6481,1.8537,1.7303,3.3157,3.3072,5.6871,5.6216,1.7474,1.8851,5.5048,5.3421,9.6194,9.5036,7.0311,6.367,2.1515,1.9626,4.3012,4.3307,1.3887,1.4061,15.8814,18.0442,4.3788,5.2818,3.4183,3.7118,0.99077,1.0822,2.2443,2.2739,6.7347,6.3837,11.9962,11.9519,2.6562,3.063,3.9054,3.852,2.9823,3.234,1.4504,1.3473,3.5992,4.313,9.7507,9.8654,2.4133,2.8056,2.1427,2.1447,1.8718,2.1503,7.9696,9.3435,2.0952,2.1719,1.9633,1.9493,11.2018,12.2039,1.7469,1.5256,1.1013,1.1726,13.4697,13.4957,4.6146,4.5418,6.6869,8.078,3.329,3.2556,8.2873,9.5963,6.787,5.9425,6.4587,6.3148,3.2372,3.8118,1.3829,1.2385,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,217
+desd219,71,71,F,1.5061,1.8659,0.32204,0.36515,0.71864,0.75144,18.184,2.5676,2.7446,45.9086,46.1125,15.0423,15.0908,225.6701,218.9022,1.4932,2.9698,2.6784,0.39434,0.41122,8.5689,11.6139,1.5901,1.5956,3.6701,3.643,6.423,6.3334,4.6196,4.9294,0.07879,5.1619,2.1051,2.7636,0.33936,0.34498,3.9068,4.3097,3.9166,4.022,1.7927,1.5396,10.0299,8.3889,2.3608,1.9387,3.8597,4.2725,3.2572,3.0535,1.4097,1.4728,2.0226,1.8648,3.6211,3.1623,7.1137,6.8769,1.8764,1.8321,5.8093,6.1578,10.9587,10.7722,6.7914,5.6111,2.4026,2.5257,4.5636,4.5069,1.7088,1.7354,16.898,19.1102,4.618,5.8478,3.6345,3.9297,1.0201,0.97321,2.4763,2.3337,7.3267,6.5146,13.3708,11.94,2.4489,3.0392,3.733,3.6264,3.6965,3.3307,1.6172,1.5016,3.4587,3.8719,9.3981,9.27,2.5377,2.8084,2.0289,2.1205,2.1988,2.1897,9.3147,9.7572,2.5499,2.4252,1.906,2.1035,12.6393,11.8097,1.7931,1.7707,1.1543,1.1421,13.3892,12.9795,5.2933,5.0618,7.5884,8.3573,3.8696,3.151,10.6014,10.3844,7.0455,6.5395,7.5417,7.4294,3.6156,3.7456,1.4291,1.6057,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,218
+desd220,60,60,M,1.0829,2.1211,0.46267,0.49714,1.076,1.1046,18.5915,4.2284,3.6921,50.2053,48.5206,15.4287,15.7193,256.5174,245.919,1.1281,3.9712,3.5866,0.70599,0.50083,11.4639,11.7896,1.8651,1.8386,3.8073,3.8252,7.6923,8.0637,5.0559,5.1015,0.08406,4.551,2.3995,2.8418,0.45814,0.46534,5.2074,5.7797,5.378,4.7371,2.0518,1.8573,12.1829,10.8554,3.2672,3.5363,4.6043,4.4329,5.3644,5.7109,2.4117,2.1113,2.4407,2.6485,4.2777,4.2636,8.5003,8.0257,2.4397,2.4444,7.6633,8.9127,13.9916,12.2709,8.0041,7.7402,2.6087,2.8087,5.6031,5.3815,2.0519,2.2059,21.3816,20.5486,7.0774,7.252,4.3885,4.4773,1.435,1.5159,3.3463,2.8764,9.613,7.9076,18.12,15.7612,3.7915,4.5715,4.6581,4.8159,4.2568,4.2748,1.8216,1.7236,4.3861,5.0508,12.2162,12.082,3.4349,3.9265,2.5151,2.6305,2.6939,3.1023,11.4327,14.5135,2.5869,2.7361,2.2951,2.8207,13.4291,14.0366,2.317,2.8636,1.6001,1.5341,15.6544,15.1686,6.3351,6.51,9.3803,10.9412,5.5059,3.9528,11.9661,11.7601,8.8438,7.8884,10.7681,9.1485,4.3531,4.4426,1.7493,2.2485,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,219
+desd221,69,69,F,1.1823,1.5129,0.43242,0.47854,0.96308,0.94919,17.2523,2.9795,2.7306,46.5868,45.9081,14.305,14.6229,209.5972,208.7993,1.2229,3.8111,3.1016,0.70599,0.60686,11.259,13.8935,1.4597,1.4637,3.6951,3.7221,6.7091,6.7055,4.4045,4.6455,0.0698,4.7095,2.1308,2.6288,0.4115,0.40558,3.7856,4.3216,3.8487,3.8022,1.9727,1.6626,9.5148,8.6029,3.2904,3.1286,4.0372,3.5278,4.2814,3.8821,1.7744,1.9961,1.6638,1.7166,4.1246,3.5694,7.1827,7.1705,2.5778,2.6282,6.3483,6.0351,11.629,11.318,8.01,6.7187,2.4377,2.4742,4.1402,4.664,1.8843,1.8339,18.5718,17.763,5.2515,6.239,4.1808,4.1871,1.2881,1.0763,2.8271,2.4209,7.4819,6.5523,13.0986,14.2233,2.7691,3.2956,4.2554,3.9801,2.8161,3.016,1.577,1.5149,3.7144,4.4716,10.4475,10.1542,3.1027,3.4163,2.2934,2.2236,2.2662,2.253,10.4643,11.6001,2.6135,2.5627,1.9664,2.1959,13.0814,11.9528,1.9109,1.8531,1.1517,1.2197,14.1307,13.7765,5.3077,5.0925,7.6442,9.011,3.8065,3.151,9.9323,10.2392,6.8605,6.9201,7.932,7.7578,3.8343,3.6702,1.4206,1.6057,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,220
+desd222,82,82,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,221
+desd223,67,67,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,222
+desd224,69,69,F,1.4994,2.5699,0.33898,0.376,0.8509,0.85531,15.9099,2.7586,2.629,43.2103,42.4254,14.0219,13.4048,209.5752,203.9727,1.3533,3.2315,3.05,0.4878,0.46211,13.6461,12.8542,1.4047,1.3426,3.3107,3.3873,6.8127,6.7768,4.0058,4.2395,0.06574,4.2492,2.0385,2.3954,0.34664,0.35564,3.7748,4.2369,3.7341,3.7334,1.7727,1.5045,9.8956,9.431,3.2174,3.1292,3.6974,3.806,4.7789,4.7757,1.702,1.626,1.8267,1.8526,3.6547,3.096,7.7436,7.3983,1.9263,1.6533,6.9214,5.9553,11.4244,11.3663,7.6419,6.8163,2.1066,2.3807,4.2293,4.2647,1.5906,1.5716,18.6572,19.922,5.027,6.1115,3.7639,3.8188,1.1499,1.097,2.9391,2.5253,7.6361,6.3812,14.5429,13.9554,2.7339,2.8797,3.7753,4.0649,3.1817,3.4162,1.4205,1.559,3.8115,4.0773,10.0636,9.6476,2.8667,2.9691,1.9479,2.1204,1.8787,2.1089,9.2722,11.6356,2.2487,2.5225,1.7585,2.0631,12.6388,12.2439,1.8207,1.8587,1.0959,1.1114,13.7294,14.0173,5.4325,5.566,6.8716,8.9568,4.3767,3.7762,9.187,10.6744,6.7222,7.4916,7.3755,6.8639,3.1664,3.9486,1.3212,1.3575,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,223
+desd225,70,70,M,1.8751,2.3804,0.3603,0.3887,0.90359,0.87665,20.527,3.5473,3.1889,47.1373,46.6155,19.9017,19.9391,275.5598,293.5499,1.4859,3.4863,3.3067,0.7684,0.73717,13.7106,14.6384,1.8734,1.8123,3.9227,4.0694,7.122,7.7786,5.1695,5.4939,0.10334,4.2965,2.2621,2.5852,0.35228,0.39039,3.3884,4.1868,4.6043,4.3307,1.8993,1.6524,9.7817,8.3953,3.159,3.0072,3.5984,3.725,4.3472,3.9577,1.7792,1.7216,2.0886,2.1231,3.6814,3.0604,7.4396,6.9494,1.9291,2.0985,5.5486,4.9819,11.1621,10.9301,7.3862,6.8258,2.2271,2.4614,4.5022,4.5673,1.5451,1.6073,15.9832,17.9085,4.1544,4.7026,4.0234,3.9652,0.9308,1.0155,2.3465,2.756,7.2112,5.9329,14.5227,12.9319,2.6562,3.0025,3.5584,3.5354,3.0687,3.3423,1.4561,1.606,3.5588,3.9948,9.5439,9.2995,3.0069,3.2913,2.6482,2.4935,2.1353,2.4906,8.3787,9.6135,2.5005,2.6404,2.3361,2.5114,11.3061,11.229,1.7032,2.1538,1.1721,1.2399,15.2248,15.0896,5.1071,5.2913,7.4095,8.9635,3.919,3.125,9.5839,8.3378,6.597,6.9802,7.2509,7.5218,3.4066,3.7809,1.5637,1.7669,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,224
+desd226,67,67,M,2.0592,2.9737,0.19817,0.29266,0.60887,0.55372,13.7663,1.8066,2.1042,25.2218,28.5729,10.8603,9.2054,155.2651,158.4892,1.9862,2.4818,2.3086,0.90182,0.79331,19.6009,21.5958,1.2833,1.2125,2.7027,2.8551,5.6653,5.5339,3.6233,3.802,0.06809,4.1864,1.7341,1.7352,0.31367,0.3141,3.1858,3.252,2.9997,3.1785,1.3371,1.0793,7.9338,2.2506,2.9717,2.7609,3.5447,3.2123,3.525,3.349,1.2138,1.0462,1.6873,1.7516,3.319,3.023,5.1012,3.9341,1.5262,1.6345,5.4548,3.8533,7.2375,7.7991,7.1065,6.1704,1.7375,2.0953,3.264,3.452,1.136,0.94623,15.6178,14.9308,4.4224,3.9079,2.888,2.9419,0.91522,0.93562,2.0355,2.0004,5.4759,4.7167,8.3232,11.3505,2.6285,3.3184,3.7099,3.0676,2.9917,3.2162,1.0875,1.1944,2.561,3.4438,8.3606,8.2201,2.4305,2.4325,1.7966,1.7303,2.265,1.9866,8.2449,10.3158,2.0072,2.059,1.5695,1.6021,10.3155,10.6762,1.7727,1.7153,0.81868,0.93688,13.3021,13.0419,4.5203,4.6449,6.3379,7.0634,3.3981,3.0462,8.1187,8.7234,5.9204,5.2296,5.7073,6.1755,2.9562,3.2472,1.1985,1.437,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,225
+desd227,70,70,M,1.1133,1.7477,0.36818,0.39642,0.80229,0.80585,18.4232,2.7093,2.7719,46.5743,46.3326,14.882,15.0908,203.5591,202.825,0.98803,3.0849,3.014,0.37858,0.40243,9.9076,10.5276,1.4856,1.416,3.3313,3.3731,6.2558,6.49,4.5574,4.783,0.07685,4.7803,2.3524,2.7636,0.36866,0.36231,3.4068,4.1665,3.5908,3.6699,1.8008,1.5746,9.5238,8.6007,2.4294,1.9707,3.6022,3.3012,4.0272,3.4888,1.5833,1.6097,1.7505,1.7621,3.4857,3.2703,7.2787,7.029,1.9435,1.8999,6.6393,6.1018,11.2911,10.8767,7.7853,7.0528,2.3512,2.4717,4.2587,4.0497,1.585,1.6383,16.1406,17.2931,5.3586,5.3469,3.7478,3.8498,1.0517,1.1734,2.5278,2.155,6.9133,6.721,13.3617,12.0194,3.1751,2.8547,4.2075,4.3142,2.878,3.243,1.5115,1.5784,3.8402,4.0705,9.6819,10.2529,2.7381,2.9354,2.0377,2.0444,1.7874,2.1756,9.2483,10.1489,2.3178,2.3008,1.8635,2.085,11.5468,12.3687,1.5976,1.768,1.0135,1.0159,13.0346,12.251,5.0284,5.3351,7.0035,8.2933,3.8244,3.2683,9.4088,9.4013,6.8921,5.9411,7.1243,7.2249,3.0989,4.0353,1.2178,1.3337,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,226
+desd228,71,71,F,1.1751,1.9234,0.39576,0.43211,0.82078,0.84704,12.5951,2.8766,3.1553,41.4208,42.0877,10.0498,10.4569,195.4331,194.1091,1.6407,3.3738,3.2358,0.89647,0.48349,16.2964,17.5791,1.5018,1.5031,3.6679,3.8632,5.9582,6.4197,4.1214,4.2449,0.07738,3.7344,1.7958,2.1274,0.36785,0.36524,3.8357,4.3344,3.8936,4.0109,1.6152,1.4061,10.0177,7.8224,2.3843,1.9387,3.4837,3.5149,3.5822,3.438,1.5953,1.6223,1.9482,2.0529,3.3082,3.3513,6.7028,7.2039,2.0107,1.9112,5.9047,5.8863,10.1979,10.3825,7.228,6.423,2.0721,2.0882,4.2555,3.9922,1.7598,1.6533,16.3461,17.0065,5.347,5.8084,3.5505,3.5098,0.86718,0.92597,2.344,2.0058,7.6104,6.5976,13.7425,12.722,2.4897,2.7448,3.8391,3.817,3.1038,3.5456,1.5482,1.313,3.7308,3.9774,9.6078,9.5026,2.8367,3.263,2.5604,2.4469,1.8432,2.183,8.9266,11.3727,2.2418,2.3991,2.2952,2.2493,10.7321,11.3597,1.7489,1.8782,1.0567,1.1133,12.0086,13.9965,5.0842,5.2669,7.7913,7.382,4.0704,3.7136,9.4464,10.1601,6.8552,6.8612,6.8298,7.2249,3.1547,3.6967,1.6442,1.8083,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,227
+desd229,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,228
+desd230,70,70,F,1.0932,2.2425,0.38859,0.38063,0.90904,0.88298,14.8189,2.7956,2.4744,40.8755,42.4788,12.1234,12.4512,179.8113,181.3242,1.2455,3.598,3.3827,0.42204,0.36448,11.1323,12.3222,1.2453,1.2098,2.8927,3.0905,6.4092,6.5655,3.674,3.8679,0.07738,4.0109,1.9369,2.2,0.35284,0.36524,3.0348,3.6164,3.8813,3.7464,1.4998,1.3265,8.3539,8.4172,2.9551,2.7953,2.7604,3.0994,4.4789,3.9864,1.6748,1.6232,1.7472,1.9383,3.319,3.1772,6.8021,6.8122,1.8028,1.7789,5.5892,5.9188,10.6744,10.1922,7.8148,6.6418,2.0023,2.1102,3.881,4.0453,1.4273,1.4588,14.0834,13.927,4.4501,5.2284,3.5136,3.6539,1.4516,0.98964,3.1132,2.5682,6.5291,6.2187,13.0276,11.7806,2.4359,3.1963,3.9002,3.938,3.2342,3.2572,1.2752,1.3506,3.4211,3.7649,9.1097,9.1856,2.9635,3.1722,2.0266,2.1204,1.4645,1.7651,9.7397,10.124,2.2277,2.353,1.7033,2.0754,11.246,11.7583,1.4708,1.5971,1.0038,1.0201,14.2012,14.5737,4.9108,4.9642,6.4474,7.5452,4.2512,3.4355,8.7626,10.575,6.0969,5.9425,6.2058,6.7205,3.2024,3.3764,1.2863,1.3844,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,229
+desd231,67,67,M,2.324,3.4207,0.38883,0.40797,0.90347,0.82955,20.7649,2.8857,2.6392,46.4131,46.3326,14.9431,15.3178,255.5603,252.8184,1.9387,3.4705,3.1416,0.83194,0.73717,19.8549,24.3171,1.7571,1.7879,3.9512,3.9557,7.9992,8.6603,5.2238,5.4181,0.08937,4.8017,2.1832,2.6349,0.38748,0.37882,4.5569,5.0439,4.0464,4.5632,2.0285,1.6403,10.944,10.4591,3.3893,3.0459,4.0902,4.0826,4.7485,4.5272,1.8805,1.7489,2.1043,2.107,4.0324,3.716,7.7757,8.0385,1.9881,2.1666,8.2003,6.8015,12.5964,12.3279,8.3185,7.7564,2.6087,2.5033,5.0524,5.1775,1.7934,1.8106,19.129,19.4124,6.2659,6.2414,4.0791,4.4401,1.2187,1.1741,2.5524,2.6676,8.2489,7.0902,15.0737,13.9405,2.9397,3.5094,4.3358,4.5838,3.6501,3.324,1.8308,1.6557,4.4756,4.877,11.6043,11.7447,3.1658,3.2579,2.5473,2.6329,2.3931,2.2933,10.9354,12.8486,2.3984,2.6542,2.3015,2.6109,12.1602,13.2127,1.9788,1.9472,1.255,1.296,14.4163,14.4419,5.5549,5.6492,8.5548,10.0076,4.3743,3.7481,13.3909,11.3395,8.4401,8.1252,8.4608,8.3456,4.1771,4.2387,1.5917,1.7641,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,230
+desd232,,,F,1.7082,1.8993,0.37168,0.3701,0.91709,0.93247,18.2717,2.8077,2.3543,46.231,45.8795,14.0054,14.0666,225.4359,218.9022,1.4226,3.5816,3.1706,0.9219,0.65957,16.123,20.6057,1.5324,1.5431,3.4135,3.4552,6.8393,7.1507,4.5814,4.6462,0.07652,4.8149,2.4087,2.4811,0.37894,0.40256,3.9954,4.5432,3.9139,3.9405,1.7432,1.6388,10.0996,8.8204,3.3453,3.0047,3.6876,4.1096,4.5468,4.4238,1.8133,1.7702,1.7941,1.841,3.5073,3.359,7.488,7.1407,1.9001,2.0747,6.6074,6.1703,11.9546,11.3263,8.111,7.2431,2.279,2.5254,4.6419,4.6044,1.688,1.7671,17.552,17.0816,5.1333,6.4312,3.7203,4.0138,1.4007,0.87729,3.1735,2.0853,7.7678,6.8728,14.5187,13.0691,2.959,3.6599,4.1956,4.214,3.5385,2.8476,1.4031,1.4772,4.6508,5.319,12.5322,11.9956,3.2514,3.3151,2.2169,2.2769,1.9607,2.336,9.2486,10.2569,2.2252,2.43,2.1162,2.2904,10.969,11.555,1.8172,2.1903,1.185,1.2404,13.752,13.1233,5.225,5.033,7.8348,8.7812,4.3171,4.0429,9.3057,9.8356,6.9127,7.0583,8.6274,8.3414,3.2376,3.3501,1.4788,1.5839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,231
+desd233,78,78,F,1.651,1.9967,0.37607,0.39083,0.97399,0.93247,18.3099,2.7088,2.7962,44.7195,43.5553,15.0423,15.3354,224.9161,220.7889,1.2296,3.5816,3.3564,0.76519,0.54888,11.8847,17.4652,1.5958,1.5431,3.3313,2.9568,6.8393,7.2343,4.5327,4.6688,0.07896,4.3915,2.1421,2.2317,0.38394,0.38339,3.8191,4.5862,4.1578,4.2454,1.739,1.5872,10.0626,8.5753,3.036,2.5886,3.9693,3.8403,4.3766,3.7098,1.7744,1.7002,2.1221,1.9861,3.3516,3.1771,7.2848,7.1117,2.1574,2.0934,6.6586,6.7709,12.0599,10.95,7.3675,6.4034,2.2511,2.3889,4.7222,4.4251,1.7633,1.8793,18.0963,18.8355,5.0702,7.0699,3.7824,4.0138,0.91562,1.2595,2.1741,2.9477,7.4551,6.4523,14.7521,13.2366,2.6868,3.0981,3.9794,3.9102,3.0623,2.9777,1.5513,1.6004,3.8339,4.0115,10.113,10.457,3.0069,3.262,2.2741,2.2288,1.9097,2.1322,9.8857,11.5429,2.4463,2.568,1.9059,2.1705,13.0528,14.0706,1.7022,1.9207,1.2053,1.2195,13.8458,12.9226,5.7568,5.8128,7.8821,7.8033,3.9385,3.7756,10.4796,11.4096,6.8121,7.3223,7.83,7.2519,3.5694,4.0113,1.4588,1.7277,,30,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,232
+desd234,65,65,F,1.2305,1.3598,0.30452,0.31776,0.53111,0.50656,13.0928,2.5523,2.1486,40.7245,40.055,10.0802,9.5908,160.604,158.4892,1.1402,2.6136,2.3865,0.66316,0.83641,14.4921,14.8694,1.2848,1.2494,2.9175,2.6506,5.5588,5.2142,4.2635,4.4306,0.07026,4.1212,1.8978,2.1798,0.31313,0.32923,3.2474,3.6304,2.9997,3.3041,1.3256,1.327,8.8051,7.3711,3.0625,3.1377,3.4843,3.5536,4.0344,3.8993,0.98201,1.0787,1.6736,1.6037,3.0341,2.8818,6.1182,5.238,1.5262,1.7072,5.6021,2.918,8.7273,7.6084,6.3517,5.8317,1.5963,2.1102,4.7066,5.0431,1.3868,1.3901,16.2826,15.7424,4.4236,4.9286,2.842,3.3619,0.86488,1.1393,1.8683,2.6202,6.2184,5.5221,11.1318,7.3624,2.5412,2.4894,3.3581,3.7054,3.2342,2.4669,1.031,1.1944,3.6173,3.8951,8.3795,9.7919,2.3909,2.5425,2.0205,1.9671,2.1352,2.2148,7.6447,9.1617,1.8589,1.8669,1.9633,1.8074,9.4524,10.5862,1.7054,1.635,0.98978,1.0246,12.8439,13.6217,3.9413,3.7126,6.6221,7.5438,3.4317,2.5859,9.3038,10.605,6.3524,5.4002,5.8082,5.7466,2.9813,3.3439,1.4047,1.3848,,20,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,233
+desd235,57,57,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,234
+desd236,71,71,F,1.169,1.4205,0.40629,0.45025,0.88136,0.96487,17.7466,3.0766,2.9921,45.1156,44.7829,14.2743,15.2682,207.7413,201.4517,1.0778,3.5761,3.3166,0.53597,0.66107,9.1226,11.297,1.6042,1.6286,4.0015,3.898,6.7091,6.6851,4.6308,5.0208,0.08487,4.9096,2.2046,2.7039,0.41552,0.42929,4.8787,5.3592,4.4752,4.8321,2.1383,1.7921,10.2283,9.7493,3.6497,3.6197,4.5117,4.1455,5.0832,5.0758,1.6807,1.8282,1.9532,2.3372,4.355,3.8123,7.775,7.2309,2.2004,2.443,7.0621,7.2798,12.4866,11.9568,9.0223,7.4205,2.6347,2.5848,5.1262,4.7385,2.0461,2.1414,21.4648,21.696,5.532,6.4609,3.9951,4.2465,1.1992,1.1753,2.9391,2.7667,8.9508,8.2845,16.2557,15.6467,3.423,3.7564,4.7616,4.7157,3.5302,3.58,1.8216,1.6584,4.4471,4.9742,11.9382,11.2253,3.1552,3.3151,2.5034,2.6615,2.8213,2.7727,10.9465,12.6483,2.7026,2.5913,2.0151,2.2296,13.9024,15.5381,2.3442,2.3887,1.5046,1.5581,19.5882,17.7633,5.7327,6.0978,8.488,9.6666,4.285,3.8769,10.5549,10.7001,8.4079,8.3261,7.5687,7.5491,4.171,4.4132,1.5661,1.7766,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,235
+desd237,75,75,M,1.9908,3.1605,0.32875,0.42615,0.64944,0.70985,18.3977,2.5612,2.7291,44.3483,44.0482,15.0423,14.5574,236.8481,234.481,1.5639,3.0664,3.135,0.91749,0.86062,22.9569,26.8131,1.5877,1.5516,3.1749,3.5292,6.9816,6.9551,4.5649,4.8226,0.07334,4.1392,2.0322,2.4067,0.40804,0.39516,3.9011,4.591,4.0728,4.6331,1.6484,1.4906,9.61,9.6711,3.41,2.5846,3.7605,4.281,4.62,3.9512,1.2855,1.4147,1.9975,2.1016,3.9306,3.4063,6.6787,6.8859,2.2614,2.2618,5.9047,5.3991,11.3405,10.2401,7.3975,6.935,2.1145,2.162,4.2555,4.0897,1.8483,1.8683,18.6709,18.56,5.129,5.1925,3.6809,3.9485,1.0741,1.3387,2.3305,2.8206,7.1215,6.7388,12.9283,13.1751,2.7949,2.7213,3.9653,3.8862,3.407,3.4282,1.4587,1.4428,3.8419,4.0115,10.1712,10.2797,2.5366,2.5995,2.4661,2.5536,2.4415,2.5998,9.0742,10.8421,2.0801,2.4391,2.1189,2.4907,11.3933,12.6388,1.8124,1.9123,1.2912,1.2561,13.9708,14.0776,5.0381,5.3636,7.504,9.726,4.2825,3.4698,10.6873,9.1754,7.5884,6.856,6.7848,6.8749,3.4516,4.103,1.5697,1.699,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,236
+desd238,66,66,F,0.98083,2.0565,0.38968,0.4778,0.84643,0.87536,19.2653,2.9099,2.9517,48.3012,49.2031,15.0782,16.0108,259.9497,245.8349,1.6012,3.2868,3.0832,0.50498,0.44135,15.7665,15.766,1.6471,1.5566,3.9886,4.1041,7.9992,8.0975,4.7485,5.1317,0.08499,4.7821,2.3053,2.987,0.38938,0.36376,4.1159,4.7909,3.9866,4.2762,1.7611,1.6265,10.6284,9.3932,3.2255,3.5413,4.0641,4.2007,4.8252,4.3597,1.7166,1.6786,2.0217,2.0523,3.9194,3.7492,7.2855,7.7366,2.0996,2.1027,7.4006,6.6613,10.9388,11.3971,8.1373,6.7788,2.0161,2.2737,4.6232,4.6051,1.7934,1.931,17.1763,18.6286,5.6932,6.9686,3.6719,4.3626,0.88085,0.98826,2.344,2.3509,8.0842,7.1113,14.3784,14.7594,3.3716,3.7458,4.3587,4.03,3.9737,3.5668,1.4205,1.4118,3.9776,4.6305,10.4929,10.9152,3.054,3.2431,2.2314,2.3585,2.1452,2.1484,9.3621,10.1492,2.3016,2.3246,2.1845,2.4219,11.1296,12.7845,1.8905,1.8478,1.1613,1.1288,14.4163,13.3202,5.0383,5.033,8.3038,9.4144,4.558,3.4209,10.0633,11.0679,7.4507,7.3212,7.3535,7.2036,3.3051,3.5219,1.6507,1.6296,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,237
+desd239,68,68,F,1.3381,1.357,0.38364,0.43307,0.82696,0.84425,15.199,3.1106,2.9517,39.3487,37.8262,11.3847,11.7876,206.115,208.8861,1.6168,3.1369,3.0423,0.68917,0.83932,18.5788,17.7235,1.5157,1.4293,3.3584,3.4931,5.7788,6.17,4.0234,4.2791,0.07385,3.4571,1.9967,2.412,0.40259,0.395,4.0983,5.0062,3.811,3.9407,1.6824,1.4198,9.4246,8.2935,2.6463,2.5467,3.8309,4.2973,4.7451,4.0075,1.676,1.5896,1.8952,1.8734,3.5513,3.177,7.2336,6.7978,1.9793,1.948,6.071,5.8456,11.1808,10.2239,6.664,6.6743,2.1975,2.0384,4.7426,4.9916,1.6304,1.7096,17.3195,17.1496,5.1387,5.3515,3.843,3.7272,0.81059,0.93506,2.1051,2.3054,7.7634,6.5107,14.3263,11.7806,2.7901,3.3539,3.6301,3.809,3.179,2.8302,1.4161,1.2523,4.0842,4.2906,10.8726,10.6018,2.8322,3.2521,2.1552,2.17,2.1442,2.3381,8.8901,9.8186,2.4463,2.1929,2.0475,2.273,11.6113,11.9425,1.7268,2.002,1.2017,1.2128,13.2221,13.2053,5.0162,4.9208,8.0575,9.5454,3.9158,3.0737,9.3569,9.1723,6.7893,6.2011,7.5884,7.1295,3.3669,3.2269,1.3584,1.4851,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,238
+desd240,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,239
+desd241,60,60,M,1.6574,1.6088,0.41218,0.47384,0.86381,0.95116,17.7593,3.5829,3.292,47.8771,47.8739,13.857,14.0371,231.4533,222.1084,1.2497,3.8127,3.4711,0.64657,0.52111,11.703,13.599,1.5318,1.4938,3.6951,3.827,7.1738,6.8078,4.6513,4.9328,0.07571,4.4305,2.2438,2.6607,0.39005,0.39072,4.7629,4.9895,3.8856,3.8791,2.2097,1.7011,10.4015,10.0478,3.2468,3.2874,4.055,4.248,4.8925,4.7009,1.7915,1.993,1.9638,1.8366,4.3402,4.5852,7.6859,7.7943,3.6083,2.687,7.0274,6.3392,12.4007,12.02,8.3993,7.61,2.7088,2.4943,5.4889,5.5615,3.0691,2.1793,23.3061,23.3141,5.2143,6.6154,4.3394,4.5688,1.2879,1.3141,2.8271,2.8053,11.2819,9.517,15.5315,15.2108,3.5521,4.4609,4.3781,4.5183,4.1233,3.5979,1.8308,1.5149,4.044,4.089,11.0205,11.3723,3.0451,3.4223,2.1346,2.3505,2.3555,2.5135,11.533,12.4476,2.3298,2.5482,1.9056,2.2955,13.2394,14.6171,2.0535,2.3804,1.3847,1.4805,16.9133,16.1344,5.7831,5.9413,8.8443,10.1914,5.1463,4.0538,10.9754,9.5201,7.2645,8.8713,7.83,7.5491,3.6955,4.0978,1.4907,1.6622,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,240
+desd242,68,68,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,241
+desd243,70,70,F,1.814,2.1868,0.33461,0.37163,0.90213,0.87834,15.9099,2.4421,2.5169,37.5752,37.811,12.8538,12.4571,214.38,213.9673,2.2694,3.5536,3.4216,1.0738,1.2492,23.9601,30.2228,1.6417,1.5737,3.2159,3.3873,7.2992,7.3533,4.1214,4.319,0.05934,3.9853,1.9258,2.0377,0.35381,0.36204,4.2224,4.228,4.0996,4.1827,1.5401,1.2674,9.7966,8.9214,2.9077,2.5994,4.542,4.3733,4.7321,3.9091,1.7212,1.6332,2.0991,1.8331,3.3818,3.0894,7.3887,7.0611,1.9012,2.0807,5.5486,4.5079,11.1909,10.6209,8.2946,8.2792,1.9334,2.0203,4.693,4.5362,1.6125,1.4705,18.9317,18.6128,3.884,5.159,3.5657,3.717,0.94454,0.94417,2.4824,2.3545,7.2823,6.1492,13.0026,13.8452,2.4852,2.7058,3.9501,3.8738,3.4637,3.4294,1.3481,1.3295,3.5844,3.9134,10.1944,9.4536,3.2315,3.2922,2.6966,2.6301,2.3612,2.4359,11.3472,11.849,2.1781,2.3531,2.2051,2.3843,12.3752,12.5735,1.9579,2.1074,1.0543,1.0159,13.9778,14.0776,4.9902,5.2913,8.2692,9.085,3.7939,3.2115,9.6993,9.0894,7.1015,6.7864,7.3535,7.7004,3.2904,3.3353,1.8464,1.659,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,242
+desd244,77,77,M,2.2506,2.7068,0.31295,0.35423,0.68649,0.76688,17.5478,2.5466,2.5252,47.9737,47.8809,13.8416,14.0666,208.9435,207.1667,1.9063,2.7718,2.5432,0.96452,0.97989,22.1314,27.0618,1.5922,1.4265,3.3018,3.2992,6.4129,6.4038,4.4807,4.7448,0.09914,4.7843,2.1661,2.5664,0.33009,0.33719,3.7635,4.1858,3.8023,4.0479,1.6852,1.3311,9.5403,7.6134,3.1261,3.0593,3.5675,3.9707,4.3213,4.1712,1.4199,1.4425,1.7346,1.7849,3.3536,3.3368,6.6888,6.9801,1.78,1.977,4.1811,4.9819,9.5823,10.0065,8.0981,7.0238,1.9676,2.117,4.3988,4.3331,1.5496,1.6175,18.9317,18.5232,4.1514,5.1165,3.5422,3.5511,0.8248,1.0072,2.678,2.4201,6.7768,6.2902,11.9513,12.7688,2.7573,2.8417,4.0742,4.0452,2.7727,2.889,1.3553,1.2695,3.6395,3.8467,9.6636,9.4371,2.6261,2.7835,2.0896,2.1462,2.3633,1.9164,10.741,11.3546,1.7935,2.1999,1.9403,2.1192,12.189,10.9797,1.7782,1.6999,1.1427,1.1368,13.015,13.2355,5.0937,5.2913,6.9308,7.0634,4.6808,3.125,9.3173,8.8561,7.0388,6.4179,6.5782,6.5726,2.8088,3.1907,1.2979,1.3832,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,243
+desd245,,,F,1.3797,1.9878,0.32621,0.34666,0.77011,0.77586,15.9805,2.6216,2.626,48.774,47.0212,13.5126,12.9644,185.9887,190.6344,1.3542,3.1792,2.9131,0.39434,0.41529,13.5037,12.8542,1.4021,1.4396,3.1172,3.3626,5.9457,6.3183,4.1085,4.3026,0.08136,4.8838,2.3313,2.428,0.32816,0.34086,3.7014,4.1523,3.7458,3.9462,1.5847,1.4543,9.6351,8.5365,2.8047,2.8543,3.8625,4.156,4.3885,4.0367,1.5072,1.4891,1.7477,1.9075,3.5843,3.252,7.1609,6.9337,1.8574,1.7921,6.3087,6.3134,11.0529,10.5925,6.9075,6.6139,1.8405,2.259,4.6803,4.4796,1.6135,1.5606,17.6547,17.7781,5.2675,6.2003,3.2559,3.6691,0.98225,1.0087,2.2491,2.3329,6.932,6.5881,12.9693,12.9082,2.6698,2.8725,3.6185,3.992,2.755,2.8433,1.3248,1.4375,3.4763,3.9003,8.9099,8.986,2.6424,2.8218,2.0266,1.9385,2.1558,2.222,9.5254,11.4371,2.0819,2.3643,1.8823,2.0997,11.9216,12.0145,1.9087,1.9016,1.054,1.0628,13.6319,12.446,4.8672,5.1563,6.8248,9.011,3.7716,3.0195,9.2834,9.7759,7.2331,7.2648,7.636,7.624,2.6007,3.3509,1.3272,1.543,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,244
+desd246,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,245
+desd247,,,M,1.0872,1.759,0.47365,0.54746,1.0307,0.99715,23.9017,3.4755,3.3213,61.7421,54.2968,17.7021,19.2974,262.7638,255.3596,1.1103,4.0272,3.6808,0.8319,0.687,8.2404,7.4895,1.6958,1.6838,3.8314,3.8729,8.2756,9.5428,5.0063,5.3616,0.08406,5.1861,2.4037,3.2649,0.42072,0.43646,4.8039,4.9132,4.3102,4.4056,1.9587,1.8698,10.7409,9.3013,3.5269,3.1407,4.3249,4.6128,4.9765,4.9048,2.0136,2.4015,2.2834,2.092,3.9362,3.6086,8.6655,7.9513,2.37,2.281,6.5161,6.5946,13.3156,13.5711,9.245,8.5245,2.5593,2.7542,5.4808,5.7041,2.1551,2.0161,19.6171,21.0272,5.0552,6.3878,4.5626,5.6412,1.1923,1.3617,2.9956,2.8748,9.0934,7.9071,16.5453,17.4934,3.1577,3.2269,5.0772,4.9305,4.4008,3.6874,1.7193,1.597,4.5318,5.0554,12.5874,12.6692,3.4242,3.3589,2.5034,2.5747,2.5655,2.9455,12.0861,11.9236,2.5784,2.8759,2.3986,2.7252,15.096,13.0547,1.9853,2.5071,1.3146,1.3258,15.8672,15.6956,6.5039,6.1866,8.8275,10.9412,4.3969,3.3367,10.9754,12.624,9.0556,8.7673,9.5,9.5572,4.0728,4.4044,1.6556,1.9358,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,246
+desd248,70,70,M,2.7489,2.6286,0.31464,0.30698,0.68649,0.70051,17.6069,2.6088,2.3782,48.3411,48.7275,15.2712,15.21,193.0484,194.9133,2.5576,2.8547,2.6429,2.333,2.2971,46.5001,32.0855,1.5922,1.4785,3.0753,3.0835,5.7264,6.3151,4.3958,4.4993,0.08197,4.7947,2.4587,2.5118,0.31593,0.33346,3.4889,3.7698,3.3259,3.5139,1.4292,1.3156,8.1014,8.3197,3.0901,2.9704,3.1416,3.3077,4.2131,3.5719,1.1853,1.3976,1.566,1.5965,3.1487,2.9832,5.7579,5.8912,1.5746,1.7386,5.3701,4.9142,8.2296,7.9189,7.3984,6.5803,1.8575,2.0723,3.5392,4.1221,1.3578,1.4864,14.8746,15.0329,4.5401,4.8218,3.0518,3.3495,0.86716,0.99614,2.1727,2.0936,6.1495,5.498,9.9196,9.5015,3.0861,3.1964,3.6815,3.5787,2.7216,2.6453,1.2743,1.1638,3.2125,3.4752,7.7055,7.6672,2.4819,2.8097,1.9343,1.916,1.6795,1.6901,8.1216,8.6894,2.0102,2.0244,1.7139,1.8051,9.8279,10.7286,1.5177,1.4484,0.97823,1.016,12.8832,12.8727,4.6263,4.5387,6.2696,7.3065,4.3206,3.0282,8.1262,0.43408,5.4796,5.5943,6.3894,6.3317,2.9562,3.0175,1.2254,1.1486,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,247
+desd249,67,67,M,1.1381,2.1299,0.4192,0.47015,1.056,1.0282,19.511,2.7794,2.818,54.8997,56.9775,18.9067,18.4645,300.9244,294.1752,1.1773,4.0327,3.9457,0.58957,0.47953,8.2125,9.7437,2.0607,2.0654,4.8227,4.7899,8.509,9.0064,4.9821,5.1893,0.0839,6.2257,2.6203,3.3127,0.45912,0.46999,4.8283,5.3957,5.1362,5.3807,1.9744,1.6462,12.1998,11.3392,3.7472,3.6397,4.9359,5.2749,5.2677,4.6551,2.0902,2.055,2.4437,2.6153,3.757,4.1468,8.6418,8.5571,2.3816,2.4946,6.8803,6.8556,12.7428,13.2013,9.3788,9.0367,2.4049,2.6654,5.1739,5.7041,2.08,2.1063,21.3816,20.5668,6.0089,7.804,4.4177,4.5667,1.4549,1.2007,3.1735,3.2326,9.1937,7.9306,16.2184,15.8939,2.789,3.2581,4.8151,4.8561,3.968,4.5503,1.8635,1.7352,4.6463,5.0463,12.3998,11.2148,3.1754,3.5296,3.0945,2.9309,3.0347,2.8888,12.8155,13.663,2.5064,2.9618,2.5633,3.0548,15.9763,13.5612,2.3534,2.4649,1.4588,1.4707,15.5987,16.4776,5.4748,5.9984,9.415,10.4137,4.2425,3.3367,12.6491,11.7601,8.7938,8.5007,9.7771,10.4928,4.1574,4.1858,1.9688,1.9406,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,248
+desd250,77,77,F,1.9954,2.6574,0.3152,0.30522,0.62861,0.6567,14.5161,2.7265,2.4451,41.4208,40.6259,11.9444,12.0896,160.9065,156.4949,1.8061,2.5942,2.6209,1.0608,1.7636,19.8248,26.1031,1.3705,1.3726,2.903,3.1734,5.8237,6.2038,3.9091,4.2195,0.07342,4.1373,2.0225,2.4001,0.30157,0.31632,3.2422,3.6379,3.0838,3.2021,1.6024,1.2892,7.1019,7.5739,3.0008,2.9306,3.5019,3.5536,4.1849,3.8993,1.2605,1.3117,1.6873,1.7516,3.1786,2.8575,6.2374,6.1889,1.7864,1.8086,5.3178,5.398,9.2611,9.4973,7.4134,6.9013,1.9458,2.067,3.4091,4.224,1.4493,1.3901,15.6573,14.3917,4.5609,4.638,3.4751,3.4232,0,0.80674,1.8906,2.0722,6.2184,5.6333,10.7111,10.794,2.6741,2.9729,3.8961,3.817,2.8824,2.8646,1.1772,1.2633,3.0563,3.4659,8.3131,6.5694,2.5732,2.7595,1.6208,1.6036,2.1279,2.0968,9.199,9.4049,2.0081,2.1226,1.236,1.9267,10.304,10.7323,1.8383,1.8326,0.98169,0.98277,11.7757,12.1336,4.0735,4.4567,6.2754,7.3065,3.8065,2.6126,9.1446,10.0019,6.3164,6.5275,6.2058,6.197,3.0771,2.9441,1.194,1.288,,9,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,249
+desd251,84,84,M,2.4324,1.977,0.40488,0.42069,0.90876,0.844,18.92,3.4256,3.415,49.7958,50.3468,14.1435,14.4933,200.6661,192.0511,1.967,3.7959,3.1016,0.6937,0.9025,21.5353,24.4308,1.6221,1.6516,3.958,4.2565,6.5958,6.9055,4.7561,5.0564,0.08748,5.3158,2.3151,2.6607,0.39973,0.39996,4.5528,4.8983,4.3171,4.4386,1.9582,1.612,10.3955,8.7108,3.936,3.8162,4.4781,5.2039,4.8737,4.3545,1.7652,1.6762,2.088,2.1769,4.1246,3.5221,8.1492,8.0286,2.1539,2.0272,7.3665,6.4182,13.085,12.533,9.0811,7.6496,2.5327,2.4351,5.381,5.3529,1.8624,1.8724,20.216,19.8398,5.8715,5.6511,3.9158,3.8288,0.99114,1.2966,2.2511,2.7892,8.0025,8.0353,14.6469,14.356,3.4912,3.3266,4.2481,4.2296,3.6501,3.5668,1.6756,1.7149,4.2871,4.7769,10.9604,10.8883,3.1019,3.2606,2.7182,2.7492,2.5501,2.6774,10.7252,13.0556,2.4833,2.4864,2.1911,2.5326,12.4819,12.7961,2.0333,2.1193,1.2428,1.2837,16.2564,14.8241,4.9354,5.3446,8.2433,8.7963,4.9498,3.4548,10.9218,11.024,7.0448,7.245,8.9394,9.0002,3.5375,4.0353,1.7409,1.9453,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,250
+desd252,68,68,F,0.63477,1.2525,0.35506,0.39595,0.87013,0.88549,16.0576,2.8103,2.385,40.2222,43.5704,12.6382,13.4068,214.4218,213.0231,0.88663,3.1976,2.7706,0.52741,0.3713,4.3307,5.9407,1.4165,1.3426,3.3505,3.2931,6.0299,6.5764,3.916,4.2351,0.05802,4.5469,2.1777,2.2385,0.36052,0.37558,3.9314,4.4443,4.174,3.9214,1.7569,1.5173,10.2154,9.1174,2.8211,2.5994,3.7412,3.9781,4.2675,3.7098,1.6748,1.5507,1.9472,1.8215,3.4663,3.0385,7.7436,7.6299,1.9463,1.9992,6.628,6.1703,11.5909,11.5205,7.2877,6.865,2.2909,2.3732,4.6062,4.8029,1.6483,1.7134,20.6697,20.5998,5.0702,5.9096,3.7041,3.847,0.89908,1.0709,2.212,2.5861,7.5197,6.5001,14.2378,13.9282,2.6699,3.0222,4.3247,4.03,3.1835,3.2974,1.5267,1.4802,3.6601,3.8112,9.1509,9.2855,2.8314,3.0087,2.2999,2.3915,2.0855,2.1001,9.7231,10.3831,2.3375,2.5155,2.0533,2.3251,10.9804,12.4411,1.7839,1.8025,1.048,1.1418,13.117,13.6614,4.6765,4.6651,7.822,8.6432,3.9771,3.4603,9.5839,9.7743,7.2631,7.3126,7.3208,7.775,3.4643,3.9856,1.4878,1.4731,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,251
+desd253,,,M,1.7274,3.1062,0.44948,0.49714,0.82482,0.91774,20.0813,3.2801,3.251,51.6551,52.0429,16.4498,16.2637,256.3853,252.8184,1.8546,3.5434,3.5191,1.0926,0.80833,24.1001,21.7437,1.911,1.8386,3.5031,3.7195,7.1072,7.7363,5.2788,5.4606,0.07687,5.1347,2.4395,3.1022,0.38702,0.4173,4.5916,5.0133,3.9549,4.2539,1.6872,1.5999,9.7824,9.8993,3.617,3.9202,3.8354,4.261,4.8444,4.5748,1.6065,1.6861,2.0182,2.2199,3.801,3.7527,7.9794,7.8381,2.1982,1.9651,6.9214,6.6676,11.9752,11.0984,9.5438,8.1808,2.1702,2.3113,4.3896,4.9895,1.9747,1.917,20.3927,18.8358,5.0409,6.6693,4.2,3.9938,1.3779,1.1164,3.1735,3.4183,8.2049,7.864,14.54,13.7679,3.0004,3.5934,4.6508,4.8561,4.1233,3.4357,1.6373,1.5157,4.2989,5.0554,10.8608,11.2111,3.1953,3.2545,2.1909,2.2443,2.3324,2.4722,10.305,11.3632,2.3369,2.4625,2.0261,2.3045,12.4315,11.9276,1.9579,2.2641,1.2255,1.2903,16.4028,15.864,5.9055,6.0819,7.9138,8.3352,4.0864,3.879,9.187,9.4013,6.9535,6.5889,7.6852,7.4169,4.0397,4.28,1.5212,1.8382,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,252
+desd254,67,67,M,1.0532,1.7796,0.3977,0.44488,0.93717,0.94418,19.9378,2.9065,2.9504,48.6657,48.3552,16.8057,16.4672,255.4177,253.8471,0.91896,3.3797,3.1989,0.42881,0.46701,10.8471,11.9061,1.7259,1.7342,3.8073,4.0496,7.8667,8.3308,4.8753,5.1663,0.0895,4.7606,2.405,2.8787,0.42028,0.40079,4.491,5.2696,4.2669,4.6529,1.9376,1.8069,11.5141,10.7841,3.1363,2.787,4.1476,4.4735,5.2542,4.9048,1.7703,1.7971,2.0501,2.1657,4.0094,3.7443,7.7769,7.938,2.1663,2.1507,6.8896,7.3628,11.4399,12.1345,8.2946,7.2409,2.6412,2.8087,4.9316,5.1166,1.9362,1.9251,19.5598,20.4062,5.861,6.283,4.23,4.365,1.2452,1.2561,2.5709,2.7659,8.5314,7.7965,14.1437,15.5411,3.7035,4.0155,4.4497,4.2128,3.5722,3.5961,1.8216,1.7236,4.49,4.9012,12.1757,11.6244,3.144,3.4725,2.3087,2.393,2.3324,2.1472,11.1595,13.663,2.2847,2.6542,1.9393,2.2296,11.8669,12.7485,2.1539,1.6366,1.1057,1.2469,16.4027,16.3673,5.7327,5.6455,9.3329,10.3903,5.1129,4.3046,11.6259,11.7028,8.7756,7.8241,8.5115,8.4033,3.8485,4.0978,1.4291,1.2157,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,253
+desd255,68,68,M,2.3108,3.3485,0.3314,0.42607,0.89501,0.87128,13.3723,2.5394,2.7291,36.4172,36.5567,13.6038,13.2666,206.6841,199.762,2.1398,3.5952,3.3209,1.3331,0.92258,24.6327,32.5525,1.402,1.3426,3.1251,3.4931,6.1079,6.2847,4.1214,4.4513,0.06667,4.3839,2.0224,1.7593,0.3794,0.388,4.3437,4.8193,3.8127,4.076,1.047,1.4033,10.5865,9.2691,3.5365,3.2791,4.0779,4.1159,4.8708,4.7009,1.7733,1.6599,1.8302,1.9267,3.5009,3.2678,7.6692,6.9574,1.9296,2.012,7.429,6.7709,11.4524,11.1615,8.5381,7.0703,1.7375,2.0418,4.2543,4.7902,1.5256,1.5482,17.0585,17.3223,5.3864,5.6858,3.1968,3.9017,1.2881,0.91745,2.7454,2.3498,7.7634,6.8858,14.7813,13.7692,3.2217,2.9863,4.0605,4.4513,2.857,3.3705,1.4666,1.3122,4.1452,4.1885,10.1034,9.8269,3.2315,3.3865,2.2363,2.1047,2.0761,2.3633,9.7278,11.4371,1.9127,2.2394,1.9457,2.1104,12.0222,12.6192,1.7216,1.8994,1.1412,1.1288,13.278,13.3514,5.1473,5.2349,7.822,8.6945,4.9871,3.433,10.0806,10.1977,6.8655,7.0219,7.6691,6.5938,3.1664,3.7665,1.4241,1.4548,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,254
+desd256,62,62,M,1.6975,1.8801,0.39299,0.42454,0.84292,0.93165,16.9774,2.7826,2.7179,43.4399,43.6504,13.3741,13.6731,201.9419,202.0467,1.8529,3.328,3.1305,0.94962,0.72341,22.5276,27.473,1.4437,1.393,3.2836,3.3801,6.6341,6.6353,4.2836,4.4911,0.08676,4.9875,2.2166,2.6553,0.42509,0.4197,3.9769,4.591,3.9727,3.9407,1.5749,1.4033,9.4278,8.2935,3.1718,3.274,3.9223,4.6635,4.214,4.0143,1.4602,1.7455,2.1351,1.9804,3.3057,3.0312,6.8294,7.1315,1.9506,1.991,6.1452,6.0304,11.0173,10.6209,8.1911,7.3711,1.9712,2.0016,4.013,4.5407,1.5256,1.6169,17.1221,17.2818,4.6453,5.0946,3.6011,3.6606,0.91864,0.99614,2.2491,2.2289,7.142,6.6809,13.7782,12.6961,2.8584,3.7925,3.9425,4.1883,3.356,3.0674,1.4236,1.313,3.7308,4.2412,10.2821,10.3125,3.145,3.3515,2.3854,2.1874,2.3381,2.5824,9.2992,10.5975,1.9902,2.1009,1.89,2.085,10.9745,12.0145,1.9245,2.1929,1.1412,1.192,14.5743,13.9615,4.9428,4.8014,7.6196,8.5936,3.7511,3.6446,9.6159,9.647,6.6418,7.2459,7.424,7.869,3.3747,3.533,1.5011,1.709,,29,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,255
+desd257,63,63,F,1.3169,1.5863,0.32915,0.3078,0.90418,0.85531,16.6399,2.5579,2.1002,44.7662,43.3222,15.7526,15.4527,212.1288,208.929,0.9599,3.3942,3.1532,0.52741,0.66927,8.2404,11.2279,1.4574,1.4886,3.2129,3.1348,6.9927,7.053,4.2425,4.425,0.06458,4.6035,2.0725,2.5305,0.34664,0.33271,3.7942,4.2709,3.5918,3.8591,1.7298,1.4917,9.7765,8.6035,3.0752,3.0106,3.7866,3.9018,5.232,4.6911,1.7055,1.6595,1.8156,1.9199,3.524,3.0266,7.7755,6.8406,1.927,1.809,6.0577,5.7301,11.2242,10.8075,6.9015,6.5991,2.0948,2.2419,4.5714,4.5634,1.8392,1.638,16.2697,17.3371,4.3612,5.047,3.8306,3.5808,1.0106,1.1154,2.4732,2.8489,7.3543,6.0788,13.534,13.8302,2.5533,3.391,3.6454,3.8381,3.1751,3.322,1.5225,1.4884,3.4587,4.066,10.0705,9.983,2.9635,3.145,2.2006,2.1862,2.31,2.6695,10.2815,10.9914,2.2909,2.1968,1.9023,2.0971,11.9216,12.0505,1.7599,2.1825,1.0959,1.0907,13.5098,13.631,5.0149,4.9362,8.0252,8.4831,4.1039,3.6107,10.6544,10.3786,7.0859,6.7122,7.6637,7.9148,3.3421,3.6655,1.2969,1.4071,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,256
+desd258,71,71,F,1.0318,1.1991,0.43242,0.45319,1.0815,1.3139,22.1157,3.5906,3.1242,51.3226,52.2059,19.0103,18.8096,317.1721,293.5499,1.1534,3.8622,3.7395,0.55657,0.40026,11.4171,14.178,2.2761,2.3875,3.9504,4.111,7.9898,8.1584,6.6725,6.1972,0.08319,5.1861,2.4043,2.9156,0.42315,0.44196,4.262,5.0318,4.7025,4.9237,2.0372,1.6474,10.1484,9.6673,3.6609,3.6121,4.5488,4.6612,5.2542,5.0647,2.1363,2.0776,2.5755,2.3948,4.0984,3.9985,7.569,7.7524,2.3816,2.4041,6.8896,7.1185,11.8861,11.7343,8.7859,8.1669,2.7488,2.6396,4.4531,4.9895,2.0997,2.1024,20.3927,19.457,5.3816,6.8424,4.6467,4.6903,1.1688,1.1164,2.8466,2.6437,8.9175,7.8075,15.3034,14.5863,3.2091,3.5237,4.9265,4.9123,4.4141,4.0353,1.7555,1.681,4.3129,4.9629,11.7594,11.2292,3.4242,3.7962,2.4912,2.6615,2.8028,2.9574,11.4864,13.0106,2.5064,2.8525,2.3505,2.5133,13.1865,13.6084,2.317,2.4649,1.6682,1.5587,15.6749,16.3306,5.8192,6.0978,9.123,9.547,4.5474,3.6894,9.975,10.6654,7.1791,8.3032,7.8027,7.5491,3.9782,4.4132,1.7496,1.9795,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,257
+desd259,75,75,M,2.5243,2.6248,0.38142,0.40494,0.81126,0.6773,20.7649,2.6719,2.5116,51.4541,52.0746,17.5979,17.01,252.377,253.2682,1.967,3.3734,3.0505,1.6954,1.3342,26.4693,40.6739,1.718,1.7194,3.867,3.9178,7.9992,8.1564,5.2238,5.504,0.06528,5.521,2.3581,3.0709,0.37608,0.36839,4.2702,4.4582,4.2215,3.9356,1.6813,1.5719,10.3699,9.3302,3.0608,3.1698,4.1378,4.2821,4.3653,4.7357,1.4602,1.3091,2.0993,2.092,3.4718,3.1244,7.5488,7.5253,2.0209,2.0395,5.909,6.9885,12.6919,11.3466,8.238,7.7304,2.1437,2.3376,4.3869,4.4931,1.7018,1.6885,17.0565,18.3395,4.8132,6.6593,3.6362,3.8666,0.95246,0.97539,2.5734,2.6527,7.7032,7.0089,13.9705,13.2507,2.4873,3.6695,4.2749,4.593,3.5751,3.767,1.4234,1.486,3.5558,4.5039,11.9276,11.4018,2.7925,2.7031,2.5509,2.2809,2.3616,2.4738,9.9071,11.9748,2.1409,2.5171,2.2659,2.3017,11.1433,12.0283,1.9259,2.2135,1.1181,1.2324,14.3724,13.1717,5.0951,5.4085,8.0442,8.823,3.3494,3.2927,11.4796,11.024,7.1278,7.4062,7.4701,7.1663,3.4632,3.7579,1.6375,1.7159,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,258
+desd260,73,73,M,1.7782,1.7113,0.33228,0.35524,0.83571,0.86541,18.057,2.5753,2.5135,45.3326,45.9631,14.3962,14.685,202.9975,194.6723,1.4449,3.276,3.1406,0.45596,0.51393,12.2069,17.6733,1.3961,1.3743,3.2112,3.33,6.889,6.9487,4.3656,4.5506,0.07643,4.061,2.1246,2.3728,0.39667,0.38027,4.4022,5.2078,4.102,4.3837,1.6918,1.3301,10.7424,9.325,2.9195,2.9567,4.3899,4.1455,5.2958,4.8578,1.697,1.7514,2.0832,2.1908,3.5009,3.4425,7.4894,7.2967,2.1665,2.0066,5.909,6.3132,11.4744,11.0916,7.6364,7.2098,2.1928,2.2288,5.0172,5.2192,2.1857,1.8696,17.3195,18.1861,4.8922,6.0172,3.9778,3.8039,0.95669,1.0397,2.2481,2.4209,8.6872,7.7043,13.8534,13.8302,2.4897,3.4594,4.0877,3.9757,3.2295,3.2469,1.6238,1.357,4.0692,4.8171,10.6008,10.0353,2.8883,3.2074,2.5789,2.5628,2.7669,2.7283,10.1299,10.647,2.421,2.4872,2.34,2.5356,12.1241,11.857,2.1174,2.0692,1.1181,1.195,13.661,14.6558,5.7548,5.4839,8.4112,8.4604,3.9039,3.5643,10.6511,10.5249,8.2011,7.9989,7.1214,7.6207,3.7857,3.6103,1.8053,1.7581,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,259
+desd261,63,63,F,1.5757,1.6249,0.32915,0.3566,0.73506,0.67372,16.5658,2.7236,2.7342,43.2544,43.3333,13.7873,14.2481,222.8878,224.2603,1.2468,2.9427,2.6953,0.5428,0.65246,12.81,18.3889,1.596,1.5627,3.4732,3.5625,6.53,6.6266,4.3466,4.6248,0.08537,4.4765,2.1635,2.2029,0.30481,0.33925,3.614,3.8512,3.5266,3.5746,1.5496,1.4009,9.1051,7.639,3.2221,2.7063,3.4983,3.5289,4.6451,4.3938,1.381,1.3042,1.7233,1.7876,3.3098,3.1364,6.8294,6.0265,1.9636,1.8986,6.3048,5.5447,9.5259,8.7671,7.0608,6.2929,1.9334,2.1568,4.2386,4.3147,1.5144,1.5214,16.2826,17.0128,4.6266,4.7805,3.5983,3.6766,1.0125,1.0199,2.4473,2.3548,6.5869,6.2958,12.3066,10.6118,2.8549,3.3184,4.0098,3.7017,2.9641,3.1208,1.2823,1.1636,3.4532,3.7115,9.3965,8.9996,2.5377,2.7676,2.0291,1.8829,1.958,1.9332,8.9708,10.4337,2.117,2.2723,1.8018,2.1223,11.4033,10.3418,1.662,1.7338,1.0228,1.0716,12.7837,13.1121,4.5318,4.6593,7.6297,7.2062,4.1137,2.934,10.3461,9.1754,6.2705,5.6422,6.427,6.051,3.0297,3.3076,1.182,1.3832,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,260
+desd262,72,72,F,1.2149,1.688,0.4066,0.43272,0.88136,0.87777,12.5951,3.1972,3.1177,21.6404,8.5017,10.6258,10.4069,208.768,208.7993,1.5249,3.213,3.0054,0.49829,0.81761,16.7432,16.4158,1.4291,1.2638,3.8497,3.816,6.3908,6.5896,3.9964,4.0475,0.06777,3.905,1.7779,1.1706,0.37104,0.36577,4.0261,4.2396,3.8936,4.144,1.6685,1.4319,9.7765,9.1829,3.1536,3.0867,4.542,4.3733,5.1156,4.6151,1.575,1.5289,1.9638,1.9246,3.443,3.0266,6.6059,6.8859,2.0423,2.1391,6.0251,6.0503,11.3008,11.183,7.457,7.2027,2.1145,2.2312,5.2766,5.1542,1.7598,1.6782,18.8515,18.7659,5.2137,6.0172,3.5988,3.8273,0.7652,0.97539,2.2466,2.3554,7.3176,6.0255,14.5541,14.2003,2.7764,3.6103,4.1496,4.1122,3.3829,2.9985,1.4548,1.4598,3.5904,3.9584,10.4938,10.0918,2.6373,2.8589,2.2922,2.3419,2.2832,2.5471,9.7747,10.3798,2.2717,2.2731,1.8764,2.0954,10.878,10.5419,2.1681,2.4502,1.0892,1.1393,13.4212,14.4246,5.1824,4.7806,7.6442,9.6603,4.0282,4.0503,9.7624,9.8328,8.4678,8.0185,7.1959,6.8798,3.6062,4.1721,1.4593,1.7159,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,261
+desd263,42,42,F,1.0122,2.0464,0.49416,0.66196,0.96734,0.92443,21.0547,3.5937,3.546,56.5683,54.4932,17.4447,17.3113,274.0747,264.2635,0.97752,3.7959,3.2871,0.43769,0.44981,8.8972,10.2369,1.6958,1.6826,4.3591,4.47,7.9425,8.1584,5.139,5.3964,0.10549,5.7021,2.591,3.0924,0.45297,0.46534,5.2218,5.7206,4.3102,4.5632,2.0729,1.6984,11.7868,11.2047,3.1363,3.0552,4.7409,4.5986,5.4003,5.6454,1.9785,1.7889,2.1933,1.9869,4.4074,4.3146,9.3536,8.5571,2.3144,2.4124,7.6633,7.4932,13.5092,13.2035,8.4853,8.0601,2.6568,2.6402,5.4314,5.5629,2.1684,2.0045,21.001,20.2197,6.1715,7.3778,4.5732,5.068,1.4862,1.4687,4.4218,3.2439,8.7517,8.2845,18.12,16.9337,3.9473,4.0078,4.6395,4.8532,3.8129,3.6718,1.8616,1.5283,4.3861,5.0378,11.0276,11.9548,3.2419,3.5386,2.398,2.2643,2.9351,2.6442,13.2796,12.4476,2.625,2.7842,2.2822,2.4174,14.6459,15.5418,2.3664,2.8074,1.3669,1.3112,16.095,15.8389,6.8058,6.2148,9.3669,9.8394,4.9057,4.286,13.5756,11.3395,8.7938,7.8305,9.5096,8.911,3.9849,3.787,1.741,1.7801,,28,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,262
+desd264,,,M,2.4514,2.3676,0.34798,0.42314,0.80167,0.81158,18.7864,2.7861,2.9263,47.8126,47.3623,14.8592,16.1352,217.423,213.1019,1.9764,3.0601,3.0689,1.4227,1.1206,30.6841,28.4876,1.7507,1.7644,3.5546,3.52,6.8573,7.1101,4.733,4.9825,0.08496,5.4297,2.2816,2.8787,0.36477,0.3541,4.1278,5.1017,3.8533,4.1694,1.7991,1.4925,10.0845,9.1769,3.6757,3.3702,3.9927,3.9395,5.0668,4.6911,1.5454,1.4961,1.6638,1.946,3.8851,3.6657,6.7819,6.7015,2.13,1.9279,7.3851,7.1021,11.3758,11.0449,7.9457,7.7907,2.2463,2.3745,4.617,4.8919,1.7877,1.7827,19.6653,19.8127,5.4944,7.057,4.0524,3.8396,1.1335,1.1895,2.6694,2.6843,8.1308,7.2991,14.1004,13.1896,3.6274,4.7783,4.4752,4.5582,3.1677,3.8125,1.4654,1.5605,3.6767,4.0902,10.2264,10.6747,2.63,2.9739,2.2603,2.2657,1.8431,2.3681,10.9578,10.8701,2.2138,2.2691,2.0977,2.3763,13.1425,12.3655,1.7731,2.0163,1.0849,1.1685,15.0862,14.7357,5.8085,5.7904,8.5253,8.8857,5.1011,3.7986,9.5405,9.8591,8.2179,6.9651,7.1298,6.9161,2.8794,3.8172,1.5101,1.5449,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,263
+desd265,64,64,F,1.3555,1.8403,0.32741,0.37961,0.64242,0.70985,16.4367,2.6088,2.4605,42.3023,40.9443,13.2022,13.5134,195.6757,197.0866,1.2754,2.4729,2.5595,0.76116,0.91831,21.4528,24.447,1.4477,1.4044,3.2456,3.7764,6.0473,6.423,4.1197,4.4346,0.06403,4.1318,2.0225,2.6111,0.31937,0.33121,3.4262,4.3084,3.349,3.4818,1.6854,1.4915,9.7765,8.2846,2.6385,2.4315,3.5194,3.5452,3.6079,2.9575,1.3501,1.4257,1.6705,1.7166,3.5773,3.2291,6.2382,6.2742,1.9915,2.1343,5.1878,5.0071,10.0786,9.5955,6.4011,5.6364,2.165,2.1242,4.6803,4.4832,1.7515,1.678,16.898,17.3382,4.2694,5.159,3.8406,3.9596,1.0611,0.95079,2.3302,2.3324,7.1579,6.3289,11.2172,12.1057,1.9907,2.6691,3.3985,3.5657,2.878,3.1947,1.4724,1.2418,3.6173,3.9301,8.7866,8.5726,2.4115,2.4612,2.0113,1.9934,2.265,2.0978,8.8208,9.6952,2.0726,2.0846,1.7814,1.8273,10.6188,11.1387,2.0179,1.6764,1.249,1.2506,10.1465,12.6877,4.7292,4.6129,6.4613,7.561,3.241,2.6071,9.6445,8.188,6.3171,6.8627,6.6229,6.306,3.1653,3.535,1.3253,1.2516,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,264
+desd266,83,83,F,1.8493,2.3804,0.32574,0.36188,0.75455,0.68479,16.6514,2.8236,2.2936,44.7209,44.5662,13.3747,13.3742,211.2005,210.2499,1.5971,3.1424,2.8508,0.74448,0.72752,15.6604,17.3104,1.3967,1.4462,3.2613,3.3909,6.3999,6.5046,4.3203,4.5859,0.08965,4.1429,1.9878,2.6862,0.34825,0.35774,4.0939,4.8586,4.1956,4.1184,1.797,1.6704,7.7391,7.6735,3.0589,3.0593,3.6777,4.1895,4.1008,4.4412,1.6425,1.2061,1.9982,1.9305,3.6814,3.252,7.133,7.4408,2.0611,2.1497,6.777,6.342,11.2816,11.3971,8.238,7.3401,2.2373,2.3702,4.4148,4.7222,1.8869,1.8939,19.556,20.5346,4.6369,5.5471,3.8145,3.9634,1.3088,1.0477,2.8271,2.7079,8.4599,7.3183,12.9644,13.5805,3.03,3.1802,4.3103,4.2739,3.6151,3.4062,1.5866,1.3626,3.7538,4.0189,9.9058,9.4853,2.8675,3.0299,2.2009,2.4505,1.8613,2.387,10.3476,10.2358,2.1903,2.5267,2.0325,2.4078,11.1964,12.3532,1.8027,1.9505,1.2301,1.3192,14.225,15.1137,5.1721,5.2827,7.1517,7.8364,4.5928,3.3597,12.3532,10.4191,7.4597,6.6694,7.3982,7.4517,4.1919,3.8205,1.5205,1.6345,,20,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,265
+desd267,66,66,F,1.1174,1.6554,0.29497,0.35503,0.73701,0.62016,16.2768,2.3504,2.3391,42.2721,39.5261,13.2933,14.4498,177.4279,172.1287,1.005,3.0477,2.7733,0.60093,0.63503,7.0569,9.3133,1.5202,1.4491,3.0293,3.0355,5.8808,6.0675,4.4743,4.7221,0.08194,3.9762,2.0009,2.3794,0.34977,0.33861,3.6238,4.1459,3.9149,4.2189,1.593,1.2075,9.6351,7.6134,3.0698,3.1519,3.4136,4.1184,4.3094,4.0367,1.4607,1.2384,1.9727,1.9234,3.3588,3.1436,6.5651,6.8443,1.795,1.8084,5.7916,5.9248,9.9978,9.9826,6.7317,5.9821,2.0092,2.067,3.9888,3.8008,1.5936,1.618,15.6855,15.6616,4.7423,4.5397,3.3841,3.5479,0.98894,1.0146,2.374,2.3819,6.9458,6.2544,13.7151,12.054,2.4359,3.0273,3.6227,3.7607,3.341,3.2954,1.349,1.2667,3.8666,4.3803,10.4475,10.5408,2.4831,2.6815,2.1191,2.324,1.8668,2.3187,9.205,10.9548,2.1342,2.1999,1.7206,2.0694,10.8173,10.6935,1.6691,1.7874,0.99631,1.0006,12.2098,11.9291,4.3662,4.6578,7.2824,7.6417,3.7419,3.151,8.6424,9.2975,6.2928,6.7168,6.9366,6.6252,3.0346,3.122,1.2987,1.3545,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,266
+desd268,,,F,1.6004,1.8949,0.34365,0.35194,0.76962,0.66949,19.5657,2.5624,2.7309,47.3816,47.0307,16.1704,15.9507,244.1906,238.2906,1.3511,3.1953,2.9132,0.4896,0.68711,13.6408,16.12,1.6668,1.7432,3.4389,3.4843,6.8344,7.1892,4.9035,5.103,0.08231,5.1586,2.1822,2.878,0.34728,0.36335,3.9057,4.1858,3.9291,4.1438,1.519,1.3681,10.0486,8.7841,2.8932,2.8439,3.9593,3.8697,4.2102,4.0006,1.5607,1.3091,1.8918,1.9025,3.4809,3.2473,6.8674,6.8443,1.891,1.8172,5.896,5.1279,10.6925,10.3866,7.2507,6.3868,2.2187,2.1152,4.5105,4.7098,1.5347,1.6073,18.4993,17.7601,4.56,4.7495,3.4517,3.5123,0.98315,1.0474,2.4536,2.4033,7.1172,6.2442,12.9491,12.8847,2.7901,2.7213,3.9417,3.7048,3.2803,3.3434,1.6624,1.3506,3.7277,4.0597,9.8708,9.7817,2.6336,2.7866,2.0447,1.9385,2.1501,2.222,10.1175,12.4954,2.1961,2.4992,1.9403,2.0972,12.813,11.6069,1.6533,1.927,1.054,1.0199,13.6528,13.9897,5.0477,4.7806,7.9453,8.7262,4.0576,2.8771,9.3204,9.4134,6.5286,6.3939,7.0754,6.8093,3.4193,3.321,1.5181,1.5485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,267
+desd269,,,M,1.4349,3.2169,0.41779,0.45566,0.88504,0.93558,20.181,3.3457,3.4491,48.2352,47.6335,16.4222,16.6023,211.7753,209.0373,1.0849,3.2885,3.2016,0.48748,0.63062,16.9137,19.5064,1.5691,1.5431,3.7968,3.8682,7.2128,7.2372,5.1201,5.3211,0.10549,4.6608,2.2438,2.7104,0.41876,0.42106,4.3234,4.7603,4.2447,4.2489,1.8168,1.6336,10.6387,9.6959,3.4253,3.0991,3.8563,4.1345,5.1768,4.4205,1.7155,1.8925,2.1879,1.9546,3.7062,3.3493,7.859,7.2396,1.9592,2.0127,6.1063,6.9345,12.2567,11.6101,9.0216,7.4205,2.3253,2.36,4.3397,4.4862,1.8043,1.7826,19.4533,19.8127,5.123,7.0699,3.8657,4.0271,1.3035,1.3214,2.8271,3.0236,8.1859,6.8637,15.5635,14.6139,2.9678,3.2581,4.6118,4.4217,3.143,3.1158,1.6218,1.2838,4.1859,4.6726,11.011,11.0082,2.8216,3.29,2.2915,2.2236,1.9459,2.2866,11.1468,12.7921,2.3579,2.6528,1.9234,2.1408,14.0005,13.6874,1.6913,2.0222,1.1967,1.2087,15.1279,15.3658,5.3621,5.845,9.0184,8.4822,4.4602,3.38,10.3739,10.9036,7.9102,7.9303,8.4612,8.556,3.8232,3.3907,1.3803,1.5435,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,268
+desd270,59,59,M,1.8962,2.2777,0.49537,0.52599,0.96734,0.92443,20.2776,3.8859,3.5903,61.7421,54.1574,16.6993,16.4774,247.6455,238.7424,2.9477,3.6067,3.4208,0.90834,1.16,34.3032,32.1618,1.8306,1.7332,3.9383,3.9778,7.4658,7.7363,5.3058,5.5975,0.08927,5.4568,2.4099,3.3315,0.40908,0.44027,5.4144,6.5349,4.7486,4.6396,2.7957,1.9361,12.1829,10.561,3.0673,2.9878,5.3782,4.6239,4.6639,5.1353,1.9621,1.6972,2.3046,2.1482,4.7109,4.5553,8.7955,7.9513,2.4687,2.5264,8.3795,7.263,13.3156,12.9958,8.6827,8.0205,2.7846,3.0093,6.1433,6.2151,2.196,2.3605,22.3671,21.8414,5.8744,6.7807,4.2825,4.1926,1.1751,1.1499,3.1048,2.9101,9.9152,9.517,16.4933,15.9462,2.9965,3.5541,5.1058,4.788,3.9048,3.3928,1.8616,1.8108,4.8073,6.5954,12.3998,12.4284,3.3305,3.5072,2.6785,2.5935,2.2238,2.5855,9.6495,11.3752,3.0105,3.1197,2.3484,2.7196,14.2536,14.8678,1.9236,2.0881,1.3886,1.3974,16.4919,16.7027,6.2438,7.8068,7.8621,8.2032,3.9312,3.7493,10.9754,11.8244,8.4167,7.7847,7.7771,8.105,4.5598,4.4532,1.5416,1.6919,,27,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,269
+desd271,,,M,2.3602,2.354,0.39851,0.46097,0.84385,0.83008,18.0355,2.9449,2.8533,45.176,46.3144,15.0585,15.8368,222.5126,218.9022,2.0243,3.4051,3.1719,1.2856,0.80493,34.3074,42.9565,1.6223,1.5819,3.5515,3.6548,6.4035,6.5934,4.5409,4.8195,0.0742,4.9875,2.2895,2.5579,0.38806,0.40045,3.9011,4.4643,3.996,4.3376,2.0054,1.6986,11.418,10.0039,3.2858,3.0047,4.0902,4.1877,5.244,4.5931,1.5662,1.4481,1.6638,2.0771,4.0529,3.633,6.3506,6.8529,2.0828,1.99,7.213,7.3491,10.5798,10.2714,7.8219,7.7332,2.4205,2.5265,4.0914,3.86,1.7718,1.7827,17.0618,17.8445,5.9148,6.7421,4.1381,3.7927,1.3779,1.0588,3.0988,2.5888,7.9901,6.7422,12.0367,11.9078,3.2782,4.2916,4.2578,4.5411,3.0321,3.2469,1.55,1.7375,3.7024,3.7867,9.8164,9.3258,2.5342,2.8097,2.3357,2.2428,2.0362,2.2906,9.348,10.6313,2.4929,2.7539,2.1559,2.1582,11.6764,12.3687,1.9502,1.8219,1.3131,1.3509,15.3559,14.7357,4.9632,5.033,7.9376,7.7045,4.7781,4.1038,10.0073,10.2541,7.1765,6.8428,7.3909,7.4025,3.0893,4.2257,1.3216,1.4033,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,270
+desd272,76,76,F,1.8949,1.9084,0.33943,0.42607,0.80725,0.78801,17.1812,2.6076,2.4323,30.3967,27.5385,16.5675,15.7259,242.2161,242.1665,1.6953,3.4092,3.0683,0.93131,0.83801,19.2048,23.2024,1.6071,1.5937,3.4389,3.605,6.5668,7.2052,4.4412,4.6769,0.08474,4.3606,2.1431,2.2858,0.40259,0.36049,3.8621,4.5673,3.991,3.7959,1.8843,1.5261,10.3634,10.0478,3.036,2.9037,4.1322,4.0153,3.7766,3.8834,1.5516,1.4874,1.7979,1.8386,3.8675,3.3823,6.9996,6.8111,2.0171,2.2114,6.15,6.2477,10.916,10.374,7.5424,6.8042,2.3802,2.5224,4.3869,4.6586,1.7892,1.7795,19.2383,19.3901,4.8922,7.0538,4.1567,4.367,1.0439,1.2361,1.9825,2.823,7.7828,6.9014,14.3784,13.5444,2.9139,3.2095,4.2429,4.385,3.1817,3.3625,1.6172,1.6324,4.1173,4.3339,10.5983,9.5412,2.8251,2.9516,2.4096,2.2331,2.351,2.497,9.4889,11.5959,2.4884,2.8676,2.1559,2.1704,12.7276,11.781,2.0422,2.0007,1.1625,1.2447,14.8003,14.2914,5.6198,5.0169,6.923,8.9752,3.9606,3.5773,10.8406,10.3233,7.8222,6.9867,7.6653,6.5938,4.0176,4.2425,1.6433,1.6638,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,271
+desd273,,,F,0.94821,1.759,0.34421,0.34666,0.82722,0.80952,19.5657,2.5929,2.1533,53.3227,52.2641,16.1786,16.5544,208.0846,208.9042,0.86119,3.251,3.0569,0.38042,0.51123,10.2828,12.2315,1.5667,1.7181,3.6103,3.5786,6.9295,6.9347,4.4224,4.7567,0.07715,5.0798,2.229,2.8663,0.33326,0.35689,3.536,4.0012,3.8783,4.1267,1.8686,1.502,9.6779,7.8224,2.272,2.6605,3.7748,4.2725,3.5655,3.9624,1.7484,1.6736,1.983,2.1231,3.869,3.4222,7.3468,6.9971,1.8913,1.8763,6.4022,6.2477,11.0946,10.3938,7.2789,6.8258,2.5819,2.3653,4.4357,4.4796,1.6135,1.5953,19.6606,20.8052,4.9648,6.8442,3.9577,3.8819,1.1385,0.9933,2.7068,2.4105,6.977,6.2017,13.7059,12.8021,2.7022,2.9607,3.842,3.9987,2.8978,3.5007,1.6822,1.4475,3.8757,4.2619,9.6078,11.1281,3.1027,3.2698,2.1623,2.1987,2.1452,2.1484,9.3223,11.1711,2.423,2.4347,1.8823,2.0075,12.3454,12.0972,1.8131,1.8612,1.1543,1.1421,13.4679,12.9226,5.016,4.9362,7.3778,8.1728,3.6293,2.8795,10.1847,10.7882,7.1344,7.4943,7.8442,7.4294,4.1776,4.0681,1.3885,1.3337,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,272
+desd274,72,72,F,3.1708,2.4934,0.33104,0.41514,0.84773,0.89128,16.0241,2.3358,2.2576,41.5171,43.1548,13.3111,13.3684,198.8894,191.857,2.9538,3.6912,3.4541,2.1753,2.2641,44.4104,48.6943,1.5208,1.4679,3.2202,3.3909,6.1456,6.7249,4.4743,4.6676,0.0883,4.484,1.9992,2.6174,0.3742,0.36038,4.0314,4.5673,3.7816,4.1751,1.7011,1.526,8.3991,7.1867,2.9997,2.7963,3.8832,4.1139,4.6639,3.9091,1.5935,1.602,2.033,1.8215,3.3802,3.4446,6.9563,6.8021,1.9041,1.951,6.1003,6.005,10.3411,9.618,7.7153,7.3653,2.1154,2.2613,4.6909,4.7063,1.6664,1.653,17.0565,17.8174,4.6626,5.7092,3.6261,3.7671,1.2513,0.96896,2.587,2.3596,7.1171,6.6371,12.738,11.0624,2.916,3.2256,3.9002,4.1242,3.614,3.3294,1.6195,1.2833,3.7818,4.0416,9.8266,9.4371,2.8682,3.2914,2.2052,2.1578,2.16,2.3381,9.638,11.8537,2.3064,2.3591,2.0861,2.295,11.7555,12.0034,2.1068,2.0129,1.2661,1.274,13.6084,13.4185,5.0937,4.7759,7.4343,8.5425,4.6134,3.5242,9.1168,9.2149,6.5685,6.2291,7.3176,6.8573,3.384,3.4713,1.5917,1.5275,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,273
+desd275,74,74,M,2.8751,3.1783,0.14032,0.16158,0.87078,0.85732,19.2627,2.826,0.0006,50.9428,52.0746,14.5116,15.1085,226.5443,215.8183,2.6887,3.5007,3.1416,1.4552,1.7079,31.9599,39.4973,1.636,1.6516,0.65264,2.7921,7.0514,7.5452,4.6522,4.926,0.07221,5.1249,2.5086,3.0265,0.35928,0.3378,1.9435,3.2107,3.6586,1.1702,1.2883,0.00008,7.3412,5.0678,3.036,2.8084,3.1436,3.2403,3.9576,3.6558,1.7733,1.6267,1.7152,1.4748,3.3098,2.43,8.0084,7.6282,1.5507,1.7242,6.7827,6.5748,11.64,10.5925,7.6884,7.2196,1.6305,0.06594,3.3912,4.0338,1.2506,1.2859,15.1214,15.9414,3.4789,5.2485,3.0279,1.6916,1.3235,0.89426,2.8511,1.9918,5.201,5.0306,12.6504,12.0241,3.0322,3.6186,4.2992,4.1161,2.9659,2.4669,1.1439,0.00156,1.3402,3.282,7.7055,7.2975,2.9867,3.4163,2.1383,2.0874,1.79,1.8363,10.0499,10.8241,1.1899,1.1664,1.7793,2.2326,10.3122,0.00038,1.5749,1.6811,0.91841,1.0546,0.00046,5.9188,4.719,3.5064,6.8164,1.2354,3.5417,3.5506,8.2253,1.7797,6.6855,7.1869,8.0132,7.3823,2.623,2.7339,1.0821,1.376,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,274
+desd276,67,67,M,2.1132,2.9716,0.3488,0.40487,0.72903,0.78925,19.2789,2.8485,2.6956,44.3483,48.1425,14.449,15.4454,231.234,228.3403,1.8849,3.4165,3.4276,1.2944,1.3042,22.6581,23.8012,1.7739,1.6123,3.4932,3.7316,7.4154,7.2452,4.9633,5.0355,0.07715,4.3107,2.0673,2.4745,0.40169,0.40055,3.6959,4.1603,4.1555,4.3443,1.6058,1.5729,9.7558,8.957,3.5254,3.1161,4.0083,4.2215,5.1395,5.0529,1.4359,1.582,1.9017,2.0259,3.4976,3.1806,6.8047,6.2539,1.9296,2.0977,6.1666,6.303,11.0967,10.3478,8.6663,7.4205,2.0858,2.4265,4.0733,4.1081,1.5356,1.6249,16.2846,16.929,4.9182,6.1555,3.8622,3.9294,1.0365,1.1781,2.4535,2.578,7.1452,6.4714,14.3784,13.6607,2.686,3.6695,4.5124,4.3142,3.4434,3.0969,1.4944,1.4536,4.3285,4.4619,10.9734,10.9054,2.5475,2.8295,2.4381,2.2345,2.0929,2.3306,9.8581,11.0579,2.1786,2.5171,2.2047,2.3454,11.5372,12.3543,2.031,2.0344,1.1729,1.2573,14.7709,14.4063,5.2471,5.3764,8.3387,7.9048,4.3422,3.7345,10.7106,10.8338,8.0376,7.6602,7.4701,7.1993,3.4566,3.8601,1.6937,1.8178,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,275
+desd277,71,71,F,0.91006,1.7796,0.33871,0.42191,0.8021,0.81121,13.6372,2.5314,2.4605,34.594,24.6806,10.0498,10.4569,191.0961,188.3036,0.7582,2.9478,2.5125,0.46835,0.35424,8.3533,9.3133,1.2453,1.2944,3.3993,3.7478,6.1911,6.3845,3.7485,3.8384,0.06965,3.5511,1.7341,1.4796,0.32629,0.34819,3.1503,3.4415,3.3243,3.4425,1.532,1.3152,9.1822,7.7872,2.8977,2.81,3.2413,3.2309,3.7649,4.0584,1.6513,1.6527,1.4564,1.5085,2.9562,2.3836,6.3183,6.3211,1.623,1.6765,5.4081,4.5914,9.9493,9.5955,6.5107,6.1919,1.8762,2.1077,3.7883,3.9956,1.3567,1.3929,15.764,15.7201,4.2287,4.9112,3.4009,3.3619,0.92636,0.93562,2.1395,1.689,5.201,5.0106,11.8607,10.9923,2.3504,2.6444,3.3581,2.673,2.9142,3.1155,1.289,1.1968,3.3466,3.3135,7.3639,8.2201,2.557,2.9742,2.0129,1.9054,1.7183,1.6901,8.6724,9.53,1.9091,1.9402,1.7963,1.965,10.8766,10.0965,1.613,1.6225,0.98281,0.97981,12.212,13.4043,4.5952,4.2424,5.992,7.0271,3.6905,3.0278,8.9171,7.6989,6.6416,5.9566,7.0173,7.2069,2.8685,3.3439,1.1932,1.1738,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,276
+desd278,70,70,F,2.2463,1.4758,0.14255,0.27353,0.5099,0.18576,18.029,2.2612,2.647,44.5851,44.6311,13.6405,13.5847,193.768,202.1358,1.9063,2.4966,2.3105,2.1389,2.2962,21.9802,24.0846,1.427,1.4433,0.23437,2.6509,6.3053,6.5321,4.3567,4.782,0.09323,4.7015,3.3807,2.6402,0.31367,0.13082,1.9435,3.3593,3.5266,0.46849,1.2644,1.2413,9.1916,7.6134,2.5013,2.0323,3.152,3.612,3.4484,2.9575,1.0283,0.91267,1.4845,1.5738,3.0341,2.5766,6.3474,5.9556,1.4337,1.6765,5.0955,5.0515,8.7273,8.6306,7.42,6.4468,1.6305,1.8822,4.2511,4.2817,1.136,1.294,12.9504,14.1142,3.8107,4.4411,2.88,3.0339,0.87055,1.0472,2.1614,2.3604,6.2585,5.6164,10.0935,10.7233,2.3409,2.5231,3.5564,3.448,2.7034,2.6457,1.163,1.3123,3.5454,4.5039,9.3965,10.1525,2.4996,2.6002,1.7214,1.865,1.6795,1.6536,7.8857,8.5934,0.63246,1.9167,1.457,1.7846,9.3165,10.5862,1.3264,1.3524,0.98978,0.99153,10.0494,0.00002,4.1068,4.1648,6.5404,1.6946,3.2913,2.717,9.0106,8.1941,6.0248,5.4729,5.4621,5.8077,2.581,3.0499,1.2254,1.3825,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,277
+desd279,68,68,M,1.7737,2.6021,0.31295,0.30522,0.77176,0.81125,16.3958,2.0924,2.1122,42.7073,41.2085,13.9568,13.2882,223.5583,219.8805,2.0082,3.1135,3.0646,1.1453,1.103,18.5802,20.6888,1.585,1.5627,3.0357,3.3609,5.7971,6.3167,4.4644,4.7191,0.08211,4.4402,1.9541,2.6376,0.37038,0.36204,4.2224,4.6228,3.8806,4.2509,1.7654,1.6058,10.6755,9.2691,3.1923,3.191,4.2568,4.0468,4.5913,4.2309,1.5659,1.4739,1.9731,1.874,3.8415,3.4666,6.5806,6.4178,1.9718,2.0025,5.8681,6.1578,11.5109,10.3478,7.5887,6.9489,2.2909,2.1863,4.6503,4.542,1.805,1.8075,18.5382,18.5906,4.9089,5.8761,3.6261,4.0128,1.1529,1.0314,2.6736,2.4672,7.3176,6.9862,14.8189,13.5824,2.5712,3.2332,4.0877,4.5702,3.7595,3.4289,1.5771,1.318,4.0011,4.4955,10.3858,9.9764,2.949,2.9537,2.5824,2.379,2.3196,2.5132,10.3561,11.871,2.3463,2.2573,2.2704,2.1117,12.7276,11.8217,1.9105,2.2746,1.1188,1.2287,14.5554,14.3946,5.6586,5.2693,8.1537,8.332,3.8563,3.1124,10.2362,10.2256,7.8384,7.1021,7.3208,6.8548,3.384,3.7107,1.8464,1.5044,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,278
+desd280,61,61,M,1.0829,1.7871,0.42259,0.45319,0.92814,0.9122,19.276,3.209,3.2484,47.2617,47.1271,15.6228,16.4775,216.4777,213.6136,0.96458,3.3499,3.1927,0.41045,0.40205,12.0578,13.301,1.5406,1.5725,4.0015,4.2053,7.4431,7.3593,4.8366,5.0056,0.07484,4.768,2.1884,2.7915,0.40196,0.40558,4.3311,4.8817,3.5838,3.6634,1.8186,1.5216,9.9073,8.9164,3.4883,3.1407,3.3643,3.3012,5.4766,4.9829,1.7335,1.8712,1.6794,1.7992,3.8209,3.8607,7.5272,7.3417,2.3816,2.2513,6.7307,6.8617,10.8778,11.3971,8.7503,7.7076,2.2809,2.4247,4.7897,4.9602,1.9747,1.8282,18.5718,18.15,5.2143,6.07,3.9652,4.276,1.1934,1.2654,2.7869,2.379,8.4599,7.0881,13.4412,14.6542,3.2577,3.65,4.453,4.6073,2.7456,2.9791,1.301,1.5149,3.8169,4.6272,10.1712,10.9152,3.0673,3.4163,1.9577,1.9937,2.0627,1.9596,9.7397,10.212,2.3484,2.5128,1.8343,2.0997,12.038,12.42,1.8111,1.6495,1.1517,1.1725,14.4163,13.7765,5.3775,5.5574,7.8592,8.1767,4.5361,3.6511,9.4148,10.4922,7.0391,7.1046,7.5165,7.1342,3.1005,3.8073,1.3691,1.3716,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,279
+desd281,68,68,M,1.7106,2.1094,0.32552,0.35956,0.79656,0.84055,17.8149,2.4292,2.3693,40.8155,40.919,15.5442,15.9507,221.7553,220.7889,1.4986,3.101,3.5761,0.72004,1.0156,13.7106,19.5313,1.531,1.5799,3.4495,3.471,6.5668,6.6519,4.4392,4.6501,0.07276,4.418,2.0943,2.4701,0.36239,0.3594,3.7514,4.3399,3.5168,3.9608,1.5403,1.37,8.7675,8.843,3.1602,3.1029,3.6154,3.9702,4.3213,4.671,1.4866,1.6001,1.8056,1.8754,3.3218,3.178,6.7114,6.5727,1.78,1.8384,6.2295,5.7929,10.5139,9.8194,7.2669,7.061,2.0749,2.1766,3.9765,4.0432,1.5471,1.5011,14.7771,15.3404,4.8392,6.1279,3.0127,3.5882,1.1405,1.0583,2.2511,2.2739,7.0396,5.8159,12.6923,12.8625,3.0945,2.9551,4.0312,3.9903,3.4017,3.2404,1.5225,1.391,3.8115,4.165,9.588,9.1172,2.516,2.6815,1.9382,2.016,1.9497,2.1503,10.4524,10.3747,2.1786,2.2905,1.8567,2.0972,12.9492,11.781,1.8207,1.9479,1.0228,1.0522,12.1339,11.8028,4.4572,4.7787,8.3553,8.4213,4.5245,3.6195,9.3816,10.3845,6.4709,6.982,6.8489,6.4808,3.5721,3.5194,1.4206,1.5102,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,280
+desd282,59,59,F,0.92769,1.5251,0.36371,0.40587,0.8218,0.90388,18.3676,2.8948,2.9707,44.9758,44.4757,15.0903,16.1998,241.6072,234.481,1.3199,3.5614,3.3742,0.72781,0.52345,11.539,14.2645,1.581,1.5442,3.8124,3.972,7.277,7.4816,4.9907,5.3791,0.0791,4.6172,2.2158,2.5881,0.38394,0.39248,4.2319,4.8562,4.0292,4.175,1.909,1.6648,9.8631,8.8709,3.3733,3.4592,3.8863,3.9784,4.7492,4.7242,1.6149,1.6788,2.0368,2.0205,3.7506,3.5507,7.3072,7.2071,2.2922,2.4793,7.2028,6.3827,10.9388,11.6942,7.7691,7.294,2.2809,2.2322,4.2543,4.5241,1.8856,1.8433,18.8893,19.8121,5.4728,5.9184,4.2661,4.623,0.97807,0.9325,2.3328,2.3415,7.8807,6.8789,13.3432,14.2988,3.3883,3.6268,4.2732,4.1536,3.5751,3.7512,1.3825,1.4118,3.9393,4.3011,11.55,10.8082,2.846,3.2234,2.2954,2.4427,2.206,2.6695,10.4643,11.6109,2.421,2.4598,1.8932,2.3397,13.467,12.9802,2.0578,2.1495,1.2573,1.318,15.0981,13.9844,5.4518,5.4277,7.6058,8.6181,4.285,3.7345,10.4039,11.6051,7.0181,7.4058,8.2445,8.0938,3.3019,3.8888,1.4593,1.5844,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,281
+desd283,73,73,M,1.7097,1.8801,0.35138,0.37516,0.7993,0.75558,16.1879,2.4689,2.3891,41.5171,40.9443,13.0437,14.4498,212.4621,206.1572,1.7585,3.143,2.822,0.81809,0.66825,19.8907,17.1651,1.5633,1.5094,3.3506,3.2036,6.6585,6.9259,4.5083,4.7797,0.07654,4.447,2.0725,2.5286,0.3603,0.35723,4.1867,4.7587,4.0238,4.2081,1.7905,1.5847,9.5333,7.8532,3.4823,3.1543,3.6818,4.1343,4.6025,4.5617,1.5659,1.485,2.0899,1.9378,3.6334,3.3493,6.6504,6.4074,1.9583,1.9946,6.4052,5.7793,11.0369,9.9259,7.5965,6.4974,2.2146,2.2979,4.6942,4.9916,1.6467,1.7003,18.4993,18.1078,5.2188,5.8084,3.7841,3.7608,1.1529,0.9933,2.8894,2.5666,7.7634,6.7513,13.3822,11.7806,2.959,3.2256,4.0312,3.9573,4.1054,3.0311,1.5949,1.318,3.9427,4.2633,9.6993,9.759,2.6897,2.8665,2.1379,2.2715,1.8115,2.1338,7.6773,9.2961,2.1961,2.4872,2.1575,2.3099,11.9313,11.7583,1.7676,1.7077,1.2499,1.2912,13.2802,13.7731,5.0514,4.9431,7.5826,7.9271,4.6594,3.6985,9.0019,10.2826,7.4092,6.6392,7.7156,7.0749,4.3022,3.6062,1.3875,1.5657,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,282
+desd284,68,68,M,1.9094,2.6021,0.39919,0.41321,0.90347,0.87128,18.3788,3.3179,2.9888,49.0386,50.5032,16.6983,16.7592,251.8469,247.8442,1.2255,3.4728,3.3067,0.53831,0.51445,12.814,18.2943,1.6981,1.6611,3.761,3.6271,6.8297,7.349,4.7557,5.0076,0.0778,5.3326,2.4335,2.6358,0.37417,0.37781,3.8217,4.8056,3.5163,3.7078,1.8425,1.5388,9.9073,8.7777,3.8968,3.8477,3.4866,3.5014,5.7872,5.5077,1.7155,1.7317,1.7829,1.7992,3.7271,3.5467,7.9381,7.4944,2.2056,2.2327,6.6404,6.5227,11.9333,11.8025,8.7067,8.008,2.2805,2.5026,4.6016,4.7795,1.8458,1.8702,18.9174,19.457,4.7661,6.1555,3.77,4.2172,1.0557,1.0539,2.6133,2.5482,8.4067,7.0344,14.489,13.859,3.0377,4.1036,4.4684,4.6941,3.4063,2.8947,1.4047,1.4691,3.9916,4.2252,11.1316,10.8777,2.904,3.3107,1.9027,2.1265,1.9541,2.3464,7.9696,9.5345,2.4033,2.6048,1.7949,2.1262,11.8631,11.9992,1.724,1.7895,1.1089,1.1887,14.6592,14.8471,5.8279,5.7578,8.3,9.3659,4.0864,3.2927,10.0453,10.954,8.3095,7.5473,8.5351,8.3974,3.3019,3.6503,1.2285,1.3603,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,283
+desd285,,,M,2.0909,1.8234,0.35086,0.39595,0.84773,0.75988,15.4489,2.6115,2.354,37.5752,39.0933,11.4186,12.8773,155.8267,148.1433,2.2209,3.2315,2.8535,0.96117,0.86062,20.4639,24.447,1.3283,1.3088,3.0508,3.1734,5.5835,5.6857,4.2099,4.3714,0.06704,3.5022,2.0307,2.1231,0.38326,0.37687,4.672,5.2078,4.2416,4.3837,1.8262,1.492,11.4273,10.0351,2.6629,2.676,4.3249,4.3391,4.6672,4.4212,1.6222,1.4874,2.2748,2.0503,4.3521,3.8368,7.125,6.9016,2.2015,2.1961,6.4673,5.9617,11.8917,10.6593,6.8636,6.6743,2.3834,2.2343,4.8273,5.1096,1.8679,1.8729,20.8614,20.2197,4.9104,6.3498,3.9778,4.0204,1.1694,1.1983,2.5994,3.0079,8.3148,7.5175,13.8965,12.7972,2.7658,3.1849,3.6596,3.9485,4.0166,3.6735,1.6218,1.387,4.295,4.4619,10.263,9.9042,2.8667,2.9862,2.7409,2.6301,2.1122,2.3713,10.9379,11.7193,2.2067,2.3144,2.3842,2.3484,12.0314,11.3711,2.052,1.8785,1.1747,1.2057,14.7744,15.124,5.7812,5.9494,8.0531,8.8943,4.1829,3.3894,10.9218,9.5733,7.2129,6.9533,8.2434,8.1256,4.0663,3.9953,1.4877,1.7118,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,284
+desd286,79,79,F,1.698,2.1247,0.23863,0.27429,0.52829,0.51612,17.4546,2.0018,2.0219,47.2334,46.6155,15.3667,16.1998,196.9166,196.9209,1.3648,1.1821,1.3047,0.91186,0.9965,16.123,29.3432,1.5111,1.4886,2.877,2.8063,5.9048,6.4873,4.4339,4.6758,0.08504,5.1619,2.231,2.893,0.2665,0.29135,3.3465,3.5615,2.9729,3.3815,1.2644,1.1268,8.1557,7.5543,2.7469,2.0323,3.4983,3.3895,4.2835,3.7566,1.0263,0.91296,1.547,1.5965,3.1704,2.7854,4.8245,5.323,1.4756,1.6585,5.1508,4.9819,6.7824,8.0032,7.017,6.1704,1.6042,1.9252,3.8935,3.7145,1.2819,1.294,14.0834,13.927,4.0748,4.4411,2.8623,2.9874,0.95104,0.90098,2.313,2.1757,6.112,5.3896,8.3232,9.3037,2.188,2.7125,3.4823,3.5905,2.3161,2.6453,1.1581,1.2007,3.2198,3.7408,8.7928,9.2035,2.4062,2.5425,2.0597,2.082,1.7678,2.0528,8.5484,8.6872,1.8475,1.9458,1.9361,1.9482,10.0125,9.5847,1.3738,1.5256,0.96674,0.97308,10.046,11.351,4.3057,4.1638,5.4316,6.9437,3.5277,2.717,7.1767,8.1941,4.6116,5.2566,5.2322,4.7509,2.4577,2.8697,1.2877,0.31108,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,285
+desd287,60,60,F,1.6007,1.6665,0.36462,0.41872,0.79012,0.80224,15.3848,2.6323,2.7349,44.4358,44.1275,12.6874,12.8583,197.2012,194.5846,1.8529,2.9637,3.0646,1.6576,0.9679,31.295,33.0922,1.4408,1.4044,3.339,3.3873,6.376,6.6061,4.2099,4.4563,0.08197,4.7659,2.2166,2.4507,0.37411,0.36187,4.6665,4.6875,3.8432,4.0682,1.7616,1.5125,9.078,8.7033,3.2654,2.9169,4.0572,4.2725,4.7579,3.9091,1.555,1.446,1.9638,1.924,3.5851,3.4439,6.6772,6.7015,1.8046,1.8571,7.3851,6.2704,10.3745,9.8961,7.3151,7.0737,2.2909,2.3268,3.9591,4.1845,1.6876,1.6954,18.9184,19.0436,5.5567,6.1169,3.4573,3.6918,0.87342,1.0127,2.3321,2.3079,7.3249,6.6387,14.5233,13.4424,3.329,3.8769,3.9168,4.0348,2.8621,2.9963,1.6176,1.4114,3.5604,4.0922,10.2546,10.1246,2.764,3.3079,2.2838,2.4505,1.8993,2.3261,9.5891,10.1888,2.2897,2.3887,1.7647,2.0115,12.707,11.8385,1.6188,1.9809,1.2151,1.2125,13.9154,13.8629,5.0937,5.1072,7.3399,8.907,4.7781,3.9651,9.7965,10.1228,7.1283,7.395,7.9132,7.2595,3.4253,3.6177,1.3764,1.3711,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,286
+desd288,82,82,F,1.1324,1.6201,0.34299,0.34514,0.72047,0.66949,17.0656,2.5342,2.4888,42.54,43.4035,13.6618,13.9885,177.9895,169.8775,1.0812,2.9698,2.8594,0.76116,0.52345,10.9034,10.6779,1.3784,1.4396,2.8663,2.9232,5.7143,5.913,4.3567,4.5977,0.07952,4.0219,2.0322,2.2817,0.34941,0.36975,3.6238,4.1357,3.3686,3.4235,1.6751,1.2721,8.6911,7.7611,2.4957,2.6644,4.013,3.771,4.0856,3.88,1.4942,1.256,1.8056,1.6942,3.3536,3.3072,6.7847,5.9039,1.7364,1.977,6.1881,5.6959,9.6295,9.0952,6.9399,6.0476,2.1604,1.9667,4.4706,4.8038,1.5936,1.5917,20.6697,20.9488,4.5508,5.7948,3.449,3.6528,1.0838,1.1074,2.6174,2.5883,6.8601,6.2902,11.4578,11.6121,2.6173,3.0863,3.5804,3.5905,3.3793,3.4832,1.3858,1.4357,3.6395,3.7834,8.6625,9.2699,2.7173,2.8473,2.0359,2.0096,2.2397,2.4953,10.3534,10.8728,2.0952,2.1021,1.928,1.9312,12.0085,12.0531,1.7494,1.7615,1.0766,1.1234,13.6789,13.2355,4.8591,4.6124,7.2411,7.8364,4.204,3.3708,8.1985,10.2199,6.1258,6.8865,6.6466,6.197,3.591,3.9377,1.3876,1.3082,,28,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,287
+desd289,71,71,F,1.3691,1.7805,0.27858,0.31534,0.66322,0.64418,14.5013,2.3106,2.3365,40.7918,41.8891,11.9078,12.1483,165.8618,166.7693,1.0877,2.6811,2.5321,0.79701,0.80996,14.4921,17.155,1.2984,1.3372,2.8808,3.1734,5.3608,6.2038,3.9009,4.0614,0.07392,4.1908,2.0853,2.2142,0.32352,0.31563,3.4942,3.6683,3.3055,3.5139,1.3535,1.1709,8.9382,7.5739,2.7214,2.5598,3.2736,3.2403,4.3805,3.6086,1.3686,1.3591,1.5223,1.5681,3.266,2.8818,6.0282,5.4036,1.6284,1.6491,4.5203,5.2621,9.0157,8.829,7.017,6.0476,1.8869,1.9873,3.881,3.452,1.2819,1.3178,13.9244,14.4447,3.2197,4.7701,2.8635,3.1944,0.77061,0.91269,2.0719,2.0004,6.1492,5.3951,11.8959,11.5039,2.1773,2.4495,3.6394,3.6689,3.1041,2.6854,1.3296,1.1482,2.9716,3.5591,9.4578,8.7884,2.5732,2.8864,2.1241,1.9278,2.0846,1.6112,9.2561,9.5542,2.0583,1.9514,1.8371,1.9736,10.075,10.6331,1.7643,1.685,0.93261,0.96288,11.829,11.5294,3.9776,3.9575,6.7096,7.7045,3.3486,3.3862,7.8982,8.2836,6.605,6.3194,6.9277,6.0729,2.9747,3.0846,1.2277,1.4395,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,288
+desd290,,,M,2.1427,2.2088,0.3203,0.35398,0.66088,0.59288,15.9729,2.5083,2.4381,36.3493,37.8398,12.6773,12.4571,214.38,210.9608,2.3852,2.8479,2.5816,1.0608,1.0467,31.9599,35.2975,1.5338,1.4785,3.2657,3.2508,6.1889,6.46,4.6084,4.8599,0.07302,4.1296,1.8688,1.9277,0.32918,0.33722,3.672,4.2821,3.7142,3.7338,1.6327,1.3598,10.3634,8.7738,2.6728,2.4377,3.7165,3.4424,3.525,3.1617,1.2883,1.1974,1.7721,1.8386,3.6528,2.9085,6.1785,5.9511,1.756,1.8851,5.3353,5.2449,9.5523,8.9927,6.8636,5.4669,1.9995,1.9518,4.0647,3.8008,1.6149,1.751,15.2511,14.8729,4.3234,4.831,3.3093,3.7779,1.0862,1.0691,2.3706,2.7089,7.1542,5.8331,10.9933,11.6384,2.1446,2.9097,3.4874,3.5603,3.0877,3.234,1.3766,1.1918,3.2502,3.5265,9.4155,8.6526,2.5458,2.7176,1.9922,2.0617,1.8017,2.3287,9.0085,9.4049,1.8493,2.0846,1.8307,2.0895,11.1104,12.1035,1.7405,1.9996,0.99631,0.99226,14.3595,14.3737,4.612,4.3968,7.384,8.3635,3.043,2.71,9.2928,10.2199,5.7197,6.0861,6.9312,6.576,3.0989,2.9068,1.166,1.4037,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,289
+desd291,76,76,M,2.1555,2.0586,0.26593,0.29104,0.92367,0.89547,14.4951,2.1816,2.2676,32.5484,30.9771,11.3372,11.2483,151.1903,145.7123,2.1398,3.5536,3.4216,1.0796,1.2229,25.6969,31.4738,1.2695,1.2098,3.3326,3.2448,5.5596,5.5339,3.8767,4.0842,0.06895,3.6364,1.6058,1.8897,0.36629,0.33122,4.1811,4.7909,4.1966,4.5698,1.7569,1.5351,9.322,9.3047,2.8002,2.7682,3.9039,3.9929,4.2675,3.7368,1.7916,1.654,1.8305,1.8734,3.5851,3.4748,7.7827,7.6829,1.8319,2.012,6.7062,6.9697,11.6861,11.0853,7.2789,6.8854,2.3243,2.4051,4.4958,4.6036,1.8686,1.7966,17.4824,19.0194,5.5586,5.956,3.5876,3.9386,1.1108,1.2778,2.3443,2.8206,7.5522,6.6172,14.1004,13.2606,3.2372,3.7212,4.0513,3.8858,3.1999,3.0305,1.6007,1.559,4.2239,4.6253,10.2987,10.822,3.1078,3.4223,2.3053,2.3155,2.1558,2.2527,10.4786,10.1111,2.3339,2.5171,1.8971,2.0631,13.1141,13.3822,1.6382,1.9846,1.0787,1.1747,12.1339,14.3766,6.0924,5.811,8.0252,9.3872,4.363,3.3562,8.7725,11.5286,6.8531,7.0721,8.6274,8.1057,3.3044,3.4175,1.5081,1.5033,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,290
+desd292,70,70,M,1.1133,2.1211,0.3977,0.45523,0.83316,0.79891,18.6779,2.4205,2.609,48.8941,47.9713,15.2305,15.384,241.6072,232.4718,1.2048,3.5614,3.3001,0.51198,0.5124,8.3477,11.0313,1.6653,1.6886,4.0851,4.1583,7.8667,8.2819,4.8413,4.9866,0.07484,4.9901,2.2373,2.693,0.40044,0.40503,3.9506,4.5045,3.7652,3.9264,2.048,1.6583,10.7409,9.2936,3.2255,3.342,3.8663,3.9223,4.2223,4.6278,1.6164,1.4953,1.8491,1.8637,3.7899,3.5127,7.2433,7.5253,2.2531,2.2985,6.3439,6.1703,11.7404,11.7663,8.2483,7.7312,2.6877,2.6274,4.8619,5.2523,1.8294,1.8758,19.2383,19.0645,5.6833,5.8435,4.2661,4.6011,1.0728,1.0871,2.8028,2.7168,7.5136,6.833,13.523,13.9313,2.959,3.1364,4.213,4.3338,3.4744,3.5953,1.9195,1.5343,3.6745,3.9841,9.785,9.845,3.0451,3.1213,2.236,2.232,2.2214,2.3303,10.5419,10.9396,2.6135,2.6018,2.138,2.3425,12.3454,13.1306,1.7615,1.7895,1.3468,1.4052,14.6171,14.8102,5.1829,5.5021,8.2998,8.6658,4.1368,3.6288,9.275,9.4013,7.6034,7.1216,7.5284,7.42,3.5851,3.753,1.6638,1.4363,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,291
+desd293,75,75,M,2.508,2.5434,0.3469,0.36831,0.76392,0.80505,18.8058,2.828,2.5513,44.8174,45.253,13.2285,13.625,200.7114,193.8382,2.0844,3.2181,3.0823,1.3791,1.0578,31.5536,28.4876,1.3987,1.4462,3.3925,3.3951,6.1098,6.1968,4.7695,4.9747,0.08434,4.8811,2.2072,2.5587,0.35653,0.37411,3.9387,4.4643,4.1658,3.8636,1.4529,1.3079,9.1593,7.9713,3.2858,3.3618,3.4921,3.7912,4.4276,3.9855,1.5582,1.4929,2.0643,2.0207,3.3744,3.4177,6.9415,7.0253,1.681,1.7072,6.4061,5.6658,10.3745,10.3088,8.0981,7.1042,1.9783,2.117,4.6895,4.5042,1.6694,1.6692,16.7945,18.0128,4.9671,5.7343,3.2723,3.1832,1.0974,1.0315,2.6174,2.549,7.2313,7.4178,13.5206,12.722,2.7949,3.03,3.8945,4.0192,3.4637,3.2415,1.3406,1.3629,4.0349,4.503,10.1621,11.088,2.9241,3.4943,2.3147,2.4487,1.9166,2.4379,9.6623,10.1888,1.8947,2.3874,2.0861,2.5504,10.3122,10.2988,1.6388,2.002,1.1656,1.1554,12.0196,13.9965,4.8385,4.8888,7.4095,8.3409,3.7534,3.1602,9.3013,9.0908,7.546,7.5846,7.7021,7.062,3.2904,3.8118,1.3402,1.7581,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,292
+desd294,,,M,1.535,2.3519,0.32695,0.34666,0.88578,0.83393,20.2468,2.4292,2.4242,52.1853,51.6413,18.8412,19.2974,254.6872,252.0335,1.2541,3.2742,3.0188,0.76519,0.83932,10.5676,12.0729,1.7198,1.7203,3.4955,3.6592,7.122,7.7973,5.4789,5.7108,0.07497,4.551,2.2014,2.7349,0.33859,0.36657,4.1037,4.5078,3.8248,3.7848,1.4738,1.3855,8.8693,7.1824,3.6393,3.0632,3.4588,3.7564,5.1205,4.8713,1.8121,1.7548,1.6044,1.6997,3.5829,2.9085,7.7073,6.8406,1.8119,1.8568,6.4583,5.801,11.9333,11.6521,7.2141,6.6054,2.1833,2.2603,4.6419,4.6375,1.6049,1.6885,17.3679,18.131,4.6431,6.0224,3.4976,3.6084,0.7652,1.0378,2.1498,2.4751,6.9914,6.5047,14.54,14.0082,2.959,3.3899,4.3247,4.1283,3.2949,3.1578,1.5133,1.3584,3.8449,4.0416,10.6316,9.5412,3.2685,3.3091,2.0263,2.0073,2.2022,2.5469,9.2869,10.4337,2.2365,2.3925,1.737,1.8628,11.2005,11.3711,1.9236,2.3175,1.2068,1.3692,14.4123,14.2595,4.9428,4.6124,7.1374,7.7894,3.8405,3.151,10.1534,9.7265,7.5898,7.4943,7.785,8.5218,3.6204,3.4013,1.3691,1.4266,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,293
+desd295,73,73,M,1.7097,1.8801,0.3806,0.47086,0.69111,0.70871,19.6163,3.1379,3.1743,50.8783,50.9913,16.3949,16.4934,260.5051,255.3596,1.6773,3.0192,2.5632,1.0569,1.7229,24.6727,30.4423,1.9924,2.3875,4.1266,4.2102,7.7554,7.8547,4.9581,5.3393,0.08878,5.197,2.3638,2.9766,0.424,0.4197,4.3045,4.911,4.578,4.5085,1.7931,1.4355,11.0488,9.3894,3.7988,3.7189,4.3265,4.3491,4.8477,4.4191,1.4105,1.3508,2.0886,2.132,3.7029,3.4425,7.0512,7.1017,2.2534,2.2327,6.408,5.5669,11.4592,11.1838,9.1059,7.9709,2.3413,2.1445,5.035,5.1096,2.0997,2.0628,19.4266,21.7198,5.4499,5.7717,3.9207,3.858,1.3035,1.3013,2.906,2.9101,8.7348,7.5252,13.5649,13.9609,3.084,3.921,4.6118,4.8401,3.4287,3.5285,1.8193,1.4428,4.0853,4.9609,11.757,11.0804,2.7173,2.9882,2.4649,2.4628,2.7315,2.6107,11.3137,13.0931,2.7181,2.3966,2.1353,2.3318,14.0005,13.344,1.9137,2.1184,1.3218,1.4188,17.274,15.2984,5.7727,5.2693,8.7147,9.3659,4.142,3.6653,9.6541,9.647,7.0378,6.9201,7.4883,6.8548,3.9384,3.787,1.5917,1.5567,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,294
+desd296,72,72,M,1.1722,1.6201,0.40752,0.44488,0.96308,0.99176,17.1183,3.1158,3.1553,48.5734,48.3369,13.6618,13.739,204.7483,201.4517,1.1215,3.5258,3.3065,0.62167,0.61212,11.9217,13.9922,1.4334,1.4402,3.4455,3.5921,7.4431,7.0505,4.4045,4.7452,0.0773,4.3414,2.2693,2.6622,0.37923,0.37258,3.8191,4.6754,3.5875,3.9013,1.7461,1.6648,8.8027,8.015,2.9744,2.7421,3.6724,3.9223,4.4789,3.8832,1.8764,1.8671,1.6328,1.841,3.3431,3.2323,7.7827,7.111,2.0011,2.0292,6.4312,5.9785,11.8036,10.8767,7.9171,6.7187,2.2787,2.3998,4.87,4.757,1.7524,1.7127,17.934,16.4015,5.1801,5.7175,3.9181,4.2291,0.98736,0.97539,2.3465,2.3561,8.1367,6.256,14.027,12.6961,2.6801,2.8618,4.4497,4.1709,2.7727,2.8893,1.3382,1.4844,3.9393,4.0665,9.6993,10.0684,3.1033,3.262,2.2847,2.2288,2.2511,2.538,8.8582,10.5872,2.4919,2.545,1.9772,2.1959,12.156,11.9346,1.9224,2.0007,1.1538,1.1954,13.9392,15.2206,4.9986,4.6472,7.6135,7.9887,3.9854,3.1461,8.9724,9.647,7.9658,7.8152,8.5438,8.1007,2.7457,3.7475,1.5549,1.6424,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,295
+desd297,69,69,F,1.4432,2.6631,0.34514,0.38521,0.8503,0.83393,18.2485,2.828,2.6816,46.1595,44.3359,15.0817,15.8275,231.8648,230.6618,1.3132,3.4466,3.3502,0.6528,0.66511,10.5676,12.0729,1.6676,1.6544,3.2112,3.3731,7.2232,7.2998,4.8547,5.0355,0.07497,4.7526,1.9311,2.4738,0.34941,0.35235,3.9068,4.3446,3.4688,3.5727,1.7143,1.5756,9.8865,8.7428,3.1614,3.0693,3.4921,3.5026,4.1616,4.277,1.6416,1.6533,1.7386,1.7992,3.1709,3.0811,7.4447,7.3659,1.9111,1.9581,6.628,6.0817,11.4184,11.208,8.2312,7.6911,2.2095,2.3184,4.5274,4.6398,1.7375,1.711,17.4425,17.7781,4.9111,5.6435,3.8077,4.002,1.1335,0.99431,2.6567,2.4369,7.7055,6.6575,13.0986,13.9397,2.9668,2.8953,4.4969,4.61,2.9058,3.2478,1.4622,1.349,4.6508,5.0762,12.6814,11.478,2.8052,3.0174,1.857,1.9054,2.2098,2.4953,8.2134,9.7252,2.1903,2.4663,1.697,2.0287,11.7388,11.2645,2.2771,2.462,1.1141,1.1,13.7446,13.8267,4.886,5.5021,6.9161,9.2354,4.1368,3.6472,9.7843,10.1788,6.7324,7.2459,7.3909,7.3194,3.4382,3.5338,1.2779,1.6211,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,296
+desd298,79,79,F,1.7829,2.2666,0.28869,0.2958,0.64989,0.66117,14.5161,2.3944,2.4183,31.4445,30.9771,11.1152,9.2054,165.7529,163.5753,2.1946,2.9639,2.7257,1.3304,1.0868,24.0659,29.5189,1.2633,1.2221,3.2393,3.2669,5.6804,5.6857,3.7026,3.8378,0.06805,3.905,1.7419,1.7352,0.31619,0.3005,3.0547,3.0857,3.471,3.867,1.3738,1.2669,8.5819,7.3052,3.0485,2.9403,3.3183,3.0994,4.5105,3.7876,1.3279,1.3182,1.5223,1.4077,2.825,2.5766,6.8854,5.9755,1.6709,1.48,5.7367,4.9571,9.9931,9.1289,7.151,6.1704,1.9543,1.7342,3.8826,3.9006,1.3135,1.2859,14.2998,14.4447,4.6161,4.7761,3.2018,3.201,0.83979,0.9423,1.8683,1.863,6.2585,5.0512,11.8607,10.9923,2.4359,2.7584,3.4874,3.3195,2.7926,2.6453,1.2503,1.1813,3.2327,3.7098,8.9068,9.5354,2.6796,2.6956,2.0278,2.0828,2.3633,2.2859,9.4345,9.3536,1.9487,2.2089,1.7315,1.9808,11.0423,11.0321,1.9312,1.722,1.0715,1.1667,11.4221,10.2517,4.2906,4.1389,6.2754,7.8777,3.7279,2.9609,9.1786,10.0089,6.6551,6.6077,6.5751,5.9166,2.8801,2.2786,1.2779,1.4395,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,297
+desd299,72,72,F,1.2149,1.688,0.31039,0.32269,0.69047,0.67914,15.8248,2.3875,2.224,42.589,41.3001,11.6546,11.6878,184.6449,181.9258,1.4275,2.9717,2.7257,1.0092,0.94534,16.5462,21.4466,1.3497,1.3368,3.3698,3.1679,5.6575,6.1208,3.978,4.1256,0.06836,3.9879,2.0712,2.488,0.32412,0.34437,3.2007,3.5612,3.5491,3.6893,1.4324,1.2021,9.1675,7.5833,2.8281,2.8007,3.1416,3.0206,4.3805,3.8057,1.3537,1.3525,1.5568,1.5775,3.3157,3.2685,6.5448,5.9776,1.6315,1.6491,5.4517,5.1534,9.2611,9.4893,7.3228,6.8854,1.9296,1.9873,3.7048,4.0338,1.3142,1.3674,15.7992,16.7384,4.3477,4.6049,3.0863,3.2007,1.1405,0.95253,2.2511,2.1719,6.4407,5.8191,11.6879,10.7707,2.4852,2.5463,3.7109,3.5636,2.9772,2.4669,1.4053,1.1974,3.2841,3.6396,9.4355,9.3243,2.5203,2.5695,1.8315,1.9054,1.6664,1.5521,9.0756,9.8007,2.0628,2.2377,1.6319,1.9091,10.0863,10.8212,1.5058,1.4938,0.98978,1.0109,12.6635,12.5322,4.577,4.4677,6.903,7.9444,3.5277,2.5859,9.7252,11.3991,6.3678,6.0762,6.8304,6.4223,3.2797,3.1176,1.2667,1.1738,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,298
+desd300,74,74,M,1.9976,2.5409,0.37592,0.39586,0.84848,0.85732,20.1977,3.263,2.9093,49.9101,50.1737,19.6819,20.1605,284.4215,281.4037,1.9368,3.3649,3.2768,1.2095,1.0131,21.4729,19.1291,1.6471,1.6516,3.6873,3.4106,6.6604,6.686,5.2238,5.4181,0.08937,5.3954,2.5913,2.8688,0.40362,0.41953,4.7016,5.4798,4.5407,4.6844,1.9409,1.8502,10.5766,10.3589,3.5648,3.1602,4.6459,4.5057,5.0217,4.3846,1.6422,1.6892,1.9633,2.107,4.1102,3.5318,7.5756,7.1408,2.1558,2.2165,6.8318,7.3628,11.9333,11.7124,8.7859,7.6818,2.493,2.7365,5.082,5.2148,1.9062,1.9469,18.9174,21.7198,5.289,6.4813,4.0723,4.3668,1.0185,1.2571,2.501,2.9477,8.5647,8.2845,13.4955,13.5805,3.5247,4.132,4.7817,5.0193,3.8191,3.206,1.6807,1.6954,4.3882,4.5837,11.2044,11.0082,2.8835,3.2276,2.7409,2.5935,2.7526,2.8887,10.778,11.8374,2.5064,2.6057,2.2516,2.6651,11.9639,12.9803,2.5439,2.5416,1.1967,1.2461,16.0237,15.3991,6.0927,6.09,9.5879,9.2554,4.6761,3.5939,10.3507,11.8854,7.3794,7.2786,7.5206,8.883,3.9384,3.5559,1.699,2.0798,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,299
+desd301,78,78,F,2.0444,1.9478,0.32035,0.37285,0.73594,0.68479,17.1812,2.7039,2.5535,41.0361,40.8983,14.6937,14.9308,218.2553,213.0487,1.576,2.8752,2.6953,0.9213,0.79331,22.1398,20.5641,1.4824,1.4679,3.1153,3.3227,6.2423,6.641,4.1359,4.3168,0.07149,3.9657,1.9849,2.4347,0.33936,0.33672,4.0418,4.4726,3.4688,3.6281,1.7392,1.6704,10.8307,9.289,3.2835,3.0271,4.5358,3.949,4.7789,4.4484,1.4214,1.2756,1.9501,1.9795,3.6547,3.198,7.2795,7.5174,1.8574,1.9966,6.7827,6.1691,10.9587,11.1452,7.8612,7.1527,2.2388,2.4574,4.9065,5.2758,1.658,1.6784,17.3195,19.0194,6.0089,6.0522,3.449,3.5057,0.98736,0.88686,2.6087,2.346,6.9244,6.6371,14.0717,14.4684,2.6114,3.2759,4.3085,4.3191,3.8315,3.138,1.4436,1.6549,4.0614,4.4141,10.0915,10.4845,2.6235,2.7031,2.2631,2.3589,2.7442,2.5488,10.3889,11.1603,2.0726,2.2946,1.9298,2.2568,11.0016,10.8385,2.4477,2.2746,1.0551,1.0615,14.5183,13.9615,4.7941,5.1019,7.7676,8.8259,4.0282,3.1517,11.0128,9.9727,7.6657,6.709,7.5177,7.1663,3.4632,3.8793,1.5011,1.7457,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,300
+desd302,85,85,F,1.772,2.1243,0.24275,0.28135,0.5909,0.60177,14.6471,1.7629,2.2189,41.9003,39.997,12.0467,12.1339,167.5756,166.7693,2.1695,2.4152,1.3047,1.0796,1.5123,24.0659,35.4663,1.3894,1.4048,2.6432,2.7921,5.5578,5.8612,3.8112,3.9915,0.08239,4.3959,2.1362,2.1701,0.27894,0.28347,3.415,3.8584,3.3216,3.5351,1.4276,1.2255,8.1557,7.0338,2.5231,2.0798,3.2202,3.1584,3.5413,3.1217,1.2126,1.183,1.572,1.401,2.8054,2.5791,4.8245,5.3721,1.5062,1.5814,5.3459,4.7346,7.2375,9.5018,7.0919,6.233,1.8498,1.7863,3.7044,3.7073,1.3077,1.294,13.6102,13.8636,4.6078,4.7761,3.0235,3.1743,0.99108,0.95253,2.1614,1.863,5.7964,5.0512,9.6374,10.4941,2.5157,2.5104,3.4874,3.6291,2.6327,2.5532,1.2154,1.2223,3.4873,3.7434,8.1223,8.4152,2.4834,2.5224,2.01,1.9134,1.902,1.6071,7.9816,9.713,2.0583,1.9178,1.8903,2.0836,9.3404,10.6186,1.4596,1.6225,0.98978,0.87415,11.9794,11.1137,3.9776,3.7976,5.4734,6.5211,3.7049,3.0278,8.1262,8.3686,6.4699,5.7493,6.2694,6.0238,2.5062,2.7339,1.369,1.2955,,13,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,301
+desd303,68,68,F,0.63477,1.6016,0.42851,0.46989,0.81082,0.71904,17.5411,3.2281,2.9434,44.9758,43.6805,14.3962,15.1085,235.8337,237.6217,0.85913,3.5614,3.0874,0.38198,0.33279,4.9304,3.8601,1.7723,1.8143,3.7745,3.7971,7.3168,7.521,4.6039,4.8657,0.08194,4.4594,2.2798,2.4202,0.37164,0.37595,3.7686,4.237,4.1578,4.2191,1.7043,1.5729,10.4836,10.4475,3.4125,3.6314,3.5289,3.6665,4.9485,4.7218,1.6064,1.36,1.8778,1.8297,3.4137,3.4446,7.2356,7.0565,1.8764,1.9945,6.3455,5.9517,11.7478,11.1838,8.4337,7.7043,2.1066,2.3807,4.5022,4.5385,1.6397,1.6073,17.9356,18.5287,5.2515,5.1925,3.4874,3.6918,0.92792,1.0092,2.486,2.4369,7.2827,6.583,14.6369,15.1973,3.3381,4.1036,4.6824,4.7166,3.3505,2.9118,1.4257,1.4613,4.1739,4.4726,11.011,10.8082,2.9139,3.0225,2.2716,2.2211,2.0941,2.3918,10.5483,11.3873,2.2909,2.3548,2.1036,2.3694,12.0262,12.0505,1.9632,2.1074,1.0058,1.0199,16.326,13.9844,5.0504,4.9526,8.8186,10.3903,3.9609,3.287,10.2362,11.138,8.049,7.6602,7.358,6.8548,3.3051,3.8601,1.4543,1.6822,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,302
+desd304,,,F,0.92151,1.6951,0.34892,0.42314,0.78518,0.80224,15.3697,2.8389,2.9263,38.3685,33.5396,12.6382,12.7019,206.2201,206.9141,1.3199,3.0233,2.6776,0.39685,0.27558,13.5037,14.9227,1.2104,1.1695,3.5597,3.6351,6.1316,6.4523,3.7026,3.8378,0.06704,4.4069,1.8736,2.0749,0.33588,0.34819,3.8308,4.0958,3.7171,3.6893,1.6267,1.4954,9.4689,7.0883,2.8737,3.1004,3.8267,3.8891,4.0345,4.3581,1.4866,1.4514,1.9731,1.8123,3.1757,3.1183,6.6665,6.6353,2.0352,2.1343,6.044,5.7158,10.3411,9.8925,6.8819,6.8705,2.1988,2.3,4.0546,4.2148,1.7021,1.618,17.5262,17.7766,5.347,4.7546,3.5988,3.7365,0.99077,0.9117,2.2721,2.2374,6.7355,6.163,12.6236,11.8988,2.9318,3.1354,3.512,4.0486,3.3518,3.1734,1.4504,1.349,3.3842,3.8426,8.5837,9.2029,2.6131,2.9354,2.1184,2.0161,2.16,2.3381,9.0473,9.7572,2.1059,2.1792,1.7315,1.8761,11.3061,11.9401,2.03,2.0129,1.1997,1.251,13.4697,13.5656,4.5228,5.1211,6.4613,8.4019,3.9499,2.9805,8.8691,10.0019,7.0912,6.6392,7.0603,6.9902,3.2585,3.5607,1.3288,1.4729,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,303
+desd305,,,F,1.3846,1.6251,0.40101,0.41591,0.70439,0.71849,17.1365,3.5155,3.5369,43.2544,43.4035,14.5272,15.0169,252.5968,250.5173,1.2497,2.8766,2.7905,0.52265,0.50392,12.8766,18.2943,1.6519,1.5677,3.8481,3.8252,6.39,6.9179,4.5527,4.7728,0.0765,4.3606,2.1257,2.4388,0.39142,0.37594,4.143,4.993,3.5908,4.0023,1.8904,1.492,10.0036,8.2307,2.6981,2.4464,3.9303,3.9924,4.5354,3.6445,1.4334,1.4181,1.895,2.0387,4.5967,3.6769,7.3078,6.9637,2.2015,2.4366,7.044,6.2964,11.1909,11.1512,7.1607,6.5239,2.2256,2.1445,5.1711,4.6702,2.029,1.984,20.9149,20.9488,5.1591,6.0122,3.9853,3.9073,1.1739,1.2417,2.7194,2.823,9.411,7.3094,13.8398,12.1207,3.2368,3.895,4.0136,4.1079,3.2124,3.2658,1.5207,1.4832,3.6731,3.8688,10.6316,10.6302,2.7173,2.9152,2.3727,2.2428,2.4729,2.5671,9.638,11.6623,2.4806,2.4377,2.1469,2.4102,13.2599,12.5687,2.1924,2.0007,1.1572,1.2818,14.9338,16.2906,5.6541,5.4839,8.3049,8.9517,4.3471,3.6446,10.3038,10.5645,8.4678,7.7066,7.4883,7.624,3.5716,4.0113,1.6639,1.6991,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,304
+desd306,69,69,F,1.5107,1.6665,0.38364,0.42715,0.82696,0.8298,16.2165,3.1379,3.0836,48.197,45.5465,13.5695,13.4048,222.5085,214.9522,1.6202,3.268,3.1275,0.86284,0.59173,16.018,17.5791,1.5304,1.5403,3.909,3.8361,6.7401,6.7992,4.3466,4.5983,0.06628,4.3414,2.2424,2.7285,0.37104,0.37195,3.6599,4.7194,3.928,4.0654,1.8044,1.5479,10.21,9.093,2.9077,2.883,3.9038,4.0305,4.608,4.24,1.6102,1.5399,1.7548,1.8616,3.5537,3.4007,7.1333,7.7366,2.083,2.0001,6.6099,6.3769,11.5585,10.6071,7.4618,7.1432,2.3421,2.3057,4.1164,4.6652,1.7698,1.7697,17.153,18.644,5.4842,6.0511,3.6362,3.9938,1.0214,1.0258,2.7321,2.7168,7.379,6.7189,14.3111,13.0863,3.2656,3.7622,3.823,4.1883,2.9058,3.2537,1.6253,1.3913,3.6314,3.9075,10.5986,10.701,2.7981,3.0905,2.2328,2.3589,1.8993,2.387,10.3188,11.9748,2.3582,2.4914,2.0833,2.2753,13.0528,13.1986,1.6691,1.9593,1.1956,1.2195,11.7635,13.483,4.8422,5.3068,8.1186,9.3659,4.755,4.1628,9.7527,10.1047,6.807,6.9201,7.2265,7.3164,3.5609,3.5219,1.3729,1.5694,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,305
+desd307,72,72,M,1.7662,2.0757,0.37023,0.41771,0.85597,0.844,17.3904,2.8077,2.6911,46.7921,47.0264,14.4502,15.3281,267.0388,268.7903,1.4449,3.3649,3.1466,0.68417,0.83269,13.6408,19.5313,1.7834,1.7673,3.7169,3.8839,7.2232,7.7356,4.6439,4.9142,0.07881,4.8524,2.1871,3.0262,0.35534,0.39472,3.7686,4.3799,4.0215,4.2618,2.0285,1.5926,9.8631,8.5316,3.6251,3.2287,4.3834,4.4532,5.0469,4.2253,1.7166,1.6079,2.0182,1.9523,4.3331,3.8872,7.3746,7.2873,1.9854,2.0546,5.5486,5.6019,10.8476,10.6668,8.059,6.9788,2.5657,2.4261,4.3864,4.5528,1.9296,1.8594,21.0876,22.2924,4.6014,5.6453,3.884,3.8823,1.0288,1.2571,2.4232,2.8353,7.7103,7.3574,14.6607,13.2978,2.6258,3.1367,4.0362,3.9033,3.6679,3.5135,1.6731,1.5283,3.7472,4.3145,10.1712,10.0906,3.144,3.2634,2.3357,2.4643,2.5237,2.6184,10.8522,11.6791,2.4833,2.6404,2.1916,2.6651,14.1133,15.7442,2.0355,1.8968,1.2756,1.2789,17.322,15.6758,5.5129,5.8171,8.4684,10.2499,4.0282,3.3885,9.2774,9.905,7.9211,7.4204,8.3154,7.755,3.9793,3.7874,1.5133,1.6291,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,306
+desd308,72,72,F,1.2149,1.2667,0.40112,0.41978,0.6968,0.70417,16.2031,2.6948,2.7349,38.9738,39.9015,12.7794,12.9974,219.7823,219.1379,1.5249,2.7141,2.4806,0.71919,0.83641,18.3746,14.3974,1.585,1.5497,3.5165,3.5921,6.4362,6.6977,4.5083,4.6997,0.08126,4.4376,1.6783,2.2808,0.35545,0.37595,3.9314,4.4443,3.7816,3.7848,1.7043,1.5373,9.2201,8.0967,3.3611,3.4506,3.7112,3.5278,4.3664,4.4701,1.381,1.467,1.6005,1.6707,3.3536,3.3089,6.6665,6.6353,1.9964,2.1695,5.4261,4.9306,10.4915,10.3628,7.4103,6.5829,2.1066,2.1914,4.3955,4.5033,1.7021,1.7052,16.1322,16.4381,4.2038,4.7026,3.8541,3.9634,0.76618,1.068,2.4737,2.4518,7.4045,6.823,12.4217,11.8988,2.5237,2.8267,3.9017,3.6074,2.9381,2.5608,1.4614,1.3463,3.4532,4.066,9.2661,10.0293,2.6493,2.8701,2.2136,2.2224,1.9492,2.1053,8.8464,10.0361,2.1568,2.3591,2.1469,2.1437,10.6894,11.2346,1.9533,2.1489,1.2428,1.2473,13.7655,13.4789,4.7568,4.5444,7.875,7.9679,3.3494,2.7703,10.1591,11.2121,7.4023,6.7973,7.7935,7.2509,3.3421,3.5983,1.492,1.467,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,307
+desd309,,,F,1.2046,1.9878,0.35988,0.39427,0.87013,0.86239,16.0278,2.9039,2.5005,43.8192,41.9724,12.8206,13.0099,209.5752,208.7993,1.0479,3.2688,3.0452,0.52059,0.55843,9.5205,13.8935,1.4437,1.4848,3.5074,3.6406,6.7328,6.9887,4.2492,4.5118,0.07534,4.2476,2.0895,2.3908,0.36306,0.37608,4.2456,4.3208,4.0353,4.2223,1.7043,1.4917,10.5402,8.65,2.7324,2.4886,4.185,4.4532,4.7671,3.8144,1.7055,1.6122,1.9493,2.0322,3.4031,3.1771,6.4639,6.6506,1.9686,2.1343,6.3722,6.031,11.5109,10.716,7.1372,6.6054,2.2825,2.2644,4.7228,4.8081,1.5995,1.6576,17.934,17.7781,4.7728,6.069,4.0233,3.9596,1.161,0.92558,2.8894,2.3498,7.5173,6.4951,13.7589,13.6104,2.7022,2.9439,3.7753,3.7823,3.1835,3.2799,1.5158,1.4242,3.9639,4.3719,11.1179,10.429,2.6696,2.832,2.0389,2.0921,2.3003,2.4359,9.2486,10.3821,2.3581,2.3906,1.8956,2.0216,11.3061,12.6192,2.1924,2.0185,1.122,1.1339,12.8794,13.1233,5.1473,5.0618,7.1919,8.8539,3.7939,2.7602,10.994,9.225,7.0665,6.6392,7.83,7.7727,3.5694,3.5219,1.5549,1.574,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,308
+desd310,78,78,M,2.2506,2.4877,0.36398,0.41604,0.84773,0.93165,17.3904,2.9475,2.8677,47.1015,46.8229,13.5663,13.784,186.3442,193.5193,1.9267,3.5737,3.1353,1.2206,1.0131,23.7819,21.5607,1.5003,1.4767,3.5463,3.8067,6.7219,6.9395,4.5974,4.7553,0.08896,4.7028,2.075,2.6622,0.42028,0.3954,4.4161,5.027,3.8483,4.1751,1.6703,1.4409,8.7883,8.6328,3.2764,3.4883,3.8788,4.0207,4.6626,4.6986,1.6126,1.741,2.0541,1.8261,3.4943,3.2519,7.6151,7.1775,2.0831,2.0713,6.9008,6.5861,12.309,12.039,8.0483,7.0595,2.1865,2.3409,4.8944,5.0112,1.7927,1.8793,19.6031,19.4226,4.6992,5.2485,3.7841,3.8039,1.1282,1.0283,2.4473,2.5911,8.0209,6.871,15.4421,14.8551,3.1322,2.9863,4.2286,4.3142,3.614,3.4729,1.5342,1.5059,4.0325,4.1715,9.9208,9.5475,2.9483,3.1717,2.5604,2.2582,1.9543,2.3681,9.0906,11.2548,2.3126,2.5092,2.2593,2.444,12.2499,11.8722,1.9026,1.9643,1.2933,1.2704,14.3506,14.9704,5.1579,4.9228,7.5605,9.1099,4.6594,3.4341,11.1253,9.6246,7.3433,7.6646,8.2629,8.4584,3.3345,3.9354,1.4701,1.4354,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,309
+desd311,74,74,M,2.6836,2.2419,0.49233,0.66196,0.97871,0.98178,19.8097,3.3837,3.0724,55.3105,54.6501,16.2343,16.2485,251.5132,252.8866,2.6887,4.0002,3.717,1.614,0.94835,27.4336,32.9243,1.7454,1.7506,4.3591,4.6387,6.9086,7.2413,5.4042,5.7108,0.10009,5.3382,2.5426,3.2572,0.47356,0.44193,4.8283,5.4071,4.7486,4.6396,1.9503,1.7921,11.5993,10.561,4.1079,3.6852,5.3782,5.2039,5.3855,5.6165,1.9382,1.993,2.4361,2.5455,4.7077,4.2203,8.5003,8.2372,2.199,2.3465,8.2424,7.8584,13.7261,13.1241,9.3264,8.0698,2.5126,2.7616,6.1433,7.119,2.1622,2.2084,23.1467,22.7106,5.4008,6.6668,4.4105,4.3599,1.3226,1.5159,2.822,3.2996,9.1432,8.0971,16.1744,15.5508,3.7683,4.253,5.1058,5.3126,3.9048,4.0353,1.8217,1.7511,4.4357,4.6666,11.9382,12.8934,3.4228,3.5296,2.602,2.9316,2.5551,2.8574,11.9788,13.4742,2.6451,2.7405,2.5971,2.7172,14.7043,16.7357,2.123,2.3435,1.4588,1.3904,17.7623,19.1718,6.2652,6.8019,9.6912,9.2919,5.0689,4.8233,10.9431,11.9308,9.4883,9.0984,8.6714,8.5546,4.3135,4.1858,1.6525,1.9292,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,310
+desd312,76,76,M,2.3907,2.3329,0.36748,0.37631,0.91709,0.93429,19.0873,2.7183,2.6985,50.1061,50.3468,15.8558,15.9721,218.3786,210.2855,2.0243,3.5952,3.1706,0.9969,1.2229,31.4798,35.4198,1.546,1.5431,3.1969,3.3512,6.0941,6.6066,4.6522,4.8287,0.07932,5.7295,2.5213,3.0942,0.40802,0.3906,4.3437,4.7927,4.2669,4.3726,1.8422,1.7701,10.0996,8.8765,3.4589,3.1602,4.0376,4.2908,5.4766,5.4245,1.7707,1.7889,2.1404,2.0336,3.6087,3.5761,7.3682,7.1972,2.1145,2.2221,6.6404,6.553,11.8917,11.0005,8.7859,8.3526,2.4405,2.5042,3.9635,4.4564,1.9846,2.0408,16.6491,19.2089,5.0577,5.8134,3.7824,4.4766,1.2338,1.2882,2.8666,3.182,8.3765,7.1,14.8914,13.2646,2.7967,3.4333,4.5124,4.5662,3.7968,3.6131,1.6501,1.5915,4.426,4.979,12.0596,11.6746,3.1953,3.3515,2.3728,2.5458,2.1933,2.5469,9.1008,10.5975,2.7401,2.6349,2.2269,2.4552,12.9067,12.2938,1.8163,1.9192,1.3445,1.5057,13.7849,13.9897,5.6763,5.4097,7.9431,9.5152,4.0754,3.1517,9.5405,9.0935,7.1278,7.5151,8.6274,7.9834,4.0428,4.2005,1.4672,1.5647,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,311
+desd313,63,63,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,312
+desd314,72,72,F,1.2149,1.688,0.45306,0.50415,0.92825,0.88654,18.9048,3.9326,3.6104,45.1156,48.2509,15.0445,15.6924,219.8286,222.3009,1.2419,3.6559,3.3788,0.50539,0.505,9.5783,10.6452,1.6559,1.668,4.2087,4.5059,7.6923,8.049,4.837,5.0959,0.07952,4.483,2.1973,2.8725,0.41983,0.42884,4.3045,4.8562,4.2808,4.3594,1.9295,1.8329,12.5747,9.9564,2.9026,2.8508,3.8081,4.3245,4.7671,4.5426,1.666,1.7333,2.1221,2.0503,3.6851,3.2088,7.6877,7.6505,2.207,2.4717,6.9214,6.7989,12.4007,11.7365,8.6739,7.0703,2.5593,2.7728,4.5501,4.9895,1.9531,2.0006,19.129,20.8052,5.3311,6.6482,4.4122,4.5659,1.2881,1.2561,2.9837,2.8198,8.135,7.1,16.6756,15.1053,2.8751,3.6473,4.7616,4.4089,3.7103,3.7879,1.6218,1.7352,3.9078,4.3599,10.7119,9.9819,3.144,3.4402,2.2716,2.3588,2.4618,2.544,10.0404,11.7189,2.7574,2.7405,2.1845,2.2468,13.6313,13.9885,2.0604,2.2269,1.3402,1.3974,15.887,14.8102,5.5008,5.8171,8.2718,10.1358,4.0972,3.8769,10.2496,10.1367,8.1435,7.7573,7.8127,8.105,4.3361,4.0317,1.5416,1.8215,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,313
+desd315,71,71,F,1.0581,1.8813,0.29497,0.34214,0.6762,0.67914,15.0725,2.5199,2.4381,42.589,42.4254,12.0475,12.1868,169.9447,162.6556,1.1536,2.7353,2.4742,0.49291,0.42583,10.0298,11.4231,1.1754,1.2234,3.0847,3.1931,5.7713,6.0178,3.6709,3.8378,0.07988,4.8972,2.2356,2.7071,0.32078,0.31393,3.4942,3.9099,3.3155,3.4545,1.5849,1.3405,7.3584,7.7214,2.8211,2.5867,2.9388,3.6058,4.3882,3.8183,1.2911,1.3277,1.6595,1.569,3.0455,3.23,6.3907,6.0792,1.7564,1.6965,5.6698,6.1186,10.4233,9.5955,6.9075,6.233,2.0251,1.9518,4.12,4.5127,1.4273,1.4819,16.2826,15.9371,4.6429,6.0297,3.2405,3.2221,1.0838,1.1074,2.6271,2.4751,6.5775,5.9402,12.5677,12.523,2.5782,3.1264,3.5804,3.4415,3.1353,2.5608,1.2794,1.2729,3.75,4.1238,9.763,9.3708,2.6218,2.6956,1.9343,2.0096,1.4645,1.8917,9.2137,11.135,2.14,2.1045,1.8192,2.004,11.0944,11.7325,1.6063,1.582,0.86423,1.0415,13.2357,13.5356,5.2668,4.9414,6.8191,7.8799,3.907,2.9174,8.6452,8.8138,6.2157,6.4315,6.5985,6.5726,3.2024,2.7278,1.1932,1.3028,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,314
+desd316,67,67,M,1.5343,2.2088,0.45089,0.48466,1.076,1.0289,19.511,3.5906,3.6729,58.2693,55.7769,16.1786,15.5489,284.0418,277.4785,1.7918,4.2465,3.8589,0.66879,0.56756,19.8907,24.3171,1.911,1.8031,4.5594,4.5662,6.9086,7.072,4.8321,4.9542,0.07859,4.8395,2.6033,3.1238,0.41955,0.43353,4.4445,5.2956,5.1362,4.4503,1.993,1.7786,11.2043,9.1982,3.1923,3.1932,4.6883,4.4564,4.7502,5.2218,2.0749,2.0359,2.4243,2.3081,4.1318,3.7187,8.6655,8.6021,2.2274,2.4546,8.2375,7.4495,13.3031,13.2035,8.6739,8.4522,2.5327,2.7616,5.134,5.7283,2.08,2.2084,21.4875,20.5391,5.7094,6.459,4.4177,4.5409,1.0667,1.3127,2.6667,2.7925,9.1432,8.048,16.4933,16.1211,3.2514,3.8068,5.1121,4.6758,4.157,3.6497,1.7328,1.7511,4.3882,4.8597,11.757,11.5563,3.1754,3.4725,2.3071,2.3709,2.6939,2.6774,12.0861,13.411,2.6904,2.9372,2.1073,2.5369,13.9001,13.257,2.2641,2.1005,1.305,1.2201,15.4497,15.9932,6.0927,6.09,8.3761,8.3587,4.0303,3.4122,11.646,12.0068,8.7417,7.7847,8.5754,8.4177,4.2107,4.3462,1.3967,1.7839,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,315
+desd317,85,85,F,1.4892,0.86416,0.03898,0.095,0.52829,0.50656,2.0826,0,0.00075,7.4207,17.5955,2.8026,8.7931,76.6563,79.2274,1.4577,2.4249,1.9484,0.70216,0.72958,13.6634,17.9963,0.80256,1.0678,0.79783,0.79482,5.4218,5.2142,3.6257,3.8961,0.07921,4.1864,0.30153,1.9396,0.28045,0.2706,0.00006,1.9898,0.9969,1.1702,0.00005,0.00046,7.3412,3.9193,2.6871,2.0798,0.01217,2.1042,3.7766,3.438,1.0283,1.0787,0.75116,0.00757,0,0,4.513,5.238,0.23156,0.76651,4.8365,4.3656,8.2175,7.7384,6.3605,6.1207,0.02731,0.06594,0,0.00012,0.16873,0.05335,0,0,4.149,4.6551,1.0424,2.0093,0.86368,0.90098,1.8727,1.779,0.00038,3.6668,11.1318,11.3505,2.0591,2.7388,2.8509,2.673,0.00048,0.00223,0.00987,0.05771,2.3859,3.1833,8.3606,6.5694,2.2618,2.4325,1.8084,1.9036,0,0.02077,0,8.1361,1.1899,2.0031,1.5795,1.4588,6.3496,0.00038,1.577,1.6225,0.81661,0.92855,0.00029,5.9188,0,0,1.1506,6.0253,3.241,2.7703,7.1767,7.8501,6.839,6.2822,7.0344,6.0729,0,0,1.1316,1.0864,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,316
+desd318,68,68,F,0.63477,1.2525,0.43242,0.49152,0.73258,0.72415,18.5757,2.9795,3.0593,43.8728,43.5792,14.3121,14.5162,252.5323,251.0024,1.399,2.914,2.5693,0.54312,0.4383,13.1004,15.1691,1.7416,1.7462,3.9642,3.7795,7.4277,7.6227,4.8547,5.2364,0.07254,4.7016,2.2993,2.584,0.3778,0.38373,3.494,4.1665,3.8644,4.3721,2.0067,1.6657,9.5148,7.6134,3.4265,3.6094,3.573,3.6637,4.2814,4.1815,1.4097,1.4728,1.7588,1.8169,4.1558,3.7492,6.3506,6.7281,2.2427,2.2471,5.7922,5.9517,9.3731,10.6215,7.7523,6.7187,2.4443,2.6051,4.574,4.6398,1.8408,1.927,18.8562,18.3019,4.634,5.2847,4.318,4.4564,1.0173,1.0964,2.3793,2.5356,7.7453,6.2442,10.9933,13.3923,2.3021,3.1687,4.1184,3.8106,3.0406,3.1416,1.4006,1.5388,3.6139,3.9295,9.1509,9.0072,2.672,2.9231,2.236,2.1061,2.1497,2.0249,10.4444,11.6057,2.4985,2.652,2.0158,1.9256,13.4823,12.6851,1.8306,1.7221,1.3268,1.3388,12.8557,12.9747,5.4532,5.078,7.4809,7.9897,3.8805,3.1956,10.1591,10.9917,6.5646,6.5064,7.5055,7.2509,3.3767,4.4614,1.3967,1.4045,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,317
+desd319,73,73,F,1.4763,2.6631,0.30529,0.26814,0.6762,0.68034,15.8248,2.7353,2.1002,44.2266,45.4069,14.3029,15.0376,196.2657,189.4892,1.5709,2.5942,2.4073,0.67891,0.70164,14.9221,18.4698,1.4291,1.4771,2.9175,2.9815,6.1149,6.3793,4.0058,4.2019,0.06403,4.8159,3.3807,2.4648,0.30474,0.32318,3.8583,4.2174,3.4726,3.7476,1.5062,1.3681,7.8428,7.9211,2.8962,2.6499,3.611,3.8246,4.1507,3.7902,1.2911,1.317,1.5785,1.6887,3.1919,2.8304,6.9003,6.0792,1.8216,1.8303,5.4434,4.9819,10.126,9.9434,6.3517,6.0849,1.9381,1.9148,4.203,4.1875,1.4698,1.4512,16.966,17.0576,4.3254,4.7415,3.4751,3.3068,0.82125,1.0087,1.8906,1.9728,7.0534,6.3812,11.7179,11.453,2.817,2.8417,3.5763,3.5905,2.8743,2.6684,1.2992,1.3043,3.4858,3.7437,8.6154,9.3891,2.5917,2.7176,1.9205,2.0758,1.8168,1.9735,8.5085,10.6662,1.9847,1.9831,1.6813,1.9119,11.4033,11.2192,1.5249,1.7051,1.1365,1.1565,12.8832,13.6217,4.8591,4.8915,5.9791,6.9437,3.508,2.7374,8.8583,8.4178,5.8814,5.6132,6.9438,6.042,3.1211,3.2472,1.2066,1.3481,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,318
+desd320,57,57,F,1.9503,2.3628,0.35333,0.37281,0.75449,0.68479,15.8861,3.0644,2.9981,44.0019,44.4978,13.6541,14.0383,210.9773,208.9042,1.7585,2.9777,2.5551,1.0608,0.81228,18.4747,20.8007,1.4408,1.3646,3.3088,3.2011,5.9114,6.4332,4.1089,4.3272,0.07564,4.3788,2.0161,2.6738,0.32261,0.31962,3.2435,3.9392,3.782,4.0768,1.5077,1.3397,9.2651,7.3997,3.0828,2.7925,3.7618,4.0233,4.429,3.9611,1.3995,1.3117,2.1614,1.9355,3.2431,3.0791,6.6455,6.6987,1.8387,1.7793,6.2151,5.9187,11.2782,9.8961,7.5827,6.7686,2.0158,2.0016,4.3231,4.3147,1.6135,1.5073,15.9353,16.2676,4.7022,4.2735,3.4751,3.4232,1.0944,1.016,2.2511,2.3819,6.4922,5.7178,13.6094,12.5967,2.8575,3.0963,4.0324,3.9945,3.4022,2.8977,1.4548,1.3618,3.9639,4.4955,10.1131,10.1935,2.6072,2.8,2.2052,2.2164,2.3256,2.5998,8.2392,10.6941,2.2331,2.3991,2.1024,2.2512,11.1343,12.8559,1.8124,1.9727,1.0685,1.0709,12.0196,11.6385,4.862,4.7219,7.3907,8.5425,3.8065,3.1602,10.1534,9.8389,6.8712,7.3543,6.9801,6.8305,3.3747,3.205,1.4878,1.6575,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,319
+desd321,74,74,M,1.8958,2.2178,0.33941,0.37204,0.90359,0.84092,18.505,2.6411,2.474,47.9786,48.8023,15.7042,15.9721,229.3533,224.0768,1.4746,3.721,3.5098,1.0633,0.86279,21.6185,24.8558,1.6076,1.565,3.2747,3.353,7.0223,7.4677,4.6023,4.8254,0.08029,4.6817,2.2475,2.893,0.4252,0.40369,4.6665,4.8817,4.3955,4.3879,1.8782,1.6461,10.9287,9.3932,3.6929,3.5173,3.7911,4.6321,5.4773,4.7596,1.7881,1.6055,2.0381,1.918,3.869,3.6687,8.1022,7.8013,2.1533,2.1027,7.1179,6.7305,12.0911,11.8957,8.8442,7.7195,2.297,2.5254,4.4938,4.715,1.862,1.9,18.7096,19.3901,5.31,7.2955,4.2925,4.748,1.4007,1.2911,3.3463,3.0378,8.1859,7.0379,15.1456,15.5946,2.6114,3.2935,4.7305,4.4217,3.9426,3.353,1.6023,1.4772,4.4516,4.5149,11.5674,10.8436,3.0328,3.3782,2.2818,2.3024,1.806,2.1463,10.4786,12.5857,2.1795,2.6743,2.138,2.2909,13.1865,13.433,1.7788,1.9207,1.3419,1.5057,15.9411,16.0232,6.8058,6.0863,8.3097,8.1149,5.0079,3.433,10.0633,11.1999,7.0267,7.4313,8.1907,7.8021,3.9979,4.2005,1.3964,1.5216,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,320
+desd322,69,69,F,1.1649,2.0062,0.42838,0.48445,0.8884,0.8969,17.1079,3.6893,3.5048,48.5734,47.9713,14.4586,14.4933,232.0406,225.7956,1.3068,3.619,3.3827,0.38128,0.36448,10.9352,13.6102,1.4582,1.5027,3.6951,3.8576,7.4221,7.4687,4.4563,4.6501,0.0721,4.3786,2.2981,2.5852,0.41983,0.41206,4.8806,5.078,4.2613,4.5297,2.0206,1.9626,9.8124,9.2893,2.9195,3.188,4.2691,4.5986,4.2944,4.4845,1.8231,1.7888,2.1033,2.308,4.3942,4.015,8.055,7.6282,2.2995,2.3378,7.6067,7.393,12.3394,12.1164,7.7853,7.2281,2.5657,2.7463,5.2013,5.367,2.0238,1.9821,20.9149,21.8414,5.5033,6.6156,4.3562,4.5033,1.0614,1.2117,2.7296,2.5027,9.1711,8.1578,16.7309,15.7612,3.3699,4.0413,4.5684,4.6343,3.6352,3.6257,1.8217,1.8326,4.5414,4.9629,12.1045,12.1496,2.9352,3.4545,2.3087,2.4109,2.0384,2.5855,10.1976,11.3309,2.6656,2.7234,1.9752,2.2297,13.1425,13.5479,1.8111,2.2683,1.3669,1.3665,16.4919,15.8498,5.3549,5.7856,8.2654,8.7963,4.5806,3.7427,12.0503,12.2536,7.0929,8.3187,8.0704,8.47,3.6455,4.2711,1.4907,1.7436,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,321
+desd323,67,67,M,1.9942,2.3465,0.367,0.39642,0.68779,0.6752,17.3904,3.2081,2.9916,47.6643,47.0307,14.3293,15.0376,225.2247,217.8863,2.1828,2.914,2.7239,1.591,1.363,26.4693,21.5998,1.596,1.5403,4.4426,4.2979,6.3113,6.6129,4.6607,4.9461,0.07446,5.657,2.356,2.7406,0.36577,0.37297,4.1127,4.7897,4.4412,4.2701,1.6276,1.4371,11.4685,11.4997,2.9724,2.6353,4.5909,4.2639,4.7794,3.9519,1.3272,1.2683,2.2165,2.0577,3.4371,3.2728,5.7859,6.3431,2.0209,2.0388,6.6274,6.0786,9.6194,9.0001,7.5903,7.0945,2.1145,2.1942,5.0121,4.9652,1.7877,1.7203,16.2846,16.5372,6.0089,7.1611,3.6809,3.6734,0.98315,0.99809,1.9825,2.3509,7.6286,7.2627,11.8751,11.6384,2.9165,3.6447,3.9088,4.1568,3.356,3.2668,1.5566,1.4428,4.295,4.5968,12.0991,11.2253,2.7822,2.7031,2.6554,2.4977,2.3612,2.3883,12.6225,13.1955,2.1194,2.4597,2.2593,2.5142,12.1733,11.3597,1.9105,1.7346,1.1022,1.1554,13.268,14.2183,5.5635,5.3179,8.4487,10.3407,4.6521,3.5935,10.9819,11.7028,6.9194,6.4605,6.266,7.0149,3.4781,3.4383,1.6167,1.6273,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,322
+desd324,70,70,F,1.2434,1.4205,0.3393,0.35337,0.79506,0.77713,17.2983,2.4047,2.448,39.7325,39.2713,14.3601,14.2666,202.9975,186.1223,1.148,3.2704,3.1275,0.69273,0.48349,13.0913,19.5313,1.4893,1.453,3.1251,3.2616,6.9816,6.9254,4.2961,4.5684,0.07385,3.9762,1.8288,2.2808,0.33346,0.35595,3.8518,4.1858,4.1263,4.5975,1.7692,1.4496,9.4821,8.5316,3.4087,3.1948,3.9783,3.6261,4.9237,4.8068,1.5363,1.5804,1.9232,2.0563,3.8378,3.4058,6.1642,6.4082,2.0611,2.0723,5.9288,5.7301,10.4651,10.0282,7.3975,7.5524,2.1353,2.3922,4.4469,4.3733,1.7617,1.7345,18.1155,18.1078,4.6593,5.3515,3.8878,3.7917,1.1711,1.2448,2.5616,2.5869,7.4214,5.955,12.9491,12.9082,2.9533,3.788,4.1069,4.61,3.1232,3.2668,1.5948,1.6605,3.6334,4.0943,10.0699,9.6885,2.7657,2.9404,2.1884,2.1631,2.2513,2.4363,10.3212,10.8106,2.1903,2.432,1.9547,2.2385,12.1241,11.3869,1.8179,2.2049,1.0998,1.1575,14.1307,14.4419,5.1071,5.3437,7.8089,8.1623,4.3661,4.138,9.4135,11.5286,7.4041,6.7935,7.7021,6.6838,3.1585,3.6306,1.5549,1.7159,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,323
+desd325,75,75,F,1.9779,2.6574,0.33293,0.35524,0.68779,0.59288,16.3551,3.014,3.2433,44.0019,44.2579,12.1539,12.804,164.8177,161.0911,1.8746,2.9717,2.577,0.69365,0.56028,17.2587,21.7893,1.3243,1.3368,3.5583,3.5654,5.8237,5.8946,3.9747,4.2762,0.07564,4.4055,2.0028,2.4138,0.3306,0.33925,3.5866,3.7923,3.364,3.4544,1.5852,1.4318,9.5312,8.5595,3.1364,3.162,3.3255,3.612,4.1616,4.2504,1.203,1.1384,1.7128,1.8755,3.0947,3.3009,7.1564,6.5086,1.8475,2.1122,5.7367,6.3053,11.0946,9.4804,7.2798,7.0679,1.9705,2.3387,4.2511,4.3147,1.5083,1.5133,16.5137,16.1258,4.6221,5.3467,3.3801,3.7365,1.1405,1.0947,2.2511,2.3548,6.511,5.9402,14.7741,12.0321,2.8925,3.03,3.7932,4.0524,2.8824,2.4859,1.399,1.4791,3.8963,4.3122,10.5413,10.4332,2.7432,2.7039,1.9287,1.9934,1.9047,1.9638,10.4524,11.5164,2.0584,2.2128,1.7943,1.9755,11.7555,12.4066,1.6462,1.5474,0.98828,1.0666,14.4863,14.1541,4.5127,4.3746,6.9975,8.3436,4.3206,3.2846,8.8931,9.3063,7.3181,7.3087,6.5625,5.8683,3.3347,3.6681,1.3212,1.2385,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,324
+desd326,77,77,F,1.2064,1.2667,0.40112,0.45025,0.82078,0.82365,18.213,3.1158,3.1574,46.3654,45.9081,15.2028,15.7193,237.9884,235.5834,1.4324,3.3734,3.0111,0.52755,0.57533,18.6368,17.7235,1.6604,1.6542,3.7019,4.0139,7.1405,7.4289,4.6372,4.8877,0.07985,4.7656,2.3699,2.5582,0.40119,0.41984,4.8787,5.2082,3.9925,4.5632,1.9942,1.6061,10.4915,9.553,3.3907,3.4654,4.3899,4.5763,4.8917,4.5272,1.676,1.671,1.8978,2.0487,4.3098,3.8123,7.4872,7.6979,2.1746,2.382,7.3511,6.3827,13.2069,11.2932,8.2699,7.4707,2.3336,2.4053,5.2013,5.4468,2.0711,1.9973,20.0056,19.5364,6.0093,5.6511,4.1554,4.4401,1.302,1.1499,2.951,2.9556,8.9555,8.0969,14.432,13.8103,3.3883,3.7622,4.3587,3.9757,3.332,3.2658,1.5889,1.7375,4.3186,4.8942,10.2967,10.6801,2.9552,3.0372,2.0389,2.0851,2.4781,2.7908,11.7534,11.7131,2.16,2.6925,1.8649,2.341,13.0812,12.6851,2.2101,2.376,1.244,1.3161,15.6544,17.1693,5.4748,6.337,8.3761,9.0181,4.5338,3.6894,11.0128,11.0671,8.7756,7.5533,7.7616,6.5995,3.5768,3.9839,1.4892,1.814,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,325
+desd327,78,78,M,2.3554,2.6714,0.37692,0.40169,0.82463,0.81901,19.522,3.0675,2.8481,50.4762,50.3468,16.1704,16.5949,231.8648,231.8286,2.0243,3.3254,3.1595,1.6411,1.7795,30.6841,33.4058,1.7119,1.6522,3.867,3.8948,7.2864,7.5452,4.837,5.0712,0.08434,5.1119,2.4024,2.9806,0.38326,0.4173,4.491,4.8193,4.4452,4.3894,1.6874,1.5729,8.9804,8.4519,4.1188,3.6084,4.3366,5.1241,5.4773,5.0645,1.5758,1.4931,2.0236,2.0467,3.6164,3.4626,7.1123,7.0253,1.8605,1.993,7.0583,7.2429,11.9174,11.1838,8.0021,7.5044,2.1988,2.3816,5.2304,5.1542,1.7002,1.7025,17.5666,17.7121,5.1801,6.1117,3.528,3.9091,1.0921,1.0397,2.5263,2.756,7.379,6.9886,14.4409,13.4569,3.7168,4.0946,4.0239,4.3265,3.7074,3.5511,1.4891,1.526,4.0638,4.4456,11.258,10.0543,2.846,3.1414,2.7021,2.4977,2.2331,2.275,11.0358,12.7777,2.3019,2.2691,2.1613,2.6377,11.9413,12.5485,2.2771,1.9411,1.1729,1.2607,14.486,14.2564,5.3986,5.1103,8.4684,8.6116,4.4252,3.88,9.187,9.8591,8.0056,6.9651,7.6076,7.6639,3.7643,3.7072,1.5416,1.8601,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,326
+desd328,72,72,F,1.2149,1.6201,0.40112,0.41591,0.77349,0.8008,17.8487,3.2685,3.1426,45.7299,44.4757,14.3962,14.7292,211.353,215.6791,1.2586,3.2123,2.8585,0.56721,0.51445,12.4613,12.2702,1.6023,1.613,3.8124,3.816,6.6585,6.8234,4.4484,4.7448,0.06899,4.4512,2.0938,2.4202,0.35107,0.38798,4.2276,4.8562,3.9127,3.9484,1.9261,1.874,9.0647,7.0113,3.233,3.5413,4.2217,4.5054,4.6451,3.8777,1.504,1.4953,2.0784,1.9378,3.6906,3.3415,6.9727,6.8267,2.0692,2.1293,5.4877,5.9188,10.1979,10.6496,7.262,6.8839,2.3463,2.7182,4.88,4.8665,1.7953,1.902,19.7995,19.6619,4.1514,5.0842,3.9613,4.2769,1.149,1.1988,2.3443,2.588,8.4599,7.4088,14.3297,14.4684,2.3021,3.1687,3.5923,4.0073,3.0623,3.215,1.7914,1.7466,4.1182,4.6327,10.9019,10.5044,2.7786,2.9568,2.2847,2.3419,2.2163,2.3883,9.6623,11.1147,2.3858,2.9716,2.1182,2.3188,11.3933,11.3869,1.7839,2.1825,1.0894,1.0998,14.1941,14.5211,5.3775,5.3156,7.4893,8.3125,4.0568,3.0282,10.5532,11.6074,7.2625,6.6694,7.4283,7.7727,4.0176,4.504,1.4453,1.7203,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,327
+desd329,71,71,M,1.6236,1.69,0.39026,0.39471,0.86232,0.84092,17.8769,3.5155,3.292,48.961,49.0913,14.1657,14.4634,201.885,200.2379,1.6254,3.2733,3.0623,0.52761,0.60747,15.5073,15.0126,1.4916,1.4822,3.4345,3.4323,7.1738,7.3428,4.4848,4.7331,0.07026,5.4109,2.2979,2.6607,0.39933,0.44027,4.8784,5.4008,4.1115,4.241,1.9924,1.7008,11.4551,10.5471,3.1256,3.0054,4.3878,3.8371,4.8925,4.1609,1.9619,1.7295,2.1956,2.0577,4.244,3.9876,8.2273,8.1695,2.1596,2.0272,6.2753,6.0712,13.026,12.6099,8.945,7.9636,2.5749,2.5448,5.5455,5.4468,2.0711,1.8474,20.6739,20.7531,5.4473,7.3017,4.0835,3.9981,1.0672,1.1816,2.5152,2.7991,8.9555,7.7655,15.1999,15.7275,2.9491,3.1313,4.7305,4.4217,3.6151,3.2971,1.6218,1.5799,3.8501,4.3916,9.8164,9.759,3.3377,3.6146,2.6966,2.4935,2.3097,2.2081,10.5419,12.7437,2.6274,2.6031,2.5206,2.7526,14.1,15.5268,1.8934,1.6008,1.3198,1.3238,16.485,15.5468,5.871,5.5681,8.9082,10.0076,4.6521,3.4312,11.5183,11.0565,8.4316,9.3392,8.9099,8.8122,4.0489,3.7874,1.5167,1.3138,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,328
+desd330,72,72,F,1.2241,1.2667,0.34399,0.38516,0.71864,0.71617,14.8491,2.4875,2.6066,42.589,42.4254,12.0435,12.6795,212.1663,212.0113,1.2238,2.9715,2.7905,0.42204,0.36505,11.1323,13.8198,1.4165,1.403,3.0212,3.0473,6.2558,6.4419,3.8928,4.078,0.06871,4.5469,2.2016,2.3794,0.31821,0.34545,4.2118,4.1603,3.7146,3.6477,1.524,1.4462,9.622,9.3178,2.8362,2.6577,3.6395,3.1584,4.4069,3.4814,1.428,1.3406,1.8365,1.8246,3.3608,3.0266,6.2261,6.2374,2.013,2.0723,6.044,6.1018,10.212,9.954,6.88,6.181,1.8522,2.2312,4.738,5.0687,1.6283,1.4705,16.273,17.0576,4.7324,6.1877,3.4901,3.86,0.7652,1.0491,2.0625,2.3043,6.5032,5.826,11.8607,12.0092,2.1902,3.1119,3.6688,3.5194,3.0486,3.3025,1.314,1.4125,3.5651,3.9854,8.9853,9.1132,2.4929,2.7706,2.0102,1.9472,2.0738,2.0631,11.2679,12.7977,2.2277,2.3931,1.8414,2.0385,10.8511,11.1521,1.6533,1.5861,0.93498,0.99363,13.4779,13.2611,4.518,4.3746,7.691,9.1592,3.6081,3.4955,10.921,9.5738,6.3782,5.8236,6.8304,6.5154,3.0691,3.6143,1.1985,1.153,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,329
+desd331,69,69,M,1.4538,2.9422,0.42429,0.44617,0.89923,0.871,20.7649,3.4062,3.127,46.3204,46.8022,14.8788,15.2945,226.904,226.4608,1.0956,3.4863,3.1564,0.51198,0.48128,12.814,16.6159,1.7119,1.6373,3.8073,3.9264,7.2774,7.3533,5.131,5.2657,0.07484,4.4512,2.2275,2.5807,0.41486,0.44719,4.5332,4.9042,4.4752,4.6694,1.7656,1.6322,10.7934,10.3745,3.6394,3.0632,3.9016,4.4184,5.4766,5.1517,1.7703,1.656,2.0381,2.2589,4.2184,3.6769,8.1498,8.0387,2.1109,2.0272,6.9888,7.5747,14.1024,12.7368,8.8864,8.4943,2.3287,2.4247,4.69,5.2531,1.8857,2.0564,17.3005,18.7331,5.7983,7.0934,3.97,4.3626,1.0456,1.206,2.5254,3.0479,8.0824,7.0881,16.3772,15.2632,3.8541,3.9649,4.843,4.9054,3.6886,3.264,1.7302,1.6557,4.683,5.5126,12.5686,12.2753,2.9531,3.2482,2.4661,2.3709,2.4729,2.498,10.4511,12.1538,2.6607,2.7361,2.0373,2.3045,13.2089,13.1288,2.0567,2.2445,1.2019,1.2546,15.887,16.1223,6.2218,6.09,9.3669,10.4137,4.5674,4.0371,11.4734,11.5742,7.5306,8.3879,8.5532,8.0864,3.8575,3.6503,1.5776,1.6861,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,330
+desd332,72,72,F,1.6203,1.7275,0.35805,0.37612,0.68493,0.6146,15.1679,2.9039,2.9964,39.8014,40.0559,12.0168,12.7184,190.7115,191.4973,1.509,2.7875,2.4984,1.2937,0.9251,12.8318,15.393,1.4408,1.3178,3.4974,3.6017,5.8336,5.8214,4.1153,4.1851,0.07015,3.7908,1.9097,2.3747,0.34592,0.36027,4.0405,4.1585,4.0829,4.1057,1.5197,1.3047,9.6351,9.3178,2.1377,1.8742,3.7618,3.7157,3.6957,3.4567,1.2702,1.1777,1.647,1.9806,3.2243,2.9635,6.6665,6.5838,1.8708,1.8986,4.9555,5.038,10.7232,10.9496,6.5715,5.6572,2.084,2.0882,4.3234,4.1108,1.5712,1.5268,15.7474,16.5266,3.8943,4.9091,3.7264,3.6247,0.86988,1.1048,1.9606,2.4209,6.74,6.1179,15.7108,13.6412,2.1773,2.6117,3.503,3.6689,2.9562,3.6754,1.3687,1.4233,3.6107,4.1078,8.3795,10.3191,2.5366,2.5063,2.4073,2.4581,2.2338,2.1041,8.4056,10.436,1.9772,2.0158,2.0168,2.1583,10.3723,11.5839,1.798,1.7159,1.0802,1.0938,11.5255,10.7096,4.5982,4.4778,6.8754,8.2312,3.3676,2.7485,9.3587,7.8501,6.8531,6.4601,6.9277,6.874,3.3878,3.6013,1.5205,1.543,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,331
+desd333,69,69,F,1.6583,1.8097,0.28645,0.34264,0.60361,0.68262,15.5147,2.5025,2.5484,39.7329,39.5564,11.6495,11.7821,186.1888,190.1899,1.7597,2.6271,2.4995,1.6519,1.0868,19.6264,20.6888,1.5685,1.4265,3.2751,3.5801,6.0708,6.4532,4.2401,4.3906,0.06718,4.3073,2.1242,2.3144,0.32726,0.31728,3.672,4.6022,3.6869,3.9,1.5598,1.1635,7.6621,8.383,3.1413,3.3412,3.6584,3.869,4.214,3.8546,1.2083,1.3117,1.8156,1.9634,3.2742,3.0151,6.417,6.0792,1.7422,1.9011,6.3031,5.5408,9.9723,9.7291,7.4049,6.9013,2.0766,1.9626,4.0861,4.3943,1.4608,1.4944,16.9845,18.0381,5.4068,5.7216,3.4543,3.5479,0.84444,0.85443,2.2109,2.147,7.2797,6.4821,11.2172,12.3947,2.7949,2.892,3.8589,3.8423,3.4978,3.463,1.356,1.4158,3.639,3.8951,9.6636,9.4853,2.5703,2.7139,2.2408,2.2224,2.0846,1.9729,9.367,11.5268,2.3006,2.2483,1.9547,2.0408,11.2915,11.6058,1.6751,1.7921,1.0685,1.0907,12.2432,12.5947,4.6107,4.5871,6.7642,8.5524,3.8065,2.7602,9.6784,9.686,6.2549,5.83,7.0902,7.1955,3.1249,3.4857,1.3466,1.3736,,13,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,332
+desd334,72,72,F,1.6203,1.9146,0.32046,0.35821,0.67646,0.61588,18.2718,2.7199,2.626,45.9086,45.9631,14.8152,14.6074,202.0779,201.3279,1.7597,2.9372,2.577,0.98311,0.9679,20.0417,19.2761,1.5907,1.5023,3.2527,3.187,6.4129,7.0902,4.5123,4.7356,0.08037,4.7414,2.2165,2.7636,0.31248,0.31325,3.7724,4.1858,3.5284,3.5419,1.7559,1.3901,8.562,8.383,2.9883,2.8007,3.6452,3.3012,4.738,3.929,1.4063,1.2807,1.547,1.6136,3.5418,3.2963,6.9781,6.8223,1.8429,1.9337,6.4583,5.6675,9.1167,10.6496,7.5607,6.9263,2.1353,2.1152,4.2146,4.325,1.5712,1.5915,18.2283,15.7424,4.7603,5.7343,3.4573,3.5828,0.97444,1.204,2.478,2.5673,7.0396,6.5976,11.1503,12.8189,3.0325,3.1802,3.9841,3.9924,2.7864,2.473,1.4724,1.2362,3.3779,3.8501,9.5582,9.3968,2.8203,3.0333,1.9343,2.0284,1.9191,1.9729,9.7397,11.177,2.5005,2.1021,1.8343,1.965,11.96,11.9346,1.5526,1.6417,1.1548,1.1623,12.9203,12.274,4.5318,4.8072,6.0292,8.2673,4.3661,3.3708,9.6925,10.2826,6.3734,6.1527,7.4567,7.2682,3.4248,3.4214,1.2763,1.3564,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,333
+desd335,70,70,M,1.9853,1.759,0.37982,0.43307,0.86543,0.95116,16.0602,3.263,3.0868,46.4564,47.2241,13.3453,13.3684,222.5085,216.3348,1.7409,3.6778,3.6418,0.6937,0.67237,18.3746,21.454,1.4269,1.5129,3.4455,3.605,7.4431,7.4497,4.2283,4.3716,0.07643,4.7007,2.1339,2.7688,0.38429,0.38747,4.3327,4.9722,3.5838,3.3138,1.7432,1.6915,10.2154,9.9207,3.4823,3.3652,3.9506,4.0188,5.0832,4.3801,1.8278,1.8532,1.9458,1.996,4.0767,3.4284,8.2799,7.8013,1.9633,2.0006,6.6846,7.0384,13.1325,12.081,9.0811,7.8393,2.3243,2.6274,5.0183,4.8754,1.7081,1.8184,20.6915,19.892,5.117,6.8466,3.6767,3.9938,1.1451,1.0132,2.6987,2.3144,7.6513,6.8858,15.5243,14.8551,3.0677,3.5237,5.0403,5.2773,3.7331,3.6453,1.55,1.5683,4.8263,5.0648,12.8049,11.4852,3.2669,3.5992,2.3679,2.3847,2.548,2.2689,12.0025,13.0189,2.5161,2.8016,2.1073,2.3318,13.0812,14.6171,1.9446,2.1445,1.1721,1.2251,13.7294,14.8169,5.2705,5.09,9.1188,8.8943,4.2818,3.5384,10.3976,9.9203,7.7033,8.561,9.4681,9.5122,3.1766,3.7579,1.4361,1.5738,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,334
+desd336,73,73,M,1.7801,2.5602,0.41651,0.46245,0.83316,0.79891,18.3098,3.5965,3.4738,49.3798,50.3468,15.0825,15.7173,222.5126,221.6688,1.2255,3.3786,3.1863,0.53831,0.47243,16.9137,16.4158,1.5114,1.4418,3.8316,3.827,7.0836,7.8167,4.5929,4.7553,0.08568,5.1803,2.2979,2.8095,0.38806,0.38773,4.3045,4.6851,3.8856,4.2189,1.8168,1.6083,10.8548,8.7108,3.2174,3.2874,3.987,3.9068,4.1039,4.4391,1.7405,1.5748,1.7889,1.9025,3.7308,3.507,7.1612,7.029,2.1974,2.1666,6.6582,5.6291,11.7056,11.1615,7.6085,7.3579,2.3294,2.3401,4.6356,4.8107,1.8468,1.9453,17.9533,18.4741,5.2318,5.7343,3.854,4.0077,1.1499,1.1615,2.6537,2.7107,8.0209,7.0344,14.1365,13.7679,3.0677,3.8664,3.8708,4.2695,3.6146,3.6564,1.6491,1.4159,4.248,4.555,10.9296,11.0804,2.9481,3.0225,2.2595,2.2281,2.2135,2.398,9.0906,10.1322,2.2324,2.4196,1.943,2.2018,12.1226,11.4577,1.9632,1.965,1.2302,1.2704,14.4163,14.2595,4.8324,5.0772,7.3627,8.3596,4.2216,4.1879,10.5653,10.954,7.067,7.4695,8.0311,7.2595,3.69,3.6908,1.5421,1.6896,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,335
+desd337,71,71,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,336
+desd338,,,M,1.705,1.0793,0.28531,0.32098,0.6096,0.54267,14.6471,2.3944,2.3271,7.8188,18.1896,0.71528,10.0326,168.1404,167.2846,1.7563,2.554,2.5125,0.99284,1.2114,16.8999,26.5933,1.4,1.4276,2.9832,3.0698,5.7143,6.0637,3.8951,4.0697,0.08783,3.926,0.88859,1.6169,0.30157,0.32011,3.2577,3.5158,3.102,3.1785,1.2883,1.1283,8.3589,7.0338,3.3005,2.6444,3.4983,3.7363,4.7214,3.929,1.1403,1.0259,1.681,1.6744,3.0302,2.7854,5.5859,3.9341,1.5262,1.6227,5.4694,3.8533,8.6221,6.8215,7.7439,6.8315,1.7016,1.892,3.3637,3.5663,1.3076,1.3178,14.8746,15.4708,4.2287,4.7701,2.92,2.9419,1.1493,0.9521,2.5994,2.1757,6.2531,5.6687,10.1412,9.1824,2.8122,3.1951,4.0199,3.5636,3.0829,3.112,1.1677,1.1352,3.0891,3.5591,9.4847,8.3454,2.1022,2.7654,1.7383,1.7402,1.9166,1.9303,8.3505,9.5882,1.9076,2.0031,1.457,1.6021,10.0972,10.9442,1.5787,1.582,1.0147,1.0886,12.5051,11.3018,5.1356,5.1003,6.1333,6.1559,3.7279,2.9742,8.0575,8.881,5.4535,5.1665,5.7627,5.2112,3.1211,3.3531,1.326,1.1515,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,337
+desd339,,,F,0.70972,1.2959,0.34892,0.39511,0.87013,0.88146,17.5065,2.8534,2.7829,35.0639,35.1182,16.2098,16.4896,232.1245,225.8912,0.94698,3.1839,2.7706,0.35763,0.35349,7.0678,8.6117,1.5167,1.414,3.3828,3.33,7.1627,7.512,4.4731,4.701,0.08159,4.2224,1.9428,2.2734,0.39142,0.3918,3.5594,4.3072,4.0215,4.4858,1.6747,1.4703,10.4836,10.4591,3.1797,2.787,3.6347,4.0739,5.028,4.7039,1.8057,1.7536,1.7941,2.0719,3.5843,2.956,8.1453,8.1556,2.1574,2.0302,6.9628,6.143,12.2874,12.2691,7.6419,7.1563,2.1403,2.4183,3.9332,4.426,1.8738,1.6231,18.477,17.9842,5.279,6.4813,4.0038,3.9559,1.0106,1.0919,2.4053,2.5861,7.7828,6.178,15.9131,15.3681,3.0358,3.0161,4.3265,4.175,3.1583,3.1072,1.6075,1.4715,3.6601,4.0943,9.8438,9.6546,3.0379,3.1178,2.2143,2.1616,2.2087,2.4953,9.3283,11.5915,2.4315,2.5123,2.1469,2.2493,11.8168,11.5614,1.9763,2.1021,1.1978,1.2136,15.0565,14.2032,5.2241,4.9117,7.6044,8.7975,4.8322,3.6105,10.5653,10.1991,7.3975,7.6646,7.9912,7.6055,3.8404,4.103,1.3216,1.6621,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,338
+desd340,,,F,1.5895,1.6818,0.40101,0.43272,0.82696,0.82436,15.5975,3.1972,3.0836,26.9492,27.3723,11.4186,12.2296,214.4995,213.1765,1.3578,3.328,3.1929,0.4579,0.41701,10.9352,12.3222,1.4997,1.4856,3.3584,3.4616,6.1974,6.4197,4.4591,4.7031,0.07095,4.5422,1.9186,2.1901,0.39035,0.37687,4.0432,4.5304,4.4772,4.8668,1.6186,1.4732,9.3977,8.9824,3.58,3.2596,4.1462,4.2508,4.6554,4.7694,1.7124,1.6028,2.1704,2.308,3.3626,3.3412,6.9456,6.9429,2.0423,2.0363,6.41,6.4585,11.1523,10.1414,8.7088,7.0703,2.1928,2.1942,4.0993,4.3498,1.6283,1.694,17.5795,17.6661,4.7728,6.0193,3.7199,3.9559,0.89224,0.85443,2.2469,2.346,7.9829,6.7603,14.516,13.0377,2.917,3.4076,4.4684,4.471,3.4022,3.2598,1.5704,1.4849,3.705,4.0902,10.5466,10.1569,2.9008,3.2234,2.5876,2.5935,2.3783,2.5337,9.7286,10.9738,2.4355,2.5069,2.2704,2.3724,11.388,12.4411,1.8124,2.1297,1.1223,1.263,13.0346,13.0842,5.115,5.2739,7.4967,9.1593,4.4996,3.7167,9.5941,10.7412,6.9062,7.0721,8.8179,7.755,3.46,3.6669,1.7003,1.7795,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,339
+desd341,38,38,M,1.9259,2.1809,0.34273,0.33492,0.73419,0.69628,18.7455,2.5437,2.2522,45.7654,45.6187,15.2305,15.2435,203.9915,197.9945,1.7956,2.8752,2.5467,1.5235,1.3141,21.9802,21.0729,1.5904,1.5023,3.1242,2.8915,5.9256,6.431,4.6781,4.9461,0.08981,4.5608,2.2487,2.1259,0.30397,0.31632,3.672,4.1991,3.6489,4.0666,1.4974,1.4037,8.1557,7.1867,2.8367,2.9683,3.5839,3.5359,3.8457,3.7602,1.4345,1.3546,1.8398,1.8077,3.5199,3.3368,6.5829,6.1208,1.6895,1.6831,5.4161,5.1321,10.2767,9.9763,6.5107,6.4052,2.0023,2.1332,4.0403,4.3193,1.406,1.4807,16.5221,17.7432,4.0748,5.0582,3.3191,3.3948,1.0944,1.0018,2.3075,2.0936,6.975,6.6773,11.4993,11.8918,2.6285,2.7303,3.6165,3.448,3.1011,2.9593,1.4462,1.4126,3.5503,3.8922,8.8895,8.4977,2.5847,2.8352,2.1295,2.1676,1.7204,1.7698,9.0295,10.1974,2.0893,2.3736,1.928,2.0771,10.1076,11.0022,1.3702,1.3453,0.95964,1.009,13.1293,12.5684,5.2929,5.033,6.171,7.2704,3.1376,2.71,7.8694,10.2199,3.4409,5.4578,6.9204,7.0087,3.2715,3.5983,1.2178,1.1341,,9,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,340
+desd342,,,M,1.4773,3.2169,0.38883,0.4002,0.88096,0.90119,19.522,2.8217,2.6265,49.3724,50.7717,15.1746,15.6105,253.2645,252.6338,1.3017,3.4143,3.1809,0.52265,0.54447,13.3892,15.3366,1.6517,1.6474,3.3033,3.3731,7.1647,7.252,4.7776,4.8736,0.08328,4.4829,2.51,2.801,0.37715,0.3918,4.7227,4.8237,4.0464,3.8636,2.2097,1.6783,12.0047,10.0351,3.1256,2.7666,3.7413,4.0188,4.8925,4.5426,1.7414,1.7413,2.1043,2.0867,4.3053,4.7688,7.329,6.9908,2.4457,2.4964,7.3738,6.2704,10.9388,9.9995,8.0483,7.1441,2.739,2.5448,5.0583,5.3086,2.3196,2.3246,20.0346,19.8549,6.2556,6.6358,4.7054,4.7475,1.0672,1.2289,2.5739,2.5155,11.2819,7.1431,13.5532,12.5885,3.03,3.3707,4.2321,4.1489,3.6965,3.1331,1.8723,1.7375,4.2871,4.8098,10.0915,12.2321,2.8289,3.1578,2.3018,2.2232,2.0498,2.2866,10.9025,12.8651,2.4163,2.8223,1.9752,2.1393,11.8669,12.42,1.8426,1.8746,1.3886,1.3923,14.6592,15.5642,5.1314,5.0238,8.9313,8.876,4.3743,3.7717,11.3561,11.8615,7.2861,6.8017,7.8526,6.7322,3.7315,3.9689,1.295,1.507,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,341
+desd343,70,70,M,1.3735,2.1155,0.37286,0.37405,0.81699,0.81507,16.2223,2.8062,2.5513,44.5202,43.8058,13.5409,13.82,220.5805,220.6313,1.1023,3.2428,3.0054,0.55701,0.54806,11.7448,17.2025,1.5581,1.5483,3.4135,3.4552,6.7747,6.9254,4.3102,4.5147,0.07815,4.5216,2.0747,2.2835,0.32953,0.37323,3.5433,3.6751,3.3617,3.4893,1.4595,1.4543,10.6519,8.1467,3.1924,2.9269,3.5078,3.464,4.1096,4.2643,1.4859,1.5448,1.7421,1.7712,3.1352,2.6873,6.6617,6.6684,1.7637,1.7039,5.6325,4.866,10.4471,10.1853,6.7319,6.4209,1.885,2.3387,4.0824,4.6468,1.5278,1.5133,16.507,17.6929,5.0751,5.2048,3.3717,3.4982,1.1627,1.0747,2.663,2.3793,6.5869,5.9385,12.6398,11.4825,3.0861,3.7023,3.6682,3.6688,2.9334,2.9829,1.314,1.4802,4.118,4.5808,10.0101,10.1946,2.6373,2.9456,2.0164,1.9261,1.9492,2.0723,8.9115,10.4106,1.9955,2.5752,1.7823,1.756,11.4033,11.1563,1.495,1.6351,0.98169,0.99153,13.2802,13.027,5.0658,4.9899,7.5562,6.9192,3.6644,3.8033,10.3903,9.1754,6.0969,6.018,6.8304,6.7235,3.036,3.9592,1.1985,1.1738,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,342
+desd344,75,75,M,1.2993,1.6239,0.36741,0.40093,0.78586,0.76662,15.5862,2.5003,2.459,43.3741,42.7712,12.9533,13.644,197.2012,191.6235,1.4058,2.9276,2.7669,0.45382,0.42583,11.4556,12.2916,1.4927,1.4856,3.5759,3.6017,6.8266,6.9487,4.8225,5.1026,0.0845,4.371,2.0083,2.2727,0.35545,0.34714,3.829,4.2242,3.7167,3.9101,1.7366,1.5746,9.322,7.0883,3.2221,3.5413,3.7881,3.9223,4.6551,4.9988,1.504,1.5263,2.0149,1.7423,3.6085,3.483,6.8863,7.2039,1.8166,1.8676,7.5167,6.8015,10.8623,11.4267,7.3271,6.8138,2.205,2.0638,4.8793,4.4251,1.5945,1.5915,18.4196,18.3843,5.7379,7.057,3.6345,3.847,1.135,1.1307,2.4558,2.7371,6.8932,6.6941,13.8385,14.1416,2.7936,3.6103,3.8176,4.052,3.2773,3.34,1.4504,1.3449,4.0465,4.555,10.1131,10.822,2.662,2.9231,2.2027,2.3037,2.0448,2.3339,9.3692,11.4371,2.1937,2.2928,2.0228,2.1981,13.7294,12.9802,1.8962,1.8785,1.0959,1.1494,14.486,14.4419,5.016,5.2827,8.0882,9.3872,3.9936,4.0874,10.5337,11.5678,6.8121,7.4916,7.6642,7.1894,3.3992,3.5039,1.6178,1.5556,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,343
+desd345,66,66,M,1.0188,1.5136,0.36748,0.40136,0.86232,0.89996,17.4445,2.8256,2.818,44.6002,44.0634,14.4502,15.0749,221.7553,216.6593,1.0792,3.4127,3.1606,0.57073,0.47482,9.6558,9.3251,1.5318,1.5699,3.5115,3.6167,6.7086,7.1669,4.4242,4.6676,0.07575,4.5216,2.0977,2.4164,0.37715,0.37701,4.0472,4.4059,3.8199,4.0202,1.748,1.6215,10.3369,8.8204,2.8932,2.7239,3.6115,3.9289,4.2675,3.6558,1.8487,1.7568,1.8365,1.9466,3.4663,3.3725,7.9478,7.7764,2.0282,2.1666,6.6846,6.1691,12.0364,11.5464,7.2942,6.533,2.2787,2.4614,4.5711,4.5658,1.6708,1.7445,18.3811,17.8848,5.0409,6.0511,3.8145,4.099,1.1499,1.0867,2.6736,2.6498,7.0645,6.4198,14.54,13.1288,2.9165,3.0453,4.0656,3.9398,3.4272,3.0311,1.6075,1.5683,3.862,4.325,10.2469,10.6443,3.026,3.1477,2.1219,2.1286,1.9296,2.2208,10.1239,11.772,2.5713,2.4995,1.7805,2.1408,13.4418,13.3993,1.6445,1.8005,1.1929,1.2581,13.5861,14.0074,5.1467,4.7806,9.2243,9.4761,4.2762,3.2748,11.5183,11.0512,7.7819,7.0127,8.5122,8.3414,3.5756,3.3446,1.3372,1.507,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,344
+desd346,70,70,F,1.6635,1.6088,0.38364,0.41575,0.74739,0.66297,16.4464,3.4437,3.1726,42.7345,43.9655,13.6586,14.5244,215.7579,213.5467,1.397,2.737,2.6837,0.6528,0.65246,17.2503,17.7824,1.596,1.5627,3.2779,3.2674,6.6101,6.6044,4.3426,4.782,0.07095,4.4594,1.9961,2.4458,0.35563,0.38798,4.1763,4.8432,4.0238,4.1302,1.6918,1.488,9.0314,8.1165,3.4774,3.3694,3.8148,3.7157,4.661,4.236,1.4992,1.3042,2.0242,1.9192,3.3301,3.359,6.9727,6.3426,2.1532,2.0302,6.5426,5.6658,11.1818,9.7698,7.2141,6.8839,2.1145,2.1445,4.4148,4.7967,1.8028,1.8406,16.7566,16.2543,4.7603,5.7345,3.9069,4.0204,1.0033,1.0916,2.5523,2.2434,8.2775,7.2392,12.9644,11.7532,3.4893,3.4979,3.8431,4.0772,3.5858,3.9138,1.4084,1.4322,3.9231,4.1789,9.7225,9.7817,2.7099,2.8687,2.1738,2.1047,2.1573,2.309,8.9266,11.3727,2.21,2.394,2.1426,2.4078,11.3061,12.8559,1.7839,2.1307,1.2807,1.2789,13.1853,13.6614,5.1721,5.0286,7.0599,7.9271,5.1031,3.3455,10.1591,9.2838,7.0388,6.4001,7.3982,6.6647,3.287,3.707,1.3983,1.7066,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,345
+desd347,,,M,1.7335,1.907,0.31335,0.33643,0.77299,0.69324,17.3862,3.0232,2.86,49.2345,49.8549,14.3962,15.1274,207.6328,205.4184,1.6773,3.2314,2.83,0.85013,1.161,20.4945,25.7898,1.4785,1.4767,3.0887,3.2904,6.1882,6.49,4.1359,4.3835,0.07799,5.3115,2.2973,2.878,0.33253,0.35084,3.7968,4.4443,3.5752,4.0227,1.4974,1.3156,9.1421,8.3197,3.3281,3.0047,4.0703,4.1142,4.8153,4.3423,1.5454,1.231,1.5552,1.9302,3.3473,3.1787,6.8726,6.0265,1.7976,1.8207,6.7318,5.9868,10.9749,9.9019,7.8651,7.0528,1.9455,2.117,4.1058,4.4356,1.6049,1.6649,16.5415,17.0596,5.5586,5.555,3.2639,3.3495,1.2107,1.3535,2.8162,3.1151,7.1171,6.5059,12.8679,13.505,2.9056,3.2287,4.331,4.1288,2.8089,3.2478,1.3389,1.2952,4.1905,4.089,10.8753,10.3832,2.7692,2.7592,2.2215,2.2243,2.2739,2.1894,10.4524,10.2494,1.8947,2.2895,1.9335,2.1983,11.9596,11.6814,1.8213,1.7159,1.1543,1.1489,12.5855,12.6856,4.781,4.6362,7.5726,7.0505,4.2818,3.5751,10.6544,10.0025,6.8112,7.35,7.5836,6.4164,2.7421,3.1907,1.2488,1.543,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,346
+desd348,85,85,F,2.2431,1.8675,0.25818,0.32265,0.63979,0.67914,15.5147,1.8066,1.7664,40.6976,40.1862,11.6065,11.9258,193.768,202.1358,2.2824,2.7353,2.5657,1.9068,2.2794,22.4678,33.7795,1.4291,1.4048,2.742,2.9049,5.9197,6.4419,4.1089,4.4346,0.0668,3.7738,1.9097,2.1249,0.28156,0.30458,3.8583,3.7673,3.3663,3.5395,1.4189,1.2255,7.9388,6.946,2.714,2.5089,3.175,3.1451,4.3906,3.9205,1.1853,1.4088,1.5672,1.557,3.0302,2.7854,4.513,5.7522,1.4739,1.5884,4.3628,5.2871,8.2175,8.4953,7.321,7.109,1.7262,1.8822,3.9624,3.9116,1.2638,1.2612,14.6268,14.7495,4.4493,4.6049,3.0235,3.2126,1.2187,1.0947,2.5856,2.4518,6.112,5.527,10.144,10.4151,2.5487,2.8267,3.5914,3.7857,2.7034,2.6425,1.1677,1.097,3.2502,3.8485,8.8201,9.3387,2.3909,2.5452,1.9146,1.8505,1.6664,1.6606,10.5834,11.0569,1.7994,1.9031,1.6124,1.756,10.9179,10.8799,1.6089,1.6524,0.86423,0.93595,11.829,11.7842,4.5279,4.8594,6.0433,6.1559,3.5277,2.6645,8.5565,10.4569,5.2529,5.2606,6.1097,6.3681,2.6569,2.9625,1.2118,1.1486,,8,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,347
+desd349,63,63,F,1.0172,1.5136,0.338,0.3078,0.8493,0.85531,12.9634,2.8386,2.2636,41.4208,40.9443,11.0519,12.8773,195.4017,190.9265,1.1125,3.131,3.0997,0.35824,0.34487,9.4804,12.0323,1.3054,1.3726,3.4932,3.7125,6.1701,6.2495,3.9091,4.216,0.0684,3.5511,1.9454,2.488,0.33867,0.35564,3.5552,4.4638,3.84,3.708,1.6939,1.3752,9.1163,8.4278,2.8999,2.7963,3.344,3.3405,4.4789,4.6735,1.6513,1.7728,1.7333,1.7211,3.4674,2.9401,6.768,6.3596,1.8571,1.8854,6.114,5.6658,10.2878,9.9019,7.6388,7.101,2.0692,2.1743,4.357,3.9784,1.6467,1.7096,18.2283,17.3223,4.5508,4.7415,3.7047,3.678,0.8214,0.90998,2.2521,2.185,7.1542,6.358,12.5616,11.6401,2.7556,2.8357,4.0318,4.0664,2.7456,2.7807,1.4901,1.3874,3.5002,3.8426,11.9276,11.6746,2.8314,3.097,2.1593,2.0798,1.974,2.2326,9.151,10.8637,2.2235,2.2402,2.1021,2.1117,11.4501,11.5259,1.6444,1.8586,1.1126,1.0952,13.9114,12.6978,5.2838,4.8268,7.3672,7.3882,3.6506,2.8725,9.4267,9.8832,6.1392,6.3079,7.4184,7.2184,3.4556,3.4373,1.2774,1.4821,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,348
+desd350,68,68,M,1.4677,1.8126,0.33456,0.37092,0.76962,0.77227,15.54,2.6297,2.7309,48.197,47.0212,13.0406,13.7581,178.6,181.3242,1.2465,2.9478,2.7669,0.55737,0.41764,9.5855,11.4231,1.4289,1.4316,3.4679,3.7227,6.1602,6.2609,4.1014,4.3168,0.08828,4.8149,2.3524,2.5628,0.34201,0.35342,3.4882,4.2006,3.349,3.8945,1.6056,1.3958,8.252,8.2641,2.79,2.4942,3.6133,3.6776,3.9814,3.8352,1.4985,1.4514,1.6922,1.8315,3.309,3.1183,7.1123,6.5483,2.013,2.0461,5.5082,4.832,11.3054,10.182,7.1085,6.4685,1.9966,2.067,4.3293,4.245,1.5869,1.6313,16.1322,16.7384,5.1691,5.0941,3.6181,3.6508,0.90069,1.0396,2.3342,2.4124,7.715,6.5881,13.6445,12.4233,2.4467,2.8267,3.6809,3.5443,2.7727,3.1135,1.4943,1.3155,3.753,4.0792,9.3593,9.5844,2.7711,2.7336,2.0246,2.021,1.779,2.1672,9.0977,11.135,2.0825,2.2483,1.9409,1.9736,11.1298,11.2192,1.7637,1.6485,1.2428,1.2506,13.6325,13.5618,5.1412,4.9445,6.6869,8.3044,3.4902,2.71,8.4749,10.1863,6.047,5.83,6.8489,7.3018,3.2797,3.2833,1.4185,1.5013,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,349
+desd351,70,70,F,1.6635,1.6066,0.35586,0.39098,0.69622,0.68886,14.7753,3.0468,2.9964,39.8014,39.5951,12.0467,12.1929,197.9988,190.1632,1.6254,2.6159,2.6792,1.277,0.9251,16.9487,21.0381,1.4408,1.2638,3.3584,3.2992,5.8286,5.8002,3.9093,4.1222,0.07686,4.3435,2.0028,2.4327,0.35027,0.33321,3.6592,4.2505,3.8703,3.9464,1.4567,1.3804,8.8693,9.0173,2.8613,2.7036,3.6874,3.6323,3.7323,4.2084,1.2651,1.3635,1.8298,1.8077,3.3854,2.9356,5.7704,6.3067,1.8429,1.9552,5.5004,4.9728,8.5353,9.4931,6.5178,6.181,1.8889,2.1365,4.2837,4.3943,1.6125,1.6783,15.7474,17.2931,4.4501,5.159,3.3879,3.5451,0.86393,1.1393,2.4117,2.3196,7.2337,5.5905,10.0789,10.6656,2.391,2.7622,3.503,3.6566,3.1011,3.2404,1.2867,1.4934,3.8912,4.4367,9.8678,9.8654,2.5116,2.559,2.0759,2.17,2.1352,2.1299,9.0742,9.8007,2.0736,2.3358,1.9967,2.2002,11.4796,11.6743,1.7931,1.7159,1.1548,1.1368,12.6128,11.9064,4.7214,4.4374,8.0882,8.8826,3.8696,2.6126,9.3095,9.0894,5.4504,5.7462,6.839,6.4791,2.8492,3.639,1.392,1.4235,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,350
+desd352,66,66,F,1.6984,2.0278,0.33687,0.34417,0.755,0.63995,16.589,2.6076,2.6409,45.3684,44.7344,13.3684,14.18,218.897,206.2584,1.4225,3.1424,2.7243,0.7039,0.91308,14.5168,16.8971,1.4966,1.5513,3.4389,3.5257,6.2583,6.6129,4.1737,4.3908,0.06403,4.569,2.2165,2.6862,0.33652,0.35654,3.6366,3.9538,3.7341,3.8908,1.5789,1.3397,8.7417,8.1047,2.4067,1.9707,3.497,3.7584,4.0856,3.7273,1.4613,1.26,1.6005,1.5445,3.2384,3.2423,6.6772,6.4322,1.6787,1.6118,5.5048,5.0406,10.4915,10.182,6.5453,5.6111,1.9222,2.1293,4.2933,4.2832,1.5471,1.5073,15.8517,16.7384,4.4627,5.1371,3.2523,3.2623,0.97444,0.87763,2.2389,2.0936,6.4158,5.8191,12.9666,12.054,2.2467,2.7019,3.6688,3.4415,2.9781,2.6236,1.2938,1.4634,4.0167,4.0479,9.7306,9.4207,2.6563,2.7139,2.1973,2.1061,1.9803,1.6677,8.9115,9.9579,1.9081,2.1403,2.0531,2.2569,10.8645,9.9515,1.7591,1.4484,1.0543,1.0849,11.8307,11.872,4.3702,4.592,7.3309,7.7262,3.6213,2.7703,8.964,9.5963,6.5753,6.0762,6.9153,6.3378,3.1851,3.7933,1.4243,1.3071,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,351
+desd353,,,M,1.0778,1.759,0.46267,0.49261,1.0192,1.0282,19.4632,3.3837,3.3213,52.4729,52.6494,16.2712,15.9533,236.4197,232.5789,1.029,4.0002,3.7395,0.38198,0.46701,11.6656,9.0814,1.7723,1.7541,3.8314,3.9026,6.9086,6.9837,5.0559,5.3218,0.08055,4.551,2.2865,2.9156,0.40645,0.41572,4.3311,4.7603,4.1988,4.3594,1.8534,1.6172,10.8415,9.3961,2.9254,3.0178,3.8563,4.3245,4.7671,5.2218,2.4117,2.0771,2.1879,2.0412,3.8635,3.4205,8.289,7.6878,2.2603,2.1218,7.664,7.4188,13.7282,12.7422,8.7643,7.7111,2.3987,2.3765,4.4081,4.6051,1.9722,2.0006,20.8946,19.8562,5.6932,6.459,4.1426,4.0472,1.2433,1.2289,2.5147,2.6742,8.3765,7.1,17.4594,15.1511,3.4106,3.7497,4.3783,4.6446,4.0885,3.921,1.6906,1.8031,4.1503,4.7197,10.7119,10.9108,3.637,3.4016,2.2872,2.2443,2.4618,2.4206,10.541,12.0172,2.703,2.6115,1.9903,2.0812,12.197,11.7631,2.013,1.9948,1.1594,1.1901,15.0282,17.2763,5.305,5.198,8.4129,10.1914,4.2807,3.5542,10.6658,11.5009,9.0556,8.075,8.4958,8.3456,4.1855,3.787,1.4725,1.7284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,352
+desd354,,,M,3.2846,2.7696,0.31531,0.33849,0.79543,0.89488,18.827,2.7801,2.4307,47.9737,45.9615,13.5526,13.8792,203.3339,198.292,3.7567,3.1337,3.0188,2.7545,2.3176,48.6081,48.6943,1.5907,1.6101,3.1774,2.7149,6.1978,6.4205,4.6548,4.7993,0.06372,4.7843,2.5427,2.52,0.35622,0.38207,4.717,5.2849,4.1799,4.677,2.0366,1.5811,10.2283,9.9313,3.6043,3.7261,4.1024,4.1096,5.2497,5.1742,1.4298,1.6513,2.1129,2.2501,3.9948,3.7032,8.1592,8.0387,2.1738,1.9651,7.4532,7.1014,12.6562,12.2544,9.125,8.4392,2.519,2.3374,5.1521,5.3641,1.9531,1.92,20.694,19.892,5.8092,6.1406,3.8968,4.0818,1.2135,1.1816,2.5249,2.9417,9.0827,8.048,15.0737,14.9531,3.2514,3.8068,4.5392,4.6879,3.6908,3.5359,1.7398,1.4449,4.262,4.6815,11.0616,10.9168,2.8699,3.3696,2.3728,2.5625,2.136,2.5132,10.2712,11.8231,2.6703,2.4878,2.1158,2.4582,13.3086,13.2148,1.8675,2.0005,1.14,1.1631,15.9535,16.1344,6.1867,5.7798,8.3652,8.8502,4.5822,3.6201,10.3976,11.324,8.0088,7.4672,7.3499,7.2146,4.0715,4.0992,1.3967,1.5884,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,353
+desd355,68,68,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,354
+desd356,78,78,F,2.0444,2.0471,0.305,0.34349,0.71488,0.67972,16.4358,2.5534,2.5904,41.9809,40.656,13.3684,13.5418,209.1347,205.3014,1.6855,3.1466,2.8508,0.55733,0.68775,15.4962,16.12,1.4942,1.501,3.5016,3.5172,5.8613,6.0637,4.1046,4.3251,0.07275,3.9415,1.8978,2.0572,0.33893,0.33044,3.4882,4.1264,3.4448,3.3318,1.4896,1.312,9.7966,7.9257,2.8537,2.5994,3.8625,3.6662,4.1126,3.6357,1.4702,1.2181,1.8091,1.5008,2.9758,2.8687,6.3907,6.0792,1.6958,1.6806,4.9966,5.0071,8.4138,10.063,6.8965,6.3161,1.9334,2.073,4.2237,4.1108,1.3704,1.391,17.2701,17.0576,3.9723,5.1595,3.3425,3.3962,0.87777,0.96039,2.2873,2.2649,6.7752,6.1271,10.1412,12.4296,2.4359,2.6606,3.6822,3.8015,3.3208,2.5815,1.3675,1.3871,3.5454,3.8109,9.5306,9.3441,2.685,2.7031,2.1101,2.0161,2.0855,1.8363,8.7289,10.8813,1.9568,1.9283,1.8461,2.0436,10.7378,11.831,1.5956,1.7127,0.91306,1.0339,12.212,12.3486,4.3702,4.6141,7.6297,7.5649,3.6665,3.0325,9.0106,8.3738,5.9477,5.6823,6.7739,6.0729,3.5091,3.205,1.194,1.4348,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,355
+desd357,,,M,1.1606,1.9214,0.45669,0.47721,0.96734,0.92443,19.4303,3.4755,3.2314,52.467,51.6314,16.2712,15.5489,259.0133,245.919,1.1587,3.5553,3.3746,0.61029,0.66674,11.1642,11.297,1.8651,1.8368,4.0092,4.1462,7.7882,8.1197,4.903,5.1663,0.08406,4.9901,2.2373,2.8917,0.40561,0.43803,4.594,5.3101,5.1362,5.144,1.993,1.5544,11.4729,10.3576,3.1923,3.1103,4.5909,4.582,4.6793,4.7242,1.9067,1.7002,2.3205,2.1657,4.0984,3.8704,8.6182,8.6021,2.2274,2.3378,6.4716,6.7482,13.5076,12.2709,8.1568,7.7974,2.4832,2.4256,5.5381,5.6182,2.1857,2.1308,21.455,20.5486,5.7289,6.7797,3.9853,4.2172,1.2138,1.2966,2.9491,2.8154,9.1937,7.3773,17.1263,15.7574,3.3631,3.1518,4.2342,4.5039,4.2568,3.7082,1.7599,1.5735,3.8864,4.4398,10.4931,10.0097,3.3377,3.5386,2.585,2.6832,2.8756,2.6774,10.0404,12.7437,2.5869,2.5953,2.3842,2.7196,13.1865,15.2549,2.3346,1.8968,1.5271,1.5341,15.3281,16.7784,6.0073,5.8355,7.8348,8.2032,4.7519,3.3894,12.1353,11.1593,8.932,7.4672,8.7657,8.4413,4.0751,4.28,1.9135,1.9453,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,356
+desd358,77,77,F,2.0414,2.2003,0.31394,0.34349,0.54594,0.52273,14.6397,2.7199,2.6902,41.8698,41.053,11.7407,12.1776,165.4738,164.9992,1.8061,2.6136,2.5125,1.285,1.0572,19.8248,19.1291,1.1776,1.1748,2.9122,3.0618,5.4951,5.863,3.6709,3.9382,0.08069,4.3562,2.1362,2.6526,0.32973,0.34344,3.0647,3.4415,3.9007,4.1591,1.5852,1.2267,8.2861,8.764,2.8367,2.666,3.2858,3.7772,4.4069,3.8352,1.3058,1.1591,1.8467,1.5836,3.1512,2.6099,6.8553,6.1687,1.7754,1.8086,5.6021,5.398,9.1167,9.4479,7.7439,7.39,1.9992,1.9626,4.075,3.452,1.5552,1.4147,18.9317,17.9772,4.0703,5.1795,3.4183,3.3071,1.0959,1.1569,2.3481,2.5346,5.6562,4.8291,10.2872,10.794,2.5604,2.7058,4.0166,3.6817,3.1011,2.5717,1.3571,1.1482,3.3779,3.6379,9.4847,9.2855,2.6595,2.7527,2.2248,2.2756,1.7696,1.9753,8.8763,9.5644,2.2016,2.3422,1.9547,2.1079,12.707,12.7934,1.5249,1.4435,1.0962,1.2385,13.402,12.9795,5.1658,5.1526,5.934,7.9899,3.3486,2.8583,9.0286,9.3309,5.2529,5.6658,6.5621,6.051,3.0028,3.1176,1.2927,1.2715,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,357
+desd359,81,81,F,1.3569,1.6704,0.34891,0.4395,0.65782,0.70698,18.5757,2.5652,2.609,42.0401,41.9972,15.7042,15.9721,267.6029,268.7903,1.5549,2.9506,2.8594,0.5856,0.47649,9.7001,9.8195,1.773,1.753,3.1677,3.1863,6.2869,6.885,4.8324,5.0587,0.07369,5.0087,2.2446,2.4507,0.39569,0.3861,3.4098,4.2642,4.1808,3.8636,1.9423,1.7441,10.0195,9.6711,3.3108,3.0364,3.6053,3.7912,4.6187,4.5617,1.2497,1.4985,1.9242,1.8386,3.7893,3.3598,6.1382,6.0491,1.968,2.2016,5.9237,5.1608,10.3559,9.954,7.6983,7.5599,2.3789,2.4943,4.4826,4.3331,1.7567,1.7611,17.8055,16.2543,4.4835,4.9474,4.1108,4.365,1.1842,1.2033,2.7537,2.7218,6.7998,6.2112,13.0454,13.3618,2.9431,3.0025,4.0605,4.2296,3.3756,3.2033,1.6254,1.5388,3.8963,4.224,10.2587,10.2797,2.3769,2.8097,2.039,2.1058,2.0713,2.2076,10.4726,11.3227,2.426,2.6802,1.8823,1.8767,12.7044,11.6069,1.8825,1.8485,1.0894,1.1654,14.3595,13.9016,5.0549,5.2041,7.8463,8.6249,4.3743,3.433,9.9323,9.9701,7.4041,6.8093,7.4701,7.066,3.5289,4.3993,1.512,1.284,,30,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,358
+desd360,70,70,F,1.8234,2.101,0.31472,0.33703,0.67646,0.68516,15.3895,2.7265,2.6558,40.8386,41.0896,12.794,13.2435,193.2219,187.3303,1.4826,2.9506,2.6429,0.95012,0.61403,14.775,17.7403,1.3158,1.3295,3.305,3.2011,6.0708,6.1844,4.0572,4.1851,0.07289,3.9879,2.0853,2.097,0.30675,0.31612,3.7014,4.2505,3.84,3.9087,1.4124,1.3274,9.031,7.6977,3.113,3.1377,3.7618,4.0186,4.7744,4.7694,1.4354,1.308,1.7941,1.946,3.3818,3.2724,5.7968,6.0089,1.8516,1.8854,6.2496,5.6047,9.3244,9.9822,7.5827,6.9309,1.8869,2.0668,4.0647,4.1199,1.5572,1.619,17.5442,17.2447,5.5586,5.7343,3.2927,3.5958,1.0385,1.358,2.4732,2.8206,7.6768,6.2544,11.9343,12.0916,2.7873,3.3539,3.8946,3.7503,3.0337,3.6754,1.356,1.3087,3.1223,3.4659,10.0705,8.7818,2.5732,2.8,2.0409,2.1325,1.8857,2.0482,8.6664,10.436,1.9919,2.1999,1.9496,2.1122,11.6234,11.7764,1.5526,1.635,1.1126,1.1358,12.0086,11.6837,4.9458,4.7641,7.3483,6.9192,4.0085,3.5419,8.6424,8.8356,5.9959,5.9566,6.839,6.5138,3.1351,3.3739,1.3782,1.4902,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,359
+desd361,77,77,F,2.0414,1.7091,0.41783,0.45566,0.84292,0.8502,18.213,3.5829,3.0203,45.0054,46.7756,14.1435,14.2393,212.6126,209.4858,1.817,3.177,3.4019,0.6202,0.65416,15.1081,18.833,1.6509,1.6387,4.2836,4.4232,7.2796,7.4399,4.7913,5.0712,0.09828,4.6685,2.2158,2.6222,0.44246,0.42106,4.4161,5.0841,4.9269,4.7371,1.9919,1.7987,9.709,8.5735,3.3893,2.8913,4.2748,4.4052,3.9233,4.5504,1.6258,1.6616,2.0531,1.9881,3.757,3.5865,7.3967,6.974,2.2274,2.3336,6.1973,5.5669,11.4373,11.3263,8.01,7.5269,2.6412,2.9018,4.6501,4.7918,1.9726,1.9318,19.6234,20.5346,5.1453,5.7141,4.3013,4.472,1.1323,0.99196,2.7166,2.4369,8.135,7.5851,14.0727,14.5863,2.9953,3.2956,4.2554,4.3736,3.1299,3.3633,1.8216,1.8326,4.0363,4.6726,11.1301,11.5563,2.9846,3.1881,2.6484,2.855,2.5902,3.0844,10.9818,11.4351,2.8486,3.1128,2.3733,2.4695,11.8669,12.061,2.1254,2.5786,1.2498,1.3794,16.4195,15.2126,5.9048,5.5889,8.2692,11.0348,3.9083,3.2747,10.5549,10.7882,7.9778,7.1293,7.7904,7.7587,4.171,4.4704,1.6655,1.9146,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,360
+desd362,74,74,M,2.2559,2.528,0.34803,0.39708,0.74275,0.77196,16.4468,2.848,2.8472,45.5968,46.7756,12.9595,13.3298,197.3612,194.5846,2.3102,3.1337,2.886,1.3331,1.3765,24.6327,28.6518,1.4275,1.4046,3.3746,3.2132,6.3537,6.7086,4.3105,4.5147,0.0756,4.7028,2.1753,2.5756,0.37411,0.36975,4.0183,4.3647,3.7875,4.1751,1.7572,1.6135,9.768,8.4609,3.4589,3.3702,3.7962,3.9788,4.6451,4.406,1.4118,1.3872,1.9869,2.0334,3.5418,3.411,6.5852,6.4578,1.9915,2.0545,6.4052,6.0717,10.4651,9.9986,8.3148,7.704,2.2145,2.3258,4.5939,4.4675,1.8564,1.8874,17.552,19.015,5.1217,6.0602,3.681,4.0128,0.93798,1.0488,2.1484,2.5591,7.6309,7.3574,13.0804,11.9541,3.0377,3.7467,4.0666,4.6582,3.0623,3.2148,1.4656,1.3778,3.509,3.8719,9.1884,9.2995,2.516,2.9176,2.1187,2.224,1.8592,2.5377,10.5304,11.772,2.3487,2.6018,1.9729,2.1163,12.6393,11.5086,1.5961,2.0163,1.1558,1.225,13.7849,13.7179,5.4026,4.9523,6.6432,8.7663,4.8341,4.1038,8.8843,9.6752,5.8241,6.0871,6.8489,6.4164,2.9832,3.9953,1.2853,1.5798,,18,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,361
+desd363,70,70,F,2.2463,1.2763,0.35912,0.38133,0.6842,0.62575,18.1118,2.7349,2.6071,42.383,43.6108,14.3129,14.8204,202.9975,202.0467,1.764,2.8602,2.5658,1.6576,1.1008,23.1492,26.3035,1.5907,1.6443,3.9759,3.981,6.1025,6.4205,4.4218,4.6343,0.09071,4.0492,2.0073,2.6111,0.36046,0.36231,4.2008,5.0481,4.5555,4.4768,1.8186,1.6658,10.3699,9.9337,3.0369,2.787,4.0521,3.6886,4.5354,3.4644,1.2013,1.1384,1.9242,1.9128,3.8851,3.6831,7.0984,7.0253,2.1154,2.0571,6.6265,6.1018,12.3722,12.1164,7.6127,7.2232,2.2333,2.4862,4.5917,4.9408,1.854,1.9469,19.5505,20.0068,5.6415,6.7421,4.0524,3.8636,1.1739,1.3627,2.587,2.9477,8.0025,6.9166,14.1925,15.5411,2.6699,2.7448,4.3265,4.1288,3.1817,3.1566,1.5898,1.5459,4.2033,4.7197,10.2587,11.088,2.7099,2.9113,2.7653,2.9307,2.2924,2.4582,10.979,12.5961,2.2182,2.411,2.1795,2.4907,12.4333,12.9605,1.9259,2.0675,1.1482,1.1941,15.2759,15.2019,5.269,5.3068,8.2741,8.91,3.8563,3.309,10.4968,10.3864,8.0943,7.1293,7.2795,7.0857,3.9895,4.1668,1.5416,1.6291,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,362
+desd364,71,71,F,1.7152,2.1377,0.26494,0.28521,0.60264,0.65514,16.1588,1.7629,2.1284,42.1735,39.9639,14.8867,14.9308,218.2553,203.7548,1.7956,2.6107,2.4742,1.1642,1.3391,20.2083,27.0472,1.3945,1.4105,2.8007,2.9232,5.5443,6.3151,4.0971,4.4346,0.07726,4.3073,2.1845,2.0325,0.30289,0.30766,3.6304,3.6044,3.102,3.1761,1.4618,1.2075,8.8451,7.9211,3.0625,3.1377,3.6942,3.6877,4.3094,3.6811,1.2558,1.308,1.668,1.8755,2.9731,2.8665,5.1012,5.3721,1.6897,1.6654,5.7857,6.1125,7.2375,8.1732,7.4134,6.4468,1.7141,1.892,4.7066,4.7063,1.4247,1.4402,14.0834,14.4447,4.5528,5.794,3.0089,3.1058,0.86595,1.0087,1.9498,2.1198,6.2531,5.6687,8.7517,11.5039,2.6741,2.9422,3.9653,3.7844,3.0137,3.2688,1.1366,1.2007,3.8912,4.2252,9.8678,9.4214,2.4819,2.6325,0.89588,1.6036,2.0738,1.9084,7.7493,9.5154,1.8589,2.1077,1.236,1.8973,9.5908,10.6186,1.6213,1.6416,0.97823,0.99695,11.3672,11.627,4.3692,4.5958,6.609,7.8423,3.9446,3.3708,8.6424,9.8662,5.9204,5.6132,6.1074,5.995,3.2361,3.0846,1.2277,1.1738,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,363
+desd365,69,69,F,1.2011,1.5129,0.2921,0.29347,0.73701,0.69431,15.3515,2.4566,2.3782,38.1916,38.2802,12.6156,12.532,169.9447,167.2846,1.4058,2.9735,2.5551,0.60897,0.55943,9.7001,10.6452,1.3057,1.2745,3.0909,2.7618,5.4358,5.863,4.0474,4.1604,0.07921,3.9997,1.8047,1.9277,0.30675,0.31907,3.9181,4.1727,3.3686,3.5846,1.5816,1.1709,7.3584,7.8407,2.739,2.626,3.3527,3.5066,4.0486,3.7148,1.4702,1.3182,1.7128,1.6397,3.2698,2.954,6.094,5.6911,1.8534,1.8172,6.1881,5.5447,9.211,7.9189,6.4027,6.2007,1.8609,2.1157,4.7499,4.7252,1.5375,1.5917,15.809,16.5627,4.9289,5.7216,3.2639,3.332,0.86488,1.0864,2.2044,2.538,6.9634,6.1415,11.4926,9.4766,2.5253,2.5053,3.4624,3.2582,3.1353,2.6527,1.3055,1.3871,3.4464,3.6058,8.2793,9.303,2.3902,2.6572,2.1106,1.9715,1.974,2.0222,9.0554,10.3743,1.9175,2.1201,1.7206,1.9755,10.0863,10.6862,1.5651,1.8889,1.1226,1.0429,12.6635,13.4043,4.6055,4.2257,6.0292,6.5211,3.4514,2.789,8.1985,9.233,5.8814,5.1939,6.3501,5.8248,3.1211,3.4155,1.1819,1.3868,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,364
+desd366,,,M,1.7391,2.3245,0.37555,0.3989,0.91709,0.93247,16.0602,2.8217,2.7962,46.8493,46.8022,13.5695,13.7581,183.1204,181.6168,1.8472,3.8025,3.3839,1.3285,1.0467,24.5416,31.6678,1.6159,1.5537,3.2753,3.3626,6.6341,6.9036,4.3728,4.7548,0.08038,4.6495,2.2877,2.6607,0.38062,0.38747,4.6087,4.9722,4.1953,4.4273,1.7432,1.5872,8.4829,8.015,3.1995,3.1601,3.9873,3.8943,4.1096,4.3007,1.6107,1.8278,2.0489,2.0414,3.6164,3.1803,7.4213,7.0588,1.9635,1.93,6.4805,5.5182,11.7117,11.3782,7.9132,7.3043,2.1214,2.5188,4.8757,4.9916,1.6397,1.7445,17.0565,16.7287,4.9671,5.3321,3.7438,4.0818,1.4516,1.0778,3.1735,2.7168,7.5373,6.3241,14.4541,13.0691,2.7967,2.892,4.2732,4.3462,3.6103,3.4893,1.4701,1.6605,4.0406,4.5595,9.9208,10.5648,2.9279,3.2339,2.3147,2.5682,2.3324,2.5273,8.7594,10.25,2.2032,2.3339,1.957,2.1435,11.4501,11.229,2.1247,2.462,1.2017,1.2342,14.7075,15.0872,5.193,4.6149,6.3222,8.151,3.919,3.4312,12.3532,11.403,8.4022,7.5473,7.7616,7.2301,3.5429,3.6927,1.573,1.709,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,365
+desd367,66,66,M,0.84724,1.4936,0.39689,0.44694,0.80756,0.78801,19.3838,2.9065,3.0593,49.1356,50.4537,15.9503,16.1887,227.1472,218.6799,1.2298,3.1805,3.0423,0.44345,0.47239,11.4171,12.7441,1.48,1.567,3.6044,3.703,6.4733,6.5934,4.5012,4.7044,0.08194,4.5333,2.6456,2.8765,0.35605,0.38007,4.1325,4.6802,3.9139,4.0341,1.9076,1.4939,10.91,9.4337,2.4294,2.1827,3.878,4.0026,3.7092,2.9868,1.5735,1.446,1.7889,1.7242,4.0081,3.7032,7.4468,7.6804,2.1668,1.9794,6.3098,6.7557,11.6078,11.3352,7.5305,6.8854,2.2809,2.3889,4.7296,4.8735,1.7718,1.7519,18.9174,19.8127,5.2318,6.9267,4.0725,3.9303,1.423,1.2361,3.1735,3.0378,8.0011,7.1113,13.8663,13.9603,2.6801,3.3803,4.0096,4.3265,3.2923,3.215,1.6128,1.408,3.8961,4.0492,10.3809,10.5263,3.0949,3.1551,2.1346,2.2312,2.1501,2.398,9.1457,10.5872,2.3375,2.5716,2.004,2.2474,12.0085,12.6403,1.6382,1.8926,1.1297,1.1489,13.4679,12.9747,5.193,5.243,8.2762,9.9347,3.5958,3.2589,10.9979,11.3134,7.5951,7.2714,7.2099,6.8363,3.8343,3.8888,1.4436,1.4851,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,366
+desd368,65,65,F,1.0879,1.8093,0.32332,0.36515,0.82722,0.80109,15.9099,2.5579,2.3883,43.8192,42.4254,13.3111,14.0108,204.8212,205.4184,0.98803,3.251,3.0119,0.69172,0.75845,15.0453,18.3588,1.4337,1.4625,3.1653,3.3637,5.7788,6.0675,4.0793,4.2939,0.07082,4.3788,1.9541,2.4741,0.32441,0.35922,3.2997,3.8435,3.5431,3.8433,1.4349,1.3045,8.2133,7.4818,2.8545,2.5867,3.7405,3.9781,3.7315,3.7213,1.4859,1.4938,1.7125,1.7092,3.2104,3.0175,6.8553,6.6506,1.7754,1.977,5.9253,5.7929,10.2643,10.455,7.662,7.1023,1.8187,1.8717,3.9839,3.9827,1.4172,1.458,14.918,15.7862,4.8392,5.4096,3.113,3.678,0.92238,0.83313,2.0523,2.2657,6.4642,5.5425,12.096,11.453,3.1107,3.1964,3.7771,3.9532,2.755,3.153,1.2818,1.1783,3.3725,3.6227,9.4847,9.1919,3.0705,2.9739,2.1101,2.0623,2.3256,2.4721,8.0006,9.6605,1.8465,2.0224,1.8653,2.1122,9.3404,9.5779,1.6939,2.1903,0.9244,1.0193,12.2432,13.0674,4.4581,4.2257,6.7678,7.7036,4.0843,3.7136,8.2873,8.3738,6.047,6.5145,6.3126,7.1199,2.623,3.3566,1.426,1.5763,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,367
+desd369,72,72,F,3.4425,3.3687,0.14255,0.27429,0.5099,0.55213,18.029,2.1424,1.8892,49.1293,49.6968,15.3667,14.947,195.6455,202.1358,3.7567,2.4553,1.9484,1.614,1.6267,32.0847,32.1618,1.5656,1.58,0.79783,2.6212,5.9256,6.3966,4.6607,4.8807,0.06578,5.1249,2.5086,2.517,0.2665,0.13082,0.01082,3.5363,3.3117,1.3518,1.2952,1.1709,9.1916,9.7234,3.2294,2.8557,3.5019,3.4527,4.724,3.929,1.0283,1.0787,1.6408,1.4748,2.9731,2.9207,6.417,6.1736,1.5262,1.6461,5.6325,5.79,9.9723,10.9496,7.6609,7.54,1.8219,1.8303,3.8935,3.6438,1.3076,1.3178,14.6268,15.5038,4.2365,4.698,3.0279,3.16,0.78443,0.875,1.9498,2.1198,6.357,5.498,11.9567,13.2595,2.7527,3.1216,4.6824,4.4762,3.0043,2.7994,1.2926,1.097,3.4287,4.2617,9.3965,9.6138,2.6926,2.7527,1.7214,1.9992,1.8168,1.9767,9.2722,9.4062,1.4502,2.2928,1.697,1.8051,10.2695,10.6331,1.5787,1.6811,0.96188,1.0087,12.8693,0.00005,4.509,4.5871,6.6708,1.6946,4.0379,2.9199,10.6279,10.6914,6.5286,5.8972,7.0344,6.9869,2.6569,3.104,1.2066,1.2821,,23,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,368
+desd370,60,60,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,369
+desd371,65,65,M,1.0188,1.4794,0.39556,0.4675,1.0815,1.1002,20.4108,3.1739,2.9435,50.395,48.5069,17.1776,17.3113,277.1635,281.4037,1.1862,3.9806,3.5424,0.51741,0.47482,11.259,13.6102,1.767,1.8629,3.9813,4.0556,8.4121,8.5038,5.0292,5.2591,0.08351,4.4245,2.3995,3.0709,0.42315,0.42467,4.6799,5.2696,4.925,5.0995,1.9376,1.8866,11.1846,10.2967,3.7472,3.7189,4.2181,4.6612,4.8737,4.7242,2.0892,1.9169,2.2834,2.1815,4.3521,3.8796,8.4096,7.9531,2.4882,2.4793,6.4716,6.7557,13.0247,13.2137,8.4174,7.8711,2.4684,2.7463,4.8022,5.2025,2.1863,2.1228,21.4648,22.2924,5.3576,6.6668,4.4372,4.5409,1.0667,1.0919,2.7471,2.77,9.1315,8.0971,16.2557,15.3056,3.1577,3.4271,4.3781,4.6383,4.4008,3.921,1.8635,1.6954,3.9078,4.5055,11.2044,10.8436,3.637,3.9265,2.6001,2.5927,2.53,3.1023,10.1761,10.9396,2.5524,2.8981,2.3798,2.4552,12.2431,11.9634,2.0861,2.8052,1.359,1.3888,16.1595,16.3306,6.3356,6.4664,8.4112,10.0726,3.8405,3.3642,10.2496,12.0351,7.8592,9.266,9.1009,8.4288,4.0822,4.1858,1.6686,1.7888,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,370
+desd372,87,87,F,1.772,2.1606,0.21445,0.27353,0.52829,0.4964,16.484,1.7629,2.1338,44.3705,44.7677,14.8867,14.7727,211.4838,212.0212,1.6943,1.1821,1.9484,3.4118,2.4151,22.6621,21.0729,1.457,1.4886,2.6102,2.6696,6.132,6.6802,4.2108,4.3908,0.0789,4.5381,2.2016,2.1259,0.31657,0.2706,3.614,3.6567,3.4291,3.632,1.2883,1.1268,9.8024,9.7234,2.3802,3.0567,3.2306,3.2248,3.5198,3.5719,0.98201,0.91267,1.5522,1.7017,2.9731,2.9251,4.8245,5.6812,1.6023,1.6468,4.785,5.0515,7.2375,7.589,6.5715,6.4209,1.6103,1.892,3.9457,3.5663,1.2713,1.4058,15.3492,14.971,3.9986,4.7415,2.8596,2.9419,0.90001,0.875,2.1815,2.1719,6.3421,5.5465,7.0908,7.3624,2.5487,2.8563,3.6667,3.5787,2.7353,2.889,1.2868,1.2394,3.5454,4.313,9.0731,10.0704,2.4819,2.4135,1.8917,2.0284,2.176,2.0249,9.1566,9.5542,1.7699,1.8238,1.7939,1.7054,9.573,8.8425,1.8005,1.6919,0.96188,0.99363,13.6378,12.6978,4.5393,4.5158,6.6708,8.2933,3.3046,2.3676,9.7064,10.0019,5.8236,5.1665,5.3235,5.3971,2.8391,2.9626,1.1985,1.4067,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,371
+desd373,74,74,M,2.0435,1.7534,0.3806,0.43857,0.86543,0.90895,16.9774,2.6433,2.818,45.4266,46.4712,14.6255,15.2514,241.8319,240.4316,1.5056,3.4143,3.5722,0.67627,0.60964,14.164,15.393,1.682,1.7106,4.2836,4.4532,6.9078,7.0601,4.7595,5.2066,0.09828,5.0864,2.1742,2.6944,0.42152,0.43084,4.4161,4.8053,4.9298,5.0384,1.5345,1.4604,9.8237,9.1437,3.8419,3.4526,4.2875,4.4055,4.8737,4.7321,1.9038,1.7413,1.9053,1.9267,3.4999,3.3587,8.0655,7.6282,2.0366,1.9045,6.9397,7.1936,12.2567,12.1495,8.9198,7.8045,1.9009,2.4542,4.4352,4.7967,1.7934,1.8088,18.981,18.56,5.3816,6.9325,3.4848,3.8396,1.0365,1.2218,2.5254,3.0079,8.0025,6.9348,16.0082,14.581,3.8541,4.2514,4.5189,4.593,3.4063,3.5135,1.4353,1.5286,4.1452,4.4808,11.2044,10.7108,3.2935,3.5993,2.6482,2.7462,2.3698,2.4504,11.5448,13.0931,2.1623,2.4188,2.3544,2.4591,12.9718,13.939,1.9096,2.0633,1.3438,1.4764,14.6241,14.5441,5.5701,5.7834,9.2217,8.8607,4.6967,3.9613,11.1253,10.7558,7.9287,8.3187,8.8179,8.4709,3.1629,3.6655,1.5167,1.5945,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,372
+desd374,85,85,F,1.4892,1.6062,0.29812,0.32521,0.64534,0.68323,16.3066,2.3106,2.3381,39.8051,39.3698,12.9291,13.5987,227.4627,224.409,1.2727,2.7004,2.4133,0.39136,0.33556,9.3603,12.0323,1.5167,1.4856,2.9631,3.2904,5.9534,6.9973,4.4214,4.636,0.08537,4.1429,2.0009,2.0971,0.30474,0.33266,3.8971,4.2866,3.637,3.9336,1.6598,1.4159,10.2123,8.6968,1.7932,3.1943,3.2363,3.6814,2.8214,4.1909,1.4105,1.3025,1.9109,1.8169,3.2698,3.2036,6.8854,5.9755,2.1574,1.9565,5.3644,5.038,9.1167,7.6442,6.8706,6.2727,1.9941,2.1102,4.4848,4.6442,1.6283,1.7554,16.3854,17.4805,4.0521,5.5991,3.5988,3.7893,0.97379,0.88686,2.4699,2.1715,7.0663,6.0505,10.2149,9.1824,2.4489,2.8563,3.6227,3.6789,2.9823,3.2733,1.3766,1.2667,3.479,3.6734,8.8723,8.8843,2.5379,2.629,2.1078,2.0955,1.9454,2.0723,8.9115,10.4337,1.843,2.137,1.7444,1.9482,10.1076,12.3044,1.5651,1.6919,1.0981,1.1,12.5908,13.045,4.7624,4.6129,7.4612,8.3409,3.8231,2.8757,9.6188,9.4275,5.8236,5.5943,6.4081,5.8248,3.3741,3.4438,1.1629,1.4283,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,373
+desd375,71,71,F,1.3794,2.0062,0.33046,0.37961,0.75542,0.79791,17.1058,2.4055,1.8828,40.2924,41.9972,14.0525,14.3408,203.4714,200.6377,1.3542,2.8764,2.9775,0.96812,0.80996,12.8318,19.0423,1.4802,1.4815,3.0935,3.046,6.3214,6.4873,4.4025,4.5189,0.0694,4.4313,2.2288,2.3776,0.29862,0.33346,3.672,4.2377,3.3296,3.6208,1.7697,1.3901,9.8956,8.9056,3.0125,2.6481,3.7919,3.7099,4.1411,3.6652,1.6323,1.5051,1.5972,1.7166,3.5147,3.2042,6.702,6.399,1.887,1.8091,5.6349,5.4153,10.5139,9.8194,6.769,6.0849,2.2328,2.2163,3.9778,4.1749,1.8007,1.6848,15.1636,17.6316,4.0703,5.159,3.7058,3.3068,1.0259,1.0947,2.3254,1.9644,7.3543,6.6773,12.5317,12.9115,2.5854,2.8267,3.587,3.7395,2.7456,3.153,1.5009,1.3371,3.4634,4.0421,9.5306,9.3807,2.7282,2.9458,2.2631,2.2624,2.2739,2.3096,9.6857,9.8007,2.3858,2.3937,1.9084,2.2036,11.6645,10.0129,2.0422,1.8006,1.1135,1.1701,12.3468,11.8188,5.0937,5.0385,7.1713,8.903,3.7333,3.0401,8.8912,9.0897,6.212,6.1527,7.0624,6.9261,3.1503,3.2501,1.3263,1.4742,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,374
+desd376,,,F,1.3846,1.7585,0.31844,0.33873,0.77274,0.70882,15.9805,2.8108,2.4307,38.9738,39.9079,11.4282,12.3842,170.1503,166.9242,1.5709,2.7104,2.4995,0.84938,1.1214,14.9221,18.4698,1.3866,1.403,3.286,3.1679,5.9261,6.4532,4.1144,4.2449,0.0668,3.8533,1.7907,2.2459,0.30933,0.31612,2.7669,3.5612,3.3663,3.4425,1.532,1.2979,7.3412,7.1444,2.8211,2.9441,3.6505,3.3553,3.7766,3.8993,1.4808,1.467,1.7233,1.6433,3.1468,2.6735,5.6871,5.8168,1.6315,1.6765,4.974,4.5324,8.1681,8.0032,6.4011,5.7436,2.0669,2.0121,3.1064,3.9956,1.5055,1.4147,14.4447,14.4447,5.1691,4.7936,3.3353,3.4097,0.96676,0.93037,2.313,2.2649,6.5291,5.903,11.6241,9.4766,2.3938,2.5231,3.271,3.5683,3.0137,2.6236,1.2908,1.2633,3.3466,3.5421,9.1521,3.5147,2.7143,2.7336,2.1241,2.1371,2.0023,1.9224,9.6469,9.4049,1.7636,2.0597,1.9439,2.0525,10.9179,11.0377,1.6377,1.7658,1.0962,1.2045,11.7757,11.5908,3.9761,4.3065,6.3379,7.378,4.1722,2.9199,9.3873,9.8046,5.7204,5.5943,6.4215,6.5678,2.9019,2.9014,1.2729,1.2649,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,375
+desd377,,,F,2.1187,2.4283,0.38094,0.49937,1.0559,1.0069,20.0813,3.0452,2.8802,48.9778,49.9324,15.0686,15.8368,261.275,248.9335,1.9461,3.9712,3.5729,0.831,1.1687,27.5036,30.2222,1.6471,1.5566,3.6831,3.7221,7.6391,7.7881,5.0063,5.3238,0.08054,5.4387,2.4571,2.893,0.37346,0.37608,5.0313,5.6897,4.1799,4.8254,1.7309,1.6047,11.0596,10.3484,3.5348,3.3101,4.2881,4.9912,4.9726,4.4991,1.9368,1.9961,2.2787,2.1078,4.0838,3.8704,7.5062,7.4051,1.9341,1.936,6.5246,6.0712,12.0794,11.7584,8.4697,7.5458,2.3921,2.5063,4.652,4.9895,1.7081,1.7141,19.5598,19.4086,5.92,6.5712,3.6669,3.8828,1.3128,1.1895,2.9837,2.8704,7.7435,7.4088,14.935,13.2979,3.3631,3.7074,4.2576,4.1181,4.1181,3.6874,1.6274,1.6744,4.044,4.7787,11.3053,11.1584,3.1361,3.3253,2.3321,2.5062,2.6122,3.0844,10.9354,12.6483,2.3984,2.6027,2.1327,2.5914,13.6313,13.6084,2.0618,2.4655,1.2283,1.2912,16.0886,14.4207,5.2705,5.9736,9.1233,10.377,4.3351,3.4122,11.0128,11.6813,7.9658,7.5473,8.8386,8.5195,3.5559,4.0344,1.5697,1.9738,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,376
+desd378,83,83,F,1.6495,1.578,0.38217,0.37955,0.7373,0.67729,16.6248,3.0643,2.5095,43.6651,43.2517,12.2102,12.5481,195.4331,197.3386,1.9729,3.1622,2.8167,0.75245,0.55524,26.0515,31.0712,1.6159,1.5537,3.514,3.5903,6.7414,6.8049,4.3405,4.5977,0.07095,4.5693,2.0673,2.296,0.35605,0.38153,3.9432,4.2462,4.1337,4.1862,1.778,1.5141,10.3955,9.2691,3.479,3.8733,4.168,4.0153,5.1395,5.4507,1.381,1.3091,2.0011,1.8469,3.5537,3.3666,6.7847,6.4232,1.9391,1.9458,7.1056,6.3359,10.8711,9.9612,7.8739,7.4427,2.1154,2.4243,4.7753,4.8286,1.6627,1.7445,17.3403,17.3969,5.6475,6.1245,3.7921,3.7696,0.97369,1.0076,2.4737,2.456,7.0561,6.5523,14.0717,13.4344,3.2264,4.0623,4.16,4.1288,3.614,3.3086,1.4499,1.4181,3.5546,4.1836,11.9276,11.4987,2.8008,2.8411,2.3147,2.2809,1.8993,2.1472,10.7561,12.3899,2.3145,2.3726,1.9547,2.3019,11.8972,12.05,1.6913,1.7569,1.0979,1.1631,11.7635,12.7452,4.5318,4.786,8.3165,9.0017,4.5964,4.0874,11.0118,11.9597,7.7819,7.1143,7.2185,6.3555,3.2982,3.5497,1.3499,1.3936,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,377
+desd379,75,75,F,1.2991,1.6239,0.31039,0.34579,0.66914,0.6961,16.3066,2.514,2.4381,40.9338,41.159,12.3257,12.4668,187.1765,188.3036,1.4058,2.6384,2.3904,1.2937,0.9251,16.5462,18.5819,1.357,1.3672,3.0868,3.1088,5.6208,6.0637,4.1085,4.377,0.07429,4.3562,2.1362,2.2662,0.32989,0.34001,3.3315,3.7859,3.3117,3.473,1.6117,1.2721,8.2133,7.4818,2.8194,2.6499,3.1371,2.9876,4.4069,4.1589,1.2702,1.5362,1.4777,1.401,3.3099,2.9676,6.4935,6.1158,1.7086,1.6765,5.3701,5.398,9.7293,9.7692,7.1372,6.2984,2.1926,2.1329,3.7048,4.0876,1.3406,1.3034,15.7992,15.3283,4.8068,4.6049,3.1075,3.4232,0.94522,0.94874,2.4027,2.3324,6.2177,5.8552,11.5183,11.7615,2.6636,2.8064,3.8353,3.4255,2.9142,2.5717,1.4436,1.3086,3.1522,3.4752,8.4179,8.0475,2.5166,2.6127,2.0291,1.9054,1.7073,2.0783,9.0756,10.0487,2.254,2.2464,1.9277,2.0972,10.5813,11.2346,1.456,1.7159,0.99225,0.98202,12.1772,12.0462,4.6979,4.6898,6.4474,7.8321,3.6579,2.7544,9.1786,9.4147,6.3734,6.1784,6.2058,6.6038,3.1721,3.4438,1.2186,1.543,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,378
+desd380,77,77,M,2.2224,1.9983,0.37516,0.43295,0.76377,0.78073,16.9601,3.0005,3.1944,43.9993,44.2579,13.4651,13.6165,201.0276,203.3715,2.2128,3.1412,3.1525,0.75245,0.56028,26.7509,21.5998,1.4427,1.4159,3.4167,3.5927,6.2917,6.46,4.4063,4.5547,0.09045,4.5531,2.1521,2.296,0.42742,0.4061,4.143,5.0062,4.3287,4.8409,1.5345,1.5065,9.2757,8.9824,2.8136,2.8104,4.0554,4.6146,4.2835,3.4644,1.4921,1.4976,1.9935,2.0581,3.635,3.331,7.0622,7.3628,2.0366,2.0663,6.4874,6.0351,11.4342,11.1036,7.2789,6.5803,2.0704,2.2619,4.4076,4.6051,1.8834,1.9333,17.6547,18.181,5.1801,6.0602,3.5202,3.8401,0.95669,1.036,2.516,2.5689,7.9189,7.3397,13.8534,13.2595,2.877,3.2409,3.9848,4.1406,3.0972,3.3007,1.5239,1.2838,4.2069,4.472,10.3551,9.8269,2.7524,3.0974,2.4777,2.4725,2.0408,2.3937,10.0021,10.2494,2.3338,2.3132,2.1977,2.5326,11.3694,12.8841,1.9995,1.9749,1.3166,1.3515,13.0346,13.7731,5.2241,4.8956,7.5073,8.5755,3.8052,3.4278,9.7314,10.1731,7.7471,6.628,7.2185,6.9968,3.4653,3.3312,1.6457,1.741,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,379
+desd381,,,F,1.7082,1.0793,0.00009,0.02263,0.18236,0.51612,2.0826,0,0.00075,36.5871,37.5645,13.6038,10.7472,61.8725,128.6959,1.5533,2.239,1.3047,1.139,1.6288,16.8999,23.0926,1.3485,1.3058,0.23437,0.32999,5.6051,5.6673,3.6911,3.8383,0.07222,4.1908,1.6853,2.0198,0.2665,0.2964,0.00729,0.02955,0.72891,1.3518,0.0014,0.00008,5.3578,7.3169,2.9727,2.9829,0.30663,0.43185,3.7473,3.7841,0.84711,1.0768,0.75116,0.02155,0,1.9083,3.8349,5.6822,0.23156,0.52539,5.4548,4.7187,7.2375,9.0866,7.0311,6.1704,0.07,0.06594,0,0,0.66198,0.13214,6.9551,0,4.3704,4.8572,1.0424,1.6839,0,0,0,0,0.02225,0.00791,8.3232,10.6368,2.3425,2.5733,3.587,3.6789,0.00048,0.00223,0.00001,0.65244,3.4287,4.1002,7.7781,10.1114,1.593,2.0225,1.7966,1.6945,0.38842,1.5192,0,0,0.77084,0.90385,1.6502,1.7069,0.00012,10.5862,1.4138,1.3453,0.43488,0.64464,6.0263,0.00005,0,3.5064,5.1788,1.6946,3.7366,2.0489,7.6841,7.7857,4.9691,3.8933,4.674,4.7509,1.1485,0,1.2951,1.066,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,380
+desd382,73,73,F,1.002,1.1684,0.35701,0.39595,0.92165,0.93429,18.9336,2.4968,2.609,48.463,47.9713,14.1985,14.6072,198.5983,189.1448,1.2408,3.3175,3.1428,0.32887,0.35349,9.3603,9.9571,1.4275,1.4602,3.1602,3.33,6.7086,6.9922,4.3976,4.5189,0.07534,4.5801,2.2973,2.4886,0.4105,0.40503,4.1159,4.6834,3.9349,3.8022,1.7091,1.4409,7.9801,8.2347,3.2221,3.4855,3.182,3.5014,4.6451,4.3597,1.8413,1.7519,1.9211,1.819,3.3057,3.2506,8.055,7.714,1.9102,2.0006,6.4317,6.1849,11.6498,11.941,7.5535,7.2396,2.279,2.3699,4.7042,4.8644,1.6815,1.6954,17.3195,17.7638,4.6431,5.5006,3.9181,3.7711,1.423,1.1154,3.1132,3.0629,7.7854,6.9348,13.3617,13.8299,3.327,2.9863,4.3247,4.2021,3.307,3.1919,1.4622,1.4362,3.6767,3.8112,8.7178,9.5578,3.1056,3.4163,2.0102,2.1205,1.8811,2.1756,9.279,9.8247,2.659,2.4218,1.8467,2.1408,10.3723,10.1415,1.5772,1.8005,1.1388,1.1887,13.5861,13.3816,4.9632,5.3547,6.8963,7.816,4.3785,3.1461,8.8864,10.2199,6.8894,6.1527,7.6754,7.3685,3.4306,3.4615,1.289,1.4584,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,381
+desd383,57,57,F,1.3714,1.8035,0.34365,0.36928,0.73506,0.75144,17.0656,2.6297,2.6558,28.1916,26.922,13.5201,13.9885,218.897,213.4574,1.0877,2.9848,2.7632,0.48748,0.37352,7.6903,9.9204,1.5114,1.5046,3.6304,3.7227,6.5912,6.924,4.276,4.444,0.06204,4.6274,2.1431,2.4586,0.3558,0.35979,3.6402,4.4029,3.9905,4.038,1.7043,1.4819,9.3639,7.3997,3.2457,3.2515,3.8236,3.6323,4.3664,4.1656,1.4809,1.5192,1.9924,1.7317,3.2631,3.1008,6.7114,6.5727,1.843,2.0281,6.7628,6.1276,10.1663,9.7698,7.3151,6.7015,2.2034,2.0354,4.2837,4.3498,1.6526,1.8517,17.6219,17.8216,5.1508,6.069,3.6668,3.9596,1.0259,1.0262,2.3434,2.5356,7.7596,7.0358,13.4647,12.256,3.2217,3.7357,3.9088,4.0099,3.0972,3.61,1.5788,1.2491,3.6985,3.7867,9.5387,9.2741,2.6071,2.7702,2.2439,2.2224,2.225,2.3918,10.5362,11.0565,2.2575,2.3944,2.0147,1.9493,11.4539,12.536,1.6213,2.0261,1.0864,1.1799,13.233,13.0945,4.4777,4.7787,6.9792,7.6417,4.5806,3.5506,9.7064,9.7759,6.5102,6.4193,6.9366,7.2069,3.4253,3.3739,1.3872,1.508,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,382
+desd384,70,70,F,2.4142,2.4877,0.40041,0.4186,0.91559,0.7873,16.0109,2.8766,2.7813,27.9343,24.6806,11.3847,9.2054,234.1269,236.364,1.5899,3.8025,3.6322,0.5229,0.70554,21.7125,25.9601,1.6255,1.6023,3.3926,3.3873,7.2696,7.7356,4.6439,4.9084,0.08415,4.9986,2.1931,1.4796,0.40169,0.41197,4.2935,5.1149,4.2071,4.378,1.8168,1.7542,10.8312,8.8843,3.8735,3.6257,3.9303,4.1119,5.6182,4.8355,1.7387,1.5724,2.0791,2.0414,3.757,3.5467,7.2503,6.9971,2.1899,2.2216,7.3613,6.143,11.9174,11.4696,8.7503,7.9282,2.4708,2.5783,5.035,4.9652,1.9531,1.9318,18.9489,18.7659,5.7094,6.3027,3.8753,4.2189,1.2605,1.2289,3.018,2.8146,8.6373,7.3094,14.6283,14.2003,3.0004,3.2917,4.453,4.2296,3.5463,3.1375,1.5594,1.589,4.4736,4.8769,10.5846,10.4413,3.1552,3.3151,2.313,2.5299,1.806,2.1615,9.7635,11.3454,2.6906,2.6789,2.1845,2.5945,12.4481,13.2651,1.5779,1.9479,1.3445,1.4624,14.4163,14.4765,5.1721,4.9381,6.8857,8.0251,3.8405,3.7422,9.1951,9.1445,7.6795,6.8017,8.5225,8.1635,3.1766,3.9042,1.49,1.6145,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,383
+desd385,56,56,M,2.6594,1.8463,0.39851,0.42069,0.81764,0.82359,17.815,3.2034,3.0369,52.0037,52.0429,13.8184,14.1073,222.1523,214.3011,2.6887,3.0836,2.9412,2.0116,1.7961,37.5915,42.465,1.636,1.6259,3.6831,3.6962,6.9843,7.1651,4.5871,4.7797,0.06139,5.1974,2.3642,2.6146,0.36143,0.38007,4.2224,4.6228,4.3175,4.2489,1.9736,1.612,11.5855,10.5471,3.3215,2.9452,4.4897,4.0324,4.7764,4.6438,1.5758,1.6922,2.2165,2.0577,3.9318,3.5591,7.207,7.5082,1.9946,2.0778,7.3182,7.0548,11.1621,11.0308,8.3029,8.0496,2.5124,2.6274,4.3437,4.7763,1.9407,1.9858,17.9655,19.216,5.4008,7.0929,3.8847,3.8666,1.069,1.3124,2.5152,2.823,7.7828,7.3574,13.8898,12.8189,3.7035,4.3637,4.3302,4.473,3.4523,3.4322,1.7912,1.8031,4.0128,4.6291,11.011,11.1584,3.0453,3.2543,2.5579,2.2809,2.1122,2.6183,11.4189,13.1117,2.3079,2.345,2.333,2.3694,12.0913,11.5328,1.8799,1.9438,1.1184,1.1554,14.0477,14.2564,5.5017,5.1257,8.2807,9.2919,5.1129,3.9202,12.5354,11.8119,8.0088,7.6602,7.358,7.0813,3.7943,4.1072,1.5927,1.5567,,17,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,384
+desd386,,,M,3.2846,2.7696,0.31531,0.39194,0.62673,0.71697,15.1615,2.7199,2.9263,38.8014,41.5414,11.4186,11.7189,160.604,150.5561,2.3965,2.8982,2.8842,2.1753,1.333,48.6081,58.4504,1.1776,1.1916,3.2657,3.5409,5.1972,5.319,3.6709,3.8378,0.06455,4.0486,1.8736,2.2808,0.36143,0.34739,3.7918,3.7891,4.0089,4.0614,1.5496,1.3274,8.1014,7.946,3.0725,3.2017,3.3183,3.2123,4.091,3.713,1.279,1.4147,1.8537,1.4748,2.924,3.037,6.9996,6.6064,1.727,1.8086,5.8928,5.5447,9.9931,10.5122,6.9544,6.7001,1.9673,2.1558,3.8826,3.7226,1.4928,1.5133,15.2981,16.5266,5.347,5.5906,3.0127,3.3918,0.92446,0.93037,2.2447,2.0936,6.511,5.7123,11.8607,12.0241,2.8122,3.015,3.5347,3.6566,3.1312,3.0674,1.2625,1.4418,3.0563,3.7611,8.9106,8.4977,2.7302,2.8994,2.4494,2.394,1.7456,1.8166,8.8763,10.0487,2.1132,2.3736,2.1189,2.1754,10.6811,10.188,1.5177,1.486,1.1105,1.1931,12.0196,12.524,4.3475,4.2596,7.0421,7.8423,3.7534,3.4441,8.5685,8.9853,6.6898,6.0762,6.7323,6.8856,3.1308,3.3662,1.26,1.2893,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,385
+desd387,,,M,1.472,1.8551,0.30712,0.33912,0.7685,0.73343,17.3862,2.4722,2.4484,49.6817,47.6329,15.5442,15.9507,193.0484,189.237,1.2759,3.0757,2.7903,0.55737,0.49065,11.8023,13.7011,1.4893,1.4664,3.1985,3.1348,5.9142,6.0018,4.2859,4.4911,0.07934,4.4525,2.6456,2.801,0.32441,0.35654,3.3465,4.3084,4.0374,4.193,1.6345,1.4608,9.5082,6.9954,2.9937,2.9829,3.4136,3.6124,4.4989,4.0667,1.4693,1.4953,2.116,1.9849,3.5843,3.252,6.8726,6.4578,1.9263,1.9584,5.7045,5.9829,11.0778,9.4626,7.972,7.5597,2.1682,2.259,4.1371,4.2942,1.6125,1.6649,18.3467,18.7835,4.4835,5.121,3.6635,3.5098,1.25,0.94038,2.527,2.4201,7.2112,6.3666,13.799,12.1538,2.7174,3.0273,4.0927,4.5486,3.9717,3.507,1.5866,1.55,3.8029,4.1069,10.2546,10.4332,2.6235,3.0296,2.117,2.2649,1.874,2.5377,9.1919,10.4789,2.3685,2.3644,1.9273,2.2574,11.0874,11.6058,1.6362,1.8926,1.1141,1.1941,13.0274,13.6532,5.1361,4.9362,8.0882,8.4672,3.8669,2.7232,8.6424,9.6846,7.3304,7.3087,7.1958,6.8396,3.6156,3.6503,1.2969,1.5661,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,386
+desd388,67,67,M,2.201,2.8467,0.39919,0.41321,0.90347,0.90626,17.7762,3.9094,3.6104,50.477,49.2328,13.2315,13.6731,179.8113,173.4067,2.1285,3.4753,3.3166,1.5234,1.6117,24.6327,31.4738,1.4275,1.5129,3.5275,3.8527,7.2128,7.5892,4.4045,4.5855,0.07643,5.1249,2.245,2.7782,0.39005,0.39072,4.7063,5.1765,4.102,4.5626,2.0518,1.7823,12.3409,10.4668,3.2742,3.1572,4.0791,4.1877,4.7458,4.5748,1.8057,1.7002,2.1354,2.0053,3.9948,3.633,8.3586,7.8013,2.1558,2.0666,7.5239,6.4983,13.4129,14.1385,8.4717,7.8848,2.5661,2.7207,5.342,5.247,1.9134,1.9384,21.1619,19.892,6.3417,6.5278,3.9365,3.9386,1.0477,1.2412,2.7296,2.5701,8.3811,7.27,16.4933,16.2596,2.9033,3.2287,4.0602,4.5181,3.7747,3.4918,1.668,1.8233,4.2871,4.728,11.1316,11.6249,3.0666,3.3833,2.7146,2.7114,2.3616,2.4288,11.6598,12.3416,2.5828,2.6564,2.6326,3.0548,13.3306,15.0108,1.9339,1.9948,1.2988,1.3265,15.3549,17.5194,5.3775,5.684,8.5548,9.2919,3.733,2.9982,11.3561,9.9939,7.1236,7.9968,8.5754,8.7519,4.0125,4.5557,1.5416,1.7839,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,387
+desd389,76,76,M,2.0283,1.6631,0.36748,0.38915,0.80898,0.75558,18.2488,3.2752,2.8943,48.961,48.7685,13.2285,13.5793,195.3437,191.9704,2.0004,3.2757,2.9947,0.80317,0.84609,30.9267,28.8535,1.5456,1.5505,3.8694,3.6271,7.0232,7.3053,4.496,4.6343,0.06422,5.1249,2.3151,2.7688,0.41104,0.39221,3.955,4.6638,4.5114,4.6694,1.778,1.6258,9.9299,9.0159,3.3191,2.8913,4.103,3.6323,4.8252,4.3741,1.6944,1.5579,1.9812,2.1016,3.7029,3.4204,6.8956,6.7072,2.1301,2.2165,6.4392,5.9517,11.4971,10.8031,7.9709,8.097,2.0758,2.5249,4.4194,4.7261,1.8624,1.9,18.9592,18.2848,5.1217,5.6353,3.8495,4.3148,1.0743,1.3481,2.4975,2.9781,7.8807,7.1463,14.3478,13.0863,3.0013,3.0963,4.3109,4.0253,3.8191,3.2797,1.457,1.5328,4.074,4.5228,11.9621,11.1221,2.9241,3.1414,2.3183,2.5536,2.0051,2.399,10.2031,11.7189,2.2296,2.4754,2.0678,2.5356,12.7529,13.2339,1.5961,2.1613,1.3989,1.4805,14.6309,14.8706,5.2705,4.9228,7.077,8.2931,4.2872,3.3455,10.754,11.0679,7.3023,6.807,7.2326,7.2301,3.4093,3.6669,1.3402,1.7839,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,388
+desd390,65,65,F,1.3555,1.8403,0.36347,0.40699,0.76775,0.77227,17.684,2.855,2.7236,47.2334,47.8707,14.2836,14.6336,204.8771,207.8898,1.368,3.2704,2.9702,0.39191,0.42677,13.0689,15.1691,1.4537,1.4491,3.7943,4.0042,6.6749,6.924,4.1359,4.2939,0.07498,4.6817,2.1308,2.8787,0.37755,0.35469,3.2603,4.0531,3.928,4.0966,1.6717,1.5808,10.6495,10.2165,2.4982,2.614,4.1768,4.2639,3.6957,4.0441,1.6425,1.4683,1.9782,1.9355,3.4889,3.0359,7.0693,7.1654,1.9519,1.9565,6.4673,6.0712,11.031,11.089,7.4874,6.8663,2.1682,2.4125,4.1164,4.2647,1.5715,1.5494,18.1699,18.1785,5.2515,6.5332,3.5735,3.7696,1.0793,1.0262,2.5962,2.5799,7.2702,6.029,14.6532,14.7968,2.5739,2.8725,4.0096,4.2366,3.279,2.7665,1.5768,1.6004,3.9087,4.325,10.5983,10.3743,2.8873,2.9862,2.2595,2.3419,2.3003,2.5248,9.5763,10.8314,2.1149,2.5716,1.9836,2.3492,11.6145,12.0433,2.0754,2.2746,1.1141,1.2219,14.4175,15.2734,4.7624,5.1211,7.2171,8.3731,3.6415,3.1632,10.6498,10.7687,6.6149,7.8232,7.1644,7.0025,3.7217,3.6669,1.455,1.7436,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,389
+desd391,72,72,F,2.5027,2.2419,0.26034,0.29365,0.66067,0.66117,15.0058,1.6327,2.2076,39.9028,40.733,12.3303,12.8799,171.7744,166.9242,2.3921,2.9639,2.6601,1.0036,1.2492,27.4336,32.0552,1.376,1.4105,3.1281,3.1348,5.5596,6.2038,3.8951,4.0697,0.06455,3.9853,1.992,2.3747,0.33227,0.30427,3.5383,3.8019,3.3259,3.4294,1.3442,1.1981,8.3589,7.2641,2.9997,3.1124,3.1371,3.2403,4.2131,3.9989,1.3537,1.3399,1.4777,1.4889,3.0618,2.837,6.3894,6.0792,1.6336,1.5903,5.5892,5.0373,9.6125,9.6013,7.4049,6.9013,1.8843,1.7794,3.5392,4.1221,1.4448,1.3547,14.6268,15.4102,4.4501,4.7696,2.8623,3.1058,0.86488,0.99768,1.9324,2.1198,6.2368,5.4923,11.259,10.7707,2.2418,2.7624,3.9017,3.5079,2.482,2.5914,1.3296,1.1352,3.0558,3.7408,9.5582,9.0895,2.6072,2.6956,1.8902,2.003,1.9454,1.8952,8.5085,10.0321,1.9982,1.9931,1.7118,1.9091,10.5813,9.6896,1.4714,1.486,0.93125,1.0196,11.8048,11.5908,3.9413,4.1638,5.9791,6.8321,3.5341,2.6645,8.7626,9.1825,5.9154,5.2566,6.5621,6.5267,2.8801,2.9625,1.194,1.2057,,4,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,390
+desd392,67,67,F,1.6407,2.0759,0.32688,0.35956,0.67283,0.61588,16.589,2.7705,2.7309,42.862,43.9089,12.1553,12.5481,183.5008,189.0925,1.6254,2.8602,2.5612,0.90852,0.93226,13.6285,18.1597,1.357,1.3464,2.8663,2.9232,6.1317,6.1409,4.0971,4.2449,0.06836,4.0268,1.9878,2.2817,0.31235,0.32294,3.5866,3.7709,3.7741,3.8937,1.6303,1.4061,8.749,8.7033,2.7178,2.7326,3.2858,3.7772,4.2043,3.8057,1.4493,1.335,1.7385,1.7952,3.2479,3.2423,6.3907,6.3928,1.6976,1.7443,4.3628,5.398,9.917,9.5955,7.1017,6.4803,1.936,2.0892,4.7066,5.1063,1.5055,1.5077,14.5359,14.971,4.4493,4.9091,3.3085,3.563,1.0589,1.1753,2.4473,2.5823,6.4216,5.5425,11.541,11.3677,2.0437,2.4683,3.6822,3.6566,3.3687,2.8977,1.3185,1.3871,3.6395,3.8171,9.6531,10.4289,2.5317,2.559,2.0525,2.1711,1.9255,1.9224,8.9115,11.0625,2.0676,2.207,1.928,2.1727,10.5223,11.7862,1.5466,1.6056,1.1388,1.1,13.7606,13.1831,4.612,4.5201,7.2698,8.5838,3.9037,3.0659,9.4004,9.8267,6.2713,5.8152,6.6545,6.051,2.9217,3.4155,1.3581,1.2955,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,391
+desd393,69,69,F,0.82014,1.9381,0.38153,0.41064,0.90904,0.90859,18.8633,2.7501,2.7172,53.872,51.2891,15.6745,16.8369,251.9128,250.5173,1.0269,3.6718,3.2736,0.42116,0.44524,8.5651,7.5408,1.7496,1.698,3.9125,3.8966,7.6923,8.049,5.0371,5.2838,0.0767,4.6296,2.2352,2.97,0.38394,0.41433,3.6227,4.1262,3.7583,3.9433,2.1278,1.8047,12.1452,10.4851,3.1256,3.0552,3.5122,3.725,4.7354,4.5713,1.8746,1.6972,1.7588,1.8403,4.4396,4.1805,8.289,7.9227,2.2903,2.238,7.1181,6.9187,12.0698,11.0984,8.0098,7.7402,2.6877,2.6354,4.1272,4.2561,2.0461,1.9821,22.3019,20.2197,5.7511,6.4612,4.2661,4.623,1.2433,1.2654,2.8339,2.9189,6.6631,5.8604,15.2442,13.678,3.7035,4.3907,4.3736,4.5027,4.1684,3.7671,1.8682,1.502,3.915,4.3043,11.7678,11.2292,3.2494,3.3253,2.0891,2.2052,2.2098,2.0094,9.877,11.3727,2.5801,2.8383,1.7805,2.0773,14.1394,15.3695,1.8111,1.8484,1.2792,1.2697,15.2906,16.2906,4.7566,5.1211,7.8348,8.8807,4.6947,3.6511,10.0179,10.2812,8.0468,7.9303,8.5115,8.0899,4.0204,3.787,1.2908,1.3774,,29,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,392
+desd394,,,F,1.2254,1.3062,0.35806,0.42314,0.81267,0.71904,15.3697,3.2366,3.0836,46.0148,45.5105,12.6874,14.0604,208.9435,206.1839,1.2586,3.3722,3.0505,0.35824,0.37161,10.462,10.9836,1.3494,1.3074,3.4841,3.605,6.3432,6.5824,3.8353,3.9321,0.07213,4.7108,2.1287,2.6648,0.37417,0.36187,3.4618,4.2382,3.7839,3.8937,1.7927,1.598,9.768,9.6711,2.7307,2.7791,3.5421,3.1584,4.1683,3.9864,1.6396,1.1769,1.7505,1.9466,4.0582,3.6603,7.0693,7.1654,2.1154,2.0292,6.0062,6.7482,11.756,11.0215,6.9763,7.1866,2.2373,2.3057,4.2587,4.3288,1.7617,1.7345,19.0404,19.922,4.9023,6.6593,3.9961,3.9652,1.051,0.87729,2.5278,2.1295,7.7075,6.6879,14.5391,14.557,2.7992,3.1911,3.8619,4.0772,2.5408,3.4049,1.5009,1.2603,3.6401,4.0433,9.1747,10.0151,2.8675,2.9739,1.941,2.065,1.9935,2.1097,10.0432,11.3227,2.4142,2.4252,1.7949,2.0831,11.1964,11.9453,1.7022,1.8587,1.2042,1.3157,14.6543,15.3658,5.1062,5.2108,7.6708,8.7829,3.9259,3.7136,9.4309,10.0089,7.1474,7.0429,7.1243,6.8292,3.4372,3.3907,1.3803,1.387,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,393
+desd395,79,79,M,2.3616,2.0275,0.38417,0.39958,0.86217,0.84092,18.1318,2.6583,2.5944,52.0037,52.0746,15.0585,15.5424,231.9271,224.2628,1.7846,3.6263,3.2316,0.75266,0.86062,20.8601,25.9601,1.6406,1.654,4.0497,4.2169,7.663,7.8413,4.6624,4.8669,0.07789,5.521,2.245,2.9675,0.37909,0.40256,4.3461,4.9454,3.8379,3.9136,1.7091,1.6095,8.9804,8.6328,3.479,3.6252,4.058,4.0155,4.8648,4.3545,1.7707,1.6314,2.0217,2.1427,3.2742,3.0811,8.3507,7.6282,1.9635,1.993,6.628,6.2071,12.0676,11.0853,9.245,8.0287,2.2262,2.4247,4.57,5.0769,1.6585,1.7653,19.6031,19.0645,5.1801,5.981,3.7639,3.7608,1.4516,1.1039,3.123,2.631,7.5962,6.458,14.8922,13.0271,2.9069,3.6447,4.2481,4.2973,3.7979,3.0023,1.589,1.8031,4.1532,4.0821,10.4286,10.0906,3.1447,3.2955,2.1967,2.2288,1.9877,2.2906,10.2815,10.2494,2.3369,2.3339,2.0261,2.3153,11.8631,12.5485,1.5961,2.1445,1.1721,1.2805,13.4644,14.0875,5.269,4.7741,7.7627,8.3272,4.1087,3.7914,10.6544,9.9727,7.8387,7.5846,8.0132,7.5783,3.9268,4.0317,1.2959,1.672,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,394
+desd396,,,F,1.3846,1.2513,0.33279,0.36562,0.77569,0.73163,14.4094,3.0468,2.8869,15.1677,8.4133,3.8003,2.9582,167.8266,166.051,1.2759,3.0233,2.8601,0.64781,0.68477,12.81,16.3416,1.1754,1.1916,3.6883,3.3777,5.3608,5.5218,3.4773,3.8961,0.08356,3.8533,0.88859,1.9396,0.36673,0.34565,3.6592,4.0964,3.8936,3.7464,1.6958,1.563,8.2922,7.1037,2.8194,2.8439,3.755,3.8891,3.2424,4.3597,1.557,1.4891,1.5209,1.6262,3.3155,3.1138,6.1247,5.8516,1.8886,1.8037,5.1878,4.5324,9.3017,8.9927,6.263,6.2959,1.9941,2.2721,4.2837,4.4628,1.585,1.5646,16.507,17.3935,4.0341,5.4096,3.5397,3.7671,0.8586,1.1048,2.4657,2.1956,6.9543,5.955,10.7111,10.6368,2.3938,2.5508,3.6369,3.0676,2.8424,2.4859,1.3375,1.4125,3.5786,3.8922,9.7507,9.6675,2.7143,2.7836,2.1427,1.9738,1.8636,2.187,9.0756,11.7269,2.0676,2.5069,1.7033,1.8391,10.8645,11.7862,1.6954,1.5947,1.0691,1.0558,11.5871,12.3486,4.7562,4.7393,6.7592,7.8429,3.9022,3.0052,9.4004,8.8561,6.3164,5.4729,6.5082,6.2387,3.018,3.1986,1.369,1.1738,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,395
+desd397,71,71,M,2.154,1.4758,0.38384,0.43293,0.9583,0.94756,17.8395,2.4192,2.483,47.8771,48.0839,14.6129,14.7204,261.275,255.7585,1.5056,3.9042,3.6808,1.0017,0.76939,14.2137,19.5313,1.8646,1.8908,3.3802,3.4555,7.7925,8.0975,4.6494,5.0235,0.09098,4.7098,2.2981,2.6687,0.40882,0.4046,4.672,5.0472,4.4507,4.8321,1.8966,1.5044,10.1484,9.2428,3.7296,3.6806,4.1936,4.6945,5.9264,4.8128,1.9785,1.8609,1.9749,2.3372,4.0094,3.7021,8.1937,8.4465,2.2082,2.2212,7.6337,7.5284,12.3971,12.3279,9.125,8.0332,2.3675,2.3359,4.9104,5.1549,1.9492,1.8628,20.694,20.9488,5.4944,6.1152,4.0723,4.3627,1.0876,1.1164,2.8439,3.0303,8.371,7.5175,15.7167,14.4218,3.2211,4.0652,4.6508,4.7157,3.0754,3.5007,1.5037,1.3119,4.1098,4.7787,11.7594,11.096,3.4273,3.2579,2.4661,2.4726,2.2331,2.6676,12.0025,12.3322,2.336,2.6807,2.1073,2.575,13.0812,14.8469,1.9912,2.0494,1.3445,1.4764,15.0078,15.124,5.4414,6.0188,8.4524,8.0809,4.5964,3.88,9.684,10.7694,7.5512,7.4974,8.3288,8.4288,3.5694,3.1907,1.404,1.8601,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,396
+desd398,66,66,F,1.5988,1.9337,0.37607,0.3701,0.81053,0.78419,14.7604,2.8302,2.4052,37.5752,37.811,10.9827,11.9739,234.1269,234.1957,1.2296,3.0354,2.6776,0.42204,0.41122,10.4673,11.423,1.6101,1.5737,3.3923,3.2226,6.5912,7.0209,4.0859,4.2973,0.0635,3.7976,1.8867,2.2169,0.32261,0.37323,3.7724,4.3947,3.7453,3.8165,1.7298,1.4819,12.0358,8.7968,2.5212,2.4886,3.5958,3.2958,3.8955,3.6052,1.5899,1.4891,1.7598,1.9445,3.8561,3.6374,6.7028,6.3222,2.0343,2.0685,5.8472,6.0013,11.0579,10.2545,6.8636,6.2255,2.2909,2.2357,3.9332,4.1199,1.7515,1.7049,18.8893,17.1431,4.8922,6.2003,3.6743,3.9735,0.98225,1.0611,2.4465,2.5842,7.6315,6.9068,13.1632,13.6564,2.4348,3.1119,3.863,3.5111,3.4747,3.7596,1.6822,1.4658,3.3725,3.7649,9.3341,9.6145,2.7605,2.9855,2.2158,2.2657,1.9259,2.0437,8.606,9.5882,2.0923,2.5251,2.0277,2.2152,10.8167,11.4156,1.655,1.9016,1.0314,1.1084,14.6636,13.4651,5.0951,5.057,8.4619,8.0408,3.4082,3.2554,9.275,8.2383,6.8894,7.0721,7.1644,7.2896,3.4794,3.9146,1.2959,1.6558,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,397
+desd399,,,M,2.0909,2.3676,0.29701,0.32609,0.66088,0.66135,20.2468,2.7154,2.8728,47.3816,48.3698,19.6819,19.9391,242.2642,238.1675,2.1828,2.7718,2.647,1.7858,1.6401,23.1492,28.1178,1.6668,1.6544,3.5262,3.4843,6.8344,7.0742,5.0986,5.254,0.08054,4.8064,2.3064,2.5642,0.31593,0.43776,3.7329,4.0572,3.9166,4.2661,1.5749,1.3214,9.1593,7.9992,3.0739,2.8827,3.8993,4.0983,3.7929,4.1975,1.3046,1.3227,1.7695,1.9733,3.2315,2.9085,5.7859,6.4193,1.7869,1.8174,4.9028,4.866,9.0157,8.8146,7.1534,6.3627,2.0493,2.0831,4.2237,4.2348,1.5862,1.6313,15.9057,16.0015,4.1514,4.831,3.3546,3.4719,0.91522,1.204,2.3593,2.7598,6.9458,6.178,10.9882,11.5067,3.0861,3.3791,3.8353,3.5991,3.1785,3.4972,1.5145,1.4422,3.1766,3.4438,9.385,8.9741,2.6202,2.7096,2.397,2.2569,2.3616,2.3329,9.6931,11.3304,2.0896,2.1708,1.89,2.1163,11.7555,11.6246,1.8744,2.0005,1.3351,1.4734,13.2138,13.5618,4.5318,4.5387,7.6196,9.3403,3.6644,3.2754,9.6188,9.1201,6.8639,6.4001,6.7323,7.3564,3.1455,4.103,1.6093,1.5044,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,398
+desd400,63,63,F,0.947,1.6452,0.40749,0.4675,0.88749,0.90897,17.7466,3.0841,2.675,35.0639,33.5396,14.4054,15.2271,222.5464,222.3009,0.89851,3.3652,3.1856,0.40118,0.34487,8.1124,8.8317,1.5114,1.4314,3.8803,3.8085,6.7086,6.8997,4.6454,4.9523,0.0845,4.6347,2.1036,2.3776,0.41876,0.41273,3.5594,4.2382,4.3377,5.2613,1.8887,1.6574,9.5148,8.3923,3.4045,3.3204,3.2401,3.308,4.0595,4.277,1.9038,1.741,1.9656,1.9711,3.7522,3.3434,7.4384,7.1972,2.1109,2.2249,6.6976,6.362,11.4342,11.49,8.4588,7.7564,2.3512,2.5063,3.9332,4.16,1.7657,1.7049,18.8893,19.56,5.3816,5.5351,4.1567,4.2231,0.92792,0.93141,2.7211,2.0748,7.7103,6.4163,13.8112,14.8506,3.2164,3.9331,4.4483,4.6582,3.6483,3.5953,1.6712,1.5579,4.2319,4.6726,10.2035,10.6738,3.1601,3.3962,2.4361,2.4628,1.878,2.3681,7.9696,9.5345,2.4103,2.6967,1.9982,2.2682,12.4315,12.4872,1.6445,2.4288,1.1899,1.2881,13.9933,14.177,4.7946,4.8619,7.2777,7.8636,3.6644,3.2678,10.2113,11.3401,7.9287,7.1664,8.5438,7.923,3.8612,3.9122,1.299,1.7766,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,399
+desd401,75,75,M,1.7758,1.7113,0.37711,0.41771,0.83178,0.82436,18.0157,2.9039,2.9707,28.2987,26.488,16.2098,16.8291,201.0988,200.9291,1.3765,3.0928,3.5761,0.65501,0.53477,18.1727,16.0454,1.4537,1.4444,4.197,4.2289,7.159,7.5574,4.2237,4.6351,0.06628,4.0126,2.0164,0.2032,0.35475,0.36743,3.6289,4.0071,4.1186,4.2558,1.4902,1.4123,9.4737,9.431,3.2514,2.6444,3.6925,4.0747,4.2223,3.7986,1.4859,1.5448,2.0993,1.8755,3.2779,3.3803,6.6059,6.2539,2.0818,2.0685,6.2894,6.2837,11.0579,10.8045,7.5364,6.8854,1.9375,1.9197,4.2057,4.41,1.7035,1.6782,16.6407,17.2447,4.6329,5.3522,3.5685,3.8401,1.0741,0.97321,2.145,2.1904,6.7355,6.2112,14.5429,13.0271,2.8192,3.0453,4.0219,3.7681,3.5997,3.6648,1.2483,1.09,3.883,4.4389,10.3895,9.8585,2.6373,2.9457,2.3783,2.305,2.0859,2.008,9.2746,10.9721,2.2067,2.1929,2.2391,2.1287,10.3723,10.7072,1.7164,2.0697,1.2428,1.2777,13.5098,13.5656,4.7634,4.5444,7.5826,7.2811,3.916,3.5209,9.5535,9.3275,7.8384,6.6392,6.8313,7.097,3.24,2.9626,1.6457,1.5485,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,400
+desd402,61,61,M,1.9816,2.1091,0.49537,0.53321,0.96856,0.97955,20.2776,3.3853,3.0601,52.7122,51.1016,14.9431,15.2945,233.6644,236.611,1.8617,3.6778,3.6642,0.68332,0.75136,27.5036,30.9263,1.7739,1.7979,3.9383,4.111,7.9724,8.3308,5.139,5.3933,0.09689,5.4789,2.4147,2.9334,0.46722,0.48151,5.0313,6.5134,4.6538,4.8085,1.8182,1.6856,11.4018,10.7749,3.5456,3.6252,5.3782,4.9235,5.3644,6.1359,1.931,1.8626,2.3046,2.4241,3.9677,4.1468,8.5003,7.9638,2.219,2.3465,8.5205,7.9981,13.9916,13.1241,9.7915,8.7069,2.6095,2.747,5.7194,5.4468,2.1551,1.9903,18.5704,19.4458,6.1579,7.6079,3.97,4.2769,1.5299,1.3386,3.6503,3.0387,9.4258,7.9523,19.0242,15.7252,3.864,4.253,5.2554,5.3126,4.4141,4.3849,1.7894,1.6911,6.1239,5.0463,11.9513,13.1864,3.4245,3.6673,2.8884,2.5927,2.3301,2.4889,12.6202,15.0051,2.6904,2.7361,2.1613,2.5945,15.2203,13.0547,1.9788,2.0494,1.4563,1.4442,15.8672,15.8127,6.7193,6.51,9.1852,9.2554,4.6666,3.8774,15.7637,11.8495,8.468,7.8305,10.7681,9.4607,4.0742,4.8047,1.5361,1.9453,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,401
+desd403,,,F,1.4719,1.5222,0.40101,0.42626,0.8916,0.86239,16.6992,2.6128,2.4758,38.9026,39.9015,11.5346,12.8773,221.5317,224.2603,1.0956,3.5816,3.2196,0.6201,0.54447,14.947,18.7588,1.6274,1.6023,3.4874,3.5266,6.6755,6.6353,4.7595,4.873,0.08013,4.9457,1.9311,2.2432,0.38884,0.37258,3.6227,4.2679,4.1279,4.1145,1.7919,1.6753,9.6727,8.3923,3.0221,2.9999,4.0287,4.3187,4.6173,4.1609,1.6715,1.6232,1.9232,1.9723,3.6211,3.0604,7.5268,6.904,1.9964,2.0515,6.7567,7.438,12.3106,12.039,8.0404,6.9586,2.396,2.559,3.9765,4.1845,1.7502,1.5853,17.7502,16.929,5.7823,6.8641,3.882,4.074,1.1188,1.3634,2.3706,2.9477,7.7122,6.2941,13.9705,14.9175,3.9516,4.4609,4.3272,3.9968,3.1999,3.4076,1.5468,1.5883,4.301,4.6368,9.6993,10.0704,2.8498,3.2482,2.2089,2.2443,1.9107,2.3082,10.3026,12.5857,2.3189,2.4625,1.8932,2.2691,12.9492,12.9722,1.5796,1.8972,1.0885,1.2203,13.4644,13.1624,6.0924,6.1866,7.6688,8.8259,4.4252,3.3441,9.5839,11.9904,6.8655,7.5387,7.4341,7.5491,3.4653,3.7456,1.3179,1.7699,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,402
+desd404,,,F,1.6135,1.5346,0.33048,0.33917,0.85789,0.82202,15.3515,2.7801,2.5866,42.7073,41.4904,13.8541,13.5961,204.8715,208.9042,1.2083,3.2742,3.0423,0.49291,0.55654,8.265,10.1129,1.2456,1.2494,3.6568,3.518,6.0299,6.3183,3.9107,4.0854,0.07213,3.607,1.9338,2.431,0.34237,0.33271,4.1866,4.3563,4.025,4.1862,1.6939,1.2721,9.5082,8.5316,2.6463,2.7791,3.5002,3.5066,4.2675,3.9551,1.5833,1.5824,2.0993,1.8123,3.176,2.9948,7.5047,6.904,1.799,1.7244,6.0112,6.0919,11.5909,10.958,7.1455,6.3731,2.1151,2.1536,4.4958,4.734,1.4764,1.5082,15.6477,15.6616,4.5922,6.4153,3.5876,3.4483,0.70435,1.0753,2.2727,2.2739,7.1172,6.0357,14.3263,14.6998,2.4613,2.9945,3.967,3.938,3.4737,3.2505,1.4978,1.4418,3.5844,3.8112,9.6417,9.9161,2.8626,3.1717,2.1743,2.3288,2.3633,2.5174,9.279,10.1847,2.2487,2.0967,1.9189,2.1408,10.5813,10.7317,1.9245,2.3556,1.0685,1.1289,12.212,11.6029,5.1824,4.7806,6.609,9.1804,3.8384,3.0659,9.2904,9.8113,7.3547,7.3967,7.5884,7.629,3.6063,3.6085,1.5011,1.5485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,403
+desd405,69,69,F,1.1649,1.2937,0.41178,0.42411,0.89318,0.86678,16.0067,2.6128,2.4605,46.6868,44.7829,12.2852,12.2231,183.8891,179.6528,1.2559,3.6065,3.2316,0.67471,0.52345,13.2144,20.0874,1.357,1.3605,3.6768,3.7885,6.2893,6.0793,4.23,4.425,0.08828,4.7338,2.3143,2.7436,0.39117,0.38596,4.0944,4.4582,4.0509,4.2093,1.7895,1.6807,9.9299,8.3923,3.0811,3.1621,4.1037,4.3539,4.4619,4.3969,1.6549,1.6599,1.7646,1.9304,3.5305,3.1138,7.1379,6.8404,1.8574,2.0006,5.4877,5.6019,10.8476,10.2239,8.0791,7.1813,2.1745,2.559,4.6952,4.9199,1.732,1.845,17.828,16.9412,4.8364,5.6491,3.5876,3.7695,1.1688,1.1962,2.5856,2.5142,7.7004,6.9141,13.7589,11.7806,2.5522,2.8797,4.0199,4.0633,3.6146,3.1331,1.5607,1.5286,3.8848,4.1789,10.746,10.3582,2.9699,3.3524,2.2028,2.3503,2.2136,2.3713,9.8526,11.3454,2.3682,2.698,2.0332,2.3017,11.6764,10.5878,1.8433,1.8216,0.91095,1.0201,13.268,13.631,5.1136,5.2739,9.2243,9.1709,3.6954,3.2171,10.3038,10.2664,7.1015,6.9867,7.2099,7.1232,3.2917,3.5457,1.4361,1.7699,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,404
+desd406,67,67,M,2.0299,2.9716,0.3488,0.38133,0.66017,0.64098,20.0226,3.0644,2.8481,45.4788,46.7756,19.9017,22.1671,249.6425,235.9845,2.0058,2.8547,2.6789,1.7114,0.9345,24.219,18.2188,1.7519,1.6123,3.5583,3.3121,6.6898,6.8994,4.8194,5.029,0.07733,4.8064,2.1092,2.5866,0.36046,0.35921,3.9387,4.1443,3.9487,4.2762,1.5169,1.3341,8.3779,7.6577,3.3733,3.1698,3.4629,3.9159,4.8153,4.447,1.2808,1.2683,1.7152,1.6752,3.1832,2.9111,7.1238,6.8267,1.78,1.8414,6.4392,5.801,10.4764,10.6215,7.5903,7.1973,2.0652,2.2107,4.6893,4.5669,1.5856,1.4705,16.6407,15.7424,4.6431,5.2418,3.0127,3.6503,0.99093,1.0348,2.0981,2.3577,7.0821,6.3812,12.5326,13.0084,3.2342,3.3791,4.1177,3.7863,2.7745,3.2478,1.3287,1.4418,3.9248,4.2673,11.1316,11.2784,2.7711,2.8395,2.1718,2.2756,1.958,2.336,8.6783,10.4308,2.14,2.303,2.0199,2.3099,10.1462,10.5874,1.6134,1.9438,1.0546,1.1527,13.927,13.8567,4.9428,4.7219,7.2704,8.151,4.0303,3.6641,10.2994,9.9939,6.6136,6.9033,6.6456,7.3433,2.4577,3.5039,1.5081,1.5239,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,405
+desd407,67,67,F,1.3524,1.8403,0.36213,0.38861,0.76775,0.74588,16.0576,2.9314,2.8513,38.8014,39.5564,10.7408,11.3255,206.115,208.07,1.5796,3.2514,2.9636,0.58396,0.85075,16.7882,17.7235,1.4455,1.3178,3.3584,3.278,6.1144,5.9962,3.916,4.216,0.06777,3.8533,1.7779,2.3772,0.41347,0.39964,4.0253,4.265,3.9727,3.9407,1.6824,1.4319,9.6025,8.5927,3.58,3.2596,3.4373,3.6835,4.4068,4.1353,1.4898,1.472,1.8833,1.8498,3.3198,3.1244,6.6275,6.5727,1.9337,2.0598,5.9165,6.2899,10.9414,9.5007,8.2625,7.031,2.1152,2.259,4.4469,4.2041,1.5995,1.6313,18.477,17.4871,4.7324,6.047,3.8013,3.8912,1.0959,1.1926,2.4558,2.6654,7.0561,6.2544,14.7741,11.413,2.7949,3.0453,3.9425,3.7823,3.3074,3.1365,1.5673,1.4598,3.7861,4.0189,9.5387,9.4232,2.6424,2.8801,2.4071,2.2773,1.7536,1.999,9.4488,10.1489,2.3325,2.5731,2.0971,2.4206,10.9358,11.1387,1.6089,1.6453,1.1412,1.1858,12.7821,12.771,4.9108,5.2041,8.0461,7.5044,3.8047,2.9222,9.0405,10.4569,6.5968,6.074,7.2374,6.2784,3.2911,3.6428,1.353,1.376,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,406
+desd408,78,78,M,2.3438,2.528,0.43358,0.47758,0.93015,0.95982,17.7762,3.3168,3.251,54.7687,56.7564,14.2406,14.2393,231.9229,230.6618,1.7914,3.5455,3.3501,0.9969,0.80833,27.5036,28.7946,1.7547,1.7725,4.3591,4.2979,7.1373,7.5574,4.7054,5.0235,0.08434,5.0099,2.4251,2.9885,0.45532,0.43711,4.7026,5.078,4.7665,4.7265,1.947,1.772,10.8969,9.1351,3.8929,3.4106,4.2875,4.6986,4.8737,4.8414,1.7874,1.8122,2.0531,2.0581,4.2401,4.1928,8.7955,8.1912,2.4687,2.4964,7.5239,7.418,13.6542,13.1241,8.9198,7.9282,2.4351,2.6506,5.1184,5.5136,2.2046,2.0095,19.5505,20.7538,5.154,6.8424,4.3013,4.6246,1.1743,1.3434,2.9956,2.8154,9.0757,7.9071,16.5941,15.8939,3.8712,4.4832,4.8025,4.701,3.762,3.5502,1.6433,1.7048,5.0546,5.319,12.0285,12.8934,2.9151,3.2276,2.6484,2.7304,2.2298,2.5265,11.473,13.2226,2.6649,2.9114,2.2133,2.5914,13.2394,13.423,2.1241,2.1184,1.4588,1.435,15.6729,15.7859,6.2855,6.51,8.4524,8.6043,4.9509,4.7436,11.3561,11.0505,8.4079,7.273,8.8573,8.5867,3.7601,3.9737,1.6713,1.741,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,407
+desd409,65,65,M,1.0188,1.5845,0.42152,0.46211,0.89568,0.98359,18.6779,3.3844,3.1856,44.6002,44.4746,14.0223,14.6249,233.3043,236.364,1.2408,3.4125,3.3539,0.40967,0.32914,10.462,9.8195,1.7202,1.7194,3.9218,3.7795,7.631,8.049,4.8413,5.1317,0.04755,4.1392,1.9941,2.3025,0.41518,0.4362,4.3094,5.1149,4.4752,4.8409,1.9333,1.7987,12.1452,11.3323,2.9026,3.054,4.5053,4.4052,4.2944,4.7369,1.7793,1.7618,2.1933,2.192,4.3521,3.8796,7.7486,7.6505,2.4681,2.3336,7.0424,6.7989,11.5592,12.0056,7.462,7.775,2.6412,2.7017,4.4718,4.7032,2.2693,1.9821,21.3627,20.2197,5.677,6.6145,4.3885,4.5409,1.135,1.2654,2.822,2.8748,8.4573,7.2885,14.3478,14.4012,3.2424,3.895,4.3265,4.5039,3.6102,3.5426,1.8723,1.8326,4.4736,4.8835,10.997,12.0571,2.9363,3.1678,2.3431,2.278,2.9821,2.7369,12.0336,11.7424,2.6656,2.8106,1.9649,2.1608,12.5464,13.512,2.3606,2.3352,1.3131,1.3644,15.1682,16.593,5.6201,5.6885,9.3803,10.4137,4.4738,4.2325,11.2587,11.3832,7.9944,7.8241,8.8386,8.4288,4.1855,4.4704,1.3845,1.5798,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,408
+desd410,79,79,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,409
+desd411,71,71,M,2.154,1.6804,0.35086,0.42061,0.83986,0.87536,18.4101,2.6329,2.5817,48.6069,49.247,14.1985,14.5417,207.6328,202.681,2.0344,3.4839,3.3506,1.1855,0.9679,19.5055,23.1483,1.4184,1.41,3.4495,3.5927,6.338,6.6061,4.1711,4.6351,0.08959,5.0099,2.1319,2.52,0.37909,0.40045,4.7235,4.9895,4.034,4.1686,2.0206,1.7774,10.6153,9.3302,3.8375,3.5443,4.0902,3.8715,5.3855,4.7596,1.5306,1.5289,1.8845,2.1288,4.1304,3.6687,7.3608,7.2967,2.1596,2.0366,7.1069,7.5747,11.629,11.1868,7.7976,7.7994,2.5661,2.4985,5.2013,4.8805,1.8834,1.926,18.6234,19.0342,5.027,6.8466,3.8695,3.8569,1.0477,1.0477,2.7871,2.5253,8.4784,7.4477,13.8898,13.6697,3.1402,4.0632,4.4752,4.6446,3.5385,3.4918,1.5772,1.6331,4.3629,4.5832,10.3351,10.3626,2.846,3.1342,2.3294,2.2704,2.2906,2.4004,10.8847,11.4351,2.3616,2.6346,2.0387,2.2819,13.467,13.7414,1.9109,2.1958,1.3166,1.3388,15.1279,14.5441,5.0958,5.3369,8.1468,9.4172,4.2818,4.2232,10.5594,10.483,6.9535,6.7011,7.7904,6.5995,4.0663,4.6862,1.404,1.672,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,410
+desd412,,,M,1.7635,1.9242,0.33253,0.371,0.67283,0.61588,18.827,2.5624,2.7309,47.8126,47.0307,16.2491,15.8947,237.2557,232.4672,1.7956,2.9116,2.6566,1.0422,1.1008,20.9274,25.6471,1.6818,1.6838,3.4324,3.4327,6.6898,7.862,4.917,5.1048,0.07963,5.1289,2.3064,2.7406,0.34592,0.35762,4.1278,4.341,4.1956,4.1532,1.6456,1.3958,11.4893,10.4668,3.6393,3.2504,4.5358,4.1444,5.2497,4.5205,1.2883,1.137,2.0403,1.8651,3.7518,3.2977,7.0512,6.9626,2.1025,1.9996,5.909,5.9589,11.0775,10.5122,7.7846,7.4548,2.1137,2.168,4.9001,4.4466,1.8179,1.7254,18.3593,17.7897,4.9089,5.3917,3.6406,3.62,0.98736,1.4219,2.406,3.056,7.9787,6.5125,13.2145,13.0377,2.5101,3.4953,4.071,4.0574,3.407,3.9138,1.4587,1.4755,3.8666,4.2633,10.0699,10.5648,2.7711,2.884,2.5809,2.2883,2.3301,2.3883,10.4753,11.28,2.21,2.3786,2.2957,2.1555,12.4675,12.2439,1.841,2.0647,1.1179,1.1536,15.0862,13.4651,5.0751,4.9962,9.1852,10.3407,4.7405,4.0134,10.8623,10.7558,6.9194,6.9543,7.1652,6.5834,3.6116,3.9927,1.5416,1.5321,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,411
+desd413,80,80,F,1.6733,2.1439,0.29664,0.34427,0.64534,0.78021,17.5146,2.2173,2.1284,47.5632,48.7275,14.3518,14.8204,221.2064,216.8382,2.0508,2.5942,3.0347,1.1542,1.5123,31.4798,27.853,1.5413,1.5403,3.5262,3.4552,5.7264,6.5162,4.4807,4.6959,0.07932,5.0323,2.1969,2.517,0.37921,0.38384,4.514,4.9207,3.8856,4.0479,1.7531,1.453,10.1476,8.5907,2.739,2.5467,3.9927,3.9962,3.6079,3.9667,1.3409,1.4871,1.9335,1.8592,3.5009,3.176,7.1548,7.029,1.8311,1.951,6.6582,6.0086,10.6808,10.8506,7.5873,6.8042,2.2034,2.4893,4.8872,4.9883,1.6433,1.6784,17.6072,17.5116,5.6415,6.2736,3.6043,3.7081,1.1689,1.0646,2.6297,2.549,7.5348,6.9455,14.8903,14.5686,2.6346,2.9998,3.8946,4.4898,3.0849,2.9439,1.3856,1.4859,4.0387,4.555,9.6993,10.0704,2.7019,3.1183,2.035,2.1346,2.0996,2.354,9.8857,12.1449,2.4142,2.4608,1.9056,2.0887,9.9662,11.0202,2.1068,1.8785,1.2473,1.2036,13.6084,14.0631,5.0514,4.8412,7.7449,8.907,3.6249,3.4265,10.6959,11.05,8.7756,7.3659,7.4883,7.4794,3.3832,3.9455,1.3272,1.2854,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,412
+desd414,69,69,F,1.4432,1.6845,0.3278,0.38328,0.81161,0.77713,17.1058,3.2602,3.0692,43.1869,44.4176,14.4356,15.3281,224.1112,214.9522,1.3807,3.2166,3.0246,0.95012,0.61403,14.775,18.3588,1.725,1.6234,3.6984,3.4106,7.0589,7.3428,4.4904,4.6407,0.07821,4.4313,2.0747,2.5036,0.34728,0.35834,3.8566,4.3325,3.6874,3.8767,1.7313,1.4917,9.0344,7.3366,3.3215,3.1114,3.8835,4.1679,4.6451,4.5901,1.7921,1.5455,2.0149,1.9079,3.3516,3.2514,8.055,7.0153,1.8882,1.8568,7.2177,5.8397,12.5964,12.02,7.378,6.5669,2.1066,2.3507,4.8213,4.5013,1.7208,1.6942,16.6476,17.8174,5.154,5.2654,3.8077,3.688,0.95669,1.0805,2.6087,2.5861,7.1431,6.7466,14.5562,13.8299,3.2577,3.2421,4.0656,4.0574,3.1038,3.0267,1.2881,1.5504,3.4305,3.9003,11.9276,11.4987,2.8671,3.0421,2.1158,2.1136,1.9877,2.144,8.7594,9.3482,2.2852,2.4615,1.8433,2.2691,10.5838,10.1415,1.7731,1.5331,1.0627,1.0709,13.6528,14.0778,4.761,5.0094,7.2817,7.816,4.4809,3.6297,10.6321,11.1606,7.2022,6.7122,7.1214,7.4329,3.0679,4.0429,1.289,1.3071,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,413
+desd415,70,70,M,2.2566,2.2271,0.4137,0.46676,0.83316,0.81158,15.6103,2.8717,2.8533,46.6868,46.062,13.0052,13.4048,197.4064,192.1346,1.6755,3.1986,2.9435,1.2856,0.90151,19.1836,23.2024,1.5107,1.4293,3.4333,3.3868,6.06,6.5324,4.0537,4.2057,0.07213,4.7194,2.0771,2.7688,0.40743,0.40448,3.9011,4.591,4.258,4.4386,1.7895,1.5261,9.9299,8.2935,3.2408,2.8124,3.6154,3.7729,4.2915,3.7368,1.5978,1.5631,2.0791,1.9378,3.7029,3.3587,7.8367,7.3156,2.1491,2.2165,6.5811,5.7875,11.3922,10.2401,8.111,7.7168,2.4405,2.2768,4.4938,4.6044,1.8795,1.8465,18.7904,18.0206,5.4778,5.7343,3.7934,4.2233,1.2016,1.3387,2.5994,2.8206,7.6104,6.8344,14.774,12.3447,2.499,2.9338,4.6522,4.3904,3.8414,3.6112,1.8234,1.3626,4.1739,4.472,10.5318,10.2192,3.0706,3.0515,2.4688,2.5124,1.9813,2.0437,9.0305,10.3821,2.5828,2.3144,2.1916,2.4901,12.0085,10.5878,1.7086,1.8573,1.3166,1.4188,14.4276,15.3711,5.3515,5.2538,7.8821,6.9192,3.9037,3.3276,10.6186,11.1783,7.7471,6.6397,7.6653,7.4087,3.8196,3.8213,1.5652,1.7839,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,414
+desd416,65,65,M,0.91329,1.6,0.42259,0.45319,0.94447,0.862,21.2508,2.9277,2.9504,49.3724,50.2409,16.7807,16.2637,251.8469,252.5392,1.0679,3.5816,3.2985,0.49501,0.51393,12.0578,13.6065,1.4966,1.5186,3.9666,3.9109,7.756,7.9311,4.9718,5.3312,0.07369,5.2162,2.6767,2.6687,0.38576,0.39605,4.8909,4.8834,3.8856,3.9932,2.0366,1.7566,11.1169,9.3961,3.233,3.1286,4.3517,4.1255,4.7354,4.3278,1.8042,1.7098,1.8721,1.8507,3.677,3.4071,8.2273,8.1502,2.1145,2.148,6.777,6.3223,12.3164,11.7461,8.5128,8.0794,2.6877,2.6424,4.8699,4.9883,1.9134,1.8339,20.2497,19.4124,5.8192,6.9378,4.1426,4.3458,1.0911,1.168,2.831,2.8748,8.254,7.0881,15.5843,13.8944,3.4225,3.1518,4.5945,4.6394,3.3505,3.5078,1.7635,1.4844,3.9334,4.1715,11.1316,11.3682,3.0666,3.2821,2.1717,2.1583,2.2661,2.6758,10.1761,11.9748,2.6695,2.7524,2.1862,2.3091,13.4558,13.7014,1.8275,1.7895,1.1784,1.2696,15.0981,15.5468,5.58,5.5664,8.3049,9.6666,4.0303,3.2111,10.9949,11.8903,7.9102,8.8837,8.8428,8.1909,3.7822,3.7596,1.6375,1.4363,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,415
+desd417,52,52,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,416
+desd418,80,80,F,1.3485,1.4875,0.28869,0.30794,0.68236,0.64816,15.3461,2.4715,2.3864,36.9984,37.5008,12.8056,12.8817,180.321,173.4067,1.4275,2.6058,2.4073,0.91186,0.81448,17.4891,15.7954,1.3494,1.3795,3.1153,3.2669,5.6667,5.8612,3.8742,4.1275,0.07933,4.5478,1.8688,1.9212,0.32475,0.32086,3.5549,3.9603,3.5605,3.8233,1.3405,1.2013,8.7539,7.3711,2.8281,2.8007,3.7154,3.8098,3.8655,3.8057,1.3511,1.308,1.7559,1.7906,3.1353,3.037,6.8854,6.1208,1.8231,1.9202,5.9901,4.56,9.6893,9.3124,6.5299,5.8129,1.8869,1.9946,4.12,4.2817,1.4764,1.4315,16.9845,15.7424,4.6187,5.0434,3.2234,3.201,0.86488,0.85443,2.054,1.9321,6.8672,6.2515,11.5183,11.6121,2.5476,2.4894,3.6394,2.673,2.8706,3.0103,1.2226,1.3048,3.446,3.752,9.2495,9.5354,2.5134,2.6127,2.1233,1.9205,1.8168,1.9191,8.3866,9.29,1.9487,2.108,1.7805,1.8628,10.5813,10.6697,1.6377,1.5759,1.0228,1.0497,12.5539,11.6837,4.4488,4.3385,7.3672,7.0518,3.4867,2.636,9.4346,9.3309,5.7197,5.7842,7.2726,6.4202,3.1378,3.2565,1.181,1.3227,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,417
+desd419,,,M,1.8244,1.7773,0.37982,0.4225,0.93913,0.99575,18.0431,3.0452,2.7933,40.9779,41.6152,14.4054,14.7292,211.353,213.6856,1.6673,3.7728,3.3804,0.70855,0.57687,17.315,21.454,1.6274,1.6229,3.5593,3.7316,7.1682,7.4648,4.7611,5.0076,0.08054,4.8812,2.3544,2.3533,0.38062,0.39388,3.9795,4.6323,4.1555,4.2558,1.7356,1.5551,9.7385,9.2074,3.6393,3.2168,3.5855,3.4986,5.2421,5.0529,1.8976,1.8282,2.1221,2.0074,4.0838,3.719,7.4238,7.1633,2.2922,2.1218,7.0212,6.143,12.2302,11.891,9.3943,8.4002,2.325,2.4936,4.5711,4.7073,1.8294,1.931,19.7636,20.0958,5.206,5.3124,4.0994,3.9981,1.2922,0.96672,2.7102,2.5666,7.7678,6.84,15.2797,14.8551,3.0222,3.4664,4.5213,4.6394,3.8942,3.79,1.7464,1.5605,4.2966,4.5837,11.55,10.6004,3.0333,3.3311,2.5509,2.3517,2.0589,2.4296,9.7161,10.5565,2.2686,2.4188,2.2609,2.3094,12.4228,10.8132,2.1241,2.1074,1.3019,1.4156,15.3386,16.3673,5.1729,4.8718,7.6196,9.1099,3.8339,3.5834,9.3057,10.1731,8.2144,7.7407,8.5225,8.3006,3.9979,3.787,1.5519,1.6562,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,418
+desd420,73,73,M,1.7097,1.8055,0.37741,0.38864,0.82463,0.78837,19.3173,3.4437,2.9424,54.9233,56.7564,16.2712,15.5489,213.239,213.4574,1.541,3.2757,3.0188,0.67856,0.66018,16.9311,15.766,1.6223,1.5566,4.0042,3.9746,6.4998,6.5896,4.4224,4.6727,0.06628,5.8009,2.5426,3.0321,0.41104,0.41598,4.0253,5.0653,3.8534,3.8667,1.4807,1.5194,9.3742,9.5107,3.2222,3.1698,3.3572,3.7713,4.8252,4.3278,1.5823,1.4712,1.6714,1.6997,3.3431,3.0894,7.2803,7.6226,2.0326,2.1032,6.4317,6.0712,11.0364,11.1264,8.7273,7.6818,2.0076,2.3104,4.9537,5.1103,1.7926,1.8645,18.6572,19.6619,5.2024,5.9404,3.7157,4.0288,1.368,1.1154,3.3604,3.0629,7.7854,6.256,14.4949,13.0867,3.084,3.3357,4.5213,4.3422,3.2949,3.4346,1.4431,1.3513,4.0284,3.962,10.7091,10.5263,3.1435,3.2146,2.1191,2.0545,1.8613,2.2998,11.1539,12.7921,2.2809,2.4928,1.9514,2.3093,11.8206,12.7485,1.495,2.0648,1.2547,1.2961,13.9848,14.2374,4.9632,4.9874,8.22,8.1149,4.5403,3.0447,9.2403,10.6328,7.6887,6.807,7.2818,7.01,3.4141,3.6533,1.2969,1.6822,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,419
+desd421,,,F,1.3797,1.7778,0.37168,0.41575,0.83627,0.8721,15.3848,2.855,2.4744,41.246,42.4788,12.8616,13.4104,214.4228,216.1676,1.5923,3.1986,3.0054,0.47172,0.41701,13.2517,15.1691,1.4165,1.3603,3.4974,3.5774,6.1974,6.3968,4.1014,4.2444,0.07442,4.3788,1.9541,2.5137,0.3848,0.37462,4.4387,4.8666,3.7628,3.8348,1.7309,1.6272,9.9215,9.4183,3.6194,3.0178,3.4921,3.7515,5.0668,4.9183,1.7149,1.7159,1.8365,1.8812,3.9194,3.7629,7.6877,7.3983,2.0569,1.9651,6.9397,7.1021,11.3129,11.0739,8.4486,7.6911,2.2504,2.453,4.4371,4.6176,1.8225,1.8088,19.0915,18.56,5.6872,6.9267,3.6583,3.7608,0.8248,1.0363,2.2057,2.3063,8.0737,6.6387,13.5532,14.4684,3.7041,4.7783,4.7147,4.3777,3.1817,3.0267,1.4922,1.4181,3.6767,3.9075,10.6316,9.8269,2.8052,3.1183,2.1037,2.0253,2.3633,2.5838,10.0432,11.7189,2.384,2.4914,1.9514,2.1139,12.8708,13.5901,2.0422,2.0896,1.1607,1.1446,15.0529,15.6305,5.4518,5.8171,7.822,8.4148,5.1011,4.2271,10.2263,11.0531,7.2047,7.1608,8.6265,7.9545,3.3409,3.5607,1.455,1.4352,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,420
+desd422,70,70,F,1.0932,2.0062,0.38968,0.4778,0.89568,0.96487,17.1079,3.1106,2.9302,46.1005,46.1134,14.5272,15.0169,244.2927,240.7816,1.0822,3.4963,3.5722,0.51198,0.51854,13.19,13.7839,1.5877,1.5699,4.1544,4.3739,7.7315,7.8543,4.615,4.8757,0.0721,4.3414,2.2135,2.7364,0.44294,0.40079,4.0018,4.6922,3.946,3.8279,1.8814,1.6751,11.8125,11.0348,2.5672,2.7667,3.7413,3.8315,3.9205,3.734,1.9619,1.993,1.8365,1.845,3.7062,3.3934,8.055,8.0029,2.1816,2.2216,6.3441,6.7482,11.4244,11.9897,7.6647,7.1455,2.2805,2.6598,4.3592,4.5919,1.8762,1.927,15.9832,17.6316,5.861,7.5661,4.2557,4.7389,1.2171,1.0919,2.7869,2.6667,8.6556,7.5323,14.0732,15.3184,2.8065,3.1364,3.944,4.1272,3.3505,2.86,1.301,1.729,3.8987,4.1259,10.1621,9.7632,2.9352,3.2234,2.238,2.1069,2.2739,2.4531,12.0336,11.7424,2.5713,2.7799,1.8633,2.1408,12.3146,13.6688,1.9433,1.9443,1.3268,1.3509,16.0654,15.2126,5.8484,5.7842,8.2807,10.4661,3.4082,3.7422,10.9979,11.2121,8.4401,7.8241,8.5351,8.1597,3.1968,3.7077,1.3778,1.3711,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,421
+desd423,74,74,F,1.9465,2.1079,0.33461,0.42615,0.78957,0.78422,17.9951,2.5437,2.4758,45.8701,46.1134,15.3667,15.6229,200.671,193.8382,1.6953,3.1711,3.1412,0.55733,0.53477,17.315,18.7512,1.4275,1.4261,3.2747,3.3801,6.0473,6.2616,4.2859,4.4197,0.08828,4.7526,2.2165,2.5511,0.424,0.40369,3.8217,5.0653,4.3287,4.5085,1.7177,1.3301,9.6025,8.721,2.8084,2.8776,3.4206,3.2949,3.8762,4.1242,1.4945,1.4938,1.9271,1.8984,3.5967,3.4382,6.4935,7.0611,1.8674,2.0747,4.8656,5.1321,10.0786,10.4962,7.2448,6.3627,2.1125,2.0127,5.0773,5.473,1.7208,1.8231,15.7474,16.2676,4.6476,5.2048,3.6043,3.6112,1.0289,1.1274,2.7321,2.5255,7.3249,6.8637,12.096,12.6747,2.4452,2.8619,3.7202,3.5079,3.0972,2.9994,1.4839,1.3204,3.7694,4.2493,9.2007,10.294,2.7112,2.9952,2.4064,2.4099,2.1007,2.0582,8.606,9.752,2.3497,2.3807,2.312,2.444,10.6051,11.1387,1.7499,1.6008,1.0751,1.1747,14.4769,12.9276,4.761,4.7331,7.4666,8.0448,3.3701,2.863,9.0975,8.9107,6.6673,6.7252,7.7156,7.629,3.4653,3.4668,1.4701,1.6946,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,422
+desd424,79,79,F,1.4436,1.794,0.28281,0.34527,0.66322,0.70714,14.8758,2.5395,2.3693,38.4189,37.0487,12.3825,12.6276,168.1404,168.5586,1.4373,2.7035,2.4073,1.0165,0.9251,16.5462,19.5786,1.3283,1.3443,3.056,3.1216,5.8808,6.2038,3.8287,3.9123,0.07357,4.1908,1.9231,2.0222,0.30771,0.30443,3.5062,3.9603,3.7177,3.7776,1.3442,1.1981,8.5819,7.8526,2.7977,2.7883,3.5759,3.1584,3.8261,3.8183,1.3511,1.3483,1.8398,1.7433,2.918,3.1579,6.0282,5.8603,1.8231,1.8575,5.1333,4.9289,8.7702,7.589,6.8063,6.181,1.8924,1.8338,4.1511,4.41,1.5491,1.5262,15.6855,14.7495,4.2287,5.5991,3.0089,3.1058,0.95977,1.0109,2.0355,1.9728,6.7463,6.2394,10.4835,10.2972,2.4452,2.8563,3.3211,3.3195,3.0284,2.8977,1.2226,1.3043,3.4844,3.552,8.5374,8.1036,2.3512,2.5337,2.1191,2.1573,1.8438,2.0222,8.3866,10.3158,1.9815,2.3052,1.7823,2.1863,10.5583,10.4778,1.6495,1.5861,1.1364,1.1707,11.9794,13.0674,4.7634,4.5958,6.9414,7.5258,3.329,3.0278,8.4191,8.7339,5.6425,5.655,6.4111,6.1349,2.9765,3.3531,1.2464,1.2715,,18,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,423
+desd425,72,72,M,1.7662,2.0757,0.38425,0.44442,0.76377,0.81368,17.0328,3.4437,3.3105,47.704,47.0212,14.0298,13.9549,231.4533,225.8912,1.8418,3.3151,3.2768,0.9369,0.73334,24.1001,26.8131,1.5931,1.4938,3.5342,4.0526,6.7414,7.2578,4.5291,4.7356,0.09914,5.4297,2.3039,2.6607,0.4332,0.41206,4.7629,5.5532,4.4494,4.7752,2.1984,1.8573,10.6092,9.7493,3.8322,3.877,4.479,4.3491,5.6182,5.4991,1.5856,1.4481,1.9633,2.1225,4.4843,4.3243,8.1193,6.9168,2.4397,2.5264,7.653,7.8866,14.3893,13.9209,8.7088,8.3281,2.7846,2.8413,5.1739,5.1372,2.1863,2.3385,21.4648,21.9812,5.9387,6.6191,4.6467,4.6903,1.0185,1.2987,2.5683,2.6677,10.1498,9.2277,16.6257,17.155,3.6969,4.3693,4.7616,4.465,3.6908,3.5868,1.7702,1.8071,4.0449,4.5827,11.392,11.9548,2.9139,3.0873,2.5034,2.519,2.409,2.5265,10.979,12.5961,2.6274,2.8223,2.0732,2.6109,11.9125,11.7822,1.9105,2.8074,1.5078,1.5941,16.823,17.0909,6.1867,6.4053,8.2247,9.0832,4.9629,4.0374,10.2127,11.6252,8.0677,7.5171,8.9998,7.9237,4.5598,3.5559,1.518,2.034,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,424
+desd426,,,F,1.9294,1.8618,0.32753,0.35374,0.79687,0.72388,18.765,2.8108,2.4307,44.8791,46.3665,15.0817,15.7361,208.0846,207.7314,1.9752,3.1148,2.7243,1.196,0.9679,31.4798,28.2525,1.546,1.5956,3.4389,3.4323,5.5724,6.0547,4.6091,4.8988,0.07994,4.7616,2.1661,2.7361,0.3306,0.35689,3.6203,3.9115,3.7381,3.994,1.4595,1.3156,9.8549,9.1459,2.6385,2.676,3.4909,3.8196,3.6079,4.107,1.5398,1.4381,1.6704,1.8386,3.2878,3.1043,6.9495,6.9626,1.711,1.78,6.2743,5.5259,10.1361,10.3825,7.3832,7.1467,1.845,2.2508,4.2386,3.86,1.4334,1.4807,17.4708,16.8245,4.9683,6.3066,3.3879,3.3495,0.88375,0.90998,2.2469,2.3338,6.722,5.9229,13.5111,12.5934,2.4574,2.9658,3.9979,3.952,2.6948,2.7667,1.2154,1.4269,3.6512,3.8657,9.138,8.6462,2.8045,2.8817,2.1584,2.1987,1.7744,1.9104,9.3051,10.4034,2.0246,2.2778,1.8649,2.0075,10.0062,9.5779,1.7384,1.7841,0.92726,1.0415,12.6073,13.2426,4.862,5.4272,7.3778,7.8923,3.9876,3.7343,9.0975,8.8459,6.605,6.9612,7.1688,7.0678,2.8918,3.5044,1.2877,1.3469,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,425
+desd427,75,75,F,1.8862,1.7913,0.30692,0.37285,0.73639,0.73158,19.3377,2.5534,2.548,42.1882,41.6131,14.6805,15.1152,199.9507,192.1346,1.6454,2.93,2.6744,0.61913,0.40884,16.018,20.2561,1.3784,1.4245,3.0784,3.1931,6.1854,6.49,4.5237,4.7758,0.07654,4.7016,2.054,2.5637,0.34048,0.32201,3.4882,4.0625,3.5752,3.9845,1.6495,1.3676,7.6621,8.2659,3.3108,3.1698,3.6133,4.1069,4.3475,4.0367,1.4214,1.5106,1.5552,2.0093,3.3333,3.3072,6.5829,6.699,1.681,1.7072,6.1681,6.3134,9.9493,9.618,7.5987,7.4214,2.0886,2.1617,3.7239,4.0852,1.4788,1.5761,15.7992,16.2676,4.7725,5.8746,3.2845,3.4232,1.0125,1.0559,2.4535,2.3604,6.5775,6.1665,12.2619,11.6314,3.0239,3.1802,3.9848,3.8858,2.8089,3.1158,1.3447,1.4551,3.8624,4.3043,9.6819,10.7271,2.3207,2.8097,2.0348,2.0181,1.9813,2.3287,10.0317,11.035,2.1007,2.3358,1.9633,2.0026,12.8908,11.9836,1.5209,2.1633,1.033,1.1263,12.6424,12.3802,5.0396,4.7932,6.2964,7.8364,4.1358,3.4799,9.1039,9.5354,6.4901,6.522,6.3472,6.5334,2.8636,3.6681,1.2969,1.4931,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,426
+desd428,36,36,M,2.2023,2.3369,0.3252,0.34666,0.76392,0.74291,18.827,2.3948,2.3042,49.2345,48.7858,14.8597,15.2001,231.6549,231.8286,1.576,3.1412,3.135,0.68395,0.63192,14.9264,16.7889,1.6193,1.565,3.2159,3.136,5.9457,6.5553,4.5223,4.875,0.07654,5.0567,2.452,2.6963,0.37691,0.38368,4.6205,5.0439,4.2179,4.8254,1.7531,1.5895,10.2892,9.6062,3.0589,2.787,4.3878,4.6239,4.4191,3.665,1.601,1.5151,2.0991,2.0581,3.8415,3.6495,7.3624,7.9761,1.968,2.1586,6.6247,6.717,12.3722,11.6051,8.4702,7.8092,2.3599,2.4261,4.9104,5.0957,1.7442,1.7233,20.5,19.6175,5.4842,6.1152,3.819,4.099,1.1424,1.3891,3.0654,2.9668,7.8601,7.372,15.0737,15.4109,2.6346,2.764,4.4483,4.473,3.6965,3.5359,1.6892,1.5858,4.3402,4.8399,10.6211,10.9055,2.8432,3.139,2.5404,2.5174,2.1702,2.4349,11.533,12.4707,2.309,2.4928,2.1552,2.3202,13.6313,14.0994,1.7809,1.868,1.3166,1.396,16.4903,15.5481,5.4518,5.8355,8.4524,8.6666,3.8384,3.1632,12.0503,12.2536,6.9815,7.7485,7.622,7.0794,4.1855,3.8312,1.492,1.5981,,18,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,427
+desd429,79,79,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,428
+desd430,56,56,M,2.6594,6.1146,0.38883,0.42061,1.0167,1.0389,19.4303,3.1409,2.7164,53.9778,52.6487,16.1786,16.505,241.6973,235.0903,2.6887,3.9391,3.5758,1.4552,1.3591,27.4336,42.0744,1.8306,1.7443,4.0497,3.9839,7.663,7.8519,5.0559,5.3238,0.07136,5.2348,2.4622,3.0265,0.46722,0.46999,4.001,4.706,4.3287,4.8387,1.5345,1.4604,9.4278,9.356,4.2052,5.3609,3.9293,4.6146,4.2007,4.2788,1.9942,1.9971,1.9712,2.048,3.4684,3.1803,7.8411,7.3827,1.8402,1.9738,7.0218,7.2467,11.5046,11.819,8.9198,7.9709,2.0146,2.3409,4.7042,4.4251,1.5318,1.6231,16.6894,17.3969,5.117,6.4401,3.5889,3.6606,1.2433,1.0916,2.8466,2.5253,7.2281,6.5107,14.0732,14.356,3.9516,4.2514,4.6118,4.701,3.4035,3.1692,1.4955,1.5144,4.0638,4.6896,10.9795,10.7779,3.3305,3.2634,2.5376,2.5789,2.2714,2.5469,10.4306,11.9197,2.1786,2.411,2.144,2.3431,9.9662,10.72,2.1247,2.1133,1.185,1.2546,16.326,14.7282,5.1528,4.861,7.9455,8.0809,4.3393,3.1908,9.2774,9.8591,8.0635,7.9222,8.0369,8.4928,3.5429,3.8601,1.6766,1.6991,,22,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,429
+desd431,60,60,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,430
+desd432,75,75,F,1.7085,2.0278,0.39267,0.44495,0.78849,0.77604,17.5233,3.5504,3.3039,46.0808,45.9534,14.4953,14.7498,222.79,211.7031,1.9797,3.1148,2.8797,0.81809,0.84058,24.2377,26.0747,1.4269,1.41,3.4167,3.53,6.1098,6.2847,4.0399,4.377,0.08676,5.0546,2.2006,2.5755,0.3835,0.41609,4.5528,4.9832,3.8856,4.0179,1.4807,1.4042,9.2757,8.3233,2.76,2.5467,4.058,4.1893,3.6229,3.1737,1.4797,1.4887,2.0299,1.9795,3.7123,3.5683,6.7617,7.2039,2.206,2.286,6.4462,6.3769,11.2782,11.0049,7.8232,7.0396,2.2026,2.0127,5.0149,4.8171,1.9705,1.8465,19.556,18.1065,4.7997,5.7884,3.6011,3.8036,1.112,1.1249,2.7166,2.5255,8.4822,7.5977,13.0026,13.2739,3.0039,3.282,4.1956,4.2907,3.0849,3.2136,1.6891,1.3087,4.0363,4.555,11.1301,10.7039,2.6559,2.8701,2.397,2.2704,2.4729,2.6416,9.3724,11.1711,2.5115,2.3422,2.2209,2.4456,12.189,11.6796,1.8124,2.0925,1.3271,1.4156,14.6949,14.3556,5.0958,5.1128,7.6135,8.5936,4.2164,3.2111,10.774,10.7102,6.7893,6.3731,6.9164,7.0025,3.7943,3.0403,1.5229,1.5567,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,431
+desd433,68,68,M,1.4677,2.0873,0.32552,0.37309,0.72504,0.71617,15.5866,2.5612,2.7309,41.6767,40.8498,13.6541,13.8789,217.6363,212.866,1.6396,2.9139,2.7815,0.65389,0.52513,11.2721,10.6779,1.596,1.5818,3.4324,3.5981,6.423,7.0902,4.0537,4.2827,0.07738,4.0092,1.8396,2.431,0.34941,0.35774,3.7514,3.9625,3.8268,3.8667,1.5121,1.3265,9.0385,8.7436,2.8436,2.7274,3.9593,4.0244,4.388,4.2084,1.407,1.332,2.0596,1.9849,3.2388,3.0791,7.2479,7.1395,1.8451,1.8816,6.2743,6.4085,10.3327,10.0437,7.8232,7.335,2.0761,2.0882,4.5714,4.4478,1.585,1.5371,16.9728,15.7914,5.0661,5.8726,3.4649,3.6247,0.95943,0.93506,2.4247,2.3482,6.6631,5.6651,12.1609,12.3186,2.7509,3.237,4.0199,4.052,3.5997,3.1393,1.4978,1.3523,3.6697,3.9007,9.7114,9.845,2.6071,2.7592,2.2363,2.3743,1.8914,2.0437,9.5254,10.1888,2.1154,2.1298,2.0533,2.2179,12.754,12.2405,1.7509,1.7159,0.97914,1.0006,13.117,13.9897,4.7566,4.8888,7.3513,8.3013,3.916,3.151,10.3461,10.4819,6.3706,6.8049,6.0942,6.6487,3.6145,3.5823,1.3876,1.4197,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,432
+desd434,80,80,M,1.4128,1.5609,0.31917,0.31044,0.71488,0.65465,22.1853,2.4642,2.424,47.3816,47.8809,17.7409,18.9707,240.1227,229.8856,1.2841,3.1254,3.1597,0.5503,0.47649,8.5689,9.1183,1.581,1.5958,3.1365,3.0846,6.1978,6.7694,4.9718,5.0581,0.07952,4.4861,2.1892,2.7442,0.34977,0.36923,3.591,4.2445,3.9055,4.0917,1.6198,1.3752,8.6911,7.677,2.4799,3.0771,3.3605,3.7912,3.7056,3.8834,1.3864,1.3252,1.7333,1.8498,3.3536,3.3375,6.6888,6.6987,1.6035,1.6888,5.263,4.832,10.6925,10.6215,6.9996,6.7395,2.0953,2.2053,3.8441,4.0969,1.5281,1.5863,15.7002,15.3838,4.1544,4.5397,3.2845,3.3321,1.0455,1.0559,2.4596,2.3819,7.1542,6.5312,12.5042,12.9016,2.3532,3.1137,3.7802,3.5787,2.6068,2.9264,1.4462,1.4606,3.2118,3.2435,8.0933,8.1084,2.7692,2.5619,2.0263,1.9991,2.0713,2.2295,8.9115,9.5644,2.3169,2.2222,1.7814,1.8628,10.8766,11.2346,2.1068,1.6047,1.017,1.0478,11.9065,11.831,4.4457,4.5847,6.4613,7.5438,3.8231,2.9982,8.3418,8.4294,6.545,6.1527,7.0344,7.0678,3.2372,3.7373,1.2917,1.304,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,433
+desd435,,,M,1.7635,1.8618,0.39648,0.45981,0.91058,0.90002,18.8247,3.0841,2.9302,47.2617,46.6155,15.4287,15.8368,243.2493,240.7816,1.6673,3.3593,3.1069,0.6202,0.50891,18.6268,19.5064,1.7406,1.6728,3.6721,3.7863,7.4277,7.6661,4.6789,4.8963,0.079,4.8763,2.1986,2.5807,0.41841,0.39329,4.2319,4.8432,4.2669,4.1532,2.0067,1.7476,10.8415,9.6959,3.1299,3.0054,4.1937,3.6082,4.6793,4.6747,1.7718,1.7886,2.1043,2.0074,3.9362,3.719,7.7197,7.4957,2.3691,2.1961,6.8412,6.7684,12.309,11.3456,8.2507,7.4707,2.4991,2.4943,4.3176,4.5369,1.9705,1.9858,19.315,18.8358,5.3678,6.4185,4.1593,4.367,1.0789,1.1088,2.4677,2.4911,7.8791,7.2608,15.9737,13.9554,2.7447,3.3048,4.1216,4.2138,3.7968,3.353,1.7088,1.5283,4.1532,4.5911,10.6949,11.8842,2.8849,3.1626,2.5376,2.2345,2.415,2.2186,10.1561,11.4424,2.573,2.6048,2.3609,2.4949,12.4627,13.0042,2.0364,1.8896,1.2363,1.2655,14.6171,15.0623,5.4061,5.2538,8.3454,9.2066,4.5506,3.4882,11.7083,10.4191,8.1165,7.9424,8.2934,8.1949,3.8575,3.8459,1.5639,1.7839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,434
+desd436,85,85,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,435
+desd437,70,70,F,1.8234,1.2451,0.33943,0.34673,0.65252,0.6146,16.2942,2.9581,2.7742,38.9738,35.7295,12.9291,12.9974,181.3894,179.8191,2.1946,2.6804,2.7936,1.5235,1.1837,31.5216,25.8464,1.5208,1.4302,3.0985,3.0698,5.4613,5.9736,4.3972,4.5994,0.08132,4.0555,1.7952,2.0238,0.41304,0.39466,4.0849,4.8432,4.5278,4.8321,1.6747,1.3762,9.2715,8.7511,2.3796,2.1827,4.3265,4.2508,4.2997,3.6537,1.3332,1.2463,1.7367,1.84,3.7123,3.3823,6.491,6.5236,2.1746,1.9112,5.7916,5.9248,9.9738,10.1499,7.2462,6.4803,2.0677,2.2053,4.693,5.4779,1.9726,1.7188,16.5933,17.1496,4.6608,5.5648,3.9069,3.7779,0.98211,1.1123,2.5523,2.5312,8.2049,7.2221,11.8607,12.8847,2.5645,2.8618,3.8474,3.7681,3.1755,2.9289,1.4573,1.403,4.0449,4.6253,10.4931,10.7532,2.5701,2.898,2.5789,2.4456,2.409,2.399,11.0358,10.9116,2.1966,2.5075,2.2659,2.444,10.9318,11.4368,1.8144,2.1613,1.2498,1.2689,13.6742,13.1603,4.9986,5.057,8.6764,10.3583,3.6908,3.1751,9.4279,9.7264,6.7205,6.9033,6.9277,6.782,3.4478,3.5983,1.7211,1.6836,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,436
+desd438,,,F,2.9825,6.1146,0.14255,0.26339,0.51139,0.50656,17.4546,1.6327,2.0219,47.2334,47.6829,13.6201,14.0245,175.9135,168.3196,2.2756,2.4553,2.0602,2.0029,2.2641,42.7786,43.4433,1.4893,1.5117,0.32208,2.6123,5.6653,5.9124,4.4153,4.782,0.07224,4.6495,2.3143,2.522,0.13799,0.2964,0.00019,3.3593,3.4566,2.4313,1.3526,1.2013,5.3578,6.6607,3.5365,3.2925,3.6505,3.6249,4.7544,4.3864,1.0263,1.0787,1.5785,1.5681,3.1507,2.7384,5.1012,5.323,1.4739,1.6468,6.071,5.9909,6.7824,8.6997,8.0838,8.1555,1.7141,1.9837,3.3912,3.825,1.1938,1.3864,16.3607,18.0565,4.4835,5.5864,2.8596,3.1934,0,0,0,1.843,6.2585,5.6164,9.6374,11.0512,2.9628,2.9022,3.8536,4.0405,2.6049,2.5532,1.0991,1.2335,3.2366,4.0634,8.3878,9.9817,2.2952,2.5337,1.6208,1.4917,2.3633,2.7685,7.7493,8.9628,1.354,1.9167,1.3134,1.8628,12.156,11.2192,1.9094,2.3105,0.93137,0.97895,13.6378,0.00013,4.2116,4.1648,6.9484,6.0253,4.2119,3.3708,9.3058,9.5078,6.3164,6.2291,2.8712,4.5637,2.9562,2.8697,1.326,1.5251,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,437
+desd439,57,57,M,1.936,2.2777,0.35116,0.39515,0.78023,0.77604,17.0245,2.8217,2.5936,40.2924,41.6131,13.8985,14.1856,208.9435,203.9727,1.8418,3.1148,2.8264,0.96452,0.90545,21.4729,24.7165,1.6072,1.563,3.2613,3.4984,6.3973,6.5072,4.4392,4.6343,0.07485,4.5531,2.0673,2.4701,0.38239,0.37563,3.4618,4.2337,3.6847,4.1295,1.5605,1.5194,9.2715,7.0883,3.5223,3.0259,3.6255,3.8617,4.371,4.3734,1.5072,1.4028,1.7688,1.8211,3.6256,3.2268,6.9996,6.3426,1.8429,1.9946,6.045,5.9785,10.4929,10.082,8.7088,7.7479,2.0685,2.328,4.2837,4.4422,1.6125,1.7359,18.328,18.7835,4.9182,5.1658,3.7264,3.7478,0.92943,0.88176,2.0912,2.1453,7.7702,6.5976,13.0454,12.2163,2.9425,3.079,4.2481,4.2052,2.73,3.0456,1.5239,1.4082,3.8402,4.2493,9.2679,9.9918,2.6174,2.9924,2.1693,2.1665,1.6992,1.8289,8.3638,9.5017,2.1665,2.4751,1.8817,1.9533,10.932,10.8389,1.3661,1.7231,1.1318,1.1687,12.8768,13.1303,4.4891,4.786,6.7607,7.9897,4.2161,3.7343,9.4088,8.3738,3.5,6.0861,6.8489,6.4164,3.2797,3.6177,1.2809,1.3575,,15,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,438
+desd440,73,73,M,1.7782,2.263,0.37023,0.42597,0.91712,0.90579,17.1042,3.5058,3.1889,45.4266,44.7344,14.377,14.4634,245.3837,236.2561,1.8418,3.5198,3.2736,1.2968,1.1827,19.8549,28.2322,1.6414,1.5819,3.7462,3.8729,6.8653,7.0953,4.6086,4.8199,0.07303,3.9406,1.9299,2.5824,0.40429,0.40491,3.8445,4.6323,4.1727,4.3787,1.7931,1.6322,10.2154,8.8426,3.2136,3.0364,4.0376,3.9079,3.924,4.243,1.6292,1.7233,2.1883,2.0207,3.842,3.5344,6.6275,6.4863,2.0653,2.0895,6.2164,5.7158,10.7232,9.5956,7.3862,7.4715,2.3463,2.3889,4.5074,4.7633,1.8834,1.8433,18.5718,18.6825,4.667,5.4804,3.7301,3.9294,1.0925,1.3627,2.5435,2.823,7.6211,7.3397,13.5985,12.4403,2.7764,3.2823,3.9794,3.9462,3.7979,3.1331,1.745,1.5248,4.2966,4.6368,10.2594,10.6903,2.6696,2.8523,2.5153,2.5628,2.0498,2.1338,10.094,11.6679,2.5048,2.698,2.2112,2.575,13.319,12.6851,1.6753,1.9435,1.3078,1.3509,15.6293,17.3921,5.2991,5.6746,8.3976,9.5454,3.2345,3.7492,10.205,11.6074,7.4318,7.6208,7.2265,6.6838,4.0715,4.6862,1.7147,1.7839,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,439
+desd441,70,70,F,1.6635,1.4237,0.38902,0.40152,0.86623,0.84337,15.4609,2.7961,2.5944,39.3487,39.9079,10.7408,10.9588,236.2134,236.364,2.0508,3.2022,2.9369,0.80356,0.59173,23.9601,27.0618,1.6668,1.7354,3.867,3.8509,7.042,7.1699,4.2401,4.3716,0.07385,3.7344,1.8031,2.247,0.38647,0.39953,4.1233,5.0062,3.9071,3.8531,1.6576,1.6272,9.7638,8.2935,3.1375,3.0365,3.3643,3.701,4.1589,4.2445,1.7387,1.6035,1.6005,1.6262,3.7183,3.467,6.9795,6.8267,2.5778,2.6282,6.0352,5.7158,10.4929,10.2239,7.4103,7.2027,2.0858,2.3021,4.4076,4.626,1.8932,1.9912,20.3753,19.7497,5.0917,5.7345,3.5988,4.3252,0.76618,0.88625,2.4239,2.0058,8.372,7.5977,13.4647,11.7806,2.9628,2.9641,3.8431,3.9573,2.8152,2.6453,1.6195,1.349,4.0842,4.453,9.7306,10.1946,2.8498,3.1201,2.2922,2.1578,2.0918,2.2527,9.5891,9.8247,2.188,2.8676,2.0531,2.273,11.6364,11.8036,1.8383,2.0222,1.2749,1.3219,14.4455,16.7898,5.58,5.4671,7.3399,7.7603,3.9438,3.0447,9.5839,9.5963,6.7251,6.2354,7.3755,7.066,3.437,3.2801,1.4688,1.5661,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,440
+desd442,62,62,F,1.2068,2.1104,0.32621,0.35247,0.785,0.78003,16.2768,2.4036,2.1702,41.246,40.9443,12.3419,12.4404,223.5163,221.6966,0.99997,3.2479,3.1144,0.52536,0.54806,7.0569,8.6117,1.5006,1.4293,2.908,3.2674,6.861,6.9254,4.2283,4.4831,0.06742,3.9657,1.9304,2.5107,0.37438,0.33822,3.494,4.5408,3.3778,3.7508,1.7009,1.5808,9.5089,9.3047,2.272,2.3365,3.5399,3.4536,3.8567,3.3427,1.4945,1.5804,1.7945,1.7916,3.3539,2.9772,6.5846,6.6103,2.0941,2.0545,5.202,5.5398,10.5798,9.954,5.989,5.2629,1.9995,2.2204,4.0403,4.4564,1.6283,1.6313,16.3854,17.2443,4.4002,5.2818,3.7832,3.8787,1.2031,1.1236,2.8354,2.6138,7.3804,6.9455,12.0367,12.4628,2.2139,2.7125,3.363,3.6226,3.3074,3.4143,1.4587,1.4754,3.993,4.0256,10.0864,10.1207,2.7231,2.9176,1.8025,1.865,2.2401,2.4906,10.5334,11.6679,1.8155,2.6116,1.6847,1.8051,12.0222,11.6246,1.8116,1.9443,1.0058,1.0927,13.233,12.6978,5.2426,5.057,8.4164,8.4213,3.3415,3.3079,9.2403,10.1258,6.8605,6.89,7.0173,6.2784,3.2317,3.639,1.4022,1.5247,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,441
+desd443,,,M,1.8122,2.2777,0.33165,0.36378,0.82664,0.79912,15.9729,2.408,2.1381,44.7024,43.7242,13.9568,13.3684,198.8894,191.6235,2.0082,3.1175,3.0347,0.96452,0.64834,23.2901,32.7167,1.4005,1.4702,3.2613,3.2931,6.1788,6.3735,4.0628,4.3385,0.07383,4.7614,2.2356,2.3625,0.40662,0.41892,4.0313,4.591,4.5278,4.7752,1.6874,1.526,10.4985,9.2433,3.0901,3.1621,4.103,3.6261,4.6859,4.9988,1.6944,1.5579,2.1733,2.078,3.7183,3.6432,7.8632,7.3983,2.2614,2.1218,6.8111,6.1691,11.7629,11.183,8.1635,7.4707,2.1865,2.4265,3.9635,4.1749,1.8054,1.9573,17.659,19.2089,5.532,6.2585,3.8959,3.9945,1.3088,0.96247,2.6036,2.4824,7.3912,6.9421,15.2442,14.7553,2.6114,3.0741,4.2832,4.5236,3.4552,3.4183,1.5509,1.5915,3.831,4.4716,10.1363,10.1122,2.9695,2.9516,2.4381,2.5536,2.3281,2.7249,9.3621,11.4231,2.2488,2.425,2.1272,2.4694,10.8662,10.9786,2.0168,2.1913,1.3438,1.4347,15.8016,15.1143,4.9108,4.9214,7.8348,7.8636,4.0754,3.6107,10.2779,10.3233,6.5986,7.4313,7.785,7.1076,3.4369,3.9585,1.5776,1.8654,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,442
+desd444,61,61,F,1.9503,1.6033,0.35333,0.39708,0.77616,0.74284,18.4171,3.0468,2.7872,47.735,46.55,15.073,16.4669,208.3674,204.9386,1.6454,3.1891,2.9529,0.78206,0.6879,15.4962,17.5594,1.4537,1.5146,3.8225,3.8851,5.8988,6.5764,4.5249,4.7913,0.07383,4.993,2.3057,2.5511,0.41104,0.39964,3.3471,4.1262,4.3287,4.8668,1.909,1.6815,9.7901,9.0578,2.8211,2.8576,3.5212,3.6788,4.5201,4.4391,1.4789,1.5151,2.0395,2.0697,3.8635,3.662,7.2911,8.0186,2.097,2.1148,6.7827,6.1079,11.9523,11.5205,7.6875,7.6841,2.4733,2.6598,4.4497,4.5514,1.8564,1.8724,17.8984,19.9508,5.6475,5.8606,4.2565,4.748,1.0662,1.2778,2.5406,2.8102,7.1327,6.7466,15.2442,14.0082,3.2368,3.9331,4.6201,4.4974,3.8079,3.442,1.6822,1.8436,3.8381,4.3267,10.1319,10.6461,2.8467,3.0972,2.4064,2.3505,1.7536,2.003,10.5483,11.5429,2.5308,2.691,2.312,2.1704,12.3347,13.3408,1.4394,1.7338,1.3989,1.3937,14.6171,15.2126,5.2933,4.9228,7.4809,8.9568,4.3263,3.8769,10.2263,11.1783,7.7549,7.64,7.3499,8.0069,3.7315,3.7596,1.6442,1.6448,,16,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,443
+desd445,,,M,2.0714,2.5948,0.37359,0.41851,0.86274,0.87588,18.139,2.969,3.0276,47.1015,46.8404,14.3158,14.8935,203.5624,202.825,1.9267,3.4752,3.1809,1.2206,1.1802,21.5353,25.7898,1.5397,1.5793,3.8694,4.0496,6.7219,7.1641,4.5429,4.7758,0.07252,5.3858,2.356,2.6899,0.39676,0.44292,4.497,4.8817,3.8127,4.1694,1.6705,1.5772,9.5111,9.2301,3.312,2.8557,3.9353,4.2973,4.9972,4.6638,1.6292,1.8051,1.9782,2.0063,3.3301,3.2432,7.4872,6.6344,1.9915,2.2016,7.3851,7.3491,12.3948,10.374,8.271,8.0496,2.2221,2.4574,4.2543,4.3599,1.8225,1.7994,18.3811,18.4826,5.4944,6.4443,3.7024,4.099,0.95715,0.98826,2.1484,2.3509,7.8791,6.8637,15.5843,13.6704,3.859,4.3392,4.7147,4.6219,3.3535,3.0519,1.4161,1.5883,4.1452,4.0821,10.8608,10.8082,2.8849,3.2276,2.3679,2.2733,2.1933,2.5934,10.6069,11.491,2.1934,2.4393,1.8778,2.1583,11.9271,11.7937,1.969,2.1044,1.2498,1.3691,15.3155,15.9663,5.0162,5.3446,8.3387,9.1577,3.961,3.7427,9.1906,9.4851,7.3271,7.6945,8.0029,7.2595,3.4516,3.6428,1.4087,1.7502,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,444
+desd446,70,70,M,2.3722,2.271,0.39339,0.4186,0.83864,0.87536,15.6103,2.6524,2.6901,27.9343,27.5385,11.3847,9.2054,221.5317,222.2557,1.7846,3.328,3.1929,1.0172,1.0467,20.8601,19.1291,1.6023,1.5737,3.339,3.3626,5.7788,6.1208,4.2464,4.4351,0.05934,4.4656,1.9054,2.2432,0.40169,0.36049,3.955,4.2625,3.8771,4.2382,1.6152,1.4936,8.7781,9.0157,3.2184,3.0384,3.5689,3.5452,4.4357,4.5886,1.5306,1.6513,1.5533,1.8077,3.5588,3.4426,6.3448,6.2422,1.7773,1.8647,5.6115,5.2871,9.3181,10.063,7.5887,6.9489,2.0721,2.3104,4.2552,4.2246,1.615,1.853,17.6055,17.3371,4.1007,5.1371,3.278,3.6606,1.0033,1.1275,2.5015,2.771,7.1281,6.1771,10.2149,12.4628,2.5712,2.7921,3.5564,4.0298,2.5222,3.3705,1.4668,1.2806,3.1812,3.4659,10.1893,9.9705,2.8132,3.1678,2.5604,2.2395,1.9658,2.1001,8.4056,9.8615,2.2032,2.4356,2.2609,2.1931,10.7378,10.7317,1.7924,1.8446,1.1589,1.1796,12.0217,11.9293,4.4488,4.6711,8.062,8.6646,3.5277,2.8738,9.4093,8.9908,5.4796,5.4892,6.9028,6.5539,3.0846,3.5311,1.6937,1.2297,,19,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,445
+desd447,68,68,F,1.1521,1.2549,0.3775,0.42053,0.70439,0.73871,16.1426,3.1106,2.8869,39.1359,39.5897,12.6679,12.8817,206.115,204.8485,1.0792,2.8399,2.7815,0.42811,0.40076,7.1264,11.6928,1.4516,1.4856,3.4974,3.605,6.3432,7.0902,4.2425,4.3707,0.07686,4.4069,2.1196,2.2823,0.36306,0.37705,3.6412,4.3216,4.0296,3.9407,1.7233,1.4873,9.467,8.2846,2.8999,2.6903,3.9783,3.767,4.1145,4.0584,1.4787,1.5617,2.0395,1.8744,3.176,3.1008,6.6938,6.7178,1.8698,2.1135,6.2831,6.1344,10.9046,10.1853,7.5364,6.518,2.205,2.3733,4.1951,4.2942,1.665,1.7096,16.6827,17.8216,4.6822,5.8687,3.6668,3.9973,0.91859,0.88686,2.4188,2.346,7.7702,6.1771,13.2849,12.5919,2.1902,3.1491,4.0474,3.809,3.43,3.0311,1.535,1.4969,3.6697,3.8357,9.5387,9.3441,2.5347,2.8056,2.2439,2.1742,1.9619,2.1389,10.3026,10.8325,2.4304,2.4218,2.0861,2.2753,11.574,11.8684,1.6375,1.684,1.0876,1.1458,13.5537,13.2583,5.1681,4.9117,7.3716,7.816,3.6081,3.151,9.4309,9.1142,6.5747,6.0978,7.4883,6.2556,3.3817,3.8279,1.2649,1.3936,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,446
+desd448,42,42,F,1.6311,1.6911,0.34508,0.35194,0.74861,0.68548,14.8491,2.6297,2.2943,39.8014,39.5951,11.5711,11.9739,184.6449,181.1042,1.7597,2.735,2.5595,1.6199,1.2296,23.1492,26.3035,1.5157,1.4512,2.8402,2.6628,6.6626,6.6044,3.9613,4.1549,0.08338,4.028,1.9454,2.3144,0.30481,0.33346,3.614,3.6553,3.4566,3.7116,1.4292,1.327,9.078,8.1956,2.9077,2.7067,3.4983,3.5732,3.4139,3.349,1.2358,1.2884,1.665,1.6296,3.0302,2.7766,6.3474,6.1736,1.5802,1.707,5.6899,6.2988,10.1838,9.6693,6.7667,6.2339,1.8516,2.0723,4.0283,3.8531,1.3567,1.3769,14.8866,15.7862,3.9228,5.8493,3.0863,3.6539,0.99292,1.0809,2.3593,2.1921,6.4642,5.5724,13.1167,12.0562,2.4852,2.4868,3.4528,3.7017,3.2271,2.4846,1.3857,1.2037,3.5002,3.8365,8.9542,9.1132,2.4883,2.6572,2.0205,2.0626,1.7461,1.8917,7.7997,9.1617,2.0893,2.2758,1.9628,2.0071,9.7905,10.2525,1.6103,1.65,0.97823,1.0087,13.1704,14.9077,4.6043,4.5158,6.6345,8.3502,3.7366,3.0659,8.6385,8.3972,5.9959,6.9838,6.8371,6.9046,3.5166,3.1253,1.3013,1.3098,,22,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,447
+desd449,61,61,F,0.73794,1.1257,0.32996,0.34514,0.81262,0.7718,15.0725,2.7039,2.5866,24.3004,18.9006,12.0168,12.3273,180.3954,171.5857,0.87039,3.0354,2.8217,0.39474,0.47194,7.0678,7.5408,1.2196,1.1772,3.441,3.5786,6.1763,6.3217,3.583,3.6547,0.07224,4.0126,1.9258,1.1706,0.34166,0.33925,3.4068,4.0697,3.5503,3.5946,1.5703,1.3481,9.1366,8.764,2.8999,2.5994,3.6053,3.5404,4.1376,3.9712,1.5538,1.4503,1.7009,1.7798,2.9038,3.3668,5.6104,6.4082,1.7508,1.7823,5.6078,5.3117,9.6194,9.3132,6.769,6.181,1.9258,1.9433,3.9332,4.0007,1.4822,1.5761,15.5811,15.4102,4.4236,5.6877,3.3353,3.3897,0.95289,0.8375,2.3342,2.0461,6.7463,6.2394,12.1742,11.2481,2.4359,2.8267,3.4707,3.3711,3.2791,3.1727,1.3675,1.1918,3.5002,3.8911,8.8048,8.7801,2.5944,2.7336,2.1367,1.9738,1.9047,2.1672,9.1729,10.1847,2.0893,2.2124,1.7315,1.9473,10.8173,9.9871,1.7287,1.7456,1.0645,1.1152,10.918,10.7096,4.6414,4.7041,6.6766,8.733,3.6081,2.8539,9.3888,10.0019,6.6185,6.7777,6.9409,6.7532,3.3582,2.9795,1.369,1.3919,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,448
+desd450,75,75,F,1.7085,1.9137,0.28645,0.36694,0.64983,0.6961,15.5147,2.5567,2.6666,39.9028,40.0559,12.2193,11.9709,175.9135,169.8775,1.402,2.7624,2.5093,1.8227,1.3495,17.8408,18.5819,1.3261,1.4068,3.0363,3.0414,5.5835,5.8946,4.2057,4.3579,0.06919,3.607,1.9097,2.4511,0.36046,0.30959,3.8669,4.5912,3.3815,3.5566,1.63,1.4914,9.031,6.643,2.9378,2.7872,3.8943,3.6877,3.9572,3.8322,1.3332,1.4257,1.7386,1.7489,3.3523,3.0266,6.0937,6.1212,1.8661,1.9025,5.566,4.9306,10.0847,9.6693,5.7237,5.962,2.0293,2.3252,4.139,4.0897,1.6742,1.6432,15.0889,15.3404,4.6182,4.3309,3.3546,3.7484,0.8514,0.85443,2.2221,2.3049,7.0436,6.2133,11.2172,12.1057,1.9227,2.4031,3.5301,3.6264,3.3006,3.34,1.3798,1.4934,3.659,3.8742,9.3893,9.1319,2.365,2.6722,2.0847,2.082,2.3256,2.4107,10.0747,10.3747,1.9527,2.2128,1.7293,1.9672,10.6755,11.4156,1.9312,2.0921,1.0691,1.1747,11.5871,11.8028,4.6107,4.7393,7.9335,9.3403,3.2296,2.6668,8.7907,10.4434,5.9591,6.2873,6.9028,7.0717,3.5707,3.62,1.3062,1.4862,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,449
+desd451,58,58,M,1.7266,2.4181,0.37592,0.39484,0.80898,0.75558,19.1081,2.8117,2.1129,54.9233,54.4207,18.9067,18.277,240.1227,232.5789,1.4619,3.5596,2.9947,1.0092,0.73692,31.8545,32.6877,1.7416,1.7203,3.4765,3.3121,7.0514,7.5892,4.8195,4.9371,0.06925,4.4949,2.6203,2.8718,0.35107,0.38985,3.6402,4.4399,4.1032,4.1686,1.7255,1.4641,9.615,8.9364,3.6757,3.2925,4.1787,4.1444,5.0668,4.6493,1.722,1.6036,1.9111,1.7371,3.5588,3.3786,8.0084,7.683,2.0941,1.9279,6.8332,7.4721,11.4244,10.5925,8.4486,7.3194,2.2305,2.4542,4.3864,4.5046,1.8738,1.8625,16.9019,18.325,5.2902,5.956,3.7058,3.6573,1.1779,1.0477,2.5709,2.3418,7.7032,6.6172,13.799,13.5444,3.7782,4.3392,4.5378,4.451,3.4238,3.215,1.3825,1.4613,4.0904,4.2021,10.4226,10.2134,2.8432,3.2482,2.2741,2.1583,2.4557,3.0561,9.0906,11.1024,2.2365,2.4663,2.0631,2.4308,10.969,11.7937,1.8109,2.5081,1.1912,1.2461,12.557,12.9671,5.269,4.861,8.0874,10.6176,4.5674,3.8709,10.7106,9.8389,7.2022,7.4843,7.7968,7.2737,3.2606,3.4662,1.5101,1.7766,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,450
+desd452,73,73,M,1.4175,1.8126,0.37835,0.42597,0.82649,0.90388,17.5262,2.9505,2.8513,48.4678,48.3552,14.4953,14.7292,250.2897,246.2771,1.3649,3.5434,3.5674,0.96487,0.90361,16.8999,20.6057,1.6457,1.5937,3.909,3.8762,6.39,7.0209,4.6086,4.8657,0.08385,4.8149,2.4087,2.7544,0.37346,0.38798,4.6665,4.7719,4.166,4.5723,2.1901,1.6953,10.9498,10.7749,3.3619,3.0047,4.1699,4.6239,4.6508,4.4996,1.7484,1.7519,2.1141,2.308,4.5784,4.3061,7.5756,7.6979,2.3144,2.3903,7.3511,7.2467,11.4524,12.7822,8.2946,7.7831,2.5202,2.593,4.2979,4.6949,2.0238,3.0114,20.5258,20.8553,6.0795,6.2518,4.2036,4.3773,1.1528,1.0991,2.5889,2.5647,8.4573,7.2554,14.7468,13.855,3.2767,3.4538,4.3781,4.5027,3.5209,3.5357,1.7251,1.774,4.2346,4.6571,10.6144,10.2366,3.144,3.3438,2.3587,2.5536,2.3058,2.5855,11.4327,12.5231,2.4833,2.6119,2.1181,2.7221,13.5346,14.2938,2.0739,2.1193,1.3218,1.4297,17.322,18.842,6.3587,6.2755,9.0598,10.4661,4.6325,3.9881,10.2779,10.6301,6.9815,7.3668,8.7133,8.1597,3.9961,4.4729,1.518,1.8423,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,451
+desd453,59,59,F,0.73794,1.1257,0.40807,0.43187,0.86192,0.86685,16.2224,2.8766,3.0593,36.5871,35.1182,12.807,13.0618,236.2134,234.481,0.85913,3.3244,3.0577,0.40818,0.40851,6.8043,3.8601,1.727,1.7676,3.3666,3.4359,6.39,6.9475,4.7012,5.2915,0.07289,4.3015,1.9967,2.2594,0.38938,0.36723,4.1233,4.5795,3.5163,3.6771,1.7262,1.4732,9.0344,9.3719,2.4799,2.5487,3.4588,3.5507,3.7159,4.6735,1.7787,1.6616,1.8713,1.7573,3.3897,3.2724,7.2433,7.1633,1.9369,1.9448,6.7307,7.438,11.4824,11.3263,7.5873,6.5669,2.184,2.3387,5.1835,5.4468,1.5906,1.6862,20.6697,19.892,3.4789,6.9686,3.4504,3.9433,1.1739,1.0947,2.6417,2.4547,7.5197,6.6438,13.6957,13.5805,3.7041,4.2854,4.2429,3.9337,3.3483,3.8005,1.4622,1.3536,3.849,3.9752,9.4884,9.1856,2.995,3.1178,2.0113,2.1058,2.0743,2.1774,10.5252,11.2932,2.421,2.6528,1.9729,2.0773,13.1199,13.3993,1.755,1.7725,1.1449,1.1796,13.374,13.7966,5.5314,5.5141,8.042,8.483,4.7643,4.4913,9.6342,11.3991,7.0859,7.5846,7.4404,7.1663,3.6155,4.1011,1.4013,1.3774,,,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,452
+desd454,75,75,M,1.5559,2.0764,0.37023,0.43857,0.80409,0.83264,18.1291,2.8302,2.8282,48.8941,49.7441,13.7119,13.784,206.3472,208.9042,1.33,3.1227,2.9435,0.45382,0.4663,18.6368,15.6225,1.4296,1.41,3.68,3.7474,6.4733,6.6497,4.4367,4.7556,0.07642,5.4564,2.2979,2.533,0.40259,0.41953,4.1159,4.6921,3.8534,3.8667,1.5749,1.4033,10.2074,8.6968,2.76,2.5467,3.767,3.5647,4.3653,3.651,1.6281,1.5848,1.9104,1.9553,3.8271,3.6591,6.6421,7.1118,2.2603,2.2513,4.1811,5.1164,11.0778,11.1512,7.6875,7.1498,2.1142,2.2165,3.9214,4.6734,1.8465,1.8729,18.5568,18.1861,3.2197,4.9917,3.6011,3.8036,1.1226,1.1154,2.8719,3.0342,8.254,6.9886,13.7059,13.5472,1.9228,2.5511,4.14,4.0925,3.3883,3.5025,1.4614,1.4242,3.7934,4.3477,10.4475,10.7974,2.8765,2.9691,2.2595,2.232,2.2849,2.4107,9.4488,10.4723,2.3103,2.438,2.0861,2.2512,11.7388,12.2178,2.0277,1.9429,1.404,1.4896,14.7021,14.8167,6.1697,6.2755,7.686,8.907,3.7545,2.9693,12.3532,11.2477,7.0455,7.2714,7.1959,7.0025,3.1809,3.713,1.4499,1.6621,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,453
+desd455,72,72,F,1.2241,1.3928,0.40112,0.43272,0.82649,0.82365,15.199,2.7826,2.5681,43.7419,41.9724,13.7147,13.8789,227.3956,216.712,1.3381,3.3738,3.1719,0.52755,0.54285,13.8722,15.693,1.5032,1.5196,3.548,3.5929,6.1974,6.5512,4.1214,4.2268,0.07213,3.7562,1.9369,2.0572,0.41127,0.4067,4.0313,4.4059,4.2385,4.1261,1.8887,1.6453,10.1158,9.0189,3.8375,3.6542,3.9038,3.7964,5.5132,5.1157,1.7405,1.6122,1.9656,2.1023,3.7506,3.6101,7.2503,7.2979,2.2997,2.4717,6.898,6.4314,11.6005,11.819,8.2264,7.7043,2.3552,2.6274,4.3592,3.9037,1.9077,1.8939,17.8984,18.181,5.0555,6.1245,4.2061,4.279,1.0169,1.0159,2.3303,2.2716,7.5136,7.3574,14.5052,14.4012,2.7339,3.6695,4.6522,4.4974,3.5311,3.2132,1.7302,1.4684,4.2127,4.7365,10.9989,10.8734,2.9695,3.1578,2.3262,2.2733,2.3774,2.4288,10.098,11.1911,2.4015,2.6802,2.1469,2.2904,12.4549,11.489,2.2014,1.9948,1.2814,1.3214,15.7196,15.0048,5.1062,5.5097,8.0458,9.4595,4.0754,4.138,10.3852,11.6669,8.0635,7.3659,8.3589,8.0864,3.9409,4.1668,1.6375,1.6592,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,454
+desd456,61,61,F,0.92769,1.4228,0.32996,0.40888,0.78518,0.80224,15.5056,2.3119,2.224,41.6372,40.055,12.6024,12.7326,223.5163,219.2785,0.86119,2.8816,2.5125,0.37858,0.37085,8.7002,8.8317,1.3677,1.3782,3.0072,2.9525,6.5266,6.5934,3.9552,4.171,0.06336,4.0092,1.9454,2.2817,0.36052,0.34565,3.6402,4.0426,3.3815,3.6338,1.7272,1.5009,9.1914,6.9954,2.197,2.2969,3.7695,3.5908,3.8715,3.9733,1.5982,1.4933,1.6897,1.7211,3.3842,3.0078,7.0202,6.3426,2.0388,1.6308,5.8472,5.6511,10.0606,9.6693,6.5453,5.4669,2.2476,2.4574,4.0403,4.039,1.6708,1.5096,16.2943,17.2443,4.5528,5.4096,3.5735,3.5912,0.95698,0.99619,2.3443,2.4103,7.1866,6.2086,13.3075,12.256,2.2547,3.4122,3.6688,3.6264,3.2061,3.4143,1.5133,1.5016,3.4532,3.8501,9.3981,10.4343,2.8393,3.0236,2.0144,1.9671,1.9107,2.4066,8.5765,10.7772,2.2353,2.2485,1.9409,2.0836,11.1654,11.7583,1.4596,1.9041,1.028,1.0783,12.3132,12.2416,4.6414,4.4374,7.473,8.5936,4.1722,3.1865,9.8461,8.1832,5.8607,6.5243,7.0991,6.2784,3.2089,3.7933,1.2959,1.4045,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,455
+desd457,63,63,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,456
+desd458,59,59,M,1.6574,1.6066,0.39299,0.43782,0.9256,0.8882,21.6469,3.1739,2.9527,48.6657,48.3369,19.2503,18.277,245.8511,245.8619,1.2513,3.7963,3.6642,0.60141,0.47953,9.5783,10.5276,1.5444,1.5431,4.0664,3.9746,7.756,8.049,4.8444,4.8368,0.06923,5.1861,2.359,2.7452,0.40804,0.39996,4.8855,5.2022,4.5119,4.5521,1.9942,1.5833,10.5766,9.3956,3.5084,3.4373,4.2689,4.6945,5.1768,4.9364,1.7743,1.7333,2.0658,2.2036,4.2276,3.8872,7.2526,7.338,2.4681,2.4152,7.2674,6.8556,12.2302,12.583,9.3943,8.4713,2.5593,2.4261,5.5306,5.2196,2.2693,2.0905,17.9655,19.0342,5.7094,6.6156,4.3027,4.5663,1.2922,1.198,2.7102,3.0479,8.2217,7.6204,16.6756,15.7275,2.4932,3.3037,4.5213,4.6879,3.3535,3.2658,1.6705,1.5858,4.4753,4.979,11.9382,11.4018,3.1566,3.2579,2.3587,2.3462,2.3003,2.4889,11.4864,11.405,2.4985,2.5487,2.3438,2.3556,13.2427,13.1288,2.013,2.4035,1.3131,1.4408,16.4027,15.8127,6.5039,6.0863,8.4524,9.5017,4.1918,3.7762,10.6104,11.9308,7.2645,8.7619,8.3394,9.2731,3.7822,3.8429,1.6375,1.7095,,24,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,457
+desd459,62,62,F,0.73794,1.2525,0.31981,0.33326,0.51972,0.55213,15.0725,2.7265,2.6558,42.0515,40.6259,12.1718,12.2415,183.5008,189.0925,1.0008,2.4134,1.3047,0.60093,0.57737,7.8019,7.5408,1.3856,1.4276,3.3634,3.1882,5.8613,5.8789,4.0622,4.2057,0.06557,4.1593,1.8396,2.431,0.30935,0.32294,3.1858,3.5612,3.4572,3.4425,1.6303,1.258,8.7062,8.1047,2.3393,2.0926,3.175,3.7673,3.0771,2.9036,1.0283,1.0768,1.6913,1.7876,3.3099,2.9333,6.2984,4.8119,1.9636,1.7793,4.9555,5.1534,9.3723,7.9361,5.989,5.8332,1.9941,2.1521,4.7066,4.9177,1.5572,1.5077,16.2457,16.3877,3.5569,5.3461,3.6362,3.201,0.86368,0.95416,2.0625,2.0706,6.0084,5.8097,11.4705,9.5015,2.3956,2.7148,3.3985,3.4255,3.1906,3.2688,1.3021,1.4934,3.6139,3.9854,8.3795,8.4152,2.2618,2.5184,1.9313,1.916,1.5536,2.0229,8.2449,9.8218,1.8718,2.3422,1.7949,1.9804,10.6188,9.9601,1.5465,1.6792,1.028,1.0804,13.2609,14.9077,4.4287,4.4581,7.3672,7.4277,3.0225,2.776,8.8864,9.2684,6.2276,5.1763,5.4577,6.4185,3.0398,3.3856,1.1816,1.3482,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,458
+desd460,68,68,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,459
+desd461,,,F,2.9825,6.1146,0.26034,0.33732,0.80199,0.89488,14.8758,2.1662,2.0871,41.6776,39.997,14.7531,14.5715,206.4091,208.4223,1.8625,3.1337,3.0937,1.614,1.6117,31.5536,42.0744,1.4416,1.4423,2.8896,2.8971,5.4271,6.8531,3.7621,3.9915,0.05839,4.5072,2.2031,2.0325,0.33867,0.32938,3.8308,4.0549,3.6817,3.8894,1.4896,1.2075,9.0266,7.9235,3.0725,2.7925,3.1196,3.2958,4.3094,3.9242,1.4945,1.5863,1.8599,1.7867,3.1757,2.8601,6.9239,6.8267,1.7508,1.8174,5.6825,5.8648,10.4471,9.777,7.4049,6.9718,1.9258,1.9873,4.5428,5.0023,1.4028,1.4512,14.5359,15.5038,4.3617,5.2284,3.1373,3.1944,0.95179,0.96039,2.0981,2.037,6.6768,5.7379,12.1516,11.3461,2.7084,2.9214,4.1069,4.2322,2.9091,3.2537,1.2483,1.3871,3.5991,3.6484,9.4082,9.2097,2.685,2.9739,2.1584,2.3365,1.7858,2.1631,7.7528,8.6894,1.9345,2.1661,1.7177,1.9493,9.5908,9.7869,1.6188,1.7456,0.99225,1.0201,12.3846,12.7407,4.6988,4.8952,7.245,8.2609,3.9919,3.8647,9.0019,8.3007,6.1392,6.9838,6.0942,6.3349,3.1968,3.1706,1.274,1.2649,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,460
+desd462,,,M,1.2664,1.7778,0.47296,0.53321,1.0307,1.001,21.4893,3.3473,3.4491,52.7122,51.3749,20.1528,19.9391,252.7015,251.7752,1.0976,3.9872,3.7395,0.5249,0.47953,11.892,13.7019,1.6182,1.6516,3.6811,3.827,7.2574,7.6489,4.79,5.1161,0.08168,5.2487,2.4159,2.9334,0.40149,0.41794,5.2218,6.5349,4.0337,4.5576,2.0576,1.8397,11.7868,10.6247,3.4315,3.107,4.015,4.261,5.1768,4.5287,1.8976,1.9829,2.1378,2.0561,4.3098,4.2753,8.1273,7.9531,2.6917,2.7388,7.0212,7.5747,13.1952,13.5068,9.1724,8.509,2.6877,2.7182,7.0872,5.9994,2.1869,2.1957,21.4524,21.8414,5.5177,7.712,4.5732,4.7621,1.1528,1.4687,2.9697,3.1529,8.8946,8.4238,15.2797,16.1211,3.2773,3.896,4.8151,4.4368,3.9737,3.6874,1.772,1.8557,4.4571,4.8597,12.1045,11.2148,3.1722,3.5993,2.2177,2.3784,2.206,2.5347,11.4475,14.9649,2.502,2.8525,2.1073,2.6861,13.6885,14.8469,1.8905,2.1631,1.3336,1.4414,16.3566,15.4939,5.871,5.8355,9.1852,10.2393,4.5474,3.8774,10.4075,12.9099,8.4316,9.266,9.1321,8.5049,4.1998,4.9952,1.4845,1.5387,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,461
+desd463,59,59,M,1.527,1.3377,0.33456,0.34673,0.72504,0.75972,16.3958,2.6894,2.7342,39.3674,39.9079,12.7606,13.2435,204.8715,204.5753,1.3533,2.7989,3.0114,0.58583,0.66927,13.6408,20.0874,1.427,1.4316,2.8663,2.9976,5.6208,6.0221,4.0924,4.3227,0.07562,3.9446,1.9097,2.412,0.29862,0.31632,4.2118,4.6051,3.5926,3.7307,1.746,1.6658,8.8075,7.4654,2.9727,2.4976,3.8943,3.7683,4.2654,3.4881,1.4345,1.316,1.9731,1.874,3.7123,3.6591,6.0484,6.0799,1.9057,1.9845,6.045,6.1125,9.308,9.0001,6.7317,5.8129,2.2787,2.268,4.6756,4.7808,1.5995,1.6783,19.7995,19.7907,4.6208,6.0367,3.7853,3.8186,0.94853,0.88176,2.467,2.1489,7.2669,6.9151,11.6077,12.0337,2.6925,2.7676,3.6227,3.7017,4.2019,2.9361,1.4678,1.4449,3.8343,4.3267,10.2645,10.1122,2.4115,2.6449,2.4339,2.5971,2.2906,2.2416,10.1569,10.3747,2.0391,2.394,1.9529,2.1727,11.7128,12.9433,2.0048,1.9443,1.0636,1.0635,14.878,13.4651,5.328,5.2597,7.7759,7.382,4.0604,3.6118,8.8861,8.8356,6.2104,6.0908,6.4156,6.727,3.5091,3.4464,1.3541,1.4037,,29,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,462
+desd464,69,69,F,1.4607,2.5289,0.30529,0.33023,0.70782,0.74291,16.7592,2.4722,2.2478,46.8572,45.0515,14.5509,14.6074,217.7609,217.4497,1.3807,2.9698,2.7257,0.74448,0.57124,8.5689,10.1129,1.585,1.4918,3.0092,3.3269,6.2733,6.7249,4.3009,4.5656,0.06774,4.8108,2.193,2.4775,0.3253,0.3378,3.7968,4.298,3.4303,3.7082,1.7392,1.5045,9.1163,6.946,2.8962,3.0446,3.5289,4.1184,4.5577,3.9646,1.3899,1.4211,1.5785,1.7166,3.8571,3.4222,6.6888,6.5926,1.7907,1.977,6.0933,6.3134,10.4929,9.9105,7.151,6.6771,2.2145,2.0638,4.3694,4.245,1.6487,1.6313,18.2191,15.6377,4.5922,5.9481,3.5422,3.847,0.81059,1.0076,2.3533,2.4319,7.2669,6.5312,13.0423,11.9541,2.767,3.7408,3.8353,3.882,2.7412,3.016,1.4436,1.2284,3.4985,3.7437,9.5439,10.9225,2.615,2.7835,1.9205,2.0181,1.9492,1.9104,10.5362,11.3254,2.3864,2.1077,1.8385,2.1139,10.9179,11.2965,1.6307,1.4896,1.1501,1.0952,13.8721,12.7444,5.0819,4.7759,6.9792,7.854,4.0782,3.9842,10.921,11.5678,6.3466,5.8152,6.8963,6.7322,3.1664,3.1222,1.2277,1.2654,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,463
+desd465,,,M,1.2242,1.7443,0.34523,0.35194,0.83213,0.80952,18.4232,2.4047,2.647,49.9071,49.5596,14.8592,14.7444,214.9513,207.5702,1.053,3.134,3.0509,0.56116,0.60498,9.0393,11.297,1.5012,1.4795,3.1779,3.3951,6.6463,7.0188,4.6196,4.7553,0.08013,4.9801,2.2732,2.878,0.34201,0.33271,4.3417,4.7613,3.4303,3.5566,1.7262,1.4283,9.4689,8.7286,3.0493,2.9379,3.4866,3.3012,4.6859,4.24,1.5703,1.5824,1.7386,1.7992,3.4434,3.3071,7.4297,6.8294,1.9853,2.1409,5.9165,6.1547,10.7133,9.618,7.2899,7.3066,2.2825,2.2228,5.1835,5.2762,1.7524,1.7233,18.4993,18.1861,4.5705,5.2485,3.9055,3.8039,1.0611,1.0132,2.2514,2.2739,8.2987,7.2991,14.6607,12.9115,2.6611,3.0273,3.9695,3.9262,3.1839,3.5236,1.4692,1.4362,4.0413,4.453,9.8153,11.594,2.9635,3.1251,2.0819,2.1096,1.8025,2.1774,9.7397,10.4723,2.3426,2.5731,1.8696,2.0569,10.4106,11.5403,1.6251,1.6008,1.255,1.3149,14.0331,14.6553,5.3515,5.5574,7.8176,7.8301,4.0222,3.0447,9.0019,9.8113,7.1474,7.0818,6.996,6.9502,2.9482,3.6908,1.2186,1.2325,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,464
+desd466,67,67,M,1.1381,2.0553,0.36818,0.40836,0.80229,0.88019,17.1094,2.7093,2.7139,45.0926,45.3358,13.6021,13.7333,204.7483,203.9892,1.2455,3.2123,3.0119,0.56721,0.59446,10.4673,12.636,1.4486,1.4602,3.3207,3.3873,6.0479,6.2847,4.3378,4.5443,0.07799,4.8812,2.2006,2.565,0.37715,0.37594,4.2709,4.3081,4.0554,4.0291,1.767,1.6155,9.6822,8.3953,2.8537,2.7274,3.6892,4.2542,4.1411,3.6543,1.6677,1.6616,1.8305,1.9725,3.371,3.2919,6.7028,6.5488,1.9686,2.041,5.9378,5.3023,10.1157,10.274,7.5401,6.4034,2.0948,2.4126,4.5218,4.5033,1.7375,1.678,17.022,17.052,4.6104,5.679,3.7478,4.0139,0.90211,1.086,2.3201,2.4243,7.4682,6.5976,13.4782,12.8021,2.9139,3.063,3.9442,3.6077,3.4238,3.7512,1.3489,1.5862,3.3272,3.9726,9.3981,9.3937,2.8557,3.1029,2.039,2.0181,1.9819,2.2773,8.3787,10.6941,2.2809,2.4123,1.9449,2.0808,11.2387,11.3869,1.5543,1.9657,1.1482,1.1778,13.7849,13.451,5.0751,4.9117,7.4666,7.8309,4.1368,3.6493,8.8287,8.3378,6.8385,6.9543,7.1558,6.8223,3.4521,3.7579,1.2959,1.4303,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,465
+desd467,82,82,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,466
+desd468,68,68,M,2.3108,2.7178,0.37359,0.40494,0.84541,0.75988,17.2224,2.9012,2.8888,45.1608,46.5014,14.4356,15.2271,253.6807,251.408,1.8735,3.3298,3.0874,0.83194,1.2124,21.8773,27.0472,1.6517,1.5701,3.7462,3.972,6.6072,7.2052,4.6494,4.9142,0.0902,4.4978,2.1287,2.7552,0.41104,0.39466,4.4839,5.0139,4.578,4.7001,1.9423,1.4728,10.4015,9.5266,3.7793,3.2695,4.3948,4.4935,5.2677,4.3988,1.6065,1.446,1.9532,2.1225,4.2283,3.8123,7.3624,7.0345,2.1739,2.0575,6.9008,7.5209,11.7478,11.49,8.5329,7.0703,2.4574,2.1942,4.7426,5.0405,1.9699,1.7961,18.6379,18.1078,4.7657,5.9037,4.0721,3.919,1.0032,1.2571,2.4741,2.8358,8.299,7.5851,13.4955,13.5805,3.2839,3.817,4.4303,4.3142,3.8173,3.4183,1.7399,1.4893,4.5414,4.6666,11.7274,11.0417,2.9151,3.0096,2.5812,2.5628,2.5237,2.6709,11.0441,14.123,2.4929,2.4391,2.2806,2.499,12.5486,11.894,2.2965,2.1388,1.3882,1.3937,15.565,15.3991,6.2855,6.09,8.6232,9.0909,4.3934,3.6813,10.9218,11.1606,7.1842,7.573,7.6612,7.0541,4.0715,4.1668,1.6686,1.5662,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,467
+desd469,84,84,F,2.5515,2.5393,0.28306,0.31748,0.6043,0.55372,10.4775,2.5466,2.424,35.6957,36.6688,10.0498,10.191,150.0735,156.4949,2.7381,2.5696,2.3086,1.7219,1.2456,33.1003,28.5032,1.1776,1.1515,2.9122,3.0858,5.8359,5.5956,3.6257,3.8961,0.09289,3.905,1.9054,1.7593,0.32475,0.32923,3.0547,3.5363,3.082,3.1873,1.3738,1.2167,8.3779,7.634,3.5365,2.9975,3.2413,3.0922,4.7813,4.7757,1.3618,1.0476,1.4528,1.4724,3.0046,2.9676,6.0432,4.9533,1.5802,1.6285,5.9213,4.9571,9.1927,7.7636,7.5965,6.8138,1.8924,1.8822,3.8611,3.2876,1.3553,1.4588,14.7522,14.3944,4.6644,4.6762,3.0518,3.3108,0.89653,0.91292,2.2753,2.3515,6.4407,5.8155,11.8959,9.4157,3.0051,3.0388,4.0877,4.2322,2.482,2.6425,1.3055,1.1783,2.9264,3.7408,9.4847,8.9777,2.5692,2.7527,1.8084,1.8773,2.176,2.1802,8.7491,10.2945,1.9387,2.1738,1.637,1.8628,10.304,10.6862,1.853,1.7216,0.9635,1.016,11.4221,11.143,4.4287,4.5871,6.6645,8.2094,4.3661,3.433,9.0286,8.6697,6.7171,5.1942,7.1652,6.7166,2.7025,2.8671,0.78203,1.318,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,468
+desd470,72,72,F,1.3139,1.4875,0.33224,0.34514,0.7897,0.69934,16.2942,2.9581,2.8869,39.28,38.1988,13.84,13.2666,183.5937,179.6528,1.4058,3.1279,2.8045,0.66814,0.90361,12.8097,22.1922,1.4299,1.41,3.277,3.2494,5.8613,6.1208,4.0367,4.2057,0.07562,4.2774,1.9186,2.4511,0.33734,0.35689,3.4662,3.9115,3.328,3.2997,1.5354,1.3555,8.9648,7.5552,2.8653,2.7421,3.5078,3.6776,3.2424,3.9242,1.571,1.3323,1.7108,1.6726,3.0618,3.037,6.3448,6.3067,1.7222,1.6755,5.6178,4.9122,9.4183,9.3594,7.662,7.5597,2.0669,2.0882,4.2837,4.3943,1.5055,1.5073,15.8594,16.6851,3.9228,4.6049,3.5012,3.3944,0.84444,1.063,2.4117,2.5113,6.9458,5.5905,12.0458,12.0337,2.2858,2.4851,4.0166,3.9033,3.2878,3.2954,1.3375,1.2897,3.4599,3.9756,9.4578,9.5578,2.8675,3.0323,1.9313,1.9671,1.9867,2.053,10.1397,11.246,1.9772,2.1403,1.7949,1.9267,11.6556,11.229,1.7637,1.6792,0.97945,1.0552,12.8344,13.2583,4.4485,4.7393,7.2411,7.0518,3.4634,2.7374,10.6279,9.5738,6.787,6.4764,7.0659,6.3351,2.8492,3.3739,1.3621,1.3835,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,469
+desd471,83,83,M,2.4324,1.789,0.41411,0.46676,0.88817,0.95116,16.4676,2.7826,2.7179,44.8116,43.3422,13.4651,13.9352,232.7685,218.6799,2.3378,3.5455,3.1353,0.96117,0.90545,32.0847,39.4973,1.6007,1.5699,3.7248,3.6697,6.389,6.9475,4.4392,4.6325,0.07639,4.8812,2.2046,2.7989,0.40732,0.4067,3.955,4.6224,4.5114,4.7001,1.9226,1.7774,10.7538,9.6442,3.58,3.107,4.0571,4.2281,5.0682,4.6505,1.7919,1.8282,1.8574,1.9025,3.8675,3.7036,8.2799,7.9502,2.1301,2.2165,8.1062,7.1483,12.4447,11.6051,8.5372,7.4205,2.3747,2.6402,3.9635,4.6783,1.9883,2.0763,19.5505,20.0958,5.4709,6.1756,4.0342,4.2465,1.1214,1.3387,2.6174,2.9477,7.5734,6.9341,14.9277,14.2233,3.5247,3.7497,4.2992,4.3657,3.4744,3.79,1.5679,1.4844,4.448,4.9629,11.2847,10.6727,3.054,3.1923,2.1883,2.3179,1.9101,2.3082,11.2743,12.7777,2.3987,2.7524,1.9393,2.1839,13.4881,13.7982,1.6913,1.9873,1.2988,1.4188,16.0886,15.7859,5.4532,5.7834,9.0707,8.8749,3.961,3.9706,10.1279,10.7687,7.0267,6.5463,8.7804,8.4288,3.6974,3.8605,1.3371,1.5665,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,470
+desd472,66,66,M,0.91253,1.7185,0.4192,0.46989,0.85179,0.80335,21.302,3.1087,2.9517,51.5385,52.0429,18.656,19.6686,275.5598,281.4037,1.399,3.1602,2.956,0.54312,0.40354,14.5741,15.1691,1.7834,1.7725,4.0291,4.1105,7.3684,7.6419,5.179,5.6066,0.0845,5.7021,2.4099,2.9013,0.38239,0.37884,4.2702,4.9016,4.5421,4.3136,1.8852,1.5635,10.91,9.2355,3.8322,4.0436,3.5981,3.6019,6.2507,6.106,1.6851,1.5806,2.1879,2.0867,3.7506,3.8607,9.1032,8.8549,2.0996,2.1921,8.1387,7.5129,12.4447,11.7461,9.2299,9.0367,2.3599,2.5075,4.9646,5.1549,1.8383,1.8544,19.571,19.1789,5.8715,6.5834,4.1537,4.365,1.1934,0.99429,2.3258,2.2115,8.152,7.2991,14.6469,14.562,3.7915,4.3392,5.1058,4.8644,4.0885,3.163,1.8173,1.7859,4.6463,5.0089,11.9382,11.2148,3.1447,3.2771,2.3262,2.3836,1.9944,2.3082,10.1976,11.4424,2.5849,2.7799,2.2729,2.2698,13.6143,13.7414,1.7086,2.0071,1.255,1.2741,15.2906,13.9844,5.3775,5.5664,8.554,8.8857,4.7073,4.4894,9.4709,10.9693,7.8527,7.2975,8.8288,7.8968,3.5686,3.6023,1.4701,1.6575,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,471
+desd473,68,68,M,1.4925,1.69,0.30712,0.3308,0.71488,0.62016,14.4902,2.2033,2.2076,39.9292,39.0957,13.5025,13.2666,221.2064,204.5866,1.3807,2.735,2.4759,0.84938,1.0824,12.6277,15.4314,1.3057,1.3074,2.6449,2.6509,5.7971,5.3712,3.8112,4.0564,0.07027,3.9879,1.8396,2.2569,0.30035,0.3211,3.1858,3.5274,3.4566,3.5093,1.4349,1.3116,10.2363,8.5074,3.0433,3.1377,3.6036,3.3813,4.0344,3.7876,1.4214,1.3032,1.7567,1.7199,3.1138,2.7572,6.1725,6.0146,1.7864,1.7789,5.6325,5.1469,10.2109,9.5955,6.987,7.061,1.8898,2.0886,4.0824,4.1273,1.402,1.3479,16.3607,17.6678,5.2988,5.3886,3.2234,3.3491,0.86488,1.0918,1.8416,2.5113,6.2574,5.7841,11.7043,10.9002,2.6258,3.0388,4.0499,3.8738,3.0249,2.7669,1.2826,1.3871,3.1812,3.5086,8.5675,8.6526,2.5458,2.7139,2.06,2.0874,2.1352,2.0582,9.3578,10.9703,2.1836,2.2758,1.7206,2.0047,12.0609,11.7764,1.6339,1.6085,0.96674,1.0129,12.5938,13.4043,3.9938,4.3949,7.7316,8.5838,3.7392,2.9742,9.0243,9.6752,6.1677,6.4235,6.5243,6.2617,2.9747,3.4155,1.2238,1.3844,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,472
+desd474,68,68,M,1.8597,2.3693,0.37592,0.4002,0.91709,0.89547,21.6469,3.263,3.0196,46.8023,46.3508,18.656,18.9707,274.269,268.0351,1.8655,3.515,3.3502,1.2206,0.83934,21.2596,21.7721,1.8652,1.9314,3.867,3.4106,6.7978,7.2896,5.3058,5.5975,0.09339,4.9295,2.1871,2.5866,0.3743,0.3749,4.7836,5.3592,3.9127,3.9611,1.9654,1.7945,10.9234,9.5276,3.8622,3.7189,4.1024,4.0983,5.4773,4.9143,1.6292,1.6946,1.9041,1.8671,3.9241,3.6712,7.7176,7.1408,2.1646,2.0287,6.5857,6.9885,12.2567,11.4622,8.4486,7.3152,2.5194,2.7365,5.082,4.8757,1.9883,2.1273,19.8372,19.8549,5.5605,6.6359,4.1537,4.2163,1.0477,1.0763,2.3282,2.5647,8.8638,8.1268,14.5562,14.397,3.1577,3.7497,4.2732,4.1933,3.2752,3.2974,1.6825,1.8071,4.5414,4.5776,11.9382,11.4003,3.0501,3.3036,2.5604,2.2809,2.4669,3.1789,11.1063,12.4028,2.3079,2.9829,2.2806,2.4232,13.5346,13.7982,2.0333,2.5849,1.2283,1.3699,16.485,15.6305,6.6401,6.1341,8.65,9.7647,4.3322,3.5177,10.6607,9.9939,7.6245,7.0766,7.8174,8.0069,3.9895,4.5021,1.5173,1.7415,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,473
+desd475,75,75,F,1.7085,1.9137,0.32204,0.37602,0.80628,0.87696,15.9099,2.3119,2.5176,44.7024,44.7677,12.6024,13.0713,191.845,192.0136,1.8052,3.2781,3.0322,0.90312,0.84058,22.5276,26.0747,1.5685,1.5353,3.1653,3.3626,6.5392,6.6044,4.3635,4.5859,0.08456,4.418,1.8435,2.4456,0.34125,0.37409,3.689,4.0572,3.8477,4.0315,1.4111,1.448,10.2074,9.0189,3.3256,3.0209,3.7748,4.0314,4.724,4.9988,1.5565,1.602,2.0114,1.9447,3.2281,2.9067,6.5651,6.8066,1.6585,1.7665,5.9165,5.3023,9.7939,9.5801,7.7851,7.1973,1.8401,2.3922,3.7044,4.0007,1.5406,1.539,17.2194,17.2491,4.9089,5.4347,3.3717,3.5433,0.94556,0.92597,2.3593,2.3054,6.8223,5.9329,11.9211,11.9465,3.0167,3.0587,4.0199,3.8862,3.341,2.7968,1.3389,1.5862,3.4211,3.6734,9.8346,9.1992,2.8765,3.2074,2.0525,2.0955,2.0884,2.4654,9.3283,11.5268,1.8947,2.4123,1.9904,2.0328,11.5372,11.0545,1.9325,2.1118,1.1824,1.2125,13.7916,13.5656,5.1071,5.1194,8.2728,9.085,4.6134,3.3597,8.8287,10.0653,6.7171,6.3988,7.2258,7.0192,2.9813,3.7364,1.4087,1.5763,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,474
+desd476,,,M,1.0872,2.0007,0.47365,0.54746,1.2526,1.0705,23.2577,4.2284,3.6104,61.7421,54.2968,21.5412,19.6858,242.0048,236.2561,1.0818,4.0002,3.5758,0.62167,0.43567,10.0023,9.9571,1.5473,1.5518,3.476,3.7195,7.3034,7.6297,4.9079,4.9725,0.08319,5.0225,2.51,3.2649,0.41518,0.41206,4.7026,4.9365,4.5119,4.6844,2.0576,1.9169,10.7095,10.4839,3.6394,3.2987,4.7203,4.6612,5.1768,4.6004,2.0892,2.0359,2.3805,2.2589,3.9924,3.6493,8.7955,8.6136,2.1663,2.3043,6.5161,6.7557,12.7852,12.3874,9.3264,9.3182,2.6347,2.7182,5.5455,5.76,2.0599,2.0095,19.1186,20.7538,5.0577,7.6079,4.4105,4.4773,1.2712,1.4265,2.822,3.2439,8.9508,7.7655,15.7167,15.7275,3.3631,3.6108,5.0403,4.7529,3.7286,3.6718,1.7728,1.729,4.5817,5.5126,12.0285,12.3097,3.8217,3.9265,2.4441,2.3972,2.4819,3.1129,10.2429,12.5361,2.4879,2.8525,2.3986,2.4483,11.9125,13.2622,2.0353,2.4123,1.3131,1.2201,15.6749,15.6956,5.5008,5.3513,8.4487,9.7647,4.7824,4.4032,11.6447,13.2127,8.4167,8.8782,9.1321,9.2947,4.0728,4.3525,1.6556,1.6751,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,475
+desd477,,,F,0.96391,1.7785,0.34421,0.34666,0.78877,0.75894,14.8491,2.143,2.3382,44.3657,45.4069,12.3419,12.8799,190.7115,189.237,0.88663,3.1302,2.822,0.40723,0.39909,3.3372,7.33,1.2453,1.2494,3.0918,3.0414,6.1423,6.2495,3.7728,4.0067,0.06557,4.2336,2.1165,2.4515,0.3239,0.33865,3.4942,4.4638,3.4775,3.7565,1.6751,1.4608,8.9648,8.2659,2.1927,2.3528,3.3572,3.5066,3.8955,3.9218,1.4545,1.356,1.7567,1.9553,3.3626,2.8299,7.305,7.0382,2.0011,1.6308,6.4673,5.9785,11.3054,10.7504,7.2766,6.5913,2.0886,2.1764,4.5526,4.4931,1.8351,1.7294,15.2815,15.5124,5.5586,6.0264,3.7058,3.563,0.99093,1.2691,2.1803,2.755,7.7075,6.4436,13.7059,13.2739,3.2247,3.3791,3.9088,3.7471,3.3103,3.4972,1.4263,1.4734,3.5698,4.1836,9.3456,9.983,2.7925,2.8443,1.9505,1.996,2.265,2.3419,8.2134,9.6724,2.0896,2.2778,1.8567,2.0808,10.5583,11.2346,1.9312,2.0921,1.0904,1.1114,12.2432,11.9064,5.0951,4.6149,6.6345,7.7894,4.3903,3.4322,9.4211,8.1832,6.9538,7.2104,6.8173,6.8363,3.3992,4.0303,1.4593,1.5485,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,476
+desd478,70,70,M,2.5509,3.8623,0.41779,0.45747,0.88168,0.89123,18.3788,3.4665,3.0724,49.8605,49.98,14.4027,14.2393,231.3293,231.8286,2.8942,3.6189,3.3271,0.9969,1.0131,31.0961,37.1856,1.7119,1.6522,3.8649,3.7971,7.1682,7.3432,4.7557,4.9638,0.07588,5.1432,2.4147,2.3632,0.41841,0.44588,4.497,4.8014,4.7142,4.8166,1.7905,1.7273,12.0143,11.1179,3.5772,3.2168,4.5053,5.2039,5.0832,4.3846,1.8746,1.6251,2.2817,2.1078,4.3083,4.099,8.3668,8.1556,2.1126,2.0521,7.1162,6.143,13.4129,13.9209,8.5372,8.2718,2.44,2.5265,5.2766,5.4468,2.0182,1.9404,20.6739,22.6366,5.92,6.6154,4.2,4.1335,1.4446,1.3268,3.209,3.0387,8.9555,8.5192,17.4995,18.8747,2.4779,3.3407,4.3418,4.1715,3.8184,3.3267,1.8522,1.6058,4.4753,5.0508,12.5322,12.6692,3.4245,3.4562,2.5451,2.6305,2.4819,2.5505,12.7685,14.9649,2.6451,2.563,2.5633,2.8303,13.7001,14.2938,1.9948,2.0692,1.3666,1.4805,16.5771,16.123,6.8389,6.6482,10.4337,10.4647,4.2425,3.4548,11.4734,11.8615,8.4316,8.1252,8.592,7.8968,3.9793,4.4532,1.7025,1.6919,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,477
+desd479,72,72,F,1.2149,1.6201,0.40112,0.39625,0.83346,0.81606,16.0576,3.2654,2.9888,42.281,43.1641,13.7147,14.0383,231.4533,219.7046,1.053,3.2075,2.8585,0.43104,0.40076,11.6656,13.7295,1.3347,1.3464,3.5562,3.3507,6.1788,6.3968,4.0367,4.2795,0.08828,4.1678,1.9234,2.431,0.37755,0.37462,3.6227,4.1665,3.5875,4.0423,1.7569,1.5045,10.1158,9.093,2.7563,2.5467,3.9964,4.2725,4.9481,4.5205,1.6677,1.6321,2.1616,1.9652,3.8508,3.4205,7.7255,7.7943,2.2056,2.4366,7.429,7.2429,12.3609,11.7365,7.7678,7.1563,2.3845,2.5044,4.2238,3.8306,1.8408,1.8544,20.216,19.1111,5.6932,6.6704,3.8157,3.9559,0.97834,1.0847,2.6087,2.5365,7.1866,6.583,15.9131,14.9929,3.9516,4.3637,4.3157,4.5236,4.1552,3.5359,1.7912,1.5862,3.7654,3.9774,10.9873,10.571,3.0239,3.2123,2.1205,2.2194,2.1452,2.2416,9.3621,11.4371,2.3767,2.4766,2.0082,2.2018,12.8154,13.4365,1.845,1.8573,1.0766,1.0558,14.6592,15.0032,5.2378,5.0618,7.6249,8.9471,3.961,4.0105,12.0503,12.4455,7.0929,7.6646,8.4258,8.4207,3.9782,4.2532,1.512,1.5591,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,478
+desd480,74,74,F,1.4763,2.5699,0.3546,0.3887,0.8557,0.88298,14.0597,2.8526,2.5116,15.1677,17.5955,2.8026,10.4569,191.1721,188.7927,1.4373,3.5737,3.3271,0.76747,0.75322,17.332,18.4159,1.2104,1.1355,3.1933,3.5782,6.1456,6.3217,3.8345,3.9391,0.06259,4.0486,0.88859,1.1706,0.31996,0.35922,3.5233,3.6764,3.6048,3.7351,1.532,1.37,8.2133,8.5372,2.9174,2.9206,3.2431,3.2403,5.232,4.7725,1.6351,1.7728,1.6696,1.7516,2.9616,2.7766,6.8021,6.1158,1.8475,1.8034,5.9288,4.56,10.3594,10.1241,7.2669,6.4933,1.9334,2.1257,3.9268,4.0453,1.5572,1.4795,15.1184,15.8475,4.9182,5.2764,3.4009,3.3296,0.84444,0.93562,1.9498,1.9728,6.3706,5.5572,13.5206,13.1376,2.2015,2.7622,3.6165,3.4211,3.2383,2.9717,1.211,1.4754,3.8716,4.1086,10.3976,10.2134,2.919,3.1173,1.9577,2.0525,1.5783,1.8917,8.8773,9.3536,1.9982,2.2895,1.6124,2.196,10.712,10.0965,1.5063,1.4413,1.1365,1.1707,13.9343,13.2358,4.5393,4.3322,6.3504,7.5543,3.7279,3.0422,9.5941,10.0293,6.606,6.4859,7.2523,6.8396,3.1211,3.7394,1.009,1.1573,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,479
+desd481,76,76,M,2.3907,2.2271,0.36748,0.38664,0.81045,0.76239,16.8618,2.7349,2.8282,44.7095,42.9856,14.5509,15.2514,232.1245,225.7956,1.5639,3.3865,3.0493,0.68395,0.67237,15.6604,18.7512,1.5997,1.563,3.2753,3.4333,6.5668,7.1303,4.4926,4.6844,0.07678,4.7015,2.2808,2.4515,0.37691,0.38226,3.955,4.798,4.2283,4.2454,1.7043,1.5579,10.1467,9.2931,3.036,2.5654,3.7413,4.1119,4.1683,3.651,1.6069,1.5151,2.1704,2.0427,3.6944,3.3957,7.0278,6.1921,1.9633,1.9945,6.0352,5.6651,10.6778,10.8045,7.4536,6.6398,2.2271,2.2746,4.7125,5.2192,1.6097,1.6697,18.1561,18.1078,4.8132,5.7717,3.8506,3.9091,0.82415,0.98109,2.4699,2.456,7.6286,7.0426,13.7507,13.5472,2.7022,3.0981,4.2119,3.7139,3.7759,3.0311,1.5676,1.4284,4.2336,4.4726,10.178,10.5002,2.6897,2.8665,2.482,2.4643,2.4415,2.4722,9.1457,11.7269,2.4765,2.4157,2.2022,2.5326,11.2387,11.7583,2.1681,1.9643,1.0843,1.2203,14.5554,14.8205,4.8616,5.0538,7.1324,9.2829,3.8214,3.0921,9.484,9.8936,6.8013,6.3754,7.1644,7.097,3.7418,3.6846,1.6639,1.7926,,20,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,480
+desd482,82,82,M,2.4287,1.977,0.40488,0.42069,0.76377,0.7483,17.6046,3.4584,3.1133,46.8712,47.5675,13.7119,13.784,207.1482,208.2046,2.0899,3.1628,3.0211,0.74791,0.53907,24.7413,28.8535,1.6159,1.6486,3.9759,4.6426,7.0232,7.3494,4.3958,4.6248,0.06899,4.7028,2.0867,2.6622,0.3848,0.3722,4.497,5.2078,4.166,4.241,1.9654,1.671,9.4406,9.2893,2.8901,2.9137,4.1558,3.6082,4.9171,4.3846,1.49,1.366,2.0558,2.0471,3.9087,3.8139,7.7057,8.1054,2.1897,2.3608,6.2916,6.4785,12.6919,12.9861,8.1016,7.1042,2.5749,2.5063,5.5418,5.1372,1.9405,2.0682,20.6915,21.1393,4.884,5.5351,4.0677,4.3148,1.1591,1.2392,2.7402,2.7873,8.3811,8.0353,14.5562,16.4376,3.201,3.7682,3.944,4.2611,3.4796,3.7217,1.6074,1.5328,4.2617,4.7365,11.8125,11.4018,2.9034,3.0873,2.5153,2.2366,2.4669,2.5693,10.9025,11.8231,2.2067,2.6018,2.0678,2.3682,13.2148,12.3437,2.0048,2.1631,1.1406,1.195,15.5683,16.7898,5.0383,5.09,8.4426,8.9841,4.5465,3.5,11.1253,10.683,8.3126,7.3659,7.4054,7.2254,4.2226,4.504,1.4453,1.7203,,18,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,481
+desd483,77,77,M,2.97,1.9015,0.32585,0.3637,0.78953,0.80505,17.052,2.3358,2.2161,28.1916,31.817,17.1083,15.7259,240.1227,234.1957,1.8683,3.3957,3.0368,1.4552,0.9762,26.4693,28.4876,1.682,1.6966,3.3506,3.5089,7.2864,7.3633,4.7012,5.0235,0.08777,4.484,2.1431,2.3776,0.34626,0.34711,4.105,4.1485,4.2539,4.5975,1.6813,1.3958,11.4893,9.8121,2.9305,2.8522,3.988,3.9784,3.7902,4.1909,1.5072,1.502,2.1033,2.078,3.3689,3.4428,6.6275,6.4367,1.9041,1.8094,5.9253,5.5668,11.0967,10.9496,7.1065,6.6851,2.1137,2.1152,4.4469,4.4597,1.585,1.5646,16.273,17.7601,4.9089,6.3498,3.5397,3.3836,0.90724,1.0109,2.1051,1.9321,7.1452,5.8159,14.5052,13.0867,2.4897,3.0329,3.9695,3.7836,3.4022,3.3423,1.4194,1.4233,3.509,3.9726,9.0555,9.3243,2.516,2.6815,2.3829,2.4939,2.027,2.008,9.7286,10.7457,2.1878,2.3807,2.0316,2.4694,10.4972,10.5874,1.6364,1.7742,1.1388,1.2379,12.967,12.4917,4.6055,4.6743,7.332,8.3096,3.8521,3.1602,9.405,9.5526,7.1714,6.271,7.0589,6.9877,3.3992,3.321,1.3838,1.376,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,482
+desd484,84,84,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,483
+desd485,83,83,M,1.5742,0.86416,0.03898,0.13301,0.92367,0.93247,9.0519,0,0.88732,7.4207,18.9006,3.8003,8.7931,76.6563,93.4871,0.75438,3.3942,3.0923,0.46835,0.55654,4.2276,7.33,0.21428,0.8757,0.23437,0.32999,1.9192,5.4137,4.0239,4.2908,0.06425,3.4172,0.30153,0.01307,0.35351,0.33044,0.01082,0.00936,0.9969,0.93454,0.0014,0.55737,7.3412,6.2744,2.2766,2.2721,0.00002,0.00108,3.7466,3.4434,1.7756,1.7519,0.75116,0.00001,1.969,0,6.7859,6.3805,0.23156,0.56823,5.3644,4.7591,10.4005,9.8519,6.106,5.6466,0.67733,0.951,0,0,0.16873,0.03454,0,7.2894,4.5945,4.7448,1.6316,2.0093,1.0149,0.9521,1.9861,1.863,0.01018,0.00018,11.8131,10.5233,2.2855,2.5727,1.0875,2.2694,0,0,0.00987,0.49832,2.561,2.6286,8.7343,7.4883,3.0069,3.2046,0.89588,1.7462,0.38842,0.60781,0,0.00111,1.4502,1.9167,1.457,1.9235,0,0,1.5465,1.6524,0.55918,0.88828,6.0263,0.00013,0,3.9575,0.20706,6.0253,3.4867,2.9609,7.2866,8.1941,6.839,6.358,7.2326,6.9261,0,0,0.78203,1.066,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,484
+desd486,67,67,M,2.0299,2.8467,0.29945,0.26814,0.76374,0.74291,15.21,1.8786,2.1284,37.2794,36.8488,11.8484,12.1776,187.6209,192.4498,2.0632,2.9478,2.5833,0.71055,0.53907,18.5802,20.8007,1.3624,1.3295,3.0357,2.973,5.7702,5.4602,3.9919,4.2019,0.06877,3.9893,1.89,2.0473,0.31593,0.3202,3.9012,3.9163,3.6745,3.5946,1.4566,1.3463,8.7368,7.6056,3.0314,2.9306,3.1549,3.4206,3.9193,4.3767,1.391,1.394,1.8599,1.7378,3.3126,2.8304,6.0894,5.6216,1.9094,1.7804,5.1878,5.5156,9.211,7.589,6.3936,6.2854,1.7262,2.0892,3.98,3.7509,1.4358,1.3479,15.6477,15.3308,4.4364,4.7546,3.0777,3.4232,0.86488,0.875,2.0719,2.0058,6.8316,6.459,11.1185,8.7619,2.6285,2.8995,3.3919,3.2456,3.3883,2.925,1.2641,1.2633,3.446,3.3549,8.4878,8.7958,2.5922,2.7836,2.0759,1.9738,1.5783,1.7409,7.6447,9.1597,1.8137,2.0272,1.8662,1.8632,9.4524,9.5847,1.577,1.671,1.0023,0.99363,12.5938,12.1091,4.4457,4.3746,7.245,6.5171,3.4317,2.8757,8.6072,9.0978,5.8164,5.1939,6.1071,5.8461,3.1351,3.1119,1.3216,1.156,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,485
+desd487,77,77,F,1.5285,2.0916,0.39267,0.39471,0.97399,0.84623,18.3099,3.2654,3.0353,45.5252,47.4532,15.0903,16.2466,208.3674,199.762,1.6097,3.0267,2.8334,0.4579,0.41871,17.0008,22.448,1.6221,1.6387,3.761,3.4106,6.6078,7.0423,4.5123,4.7287,0.07571,4.9937,2.3057,2.7915,0.3848,0.38759,4.3549,4.8887,4.0238,4.6331,1.739,1.6265,9.5148,7.0883,3.1363,3.162,3.5113,3.725,4.1589,4.5253,1.8772,1.8471,2.1172,2.1162,3.3301,3.4382,7.3327,7.2563,2.0326,2.1695,6.5563,5.7875,11.7056,11.192,8.2483,7.2914,2.3253,2.4611,4.2137,4.4862,1.8869,1.8874,16.6491,19.2089,4.8127,4.7454,3.7609,4.0716,1.2112,1.2561,2.8894,3.1151,8.0025,7.0519,13.3617,13.7819,3.4893,3.7682,4.0661,4.0452,3.5849,3.3267,1.6337,1.6574,3.8347,4.3723,9.8585,10.7271,3.3648,3.3962,2.3643,2.6984,2.0713,1.9848,9.3074,10.1489,2.3996,2.6346,2.1559,2.6993,10.0523,10.1446,1.8163,1.6056,1.2814,1.2837,14.8992,15.0872,4.4777,5.0094,7.6196,7.6473,4.7643,4.4913,9.6935,9.8361,7.1756,6.7381,7.8606,7.2737,3.8485,4.0113,1.3417,1.54,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,486
+desd488,70,70,M,2.3722,2.1882,0.40428,0.42069,0.88168,0.7873,18.18,3.4256,3.415,49.7958,49.9308,14.4027,14.2393,202.5455,202.0467,1.7484,3.4051,3.1863,1.6411,1.6195,21.0366,26.646,1.7131,1.6981,3.4847,3.4516,7.2981,7.3432,4.8413,5.1161,0.0837,5.3158,2.386,2.7104,0.40229,0.39996,4.8252,5.2966,4.7198,4.6396,2.1559,1.5591,12.5335,11.0348,4.1079,3.6257,5.1061,4.47,5.9276,5.6454,1.7793,1.5806,2.4661,2.3948,4.7109,4.0095,7.125,7.0497,2.2963,2.2327,6.9756,7.5209,12.1539,11.4622,9.3943,8.2014,2.519,2.4884,5.082,4.9652,2.0238,2.0045,21.7015,21.4624,5.5313,6.6016,4.0039,4.2233,1.1528,1.2882,3.0377,2.8842,8.6872,8.6758,15.7273,14.9929,3.5042,3.9967,4.7817,4.7023,3.9768,4.5611,1.8121,1.5799,4.8073,5.2164,13.8605,12.3314,3.0825,3.2195,2.634,2.9316,2.2493,2.3546,13.2796,14.2092,2.4505,2.6625,2.5206,2.7172,14.1323,15.3695,1.9948,2.1958,1.4301,1.435,15.5683,17.4915,5.3963,6.0767,8.5548,9.2554,4.6666,3.7044,11.2573,10.7712,8.049,7.8247,8.8428,7.923,4.2315,4.3936,1.6655,1.6291,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,487
+desd489,,,M,1.8244,1.8618,0.33936,0.371,0.84375,0.86541,18.1835,2.921,3.2433,52.136,51.6314,15.6745,16.4775,233.9477,236.1107,1.6673,3.2427,3.0246,0.68499,0.74077,17.1028,17.2753,1.7416,1.6234,3.6103,3.471,6.7978,7.0601,4.8324,4.8951,0.07789,5.4903,2.4314,2.7653,0.3788,0.38895,5.0449,6.2693,4.166,4.6529,2.0518,1.8727,10.9138,9.8544,4.1066,3.8466,4.7409,4.3491,6.4748,5.2487,1.697,1.7514,2.0731,1.9631,4.4508,4.1818,8.5667,8.9061,2.4397,2.4964,8.5205,6.8535,13.0245,12.3874,9.2575,9.3182,2.6408,2.8718,7.0872,7.119,2.0737,2.1228,25.3498,24.7661,6.2782,7.1033,4.3394,4.4733,1.0672,1.2007,2.6479,2.7707,9.1711,8.0611,15.1685,15.5126,3.8629,3.8992,5.2554,4.8221,3.7894,3.7346,2.0147,1.8233,4.2545,4.4228,11.5747,12.0571,3.1953,3.6146,2.4554,2.2643,2.3301,2.5855,10.9379,12.6198,3.0105,2.9926,2.3609,2.408,13.3668,14.2938,2.1401,2.4035,1.3198,1.3721,18.3793,15.6758,6.2078,6.1272,9.1853,8.6411,5.1129,3.7987,9.9835,10.6328,9.4883,7.4672,9.4185,9.3224,3.928,4.8917,1.5416,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,488
+desd490,63,63,F,1.3169,1.6554,0.32915,0.38328,0.76722,0.74775,16.589,2.3948,2.3391,44.8116,45.1092,15.0964,15.7193,203.5476,202.5798,1.2004,3.2954,2.9395,0.37962,0.33279,7.9245,11.6139,1.4726,1.4248,3.1779,3.2548,6.4579,6.7714,4.2579,4.3867,0.07738,3.6723,2.0744,2.426,0.37157,0.36847,3.0348,3.5274,3.8813,4.0966,1.4324,1.3397,8.6472,8.4283,2.79,2.9299,4.0917,4.1893,4.2472,4.3568,1.4466,1.4039,1.7695,1.6037,3.16,2.9418,6.6617,6.6884,1.7564,1.8084,5.6021,4.9142,10.3594,9.8961,7.1017,6.3627,1.8612,2.0723,4.7066,4.6108,1.4825,1.5077,17.2089,16.5498,4.3617,5.2818,3.1269,3.5123,1.2031,1.0798,2.3862,2.3106,6.4539,5.8191,14.4077,11.9602,2.2855,2.6167,3.6186,3.6688,3.0267,2.6527,1.2867,1.3449,3.9221,3.9558,10.3858,9.3746,2.6424,2.7534,2.1409,2.324,2.1324,2.1978,10.5173,11.3986,2.0893,2.2263,1.928,2.1973,11.0072,11.6743,1.9332,1.8179,1.1259,1.2287,14.0155,14.1541,4.8131,4.9835,6.76,8.2508,3.707,2.9443,11.0618,9.2838,7.5898,6.5395,6.5402,6.4733,2.9747,3.6224,1.4467,1.293,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,489
+desd491,42,42,F,1.148,1.5972,0.4108,0.44415,0.96308,0.98753,21.2508,2.9757,3.0375,48.9778,49.9324,17.7021,18.277,257.664,245.8349,1.2408,3.4471,3.3601,0.58957,0.61776,12.8766,14.1622,1.767,1.7719,3.9922,3.9769,7.9992,8.0449,5.0292,5.3218,0.08168,5.2487,2.359,2.7544,0.42315,0.4197,4.9389,4.8834,4.5119,4.5085,2.1984,1.8709,10.7409,9.3894,3.4268,3.144,4.177,4.4564,5.2557,4.7112,1.931,1.7658,2.0495,2.4049,4.4622,4.4791,7.4238,7.2141,3.6083,2.687,6.5246,7.0398,11.9174,11.49,8.6267,8.2913,2.8399,2.7463,4.2264,4.371,3.0691,2.1509,21.7015,21.1393,5.0577,6.4609,5.6107,4.8288,0.98527,0.9141,2.1777,2.448,11.2819,7.5799,14.54,14.4608,3.1577,3.8486,4.4759,4.1718,3.3535,3.4049,1.7728,1.8448,4.2346,4.6571,11.2934,11.75,3.2428,3.3523,2.3587,2.5062,2.5237,2.8887,9.9542,11.4424,2.332,2.9618,2.1327,2.5102,12.1602,13.9825,2.0739,2.2838,1.3308,1.4734,16.0237,17.2763,6.2855,5.9413,8.554,9.3659,4.1481,3.7773,12.2404,11.6445,8.0468,7.5473,8.2934,8.2145,3.8231,4.2711,1.518,1.7669,,28,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,490
+desd492,81,81,F,1.7205,2.2666,0.27846,0.30203,0.66068,0.68516,12.4527,2.2485,2.1582,39.9292,41.3138,10.0841,10.4569,166.2224,166.051,1.402,2.8667,2.6601,0.60897,0.85075,13.7106,14.8694,1.2084,1.1916,2.8896,3.1734,5.37,5.4855,3.7611,4.0373,0.07283,3.6364,2.0853,2.4511,0.31619,0.3005,3.222,3.6379,3.5491,3.8616,1.3788,1.2656,8.1283,6.8492,2.5069,2.3553,3.1742,3.468,3.1037,2.897,1.3686,1.4088,1.4857,1.6998,2.8054,2.7766,6.0432,6.184,1.6284,1.4448,5.9336,6.2988,9.1927,9.1264,7.072,6.233,1.8215,1.892,4.0806,3.9006,1.4174,1.3479,16.3607,18.023,4.5545,5.5864,3.0517,3.1934,0.95698,1.0109,2.0981,1.9437,6.2368,5.5572,11.4677,10.8127,2.7967,3.0054,3.4823,3.4578,2.6661,3.0103,1.289,1.1681,3.228,3.5594,8.2793,8.5779,2.3912,2.5634,1.8836,2.0525,1.7651,1.9303,8.3544,9.8218,1.9076,2.0272,1.7939,2.0071,12.356,12.2405,1.4138,0.26866,0.97633,0.7997,11.9052,11.8102,4.408,4.7956,6.2964,6.4444,3.7965,3.5915,9.3038,8.7612,5.8192,5.4674,6.3405,6.3681,2.9562,3.0953,1.1816,1.1573,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,491
+desd493,42,42,F,1.3067,1.4427,0.33749,0.37091,0.76607,0.72893,15.7677,2.8002,2.7129,44.2266,44.287,13.8539,14.1874,216.9418,211.7263,1.1402,2.7104,2.7936,0.59843,0.50891,10.9448,12.3254,1.5931,1.572,3.0935,2.9394,6.9572,6.9254,4.0983,4.3655,0.07534,4.7154,2.2166,2.3625,0.33326,0.34545,3.5976,3.9172,3.4303,3.4893,1.5324,1.4046,9.0586,7.1824,3.1924,2.9698,3.2381,3.8728,3.924,4.1909,1.6669,1.5238,1.7128,1.6809,3.315,3.1043,7.3887,7.0969,1.7184,1.7798,6.4022,6.2311,11.7899,10.7932,7.5535,7.0594,1.9705,2.2887,4.3231,4.3599,1.4989,1.4828,16.2577,15.3283,5.0661,6.1877,3.5095,3.5866,0.76618,1.0472,2.678,2.4786,7.1452,6.2017,14.6369,13.6412,3.0945,3.7357,3.7753,4.0677,3.0958,3.1391,1.3934,1.4362,3.3562,3.7437,8.3421,9.2995,2.6595,2.8701,2.0607,1.915,1.5783,1.7434,10.1397,11.0569,2.1775,2.3358,1.9056,1.9437,11.9596,11.7937,1.4107,1.7231,0.91742,0.97895,13.4238,12.5765,4.8931,4.7632,7.505,7.9897,4.3263,3.5384,10.4484,10.1939,6.8655,7.0953,8.0762,7.4425,2.8351,3.3844,1.2809,1.3774,,27,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,492
+desd494,70,70,M,2.3722,2.0275,0.39851,0.43008,0.82585,0.84704,18.8525,3.1376,3.0593,47.2819,47.1271,14.4027,15.1274,204.8771,208.8861,1.9063,3.1805,3.0188,0.88156,0.91392,23.7819,25.4666,1.5525,1.5332,3.6831,3.7361,7.1738,7.3533,4.7321,4.9567,0.08971,5.0502,2.3034,2.7915,0.424,0.42072,4.5861,4.7492,4.578,4.8409,1.7895,1.625,10.414,9.9337,3.6973,3.2695,4.2748,5.1241,5.5844,4.775,1.6126,1.5875,2.2622,2.0629,3.7478,3.9985,8.1498,7.9502,2.0146,2.1027,7.4588,7.5011,12.5933,12.533,8.4069,7.4898,2.3463,2.4574,5.1107,5.1549,1.7927,1.8622,20.6739,22.5254,5.6039,5.9325,3.7024,3.9386,1.1161,1.0984,2.6776,2.3228,8.4927,6.871,16.0082,13.8627,3.6274,3.8992,4.5026,4.6383,4.0185,3.4322,1.8522,1.5328,4.0692,4.6291,11.258,11.3572,3.0673,3.1607,2.634,2.7462,2.2163,2.5327,10.8847,12.3441,2.3726,2.5491,2.3842,2.575,14.1133,13.344,1.8612,2.0504,1.3131,1.3784,14.0106,14.4107,5.3963,4.9523,8.3045,9.3025,4.5952,4.1756,11.4824,11.6813,6.5711,6.3939,7.8127,7.8928,4.2226,4.1146,1.5167,1.6912,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,493
+desd495,76,76,F,2.1657,2.3713,0.2753,0.33274,0.66068,0.70803,15.6667,2.5395,2.2478,45.1767,46.0575,12.1718,12.9864,186.1888,194.9133,2.2209,2.9906,2.8438,0.99284,0.9762,25.644,28.677,1.5018,1.4829,2.9175,3.0835,6.4671,6.7086,4.2401,4.3401,0.0769,4.3864,2.2165,2.6199,0.36765,0.34224,4.6707,4.6941,4.2416,4.1686,1.6715,1.3311,10.0514,8.549,3.0485,2.6204,3.9394,3.6323,3.7929,3.4301,1.2883,1.4147,1.8374,1.9841,3.7591,3.5683,6.7149,6.7283,1.9459,1.7495,5.9901,6.2781,10.8467,9.5404,6.6954,6.6889,2.0889,2.2053,4.0914,4.0206,1.7212,1.8075,16.3896,16.2445,5.347,5.5959,3.5397,3.4544,0.98894,0.8659,2.4028,2.346,7.5088,7.1258,13.5638,11.9987,2.649,2.5224,3.8353,3.7471,3.3441,3.2658,1.5482,1.506,3.8961,4.3659,10.2237,10.1246,2.5347,2.559,2.3157,2.5971,1.8993,2.1631,8.8352,9.5492,1.9772,2.3301,1.9234,2.2002,9.6738,10.2525,1.6188,1.8485,1.0816,1.1654,14.6543,14.0051,5.1466,4.9853,7.7449,8.428,3.2599,2.9617,9.6159,9.841,6.5102,6.7777,6.8489,6.2131,3.7177,3.5572,1.2537,1.3832,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,494
+desd496,87,87,F,1.772,2.2666,0.24275,0.27429,0.18236,0.50656,14.5561,2.3371,2.4308,37.3972,31.6077,13.5025,13.2666,169.9447,162.6556,2.2694,2.4134,2.0491,1.0796,1.5123,24.0659,26.8485,1.1776,1.1748,2.903,3.1797,5.4358,5.6857,3.6257,3.6547,0.079,4.7314,2.1841,1.9847,0.31367,0.2706,3.374,3.7447,2.9892,3.2009,1.5399,1.5195,8.3049,7.6089,3.1609,2.4466,3.0001,3.1499,4.4217,3.9218,0.93517,0.39954,1.5684,1.4795,2.522,2.9676,5.5942,5.323,1.6709,1.6831,5.7367,4.903,8.6314,8.542,7.3677,6.7321,1.8762,2.2386,3.6459,3.8523,1.4448,1.4944,15.6573,14.3917,4.95,4.7936,3.2401,3.8074,1.2187,0.9521,2.587,2.5682,6.2177,5.9198,10.0426,11.6557,2.2898,2.3928,4.0735,4.2322,2.8089,2.5532,1.2038,1.4125,3.3295,3.7434,9.0214,9.0072,2.4985,2.4191,1.6208,1.7311,1.4645,1.8012,10.4444,11.0569,2.0404,2.3903,1.6139,1.9267,11.9639,11.0321,1.3264,1.4383,1.1354,1.1874,13.8663,12.8537,4.5279,4.5958,6.8164,7.3055,3.1742,2.7703,8.6452,10.3875,5.0713,6.0437,5.3235,5.1306,2.8756,3.4748,1.2066,0.31108,,9,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,495
+desd497,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,496
+desd498,78,78,F,2.1015,1.9177,0.35875,0.41651,0.88037,0.90626,18.3676,3.1815,3.0003,49.1293,49.98,14.2442,15.2252,196.2657,196.7427,1.9063,3.4118,3.1706,0.70585,0.67293,13.6796,16.3416,1.6551,1.668,4.562,4.806,6.6072,6.5537,4.7557,4.9747,0.08648,5.0567,2.285,2.6358,0.41955,0.3954,4.4839,4.8014,3.9129,4.0606,1.8782,1.5592,9.7225,9.359,2.7035,2.3553,4.3834,4.2224,4.6672,4.8912,1.8249,1.7886,2.0688,2.0577,3.8345,3.6773,8.2534,7.6282,2.3691,2.2985,7.3873,6.8765,13.0247,12.3832,7.9634,7.1441,2.3956,2.5075,4.7958,4.9493,1.9933,2.0756,21.1619,19.8562,5.7094,7.1033,4.2036,4.3548,1.0456,1.0763,2.4162,2.756,8.4067,7.4276,16.6489,13.8627,2.8751,3.7368,4.5378,4.3266,3.5302,3.6869,1.7098,1.554,4.2029,4.453,10.9832,10.3925,2.921,3.1626,2.2603,2.3784,2.5655,2.7218,9.9349,11.0923,2.573,2.6743,1.9335,2.2297,12.707,13.6688,2.2101,2.2445,1.3989,1.3751,15.0282,15.6987,6.1697,5.811,8.2654,9.1577,4.1481,3.8769,10.6186,11.3401,8.7417,7.4974,8.9099,8.2614,4.1771,3.787,1.4725,1.7011,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,497
+desd499,,,M,2.156,1.8484,0.40339,0.43782,0.81764,0.8298,18.1318,3.2379,2.8943,44.4048,44.55,13.8958,14.2091,222.5464,214.9522,1.7409,3.2033,3.1642,0.93131,0.80271,19.6921,20.8007,1.5508,1.523,3.5342,3.5591,6.389,6.6236,4.5649,4.6879,0.08345,4.6685,2.1492,2.8959,0.37217,0.37195,3.9011,4.707,3.7816,4.1655,1.7616,1.5479,8.8027,8.6328,2.9866,3.0912,3.8208,4.2067,4.4619,4.5886,1.6126,1.5372,1.9335,1.8215,3.4554,3.1651,7.5457,7.111,1.9123,1.9008,6.497,6.3408,11.1879,10.8876,7.3675,6.9152,2.1655,2.2879,4.698,4.7275,1.5996,1.714,16.9497,17.1771,4.6664,5.2485,3.6601,4.0818,0.91562,0.82726,2.3532,2.3054,7.5962,6.6826,13.8398,13.3089,3.0193,2.9863,4.2119,3.9337,4.0185,3.2415,1.4896,1.3862,4.0842,4.6213,10.0554,10.1525,2.8414,3.0748,2.2838,2.3392,2.2879,2.3419,9.9204,11.2932,2.3369,2.3591,2.1426,2.295,11.8972,14.364,1.8109,1.9593,1.1433,1.2447,13.7849,13.0626,5.3208,5.0563,7.9455,8.9968,4.0972,3.5745,10.3195,10.1367,7.7471,7.301,7.3982,7.1894,3.3464,3.5497,1.5318,1.7354,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,498
+desd500,70,70,M,1.0263,1.685,0.39689,0.43745,0.97755,0.94374,17.2523,2.9065,2.9926,44.6183,44.7677,13.6021,13.6165,204.7483,208.7993,1.1203,3.3797,3.3145,0.62167,0.40354,12.6832,20.0874,1.314,1.5596,3.9127,3.8441,6.7055,6.8109,4.4848,4.7031,0.07566,4.5196,2.1521,2.4679,0.40429,0.41275,4.2709,4.8432,4.3388,4.7001,1.8884,1.5216,10.3218,10.3806,4.1066,3.9468,3.9169,4.1096,5.2677,5.3907,1.9135,1.8062,2.1498,2.2851,4.015,3.6952,7.8783,7.2396,2.1663,2.2954,7.3727,6.6759,12.5177,11.891,9.125,8.3309,2.4457,2.5384,4.0828,4.9383,1.9441,1.8628,18.6458,18.181,5.9367,6.5377,3.9951,4.1393,1.0051,1.3173,2.4824,2.7925,8.371,7.0512,15.5635,15.3204,3.2264,4.0377,4.8417,5.1498,3.7049,3.5506,1.5784,1.6753,4.2545,4.8171,11.966,11.4018,3.1747,3.3523,2.5101,2.519,2.4199,2.498,11.4609,13.853,2.703,2.7005,2.0373,2.6651,13.1105,14.7662,2.0604,2.2938,1.1812,1.1728,15.3386,13.9844,6.2218,5.9413,9.3803,10.4137,4.2942,3.287,10.7216,11.3682,7.9936,8.3879,8.8428,8.2014,3.4307,4.2711,1.3905,1.699,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,499
+desd501,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,500
+desd502,62,62,M,1.449,2.0832,0.45089,0.45716,0.94615,0.94616,19.3177,3.5623,3.1856,50.7498,50.4786,16.1704,15.9533,236.4197,235.0903,2.0648,3.6412,3.4656,0.66404,0.58997,32.0154,35.2975,1.6519,1.5566,3.6831,3.844,7.6923,7.8413,4.9713,5.0355,0.07859,4.9781,2.4731,2.8837,0.38702,0.37884,4.4445,4.9207,3.7839,3.8757,1.8691,1.7273,12.5747,10.8554,2.4207,2.8329,3.9002,3.8315,3.8567,4.0817,1.9036,1.9168,1.9582,1.874,3.8015,3.3434,8.289,7.7758,2.1171,2.2761,6.6099,6.3132,13.5076,12.9958,7.8756,7.0559,2.2496,2.4569,5.2704,5.5882,1.8855,2.0486,20.0056,22.332,5.3797,6.7797,4.0427,4.297,1.0121,1.1174,2.7904,2.7044,8.8146,8.1976,18.097,16.1211,2.8358,3.2542,4.4497,4.2021,3.4796,3.79,1.3382,1.4844,4.1452,4.675,10.2587,10.6738,3.1033,3.4414,2.1584,2.146,2.2846,2.4531,12.8035,12.1016,2.1409,2.7755,1.9962,2.341,14.1323,13.5612,1.9978,1.8785,1.278,1.318,16.1404,15.1834,5.5127,5.7834,8.4487,10.2393,3.8131,2.9982,10.4968,10.7687,8.4316,8.7619,8.4958,8.3006,3.1968,3.9146,1.2894,1.4851,,27,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,501
+desd503,83,83,F,1.8493,1.9879,0.29262,0.29365,0.67461,0.68323,15.8248,2.3884,2.3038,42.5346,40.841,12.5059,13.1971,186.1888,187.3303,2.0012,2.7915,2.4984,0.80942,0.83269,24.2377,24.6515,1.5892,1.3961,3.056,2.8936,5.8626,5.8612,4.0983,4.3385,0.07515,4.5791,1.9767,2.3166,0.31619,0.31773,3.6388,3.7673,3.0838,3.3041,1.4892,1.1709,7.9338,7.8604,2.739,2.377,3.3255,3.4878,4.2373,3.6445,1.2911,1.3117,1.6913,1.707,3.2655,2.6735,6.6455,6.0968,1.8505,1.7793,5.1454,5.2755,10.4915,10.5122,7.1372,6.1704,2.0669,2.0197,4.7066,4.6193,1.4358,1.4152,16.7875,16.0011,4.3234,5.1368,3.3972,3.3457,0.97928,1.0543,2.2139,2.3548,6.5869,5.9385,11.7179,12.4296,2.2572,2.7125,3.6166,3.5683,2.8824,2.8929,1.2752,1.4357,3.3773,3.8719,8.6133,9.4057,2.5317,2.4612,2.1367,1.9278,1.8895,1.9609,9.2137,11.177,2.3006,2.14,1.8506,2.043,11.0944,11.5259,1.5565,1.6999,1.1354,1.1358,13.2609,12.7683,4.5203,4.5392,7.0421,8.3502,3.6213,2.772,8.8864,9.233,6.3734,6.4179,6.2694,6.3148,3.2024,3.3509,1.1985,1.3481,,29,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,502
+desd504,78,78,M,2.2182,1.6965,0.32095,0.30698,0.77299,0.74054,18.924,2.3931,2.3042,49.6817,47.6329,15.384,15.0071,225.6701,212.4724,1.6649,3.2673,2.9249,0.62177,0.5124,13.3926,15.3171,1.5413,1.5516,3.2527,2.8915,6.2583,6.4279,4.5176,4.8226,0.07937,4.9061,2.452,2.6963,0.35437,0.35074,4.0376,4.2297,3.9571,4.3225,1.6198,1.4608,9.7966,8.5753,3.3619,3.2162,4.1002,4.2457,4.2111,4.0704,1.6669,1.5808,2.2071,1.9523,3.6502,3.4296,7.2811,7.177,1.9583,1.9731,6.2743,6.3769,11.1006,10.4273,7.6127,7.2232,2.1151,2.4098,5.0588,4.9897,1.5463,1.5716,17.1404,18.3061,5.4778,6.0522,4.0133,3.5985,0.97523,1.0543,2.5773,2.4243,7.5173,6.585,14.0727,12.9678,2.4353,3.2169,4.0096,3.9476,3.4657,3.2757,1.4842,1.5883,3.7291,4.0705,9.7114,9.8741,2.8432,3.1626,2.0946,2.1171,2.1988,2.5104,9.5072,11.1918,2.3405,2.3887,2.004,2.249,12.6621,12.3791,1.7546,1.9192,0.98644,1.0239,15.2248,13.8296,5.6312,5.3632,7.0035,7.9466,3.6085,3.4955,8.7703,9.9311,7.0764,7.3722,7.8795,7.2301,3.5809,3.3805,1.3872,1.7699,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,503
+desd505,82,82,F,1.8493,1.6123,0.31181,0.3308,0.67783,0.65911,16.4883,2.6126,2.5949,44.7662,44.7038,13.3684,13.5793,203.3559,194.6723,1.8472,2.6387,2.4391,0.87142,0.70622,20.9274,20.6963,1.4017,1.5236,3.1248,3.3227,6.1396,6.4332,4.1144,4.2449,0.06534,4.7614,2.1871,2.6402,0.30157,0.32294,3.7014,4.0549,3.6817,3.7666,1.4111,1.4318,8.749,8.5795,3.549,3.7261,3.611,3.7729,4.6025,4.47,1.4105,1.3803,1.7688,1.7282,3.1741,3.0175,6.3436,6.0799,1.8574,1.9966,6.1605,5.5242,9.5817,9.4931,8.0408,7.4786,1.8268,2.1182,4.1511,4.1875,1.603,1.5429,18.6572,17.1431,4.2855,5.9041,3.1417,3.7363,1.1493,1.1569,2.5856,2.5166,6.8223,6.0788,12.312,11.0624,3.0377,3.3791,3.9008,3.7316,3.0486,2.9593,1.2926,1.2927,3.6401,3.9007,10.0427,9.6318,2.5703,2.9875,2.0511,1.9411,1.8613,1.9084,9.4862,11.4371,1.8475,2.108,1.8414,2.0385,12.8154,12.1054,1.662,1.6453,1.1198,1.1368,12.8457,14.0655,5.2668,4.7741,7.8555,8.3436,4.6318,3.1517,10.2398,9.7327,6.1703,6.0375,6.9448,6.3351,2.9813,3.2268,1.1985,1.2918,,,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,504
+desd506,67,67,M,1.7716,2.9737,0.32367,0.37309,0.7993,0.84055,15.5866,2.408,2.5176,44.7024,44.4994,12.8512,12.6969,187.5946,194.9133,2.1695,2.9478,2.7514,0.96452,0.86925,22.7909,27.473,1.5107,1.4856,3.2359,3.4071,6.4129,6.8349,4.0537,4.3835,0.06774,4.2701,2.0369,2.4456,0.33867,0.34344,3.8072,4.1335,3.5798,3.8894,1.5789,1.4318,8.84,7.6577,2.9201,2.9113,3.6133,3.949,4.3518,4.0173,1.555,1.4481,1.7386,1.6528,3.2779,3.0773,6.6202,6.7736,1.8429,1.8172,6.1465,5.6992,10.6705,9.777,7.5987,7.2067,2.0189,2.126,4.3939,4.7366,1.6863,1.6404,17.7966,15.9371,4.6874,5.2847,3.3523,3.5541,1.0474,1.1154,2.3142,2.393,6.6975,5.7379,12.1727,11.4618,2.916,3.0433,4.1711,4.2322,2.8706,2.8152,1.3722,1.4457,3.3776,3.9719,8.9288,9.1132,2.5703,2.9921,2.0759,2.324,2.0579,2.094,10.1397,11.1038,2.1348,2.164,1.8749,2.1321,10.3294,11.5403,1.8383,1.7524,1.0378,1.0199,14.5163,14.416,4.6988,5.0772,7.1729,8.448,3.8853,3.3175,8.9161,9.233,6.0187,6.7777,6.2058,6.051,3.0846,3.7653,1.4227,1.4272,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,505
+desd507,,,F,1.098,1.9214,0.38436,0.35894,0.74951,0.7322,17.5238,3.1106,2.7854,48.0936,47.977,14.3963,15.3281,203.0384,197.9945,1.1536,3.0437,2.783,0.42811,0.41167,10.2608,10.2369,1.4087,1.4019,3.6797,3.643,6.3787,6.712,4.1359,4.3168,0.08,4.4861,2.036,2.8725,0.34747,0.35794,3.6412,3.948,3.7142,3.9462,1.8686,1.5874,9.5238,7.3997,2.7563,2.614,3.3712,3.7078,4.3337,3.9864,1.4147,1.4044,1.7333,1.7251,3.579,3.252,6.7401,6.8975,2.0385,2.1146,6.4408,6.0095,10.4929,10.32,7.3228,6.7154,2.2001,2.3723,4.1599,4.2832,1.7637,1.7715,16.2943,16.929,5.2024,6.0892,3.8847,4.1009,1.0201,1.0018,2.8046,2.4824,6.6446,6.171,12.9806,13.1579,3.0193,3.1802,3.9188,3.9682,3.2949,3.1188,1.5709,1.3905,3.5177,3.8426,8.9542,9.3937,2.578,2.826,1.9765,2.0921,2.3646,2.5998,10.5362,11.2567,2.2353,2.4615,1.8343,2.0694,11.8972,12.7485,1.9433,2.1403,0.97024,1.0201,13.9606,13.6172,4.8931,5.2493,7.5726,8.3409,4.2762,3.3969,9.6935,9.4147,7.1765,7.2637,7.5046,6.9893,3.3861,3.4384,1.369,1.5247,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,506
+desd508,73,73,M,1.9515,2.1503,0.4137,0.47384,0.94335,0.85018,19.8097,3.3624,3.3039,46.4131,48.2509,15.7383,15.5489,271.7577,268.7903,1.8952,3.5553,3.2985,0.6202,0.57533,15.1081,18.833,1.9924,1.9322,4.1649,4.4826,7.4638,7.5241,4.898,5.1787,0.09281,5.2801,2.2732,2.9146,0.42318,0.44588,4.3234,5.052,5.378,4.7795,1.993,1.9169,9.3221,8.6029,3.4724,3.5156,4.2161,4.4271,5.0469,5.0647,1.827,1.9168,2.0886,1.9878,4.0094,3.9438,8.2799,7.714,2.2274,2.281,7.6351,7.418,13.6542,14.1385,8.4069,7.8139,2.4049,2.8718,4.8032,5.1753,1.9441,1.9712,19.4148,18.6366,5.5033,5.9604,4.4372,4.4134,1.1214,1.0833,2.6201,2.3924,8.5188,7.5516,16.1292,17.6266,3.2782,3.7749,4.4761,4.6383,3.9785,3.7346,1.4682,1.7248,3.9078,4.4385,11.392,10.8082,3.2833,3.3589,2.5812,2.5067,2.6699,2.4931,10.9818,10.6017,2.7195,2.754,2.2957,2.5133,13.703,13.0428,2.1302,2.0213,1.2925,1.3596,14.9386,14.8102,6.0849,6.0104,8.22,7.9048,4.4244,3.5157,10.6321,11.1606,8.1598,8.349,9.4681,9.4607,3.3051,3.8429,1.7496,1.7926,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,507
+desd509,68,68,F,1.0668,1.8813,0.37667,0.42053,0.77349,0.74775,16.6075,2.8302,2.7139,41.4415,41.3507,13.1238,13.553,182.6154,180.5895,0.97752,3.131,2.8797,0.62914,0.41764,8.3533,9.1725,1.4021,1.4245,3.3727,3.2494,6.2917,6.0018,4.1216,4.3251,0.07442,4.4069,1.8955,2.0572,0.36866,0.37297,3.6238,4.0531,4.174,4.2191,1.7272,1.5665,9.655,7.8224,2.7482,2.6576,3.2401,3.7729,4.1411,4.021,1.4466,1.3872,1.9982,1.8123,3.2989,3.0274,7.2795,6.7408,2.0107,2.0545,5.7922,6.0717,10.83,10.4886,7.1455,6.423,2.205,2.3027,4.4437,4.6175,1.7361,1.7607,16.1406,17.148,4.9023,5.5959,3.7152,4.0287,1.1739,1.101,2.5934,2.4851,6.9133,6.1415,13.2712,12.5524,2.2855,2.9334,3.7528,4.0016,3.8079,3.6936,1.5513,1.4934,3.8419,4.0773,9.763,9.7817,2.9597,2.9739,2.3783,2.156,1.7073,2.003,10.4444,11.6036,2.3214,2.5033,2.126,2.2512,11.9271,11.9453,1.5819,1.6495,1.0058,1.0551,13.8315,13.237,4.5919,4.5162,7.5726,7.4442,3.6085,2.9212,9.4464,9.8113,6.1503,6.2275,7.2488,7.7727,3.3464,3.8057,1.3538,1.4211,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,508
+desd510,,,M,1.7635,2.3056,0.49537,0.53321,1.1379,1.1046,22.1157,4.2284,3.7946,56.0955,56.8183,20.511,20.1605,334.9526,277.4785,3.0552,4.58,4.0127,0.85339,0.84311,34.3032,32.1618,1.828,1.7825,4.2474,4.2688,7.9044,7.709,5.4829,5.5975,0.10009,5.5966,2.6203,3.2649,0.42389,0.4242,5.4144,5.8186,4.4356,4.7641,2.178,1.8727,12.444,11.7363,3.7988,3.8477,5.3782,4.7189,6.0809,6.1359,1.9954,1.9445,2.1829,2.0581,4.3053,4.5852,9.3536,8.5002,2.3144,2.4791,8.6467,7.8584,15.13,13.5711,9.1568,8.4713,2.4956,2.5785,5.1521,5.1103,2.196,2.2302,21.2925,21.8987,6.3417,7.2066,4.3291,4.6312,1.2839,1.206,3.2179,3.0629,11.2819,9.517,16.9531,17.155,3.8629,4.7167,5.2637,5.3973,4.1233,3.4357,1.8664,1.681,4.9457,5.6503,14.9955,13.7199,3.3322,3.9265,2.5205,2.5789,2.6939,2.993,13.6552,13.853,3.0954,3.2494,2.3986,2.7196,13.5045,14.0994,2.2913,2.0328,1.3198,1.3644,17.0532,17.4002,6.5321,6.754,9.1233,11.8785,4.9509,3.4951,11.9661,15.6076,8.5808,9.1999,8.9331,8.4243,4.1276,4.2387,1.9364,1.6798,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,509
+desd511,71,71,F,0.89572,1.8248,0.33877,0.376,0.68493,0.60891,13.6372,2.5314,2.5269,31.4445,26.922,9.9619,2.9582,167.8266,161.0911,0.7582,2.6387,2.4759,0.88682,0.75845,16.5462,17.7824,1.2156,1.1355,3.6935,3.7001,5.6649,6.0388,3.6997,3.79,0.05802,4.4285,1.7419,1.847,0.34178,0.34819,4.2008,4.228,4.0205,4.1024,1.6345,1.4061,9.4724,8.5942,2.4333,2.4959,3.4373,3.7889,3.9689,4.2687,1.2883,1.1912,1.7569,1.6895,3.6528,3.2291,6.5553,6.3928,1.8545,1.8321,5.8883,5.8721,9.9723,9.7291,6.263,5.6824,2.0994,2.1359,4.7904,5.0431,1.6169,1.6054,15.0889,17.1615,5.1387,5.7567,3.4381,3.6157,1.1153,1.1718,2.52,2.5797,7.1152,6.4163,12.731,12.4403,2.3112,3.2254,3.2939,3.3534,3.1755,2.7968,1.4007,1.4323,3.8139,3.7825,9.4965,9.2696,2.4883,2.7562,2.2975,2.1665,2.0489,2.1774,8.9115,10.0153,2.3006,2.3786,2.0228,2.295,9.7976,9.7869,1.9332,1.7911,1.1721,1.3157,14.878,14.5441,5.4504,5.3982,7.3483,7.9461,3.6249,2.9731,9.7767,8.7603,6.9612,6.79,7.0344,6.2351,3.198,3.4622,1.4499,1.2157,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,510
+desd512,71,71,M,1.746,1.9789,0.44771,0.51409,0.91497,0.89123,21.694,3.273,3.2469,55.3105,61.1428,16.0141,16.4425,219.8286,221.6688,2.9477,3.3499,3.3489,0.70585,0.60686,36.3593,36.4767,1.5748,1.5725,3.6831,3.8632,6.7401,7.1811,4.8613,5.0581,0.09689,5.5523,3.0338,3.0924,0.41032,0.44292,5.4144,5.8186,4.7665,4.7795,2.076,1.6984,12.444,11.2047,3.3355,2.9745,4.8673,4.5637,4.7458,4.7009,1.7793,1.6946,2.5755,2.3856,3.9677,3.6493,8.4729,7.7808,2.1408,2.2066,7.7853,7.418,13.6542,12.7368,8.7273,7.6818,2.5203,2.7886,6.1242,7.4817,1.9892,2.1063,21.455,19.6175,6.0666,6.4883,4.0791,4.1871,1.435,2.0477,3.3604,2.8764,8.3169,7.2562,18.5499,14.581,3.7836,4.0731,5.0129,4.8921,3.7286,3.353,1.7193,1.7352,6.1239,5.4284,12.6315,12.5599,2.9699,3.3939,2.9142,2.5239,2.4748,2.6442,12.7685,14.1955,2.6093,2.7361,2.5514,2.7172,13.9407,15.2456,2.0988,2.3907,1.2279,1.3219,15.6293,15.8389,8.6997,6.2148,9.1267,9.2554,4.6666,3.8774,10.9431,10.7754,7.5991,8.0023,9.5512,9.4243,3.5375,4.372,1.737,1.9738,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,511
+desd513,,,F,1.5895,1.597,0.33048,0.31414,0.86099,0.71512,15.3855,2.7565,2.3142,38.8014,39.0627,11.3847,12.0243,160.604,154.0648,1.7563,3.3497,3.0792,0.75266,1.161,17.4759,21.0381,1.1776,1.1974,3.1613,3.2175,5.4358,5.3712,3.4773,3.8337,0.08637,3.905,1.7441,2.2459,0.36996,0.33822,3.5452,4.1208,3.6452,3.6634,1.5678,1.3481,8.84,7.3052,2.7977,2.8439,3.3172,3.7782,3.9576,4.3597,1.6748,1.3681,1.8298,1.6528,3.1985,3.1139,6.6917,6.6103,1.7976,1.8084,5.5449,5.3117,10.126,9.9019,6.071,6.4066,2.1097,2.1712,3.9778,3.9422,1.4698,1.4695,15.6108,15.039,4.0341,5.4096,3.3117,3.4254,0.90939,0.93562,2.3765,1.979,6.4158,5.7266,13.7425,13.505,2.3938,2.2135,3.8105,3.789,3.5969,3.2757,1.3571,1.4634,3.4679,3.7223,8.9288,9.3891,2.9145,3.0096,2.0759,2.0874,1.6116,1.8836,10.5834,11.7943,2.2645,2.2111,1.7963,2.0569,11.5372,11.27,1.4755,1.486,1.1259,1.188,12.5704,12.1091,4.5457,4.7939,8.1414,7.965,3.785,3.0463,8.6452,9.024,6.656,7.0953,7.2523,6.4223,3.834,3.62,1.2267,1.2987,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,512
+desd514,66,66,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,513
+desd515,72,72,M,1.1722,1.4343,0.46576,0.50415,0.91315,0.86931,22.1811,3.7532,3.5314,52.467,51.8798,16.5514,17.1,263.77,262.7257,1.2612,3.6406,3.2963,0.58957,0.54996,12.8766,14.6384,1.8651,1.8589,4.409,4.47,7.9724,8.1564,5.459,5.7002,0.07254,5.2162,2.3581,2.9334,0.38887,0.38515,5.2958,6.5349,4.8816,5.24,2.2207,1.8727,11.7868,10.1609,3.0736,2.7352,4.8738,5.229,4.7934,3.8266,1.8665,1.8342,2.4494,2.6153,5.8776,4.4307,8.5667,8.5935,2.3395,2.238,6.6592,6.9187,13.4129,13.5711,8.4769,7.7312,2.8399,2.8999,5.6031,5.7163,2.196,2.2307,22.3671,20.2197,5.5313,6.6154,4.7054,4.7475,1.1047,1.3617,2.711,2.8102,10.1498,8.5151,17.1001,17.4934,2.9491,3.5934,4.5297,4.8401,4.8534,4.7752,2.0054,1.7511,4.5952,6.5954,12.5485,12.5599,3.2135,3.3253,3.2245,3.0549,2.9821,2.6669,10.9437,12.7861,2.8364,2.8316,2.5679,2.7415,12.4988,12.7629,2.25,2.0881,1.3605,1.3112,15.4497,15.4939,5.8192,5.6403,9.1853,9.0909,4.013,3.1777,10.9754,10.7712,9.0071,7.5284,8.9099,8.2868,4.1855,4.6504,1.8975,1.8423,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,514
+desd516,64,64,F,1.3555,2.2589,0.39757,0.41591,0.83627,0.8502,15.5901,3.2654,3.0305,27.9343,26.922,11.3847,12.2296,182.6154,175.5307,1.6407,3.268,3.1144,1.0228,1.7229,24.6727,31.6678,1.3905,1.3888,3.3584,3.4984,6.1974,6.4419,3.9635,4.2019,0.0592,4.4285,2.0653,2.0377,0.35331,0.36107,3.525,4.0625,3.8771,3.9716,1.4162,1.2674,8.3732,7.7611,3.5365,3.3726,3.56,3.949,4.6025,4.7757,1.5823,1.6513,1.7721,1.8184,3.2779,3.0987,6.6275,7.1118,1.7615,1.8049,6.2446,5.5182,10.4005,10.3088,7.9421,6.8163,1.9313,1.9361,4.1951,4.3599,1.5732,1.4705,17.5442,16.4845,4.978,5.5142,3.1249,3.3962,1.2107,1.0559,2.687,2.5173,7.7453,6.3289,13.8189,12.3447,3.0135,2.9587,3.7771,3.5685,2.8518,2.7807,1.2918,1.097,3.5726,3.9026,10.3976,9.8551,2.8132,2.9473,2.0792,2.1286,1.9658,2.1503,9.6469,11.4362,2.1067,2.1833,1.9834,2.1959,10.9428,10.9786,1.8172,1.8446,1.0845,1.1685,12.3468,13.0649,4.8756,4.6149,6.5489,7.0387,4.7014,3.6985,10.5438,9.8716,6.5968,7.1043,6.9804,6.8696,2.4577,3.2565,1.2488,1.2297,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,515
+desd517,78,78,M,1.7918,2.0487,0.41967,0.43145,0.91497,0.90002,20.5349,3.3624,3.127,47.6832,48.7685,16.8646,17.0418,255.4177,245.8349,2.0278,3.684,3.6464,0.70921,0.687,27.6324,35.4198,1.9706,2.0654,3.4847,3.7316,7.6238,7.9181,5.3058,5.7002,0.10334,4.8064,2.3699,2.5363,0.42318,0.4242,4.2614,4.8432,4.2613,4.3726,1.8675,1.6807,9.9833,9.5107,3.6497,3.5156,3.9169,4.6146,5.0981,4.3323,1.6968,1.8031,2.1221,2.2077,3.6851,3.6728,7.4427,7.4849,2.1389,2.3391,7.3665,7.4654,11.9225,12.0957,9.1059,7.7076,2.6095,2.6388,4.3397,4.0685,1.9892,1.9798,17.8055,19.9508,5.9148,6.459,4.373,4.7389,1.1714,1.3387,2.6736,2.8102,8.3765,7.0379,15.0358,14.356,3.5247,3.7212,4.5189,4.4682,3.0687,3.8125,1.8682,1.774,4.5414,4.9801,11.2362,10.8883,3.1184,3.3571,2.5376,2.6703,2.4349,2.2933,10.541,12.9365,2.7574,2.8073,2.3492,2.5286,13.1141,12.6387,1.9339,1.8458,1.1758,1.2251,14.4163,14.2564,5.3727,5.5218,8.2785,9.4144,4.6761,3.4209,9.6993,11.5286,7.7577,7.801,8.5756,8.4413,3.6312,3.8459,1.4654,1.8601,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,516
+desd518,63,63,F,1.7016,1.8055,0.34365,0.34417,0.79656,0.76239,19.5657,2.6329,2.5642,49.7075,50.411,16.3949,16.3434,213.239,203.7548,1.4226,3.1135,2.8797,0.55127,0.65681,13.7106,15.693,1.4871,1.567,3.4955,3.6017,6.1423,6.6092,4.5013,4.6521,0.07879,4.8838,2.6122,2.8787,0.33893,0.35595,3.9597,4.3224,3.5284,3.7658,1.5737,1.3397,10.0486,8.3938,2.9883,2.8776,4.1002,4.0155,4.0791,4.3683,1.5457,1.53,1.6922,1.7867,3.3473,3.3071,7.1123,6.9626,1.7493,1.8207,6.0687,6.031,10.6808,10.751,7.5401,7.1467,2.062,2.3733,4.6062,4.626,1.4812,1.6862,17.2089,18.0381,4.4501,5.7645,3.2182,3.3068,0.90211,1.0543,2.486,2.3249,6.8009,5.9052,13.7507,12.9016,3.2711,3.1802,3.9979,4.4898,2.7727,2.9791,1.2794,1.6324,3.4772,4.066,8.9542,9.6546,2.7849,2.9231,2.2668,2.1061,2.161,2.4094,10.3066,11.8226,2.1348,2.5164,1.9542,2.2474,12.5547,12.271,1.8503,2.0925,1.1865,1.1464,12.6543,11.6763,6.0736,5.9421,8.2656,9.2047,4.2164,3.6198,9.0243,9.0897,6.8175,7.3101,7.0754,6.9268,2.6007,3.639,1.3845,1.638,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,517
+desd519,63,63,F,1.1082,1.4588,0.40807,0.44492,0.90623,0.89213,18.4322,2.9065,2.8569,47.8697,47.8952,15.2445,15.9417,260.0396,252.4717,1.1862,3.6414,3.2963,0.67066,0.46197,11.3418,10.7903,1.703,1.6986,4.2337,4.6387,7.6391,7.8912,4.8435,5.031,0.07254,4.7338,2.2473,2.693,0.38576,0.39248,4.0018,4.431,3.6146,3.6477,1.6031,1.4319,9.1016,8.4172,2.8932,2.883,3.4588,3.5507,4.4789,4.2788,1.7069,1.6595,1.9211,1.7992,2.9622,3.1008,7.0986,6.8061,2.0352,2.0042,5.5253,6.2,10.7234,10.8721,7.659,7.2232,2.1092,2.2228,4.5969,4.8029,1.6016,1.6915,18.981,19.457,4.2927,5.8687,3.6406,3.717,0.88375,0.82726,2.364,2.3125,7.5173,6.256,13.6863,12.9016,2.5782,3.198,3.9066,4.1242,3.0912,3.0305,1.5482,1.4362,3.5588,3.8112,9.1766,9.8795,2.6761,2.8523,2.2158,2.2243,2.0239,2.1129,9.4862,10.3553,2.4704,2.3256,1.8859,2.1321,11.0717,12.0597,1.6388,1.7462,1.0894,1.0558,14.2123,14.4115,5.1681,4.608,7.2978,8.8088,3.9274,3.6472,10.3349,10.3302,7.0951,7.3352,7.785,7.3164,3.4643,3.5052,1.3985,1.4172,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,518
+desd520,72,72,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,519
+desd521,74,74,M,2.6836,3.3151,0.38885,0.42061,0.91712,0.94757,16.0602,2.9475,2.7411,45.7527,46.1531,13.1032,14.1874,217.6717,216.9257,2.486,3.6047,3.3065,1.1632,1.1149,33.5477,27.6636,1.6181,1.5295,3.5342,3.8415,6.0941,6.5556,4.2646,4.4778,0.09045,4.9098,2.4587,2.52,0.42028,0.4264,4.497,4.9042,4.2613,4.5286,1.6826,1.6054,9.4133,9.7383,3.2626,2.8124,4.1787,4.2174,4.9765,4.8578,1.8943,1.8532,1.8763,1.8671,3.6097,3.4204,8.0655,7.7014,1.8661,1.9303,7.2177,6.6334,12.5056,12.6202,8.8272,7.4859,2.0486,2.2966,4.8944,5.164,1.5698,1.5775,17.022,17.8445,5.3361,5.3035,3.6869,4.0173,1.0222,1.0588,2.7448,2.8104,7.5088,6.7189,15.3481,14.521,2.7636,3.688,4.5209,4.6446,3.4272,3.2757,1.4842,1.3639,4.0996,4.6604,10.5945,10.6224,3.3322,3.2771,2.4688,2.6283,2.2163,2.6226,11.1063,12.1081,2.2645,2.3132,2.2592,2.4753,10.9428,11.5078,1.8163,2.1613,1.2351,1.2723,14.1774,13.8474,5.2361,5.09,8.1119,9.5053,4.0133,3.3599,9.6917,9.7427,7.8592,8.7619,7.785,7.8928,3.5721,3.5497,1.5356,1.7669,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,520
+desd522,62,62,M,1.6975,2.1094,0.45089,0.49261,1.0622,1.0531,20.545,3.856,3.6921,56.5683,54.4207,16.2934,16.9448,251.5132,245.919,1.0849,3.73,3.3865,0.66079,0.5242,11.4639,13.599,1.6182,1.712,3.8314,3.816,7.3745,7.4395,4.8444,5.1663,0.10009,5.1803,2.6033,3.1238,0.41216,0.41072,4.8252,5.4149,4.2834,4.5901,1.9744,1.8454,11.0375,10.3589,3.5938,3.1407,4.3878,4.5471,5.1805,4.4205,1.9942,2.0359,2.0317,2.192,4.1201,3.7492,8.6655,8.7704,2.219,2.3589,7.4006,7.5747,14.1024,13.1401,9.7277,9.5357,2.5382,2.8104,5.1245,5.3877,2.1056,2.2306,21.2925,21.8987,5.9832,7.1985,4.251,4.6312,1.1411,1.1816,2.7102,2.9417,9.1099,8.0971,16.1292,16.525,3.2773,3.9386,4.9467,4.698,3.0687,3.3622,1.6007,1.638,4.5817,4.7456,11.7274,11.3723,3.052,3.4414,2.3431,2.3709,2.1702,2.8163,11.0207,13.531,2.6274,2.594,2.272,2.4483,12.0314,13.0542,1.9694,2.1467,1.3886,1.5153,17.274,15.2985,5.6699,5.7074,8.8186,9.8517,4.4244,3.6813,11.3561,10.8921,8.4316,8.8782,9.5,8.911,4.0728,4.1858,1.5081,1.5846,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,521
+desd523,81,81,F,1.8046,2.1243,0.32574,0.35031,0.72047,0.78396,16.9074,2.4036,2.3055,44.8116,44.0482,14.0549,14.6336,199.1276,184.7551,1.3463,2.9427,3.0347,0.96812,0.83269,16.0835,21.1877,1.3961,1.3795,2.8402,2.6628,6.0473,6.0733,4.259,4.5385,0.08755,4.752,2.2877,2.5975,0.3603,0.36148,3.5452,4.3267,3.7837,4.1044,1.6751,1.3797,9.7188,7.9641,2.2766,2.0088,3.732,4.0207,4.0856,3.4888,1.4647,1.5962,1.9544,2.1231,3.3102,3.1183,6.5065,6.2204,1.9435,2.0366,6.1881,5.6049,10.3651,10.0282,6.5453,5.2629,2.1151,2.2163,4.4706,4.5634,1.7652,1.7254,16.2457,16.0813,4.504,5.6852,3.7058,3.9194,1.1437,1.0161,2.5435,2.2739,7.1901,6.6941,11.4993,11.453,2.565,2.7676,3.587,3.5194,3.2014,3.3958,1.4511,1.357,3.5992,3.976,8.7866,8.8843,2.5279,2.5548,2.0109,2.1058,2.1869,2.4953,8.6214,10.309,2.0801,2.2911,1.8244,1.8969,11.6113,11.8859,1.8444,2.08,1.1501,1.2045,12.1472,13.4099,4.8672,5.424,7.0785,7.845,3.6908,2.7745,9.9975,8.3007,6.1258,6.6077,7.0991,6.7386,3.3855,3.8213,1.2381,1.4745,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,522
+desd524,,,F,2.1892,2.2191,0.34863,0.39511,0.84773,0.81768,16.0109,3.0383,2.8188,46.4564,46.3508,13.5695,13.839,191.9809,190.6344,1.9862,3.23,3.0526,1.2095,0.98823,32.8686,35.2172,1.5564,1.5094,3.6117,3.4336,6.439,6.5824,4.3721,4.6654,0.07224,4.3048,2.0513,2.4806,0.3595,0.36148,3.7748,4.3399,4.0836,3.9407,1.5423,1.3642,9.913,7.8059,3.666,3.319,3.9873,3.7722,4.4068,4.2499,1.722,1.6683,2.0246,2.0332,3.2243,2.9133,7.1612,7.0611,1.78,1.8414,6.0555,6.0919,10.678,10.3429,8.1799,7.19,2.0076,2.2508,4.3567,4.3599,1.614,1.64,16.8387,16.5372,4.9023,5.4806,3.5012,3.499,1.0391,0.9475,2.8046,2.6527,7.2701,6.0886,12.0367,12.0241,2.686,3.392,3.9331,4.0192,3.614,3.3582,1.4095,1.4993,3.8189,4.0189,9.7858,9.6152,2.8168,3.205,2.3244,2.5846,2.0051,2.3093,9.1919,11.0462,2.1878,2.3013,2.2256,2.2754,10.0587,11.3625,1.8846,1.8047,1.0439,0.97977,12.0086,11.6837,5.0658,5.4187,7.9077,7.0505,3.8214,3.0921,9.3873,8.9908,6.7324,7.2334,7.6637,6.9879,3.3582,3.6428,1.6169,1.4384,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,523
+desd525,80,80,F,1.7205,2.2666,0.29367,0.38244,0.64983,0.8218,14.5773,2.334,2.4183,31.4445,31.3093,11.27,12.2296,172.6784,168.0025,2.2694,2.5942,2.5125,1.6519,1.3233,34.6058,27.6636,1.2718,1.2221,3.1384,3.2548,5.1972,5.1752,3.7485,4.0073,0.0805,3.8533,1.7952,1.847,0.34677,0.3005,4.1619,4.341,3.5394,3.7508,1.6152,1.4061,7.6747,7.946,3.0828,2.4466,3.4588,3.6058,4.5105,3.8266,1.1853,1.4739,1.8056,1.8102,3.7518,3.4559,5.5218,5.7889,1.9057,1.9337,6.401,4.9571,8.9138,8.6055,7.7439,6.8462,2.0666,2.3092,4.3325,4.3419,1.6125,1.853,17.3819,17.4774,4.5744,5.0603,3.3546,3.5504,1.1702,1.012,2.587,2.4786,6.4777,6.1665,11.4926,11.6557,2.6925,2.7303,4.2499,4.1086,2.73,2.6171,1.3766,1.2806,4.063,4.6327,10.5467,10.7532,2.4985,2.559,1.9027,2.1265,1.874,2.1756,10.4444,10.2494,2.1371,2.2607,1.8475,1.9672,10.8662,10.7577,0.00244,1.8821,1.1752,1.2571,14.4338,13.4797,5.1528,4.6124,5.9791,7.8429,4.0085,2.7448,8.6424,10.1926,5.0048,6.0437,6.1074,6.3723,3.3421,3.535,1.2654,1.3082,,10,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,524
+desd526,81,81,M,1.9074,1.4711,0.34998,0.42163,0.72158,0.75395,14.5802,2.6894,2.6071,32.158,29.3947,11.3372,11.2483,181.8204,179.8191,2.1946,2.7682,2.5432,0.89895,0.80271,24.2377,24.6531,1.3624,1.2873,3.4679,3.6105,5.8286,5.863,3.9964,4.1762,0.08783,3.5022,1.7578,1.847,0.36423,0.33649,4.5016,4.7454,3.817,3.8937,1.4124,1.2826,8.8617,8.4396,2.3843,2.2112,3.8864,3.891,3.7159,3.276,1.4702,1.6233,1.8946,1.9302,3.5513,2.9356,5.6104,5.8912,1.8392,1.7495,5.9514,5.2045,9.1946,8.6055,6.8706,5.6111,1.8924,2.0551,4.7228,4.8665,1.6411,1.778,15.1184,15.9692,5.1387,4.9424,2.9565,3.3296,0.7652,1.2608,2.4041,2.755,8.1639,6.9119,11.7788,10.6925,2.7873,3.1951,3.6227,3.5111,2.8518,2.7807,1.4353,1.3155,3.3984,3.8282,9.6544,10.4289,2.5922,2.7332,2.2838,2.3482,1.9666,2.1707,8.9611,11.3341,2.0466,2.1708,1.8789,2.0971,11.0166,10.5286,1.6975,1.7911,1.1752,1.251,12.3623,13.0674,5.4278,5.0587,7.2824,8.5524,3.4776,3.1058,8.1687,9.0894,5.9591,5.4002,6.4111,6.2356,3.4012,3.3617,1.3782,1.4652,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,525
+desd527,67,67,F,0.98083,1.9037,0.34181,0.42802,0.81108,0.78801,15.0725,2.4974,2.3667,45.4569,46.1125,11.9307,12.1868,183.164,180.6172,1.1536,3.2171,3.05,0.51853,0.3713,9.4804,11.4972,1.2104,1.1772,3.0918,3.1621,6.1911,6.183,3.583,3.8961,0.07662,3.6723,2.2877,2.3526,0.40044,0.38667,4.1159,4.4999,3.3815,3.7508,1.7177,1.3762,10.4985,8.8036,2.912,2.5994,3.6842,3.6662,3.9812,3.6357,1.6513,1.4938,1.6897,1.9031,3.3539,3.2598,6.8619,7.2039,1.8571,1.8733,6.3087,6.0351,10.8761,10.9339,7.6875,6.499,2.2645,2.2053,4.6986,4.7252,1.6945,1.6649,19.14,19.1495,5.3553,6.2736,3.6345,3.6628,1.0943,1.0588,2.3336,2.3651,7.6315,6.7603,14.774,13.7377,2.5476,2.97,4.2997,4.1288,2.9653,3.4832,1.4922,1.4598,3.6601,3.8132,9.1747,8.9573,2.6336,3.0361,1.9203,2.0617,1.8432,2.4066,9.5254,10.4789,2.3965,2.2795,1.8567,2.0155,12.2499,12.3791,1.8749,1.8088,1.1771,1.2512,13.5233,12.9795,5.3208,5.5097,7.1919,9.672,3.8457,2.6919,11.0128,10.5006,7.3424,7.0463,7.1959,6.3085,3.1045,3.8793,1.3272,1.4327,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,526
+desd528,73,73,F,0.95053,1.2928,0.43242,0.46979,0.73258,0.74553,18.5757,3.1525,2.9435,37.7172,36.1023,14.0826,14.9923,242.5288,247.9511,1.1321,2.8766,2.5551,0.44345,0.47239,11.9217,14.0786,1.6691,1.6826,4.3835,4.3739,7.3845,7.1998,4.7913,5.0959,0.08245,4.6385,2.1431,2.4878,0.36176,0.38798,4.105,5.0318,3.6146,3.9264,1.7993,1.6642,9.3863,8.5464,3.4774,3.6314,3.8236,3.4424,5.3886,5.4245,1.5116,1.5145,1.8272,2.0075,4.0853,3.6101,6.6665,6.9662,2.2603,2.3994,7.4434,7.4941,11.0173,10.7251,7.7846,6.7701,2.2256,2.4862,4.4076,4.6176,1.9531,2.0486,20.1227,19.7907,5.7379,6.5834,3.8157,4.1113,1.1934,1.2289,2.7318,2.8489,8.4067,7.5977,13.4412,12.9054,3.881,4.7744,4.203,4.2594,3.3756,3.0088,1.4818,1.5872,3.6767,4.0943,10.2318,10.6302,2.5366,2.8842,2.4339,2.4087,2.4464,2.6416,9.0724,10.8637,2.1629,2.5155,2.0354,2.1765,13.703,12.6607,2.1006,2.0007,1.1702,1.2297,15.8186,16.7898,6.3356,5.8365,7.4967,9.3389,5.1011,4.7905,11.2632,11.1225,7.4112,7.1363,8.0801,7.7644,3.5429,3.5923,1.5547,1.7159,,16,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,527
+desd529,59,59,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,528
+desd530,,,M,1.5226,2.3519,0.37592,0.38063,0.81053,0.7718,17.0328,2.7088,2.6895,43.9453,42.9074,14.305,13.7043,201.5903,202.825,1.2465,3.0205,2.7299,0.61848,0.50741,12.814,22.1922,1.4748,1.4666,2.8927,2.8971,6.3999,6.6506,4.4025,4.5983,0.08044,4.6274,2.0161,2.4471,0.32953,0.37066,3.614,3.7447,3.364,3.4235,1.5053,1.2772,8.2788,8.1155,2.8962,2.9999,3.2306,3.612,4.3805,4.1242,1.6593,1.5455,1.5528,1.401,3.266,2.6663,7.5457,7.4887,1.6284,1.6468,6.6976,6.1691,11.3479,11.5205,7.4874,7.0691,1.9222,1.8717,4.2511,4.3599,1.3578,1.4152,14.918,15.8475,3.4789,5.0946,3.5438,3.5958,0.95179,0.99614,2.1712,2.1599,6.112,5.4513,12.7816,13.649,2.9165,2.8953,4.3228,4.2739,2.8089,2.6457,1.2473,1.0427,3.7654,3.7825,10.4549,9.7632,2.8876,3.0323,1.8782,1.9054,2.0324,2.2844,8.0006,8.9833,1.9656,2.2599,1.7139,1.887,9.7905,9.9496,1.5454,1.9195,0.99556,0.98202,13.015,13.8267,4.245,4.3097,6.1485,8.3427,3.7684,3.2341,10.4029,10.729,6.4612,7.107,6.2989,6.3182,2.5902,3.3177,1.3372,1.5821,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,529
+desd531,,,M,1.572,1.7228,0.41218,0.46265,0.8884,0.93788,17.0807,3.5829,3.4491,45.9326,45.8179,14.5272,14.8168,247.9735,238.7424,2.0648,3.6067,3.5191,0.43043,0.4617,23.0322,28.3623,1.7868,1.7979,3.6721,3.844,7.042,7.3654,4.7595,4.9371,0.079,5.0169,2.223,2.4809,0.37923,0.38339,4.8806,5.731,4.166,4.4546,2.0347,1.8397,11.2125,9.3998,3.1797,3.1103,4.3899,3.7658,4.8925,5.2218,1.7919,1.6611,2.1003,2.1225,4.2777,4.0207,8.3301,8.3258,2.2015,2.3479,6.9888,6.8257,13.085,13.2013,8.4769,8.1228,2.6347,2.8515,5.6031,5.5882,2.0711,2.1228,21.2925,21.1393,5.92,6.9543,4.2627,4.5688,1.1411,1.1816,2.5793,2.7925,9.3424,7.7655,15.1685,16.3448,3.329,3.1518,4.3302,4.7443,3.908,3.8995,1.7728,1.8071,4.1235,4.6291,11.262,11.6249,3.1552,3.6922,2.3431,2.3972,2.6122,3.1235,10.5419,11.6908,2.4833,2.6925,2.1534,2.4078,11.9125,13.0261,2.1015,2.9278,1.3886,1.4242,16.1404,15.2985,6.2855,5.7798,8.5253,10.0726,4.8376,3.7481,11.9661,12.5369,7.9211,8.1752,9.1009,7.9237,4.171,3.5559,1.5133,1.8456,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,530
+desd532,,,F,2.4702,1.8463,0.14255,0.28135,0.5099,0.50331,18.029,1.8066,1.848,44.7195,43.7242,14.1835,14.7581,169.8396,169.0711,2.1683,1.1821,2.4588,1.6347,1.5123,32.5772,35.0719,1.4893,1.6013,2.1838,2.6509,5.3503,6.3151,4.1478,4.377,0.08239,4.5381,1.9767,2.1681,0.2665,0.2706,4.1339,4.4639,3.6745,3.6793,1.4914,1.2637,8.7368,6.4981,2.5013,2.626,3.3572,3.5531,3.596,3.349,0.84711,0.9014,1.8537,1.8102,3.605,3.2787,3.8349,5.6822,1.7422,1.8768,4.9759,4.866,7.4539,7.7916,6.5178,6.5562,1.9375,1.9837,4.1021,4.2474,1.6694,1.6576,17.0282,18.0565,3.8107,4.6551,3.5262,3.2152,1.0275,1.0809,2.5231,2.4552,6.9498,6.6371,7.0908,9.5015,2.4134,2.9221,3.6224,3.5991,2.857,2.8646,1.2938,1.2362,3.2263,4.0421,8.9821,9.8817,2.1424,2.6325,2.2408,2.2224,2.1488,2.2148,9.0085,10.5503,2.0676,2.1636,1.7647,2.1656,11.267,11.6814,1.8068,1.7894,0.98644,1.0146,11.9065,13.2205,4.9428,4.608,7.2698,7.6911,3.4528,2.6359,9.0337,9.7743,5.8236,5.7462,5.8082,5.2112,3.1005,2.8594,1.182,1.4648,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,531
+desd533,60,60,F,1.521,1.7982,0.34365,0.41094,0.73506,0.71617,18.5066,2.5737,2.459,43.6868,42.7427,14.1985,14.7581,202.9975,202.0467,1.6499,2.7835,2.5595,0.83647,1.1214,17.1038,23.7469,1.4764,1.5309,3.3414,3.4333,6.2423,6.885,4.496,4.6521,0.08474,4.467,2.0402,2.4388,0.3848,0.39372,3.9559,4.3886,3.9487,4.1261,1.7983,1.5991,9.9299,8.3337,2.7959,2.9632,3.5842,3.8199,4.2242,3.9577,1.4599,1.3546,1.8833,1.7537,3.579,3.3957,6.9756,6.775,1.9065,1.8517,5.9433,5.984,9.9808,10.2714,7.1919,6.4703,2.2001,2.2395,4.2759,4.3288,1.6526,1.7025,18.9184,18.3019,4.62,5.7343,3.8106,4.002,1.3812,1.1394,3.1132,3.0378,6.6822,6.5859,13.7507,12.1722,2.1902,3.4594,3.9142,4.0482,3.2803,3.4872,1.6283,1.4934,3.911,4.224,10.2035,10.4845,2.6925,2.9152,2.4096,2.3193,1.9492,2.1322,10.5416,11.0757,2.4806,2.3903,2.2209,2.1285,11.9313,11.8957,1.9533,1.8782,1.1721,1.1728,13.8315,12.9869,5.0396,5.0925,8.1528,8.332,3.6908,2.992,10.6873,10.3233,7.3625,6.271,7.4188,6.5986,3.3092,3.5457,1.5479,1.6057,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,532
+desd534,78,78,M,2.5948,2.782,0.31503,0.36202,0.67514,0.71167,18.8952,2.1957,2.17,46.8712,47.1271,14.6035,15.6678,231.6549,231.6862,2.0625,2.7931,2.6064,1.4125,1.6117,21.9802,29.5189,1.7255,1.7194,3.1365,3.3637,6.5226,7.0209,4.9035,5.1795,0.09881,5.2786,2.3957,2.5118,0.3306,0.32724,3.6203,3.8893,3.6724,3.9836,1.4031,1.2591,8.6472,7.6315,3.2748,3.3004,3.7405,4.2559,4.3475,3.6811,1.3782,1.4232,1.7157,1.5355,3.2104,2.8959,6.55,6.8975,1.5802,1.6461,4.1811,5.0515,9.5319,10.3433,7.4049,6.5803,1.6987,1.9837,3.8898,3.8452,1.3566,1.4892,14.9787,14.7416,3.6891,4.5397,3.0201,3.0025,1.0106,1.1475,2.5935,2.771,6.5434,5.903,11.5183,12.5646,2.6285,2.7303,3.8081,3.7048,2.8755,2.6854,1.2066,1.2362,3.0563,3.4659,8.4878,8.3464,2.6024,2.7641,2.163,2.0742,2.3098,2.4688,7.8636,9.1597,1.8214,1.9283,1.9357,2.2286,9.0997,9.6065,1.9312,2.0633,0.9568,1.0196,10.046,11.176,4.612,4.7418,7.1539,8.0917,3.2066,2.9305,7.3466,7.9356,5.9102,6.0194,6.5621,7.3433,3.0039,3.0846,1.5011,1.3872,,16,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,533
+desd535,73,73,F,1.9465,2.5409,0.35861,0.3887,0.73419,0.68272,17.2506,2.6433,2.5116,43.9453,42.9074,13.2665,13.5003,204.0351,203.3715,1.7204,2.737,2.443,1.6285,1.4657,18.3726,20.6888,1.4367,1.4044,3.3618,3.2494,6.1854,6.4724,4.1745,4.3906,0.06836,4.3824,2.2713,2.383,0.35503,0.37308,3.4872,3.9461,3.6161,3.7338,1.4226,1.2674,9.0908,8.8485,2.5168,2.5467,3.984,3.771,4.0272,4.0078,1.3483,1.3227,1.8546,1.7489,3.1505,2.9676,7.2795,6.7801,1.7864,1.8851,5.5082,5.3211,11.1006,10.131,7.0919,6.3161,1.845,2.067,4.2099,4.2817,1.5443,1.5262,17.4139,17.156,4.8068,6.6411,3.3358,3.5511,1.0793,1.0156,2.3434,2.3103,7.1911,6.459,12.8679,12.6361,2.3287,2.6444,3.2946,3.7827,3.1751,2.8977,1.2066,1.2029,3.5726,4.1302,9.1639,10.0677,2.5347,2.629,2.1284,2.1573,1.8914,2.0912,9.2992,10.4337,1.9505,2.108,1.8956,2.0946,11.4796,11.6743,1.5249,1.635,0.99239,1.0338,13.723,13.1831,4.913,4.9414,7.473,8.1279,3.7965,2.8281,9.0975,9.9883,6.4836,6.8159,6.9366,6.6926,3.0679,3.0662,1.3985,1.4168,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,534
+desd536,66,66,M,1.0188,1.4405,0.39689,0.4675,0.84832,0.92984,19.9315,2.4205,2.459,52.3858,51.6413,17.3021,17.5743,256.9331,252.5392,1.1862,3.2868,3.0577,0.47477,0.45813,11.259,10.2416,1.803,1.7979,4.0851,4.1105,7.8667,8.0618,4.917,5.1663,0.10549,5.3514,2.359,3.0709,0.3795,0.41085,4.491,5.0133,4.8339,5.065,1.9919,1.6751,11.0488,9.1168,3.1923,2.8373,3.4815,4.0501,4.4513,3.7909,1.6091,1.7606,1.9838,2.2167,4.1304,3.5318,7.7346,7.5038,2.207,2.3336,6.9263,6.4688,11.4399,11.9897,7.9804,7.1263,2.3789,2.7764,4.8273,5.3086,1.9705,2.0881,19.4685,18.8358,5.5605,5.9404,4.4065,4.5908,1.0728,1.0919,2.974,2.7557,8.135,7.5516,14.0606,14.9175,3.0832,3.7458,4.331,4.1161,3.1299,3.2658,1.7399,1.6954,3.9427,4.2673,11.1301,10.3832,2.7121,3.1605,2.5151,2.4725,2.0627,2.4296,10.5419,11.4977,2.6482,2.9659,2.1327,2.7252,13.2394,12.6592,1.6382,2.0789,1.3268,1.3258,14.9771,14.8471,5.58,5.5603,8.1468,8.3587,4.3993,3.4209,12.1353,12.5369,7.3705,6.8376,7.7616,8.4673,3.9895,4.8047,1.3371,1.8654,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,535
+desd537,68,68,F,1.6335,2.2644,0.37607,0.40036,0.90904,0.92421,18.8633,2.9766,2.9262,46.3996,45.7221,16.4399,16.6023,226.5443,219.4771,1.3132,3.8423,3.4613,0.82291,0.57687,13.6461,15.3171,1.6406,1.6382,3.5761,3.4341,7.3263,7.4648,4.7729,5.0056,0.08648,4.7656,2.3474,2.5881,0.38983,0.39953,4.0747,5.0062,3.8644,4.0645,1.7043,1.5772,6.6486,8.015,3.8376,3.7808,4.1037,4.3187,5.0213,5.3907,1.6965,1.8106,2.0688,2.0427,3.3301,3.4177,8.1492,7.6282,2.1532,2.2249,7.4279,7.4654,12.3597,12.5652,9.0811,7.8541,2.4607,2.3359,5.3121,5.3815,1.9436,1.9557,19.6031,19.4226,5.4944,6.4884,3.6462,4.1875,0,0,0,1.843,8.5083,8.1543,14.5562,14.1192,3.7683,4.1271,4.6594,4.701,3.7478,3.4729,1.8234,1.4924,4.1503,4.1658,10.7091,10.0436,3.2315,3.2771,2.0289,1.9863,2.2332,2.4738,8.7033,9.29,2.6815,2.6048,1.9957,1.9836,12.4119,12.4872,2.1241,2.3175,1.2397,1.3699,14.6241,15.0348,6.1697,5.7798,6.5122,7.7894,4.7164,4.4913,10.7106,11.3401,8.0056,7.8152,8.8523,8.47,3.4329,3.9199,1.5501,1.6638,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,536
+desd538,,,M,1.2664,1.3062,0.34523,0.38516,0.78518,0.80224,15.5862,2.4047,2.3381,40.2222,42.9952,12.526,13.0176,205.4985,206.3478,1.1023,2.8341,2.9863,0.56721,0.66107,15.0453,16.6159,1.4317,1.4044,3.1708,3.3637,6.1679,6.9973,4.0474,4.2721,0.07562,4.3723,2.0402,2.3656,0.34264,0.35521,3.8518,4.4173,3.637,3.8233,1.746,1.502,8.7247,7.8755,2.8749,2.8439,3.3572,3.7078,4.1683,4.2396,1.5278,1.4938,1.78,1.9553,3.6547,2.9085,6.7279,6.7179,1.8402,1.8748,5.9165,5.9785,10.8862,10.4886,7.662,7.3706,2.2858,2.453,4.4369,4.4796,1.6945,1.7425,17.5262,17.3834,4.9289,5.8863,3.5288,3.8233,1.0106,1.0018,2.0321,2.2592,8.1541,6.4821,14.3263,12.8021,2.6925,3.1491,4.0166,3.9903,3.3205,3.8938,1.4622,1.6281,3.5659,4.0902,9.6417,10.1722,2.7019,2.9354,2.3501,2.1949,2.0085,2.1576,8.4421,10.4308,2.2182,2.3344,2.0151,2.1779,11.1084,11.7583,1.6388,1.7712,1.0378,1.1263,16.8157,13.3589,5.6498,5.3514,7.9005,7.0505,3.9385,3.3888,8.6712,10.1258,6.5986,6.2275,6.9804,6.8292,3.2533,3.3372,1.3181,1.4584,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,537
+desd539,70,70,F,1.9017,2.4115,0.37032,0.49937,0.91609,0.9122,17.1079,3.0714,2.675,45.0926,44.2557,14.5272,14.4878,233.7051,226.2861,3.0552,3.8025,3.6642,0.85339,0.91392,33.4486,37.4298,1.6026,1.5701,3.588,3.6548,7.2574,7.4687,4.741,5.0305,0.08971,4.9096,2.5427,2.4551,0.45814,0.40562,3.8621,4.5166,4.3269,4.8572,1.5749,1.5194,10.6055,10.2967,3.6982,3.9768,4.329,5.1241,5.6101,5.84,1.8133,1.7739,1.8904,1.946,3.4976,3.4587,8.2273,8.2525,1.7307,1.679,7.6726,7.1878,12.4884,12.533,8.6567,8.4392,2.0092,2.2619,4.6365,4.2041,1.6476,1.575,17.9356,17.0774,5.9573,7.0934,3.4302,3.5988,1.0851,1.2392,2.8652,3.0391,7.3909,6.833,14.9277,14.1186,3.4887,4.1582,4.7004,4.4368,2.9696,3.14,1.5266,1.4045,4.1739,4.7807,10.5945,10.6224,3.3648,3.5232,2.5789,2.5438,2.1122,2.6086,10.7664,12.6483,2.0801,2.2905,2.3573,2.3669,10.8545,11.3994,2.0784,2.1403,1.1412,1.1796,14.7075,14.4207,4.9239,5.09,8.5809,9.0617,4.3393,3.269,10.9051,10.1216,7.655,7.3592,7.8822,8.7411,3.4028,3.7335,1.4503,1.5449,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,538
+desd540,73,73,M,1.4175,2.9115,0.34877,0.37769,0.69704,0.6752,17.4445,3.014,2.9262,40.8155,42.8051,14.3679,14.8204,202.9975,197.2042,1.6975,2.9848,2.7905,1.285,1.3765,18.3726,23.9591,1.3842,1.3795,3.6883,3.7474,6.1317,6.4332,4.2859,4.4197,0.06895,4.4349,2.0582,2.4586,0.31821,0.33925,3.0647,3.5832,3.364,3.3318,1.5734,1.3152,9.5312,7.9257,2.5892,2.1018,3.2736,3.612,4.1014,3.4888,1.3995,1.2706,1.4845,1.4724,3.1813,2.9207,5.9671,6.018,1.623,1.6651,5.1454,5.0373,9.5365,9.5883,6.9399,6.0476,1.9799,1.9589,4.075,4.2148,1.3578,1.4467,17.2115,18.1444,4.0023,5.1587,3.3423,3.4975,1.0072,0.97972,2.2305,2.3561,6.2179,5.9312,12.0255,12.0173,1.9228,2.3736,3.4528,3.7607,3.0061,2.8132,1.3816,1.2394,3.4229,3.8782,9.4002,9.5992,2.5458,2.7527,1.6855,1.7462,1.733,1.9155,7.7528,9.384,1.9175,2.1636,1.84,2.0156,11.4796,10.3115,1.456,1.7443,0.98281,0.99393,13.5014,14.1173,4.2554,4.3949,6.9817,7.5909,3.3486,2.772,8.6091,8.9387,3.5,6.5243,6.6545,6.1146,3.2715,3.3288,1.1665,1.5138,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,539
+desd541,84,84,F,1.9884,1.9275,0.24275,0.26339,0.5099,0.55213,16.484,1.941,2.1284,43.9449,43.844,14.413,14.5866,208.2842,205.9744,1.5955,2.4553,1.9484,0.60897,0.57737,13.2517,18.5578,1.5111,1.4815,2.539,2.726,6.3053,6.5669,4.281,4.4961,0.06403,3.9762,1.8995,2.3454,0.31367,0.28174,3.8971,4.207,3.4688,3.6966,1.7697,1.3901,10.0099,9.7234,2.4088,1.9387,3.8351,4.4165,3.6266,2.9868,0.98201,0.91296,1.6243,1.7076,3.6547,3.198,5.1012,5.4726,1.965,1.7546,5.3338,5.7087,7.4539,8.0032,6.5453,5.2629,2.1323,2.1544,4.2652,3.9922,1.8007,1.6281,16.3854,17.9676,4.3924,4.9258,3.6023,3.4232,1.0611,1.1074,2.3642,2.4209,7.4214,6.6941,9.5092,9.4157,2.2124,2.7448,3.6394,3.7017,2.9641,3.3054,1.4724,1.4125,3.9209,4.0256,10.4193,10.4845,2.3909,2.5425,2.1101,1.9278,1.9666,2.0482,10.2866,11.6679,1.8117,2.2597,1.8244,2.043,11.6556,10.3418,1.5729,1.6792,1.017,1.0716,14.6309,14.2914,5.2541,5.5874,7.7676,8.6249,3.3676,2.8301,9.3204,9.9311,5.4202,5.6191,2.8712,5.3971,3.3409,3.8213,1.1629,1.3482,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,540
+desd542,77,77,F,1.6374,2.2644,0.34156,0.36877,0.79656,0.76239,16.438,2.6411,2.512,38.9026,41.5414,12.6679,13.0618,164.8177,166.051,2.0996,3.0757,2.822,0.58529,0.53477,26.0515,28.241,1.4275,1.393,3.4247,3.4661,5.7447,5.9736,4.0924,4.3615,0.06589,4.5196,1.9967,2.0875,0.32632,0.35812,3.7026,4.0696,3.8572,3.7848,1.6717,1.5558,10.3271,9.0663,2.9997,2.6499,3.4373,3.4995,4.0084,4.021,1.571,1.4874,1.8537,1.6397,3.1786,3.2423,6.6402,7.0908,1.9111,1.9202,6.4408,5.3417,11.3715,10.7932,6.9763,6.6851,2.0721,2.3723,4.2837,4.4549,1.6863,1.5646,17.4987,17.6929,5.1762,5.4804,3.6451,3.847,0.90211,1.0639,2.2491,2.5365,7.3052,6.0318,14.7833,13.7377,2.9051,2.9587,3.9081,3.6946,3.2259,2.7489,1.3766,1.4082,3.4881,3.9719,9.3341,9.6203,2.7339,2.9473,2.1284,1.9738,1.9233,1.9125,9.7161,10.3112,2.2296,2.425,1.8467,1.9836,11.6466,12.1035,1.5158,1.4896,1.0981,1.1726,13.7655,13.2358,4.6269,4.3322,7.5562,8.1767,3.7684,3.0755,9.275,9.1618,6.5986,7.4128,7.3909,7.4294,3.6116,3.4399,1.2277,1.3227,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,541
+desd543,66,66,M,1.7179,1.9408,0.41653,0.43868,0.76377,0.83217,18.8525,3.4732,3.0724,47.8126,47.3623,14.8459,15.6924,227.1472,226.1267,1.4292,3.3151,3.1863,0.53646,0.505,11.539,15.2159,1.5997,1.5332,3.8423,3.6981,6.3611,6.6266,4.6207,4.9294,0.079,4.1751,2.1741,2.493,0.36201,0.36027,3.9057,4.6754,3.8848,4.058,1.8843,1.598,9.0115,7.956,3.5335,3.2017,3.9933,3.9079,4.6282,4.5272,1.5285,1.5673,1.8603,1.9445,3.5537,3.5412,7.0847,7.3628,2.0385,2.1293,6.2472,6.1868,11.756,11.1868,8.3743,7.8698,2.3648,2.5953,4.8128,4.8052,1.9062,1.892,16.9497,19.3525,4.4069,5.0215,4.1783,4.2163,0.93798,1.0488,2.3478,2.5913,8.5083,7.2221,14.5547,14.5335,2.9326,3.7408,4.1769,4.3582,2.9391,3.3625,1.6822,1.5986,3.8961,3.9408,10.4931,10.2054,2.6508,3.0104,2.0289,2.016,2.01,2.0247,9.6623,11.2423,2.5005,2.7276,1.8568,2.0808,13.196,13.0428,1.9493,1.8999,1.249,1.2694,13.8315,14.5303,5.6451,4.9559,7.0035,7.344,4.6318,4.2588,9.9513,9.9701,7.067,6.8376,7.7847,7.1993,3.6312,3.6743,1.3885,1.3469,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,542
+desd544,,,F,0.70972,1.2959,0.00066,0.02263,0.61379,0.58904,2.0826,0,0.0006,32.5484,33.0167,10.46,10.4069,76.6563,69.2732,0.85575,2.5696,2.3964,0.60093,1.0232,13.5658,14.8694,0.81757,0.8757,0.32208,1.2789,3.756,2.2488,4.0239,4.1428,0.06425,4.0486,1.8031,1.8897,0.13799,0.28347,1.9435,0.00216,0.72891,0.46849,0.0014,0.55737,1.1839,3.9193,3.0625,3.1377,2.1079,2.1042,4.6058,4.2839,1.3618,1.2807,0.00088,0.00096,0,0,6.085,5.5762,0.70935,0.90295,5.8928,5.5408,9.6125,9.1131,7.5827,7.2027,0.67733,0.06594,0.00011,0,0.16873,0.13214,0,0,4.5545,4.2477,0.5615,1.2391,0,0,0,0,0.00038,0.00046,11.7952,10.5233,2.4357,2.7388,4.0727,4.095,0.00048,0,0.48335,0.0049,3.0192,1.534,3.1452,3.5147,2.403,2.5224,1.6208,1.6036,0.53142,0.78485,0.00167,0.00111,1.4502,0.90385,1.6139,1.6021,0.00078,0,0.00244,1.7231,0.62791,0.79424,0.00029,0.00013,0,0,5.1788,6.0253,3.7279,3.0278,1.3359,7.6989,5.0713,3.4718,6.2058,6.3723,0,0.00001,1.1316,1.284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,543
+desd545,,,M,2.1427,2.4089,0.35128,0.36272,0.78953,0.81368,16.4468,2.8989,2.7928,47.4525,48.8532,12.2102,12.1483,214.4218,210.1924,1.7914,3.4165,3.2747,1.0738,0.9762,20.8601,21.7721,1.4486,1.4048,3.2747,3.402,6.2039,6.5673,4.1046,4.2939,0.08405,4.6495,2.2981,2.533,0.37691,0.37661,3.955,5.0484,3.7408,3.8666,1.8904,1.6322,8.8971,8.6024,3.1609,3.0412,4.5316,3.9354,4.1616,4.5504,1.6085,1.5631,1.6638,1.6887,3.9312,3.6603,7.1612,7.4408,2.0976,2.2699,7.5239,6.5911,11.1037,11.3971,8.1904,7.1734,2.2869,2.3498,4.9833,4.9602,1.914,1.926,18.5625,18.4698,5.5567,6.2736,4.1554,4.1871,1.1161,1.0763,2.4211,2.2267,8.3722,7.5175,14.0727,13.8103,2.6114,3.3037,4.443,4.3191,2.7745,2.8826,1.4083,1.4578,4.1308,4.6327,10.9141,11.0971,2.8906,3.0225,2.3679,2.3836,2.7442,2.6107,10.8522,11.9634,2.3157,2.5487,2.123,2.3318,12.5585,12.5137,2.4477,2.1021,1.3104,1.396,13.344,14.6558,5.7484,5.3741,9.2217,10.3583,3.5424,2.9982,9.484,10.0305,7.6597,7.301,7.404,7.1894,3.0893,3.6655,1.4403,1.5945,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,544
+desd546,,,M,2.1427,2.2088,0.36072,0.39427,0.77148,0.77604,19.0873,3.5473,3.3105,48.6004,49.0913,16.5091,16.6023,242.2161,241.3842,1.8617,3.1777,2.8485,1.2944,1.1065,20.8601,26.646,1.8519,1.806,3.7901,3.9264,6.4189,7.862,4.7776,4.9511,0.08496,5.265,2.1858,2.7104,0.37206,0.40229,4.6817,4.9454,4.4452,4.5412,1.6909,1.5551,8.2161,7.631,3.5068,3.9856,4.3948,4.5333,5.3886,5.2487,1.601,1.4028,2.0358,2.0178,3.635,3.3412,7.2951,7.4144,1.8605,2.089,6.825,7.1185,11.7478,10.6071,8.8586,8.2622,2.33,2.4574,4.8968,4.8373,1.7088,1.8261,17.8634,18.7841,5.1801,7.057,3.3473,3.8666,1.0366,1.0397,2.4466,2.4552,7.5348,6.9348,14.4409,13.678,5.4531,4.1988,4.453,4.6446,3.5751,3.4183,1.7302,1.5317,4.1182,4.3969,11.6293,11.0284,2.8099,2.8891,2.8719,2.6767,2.4205,2.5835,9.3692,10.3798,2.3996,2.5227,2.2952,2.4642,12.4923,11.3767,1.8814,2.3654,1.2173,1.3309,13.268,14.0161,4.4891,4.786,7.0237,8.4019,4.3393,3.5157,9.4148,9.7964,6.8985,6.3939,6.8234,6.9968,3.4329,3.9344,1.8464,1.9144,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,545
+desd547,66,66,F,2.2635,2.8467,0.30493,0.36202,0.80199,0.82209,16.9803,2.5514,2.4236,41.9809,40.919,14.0509,14.3408,203.4714,198.4048,2.4417,3.2705,3.0496,1.0505,1.1271,23.4086,35.4663,1.4785,1.5513,3.23,3.5573,6.1098,6.7659,4.2758,4.444,0.07065,4.6412,1.8515,2.4775,0.35638,0.35902,3.4711,4.0703,4.0357,4.1261,1.5145,1.2892,10.3432,10.2613,3.0485,3.0054,3.5759,3.6124,4.2131,4.3195,1.6117,1.6922,1.8332,1.7401,3.2079,2.9676,7.6932,7.159,1.756,1.8851,6.0143,6.5865,11.3479,10.8767,7.9894,7.54,2.0704,1.9786,4.3012,4.5869,1.5406,1.5676,17.4693,17.557,5.3698,6.4612,3.5012,3.678,0.93798,0.88176,2.6087,2.0521,7.1218,6.6575,14.1547,14.2256,2.8735,2.8994,4.2997,4.5411,3.0679,2.9985,1.4296,1.2023,3.8863,4.1789,10.5467,10.7974,2.7925,3.1821,2.4017,2.3836,2.0579,2.387,9.2722,10.8637,2.0801,2.1708,2.2995,2.0593,11.769,11.555,1.8503,2.1903,1.0384,1.0655,13.278,13.5656,4.913,4.9431,7.822,9.423,3.9021,3.2833,9.6541,9.7158,7.9654,7.7569,7.057,7.6207,3.0846,2.9888,1.5927,1.5033,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,546
+desd548,76,76,F,2.0414,2.0586,0.35861,0.40487,0.78957,0.81368,17.2506,3.0485,2.9163,45.4266,46.5014,13.3911,13.3742,204.8715,202.3092,2.0642,3.005,2.8334,0.87142,0.80183,31.4798,25.9303,1.4427,1.41,3.4841,3.5774,6.3999,6.5072,4.4063,4.5983,0.08132,4.9096,2.2072,2.4605,0.41347,0.4058,4.2935,5.1149,4.578,4.8613,1.5749,1.507,9.6025,7.8288,2.8271,2.7421,4.479,4.3732,4.4191,3.7368,1.5072,1.5372,2.088,1.9859,3.6456,3.5254,6.5731,6.8529,2.0326,2.0723,6.1465,6.031,10.4233,10.043,7.3667,6.6398,2.0189,2.5249,4.8757,4.8665,1.854,1.94,17.2619,18.8864,4.5494,5.6276,3.7157,3.9073,0.85424,1.2153,2.3197,2.4756,8.3811,7.5175,13.708,12.8021,2.6698,2.9054,4.0845,4.5702,3.9717,3.2132,1.4048,1.5516,4.074,4.6604,10.9155,10.6004,2.618,2.9555,2.8744,2.8236,2.3147,2.4738,8.407,10.309,2.1151,2.3726,2.2051,2.499,11.531,12.0834,1.9245,2.4502,1.2498,1.2704,13.344,14.584,5.3899,5.3741,7.3399,8.3409,3.8803,3.2833,9.197,9.4013,6.212,7.4058,6.406,6.3247,3.3582,3.8183,1.6655,1.9144,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,547
+desd549,68,68,M,1.4925,2.0084,0.41916,0.46989,0.88555,0.93311,20.181,3.4732,3.0724,49.1356,50.5032,17.5141,17.357,254.6872,251.0024,1.2541,3.5467,3.4468,0.48238,0.51484,11.4639,12.7389,1.7338,1.7586,3.8116,3.6544,7.2876,7.6457,5.131,5.4334,0.08763,4.5484,2.271,2.4322,0.42509,0.4242,4.2614,5.5892,4.7343,4.8166,2.1787,1.9521,12.3409,10.4668,3.0736,3.0054,4.5708,4.6042,4.3487,4.5504,1.8746,1.7135,2.518,2.3948,5.8776,4.5553,8.1661,8.1695,2.3828,2.4461,7.0775,6.8361,13.4129,13.7005,8.111,8.0063,2.5795,2.7017,5.0183,5.2206,2.3643,2.1694,23.4151,21.5294,5.92,7.0711,4.4547,4.4773,1.2138,1.2987,2.822,2.7044,9.912,8.6758,16.5941,17.155,2.4932,3.2759,4.3364,4.3414,3.8184,4.5611,1.7599,1.798,4.4756,5.0378,12.8049,12.7487,3.1107,3.6837,2.588,2.5927,2.5551,3.0595,10.5847,13.0556,2.5524,3.1392,2.347,2.5011,12.3701,12.3724,2.0988,2.8636,1.3847,1.3888,16.3566,16.7898,6.6401,6.4053,9.1534,10.535,3.6544,3.5209,11.0173,11.1672,8.4316,8.005,8.9099,8.4177,4.0751,4.3416,1.7003,1.9146,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,548
+desd550,67,67,M,1.9942,3.7549,0.38212,0.4002,0.8276,0.80952,19.522,3.263,2.9527,47.6832,46.7113,15.0437,14.8297,218.3786,211.5953,1.9461,3.2033,2.956,1.3521,0.98324,24.9669,33.0922,1.6242,1.6135,3.5084,3.4336,6.389,6.5824,4.7781,4.8736,0.08606,4.8141,2.1884,2.6944,0.37971,0.40045,3.9664,4.5166,3.6586,3.9836,1.7255,1.5455,10.8511,9.3164,3.4589,3.3702,4.1699,4.3733,4.7629,4.3423,1.6944,1.634,2.1616,2.0207,3.3473,3.0876,7.7255,8.0385,2.0831,2.0366,7.0218,6.5861,11.2832,11.9203,8.7852,7.7195,2.2267,2.4053,4.3593,4.2856,1.5913,1.659,18.3811,19.4868,5.3797,5.9223,3.8506,3.8636,1.1375,1.0764,2.2511,2.3727,7.8204,6.256,14.3784,13.2979,3.0269,3.7023,4.843,5.1101,3.7331,3.2757,1.3825,1.5915,3.705,3.9584,10.1319,9.4536,3.0672,3.2149,2.0511,2.1922,2.3003,2.7626,10.65,11.7391,2.2664,2.434,2.0512,2.3425,11.7584,11.7822,2.2965,2.3233,1.2017,1.3309,13.3726,13.2744,5.1062,5.0925,8.0641,9.0355,4.3743,3.4542,10.2414,9.9727,8.7756,6.9651,7.6691,7.1556,3.4275,3.6503,1.4823,1.7661,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,549
+desd551,65,65,F,1.4362,1.9231,0.32621,0.35247,0.70166,0.63576,15.3855,2.7236,2.7129,38.8014,39.0627,12.0168,12.3273,183.508,189.0925,1.5677,3.0275,2.8601,0.97991,0.59791,11.9006,12.2702,1.5018,1.4039,3.4545,3.6003,6.6309,6.7055,4.3635,4.609,0.07783,4.4944,2.1196,2.2432,0.35284,0.36185,3.8518,4.2866,4.1806,4.2244,1.6695,1.3986,8.9648,7.3366,3.1718,2.9538,3.6452,3.6307,4.4936,4.1837,1.5275,1.2548,1.9935,1.9355,3.3588,2.9356,6.3448,6.2422,2.0401,2.1474,5.8617,5.6647,10.4233,9.8933,7.262,6.3129,2.1234,2.061,4.1491,4.2817,1.7021,1.7001,16.3461,18.131,5.1387,4.9534,3.8145,3.7771,0.90507,0.98826,2.4632,2.4201,7.1681,6.1634,13.0276,13.0122,2.7084,3.3573,3.9142,3.4132,3.341,3.1531,1.6283,1.425,3.8666,4.2633,10.402,10.4845,2.557,2.6702,2.3783,2.394,1.8787,2.6276,8.5765,11.1184,2.0783,2.1833,2.0236,2.1385,10.9663,10.6935,1.6691,1.9742,1.249,1.2561,14.0331,13.7678,4.7791,4.7331,8.0882,8.6658,3.6634,3.4955,10.3849,9.3483,6.8894,6.3731,7.5884,6.3555,3.1585,3.793,1.3501,1.5247,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,550
+desd552,68,68,M,1.7106,1.8055,0.40335,0.43093,0.7155,0.66297,20.4111,3.4584,3.3859,50.1687,49.353,17.2068,17.9163,233.252,229.8856,1.6943,3.0192,2.8601,0.85013,0.91831,21.0366,20.6963,1.7943,1.7979,3.8725,4.0915,7.4638,7.8167,5.044,5.4334,0.08971,5.3587,2.4037,2.7782,0.4332,0.44196,5.2218,5.7879,4.6538,4.607,2.1383,1.9521,12.1829,11.3323,3.5938,3.5281,4.9359,4.7696,4.7629,4.612,1.5181,1.3674,2.088,2.3582,5.8776,3.8123,7.5488,7.7173,2.1746,2.2216,7.3182,6.7376,12.3948,10.9412,8.6267,8.0205,2.586,2.6735,5.5249,5.1372,2.0461,2.1738,21.6581,22.5254,6.7079,6.9844,4.0039,4.2557,1.4549,1.3124,3.0988,3.0303,8.6872,8.3647,16.7309,13.9946,2.4779,3.1976,4.2342,4.5411,3.6886,3.9377,1.8616,1.7809,4.0692,4.7807,12.6168,11.8877,2.7125,2.9435,2.6001,2.749,2.4819,2.4877,12.8035,12.8633,2.5064,2.8106,2.4697,2.8207,14.6459,14.3597,1.841,2.0321,1.4368,1.3923,16.9133,17.4915,5.6498,6.0188,9.6912,9.0232,4.1829,3.1072,13.3127,13.0103,8.3095,7.5535,8.5962,7.7869,4.2226,4.3634,1.5361,1.6912,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,551
+desd553,71,71,M,1.9094,1.759,0.35086,0.37769,0.69746,0.59853,18.339,2.5722,2.4323,47.6643,48.7275,14.8152,14.7204,203.5591,202.0467,1.9452,2.9427,2.6557,1.3815,1.3385,31.295,32.6737,1.5987,1.5949,3.2272,3.5573,6.1374,6.3966,4.3656,4.5025,0.09045,5.412,2.3957,2.8167,0.33936,0.32724,3.6504,4.3647,3.6922,3.9845,1.5988,1.3642,10.0845,8.2846,3.0612,3.191,3.9927,4.1142,4.2242,4.2415,1.4331,1.2463,2.1351,2.028,3.3802,3.222,6.2382,5.5941,1.681,1.7072,6.0598,5.8975,10.2109,9.187,7.4049,7.2396,2.0092,2.1125,4.408,4.4569,1.406,1.458,17.2701,17.3434,4.4835,5.6198,3.3806,3.3321,1.0125,1.0295,2.3241,2.3519,7.5529,6.9119,13.7816,11.6314,2.4654,3.3288,4.1388,4.2241,3.2295,3.5025,1.4456,1.4233,3.8666,4.3925,10.444,10.1122,2.5148,2.7969,2.1693,2.2281,2.1039,2.4116,10.3066,11.2494,2.0589,1.9809,1.809,2.0408,11.3434,12.0998,1.6137,2.1993,0.92721,1.0054,12.8693,13.0842,4.8345,4.7072,8.1754,8.4831,3.5488,3.4265,10.8439,9.7265,6.4901,7.1108,6.8441,7.1399,3.2533,3.5039,1.2917,1.3618,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,552
+desd554,53,53,F,1.2087,0.73524,0.28531,0.32098,0.60361,0.56468,15.1807,2.3884,2.224,24.3004,14.2174,12.8008,12.4571,168.1404,169.0711,1.2254,2.4818,2.4348,1.4247,1.5123,14.503,18.5578,1.3283,1.3074,3.1335,3.0497,5.5578,5.6835,3.9552,4.2351,0.07933,4.3435,1.8052,0.00144,0.32483,0.32491,3.0647,3.2967,3.3117,3.5351,1.2644,1.0793,8.7539,7.3169,3.038,2.7925,3.5447,3.3553,4.4469,3.6052,1.279,1.0909,1.665,1.4748,3.2655,2.5954,6.085,5.6597,1.5262,1.6765,5.4517,5.8648,9.211,8.829,7.4337,6.8854,1.6103,1.9178,3.5388,3.7306,1.2801,1.2859,15.6573,15.8776,4.6532,4.8572,2.7665,3.0824,0.89653,0.93037,2.2617,1.779,5.4504,5.0106,12.1545,10.152,2.6637,2.5224,3.9017,3.7844,2.971,2.557,1.1581,1.1783,2.9264,3.4843,7.7055,8.2426,2.4601,2.5272,2.0164,1.9261,1.8895,2.2844,8.2392,9.9004,1.9447,1.9458,1.8162,2.0026,12.156,10.3883,1.594,2.0657,1.0216,1.0804,13.9377,13.2611,4.4946,4.4892,6.6345,7.8777,3.7534,2.776,8.1985,1.7797,6.2459,5.6422,5.7073,5.8408,3.1378,2.9625,1.3372,1.4745,,24,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,553
+desd555,77,77,F,1.9673,1.548,0.37638,0.43857,0.88855,0.85904,19.2653,3.5276,2.9424,46.3654,45.4929,16.3949,16.2485,237.8669,243.7703,1.5056,3.6539,3.2341,1.0633,1.1065,15.3522,18.9404,1.6568,1.6677,4.3835,4.534,7.7925,8.0582,4.8726,5.0683,0.09255,4.7656,2.1997,2.5881,0.4116,0.395,4.0849,5.1149,4.1727,4.5632,1.9022,1.7547,12.5747,10.6107,3.5938,3.144,4.0322,4.5149,5.1805,5.1473,1.9619,1.7173,1.9715,2.1815,4.1304,3.6149,8.1211,8.3258,2.2986,2.2471,7.6726,6.837,13.3156,13.6062,8.5558,8.4392,2.179,2.7616,4.8032,5.1549,1.9492,1.917,19.0468,19.4487,5.8744,7.0934,4.3741,4.6011,1.1528,1.1164,2.75,2.8608,8.6373,7.7693,16.4933,17.155,2.9033,3.2917,4.6395,4.8176,3.7221,3.4289,1.5949,1.7745,4.4756,4.7566,11.9149,11.9956,3.188,3.4088,2.3587,2.2643,2.2901,2.1323,10.7699,11.9197,2.3909,2.7234,2.3217,2.408,13.2599,12.6607,2.0029,1.7612,1.2701,1.3407,16.623,17.1693,5.8884,5.5968,8.8186,10.4647,4.013,4.0134,11.2587,11.0553,9.0556,8.005,9.3517,9.3224,3.8575,4.0113,1.5639,1.4363,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,554
+desd556,68,68,F,1.8705,1.9084,0.30692,0.32252,0.60361,0.68262,14.6382,2.3884,2.2576,36.0362,36.3908,11.7082,12.7184,184.6449,189.0925,2.1946,2.6271,2.654,1.6199,0.859,31.5216,28.677,1.5685,1.3961,2.9829,2.8971,5.785,6.1208,3.9613,4.17,0.0805,4.5072,1.6783,2.0897,0.30289,0.31457,3.2578,3.9392,3.6051,3.6699,1.4226,1.3265,8.1557,7.6056,3.0625,2.9704,3.5839,3.3405,4.6058,4.7694,1.1403,1.3182,1.5209,1.569,3.3098,2.8601,5.6155,5.9773,1.6173,1.6831,5.6379,5.3117,8.946,9.0866,7.4372,6.7015,1.7858,2.1191,3.7044,3.9956,1.3704,1.4512,15.2181,15.6616,4.3769,4.5397,3.0517,3.4097,0.94034,0.9423,2.1893,2.2815,6.4922,5.9028,11.8959,10.7707,2.817,2.9729,3.5584,3.7928,2.7926,2.3332,1.2868,1.2794,3.2327,3.5265,8.6154,8.0475,2.3909,2.7152,2.2297,2.3411,1.7172,1.6317,9.8788,9.9218,1.9076,2.0597,1.9614,2.1411,11.0423,10.0129,1.3384,1.5016,1.0597,1.0794,12.738,12.0324,4.4519,4.6264,6.8963,7.6723,3.9158,2.789,8.0848,8.6869,4.9112,5.7462,6.3232,5.9117,2.8636,3.535,1.2877,1.1861,,24,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,555
+desd557,66,66,F,1.1873,1.3598,0.27575,0.3229,0.53111,0.50331,16.2793,2.2485,2.1284,37.2891,31.6077,13.84,14.047,175.9135,173.5885,1.0692,2.4553,1.3047,0.79701,0.59913,10.3441,12.636,1.4893,1.6013,2.6449,2.3521,5.5578,5.8946,4.2851,4.486,0.08783,3.9762,1.8249,2.0458,0.28156,0.28347,4.2767,4.5078,3.0836,3.0507,1.6854,1.258,8.457,6.4981,3.0625,2.9538,3.7112,4.1679,4.5105,4.2772,1.0283,1.0787,1.6243,1.569,3.8335,3.4387,5.3857,4.9533,1.8818,0.90295,5.988,5.6047,8.7021,7.7991,7.6609,6.8315,0.67733,2.1752,4.139,4.4628,1.6433,0.05335,16.3678,17.6678,4.582,3.9079,3.449,3.3071,0.94853,1.063,2.467,2.1921,7.0396,6.4198,10.4488,12.1717,3.1107,3.5537,3.9359,3.6751,3.166,2.5717,1.2066,1.3582,3.3332,3.752,9.4991,9.1319,2.4834,2.6232,1.8725,1.9992,1.9813,2.2844,8.5484,9.4535,1.8465,2.3133,1.6124,1.9545,11.478,11.7764,1.6023,1.8391,0.43488,0.95781,13.8721,12.5684,5.1467,4.9642,6.7592,8.1054,4.0843,3.6446,9.1265,9.2085,5.2529,5.4578,5.2322,4.4876,3.2361,3.2693,1.3803,1.3774,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,556
+desd558,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,557
+desd559,43,43,M,1.1573,2.0007,0.34404,0.34666,0.78877,0.69324,17.1094,2.5342,2.2943,41.0361,42.157,15.8163,15.7577,232.1245,219.7046,1.0312,3.108,2.8485,0.47469,0.55654,10.2828,10.6779,1.5605,1.5627,3.2579,3.3626,6.1882,6.8479,4.2468,4.3579,0.07149,4.2492,2.0996,2.4153,0.34336,0.34954,4.1239,4.1603,4.025,4.1024,1.7392,1.4939,9.0344,8.1893,2.8749,3.0912,4.2545,4.3633,4.4695,4.3683,1.4653,1.256,1.9982,1.7496,3.5985,3.1623,6.5852,6.6309,1.9406,1.9966,6.2286,6.3134,10.0847,10.455,7.7851,7.335,2.0395,2.5188,4.8096,4.4466,1.6212,1.6383,17.2194,17.3969,4.56,5.5222,3.7438,3.5533,1.3088,1.0262,2.9837,2.7079,6.932,6.5707,12.4151,12.0916,2.9318,3.788,4.1184,4.2907,3.614,3.2505,1.4292,1.505,3.6334,3.8922,9.5312,10.4343,2.6174,2.7096,2.3943,2.2809,2.3196,2.4359,9.3692,10.6313,2.0373,2.474,2.0316,2.174,11.0016,11.5614,1.8179,1.8994,1.2068,1.2404,14.2447,13.7678,5.184,4.8506,7.8555,8.5434,3.9499,3.2804,10.6959,10.1041,6.8885,6.0908,6.5402,7.0134,3.2317,3.4662,1.5101,1.529,,25,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,558
+desd560,68,68,F,0.93909,1.1991,0.3775,0.45212,0.75901,0.72415,18.5757,2.7433,2.7248,44.0934,42.9721,15.0423,14.7444,212.2345,207.636,0.85913,3.2479,2.83,0.41256,0.37085,8.1124,9.3953,1.4184,1.4848,3.548,3.6411,6.6087,7.1669,4.6503,5.0074,0.0791,4.7016,2.2166,2.386,0.41897,0.40369,3.8597,4.4758,3.7836,3.9292,1.909,1.6574,8.8971,8.4172,3.3301,3.1403,4.2217,4.3633,3.9233,4.5504,1.5278,1.4774,1.9782,1.9114,3.6771,3.4071,7.1137,7.1017,2.1663,2.3043,6.4854,6.3159,11.4941,11.318,8.01,7.1949,2.2752,2.4227,4.4352,4.4754,1.7839,1.8187,17.7483,18.5287,4.7603,5.6511,4.0677,4.3252,0.8944,0.78936,2.344,2.4963,7.8167,6.6459,13.8112,13.6718,2.796,3.2542,4.4075,4.2718,3.1857,3.2242,1.4047,1.502,3.8557,4.0705,10.0389,9.5413,2.7598,2.9231,2.151,2.2301,2.56,2.6107,11.0637,11.7131,2.309,2.6967,1.9582,2.2568,12.0586,11.6796,2.0533,2.1929,1.2176,1.3382,14.225,15.3711,5.4783,5.1257,8.3019,9.2047,3.6249,3.2554,10.5532,11.2121,7.655,7.1143,8.1214,7.7768,3.1875,3.4379,1.4087,1.7661,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,559
+desd561,,,F,0.96391,1.9683,0.34421,0.35194,0.75465,0.67601,18.3779,2.4047,2.3463,46.1595,45.6187,16.2523,16.3434,231.9271,226.3817,0.7582,3.0437,2.8438,0.46074,0.45813,9.5205,9.9571,1.727,1.6711,3.5546,3.7125,6.2951,6.7694,4.552,4.7913,0.07685,4.582,2.0817,2.4679,0.34977,0.35074,3.9571,4.2776,3.8702,3.8531,1.748,1.5045,9.2652,8.8278,2.4799,2.636,3.5289,4.2033,3.7056,3.7832,1.5278,1.3252,1.9544,1.8292,3.9159,3.7623,8.1592,7.7822,1.9057,1.9973,6.8316,6.0308,12.0911,11.3466,7.2877,6.1539,2.2145,2.3684,4.5105,4.626,1.6664,1.668,18.3215,18.6762,4.5062,5.7645,3.5735,3.9422,1.0744,0.96672,2.5254,2.3596,7.1152,6.583,14.6369,14.9929,2.6968,3.0834,3.6688,3.6689,3.5678,3.0969,1.4826,1.3536,3.9715,4.4008,10.9296,10.9054,2.8815,3.0333,2.0891,2.0253,1.9221,2.144,8.9768,10.682,2.1961,2.4171,1.9069,2.0384,11.4033,11.7937,1.6696,1.8033,1.2626,1.2036,14.1397,15.1137,4.8783,4.7759,7.5447,8.3501,3.7189,3.5915,9.5773,9.9311,7.5386,7.2878,7.5888,7.7727,3.5721,3.6062,1.2649,1.3736,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,560
+desd562,71,71,M,2.0417,1.6804,0.33936,0.38838,0.68032,0.70404,18.8952,2.5722,2.5622,47.2982,46.7113,14.8152,15.6924,224.9161,220.7889,1.576,2.8547,2.701,0.9213,0.8374,16.9221,21.7893,1.5997,1.5956,3.2359,3.368,6.4129,6.6236,4.6514,4.8807,0.08504,5.3587,2.3011,2.6567,0.36677,0.3396,3.987,4.1443,4.1555,4.193,1.6668,1.463,10.3634,9.8332,3.0608,2.787,3.988,4.3316,4.2242,3.9231,1.3386,1.1769,2.001,1.8766,3.7518,3.7458,6.6888,6.2417,1.9341,1.969,5.6115,4.8611,11.4592,9.954,7.5987,7.2232,2.1145,2.2977,4.2652,4.4422,1.5356,1.6189,18.6709,19.4487,4.8922,5.5199,3.6635,3.7465,1.0455,0.97938,2.3642,2.1904,7.1759,6.5146,14.348,13.5824,2.6562,2.892,3.5564,3.7503,3.0161,3.215,1.4842,1.4402,3.7818,4.4772,10.2469,10.3716,2.66,2.8985,2.482,2.156,2.4625,2.224,9.9962,11.6036,2.3103,2.5075,2.2014,2.2493,12.7629,12.5735,1.9074,1.7221,1.1388,1.2324,15.0862,14.3131,5.0316,4.9208,8.554,8.9686,3.9919,3.6118,10.3903,9.5733,7.9135,6.722,6.4587,7.1199,3.4653,4.2785,1.5229,1.54,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,561
+desd563,74,74,M,2.2559,1.8026,0.33312,0.37163,0.76392,0.83577,18.3977,2.5722,2.2936,44.3483,44.0482,14.1985,14.2885,196.2657,193.8382,1.7484,3.3957,3.111,0.65389,0.39771,11.2721,10.2416,1.4111,1.4019,3.2159,3.2616,6.0473,6.7811,4.2391,4.4261,0.06574,4.569,1.9523,2.3483,0.33985,0.34954,3.6289,3.9826,3.5918,3.7666,1.4902,1.3681,9.5403,9.431,2.8537,2.8522,3.44,3.2949,4.3022,4.0143,1.468,1.5651,1.7472,1.7378,3.3098,3.1734,6.4935,6.5746,1.7364,1.6632,6.3031,5.7301,9.8271,10.0806,7.143,6.9145,1.9371,2.1584,4.6835,4.8029,1.4028,1.4819,15.7914,15.6616,5.0421,5.896,3.0127,3.3215,0.93959,1.0072,2.364,2.3455,6.9332,6.2481,12.0458,12.6747,2.4105,3.1963,3.967,3.9987,3.2383,2.8353,1.3361,1.4323,3.5659,3.8357,9.6531,9.925,2.516,2.7157,2.0792,1.9738,2.3646,2.5671,11.7534,11.7131,1.9867,2.1861,1.9188,1.984,10.3294,11.5328,1.7452,1.8216,0.99225,1.0546,13.1769,12.8537,4.9908,5.2071,8.2692,10.0223,3.7419,3.151,9.0405,10.532,6.6551,6.8159,6.8173,6.8255,3.2361,3.4622,1.369,1.279,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,562
+desd564,,,F,2.1892,1.8484,0.29367,0.37155,0.73701,0.73047,16.589,2.1408,2.1251,40.1162,40.3567,12.5805,13.1133,184.7169,180.9211,2.2128,3.4557,3.0802,2.1389,2.2962,31.0836,32.6737,1.3987,1.4067,2.6102,2.3521,6.3181,6.0733,4.2293,4.3463,0.0592,4.2206,2.0658,2.3524,0.32458,0.33122,2.7234,3.5612,3.8416,4.2509,1.3526,1.244,7.3412,7.1535,3.3005,3.2724,3.507,3.5732,4.4286,3.5719,1.2358,1.4211,1.7241,1.5836,3.3157,2.9772,5.9779,6.4238,1.6718,0.77512,5.7857,5.5447,8.2424,9.3132,7.151,6.7045,0.07,1.932,3.8319,3.8452,1.3857,0.05335,14.5359,15.7892,4.493,6.0224,1.529,3.1974,0.96823,1.0146,2.1808,2.4552,6.357,5.5465,10.9055,10.7707,2.8925,3.1951,3.7932,3.817,3.2383,2.7994,1.2405,1.1783,3.0816,3.4659,8.0933,7.2975,1.593,2.5452,2.2248,2.3482,2.0571,1.9753,8.2392,9.8615,1.932,2.3203,2.0061,2.1163,10.2695,10.6697,2.0173,1.7249,0.81661,1.0415,13.6378,12.462,4.2338,4.2845,6.7642,6.9655,3.8052,3.2754,9.1446,8.7234,5.98,6.7168,6.1222,6.5267,3.2507,3.0018,1.2979,1.3732,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,563
+desd565,78,78,F,1.8912,1.2451,0.35875,0.41846,0.74474,0.66297,18.1118,3.263,3.0353,45.1406,44.7829,14.1082,14.9131,196.2657,191.9704,1.5588,2.9796,2.5551,0.67891,0.85492,16.3604,20.2561,1.63,1.6671,3.7748,3.6981,6.8344,7.072,4.5574,4.7107,0.07821,4.447,2.0089,2.5824,0.37188,0.34498,3.8217,4.7194,4.1616,4.442,1.925,1.612,8.9774,7.0779,3.1133,3.0593,3.6643,4.2033,5.0257,4.3198,1.407,1.4181,2.0912,1.9395,3.5937,3.5761,6.3707,6.4863,2.0422,2.1293,6.3722,6.2477,9.3731,9.9192,7.4372,7.5524,2.2271,2.3889,4.139,4.5229,1.861,1.8577,16.6427,17.8174,4.6664,5.9481,4.0725,4.2163,1.2371,1.2911,2.5289,2.4799,8.0629,7.2221,12.312,12.8253,2.9419,3.3899,3.7753,4.0677,3.7103,3.0452,1.5948,1.5883,3.5982,4.1078,9.8266,10.0677,2.5036,2.8487,2.1817,2.4319,2.0394,2.1136,9.9235,10.6629,2.3214,2.4762,1.9957,2.2002,11.9822,11.0473,1.8222,1.9516,1.2038,1.2452,13.516,13.5868,4.4891,4.5162,7.1464,7.7732,4.5789,3.4312,8.8843,9.1825,6.72,6.9201,7.7307,6.6556,3.6254,3.9592,1.512,1.467,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,564
+desd566,85,85,F,2.2431,2.3713,0.24275,0.27429,0.51139,0.50331,16.2793,1.6327,2.0219,44.8015,44.5662,14.3392,14.9923,193.768,202.1358,2.034,2.4966,2.5125,0.80942,0.97396,23.0969,24.6515,1.3988,1.4771,2.7027,3.0212,6.0014,6.525,4.1327,4.3385,0.08302,4.7614,2.231,2.4775,0.27894,0.28174,4.133,4.4639,3.7369,3.7307,1.6327,1.3625,7.5111,7.9235,3.1958,2.883,4.0617,3.7099,4.1096,4.1712,0.98201,0.39954,1.8693,1.7489,3.7518,3.4058,4.8245,5.2277,2.0307,2.0723,5.2713,4.8611,5.5287,7.9361,7.3984,7.2088,2.2263,2.2274,4.5653,4.4226,1.8236,1.9029,18.0849,17.9676,4.6476,5.3886,3.6362,3.6508,1.0472,0.95322,2.465,2.5666,7.4214,6.8184,8.7517,10.631,2.6636,3.0388,3.5584,4.0298,2.8835,2.889,1.4629,1.1636,3.3773,4.1248,8.5796,9.983,2.3769,2.5634,2.1295,2.082,1.859,1.9119,10.741,12.1633,2.0391,2.3422,1.7814,2.0895,11.4383,11.0828,1.4323,1.4332,1.1891,1.2125,14.878,13.7674,4.5863,4.7418,6.0292,6.846,4.6808,3.3708,9.2968,9.024,6.2211,5.6128,5.3235,2.5612,2.9832,3.4214,1.1849,1.3227,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,565
+desd567,63,63,F,1.3169,1.3945,0.33749,0.38334,0.76722,0.74775,14.9542,2.8802,2.8383,41.6372,42.8081,12.6874,13.5987,193.2219,188.816,1.0877,2.7104,2.7014,0.64781,0.52592,10.9448,13.5929,1.2453,1.2494,3.3993,3.5782,6.1141,6.2609,3.8011,3.9321,0.07562,4.0424,2.0418,2.5436,0.38116,0.38098,4.0974,4.7429,3.6892,3.8233,1.9022,1.5216,9.9299,8.1491,2.8804,3.0648,3.9105,3.9781,4.0174,4.2491,1.6425,1.491,1.8491,1.9553,3.8763,3.0808,6.3183,6.0491,2.1371,2.0395,5.7045,5.3593,9.375,8.9153,7.7077,7.5597,2.2463,2.4574,4.3037,3.9037,1.7953,1.7602,16.9,16.7287,4.5494,5.5514,3.8992,4.074,1.0656,1.0929,2.4975,2.5262,8.8146,7.5771,12.476,12.0891,2.3938,2.7148,3.9501,4.0298,3.3205,3.8938,1.5453,1.5883,3.8343,4.0792,9.6819,9.8832,2.6493,2.9404,2.1191,1.9116,2.2397,2.141,8.6664,10.7917,2.421,2.6582,1.9496,2.0384,11.1298,11.759,1.8156,1.8896,1.0802,1.1133,14.2328,13.6172,5.4872,5.1639,7.6044,8.2609,3.0572,3.2476,9.0863,8.7986,7.2082,6.628,7.1644,7.7833,3.4242,3.8172,1.3806,1.454,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,566
+desd568,70,70,M,1.0263,1.9964,0.37286,0.41664,0.7548,0.74553,18.7857,2.8948,2.7928,43.2213,42.7181,14.8142,15.2945,208.0855,207.7314,1.0466,3.0485,2.8025,0.47469,0.41701,7.0569,11.0313,1.4046,1.4067,3.6797,3.6962,6.3437,6.5824,4.6207,4.7553,0.07952,4.3915,2.0977,2.2749,0.36306,0.37297,3.8566,4.389,3.7596,3.9462,1.6695,1.4743,10.0061,8.0967,2.2066,2.0088,3.5958,3.5359,4.0272,3.7566,1.4898,1.4953,1.9548,1.8292,3.3082,3.2293,7.1238,6.5483,1.9686,1.8537,6.349,6.2781,11.4667,9.7698,6.5453,5.6169,2.1145,2.2542,4.491,4.626,1.6742,1.7025,16.7745,19.1102,5.3553,5.8746,3.5903,3.9265,1.0275,1.358,2.374,2.393,6.8009,6.4198,13.1705,12.6184,2.4613,2.9054,3.863,3.7827,3.4565,3.4893,1.4944,1.3463,3.509,4.0438,8.9099,9.9817,2.56,2.7641,1.9964,1.9991,1.6992,2.1557,9.205,10.4789,2.1817,2.4222,1.8506,2.0488,11.8479,11.3461,1.6063,1.5331,1.033,1.1325,12.2098,12.5322,4.5863,4.6141,7.077,7.6971,3.977,3.4805,9.4686,9.0897,6.4901,6.1527,7.2488,6.2556,3.4733,3.6533,1.2118,1.3227,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,567
+desd569,60,60,F,0.97219,2.0565,0.38968,0.46912,0.88409,0.90897,17.1079,2.7122,2.818,46.1005,44.2557,14.4586,15.0453,247.6648,242.1665,1.6012,3.2868,3.0577,0.57306,0.49363,16.018,16.0797,1.6668,1.6986,3.9642,4.0556,7.3168,7.7516,4.6086,4.8599,0.07566,4.8149,2.3699,2.584,0.40908,0.41743,4.0944,5.0062,3.946,3.8279,1.9409,1.8866,9.8139,8.3848,3.233,3.4592,4.0035,3.4424,3.9233,4.5253,1.7773,1.77,1.895,1.8338,3.8851,3.719,7.5272,7.6172,2.1663,2.2817,7.0583,6.3827,12.5056,12.1495,8.2483,7.7564,2.4307,2.8087,4.6992,4.6702,1.9521,2.0486,19.5505,19.7907,5.1827,5.4933,4.3857,4.4896,0.96357,1.036,2.3791,2.5647,7.9915,6.6172,14.9277,14.0223,3.3883,3.7622,4.4089,4.3812,3.1581,3.2747,1.6172,1.7989,4.2673,4.7365,10.4931,12.2321,2.8168,3.0593,2.4071,2.3405,2.3606,2.2689,9.3578,10.7959,2.5147,2.9716,2.126,2.4102,11.6364,11.3434,2.1452,1.8219,1.3419,1.4499,14.4163,14.177,5.3901,6.1416,7.4083,8.1767,3.8625,3.657,10.1514,11.0443,8.0635,7.8519,8.5115,8.2014,3.7113,3.8429,1.421,1.5846,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,568
+desd570,83,83,F,1.303,1.9365,0.32134,0.36515,0.68021,0.70712,16.4883,2.1957,2.1076,44.5808,45.0794,14.3392,14.1809,223.5583,230.7701,1.1402,2.7353,2.4134,0.45832,0.63062,11.6909,13.9922,1.6961,1.7106,2.877,2.8304,6.3211,6.5938,4.5341,4.7758,0.08328,4.3013,2.1958,2.3454,0.35576,0.3396,3.9558,4.0768,3.8024,4.0645,1.5703,1.3981,9.1413,7.9235,2.4034,2.1827,3.6395,3.6814,3.5655,3.3427,1.4199,1.4257,1.694,1.7789,3.1505,3.1181,6.9291,6.775,1.7687,1.6396,5.0955,4.9819,9.6295,10.2714,6.3538,5.6111,2.1097,2.2157,4.491,4.7098,1.5491,1.618,14.8858,14.7604,4.149,4.9474,3.1815,3.3074,1.1105,0.84283,2.7387,2.0936,6.2218,5.8155,12.0451,12.4296,2.1773,2.8097,3.2993,3.8015,2.8766,2.889,1.2752,1.4634,3.7818,3.884,9.1945,9.0322,2.5645,2.826,2.0447,2.2063,2.1488,2.2148,10.0499,11.0569,2.0896,2.4597,1.8653,2.1965,10.4564,10.72,1.9087,1.8612,1.1289,1.1,11.5543,11.627,4.612,4.542,8.1414,8.823,3.3671,3.3862,9.9435,10.3875,6.605,6.9313,6.7398,6.4808,2.8631,3.7364,1.4195,1.4652,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,569
+desd571,66,66,M,1.4915,2.2987,0.41158,0.42549,0.82482,0.79891,15.6103,2.7826,2.5286,27.9343,24.6806,11.4282,12.2296,221.5317,216.5383,1.5266,3.2033,3.0526,0.64456,0.55086,9.9975,12.3254,1.5032,1.5031,3.548,3.5807,5.7788,6.0637,4.3635,4.609,0.07937,4.6274,1.8793,0,0.36481,0.37418,4.1037,5.0827,4.174,4.4546,1.7374,1.5125,11.3973,9.2691,2.9551,2.5994,3.6842,4.2802,4.8828,4.1815,1.7921,1.6036,1.8574,1.8315,3.547,3.4402,7.5102,7.1633,1.9996,2.0001,6.9008,6.9858,11.1879,10.4543,7.714,7.1609,2.2044,2.324,4.9316,4.9652,1.7396,1.7602,17.6072,17.2788,5.3311,6.1117,3.6354,3.9717,1.1282,0.98038,2.3336,2.1709,7.7854,6.7189,14.1004,12.5885,3.3382,3.7749,4.3676,4.2388,2.944,2.7283,1.3825,1.3862,3.6767,3.8467,10.5986,9.7879,3.0955,3.1923,2.2915,2.4505,1.8438,2.387,9.9349,10.7906,2.3157,2.4751,2.0277,2.2819,11.4383,12.6192,1.6802,2.08,1.1179,1.1536,14.8581,15.4411,4.955,4.8412,7.8793,8.2928,4.755,4.1028,11.2976,11.1783,7.1474,7.1021,8.383,7.7869,2.9482,3.42,1.3584,1.5497,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,570
+desd572,59,59,M,1.8962,1.9902,0.49537,0.54746,1.2526,1.1002,18.5915,3.856,3.6104,51.8561,49.4891,16.6983,17.4471,262.7638,248.9335,3.0552,3.7482,3.4711,0.78974,1.2937,34.3032,32.1618,1.8024,1.7673,3.9383,4.1041,7.3263,8.0711,5.0559,5.3377,0.0834,5.1119,2.4159,2.8418,0.41998,0.4378,6.2992,6.5134,4.7486,4.9004,2.0347,1.9205,12.7054,10.6247,3.2672,3.6169,5.3782,4.6133,4.6793,5.2218,2.0533,1.9971,2.4661,2.5455,4.3098,4.015,8.6704,7.9513,2.1982,2.2869,8.2375,7.2262,13.5076,12.7422,7.9634,7.6174,2.5803,2.6731,5.7806,5.3445,2.0182,2.2306,21.7039,21.2525,6.8947,6.6668,4.2985,4.5667,1.5299,1.2063,3.6503,2.8933,8.9508,7.6754,16.5941,16.1575,3.2839,4.0413,4.2578,4.6073,3.9768,4.0353,1.7436,1.7511,4.3861,4.9801,10.4931,10.9152,3.637,3.9265,2.8884,2.5772,3.2482,3.0595,10.4511,12.7437,2.5801,2.7361,2.519,2.704,13.0814,14.6171,2.25,2.7258,1.3886,1.3833,16.9133,15.4939,8.6997,6.0863,9.3326,11.8785,4.7519,3.8453,12.6491,12.081,9.9739,8.0384,9.5096,9.5514,4.3531,4.3416,1.9393,2.0174,,27,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,571
+desd573,,,F,2.4702,1.8463,0.27619,0.32243,0.73957,0.65465,14.9737,2.0987,2.2076,39.7329,39.5897,12.8008,13.7952,155.842,156.4949,2.2484,3.2673,2.7243,1.7219,2.2641,32.5772,46.0499,1.2833,1.2696,2.877,3.0212,5.6653,5.6381,4.0239,4.1851,0.06174,3.9853,1.9304,2.3657,0.30397,0.32726,3.2047,3.8966,3.6817,3.8616,1.2616,1.1283,7.942,7.634,2.7214,2.4377,3.507,3.7464,3.9572,3.9218,1.2694,1.3803,1.8194,1.7217,3.2384,2.8601,6.2469,6.4238,1.5676,1.5903,5.5048,5.6584,8.7966,8.8112,6.6618,5.4669,1.7172,2.0075,3.8898,3.7621,1.3728,1.4253,15.3492,15.039,4.3254,4.638,2.9884,2.9419,1.0275,1.0809,2.3593,2.4855,6.4158,5.7327,11.6879,10.2645,2.4921,2.8955,3.3378,3.5527,3.3883,3.1208,1.2868,1.3388,3.0891,3.3874,9.0041,8.282,2.5252,2.6542,2.1383,2.1779,2.0023,2.0428,7.6447,8.9628,1.8322,1.8238,1.8828,2.1471,9.7711,9.0197,1.6954,1.635,0.93137,0.97308,12.5938,11.7842,4.6043,4.5881,6.3379,7.378,3.6263,2.8583,8.0575,8.4428,6.839,5.4729,6.8277,7.0087,3.2507,3.3288,1.4512,1.0805,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,572
+desd574,83,83,F,1.1324,1.3928,0.30571,0.32521,0.76212,0.7152,15.4763,2.2033,2.0586,33.5806,31.3093,12.8008,12.532,203.8109,201.3279,1.1857,3.067,2.83,0.42811,0.4617,10.7726,13.8198,1.2771,1.2439,2.742,2.9976,5.7702,5.8176,3.8355,3.9699,0.06699,3.6568,1.89,2.1901,0.30745,0.31193,3.222,3.5295,3.3701,3.5495,1.5597,1.3371,8.2003,8.2347,1.9566,2.0414,3.5019,3.4708,4.2997,3.8266,1.4808,1.3406,1.6169,1.7285,3.1757,2.6873,6.085,6.0492,1.7222,1.7244,5.3595,5.8648,9.7293,9.4931,6.0729,5.6169,1.8193,2.0345,3.8303,4.1336,1.3389,1.4058,14.8866,14.7416,4.5609,5.2227,3.2048,3.4158,1.0149,0.95079,2.3593,2.1558,6.4004,5.5572,11.9962,11.3461,2.1184,2.9338,3.3293,3.2582,2.7786,3.153,1.2641,1.3064,3.5868,3.794,8.7866,8.9244,2.403,2.7285,1.8642,1.7371,2.0023,2.0021,7.6447,9.5154,1.9447,1.9402,1.6437,1.9804,9.7905,10.5862,1.6444,1.6423,0.9635,0.98202,11.5987,11.8188,4.612,4.5881,7.2679,7.7181,3.6081,2.9298,9.1446,9.4275,6.2459,6.4189,6.2694,6.5267,3.018,2.9795,1.2221,1.1861,,26,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,573
+desd575,63,63,F,1.7016,1.6037,0.34508,0.35654,0.64699,0.6525,19.5657,2.6894,2.1533,48.6965,47.8809,15.6718,15.6548,209.6607,198.8349,1.6254,2.6384,2.654,1.277,0.85539,16.8999,14.3974,1.5907,1.5154,2.9734,3.0408,5.5724,6.3151,4.3976,4.5994,0.07252,5.4473,2.2979,2.8142,0.35155,0.33917,4.1125,4.3576,3.2609,3.8048,1.6128,1.2537,9.1914,9.7234,2.4683,2.3553,3.8943,4.4165,3.8567,3.3427,1.2982,1.3281,1.8713,1.841,3.443,3.3108,6.9342,6.7579,1.7976,1.8242,5.688,5.3327,11.0775,9.5404,6.9996,6.3769,1.9966,2.067,4.4169,4.5033,1.406,1.5183,16.1624,16.7384,3.9228,5.5329,3.3972,3.3636,1.1405,1.2119,2.6776,2.6288,6.7768,6.5859,13.43,12.4403,2.3112,2.5508,3.5847,3.5685,2.6471,2.9683,1.4296,1.4422,3.7653,4.0047,9.1945,10.9225,2.8073,2.898,2.199,2.4505,2.1988,2.4738,11.0103,12.0485,1.8586,2.1719,1.9774,2.2385,11.0384,11.6814,1.9087,2.1021,0.99556,1.0193,12.6543,13.483,5.184,4.608,8.1332,9.4317,3.4558,2.8296,9.7767,10.3875,6.8112,6.9033,6.8277,6.6647,3.2086,3.5457,1.4169,1.381,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,574
+desd576,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,575
+desd577,66,66,M,0.91329,1.714,0.3977,0.44415,0.92482,0.862,18.6779,3.1158,2.9302,45.3326,46.1125,15.0445,15.1504,237.8669,235.5834,0.78724,3.4963,3.1564,0.40118,0.37161,7.7344,7.1916,1.727,1.7194,3.7745,3.8764,7.7732,7.9295,4.7272,5.2915,0.07484,4.467,2.2621,2.5807,0.38576,0.37701,3.9767,4.4773,3.8644,3.9875,1.6453,1.5719,9.4246,8.957,3.6417,3.3652,3.8236,4.1588,5.2421,5.1469,1.7414,1.7317,1.9338,2.0205,3.6165,3.4426,7.0668,6.7579,1.9964,2.1019,6.0577,6.6269,11.0364,11.0186,8.5193,7.7624,2.1651,2.3112,4.5246,4.2283,1.7781,1.931,18.0963,18.8864,4.4501,5.5222,3.6617,4.0271,0.99419,1.0727,2.404,2.5647,7.6525,6.833,13.523,13.6104,3.6665,4.2514,4.1414,4.6383,3.7655,3.3859,1.596,1.4794,3.5506,4.0902,10.0705,10.1722,2.843,3.095,2.1271,2.1136,2.1501,2.0983,9.398,10.3083,2.4149,2.4704,1.843,2.0166,12.809,13.5901,1.9192,1.5331,1.189,1.2136,14.486,14.4765,5.7842,5.6432,6.8716,7.7832,4.5184,4.2588,9.4148,10.6744,6.6412,6.1527,7.8081,7.1257,3.384,3.9585,1.3372,1.2654,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,576
+desd578,76,76,M,1.9071,2.5673,0.30154,0.33023,0.62673,0.70803,16.6617,2.7353,2.9035,45.1608,44.2557,14.0549,14.6336,193.1778,192.4498,1.1571,2.9616,2.7257,0.76116,0.87676,14.2,15.4314,1.3961,1.428,3.3468,3.7764,5.7264,6.0814,4.1144,4.377,0.07651,4.7659,2.3064,2.4794,0.33227,0.36174,3.9012,4.4726,4.1021,4.2913,1.5847,1.3681,9.913,8.5714,3.2626,3.2515,3.8917,3.6837,4.209,4.3568,1.3618,1.3701,1.9209,2.0771,3.1852,3.3483,7.1605,6.8644,1.9542,1.8935,6.2178,5.8453,11.1469,9.8852,7.6204,7.2067,1.8806,1.998,4.3328,4.4422,1.5572,1.5011,17.1221,17.3434,4.6104,5.7567,3.7817,3.5451,1.0648,1.0929,2.2614,2.2378,7.4902,6.7828,14.1728,12.1722,3.0013,3.0168,3.9841,4.0405,3.3441,3.3007,1.4666,1.4238,3.911,4.2804,10.1163,10.216,2.6925,3.0222,2.482,2.3193,2.2478,2.5173,9.2992,10.7959,2.1033,2.1298,2.0168,2.1861,10.7009,11.5985,2.1452,2.1044,1.0351,1.0655,12.9133,12.9542,4.8616,5.388,8.0442,8.9968,3.8119,3.2589,9.3095,9.8936,8.4678,7.3659,6.7398,6.634,3.3574,3.713,1.527,1.5321,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,577
+desd579,65,65,M,1.4694,2.1107,0.39742,0.39625,0.74951,0.70779,18.9937,3.2685,3.1426,47.8126,46.7113,16.5091,16.2637,252.377,250.3627,1.3304,3.2393,3.135,0.64456,0.65246,18.3746,19.0497,1.7519,1.7979,3.6943,4.0139,7.4658,7.7091,4.8194,5.0823,0.07009,4.4861,2.236,2.5582,0.33588,0.40229,3.8308,4.4339,3.919,4.0202,1.828,1.5173,10.9565,9.7323,3.0653,2.9878,4.3517,4.3733,4.4695,4.1975,1.381,1.3727,1.8713,1.87,3.7478,3.507,6.9342,6.9429,2.39,2.3147,6.0687,6.6913,10.8435,11.1512,7.262,6.6851,2.1175,2.2929,4.5029,4.7261,1.815,1.8608,18.8562,19.7988,5.0966,6.4443,4.0994,4.5134,1.423,1.2133,3.209,2.8081,7.8169,6.6437,13.5199,13.2642,2.6698,3.198,3.8431,3.9724,3.5265,3.8409,1.3489,1.4865,3.5251,4.1599,8.8532,9.6546,2.5475,2.826,2.2065,2.3419,2.7145,2.5505,9.8581,11.1147,2.3016,2.3246,2.2013,2.3636,12.2431,11.7792,1.9137,2.1005,1.3224,1.3388,15.211,14.5999,5.1829,5.0238,7.8621,8.9635,3.9771,3.2399,10.8623,11.0565,6.7205,7.4058,7.0886,6.8093,3.3557,3.7579,1.9478,1.6296,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,578
+desd580,59,59,M,2.3612,2.0322,0.39339,0.44495,0.70174,0.67811,17.6046,2.8479,2.7719,44.0812,44.4978,13.8667,13.9821,224.9191,218.4875,1.651,3.1193,2.8348,0.97819,0.84609,22.1398,29.4319,1.5866,1.5818,3.514,3.5655,6.7414,7.4037,4.3457,4.5147,0.08108,4.4978,1.9961,2.3922,0.40743,0.4058,4.3327,4.9042,4.3955,4.8613,1.8997,1.5261,11.5855,11.0556,3.7793,3.7946,5.0674,4.399,5.5844,5.3039,1.4992,1.4985,1.9956,2.118,3.8129,3.9511,7.0984,7.0253,2.2963,2.2756,7.4434,7.9981,11.9225,11.819,8.8586,8.3526,2.2302,2.4933,4.7105,5.0957,2.1551,1.9582,18.6028,18.5534,6.1579,7.1574,4.1808,4.3193,1.1898,1.3481,2.9708,2.8656,8.4573,7.21,15.2276,15.5091,3.864,4.5715,4.5189,4.6446,3.5688,3.3859,1.6283,1.6617,4.0738,4.7499,12.422,11.6244,2.7607,3.0142,2.771,2.6624,2.9302,2.4877,11.4327,14.025,2.3579,2.9716,2.3544,2.704,13.7538,14.7662,2.5439,2.0692,1.4368,1.3904,16.0842,16.071,5.7548,5.7842,9.4078,9.7432,4.6967,3.9702,11.2368,10.7001,8.2518,8.7394,8.2744,8.0864,3.6622,3.6306,1.7496,1.5427,,21,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,579
+desd581,82,82,M,2.6191,2.3996,0.40488,0.42438,0.9567,0.99575,21.8183,3.2034,2.9093,47.8821,48.3291,16.5514,17.0034,254.1394,252.6338,1.6256,3.4505,3.3306,2.1061,1.9334,31.8545,38.6828,1.7338,1.7342,3.6943,3.8839,6.82,8.0247,4.8935,5.2435,0.08878,4.5193,2.1892,2.4445,0.45814,0.43386,4.3991,5.3212,4.7992,4.6196,1.993,1.6626,11.1846,9.6772,3.7591,3.613,4.5932,4.5869,5.7418,5.2259,1.948,1.8275,2.3205,2.0081,4.0056,3.8607,8.2273,8.2176,2.1816,2.1924,7.4279,7.4721,12.5933,12.2691,8.5372,8.3309,2.5593,2.6724,4.3481,4.3875,1.9726,1.8985,19.0468,19.4487,5.4008,6.1756,4.23,4.2106,1.0365,1.3173,2.4677,2.8608,8.5647,7.7965,15.2482,15.3204,3.2773,3.6204,4.6384,4.5282,4.2277,4.0702,1.7098,1.8436,4.2346,4.7365,11.5144,11.4892,3.425,3.5841,2.5671,2.3877,2.5551,2.7762,9.8581,11.519,2.7026,2.8007,2.333,2.4949,12.4627,12.5472,2.172,2.3236,1.3879,1.3937,17.0549,15.5659,6.2281,5.8365,7.4591,8.6361,4.9162,3.8453,11.4734,9.6688,8.223,7.1803,8.8345,8.4033,3.8521,3.8429,1.6556,1.9283,,26,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,580
+desd582,67,67,M,2.069,2.9716,0.19817,0.28135,0.60887,0.6151,15.8484,1.6327,2.2449,36.777,35.054,11.8682,12.2415,193.1734,193.5193,1.6755,2.4818,2.5602,1.0796,1.3042,22.9569,25.7898,1.3624,1.369,3.0357,3.0356,5.5443,5.9124,4.2099,4.3906,0.07342,4.5791,1.8979,1.7593,0.2665,0.31519,3.5062,4.1491,3.5439,3.7476,1.5075,1.2714,8.2616,7.1535,3.2408,2.8266,3.1196,3.7782,4.5113,3.6052,1.2558,1.137,1.7128,1.7689,3.1919,2.5791,4.8245,5.759,1.9131,1.8321,6.173,6.1533,7.4539,8.1703,7.4372,6.4034,1.9375,2.0203,3.854,3.8523,1.5375,1.4705,15.8147,16.3618,4.6196,5.5864,3.4163,3.4001,1.0737,1.0314,2.1395,2.2973,6.74,5.6651,8.7517,10.6693,3.0239,3.4184,4.0487,3.5251,2.8593,2.6764,1.211,1.1968,3.1265,3.4752,8.079,8.1084,2.3174,2.7562,2.06,2.1573,1.5787,1.8287,8.0621,10.0256,1.9032,1.9178,1.843,2.2036,12.4461,12.8857,1.4138,1.6744,1.0968,1.2045,12.5855,13.0025,4.6006,4.7366,6.5027,7.378,4.5928,3.325,8.8583,8.9572,6.0248,5.7493,6.3232,6.0018,2.7704,3.3566,1.2209,1.4902,,9,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,581
+desd583,82,82,F,1.1814,1.6201,0.38358,0.41034,0.81053,0.78801,16.0067,3.1379,3.0305,40.2388,42.8051,11.4282,12.3842,195.4331,191.9704,1.2419,3.3738,3.1595,0.81467,0.48349,11.9376,12.7441,1.359,1.3274,3.3584,3.0976,6.376,6.6497,4.2416,4.425,0.07686,4.0379,1.9707,2.0971,0.38957,0.29494,3.9522,4.389,4.2152,4.2558,1.7669,1.616,9.5952,8.3923,3.1163,2.7603,3.9442,4.1343,4.4936,3.7986,1.668,1.5748,2.0685,2.0529,3.8378,3.6495,6.768,6.1466,2.2451,2.4717,5.7045,5.9589,10.8862,9.8933,6.9015,6.6783,2.2997,2.5025,4.5074,4.7802,1.7839,1.7715,19.2383,20.0068,5.0917,5.7141,3.8301,4.3007,0.91562,1.1718,2.3443,2.5142,7.6104,6.7603,13.2712,12.5919,2.4357,2.8772,3.5627,3.7681,3.0386,3.6754,1.6731,1.554,3.5927,3.9948,10.2546,10.4622,2.6897,2.8781,2.3262,2.5971,2.4415,2.224,9.8526,11.0461,2.5048,2.6967,2.2136,2.5405,11.7128,12.7244,2.0972,1.8612,1.0818,1.1133,12.5188,12.9671,5.0335,5.2827,7.9481,9.4288,3.9933,3.5299,10.6321,11.3401,6.9792,6.718,7.5284,7.4025,3.4577,3.7072,1.6766,1.7641,,28,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,582
+desd584,73,73,F,1.0728,1.4846,0.43242,0.49152,0.92814,0.94991,17.7466,3.1525,3.248,44.0934,43.0986,14.0101,14.4657,235.8337,237.6268,1.005,3.4963,3.392,0.42881,0.40076,8.8972,9.8195,1.7202,1.7586,3.6541,4.1054,7.3168,7.4762,4.6439,4.9351,0.0773,4.5422,2.0385,2.4066,0.37923,0.38759,4.1386,5.0062,3.8678,3.8757,1.9333,1.8123,9.3863,8.7286,3.233,3.1032,4.2217,4.4532,3.9233,4.7369,1.7926,1.9605,1.8274,1.8746,3.8131,3.5514,8.055,7.714,2.13,2.2699,7.2177,6.8933,12.5964,12.0413,7.9804,7.294,2.4377,2.7182,4.5917,4.626,1.9883,2.032,19.5505,19.6679,5.8715,7.1033,4.3741,4.5213,1.0728,1.2561,2.4162,2.9477,8.5083,7.5175,14.6469,15.5411,3.5397,3.4538,4.5684,4.3266,3.2259,3.2356,1.5468,1.597,4.0397,4.2848,10.7143,10.4042,2.9867,3.4223,2.1427,2.1169,2.6699,2.7283,11.3472,12.3416,2.564,2.8076,2.1764,2.1765,13.4823,13.6239,2.2121,2.1403,1.3402,1.3112,12.9467,14.6558,5.6541,5.7898,8.3019,8.7049,5.4604,3.7842,10.9174,10.9341,8.223,7.9989,8.9281,8.1597,3.251,3.7006,1.7576,1.7284,,25,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,583
+desd585,77,77,F,1.8949,1.894,0.37638,0.47086,0.83404,0.75706,17.8318,3.1894,3.1873,48.1232,48.6387,14.4953,14.7292,217.423,213.6136,1.541,3.3798,3.0874,1.2486,1.08,26.1218,25.3654,1.5531,1.5147,3.9666,4.6426,6.7401,7.2447,4.5448,4.7205,0.07881,4.4512,2.2475,2.7424,0.38849,0.38773,4.7063,4.9132,4.5078,4.2093,1.9924,1.5177,10.2329,8.8426,3.3256,2.8124,4.0531,4.2542,3.9233,3.6543,1.5978,1.4104,2.1111,2.0354,3.7899,3.4222,7.1612,6.8294,2.1668,2.1645,6.5767,6.2837,10.8817,10.9826,7.262,6.5722,2.8092,2.4717,5.2013,5.5488,1.9356,1.8729,18.5625,19.9508,4.884,5.7884,4.7054,4.8288,0.85424,1.208,2.2517,2.5142,8.2489,7.9001,14.0337,12.7951,2.7691,3.1936,3.927,4.1079,3.8623,3.7312,1.9195,1.5328,4.2651,4.4163,10.9832,11.3682,2.9383,3.4943,2.2716,2.3392,2.1452,2.354,9.0305,11.7269,2.5828,2.7294,2.0719,2.2819,12.4988,12.8509,1.6382,1.8088,1.2498,1.3543,14.6511,14.7358,5.8085,5.4055,7.1324,8.3596,3.2345,3.1602,10.2725,9.6688,6.9565,6.1527,7.622,7.6262,3.8903,4.0228,1.2649,1.5846,,17,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,584
+desd586,72,72,F,1.2241,1.8021,0.34773,0.36013,0.80711,0.77713,17.7846,2.8534,2.5373,48.0936,47.977,14.5685,14.7727,216.5298,210.1924,1.2792,3.2932,3.0832,0.69273,0.56191,15.6377,18.9404,1.5661,1.5034,3.0876,3.3076,7.0232,7.1699,4.5291,4.7758,0.079,4.8245,2.3034,3.0156,0.32441,0.37409,3.1277,3.4415,3.2802,3.4544,1.5475,1.443,9.3742,8.3897,3.3453,3.5413,3.2381,3.0664,4.6626,4.5031,1.6902,1.5799,1.4564,1.5965,3.1487,2.6506,7.2951,6.9637,1.7086,1.8008,6.2522,5.8054,10.9034,10.8522,8.271,7.19,1.9799,2.1075,3.881,3.8452,1.3142,1.301,16.0591,15.5558,4.5897,5.8863,3.3669,3.5866,1.1914,0.83847,2.7537,2.1453,5.7327,4.8291,13.0026,13.4861,3.0174,3.3791,4.2749,4.1283,3.1041,2.4846,1.3816,1.2335,3.4327,3.5833,10.0705,9.5476,2.9544,3.1342,1.9343,2.154,2.176,2.1431,9.151,10.5503,2.0741,2.2599,1.7975,2.1378,10.5583,11.5137,1.9236,1.6968,0.96674,1.0339,15.7621,14.3556,5.2431,5.4187,7.8114,8.2933,4.2409,3.6107,9.197,10.6744,6.7367,6.9714,8.145,8.1809,3.4556,3.2835,1.3212,1.5556,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,585
+desd587,73,73,F,1.4415,2.5699,0.33898,0.41026,0.8557,0.83393,16.4182,2.5437,2.5484,44.2168,43.5553,12.5217,12.7326,207.8475,204.5753,1.33,3.2688,3.0452,0.79388,0.92141,12.6277,19.0423,1.3967,1.3821,3.4401,3.6105,5.8915,5.9124,4.0988,4.2753,0.08755,4.2336,1.8515,2.4289,0.38664,0.3918,4.3671,4.9046,4.0554,4.1261,1.6952,1.763,11.5015,10.0351,2.5892,2.4315,4.0791,3.865,4.2182,3.6537,1.6102,1.567,2.1733,2.0412,3.8834,3.4137,7.6877,8.0186,2.2039,2.1218,5.6893,6.7482,11.5909,12.4775,7.2789,6.5803,2.1234,2.5783,4.8273,5.473,1.9531,2.0564,19.556,19.7152,4.8922,6.5332,4.121,4.0472,1.1132,1.2433,2.711,2.6061,8.6739,7.6754,15.3987,14.5309,2.3287,2.8772,3.5923,3.9646,3.1875,3.4886,1.5768,1.6331,4.0449,4.6726,10.9706,10.7426,2.8378,3.1061,2.2872,2.3037,2.206,2.5253,9.3549,11.3454,2.1878,2.5716,2.1024,2.4352,12.189,12.3532,1.6382,1.8775,1.1517,1.2673,15.8186,15.2836,5.4956,5.4624,7.2171,7.9466,3.56,2.7383,10.994,10.683,7.0929,7.6646,7.9541,7.9123,4.0176,4.504,1.4241,1.5449,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,586
+desd588,75,75,F,1.6914,2.0278,0.4353,0.45413,0.74044,0.73158,16.7411,3.6279,3.4738,46.7065,46.4122,12.1684,12.1483,231.3293,224.409,1.4629,2.7568,2.4984,1.2937,1.0519,21.0918,23.1056,1.585,1.5627,3.6551,3.8682,6.3195,6.5563,4.6607,4.9817,0.07698,5.1586,2.231,2.6432,0.38849,0.38373,4.8784,5.2082,4.4452,4.2475,2.1559,1.6986,11.2125,9.2691,2.8136,2.868,3.9162,3.9928,4.518,4.5253,1.4826,1.366,2.0558,2.1194,4.355,4.3243,7.7057,8.1847,2.4457,2.4964,7.0963,6.4688,12.2047,12.5009,7.4187,7.1973,2.586,2.5297,5.5142,5.1372,2.1863,2.0045,21.6581,21.5817,5.3797,6.9378,4.3326,4.4733,0.99532,0.9325,2.5734,2.3427,8.8586,7.5129,15.3034,15.2735,3.4728,3.4664,4.0656,4.1949,3.5849,3.5948,1.868,1.4684,3.9231,4.3719,10.6144,10.4791,2.8551,3.0972,2.3018,2.2356,2.2636,2.222,11.7534,12.5231,2.4163,2.7276,2.0277,2.1959,13.0812,15.2549,1.9195,1.6366,1.3131,1.3772,14.4163,17.2763,5.7917,6.0123,8.8275,9.5465,3.9606,4.0134,11.5295,11.6074,6.8571,7.4128,7.2006,7.5986,4.1919,3.8815,1.4808,1.3749,,23,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,587
+desd589,,,F,1.0706,1.5911,0.38436,0.42053,0.83627,0.90499,18.2717,2.7122,2.7179,44.8393,43.5553,14.882,14.7444,208.496,206.0394,1.1534,3.328,3.0832,0.65429,0.66107,10.5676,12.2315,1.6042,1.633,3.7198,3.4659,6.8393,7.0601,4.3656,4.6267,0.07215,4.9875,2.3387,2.4507,0.40429,0.41743,3.7469,4.3216,3.9727,4.2877,1.7091,1.5455,10.4568,10.3137,3.0144,3.0912,3.7325,4.138,4.4619,4.3633,1.5899,1.77,1.9544,1.7632,3.4888,3.2115,7.6932,7.3827,1.9102,1.7568,7.231,6.8361,13.2069,12.02,7.5148,7.4574,2.2645,2.2322,4.574,4.8029,1.703,1.7058,19.1158,18.7306,6.1064,6.9135,3.7853,3.8819,1.0535,1.0249,2.7296,2.5553,7.9901,6.4788,15.1353,15.4839,3.0832,3.6204,4.3228,4.2021,3.8315,3.0539,1.6238,1.2876,3.7645,4.0597,10.1319,10.4497,2.7121,3.0905,2.1379,2.224,1.9191,2.1615,10.305,11.8171,2.3559,2.4146,2.1764,2.3742,14.1,13.0547,1.8846,1.7358,1.1264,1.1542,14.7709,15.2019,5.7421,4.9107,8.5548,9.4144,4.3993,3.0348,8.9606,9.9701,7.3271,7.9968,7.2099,7.775,3.9282,3.5224,1.4521,1.5657,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,588
+desd590,43,43,F,0.98668,1.8414,0.34906,0.42314,0.81267,0.79086,17.5712,2.5021,2.609,48.0936,48.3698,13.7119,13.784,187.5436,180.9211,1.0689,3.1608,3.0738,0.44345,0.46701,9.599,9.8195,1.3722,1.315,3.4854,3.6105,6.2039,6.3765,4.2961,4.6406,0.07462,4.7782,2.3474,2.4605,0.38664,0.35033,3.2603,4.3072,4.0836,4.1033,1.593,1.5227,9.4724,8.9824,2.79,2.8543,3.2401,4.1069,4.0791,3.8755,1.5551,1.5263,2.0993,1.8123,2.9622,3.3513,7.6467,7.4944,1.7872,1.8084,6.4737,5.7707,11.5048,12.2668,7.7729,7.5597,2.0749,2.2204,4.5201,4.708,1.4698,1.6229,14.9524,17.1511,5.7265,5.896,3.4649,3.5988,0.9974,0.98038,2.4623,2.4017,7.7702,6.3666,14.115,13.8484,2.877,2.8953,4.3071,4.3582,3.356,3.1531,1.4383,1.2722,3.8557,4.1629,9.7114,9.3708,2.9139,3.0711,2.3548,2.2191,1.7161,2.03,9.7161,10.5191,2.25,2.1983,2.0151,2.1861,12.0262,12.061,1.5063,1.7509,1.0434,1.1263,13.2127,12.9795,4.6765,4.7393,8.0882,7.5044,3.9438,3.5299,10.9249,11.2121,7.4213,7.4732,7.4136,7.8874,3.4306,3.6608,1.3977,1.3732,,30,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,589
+desd591,66,66,M,1.7179,2.2014,0.42297,0.43145,1.056,1.0531,22.1157,3.0201,2.7297,56.6536,56.9775,19.0103,18.9707,317.1721,277.4785,1.4746,3.8622,3.8589,0.57608,0.43567,14.6737,20.8669,2.4612,2.1712,3.9125,3.8762,8.9716,8.4379,5.937,6.1972,0.08927,6.2257,2.6867,3.2649,0.42509,0.43386,4.2524,5.4815,5.1134,5.7224,1.9376,1.8863,11.2043,9.9313,3.9552,3.6488,4.2875,5.2749,6.2507,4.613,2.0749,1.8749,1.9271,1.7176,3.89,3.9239,8.823,8.2358,2.4357,2.2114,6.9133,7.3628,12.2874,12.2691,8.5558,7.8045,2.4443,2.9018,5.3121,5.76,2.0133,2.1414,19.7636,21.0272,5.5313,6.1756,4.2925,4.6011,1.041,1.1651,2.693,2.379,9.1265,8.1268,15.5635,16.0116,2.9965,3.2917,4.6395,4.8903,3.5605,3.4564,1.4006,1.6829,3.9916,4.5055,11.3331,11.0082,3.4057,3.6186,3.0874,3.0549,2.6699,3.1235,12.1582,12.6033,2.9609,2.9932,2.9434,2.8625,13.3306,13.2312,2.0618,2.425,1.3429,1.3833,15.111,14.5999,6.2218,6.1762,8.7476,10.2506,4.6967,3.2423,11.5215,12.7536,8.4401,9.1999,8.4612,9.0002,3.7288,3.9967,1.9135,1.7583,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,590
+desd592,70,70,M,1.8751,1.9879,0.44771,0.49261,0.91497,0.8445,20.0813,3.4755,3.2439,53.1828,52.2641,17.5865,17.5743,275.5598,294.1752,1.4161,3.6539,3.3696,0.62802,0.51445,14.5829,16.7889,1.8734,1.8386,4.2333,4.6599,7.2338,7.7786,5.459,5.5975,0.0834,4.5484,2.3553,2.8418,0.38806,0.38335,4.3893,4.4582,4.8816,4.7371,1.7974,1.5044,9.3221,9.359,3.4724,3.5156,3.907,3.9955,5.1796,4.7218,1.7792,1.5657,2.1172,2.2036,4.1722,3.9438,8.0084,7.4547,2.2056,2.1023,7.2674,6.639,12.347,12.0185,9.1257,7.4205,2.421,2.5075,4.5105,4.739,1.8996,1.7924,19.7097,19.4086,5.5033,6.6615,4.0524,3.9735,1.1101,0.87314,2.726,2.2374,7.8169,7.0023,14.5562,13.9405,3.3716,3.4271,4.7616,4.8982,3.7049,3.2288,1.7436,1.7998,4.1495,4.7152,11.6293,11.1584,3.0673,3.1342,2.5451,2.5832,2.4729,2.4288,10.533,12.368,2.4505,2.568,2.4364,2.5274,12.3701,10.8132,1.7379,2.0179,1.1482,1.2324,14.0018,15.0536,5.2403,5.0286,8.042,8.0809,4.3351,3.4882,10.4796,10.7712,6.597,6.7011,8.2108,8.2217,3.6747,4.1613,1.5085,1.8654,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,591
+desd593,74,74,M,1.8958,1.548,0.32138,0.32916,0.60319,0.68262,19.6895,2.6213,2.517,49.7075,49.8549,16.0443,16.4591,213.239,207.5702,1.6214,2.7667,2.749,0.85013,0.79331,14.077,13.0165,1.5049,1.5146,3.1413,3.4574,6.3053,6.641,4.5223,4.7895,0.07497,5.7295,2.4571,2.5642,0.35437,0.33321,4.0376,4.3224,3.8533,4.144,1.5403,1.3787,9.913,8.8278,3.0608,2.9403,3.8597,3.6837,4.1507,4.0744,1.1403,1.2756,1.8245,2.0088,3.3608,3.3168,6.2469,6.4193,1.9853,2.0388,5.8617,5.1279,10.4349,10.5122,7.2742,6.5916,2.074,2.1402,4.2076,4.4356,1.6566,1.7132,15.5254,15.3404,5.0392,5.6353,3.5202,3.9017,0.93612,1.0155,2.261,2.2297,6.9936,6.5953,13.3075,13.4424,2.8122,3.0027,3.6132,3.4211,3.3441,3.2888,1.5482,1.5949,3.6701,4.1836,10.2366,10.2054,2.3174,2.8084,2.1981,2.2121,2.1988,2.222,10.0747,10.8967,2.0643,2.4873,2.1026,2.2505,12.0903,12.7244,1.8306,1.6485,1.0636,1.2203,12.2432,12.8249,4.8783,5.415,8.8547,10.2499,4.0913,3.2846,10.1514,10.6964,7.5457,7.1837,6.7848,7.1531,3.6063,3.5866,1.6192,1.3936,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,592
+desd594,68,68,F,2.1805,1.9084,0.40957,0.42454,0.86543,0.87128,12.5951,2.9284,2.5095,21.6404,23.5087,12.6449,12.4571,214.4995,213.0231,1.817,3.3497,3.1889,0.70855,0.63192,13.6796,18.1597,1.4269,1.41,3.3584,3.3541,6.0299,6.4523,4.4591,4.7434,0.07502,4.9095,2.1931,0.2032,0.40247,0.40852,4.8125,5.2849,4.1919,4.5659,2.3092,1.6718,10.3061,9.2428,2.7977,2.9037,4.3756,4.3194,4.7671,4.8912,1.6726,1.5507,2.0832,2.2116,4.4148,4.0095,7.7176,7.4774,2.1301,2.129,7.1576,7.438,12.1627,12.5233,8.9171,7.7195,3.0055,2.5063,5.4808,5.1372,2.1264,2.3605,21.6418,21.8414,5.2902,6.1152,4.5976,4.6798,0.98736,1.1127,2.4198,2.7193,8.6872,8.2813,14.3888,14.611,3.0215,3.7806,4.7817,4.6343,3.8209,3.4639,1.8308,1.6605,4.3882,4.8942,11.5494,11.4892,2.8747,3.0748,2.5404,2.416,2.2216,2.5265,10.0428,12.9774,2.6885,2.8981,2.0711,2.2819,12.4988,12.3724,1.8799,1.9192,1.3379,1.4764,16.4919,17.2763,6.2438,5.9421,7.6318,8.1905,4.6318,4.1879,10.6104,11.9597,6.5986,7.7327,8.3084,7.9123,4.5346,4.4132,1.442,1.5449,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,593
+desd595,81,81,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,594
+desd596,58,58,F,0.99857,1.9683,0.38153,0.41664,0.77349,0.75879,17.5712,2.8135,2.7139,48.0936,48.3698,14.3962,14.5866,215.7579,212.556,1.0408,3.108,2.8797,0.62914,0.44762,9.6558,10.5276,1.4582,1.5196,3.3207,3.3873,6.3787,6.6196,4.2758,4.4306,0.07799,4.7194,2.2693,2.8859,0.37755,0.37594,3.8443,4.4354,3.6847,4.1797,1.6328,1.4906,9.467,8.5799,2.7614,2.5086,3.5002,3.6124,4.0791,3.9273,1.5192,1.4774,1.7747,1.5849,3.5843,3.4439,6.7819,7.0611,1.9391,1.9376,6.0143,6.5072,10.9634,10.4273,7.6316,6.9613,1.9809,2.2255,4.0914,4.2246,1.6189,1.64,18.315,18.8721,4.4676,5.4256,3.6215,3.73,0.9308,1.021,2.4858,2.5952,6.9852,6.5047,13.5871,12.3186,2.649,3.2088,4.0484,4.168,3.2803,2.6854,1.4587,1.3667,3.7277,4.3165,10.1147,10.5263,2.8045,2.9231,2.1593,2.2312,1.958,2.183,10.3066,11.6679,2.2016,2.2676,1.8653,2.249,11.4526,12.3543,1.5749,1.7358,1.054,0.97977,13.7655,12.9869,5.0858,5.1043,7.4809,9.1592,3.907,3.3555,9.2403,10.1601,6.1503,6.5548,6.9366,7.1531,3.5707,3.3509,1.3621,1.376,,27,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,595
+desd597,74,74,M,2.2559,1.8026,0.41211,0.47384,0.71715,0.73047,20.5451,3.5829,3.292,47.6832,49.1911,15.5572,16.4765,260.1334,255.7585,1.6649,3.1193,3.1597,0.78206,1.0427,23.0982,26.0747,1.8326,1.7829,4.1266,4.2219,7.4658,8.0711,5.202,5.5824,0.09098,4.6047,2.2414,2.7442,0.42318,0.4362,4.3045,4.7719,4.7838,4.6196,1.7974,1.5801,11.0488,9.418,3.7591,3.255,4.479,4.6948,6.1535,5.0645,1.5225,1.6728,2.2342,2.1482,4.1379,3.8607,7.0327,7.3628,2.37,2.3284,7.6147,7.9157,10.1361,10.1935,8.5997,8.0332,2.422,2.3359,5.2304,5.5482,1.8236,1.8758,17.9533,18.5534,5.4944,6.7847,4.1959,4.4698,1.1911,1.164,2.8466,3.0391,7.9185,6.8283,13.9152,12.7949,3.7041,4.4443,4.6967,4.4974,3.8129,3.4774,1.7436,1.3119,4.0738,4.6896,11.392,11.2225,2.7524,3.0142,2.5451,2.6759,2.6137,2.7727,11.7534,12.6033,2.7907,3.2117,2.3959,2.5945,13.5707,13.2312,2.2121,2.5189,1.2903,1.3407,15.9411,15.5325,5.308,5.2519,8.9801,9.3648,5.1542,3.3474,10.9764,10.7163,7.1791,7.801,7.8174,7.0749,3.8196,3.4713,1.5567,1.8082,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,596
+desd598,79,79,F,2.1836,1.9933,0.32836,0.38838,0.65297,0.78155,18.4429,2.5686,2.6066,49.1293,48.2143,14.6035,14.5574,209.0358,204.9386,1.9267,2.6675,2.8161,1.2616,0.859,21.2596,22.5116,1.5162,1.4795,3.3633,3.0976,5.785,6.5162,4.5123,4.7728,0.07898,4.9061,2.452,2.5642,0.37411,0.34531,4.4639,4.6505,4.1966,3.9908,1.6054,1.3855,11.4685,10.0351,2.725,2.5086,4.3688,4.2224,4.4505,4.3004,1.2013,1.4871,2.1347,2.1908,3.5291,3.2982,6.7401,6.8975,1.9635,2.0807,5.9047,5.9248,10.6118,10.6466,7.1372,6.9034,2.1112,2.2506,4.88,4.5042,1.7712,1.902,17.6235,18.0674,4.8922,6.1263,3.6617,3.8912,0.86718,1.0828,2.2727,2.7085,7.9787,6.9709,14.2384,13.7692,2.4873,3.2646,3.9054,3.9667,3.551,3.7512,1.4955,1.4648,3.9306,4.3719,10.263,10.3716,2.7583,3.231,2.61,2.4935,2.56,2.573,9.9071,11.8666,2.2296,2.5069,2.3544,2.499,13.0528,14.0706,2.0333,2.1631,1.1388,1.2447,14.0128,14.4115,5.5701,5.845,7.2171,8.3731,3.7227,3.1602,10.6511,10.0025,7.7471,6.6285,6.7935,6.9968,3.7283,4.3296,1.8464,1.7926,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,597
+desd599,78,78,F,2.0444,1.7023,0.35875,0.41846,0.69746,0.74646,17.8724,2.9267,2.7264,44.5851,43.8058,13.6405,14.0245,216.9418,210.2855,1.576,2.8518,2.6784,1.0439,0.85943,18.5472,20.5572,1.4856,1.5288,3.4885,3.6449,5.9398,6.7046,4.5209,4.78,0.08345,4.447,2.0564,2.5824,0.35503,0.34714,3.7742,4.707,4.1658,4.2191,1.6198,1.3703,9.8747,7.6134,2.8527,2.8335,3.8148,4.1139,4.738,3.929,1.4599,1.4315,1.9178,1.7616,3.6101,3.4262,6.802,6.4318,1.9206,1.7568,5.9213,5.3991,10.9634,10.1499,7.4809,6.5888,2.0692,2.1152,4.2693,4.245,1.6189,1.5749,17.5442,17.0065,4.978,5.2847,3.6181,3.4975,0.96897,1.0935,2.3342,2.3106,7.5962,7.1113,13.5638,12.5967,2.916,3.0587,4.1069,3.9129,3.0267,2.9289,1.4943,1.3449,3.9427,4.3011,10.8854,11.6858,2.6925,2.8618,2.482,2.3329,2.3774,2.5998,10.0771,11.2567,2.3145,2.2097,2.1838,2.2297,11.8209,12.1483,2.0168,2.2135,1.0344,1.0849,13.6519,12.9686,4.4777,4.9805,7.467,8.7445,4.4703,3.2111,10.2263,11.1999,7.3625,6.3516,6.886,6.4441,3.5716,3.3445,1.6489,1.7349,,24,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,598
+desd600,64,64,F,1.2305,1.4415,0.34508,0.36871,0.89225,0.9011,18.9336,2.4491,2.3982,45.473,45.4929,15.7042,15.9507,231.9271,225.7956,1.0767,3.3412,3.129,0.61565,0.66511,11.8547,14.0786,1.4988,1.4831,3.3229,3.4476,6.6726,7.0209,4.5223,4.6688,0.07985,4.5887,2.1986,2.3744,0.32816,0.35922,3.4262,3.9538,3.919,4.1044,1.8686,1.598,9.8865,8.3953,2.977,3.0648,3.1699,3.9082,4.6859,4.3597,1.7919,1.7002,1.6005,1.7612,3.5586,3.252,8.2067,7.7014,2.1543,2.0571,6.2916,6.5311,12.0698,10.5925,7.6887,6.8327,2.4026,2.4938,4.5201,4.626,1.7892,1.675,16.9019,17.2614,4.6329,5.9481,3.8992,3.8902,1.1334,1.1678,2.7527,2.5166,7.6551,6.1917,14.5547,11.7806,2.8065,3.788,4.1829,3.9337,3.1677,3.1734,1.4492,1.559,3.8029,4.1629,10.0636,9.5413,3.1078,3.1477,2.0154,2.1058,1.9454,1.9119,10.5416,10.8325,2.4884,2.6582,1.9957,2.3359,10.0057,11.0202,1.6307,1.6304,1.1062,1.0952,13.1822,13.451,5.5704,5.2538,6.9975,8.3573,4.4519,3.7429,9.4148,10.0274,6.8655,6.0979,8.2366,7.7009,3.0562,3.7731,1.2798,1.2157,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,599
+desd601,81,81,F,1.8046,2.1243,0.32574,0.34567,0.73728,0.75571,17.4303,2.3429,2.448,47.2251,46.6155,13.6201,13.5847,186.1146,188.3665,1.6388,2.8578,3.1014,0.70902,0.65958,16.3604,17.3104,1.3159,1.2852,3.0689,3.0644,6.1149,6.3666,4.3567,4.6199,0.0791,4.41,2.1447,2.4424,0.34048,0.33121,3.7732,4.1821,3.6669,4.0342,1.5062,1.4543,9.913,8.297,2.8136,2.9113,3.5675,4.1184,4.2997,4.0173,1.4482,1.4737,1.9727,2.0164,3.3536,3.2514,7.4297,6.9337,1.9686,1.9641,6.3114,5.9709,11.4667,10.2401,6.9075,6.5991,1.9371,2.3387,4.4826,4.4478,1.606,1.539,16.9559,17.575,5.5607,6.0264,3.5282,3.6076,0.84214,1.0822,2.0343,2.5646,6.8932,6.5125,12.7445,12.0113,2.4654,3.1216,3.9081,3.9262,3.1579,3.3721,1.3248,1.4334,3.797,4.1962,10.2125,10.2134,2.6706,2.9706,2.0511,2.1462,1.8168,1.9104,10.9935,11.8374,2.0741,2.5155,1.737,2.1713,11.2915,11.6743,1.6429,1.6453,1.1956,1.1941,13.6789,12.446,4.4457,4.7871,7.9432,8.5848,3.6954,3.1314,9.2774,9.7264,6.2997,6.4311,7.2726,7.5208,3.1222,3.7842,1.1849,1.3108,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,600
+desd602,78,78,M,2.3554,2.3329,0.36398,0.40699,0.83918,0.90499,17.6402,2.9093,2.8188,46.4549,46.3326,13.857,13.9821,234.7419,235.5834,1.8804,3.0928,2.8334,1.0505,0.80493,20.8601,18.992,1.6395,1.654,3.958,4.2364,6.8637,6.9732,4.5368,4.7758,0.09549,5.2141,2.2816,2.6607,0.45297,0.40562,4.6927,5.1973,3.9129,3.9611,1.6826,1.5246,10.3061,9.2236,3.0608,3.0593,4.3562,3.9212,4.3404,4.3734,1.6195,1.741,2.0197,2.0926,3.8294,3.5094,7.8887,7.9761,2.1126,2.187,6.6099,6.1879,12.2734,11.7461,8.1904,8.0794,2.2932,2.4247,5.0101,4.8757,1.7941,1.8302,20.9626,19.7118,5.0735,5.8314,4.121,4.4401,1.1424,1.0426,2.5793,2.531,7.8364,7.1587,16.0082,14.0277,2.6346,2.9945,4.4894,4.4023,3.0884,3.3622,1.5889,1.5065,4.0218,4.0697,10.6211,10.4699,3.0672,3.2698,2.5824,2.2356,2.2331,2.6086,11.9035,12.1081,2.3909,2.6499,2.5395,2.408,13.3306,11.9528,1.845,1.9102,1.3276,1.4137,16.0842,14.4107,5.538,5.6455,8.9673,8.7474,3.7227,3.2341,9.6541,9.7427,8.2265,7.7323,7.9541,9.2077,3.6974,3.9354,1.5167,1.569,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,601
+desd603,71,71,F,1.169,2.2211,0.40473,0.44518,0.91961,0.94014,16.0578,2.7826,2.8797,27.9343,26.922,11.3847,10.4877,182.6154,178.0647,1.2058,3.6156,3.3065,0.67471,0.57687,11.4639,14.178,1.357,1.4112,3.8067,3.8847,6.1456,6.5134,4.0988,4.3168,0.07157,3.926,1.6853,1.7352,0.4115,0.40448,4.0432,4.5862,3.8534,3.708,1.8979,1.6322,9.3369,8.867,2.5892,2.5195,3.9024,3.8558,4.7709,4.4212,1.6807,1.7886,1.9731,1.8781,3.798,3.5344,6.6917,7.2492,2.0828,2.1371,6.4408,6.5097,11.3715,10.8608,8.1635,7.706,2.2737,2.5091,4.0914,4.41,1.7617,1.931,16.3896,18.7104,5.0661,5.6886,4.1567,3.9981,1.1688,0.97622,2.5403,2.4824,7.7153,6.5605,12.9644,13.0567,3.1303,3.4573,4.7147,4.2086,3.4069,3.6453,1.5567,1.5343,4.2319,4.089,11.7678,10.6859,3.1184,3.2634,2.2847,2.2356,2.4668,2.2689,9.6902,11.7092,2.4015,2.5227,2.0154,2.1861,10.5172,11.0202,1.9245,2.1543,1.1837,1.2128,12.5188,13.9965,5.259,5.1043,7.2187,8.2916,4.2818,3.7762,10.6562,11.1361,6.9716,7.2104,7.7021,7.4591,3.1766,3.8219,1.4453,1.5315,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,602
+desd604,71,71,M,1.1685,2.1065,0.32337,0.34567,0.62618,0.6146,17.052,2.5881,2.626,45.0926,46.1134,13.7148,13.7906,212.1597,210.3322,1.2058,2.7931,2.728,0.60093,0.49987,11.6909,13.1846,1.3718,1.3106,3.2533,3.1882,6.0573,6.208,4.1745,4.3707,0.07726,4.5381,2.2577,2.3955,0.36996,0.35921,4.0076,4.2866,3.7408,4.1797,1.5737,1.4318,10.6025,9.2936,2.1377,1.9707,3.5212,3.7968,4.0272,3.4995,1.2605,1.1379,1.9211,1.7281,3.7934,3.7458,6.7912,6.5177,2.0676,1.8537,6.2322,6.0413,10.4518,10.0482,6.5732,5.6111,2.1515,2.2542,4.5653,4.8038,1.8236,1.6782,18.504,18.0674,5.3698,5.8761,3.5983,3.7728,1.116,1.164,2.4211,2.6539,7.2289,6.4399,13.0178,13.1911,2.8536,3.1936,3.7565,3.7017,3.1751,2.937,1.6097,1.4126,3.7788,4.6272,10.444,10.2366,2.7099,2.7176,2.3727,2.156,1.779,2.1672,9.1457,10.9548,2.4155,2.4873,2.1469,2.2894,11.6364,11.3597,1.7924,1.8485,1.2576,1.2325,15.3682,13.3589,5.016,5.2782,7.2171,8.9568,3.4082,3.4955,10.3299,9.225,7.2331,6.9025,7.4883,6.3369,3.4193,3.2866,1.4521,1.6094,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,603
+desd605,72,72,M,2.4335,2.2218,0.49233,0.54456,0.92825,0.98008,21.694,3.2801,3.2469,56.5683,54.2968,18.8763,19.534,262.0686,248.9335,2.8942,3.4505,3.3746,1.4438,2.0014,33.1003,38.6828,1.7185,1.7586,4.1601,4.2289,6.9894,8.0247,5.0187,5.3377,0.09123,5.6612,2.4335,3.203,0.42315,0.45301,5.4144,5.8186,4.7142,4.6396,2.0035,1.9521,11.7868,11.4997,3.936,3.4106,4.8673,4.9235,5.0479,4.7112,1.7793,1.8626,2.4407,2.5455,4.3942,4.2753,8.6418,8.4934,2.3453,2.3465,8.2916,7.393,13.7426,13.5711,9.3788,7.3795,2.5104,2.5785,5.7806,6.0349,2.0711,2.2306,23.1467,21.5294,5.7479,6.6154,4.2634,4.4376,1.435,1.3617,3.123,2.8933,8.9555,7.7655,18.5499,17.4934,3.5247,3.6819,5.0926,4.698,3.9375,3.7138,1.7436,1.7338,4.6583,6.5954,12.0285,12.8823,3.0706,3.3782,2.5779,2.6703,2.699,2.8887,12.8155,13.4742,2.4879,2.8106,2.4697,2.661,14.6459,15.1703,2.3664,2.4095,1.5271,1.5587,16.9133,15.8389,6.0818,5.9652,9.3669,9.2497,4.8871,3.8453,11.2573,10.7754,9.6366,8.7673,8.5754,8.8122,4.0988,4.3612,1.9199,1.9406,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,604
+desd606,43,43,M,1.614,1.9196,0.36223,0.40587,0.80181,0.78801,17.1094,2.9314,2.6746,36.0414,36.5007,13.6021,14.5244,217.6717,210.2855,1.4932,3.1711,3.2571,0.6035,0.63498,11.9869,17.4652,1.524,1.4622,4.197,4.2961,6.4276,6.6497,4.3581,4.5321,0.06704,4.6477,2.0486,2.3743,0.34124,0.37066,3.4598,3.9826,3.5203,3.5746,1.5789,1.2674,9.6515,9.431,2.9363,2.8431,3.6255,3.3012,3.9622,4.1837,1.4545,1.4568,1.7945,1.8199,3.3098,2.9085,6.7279,6.9662,1.9012,1.8172,4.8656,4.5079,11.1388,10.7722,7.5401,6.5977,2.0685,2.1521,4.2057,4.1706,1.603,1.5869,17.3505,17.3982,4.2927,4.9577,3.5021,3.4604,1.1739,1.0947,2.5573,2.538,7.3479,6.1736,14.5429,14.5686,2.7573,2.8064,3.9017,3.6434,3.1011,2.9831,1.343,1.3584,3.7978,4.0705,9.3593,9.5844,2.6174,2.9921,1.6855,1.4917,2.0085,2.1257,9.2722,9.8247,2.2809,2.2111,1.6847,1.9755,10.5838,11.0987,1.6188,1.6764,1.1006,1.0952,13.9114,13.4957,4.8122,5.0496,7.3309,7.6242,3.9092,2.7544,10.3461,9.1754,6.7924,7.4128,7.378,7.1638,3.3015,3.3617,1.2987,1.5317,,29,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,605
+desd607,77,77,F,1.7403,2.0757,0.31102,0.34427,0.59381,0.55987,14.6382,2.5025,2.4888,41.1694,40.6259,11.9078,12.2676,160.9065,156.4949,1.4826,2.5696,2.3865,1.1237,1.5123,18.0568,29.3432,1.2711,1.2571,2.9937,3.1734,5.4358,5.8428,3.7661,3.9321,0.06877,4.3435,2.1362,2.6726,0.33009,0.33409,3.2047,3.6379,2.9807,3.1761,1.5506,1.3274,8.6472,7.8526,2.4154,2.151,3.2976,3.3077,3.5198,3.5843,1.191,1.1591,1.5935,1.5965,3.0743,2.9676,5.9454,5.8965,1.4739,1.6821,5.3796,5.1719,8.6786,8.9819,6.6337,6.1424,1.9455,1.9518,3.7048,3.452,1.3567,1.4467,14.4447,13.8017,4.5748,5.0603,3.2523,3.4097,0.90867,0.91269,2.2137,2.1719,6.4258,5.8155,10.0789,10.6368,2.3112,2.4072,3.4528,3.4264,2.8424,2.5013,1.3214,1.2083,3.1789,3.2435,8.3606,7.6672,2.3406,2.4191,1.8548,1.7543,1.9136,2.0017,8.1705,9.5345,1.9982,1.9283,1.712,1.8273,11.2482,10.584,1.6495,1.7153,0.99556,0.99393,11.9794,11.5571,3.9776,3.6356,6.6766,7.4277,3.6278,2.7428,9.1786,8.4194,5.9204,5.6658,6.3232,5.5822,2.8391,3.0175,1.2052,1.437,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,606
+desd608,71,71,M,1.7205,1.7712,0.36092,0.41704,0.58763,0.60177,18.7857,2.8077,2.7248,42.3458,41.6131,14.0826,14.7581,202.5455,203.2097,1.3463,2.7074,2.6663,0.45382,0.42583,8.7032,8.9561,1.4537,1.5372,3.5454,3.6223,6.2906,6.5553,4.8098,5.0523,0.08231,4.1815,1.9834,2.5036,0.37755,0.38384,3.9522,4.5134,4.0376,4.0577,1.7356,1.3478,8.2161,8.8291,3.3611,3.4869,3.8917,4.1787,4.6451,4.3731,1.2135,1.1777,2.1365,1.9723,3.8378,3.7043,6.3707,6.4863,1.8818,2.1075,6.2476,6.6913,10.5798,9.5007,7.3862,7.2027,2.0878,2.1175,4.2076,3.9836,1.6097,1.7052,18.7861,17.9772,4.6593,6.4098,3.4573,3.8194,1.0214,1.1971,2.4596,2.5397,7.6216,6.9862,14.2384,13.1739,2.5283,3.3395,3.7902,4.2914,3.4637,3.2757,1.3383,1.2667,4.0214,4.4056,10.2036,10.2765,2.7339,2.8722,2.3575,2.2428,2.3381,2.4721,9.6499,11.3304,2.1166,2.1833,2.033,2.1287,12.3735,12.4075,1.8109,1.7909,1.0766,1.1685,13.9933,14.0776,5.1819,5.5213,7.2704,8.6561,4.2377,3.2846,10.754,10.3009,7.5898,6.271,6.9277,6.9893,3.2971,3.5224,1.5494,1.4355,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,607
+desd609,,,M,1.2242,1.3062,0.43905,0.45319,0.88555,0.8969,22.1811,3.8859,3.6894,48.2352,48.8959,18.3548,18.8096,274.269,260.6464,1.2419,3.4038,3.1863,0.51198,0.66674,11.1642,11.6214,1.7632,1.8143,3.9504,4.1041,7.3684,7.4289,5.4789,5.7108,0.07365,4.6608,2.2438,2.7104,0.40709,0.41096,4.5827,4.9562,4.6047,4.6927,1.8997,1.5635,10.6153,9.9337,3.4268,3.4179,4.0349,4.2808,5.5947,5.1157,1.6571,1.7216,1.9838,2.2036,3.5908,3.6728,7.2526,7.338,2.0876,2.0895,6.9693,7.3628,11.0658,11.7204,8.5437,7.0703,2.5819,2.4717,5.0172,5.3641,1.7393,1.8623,18.7798,18.7659,5.7823,6.6482,4.0039,4.0194,1.1802,0.99429,2.5147,2.4017,8.039,7.1578,14.1578,14.2233,3.0519,3.9386,4.2732,4.1161,3.5302,3.2166,1.6974,1.6058,4.5414,4.5968,12.6383,13.0258,3.0453,3.2149,2.5458,2.719,2.4349,2.6854,10.5419,10.4781,2.5784,2.698,2.6052,2.8054,12.3388,11.9842,2.0602,2.3175,1.2019,1.3507,15.6352,15.8127,5.269,5.3547,7.9781,9.0967,4.4534,3.8774,11.2368,11.5678,7.1187,6.8181,7.622,7.2724,3.7315,3.9851,1.7368,1.8654,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,608
+desd610,67,67,F,1.1873,1.4588,0.30681,0.33628,0.51972,0.50656,15.3463,2.5199,2.4063,38.4725,39.0933,12.3447,12.711,188.2278,190.3081,1.5796,2.4966,2.3076,0.72781,0.56191,19.7917,21.4459,1.5018,1.4829,3.3634,3.0238,6.1763,6.4532,4.0234,4.2874,0.08356,4.3323,1.6783,2.0198,0.31776,0.2964,3.1277,3.4415,3.4566,3.5093,1.5734,1.2979,8.457,9.0173,2.9883,2.6807,3.1416,2.9876,4.0345,3.4814,0.93517,0.91267,1.5951,1.4596,3.0341,2.43,5.6402,5.323,1.7222,1.738,5.5892,5.3117,8.0468,9.0866,7.3984,6.5798,1.9201,1.8822,3.8606,3.8523,1.4448,1.4152,13.7531,13.0473,3.8872,5.2153,3.2523,3.4483,0.90001,0.8312,2.0321,2.0058,5.201,5.1598,10.4835,10.6656,2.7453,3.1951,3.6893,3.852,2.9142,2.6527,1.2743,1.2394,3.403,3.545,8.9821,8.656,2.4985,2.5184,1.8642,1.8075,1.5536,1.946,9.2722,9.4049,1.9032,2.0597,1.6437,1.887,10.1462,10.6762,1.4817,1.6488,1.0084,1.0373,11.7783,12.8249,4.7844,4.369,5.934,7.6242,3.1376,2.9176,9.2156,10.0019,6.079,6.358,5.0697,2.5612,2.7553,3.1,1.166,1.2445,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,609
+desd611,75,75,F,1.7085,2.2076,0.40132,0.42969,0.85519,0.844,16.6992,3.1972,3.0363,44.7234,43.9517,12.9595,13.3136,201.5903,200.7235,2.1695,3.3327,3.1302,0.76046,0.70164,27.4718,31.0679,1.527,1.4512,3.5052,3.5655,6.7515,6.6585,4.1826,4.3849,0.06798,4.6638,2.0488,2.8959,0.36785,0.38526,3.9106,4.706,4.1337,4.2311,1.8131,1.6322,10.4294,9.5449,3.2764,3.1114,4.0736,4.0747,4.9972,4.5715,1.5978,1.5824,2.1043,2.0074,4.3682,3.9472,7.7075,8.0058,2.2595,2.1023,7.0621,7.2798,11.4847,12.0056,8.1675,7.3194,2.1421,2.5005,4.472,4.7073,2.029,1.973,19.3203,19.6679,5.3372,6.6593,4.0038,3.7044,0.89837,0.95883,2.678,2.3596,9.4104,7.8587,13.8898,14.9175,3.9516,4.3637,4.2321,4.1949,3.9799,3.2817,1.3825,1.4376,4.0325,4.6613,10.9989,10.5044,3.0673,3.2769,2.3053,2.2809,1.8993,2.094,9.398,11.2423,2.1795,2.4123,1.9234,2.1104,13.703,12.0469,1.9493,1.8446,1.3847,1.379,15.111,15.0046,5.5549,5.4097,8.2128,8.4522,4.6967,4.3388,10.0498,10.2256,6.7731,7.7485,7.1644,7.6973,3.4362,4.0589,1.3541,1.3651,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,610
+desd612,81,81,F,2.0795,1.9786,0.33199,0.37163,0.6519,0.68249,14.4818,2.642,2.5535,34.594,27.3723,11.3372,9.2054,160.604,152.4398,2.1398,2.86,2.7666,0.9527,0.96109,26.0403,31.0712,1.3705,1.2159,3.4679,3.5903,5.9261,5.7799,4.005,3.8789,0.0635,4.4656,1.7855,2.0852,0.32906,0.32832,3.3315,3.9495,3.5203,3.5419,1.6717,1.5558,9.752,8.7709,2.7894,3.0446,3.3679,3.7889,3.8655,4.3597,1.203,1.256,1.7244,1.7469,3.176,3.2423,4.7168,5.9773,1.8574,1.9966,4.9759,5.1469,8.1016,8.9819,6.9363,6.4803,2.0071,2.2721,4.0035,3.9422,1.6497,1.5876,17.0255,17.3371,4.2287,5.1569,3.5422,3.8186,1.0259,0.83847,2.3317,2.0521,6.7752,6.2394,10.6424,10.6656,2.5487,2.8267,3.7932,3.6077,2.9917,3.4872,1.5239,1.2806,3.3051,3.7411,8.6424,9.5133,2.4834,2.7655,2.0433,1.9328,2.0792,1.9191,8.6214,9.29,1.9772,2.1792,1.7945,1.9267,10.7378,9.8087,1.7591,1.5474,1.2042,1.2162,13.1937,13.8267,4.7484,4.5588,6.2404,7.9899,3.6905,2.7978,10.1158,10.483,5.8236,5.6658,6.1097,6.2847,3.2658,3.498,1.2221,1.2654,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,611
+desd613,66,66,F,1.2587,1.6554,0.30608,0.32521,0.73957,0.67972,15.9805,2.3504,2.3381,37.2794,36.7825,11.6495,11.7864,187.6209,186.1227,1.0692,3.0429,2.8389,0.81467,0.48349,10.3441,12.8708,1.3159,1.315,3.0136,3.1621,5.7702,5.8428,4.0467,4.2908,0.07222,3.7043,1.89,2.0473,0.37365,0.33543,4.0253,4.4173,3.7258,3.7776,1.6345,1.3762,9.1242,7.7556,3.0625,3.0867,3.7112,3.6877,4.7257,5.0884,1.5589,1.231,1.9104,1.7916,3.4846,3.2061,6.285,6.2485,1.756,1.7728,5.3377,5.4696,9.7025,9.0001,6.88,6.2255,2.1197,2.2163,4.5074,4.6442,1.615,1.853,15.1184,15.5908,4.7128,5.7216,3.3492,3.3897,0.99046,1.1393,2.3142,2.6202,6.9498,6.5047,11.2089,12.2458,2.2418,2.7148,3.6394,3.3116,3.0018,3.1636,1.4622,1.4125,3.9209,4.3404,10.6008,9.9042,2.3836,2.6722,2.2169,2.2224,1.8017,2.1131,9.0295,10.2916,2.0774,2.2795,2.154,2.0593,10.304,11.0987,1.9533,1.8485,1.0551,1.1504,12.3623,12.524,4.7292,4.786,6.9255,8.9246,4.0085,3.1517,8.2148,9.8832,6.1758,6.8052,6.6822,5.8077,3.2797,3.2833,1.492,1.3482,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,612
+desd614,,,F,1.6135,1.7191,0.40101,0.39625,0.86232,0.80957,17.5065,3.2449,2.9916,47.9629,49.3091,14.4927,14.7292,193.0484,182.5569,1.7563,3.2742,3.0562,0.66404,0.62222,11.2721,12.3254,1.6221,1.5677,3.8423,3.4106,6.6723,6.8129,4.7495,4.8736,0.0808,5.0323,2.3034,2.7276,0.3848,0.38773,3.8191,4.4443,3.996,4.4858,1.8131,1.5991,8.4829,8.6252,3.0653,2.9703,3.5113,3.7912,4.1831,4.6934,1.7783,1.6762,1.7524,1.9986,3.7522,3.507,7.1379,7.2824,2.1154,2.1146,6.2791,5.8863,11.5585,10.2448,8.0576,7.2281,2.4284,2.6051,4.4276,4.597,1.7892,1.8645,17.3549,18.4136,4.6992,5.7343,3.8753,3.9287,0.94289,1.4219,2.2491,3.2439,7.6309,6.6437,14.0727,13.2393,2.649,3.2931,3.9874,4.403,3.0321,3.4199,1.6822,1.6515,4.171,4.4166,10.5413,10.4257,2.8747,3.0897,2.1868,2.2288,2.0544,2.1338,9.9635,11.2932,2.426,2.5079,2.102,2.3454,12.3146,13.4365,1.8675,1.7462,1.1739,1.119,12.4816,12.2218,5.5017,5.566,7.9324,8.2916,4.2139,3.7982,10.6824,11.1783,7.6512,6.807,8.2934,7.6834,3.555,3.8605,1.6071,1.4731,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,613
+desd615,79,79,F,1.4436,2.2159,0.29367,0.33948,0.66914,0.65911,14.5161,2.5199,2.5107,36.4172,37.5008,11.3372,11.9422,159.2096,154.1769,1.4373,2.8667,2.7708,0.91186,0.81448,12.8318,14.9981,1.1776,1.1916,3.1153,3.5577,5.4951,5.8214,3.6709,3.9038,0.06667,4.4656,2.0653,2.1388,0.34766,0.31239,4.0405,4.4443,3.5405,3.5366,1.4567,1.2669,8.0657,7.4469,2.9174,2.9632,3.7112,3.6587,3.8655,4.3597,1.1841,1.2057,1.7009,1.6726,3.2527,3.1043,5.5218,5.2805,1.681,1.6765,5.2199,5.5156,8.1992,8.5987,5.7237,5.9821,1.8889,1.932,4.0546,4.1749,1.4822,1.5684,17.2115,17.4131,4.0341,5.0582,3.0089,3.1944,0.95289,1.0864,2.2109,2.3106,6.988,6.4494,10.9757,10.7233,1.5521,1.2586,3.2993,3.385,3.2791,3.1365,1.3055,1.2007,3.4814,3.7111,8.3878,8.6851,2.3072,2.6319,2.0847,1.9411,2.0023,2.4066,9.6469,10.8398,1.952,2.1226,1.805,2.0444,10.5575,11.21,1.6364,1.9996,1.0813,1.1667,13.6011,13.0945,4.6608,5.0772,6.9574,7.8364,3.5536,2.7912,9.3058,9.2653,6.3524,5.6422,6.6466,6.1399,3.2322,3.3739,1.2654,1.4931,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,614
+desd616,,,M,2.1427,2.4283,0.32695,0.35041,0.76311,0.69628,20.2468,3.1161,2.8481,53.3227,51.7924,19.9017,19.3243,251.1307,247.5545,1.6165,3.2181,3.1597,1.9578,1.356,22.2937,23.0663,1.7943,1.6123,3.5259,3.3121,6.7605,7.2896,5.0802,5.4028,0.08774,5.3437,2.4335,3.0753,0.37094,0.37354,4.2473,4.3304,4.5078,4.2701,1.5169,1.3642,9.1593,8.2497,3.6757,3.6169,3.9783,4.0944,4.8648,4.3587,1.5598,1.3429,1.8904,1.8732,3.4809,3.2226,7.0847,7.6169,1.8234,1.993,6.777,6.4522,10.6601,10.0437,8.4697,8.0496,1.9712,2.2508,4.6626,4.2041,1.6049,1.702,17.2382,16.5372,4.6664,5.0215,3.2559,3.6503,1.3114,1.1615,2.6987,2.5255,7.1152,6.5953,12.6236,11.6401,3.0322,3.0137,4.3485,4.5411,2.666,3.0846,1.3675,1.4915,4.0614,4.4726,11.9621,11.4018,2.949,3.0096,2.3548,2.2428,2.136,2.1829,9.0305,11.6356,2.1918,2.3759,2.0681,2.2792,10.6051,10.7422,1.8503,1.7524,1.1654,1.263,13.5181,13.2132,5.1361,4.7759,7.1078,7.9938,3.9435,3.0648,9.6993,9.7158,6.7545,6.8627,7.0973,6.782,3.4372,3.9592,1.5785,1.3547,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,615
+desd617,73,73,F,1.5766,2.0916,0.4353,0.46979,0.88631,0.90118,16.0578,3.1208,3.0819,46.5324,45.7221,13.1032,14.1874,216.916,213.5467,1.6202,3.5946,3.355,0.43043,0.41167,11.2721,12.3222,1.5275,1.5342,3.9127,3.898,6.1701,6.6472,4.1518,4.2444,0.0769,4.3414,2.1408,2.4777,0.38887,0.38773,4.4824,4.6132,3.6892,3.3138,1.6031,1.5729,10.1467,9.7666,2.8436,2.8997,4.1937,4.0468,4.3549,4.4845,1.6965,1.7568,1.943,1.8215,3.9306,3.6493,7.4584,7.0565,2.0844,2.1027,6.1973,6.2477,11.0364,10.751,7.6647,7.4578,2.0397,2.4125,3.5995,4.1749,1.7524,1.7233,19.6606,18.46,4.5156,6.7995,3.8132,4.1119,1.2513,0.99431,2.7869,2.6527,7.1431,6.5859,14.5541,13.7377,2.4538,3.5306,4.0166,4.2453,3.3648,2.7665,1.5031,1.5149,4.0325,4.0267,10.0857,10.0404,2.816,3.1859,2.2934,2.2232,2.0784,2.5405,10.3188,11.4993,2.2235,2.4188,1.943,2.2022,12.7071,11.489,1.8163,2.0163,1.1517,1.1778,15.1168,15.9463,5.1911,4.8334,8.2656,10.1358,3.6081,4.138,10.1625,10.5792,6.9535,7.4393,7.8905,7.7769,3.5068,3.3893,1.4801,1.709,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,616
+desd618,77,77,F,1.2064,1.6201,0.4066,0.41978,0.7548,0.7322,16.7998,2.6948,2.7719,46.7065,45.5105,14.0549,14.8204,224.0112,218.0444,1.2229,3.0485,2.8438,0.45832,0.51484,14.272,18.2943,1.4824,1.5046,3.5759,3.7691,6.504,6.3276,4.2944,4.4778,0.07519,5.1586,2.3034,2.7359,0.35599,0.36743,3.8395,4.707,4.0025,4.1057,1.925,1.7008,9.4406,8.8278,2.912,3.188,3.9933,3.6837,4.3337,4.6934,1.5192,1.5327,1.7889,1.946,3.6087,3.2088,7.2803,6.8294,2.1543,2.1293,6.349,5.7158,11.629,10.043,7.6717,7.466,2.1568,2.4943,4.7296,4.757,1.7396,1.8038,17.1033,16.8676,5.4778,6.3498,3.884,4.2465,1.0231,1.358,2.5523,2.5869,8.7052,7.5323,12.9693,12.4727,2.649,3.4953,4.0605,3.8519,3.386,3.5456,1.676,1.6004,3.7934,4.0424,9.9058,9.6351,2.662,2.9188,2.1738,2.2121,2.1826,2.3303,9.5358,10.4723,2.3948,2.6499,2.0533,2.295,12.413,12.5186,1.8786,2.1825,1.0998,1.1614,14.2656,13.7678,5.4232,5.6865,7.504,8.3486,4.0434,3.4341,9.8415,10.5103,7.2476,6.9282,7.7123,7.2184,3.5464,3.8172,1.4808,1.7436,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,617
+desd619,,,F,1.2254,0.73524,0.03898,0.00296,0.52829,0.4964,17.0389,0.00039,0.0006,44.3447,43.8844,14.0525,13.9654,76.6563,93.4871,1.027,2.2385,2.0491,0.79701,0.56191,3.3372,5.1615,0.88805,0.8757,2.1346,0.34756,3.756,5.4137,4.2681,4.4544,0.06557,4.4837,1.8955,2.2317,0.27894,0.2706,3.9181,0.02955,0.12458,3.2557,0,0,7.9793,5.0678,2.5623,2.377,0.01217,0.43185,4.2043,3.7318,0.89669,0.91296,0.75116,0.02155,1.969,0,4.8245,5.238,0.8931,1.0331,5.3595,5.1164,7.4539,6.8215,7.1949,6.0476,1.7375,0.03638,2.897,0,0.66198,0.94623,0,0,4.6078,4.3309,2.7665,1.6916,0.83221,0.92442,1.8727,1.7162,3.9657,0.00791,9.6374,10.2972,2.188,2.7388,3.5643,3.4264,0,0,0.00001,0.05771,1.3853,3.0613,8.4179,8.0475,2.1424,2.1854,2.01,1.9636,1.2776,1.7508,0,0.00568,1.8137,1.181,1.8162,1.8074,0.00078,0.00255,1.4659,1.7702,0.55918,0.64464,0.00055,11.627,0,0,0.74456,6.0982,3.7545,2.7854,1.7984,7.9356,6.018,6.0329,4.2566,4.5637,0,0,1.1316,1.318,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,618
+desd620,77,77,F,1.9673,1.6631,0.33943,0.37163,0.68032,0.61856,18.2718,2.8147,2.5252,44.5434,44.5889,13.7417,14.203,204.8212,199.3898,2.0004,2.6549,2.6793,0.98311,1.3809,22.3523,31.1846,1.5907,1.5154,3.4965,3.5212,6.5223,6.824,4.496,4.6758,0.09071,5.0892,2.1841,2.275,0.33936,0.34498,4.1127,4.4928,4.1956,3.7959,1.777,1.6704,9.5238,8.6831,2.7959,3.1124,3.6131,3.7122,4.2585,4.6934,1.3657,1.276,1.9982,1.9305,3.7816,3.3237,6.6787,6.8443,1.9449,1.8568,6.1003,5.3417,10.9046,11.6521,7.3233,7.087,2.1066,2.3362,4.2838,3.86,1.6819,1.6249,18.5382,18.4826,4.4676,4.698,3.8506,3.9422,0.99532,1.016,2.4596,2.3978,7.2652,6.6487,13.2712,13.7819,2.649,2.8064,4.0865,3.8106,3.8942,3.1969,1.3489,1.4301,3.6107,4.1836,9.6104,10.3533,2.5703,2.5647,2.3053,2.4272,1.8528,2.008,9.8283,10.0842,2.2844,2.2946,1.8818,2.3397,12.2882,12.0972,1.6462,1.927,1.1289,1.1941,13.7444,12.9747,5.3986,5.2331,7.4471,8.3409,3.7227,3.134,9.5553,9.8225,6.8894,7.437,7.5055,7.7538,3.4521,3.6967,1.4494,1.4376,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,619
+desd621,80,80,F,1.6409,3.1677,0.28869,0.33274,0.61742,0.57692,16.1442,2.8393,2.6248,42.5346,43.8841,11.6546,11.7821,175.9135,171.8839,1.4675,2.554,2.3022,0.73919,0.72752,16.6148,15.8686,1.3866,1.3777,3.0363,3.0858,6.1982,6.1409,4.1327,4.3272,0.07651,4.0424,1.8995,2.6376,0.29277,0.28477,3.9012,4.2369,3.5208,3.5366,1.4918,1.1709,7.6621,6.4981,3.2184,3.1572,3.5586,3.4296,3.924,4.1909,1.2138,1.0462,1.5613,1.6097,3.2527,3.028,6.417,5.9776,1.8392,1.9871,5.0863,5.5081,9.3017,9.4018,6.5178,6.0284,2.053,2.0197,3.98,3.9178,1.5732,1.5532,15.7474,15.3838,5.1691,3.9079,3.4751,3.3438,0.8214,0.875,2.3095,2.2815,6.988,6.6575,11.987,12.4146,2.4945,2.7891,3.6552,3.5271,2.7412,2.6661,1.356,1.3048,3.659,3.9854,9.6417,9.4853,2.4883,2.6002,1.9343,2.1383,1.8168,2.0021,8.3505,9.1361,2.0698,2.1766,1.7118,2.0492,10.8173,11.0377,1.662,1.7841,1.0981,1.1358,12.0203,12.7331,4.9027,4.9853,6.6645,7.344,3.4902,2.6071,8.2168,8.4484,6.4666,5.7033,7.3189,6.3555,2.8918,3.0662,1.1396,1.4045,,25,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,620
+desd622,83,83,M,2.6191,1.6601,0.34998,0.41846,0.8053,0.78801,17.0245,2.8146,2.5817,34.758,37.5008,14.0298,14.0919,194.9975,192.1346,2.2316,3.2322,3.1363,0.75245,0.63192,27.8355,28.2007,1.4111,1.4702,3.4495,3.7598,5.9398,6.5324,4.3167,4.5547,0.07313,4.6918,2.0201,2.5404,0.41347,0.39221,4.6205,5.04,4.578,4.8529,1.6576,1.3762,9.1016,8.015,2.6735,2.3237,4.2748,4.1455,3.8996,3.7566,1.5012,1.446,2.1566,1.9711,3.7123,3.6495,6.309,6.2374,2.1746,2.0685,5.1878,4.9021,9.3017,10.063,6.8636,5.6111,2.1928,2.061,4.9833,4.8665,2.044,1.9166,20.1227,19.4124,3.8406,5.159,4.0133,3.8039,1.161,1.2571,2.5994,2.5869,8.8107,7.6082,11.1503,12.5646,2.1773,2.6117,3.6552,3.4301,3.4705,3.6095,1.5768,1.2667,4.2673,4.4772,10.7798,10.1246,2.5263,2.5078,2.7133,2.9307,2.0384,2.2571,9.4306,11.1147,2.3987,2.3422,2.1531,2.4044,12.189,12.8559,1.8131,1.8531,1.3666,1.3888,15.565,15.2893,5.1314,4.8956,7.4589,7.9679,3.3745,2.863,9.7527,10.4126,6.659,6.5463,7.7492,7.1796,3.8404,3.122,1.3547,1.5981,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,621
+desd623,68,68,F,1.8705,2.348,0.28634,0.33274,0.76898,0.71092,13.4202,1.7904,2.2076,31.918,26.0012,10.3602,12.2296,165.7529,160.3455,1.9525,2.9478,2.5608,1.0499,1.3809,15.5524,25.111,1.2687,1.2698,2.812,2.7183,5.2375,5.4876,3.8355,4.0854,0.06387,4.1318,1.9231,1.9396,0.31593,0.32726,3.0647,3.3433,3.353,3.5856,1.3535,1.1709,8.6147,8.764,2.5168,2.4243,3.0057,3.3077,3.4986,3.5516,1.3896,1.3693,1.5223,1.6998,3.1138,2.5954,6.0282,5.8603,1.6336,1.5618,4.9759,4.9289,6.7824,8.0032,5.9072,5.8332,1.9844,1.9626,3.5388,3.8849,1.3135,1.2201,14.8866,14.4036,4.3615,5.3461,2.9884,3.2493,0.96877,0.94701,2.0438,1.689,5.6562,4.7167,8.3232,10.6925,2.5157,2.5727,3.2876,3.0576,2.6669,3.1135,1.3816,1.1482,3.5145,3.6058,7.7781,8.5872,2.5458,2.8164,1.9926,1.9054,1.2293,0.60781,8.3107,9.5882,1.9189,1.8669,1.7391,1.9091,11.2482,10.5286,1.577,1.6105,0.96188,0.97981,11.7282,11.3018,4.5393,4.4013,6.097,7.5996,3.3967,2.789,8.8065,8.589,5.9552,5.6191,6.377,5.9166,3.1879,3.0854,1.2254,1.1486,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,622
+desd624,38,38,M,1.1573,1.6479,0.47365,0.53321,1.0192,1.0396,17.706,3.2616,3.1397,49.9071,48.8077,14.2605,14.6229,212.8049,207.9718,1.1203,3.9806,3.6808,0.50539,0.52111,12.6832,13.1091,1.6551,1.6336,3.8073,3.8729,6.9086,7.1892,4.7493,4.9542,0.09152,4.9901,2.2871,2.6853,0.40882,0.40558,4.3511,4.7492,4.2808,4.4363,1.929,1.5833,11.0966,9.2512,2.9195,3.5436,4.011,4.4796,4.4464,4.4391,2.0902,2.0771,1.9507,1.8781,3.8763,3.3598,7.0561,7.3628,1.9857,2.3391,6.3994,5.8485,11.4971,11.1868,7.5148,7.775,2.2752,2.3452,4.3547,4.4844,1.7338,1.7383,18.7861,19.922,5.5177,7.0509,4.0427,4.1118,1.135,1.2002,2.831,2.9983,7.8601,6.8283,14.3784,15.1973,2.7873,3.5645,4.0248,4.3265,3.143,3.2356,1.5949,1.3049,4.0855,4.4056,10.2594,10.6416,3.5317,3.5993,2.2741,2.2083,2.4143,2.2311,10.541,11.9748,2.5115,2.6528,1.9234,2.0773,11.8206,11.3711,2.1924,2.0775,1.1172,1.1725,14.7744,14.2793,5.4026,5.2538,8.9313,9.318,4.6808,4.1879,11.5183,11.0671,8.0635,7.5473,8.5425,7.7009,3.7113,3.4214,1.4607,1.6896,,30,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,623
+desd625,,,M,1.7432,2.4181,0.3603,0.39515,0.81466,0.79912,16.8618,2.3777,2.3271,44.8116,44.0719,14.325,14.2885,203.0384,200.3927,1.8418,3.2166,3.0562,1.2206,1.3385,22.5276,25.4214,1.4785,1.5011,3.1602,3.2548,6.6487,6.6985,4.3893,4.5443,0.06634,4.8812,2.1319,2.6553,0.38088,0.39281,4.0148,4.7538,3.6596,3.7338,1.6058,1.526,12.0358,9.3483,3.1602,2.787,4.2881,4.1444,4.3975,3.665,1.6422,1.4114,1.8262,1.7378,3.5592,3.3493,7.6692,6.6344,1.9337,1.8676,6.1465,5.9187,11.2242,9.8925,7.659,7.7103,1.9606,2.5188,4.7913,5.2192,1.688,1.7445,17.022,18.6146,5.1115,5.6222,3.7179,4.0173,0.92397,1.0828,1.9606,2.7085,7.2281,7.4088,13.3795,13.6704,2.7605,3.1118,4.2429,4.4668,3.5913,3.4705,1.3481,1.4956,4.1826,4.675,10.554,11.8842,2.8535,3.139,2.1584,2.0725,2.3147,2.5337,10.7561,12.2728,2.0741,2.3339,2.0193,2.1555,11.5471,11.229,1.7599,1.8926,1.185,1.2348,11.7635,12.7452,4.962,5.09,8.702,9.0983,4.3735,2.9155,11.4796,10.2256,7.1461,7.2026,7.5089,6.8749,3.3557,3.4365,1.4603,1.4272,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,624
+desd626,74,74,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,625
+desd627,58,58,M,1.8198,1.701,0.35086,0.39595,0.90359,0.85732,18.4101,2.6987,2.8006,46.848,46.3326,16.2345,16.5436,213.1064,210.3322,1.3021,3.4111,3.3502,0.6035,0.54061,14.0815,22.1922,1.4964,1.5615,3.4955,3.5212,7.0073,7.1699,4.5429,4.7162,0.08825,4.6514,2.1363,2.5866,0.36112,0.37156,4.4803,4.6875,3.8856,4.0645,1.7262,1.5665,8.9771,8.6024,3.0493,3.1288,4.0855,4.2457,4.2201,4.2643,1.7069,1.6574,2.1351,1.9526,3.6097,3.4043,7.0986,7.1017,1.8402,2.0083,6.7955,6.362,11.0199,10.5925,7.7003,7.335,2.4036,2.3359,4.6356,4.5683,1.7081,1.8184,16.9019,18.4445,4.6664,5.5222,3.4898,3.8787,0.88883,1.0924,2.1624,2.645,7.4436,7.2991,13.611,13.0492,2.7936,3.2245,4.2869,4.5738,3.6352,3.6648,1.4682,1.3963,4.3894,4.4619,10.5746,10.457,2.7481,3.231,2.1271,2.2194,2.1452,2.398,9.9635,11.2482,2.4963,2.5123,1.8904,2.0773,13.2427,13.1986,1.8131,1.9298,1.1423,1.1701,14.2123,13.156,4.9472,5.3547,7.9386,8.3596,3.9958,3.3648,10.754,10.3844,7.0859,6.271,7.83,7.4622,3.3019,3.5497,1.3272,1.7502,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,626
+desd628,,,F,2.0007,2.3398,0.36363,0.40699,0.69746,0.75446,15.8861,3.5058,2.9733,43.2103,43.8841,13.0437,13.3684,179.8113,179.8191,1.8746,2.737,2.7014,1.157,1.1827,22.5276,27.4566,1.4408,1.4044,3.5692,3.6077,5.9759,6.0018,4.0879,4.3385,0.09045,4.0987,1.8995,2.0572,0.36577,0.3668,3.4872,4.5408,4.1806,4.2191,1.6327,1.563,9.655,8.2258,3.0958,3.0412,3.9353,3.8943,4.518,4.1254,1.4118,1.4735,1.7701,1.8514,3.492,3.0976,6.6202,6.8859,1.9065,1.9173,6.4408,6.0717,11.252,10.9586,8.0416,6.9457,1.9809,2.2284,4.4437,4.6175,1.6189,1.64,17.7966,16.4015,5.1762,5.3469,3.3153,3.6339,1.0943,1.1025,2.6174,2.5952,7.715,6.6826,14.1487,14.557,2.6346,2.8955,4.3228,4.4139,3.0284,2.7484,1.3406,1.3445,3.911,4.224,10.1131,9.7632,2.764,2.8595,2.4003,2.5088,2.1797,2.265,8.9266,10.8421,2.1623,2.4534,2.0168,2.3762,11.267,11.9228,1.6213,2.0838,1.0344,1.0478,13.9114,13.8689,5.0535,4.9853,7.3483,7.7141,4.0085,3.4249,7.6513,8.7986,6.7924,7.4313,7.2795,7.4622,3.2904,3.4748,1.3987,1.5216,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,627
+desd629,72,72,F,1.2241,1.3928,0.40112,0.43648,0.95725,0.94991,17.8395,2.9065,2.8851,46.3654,44.4757,15.1125,15.8019,261.275,257.7759,1.4324,3.5761,3.3564,0.57608,0.34929,12.513,16.6564,1.767,1.7979,3.7231,3.8839,6.8462,6.9837,4.7495,5.0564,0.0856,4.7095,2.0938,2.6047,0.45814,0.43687,4.7502,5.3592,4.9298,4.4503,2.1559,1.6616,10.2582,9.9207,2.4736,2.629,4.6103,3.7658,3.6178,3.7881,1.8101,1.7618,2.1706,2.0626,4.8016,4.4791,8.2534,7.7758,2.6917,2.6145,6.2094,6.4221,13.0245,11.1448,7.3675,6.3126,2.7614,2.5305,5.1542,5.2259,2.3643,2.1069,22.3019,20.7531,5.249,5.6598,4.2825,4.6011,1.1132,1.1939,2.7166,2.6742,10.9811,8.6758,16.2184,13.2978,3.0109,3.2317,3.927,3.5657,3.279,3.4033,1.868,1.526,4.2966,4.8597,10.7798,10.2366,2.9381,3.1112,2.5458,2.5628,2.7526,2.7218,9.7231,10.9196,2.6022,2.5487,2.3798,2.3871,12.6872,13.1281,2.3823,2.0494,1.3146,1.4188,16.5398,16.123,6.3587,8.4787,8.1802,9.0832,3.9606,3.2142,10.6544,11.1783,8.7417,7.3638,8.9394,7.7009,4.1919,4.2425,1.9364,1.7795,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,628
+desd630,69,69,F,1.4994,1.6845,0.2921,0.30794,0.73701,0.63995,17.8348,2.4566,1.9965,42.1882,38.1448,16.5675,16.6666,242.2642,237.8328,1.3123,2.9698,2.5658,0.77148,0.64214,10.9143,13.8935,1.5444,1.5891,3.6701,3.3777,5.8613,6.0547,4.4484,4.6727,0.07896,4.4765,2.0895,2.3483,0.3149,0.32214,4.2767,4.6051,3.8345,3.9407,1.6128,1.3674,8.5042,6.946,3.038,3.0106,3.9048,3.6923,4.0344,4.3767,1.381,1.4088,1.8751,1.7861,3.3523,3.5652,6.8917,6.2393,1.7203,1.679,6.1881,5.1279,9.5259,9.6776,6.3517,5.9821,2.0261,2.1568,4.5246,4.7098,1.5622,1.6195,15.7474,15.5124,4.954,4.6049,3.3492,3.3954,1.0275,1.1846,2.4179,2.4471,7.0663,6.4494,12.7,12.6184,2.6173,2.7213,3.5715,3.4132,2.8518,2.889,1.356,1.2784,3.639,4.1599,8.9276,10.1114,2.7887,2.7175,2.1623,2.2965,2.1558,2.3918,9.3087,9.9456,2.15,2.1861,1.8461,2.1134,10.5223,11.0987,1.8786,1.8775,1.2083,1.2805,12.0203,12.6023,4.4457,4.437,6.6645,7.7894,3.4902,2.7951,9.0286,9.0897,6.8511,6.5359,6.8277,6.2131,3.1005,3.4089,1.2908,1.4652,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,629
+desd631,,,M,1.7635,2.1809,0.40865,0.46555,0.88638,0.8445,18.0355,3.0841,2.8802,47.289,46.6155,15.0585,15.2872,244.2927,240.4316,1.4963,3.23,3.1557,0.45382,0.54857,14.3883,16.12,1.7519,1.7979,3.8407,3.7607,7.202,7.3807,4.8612,5.0683,0.09305,4.7538,2.0867,2.6349,0.424,0.4175,4.5469,4.8014,4.5397,4.8321,1.9727,1.6583,12.0143,10.4668,3.4045,2.8124,4.5053,4.622,5.4003,5.6454,1.8746,1.9168,2.3805,2.1407,4.3331,3.9472,8.2534,8.0246,2.1126,2.1027,7.664,7.9981,12.5933,12.533,8.9198,8.1047,2.5327,2.5951,4.7472,5.1775,2.029,1.8696,21.3402,21.2525,5.9935,6.2518,3.8949,4.0194,1.302,1.3169,3.0467,3.0303,8.9555,7.8075,16.0082,15.7612,3.4708,3.9336,4.8411,5.3126,4.1181,3.4179,1.8664,1.6753,4.667,5.2247,12.5322,12.0823,3.1722,3.4822,2.398,2.2643,3.073,2.7908,10.778,12.9365,2.6904,2.568,2.3008,2.4613,12.6388,12.4904,2.3324,2.4258,1.3251,1.3703,15.8807,15.124,5.6371,5.308,9.4078,9.7432,4.5338,3.9702,11.6259,11.5742,8.5019,7.8884,8.8345,8.47,4.0003,4.6862,1.7648,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,630
+desd632,60,60,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,631
+desd633,77,77,F,1.9673,3.1605,0.37032,0.39586,0.85597,0.92421,18.8633,3.1815,3.0891,46.3996,45.7221,15.2028,15.5227,211.8331,206.891,2.3689,3.5467,3.1706,1.2968,1.1697,33.4486,27.6636,1.5691,1.5442,4.0283,4.6426,7.0836,7.7141,4.5237,4.8226,0.06372,5.657,2.4106,2.8265,0.41955,0.40562,3.9767,4.5958,4.1727,4.715,1.6874,1.4936,9.4278,9.0578,3.41,3.623,3.7962,4.2281,5.0832,5.0758,1.6422,1.7739,1.8618,2.0075,3.5851,3.4425,7.3682,7.5174,1.6895,1.8077,6.9728,6.8617,11.7478,11.941,8.0021,7.9235,2.0071,2.2879,3.9635,4.5407,1.6049,1.6417,18.6572,19.3072,5.705,5.9594,3.5975,3.7063,0.95715,1.0462,2.8094,2.7168,7.2435,6.84,14.9589,14.1192,3.6971,4.0946,4.6643,4.3266,3.3178,3.0519,1.5031,1.4322,3.9944,4.1795,10.2779,10.129,2.8206,2.9691,2.3321,2.5124,2.3616,2.4089,10.098,11.3462,2.2645,2.4391,2.1285,2.3431,12.4228,11.6069,1.7452,2.1538,1.2173,1.2452,13.1853,13.6239,4.8578,5.9056,7.763,8.0256,4.5894,3.9702,9.3424,9.8591,7.8387,7.3722,7.0666,7.42,3.6752,3.6222,1.4494,1.3872,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,632
+desd634,70,70,M,2.7489,2.4934,0.34798,0.4164,0.72903,0.85008,18.8058,2.7281,2.9263,44.8174,43.5986,14.8592,15.1152,219.5922,216.9257,1.9764,3.1337,2.9317,0.723,0.67237,23.9601,24.6531,1.596,1.5332,3.3107,3.3512,6.5677,6.6044,4.7272,4.9817,0.08025,4.467,2.1081,2.7285,0.39933,0.41743,4.3489,4.8817,4.2179,4.2786,1.4807,1.4042,9.61,9.8993,3.8376,3.3336,3.7605,4.1485,5.5844,5.4245,1.3995,1.6502,1.9975,1.9606,3.4371,3.2226,6.9727,7.0446,2.0326,2.0302,7.2824,7.0384,10.7446,10.0447,8.1686,7.031,2.0386,2.2508,4.2543,4.8206,1.7906,1.8311,16.9207,17.4485,5.9367,5.9037,3.5685,3.8194,0.94556,1.2399,2.3493,2.8353,8.7052,7.3116,13.9812,12.5885,3.3058,4.0632,4.0239,4.168,3.5688,3.2132,1.4995,1.5727,3.6314,3.9812,9.9488,9.4371,2.7607,2.9405,2.4064,2.2356,2.2073,2.4509,11.4609,12.5231,2.0373,2.4873,2.2047,2.4785,13.5707,13.3092,1.8903,2.1118,1.3416,1.3923,12.8768,12.9795,5.4872,5.3632,8.1332,9.639,4.5338,3.6201,10.0449,9.7753,7.7549,7.4671,6.4587,7.4131,3.6204,3.4992,1.6481,1.6145,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,633
+desd635,,,F,1.2254,1.3353,0.4011,0.43272,0.88295,0.90359,16.493,2.6128,2.6642,44.2168,44.6311,13.7794,14.0919,234.7419,237.6217,1.2594,3.0375,3.0418,0.45832,0.51484,14.272,16.4888,1.7228,1.7194,3.4765,3.4516,6.9093,6.9887,4.4318,4.7191,0.08831,4.341,1.9909,2.2727,0.41993,0.41273,4.3511,5.2259,4.1919,4.5297,2.1787,1.6616,10.7221,10.4591,3.1363,2.7219,4.3899,4.4052,4.9111,4.8068,1.9052,1.6606,2.2514,2.2036,4.5784,4.4307,8.3668,8.1556,2.7332,2.6585,7.0461,6.9858,13.5794,14.593,8.2946,7.3144,2.6408,2.553,4.7227,5.3086,3.0691,1.9798,21.4648,21.2525,5.2143,6.5332,4.35,4.4376,1.0694,1.0919,2.7448,2.5553,8.7517,8.0067,16.5453,18.8747,3.2767,3.8068,4.4497,4.471,3.6102,3.3629,1.868,1.5065,4.0738,4.7152,11.011,11.7447,3.052,3.1477,2.5021,2.5789,2.53,2.6774,10.5419,10.6017,2.5869,2.6159,1.9982,2.3513,13.1199,13.8755,2.124,2.1388,1.5078,1.5941,16.1595,15.9932,5.9981,5.4185,9.3329,10.0553,4.755,3.9205,11.2368,11.3682,7.9134,9.2875,8.4958,7.8021,4.1776,4.2673,1.4801,1.672,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,634
+desd636,65,65,F,1.0614,1.5136,0.40807,0.44694,0.89568,0.89788,17.406,2.8422,2.7179,43.341,42.9947,14.4105,15.2271,247.6648,240.7816,1.0958,3.3797,3.1889,0.51198,0.44373,11.3418,10.2416,1.6961,1.6838,3.6811,3.7317,7.042,7.3652,4.5171,4.6688,0.07215,4.9457,2.2808,2.4809,0.3938,0.3918,3.7232,4.2915,3.9907,4.1379,1.954,1.5833,9.5148,8.6071,3.0653,3.1932,3.2401,3.308,4.5377,4.4391,1.7756,1.6232,1.7747,1.7537,4.1558,3.719,6.9456,6.9016,2.2727,2.4275,6.8547,5.6319,10.6336,10.3433,7.9926,6.9976,2.4928,2.5376,4.2896,4.4844,1.8762,1.8702,17.4702,19.0342,5.7823,5.8084,4.2999,4.472,1.0518,1.1447,2.5962,2.7371,7.7122,6.5707,13.5027,12.3503,3.3914,3.9099,4.0595,3.9573,3.1232,3.2415,1.577,1.4683,3.7653,4.1557,9.8438,9.4709,3.1027,3.2123,2.117,1.9962,1.8811,2.2295,8.2134,9.1474,2.3569,2.7957,1.9273,1.9836,12.9067,13.1256,1.7405,1.7153,1.2297,1.3373,13.8721,13.2358,5.4518,5.4435,6.883,7.5452,4.5806,3.8561,8.7703,9.6752,6.5685,6.3187,8.0592,7.7644,3.9895,4.0213,1.2975,1.387,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,635
+desd637,74,74,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,636
+desd638,72,72,F,1.6203,2.3068,0.4353,0.46979,0.85519,0.871,18.9252,3.2269,3.2484,53.872,51.6314,16.5424,16.2637,252.5748,257.2867,1.4166,3.3649,3.2768,0.4896,0.45813,15.3711,13.1029,1.7566,1.8629,4.7141,4.7899,7.7554,7.6113,4.7776,5.2066,0.09123,5.1803,2.5213,3.1424,0.4116,0.43803,4.4457,5.1269,4.7612,4.7795,1.9333,1.7987,11.4851,10.5471,3.2672,3.2388,5.0674,4.3879,4.8374,4.3278,1.7166,1.7505,2.2642,2.1657,4.0094,3.6086,8.3586,8.2176,2.2727,2.4546,6.7231,7.0548,13.4129,13.1241,8.6827,7.9709,2.4591,2.7562,5.2704,6.12,2.0599,2.0408,19.9341,19.1789,5.4599,6.4813,4.4065,4.3401,1.1281,1.3268,2.8339,3.0236,10.1452,8.2845,16.1744,16.551,3.3699,4.0809,5.0772,4.5567,4.8534,3.7879,1.8669,1.652,4.5318,4.8577,11.4473,11.0082,2.9151,3.2276,2.6001,2.5772,2.3612,2.7311,11.0441,14.5135,2.7286,2.9659,2.34,2.5624,13.6971,12.6387,2.0861,2.0213,1.3308,1.3665,15.8186,16.4787,5.8532,5.3741,9.3915,9.9955,4.5661,3.6813,10.4075,11.6252,7.6178,8.7673,8.8573,8.7519,3.7947,3.753,1.5167,1.6139,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,637
+desd639,,,M,1.7335,1.907,0.31335,0.32609,0.79662,0.76442,20.2468,2.5862,2.4524,53.3227,51.3749,19.6819,19.6858,233.252,227.9725,1.6919,3.3151,2.9702,0.61913,0.54061,14.9264,18.9404,1.7228,1.683,3.4568,3.2132,7.0514,7.6112,5.131,5.26,0.10665,4.8087,2.174,2.6146,0.34614,0.35595,4.1325,4.6051,4.1956,4.1686,1.6275,1.4234,10.4229,9.3302,3.2255,3.3004,4.0641,4.1787,4.5684,4.1656,1.5598,1.5804,2.1033,1.9546,3.7219,3.6432,8.1193,8.0286,1.9341,1.9871,7.5573,6.5178,12.6562,11.8236,7.5535,7.2396,2.1682,2.283,4.6893,4.4916,1.5766,1.6195,19.129,20.1029,5.4263,5.7859,3.6554,3.7465,1.0744,1.3318,2.4232,3.0645,7.4902,6.833,13.9705,14.8265,3.0004,3.6812,4.5205,3.9437,4.092,3.337,1.5673,1.373,4.0128,4.3339,10.9355,10.0543,2.8099,2.9696,2.5509,2.4643,2.2073,2.354,10.2604,12.5857,2.3005,2.3149,2.2704,2.5305,12.813,12.9605,1.6953,2.1522,1.1188,1.1825,14.303,15.0536,5.4556,5.4263,7.8463,8.7975,4.1802,3.2678,12.5354,11.5007,7.5752,7.5846,7.057,7.1147,3.5994,3.6948,1.597,1.7839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,638
+desd640,73,73,F,1.4415,1.9231,0.37753,0.41414,0.97399,0.93247,21.8183,2.9543,2.0924,51.132,51.4787,17.5212,17.6952,269.1573,265.6812,1.2841,3.5816,3.2736,0.8319,0.46197,18.1727,17.5791,1.7878,1.753,3.3666,3.2226,7.0514,8.2229,5.139,5.4311,0.0856,5.7021,2.6173,2.9056,0.42072,0.39698,4.4632,4.7119,4.7343,4.7668,1.9423,1.7921,10.6557,10.2967,3.0557,3.0346,4.4733,4.4564,4.4619,5.1005,1.9067,1.6788,2.4407,2.3081,3.9507,3.7492,8.5283,8.4465,2.2946,2.3516,8.1387,7.2986,13.0247,13.2137,8.2483,7.6426,2.4832,2.747,4.6503,4.7073,1.9722,2.0006,20.253,20.1029,5.9935,6.3692,4.3394,4.3599,1.0667,1.1345,2.656,2.5507,8.2049,7.1,15.2482,16.9706,3.2782,3.6204,4.3364,4.6549,3.9048,3.5056,1.6958,1.7352,4.2239,4.6815,10.6949,10.6224,3.1747,3.3151,2.3071,2.3972,2.5237,2.6713,11.1468,11.6598,2.6,2.7234,2.1402,2.2904,12.047,12.468,2.0751,1.9968,1.1758,1.2696,14.8152,16.2504,5.948,5.4624,8.5809,8.9492,4.8821,3.9205,10.2779,11.6839,7.5512,7.945,9.1009,8.1909,3.9782,4.4426,1.5567,1.7354,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,639
+desd641,,,M,1.2242,1.7778,0.45669,0.47721,1.0112,1.0179,21.4302,3.2616,3.2469,52.467,51.6314,19.2977,19.3243,274.269,264.8382,1.6407,3.9872,3.7395,0.50053,0.52111,16.2964,19.6813,1.8399,1.8463,4.2333,4.5662,8.0712,8.006,5.2788,5.4606,0.0895,4.8087,2.3995,2.9334,0.45822,0.43215,4.8039,5.1765,4.9298,5.0995,1.947,1.6474,9.9596,8.8339,3.3355,3.6121,4.177,4.4564,4.2915,4.7057,1.9621,1.8626,2.1795,1.9631,3.6364,3.4285,7.894,7.4826,1.9779,2.2249,6.8332,7.2467,12.2567,10.9412,8.0576,7.0595,2.4351,2.6536,5.4889,5.1811,1.7927,1.8114,19.6477,21.7276,5.2143,6.4609,4.1489,4.2597,1.1411,1.3214,2.52,2.8998,8.3148,7.0839,15.9125,13.2366,3.3871,3.9065,4.5684,4.2086,3.5138,3.6049,1.6501,1.6911,4.0929,4.7365,10.9155,10.7779,3.218,3.3717,2.5458,2.719,2.415,2.2781,9.0305,11.1024,2.5064,2.9716,2.2957,2.5596,12.2645,13.0845,2.1055,1.8746,1.2293,1.3161,15.6352,14.8471,6.3356,6.2148,7.8621,7.2811,4.5806,3.9244,10.0955,12.9099,8.7417,7.5252,8.8345,8.0227,3.9793,3.9858,1.6697,1.699,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,640
+desd642,,,M,1.4349,2.0474,0.47365,0.52148,1.0112,1.0389,19.5486,3.2801,3.2523,55.275,58.4906,16.2712,15.7609,241.6973,236.1107,1.8515,3.9391,3.8589,0.43043,0.46701,15.1081,15.1691,1.8306,1.7332,4.2474,4.6599,7.5007,7.7786,4.9821,4.8368,0.06923,5.5523,2.5426,2.7653,0.45912,0.57889,4.66,4.7603,4.6538,4.7668,1.7974,1.6807,9.9833,9.7867,2.9254,3.0178,4.5488,4.4329,5.2958,4.382,1.9942,2.4015,2.3292,2.0081,4.3083,4.1818,8.1707,7.7758,2.2547,2.238,6.777,6.639,13.026,11.7584,8.1276,7.61,2.4161,2.4569,4.8567,5.7283,2.0711,1.9903,18.5704,18.5534,4.8565,6.7995,3.989,4.3998,1.1047,1.2117,2.7166,2.6676,9.1132,7.7744,16.0264,16.188,2.9033,3.1821,4.6522,4.6057,3.4368,3.8011,1.668,1.4758,4.2989,5.0378,11.7594,11.1584,3.1107,3.5993,2.5151,2.6615,2.5551,2.5593,12.0025,13.5281,2.5591,2.6349,2.2391,2.5102,15.4733,15.2823,1.8934,1.9968,1.3666,1.3974,15.1314,15.8127,5.4539,5.845,8.8443,9.4176,3.9975,3.2111,11.1648,12.9099,7.9287,8.3479,9.4681,10.4928,3.5129,4.0353,1.7041,1.6139,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,641
+desd643,67,67,M,1.0532,2.2035,0.33255,0.37961,0.78938,0.74588,15.54,2.7586,2.7351,44.2266,44.6837,13.8782,13.5976,183.5937,188.2762,1.1281,3.1302,2.9396,0.76116,0.56191,11.468,12.7246,1.4317,1.4602,3.1172,3.2011,6.0978,6.0018,3.9635,4.2019,0.07662,4.2701,1.928,2.3794,0.33087,0.35398,3.7026,4.0964,3.3575,3.2997,1.7272,1.5505,7.7391,7.5552,3.0346,2.8047,3.974,3.7975,3.9068,3.6558,1.557,1.4042,1.6815,1.681,3.2442,3.1139,6.4112,6.6884,2.0352,2.0292,6.15,5.8245,9.7925,10.455,7.7077,7.6062,2.2402,2.4574,4.2933,4.4422,1.6283,1.5583,17.9403,17.23,4.5508,4.6717,3.7438,3.9861,1.0959,1.0539,2.4385,2.5883,7.3388,6.5865,12.7733,12.4233,2.4105,2.9202,3.7771,3.9945,3.2878,3.4143,1.5816,1.5183,3.9721,4.1086,10.0818,9.8832,2.8906,3.1551,2.199,2.1434,2.0855,2.2497,10.5834,11.0569,2.1937,2.4025,2.154,2.2782,11.0072,10.5878,1.7931,1.9032,1.1622,1.054,13.8315,13.1121,5.2929,4.6608,7.4343,7.0387,3.8521,3.0755,8.6424,8.8138,6.5753,6.2479,7.0173,6.8798,3.4193,3.7528,1.3964,1.5497,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,642
+desd644,59,59,M,1.0829,2.0553,0.47365,0.52148,0.96734,0.98178,19.3177,3.6181,3.7724,52.246,51.3749,16.2343,16.2485,233.6644,231.5152,1.2058,3.5258,3.4208,0.62167,0.50392,8.3477,11.0313,1.6126,1.712,3.9218,4.0556,7.2574,7.3432,4.7611,4.9866,0.08406,5.3514,2.6767,3.0338,0.38983,0.37809,4.8252,5.5532,3.9549,4.6529,1.8453,1.7542,11.1846,9.9313,3.5456,3.2148,4.1476,4.3491,5.1805,4.3308,1.8042,1.8927,2.0182,2.1815,4.0984,3.8139,8.2928,7.929,2.1974,2.2053,7.0218,7.3491,13.5408,12.9958,8.4174,7.7831,2.415,2.6168,5.5455,5.4468,2.0095,1.9903,19.5149,20.5379,5.2318,6.4609,4.0039,4.297,0.96357,1.1499,2.4824,3.0079,8.8697,8.0969,16.7568,16.525,3.2767,4.3706,4.5359,4.9418,3.751,3.6293,1.6007,1.6983,4.1503,4.7152,11.8125,12.6524,3.0666,3.3782,2.2122,2.2438,2.1703,2.8163,11.1992,12.5624,2.2067,2.6944,2.0631,2.3603,12.0438,12.7485,2.0578,2.4258,1.2767,1.296,15.9956,15.9663,6.3356,6.0863,8.7476,10.095,4.558,3.4209,10.8951,11.9809,8.3095,8.0384,9.5234,9.1485,4.0728,4.4132,1.5171,1.6804,,30,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,643
+desd645,70,70,M,1.8751,1.9879,0.41207,0.4871,0.786,0.7312,19.121,2.7537,2.8133,47.2982,46.7113,15.1701,15.5338,191.2965,192.0136,3.0552,2.9243,2.5551,0.88156,0.6879,34.3032,36.3813,1.5564,1.5505,3.5165,3.7195,6.4362,6.8349,4.7561,4.9442,0.08307,5.0502,2.323,2.5363,0.38849,0.3793,4.3671,4.9016,4.4397,4.5414,1.6933,1.3355,10.8675,9.553,2.8136,2.666,4.2331,4.6944,4.4505,3.665,1.4797,1.4114,2.1733,2.1482,3.7219,3.6374,7.6698,8.0619,1.9341,2.0637,6.6592,6.2801,11.2832,11.3361,7.8756,7.5597,2.1137,2.0685,4.4131,4.626,1.7698,1.7697,16.9,16.2445,5.6771,6.1169,3.6457,3.7084,1.0789,1.164,2.5683,2.392,7.8601,7.5175,13.2145,14.5863,2.5739,2.9422,4.2732,4.0253,3.4287,3.4183,1.4614,1.3618,4.0044,4.479,10.4458,10.339,2.8815,3.1608,2.495,2.5067,2.3196,2.399,10.4753,11.871,2.1154,2.2394,2.0316,2.5356,11.9364,11.8982,1.9195,2.0675,1.1638,1.2545,13.0801,13.2544,5.5635,5.3514,7.8463,8.0099,4.1595,3.1887,10.6498,10.0025,6.9663,7.8232,6.9707,6.9268,3.4632,3.3353,1.4823,1.6912,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,644
+desd646,82,82,F,1.6495,1.4237,0.33199,0.34673,0.65782,0.67135,18.2149,2.6878,2.6787,42.0401,42.0141,14.882,14.5574,223.1865,219.8805,1.0956,2.9372,2.7905,0.66079,0.70622,11.8547,15.3692,1.5024,1.5027,2.8663,2.8551,6.0014,6.2407,4.4157,4.5656,0.07934,4.3109,2.2713,2.493,0.36239,0.35723,3.987,4.1991,3.2609,3.4818,1.5732,1.4399,10.2475,9.0189,2.4154,1.8742,3.4837,3.5616,4.1327,3.4998,1.3917,1.3091,1.7829,1.681,3.3997,3.237,6.8535,5.647,2.0941,1.9565,6.8719,6.2974,10.1361,9.3713,6.6337,6.1424,2.1097,2.1242,4.7897,4.3981,1.7361,1.6281,16.4198,17.2491,5.2902,5.7157,3.4901,3.7205,1.0611,1.0947,2.4179,2.5113,7.3406,6.5123,11.4993,12.3947,3.0322,3.1802,3.6394,3.7017,3.1616,2.7968,1.4614,1.3473,3.3708,3.6512,9.3341,9.2696,2.5379,2.7861,1.9343,1.9934,1.7999,2.1672,9.1737,11.1282,2.1507,2.164,1.7402,1.9755,10.6278,11.8666,1.5454,1.7943,1.1179,1.054,12.1472,14.3766,4.9428,5.2782,7.077,9.4901,4.2762,3.2493,9.9435,11.3991,5.5752,5.4892,6.3412,6.245,3.2715,3.2229,1.2209,1.3702,,23,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,645
+desd647,68,68,F,0.93909,1.7796,0.33871,0.41026,0.81267,0.79086,15.0725,2.143,2.442,45.4569,45.9694,12.0435,12.804,207.8475,208.4223,0.85296,3.1608,3.0526,0.38198,0.39513,4.2276,7.6682,1.2675,1.2696,3.2018,3.136,5.7828,6.0178,3.8767,4.0842,0.06557,4.5285,2.2165,2.4605,0.33588,0.3502,4.0076,4.1787,3.2948,3.4546,1.6054,1.4948,9.622,9.1829,2.8002,2.7682,3.2035,3.579,4.5008,3.9864,1.6064,1.4671,1.7128,1.6726,3.1411,3.3483,7.8632,7.3465,2.0352,2.0266,6.6976,5.9451,11.5592,11.2543,7.4874,7.109,1.8806,2.2395,5.1835,5.1372,1.6708,1.5917,18.6572,19.1382,5.027,5.873,3.7009,3.8976,1.1499,1.0747,2.946,2.8104,7.1015,6.4951,14.5052,14.4608,2.6699,3.0631,3.9848,4.0192,3.0249,3.4832,1.314,1.2236,3.7856,4.304,8.7178,10.6683,2.8671,3.0323,1.6855,1.7311,1.6514,2.0994,10.8712,12.1633,2.0246,2.2325,1.84,2.1099,13.6885,14.0706,1.6063,1.8587,1.1721,1.2162,13.5233,14.4139,4.7906,4.6801,8.6764,9.7304,3.6327,3.2589,9.4686,11.3991,6.6682,7.7485,7.2523,7.1257,3.2024,3.4214,1.1396,1.4355,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,646
+desd648,62,62,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,647
+desd649,66,66,M,1.4915,2.0363,0.41158,0.44488,0.98247,0.94357,19.4632,2.9065,2.9926,46.3204,46.6539,15.4577,15.5595,233.6644,245.6422,1.0389,3.6414,3.3822,0.41122,0.37814,12.0578,13.6065,1.6629,1.6433,3.8073,4.0015,7.1682,7.4805,4.7738,4.9841,0.07591,4.6608,2.1306,2.5172,0.4115,0.41197,3.6227,4.2382,3.8487,3.8279,1.9226,1.7476,10.6387,10.181,3.0094,3.0648,3.7866,4.0472,4.653,4.5748,1.9183,1.77,1.8849,1.9445,3.6851,3.285,7.4065,7.6012,2.1971,2.2216,7.0325,6.4482,10.9587,11.6942,7.6887,7.3998,2.4733,2.6598,4.1402,4.4862,1.8468,1.9334,16.9474,19.4458,5.2143,6.6358,4.0721,4.3173,1.2688,1.1086,2.7194,2.249,7.9901,6.6941,14.5429,15.991,3.2577,3.0137,4.3009,4.2138,3.4063,3.6293,1.6262,1.686,3.5558,4.0093,10.0705,9.8724,3.1056,3.3923,2.2887,2.1538,2.2397,2.5934,9.4889,11.3752,2.5224,2.9716,1.8859,2.1393,12.1052,12.0331,1.8382,2.4288,1.1744,1.2978,14.8198,14.2793,5.259,5.1906,7.8348,8.9635,4.4744,3.8011,10.3709,11.0075,7.9936,7.9222,8.5115,7.6055,3.5681,3.7456,1.5011,1.7284,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,648
+desd650,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,649
+desd651,43,43,F,1.0437,1.5845,0.34906,0.39511,0.87013,0.83318,17.9623,2.7496,2.8472,35.0639,36.5567,16.2098,16.2364,212.1288,213.7681,1.22,3.3323,3.0832,0.6389,0.6351,11.4171,16.1099,1.6559,1.5954,3.7794,3.8888,7.2864,7.0505,4.6835,4.9351,0.07262,4.9875,1.9311,2.4701,0.36866,0.34565,4.1325,4.4953,4.0128,4.2877,1.8447,1.5632,9.6472,9.2595,3.2433,3.2794,3.8236,4.1651,5.028,4.6713,1.7055,1.6321,2.0866,2.0336,3.7229,3.7527,7.2433,7.2397,2.1974,2.2699,6.4499,6.1025,11.0199,10.9211,8.4769,7.3711,2.3834,2.5044,4.4276,4.6039,1.8996,1.9723,17.8984,18.0269,4.8995,5.9567,3.9101,4.1875,1.0288,1.1962,2.4162,2.578,7.8169,7.3397,13.4418,13.3923,3.0024,3.2917,4.0239,3.9573,3.4648,3.4189,1.745,1.6584,3.5927,4.0902,10.2264,10.5771,2.8168,3.3577,2.2177,2.2839,2.1405,2.4603,10.2031,11.6036,2.3716,2.7641,1.8764,2.2326,12.3494,12.8191,1.9694,2.0111,1.1929,1.2417,15.8016,14.7676,5.0968,5.5021,7.9386,8.8259,4.1539,3.8011,10.6824,11.1783,7.0391,6.718,7.8439,6.5938,3.5886,3.7456,1.4508,1.6558,,29,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,650
+desd652,70,70,M,2.2566,2.6714,0.29097,0.33732,0.79242,0.82209,17.1029,2.5066,2.3539,47.376,47.8809,15.5951,15.9902,195.6455,187.6717,2.7035,3.6133,3.2196,2.2907,1.3495,46.5001,44.2152,1.5261,1.4444,3.0378,3.046,6.1882,6.0733,4.5078,4.8195,0.06532,4.7414,2.3143,2.6407,0.35381,0.32917,4.717,4.8834,4.2546,3.7959,1.7309,1.4374,10.4229,10.181,3.7436,3.8162,4.2444,3.8546,5.8801,5.6826,1.6702,1.6624,2.2834,1.9936,3.7591,3.6101,8.1498,8.2525,2.0569,2.1179,7.5426,7.1014,12.5933,11.8236,9.1151,8.2622,2.406,2.3699,5.2766,5.4468,1.8926,1.6768,19.571,20.4507,6.6368,6.4612,3.9408,3.8912,1.4516,1.3127,3.2335,2.8933,8.4784,7.6204,13.7943,13.855,3.5262,4.132,5.0949,5.2492,3.9048,3.5135,1.668,1.5647,6.1239,5.0036,12.1757,12.7505,2.9314,3.3696,2.1883,2.232,2.2996,2.6345,10.9025,12.1538,2.3189,2.2607,1.9457,2.0657,13.6885,13.3365,2.2965,2.1929,1.0787,1.1387,17.0549,15.2019,6.8389,6.1341,8.702,9.3758,4.7643,3.8453,9.2836,11.5286,8.4027,7.6602,6.996,7.0541,4.0663,4.2387,1.4892,1.463,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,651
+desd653,75,75,F,1.3335,1.9878,0.37753,0.40435,0.90904,0.88549,15.4609,3.4437,3.1726,45.7527,45.3358,12.2852,12.6276,188.9378,188.3036,1.0805,3.619,3.3788,0.55737,0.41764,10.8471,12.3222,1.4927,1.4829,3.4455,3.605,6.3384,6.6497,5.0321,5.3791,0.08499,4.2516,2.2701,2.3744,0.36673,0.36524,3.3679,4.2642,3.8721,4.0771,1.6453,1.3465,8.8763,8.2665,2.4799,2.614,3.6471,3.7564,3.5822,3.7362,1.6893,1.6946,1.7505,1.8814,3.4374,3.0591,7.0941,7.1677,1.6766,1.7576,6.5135,5.8863,10.9484,11.1411,7.6875,7.0399,2.0495,2.0345,4.3071,4.1942,1.4812,1.5011,16.2296,16.3922,4.7603,5.7343,3.508,3.3068,1.2338,1.097,2.687,2.5173,7.728,5.9197,13.8825,13.2739,3.0039,3.1758,4.1216,4.095,3.0664,3.2241,1.2794,1.3506,3.9344,4.0479,9.7225,9.4214,3.0239,3.3554,2.1566,2.133,1.8528,1.9191,9.3724,10.283,2.3169,2.2422,2.1021,2.1117,10.0057,10.2205,1.6764,1.7361,1.0156,1.0199,12.6629,11.6763,5.1302,4.6124,7.2824,7.5649,3.8119,3.4278,9.0975,9.2288,7.1714,7.2878,7.3755,7.4517,3.1968,3.4857,1.3581,1.4548,,27,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,652
+desd654,,,M,1.906,2.6779,0.37359,0.40169,0.84848,0.89401,18.139,3.0661,2.86,52.4901,52.9065,14.3158,14.2885,207.7413,206.9141,2.2077,3.5946,3.4216,1.2944,1.1149,29.6512,31.4738,1.4964,1.4994,3.5275,3.487,6.4998,6.5824,4.2391,4.6351,0.06372,5.4789,2.4826,3.1424,0.40229,0.39996,4.0148,4.706,3.7408,3.7338,1.7255,1.5999,9.615,9.2765,3.897,3.6443,3.182,3.8802,4.9248,5.2862,1.6195,1.7904,1.8373,1.7867,3.5592,3.4262,7.569,7.9761,1.9915,2.1913,6.6404,6.9762,11.0295,11.0308,8.6267,8.3164,2.1655,2.2919,4.7728,4.9662,1.8383,1.9217,18.2342,18.8355,5.0615,6.6156,3.7214,4.0077,1.2995,1.0018,2.5579,2.4105,8.3722,6.7738,14.1004,13.6104,2.8502,3.0963,4.5601,4.8903,3.2812,3.0305,1.4818,1.4079,4.0301,4.2587,10.4929,9.9819,3.2048,3.3865,2.1295,2.082,2.0324,2.1756,10.8847,11.9634,2.1795,2.3931,2.0512,2.2904,12.809,12.0972,1.8463,1.8785,1.2255,1.235,13.9443,14.2595,5.5548,5.4055,8.3019,9.0355,4.0509,3.38,9.257,9.8113,7.1922,7.4566,7.2278,6.5995,3.4062,3.4426,1.5695,1.6421,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,653
+desd655,,,F,0.70972,1.2959,0.34421,0.3078,0.83563,0.73903,17.3583,2.4491,2.2608,38.9068,39.0627,15.3667,15.5561,224.1112,219.8805,0.85296,3.0712,2.886,0.39387,0.32914,8.5651,11.2279,1.48,1.4314,3.3185,3.2448,7.159,7.109,4.2859,4.4056,0.06425,4.0219,2.1788,2.3743,0.32632,0.33996,3.4537,3.8893,4.075,4.2093,1.4168,1.3231,10.2834,8.3617,3.0752,2.9269,3.4909,3.6125,4.6875,4.4206,1.5565,1.5231,2.1033,1.8167,3.1741,2.8304,6.1785,6.4193,1.8028,1.679,6.3031,5.5259,9.525,9.2094,7.0608,6.367,1.8908,2.0892,4.2837,4.5037,1.4358,1.4145,15.3359,15.3404,5.3553,5.4664,3.1968,3.4098,0.8214,0.94874,1.9884,2.037,6.3844,5.5724,11.259,10.9002,2.6433,3.3184,3.927,3.7928,3.5997,3.4294,1.3361,1.3531,3.479,3.6734,9.1884,9.3891,2.6373,2.7702,2.482,2.0805,2.1804,2.4603,10.3212,12.4954,2.2016,2.4992,2.033,2.4478,12.0609,10.3589,1.9632,1.9839,1.0543,1.0716,12.7223,11.8028,4.4074,4.1201,8.2998,8.7912,4.4664,3.4117,10.6959,10.0536,6.8406,6.3452,7.1688,6.2784,3.4521,3.429,1.6067,1.5869,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,654
+desd656,81,81,F,1.8046,2.1606,0.32574,0.34796,0.73728,0.71856,16.438,2.1957,2.1338,44.5325,44.4463,14.8867,14.4504,243.5345,241.3842,2.0082,2.8752,2.6235,0.89895,0.72752,24.2377,25.4666,1.5712,1.5847,2.9483,3.2567,6.109,6.6129,4.4743,4.6758,0.07654,4.1502,1.9878,2.6526,0.35492,0.34181,3.4711,4.1868,4.1658,4.1827,1.6128,1.4608,10.0108,9.422,2.2766,1.9387,3.2035,4.2033,2.8214,3.1715,1.4097,1.3728,1.8886,1.7789,3.4718,3.0591,6.3825,6.2204,2.078,1.6308,5.1472,4.866,9.9738,10.0806,6.5732,6.0214,1.9676,2.2542,4.624,4.4826,1.6708,1.6189,17.1331,17.23,3.8406,5.1587,3.5804,3.6691,0.98894,1.0087,2.3305,2.3165,7.1542,6.1907,13.1951,13.0458,2.0591,2.8097,3.6394,3.8015,3.1616,2.9994,1.399,1.4125,3.5588,4.2202,9.385,10.0366,2.4831,2.7242,2.5552,2.0805,1.79,2.2773,9.1566,10.2318,2.1623,2.303,2.2133,2.1754,10.0684,10.188,1.7788,1.8418,1.0539,1.0615,12.6128,13.0649,4.854,5.3437,7.8423,7.9899,3.3745,2.6071,9.6188,9.5526,7.2718,6.271,6.7759,6.5792,3.1879,3.8217,1.6481,1.4648,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,655
+desd657,78,78,F,2.2232,1.9983,0.38699,0.36041,0.81323,0.83691,18.4171,2.9093,2.5095,45.0844,46.4712,14.0881,14.456,215.1196,211.6229,1.8946,3.2781,3.0335,0.91151,0.79468,20.8601,24.3171,1.5569,1.5064,3.4792,3.5827,6.389,6.5072,4.4157,4.5314,0.07934,5.0541,2.2072,2.4891,0.32351,0.3668,4.0784,4.1485,4.0903,4.0245,1.8676,1.5454,9.9959,7.8224,3.113,2.8563,4.168,3.9354,4.1589,4.2499,1.722,1.5735,1.9232,1.87,3.6102,3.2787,7.3072,7.0765,2.1538,2.0694,6.6393,5.4912,11.629,11.1036,7.9804,7.2814,2.3407,2.4051,4.3623,4.8702,1.7549,1.6534,17.828,17.9538,5.5448,5.5906,3.8847,3.785,0.92943,1.2595,2.406,2.5869,6.5382,5.9132,14.0337,12.4328,2.8595,3.0587,4.5195,4.0231,2.73,3.0846,1.6731,1.5016,3.596,3.9007,8.9853,9.2741,2.8414,2.9696,2.3147,2.2191,2.2513,2.5471,9.654,11.5959,2.3864,2.4878,2.1426,2.3094,11.9639,10.9797,1.9446,2.1495,1.1188,1.1536,12.9133,13.7731,5.1356,4.9208,8.2728,9.4595,4.0302,3.5751,9.6342,9.1618,6.6682,7.3668,8.3288,8.1635,3.4165,3.3893,1.5894,1.5717,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,656
+desd658,84,84,F,1.303,2.3053,0.28468,0.31748,0.66914,0.67863,14.5013,2.4448,2.3864,39.2901,41.5414,11.6514,12.0021,177.7723,175.5353,1.1253,2.5942,2.3258,0.49291,0.41883,10.4673,12.0323,1.3457,1.3058,2.9419,3.1734,5.7447,5.863,3.7745,3.8384,0.06985,4.3323,1.8979,2.3747,0.32352,0.30443,3.5102,3.7447,3.4291,3.5241,1.4122,1.2669,8.2003,8.2641,2.9717,2.81,3.4843,3.0922,4.5982,4.24,1.3936,1.3117,1.668,1.8109,2.7222,2.7854,6.251,6.4238,1.7222,1.7244,5.8928,5.957,9.1927,9.6013,7.5242,6.8138,1.8843,1.8256,3.6723,4.0453,1.4247,1.4152,13.7531,13.927,4.6187,5.7343,3.0777,3.1934,0.86488,0.93562,1.9456,2.1198,6.5251,5.7123,11.7,11.7615,2.5782,3.0621,4.1069,4.1086,2.8824,2.9963,1.2663,1.097,3.5145,3.7326,9.4991,9.2175,2.3512,2.5782,1.8642,1.7303,1.8168,1.9125,8.2134,9.8791,1.9955,2.0272,1.7498,1.7416,10.1462,10.6331,1.5787,1.5947,0.96188,0.93605,11.2428,11.351,3.9938,4.2436,6.171,5.7734,3.6124,3.1956,8.2168,7.8501,5.98,6.1394,6.2989,6.9058,2.7553,3.0846,1.221,1.1515,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,657
+desd659,69,69,F,0.82014,1.9782,0.42838,0.48445,0.94447,0.85018,19.4632,3.3825,3.2439,48.2352,47.8478,16.1704,15.5489,271.7577,268.7903,0.89851,3.684,3.6848,0.41122,0.41167,4.3307,4.2156,1.9924,2.3875,4.3237,4.6387,8.509,8.5038,5.4042,5.7002,0.0791,4.6203,2.2473,2.8725,0.35327,0.40403,3.6612,4.2915,3.7167,3.9006,2.3199,1.6718,11.0488,8.7738,3.5942,3.5156,3.5122,3.9082,4.9417,5.0647,1.8042,1.8342,1.7505,1.841,4.3053,4.5553,8.0655,8.2372,2.2903,2.3867,6.4716,6.5227,11.4399,11.9897,8.4486,7.6197,2.7532,2.4938,4.1164,4.2561,2.3643,2.2307,17.8055,19.1663,5.5177,6.6615,4.5976,4.6903,1.156,1.1447,2.7977,2.6437,8.0739,6.3517,13.7059,14.0223,2.9953,3.3159,4.4969,4.7443,3.2949,3.3972,1.8308,1.4772,3.9757,4.1169,10.8608,11.3682,3.2135,3.4671,2.1219,2.2052,2.2022,2.37,10.1239,11.4977,2.4929,2.8273,2.0512,2.288,12.3146,13.4365,1.9192,2.1538,1.3669,1.3112,14.6592,15.1221,5.269,4.9526,7.3627,8.757,4.0864,3.7481,10.9728,11.6669,7.0388,7.0721,8.3394,8.0934,3.6974,3.7857,1.6101,1.7354,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,658
+desd660,66,66,M,1.0188,1.5845,0.39689,0.44694,1.0266,0.99923,17.8395,2.9757,2.9926,48.961,47.9699,15.1601,15.8275,241.6973,232.5789,1.0778,3.9562,3.5729,0.67066,0.65957,8.2404,11.6139,1.57,1.4938,3.8883,3.8966,7.3745,7.4816,4.6513,4.9523,0.08636,4.7606,2.271,2.5672,0.39874,0.40583,4.3436,5.1379,3.7839,4.1655,1.9181,1.6284,10.6342,9.6959,3.2456,2.9833,4.3899,4.2821,4.7354,4.7009,1.8996,1.8671,2.038,1.874,4.1116,3.6149,8.2978,8.1165,2.3994,2.3336,6.5161,7.0398,12.9346,12.624,7.9318,7.466,2.2805,2.4185,5.0995,4.9883,1.9726,1.9251,20.8946,19.892,5.0435,6.1711,4.3027,4.5688,1.041,1.0477,2.5683,2.756,8.3811,7.5977,15.0508,13.855,2.9953,3.5947,4.5684,4.2157,3.5722,3.5426,1.5949,1.4956,4.496,4.9629,11.2362,11.0971,2.9352,3.2697,2.2847,2.3784,2.2216,2.3883,10.4138,10.9396,2.4033,2.6349,1.9059,2.2601,13.703,12.0469,2.0578,1.8785,1.2573,1.3638,16.623,15.2893,5.7327,5.3595,8.3652,10.0223,4.5181,3.9706,10.6498,11.6051,8.3,7.898,8.9394,8.3456,3.9849,4.2005,1.295,1.7457,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,659
+desd661,73,73,F,1.4415,2.5699,0.30529,0.34872,0.61742,0.67411,17.5146,2.8393,2.548,47.2334,46.647,14.3158,14.1809,193.1778,192.4498,1.2558,2.7667,2.5595,0.67471,0.80996,14.7903,15.7483,1.4111,1.4396,3.3018,3.5801,6.109,6.3183,4.5571,4.6879,0.09549,5.1586,2.1661,2.7387,0.31235,0.31773,4.2118,4.7613,4.0205,3.9356,1.5847,1.3981,8.1043,7.8755,2.8962,2.6636,3.8336,4.156,3.6229,3.349,1.2126,1.3803,2.1351,2.0471,3.3431,3.3089,6.0359,5.5941,2.0011,2.1343,4.974,4.9948,8.294,8.6306,6.7667,6.2403,2.0035,2.0892,4.4777,4.6176,1.8028,1.8793,17.0132,17.3434,4.1136,5.0349,3.6215,3.717,0.92397,1.086,2.1727,2.2378,8.8146,7.2201,9.7986,10.8007,2.391,2.7622,3.6227,3.6517,3.5997,3.859,1.4084,1.2523,3.5234,3.976,8.6133,8.4504,2.3909,2.5995,2.4224,2.3242,2.2523,2.4107,9.3087,10.2318,1.9175,2.0384,1.9927,2.1863,10.0684,9.9601,2.0533,2.0344,1.275,1.2233,13.2124,13.8689,6.0849,5.8365,6.5474,7.8364,3.8231,2.8301,9.2968,9.2394,5.2529,6.0194,6.6822,6.2006,3.4362,3.46,1.455,1.4862,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,660
+desd662,66,66,F,2.1921,1.9408,0.3587,0.40487,0.74275,0.79027,17.8283,3.2081,3.0369,46.231,46.3144,13.8184,14.4429,221.8362,214.3011,1.817,3.2981,3.127,1.5235,1.1391,26.6813,28.7946,1.5756,1.5497,3.8694,3.7625,6.0281,6.5563,4.4726,4.6769,0.09039,4.6394,2.1363,2.4462,0.38088,0.39029,4.4161,4.9245,4.1678,4.5025,1.7043,1.6136,9.2715,9.03,2.7894,2.7817,3.9873,4.0958,4.518,3.665,1.4334,1.4603,2.1704,2.169,3.4554,3.2018,7.2911,7.5113,1.8605,1.9173,6.2807,6.1868,11.4373,12.1345,7.6647,7.0396,2.336,2.3936,4.8872,5.4779,1.7385,1.7076,16.9497,17.8174,4.6092,6.0297,3.3473,3.5057,1.2135,1.1109,2.5359,2.5841,7.6513,6.256,14.3491,15.3184,2.2906,3.2549,4.4021,4.471,3.5269,3.353,1.7034,1.634,4.023,4.6571,10.1977,11.3595,2.8337,3.1414,2.4381,2.3505,2.4669,2.5135,12.2547,12.5231,2.316,2.2691,2.0711,2.3153,11.6578,11.5573,2.0972,2.1495,1.2567,1.189,14.4769,13.7678,5.1473,4.8506,7.6891,8.1905,3.8669,3.1314,10.3976,10.2256,7.6082,7.1874,7.2679,8.135,3.4457,3.6839,1.5459,1.5876,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,661
+desd663,,,F,1.3846,1.6709,0.33048,0.35194,0.76962,0.72214,16.589,2.8108,2.5641,44.7209,42.9856,12.2102,12.9864,169.4901,165.6806,1.5677,3.1279,2.7707,0.74711,1.1214,16.3604,21.8116,1.3605,1.3431,3.0508,3.1165,5.6714,5.8789,3.916,4.1478,0.07584,4.6035,1.9992,2.2839,0.34264,0.35398,3.7732,4.1523,3.6926,4.0423,1.6327,1.3311,8.8763,7.1597,2.725,2.676,4.013,4.1743,4.738,4.3741,1.5878,1.4048,1.9177,1.9841,3.443,3.1138,7.1564,7.4144,1.7508,1.8384,6.6711,5.9553,10.5303,10.32,7.3271,7.1804,2.1197,2.2472,4.3567,4.3288,1.5505,1.5606,16.2457,14.1337,5.4068,5.121,3.4976,3.4001,1.1689,1.3535,2.5289,2.7815,6.9133,6.5123,13.5206,12.9678,3.1303,3.6115,4.1177,4.5263,3.1402,3.4972,1.6273,1.4734,3.6334,4.2202,10.3657,10.033,2.8765,2.9583,2.198,2.232,2.1405,2.4953,9.6887,11.6623,2.1665,2.3643,2.0192,2.1077,11.6976,12.2178,1.8799,1.8926,1.0384,1.0199,11.7282,13.483,4.8735,4.7759,7.2698,7.7036,4.8341,4.4032,10.5224,10.1685,6.9698,6.3754,7.3906,6.2131,3.4253,3.5572,1.5917,1.5591,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,662
+desd664,78,78,F,2.1015,1.7534,0.35875,0.41846,0.80167,0.80252,16.8748,3.1894,3.0055,46.7065,46.8022,12.1684,12.9864,221.3739,215.926,1.817,3.4557,3.2747,0.9369,0.80183,20.9617,24.447,1.566,1.563,4.1883,4.4826,6.5677,6.8909,4.4926,4.6407,0.08331,4.6394,2.1092,2.4806,0.36965,0.35868,3.796,4.2625,4.2631,4.3443,1.7043,1.5373,11.5262,10.5443,3.8419,3.877,3.5163,4.0095,5.8685,5.4337,1.5548,1.4381,1.9559,2.028,3.4846,3.177,7.2114,7.5174,1.8882,2.0083,7.4434,7.4941,12.2302,11.6909,8.211,7.7564,2.3363,2.3702,4.5803,4.2283,1.7081,1.675,17.2759,16.4015,6.1064,7.0538,3.6601,3.8704,0.95122,1.0421,2.3532,2.9104,8.3682,6.6941,15.2902,12.8711,3.6796,4.0329,4.6384,4.701,3.1835,3.2658,1.6736,1.4596,4.0838,4.6253,10.9995,11.2471,2.9034,3.0109,2.1883,2.3037,2.0085,2.3187,10.5334,11.4886,2.3067,2.345,2.1876,2.3018,10.3294,11.3625,1.9731,1.9411,1.1198,1.2447,13.0274,12.9521,5.3963,5.0169,9.1852,10.0076,4.3393,3.8,11.5183,11.6051,7.7033,9.3392,9.073,7.882,3.8261,3.5532,1.4867,1.5661,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,663
+desd665,81,81,F,1.7983,2.3061,0.38217,0.39958,0.81323,0.79912,16.6075,3.3177,2.9646,41.8136,42.8051,12.9262,12.6969,201.5903,200.9291,2.0012,3.3865,3.3223,1.2944,1.363,25.6969,28.2816,1.4831,1.4302,3.5052,3.4336,6.7515,6.9395,4.2579,4.4731,0.05934,4.1678,1.9234,2.4742,0.3743,0.37608,3.8895,4.706,4.0025,4.2913,1.7905,1.6322,9.5422,8.9214,2.8765,2.6903,3.6476,3.4536,4.1849,4.1151,1.6222,1.4878,1.8219,1.7401,3.5202,3.1838,6.8021,6.6439,1.8657,1.9182,6.2898,5.9092,11.0169,9.5404,7.6388,7.7103,2.1323,2.1914,4.554,4.8029,1.6097,1.6313,18.328,17.1374,4.5897,6.3066,3.5288,3.8828,0.98132,0.94417,2.5015,2.3596,7.6393,6.3241,13.3432,12.8625,2.4105,3.2646,3.842,3.7681,3.1849,3.61,1.4656,1.4125,4.0996,4.6726,9.3961,11.1281,2.9846,3.1608,2.5105,2.4182,1.9803,2.6276,9.279,11.5521,2.4268,2.394,2.2845,2.3251,11.3061,11.6975,1.9533,1.9261,1.1318,1.1993,14.7075,14.2032,5.2593,5.2323,8.062,9.4288,3.4725,3.4278,8.8843,9.5526,7.5978,6.7864,7.2399,6.6158,3.524,3.4857,1.5479,1.5869,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,664
+desd666,,,F,1.0344,2.0142,0.38794,0.42186,0.93717,0.96084,18.3676,2.7501,2.796,45.6943,47.2679,14.8592,15.0095,259.9497,257.2867,1.0822,3.5258,3.2736,0.58957,0.54994,11.6909,13.7011,1.8652,1.8031,3.9125,4.0496,7.4845,7.4579,4.7272,4.9063,0.07143,4.7194,2.2135,2.782,0.38429,0.3918,3.6059,4.4614,4.1032,4.6331,2.1901,1.7011,11.0488,10.3745,3.6048,3.9856,4.2583,4.611,4.8849,4.5031,1.7703,1.6975,2.0494,2.2115,4.3402,4.4307,7.1333,7.5082,2.3144,2.4791,6.4488,6.7482,10.9388,11.5102,8.1686,7.7564,2.6877,2.593,4.2896,4.7792,2.4392,2.3246,20.9149,21.4624,5.6307,6.4612,4.2061,4.3548,0.91035,0.95426,2.3478,2.0313,7.9787,7.3397,14.7209,14.397,2.9069,3.5094,4.6522,4.6343,3.5209,3.6147,1.8723,1.6958,3.9944,4.5439,11.3053,11.7447,3.054,3.1178,2.3587,2.4637,2.4892,2.7218,9.7278,11.782,2.3616,2.7234,2.0151,2.3762,11.9125,12.6403,2.123,1.9569,1.3308,1.3937,15.1168,17.2763,5.1829,5.2739,8.2241,10.3903,3.8339,3.4278,10.8458,10.5715,8.4027,7.5473,8.5351,7.7869,4.5598,4.28,1.421,1.7699,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,665
+desd667,73,73,M,1.7782,1.6608,0.3806,0.41414,0.86217,0.82955,18.6723,3.5276,3.3105,51.3695,51.2861,15.2336,15.1132,229.0916,218.6799,1.8655,3.2733,3.107,0.67846,0.66825,15.1081,18.3588,1.4269,1.4625,3.5275,3.9674,6.5958,6.5537,4.7695,4.9747,0.10157,5.4473,2.354,2.8418,0.36423,0.38007,3.3884,4.1264,4.1206,4.3443,1.778,1.5141,9.8631,7.8224,3.4087,3.2663,3.5358,4.016,4.6626,4.6044,1.7,1.6079,2.1043,2.0322,3.6102,3.2268,8.1707,7.7014,1.8119,1.9738,7.1179,6.4962,13.026,12.0395,9.245,8.8932,2.325,2.3702,4.4676,4.7548,1.4812,1.6073,15.8594,17.9085,4.7446,5.8612,3.6043,3.8937,1.1914,1.0988,2.5579,2.3418,6.7463,6.1349,15.9131,14.8551,2.779,3.2318,4.5317,4.6005,3.7581,3.2757,1.7034,1.4893,3.4491,3.9719,10.0705,9.8994,3.1553,3.4016,2.3581,2.409,1.9658,2.3182,10.3476,11.9811,2.3909,2.4608,2.2822,2.2562,11.7584,12.7485,1.5779,1.8972,1.1548,1.1544,13.7717,12.6499,5.1356,4.861,7.4458,8.7445,4.1453,3.7508,11.1253,11.1783,7.1278,7.9303,8.9394,7.9237,3.4329,3.6839,1.4701,1.7326,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,666
+desd668,62,62,F,0.97219,2.0464,0.38859,0.42948,0.86557,0.90859,15.8825,2.884,3.1461,43.2103,42.7712,14.574,15.2514,247.6648,240.4316,1.0822,3.4038,3.1719,0.36495,0.39153,9.4804,10.6412,1.6961,1.7106,3.3503,3.4616,6.9843,7.1892,4.4591,4.6325,0.0773,4.65,2.2446,2.584,0.40429,0.395,4.3436,5.2234,4.2669,4.5297,1.9409,1.5833,9.8315,8.3848,2.9195,3.0648,4.2217,4.3391,4.4619,4.7057,1.7773,1.8278,2.2834,2.0178,3.9367,3.6493,7.0668,6.9801,2.1663,2.1507,7.0274,5.6291,11.2816,10.7645,7.5873,7.4715,2.5124,2.4718,4.9537,4.8665,1.8856,1.8161,19.8375,20.5315,5.2828,5.5648,4.1108,4.2597,1.0648,1.0919,2.7321,2.755,8.6305,7.3773,13.7059,13.3923,3.329,3.6257,3.9794,3.6426,4.0271,3.6095,1.6501,1.5359,3.9334,4.5439,10.9155,10.9844,3.1579,3.3609,2.5382,2.3877,2.4781,2.7929,10.0747,11.3632,2.4489,2.6967,2.0367,2.4102,12.0507,11.3711,2.0714,2.3105,1.1343,1.225,15.1682,14.8102,6.2218,6.1341,8.4066,8.8943,4.1901,3.7345,9.7343,9.6752,6.9663,6.7011,8.0704,7.7644,4.1919,4.2163,1.4808,1.638,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,667
+desd669,82,82,F,1.9443,2.1846,0.33199,0.37163,0.62574,0.53621,15.4763,2.9772,3.0729,38.7047,36.5567,11.4282,11.7593,181.8204,171.3762,1.9525,2.89,2.577,1.1172,0.98823,18.4747,24.3512,1.3342,1.3129,3.6883,3.4659,5.9114,6.3217,4.1153,4.1851,0.06718,3.5022,2.1196,2.2594,0.34677,0.35866,3.8395,3.7891,4.8436,4.4503,1.6303,1.411,10.0514,8.7709,3.094,3.0649,3.156,3.7673,4.3094,4.2605,1.3058,1.1591,1.8886,1.7516,3.4529,3.331,6.6402,6.5989,1.7864,1.8205,5.9191,5.653,9.9808,10.0529,7.7153,6.499,2.0819,2.061,4.2076,4.4521,1.5342,1.4846,16.7945,16.1953,5.347,5.3515,3.4502,3.5912,1.1773,1.3535,2.5403,2.7371,6.4771,5.8518,11.7179,12.3186,2.5476,2.9334,3.9359,3.809,2.666,2.6764,1.3766,1.3048,3.2502,4.066,9.1,10.1722,2.656,2.6747,2.7515,2.5239,2.176,2.2416,8.6843,9.8752,2.21,2.2995,2.236,2.4753,11.2005,11.2192,1.758,1.7911,1.1105,1.2012,13.015,12.5684,5.1658,5.3764,7.7913,7.5987,3.3494,2.8296,8.5336,8.8204,6.8639,6.7252,7.1652,6.3369,3.4478,3.104,1.597,1.5224,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,668
+desd670,71,71,M,1.7662,2.5602,0.37359,0.4002,0.84848,0.91015,19.4836,2.8217,2.6821,48.2744,47.0307,15.3319,15.5684,229.3533,231.6862,1.3795,3.5712,3.4515,0.96487,0.80324,18.8623,20.7198,1.7119,1.6762,3.3033,3.3339,7.2992,7.4648,4.9821,5.1795,0.07793,4.8325,2.1742,2.9146,0.37903,0.4173,4.6665,4.8887,4.0639,4.2762,1.6874,1.763,9.7824,9.1769,3.8622,3.5443,3.8148,4.3245,5.9236,5.4128,1.6422,1.8712,1.8778,1.946,3.6456,3.4123,7.7769,7.1772,1.9996,2.0934,6.6404,6.1905,12.0794,12.6202,8.8942,8.4392,2.133,2.4943,4.2543,4.4863,1.7927,1.8793,16.3713,18.0269,5.1992,5.3124,3.7335,4.0164,1.0694,1.2208,2.3621,2.8608,8.0842,7.0492,14.54,14.1186,3.0051,3.2581,4.7296,4.7609,3.4017,3.141,1.5949,1.6004,4.1532,4.6726,10.1034,10.4413,3.2138,3.2634,2.313,2.3517,2.1988,2.37,9.8581,12.3986,2.1795,2.4188,2.1939,2.4785,12.73,12.7047,2.0578,2.1958,1.2255,1.3117,13.6246,14.2183,6.1697,5.9672,8.0063,9.4595,4.0175,3.7842,9.187,10.1731,7.4455,7.3335,6.8234,7.3685,3.4165,3.8073,1.6442,1.5662,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,669
+desd671,67,67,M,2.201,1.9408,0.29313,0.36202,0.79662,0.85586,16.7018,2.3291,2.2576,40.1162,41.8891,12.9291,13.5865,212.6955,213.6637,1.817,3.4557,3.2747,3.4118,2.2794,26.3421,31.4738,1.5006,1.4829,3.1985,3.3637,6.633,6.9259,4.2283,4.4831,0.06579,4.2206,2.0418,2.3656,0.37607,0.39372,4.218,4.8432,4.0353,4.1827,1.8107,1.5468,9.6822,8.7108,3.6045,3.7731,4.0279,4.2973,4.4068,4.0624,1.3929,1.6225,1.8743,1.8734,3.7118,3.3957,6.1642,7.1173,2.3994,2.094,5.9047,6.0503,10.3559,10.134,7.7411,6.9909,2.3611,2.4643,4.2888,4.7792,1.9521,1.92,19.1785,18.56,4.873,5.8415,3.9652,4.0128,1.1486,1.169,2.726,2.6288,8.299,7.3183,13.5857,12.3503,2.4894,3.1119,4.0166,3.8016,3.2259,3.1734,1.5578,1.4956,4.0659,4.4787,10.7798,10.1246,2.6229,3.108,2.4017,2.4487,2.1232,2.4227,9.8283,10.1492,2.4155,2.4218,2.2136,2.3556,12.3611,12.9722,1.7809,1.9593,1.4049,1.4476,15.2759,15.8737,5.3897,5.3501,8.3553,8.4831,3.7227,2.9982,10.1293,10.3233,7.4092,6.7763,7.2049,7.2896,3.5074,4.1227,1.5479,1.6421,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,670
+desd672,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,671
+desd673,,,M,2.0714,2.7942,0.38142,0.39586,0.81828,0.79912,18.528,3.0452,2.7933,50.1061,49.9308,14.2442,14.3871,204.8771,203.6258,1.764,3.1175,2.8751,0.73085,0.67237,17.2587,21.1877,1.6042,1.6382,3.4847,3.5353,6.6341,7.0188,4.7781,4.873,0.07383,5.1974,2.3642,2.8663,0.39933,0.41953,4.3489,4.7603,4.4397,4.8409,1.5749,1.4017,11.5015,11.0556,4.1188,3.9468,4.3528,4.6612,5.6182,5.6975,1.6258,1.5179,2.1334,2.1918,3.8271,3.9239,7.2855,7.8456,2.1739,2.0286,6.825,6.8617,12.1539,11.8957,9.1142,8.4392,2.0054,2.1453,4.9001,4.9652,1.8408,1.8544,18.5568,16.4964,6.0089,7.4299,3.5454,3.86,1.1378,1.0831,2.5793,2.6667,8.6493,7.5799,15.2276,15.049,4.1232,4.4832,4.843,5.1469,3.0718,3.1692,1.4263,1.4658,4.1502,4.6815,12.2162,13.0753,3.1894,3.5992,2.7182,2.7492,2.2152,2.5327,13.1671,13.3238,2.1781,2.2731,2.3361,2.5142,15.0636,13.344,1.8906,2.0854,1.1537,1.3167,16.485,14.4207,6.1193,6.09,8.8145,9.8517,4.5519,3.9702,12.5488,12.5369,7.5951,8.7619,8.5962,8.0864,3.4012,3.3501,1.5167,1.9359,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,672
+desd674,74,74,M,2.2484,2.1866,0.37023,0.47086,0.72539,0.80505,17.1042,2.9475,3.1851,44.1353,45.0794,13.6618,13.5847,183.1204,175.5307,2.2128,3.0601,2.8334,1.083,0.98823,22.3523,25.9073,1.4299,1.41,3.8316,3.816,6.3008,6.438,4.1848,4.4267,0.08239,4.4055,1.9394,2.2922,0.40119,0.40055,4.1542,4.8551,4.2416,4.5286,1.8814,1.492,9.5638,8.0959,3.3529,3.4883,3.9385,3.9962,4.2915,3.9855,1.4992,1.4961,1.9812,2.1162,3.7113,3.6728,6.9727,7.6169,2.2614,2.2618,6.1998,5.7875,11.0044,11.5102,8.01,7.3706,2.3552,2.4893,4.4148,4.7795,1.9705,1.94,16.9,18.181,5.129,5.555,4.1673,4.1871,1.2138,1.228,2.5856,2.4514,8.371,7.2737,13.305,13.8784,2.5282,3.0741,3.944,4.1958,3.8173,3.5472,1.5889,1.6584,3.7147,4.4716,10.2645,10.216,2.7381,3.1118,2.5153,2.5628,2.2698,2.4724,8.5287,10.7917,2.418,2.7952,2.2266,2.6306,12.1226,12.8559,1.8633,2.2187,1.4049,1.3937,13.2144,13.1624,5.4278,5.1639,7.2698,8.2982,3.8761,3.3175,10.0453,9.7669,7.0635,6.628,8.0801,7.9146,4.0715,4.2752,1.5415,1.699,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,673
+desd675,68,68,F,1.1521,1.4711,0.41178,0.44488,0.89961,0.91061,17.5546,2.7612,2.7962,44.6824,43.5553,14.898,15.1504,234.567,226.2861,1.1203,3.6414,3.5674,0.38181,0.40851,11.9217,13.6065,1.6961,1.725,4.0092,3.9839,8.15,8.5207,4.6835,4.9351,0.0721,4.6347,2.2946,2.4551,0.3795,0.38682,4.0148,4.7612,3.9139,3.8022,2.048,1.6751,10.944,10.0979,3.2255,3.342,4.3541,3.6082,4.8364,4.5748,1.7773,1.6546,1.895,1.9062,4.0529,3.6657,7.7486,8.0385,2.0631,2.1645,7.3504,6.8257,11.4524,11.051,7.9314,7.1973,2.6347,2.6404,4.8096,5.1367,1.6226,1.7671,18.5718,18.6825,6.2659,6.283,4.0725,4.3668,1.104,1.2392,2.6238,2.7659,7.7435,7.4088,14.7813,13.678,3.4103,3.5097,4.0661,4.3679,3.5265,3.3582,1.8216,1.4691,4.4753,4.8399,11.2847,11.3682,3.1027,3.3871,2.198,2.3017,2.5655,2.9222,11.5448,14.123,2.4929,2.8076,2.0243,2.1704,12.2162,11.8905,2.0183,2.3236,1.1172,1.2427,14.8198,16.1223,5.5522,5.6205,8.7476,10.0674,4.5361,3.6212,11.7123,13.0103,7.7577,7.5582,8.4456,7.923,3.7315,4.2773,1.404,1.6371,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,674
+desd676,67,67,F,1.3524,2.2589,0.33046,0.37961,0.76722,0.75879,18.765,2.6216,2.7351,46.1595,44.2208,15.7885,15.9721,253.2645,246.3704,1.3046,3.3077,3.0802,0.74711,0.8071,11.8451,12.2916,1.5787,1.5958,3.4389,3.2132,6.908,7.072,4.5223,4.8226,0.07334,4.7194,2.1502,2.4648,0.34201,0.34086,3.9906,4.4029,3.8483,4.0842,1.7298,1.4873,9.5628,8.6007,3.1375,3.0013,3.6724,3.8455,4.4374,4.2415,1.555,1.5804,1.623,1.7612,3.371,3.2919,7.2803,6.9337,2.078,1.9279,6.0313,5.5784,11.1909,10.4273,6.88,6.1336,2.0758,2.2401,4.5246,4.6398,1.7018,1.653,17.359,17.3382,4.4676,5.0349,3.7478,3.6686,1.0608,1.0867,2.5254,2.4209,7.1764,6.5407,13.0986,13.0377,3.0377,3.0137,3.6227,3.6566,2.9381,3.0846,1.2954,1.3552,3.9268,4.4256,9.3961,9.8654,2.9357,3.0676,2.1214,2.116,1.9191,2.1053,8.5765,10.1649,2.0801,2.2795,1.8492,2.2664,11.1084,10.9432,1.495,1.5861,1.0818,1.1167,13.8458,13.8689,4.8465,5.1043,6.9534,8.3501,4.3206,3.125,8.7703,8.3972,6.8385,5.8622,7.5813,7.9148,3.3557,3.6266,1.2368,1.4265,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,675
+desd677,71,71,F,1.5061,2.1183,0.32688,0.3637,0.74204,0.71617,17.1812,2.5827,2.6409,45.3977,44.7344,13.6618,13.784,210.1719,203.9892,1.3533,2.9465,2.5833,0.7039,0.83269,16.2077,22.2409,1.4437,1.4402,3.0985,3.3269,6.2423,6.5321,4.3212,4.6656,0.07074,4.3109,2.1502,2.4777,0.34178,0.33722,3.8357,4.2709,3.3296,3.4546,1.6598,1.4243,9.1163,7.6977,2.76,2.4315,3.796,3.5407,4.4989,3.4998,1.4702,1.36,1.7108,1.5008,3.443,3.4422,6.97,6.8267,1.8877,1.912,6.4052,5.9591,10.4915,10.1351,7.2804,6.62,2.0495,2.126,5.1604,4.8278,1.6125,1.6432,17.4987,18.0381,4.6266,5.3515,3.3523,3.7272,0.90939,0.82726,2.4632,2.2468,6.9498,6.3584,12.3274,11.286,2.1902,2.97,4.0487,3.9262,2.9137,2.7489,1.4084,1.4634,3.217,3.4843,9.1558,8.6526,2.5765,2.8801,2.1612,1.9738,2.0448,1.6677,8.407,9.29,2.0353,2.0089,1.8506,2.0384,10.3295,10.7317,1.8383,1.4705,1.1006,1.1584,13.5014,14.2142,4.9319,4.8268,7.059,7.5526,4.1324,3.8647,9.0106,8.8161,6.545,6.3576,6.8173,6.042,3.2372,3.9455,1.1819,1.2715,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,676
+desd678,68,68,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,677
+desd679,68,68,F,2.1805,2.6169,0.37032,0.48236,1.0167,0.99715,21.1231,3.5473,3.1726,51.3774,49.6062,15.2087,15.5227,259.0133,252.3158,2.0269,3.9721,3.5729,1.083,0.83934,22.5744,18.2188,2.0366,1.9322,3.6721,4.065,8.9716,9.0064,5.3058,5.648,0.07715,5.4377,2.4872,3.1347,0.40429,0.42219,4.66,4.7119,4.4507,4.6694,1.8966,1.5044,9.9833,9.7383,4.3357,3.979,4.4609,4.8636,4.7214,4.4561,1.9621,1.993,2.325,2.1978,3.8489,3.4205,8.1707,8.2176,2.219,2.3001,6.9251,7.2521,13.085,12.9861,8.8864,7.9636,2.422,2.4884,4.2825,4.5369,1.9484,1.8683,20.0056,18.9638,5.2143,6.1152,4.1304,4.2597,1.0667,1.2664,2.4232,2.8102,8.299,7.1,16.0264,15.3056,3.5509,3.9308,4.843,4.9123,4.2568,3.4357,1.8635,1.589,4.4494,4.7032,11.5462,11.0971,3.1107,3.3609,2.7021,2.8164,2.3058,2.4349,11.1617,13.5281,2.7574,2.6625,2.2609,2.6109,12.047,11.9634,2.1117,2.0979,1.378,1.3904,15.0942,15.4411,6.0849,5.8365,8.9673,9.3025,4.9629,3.9864,11.1253,11.4038,8.398,8.8782,8.592,8.3974,4.0397,4.3612,1.6521,1.9359,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,678
+desd680,66,66,F,2.2635,2.2014,0.29537,0.36355,0.70782,0.79027,18.765,2.2307,2.0219,41.516,41.8891,15.384,15.6229,239.7919,234.481,1.5343,3.1193,2.9426,1.8227,1.356,24.1438,24.0846,1.6668,1.6522,3.4519,3.7797,6.2869,6.6066,4.6372,4.9407,0.07303,5.2561,2.3083,2.275,0.37576,0.33861,4.0314,4.2709,3.9487,4.1862,1.7703,1.6658,11.5262,8.6865,3.5068,3.4771,3.697,3.9467,4.7899,4.406,1.3361,1.5117,1.6044,1.8645,3.4663,3.1207,6.9495,6.9801,1.8311,1.9196,6.5386,5.3417,10.3783,10.1935,7.8971,7.5909,2.1745,2.328,4.5636,4.5033,1.6467,1.7025,19.3284,20.032,5.6771,5.3886,3.4898,3.6918,1.0299,1.1741,2.5278,2.6654,7.1152,6.5312,12.5616,12.5685,2.8549,3.0027,4.7147,4.4089,3.1755,3.5078,1.447,1.3203,4.1905,4.4228,11.0806,10.6859,2.7902,2.9405,2.3438,2.3789,1.9282,2.3143,10.8576,11.6791,2.3996,2.6018,2.1559,2.1995,13.5346,13.1986,1.8628,1.6991,1.0551,1.1747,13.2127,13.7966,4.913,4.861,8.5253,9.6355,4.2425,3.7481,10.8882,10.5685,7.3159,7.1991,7.1222,7.2184,3.3421,3.9377,1.3983,1.543,,18,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,679
+desd681,,,F,2.2889,2.2088,0.27774,0.31392,0.77445,0.74054,14.9737,2.5066,2.3142,37.2794,37.5008,12.3825,12.7122,159.7323,147.6763,2.2209,3.3094,3.0874,1.6519,1.2296,32.5772,32.1618,1.2633,1.2439,3.5016,3.5651,5.3636,5.6673,3.8095,3.9084,0.06174,4.3959,1.8821,1.9635,0.3289,0.33122,2.7234,3.252,3.5251,3.5093,1.293,1.1283,1.1839,7.3052,2.7547,2.6323,3.0057,3.3077,4.3906,3.9551,1.4286,1.4084,1.4857,1.5681,3.1757,2.6506,6.6602,6.2393,1.6023,1.6585,4.3628,5.3117,10.4005,10.3489,4.9555,6.4066,1.7016,1.9626,3.3912,3.7555,1.1024,1.289,15.2181,15.039,4.0341,6.0224,2.9884,2.9727,0.96211,0,0,0,5.201,5.1598,12.3632,12.4296,2.0264,3.0026,3.7986,3.6566,2.6049,2.5003,1.1439,1.3871,3.3135,4.041,2.9491,8.6851,2.6424,2.6193,2.1583,2.0085,1.5943,1.6606,8.9832,9.4062,1.8489,1.9725,1.8162,2.0039,9.7467,9.5275,1.5177,1.514,0.93562,1.0772,12.5572,11.3042,3.6495,3.7126,6.2696,6.1559,3.7333,3.064,8.1187,7.6989,6.1503,6.6717,6.1222,6.9058,3.049,3.1986,1.3559,1.2505,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,680
+desd682,72,72,F,1.3139,1.8325,0.3095,0.33854,0.78395,0.81125,15.9099,2.3291,2.416,41.246,40.8498,12.1718,12.3273,207.8475,208.4223,1.1808,3.1302,3.0054,0.46983,0.49947,11.8682,13.7295,1.3407,1.3782,3.0136,3.2567,5.5432,6.17,3.978,4.1549,0.07538,4.0235,1.8414,2.6526,0.34237,0.34954,4.2214,4.8586,3.5208,3.7565,1.717,1.5756,9.655,8.714,3.0698,3.1519,3.344,3.7782,3.9569,3.8821,1.601,1.6173,1.6913,1.819,3.6944,3.252,7.1771,6.7408,1.9019,1.8935,5.8726,5.5259,11.629,10.1434,7.2669,6.8705,2.0948,2.2395,4.0828,4.0897,1.6526,1.64,18.5382,18.6722,4.7324,5.5142,3.7639,3.9717,0.90791,0.85443,2.3201,2.2308,7.7854,6.7189,13.1632,13.6564,2.3938,2.5273,3.8586,3.7238,2.6068,2.8893,1.4056,1.4125,4.0842,4.2848,9.8462,10.0704,2.8919,3.1042,1.9287,1.9375,1.9047,2.0871,9.3938,11.8537,2.1487,2.668,1.8307,2.1223,12.7812,12.1891,1.6444,1.6738,1.2462,1.3015,14.7237,13.949,5.7421,5.078,7.7568,8.4996,3.4153,2.9305,9.5659,9.5963,6.8894,7.0953,7.0173,7.1796,3.0863,3.5044,1.2779,1.3564,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,681
+desd683,73,73,F,1.7655,1.714,0.26494,0.32098,0.63979,0.68323,16.3267,2.2612,2.5176,42.1735,40.1862,13.7794,13.2882,166.1759,161.0911,1.8052,2.7915,2.5595,1.5059,0.96842,29.0169,30.645,1.4831,1.5195,3.0363,2.8971,5.7143,6.0637,4.1046,4.4513,0.08786,4.3839,2.0523,2.4976,0.32412,0.32086,3.4799,3.9115,3.6329,3.994,1.293,1.244,7.907,7.7611,3.0178,2.6499,3.4909,3.2949,3.4139,3.2028,1.1841,1.3635,1.8551,1.6868,3.3157,3.3375,5.9454,6.1212,1.5676,1.6468,4.9538,5.3201,8.1016,9.4479,6.5107,6.2589,1.4676,2.1329,3.8898,4.0453,1.2819,1.3178,14.4447,13.0473,3.8871,5.1368,0.5615,3.2493,1.0474,1.1114,2.2443,2.4669,6.5478,6.2112,9.9196,10.6368,2.391,3.029,3.363,3.5683,3.4017,3.2688,1.3064,1.4125,3.2125,3.3203,8.3131,7.6789,2.3769,2.6462,2.2046,2.1578,1.8895,2.3029,8.8208,9.9004,1.866,2.302,2.0061,2.1471,10.3155,10.4681,1.5565,1.7874,0.86423,0.99226,11.7783,11.3018,4.3662,4.5958,6.171,7.4743,3.1376,3.0225,8.1262,8.589,6.018,6.358,6.2694,6.141,3.2172,3.6085,1.3876,1.4548,,6,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,682
+desd684,,,F,0.96391,1.4305,0.38436,0.37448,0.90904,0.8853,16.6818,2.7433,2.7543,46.1005,43.6805,12.1553,12.4512,195.4331,194.1091,0.89851,3.5215,3.1564,0.35758,0.38107,8.4332,7.1916,1.329,1.385,3.2753,3.402,6.6481,6.924,4.3203,4.7548,0.08831,4.7338,2.1388,2.4238,0.36996,0.38153,3.7785,4.4281,3.9995,4.0309,2.0187,1.5544,9.5638,9.03,3.5942,3.6094,3.6643,3.7564,5.0459,5.0758,1.6893,1.6599,1.8804,1.8645,4.1558,3.8139,7.0307,6.8769,2.1424,2.0406,7.1181,6.1348,10.4518,10.3429,7.5965,6.9152,2.4205,2.4643,4.2708,4.3046,1.7657,1.7426,19.6606,18.4105,5.2609,6.1245,3.7965,3.9652,0.9789,0.95711,2.5257,2.4715,7.6256,6.6438,14.8903,13.5201,3.3182,3.921,3.8431,4.1272,3.5914,3.6341,1.6736,1.3539,3.8716,4.224,10.1462,11.349,2.9145,2.9473,2.2766,2.1578,1.8787,2.0218,9.877,11.3727,2.3569,2.5123,1.9457,2.1113,14.1,15.7442,1.8938,1.7569,1.0314,1.0655,16.8157,15.9463,5.4985,5.6432,7.6058,8.6249,4.2942,3.7427,10.4039,10.9036,7.1523,7.0293,7.9797,7.5228,3.6244,3.707,1.4799,1.5321,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,683
+desd685,,,M,1.8122,1.9242,0.36223,0.38581,0.84375,0.82841,17.1042,3.1769,3.0891,50.5497,50.868,14.0187,13.9654,225.4359,216.3348,2.9852,3.1017,2.8595,0.70855,0.72065,34.3032,37.4298,1.6059,1.6295,3.6873,3.7474,7.2128,7.5452,4.4392,4.7381,0.06153,5.3115,2.3494,2.9806,0.35622,0.3749,4.1811,4.1983,4.0413,4.1302,1.7572,1.7188,10.0903,9.9207,3.1718,2.7666,4.168,3.6082,4.8643,4.1815,1.6944,1.6736,2.1776,1.8167,3.5208,3.1244,8.3507,7.9227,1.9519,1.9376,6.6099,6.2659,11.5745,11.7106,8.6827,8.1669,2.3304,2.5265,4.2979,4.7503,1.7385,1.5853,17.8634,18.6146,5.0735,7.1588,3.6601,3.7203,0.91818,0.97539,2.486,2.4072,7.9787,6.2331,14.4871,14.4608,2.9678,3.6447,4.6508,4.5282,3.4796,2.8947,1.745,1.4613,3.8402,4.3723,10.1423,10.129,3.1566,3.6922,2.1909,2.1538,2.2136,2.6226,10.533,10.3086,2.231,2.4751,2.1402,2.2384,11.7584,12.0433,1.7931,1.9298,1.0609,1.1133,13.233,12.7089,5.1854,4.861,7.7679,8.7812,4.4534,3.5935,10.6321,11.6839,7.8387,7.1061,8.3154,8.8303,3.5559,4.0968,1.5951,1.5876,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,684
+desd686,67,67,M,2.0592,2.9737,0.32875,0.37163,0.78957,0.77604,15.54,2.5686,2.3883,41.6776,40.9443,12.5599,12.9305,214.4218,211.5953,1.7914,3.2514,2.9787,1.2968,1.1802,20.9617,19.7701,1.5495,1.5483,3.441,3.5891,6.3445,6.6563,4.0983,4.3026,0.0592,4.2476,2.0943,2.3922,0.32855,0.34086,3.7724,3.7891,3.752,3.937,1.4168,1.37,8.0545,7.9803,2.308,2.0926,3.6484,3.5536,3.7048,3.5075,1.6117,1.5231,1.8537,1.5836,3.1985,2.9111,6.8976,6.1158,1.5931,1.6831,4.9555,5.7087,10.0606,10.5122,5.7616,5.6016,1.885,2.1319,4.7066,4.8286,1.4174,1.4901,16.1474,16.0813,4.1136,4.9112,3.019,3.3897,1.0072,1.2013,2.2617,2.3196,6.4258,5.8097,12.9666,12.8216,1.9227,2.9607,3.1703,3.5476,3.0302,2.6236,1.3185,1.4125,3.5856,3.9134,8.6625,8.5862,2.6897,2.8164,2.1383,2.1517,2.2401,2.0968,9.308,10.3273,2.117,2.2758,1.8621,2.0287,10.8149,9.6896,1.6339,1.6876,0.9568,1.0772,12.967,12.3174,4.3475,4.3949,6.6869,8.448,3.3671,2.9305,9.1446,9.7743,6.5286,6.4601,7.0173,6.8856,2.9307,3.2984,1.3243,1.3116,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,685
+desd687,,,F,0.96391,1.9683,0.38436,0.42948,0.85179,0.86678,18.4167,2.9099,2.9334,45.8701,45.9534,15.3206,16.2466,267.0388,262.7257,1.3199,3.2868,3.0832,0.44021,0.40205,9.3245,9.3251,1.73,1.6981,3.3802,3.3801,7.0833,7.6457,4.733,4.9063,0.07262,4.9937,2.1871,2.6349,0.37921,0.38596,3.6059,4.2642,4.2348,4.3787,1.7931,1.5635,10.0928,8.844,3.4045,3.4042,3.6347,3.8269,3.9233,4.1975,1.6187,1.8051,2.1883,1.8469,3.7308,3.5344,6.9795,6.9429,2.0996,1.9665,6.5811,6.1344,10.9084,10.3938,7.5401,7.4574,2.2261,2.2322,4.574,4.2041,1.7718,1.7049,17.1763,17.4396,5.0285,5.6957,3.6261,3.9297,1.0648,1.1028,2.5015,2.6782,7.5734,6.4805,13.0066,13.0492,2.917,3.1118,3.8431,3.9924,3.6679,3.3711,1.4922,1.4475,3.7861,4.1477,9.3593,10.2529,2.7628,2.8781,2.482,2.5628,2.0918,2.538,9.6913,10.9738,2.309,2.4628,2.3438,2.3384,13.4046,11.8704,1.8116,2.1538,1.1978,1.2912,15.887,15.0896,5.4491,4.9107,8.2728,9.1169,4.3805,3.6472,9.8461,10.4569,7.0181,7.0812,7.2099,7.4638,3.7418,3.4992,1.5479,1.5275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,686
+desd688,,,F,1.8719,2.2777,0.29367,0.33643,0.70782,0.75571,16.589,1.7904,1.6365,40.1162,40.1862,13.1359,13.5134,193.768,190.9265,1.3921,2.8773,3.0114,1.8227,2.4151,20.3675,22.3409,1.3159,1.3782,2.7027,2.9976,5.4271,5.8946,4.1144,4.3744,0.06895,3.7736,1.8978,2.412,0.3289,0.33044,3.0547,3.4415,3.5491,3.6205,1.2883,1.2013,9.215,7.974,2.9717,2.9683,3.5447,3.464,4.3906,3.839,1.3361,1.4735,1.7125,1.6617,3.3157,3.0064,6.176,5.5941,1.4337,1.5903,5.5892,4.9021,10.2323,8.88,7.2899,6.9263,1.6305,1.9649,3.9625,4.0779,1.3077,1.4058,14.5359,15.4708,4.9535,5.1693,2.9884,3.2009,0.76993,0.99768,2.1904,2.0826,5.7327,5.0106,11.8607,11.3461,2.4852,2.3704,3.7986,4.0298,2.971,2.7267,1.1439,1.2441,3.5566,4.0922,8.8094,9.7931,2.5985,2.7534,1.9205,1.9261,1.974,2.3381,8.7491,9.9004,1.9127,1.9458,1.7401,1.9091,10.3155,10.6964,1.823,2.3003,0.99225,0.97981,12.5051,11.3042,4.6205,4.5485,6.2404,7.845,3.56,2.8245,7.8982,9.6319,6.787,6.5275,6.7344,6.9261,3.1351,2.9626,1.3803,1.4037,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,687
+desd689,80,80,F,1.3485,1.9365,0.34366,0.40203,0.72047,0.78381,14.8491,2.6329,2.8472,43.2933,42.7712,12.6874,13.3627,203.3559,200.2379,0.99997,2.7682,2.8738,0.52536,0.55107,11.5201,13.6065,1.2675,1.2944,3.2456,3.5409,5.7309,6.2727,3.9107,4.1256,0.07786,4.6779,2.2356,2.9126,0.38703,0.38422,3.8597,4.4628,3.8941,3.9087,1.7096,1.3301,9.7211,8.2935,2.8537,2.4821,3.7906,3.9881,4.5008,4.5532,1.4787,1.6233,1.8938,1.9959,3.3536,3.2598,6.6588,6.5488,1.6958,1.6806,5.5955,5.9031,10.7078,9.3001,7.7997,7.1949,2.1066,2.168,4.2552,4.0497,1.5622,1.5684,15.8147,16.2676,3.9228,5.2674,3.5655,3.1832,1.0638,1.2518,2.404,2.7629,7.2009,6.4913,14.7741,11.413,2.6821,2.8797,3.9008,3.9573,3.238,3.5102,1.4901,1.3261,3.862,4.3803,11.2412,10.6859,2.5224,2.8084,2.1981,2.3494,2.1703,2.4362,9.8526,11.0579,2.2717,2.2464,2.1024,2.0593,11.4526,12.6388,2.03,2.0129,1.0553,1.1785,13.402,13.206,5.1254,5.1214,6.6432,8.1567,4.0754,2.9737,10.0829,9.3483,6.9084,5.9411,7.2502,6.8696,3.2215,3.9512,1.5101,1.6424,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,688
+desd690,,,M,1.7692,2.3628,0.35128,0.38088,0.58763,0.56069,16.4468,3.0644,2.8677,43.1869,43.9655,13.1238,14.18,216.9418,213.1765,1.6565,2.7499,2.3865,1.1529,0.9251,22.3641,21.5615,1.5756,1.5627,3.4518,3.4564,6.1754,6.7659,4.1518,4.3251,0.06798,4.4087,1.9574,2.4315,0.33314,0.35762,3.7724,4.2505,3.5284,3.7761,1.5737,1.4063,8.7598,8.0827,2.74,2.6745,3.497,3.7968,4.1187,4.0584,1.2651,1.1673,1.6922,1.7867,3.2243,3.3513,7.337,6.4576,1.9155,1.9845,6.401,5.7652,11.0946,9.6693,7.19,6.5239,2.0669,2.0924,4.3231,4.2832,1.6125,1.6445,17.0588,17.2683,5.5586,5.6491,3.3256,3.688,1.0474,1.3891,2.5617,2.5673,6.8183,5.9402,14.3049,13.1739,2.5476,3.5556,4.0845,4.012,3.2949,3.0444,1.2908,1.3053,3.7856,3.9703,9.763,9.7656,2.7068,2.7176,2.0129,2.1265,2.0579,2.0723,9.2833,11.7269,2.2296,2.2895,1.7823,1.9482,11.0944,11.9053,1.7643,1.6792,1.0866,1.1234,12.34,13.045,5.2668,4.6149,7.8114,7.703,3.5453,3.6446,9.228,9.5963,7.3304,7.0896,7.1652,6.4164,3.1447,3.46,1.326,1.3337,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,689
+desd691,57,57,F,0.97219,2.0565,0.3887,0.43588,0.92482,0.93694,15.9782,2.7433,2.8797,45.7527,45.3358,12.6077,13.3627,209.5672,199.762,1.6012,3.6414,3.1706,0.50557,0.47482,15.5073,13.2896,1.4535,1.4293,3.6542,3.6697,6.0299,6.5324,4.1197,4.3505,0.0892,4.7502,2.1071,2.7359,0.45814,0.4197,4.2012,5.1149,4.2447,4.2128,1.6705,1.3355,9.4278,8.5927,2.8613,2.4821,3.6584,3.7729,4.1802,3.4301,1.7835,1.7206,1.9712,1.9795,4.0664,3.6493,7.6897,7.6172,2.3123,2.286,6.2753,5.5622,11.2832,11.9431,7.2766,6.5649,2.1988,2.0924,4.8872,5.473,1.8856,1.8702,19.5598,19.6225,5.2675,6.0264,4.1427,4.2231,1.135,1.208,2.8408,2.6167,8.3148,7.5516,14.3049,15.5411,2.649,2.9748,4.5205,4.3583,3.43,3.5506,1.5768,1.313,4.4084,4.5149,10.5846,11.3595,2.9001,3.3577,2.3548,2.2733,2.0588,2.1707,10.3026,11.8231,2.3778,2.2995,2.0373,2.3153,12.6388,13.1306,1.8131,1.7612,1.2498,1.3596,15.6729,15.6956,5.6773,5.515,7.9138,8.2508,4.2139,3.1461,11.1648,10.7882,6.7893,6.9714,8.8179,8.0934,3.8404,3.9377,1.6067,1.4683,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,690
+desd692,76,76,M,1.5559,2.2088,0.41967,0.47015,0.9567,0.94014,18.3099,2.9277,3.1277,44.4048,42.9856,14.0826,15.2682,233.3043,237.6217,1.0389,3.3593,3.0368,0.54862,0.40647,12.2949,12.4405,1.581,1.5431,3.4499,3.53,7.1647,7.5241,4.6823,5.0437,0.08168,4.3915,2.1285,2.2749,0.40532,0.40852,3.6227,4.3072,3.9349,3.8022,1.9261,1.6953,10.4493,10.0478,2.4765,2.636,4.185,3.6082,3.6957,3.6543,1.8605,1.7206,1.8721,1.9553,3.7062,3.3786,8.055,7.6878,2.207,2.3139,5.6893,6.7557,12.4566,11.2932,7.2984,6.6398,2.3512,2.4943,4.1706,4.5103,1.8294,1.6533,20.216,18.46,4.8115,6.6358,3.9216,4.3173,1.2128,1.1846,2.7515,2.7873,8.4907,6.7466,14.9277,15.991,2.4754,4.0712,3.6774,3.7823,3.1982,3.1692,1.6007,1.5872,3.9639,4.3267,10.5746,10.3525,2.9381,3.043,2.2006,2.3017,2.0784,2.5104,10.7664,11.7576,2.5161,2.6802,2.0977,2.1704,12.7812,12.6866,1.7802,2.0461,1.1899,1.2919,14.5554,15.5468,5.4414,5.0804,8.2259,9.5017,3.4082,3.4542,11.0085,11.4096,7.09,7.2026,8.1518,7.7609,3.8261,3.7445,1.4845,1.6424,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,691
+desd693,,,M,2.3602,2.9031,0.14032,0.16158,0.83391,0.69515,14.4951,2.1816,0.00075,31.918,32.6378,11.7082,12.2415,94.0231,69.2732,2.165,3.0354,2.8504,1.1642,1.103,23.9601,24.2618,1.3485,1.3328,0.65264,0.79482,5.3345,5.499,3.8951,4.1507,0.06805,4.7314,2.0486,2.3445,0.32855,0.32814,0.01082,3.2967,2.0098,0.46849,0,0.55737,1.1839,6.2744,2.6818,2.377,0.30663,3.2248,3.7315,3.438,1.4588,1.2706,1.3705,0.90154,0,0,6.0282,5.5762,0.23156,1.0331,4.8365,4.8529,8.7702,9.0866,5.9288,5.921,1.4676,0.22842,0,0,1.136,1.289,0,13.8636,3.5569,4.2477,0.5615,1.4103,0,0,0,0,0.00154,5.0306,9.934,10.4941,2.3876,2.4894,2.6426,0.40331,2.482,0.00015,0.01065,0.65244,3.0192,3.3874,6.4692,6.5694,2.7144,2.8395,1.8795,1.7975,1.4476,2.0783,0,8.1361,0.77084,1.4214,1.7401,1.9235,0,10.5862,1.5309,1.8326,0.88717,0.87415,0.00052,0.00013,0,0,1.1506,6.0253,3.1221,2.8935,7.6841,1.7797,6.4699,5.6422,5.7627,6.3723,2.581,2.7339,1.1692,1.5138,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,692
+desd694,82,82,F,1.9443,1.505,0.38217,0.36041,0.81323,0.83691,16.8748,2.7477,2.6533,44.2168,45.0794,12.6576,13.3627,201.9419,194.6723,1.4967,3.3865,2.7078,0.93407,0.79468,19.1836,20.2442,1.4017,1.3677,3.3923,3.1863,6.1684,6.423,4.3212,4.5147,0.06836,4.9096,2.1563,2.5975,0.32973,0.32912,3.5866,3.6751,3.9007,4.1044,1.5053,1.448,8.9583,8.1706,3.351,3.0364,3.6484,3.5289,4.5664,3.9989,1.5559,1.4739,1.8551,1.7712,3.3098,2.8371,6.5829,6.4178,1.8475,2.1122,5.4694,5.9031,9.8386,10.4329,7.2921,6.9263,2.0103,2.2343,4.2511,4.3599,1.5144,1.4147,16.5221,17.1232,5.1691,5.7175,3.3303,3.6508,0.94522,1.0396,2.2873,2.549,6.3937,5.6687,11.4578,12.1925,2.7084,3.3288,3.5847,3.9804,2.9696,2.8302,1.5225,1.407,3.1766,3.7408,9.1188,9.2995,2.7144,2.9405,2.1037,2.0413,2.0792,2.0528,9.0473,10.761,1.9636,2.2588,1.9139,2.1272,10.6278,11.5328,1.687,1.8782,0.94846,1.0318,13.5541,14.141,4.3475,4.2012,7.5235,7.3055,3.6442,2.7232,8.5336,9.8046,6.1268,6.8094,6.4508,6.6487,3.1827,3.3445,1.3872,1.3651,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,693
+desd695,75,75,F,1.6914,2.1377,0.39267,0.41321,0.81053,0.79891,16.2031,2.7861,2.7236,26.9492,29.3947,13.1125,10.7472,214.4995,213.1765,1.3861,3.276,3.0526,0.4579,0.4114,15.0825,15.1691,1.541,1.5818,3.7056,3.7474,6.5677,7.2176,4.266,4.5907,0.07678,4.6708,2.0194,2.2552,0.36763,0.3668,4.0261,4.5673,3.6431,3.9127,1.8172,1.5453,10.6495,9.3164,3.1924,3.162,4.1937,3.8546,4.2223,4.1656,1.7149,1.5579,1.8849,1.8394,3.7151,3.507,7.7255,7.4957,2.0926,2.0694,6.4317,6.5007,11.4744,11.2161,8.01,6.499,2.3454,2.3732,4.3869,4.527,1.7781,1.931,17.8334,18.181,5.3553,5.8761,3.7967,3.8823,1.0391,0.96247,2.4686,2.4715,7.6448,6.6438,14.5541,14.0082,2.5289,3.1473,4.3442,4.1709,3.1817,3.2242,1.5037,1.4578,4.0614,4.675,10.5746,10.0353,3.0423,2.9516,2.2934,2.1538,2.0784,2.5476,9.9962,11.8666,2.2339,2.4873,2.0199,2.3017,11.4997,11.9453,2.1068,2.1021,1.0409,1.1084,14.8528,14.2914,5.1136,5.226,7.3278,8.6034,3.7911,3.2554,10.6511,10.5664,8.7756,7.583,8.3589,7.7869,3.2341,3.4015,1.4761,1.7436,,26,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,694
+desd696,,,M,2.0909,2.4283,0.37592,0.40797,0.80898,0.88019,19.1081,2.9664,3.2433,47.3925,47.977,15.4577,15.3233,200.671,192.0511,2.3689,3.1986,3.0823,1.3521,0.98823,32.6771,35.2975,1.5261,1.5186,3.5256,3.9674,5.785,6.3151,4.9193,5.0683,0.07963,4.9321,2.2006,2.4848,0.37608,0.38422,4.6817,4.8666,4.2546,4.4273,1.6058,1.5717,10.8155,9.6728,3.2294,3.1698,4.1378,4.4266,4.9356,4.2724,1.5978,1.6513,1.9493,1.8592,4.0767,4.0054,7.5386,7.1392,1.9797,2.0793,6.9569,6.3392,11.7629,11.3663,8.9171,7.9168,2.2316,2.4574,4.2979,4.371,1.8071,1.902,17.9113,18.0269,5.3797,6.2736,3.7817,4.0128,1.0959,1.0764,2.5249,2.2716,8.3291,7.0902,14.9589,14.0082,2.815,3.5212,4.3783,4.2177,3.476,3.3711,1.562,1.4835,4.0223,4.4456,10.5945,10.1777,2.8432,3.2203,2.3847,2.5669,2.0408,2.275,10.3188,11.9255,2.3285,2.4393,2.312,2.4406,11.5031,11.857,1.8463,2.0471,1.1537,1.1887,13.4679,13.0121,5.4292,5.4277,8.0641,8.4522,3.7279,3.1314,10.3299,10.5685,7.8222,7.4062,7.6612,7.01,3.3345,3.519,1.5652,1.6978,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,695
+desd697,72,72,M,2.655,3.3151,0.38212,0.4002,0.83472,0.82347,20.0511,3.0675,2.4915,44.9029,46.3144,19.6819,22.1671,274.269,264.8382,1.8157,3.4092,3.1856,2.333,1.5606,27.8541,33.0259,1.7878,1.76,4.562,4.6401,7.4658,7.7499,4.7738,5.0816,0.08187,4.9098,2.1822,2.6861,0.40169,0.40543,4.0449,4.7562,4.2631,4.193,1.9409,1.5591,9.9833,8.3848,3.6674,3.5156,4.1725,4.5054,4.8648,4.6747,1.5559,1.502,1.9403,2.2218,3.9924,3.633,6.7149,6.8975,2.0828,2.1913,8.2003,7.418,10.3388,9.1474,8.7088,7.7479,2.4574,2.5044,4.6107,4.6044,1.7906,1.7795,17.8055,17.0774,5.2269,6.1117,3.8739,3.9634,1.0939,1.1148,2.5889,2.5841,7.6286,6.9886,13.5111,11.413,3.2767,3.7523,5.1058,5.1469,3.4459,3.2288,1.5468,1.526,5.0315,4.9147,10.9272,10.9844,2.9925,3.0873,2.7146,2.5113,2.6297,2.8888,8.8302,9.7018,2.502,2.568,2.2806,2.6651,11.7262,11.6796,2.3043,2.3435,1.2551,1.3028,14.6258,16.4787,5.514,5.5141,8.2241,7.9048,4.2807,3.5781,9.7843,9.6752,7.0983,6.6397,7.0993,7.0749,3.5021,4.2257,1.7794,1.7715,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,696
+desd698,80,80,F,1.7205,2.3061,0.36634,0.37252,0.65782,0.70742,14.0597,2.8581,2.8888,41.4208,42.0877,12.0467,12.1993,197.4064,196.6974,2.1695,2.89,2.8594,1.591,0.81228,24.6327,22.5146,1.5685,1.5129,3.2185,3.1469,6.3445,6.712,4.0537,4.2817,0.07149,4.4217,2.2031,2.2922,0.37921,0.3722,3.4098,4.1665,4.0025,4.2182,1.647,1.3813,7.8043,8.7033,2.9201,2.8047,3.6452,3.4714,4.2208,3.8352,1.1841,1.4232,1.8219,2.028,3.459,3.3375,6.7847,6.8122,2.0098,2.0363,5.6078,5.8139,10.3783,10.0698,7.3975,6.7154,2.0666,2.061,4.5803,4.5069,1.7633,1.6281,14.7771,17.1141,4.5417,5.1595,3.4608,3.6112,1.0033,1.243,2.4465,2.8353,6.8316,5.9402,13.132,13.3602,2.6741,2.8618,3.6938,3.7823,3.652,3.5732,1.5225,1.4158,3.4772,4.0438,8.8201,9.6546,2.7883,2.7864,2.3854,2.1949,1.7577,2.0237,9.3578,10.1847,2.2384,2.2152,2.1513,2.0593,11.6466,11.3856,1.5548,1.8485,1.1782,1.2125,12.34,11.6029,4.5919,4.8888,7.202,7.5452,3.9385,3.4603,9.3058,9.7034,6.2515,7.107,7.2488,6.8573,3.7856,3.7177,1.4193,1.4827,,10,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,697
+desd699,79,79,M,2.3554,2.528,0.35908,0.37573,0.84859,0.87665,19.0873,2.9012,2.8973,52.136,53.3131,16.2603,16.4775,226.5443,222.2557,1.8804,3.5737,3.2963,1.3138,0.80833,21.4729,23.1056,1.5748,1.6101,4.1883,4.0548,6.0964,6.3917,4.6548,4.7993,0.08182,5.7295,2.4037,2.97,0.33923,0.39039,3.9888,5.0653,3.9291,3.9875,1.6952,1.3515,9.5111,8.3233,3.3529,3.0459,3.8788,4.281,4.5113,4.3734,1.6252,1.6967,2.0784,1.9804,3.2742,3.23,7.894,7.3659,1.7185,1.9282,7.1162,6.4182,12.5272,11.1448,8.478,7.5703,2.1151,2.2165,4.3481,4.602,1.5878,1.5775,16.5951,18.0674,5.289,5.7859,3.5288,3.5444,0.94508,1.0543,2.5158,2.5482,7.6393,6.3241,15.1793,13.9946,3.2577,2.9863,4.4323,4.059,3.4287,3.1969,1.4462,1.4648,4.1098,4.3793,10.8285,10.7938,3.1435,3.3515,2.5824,2.2883,2.3606,2.498,8.8352,9.7018,2.1495,2.5272,2.4137,2.408,11.2387,10.8385,1.8633,2.1633,1.1412,1.1544,12.9133,13.5356,5.5704,5.3741,7.2978,8.3125,3.9438,3.1461,9.8415,10.611,7.6887,7.8346,8.6143,8.1057,3.4275,3.7391,1.7211,1.659,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,698
+desd700,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,699
+desd701,,,M,1.5598,2.3519,0.32695,0.33492,0.85789,0.89401,22.0227,2.3362,2.3042,53.3227,51.7551,20.1528,18.5846,301.2319,289.5558,1.2541,3.4143,3.3085,0.60023,0.50891,16.9137,16.0797,2.0607,2.0654,3.4955,3.3147,7.4154,7.7973,5.5358,6.5029,0.07289,4.8961,2.2423,2.5833,0.33463,0.36657,4.3017,4.7414,3.8345,4.0842,1.7262,1.4503,9.6779,8.7777,2.272,3.0567,3.8353,3.9903,3.7056,4.0006,1.702,1.7304,1.946,2.092,3.5967,3.2787,7.5841,7.6213,2.0941,1.9565,6.6846,6.0644,12.0364,11.9897,7.5911,7.1587,2.2909,2.3409,4.7442,4.3981,1.7396,1.7522,17.4425,17.8445,5.5035,6.305,3.5735,3.6766,1.1499,1.0984,2.5147,2.5839,7.7854,7.3763,14.0511,13.8299,3.0325,3.1802,4.2779,4.2021,3.0754,3.2668,1.5618,1.6307,4.1515,4.4731,10.8285,9.9015,2.7134,3.1821,2.1158,2.2649,2.1136,2.0983,10.2035,11.8171,2.3858,2.6031,1.9729,2.1262,12.4549,11.9276,1.8444,1.7915,1.1747,1.3692,13.4238,13.9897,5.514,5.5574,8.2654,8.0809,4.2727,3.2117,9.6917,9.9009,7.2022,6.6285,8.1233,8.3006,3.4643,3.8601,1.3957,1.6448,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,700
+desd702,71,71,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,701
+desd703,60,60,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,702
+desd704,68,68,F,1.8705,2.0842,0.33293,0.37454,1.0118,1.0389,16.6399,2.7586,2.6953,43.4399,43.6108,12.4688,12.4404,183.164,188.2762,2.0012,3.9562,3.6808,0.96117,0.97396,19.6009,17.4876,1.3243,1.4068,3.1933,3.4071,6.5098,6.6813,4.1609,4.3349,0.0666,4.024,1.9338,2.1274,0.32784,0.37409,2.7234,3.5832,4.8436,4.6767,1.6303,1.488,9.7385,8.9364,2.6925,2.5118,3.9589,4.1877,4.9336,5.1317,2.1282,2.1113,1.8085,1.7447,3.3422,3.2018,8.1594,7.683,1.6907,1.7665,7.469,7.0699,12.5933,12.6597,7.5137,7.4715,1.9809,2.3409,4.7066,5.1063,1.4247,1.5352,16.4094,18.6146,5.2269,5.956,3.7885,3.5866,1.2128,1.1072,2.6034,2.7089,6.2531,5.7994,15.0508,14.9531,3.5953,4.7783,4.3247,4.4864,3.3483,2.8897,1.5225,1.3536,4.4639,4.4619,12.6383,11.9956,3.5317,3.3085,2.7515,2.5969,2.3223,2.4288,9.1008,11.1024,2.0875,2.432,2.3544,2.3843,11.1343,12.0145,1.7559,2.2757,1.0877,1.0662,13.6084,13.4789,5.1372,5.189,7.2187,9.423,4.5952,3.4728,10.1293,11.1999,8.4401,8.0185,7.8081,8.135,3.4369,3.2801,1.7211,1.6861,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,703
+desd705,61,61,M,1.0829,2.1065,0.35485,0.3983,0.75525,0.72415,15.7424,2.8989,2.5005,38.9738,38.1988,11.5711,12.8773,176.7668,171.8839,1.6012,2.8784,2.5693,0.44021,0.42677,11.2721,10.2416,1.3105,1.4068,3.6935,3.4659,5.6649,5.9736,4.0058,4.2195,0.06809,3.6008,1.8736,2.2459,0.41347,0.4058,3.4098,4.3072,3.7836,3.708,1.5457,1.5165,9.7558,8.4411,2.6629,2.6644,3.455,3.7099,4.4477,3.88,1.4847,1.4891,1.7333,1.7087,3.1878,3.1423,6.5553,6.7244,1.9155,1.8999,5.8726,5.5259,9.8718,9.5931,6.4027,5.962,2.084,2.3027,3.9765,4.16,1.5897,1.5684,17.0588,16.2543,4.9182,5.7014,3.5202,3.7955,0.95977,0.88686,2.0237,2.2307,7.3004,6.0505,11.7143,11.3677,2.4467,2.5807,3.3581,3.4539,3.466,3.349,1.3357,1.3552,3.4569,3.6058,9.3981,9.8588,2.656,2.8352,2.0266,2.0626,2.0792,2.1911,9.308,11.135,2.0922,2.3806,1.9834,2.0231,10.6894,10.6166,1.6953,1.8146,1.0894,1.1527,12.2797,13.4043,4.6988,4.7041,7.184,9.011,3.6559,3.1751,9.2834,9.5526,6.4643,6.6294,7.3189,6.8558,3.0771,3.407,1.3782,1.4112,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,704
+desd706,83,83,F,2.3766,1.977,0.29262,0.29365,0.6034,0.54267,14.5522,2.4093,2.3038,39.2901,39.5897,10.9827,11.9258,150.0735,158.4892,1.6755,2.5906,2.4348,0.80942,1.3954,15.6604,23.0926,1.2633,1.2439,2.903,3.1734,5.4358,5.3712,3.8095,3.8384,0.06536,4.193,1.8979,2.4745,0.31183,0.32624,3.6178,3.6567,3.0319,3.1001,1.4283,1.2669,10.2834,8.8204,2.4957,2.3375,3.1309,3.2309,3.1037,3.1715,1.191,1.071,1.3754,1.4724,2.9789,2.9207,5.878,5.4726,1.7086,1.5903,5.1103,4.7346,9.1185,8.542,6.4929,6.1207,1.7635,1.7794,3.8303,3.6506,1.4448,1.4695,15.6446,14.9308,4.4224,4.7415,3.0089,3.2009,0.9126,0.91269,2.2297,1.9965,6.29,5.8191,11.2838,10.7235,2.4134,2.5508,3.3919,3.5194,2.5222,2.9323,1.2066,1.3123,3.2125,3.3066,9.4578,8.7818,2.1394,2.2801,1.3262,1.7462,1.7183,1.7508,7.5687,8.8018,2.0072,2.0234,1.6185,1.8973,9.6834,9.9496,1.4465,1.5759,1.028,1.0804,13.7673,12.6978,4.6412,4.7418,6.8857,8.078,3.6278,2.7428,10.6279,10.729,6.4507,6.0329,6.1071,5.5284,2.9765,3.6224,1.1585,1.2599,,13,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,705
+desd707,71,71,F,1.3691,2.1387,0.39757,0.43272,0.93015,0.94014,15.8825,3.3034,3.0363,26.9492,26.488,11.4186,9.2054,208.768,201.1678,1.6168,3.6945,3.3804,0.40751,0.42677,16.018,15.6225,1.5018,1.4302,3.8051,3.4106,6.3908,6.5824,4.3788,4.7548,0.07331,4.061,1.6298,0,0.40645,0.4067,4.1578,4.8551,3.9349,3.8791,1.8887,1.6751,10.5965,9.9061,2.6925,2.6576,3.7413,3.8315,4.3497,3.9712,1.7283,1.751,1.9211,1.881,4.0582,3.6493,7.859,7.6505,2.3123,2.2694,6.1998,6.0712,11.5592,11.9897,7.2448,7.1866,2.2386,2.6404,4.4081,4.9408,1.9531,1.9734,19.8372,19.7497,5.249,5.6598,4.3885,4.6011,1.1168,1.2289,2.711,2.6843,8.254,7.0512,14.0732,15.7739,2.4538,3.2931,4.0656,4.4864,3.1999,3.0753,1.3382,1.5728,4.1452,4.3793,10.9141,10.8542,2.9001,3.1423,2.1876,2.3017,1.8914,2.6756,11.3717,12.4707,2.5048,2.8383,1.8061,2.0657,12.3752,13.31,1.7175,1.8994,1.3271,1.3784,14.5554,15.1137,5.5665,5.5218,8.0531,9.3385,3.6665,3.5643,10.2362,10.683,7.1714,7.1143,8.145,8.0934,3.1447,3.9839,1.3367,1.3774,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,706
+desd708,76,76,M,1.9908,2.1079,0.40048,0.46097,0.74044,0.79298,18.9937,3.1693,3.2469,44.8174,43.5986,14.6805,15.7034,231.234,226.1267,1.7692,3.1431,3.1593,0.91151,0.8374,27.5036,33.0922,1.5748,1.5505,3.588,3.8527,6.9816,7.2578,4.6514,4.9142,0.08193,4.1392,2.0744,2.5484,0.396,0.40448,4.5323,5.2259,4.4397,4.2093,2.0372,1.612,11.2125,8.65,3.0608,2.6393,3.9162,3.6873,4.1014,3.8832,1.4992,1.4887,2.0381,1.8781,3.8432,3.7458,6.9727,7.0497,2.39,2.3092,6.7955,6.8933,11.1777,10.6973,8.2483,7.1734,2.5281,2.6396,5.0773,4.9186,1.9088,1.9712,19.1785,19.1382,5.3062,6.4884,4.113,4.3193,1.112,1.0763,2.726,2.9164,7.8364,7.0519,13.534,12.9455,3.0215,3.9531,4.0595,4.2611,3.6483,3.4099,1.6007,1.502,3.7771,4.3145,10.2645,10.4386,2.6174,3.3079,2.3952,2.2563,2.0362,2.3543,8.9212,10.9196,2.564,2.7098,2.2014,2.4949,12.3611,13.6688,1.8131,1.7895,1.3989,1.3937,14.6636,15.8737,5.2241,5.5878,7.7449,9.2829,4.0794,3.6813,10.5029,10.3844,6.9792,6.5551,7.7616,7.4622,4.0663,4.2752,1.4503,1.5925,,,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,707
+desd709,80,80,M,2.1872,1.9983,0.35908,0.37573,0.65297,0.6146,17.6402,2.7109,2.3891,46.8712,47.6829,15.5442,16.3434,193.0484,185.9035,2.7035,2.9116,2.5816,0.89895,0.97396,29.6633,22.5146,1.2369,1.3368,3.5524,3.4578,6.1911,6.3666,4.3188,4.4773,0.08456,5.0169,2.4095,2.517,0.34048,0.37066,4.1127,4.5078,3.8248,4.1694,1.4914,1.4037,8.6076,7.8604,2.8271,2.9632,4.2449,4.4762,4.4505,3.6686,1.3862,1.2463,1.9062,2.0771,3.697,3.169,7.2561,6.6497,1.8439,1.8575,6.2476,6.2837,10.7234,9.777,6.9075,6.5675,1.94,2.1584,4.6503,4.4597,1.8138,1.7523,17.3819,17.1345,4.4187,5.0735,3.3972,3.5504,1.2371,1.2771,2.3862,2.8206,7.3224,6.7962,12.6504,12.4403,2.563,2.9422,3.6454,3.9682,3.1325,3.2598,1.4666,1.4334,3.9268,4.3404,10.5983,10.033,2.7173,2.7866,2.2052,2.4319,2.0784,2.2927,9.1766,11.0625,2.2016,2.4534,1.957,2.1973,10.0587,10.7422,1.7931,1.7751,1.2357,1.2233,14.511,14.0776,5.1361,5.0241,6.3222,7.7603,3.6526,3.2171,9.3013,9.4851,6.9612,5.7033,6.5625,6.051,3.5716,3.7665,1.3929,1.4548,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,708
+desd710,72,72,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,709
+desd711,56,56,F,0.76151,1.6951,0.39807,0.43187,0.88409,0.88139,15.9782,3.1972,3.0922,27.9343,29.3947,11.4186,11.2483,219.7823,216.6957,0.78724,3.131,3.0526,0.42881,0.43749,6.2042,5.4567,1.3677,1.3106,3.8051,3.8835,6.7328,7.1078,4.2416,4.4267,0.07101,3.7976,1.7855,1.872,0.35605,0.37595,4.3417,4.4857,3.7628,3.5946,1.7381,1.5585,10.6009,9.15,3.0513,3.1002,3.6115,3.5452,4.2648,4.1242,1.7212,1.7317,1.9548,1.8366,3.8561,3.2994,7.2418,7.5396,2.1025,2.0694,6.6099,5.9025,12.728,11.7365,8.01,6.717,2.1745,2.3112,4.5274,4.5898,1.7046,1.7233,20.694,20.5201,4.5537,5.092,3.8323,4.2087,0.97369,0.95711,2.4443,2.3337,7.5541,6.7603,14.9677,14.4608,2.5004,3.5556,4.0595,3.817,3.7248,3.7596,1.4047,1.2898,3.4532,4.066,8.402,9.9817,2.9268,3.3577,2.1178,2.0168,1.8025,1.9596,10.9132,11.4351,2.2182,2.6967,1.8492,2.0488,13.7294,13.7014,1.823,1.598,1.1607,1.0429,15.0981,14.8241,5.3815,5.911,8.2741,8.5848,4.1595,3.5506,8.9606,9.8046,7.6223,7.4062,7.2326,7.8874,3.5397,3.6608,1.181,1.2918,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,710
+desd712,,,M,2.0909,2.4089,0.37414,0.49937,0.96245,0.96388,19.3177,3.5473,2.9424,52.246,51.7045,16.2343,15.7609,271.7577,264.2635,2.0269,3.7728,3.3865,0.85339,1.5041,22.5744,30.2228,1.7878,1.7696,4.1649,4.0548,7.7925,8.006,4.9783,5.3393,0.08927,4.9834,2.3995,2.9334,0.43993,0.44274,3.7422,4.4399,4.0728,4.2762,1.9423,1.8329,9.9833,8.8339,3.8966,3.6443,4.1725,3.6082,4.8737,5.2218,1.9135,1.8006,2.0224,2.092,3.9924,3.7492,7.8422,7.4269,2.1389,2.0521,7.4434,7.4712,12.3948,11.9568,8.7067,8.3526,2.493,2.5785,4.3572,4.5241,1.7718,1.6743,20.8946,22.3925,5.154,6.6359,3.9365,3.9386,0.95377,0.93811,2.3328,2.448,8.0739,6.6877,15.1099,13.8627,3.2751,3.7497,4.5756,4.8401,4.1233,3.6874,1.6705,1.5735,4.2127,4.6327,11.8125,11.9956,3.3305,3.5993,2.5473,2.2582,2.3449,2.5193,9.7635,10.4789,2.5457,2.5227,2.3842,2.2904,10.878,11.4368,1.9446,2.462,1.1437,1.1887,15.0529,14.0924,4.8574,4.9381,8.2728,8.519,4.5474,3.6135,8.8582,9.8591,8.4167,7.5252,8.8428,8.716,4.3135,3.9858,1.5173,1.7415,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,711
+desd713,77,77,F,2.1657,2.2575,0.28634,0.32409,0.6043,0.54267,12.9797,2.5523,2.8728,37.3972,36.5007,10.6258,11.7116,149.5422,152.4398,1.979,2.5334,2.3976,1.9068,1.6943,42.7786,39.4973,1.2833,1.2722,2.965,3.0356,5.6649,5.6857,3.8345,3.9321,0.09289,4.1864,1.8249,1.9487,0.30681,0.32475,3.2699,3.7709,3.7564,3.6465,1.3738,1.2669,7.6621,7.5739,3.0485,2.7131,3.2202,3.7772,4.7257,3.929,1.2567,1.1591,1.7346,1.4748,2.9562,3.1579,5.7713,5.6822,1.6173,1.6227,5.6021,5.3117,8.7021,9.0866,7.3677,6.8608,1.8889,1.8431,3.4091,3.2876,1.3504,1.4588,14.7522,14.4036,4.1007,4.7701,3.0517,3.0339,0.8586,0.91269,2.0355,2.0004,6.5869,5.9402,10.4835,10.4941,2.5604,2.9097,3.9066,3.6751,2.971,2.8078,1.2918,1.0427,3.2841,3.6512,8.0695,8.6851,2.4062,2.5224,2.035,2.0096,1.5512,2.0559,8.1705,9.6935,1.9656,1.9283,1.8162,2.0436,10.8173,10.2406,1.3384,1.7322,0.88812,1.0146,11.2428,10.4476,4.3692,4.369,6.6741,7.5258,3.9089,2.95,7.8694,8.1941,4.9691,5.6658,6.5118,6.2765,2.6693,2.8594,1.2951,1.4395,,13,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,712
+desd714,69,69,F,1.4607,2.5699,0.3546,0.39394,0.88578,0.88361,16.6248,2.8485,2.1129,41.9494,45.4621,13.9568,13.7906,183.5937,180.5895,1.2558,3.5467,3.3007,0.67471,0.57124,15.4596,16.8971,1.4414,1.41,3.4495,3.3722,6.5606,6.7055,4.2579,4.3716,0.07305,4.4055,2.0523,2.296,0.38263,0.36376,3.847,4.2821,4.0089,4.1261,1.6852,1.5717,10.0299,8.1347,3.4823,3.2596,4.0372,4.138,4.7813,4.6986,1.6649,1.5992,2.0217,1.8469,3.459,3.2514,6.3183,7.1173,2.0423,2.1124,6.497,6.1703,10.2323,10.3088,8.3597,7.3711,2.1865,2.5432,4.2838,4.6652,1.6708,1.7671,17.8419,17.9409,5.1762,5.8435,3.8806,4.0437,1.0469,0.97321,2.6796,2.4819,7.8204,6.6449,13.1652,12.5919,2.9069,3.0348,4.1078,4.2907,4.1054,3.4705,1.5676,1.5183,3.3776,4.0273,9.2661,10.9225,2.9475,3.2659,2.4224,2.3517,2.4199,2.4724,9.3074,10.0153,2.384,2.698,2.1272,2.3425,11.7388,11.7631,2.1118,2.3175,1.1843,1.2432,13.9606,14.5211,5.5403,5.6419,7.0375,7.6848,4.4703,3.6288,8.6091,9.4147,6.6673,7.0721,7.3667,7.1295,3.2911,3.6927,1.4361,1.5449,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,713
+desd715,70,70,F,2.2463,1.2763,0.40041,0.42454,0.83404,0.84704,16.6992,2.6128,2.4731,43.4399,43.1009,14.0549,14.456,213.0143,208.929,1.7409,3.1805,2.8585,0.92808,0.6879,19.2048,24.8629,1.6142,1.5693,3.5165,3.3237,6.5265,6.7553,4.281,4.5116,0.06634,4.8812,2.2993,2.587,0.36116,0.37371,3.8215,5.0653,3.6267,3.7666,1.7374,1.5448,10.6009,8.8907,3.1602,3.1288,4.0336,4.0244,4.4357,4.114,1.5306,1.6513,1.9098,1.7326,3.801,3.3232,6.5731,7.2039,2.0844,2.0571,6.4408,5.7707,10.0786,10.3433,7.9804,7.0396,2.1745,2.2619,4.8757,4.9493,1.914,1.8161,19.2383,19.1789,4.884,5.4532,3.843,3.9386,1.1946,1.0763,2.946,2.6949,8.9869,7.6754,12.5579,13.0087,2.4894,2.9607,4.0676,4.2322,2.857,3.2537,1.5567,1.2866,4.2033,4.5808,11.033,10.643,2.8132,3.145,2.3488,2.3751,2.4054,2.6562,10.0348,10.9985,2.4092,2.3889,2.1513,2.3682,12.44,13.2339,2.0183,2.157,1.1612,1.1544,14.9771,15.6348,5.4539,5.4185,8.0458,8.4213,4.0434,2.8313,11.0128,10.1216,7.1756,7.0293,7.2265,7.3194,3.5269,3.3211,1.6302,1.8083,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,714
+desd716,72,72,F,1.2149,1.4343,0.33224,0.36871,0.80711,0.80659,17.2136,2.4875,2.5484,36.0414,37.5008,14.377,14.685,197.3373,197.3386,1.1023,3.3875,3.1365,0.60754,0.44803,13.0913,19.5313,1.524,1.4541,3.3206,3.3873,6.5034,6.7714,4.5094,4.7468,0.08208,4.4402,1.9428,2.2734,0.32524,0.35689,3.4262,3.854,3.2943,3.4893,1.6303,1.5558,9.322,8.7428,2.6981,2.636,3.2381,3.0948,4.2654,3.9242,1.5534,1.5673,1.5935,1.557,3.3333,3.0591,6.6059,6.2393,1.6315,1.78,5.7045,5.8453,10.3411,9.7188,6.3145,6.2339,2.1926,2.2395,4.2057,4.3247,1.3135,1.3208,17.2089,16.929,4.5508,5.2674,3.2251,3.5057,0.92508,0.93964,2.1091,2.1709,6.4642,5.7511,12.6236,12.2537,2.4569,3.1413,3.2939,3.5603,2.8626,2.6527,1.4922,1.3216,3.5991,3.8171,9.1639,9.008,2.8557,3.0096,2.2098,2.1827,1.7216,1.7434,8.8201,9.6724,2.3766,2.2182,1.9023,2.0287,10.0402,9.5779,1.5257,1.6524,0.98281,1.0415,12.2797,12.5322,4.5699,4.2424,7.3237,7.3882,3.6665,3.0225,9.0975,8.3738,6.3764,7.2334,6.8304,6.8396,3.2715,3.5044,1.2809,1.3071,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,715
+desd717,74,74,M,1.9976,2.6574,0.29945,0.26814,0.74893,0.78396,17.922,1.7904,2.0219,48.3411,47.8282,15.0955,15.21,216.5298,211.5953,1.9461,2.9465,2.8692,0.96452,1.1293,20.2643,25.4214,1.596,1.4938,3.0753,3.3076,5.7202,6.0487,4.3547,4.6214,0.09914,5.3858,2.3011,2.7923,0.35605,0.32201,3.8541,4.3693,3.7611,4.0342,1.3769,1.25,9.321,8.3897,2.9717,3.0208,3.5949,4.2033,3.6229,4.3597,1.4359,1.4568,1.9544,2.0164,3.3102,2.5302,6.9781,7.3443,1.7364,1.764,6.9251,6.8599,11.0369,11.3971,7.8756,7.3695,1.7262,1.932,4.6062,4.4569,1.4684,1.4708,16.0764,15.5558,4.9671,6.4362,3.1249,3.1743,1.3235,1.1475,2.8271,2.9714,7.1171,6.5059,12.4739,13.6328,3.2278,3.9225,4.331,4.3142,3.2821,3.0315,1.3601,1.09,4.063,4.555,10.3809,11.088,2.7602,3.0474,2.1584,2.3365,1.7536,1.7651,9.3026,11.9524,1.8475,2.3311,1.9357,2.2474,10.9701,11.5614,1.6063,1.5134,1.0351,1.12,12.7223,12.9671,5.4504,5.1752,7.8294,8.6986,4.363,3.4542,9.187,10.6744,6.8385,6.9714,6.726,6.9869,3.4306,3.104,1.2178,1.3766,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,716
+desd718,,,M,1.472,1.6605,0.41623,0.45137,0.8884,0.93558,16.0602,2.6524,2.7179,26.9492,26.922,11.4186,11.2483,236.2134,233.4226,1.2092,3.5215,3.4736,0.45832,0.39307,8.2854,9.075,1.7202,1.7676,3.8116,3.972,6.7746,7.0953,4.6039,4.9294,0.08013,4.6347,1.9864,2.1959,0.41932,0.39804,3.9022,4.5045,3.9727,4.1302,1.912,1.7562,11.3973,9.89,3.2221,2.6444,3.7686,3.9928,5.0371,4.6505,1.7756,1.7739,1.9109,1.8394,3.8129,3.4047,7.7436,8.1054,2.2727,2.443,7.2009,6.6257,12.5177,12.624,7.6887,7.101,2.2496,2.6168,4.3592,4.4844,1.9933,1.9397,20.6915,20.5391,5.9286,6.1171,4.1808,4.3548,1.2997,1.2289,2.5573,2.723,8.3682,7.1554,14.9277,14.8265,3.2252,3.7682,4.1912,4.3679,3.3855,3.0753,1.4654,1.5109,3.6745,3.9295,9.8438,9.6351,3.0955,3.3871,2.4224,2.3405,2.2439,2.2416,10.9132,11.3309,2.418,2.8676,2.0971,2.3136,11.8631,11.9453,2.0754,2.0697,1.1837,1.2827,14.6171,15.864,5.4748,5.2538,8.1537,9.7342,4.5964,4.0371,9.2928,10.4922,7.3547,7.1143,8.2166,7.9158,3.3019,3.6503,1.4135,1.4614,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,717
+desd719,,,M,1.4773,3.2169,0.41779,0.45745,0.86853,0.93311,20.6291,3.4665,3.4491,48.2352,49.3091,17.5141,17.7471,270.7593,264.2635,1.8515,3.4769,3.5674,0.58529,0.54447,13.6796,14.6384,1.911,1.8463,4.3307,4.2688,7.4658,7.7363,5.3512,5.7002,0.08487,5.343,2.2935,2.693,0.41953,0.45301,4.3893,5.2956,5.378,5.0384,1.6088,1.5729,11.7542,10.5471,2.9748,3.5359,4.6459,4.4735,4.4464,4.7057,1.8746,1.7088,2.4243,2.3755,4.049,3.9438,8.3668,7.7927,2.2274,2.1865,8.2003,7.4712,13.7282,14.593,7.5148,7.775,2.1437,2.3376,5.0995,5.164,2.1857,2.0045,20.253,21.8722,5.5976,6.6146,3.7817,4.1009,1.1113,1.0978,2.6201,2.5842,8.9555,8.5192,16.6257,16.2596,3.7168,3.9248,4.0656,4.2651,3.4368,2.9794,1.5704,1.5123,4.3679,4.9742,10.9832,11.0082,3.1033,3.3923,2.5151,2.5533,3.0347,2.6291,10.2478,12.3441,2.5634,2.5496,2.2822,2.4041,11.9639,12.0283,2.2942,1.9968,1.3198,1.4408,15.5683,16.3306,5.8464,5.6207,9.4162,10.3903,4.5674,3.88,10.9764,10.7754,8.9029,8.3261,8.8659,8.5194,4.1574,3.9535,1.741,1.8361,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,718
+desd720,67,67,F,1.6984,1.8055,0.27858,0.34264,0.51972,0.51612,16.484,2.6305,2.8728,42.862,44.4366,12.5217,13.3701,186.1888,188.3036,1.509,2.4134,2.2563,0.73919,1.161,14.9498,16.1252,1.357,1.3274,3.1049,3.4816,6.1767,6.0733,4.0467,4.2826,0.06836,4.024,1.9878,2.4515,0.32726,0.2706,3.9012,4.2226,3.4726,3.8945,1.63,1.3311,9.031,8.3706,3.0612,2.9698,3.5715,3.6125,4.3431,4.0173,0.34445,1.0787,1.6243,1.9466,3.6528,3.096,6.2374,5.6812,1.9131,1.9357,5.6825,5.3211,9.8718,8.88,6.7317,6.4209,2.0261,2.1102,4.1792,4.0897,1.6742,1.7359,16.1075,16.0015,4.9339,5.6348,3.6617,3.8057,1.0474,1.1971,2.477,2.578,6.9498,5.9329,11.9343,12.0337,2.2463,2.5231,3.5914,3.852,3.4479,3.3582,1.3761,1.3204,3.2502,3.9756,9.1,9.3937,2.3769,2.3682,1.8645,1.9992,1.7598,2.0182,10.1362,11.457,2.0698,2.0306,1.8284,1.9736,10.9318,12.3044,1.618,1.6572,1.1141,1.2271,14.0018,14.2731,4.612,4.6129,7.1729,8.6986,3.5424,2.8507,8.5336,9.2394,5.9959,6.7968,5.4577,5.6543,3.834,3.407,1.1396,1.2918,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,719
+desd721,64,64,F,1.0614,1.4794,0.338,0.38516,0.8218,0.76205,13.8913,2.5342,2.5326,35.6957,37.8398,13.6038,13.793,209.8405,204.3795,1.0778,3.0354,2.7564,0.48196,0.46211,7.8491,10.1129,1.2456,1.2439,3.7678,3.6648,5.7788,6.0392,3.6997,3.9038,0.06699,3.856,2.0653,2.2432,0.3558,0.34884,3.7247,4.2505,3.8936,3.8088,1.5732,1.4123,9.4821,8.2294,2.8537,2.7953,3.4373,3.5066,3.6404,4.021,1.6478,1.4671,1.9524,1.9219,3.1855,3.6121,6.4928,6.515,1.9155,1.8953,5.1369,4.9659,8.4138,8.9153,7.8314,6.8462,2.0704,2.0882,3.9332,4.16,1.6411,1.6816,17.5442,16.473,4.3477,5.5991,3.579,3.6686,1.25,1.2308,2.663,2.7659,7.2337,6.3289,10.0935,10.794,2.4357,2.8563,3.9425,3.8006,3.5688,3.463,1.4511,1.3652,3.1766,3.5086,9.3341,8.9741,2.8982,2.9733,2.1409,2.0798,1.6549,2.0229,9.0917,10.7265,1.9772,2.0966,2.1575,2.1287,10.8056,11.5033,1.6217,1.8446,1.0645,1.2068,13.6325,12.9407,4.8385,5.1331,7.887,7.9444,3.4604,2.6359,9.4686,11.3991,5.4535,5.6191,6.5955,6.3317,3.4306,3.8118,1.4521,1.3732,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,720
+desd722,77,77,F,1.94,3.1605,0.305,0.31106,0.60861,0.58904,15.585,2.3546,2.2964,45.1767,45.3358,12.1718,12.1483,164.8177,162.7586,1.7158,2.4152,2.0602,1.1437,1.3765,22.5833,25.6471,1.2633,1.3001,3.0363,3.199,5.6364,5.6381,3.6257,3.8961,0.08508,4.7154,2.2701,2.4648,0.31183,0.3141,3.6304,4.0468,3.6926,3.8233,1.3738,1.364,8.6533,6.4981,2.5233,2.1018,3.3731,3.5531,3.8222,3.3574,1.2126,1.1425,1.8686,1.7489,3.1681,3.0475,5.7579,5.671,1.8534,1.8748,5.3796,5.1321,8.5353,7.9082,6.9996,6.6139,1.8889,2.067,4.146,4.1706,1.585,1.5387,17.4139,15.7695,3.8872,4.6551,3.1025,3.8057,0.95202,1.1393,2.054,2.5346,7.3388,6.6575,10.8521,10.631,2.5875,2.5733,3.4647,3.4211,2.7013,2.8929,1.2663,1.1482,3.1766,3.282,8.0933,8.1084,2.2744,2.5425,2.2297,2.2243,1.8432,1.9753,8.2496,9.9004,1.9487,2.0089,1.9552,2.1863,10.8173,11.0022,1.4323,1.6744,1.0904,1.1784,13.015,13.8267,4.9246,5.0286,6.8403,7.378,3.1376,2.6359,8.0776,9.0978,6.1989,5.1763,6.5082,6.0501,2.8088,3.3566,1.3985,1.5013,,23,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,721
+desd723,72,72,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,722
+desd724,,,F,1.8314,1.7773,0.29367,0.33703,0.73118,0.73343,15.8051,2.1606,2.17,39.7329,39.5897,12.295,12.7122,193.1734,189.7608,1.5099,2.8093,2.5693,0.73919,0.81622,17.332,21.454,1.4416,1.4105,2.7905,2.6628,5.6208,6.17,3.9919,4.2179,0.07342,3.6568,1.9527,2.4745,0.29742,0.3202,3.2578,3.5812,3.5491,3.9,1.2952,1.0793,7.8428,7.3169,3.0178,2.9441,3.6484,3.5536,3.7902,3.6811,1.4296,1.4211,1.7559,1.6433,3.3157,3.0976,6.0894,6.184,1.4389,1.6654,5.3781,4.7812,10.0847,10.207,7.0311,6.2984,1.8219,1.9667,4.0806,4.2148,1.3728,1.4901,14.8866,15.8776,4.0023,4.8732,3.0279,2.9419,0.76618,1.063,2.054,2.3079,6.5291,5.9402,12.1521,12.8253,2.4852,2.5807,3.7986,3.4415,2.8593,2.5608,1.2154,1.2695,3.217,3.5086,8.1223,7.8027,2.5089,2.6681,1.8645,1.9992,1.9867,2.3505,8.5484,10.6662,1.932,1.9031,1.5118,1.7202,12.1904,10.584,1.5641,1.9742,0.86423,0.9414,12.5051,11.5294,4.5284,4.7366,6.8963,7.845,3.4065,2.8245,8.8583,8.5418,6.3043,7.2104,6.2058,6.5658,2.9562,2.9014,1.3288,1.491,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,723
+desd725,76,76,M,2.1555,2.0471,0.28581,0.29365,0.76374,0.67972,14.4951,2.0987,2.0871,30.325,34.3648,11.3372,11.9739,149.5422,152.4398,2.2824,3.2147,2.8348,0.53909,0.55943,24.2377,25.4666,1.2848,1.2696,2.7561,3.0077,5.6653,5.3712,4.2723,4.5907,0.07654,4.4837,2.0307,2.0222,0.41304,0.3861,4.6205,5.3274,4.5397,4.6694,1.6576,1.3355,9.5074,7.8838,2.4034,2.1827,4.2748,3.9394,4.2997,3.9733,1.6669,1.3252,1.955,1.9711,3.6471,3.4748,7.3746,6.9971,1.799,1.764,5.6941,5.9829,12.3722,12.1164,6.9763,6.5016,2.1928,2.2163,5.506,5.0665,1.5622,1.5626,19.992,20.2757,4.7874,5.7567,3.5438,3.4975,1.0923,0.7957,2.4473,2.3482,7.6393,7.1258,16.0082,14.521,2.6534,3.1621,3.9417,3.7679,3.5137,3.0969,1.5397,1.4598,3.9265,4.5439,10.9155,10.8734,2.8467,3.4943,2.4381,2.4109,2.2996,2.399,9.3692,10.6316,2.3726,2.1443,2.126,2.3188,13.239,12.3655,2.0045,1.9643,1.185,1.2342,14.4338,15.1137,5.5314,5.9494,7.2187,8.2955,3.8065,3.0462,8.8861,10.1731,7.1714,8.5547,7.8127,7.1147,3.7288,3.8991,1.468,1.5846,,18,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,724
+desd726,82,82,M,2.4324,1.789,0.42506,0.47758,0.88817,0.88892,18.1318,3.2366,3.2469,54.7687,56.7564,14.6699,14.8209,243.2493,246.0271,2.8942,3.0267,2.9412,0.70921,0.87269,27.4336,42.0744,1.6668,1.725,4.3591,4.2961,7.5791,7.8753,4.7272,4.9567,0.09689,5.3158,2.5184,2.9938,0.4116,0.41953,5.5549,5.7797,4.2447,4.5632,2.0576,1.8502,12.4061,11.0348,3.8929,3.5396,4.7409,5.0423,5.9264,5.3039,1.7703,1.7041,2.0766,2.4767,4.2434,4.2753,8.4729,7.887,2.2712,2.2793,7.7388,7.4932,13.3726,13.3026,9.6405,8.5245,2.5698,2.5785,6.1433,5.9994,2.0711,2.232,21.4875,21.8987,6.7632,7.1985,4.3326,4.5033,1.2839,1.2076,2.8387,2.9983,9.1132,8.0611,18.097,15.5508,3.9931,4.4609,4.9467,4.8221,4.0885,4.1904,1.7251,1.681,4.7803,5.5754,13.1268,13.4261,3.1894,3.6051,2.6554,2.9166,2.7442,2.993,13.1671,13.2842,2.6904,2.6119,2.5514,2.7744,15.2203,15.7924,2.3664,2.3435,1.4368,1.4414,18.4689,17.4955,5.7831,6.0819,9.3803,10.377,5.1807,4.6918,10.9431,10.7322,9.4883,7.9968,9.5512,9.1223,3.7601,4.2711,1.7937,1.8674,,27,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,725
+desd727,,,F,1.9294,2.9353,0.35333,0.36272,0.78957,0.77604,17.356,2.8196,2.3543,42.8216,43.4585,14.0525,14.4429,193.1778,178.1077,1.8418,3.1279,2.9098,0.71055,0.53907,17.2587,18.95,1.5261,1.5011,3.2631,3.2373,6.2401,6.3666,4.3457,4.5321,0.07934,4.1296,1.9878,2.4066,0.37094,0.34565,3.4536,4.2164,4.0836,4.1261,1.5756,1.2772,9.913,8.3953,2.8367,2.9999,3.6255,4.0095,3.9569,4.3597,1.4466,1.4328,2.1704,2.0164,3.4809,3.0359,6.8101,6.3769,1.7704,1.8822,5.0863,5.0373,10.9414,10.0529,6.7667,6.1336,2.084,1.9178,4.2293,3.9922,1.5936,1.6947,15.6855,16.0798,4.2927,5.1587,3.3093,3.5511,0.85504,0.9423,2.3346,2.2592,7.3471,6.3947,13.5638,11.9602,2.5604,3.1137,3.4664,3.8581,3.4737,3.507,1.3192,1.2201,3.4634,3.6227,8.5837,8.7801,2.7231,2.9473,2.3244,2.156,2.1279,2.1299,9.3026,9.8737,2.1166,2.0966,1.9823,2.1163,9.6738,10.2205,1.7711,1.9016,1.0284,1.0849,14.0725,14.1541,4.7457,4.7331,8.2093,9.085,3.4604,2.8836,8.6881,9.0516,7.3816,7.4671,6.726,6.8159,3.2904,3.3172,1.312,1.4548,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,726
+desd728,,,F,1.4719,1.9231,0.35988,0.42314,0.81161,0.71904,15.3697,2.7088,2.7731,43.7226,41.4904,12.8401,13.5987,193.2219,190.6344,1.6097,3.4931,3.0792,0.96487,0.93226,16.9487,23.0601,1.438,1.4294,3.4331,3.7598,6.0833,6.4181,3.9635,4.1549,0.07584,4.3017,1.9992,2.6111,0.36677,0.38346,3.4662,4.256,4.0828,4.0309,1.6977,1.4914,10.7613,8.65,3.5335,2.5846,4.013,3.6261,4.661,3.9813,1.5534,1.3078,2.0772,1.9412,3.3198,3.0064,7.1203,6.8121,1.9041,1.781,6.1003,5.8649,11.0529,10.131,7.2141,6.6054,2.1145,2.2312,4.2544,4.2817,1.7,1.5749,16.1322,19.5531,5.123,5.7175,3.6591,3.5847,0.99093,1.0283,2.4368,2.3818,7.6315,5.9329,14.7741,12.4801,2.3636,2.8215,4.2714,4.3583,3.4737,2.9361,1.4194,1.4314,4.0904,4.6604,10.2587,11.8842,2.8251,3.1525,2.3783,2.2396,2.4287,2.522,9.2486,10.4106,2.1495,2.2778,2.0681,2.1307,11.6883,11.229,1.841,1.9102,1.1721,1.235,14.2661,14.2731,4.4485,4.7192,7.686,8.8539,4.0133,3.4355,11.7083,11.8119,6.9127,7.3543,7.0906,6.9893,3.6116,3.4622,1.511,1.5107,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,727
+desd729,80,80,F,1.7983,2.3061,0.32836,0.38838,0.70437,0.79298,16.4883,2.7039,2.6431,44.8116,45.0829,13.1475,13.1926,186.1146,191.4973,1.8042,2.7141,2.9426,0.73085,0.9965,27.8543,35.4198,1.527,1.5078,3.3097,3.0976,6.4004,6.8634,4.281,4.5315,0.08108,4.6477,2.2165,2.6837,0.41104,0.40503,3.9954,4.706,4.5114,4.7752,1.5345,1.5065,9.6025,8.3923,3.3055,3.1572,4.0571,4.0985,4.7749,4.2722,1.3995,1.4871,1.7701,2.0487,3.6944,3.4626,6.6325,6.1674,2.2793,2.2694,6.3722,5.8456,11.2782,10.0638,7.8024,7.3043,2.0386,2.3851,4.3398,4.7792,1.7901,1.8106,16.3678,16.4015,4.884,5.4893,3.4848,3.7084,0.89224,1.4219,2.0523,3.189,8.1308,6.8637,12.8679,12.213,2.5101,3.3573,3.9739,4.1172,3.6146,3.5831,1.572,1.5832,3.9306,4.5049,11.6293,10.8734,2.5366,2.8487,2.1883,2.1862,2.2135,2.4654,8.8302,11.1184,1.9527,2.3079,1.9851,1.9697,11.3666,12.1998,1.8433,2.2049,1.1437,1.2219,13.8721,13.2713,5.0958,4.9228,6.702,8.5755,3.9936,3.3648,9.484,9.8091,7.0665,6.8428,7.6584,7.2896,3.5559,3.4383,1.4593,1.7511,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,728
+desd730,72,72,M,1.1935,1.2667,0.40752,0.42411,0.98247,0.98753,18.0477,3.3929,3.3583,44.6002,45.1092,14.668,14.8643,251.5014,251.7752,1.3381,3.9712,3.8846,0.39685,0.34422,14.6737,13.2896,1.6414,1.613,3.5869,3.8377,6.9086,7.0601,4.6023,4.9294,0.08285,4.65,2.0673,2.6004,0.40645,0.41984,4.5323,4.7119,4.4342,4.7001,1.9727,1.8047,10.8441,10.3745,2.9195,2.833,4.3528,4.4052,4.6672,4.5426,1.9036,1.8671,2.1956,2.2036,4.0432,3.719,8.3301,7.7758,2.4263,2.3336,6.4488,6.2659,13.3156,14.593,8.7643,7.4604,2.5197,2.7266,4.5987,4.739,1.9437,2.0006,21.1619,20.9488,5.92,6.5476,4.4654,4.7475,1.0593,1.2417,2.5683,2.723,8.3765,7.0379,16.1292,16.2596,3.201,3.4271,4.7909,4.7157,3.6151,3.34,1.6337,1.7745,4.5744,5.1719,12.654,11.6244,3.3221,3.5478,2.3477,2.36,2.5902,2.9222,11.6151,12.8633,2.7574,2.8669,2.126,2.2562,13.3956,15.0108,2.0618,2.2086,1.3989,1.4764,15.2906,15.864,6.0849,6.1341,9.0598,10.0553,4.826,3.7508,11.646,11.8495,9.075,9.3392,8.9394,7.9158,3.9793,4.191,1.4845,1.7203,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,729
+desd731,70,70,M,1.7938,1.8769,0.40335,0.44027,0.83404,0.82365,18.6723,2.9757,2.9334,44.4048,43.5986,14.3121,13.7043,195.3437,194.1091,1.9683,3.0836,2.8334,2.4881,1.7937,31.2259,31.4738,1.3987,1.3671,3.5052,3.5655,6.1684,6.4181,4.7781,4.9511,0.07446,4.7161,2.0012,2.7436,0.40007,0.40852,3.8231,4.6224,3.996,4.2762,1.8884,1.5216,9.0756,7.8604,2.3608,1.9387,3.6643,3.7713,3.631,2.9868,1.5978,1.5631,1.8833,1.8114,3.6966,3.4071,6.4928,6.1466,2.2997,2.4181,6.0389,5.6658,9.0886,9.9822,6.7914,5.4669,2.3802,2.5384,4.4469,4.8775,1.815,1.8608,17.4694,16.3119,5.1017,5.7343,4.2661,4.4896,0.9992,1.2013,2.5015,2.155,7.1601,6.7388,10.897,11.286,2.8378,3.1118,3.3378,3.6226,3.3205,3.1812,1.6136,1.5388,3.3984,3.9719,9.185,9.2029,2.5342,2.8521,2.3854,2.1631,1.8491,2.0912,8.3544,11.1184,2.6713,2.45,2.2136,2.2782,10.0523,10.6935,1.8366,1.8025,1.3215,1.3577,12.5188,12.7452,4.9027,5.1725,7.887,7.5909,3.3701,3.4265,8.6881,8.8161,6.8639,6.7163,7.7847,7.1796,3.8343,4.4614,1.5652,1.5925,,9,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,730
+desd732,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,731
+desd733,68,68,M,3.3332,3.6291,0.42772,0.43967,0.96199,0.98753,21.4302,2.9795,2.8993,50.7475,50.3468,16.8651,17.9163,263.77,270.7394,2.9538,3.8127,3.7705,2.0116,1.4126,48.6081,48.6943,1.803,1.6123,3.6831,3.7863,8.2756,9.0064,5.3512,5.6575,0.07588,4.9834,2.382,3.0709,0.4115,0.43803,4.7836,4.8834,4.7486,4.8188,2.4906,1.6462,9.5249,8.6029,4.3025,5.3609,4.1936,5.0423,5.8801,5.2487,1.931,1.7971,1.9982,2.1078,4.8016,4.2113,7.9794,7.4269,2.3828,2.4508,6.9693,7.2798,11.7446,11.941,8.4069,7.5458,2.8403,2.5951,3.5995,4.6734,2.029,2.3946,19.249,19.457,4.8565,6.1756,4.7054,4.7688,1.0667,1.0991,2.8028,2.5253,8.8586,8.0067,13.918,13.2979,3.6796,4.1988,4.4497,4.5039,3.7894,3.5056,1.8308,1.6164,4.1503,4.4685,10.6296,9.9015,3.3305,3.3865,2.6785,2.7114,2.4994,3.1072,11.0358,11.849,2.5064,2.6625,2.6052,2.7685,11.8669,13.0542,2.0045,2.425,1.5046,1.5834,14.6511,15.1221,5.8085,4.9107,9.2217,11.8596,5.673,3.3474,9.5575,9.8591,8.0468,7.9222,8.5115,8.4413,4.0397,4.0213,1.7168,1.9738,,27,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,732
+desd734,,,F,1.2046,1.7443,0.33279,0.36378,0.89225,0.83393,16.6399,2.6802,2.474,40.966,41.5782,14.7578,14.5574,212.1288,208.929,0.94521,3.3175,3.0832,0.37254,0.37663,8.1124,7.6527,1.5486,1.5353,3.5721,3.6167,6.9295,6.9347,4.4644,4.7331,0.07642,4.6347,2.2948,2.0809,0.37157,0.3541,4.1239,4.543,3.8848,3.9136,1.7764,1.5897,10.0875,9.0663,3.0513,3.0365,3.7037,3.6973,4.3404,3.9577,1.575,1.5651,1.8804,1.9725,3.4663,3.3725,6.5852,6.7736,2.0107,1.9651,6.044,5.7301,10.4651,10.6496,8.0791,6.9457,2.0948,2.2613,3.9591,4.1749,1.5913,1.5482,18.477,18.15,4.4945,5.5329,3.7639,3.8333,1.0679,1.0691,2.3888,2.5646,7.142,6.4494,13.5857,13.2642,2.5253,3.0222,4.0858,4.2322,3.2367,3.4619,1.4431,1.3626,3.9221,4.3803,10.2035,10.4746,2.9475,3.0096,2.206,2.2859,2.1804,2.4227,9.877,10.4723,2.2235,2.3097,2.154,2.4206,10.9804,11.2389,1.7802,1.9931,1.2499,1.3205,13.927,12.9686,4.7484,5.1019,7.822,9.191,3.8384,3.3715,9.7965,10.221,7.3625,7.3967,7.5089,7.1746,3.3992,3.6828,1.3875,1.4851,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,733
+desd735,71,71,M,2.655,2.5057,0.34798,0.38133,0.80167,0.6773,20.4839,2.8697,2.9339,48.6965,47.9699,19.9017,19.6858,242.2161,234.785,1.8683,3.4165,3.0874,2.333,1.4126,27.8541,37.1856,1.5877,1.5857,3.4955,3.8535,6.1374,6.4205,4.7216,4.8287,0.06139,5.7295,2.4335,2.4848,0.32855,0.35922,3.9962,4.2709,3.9291,4.3225,1.5988,1.3642,9.0266,8.3197,3.7436,3.7251,3.573,4.0757,5.137,5.0715,1.4847,1.2057,1.983,1.8123,3.7108,3.2787,7.1123,6.5809,2.0307,2.0713,6.2901,6.3901,10.5303,9.4804,8.0408,7.6174,1.9458,2.272,4.6016,4.5385,1.7617,1.6646,19.346,19.457,4.4528,5.2485,3.7199,3.8912,0.98305,0.99809,2.465,2.3545,7.7032,6.585,11.8728,10.9522,3.0135,3.2917,4.1184,4.3141,3.2545,3.4832,1.314,1.3935,3.6173,4.2632,10.2264,9.8585,2.516,2.8084,2.4446,2.2366,1.9658,1.9848,9.3081,10.8421,2.2356,2.4285,2.2267,2.4206,11.0717,13.2127,1.8902,1.6304,1.122,1.2385,13.344,13.8829,5.3766,5.1182,6.883,6.9655,4.0864,3.5419,9.3569,9.647,6.5891,6.1394,6.726,6.9116,3.0679,3.9727,1.6442,1.3138,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,734
+desd736,63,63,F,1.5191,2.3068,0.40132,0.39625,0.97399,0.88935,20.8786,3.2685,2.9293,49.3724,48.8077,18.8412,18.6924,284.4215,289.5558,1.2541,3.515,3.2413,0.51741,0.51445,10.2175,13.4763,1.7789,1.7719,3.9227,3.8304,7.1371,7.645,5.139,5.4329,0.07365,4.551,2.271,2.8765,0.35463,0.40337,4.1239,5.0139,3.5971,3.7606,1.8186,1.4925,9.5148,9.2595,3.0636,3.0106,3.4866,3.725,5.232,4.7483,1.9135,1.7252,1.8267,1.7542,3.8484,3.448,7.4065,7.7366,2.0859,1.9279,6.2791,6.4785,11.1808,10.8291,8.0846,7.1042,2.3641,2.4256,4.8872,5.473,1.8926,1.8702,18.5568,18.1012,4.9111,6.0193,3.6354,3.7465,1.1946,1.4277,2.7194,3.3245,8.2775,7.2792,14.2011,13.3618,2.818,3.6547,4.0324,4.4898,3.2812,3.1812,1.577,1.408,3.9242,4.1715,10.8726,10.017,3.052,3.3911,2.0377,2.1205,1.9944,2.3005,12.1224,12.4431,2.3034,2.4625,2.0512,2.5141,13.5552,12.6387,1.7405,1.8118,1.1388,1.0952,13.451,13.1667,5.6004,5.6885,8.1119,8.6043,3.9845,3.7664,9.7753,10.519,8.3,7.5026,8.5438,7.6834,3.4794,3.3844,1.2798,1.7839,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,735
+desd737,71,71,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,736
+desd738,68,68,M,1.7737,1.9084,0.41653,0.46245,0.90295,0.90002,18.9345,3.3624,3.1856,47.8528,49.0781,16.543,17.1,252.8798,252.5392,1.4859,3.7797,3.5098,0.68606,1.0156,21.7125,22.5706,1.9924,1.9055,3.5031,3.438,9.902,8.5587,5.4042,5.5975,0.10157,4.6203,2.2414,2.6527,0.4332,0.45301,4.7617,5.4149,4.8522,4.6196,1.9503,1.8397,12.1998,11.3323,4.3357,4.2792,4.8738,4.6948,6.4285,5.1517,1.8746,1.875,2.3227,1.9869,4.5707,4.0108,8.3668,8.4465,2.2117,2.2756,7.653,7.9981,13.1952,12.2544,9.1203,8.4392,2.4591,2.5398,5.416,5.3445,2.1684,2.1273,22.9942,22.7106,5.8744,8.0952,3.9216,4.3173,1.2861,1.3386,2.8666,3.0391,9.1937,8.0971,16.7309,15.7275,3.2263,3.9225,4.7004,4.9493,4.4008,3.206,1.6749,1.5605,4.3679,4.6666,12.422,13.0258,3.2799,3.5523,2.4717,2.6305,2.5274,2.6442,12.0336,14.9649,2.815,2.9926,2.3492,2.5102,13.7001,14.2938,2.1401,2.2289,1.443,1.4984,16.4919,14.8746,6.6401,6.5596,10.7075,9.5109,4.5474,3.8956,12.5488,12.1876,7.8023,7.7573,9.5488,8.8366,4.0762,4.1146,1.5567,1.8601,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,737
+desd739,66,66,M,1.7674,1.9681,0.41207,0.4871,0.78849,0.78422,19.3173,2.7823,2.6672,46.2948,47.0264,14.6805,15.2766,231.234,226.1267,1.8546,3.1953,3.011,2.4881,1.4126,26.0293,25.3654,1.7384,1.7008,3.5981,3.6548,7.4277,7.4648,4.9581,5.0683,0.08488,4.9295,2.1822,2.987,0.3835,0.39259,4.6665,4.8934,4.0195,4.0245,1.954,1.528,10.7934,9.5276,3.5653,3.5693,4.2634,4.0153,4.6554,4.5407,1.5659,1.4114,1.6638,1.9025,3.7899,3.448,6.7819,7.1315,2.5778,2.7388,6.2522,6.9006,10.4622,10.0065,8.211,8.0496,2.3645,2.4717,4.4131,4.715,2.044,2.1063,19.0835,16.8625,5.92,6.07,4.2036,4.5134,0.88156,0.87229,2.678,2.346,8.8107,7.724,13.0423,13.5444,2.9533,3.3159,4.1983,4.4752,2.8161,2.9791,1.5422,1.5149,3.964,4.1789,11.7754,11.3547,2.9241,3.1414,2.3922,2.2428,2.6137,2.8484,9.5323,10.6313,2.2728,2.652,2.1272,2.4102,11.8631,12.5485,2.2121,2.1467,1.3308,1.4734,14.6949,14.7828,6.0849,6.2755,7.9453,9.0832,4.3004,3.6297,10.7296,9.5776,6.7205,7.2459,7.8855,7.4971,3.0571,4.2257,1.421,1.5449,,12,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,738
+desd740,66,66,M,1.0188,1.5911,0.40752,0.44492,1.0266,1.0531,17.2523,2.9081,3.0375,45.9326,45.9081,13.8923,14.4147,204.2511,201.1678,1.0958,3.9562,3.7395,0.50539,0.44762,12.6832,16.8039,1.4087,1.3757,3.5193,3.3868,6.8393,7.113,4.4045,4.5314,0.08927,4.3786,2.1753,2.7688,0.42072,0.40079,3.6659,4.2915,3.9787,4.2371,1.8884,1.6751,11.5855,10.6247,2.9179,2.8508,3.7866,4.0266,4.1802,3.9577,2.0892,1.8749,1.8946,1.8732,4.3682,3.839,7.6897,8.1847,2.3816,2.4717,6.2753,6.9345,11.8036,11.941,7.3121,6.8955,2.4733,2.6274,4.5803,4.597,2.0238,2.0756,20.0268,18.9053,5.3743,6.6668,4.2661,4.623,1.1499,1.1447,2.5994,2.7449,7.7828,6.6879,16.2235,15.5401,2.8536,3.1911,4.3511,4.03,3.307,3.2415,1.5037,1.4691,4.6508,4.8786,10.9272,11.0417,3.1754,3.4671,2.1379,2.1517,2.0761,2.2773,10.4753,11.1911,2.3569,2.7755,2.0752,2.3136,12.3388,13.6688,1.7268,1.7956,1.3336,1.4476,14.6592,15.5642,5.2361,5.2441,8.4487,9.8394,3.9385,3.3885,10.7573,9.5201,7.9936,8.7619,8.5351,8.3303,3.5809,3.7006,1.3266,1.376,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,739
+desd741,,,M,1.705,1.9622,0.33253,0.34666,0.80628,0.72388,15.9729,2.8085,2.6953,39.1359,39.2713,11.3847,12.3842,163.5324,161.6748,1.6859,3.1175,2.83,0.86284,0.59791,14.9264,16.8971,1.3569,1.3431,3.0823,3.0858,5.8808,6.17,3.9747,4.1256,0.07157,3.5022,1.8657,2.2569,0.3662,0.34181,3.525,4.1665,3.6452,3.7776,1.5756,1.37,8.84,6.643,2.6629,2.7311,3.8625,3.806,4.4477,3.8276,1.6514,1.491,2.0596,2.1023,3.6256,3.285,6.4328,6.5195,1.7615,1.844,5.917,6.2311,9.9444,9.3001,5.8811,6.2007,2.1573,2.2053,3.9765,4.2894,1.5598,1.6211,17.6219,15.9371,4.6573,6.0297,3.4902,3.6247,0.95977,0.94874,2.4117,2.5555,6.9508,5.8159,11.2149,11.6121,2.563,2.982,3.5715,3.3384,3.4737,3.349,1.4622,1.4734,3.2263,3.7115,8.8048,9.2699,2.8215,2.9733,2.2838,2.1925,1.8088,2.1015,9.091,10.4034,2.4206,2.3013,2.0206,2.2512,10.0863,11.4156,1.6444,1.8025,1.0128,1.0655,12.2098,11.6837,5.2431,5.3443,7.36,7.231,3.9745,3.5751,9.3038,9.556,6.3524,6.4189,7.0991,7.5036,3.4306,3.7653,1.4243,1.3936,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,740
+desd742,,,F,2.0768,2.7942,0.29367,0.26814,0.70782,0.78396,15.4625,2.2721,2.2576,41.5171,41.8891,12.0541,12.1993,175.9135,168.0025,1.9862,3.1331,3.0149,0.53909,0.49958,23.2901,28.3623,1.2879,1.2696,3.3326,3.1348,5.5506,5.5759,4.0902,4.1851,0.07538,4.2206,2.0853,2.4315,0.39599,0.38533,4.8125,5.3369,4.1115,4.406,2.0347,1.6768,11.1842,8.65,2.9997,3.5436,4.0376,3.6837,4.3518,4.2503,1.3679,1.5117,2.0489,1.9723,4.1116,3.7629,6.767,6.6884,2.24,2.0647,5.7922,5.984,11.0778,10.1888,7.3862,7.4574,2.6347,2.4985,5.1655,5.2192,1.8856,1.9772,16.5933,19.4458,4.9089,5.3515,3.9283,3.8666,1.1758,1.1753,2.5856,2.5397,8.3148,7.9295,13.5114,13.6704,2.5237,2.8357,3.9653,4.0099,3.8079,3.2797,1.7978,1.4758,4.0853,4.7365,10.5318,10.9108,2.6559,3.1183,2.4381,2.3155,2.3606,2.2704,8.7061,10.7917,2.3616,2.3962,2.0151,2.1995,11.531,12.8559,1.9074,2.0222,1.2255,1.2275,14.9386,15.2984,5.3303,5.6207,7.332,8.6776,4.0615,2.6808,10.7547,10.5394,7.0612,7.037,7.6584,7.4087,4.0125,4.504,1.4808,1.6896,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,741
+desd743,73,73,F,1.0728,1.0427,0.00009,0.095,0.51139,0.51612,2.0826,0.00039,0.00075,7.4207,8.5017,9.3302,2.9582,76.6563,98.56,1.261,2.4134,2.1047,0.75667,0.59913,10.9448,12.3983,1.3485,1.2801,0.23437,0.32999,5.5588,5.8867,3.9009,4.0697,0.07933,3.5114,1.3543,0.00144,0.28045,0.2964,0.00729,1.9898,2.0098,1.1702,0.00047,0.00008,5.3578,2.2506,2.9727,2.5867,2.1079,0.12649,3.9992,3.9611,1.1498,0.91267,0.75116,0.90154,0,0,4.8245,4.5657,0.51662,0.77512,5.6021,3.8533,5.5287,5.4301,6.8819,6.1704,0.02731,0.06594,0,0,0.16873,0.03454,0,0,4.3769,4.6551,1.0424,1.2391,0,0.80674,1.9456,1.863,0.02225,0.00046,8.7517,8.7586,2.2862,2.4894,1.4146,2.3413,0.00048,0.00223,0.00987,0.0049,1.3402,3.1833,8.4179,7.2975,2.2915,2.5425,1.7966,1.7975,0.38842,0.78485,0.00068,0.00568,0.63246,1.4214,1.5795,1.4588,0,6.6888,1.577,1.6423,0.81868,0.79424,0.00029,0.00005,0,0,0.01333,0.29404,3.8999,2.9009,7.3466,8.188,5.9204,5.1665,5.7369,5.3353,1.1485,0,1.2863,1.0059,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,742
+desd744,74,74,M,2.2559,2.6714,0.3548,0.37589,0.68424,0.67135,17.2224,3.014,2.9211,43.1869,44.0063,14.0298,14.0371,218.897,215.3137,1.9463,2.7718,2.4984,1.7486,1.7961,19.6264,18.5819,1.5866,1.563,3.6117,3.8535,6.8938,6.9676,4.6607,5.0074,0.0778,4.4978,2.0776,2.3782,0.34677,0.35866,3.591,3.9461,3.8023,4.2509,1.4162,1.3156,9.078,8.0827,2.9493,2.8335,3.697,4.0314,4.1992,4.1139,1.3782,1.3227,1.7157,1.8211,3.2388,3.1364,6.5704,6.2158,1.6897,1.6831,5.6631,5.9258,10.7082,9.9763,7.972,7.3653,1.885,2.153,4.0733,4.4103,1.5862,1.5073,15.8147,15.7201,4.1239,5.2674,3.2708,3.5123,0.94556,0.99614,1.9052,2.4728,6.5775,6.163,12.97,11.9541,2.5712,3.1483,4.0742,3.8876,3.0321,3.2733,1.3934,1.3584,3.4985,3.7223,9.5692,9.4709,2.6622,2.727,2.4446,2.2883,1.8769,2.3182,8.4421,10.0361,2.1024,2.3736,1.9035,2.2365,11.1104,11.0545,1.568,1.8724,1.0767,1.1152,13.1822,13.6217,4.2116,4.1389,7.0718,7.8364,3.4917,3.4265,9.7064,9.3275,6.2997,6.4764,6.3472,7.4131,3.3013,3.1706,1.1903,1.5023,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,743
+desd745,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,744
+desd746,70,70,F,1.4797,2.6631,0.35988,0.37612,0.8509,0.88298,16.0576,2.644,2.6265,46.8493,45.2721,12.2852,12.7157,214.4218,214.5005,1.3807,3.4678,3.1606,0.53477,0.5124,11.539,12.2916,1.5032,1.4615,3.2753,3.4883,6.439,6.8349,4.2133,4.4057,0.06774,4.7502,2.0771,2.4648,0.35381,0.37297,3.9558,4.44,3.7408,3.8499,1.5735,1.5289,8.727,9.0157,2.8962,2.7682,3.4588,3.8728,4.5374,3.6543,1.6091,1.6481,1.9482,1.9933,3.4367,3.0718,7.4213,6.8239,1.9435,1.969,5.5253,5.79,11.4184,9.8852,7.5728,6.8854,2.0685,2.328,4.8109,4.9177,1.5897,1.6422,16.95,17.1605,4.0023,5.1371,3.4163,3.6837,1.0275,0.9933,2.4536,2.4369,6.988,6.4971,14.1938,13.0492,2.3021,3.0187,3.8961,4.1008,3.1038,3.5456,1.4048,1.467,3.4532,3.9003,9.0214,9.2855,2.9145,3.1626,2.1037,2.0798,1.8433,2.2295,10.3997,10.6629,2.2056,2.4663,1.7945,2.1122,11.0072,10.3115,1.7591,1.6047,1.2499,1.2935,13.7606,13.4751,4.9246,5.0354,8.0252,8.7912,4.0265,2.932,9.1039,10.0392,7.422,7.4732,7.5884,7.0412,3.1045,3.8057,1.0384,1.2325,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,745
+desd747,76,76,M,1.8553,2.3987,0.3829,0.49937,0.91712,0.91589,17.5678,3.3177,3.2616,51.8561,51.1779,14.5233,14.7498,239.8651,232.5789,1.6015,3.4863,3.3601,0.9219,0.54888,14.9264,18.833,1.5712,1.4938,3.4333,3.6449,7.7315,7.9181,4.741,5.0816,0.0834,5.078,2.2797,2.6146,0.4105,0.40055,4.8806,5.078,3.9685,4.2128,2.1921,1.7476,12.1488,10.3576,3.2764,2.9452,4.2634,3.949,4.6917,4.1531,1.8746,1.7519,1.7464,1.9185,4.4148,4.3243,8.22,8.0387,2.2547,2.3903,6.3441,6.5007,13.3156,14.1385,8.9171,7.9709,2.6996,2.4943,5.1245,4.7707,2.0182,2.5162,21.0876,20.2197,5.5575,6.4883,4.6542,5.068,0.88156,0.88625,2.0343,2.448,9.1937,7.4069,16.7568,17.6266,2.3636,3.3407,5.0403,5.1498,2.7745,3.014,1.8759,1.5388,4.6767,4.7456,12.1045,11.8877,3.188,3.5841,2.3747,2.2395,2.4338,2.7929,11.9035,12.7777,2.4394,2.7123,2.0756,2.4352,12.5464,10.8132,1.9286,2.2319,1.3388,1.5057,14.0523,16.7898,5.5426,5.7074,8.2807,9.9955,4.1829,3.2142,10.8166,10.5715,8.4167,8.7619,8.8052,8.4243,3.5681,3.9689,1.5661,1.8736,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,746
+desd748,63,63,F,1.5191,1.7275,0.35802,0.40283,0.70166,0.74646,19.7882,2.6297,2.6191,50.4762,49.5695,15.6101,16.4393,212.9949,206.1572,1.33,3.0192,2.8438,0.4579,0.51484,16.0833,20.0821,1.5525,1.6283,3.3207,3.2834,6.4129,6.7086,4.6091,4.8988,0.07896,4.8838,2.3305,2.5815,0.38664,0.37661,4.1621,4.4827,3.8432,3.8531,1.6668,1.4379,9.2715,8.8278,3.3611,3.4869,3.7112,3.9223,4.6393,4.475,1.407,1.4737,1.8267,1.819,3.492,3.4177,6.8871,7.0287,1.8942,2.0747,7.2028,6.0086,10.916,10.0447,7.7182,6.9412,2.1543,2.259,4.6062,4.6586,1.5732,1.5537,17.552,18.4488,5.9004,5.981,3.6114,3.7638,1.1633,1.3496,2.946,2.9714,6.6016,6.4198,13.8112,12.7949,3.0269,3.6257,4.0605,4.3198,3.3074,2.7669,1.4201,1.4297,3.911,4.3267,10.9795,10.3832,2.7068,2.8618,2.1717,2.2243,1.9221,2.1968,10.5416,11.2932,2.3559,2.3931,1.9234,2.2326,10.8545,10.7422,1.8207,1.7509,1.1423,1.1687,13.7916,13.3131,5.1528,4.6124,7.1464,9.011,4.4673,3.879,9.684,11.5286,7.0517,7.6237,6.266,7.1199,3.3528,3.3445,1.3595,1.376,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,747
+desd749,71,71,F,0.89572,1.8003,0.40749,0.45523,0.86557,0.90897,17.9005,2.6515,2.7022,44.0934,44.2579,12.8078,13.3136,207.9605,204.3795,0.94698,3.3244,3.0577,0.49432,0.35424,11.1899,13.6102,1.4296,1.4402,3.5115,3.438,6.7928,7.053,4.2623,4.4197,0.07082,4.1429,1.9941,2.3954,0.4115,0.4046,3.847,4.4059,3.8487,3.8279,2.0067,1.712,10.1158,8.9469,3.2766,3.2794,3.7899,3.891,4.9111,4.8578,1.7835,1.6606,1.7889,1.7542,4.0231,3.719,8.2799,8.1556,2.1109,2.226,7.0963,6.2801,12.1871,11.8236,7.9751,6.9263,2.3336,2.5896,4.7042,5.2758,1.7892,1.7445,18.5718,18.1078,5.532,6.2199,4.1567,4.1871,1.0173,1.0249,2.6416,2.5262,7.6211,6.6459,15.2276,15.6892,2.6114,3.2931,4.5219,4.4651,2.944,3.1812,1.4492,1.4553,3.8449,4.3267,10.1363,10.5432,3.1027,3.1236,2.1346,2.0623,2.0761,1.9606,9.7747,12.3986,2.5161,2.4762,1.9364,2.0736,12.0438,13.4129,1.8701,1.6056,1.1837,1.2162,14.2843,14.2374,5.4783,5.799,8.4254,8.0408,4.1453,3.4129,12.0503,12.2536,7.7819,6.6764,8.5351,7.7448,3.1664,3.6306,1.4008,1.4168,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,748
+desd750,70,70,M,2.2566,2.271,0.41601,0.43868,0.90401,0.85904,18.92,3.2182,3.0055,50.7498,51.4787,16.1122,16.505,243.9959,247.7543,2.2262,3.2833,3.1863,1.7017,1.5606,28.2264,25.9303,1.6568,1.6886,3.8649,3.6544,7.1072,7.7073,4.9232,5.0355,0.08488,5.3326,2.4767,3.1022,0.39307,0.40229,3.7422,4.3947,3.7816,4.2509,1.6786,1.5455,10.4985,8.8907,3.6251,3.2987,4.3301,4.1444,4.8849,4.6044,1.5867,1.5289,1.946,1.8648,3.3687,3.2473,7.7057,7.0443,1.9065,1.9198,6.9133,6.5861,11.8356,11.183,8.8942,8.5248,1.9676,2.5249,4.3009,4.2856,1.6815,1.7671,18.8515,19.5969,5.1663,6.7603,3.8506,3.7696,1.1645,1.0916,2.6924,2.5913,6.7768,6.7388,14.5372,13.8944,3.55,2.9551,4.5756,4.6394,3.5722,3.5511,1.2483,1.4859,3.831,4.2412,10.1363,9.804,3.1327,3.6146,2.3289,2.2563,2.2039,2.8493,9.8412,11.1711,2.238,2.4641,2.2234,2.2655,12.3611,11.894,2.0784,2.3159,1.2173,1.3382,14.4175,14.2564,5.2541,5.366,7.3627,9.4771,4.5184,3.7167,11.0831,10.4671,7.0448,7.83,7.2099,6.9869,3.1222,3.8219,1.6481,1.7362,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,749
+desd751,74,74,M,1.6791,2.1439,0.45089,0.51409,0.9569,0.94771,18.2541,3.3473,3.0203,47.7163,48.7685,16.4399,16.4672,236.4197,232.8723,2.0508,3.6277,3.4656,0.66404,0.49127,23.6087,27.0618,1.5877,1.5518,3.6942,3.6544,7.756,7.7881,4.8366,5.0564,0.08872,5.4297,2.2946,2.8658,0.42072,0.42533,4.8787,5.3957,3.9685,4.8254,2.0117,1.8329,10.5766,10.3806,3.6982,3.8687,4.1476,4.8279,5.6182,5.6975,1.9382,1.8669,1.9862,2.048,4.3942,3.8872,8.1211,7.9638,2.3976,2.094,8.3124,8.9127,15.13,12.3988,8.5558,8.3164,2.493,2.8712,5.1655,4.5129,2.0737,2.2084,22.0412,22.5254,5.6053,7.2491,4.2565,4.5213,1.1047,1.3173,2.9956,2.9101,9.1646,8.0611,16.1744,15.5091,3.5489,3.3014,4.0666,4.5662,4.0695,3.7375,1.6808,1.7048,4.2029,4.9304,11.7678,11.096,3.2971,3.5234,2.3438,2.393,2.3964,2.5327,10.8503,12.0172,2.952,3.2117,2.2822,2.1959,14.1394,15.7442,1.9579,2.3352,1.359,1.4012,17.7623,17.7633,5.8884,5.9984,10.2352,9.2497,4.7164,3.7762,11.2722,11.8615,8.4316,8.0575,9.3517,9.4607,4.0293,4.0109,1.5133,1.7511,,28,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,750
+desd752,72,72,F,2.0414,1.6804,0.37638,0.47086,0.71715,0.79298,17.0278,3.0714,3.1851,43.1869,42.0541,14.6937,15.3027,236.8481,236.9625,1.8952,2.914,2.8595,1.2616,0.81228,23.4697,21.5615,1.5712,1.5671,3.3926,3.3801,6.1025,6.6472,4.4183,4.6521,0.07994,4.4349,1.9574,2.6111,0.38849,0.41609,4.143,4.8562,3.4672,3.4546,1.7091,1.5246,10.8675,9.0953,2.7959,2.8104,4.0336,3.5342,4.2208,4.1721,1.5225,1.6233,1.6794,1.5008,3.826,3.5148,7.3078,7.3983,2.5778,2.6585,6.3098,6.3769,11.4121,10.8608,7.7665,7.1023,2.2095,2.4243,5.2099,5.5488,1.9356,1.8975,19.5017,19.8761,5.5605,5.4933,4.1958,4.279,1.112,1.2063,2.8719,3.182,8.4599,7.9001,14.0586,13.5169,2.5444,3.1483,4.3439,4.2284,3.0249,2.6854,1.4475,1.4844,4.0449,4.453,11.033,10.6859,2.6687,3.0474,2.0965,1.9116,2.1501,2.5641,11.5793,13.1117,2.4149,2.7957,1.8492,2.0385,13.2394,13.2312,1.7839,2.1825,1.2912,1.3214,15.5207,14.9497,5.1721,5.1173,7.7676,9.2829,3.5488,3.2779,11.2976,10.5685,7.067,7.4671,7.404,7.4591,3.2944,3.8183,1.3492,1.3876,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,751
+desd753,42,42,F,1.0437,1.4794,0.3781,0.37448,0.86623,0.89996,18.9336,2.8135,2.6533,43.8728,48.1425,14.0223,14.6249,204.8771,208.7993,1.2612,3.3652,3.1767,0.60754,0.60498,10.9034,17.1136,1.5667,1.5442,3.4135,3.5981,6.7055,6.9801,4.5223,4.7552,0.07416,4.8977,2.3544,2.522,0.32524,0.34323,3.5976,3.9538,3.7341,3.9433,1.5942,1.4382,8.7598,9.0157,3.2457,3.4506,3.5586,3.9289,4.9972,5.1312,1.7817,1.7477,1.7385,1.8092,3.2479,3.0901,8.1453,7.9662,1.7646,1.8822,7.6726,6.837,12.4447,11.6051,8.4717,7.3152,2.0058,2.2419,4.357,4.447,1.4937,1.5371,15.5811,17.9085,5.7094,6.4401,3.3117,3.6606,1.0662,1.1734,2.3621,2.7867,7.1452,5.9329,13.9705,13.0691,3.0955,3.65,4.4497,4.3142,3.2949,3.2146,1.2343,1.407,4.301,4.7032,10.0915,11.3595,2.8052,3.1821,1.941,2.021,1.8433,2.0528,8.2043,10.0256,2.1132,2.3013,1.8357,2.0808,11.0166,12.0331,1.7731,1.8484,1.054,1.1263,13.4644,13.8567,5.1071,4.6472,6.6708,8.6432,4.6594,4.3388,9.8516,10.6744,7.2022,7.3722,7.8081,8.5218,3.3557,3.558,1.181,1.3575,,24,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,752
+desd754,,,F,1.2254,1.4841,0.40101,0.42626,0.88136,0.8853,16.2165,2.6524,2.5681,42.281,41.6152,14.6801,14.7056,211.7795,209.0373,1.2229,3.4127,3.1564,0.65429,0.74287,13.5658,16.3416,1.524,1.4666,3.3727,3.4931,6.6481,6.4111,4.4644,4.6618,0.08345,4.6685,2.2356,2.565,0.40259,0.39793,3.9944,4.7133,4.2385,3.9356,1.9727,1.7011,9.0647,8.6328,3.2255,3.0768,3.9775,4.2067,4.2915,4.1815,1.6748,1.6599,1.8574,1.8514,3.7899,3.5148,7.3072,7.1395,2.3994,2.3479,6.6265,5.9187,12.5051,12.039,7.9804,7.335,2.4928,2.5896,4.8619,4.9715,1.8294,1.8661,20.6915,21.4013,5.1801,5.4893,4.1673,4.2215,0.95715,1.1718,2.3435,2.7517,8.4398,6.7513,15.1099,14.5309,2.5289,3.0981,4.4075,4.3583,3.8531,3.5708,1.6438,1.4969,3.9242,4.3719,10.2395,9.8269,2.846,3.1251,2.313,2.2563,1.9892,2.4296,9.9635,12.8486,2.497,2.7957,1.9335,2.0631,11.8168,11.3856,1.8463,1.7895,1.2814,1.3373,13.6742,13.6861,5.3927,5.4055,7.6058,8.6945,3.7227,2.9982,10.3852,10.3277,7.1485,7.273,8.0801,8.0864,3.9793,4.0681,1.3885,1.3774,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,753
+desd755,70,70,M,1.8751,1.6123,0.38402,0.41575,0.86696,0.83459,18.6723,3.0452,2.7471,47.8771,49.3091,15.0817,16.4669,219.3807,213.4574,1.6516,3.2742,2.973,0.70921,0.72598,18.0742,16.8413,1.6406,1.6625,3.4573,3.5025,7.1846,7.2325,4.7611,4.9841,0.08307,4.6514,2.236,2.4322,0.41104,0.39466,4.1933,5.0062,4.4494,4.9566,1.7091,1.61,9.3977,8.9329,3.41,3.4179,4.1936,3.7658,5.0682,4.9263,1.876,1.7241,2.0236,2.0081,3.4684,3.5254,8.1937,7.7014,1.9996,2.2647,6.8062,6.7305,11.5841,11.6856,8.2528,7.3152,2.3364,2.4614,5.0773,5.1549,1.8869,1.9318,18.0466,18.6945,5.6872,7.1033,3.9408,4.3007,1.0477,1.0991,2.5739,2.3727,7.9189,7.0519,13.918,13.9609,3.0269,3.3266,4.3761,4.2128,3.5605,3.324,1.6736,1.6168,4.2617,4.7365,11.2044,10.8436,3.2669,3.6146,2.4064,2.4628,2.5902,2.9678,10.3656,11.3632,2.2488,2.7294,2.2234,2.4949,12.809,12.5071,2.2245,2.4649,1.3224,1.4156,14.6241,15.5816,5.7568,5.7904,7.9386,8.0099,4.1733,3.6876,10.0615,10.7882,8.2011,7.7066,8.5425,8.4413,3.69,3.8341,1.6489,1.6804,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,754
+desd756,63,63,F,1.1082,2.1104,0.39576,0.46912,0.82078,0.86494,18.213,3.2785,3.2469,43.5641,43.3698,14.0223,14.1673,207.7413,207.7314,1.3404,3.0836,2.8595,0.50557,0.58428,17.9412,18.4159,1.6551,1.6336,3.7896,3.8252,7.4172,7.2876,4.7272,4.9872,0.07177,4.739,2.0488,2.4809,0.38613,0.37462,3.6152,4.1208,4.0376,3.958,1.5789,1.5165,10.6519,10.0039,2.8146,2.883,3.6925,4.5149,4.648,3.8144,1.7484,1.7159,1.8298,1.7612,3.1789,3.1181,7.7075,8.1054,1.7608,1.8516,6.6592,6.7684,11.64,11.5464,8.2946,7.4707,2.0761,2.2919,4.1164,4.4862,1.614,1.5996,18.8515,17.9772,5.1217,6.4883,3.401,3.8074,1.0173,1.0348,2.5015,2.5647,6.5218,6.2902,14.7577,13.6328,3.1751,3.6115,4.3071,4.1161,3.1583,3.34,1.5894,1.3237,3.8381,4.2314,10.7288,10.4622,2.9328,2.9473,2.2975,2.3179,2.2087,2.4582,10.9132,11.7576,2.2717,2.2676,2.0228,2.2008,11.8116,12.313,1.6339,1.9727,1.0344,1.062,13.1853,14.102,4.5318,4.786,8.3254,9.3758,4.3969,3.746,10.6511,11.0209,7.7819,7.395,8.383,7.8828,3.8261,3.4857,1.3584,1.4667,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,755
+desd757,60,60,F,0.73794,1.2959,0.31981,0.31718,0.7034,0.61588,15.854,2.5083,2.3782,36.0362,37.9211,12.4457,12.7314,187.6209,189.7608,0.39686,2.9848,2.5938,0.75667,0.59913,5.9624,5.4567,1.4289,1.5457,3.0887,3.0698,5.7414,5.9495,3.9973,4.1478,0.06598,3.856,1.8047,2.0897,0.29742,0.31632,4.4036,4.7127,3.4372,3.9644,1.593,1.497,7.1019,8.6227,2.3393,2.3661,3.8306,4.1199,3.8648,3.0535,1.3864,1.3032,1.7233,1.7612,4.0664,3.5415,6.0282,5.8168,1.8708,1.9973,5.4548,5.4631,8.7702,8.1703,6.0729,5.4669,1.9596,2.2657,4.738,5.0431,1.8138,1.7733,16.3678,17.3371,4.3234,5.047,3.4559,3.5098,0,0,0,0,8.4398,6.8858,11.6241,10.7795,2.2886,2.3848,3.5715,3.3854,3.2383,3.322,1.2803,1.4934,3.5234,3.8922,7.3639,8.6851,2.5116,2.5536,2.2215,2.0887,1.8636,2.0306,9.091,9.8737,2.0384,2.0134,1.9189,2.0071,10.0863,11.0022,1.6975,1.8485,1.0663,1.1058,16.8157,13.3589,5.5127,5.3156,6.7591,8.2312,3.4931,2.6126,8.8864,0.43408,5.9591,6.252,6.2429,6.727,2.9372,3.3372,1.2537,1.4223,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,756
+desd758,72,72,F,1.6456,1.6911,0.35805,0.39595,0.59698,0.66216,14.7753,2.8349,2.5936,43.7226,43.7109,10.9827,11.7821,160.604,152.4398,1.6254,2.554,2.5491,0.97819,0.66018,13.6285,20.0874,1.3705,1.3129,3.3618,3.5292,5.8808,5.6047,4.2761,4.4197,0.06534,4.4952,2.0488,2.4741,0.35503,0.33838,3.8395,4.6895,3.7875,3.8088,1.5062,1.5289,9.083,8.1748,2.9111,2.9632,3.8895,3.8558,4.4989,4.0367,1.1621,1.3277,1.8262,1.7433,3.3523,3.1244,6.7407,6.5989,1.9519,1.8037,6.2322,5.3497,9.9808,9.6693,7.4809,6.935,1.9513,2.3723,4.121,4.3288,1.6125,1.6417,17.6055,17.9538,5.1447,5.6348,3.6316,3.7955,1.0275,1.1971,2.465,2.5797,8.1308,6.3241,13.0804,13.1739,2.916,3.0027,4.0501,3.7503,2.73,2.9128,1.3675,1.3536,4.1859,4.6327,9.8153,9.7247,2.7711,2.7031,2.2408,2.1047,2.16,2.2527,10.5834,10.536,2.1067,2.4821,1.9457,2.0265,13.2372,14.0706,1.8112,2.0838,0.99239,1.0552,13.7655,12.9226,5.1721,4.7219,7.2196,8.9246,3.9083,2.8841,9.3173,9.1445,6.9716,6.9543,6.6344,6.245,3.1503,3.2213,1.5011,1.467,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,757
+desd759,,,M,2.142,2.3369,0.49537,0.52148,1.0112,0.97834,19.4859,3.6181,3.546,55.3105,56.8183,18.9067,18.277,262.0686,255.3596,1.5952,3.9872,3.9457,0.68395,0.67293,18.5788,24.8629,1.911,1.8286,4.8227,4.6401,8.15,9.5428,4.9821,5.2364,0.09633,5.6612,2.4251,3.2649,0.47709,0.47859,4.5916,5.214,5.1134,5.4048,1.9376,1.8698,11.7542,11.4997,3.936,3.7189,4.3528,5.229,5.2677,4.6995,1.9785,1.9511,2.4494,2.6153,3.7273,3.7021,8.823,8.2358,2.2824,2.031,6.8332,6.639,13.085,11.6051,9.2334,8.0698,2.4049,2.8718,5.1387,5.1103,2.0872,2.2084,21.3093,19.6175,5.4599,7.2491,3.9158,4.0271,1.435,1.3173,2.9005,2.9983,9.613,7.8726,16.2184,14.2233,2.789,3.2581,4.8025,4.8561,3.8602,4.5503,1.8669,1.6954,4.8073,5.319,12.0215,12.4284,3.218,3.6673,2.9604,3.0611,2.4781,3.1049,13.6552,13.2572,2.8536,2.8016,2.5449,3.0548,15.9763,13.0547,2.0737,2.4655,1.3666,1.4414,15.7713,17.4915,5.5008,6.337,9.3669,10.0058,4.1829,3.1072,11.866,11.7601,8.4167,8.5007,8.9331,9.0002,4.0204,3.9535,1.6686,1.9208,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,758
+desd760,69,69,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,759
+desd761,,,M,1.906,1.6315,0.38402,0.41575,0.81323,0.78801,19.5817,3.0452,2.7813,44.0619,44.7231,15.1165,15.5424,231.234,222.6818,1.6516,3.268,2.9924,0.95945,0.84609,17.223,16.8413,1.6406,1.6102,4.1544,4.4232,7.2191,7.4399,4.6823,4.9773,0.08199,5.5227,2.3083,2.8265,0.36116,0.36064,4.1278,4.3208,4.4412,4.1508,1.7381,1.5468,10.7837,10.3377,3.617,3.144,3.5163,3.6841,5.1395,4.528,1.7405,1.589,2.0185,1.9447,3.4663,3.2473,7.3624,7.338,1.9406,1.9938,6.4351,6.2111,11.6005,11.0933,8.5437,8.2913,2.3364,2.4574,5.0588,4.6616,1.7108,1.6942,16.5157,17.7121,5.2541,5.9325,3.8306,3.8401,1.0921,1.1039,2.6164,2.531,7.9901,6.3866,14.1938,12.9319,3.0051,3.2581,4.6967,4.6005,3.7979,3.4439,1.6491,1.5579,3.9418,4.3659,11.258,10.6984,3.1447,3.3091,2.5473,2.2321,2.2098,2.2578,9.7535,10.4723,2.2087,2.5093,2.2704,2.2384,10.4564,10.72,1.9704,1.9181,1.1482,1.1489,15.517,13.8296,5.4325,4.9899,7.9417,8.9708,3.8339,3.3175,10.1525,10.4229,7.6925,7.2786,8.3154,8.1057,3.8612,3.7077,1.5081,1.7914,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,760
+desd762,82,82,F,2.5515,2.3996,0.38217,0.42061,0.73159,0.83327,16.9978,3.1409,3.0003,45.4266,46.5014,13.1238,13.6368,179.8113,176.2179,2.0844,3.2181,3.1525,0.90656,0.91392,31.4798,32.9243,1.6206,1.6486,3.7689,3.7625,6.5392,6.6985,4.6544,4.9407,0.07639,5.0696,2.1986,2.6222,0.39973,0.40491,4.0922,5.1149,4.1808,4.2958,1.4807,1.5165,9.6946,8.867,3.4933,3.4771,4.0572,3.9929,4.7813,3.8777,1.4342,1.4931,1.8904,2.0088,3.9597,3.5221,6.9291,6.4949,2.0828,2.1913,6.7318,6.4095,10.9084,10.207,8.7088,7.9168,2.0702,2.3084,4.3896,4.7509,1.7934,1.8114,16.5933,17.4151,6.0676,5.9223,3.4848,4.0077,1.0939,1.3187,2.8006,2.7011,8.5647,7.5905,12.6504,11.9078,3.483,3.9171,4.4684,4.2973,3.2812,3.14,1.506,1.4284,4.2069,4.5857,10.8854,10.6517,2.7355,2.9739,2.4675,2.1631,2.4349,2.2689,9.7635,11.2527,2.1495,2.2691,2.033,2.2819,11.8239,11.8684,1.8144,2.1445,1.2564,1.2561,15.565,15.8069,5.3621,5.6941,6.9792,8.5524,4.755,4.0374,9.9513,11.5286,7.1344,6.9792,6.4975,7.1199,3.5287,3.6508,1.5171,1.6345,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,761
+desd763,68,68,M,1.8597,1.9663,0.41653,0.45606,0.63104,0.70698,17.6046,3.4732,3.0601,44.1094,42.9721,14.3679,14.4955,245.6176,239.0348,1.6214,2.7718,2.6597,0.68917,0.73466,21.7125,24.3171,1.7943,1.8143,3.7896,3.6544,6.39,7.1303,4.5856,4.7728,0.07328,4.4376,2.0275,2.4133,0.40743,0.4066,3.2603,4.2382,4.1727,4.2191,1.8675,1.6008,10.4493,10.4475,2.9363,2.7433,3.7878,3.9068,4.1992,4.0584,1.3409,1.3822,2.1498,1.8545,3.8129,3.4631,6.5651,6.2539,2.3994,2.1961,6.6239,5.9105,11.5109,10.2843,7.4103,6.8608,2.3725,2.5839,4.4497,4.8107,1.8483,1.8811,18.4156,18.181,5.1518,7.0509,4.0221,4.2283,0.96542,0.9641,2.4699,2.4017,7.9901,6.5523,13.5199,13.6704,3.0325,3.919,3.9382,3.6426,2.9628,3.2644,1.7912,1.4835,3.5904,4.1302,9.6417,9.6885,2.6338,2.8218,2.2089,2.1862,2.3098,2.6695,10.3956,11.4993,2.4463,2.7957,2.0833,2.3636,12.8515,12.4872,2.2101,2.0213,1.3271,1.3577,15.2759,15.6985,5.308,5.1043,9.415,9.8517,4.1802,3.144,10.8406,11.3401,7.2476,7.8476,7.544,6.9893,3.7857,4.3993,1.5697,1.7354,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,762
+desd764,69,69,F,1.5307,2.3068,0.37607,0.44067,0.89651,0.91061,17.1079,2.8217,2.818,45.649,44.2208,14.4356,15.0749,240.1943,238.5675,1.2296,3.8423,3.5201,0.60023,0.39072,10.462,10.1571,1.5478,1.5138,3.3703,3.6285,7.0223,7.3494,4.6268,4.8254,0.08537,4.7502,2.2158,2.5288,0.41993,0.39698,4.2709,4.8432,4.4282,4.8529,1.8194,1.7273,10.1448,10.1,3.793,3.6542,4.6459,4.6187,5.5132,4.8128,1.7756,1.8106,2.088,2.3666,3.6668,3.5799,7.7769,7.3983,1.9208,2.089,7.4588,7.1014,12.9681,11.9568,9.89,8.7069,2.4045,2.7886,5.2304,5.1811,1.7108,1.8136,20.8868,21.4013,5.467,6.7802,3.6544,4.0271,1.0851,1.3187,2.8387,2.8154,7.7507,7.1587,16.0082,15.4195,3.7885,3.8397,4.8417,5.1469,4.09,3.353,1.7267,1.7763,4.5097,4.728,10.5846,10.4413,3.1019,3.2913,2.4554,2.3709,2.8213,2.7369,11.1598,12.3416,2.426,2.6346,2.0825,2.4102,13.6971,14.0994,2.4074,2.1929,1.1744,1.2461,15.887,15.5481,5.6312,5.4501,8.3106,10.1914,4.5184,3.7136,10.9174,10.6301,8.6455,8.1752,9.4414,10.4928,4.1023,4.4729,1.5578,1.5959,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,763
+desd765,67,67,M,2.324,3.7549,0.3314,0.35524,0.76392,0.69628,15.1792,3.1161,2.8071,44.0019,42.9074,12.0435,12.2351,204.1758,186.1223,2.1398,3.2506,2.8086,1.7499,2.2971,31.5216,24.8942,1.5107,1.4615,3.5583,3.4907,6.2639,6.5673,4.2378,4.3463,0.07515,4.1865,2.0849,2.4787,0.38156,0.38384,4.0312,4.4643,3.8215,4.1694,1.6798,1.4409,9.61,8.1491,3.3529,3.1842,3.9353,3.9788,4.3989,4.1411,1.4298,1.3538,2.0749,1.9804,3.3198,3.3346,6.4508,6.2417,1.8973,1.8733,6.0933,5.8453,10.2323,10.5122,7.7153,7.3653,2.1988,2.2343,4.5939,4.2041,1.5906,1.5507,19.3284,18.4001,4.9289,5.7175,3.7639,3.6814,0.98811,1.1088,2.4536,2.3792,7.0436,6.6186,13.5857,13.1579,2.811,2.8953,4.0742,4.095,3.4493,2.6187,1.4656,1.5771,3.6701,4.313,9.6819,10.1946,2.5475,2.9875,2.2838,2.1434,2.2136,2.3988,9.2469,10.8421,2.421,2.2908,2.0154,2.2574,12.2882,12.271,1.8156,2.002,1.2017,1.2125,14.4863,14.1021,5.0316,5.3437,7.0785,8.4124,4.2413,3.5751,8.7907,9.8233,6.5685,7.4393,7.0417,6.3085,3.5091,3.7462,1.6071,1.7051,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,764
+desd766,70,70,M,2.2566,2.7068,0.31531,0.37155,0.68649,0.6755,18.505,2.7265,2.626,47.6643,46.7113,14.6035,14.6074,229.3533,230.6618,1.9463,2.9139,2.7815,1.6972,1.9334,24.1549,22.3409,1.7119,1.6611,3.4568,3.7797,6.2951,6.2886,4.6409,4.8807,0.08744,4.9321,2.1997,2.6567,0.36072,0.35979,3.4038,4.1868,3.996,3.9214,1.7992,1.5874,10.6495,9.6728,3.1304,3.0054,3.2952,3.9159,5.0648,4.5205,1.2982,1.2057,1.7944,1.8184,4.0582,3.6497,6.2903,5.8516,2.0976,2.0001,7.213,7.0508,10.4651,9.3713,7.7523,7.5794,2.2103,2.3,4.057,4.3193,1.7473,1.6782,18.3593,18.5906,5.8092,7.0699,3.6354,3.9297,0.95246,0.93811,2.1484,1.979,7.1579,6.6771,13.5111,12.1538,3.9516,4.6205,4.5601,4.5731,3.6326,3.4061,1.4201,1.3463,3.8863,4.2633,10.4286,10.7938,2.4133,2.7969,2.3357,2.2366,1.7744,2.3681,9.877,11.2423,1.8117,2.1804,1.9255,2.0946,11.8801,11.3597,1.8172,2.1903,1.1548,1.2017,15.3682,15.5509,5.2541,5.1072,7.9077,9.2829,4.9115,4.3046,11.3106,10.2256,7.0983,7.4671,7.057,6.9046,3.5166,3.7842,1.4593,1.463,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,765
+desd767,75,75,F,1.7085,1.6037,0.34399,0.33352,0.65252,0.53621,17.0633,2.6553,1.6978,34.758,36.7788,14.3518,14.6543,202.9975,197.7453,1.3813,2.6811,2.3086,0.84938,0.66018,13.7106,19.5313,1.3988,1.4771,3.1242,3.1877,5.785,5.9647,4.2355,4.3401,0.08637,3.8579,2.1788,2.4701,0.3093,0.31632,3.222,3.6304,3.3117,3.5351,1.4349,1.3607,8.2616,7.1867,2.1377,2.1827,3.5019,3.3813,3.7159,3.0535,1.3214,1.0909,1.6705,1.6246,3.2655,2.7572,5.7968,5.6822,1.7184,1.6755,5.3459,4.8097,9.5989,8.5717,6.5576,5.6364,1.7443,2.067,3.7305,3.825,1.4458,1.3901,16.2045,16.5257,4.6532,4.4411,3.2927,3.2221,0.95698,0.83313,2.1427,2.04,6.3032,5.6333,11.7952,10.0887,2.3876,2.7622,3.6552,3.4301,2.971,2.557,1.135,1.241,3.0514,3.3203,8.7364,8.282,2.5692,2.6444,2.0348,1.916,1.7999,1.9735,8.3544,8.6872,1.8465,2.0846,1.7793,1.8628,10.1731,10.6762,1.568,1.7361,1.028,1.0615,12.5938,12.2939,4.4287,4.8594,6.6741,7.5258,3.4902,2.8583,8.0776,9.2684,5.8164,5.5948,6.3232,5.9814,3.0398,3.0175,1.2209,1.2325,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,766
+desd768,,,M,2.4514,2.4089,0.39339,0.42069,0.84385,0.85492,16.5496,2.6948,2.6985,44.8116,45.0829,15.0964,16.055,226.9296,224.5786,2.0899,3.3298,3.1269,0.83194,0.91392,22.4138,27.7174,1.5439,1.5028,3.3659,3.3958,7.0253,7.3654,4.4644,4.6501,0.07074,5.0864,2.3209,2.386,0.37188,0.37608,4.2935,4.4821,3.8856,4.0654,1.4291,1.4063,10.3589,9.4514,3.8947,3.3825,3.9415,4.1119,5.7872,4.8355,1.4588,1.6513,1.8245,2.0563,3.7175,3.6952,6.7149,6.5105,2.1025,2.1343,6.7589,6.1329,11.4592,9.954,8.5381,8.1669,1.8851,2.1568,4.3957,4.4695,1.6841,1.7132,19.1215,18.8358,5.5035,5.8435,3.3717,3.5735,0.89143,1.1835,2.4027,2.7925,7.2157,6.6371,13.4418,13.6704,3.329,3.4979,4.3358,4.2296,3.4978,3.3582,1.4353,1.5133,3.831,4.4716,10.7288,10.457,2.8168,3.097,2.3685,2.3789,2.0924,2.1325,10.2866,11.9325,2.0795,2.327,1.89,2.2119,12.7071,12.5606,1.9471,1.8673,1.2473,1.274,15.0319,13.3589,5.2471,5.0196,7.8322,8.2792,4.2333,3.7933,9.9654,10.2541,7.1689,7.1782,7.2374,6.6838,3.305,3.4464,1.3778,1.5241,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,767
+desd769,57,57,F,1.09,1.759,0.27157,0.31534,0.77434,0.7267,14.8758,2.826,2.4267,44.2266,45.1092,12.1718,12.9864,172.6784,175.5353,0.98114,3.0233,2.8504,0.37644,0.40243,10.2828,10.1573,1.3544,1.3295,3.0487,3.1336,5.9261,6.2662,3.9964,4.2179,0.07021,4.7154,2.1563,2.5717,0.34166,0.33122,3.829,4.4173,3.3575,3.6281,1.5816,1.3767,9.083,9.3719,1.7932,2.267,3.7112,3.806,3.8567,3.5516,1.5457,1.4384,1.7945,1.7211,3.3818,3.1244,6.8917,6.3769,1.7704,1.7798,5.263,5.0406,10.1361,10.3478,6.7914,5.2629,2.2026,2.2163,4.7897,4.6865,1.6167,1.6417,16.898,17.7897,4.0023,4.7415,3.3806,3.4263,0.97367,0.94805,2.3446,2.0501,7.1016,6.4971,13.7425,13.0736,1.9228,2.3736,3.6688,3.6264,2.9823,3.2688,1.4818,1.4634,3.4599,3.9003,9.4355,9.1429,2.56,2.8218,1.9203,1.9424,1.9819,2.1131,8.2043,9.2757,2.4092,2.1983,1.8343,1.965,11.1747,11.27,1.7331,1.6919,1.0854,1.1247,12.3468,13.4099,4.854,5.045,6.903,7.5987,3.241,3.2476,9.6935,8.5418,7.0635,6.3516,7.0973,6.8856,3.1462,3.8166,1.2987,1.4045,,26,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,768
+desd770,,,M,1.572,2.3519,0.34803,0.35398,0.8503,0.89401,18.4232,2.7281,1.9421,50.9428,49.4891,14.1985,14.443,207.3131,205.0193,1.33,3.4769,3.1416,0.79521,0.64834,13.6461,16.6564,1.5049,1.6013,3.2747,3.2285,6.5606,6.8129,4.4367,4.7434,0.07896,4.9801,2.452,3.0753,0.33725,0.35564,3.3679,3.8893,3.4448,3.6966,1.5597,1.4382,8.2133,7.1535,2.9077,2.9683,3.5078,3.5026,4.2648,4.0704,1.6902,1.7505,1.721,1.8599,3.315,3.1008,7.7073,7.0443,1.787,1.7039,6.6952,6.4522,12.309,11.2932,7.9171,6.9652,2.0766,2.3507,4.2386,4.5869,1.4273,1.4807,17.4708,16.8245,4.8343,6.305,3.704,3.4528,1.0098,0.95079,2.5739,2.4824,6.5434,6.2187,13.7943,14.4641,2.4321,3.2931,4.0661,4.1933,3.0249,3.1365,1.2752,1.4913,3.5927,3.8112,9.3456,10.4343,2.8667,3.145,2.0246,2.1265,1.9396,1.9332,10.3476,11.3254,2.2357,2.4944,1.8775,2.0661,11.6976,11.5614,1.7331,1.7361,1.0042,1.062,13.5211,13.4789,5.0284,4.7741,6.5474,7.854,3.7545,3.3642,9.0337,9.8944,7.3304,7.6438,7.7894,7.2682,3.2024,3.7475,1.457,1.3575,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,769
+desd771,,,M,1.705,1.9622,0.37089,0.43307,0.63104,0.71834,18.5205,2.9314,3.1461,48.0518,46.55,14.851,15.1504,267.6029,265.6812,1.3861,2.9139,2.7239,0.57386,0.54447,18.0767,20.429,1.8734,1.806,3.7231,4.1054,6.4189,7.862,4.7557,5.0523,0.09281,4.9634,2.231,2.6944,0.44246,0.40369,4.1933,5.2728,4.9964,4.7795,1.7931,1.5044,10.4915,9.3894,2.9883,3.0912,4.479,4.582,4.4191,4.0228,1.3657,1.3406,1.9532,2.0626,4.0094,3.719,6.9342,7.1017,2.5485,2.3058,6.9008,6.8933,10.2882,10.1935,7.462,7.0737,2.1175,2.3084,4.9316,4.7431,2.1056,2.1069,19.1785,19.6619,4.9397,6.4996,4.1427,4.3773,0.9308,0.95883,2.486,2.3596,9.0652,7.724,13.5111,13.5444,3.3382,4.0349,3.8353,4.1868,3.1579,3.2658,1.3391,1.4462,3.9306,4.4385,10.4931,10.2765,2.66,2.884,2.4234,2.278,2.826,2.573,9.7286,10.3083,2.1371,2.6164,2.0106,2.311,10.4106,10.4154,2.2245,2.462,1.3277,1.3388,14.2328,14.9704,5.8464,5.4839,8.2705,8.8502,4.3263,3.2678,10.9218,11.1361,7.0378,7.3223,7.6678,7.0574,3.5983,4.0972,1.4878,1.7801,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,770
+desd772,,,M,1.2664,1.4427,0.34523,0.34514,0.76607,0.63995,16.0896,2.5367,2.7087,42.2721,42.9952,12.0541,12.7531,183.508,180.5895,1.1253,2.9276,2.6557,0.66316,0.56191,11.6728,15.3654,1.357,1.3274,3.0985,2.9394,5.7202,5.8428,4.0467,4.1851,0.07651,4.1112,2.0712,2.4976,0.308,0.31632,3.6214,3.9603,3.5208,3.7078,1.5703,1.3804,8.7062,7.4835,2.8545,2.9999,4.0128,3.771,4.5577,4.0752,1.5505,1.3397,1.7244,1.7248,3.1353,3.3483,6.6711,6.0968,1.8708,1.9871,5.6379,5.8724,9.1167,9.1926,7.4337,6.8258,2.0158,2.1257,4.4139,4.734,1.5712,1.5314,15.9353,14.1337,4.9339,4.722,3.3153,3.6596,1.0474,1.0539,2.5617,2.538,6.9332,6.2017,11.1503,12.0337,3.0861,3.7121,3.5564,3.8858,3.0249,3.0444,1.2908,1.3574,3.6173,3.9111,9.9124,9.6351,2.5036,2.7152,2.1612,1.9411,1.8636,1.9191,9.2833,9.9433,2.0698,2.1766,1.7206,1.9149,10.8173,9.9601,1.5526,1.6495,1.1435,1.1594,12.9133,13.3816,5.0819,5.045,7.2187,7.7262,3.8853,3.8792,8.8861,9.2149,6.3734,6.1784,7.2726,6.3369,2.9755,3.2833,1.3028,1.2839,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,771
+desd773,66,66,M,1.7179,1.9408,0.41653,0.45566,0.88765,0.89123,18.8525,3.1087,2.9926,47.2819,46.6155,16.6983,16.2637,244.7943,243.7977,1.4746,3.5268,3.355,0.57608,0.51445,13.6461,15.3171,1.8519,1.806,4.0077,4.2219,7.4638,7.6321,4.7461,5.1317,0.09345,4.8763,2.1822,2.5755,0.4116,0.41012,4.2709,4.8562,4.5559,4.5741,1.8936,1.8003,10.91,9.2433,3.8322,3.7225,3.5981,3.4986,5.1616,4.7594,1.7414,1.7041,2.0311,2.2589,3.7029,3.5574,7.7176,7.6814,2.37,2.094,7.2009,7.1724,12.869,11.6909,9.5438,8.0287,2.415,2.7266,4.7042,5.2206,1.8856,1.8939,19.129,19.457,5.6932,7.2955,4.1567,4.1335,1.154,1.1164,2.3501,2.5701,8.0824,7.2221,16.6489,14.1533,3.0215,3.9386,4.7616,4.7157,3.7221,3.7879,1.6757,1.964,4.5414,4.4619,11.1166,10.9054,2.9925,3.3923,2.4912,2.5438,1.9963,2.3224,10.9172,11.7282,2.4739,2.5079,2.0654,2.5142,12.0314,11.7792,1.6166,2.0301,1.2918,1.2694,13.5275,13.2611,5.5548,5.6808,8.2433,8.6043,4.013,3.4659,10.0179,11.1494,6.6149,6.5463,9.5234,9.4371,3.9409,4.4704,1.3371,1.7313,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,772
+desd774,66,66,F,1.8287,2.794,0.29367,0.31106,0.70782,0.72975,16.2768,2.2641,2.2964,36.777,36.6688,12.7606,12.532,186.1888,196.4083,1.6263,3.0009,2.9325,1.5747,1.3591,22.9569,21.0729,1.2905,1.2703,3.3468,3.2691,6.1763,6.7606,4.0467,4.1604,0.05839,4.7314,2.1795,2.3445,0.32983,0.3378,3.2699,3.8893,3.782,4.3948,1.5849,1.5195,9.215,8.6035,2.8566,2.6632,3.507,3.949,3.8655,3.5316,1.4113,1.4735,1.7721,1.4748,3.2104,3.3009,5.9671,5.8965,1.6804,1.7443,5.3459,5.4631,9.6194,9.4893,5.7237,6.2403,2.0158,2.2395,3.7044,3.9116,1.3857,1.6229,14.9787,14.8729,4.5748,5.4552,3.3085,3.6918,1.1529,1.012,2.687,2.5861,6.4877,6.2112,11.9962,11.2481,1.5826,2.0922,3.5715,3.4301,3.2367,2.9716,1.343,1.4125,3.4994,3.352,9.0836,8.7818,2.728,2.7311,2.4446,2.4939,2.1353,2.1062,8.9115,10.7917,1.9698,2.2402,1.8778,2.0482,10.304,11.4284,1.5956,1.7159,1.1226,1.1536,12.1472,11.7258,5.2929,5.1526,6.9928,8.2312,3.2296,2.9346,9.3173,8.3686,6.3729,6.7653,6.5985,6.5334,3.2361,3.224,1.3466,1.4517,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,773
+desd775,,,F,0.92151,1.7207,0.00066,0.16158,0.5099,0.50331,9.0519,0,0.88732,32.5484,34.3648,12.6449,13.0618,61.8725,128.6959,0.88663,2.2385,2.4588,0.57092,0.68775,15.0453,16.6159,0.81757,0.8757,0.32208,0.34756,1.9192,4.1722,4.0239,4.2826,0.06336,3.8579,1.9315,2.1901,0.13799,0.29135,0.00729,0.02955,2.0098,2.4313,0.00005,0.00414,7.3881,2.2506,2.9727,2.6493,0.30663,0.00108,3.8261,3.4881,1.0283,1.0787,1.3754,0.00757,0,0,3.8349,5.2277,0.23156,0.77512,4.974,4.6545,7.4539,7.6084,5.7237,6.181,0.00098,0.74684,0,0,1.1999,0.13214,0,14.5091,4.149,4.1832,1.529,1.4103,0.9344,0.9948,2.1815,1.689,3.9657,4.7167,9.5092,7.3624,1.5521,2.4031,3.2957,3.2673,2.5538,0.00015,0.01559,0.02459,2.561,1.548,2.9491,8.1084,2.1022,2.6449,1.5261,1.7311,0.53142,1.5192,0.00167,0.00809,1.4502,1.181,1.6185,1.4588,0,0.00038,1.5154,1.6524,0.81661,0.92855,6.0263,0.00013,0,3.5064,0.20706,1.2354,3.043,2.95,0.18875,1.8453,6.2211,5.8038,5.8082,5.6944,0,2.5035,1.1214,1.0059,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,774
+desd776,,,M,2.0909,2.3676,0.34803,0.38088,0.88037,0.89401,18.4101,2.7755,2.6816,50.9428,50.3785,15.5627,16.4823,250.4935,246.3704,2.0269,3.4118,3.1983,1.3285,1.0467,25.644,28.2816,1.6981,1.6217,3.4955,3.3147,6.6072,7.3519,4.8324,4.9601,0.08199,5.6373,2.4335,3.0942,0.39667,0.41794,4.2935,5.1269,4.0501,4.5754,2.1278,1.5544,10.9138,10.4839,3.9194,3.6397,4.2881,5.1241,5.8801,5.1517,1.913,1.6055,1.9208,1.9974,4.5784,4.2753,8.2928,7.8643,2.4397,2.5662,7.4532,8.0441,12.8101,11.3764,8.5372,8.4392,2.5803,2.3359,4.9078,5.3086,2.0519,2.1308,18.5999,19.4458,5.8092,7.1553,4.3027,4.5908,0.95657,0.95883,2.3546,2.0313,9.0652,7.9308,13.9705,14.2988,3.1874,3.712,4.3109,4.6446,3.2752,3.2658,1.6736,1.3778,4.2346,4.4808,10.6008,10.0906,3.2514,3.6757,2.5593,2.719,2.3058,2.5265,10.9172,11.3546,2.5118,2.6625,2.1613,2.6698,10.4106,11.8666,1.9339,2.1913,1.4417,1.4499,14.6949,15.4411,5.6305,6.1416,8.2807,9.081,4.3969,3.4122,10.9979,11.3401,7.5512,6.722,8.3799,8.0899,3.6312,3.8254,1.5318,1.9283,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,775
+desd777,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,776
+desd778,84,84,M,1.5742,1.6062,0.29753,0.31776,0.83649,0.73903,17.4707,2.3874,2.1832,28.2987,28.5729,15.0955,15.9417,212.7922,207.9718,1.2083,3.3738,3.0505,0.5428,0.65416,11.1642,12.0729,1.5486,1.5185,2.8452,2.6895,6.7747,6.9347,4.5049,4.8049,0.07896,4.3013,1.9664,2.5404,0.33326,0.34224,3.8971,4.1821,3.5918,3.6793,1.6622,1.2721,9.6025,7.6763,2.977,2.9299,3.6395,3.3012,4.1831,4.1712,1.6117,1.5892,1.7721,2.0122,3.2279,3.0151,7.3887,6.9637,1.7995,1.6615,5.9028,5.4306,11.4824,10.7932,7.0125,6.1769,2.1062,2.067,5.1835,4.8805,1.4764,1.4807,14.5155,14.7816,4.8904,5.2317,3.401,3.5882,0.92238,0.99768,2.5409,2.4017,6.8183,6.3862,13.7474,14.0834,2.4654,2.8563,3.7215,3.3854,3.1402,3.2517,1.356,1.2667,3.7308,4.165,9.763,9.4709,3.0705,3.1236,2.1494,2.0334,1.8433,2.1257,8.3107,11.1184,2.2056,2.2928,1.843,2.1536,11.2482,11.0545,1.6375,1.6085,0.93125,1.0552,13.2791,13.4957,4.7568,4.5418,7.2102,7.382,4.0615,3.1865,8.8843,8.8356,6.2515,6.3187,6.5284,6.3148,3.3015,3.0403,1.221,1.3028,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,777
+desd779,60,60,F,0.92769,1.7185,0.3531,0.37516,0.75255,0.71849,15.4203,2.5937,2.1727,36.5847,36.591,12.6773,12.7019,206.6841,204.3795,0.83792,2.967,2.6235,0.35594,0.40315,7.1264,8.6117,1.4352,1.4044,3.3077,3.3626,6.504,7.0331,4.0316,4.2692,0.07224,3.9657,1.8688,2.1023,0.34125,0.33672,3.5309,4.161,3.5203,3.7157,1.7669,1.4445,9.622,9.422,2.7307,2.4546,3.3154,3.701,4.1376,3.9218,1.5542,1.36,1.7128,1.7798,3.9505,3.5095,6.2909,6.3199,1.9719,2.0388,6.1011,5.984,10.8354,9.9752,6.8063,6.0848,2.2858,2.3387,4.1951,4.0677,1.597,1.6823,18.1155,16.3033,4.6056,6.0443,3.6457,3.717,0.95164,0.87376,2.467,2.1715,6.8672,6.1665,13.43,13.2512,2.5444,2.8955,3.7099,3.4132,3.4593,3.463,1.4922,1.4297,3.4599,3.7284,9.0836,9.1818,2.4122,2.7676,2.0859,1.9634,1.9803,2.0925,9.2381,11.4231,2.0923,2.2947,1.8662,2.0488,10.8149,11.5403,1.6023,1.8002,1.054,1.1084,14.4338,13.6917,4.6608,5.0496,7.9005,8.5608,4.0615,3.1136,9.2164,9.556,6.5134,7.0975,6.9804,6.9503,3.372,3.6979,1.4436,1.3868,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,778
+desd780,72,72,M,1.6659,1.911,0.36223,0.34799,0.73354,0.67601,16.6236,2.8349,2.7087,44.5325,43.7242,12.4688,13.4894,195.4331,187.6717,1.7597,2.9715,2.7632,0.87142,0.72752,21.5357,20.9017,1.329,1.3672,3.2405,3.2132,6.4173,6.7574,4.3203,4.5935,0.08553,4.5306,1.928,2.431,0.3662,0.38346,3.8518,4.591,3.6892,3.994,1.6977,1.3625,9.2201,8.549,3.3108,3.1002,4.1216,3.9354,4.3475,3.9855,1.4506,1.2884,2.0596,2.0427,3.2742,3.0773,6.7407,6.1208,1.8887,1.9946,5.7441,5.1608,10.1011,9.3001,7.7077,7.3258,2.1928,2.2381,4.7753,4.7063,1.6397,1.6432,17.3195,17.7897,5.1387,5.1693,3.754,3.6247,1.0169,1.2308,2.4028,2.7815,7.0534,6.5059,12.3274,11.2573,2.6285,2.9729,4.0166,3.8561,3.356,3.3721,1.5709,1.3509,3.5451,3.9871,8.8094,9.6203,2.5917,2.7031,2.2052,2.1578,1.8088,2.3713,9.6857,11.3304,2.3824,2.1861,1.9084,2.0482,11.4599,12.0531,1.7022,1.8216,1.1692,1.2271,13.5233,13.237,4.9167,5.0354,7.2698,8.9842,3.8761,3.0422,9.3873,9.1618,6.7367,6.7279,6.9707,6.2351,3.7811,3.4857,1.3243,1.3482,,26,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,779
+desd781,68,68,M,1.4677,1.6353,0.33456,0.33917,0.83563,0.81498,15.5866,2.6543,2.5483,41.9111,41.053,13.7147,13.5961,191.9809,186.1227,1.5677,3.2615,3.0423,0.79388,0.74077,17.1028,16.5609,1.2967,1.3175,3.7678,3.3777,6.2277,6.0018,4.0316,4.2826,0.08136,4.2476,1.9767,2.3922,0.34237,0.36317,4.0667,4.4607,4.025,4.2223,1.6462,1.3022,10.2123,8.5907,3.58,3.3694,4.011,4.0985,4.371,4.388,1.6681,1.6683,1.8752,1.9733,3.3062,2.9085,6.8021,6.6103,1.7791,1.7798,5.6078,5.0373,10.9298,9.4626,7.5965,6.9309,2.0261,2.1521,4.8213,4.8081,1.614,1.5982,18.2283,17.3826,5.123,5.0145,3.4535,3.5075,0.76103,1.2608,1.8906,2.8575,7.0645,6.5859,14.774,12.9639,2.5712,2.9658,3.7109,3.8561,3.238,3.5456,1.3809,1.4083,3.8666,4.2777,9.588,10.4812,2.9483,3.1042,2.0389,1.996,1.9439,2.4013,9.6499,11.6562,2.2357,2.175,1.8749,2.0026,10.4972,11.21,1.6696,2.0656,1.2437,1.3149,13.6084,14.2142,4.9428,4.9208,6.923,9.1424,3.4917,2.9305,8.8843,9.0894,6.8531,6.9515,7.1959,6.8573,3.3582,3.407,1.3987,1.3646,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,780
+desd782,,,M,2.3602,2.354,0.44332,0.4622,0.84385,0.90499,20.1268,3.8859,3.6894,52.467,51.6143,15.5148,15.5338,226.9296,228.3403,1.8804,3.5737,3.3742,1.6411,0.97101,26.3421,31.4738,1.7801,1.76,3.8649,3.844,7.2765,7.6112,5.131,5.3218,0.0834,5.3326,2.4273,3.1424,0.37923,0.37882,5.2218,6.2693,4.7198,4.8058,1.8561,1.7032,12.1829,11.3323,4.1079,3.7251,4.8673,4.5057,5.9276,5.3039,1.5978,1.8365,1.9532,1.9949,4.5707,4.1805,8.6182,7.8056,2.2712,2.238,8.4875,7.2915,13.0873,11.4622,9.89,8.0698,2.3152,2.7886,5.5249,5.367,2.1622,2.0628,23.3061,24.7661,6.7632,6.5278,4.1494,4.2597,1.0121,1.1499,2.5152,3.6312,9.613,8.8695,15.1685,14.5335,3.4708,3.896,5.1121,5.2492,3.7221,3.4918,1.6825,1.652,4.683,5.4284,13.1268,13.4261,3.1553,3.4725,2.771,2.5815,2.4748,2.9346,12.6225,13.853,2.5219,2.7016,2.3648,2.5945,14.1011,15.3695,2.1289,2.0328,1.2301,1.3937,16.1595,15.8389,5.8532,6.2345,10.4337,9.8517,4.0303,3.3599,10.9754,12.2043,8.4022,8.5007,8.4258,7.8828,4.171,4.5021,1.5416,1.8144,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,781
+desd783,,,F,1.6004,1.6818,0.4011,0.41978,0.70439,0.73306,15.3697,2.8969,2.7854,39.28,37.8262,11.5711,11.7522,214.4995,211.5945,1.5266,2.8518,2.8019,0.6528,0.85075,18.3746,19.9328,1.569,1.5671,3.2779,3.2638,6.1315,6.7046,4.8225,4.9601,0.08872,4.3534,1.7441,2.0238,0.36122,0.38853,3.9906,4.4443,3.7994,4.2871,1.9181,1.612,10.4467,9.6452,3.2654,2.7063,3.878,4.1787,4.4357,4.0124,1.381,1.4425,2.038,1.9358,3.8129,3.7495,6.6665,6.8859,2.2922,2.3336,6.4408,5.5669,10.8308,10.1414,7.5364,6.935,2.1953,2.3635,4.2838,4.4422,1.7839,1.8608,17.659,17.4723,4.7685,5.4804,4.2061,4.1983,0.98315,1.2595,2.145,2.6061,7.7075,6.8542,14.1938,13.2393,2.4353,3.237,4.0487,3.952,3.3648,3.2242,1.6061,1.318,3.4305,4.0438,9.7815,10.1114,2.6322,2.9555,2.3326,2.4643,2.351,2.7685,10.5882,10.8106,2.0726,2.6802,1.89,2.3513,10.5172,10.6166,2.172,2.4649,1.404,1.4896,14.8003,15.0896,5.4026,5.0555,8.0531,9.5542,3.5424,2.9222,10.6511,11.1361,8.1109,7.7066,7.6584,6.6838,3.7857,3.713,1.4725,1.6622,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,782
+desd784,68,68,F,1.1081,1.4588,0.41178,0.43031,0.90623,0.89213,15.8825,2.8717,2.8993,46.6868,41.5348,14.574,15.1093,234.7223,243.7703,1.0368,3.6718,3.2963,0.41045,0.32748,9.478,11.423,1.6653,1.7385,3.3666,3.3541,6.9086,6.9837,4.2464,4.4351,0.07494,4.6514,2.055,2.6837,0.38613,0.37462,4.4387,5.2078,3.9127,4.0202,1.9654,1.7295,10.7424,10.2165,3.2456,3.342,3.8627,3.9079,4.7458,4.2839,1.6807,1.6574,1.9038,1.7836,3.9295,3.6657,7.5386,7.6012,2.2427,2.4717,6.2753,7.2898,11.6498,11.562,8.1582,7.6911,2.4307,2.559,4.617,4.9895,1.9705,1.9251,19.5017,19.4553,5.6833,6.5377,4.1554,4.367,1.2922,1.2654,2.8511,2.6167,8.6305,6.9939,14.0138,14.6139,3.327,3.6229,4.14,4.2651,3.4149,2.8141,1.4083,1.5343,4.0397,4.6327,10.4226,10.6738,3.1888,3.278,2.2169,2.232,2.2044,2.3988,12.4641,11.7131,2.2067,2.6789,2.138,2.3251,12.5464,13.1373,1.792,1.9505,1.1764,1.2581,14.4163,14.6967,4.9986,5.2937,8.5548,10.0223,4.2942,3.5506,10.6511,10.9341,8.1435,7.8519,7.7616,7.8874,3.4093,3.7731,1.4217,1.5694,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,783
+desd785,72,72,F,1.7667,1.7712,0.30214,0.34425,0.60861,0.55987,14.4818,2.5792,2.5209,37.3972,39.0933,12.1234,12.2415,204.1758,197.7453,2.1946,2.4167,2.0602,1.0386,1.6288,19.6009,20.4219,1.438,1.3319,2.8162,2.8551,5.4613,5.6857,3.9227,4.128,0.06877,4.5122,1.868,2.097,0.33652,0.32923,4.6707,4.7088,3.6922,3.937,1.5075,1.327,9.1163,7.9909,2.9722,2.9113,3.6154,3.4711,3.525,4.3767,1.1052,1.0504,1.8398,1.7537,3.3431,3.1244,5.5218,5.4559,1.7203,1.8174,5.5049,4.7812,8.6786,8.9819,6.5178,5.792,1.9652,2.1288,4.738,4.9177,1.6876,1.6649,16.1707,16.3618,4.2287,5.1045,3.4543,3.3728,0.95977,1.0312,2.2221,2.3519,7.5348,6.6947,10.1412,10.6368,2.2858,2.6445,3.587,3.4132,2.8518,3.2537,1.3481,1.4323,3.8343,3.884,10.2821,9.8551,2.3072,2.6232,2.2297,2.1753,1.7456,1.999,8.6032,10.6941,2.0583,2.106,1.9851,2.0408,11.0944,11.9346,1.5177,1.6726,1.071,1.1367,12.0203,12.6856,5.1854,5.0538,6.9817,6.5171,3.4931,2.7978,9.3013,9.3142,5.4535,5.1939,6.5118,6.1755,2.8088,3.407,1.2827,1.4343,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,784
+desd786,38,38,F,1.3067,1.7453,0.36199,0.39515,0.8032,0.80585,16.6483,2.8349,2.8014,48.4185,45.7319,13.9034,14.0919,221.9736,222.2557,1.1484,3.1017,2.8595,0.5807,0.50392,13.2144,16.6564,1.4269,1.4848,3.1602,3.4984,5.9398,6.4486,4.0602,4.2057,0.06871,4.7338,2.2973,2.6553,0.35182,0.36399,3.4598,4.1459,3.7611,3.8591,1.5732,1.3186,8.7247,9.3786,2.8613,2.9999,3.5689,3.7872,4.2208,4.2491,1.6681,1.6131,1.8392,1.845,3.2552,2.9676,7.2433,7.1853,1.7701,1.6396,6.0143,7.2898,11.1527,11.0049,7.8756,7.2232,2.074,2.2539,4.3303,4.3498,1.5471,1.5917,16.9533,16.5803,4.2296,6.8039,3.4302,3.3495,1.0243,1.0322,2.5015,2.4786,7.6551,6.2928,14.1547,13.0863,2.7967,2.8953,4.4021,4.2388,2.9196,3.3705,1.4431,1.4614,3.8381,4.1946,9.9597,8.9795,2.8671,3.4545,2.1184,2.1522,1.8613,2.3464,9.2722,11.3081,2.2717,2.2222,2.0082,2.1378,11.2387,11.5614,1.6951,1.9593,1.0854,1.1023,11.8307,12.6877,5.4666,5.3632,7.059,9.6603,3.8308,3.2341,11.1686,10.5726,6.6149,7.1111,7.3856,7.1076,3.1721,3.7653,1.4588,1.5514,,,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,785
+desd787,70,70,M,2.1179,1.814,0.37982,0.42851,0.82479,0.8298,18.0157,3.2805,3.0044,47.2617,47.7378,14.5685,15.1321,219.5922,207.3053,1.7619,3.2033,3.0496,2.4881,1.5945,26.4693,32.5525,1.6551,1.6677,3.7901,3.4106,6.7746,7.2413,4.6544,5.0235,0.08878,5.412,2.3011,2.8688,0.4116,0.41953,4.183,4.8432,4.578,4.8529,1.5749,1.5165,9.3742,9.356,3.7296,3.742,4.2485,4.8046,5.3855,6.106,1.6592,1.6483,1.9229,1.9267,3.5851,3.4626,7.7699,7.4774,1.8791,1.9302,7.4434,7.5011,12.869,12.2219,8.4174,7.895,2.0092,2.4742,5.2766,5.247,1.5318,1.7626,17.9356,17.7781,5.154,5.6858,3.63,3.9938,1.1161,1.2298,2.7163,2.7449,8.3038,6.8283,16.0082,15.1511,3.5489,3.6819,4.6581,4.451,3.322,3.1531,1.5266,1.5286,4.0449,4.4781,11.392,11.5531,2.8835,3.4545,2.7653,2.855,2.3058,2.6676,11.3717,13.0931,2.2032,2.3726,2.4329,2.4694,12.7136,12.4278,1.8124,2.0005,1.3351,1.4482,14.0826,14.7414,5.7917,5.1752,8.6764,8.8607,4.3393,3.5177,10.5549,11.0686,8.1165,8.349,8.6143,7.8026,3.7288,3.6306,1.6618,1.6798,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,786
+desd788,75,75,M,1.1357,1.2667,0.37711,0.47086,0.85271,0.93558,17.0687,2.8092,2.6904,39.7325,38.1988,13.1626,13.6368,182.6154,181.6168,1.0368,3.2688,2.8585,0.35758,0.35349,7.1348,8.9561,1.4654,1.453,3.6399,3.7361,6.7055,6.8109,4.1745,4.4331,0.07935,3.7562,1.8414,2.2808,0.38429,0.3918,3.8443,4.4341,4.0025,4.1057,1.6747,1.526,7.9801,8.8291,3.1924,2.7603,3.6724,4.1139,4.1389,4.0441,1.4659,1.7455,1.9894,1.9305,3.3082,3.2293,6.6938,6.1466,2.0818,2.041,6.5625,6.6913,11.1388,9.4626,7.457,7.0737,2.1234,2.3635,4.3975,4.597,1.8351,1.7927,19.4878,18.46,5.5586,6.9267,3.8306,4.0194,0.9992,1.0646,2.4732,2.5911,7.6655,6.1601,13.2849,12.2667,3.2164,3.2421,3.967,3.7679,3.3518,3.1812,1.6273,1.4831,3.5927,3.9031,9.6531,9.8724,2.8322,3.1626,2.4071,2.5846,2.0085,2.1631,9.4488,12.1018,2.2844,2.5758,2.0825,2.6109,12.8154,13.1281,1.7638,1.8636,0.91095,1.0201,13.5181,13.1667,5.0806,5.023,7.9324,9.1592,4.0746,3.4762,9.228,8.9908,6.7367,6.0908,6.6344,6.2847,3.479,3.7364,1.5695,1.6449,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,787
+desd789,67,67,M,2.324,2.9245,0.37308,0.40169,0.85597,0.92421,19.4224,2.6583,2.6985,45.4788,46.4712,14.6805,15.6887,218.3786,219.696,1.9461,3.4678,3.1706,0.83194,0.87113,20.9617,24.4308,1.5748,1.5812,3.5115,3.4382,6.0964,6.6066,4.7321,4.8045,0.09549,4.8141,2.4087,2.7387,0.39874,0.38667,4.3085,4.5795,4.2998,4.2489,1.7778,1.6258,10.3104,8.6968,2.8367,2.8047,4.0779,4.3187,4.648,4.2478,1.4602,1.7568,1.9111,1.9185,3.5208,3.0876,6.8605,6.9149,1.9915,2.2165,6.6582,6.3345,11.0511,10.8271,7.8651,7.39,2.3363,2.3745,4.5711,4.9116,1.7046,1.7279,18.2342,18.2664,4.8301,6.4312,3.8145,4.3392,0.90043,0.99913,2.2057,2.2115,7.7004,6.4523,14.0121,12.1207,3.0193,3.0161,4.5195,4.2907,3.8443,3.7636,1.6043,1.4014,4.3285,4.8769,10.5983,10.9108,2.9268,3.1201,2.6472,2.4977,2.2924,2.4531,8.6843,10.0361,2.2252,2.5627,2.2957,2.4728,11.0874,11.3461,1.9259,2.1118,1.1721,1.2343,14.2656,14.9704,5.0335,4.9874,7.1324,9.169,4.2064,3.7136,10.8623,11.0443,7.3975,7.3592,7.4054,7.7587,4.3022,3.9507,1.6713,1.7926,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,788
+desd790,,,M,1.7692,2.6779,0.3548,0.39298,0.74861,0.76914,19.2789,2.8156,2.1129,46.7108,46.3508,15.3319,15.2435,231.2623,225.3591,1.3795,3.1254,2.9098,0.74448,0.64834,16.0833,16.0797,1.531,1.5949,3.3925,3.2285,6.1315,6.4279,4.5176,4.8226,0.07879,4.843,2.2394,2.8517,0.38263,0.38368,4.1933,4.9016,3.6892,3.9609,1.7418,1.492,9.7901,8.8246,3.2184,3.3618,3.5855,3.7713,3.924,4.114,1.3582,1.4084,1.694,1.9725,3.7092,3.3957,7.2561,6.9971,2.0676,2.1155,7.044,6.4095,11.4824,11.3663,8.3547,7.706,2.2048,2.2861,4.7105,4.5129,1.8225,1.9573,19.4435,18.6366,4.822,5.9727,3.8381,3.8473,1.1779,0.87729,2.8354,2.185,8.0737,7.1143,14.4703,14.4591,3.329,3.6257,4.4969,4.5183,2.8161,3.1692,1.4161,1.4658,3.6314,4.1078,9.1747,10.1186,2.7925,3.0222,2.1191,2.3505,1.7536,1.999,9.8458,10.8637,2.309,2.559,2.004,2.3093,11.3873,11.7937,1.3661,1.6744,1.2363,1.3015,14.2843,14.2374,5.1473,5.3351,7.7578,8.3501,4.5928,3.8792,9.3513,10.3875,7.1485,7.1782,6.5782,6.6487,2.9482,3.7323,1.2827,1.3766,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,789
+desd791,71,71,F,1.0318,1.9964,0.38153,0.43293,0.93717,0.92369,16.4958,2.9099,3.0989,48.291,45.5465,12.7423,12.6339,212.7231,208.4765,1.0689,3.6718,3.3065,0.62167,0.36724,12.0578,12.59,1.4535,1.4302,3.5193,3.605,7.4431,7.4648,4.2425,4.4057,0.0823,4.4305,2.2473,2.7068,0.37903,0.36376,4.3436,4.4821,3.8871,3.9611,1.6987,1.5729,8.9774,8.8037,2.6469,2.7017,3.9048,4.0858,4.9072,4.9089,1.7756,1.6861,1.9335,1.9305,3.5829,3.4439,6.4928,6.6353,1.8289,1.9731,6.071,6.2477,10.5798,10.716,7.3228,7.3066,2.0071,2.3807,4.738,4.64,1.6585,1.7001,17.2619,17.4151,4.4945,5.8088,3.699,3.8671,1.0147,1.1025,2.3241,2.756,7.3909,7.1136,13.7507,13.6104,2.9064,3.2318,3.9044,4.0073,4.1054,3.2415,1.4168,1.6183,3.5002,4.0273,10.1893,10.5184,3.0069,3.3844,2.2934,2.1061,2.2136,2.1323,9.5891,11.3752,2.3719,2.568,1.9189,1.9355,12.5547,12.7961,1.8612,1.9589,1.1983,1.2432,15.0565,15.0623,5.6586,5.4624,6.8468,8.3562,4.6134,3.7508,9.6495,10.5995,7.2331,7.3936,7.2326,7.629,3.33,3.7391,1.3748,1.4071,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,790
+desd792,70,70,M,1.9853,2.4115,0.43308,0.45413,0.92387,0.94418,17.4475,3.5495,3.2867,47.2617,46.647,13.857,14.0666,209.5972,198.6874,1.8746,3.4863,3.2914,0.831,0.80271,31.0526,28.2816,1.3918,1.3603,3.8883,3.7987,6.7401,7.2447,4.4045,4.7452,0.06422,4.7631,2.3474,2.7688,0.37923,0.388,4.5751,4.7217,4.2546,4.5723,1.6088,1.526,8.7883,8.015,3.5571,3.7731,4.0572,4.1651,5.1278,4.9364,1.7652,1.953,1.8904,1.946,3.5851,3.4382,8.1492,7.714,1.8545,1.969,6.9008,7.0976,13.3156,13.2035,8.9198,7.4859,2.0071,2.2966,4.6356,4.7261,1.6093,1.6204,18.981,19.1402,4.9671,5.9594,3.4902,3.6918,1.154,1.1846,2.7402,2.6742,7.8118,7.2392,16.1744,15.4631,3.6274,4.4832,4.5938,4.2157,3.316,3.4076,1.4431,1.345,4.0325,4.472,11.5494,11.6858,3.0706,3.281,2.3244,2.3972,1.9877,2.3958,9.1766,11.2548,2.1878,2.1443,2.2995,1.8964,12.3388,12.5849,1.8628,1.8922,1.1412,1.225,15.3155,15.2695,4.9632,5.0538,7.2241,8.0917,4.5039,3.9706,11.3807,11.8903,7.5918,7.7407,8.5754,8.5867,3.1809,3.8888,1.5061,1.4067,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,791
+desd793,63,63,F,1.3169,1.4415,0.33749,0.36871,0.72891,0.78381,15.3515,2.8802,2.7872,40.2222,41.9286,12.4128,12.711,221.3739,218.4875,0.99997,2.735,2.6776,0.35781,0.34422,7.1264,8.6117,1.4407,1.3995,3.0935,2.8827,6.3437,6.6266,3.8742,4.0614,0.07686,4.0997,2.0515,2.0971,0.35576,0.34531,3.9906,4.4443,3.3778,3.5566,1.7009,1.5665,10.3895,9.1054,2.8804,2.7872,3.6842,3.7975,4.0174,4.2088,1.4346,1.5264,1.7108,1.8246,3.4031,2.9356,5.9671,6.3211,2.0941,2.0114,6.0311,6.1595,8.7174,9.542,7.1912,6.9145,2.12,2.307,4.5939,5.0252,1.7633,1.7602,16.3461,17.8216,5.249,6.2887,3.843,3.8823,0.96521,1.0004,2.2491,2.3509,7.4214,6.6826,10.0789,10.4941,2.4613,3.2169,3.9841,3.6651,2.9641,3.1416,1.4629,1.2784,3.5992,3.9031,9.9622,9.925,2.3867,2.7751,2.0016,1.8798,1.8025,2.187,11.2679,13.3253,2.1817,2.2485,1.9056,1.9312,12.0903,12.3532,1.6462,1.7159,1.1305,1.1,12.5015,12.6856,5.2152,5.5213,8.4644,9.4761,3.9162,3.1956,10.1367,11.1225,5.4535,5.7279,6.7056,6.7899,2.8794,3.5311,1.2809,1.4327,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,792
+desd794,62,62,M,1.0035,2.013,0.35485,0.39098,0.87013,0.86678,16.2223,2.765,2.5936,41.9111,41.5099,12.8616,12.6969,187.5946,186.1227,1.0689,3.2016,3.0738,0.76905,0.75845,13.5658,16.3416,1.4045,1.3603,3.3107,3.402,7.159,7.4497,4.3203,4.5859,0.07494,4.9095,2.1792,2.3533,0.36866,0.38207,3.6289,4.2164,3.6892,3.9433,1.8107,1.4445,9.3369,8.4609,3.312,3.0768,3.7866,4.138,4.3664,4.1133,1.7055,1.5507,1.7979,1.8144,3.6906,3.285,6.702,6.7637,2.1424,2.0388,5.9165,5.6651,10.9634,10.1658,8.0228,7.3139,2.4733,2.1182,4.2544,4.6949,1.7718,1.6402,18.0849,17.2491,4.978,5.555,3.9069,3.7339,0.90043,1.1074,2.3443,2.4012,7.1431,6.3584,13.7493,12.7032,2.5745,3.2646,4.0742,4.2322,3.0912,3.5236,1.5267,1.425,3.5864,3.8132,9.1747,9.3243,2.8883,3.0421,1.9936,1.9863,1.9439,2.2866,9.4994,11.8537,2.5605,2.2124,1.7949,1.9759,11.4526,10.7097,1.6503,1.8972,1.1656,1.2287,14.225,14.6553,5.016,4.9639,7.0275,8.8807,3.5488,2.8841,8.8843,8.4851,6.656,7.1111,7.8442,7.0749,2.9698,3.3935,1.4022,1.3835,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,793
+desd795,73,73,M,1.7782,1.9797,0.4732,0.52148,0.9569,0.94418,18.0598,3.2651,3.2469,50.2053,49.5695,15.1601,15.5227,251.5132,253.2682,1.6015,3.0267,2.7458,0.67856,0.58997,15.7665,20.4611,1.7266,1.7644,4.0675,4.2219,7.1373,7.252,4.6366,5.0235,0.09316,5.4473,2.2979,2.8039,0.40196,0.41953,4.5381,4.7719,3.8379,4.2871,1.9736,1.8123,11.7269,10.1609,3.8376,3.7808,4.3541,4.7194,5.5132,5.4337,1.9382,1.8626,1.9862,2.2199,3.7899,3.8607,7.9899,8.1521,2.3994,2.1016,7.3727,6.0727,12.5056,12.6099,9.1343,8.509,2.5382,2.8413,4.7472,5.0112,1.9822,2.0408,18.5704,19.1663,6.1064,7.4299,4.1413,4.0524,1.3035,1.4731,2.9956,3.2996,7.8857,7.3574,15.2482,15.24,3.2264,3.921,5.0772,5.1101,4.0695,3.6231,1.6736,1.8071,4.5744,5.2682,11.9513,12.082,3.218,3.6757,2.1406,2.1169,2.3698,2.8163,10.979,12.6904,2.7026,2.6346,2.0475,2.3425,13.2394,13.5132,2.008,2.5498,1.2562,1.2789,14.5903,16.0232,5.3815,5.5847,8.702,9.0617,4.9162,3.9216,11.6447,12.1876,7.9287,7.7847,8.7938,8.1909,3.8903,4.4701,1.518,1.814,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,794
+desd796,72,72,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,795
+desd797,65,65,M,1.4694,1.5382,0.35587,0.39092,0.80181,0.764,16.6236,2.8802,2.8869,42.7345,43.3698,12.1684,12.5481,183.5008,175.5307,1.3297,3.131,2.8264,0.68417,0.72341,14.9498,18.9404,1.357,1.3431,3.5052,3.6003,5.8286,6.0637,4.0467,4.2817,0.08755,4.1112,1.8995,2.2376,0.37755,0.38098,3.9944,4.4443,3.8771,3.708,1.8072,1.4945,9.0756,6.9952,2.8047,2.4821,3.6569,3.7782,3.8762,4.0097,1.5072,1.4384,1.8298,1.7573,3.579,3.595,7.337,7.2824,2.2207,2.2212,5.7668,5.7707,11.1322,10.9339,7.2789,6.8615,2.3641,2.5376,4.491,4.734,1.8465,1.9557,16.9497,18.4741,4.634,4.6717,3.9069,3.9735,1.1256,0.99431,2.8719,2.3545,7.4045,6.9014,14.7741,13.0863,2.7174,2.959,3.5627,3.9987,3.0754,3.1812,1.4083,1.4613,3.9639,4.3404,10.1621,10.1122,2.9314,3.0087,2.3773,2.4479,1.7598,2.0229,10.5362,10.2494,2.4037,2.6018,2.0711,2.3109,11.6578,11.7583,1.4817,1.8025,1.2301,1.2992,13.9848,12.9276,4.8735,5.2827,7.7578,7.4442,3.8457,3.0755,8.6424,8.8356,6.7924,6.5064,6.9409,6.9161,2.9657,3.6702,1.353,1.4197,,23,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,796
+desd798,67,67,F,2.1921,3.4207,0.35333,0.39382,0.85869,0.87834,16.9978,2.8156,2.5116,41.8076,42.4788,13.6586,13.9885,216.9418,215.3137,1.8762,3.3065,3.1951,1.0738,1.0131,21.2596,21.7721,1.5581,1.5028,3.2747,3.402,6.0941,6.2616,4.4608,4.6501,0.07945,5.4817,2.3083,2.587,0.41673,0.41245,4.8125,5.4008,4.1919,4.5297,2.0347,1.712,9.8315,8.6029,3.1923,3.2706,3.9775,4.2067,4.1389,4.4238,1.638,1.7304,2.0694,2.107,3.97,3.4294,7.1346,7.0831,1.9564,1.951,6.3904,5.8456,10.83,10.7645,7.8192,6.9976,2.5275,2.4569,5.1739,5.5882,1.8043,1.7827,18.7008,20.4507,5.5448,5.3515,4.23,4.0173,1.1424,1.0588,2.6776,2.7089,8.6305,7.5323,13.6382,14.5989,2.5289,3.3048,3.9853,4.2914,3.7704,3.442,1.7189,1.6574,3.8698,4.5049,10.2469,12.2321,2.9145,3.2914,2.4688,2.6283,2.3606,2.4724,9.7635,10.5547,2.6442,2.4864,2.1272,2.4642,11.1964,12.0505,1.9788,2.0854,1.2551,1.2789,15.9285,16.1059,5.8484,5.7856,8.3674,8.4672,3.5453,3.2747,9.6761,10.121,7.5884,7.1608,7.9132,7.4704,4.1771,4.1558,1.404,1.7581,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,797
+desd799,70,70,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,798
+desd800,70,70,M,1.9853,2.5945,0.29011,0.36604,0.77114,0.81387,16.7766,2.1408,2.1251,41.0899,41.3308,13.6647,14.0153,184.7169,192.4498,2.0004,2.8868,3.0606,2.1389,2.2042,24.6327,29.7356,1.5705,1.5101,2.812,2.7183,6.2639,6.7606,4.3457,4.5443,0.06455,4.4674,1.9767,2.1681,0.37607,0.3793,4.0314,4.6224,3.6452,3.839,1.6226,1.3762,9.0055,7.9235,3.5365,3.6789,3.3643,3.6307,4.661,4.5617,1.3855,1.4961,1.7346,1.7313,3.2742,3.0698,6.6833,6.4074,1.804,1.8851,6.1681,5.7929,10.2183,10.0583,8.2625,7.9692,2.0839,2.2274,4.2768,4.4549,1.5878,1.5626,15.9353,15.7639,4.5922,5.6453,3.4517,3.7108,0.95377,0.88686,2.0228,2.0853,7.2669,6.4523,12.1609,11.7685,3.0755,3.0161,4.0742,4.6831,3.2383,3.2241,1.515,1.3588,3.5234,4.313,9.8346,10.0704,2.6322,2.7938,2.2326,2.2421,2.0579,2.4538,8.7033,9.0151,2.2645,2.2497,1.8764,2.0771,10.5223,10.1415,1.8786,2.4288,1.2626,1.2987,13.2127,13.9064,4.7634,4.7787,7.2121,8.151,4.5785,3.1517,8.7907,10.0653,6.3706,6.8627,6.9438,6.7432,3.7283,3.5338,1.5549,1.6896,,21,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,799
+desd801,75,75,F,1.8862,1.3802,0.41783,0.45566,0.69111,0.75446,18.5757,3.5829,3.0601,44.1127,43.0669,13.7417,14.203,242.5288,243.6928,1.5971,2.8518,2.8656,0.4896,0.46211,18.6268,21.5958,1.682,1.6861,3.9988,4.2565,7.3845,7.4805,4.8612,5.173,0.09316,4.8811,2.1492,2.584,0.4332,0.42533,4.1324,5.0062,4.2608,4.2558,1.9153,1.874,10.1158,9.5056,3.2468,2.9772,4.0641,4.6635,4.7726,4.5407,1.4105,1.5106,2.0685,1.9671,4.1116,3.9049,6.9815,7.3443,2.4681,2.3994,7.7853,7.0318,10.6118,9.1474,8.2699,7.5703,2.5695,2.9299,4.4718,4.8397,1.9531,1.9912,20.0624,20.0068,5.8369,6.459,4.4105,4.5558,1.2138,1.1694,2.5709,2.4756,8.4927,7.5175,14.2384,12.0891,3.4373,3.7749,4.3781,4.7097,3.143,3.3622,1.5422,1.7809,4.0044,4.4419,10.9995,10.8883,2.662,2.9561,2.3799,2.2733,2.4669,2.6416,10.3956,10.9446,2.9609,3.0354,2.0367,2.2698,13.703,13.2247,2.2141,2.2449,1.2293,1.3398,15.2906,15.1376,6.055,5.4671,8.5402,8.6411,4.755,3.9216,8.8582,10.1458,8.2144,7.5533,6.6521,7.0184,3.5716,4.4614,1.518,1.885,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,800
+desd802,70,70,M,2.5682,2.5057,0.44772,0.47721,0.9567,0.94418,19.8097,3.2616,3.2469,51.6551,52.9312,16.5035,16.2637,252.4425,247.8442,1.967,3.2723,3.011,0.9969,1.1271,23.4697,36.4723,1.7408,1.7807,3.6721,3.9576,7.3845,7.6489,4.898,5.3312,0.06528,5.2348,2.5519,3.0748,0.40149,0.41953,5.3921,6.2693,4.5078,4.6844,1.9744,1.8502,14.1407,10.7841,4.1079,3.6084,4.9595,4.5057,5.5132,5.1041,1.9785,1.9829,2.2203,1.9878,4.4508,4.1818,8.2928,7.929,2.2712,2.238,7.9388,7.3117,12.7852,11.4622,9.3788,8.509,2.5104,2.6036,5.682,5.367,1.9128,1.9469,23.2146,23.2876,6.8947,7.6079,4.3326,4.2153,1.2171,1.1499,2.7102,2.9781,8.5891,8.2813,14.6469,13.8944,3.0519,4.0652,5.0772,5.2773,3.9781,3.7082,1.6039,1.5012,4.7803,5.6503,12.0986,12.8934,3.3322,3.5232,2.771,2.6622,2.5551,2.6774,12.1475,12.8633,2.6274,2.7294,2.5206,2.7415,15.5797,15.5381,2.3089,2.1388,1.3445,1.4542,18.732,17.9714,5.7327,6.0819,9.6912,9.7432,4.27,3.7773,11.3379,11.9809,9.4883,7.8519,8.8066,8.0227,3.7104,4.0978,1.6713,1.6449,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,801
+desd803,71,71,M,1.1563,2.1065,0.3977,0.41591,0.7548,0.74553,18.6779,3.4389,3.3859,46.5743,46.7941,15.0903,15.5261,212.2345,206.891,1.2058,2.9796,2.6744,0.45092,0.46058,8.2125,12.4534,1.6551,1.6677,3.8725,4.1054,7.4702,7.3533,4.9413,5.1048,0.07497,4.4861,2.2798,2.5807,0.35063,0.3749,4.105,4.8586,3.9055,4.144,1.8904,1.5935,10.944,9.7323,3.1299,3.0054,4.3541,3.9212,4.5785,4.5908,1.601,1.4712,1.895,1.9555,3.8015,3.4047,7.2356,7.7366,1.9719,2.0981,6.0251,6.7482,11.0364,10.8291,8.111,7.0238,2.3611,2.4261,4.7913,5.473,1.7385,1.7545,19.1785,17.8962,4.8922,6.3818,4.0725,4.1335,1.0288,1.1615,2.5254,2.5841,8.083,7.372,14.4871,13.3618,2.5498,3.392,4.0314,4.2453,3.2812,3.5007,1.5422,1.6168,4.3787,4.6282,11.0041,11.2471,2.8073,2.9231,2.206,2.3604,2.415,2.5405,10.9578,11.3546,2.231,2.4928,1.9562,2.341,11.8337,11.0059,2.013,2.1021,1.0802,1.0622,14.8198,16.6941,5.3727,5.4263,8.3254,10.0674,5.0079,4.0134,11.0128,11.7028,8.3095,7.3659,7.404,7.1076,3.4781,4.0344,1.4087,1.7661,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,802
+desd804,73,73,F,0.95053,1.4216,0.41178,0.44194,0.75901,0.72415,17.0278,3.1158,3.1553,41.8136,42.8051,13.2066,13.5003,207.1482,208.2046,1.2298,3.2123,2.8348,0.49501,0.46211,13.2144,13.1091,1.427,1.41,3.5562,3.8377,6.3432,6.5896,4.3567,4.5859,0.07385,4.6708,2.1428,2.9126,0.38613,0.38384,3.494,4.5408,3.8199,4.0966,1.6038,1.5455,9.2757,7.3551,2.8977,2.7817,3.667,3.767,4.429,4.0038,1.6085,1.5256,1.7588,1.8092,3.1526,3.0811,7.3344,7.1181,1.7872,1.8384,6.3114,5.5182,12.728,12.1495,7.4874,6.7447,2.2026,2.2721,4.2587,4.2669,1.5856,1.5507,18.9184,18.3019,4.6266,5.2654,3.3141,3.5057,1.423,1.0197,3.3463,2.7079,7.3804,6.5001,15.1999,14.59,2.8358,2.9587,4.0656,4.0574,3.179,3.286,1.562,1.3237,3.9087,3.9558,10.1163,10.9135,2.9202,3.0236,2.2934,2.3771,1.874,2.9146,9.1609,9.8247,2.1149,2.2905,2.1026,2.2569,12.189,11.2389,1.6764,2.3233,1.1812,1.2436,12.0086,13.9965,5.2666,4.8268,7.3309,7.9887,3.9919,3.5751,11.2632,10.7229,6.807,7.5387,8.4258,8.2217,3.4372,3.4857,1.426,1.5738,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,803
+desd805,78,78,F,2.2232,2.2575,0.25479,0.30203,0.77549,0.69934,13.4202,2.8878,2.5005,41.4208,39.5261,11.4024,11.7876,171.7744,167.2846,1.6755,3.1777,2.8508,0.99284,1.0471,22.6963,21.5607,1.3894,1.3178,3.23,3.4568,5.5835,5.8002,4.0622,4.1428,0.05839,4.4656,2.0122,2.6174,0.32983,0.32201,3.6304,3.7698,3.471,3.5396,1.5145,1.2167,8.2003,7.7738,3.1261,3.1679,3.4278,3.3553,4.1616,3.9989,1.4789,1.3728,1.6705,1.8599,2.9935,2.8852,6.6455,6.1482,1.6976,1.7242,5.3701,5.1095,11.0778,10.4329,7.3984,6.7154,1.9992,1.8248,3.881,4.1817,1.4458,1.3406,15.3894,14.8729,4.7128,5.3886,3.3093,3.2354,0.75182,1.1393,1.8727,2.755,6.4771,5.5572,12.6504,11.4825,2.817,3.0587,3.9066,3.5787,3.2949,3.1509,1.3346,1.1783,3.3794,3.7529,9.4847,9.5752,2.6424,2.8801,1.8934,1.9134,2.0846,2.0774,8.8546,9.5542,1.9955,2.1766,1.7975,2.0444,10.8766,9.8087,1.7054,1.8889,0.97945,0.99597,11.2428,11.143,3.6495,4.3949,6.9414,6.9655,3.7716,2.9174,9.6322,8.6697,6.3706,6.6344,6.5243,6.5267,2.8801,2.8594,1.1696,1.3481,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,804
+desd806,66,66,M,1.251,1.7871,0.34632,0.36013,0.76607,0.75649,16.2223,2.4421,2.4052,41.9111,40.3972,13.0437,14.0561,222.8878,218.4875,1.1402,3.2123,2.9242,0.45832,0.41701,10.8911,11.9061,1.4582,1.4878,3.1779,3.2548,6.1603,6.2285,4.2851,4.4306,0.07799,4.0555,1.9304,2.2376,0.33859,0.35654,3.9057,4.3819,4.1263,4.5698,1.5505,1.2267,10.1877,10.3806,2.7924,2.7963,3.9002,3.865,4.0486,3.665,1.504,1.4976,2.1704,2.2036,3.325,3.1803,6.802,6.4713,1.9542,1.9202,6.1974,6.2167,11.1388,10.0482,6.5539,6.416,2.084,2.0197,4.1792,4.1746,1.6742,1.6576,15.2511,15.7862,4.8922,6.9135,3.6053,3.264,1.1437,0.96672,2.3706,2.0826,6.9324,6.4971,14.7577,13.5824,2.3955,3.2169,3.8619,3.8194,3.0718,2.9576,1.5482,1.3618,3.9639,4.4101,9.8153,9.7247,2.6174,2.7641,2.5382,2.5786,2.3869,2.7322,9.398,10.5547,2.3405,2.3944,2.0971,2.3584,11.6645,11.9987,2.0737,2.0854,1.0998,1.2379,13.1769,13.206,5.016,4.9117,7.6249,8.5595,3.3701,3.4955,9.9435,10.2392,7.09,6.6392,7.0546,6.4441,3.4653,3.564,1.511,1.5103,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,805
+desd807,78,78,M,2.2182,2.1866,0.32095,0.38052,0.69146,0.70985,16.9104,2.5007,2.5484,44.1237,43.0669,14.6255,15.0998,217.7609,211.5945,1.651,3.2062,2.8349,1.4125,0.92777,14.2137,17.9963,1.4824,1.501,3.0378,3.2567,6.3181,6.641,4.1359,4.2444,0.06634,4.3788,1.9909,2.3794,0.30745,0.35084,3.614,3.6764,3.353,3.5203,1.6024,1.312,8.3796,7.9803,3.1958,3.0649,3.0951,3.3902,4.1039,4.5886,1.3279,1.1769,1.634,1.5836,3.4709,3.3375,6.3165,6.3211,1.626,1.6765,5.7367,6.2311,9.9493,10.0363,6.9306,6.2984,1.9799,2.0567,4.0824,4.3926,1.3793,1.5183,16.1205,15.8475,4.7725,6.8442,3.2048,3.3918,0.90939,1.0472,2.054,2.2267,6.6262,6.1349,12.7591,11.9541,2.8122,3.0453,3.8372,3.4578,3.1839,2.8132,1.3346,1.2964,3.6512,3.9871,9.6417,9.6351,2.5263,2.6462,1.994,1.9934,1.9454,1.7981,9.6585,10.3562,1.9962,2.1403,1.8475,2.0026,11.8801,11.3743,1.8172,1.6524,0.98098,1.0087,13.9343,13.2611,4.385,4.3894,6.1646,7.2704,3.8214,2.9174,8.7626,9.8845,6.212,6.329,6.2989,6.3182,3.2322,3.082,1.2277,1.1861,,29,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,806
+desd808,,,F,1.5218,1.8949,0.31844,0.35398,0.60361,0.66216,16.4399,2.3829,2.2554,42.3023,42.1947,13.3855,13.5134,192.0432,190.6344,1.5677,2.5334,2.654,1.0092,1.3233,13.6285,16.1431,1.4005,1.3958,2.8397,2.7899,6.0479,6.7249,4.0924,4.2973,0.07065,4.0424,2.0418,2.1701,0.30933,0.33346,3.0647,3.5518,3.0838,3.0507,1.4232,1.2674,8.3539,7.5833,3.0178,2.7067,3.4983,3.3553,4.4989,3.6652,1.2567,1.2692,1.7031,1.7092,3.0947,2.7572,5.6571,5.9975,1.771,1.8174,5.5892,5.9031,8.9138,9.4202,7.3677,6.8281,1.8516,1.9786,3.7048,4.224,1.4825,1.4795,16.2163,15.5558,4.3704,4.4411,2.9565,3.4097,0.92958,0.87763,2.2873,2.1757,6.5291,5.7755,11.987,10.9002,2.2418,2.8772,3.5564,3.8126,2.8627,2.7057,1.2925,1.3436,3.2253,3.5591,9.9978,8.0475,2.2952,2.6542,1.8795,1.9431,2.1353,2.2219,7.7493,9.1597,2.0628,1.9514,1.7118,1.756,9.0997,9.9496,1.9249,1.7894,0.97945,1.0621,12.5572,13.2426,4.4581,4.6129,6.3937,8.3427,3.9158,2.5859,10.1534,11.05,6.6551,6.9838,6.5751,6.306,2.9951,3.564,1.4654,1.2821,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,807
+desd809,76,76,M,2.1555,2.0586,0.36748,0.40836,0.85597,0.7873,18.099,3.2752,2.7766,46.439,46.7941,14.4232,15.2271,226.2902,216.6957,1.7044,3.52,3.1809,0.6202,0.51638,15.7665,21.454,1.5413,1.604,4.0283,4.2169,6.0964,6.3966,4.5814,4.7728,0.07026,5.2801,2.2816,2.7361,0.40169,0.39996,4.497,4.7927,4.8339,5.1585,1.6716,1.61,9.7824,9.7867,2.9376,2.8335,3.907,3.9788,3.8024,3.7881,1.6261,1.5151,2.1033,2.0697,3.801,3.5809,7.0278,6.542,2.206,2.1961,5.7465,6.0413,11.4592,9.9612,7.5401,7.1401,2.1145,2.2613,4.6893,4.7032,1.7718,1.8114,18.6379,18.6722,5.1017,5.9067,3.9369,4.2283,0.96542,1.0912,2.2466,2.5839,7.4354,6.8637,14.3491,13.6802,3.1677,3.47,3.9653,3.9476,3.6352,3.5668,1.4048,1.433,4.0996,4.4885,10.3332,10.3429,2.8232,3.0225,2.6455,2.855,2.1997,2.2704,9.5323,10.9738,2.3449,2.3237,2.2957,2.499,12.4119,12.8509,1.6382,1.976,1.2933,1.2774,14.6309,14.7676,5.0316,5.1668,7.0021,8.9471,3.9083,3.4278,9.7846,10.611,7.1187,6.8181,6.8234,7.2224,3.4275,3.6979,1.5637,1.8672,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,808
+desd810,74,74,M,2.6836,2.4934,0.44772,0.47721,0.94335,0.9122,19.8097,3.2616,3.2469,56.0955,56.7564,16.1786,15.7609,284.0418,294.1752,2.4679,3.2723,2.9317,1.4552,1.6117,31.9599,31.1066,1.9924,1.9859,4.8227,5.3069,7.3684,8.0711,4.9581,5.1393,0.08187,5.3382,2.6479,3.1238,0.4509,0.43215,6.2992,6.5349,4.7025,4.6396,2.0829,1.7596,11.3124,9.3175,3.7575,3.255,4.7146,5.0423,5.9276,5.0088,1.9067,1.8925,2.4361,2.3948,4.3523,4.1818,8.7955,8.5002,2.3084,2.4791,6.4488,6.2111,13.3156,13.2035,9.89,7.3795,2.5661,2.3277,5.7806,5.7041,2.1684,2.2302,21.001,20.6639,5.4599,6.3715,4.3291,4.4773,1.1752,1.3127,2.6736,2.9477,9.1937,7.9306,17.1263,15.8939,3.0431,3.3266,4.7004,4.8159,4.0074,4.7752,1.7436,1.3778,4.2617,4.7152,11.2934,11.5563,3.425,3.3253,2.602,2.7492,2.7622,2.7762,10.1849,12.6483,2.6093,2.6807,2.519,2.5133,12.2152,12.7845,2.3606,2.48,1.4417,1.5153,15.6749,15.2985,6.0073,5.7415,7.8592,8.5741,4.0864,3.3894,10.6237,10.4451,8.932,7.5284,8.6714,8.6,4.0003,3.8888,2.0162,1.9208,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,809
+desd811,38,38,M,1.7123,1.6168,0.46431,0.48466,0.96734,0.98753,17.8395,3.273,3.179,46.6652,44.7829,14.6129,15.1321,257.0058,247.3031,3.0552,3.7437,3.3285,0.70921,0.60686,34.3032,37.4298,1.911,1.8616,4.0435,4.1447,7.6391,7.8547,4.7595,5.031,0.08496,5.2607,2.4095,2.3533,0.44294,0.44719,5.7576,5.2847,4.8522,5.24,2.3092,1.8069,11.3124,10.4839,3.1923,2.8318,4.8673,5.0758,5.3221,5.1041,1.931,1.8927,2.4494,2.6153,5.8776,4.036,8.5592,7.9513,2.37,2.5662,8.7332,7.4188,13.3726,13.213,8.7216,8.5248,2.8403,3.027,5.7806,5.4811,2.1684,2.3605,22.9857,23.6993,6.0093,7.0693,5.6107,4.6622,1.1033,1.1123,2.9631,2.6437,9.1265,8.4238,16.1744,15.7252,2.9965,3.6547,5.0778,4.8221,3.5676,4.1904,1.8616,1.8233,4.7816,6.5954,12.654,12.2125,3.4228,3.6051,3.0362,3.0549,3.0685,2.9678,10.1976,10.9396,2.8486,3.063,2.519,2.7196,13.1199,13.4711,2.3634,2.5338,1.6682,1.5941,16.5313,15.4303,5.9048,5.6403,8.2718,10.377,4.2872,3.269,10.6104,11.324,9.4883,9.3392,9.4185,9.4607,4.5346,4.3584,1.8232,1.9406,,29,-50y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,810
+desd812,72,72,F,1.3139,1.6704,0.30776,0.29998,0.66914,0.64816,14.4818,2.2485,2.2676,37.0198,36.3908,10.8299,11.1161,167.8266,161.0911,1.1402,2.7121,2.4391,1.4247,0.94534,16.8999,21.4466,1.3283,1.2801,3.0868,3.0618,5.2375,5.499,3.8768,4.0697,0.06809,4.0379,1.7779,2.0068,0.31777,0.31612,3.324,3.8019,3.4566,3.7116,1.4349,1.3301,8.6533,7.634,2.8002,2.6481,3.1549,2.9876,3.2424,3.2605,1.2982,1.2728,1.4564,1.4596,2.9935,3.037,6.3894,6.5742,1.7015,1.7072,5.6178,4.5914,9.6125,9.6013,6.4027,5.8317,1.8869,1.9148,3.9268,3.8008,1.31,1.3169,16.5137,18.3016,4.4236,5.2418,3.2927,3.3296,0.78443,1.0571,2.3095,2.2291,6.2179,5.9198,11.4578,10.8127,2.4852,2.5463,3.3293,3.1632,3.1041,2.7091,1.2826,1.1608,3.5027,3.7223,9.4528,9.5354,2.656,2.8395,2.1121,2.1509,1.5512,2.0559,7.8549,9.2757,1.9505,2.0945,1.9324,2.1863,11.8479,11.7764,1.6217,1.9228,1.0127,1.0615,13.402,12.6978,4.5521,4.3385,6.702,7.8799,3.6249,2.776,8.6539,8.4367,5.7387,5.4674,6.8304,7.1955,3.0394,3.46,1.3987,1.3618,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,811
+desd813,70,70,F,1.0932,1.5129,0.43242,0.47015,0.89568,0.89013,18.213,3.3168,3.1011,46.3654,45.5105,16.4399,16.9913,253.0074,248.2285,1.2612,3.5198,3.2644,0.61565,0.49349,11.9217,12.2916,1.7571,1.7673,3.8407,3.4106,7.1371,7.7091,4.8324,4.873,0.0698,4.6608,2.142,2.4738,0.3586,0.38798,4.0656,4.6922,4.1578,4.715,1.9226,1.6284,9.369,8.7108,3.4087,3.6094,4.0035,4.0678,4.2417,3.9562,1.8133,1.7536,2.045,2.308,3.5937,3.4285,7.3327,7.1825,2.0876,2.1293,6.3217,6.3284,10.6601,10.0065,8.4587,7.5869,2.3552,2.4351,4.7125,4.6561,1.7906,1.9573,17.4425,19.015,4.6329,6.3081,3.8968,4.0077,1.0728,1.0821,2.8028,2.4332,8.2987,7.1143,13.5111,13.5444,2.499,3.3407,4.0605,4.5183,3.3051,2.9777,1.6497,1.5939,3.9078,4.5049,10.4514,10.2366,3.2923,3.278,2.4661,2.5572,2.4415,2.544,9.9668,11.2567,2.1961,2.3887,2.144,2.3124,12.1052,11.8777,1.8109,2.1538,1.1702,1.2581,13.5098,12.9226,5.4539,5.8453,7.8089,8.9854,4.0434,3.3203,10.2398,11.1361,7.2718,6.8181,8.6265,7.7009,3.7811,4.3703,1.5951,1.6978,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,812
+desd814,71,71,M,1.1563,1.7871,0.34004,0.38264,0.75542,0.79963,15.4595,2.4491,2.354,42.4737,42.4254,12.5599,12.8583,191.845,185.9051,1.1866,2.9519,3.0418,0.55737,0.49958,10.0298,11.3273,1.4203,1.4402,3.4679,3.6167,5.8336,6.1034,4.105,4.2268,0.07222,4.0424,2.0209,2.5436,0.37157,0.36647,3.3719,4.256,3.7875,4.0768,1.6751,1.3301,9.4737,8.3897,2.739,2.4315,3.4136,3.7782,3.862,3.5075,1.4613,1.4568,1.7751,1.8114,3.3626,2.9867,6.7912,6.5746,1.7143,1.8008,5.2995,5.2621,10.4471,9.8519,6.8044,6.0214,1.9966,1.9589,4.351,3.9784,1.6823,1.575,16.2457,15.9692,4.0023,5.2818,3.5422,3.3153,1.072,1.1334,2.3434,2.4251,7.3804,6.0357,12.5317,12.2537,1.9228,2.8097,3.4707,3.7607,2.99,3.2688,1.4978,1.1681,3.7861,4.304,9.3632,10.1896,2.7925,2.9753,2.3109,2.4182,1.9371,2.183,8.9765,9.9641,2.0736,2.1298,1.9562,2.0946,11.0117,11.7327,1.6691,1.8782,1.0798,1.2068,11.8307,12.1319,4.749,4.1712,6.8248,8.3262,3.4034,2.9298,9.5553,11.3991,6.6416,6.4193,7.2374,6.8396,3.2658,3.0953,1.426,1.3732,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,813
+desd815,67,67,M,1.9942,2.794,0.37359,0.39484,0.85597,0.92421,17.2224,3.3177,3.1426,48.291,48.3369,13.6021,14.1589,204.2511,204.5753,1.8061,3.5105,3.2914,1.2968,1.1149,24.5416,35.4198,1.5049,1.4994,3.5275,3.5353,7.1666,7.2452,4.5448,4.7205,0.08896,4.7843,2.363,2.5756,0.40882,0.4058,4.3437,5.04,4.3388,4.9566,1.4807,1.3887,8.7883,8.5372,3.1133,3.406,3.8788,3.8743,4.2951,4.3734,1.5984,1.7233,1.8298,1.9555,3.3301,2.956,7.8367,7.3893,1.8319,1.9303,6.6976,5.9451,12.4167,12.1164,8.4702,7.8848,1.9673,2.1453,5.0995,4.8373,1.5318,1.5974,17.2382,16.165,4.8343,5.7141,3.5589,3.6084,1.112,1.2448,2.6163,2.8358,7.8601,6.1601,15.3481,14.581,2.4321,3.2931,4.4969,4.6582,2.6471,3.3911,1.4666,1.5133,4.0638,4.6253,10.0818,9.8654,3.1334,3.446,2.4675,2.5458,2.2073,2.1272,9.1008,10.1322,2.0875,2.2795,2.144,2.499,9.6738,10.4426,2.031,1.7062,1.3351,1.4499,13.9778,14.1363,5.1302,4.7641,7.3572,8.3272,3.5488,3.7422,10.6186,11.05,7.3975,7.9303,7.9021,7.6055,3.5295,3.7475,1.3964,1.3138,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,814
+desd816,70,70,M,2.2566,2.4877,0.3603,0.40487,0.77148,0.83577,18.099,2.7349,2.6895,44.3483,43.3222,14.1702,14.9131,215.1196,216.0617,1.9387,3.2181,3.0496,1.3331,0.98324,26.0293,31.0679,1.569,1.5064,3.3659,3.4098,6.1374,6.2847,4.4157,4.6267,0.07234,5.0696,2.0012,2.6837,0.37608,0.39281,3.9011,4.4643,3.6847,3.839,1.7778,1.5173,9.7901,8.5799,3.3932,3.1842,3.3643,3.7718,4.4286,4.2499,1.6085,1.5631,1.8467,1.7326,3.8925,3.522,7.1346,7.0611,1.9854,2.0934,6.9891,6.5106,11.0529,10.7645,7.8971,7.3653,2.2825,2.5023,4.5899,4.6398,1.7892,1.8645,19.2383,19.6679,4.7657,6.1169,3.7545,3.785,0.99992,1.1274,2.2975,2.7867,7.5161,6.6487,13.534,12.7951,3.329,3.6427,4.2499,4.2138,3.4363,3.215,1.5133,1.4859,4.1739,4.555,10.1163,10.349,2.8906,3.2237,2.2363,2.2657,1.6959,1.999,10.0348,11.491,2.3996,2.4608,2.0158,2.1705,12.817,13.6959,1.6103,1.6304,1.2933,1.3027,15.1759,15.6985,5.4238,5.7101,7.8176,8.3436,4.5235,3.6446,9.187,10.1458,6.8383,6.8049,7.3909,7.2615,3.7418,3.9354,1.3401,1.4168,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,815
+desd817,,,M,2.442,2.2088,0.39851,0.4186,0.90347,0.87588,20.4912,3.2034,2.9293,41.2298,41.6152,15.737,16.8806,219.3807,212.556,2.739,3.4963,3.2644,1.3331,1.2163,31.4071,37.1856,1.7507,1.7807,4.562,4.7365,7.7554,7.5645,5.0958,5.2591,0.07256,5.5227,2.2461,2.4809,0.3742,0.40337,4.9389,5.3908,4.7368,4.4768,1.9753,1.5811,11.2125,9.2381,3.254,3.0346,4.0521,4.1485,4.7485,4.3545,1.6863,1.656,2.1378,2.2501,4.3098,4.0108,7.6692,7.6441,2.0146,1.9238,6.7231,6.1079,11.9037,11.3178,8.1276,7.895,2.4351,2.5376,6.1242,7.119,1.9296,1.7188,18.2185,15.6377,5.2541,6.047,4.0725,3.9717,1.1224,1.1499,2.5579,2.8057,8.3169,7.4477,14.5391,13.5837,3.4225,3.9171,4.3358,4.2973,3.4353,3.4774,1.8173,1.5378,3.8864,4.526,11.6293,10.9844,2.9475,3.154,2.634,2.7942,1.9748,2.3082,11.1063,12.4028,2.4394,2.6346,2.1412,2.6681,13.5707,13.5132,1.7676,1.6991,1.2988,1.3772,16.7998,15.3062,5.6822,5.6492,8.3254,7.9048,4.4744,3.3562,10.3299,10.8338,8.1165,8.0185,8.5504,8.1256,3.6974,4.372,1.5882,1.6946,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,816
+desd818,,,F,1.8719,1.9902,0.35333,0.36018,0.90359,0.89401,17.8724,2.8912,2.7928,45.9086,44.2557,14.668,14.8209,203.5476,190.1264,1.6673,3.3942,3.1069,0.67846,0.75136,18.4515,23.2024,1.5202,1.5078,3.1251,3.4098,6.6078,6.7055,4.5094,4.7287,0.07485,4.3164,2.1688,2.5484,0.39667,0.4058,3.6059,4.2337,3.996,4.175,1.6705,1.526,10.1495,9.9207,3.3453,2.9352,4.185,4.1444,4.6793,4.362,1.7283,1.6599,1.8156,1.9304,3.4718,2.9772,7.6589,7.3465,1.8942,2.089,6.8316,6.7376,11.9752,10.2448,7.7678,7.0399,2.2757,2.3532,4.2693,4.7563,1.5707,1.5606,19.14,18.8235,5.027,6.9267,3.8106,3.9294,0.94817,1.0491,2.5158,2.5365,7.2797,6.1634,14.6205,13.0377,3.1843,3.4526,4.4075,4.3679,3.386,3.0753,1.6373,1.433,4.301,4.5968,10.554,11.8842,2.8289,2.9691,2.5186,2.1874,2.4047,2.4738,10.6365,11.3873,2.4103,2.6018,2.1272,2.3742,13.0447,13.3993,1.9352,2.0007,1.2249,1.1464,14.3724,14.0169,5.1077,5.0761,8.3967,9.4176,4.3971,3.1925,9.7519,9.3063,7.6223,6.722,7.932,7.8093,3.8261,3.793,1.518,1.5275,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,817
+desd819,,,M,1.8122,2.9353,0.37308,0.49937,0.89651,0.95116,18.1907,3.2805,3.251,50.2053,49.6266,14.9631,15.3354,247.9735,247.7543,1.8546,3.9042,3.5758,1.2025,0.92258,22.7888,21.7437,1.8519,1.8178,3.7896,3.8439,8.15,8.5451,4.9633,5.0355,0.07715,5.1347,2.4147,2.7782,0.37903,0.41433,4.8039,4.9002,3.7443,3.6634,2.0518,1.5833,10.7487,8.8545,3.8622,3.5228,4.3756,4.0324,5.3855,5.0088,1.6107,1.8556,1.8671,1.8386,4.0231,3.5467,8.5667,8.4934,2.1121,1.9651,7.3738,7.0384,13.2295,11.7461,9.3268,8.2014,2.5281,2.3359,5.1739,5.1811,1.8795,1.9333,19.4148,20.819,5.2401,6.9686,4.1783,4.0818,0.95377,1.0488,2.1777,2.531,8.3722,8.0353,14.5562,14.397,3.0519,3.8449,4.4684,4.6073,3.3855,3.0305,1.6705,1.4578,4.5414,4.8399,11.9149,11.1221,3.2048,3.6146,2.3679,2.2809,2.3058,2.6226,10.3656,11.5437,2.5147,2.6081,2.0387,2.3682,13.5346,13.4711,1.9352,1.9968,1.1967,1.2696,14.6949,15.2437,5.3899,5.3513,8.2924,7.9048,4.0864,3.3719,10.4968,11.9308,7.4072,7.2427,7.8609,7.0857,4.0728,4.5021,1.4135,1.7661,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,818
+desd820,66,66,F,1.2587,1.4588,0.30681,0.33628,0.51972,0.51612,15.3463,2.5792,2.7309,39.28,39.5897,12.3447,12.711,204.1758,197.9945,1.2004,2.2385,1.9484,0.55739,0.49987,9.5855,10.6412,1.3283,1.3726,3.222,3.3818,6.5442,6.8969,4.0474,4.2721,0.07935,3.8579,1.8793,2.247,0.30681,0.2964,3.0373,3.5274,3.5266,3.5419,1.6024,1.4009,8.201,7.7556,3.0221,2.6865,3.8102,3.6877,4.0486,3.6052,0.98201,0.39954,1.53,1.557,3.3842,3.2457,5.7713,4.5657,1.688,1.6118,5.7857,5.6047,8.5534,6.8215,6.8965,6.489,2.0464,2.1191,3.8606,3.9178,1.3135,1.4058,14.9787,16.4313,4.6161,6.1161,3.2755,3.563,0.94853,0.81513,2.1241,2.2468,6.29,5.6315,10.8509,10.2972,2.4036,2.7676,3.7258,3.852,3.1041,2.6527,1.3021,1.3388,3.2198,3.5591,8.5374,8.6143,2.4819,2.3682,2.1635,2.1578,1.859,1.8952,8.7332,9.29,2.1787,2.1021,1.928,2.1697,10.7359,10.9252,1.7104,1.65,0.97439,1.0621,13.8663,12.5765,4.3692,4.4989,7.2679,7.0627,3.3701,2.4503,8.1985,8.881,5.9102,5.5943,5.4577,6.1399,2.9372,3.564,1.3829,1.3844,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,819
+desd821,77,77,M,2.5948,2.6248,0.38142,0.49937,0.91609,0.9122,18.6209,2.973,3.1574,52.246,52.6487,16.1122,16.8369,251.9128,253.2682,2.5729,3.8423,3.6848,1.4227,1.6117,23.4086,29.5189,1.6457,1.6387,4.11,4.2565,7.6391,7.9181,4.7729,5.1026,0.07709,5.4377,2.5032,2.8718,0.41953,0.42929,4.218,4.9562,4.7665,5.1481,1.9409,1.8698,12.1488,9.5747,3.8929,3.613,4.177,4.8171,5.4773,4.775,1.6863,1.7889,1.919,2.0053,4.1722,3.7021,8.0764,8.1502,2.1121,2.2066,7.267,6.6433,12.0698,11.9897,8.4069,8.0063,2.4574,2.5398,4.57,4.6036,1.7941,1.8131,15.9832,17.9085,5.9573,5.6858,4.23,4.3773,1.104,1.0764,3.1048,2.9135,7.9592,7.1731,14.935,14.0223,3.1072,3.6108,4.6643,4.9493,3.3178,3.4886,1.6757,1.3827,4.3186,4.7769,12.0991,11.6746,3.2138,3.5245,2.9604,3.1656,2.4205,3.0943,10.098,11.7391,2.5524,2.4352,2.5662,3.3079,13.4418,12.6851,2.2156,2.9278,1.2897,1.3543,16.0842,17.1693,5.5129,5.4629,8.2241,10.6727,4.0864,3.7773,11.0118,12.9099,8.2144,8.0185,8.4608,8.1909,3.5129,3.6103,1.6957,2.1845,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,820
+desd822,83,83,M,1.5742,0.86416,0.03898,0.02263,0.92367,0.93247,14.3243,0.00133,0.88732,7.8188,18.1896,2.8026,9.5908,61.8725,69.2732,1.4577,3.4248,3.3065,1.5198,0.92777,22.6621,22.1617,0.81757,0.8757,2.1838,0.32999,1.9192,4.1722,4.2635,4.4197,0.07222,4.7754,1.3543,1.4143,0.35284,0.32201,3.7247,0.02955,0.9969,3.1873,0.00047,0.00046,7.9765,2.2506,2.5548,2.377,0.00002,2.1042,4.2668,3.9733,1.6918,1.77,0.01207,0.02155,0,0,6.6917,6.6129,0.8931,0.90295,5.1454,5.1852,10.3411,9.865,6.071,5.921,0.00098,0.03638,0,0,0.06173,0.05335,6.9551,0,4.9535,6.1776,1.529,1.4103,1.1627,1.121,2.5856,2.4471,0.01018,3.6668,11.8131,12.5187,2.3226,2.4072,1.4146,0.40331,1.3448,0,0.01559,0.49832,3.0192,3.5591,8.954,8.656,2.8493,3.0987,1.8207,1.7543,0.53142,1.5192,0,0.00568,1.9127,1.181,1.5795,1.4588,0,0.00255,1.5154,1.4484,0.55918,0.92855,6.0263,11.176,0,3.5064,0.74456,6.5015,3.5325,2.7383,8.2168,7.8501,6.5997,6.4179,7.2509,7.2298,0,1.414,1.009,1.0864,,19,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,821
+desd823,82,82,F,1.9443,1.9275,0.31181,0.35751,0.67646,0.66215,15.8248,2.514,2.4381,44.8015,43.3422,13.4103,13.6501,192.7491,185.9051,1.6565,2.7004,2.5657,0.70902,0.63192,18.6268,20.5572,1.5018,1.501,3.035,2.8936,6.4665,6.3572,4.2118,4.4853,0.08069,4.2701,2.2701,2.2817,0.32726,0.34543,3.7088,4.2297,3.5926,4.0881,1.7697,1.3823,9.7188,7.3997,2.4154,1.9387,3.7778,4.4545,3.6372,2.9868,1.4815,1.2683,2.0226,1.9402,3.8571,3.5683,6.3825,6.1208,1.6926,1.6118,6.15,5.7805,9.375,10.5956,5.7616,5.62,2.2165,2.2274,4.3988,4.5069,1.6284,1.5915,16.6386,16.5803,4.4818,5.0582,3.4252,3.4544,1.2371,0.9933,2.5856,2.4201,7.3471,6.4788,12.0451,12.1207,2.6698,2.5224,3.2939,3.6689,3.2014,3.2688,1.5709,1.5697,3.8757,4.3925,9.8585,9.7247,2.4883,2.5695,2.2541,2.3503,1.9107,2.9146,7.8857,9.3435,2.254,2.4534,2.0154,2.2385,12.1226,11.0634,1.6495,2.3233,1.017,1.0783,15.0454,14.7956,5.0677,5.2665,7.2824,7.845,3.2599,2.7703,9.4464,8.8138,6.4666,6.435,6.8489,6.8798,3.437,4.0303,1.385,1.5497,,28,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,822
+desd824,,,M,1.7635,2.3628,0.34803,0.42314,0.88171,0.87588,18.4101,2.7755,2.8472,46.4549,47.4475,14.882,15.0095,234.7223,235.5425,1.6673,3.5323,3.3271,1.2968,0.73692,21.6185,24.8558,1.7868,1.7237,3.2159,3.353,6.8653,7.1892,4.6366,4.8963,0.09024,4.735,2.0089,2.9853,0.41411,0.3954,4.0849,4.8562,3.991,4.4858,1.7418,1.6807,10.0928,10.4591,4.2051,3.6397,4.0902,3.7717,5.4773,5.4337,1.9052,1.6251,2.1351,2.0518,3.801,3.4814,7.488,8.0186,2.3466,2.2119,7.3727,6.6334,12.1627,12.2691,8.4587,7.3144,2.3956,2.5297,4.013,4.4564,2.0804,2.0987,18.9612,19.9306,6.1579,6.5332,4.1959,4.3668,1.1842,1.2911,2.5359,2.8102,8.988,7.896,14.935,15.3184,3.8559,4.0731,3.9041,4.2366,3.5463,3.5357,1.7034,1.6753,4.4736,4.8453,11.9595,11.5639,2.9862,3.3782,2.3243,2.3462,2.4414,2.4047,11.6151,13.853,2.519,2.7582,1.9848,2.0887,13.2148,13.3354,1.9339,2.0675,1.3886,1.443,16.3539,15.1134,6.5039,6.09,8.4487,10.4647,4.7643,3.9651,11.1648,10.4425,7.9658,7.5026,8.4564,7.499,3.69,3.8459,1.4725,1.7277,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,823
+desd825,67,67,M,2.1132,2.3465,0.37023,0.40036,0.84541,0.71981,16.8618,3.2081,3.0003,42.4316,43.6504,12.1684,12.4512,186.3442,188.7927,2.2732,3.2742,3.0792,0.69365,0.63192,22.7909,27.2133,1.329,1.4112,3.5571,3.5172,6.5098,6.5072,4.3567,4.6199,0.06628,4.4313,2.0028,2.296,0.41104,0.39221,3.9011,4.8056,4.0728,4.0614,1.8422,1.6258,9.5422,9.6711,3.5068,3.7731,4.1787,4.0324,4.8444,4.5713,1.6944,1.5808,1.8098,1.7836,4.1515,3.4137,7.0278,6.8121,2.206,2.031,7.213,5.6319,11.059,10.374,8.6663,7.7479,2.3802,2.5573,3.5995,3.9769,1.8483,1.9334,17.3549,18.6858,5.8835,5.7717,3.9778,3.9639,0.88883,1.2153,2.478,2.7867,8.4822,7.1113,14.1437,13.2393,2.815,3.4565,4.5189,4.3582,3.1583,2.7484,1.5783,1.4613,4.074,4.7365,10.7091,10.9108,2.8168,2.9473,2.4688,2.2563,2.7669,2.5835,10.1522,11.9255,2.4985,2.5496,2.0953,2.3763,13.4418,13.9885,2.2245,2.1021,1.2302,1.2987,14.1941,14.6553,5.6201,5.8128,7.9751,9.8165,4.4239,3.5477,11.0324,9.9203,7.6908,7.2786,8.5122,8.1256,3.5289,4.2257,1.5917,1.5959,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,824
+desd826,69,69,F,1.5107,2.0916,0.40132,0.44518,0.88136,0.90077,19.6702,3.122,2.9504,50.0217,50.2409,14.5116,14.7292,232.3607,222.6818,1.246,3.5737,3.3827,0.43104,0.46857,10.0023,10.1571,1.5279,1.6101,3.6044,3.5807,6.7091,7.0209,4.7463,5.0523,0.0767,5.0798,2.3782,2.6814,0.38887,0.38119,4.5569,5.2078,3.8333,3.9875,1.8335,1.7547,11.3833,9.4337,3.2956,3.2515,4.3878,3.949,5.0371,4.6911,1.7817,1.8925,1.8721,1.9267,4.1116,3.6603,8.2978,8.1068,2.1813,2.2869,7.3511,6.9959,11.5745,11.9897,8.1276,7.7831,2.2754,2.4943,4.7915,4.5129,2.044,2.0628,19.933,18.6366,6.0093,6.5834,4.0038,4.3173,1.1375,1.2654,2.822,2.8748,8.8107,7.8587,14.7468,13.855,3.9516,4.0329,4.6395,4.4217,3.3178,3.1188,1.4561,1.5012,4.1308,4.3083,10.9553,10.3914,3.0398,3.3833,2.0485,2.0849,2.3943,2.7249,11.1617,12.4476,2.5713,2.8273,1.9957,2.1608,12.9511,13.815,1.9224,2.0007,1.1238,1.3167,16.485,15.3658,5.6773,5.6403,7.8463,9.0459,4.958,4.2271,10.9764,11.0209,7.3333,7.3378,8.1518,9.2077,3.4632,3.4992,1.6093,1.6424,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,825
+desd827,,,F,1.3846,1.6709,0.35806,0.37281,0.80181,0.80585,16.6818,2.8072,2.4509,43.4399,42.5625,12.1539,12.1483,180.3954,179.8191,1.6237,3.131,3.1275,0.78669,0.74344,17.1038,20.0338,1.3866,1.3777,3.3313,3.5573,6.376,6.2932,4.1609,4.3349,0.0849,4.1112,2.0875,2.3954,0.37365,0.34498,4.1808,4.9016,3.6757,4.0424,1.7991,1.5351,8.2922,8.2497,2.3608,1.9387,4.0143,4.2844,4.144,3.7566,1.5099,1.6001,1.7788,1.8734,3.6033,3.4439,7.4857,7.1407,2.2971,2.443,5.7668,6.1849,11.1879,10.6118,7.3121,6.8854,2.3611,2.5224,4.7746,4.8171,1.9356,1.94,20.6697,19.6175,5.1845,5.9417,4.1959,4.0782,1.1689,1.1249,2.6036,2.6654,8.0346,7.1449,13.7589,12.1207,2.4348,2.9274,3.6774,3.8858,3.3483,3.4832,1.5618,1.5583,4.2069,4.6213,10.9832,10.5044,2.8699,3.043,2.2169,2.4293,1.9439,1.8554,9.9204,10.536,2.4037,2.6115,1.9772,2.2659,12.0085,12.6192,1.7988,1.5474,1.275,1.2689,13.9848,15.2893,5.269,5.4523,6.5474,7.5909,3.7931,3.0401,8.2148,8.7986,6.72,5.8152,7.0508,6.9968,3.4384,3.8429,1.4754,1.3071,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,826
+desd828,70,70,F,1.3845,1.2513,0.27575,0.30794,0.66068,0.64816,15.6667,2.4715,2.2608,36.0362,36.3923,12.6156,13.067,169.8396,168.5586,1.4577,2.7121,2.4742,1.8227,1.4956,22.6621,24.0846,1.3261,1.315,3.1697,3.0497,5.5596,5.7188,4.0474,4.2826,0.08356,4.3073,1.8249,2.0852,0.30681,0.31728,2.9398,3.0857,3.3117,3.5395,1.4618,1.1709,8.2616,6.0317,2.739,2.5355,3.6505,3.3813,4.3906,3.7148,1.2982,1.3576,1.7233,1.5836,3.0474,2.43,6.1677,5.6728,1.8505,1.8986,4.3628,5.3421,9.2611,9.1482,5.9288,5.8129,1.9543,1.7342,3.3637,3.8523,1.402,1.4402,14.8596,14.7495,3.4563,4.5191,3.2287,3.3512,0.97386,0.8659,2.2617,1.689,5.4759,4.8291,11.7788,11.3461,2.0007,2.5273,3.2956,3.2516,3.166,2.6527,1.2826,1.3043,3.0192,3.4843,7.7781,8.2426,2.5273,2.6722,2.1467,2.0745,1.6116,1.7698,8.8763,9.4062,1.9189,2.1794,1.8687,2.0071,10.5813,10.3,1.5309,1.5334,1.0735,1.1272,11.5543,11.627,4.3139,4.3593,5.934,7.3877,3.3486,2.6668,8.1262,9.3042,5.9102,6.213,6.2694,5.995,2.7025,3.0175,1.2809,1.2893,,24,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,827
+desd829,,,M,1.7433,2.3245,0.37555,0.41405,0.80898,0.86494,17.0328,2.644,2.8133,46.8232,45.0515,14.0187,14.1856,217.6717,213.7234,2.2077,3.2171,3.0937,1.2206,1.3141,22.4138,29.1534,1.5006,1.4994,3.548,3.7316,6.1754,6.46,4.4848,4.701,0.07334,5.2786,2.2816,2.6047,0.38064,0.38263,3.6059,4.256,3.7816,4.186,1.6909,1.4936,10.6519,8.7883,3.2294,3.0271,3.984,4.138,4.4276,4.671,1.6126,1.5954,2.0749,2.0332,3.3198,3.0902,7.4396,6.8404,2.0209,1.9686,5.9165,5.9483,11.2191,10.9225,7.659,7.4887,2.1865,2.4265,4.2754,4.4549,1.6016,1.6784,18.3073,19.3029,4.667,5.8863,3.7841,3.7465,1.0214,0.9475,2.416,2.214,7.1542,6.0886,13.0986,13.3673,2.7967,3.0453,4.0727,4.059,3.9717,3.6122,1.5397,1.554,3.7308,4.211,9.9058,9.6412,3.0984,3.163,2.1295,2.3505,2.2332,2.5638,10.0515,11.527,2.3781,2.6607,1.875,2.2295,11.9639,11.9425,1.8433,2.3003,1.1198,1.2447,12.0217,11.5783,5.0806,5.3437,8.3,8.5511,3.8803,3.4703,10.6511,10.0025,7.3246,7.4312,7.0993,7.1531,3.2917,3.9146,1.5062,1.5099,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,828
+desd830,75,75,F,1.6611,1.4877,0.30776,0.29998,0.76212,0.73343,17.2136,1.7904,1.7664,42.54,40.841,14.3601,14.8204,203.8109,197.7453,1.7563,3.0443,2.5632,0.65389,0.61212,15.5073,19.029,1.5486,1.5185,2.8007,2.8304,5.5443,6.3151,4.4183,4.6409,0.07879,4.3013,2.2031,2.3166,0.32499,0.34001,3.5363,3.6044,3.3259,3.5054,1.4349,1.2021,9.1996,7.0883,2.4154,2.0088,3.2306,3.1451,3.4484,3.1617,1.4479,1.3462,1.5568,1.5965,3.1138,2.6464,6.5448,5.9755,1.7214,1.719,4.8907,5.1719,9.6125,9.1892,6.4405,5.8332,1.73,2.0018,3.8785,4.0338,1.3389,1.373,14.7917,15.0329,4.1649,4.8732,3.1968,3.2152,1.072,1.0199,1.915,1.954,6.101,5.527,11.4578,10.8127,2.3956,2.5807,3.2669,3.6566,2.8743,2.6854,1.1366,1.2695,3.2478,4.2617,9.385,9.7247,2.4895,2.6495,2.1467,1.9715,1.7326,1.6318,8.3525,9.53,1.8224,2.2089,1.8371,1.9312,9.7805,9.5847,1.5671,1.8796,0.95964,1.0666,12.738,11.9064,4.244,4.2436,7.2102,8.131,3.329,2.7218,8.8912,10.605,5.6891,6.0194,6.6063,5.9373,3.0722,3.104,1.2047,1.4348,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,829
+desd831,70,70,M,1.3735,2.1299,0.38266,0.35447,0.74951,0.78396,19.1081,2.7961,1.9421,49.2345,50.5032,15.7789,15.6548,218.9212,207.5702,1.2123,3.2393,3.011,0.46983,0.54857,11.7448,17.2025,1.5012,1.4886,3.3738,3.3626,6.5912,6.9055,4.4829,4.6137,0.08328,4.4525,2.382,2.6963,0.33725,0.37521,3.7686,4.1727,3.5798,3.9264,1.6328,1.3598,9.467,8.5673,2.977,2.8084,3.8488,3.891,4.2553,3.7832,1.4827,1.4774,1.7788,1.9075,3.3536,3.1892,7.1609,6.9971,1.9012,1.8858,6.9008,6.1276,11.6078,11.0215,7.5148,6.4034,2.0059,2.272,4.2386,4.2942,1.5451,1.5761,17.3399,17.0128,5.2609,6.2003,3.2639,3.6503,0.86718,1.0087,2.2727,2.2819,7.1759,6.1987,13.9134,12.7389,3.2217,2.9863,4.2429,3.917,2.7013,2.9829,1.5348,1.4375,3.4431,4.1002,9.1677,9.6885,2.7692,2.8781,2.1566,2.2312,2.1136,2.4116,10.4524,11.5164,1.9919,2.3702,1.9582,2.2568,12.5547,12.2405,1.8068,1.7496,1.0135,1.1325,15.5874,14.0278,5.0284,4.7806,7.6077,9.423,4.2727,2.932,9.4088,9.5962,7.422,7.2202,6.886,7.097,3.1503,3.3445,1.3748,1.4683,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,830
+desd832,,,F,1.5218,1.5472,0.4011,0.42549,0.86831,0.89996,16.2165,2.6524,2.796,27.9343,27.3723,12.9291,12.8817,208.768,201.4517,1.6097,3.4143,3.1564,0.53477,0.74287,17.2503,16.0797,1.4516,1.4856,3.339,3.3541,6.5265,6.6608,4.2133,4.3716,0.07313,4.0092,1.868,1.872,0.38924,0.37809,4.0432,4.431,3.9071,3.9064,1.9203,1.5833,10.6009,9.9061,3.2457,2.7063,3.9002,3.8315,5.0371,4.5931,1.7916,1.7477,2.1555,2.0414,3.8675,3.4571,8.2067,8.2525,2.1371,2.0751,6.8062,6.6257,11.8785,12.0056,7.6419,7.1949,2.2267,2.4227,4.5922,4.6191,1.7617,1.711,19.8372,19.7907,5.4805,5.5351,4.1567,4.0524,1.0744,1.0588,2.7871,2.7557,7.7053,6.8144,14.7733,14.9175,3.1322,3.3266,4.4569,4.5236,3.2773,3.2129,1.589,1.6605,4.301,4.7566,11.0806,10.643,3.0069,3.2946,2.0485,2.0921,1.9097,1.9606,9.6216,12.15,2.3909,2.568,1.9149,2.0657,13.6143,12.3655,1.7454,1.6453,1.2462,1.3205,14.5232,14.5068,5.4556,5.6808,7.3116,9.1592,4.8432,3.7085,10.1525,11.0531,6.5968,7.0953,8.3723,8.3901,4.0176,4.2425,1.2864,1.3716,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,831
+desd833,67,67,M,2.1132,2.794,0.38142,0.42992,0.84385,0.87536,21.9754,3.0522,2.8533,51.4541,50.5091,18.656,18.8096,269.1573,265.6812,1.9461,3.4118,3.3754,0.92013,0.83801,22.1314,26.8131,1.8652,1.8286,3.958,3.9769,7.4638,7.7786,5.1523,5.4395,0.08937,5.3326,2.6508,3.0942,0.4116,0.41953,4.413,5.0139,4.927,4.7795,2.1278,1.891,9.7817,8.2205,3.5772,3.5281,4.4146,4.9235,5.149,4.7594,1.6245,1.6786,1.9956,2.1078,4.6571,4.1805,7.8411,7.5475,2.3144,2.2793,8.2003,7.263,12.9681,11.9568,8.9198,8.1669,2.5202,2.6036,4.8022,5.122,2.0711,2.0161,18.5999,19.2424,5.4456,6.1711,4.3326,4.472,1.2076,1.0816,2.5524,2.5482,9.1937,7.9308,16.0082,15.049,3.1402,3.6819,5.0926,4.5567,3.6886,3.0816,1.6389,1.5248,5.0546,5.0967,12.5485,11.9956,3.1953,3.2579,2.5671,2.3877,2.2331,2.2081,9.1766,10.682,2.4879,2.5487,2.4137,2.408,13.703,12.6851,1.9471,1.8977,1.3379,1.4984,16.4195,15.5599,5.871,6.1416,7.4967,7.416,4.0864,3.3599,9.5689,9.4013,8.0677,7.6646,7.7944,7.0857,4.3022,4.4532,1.6241,1.6836,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,832
+desd834,83,83,F,1.6495,2.2007,0.35661,0.41651,0.65782,0.70871,16.0067,2.8989,2.8888,41.7928,43.1641,13.6541,13.538,184.0221,180.3862,1.9741,2.89,2.8842,0.7124,0.79444,24.2377,26.8131,1.527,1.4679,3.4478,3.6176,6.4362,6.3572,4.3747,4.5147,0.07442,4.4313,2.0523,2.2805,0.38748,0.29494,3.2603,4.1665,4.2152,4.2191,1.7381,1.7656,8.749,8.3081,3.0371,2.9403,3.6958,3.6837,4.0084,4.3969,1.4815,1.4068,2.1221,1.881,3.7816,3.5094,6.6711,6.4318,1.8818,2.0747,6.7724,6.0086,11.2782,10.0282,7.5987,7.101,2.2271,2.6388,4.5803,4.5634,1.5715,1.6189,16.3896,18.3061,4.5062,5.7645,3.449,3.9294,0.9656,0.88686,2.5492,2.3415,6.9508,6.5146,13.4024,12.5919,2.7339,3.392,3.9841,3.9945,3.6483,2.9361,1.4419,1.5383,3.3847,3.8719,9.5582,9.6318,2.6072,2.8801,2.4381,2.4182,1.9282,2.5377,9.8283,10.5983,2.418,2.6031,2.1977,2.2753,11.1179,12.4411,1.7123,1.9727,1.1612,1.2048,12.4816,12.5947,4.6414,4.7787,7.7578,8.3409,3.2345,3.3715,9.4371,9.2288,7.1756,6.7973,7.6584,6.6556,3.4632,3.602,1.4877,1.5099,,,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,833
+desd835,83,83,M,2.4287,2.1835,0.38018,0.39083,0.75549,0.79633,17.4098,2.7349,2.7139,47.6643,49.1911,15.072,15.2872,185.7545,188.816,2.8942,3.0892,2.9426,1.3138,0.91086,31.0961,31.4738,1.3688,1.3274,3.1718,2.9568,6.6749,6.9036,4.2355,4.4351,0.06398,4.8141,2.323,2.8859,0.36383,0.37311,4.717,4.8237,4.2298,4.4273,1.9654,1.5926,10.4294,9.6728,3.4933,3.2791,4.5358,4.5057,5.0217,4.6911,1.5594,1.4874,2.1334,2.0209,4.0231,3.5095,7.5501,7.4849,2.1738,2.1136,7.6067,7.4941,12.347,12.081,8.7859,7.4859,2.5327,2.4061,5.2304,5.0665,1.9984,1.8644,19.8668,20.1679,5.8835,6.1406,3.8968,4.0077,1.1224,1.2571,2.5666,2.8358,8.299,7.598,15.1414,14.581,3.3699,4.2916,4.8417,4.9054,3.9799,3.4449,1.5781,1.7375,4.4357,4.7407,11.4473,11.3723,2.7125,3.231,2.7424,2.4977,2.2832,2.6086,11.4189,13.411,2.3767,2.7005,2.5662,2.6396,12.4627,12.6866,2.0355,2.3352,1.1929,1.2963,15.5288,16.0232,6.0073,5.245,8.8275,9.0617,4.4749,3.6816,10.6607,11.8244,7.655,6.6764,7.622,6.7795,4.0715,4.5021,1.7607,2.0348,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,834
+desd836,,,M,1.4349,2.3519,0.43905,0.49152,0.83141,0.79891,20.1268,3.3853,3.2314,48.2352,48.3698,16.6933,16.6023,252.5748,247.8442,1.6642,3.3454,3.2016,0.76046,0.83932,16.1951,19.5064,1.6981,1.6373,4.2337,4.0548,7.0978,7.6661,5.179,5.4219,0.07009,4.5193,2.036,2.7424,0.40743,0.41572,4.0209,4.4059,3.7836,3.9828,1.8691,1.616,9.9077,8.9164,3.8376,3.877,4.2691,4.1499,6.0872,5.5077,1.7484,1.5724,1.7979,1.8671,3.7506,3.6101,7.3288,6.643,2.1914,2.3796,5.9213,5.9589,11.7056,10.374,8.7636,8.4315,2.2302,2.4053,5.2766,4.8805,1.8996,1.927,18.5568,18.6286,5.233,5.1925,4.318,4.4733,1.3779,1.198,2.9005,2.877,7.3224,7.9262,14.0121,13.6802,2.8999,3.2917,4.2779,4.2382,3.53,3.5953,1.5949,1.4683,3.9418,4.0697,10.8753,11.2827,3.1021,3.1765,2.3751,2.3405,2.4781,2.4877,10.7458,11.4351,2.3965,2.6129,2.2951,2.288,13.4291,12.6607,1.9352,2.0896,1.2078,1.2912,16.095,15.3062,5.2471,4.9771,8.1537,8.9545,4.5403,3.3271,9.2774,10.6328,7.7549,7.4204,8.0653,7.9146,3.6254,3.645,1.7588,1.8178,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,835
+desd837,71,71,M,1.1685,1.7477,0.37835,0.40435,0.81053,0.80585,21.302,2.816,2.8133,52.995,51.7551,16.0141,16.4425,222.79,216.6593,1.0312,3.4324,3.2747,0.41256,0.46701,8.3108,12.4534,1.5114,1.4831,3.4878,3.7316,6.9328,6.7992,4.8444,4.9725,0.07254,4.8961,2.3782,2.8663,0.36763,0.38007,3.6558,4.1727,3.7167,3.7606,1.7432,1.6524,9.6822,8.6004,3.0094,2.6239,3.7748,4.0282,4.2553,4.4054,1.5735,1.5989,1.946,1.7632,3.371,3.2519,7.6467,7.4826,1.978,2.0545,6.0951,6.4625,11.5048,11.2161,7.9171,7.0848,2.3243,2.3889,4.2587,4.2647,1.585,1.5917,16.2943,18.5287,4.2296,5.0735,3.6591,3.8902,0.94454,1.0405,2.4726,2.645,6.5017,5.8604,13.8714,14.0717,2.6053,3.6695,4.2997,4.1161,3.6965,3.349,1.4492,1.4459,4.4639,4.4619,11.2544,10.2604,2.8467,3.1822,2.3396,2.4581,2.3381,2.452,9.768,10.3831,2.2669,2.3627,2.3008,2.2557,12.1095,11.9634,2.013,2.2687,1.054,1.0159,13.0426,13.4857,5.0806,4.7806,7.9386,9.6603,3.8384,3.8033,10.6544,10.4071,7.8222,7.5841,7.4341,7.1257,3.33,3.639,1.7025,1.885,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,836
+desd838,60,60,M,2.3493,1.6033,0.35086,0.39382,0.77616,0.83678,15.0982,2.8802,2.7181,46.127,45.8428,12.0435,12.6795,214.4218,213.0231,1.8946,3.2981,3.1435,2.4881,2.8079,26.3421,25.9303,1.5581,1.5699,3.1933,3.3873,6.1889,6.6249,3.9613,4.2179,0.07515,4.8407,2.2072,2.4507,0.39049,0.38263,4.001,4.706,3.2609,3.5727,1.6918,1.5999,9.5858,8.2935,3.2222,2.9452,3.4866,3.3355,4.3475,4.4238,1.4203,1.4929,1.5552,1.569,3.6944,3.3075,5.7859,6.0491,1.9057,1.9376,5.8883,4.9571,9.374,9.274,7.659,8.097,2.0293,2.3184,4.3234,4.4611,1.7157,1.6743,17.284,17.1605,4.7874,5.0603,3.882,3.8828,1.0611,0.97622,2.5015,2.4072,7.6393,6.7513,11.9343,11.6384,2.7573,3.0025,4.0727,4.3736,2.7034,2.5606,1.506,1.2784,3.5234,4.2632,9.1457,9.759,2.5089,2.8487,1.9103,2.1279,2.3646,2.6416,9.151,10.1489,2.3064,2.3548,1.6775,2.0569,10.9514,10.7577,1.7782,1.9298,1.1223,1.1993,13.8721,13.2358,5.2099,5.2255,7.875,8.3409,3.9385,3.1517,9.6188,9.9883,7.1689,7.1332,7.4054,7.1796,3.524,3.3076,1.3372,1.5665,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,837
+desd839,,,M,3.2846,3.8497,0.41779,0.45606,0.84385,0.84107,18.3788,3.9094,3.6894,43.1093,43.4145,14.4027,14.4955,233.3043,234.481,3.7567,3.8467,3.5866,1.614,1.6117,22.5303,24.2618,1.7519,1.7443,3.5981,3.8377,7.6923,7.6113,4.9633,5.1621,0.07687,4.3915,1.9909,2.4388,0.396,0.4066,4.1386,4.8551,3.996,4.4849,1.896,1.6172,12.1488,11.1179,3.4009,3.0364,4.1024,3.9395,4.6508,4.4561,1.5758,1.5666,1.7564,1.84,3.6851,3.8104,7.0622,6.8761,2.112,2.1159,6.0687,6.0095,11.8823,11.1868,7.457,6.9489,2.1953,2.3084,4.2137,4.8068,1.7793,1.8645,19.0582,19.9306,4.8132,6.3697,3.8949,3.9287,1.2128,1.2119,2.8441,2.8748,8.7052,7.8788,14.7521,14.6542,2.8502,3.5094,3.8431,4.2453,3.2782,3.3625,1.4656,1.2876,4.0638,4.6404,10.4458,11.3059,3.0239,3.1765,2.408,2.4979,2.1797,2.5476,10.0741,11.871,2.316,2.411,2.2845,2.2754,11.8206,11.7822,2.0784,2.0881,1.3416,1.4482,16.4028,14.5999,6.0458,5.4435,7.9431,9.2497,4.5506,3.7717,10.5653,9.9939,7.5918,7.83,7.2099,7.1531,3.3051,3.4214,1.6507,1.6296,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,838
+desd840,,,F,1.0344,1.5136,0.39144,0.4675,0.97755,0.98178,21.2508,3.2466,2.9435,50.0217,50.4743,18.3548,17.9844,245.8511,243.7977,1.22,3.9712,3.5866,0.8319,0.50083,14.3835,15.3171,1.8519,1.8616,3.9642,4.111,7.9524,7.709,5.459,5.5975,0.08487,4.8712,2.405,2.9334,0.43406,0.41984,4.4987,4.7275,4.4733,4.5444,1.9665,1.8698,10.1484,10.4839,3.7986,3.5228,4.4059,4.6128,6.5936,5.9042,1.9505,1.7409,2.1031,2.1736,3.8456,3.7717,7.9612,7.494,2.4882,2.4275,6.6404,7.2898,11.9546,12.7822,8.8942,8.1993,2.5593,2.7017,4.7472,4.9715,1.9822,2.0095,18.5718,19.2424,5.0552,6.7807,4.3013,4.6246,1.041,1.2987,2.693,3.0479,8.5634,7.7043,14.3888,14.0223,3.3631,4.0809,4.6353,4.7023,4.0885,3.7082,1.8664,1.6495,4.3629,4.7538,11.7594,11.3723,3.2799,3.5992,2.5205,2.519,2.5237,2.8133,11.4609,13.2572,2.5921,2.7605,2.1619,2.7803,13.3956,13.2312,2.1358,2.5189,1.2925,1.2697,15.6544,15.5816,6.2855,6.0104,9.3803,10.4137,4.7925,4.2936,10.4408,12.624,8.223,8.0185,8.7938,8.4413,4.0345,4.2673,1.5527,1.9406,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,839
+desd841,60,60,F,0.99857,1.4305,0.36656,0.41872,0.8032,0.81121,17.5712,3.1599,3.0891,43.8728,42.9721,14.0101,14.1673,204.2511,200.8307,1.0368,3.1805,2.973,0.39387,0.37085,11.6656,17.0265,1.5573,1.5355,3.588,3.5591,6.8949,6.9551,4.1903,4.4735,0.07533,3.8657,1.9905,2.3954,0.37715,0.37247,3.8895,4.5299,3.5497,3.8767,1.7919,1.5396,9.5927,9.03,2.7324,2.7017,3.4866,3.6034,4.2695,4.4054,1.6458,1.6122,1.6794,1.8746,3.6966,3.3553,7.1779,7.3729,2.1738,2.041,6.2753,5.9628,11.8823,10.2448,7.2448,6.6851,2.3641,2.5257,4.947,4.7252,1.7486,1.7434,19.2383,20.2757,5.0421,5.9526,3.9463,4.1149,1.051,0.95972,2.7296,2.456,8.3181,6.6289,14.489,13.0492,2.8378,2.9641,3.9044,3.6426,2.7106,3.243,1.6253,1.5109,3.862,4.0697,9.588,9.5475,2.6336,3.0361,1.9027,2.083,1.8712,1.9596,10.9132,12.1633,2.3362,2.5267,1.7402,2.0736,12.7629,11.489,1.9493,1.65,1.1622,1.1901,14.1941,14.2595,5.4232,5.5811,8.3242,8.0248,4.6808,3.819,9.6935,10.6654,6.6682,7.0975,7.4283,7.094,3.757,4.1613,1.4022,1.4168,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,840
+desd842,71,71,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,841
+desd843,,,M,1.7245,1.907,0.37089,0.43673,0.99874,0.99325,19.4859,2.855,2.818,47.8821,47.8478,16.1704,16.4775,284.0418,281.4037,1.4817,4.2465,3.6457,0.83068,0.56756,14.5829,20.9043,1.8646,1.8031,3.6109,3.5983,7.1682,7.6513,4.8321,4.9638,0.07553,4.7502,2.2473,2.7544,0.4105,0.39221,4.5332,5.0139,4.4507,4.5444,2.1901,1.6462,10.4015,10.1,4.2051,3.5443,4.5708,4.4935,5.4218,5.0088,1.9382,1.8275,2.3232,2.2036,4.5784,4.5646,8.2534,8.4465,2.4457,2.3453,7.0212,7.5209,13.5794,14.1385,9.1257,7.4859,2.5698,2.5738,5.506,5.2196,2.4392,2.3385,21.001,22.4796,4.8565,7.252,4.31,4.2674,1.041,1.02,2.2485,2.4911,10.9811,9.8321,17.4594,18.2389,3.2211,3.8449,4.8025,4.465,4.0271,3.9462,1.8669,1.5796,4.6583,5.0762,12.3998,12.0823,3.2514,3.5371,2.3477,2.3462,2.9351,2.7929,13.1736,12.3878,2.3298,2.6361,2.2267,2.4483,16.172,15.5268,2.4074,2.2917,1.3871,1.5153,19.5882,15.6758,6.6401,8.4787,8.7147,9.0181,4.9162,3.9216,12.1298,11.5007,8.5019,7.5284,9.4185,9.5514,4.5645,4.1453,1.7496,1.686,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,842
+desd844,,,F,2.1892,2.2847,0.29367,0.39194,0.77445,0.7483,15.4625,2.5066,2.7821,48.197,47.2955,13.4103,13.538,212.6955,207.636,1.651,3.3094,2.9947,1.8794,1.6943,20.3411,19.7701,1.4291,1.4294,3.3423,3.278,6.2277,6.5512,4.0879,4.3006,0.0849,4.4861,2.2424,2.4605,0.35503,0.32475,4.2473,4.7178,4.1455,4.0762,1.5075,1.2167,9.2651,8.714,3.0589,2.7925,3.3061,3.7968,3.8457,3.9248,1.4166,1.3872,1.7701,1.8075,3.5987,3.483,7.5047,7.2602,1.7615,1.8571,6.1452,5.8485,11.3479,11.2543,7.8192,7.3695,1.9371,1.9649,4.3328,4.4422,1.4899,1.5537,15.482,16.5744,4.9477,5.555,3.0127,3.16,1.3235,1.1394,2.951,2.6167,8.0372,6.7189,13.6094,13.6328,2.8378,2.9641,4.4146,4.3462,2.7013,2.9829,1.3089,1.2955,3.7873,4.6272,10.2125,10.9152,2.839,3.0087,2.2576,2.2356,1.6549,1.8166,9.2992,11.7269,1.9962,2.0384,2.0332,2.1117,10.6811,10.8191,1.6103,1.5334,1.2151,1.3157,12.5572,12.7331,5.0514,5.0411,6.6039,9.011,4.1722,3.2111,10.774,9.5776,7.0951,7.83,6.5751,6.3349,2.6007,3.0542,1.3538,1.153,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,843
+desd845,81,81,M,2.3255,2.0334,0.29851,0.37155,0.79946,0.85586,17.1029,2.3291,2.448,42.8216,42.5416,15.8163,15.9721,208.2842,213.7972,2.3436,3.2147,3.3138,0.91151,0.87676,22.5303,22.3935,1.5605,1.5028,3.5016,3.7797,6.5677,6.6851,4.4392,4.6325,0.06526,4.484,2.0673,2.4458,0.32784,0.32938,3.7968,4.3399,3.5452,3.9,1.7272,1.5373,9.6472,9.1829,3.479,3.623,4.0572,3.9018,5.0822,5.2862,1.504,1.5875,1.7762,2.0563,3.5505,3.0477,7.1156,6.5485,1.8311,1.8854,6.2204,5.801,11.7404,10.8507,7.2141,6.7001,2.1214,2.2737,4.3988,4.2283,1.6097,1.6249,16.273,17.3382,4.6453,4.9584,3.5027,3.6918,0.8514,1.0543,2.2521,2.5839,7.0534,6.1634,14.6532,12.7792,2.5101,3.3037,3.7494,4.0093,3.318,3.2799,1.4504,1.5012,3.5927,3.9948,10.0699,9.6318,2.7524,2.8589,2.199,2.1786,2.0996,2.4363,9.7286,10.8438,2.2032,2.327,1.8592,1.9533,11.7555,11.759,1.9502,2.0129,1.0959,1.1114,11.8694,12.2416,5.0937,5.1043,7.3309,7.9473,4.0568,3.6288,9.0381,9.686,7.0764,6.5692,7.0659,6.9968,3.2606,3.602,1.4593,1.5321,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,844
+desd846,38,38,M,2.2023,1.8234,0.37982,0.3701,0.83178,0.86541,17.5262,2.8806,2.4915,50.9428,50.3785,14.1082,14.3546,213.1412,210.3322,1.7409,3.2428,3.1136,0.92808,1.1293,22.6963,26.1031,1.4853,1.4994,3.7943,3.7931,6.6078,6.9036,4.2758,4.486,0.06596,5.1974,2.5086,3.0338,0.35381,0.38798,3.6402,4.1603,3.928,4.1591,1.7043,1.4411,9.1016,8.3197,3.3215,2.8557,3.4007,3.6034,4.6919,3.9091,1.722,1.6786,1.8441,1.8211,3.5773,3.3786,7.9794,7.1407,1.7773,1.7464,6.4312,6.553,11.5046,10.95,8.6542,7.7697,2.2825,2.3507,4.4497,4.5385,1.6049,1.595,17.2759,17.4283,5.4068,5.8612,3.5876,3.4528,1.0464,1.0646,2.4232,2.5482,6.6446,6.2187,13.7817,12.9016,2.5745,3.1473,4.6522,4.451,3.5913,3.2505,1.5898,1.4126,3.8402,4.1396,9.9252,9.5475,3.0673,3.3577,2.3685,2.3436,1.8433,2.3937,9.5891,10.212,2.3581,2.4704,2.123,2.2904,10.3294,10.4154,1.6388,1.9505,1.1721,1.235,11.7635,12.0462,4.4457,4.5847,7.3309,9.3403,4.0222,2.932,10.1514,11.021,7.0259,6.5889,8.7133,7.9834,3.4457,3.3353,1.5081,1.5661,,26,-50y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,845
+desd847,63,63,F,1.0172,1.5136,0.36371,0.34978,0.81262,0.764,16.6818,3.1599,2.9916,42.7345,43.4035,13.3747,13.8672,209.5672,208.2046,1.0778,3.1175,2.7845,0.56721,0.4383,12.0578,13.1846,1.6261,1.5537,3.8347,3.3777,6.1978,6.8479,4.5341,4.7364,0.07952,4.4765,2.0895,2.3954,0.33346,0.35342,4.1239,4.5454,4.0004,4.2371,1.7392,1.6665,9.5333,7.8532,2.4294,2.4514,3.8306,3.9903,3.6957,2.9868,1.6624,1.5799,2.0217,1.9358,3.371,3.4177,6.4928,6.6439,1.9519,1.9683,6.15,6.0413,10.8135,10.1351,6.3269,5.4669,2.205,2.3113,4.5939,4.9116,1.6819,1.7026,17.934,17.4396,4.6322,5.5006,3.6023,3.847,0.90858,0.98109,2.4632,2.4105,7.6361,6.6289,13.6382,12.7654,2.9139,3.0453,3.5763,3.6566,3.4353,3.5511,1.4654,1.3913,3.5002,3.9726,9.3341,9.3937,2.6897,2.9706,2.117,2.1517,2.2332,2.4227,9.3087,9.5644,2.3034,2.3008,1.8737,2.1656,11.7388,11.9228,1.6953,2.1538,1.09,1.0907,12.9211,13.8689,5.0013,5.0618,7.5731,8.6879,3.7511,3.4955,9.4762,9.6116,7.0455,6.5395,7.8998,7.3576,3.3019,3.6143,1.299,1.3876,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,846
+desd848,78,78,F,2.1015,1.9786,0.32035,0.38244,0.69194,0.71028,15.8248,2.6118,2.5326,39.8187,39.0957,11.5711,11.4985,176.0942,171.8839,1.979,3.0506,2.9228,0.74791,0.53907,26.0515,28.8535,1.3894,1.3178,3.0293,2.9421,5.7143,5.8428,4.0902,4.1604,0.06777,4.7754,2.0194,2.4327,0.32688,0.3312,3.7014,4.1335,3.6026,3.8616,1.6668,1.3184,10.7304,8.7758,2.4154,2.4884,3.3679,3.7099,3.8955,3.6357,1.2855,1.3851,1.5566,1.6097,3.3842,3.1838,5.7968,6.1889,1.7367,1.8472,5.1103,4.7521,8.7702,9.1264,6.6618,6.0849,2.0071,2.1137,4.3694,3.86,1.5529,1.5761,15.7474,15.7201,4.2694,5.6877,3.2251,3.8057,0.95977,0.85182,2.4632,2.0058,6.6045,6.2958,10.0935,10.6656,2.5506,2.3928,3.6227,3.6789,2.8424,2.6425,1.5467,1.259,3.7187,4.0705,9.1317,9.3708,2.5609,2.7702,2.1693,2.2421,1.9935,1.9753,9.4006,10.672,1.9698,2.1207,1.7793,2.1134,11.4599,10.5286,1.5884,1.7338,1.0284,1.0946,10.1465,11.176,5.0937,5.2665,7.8577,8.0317,3.8999,2.8583,10.1367,9.1754,4.9838,5.655,6.6937,6.1146,3.1455,3.5311,1.2277,1.4648,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,847
+desd849,60,60,F,0.97219,2.0565,0.38153,0.38063,0.97399,0.84623,19.4632,2.8135,2.5286,51.4541,52.0429,18.9067,18.277,254.6872,247.5545,1.2058,3.4992,3.2413,0.32887,0.46701,11.6909,15.3654,1.7259,1.6719,3.5761,3.4843,7.1126,7.6406,4.9581,5.0079,0.07289,4.4949,2.382,2.8663,0.33999,0.41099,4.1539,5.0472,4.0903,4.5632,1.7178,1.4503,9.7824,8.7777,2.9195,2.9567,3.8336,4.0944,4.7084,4.5713,1.8976,1.9168,1.8574,1.7242,3.559,2.956,7.569,7.6213,2.1532,1.9996,6.4169,5.8914,11.4744,11.5464,7.9878,7.2098,2.1125,2.2419,5.0773,5.1775,1.8843,1.6231,18.328,18.6825,4.7554,5.4664,3.9278,3.7655,0.98736,1.2153,2.3972,2.3196,8.0824,7.4916,13.3617,14.0717,2.5344,3.1664,4.3442,4.2295,3.1595,3.2644,1.4257,1.407,4.0397,4.4781,11.0806,10.3925,2.9862,3.2821,2.4147,2.3505,2.0408,2.2906,9.4866,11.0974,2.3654,2.5279,2.3609,2.5141,11.9169,10.5878,1.8111,1.9181,1.1057,1.1544,13.8458,14.0631,5.6004,5.7898,6.9161,7.2648,3.9274,3.4882,9.7843,10.519,6.7545,7.4393,7.7964,7.8138,3.0513,3.8292,1.5259,1.5662,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,848
+desd850,68,68,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,849
+desd851,70,70,F,1.0932,2.2425,0.3887,0.43588,0.91609,0.95982,18.4167,2.8581,2.675,44.7195,44.5889,14.6141,14.6398,251.9128,252.6338,1.2058,3.5761,3.3564,0.55657,0.54806,10.4673,11.6214,1.5478,1.541,3.9886,4.086,7.756,7.9311,4.7729,5.0056,0.08487,4.1392,1.988,2.3516,0.41552,0.41668,4.1808,4.7719,3.946,4.0179,2.1901,1.8069,11.8125,9.3483,2.4207,2.6605,3.878,3.9291,3.9498,3.7017,1.7916,1.7909,1.9154,1.87,4.5784,4.7688,7.3327,7.0565,2.3084,2.3903,5.9596,6.2781,11.7404,10.958,7.6647,6.9586,2.6568,2.7017,4.4081,4.5886,2.2148,2.1793,22.3019,20.8553,4.8922,5.3035,4.4065,4.7389,0.92943,0.9641,2.3138,2.3554,9.9152,7.1431,14.1806,13.6412,3.4221,3.8664,4.1769,4.1586,3.5792,3.8995,1.7978,1.798,3.9334,4.3659,11.7754,10.8883,2.8142,3.1859,2.3575,2.3405,2.0334,2.3224,11.2743,13.2226,2.332,3.1392,2.0955,2.2557,12.2162,11.5328,1.7417,2.002,1.2963,1.2694,14.4276,16.593,5.6451,5.2538,7.8018,8.9635,4.0972,3.8687,10.0498,11.599,7.1523,7.1802,7.8027,6.5938,4.171,4.6862,1.3179,1.6621,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,850
+desd852,62,62,M,1.5052,1.3377,0.30712,0.33326,0.83649,0.69515,16.544,2.5652,2.5483,43.9449,42.9074,13.3855,13.6731,212.1597,208.929,1.3533,3.0915,2.7707,0.8956,1.1214,15.8165,20.6888,1.5593,1.4265,3.0487,2.8827,7.159,7.2325,4.4644,4.6137,0.08415,4.5881,2.2288,2.1681,0.34728,0.35547,4.2948,4.7414,4.1263,4.2093,1.8843,1.5934,9.5333,8.2294,3.1718,2.9379,4.2217,4.4762,4.1589,4.5504,1.7632,1.5204,1.9982,1.924,3.6496,3.169,7.7755,7.3579,2.0385,2.2292,7.429,7.438,12.3609,11.5383,7.7182,7.1302,2.3294,2.1863,4.7913,4.8052,1.8397,1.8594,19.6031,19.2897,5.2269,6.3374,3.9577,4.1393,1.0051,0.9475,2.486,2.3596,7.6531,6.9455,14.1925,13.6718,3.2782,3.9967,4.5219,4.4089,3.4069,3.4449,1.6254,1.4114,4.074,4.5857,10.8558,10.6738,3.0069,2.9696,2.3548,2.2809,2.2996,2.4504,8.7594,10.6662,2.1629,2.4411,2.1189,2.1588,12.4119,12.0972,1.8633,1.9102,1.2947,1.3407,13.3067,13.7966,5.1681,5.3547,7.6196,8.7445,4.1901,4.0503,9.4148,9.8356,6.7222,6.5463,8.3288,8.0227,3.8343,4.1011,1.4135,1.6371,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,851
+desd853,80,80,F,2.3475,2.391,0.29664,0.38052,0.6034,0.67411,14.6382,2.3546,2.3089,38.7047,38.2802,12.0467,11.9709,197.7947,196.9209,2.2209,2.4167,1.9484,1.7486,1.7941,23.1492,28.1178,1.432,1.2638,2.8986,3.0835,6.1144,6.1409,3.6911,3.898,0.0805,4.181,1.7952,2.0458,0.33936,0.3005,4.6707,4.6505,3.6969,3.9147,1.5075,1.2471,8.6533,8.8485,3.0485,2.7653,3.9039,3.891,4.4469,4.0269,1.2592,1.3182,2.1555,2.019,3.4434,3.3346,5.4139,5.7918,1.8534,1.9337,5.6825,5.4631,8.9138,8.6193,7.3677,6.8615,1.9596,2.0203,4.738,4.5531,1.682,1.6204,17.4139,16.2445,4.5417,5.3655,3.4487,3.5479,1.0387,1.012,2.7924,2.7079,6.8416,6.6186,11.7067,9.9508,2.7084,3.1951,4.1069,4.2322,3.2295,3.5374,1.3248,1.3629,3.5234,4.313,9.0214,11.594,2.3909,2.4191,2.2341,2.2164,2.1641,2.4295,9.367,11.4371,1.9221,2.1403,1.8789,2.2119,12.0222,11.0993,1.6953,2.1259,1.2357,1.2756,13.4212,13.1624,5.0381,5.045,7.5235,8.8565,3.8047,3.3078,9.4618,9.7759,5.8814,5.6658,6.5955,5.8248,3.0039,3.7665,1.2959,1.5241,,25,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,852
+desd854,80,80,F,1.6409,2.7372,0.30555,0.33023,0.78395,0.81137,14.6547,2.2592,2.3382,40.2388,41.3507,10.9827,12.8773,206.2201,206.531,1.2191,3.2514,3.4019,0.33228,0.41167,13.9526,13.7839,1.2456,1.2125,3.2393,3.1679,6.5442,7.2292,3.7435,3.9924,0.06589,4.4285,2.0161,2.0971,0.36629,0.33266,4.1763,4.6218,4.1115,4.6432,1.8172,1.5585,10.0875,9.7493,2.7775,3.0567,4.0193,3.7157,4.3022,4.0752,1.5072,1.6173,2.0011,2.2589,3.8675,3.4058,6.1386,6.4193,2.1371,2.0778,6.0584,5.984,10.5798,10.3478,7.1949,6.9034,2.3552,2.5257,4.3975,4.6175,1.7644,1.8793,19.209,18.4001,5.1387,6.3066,3.9101,3.9993,1.1758,1.1001,2.663,2.5839,6.7998,6.5047,14.5233,13.4344,2.4873,3.1963,4.2429,4.3095,3.8079,3.6112,1.5771,1.5799,4.0363,4.6815,10.2587,11.088,2.6072,2.8523,2.5382,2.5942,2.293,2.3988,11.0103,12.0117,2.3362,2.4188,2.1534,2.3548,12.5585,11.8217,2.0754,2.0344,1.0636,1.1654,14.2522,14.177,5.6586,5.2185,8.0531,10.1358,3.8384,3.5834,9.6149,10.121,7.7471,7.3592,7.1644,7.6207,3.69,4.2711,1.6302,1.8361,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,853
+desd855,71,71,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,854
+desd856,72,72,F,1.7667,1.9797,0.31573,0.33854,0.67783,0.61474,18.7678,2.5881,2.5641,45.9086,46.1134,15.7042,15.9902,208.0846,198.8349,1.6214,2.6549,2.3258,0.90852,0.85966,14.2137,16.0191,1.5049,1.5309,3.2527,3.2644,5.7264,6.0547,4.5223,4.8289,0.08606,4.8108,2.3064,2.7636,0.3093,0.32294,3.5363,3.9115,3.8572,4.3721,1.4615,1.3791,9.8024,8.2846,2.4333,1.8742,3.4909,3.9159,3.7092,3.0535,1.3537,1.3032,1.6704,1.6285,3.2878,3.1364,6.6711,6.5838,1.7754,1.8384,5.215,4.9948,9.9931,9.9434,6.3269,5.6364,1.8888,2.1125,3.6314,3.825,1.4951,1.5494,14.8746,15.3838,4.3704,5.1462,3.3717,3.3321,0.99442,1.1334,2.465,2.5823,6.5032,6.2902,11.4993,12.4296,2.2572,2.8097,3.3377,3.7054,3.1755,2.5717,1.3089,1.3053,3.2327,3.7294,9.385,9.2696,2.5166,2.6174,2.1301,2.1923,1.9935,2.0631,8.8208,9.8791,2.1918,2.4992,1.8823,2.0576,11.2482,11.6743,1.6495,1.635,0.9634,0.95781,12.5558,12.1091,4.7292,4.5871,6.5404,8.0408,3.3671,2.7485,8.6091,8.5418,6.1677,6.4641,6.4508,7.1199,2.9019,3.4214,1.3862,1.3991,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,855
+desd857,,,M,1.472,3.2169,0.38885,0.42992,0.82482,0.86494,20.0511,2.6819,2.6265,49.5065,49.9543,15.1496,15.6105,237.9884,236.611,1.246,3.5596,3.2316,0.47477,0.51484,14.8505,13.1091,1.7228,1.6728,3.5761,3.6223,7.3645,7.6227,5.0649,5.3294,0.07369,4.6296,2.382,2.8765,0.40804,0.38032,4.6799,4.9207,4.2669,3.9313,1.6798,1.5551,10.0504,9.7867,3.1614,2.9878,3.9169,4.43,4.502,4.0704,1.7124,1.626,2.1566,1.9723,4.0767,3.7492,7.5756,7.2141,1.9633,2.0176,6.1063,6.7557,11.4472,11.1036,8.4702,7.7475,2.3783,2.4717,4.7105,5.473,1.7108,1.8075,18.9592,19.8121,4.4945,7.0699,3.6261,4.0288,0.96612,0.98826,2.3546,2.1265,7.7854,7.0902,14.0138,13.5247,2.6754,2.9439,4.0129,4.4058,3.279,3.0642,1.6501,1.5605,4.248,4.196,10.4165,10.5263,3.0706,3.2543,2.2009,2.3503,2.0456,2.008,10.1761,11.3632,2.5339,2.6346,2.1557,2.3748,10.7852,11.5403,1.7499,1.9056,1.1155,1.1942,13.4679,12.7089,4.886,5.0385,8.3976,8.9686,3.9274,3.2665,10.774,9.5985,7.9591,7.2714,8.5351,7.755,3.4577,3.6702,1.4193,1.5738,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,856
+desd858,,,M,1.7034,1.8993,0.31335,0.33703,0.71488,0.67601,18.1835,2.7265,2.7446,48.3411,49.2031,16.2345,16.8369,237.2557,232.4672,1.141,2.9698,2.7257,0.66079,0.73466,11.8547,15.2159,1.5714,1.6395,3.5262,3.3507,6.4965,7.3519,4.6023,4.8988,0.08385,4.993,2.2037,2.5562,0.29742,0.32832,4.2767,4.5454,4.0004,4.317,1.7009,1.4917,10.0486,8.0967,2.4294,3.2637,4.011,3.8403,3.6178,4.3597,1.4097,1.2884,1.943,1.874,3.325,3.2919,6.8917,6.6305,1.9012,2.1122,5.7465,5.5668,10.6744,10.5973,6.5715,6.4755,2.0312,2.3518,4.7442,4.8081,1.7641,1.902,16.507,18.7104,5.0392,5.8975,4.0233,3.9559,0.87342,0.99913,2.4188,2.6003,7.7032,7.1206,12.4217,12.6961,2.4489,2.764,3.5847,3.5196,3.3692,3.1812,1.4955,1.5504,3.3725,4.0438,9.6544,10.0366,2.6595,2.8,2.1868,2.1073,2.2033,2.2465,9.3147,10.8421,1.9698,2.474,2.0531,2.1981,12.809,12.0868,1.8315,1.8519,1.0849,1.0635,12.2098,12.5947,5.3932,5.5811,8.2169,8.6658,3.7189,2.8281,10.4219,10.5249,7.3246,7.0146,6.5856,6.736,3.6364,3.6428,1.5697,1.5708,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,857
+desd859,60,60,M,1.527,1.9196,0.29313,0.34214,0.77299,0.70882,17.8149,2.4425,2.4566,46.765,45.0515,17.1083,17.3113,256.3853,242.4689,1.2911,3.3142,3.0792,0.59421,0.68775,10.5676,13.5929,1.7259,1.6711,3.6701,3.518,7.0451,7.7499,4.5718,4.8195,0.08537,4.993,2.1997,2.3503,0.33087,0.35902,4.4763,4.6591,4.2539,4.2844,1.6968,1.3625,11.4685,8.6865,2.4207,2.8329,3.7151,3.9186,3.7056,3.734,1.4866,1.3036,1.9935,1.8592,3.559,3.2291,7.3593,6.7408,2.01,1.9112,5.9253,5.1279,11.8204,11.0469,6.7914,6.6889,2.1151,2.0384,4.5636,4.4832,1.861,1.8683,15.809,15.5037,4.8132,5.0603,3.5397,3.6194,0.95904,1.4141,2.4188,3.189,7.3403,7.4901,14.1504,13.0271,2.4538,2.7921,3.6132,3.5354,3.4362,3.8409,1.4573,1.3436,3.7538,4.1629,9.3632,10.0684,2.9048,3.0676,2.3395,2.4487,2.0699,2.008,8.8464,9.9287,2.3101,2.5449,2.1559,2.2557,10.8173,11.4156,1.7032,1.7918,1.1613,1.189,13.2791,12.771,4.9428,5.5021,8.0442,8.0248,3.9876,3.125,9.2928,8.9853,7.5752,7.1608,7.424,7.624,3.2606,3.3935,1.4217,1.6946,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,858
+desd860,65,65,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,859
+desd861,61,61,M,1.7028,1.6037,0.36092,0.3983,0.65252,0.68886,15.7424,2.8002,2.6672,38.9738,39.5897,11.4282,11.7522,234.1269,237.6217,1.141,3.1112,2.8485,0.66079,0.91831,14.7903,17.7497,1.7519,1.8629,3.5761,3.4552,6.2869,6.6129,4.2161,4.3401,0.07385,3.8533,2.1196,2.2169,0.35463,0.36817,3.6715,4.1722,4.1806,4.1184,1.5604,1.3434,9.1377,7.8755,2.1927,1.9707,3.988,3.8408,3.7056,3.3427,1.4815,1.2221,1.9935,1.8123,2.9622,3.0773,6.5553,6.5838,1.7813,1.6396,4.9555,4.7346,9.3723,9.1926,6.9363,6.6783,2.0816,2.1359,4.2057,4.4131,1.5406,1.4705,15.5214,16.3922,3.9415,5.6877,3.2182,3.3215,0.91562,1.063,2.0237,2.3819,6.6045,5.9829,11.7143,12.0173,2.0007,2.6631,3.7422,3.5443,3.341,2.9289,1.3937,1.4634,3.3779,3.8911,9.185,8.9996,2.7524,2.8399,2.482,2.3436,2.2011,2.141,10.5173,11.3986,2.0174,2.2222,2.033,2.2297,11.388,12.8559,1.737,1.8612,1.1365,1.1701,12.3623,11.8028,4.4519,4.6651,6.9975,7.4959,3.3415,3.0741,9.7064,9.2653,6.9532,6.6077,6.5402,5.9814,3.591,3.3372,1.1903,1.5632,,22,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,860
+desd862,71,71,M,2.0706,2.2637,0.37023,0.38864,0.81045,0.75047,17.6402,3.1894,3.0369,54.9233,56.7564,13.6561,13.9499,232.7685,222.6818,1.716,3.3798,3.0505,1.0738,1.4858,21.0918,26.646,1.5006,1.5011,3.5463,3.4564,6.633,7.0526,4.3893,4.6199,0.09914,5.1974,2.6203,2.8718,0.36829,0.37323,3.7742,4.4399,3.4672,3.6281,1.5817,1.3911,9.5111,8.7777,3.1718,3.191,3.5399,3.3978,4.3472,4.671,1.6222,1.366,1.6815,1.881,3.3102,3.1487,8.0084,7.7822,1.7307,2.0201,7.2177,6.6397,11.5999,11.5883,8.2312,7.704,1.9967,2.2887,4.3303,3.86,1.5406,1.5684,16.859,16.4964,5.2269,6.4362,3.5657,3.6965,0.94289,0.9423,2.4858,2.5647,7.0436,6.5059,13.5884,13.649,3.0322,3.6186,4.3736,4.4226,3.5666,3.337,1.5266,1.4893,3.9944,4.3122,10.2587,10.9135,2.8467,2.9739,1.6855,1.2675,1.9607,2.2076,9.7397,10.212,2.0795,2.3702,1.637,1.7846,11.7584,12.5788,1.6913,1.8999,1.1548,1.2082,14.1763,14.5737,5.101,5.415,7.7578,8.1767,4.5235,4.2588,10.1534,11.0686,6.6418,7.1655,7.6791,7.8138,3.4062,3.7784,1.3268,1.4479,,24,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,861
+desd863,82,82,F,1.8968,1.9275,0.27647,0.36694,0.68677,0.6961,14.7621,2.5792,2.9367,41.1694,40.1862,11.702,12.2415,151.1903,158.4892,1.4826,3.1331,2.8579,1.139,0.88738,16.0835,21.1877,1.1776,1.2209,3.0887,3.1621,5.6364,5.863,3.6515,3.8679,0.07442,4.0235,1.9849,2.4515,0.37578,0.35033,3.3471,4.1262,3.3778,3.3318,1.2661,1.0733,8.4879,2.2506,2.9111,2.4976,3.8625,3.5908,3.7323,3.1737,1.4815,1.3406,1.7108,1.6942,3.0455,2.8694,6.8535,6.1208,1.6958,1.5903,5.9253,5.3593,9.9808,10.3489,7.171,6.3769,1.7066,1.9754,3.8262,4.1536,1.4788,1.5493,15.2981,14.3917,4.713,4.1832,3.2234,3.3636,0.94132,1.0822,2.1641,2.538,6.1655,5.7327,12.096,11.6458,2.6433,2.7213,3.5914,3.6566,3.0958,3.2162,1.0991,1.3048,1.3402,3.282,7.7055,7.6672,2.6424,2.7096,2.3245,2.2649,2.1442,2.309,8.9611,9.4049,1.9076,2.2202,1.9529,2.1863,10.105,9.6108,1.6339,1.722,1.0691,1.1654,11.7757,11.66,4.4519,4.7041,6.2754,7.4959,3.6278,3.0422,9.3058,0.58342,6.0969,6.8052,6.2694,6.366,3.0771,3.2268,1.3985,1.4327,,24,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,862
+desd864,69,69,F,1.2011,1.4205,0.30608,0.34025,0.60361,0.54267,13.0928,2.514,2.4613,36.4172,36.6688,9.9298,8.9953,181.8204,179.8191,1.2126,2.4152,1.9484,0.57092,1.0232,21.4528,21.4459,1.251,1.2571,3.286,3.5782,6.5442,6.9044,3.6257,3.6547,0.07313,3.7344,1.7938,1.9212,0.32452,0.32938,3.0547,3.5949,3.1181,2.9999,1.5496,1.3804,8.7165,7.0113,3.1924,3.0106,3.1309,3.0663,4.1653,3.8993,1.3618,1.0462,1.5935,1.4353,2.9789,2.8665,6.2614,4.8119,1.7245,1.8433,5.4694,2.918,9.4183,7.7384,7.2798,6.7321,1.8036,2.1365,3.8611,3.713,1.4358,1.3385,15.7992,17.3748,4.5609,4.7552,3.2653,3.6399,0.8214,0.99619,2.1498,2.2289,6.2184,5.4577,11.541,9.4157,2.3938,2.7173,3.7103,3.6077,2.8626,2.4846,1.2019,1.4754,3.2253,3.4659,8.3383,7.8937,2.4929,2.5184,1.8084,1.7432,1.878,2.2844,8.3505,9.53,1.9076,2.3422,1.6459,2.0326,11.3144,11.3458,1.6038,2.0657,0.91742,0.96288,13.8663,13.1403,4.5521,4.4989,5.992,7.6459,3.2066,3.0052,8.5565,8.9796,5.9102,5.9119,6.3501,5.0815,2.977,3.6681,1.3062,1.5251,,26,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,863
+desd865,,,F,1.5784,1.5346,0.36741,0.40093,0.83099,0.85018,17.753,2.5015,2.5391,48.342,47.9713,13.7119,13.6537,207.1482,204.3795,1.2083,3.307,3.1302,0.80831,1.0156,14.2,18.1597,1.427,1.5129,3.5454,3.5516,6.9977,7.3654,4.2758,4.4716,0.07533,4.5801,2.2438,2.4032,0.38388,0.39993,3.6059,4.2337,3.5875,3.9127,1.909,1.6815,10.2154,8.9469,3.6045,3.3301,3.7573,4.0186,5.3684,5.0645,1.6892,1.6321,1.9727,1.9523,3.6334,3.3553,7.0482,6.8061,2.0876,1.9665,6.2496,6.3901,10.5808,9.8852,8.7636,7.4205,2.3719,2.5448,4.408,4.4675,1.7502,1.678,18.2727,18.6825,4.983,6.1171,4.1763,3.8937,0.98811,1.4219,2.3888,3.2474,7.6251,6.397,14.2384,13.2393,3.0167,3.4076,4.6594,4.2157,3.8942,3.4918,1.7725,1.6183,3.596,4.0902,9.9252,10.1186,2.8747,3.1717,2.1158,2.0821,2.2332,2.4004,10.0432,11.527,2.3965,2.6607,1.9364,1.9086,12.0262,11.7937,1.9862,2.0038,1.2115,1.2128,15.1427,14.2914,5.2241,5.3888,8.8547,9.6355,4.6318,3.6876,10.2263,10.6301,7.5306,7.8476,8.0809,7.5228,3.8903,4.0228,1.3821,1.3711,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,864
+desd866,80,80,M,2.1872,2.1181,0.38417,0.41475,0.86696,0.83459,20.4912,3.4004,3.1726,50.1687,50.7717,15.737,17.4503,203.3824,201.5569,2.3689,3.3327,3.1863,0.78974,0.6879,31.4071,25.9303,1.5391,1.523,3.5051,3.5956,7.1738,7.5892,4.8613,4.8368,0.06534,4.9834,2.3782,2.6146,0.40229,0.40543,4.6416,5.1973,3.817,3.9064,1.6874,1.3301,12.5335,11.0348,2.7035,3.0499,3.9415,4.4165,4.2944,4.211,1.9619,1.7173,1.7788,1.9959,3.5291,3.0266,8.055,7.7758,1.9445,2.0366,6.7979,6.9187,11.0295,11.0843,7.8035,7.1023,1.9676,2.2508,4.9316,5.0112,1.7,1.653,16.859,17.1496,5.3576,7.252,3.6591,3.8036,1.1898,1.1695,2.3862,2.5269,7.7507,6.6826,13.9812,13.3673,3.5384,4.0349,4.5026,3.9757,3.4978,3.138,1.4013,1.4428,4.1098,4.5808,10.9296,11.2111,2.921,3.0782,2.0896,2.0953,2.1988,2.1323,13.4065,12.296,2.0466,2.4391,1.9056,2.1104,11.7584,13.0542,1.7268,1.7595,1.2351,1.2325,13.5098,13.4751,5.1464,5.1503,8.5548,9.7432,3.961,3.5384,10.1525,12.2043,8.4167,7.5533,7.6168,6.8548,3.4093,3.7727,1.2649,1.3603,,28,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,865
+desd867,60,60,M,2.3493,2.4455,0.43308,0.49147,0.93134,0.85018,21.6469,3.6279,3.5314,46.4131,47.2679,18.8763,18.4645,284.4215,276.5258,2.0269,3.538,3.2196,0.90656,1.0427,32.0154,32.1618,1.9706,1.9859,4.7141,4.7899,7.4638,8.0711,5.202,5.5824,0.08054,5.4007,2.2732,2.8658,0.3835,0.38335,4.3893,4.4582,4.8339,4.7265,1.7656,1.5801,9.9073,8.7777,3.4035,3.5363,4.4146,4.4055,4.2417,4.4845,1.7155,1.6145,2.2342,2.0348,3.371,3.1803,7.8367,7.2602,1.9635,1.936,6.9628,6.6613,12.2567,11.4929,8.5372,7.9027,2.3599,2.3374,4.4752,4.739,1.7108,1.844,19.992,20.8052,5.0555,6.9267,3.8657,3.7695,0.88156,0.99787,2.344,2.0501,7.8836,6.6826,14.6469,14.0719,3.483,3.5209,4.4752,4.5411,3.6103,3.0816,1.6749,1.4865,4.2319,4.4781,10.9155,11.6858,3.1435,3.6146,2.4717,2.6703,2.2298,2.6919,9.8726,10.8337,2.6013,2.4828,2.272,2.5655,11.6594,13.3605,1.9494,2.1182,1.1654,1.2197,15.517,14.2032,5.4234,5.2036,8.3038,8.6043,4.5806,3.4341,9.4148,9.7962,7.2375,7.1021,8.3288,7.9545,4.1776,3.9858,1.6556,1.6827,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,866
+desd868,72,72,M,2.0706,2.2637,0.38777,0.40435,0.8276,0.86541,18.3098,3.1676,3.0369,52.0037,51.4787,15.2336,15.1132,201.0988,201.4843,2.3689,3.4166,3.3058,1.2206,1.4488,26.7043,28.7946,1.7131,1.7194,3.867,3.8835,7.55,7.42,4.8413,5.1026,0.09689,5.1249,2.4215,3.0942,0.39676,0.39221,4.7391,4.8237,4.1678,4.5723,2.076,1.7295,9.7225,8.8339,3.8459,3.742,4.1558,5.1241,5.8801,6.106,1.5758,1.602,2.2065,2.2823,4.0231,3.6712,7.4038,7.0828,2.0828,2.2221,7.4822,6.837,11.5377,11.666,8.4697,7.9692,2.5281,2.6402,4.2264,4.371,1.9883,2.1285,17.9113,19.7148,5.154,6.1152,4.1426,4.4401,0.96612,1.2153,2.2511,2.5312,8.2049,7.6371,13.918,13.7814,3.5262,3.9308,4.5601,4.7023,3.4648,3.5831,1.7034,1.8031,4.4736,4.6564,12.3452,11.7641,3.0706,3.2909,2.3321,2.5229,2.2714,2.4738,9.9635,11.4424,2.3298,2.5919,2.1415,2.6306,13.196,13.2148,1.9105,2.3804,1.2561,1.3543,15.111,15.0348,5.6393,5.1257,7.9455,8.7328,4.9498,3.4951,9.7753,9.875,7.8384,7.2975,6.996,7.5251,3.6594,4.372,1.6968,2.0798,,25,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,867
+desd869,69,69,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,868
+desd870,63,63,M,1.9176,2.1091,0.4137,0.47384,0.91497,0.89123,18.8247,2.9277,3.0375,45.176,45.438,15.3206,15.5578,253.6807,253.4884,2.9477,3.3869,3.1767,0.69059,0.9025,36.3593,37.077,1.7198,1.7534,3.8649,3.8847,7.2046,7.252,4.8194,4.9841,0.08981,4.9582,2.323,2.5881,0.42318,0.4264,4.4918,5.0472,3.8483,4.0315,2.0372,1.8239,10.7095,9.4514,3.5698,3.2663,4.015,4.6146,5.35,4.7596,1.7283,1.6232,2.038,2.0677,3.7273,3.7717,7.4872,7.5937,1.9854,2.187,6.3439,6.2247,11.2508,10.8291,9.3943,8.509,2.5671,2.6036,4.3943,4.7448,1.9134,1.9772,18.2068,19.0342,5.1518,6.6525,4.2446,4.3651,1.3779,1.2987,3.2335,2.9585,8.4822,7.2885,13.8898,12.9054,3.2392,3.8769,4.8417,4.9457,4.0885,3.7346,1.5771,1.5065,6.1239,4.9147,11.7102,11.9548,3.145,3.5232,2.5604,2.2563,2.3964,2.2755,11.1617,13.0189,2.703,2.6048,2.2918,2.4632,13.5707,13.6084,2.0276,1.8219,1.2814,1.4349,16.0842,15.5816,6.3984,6.056,9.0707,8.8749,4.5474,3.7044,13.3909,11.403,7.6178,7.0818,8.0704,7.75,3.9717,4.4532,1.5173,1.983,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,869
+desd871,,,F,2.0768,2.5948,0.36363,0.35028,0.84517,0.71981,16.0109,3.0755,3.1086,42.0515,42.0877,13.5409,12.9644,197.4064,189.4892,1.9862,3.3311,2.9947,0.69365,0.63192,19.6009,23.2024,1.4299,1.4602,3.6679,3.4916,6.3384,6.5824,4.2283,4.3714,0.07934,4.8972,2.2339,2.3701,0.33923,0.37418,3.8518,4.591,3.5452,4.0342,1.5504,1.3386,10.2379,9.8088,3.0958,2.7666,3.878,3.6886,4.2182,4.0038,1.6422,1.4878,1.9458,1.8215,3.5291,3.2919,7.2356,6.8239,1.7508,1.6632,6.3686,5.8721,11.6078,9.5404,7.5401,6.6031,2.0793,2.0882,4.4849,4.5669,1.6494,1.575,16.5415,17.0596,5.1762,6.1279,3.4302,3.2221,1.0589,1.0988,2.3305,2.5173,7.6361,6.9862,14.3111,12.9115,2.2015,2.8955,4.354,4.5263,3.1579,3.0444,1.4382,1.3442,4.063,4.4731,10.5467,10.3525,2.8322,3.0236,2.1635,2.2243,1.9107,1.8554,10.4538,11.5164,2.1166,2.2599,2.0752,2.0593,11.7555,11.3869,1.7301,1.7658,1.1007,1.189,12.0196,12.5947,5.4666,5.566,7.8463,8.5608,3.7321,3.2341,9.484,9.0935,7.09,7.1959,6.9358,6.8223,3.3832,3.5823,1.3181,1.3773,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,870
+desd872,65,65,F,1.0614,1.4405,0.36405,0.40995,0.81057,0.82268,18.3313,2.9817,2.9707,44.0934,43.9793,14.8142,15.0095,245.9835,238.2906,1.22,3.5596,3.2985,0.59421,0.47243,11.3418,10.2416,1.5444,1.6363,3.4573,3.6449,6.8266,6.9732,4.5649,4.6879,0.07949,4.3915,2.2948,2.4388,0.36306,0.35821,4.1037,4.5147,4.2348,4.2786,1.6987,1.4512,10.0514,9.2074,3.0493,2.8827,3.5958,3.7952,4.2102,4.0006,1.5804,1.5448,2.1566,2.0336,3.564,3.3493,6.8047,6.5105,2.08,1.9996,5.7922,6.0722,10.6118,10.4842,7.6388,7.1455,2.1234,2.2633,4.3525,4.4611,1.7549,1.8075,17.3403,18.3061,4.796,6.0522,3.7853,3.6766,1.0214,0.96672,2.3888,2.1904,7.3406,6.8634,13.4647,13.7917,2.5854,3.2549,4.1069,4.4299,3.8623,3.2087,1.4896,1.4648,3.5177,3.9719,9.1677,9.5133,2.8675,3.1765,2.4073,2.269,1.9296,1.9848,9.0742,9.7572,2.3338,2.3013,2.1534,2.2512,10.6811,10.9252,1.7676,1.6056,1.1606,1.1536,13.516,12.771,4.854,5.198,8.4112,7.6319,3.7911,3.5643,10.1847,9.225,7.3246,7.2427,7.3667,7.2536,3.3444,3.4992,1.3417,1.4384,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,871
+desd873,81,81,F,1.4798,1.5609,0.38358,0.41475,0.77349,0.77227,16.7031,3.0643,2.8676,45.5968,43.6805,13.9034,14.2481,217.6717,213.0487,1.6396,3.2954,3.0874,0.66256,0.55524,16.018,19.0497,1.457,1.5196,3.7696,3.8361,5.9398,6.4181,4.1648,4.3251,0.07934,4.7098,2.1287,2.5773,0.41347,0.4058,4.1933,4.8432,4.9269,4.7371,1.9518,1.6657,8.8971,9.0173,2.8613,2.868,4.3265,4.1455,4.4505,4.5504,1.6425,1.4891,2.0685,2.1359,4.1379,3.5694,6.6917,6.4318,2.5485,2.4275,5.9378,5.9854,10.4518,9.954,7.6982,7.1527,2.5124,2.666,4.2825,4.7563,2.0599,1.9973,20.0624,20.0958,5.1453,6.3498,4.3562,4.5683,0.94556,0.9325,2.4188,2.346,8.988,7.6754,13.9152,12.9215,2.5729,3.1664,4.1226,4.2771,3.3994,3.6752,1.6807,1.7989,4.2673,4.7197,10.9832,11.0417,2.8919,3.0748,2.6035,2.749,2.4047,2.5125,10.9578,12.4163,2.6482,2.5913,2.3015,2.6993,13.2599,13.6239,1.8179,2.2683,1.5733,1.6854,14.6949,14.7676,5.3775,5.8481,8.22,8.974,3.8384,2.8841,10.5224,9.9203,7.1187,7.0542,7.1507,7.5036,3.7857,4.3223,1.6525,1.8194,,26,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,872
+desd874,66,66,M,1.1435,2.1299,0.3977,0.4778,1.056,1.0069,22.1157,2.7823,2.6904,51.3774,52.0304,16.0141,16.8806,256.5174,250.6816,1.2455,4.0002,3.6457,0.58957,0.43567,11.473,13.7019,1.7834,1.7725,3.8407,3.6648,8.0712,8.0618,5.139,5.4263,0.08805,5.0304,2.3995,2.5833,0.45814,0.40079,4.2134,5.3928,3.9685,4.8254,2.0372,1.6474,10.5744,10.3589,3.6929,3.4526,4.3899,4.5471,5.6221,5.8708,1.9833,1.8749,1.8946,2.0053,4.1304,3.9239,9.1032,8.7704,2.4681,2.3284,8.0131,7.2915,13.5794,13.6062,8.7891,8.1756,2.6568,2.5033,4.9646,4.8757,1.9726,2.0564,19.6963,20.819,5.8797,6.7807,4.31,4.5908,1.1411,1.282,2.9708,2.7667,8.8638,7.8222,16.5453,16.8572,3.9931,4.0078,5.5638,4.6758,3.4054,3.481,1.7694,1.5283,4.3129,4.8597,10.3351,12.2321,3.1361,3.4088,2.2122,2.3784,2.415,2.3546,11.3381,11.9307,2.3298,2.6807,1.9903,2.2659,13.4291,13.5479,1.8808,2.1538,1.3468,1.4984,15.4497,14.708,5.2916,5.3351,8.4487,10.3903,4.8871,3.9117,11.0118,12.7536,8.4401,8.8837,9.1299,8.5049,3.6955,4.0978,1.4169,1.7699,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,873
+desd875,68,68,F,0.63477,1.5445,0.40736,0.44415,0.75901,0.71771,17.5233,2.9065,3.1461,44.8393,44.7677,14.3962,15.1274,209.4883,207.8898,1.0371,2.9507,2.5608,0.39387,0.33279,7.0678,9.9204,1.4574,1.4822,3.4455,3.5655,6.0902,6.2616,4.1289,4.4119,0.06836,4.0109,1.9299,2.399,0.36176,0.37595,3.9314,4.4354,3.5168,3.5419,1.6552,1.488,8.2161,9.3719,2.912,2.8997,3.8895,3.818,4.0174,4.3568,1.5285,1.3036,1.9458,1.9933,3.4031,3.0718,7.1564,7.1098,1.978,2.0461,6.4061,6.2311,11.1006,10.8506,7.2789,7.0679,2.1403,2.3551,5.2099,5.5488,1.6742,1.7134,16.7566,18.5287,4.7811,6.0806,3.6826,3.9559,0.97367,1.0092,2.6087,2.4369,6.8416,6.5407,13.2145,13.4995,2.3724,2.8215,3.9841,4.0772,3.3518,3.2598,1.4922,1.5144,3.77,4.1238,9.588,10.0684,2.5645,2.7096,2.1334,1.9634,2.0672,2.1097,11.2679,12.3052,2.2627,2.1522,1.7444,1.9291,11.5031,12.0331,1.7366,1.6488,1.0058,1.0628,13.2317,14.0778,5.2838,4.6608,6.883,8.9568,3.9162,3.0325,9.4371,9.5487,7.3514,7.1363,7.8998,7.4704,3.6826,3.8071,1.2368,1.3092,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,874
+desd876,68,68,F,2.1805,2.7178,0.31472,0.33023,0.77445,0.81137,14.6547,2.7801,2.4307,42.9428,43.9089,12.9884,13.0713,195.6757,188.5754,1.9235,3.175,3.0452,0.73085,0.63192,13.6796,16.1431,1.4291,1.4771,3.5762,3.5353,6.0502,6.2609,3.9488,4.2762,0.08394,4.2673,1.8461,2.4289,0.34048,0.34711,3.6096,4.1264,3.6498,3.8348,1.5942,1.5289,9.8747,8.3938,3.0958,3.0693,3.3527,3.3355,3.9531,4.1558,1.5769,1.6001,1.8219,1.7303,3.2989,3.3483,6.4975,6.5746,1.8877,1.9966,5.9135,5.7301,9.8718,9.9986,6.5107,6.2854,2.0816,2.3027,4.0959,4.3599,1.5347,1.5583,16.1322,14.1337,4.713,5.555,3.4976,3.6339,0.89696,1.0474,2.364,2.5646,6.9458,6.6387,11.5183,11.8295,2.515,2.7739,3.3919,3.5657,3.1999,3.5001,1.5673,1.3746,3.2455,3.7294,8.8549,9.2696,2.8251,3.2521,2.2541,2.1665,1.8432,1.9191,8.5765,9.6645,2.2909,2.42,1.9201,2.0608,10.1462,11.1387,1.6205,1.6453,1.0866,1.0907,12.9211,12.274,4.4488,4.8888,6.9255,7.0687,3.3701,2.814,8.6881,8.8161,6.3171,6.252,6.6768,6.3182,3.1721,3.6013,1.4013,1.3716,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,875
+desd877,,,M,2.0909,2.2191,0.38502,0.35447,0.81126,0.72388,18.3098,3.0755,2.7933,50.1061,50.4537,14.1435,14.4678,200.6661,184.7551,1.764,3.101,2.6057,1.591,1.0467,22.4678,18.2188,1.4935,1.5513,3.909,3.518,6.1977,6.4279,4.5574,4.6879,0.07497,5.0099,2.407,2.6814,0.35492,0.37066,3.209,3.5812,3.9487,4.4858,1.5475,1.4082,9.2071,6.9954,3.0371,2.9703,4.0917,3.6261,4.518,4.3734,1.6222,1.5179,1.6729,1.6617,3.2431,2.6873,7.5272,7.3659,1.7245,1.7877,6.6976,6.8599,11.3922,10.95,8.1911,8.0794,2.2187,2.2914,4.7066,4.5076,1.4837,1.4987,16.4094,16.2403,4.6992,6.1699,3.3669,3.4941,1.0464,1.2771,2.3815,2.9948,6.5291,6.1179,12.97,13.0084,2.6868,3.2931,4.3736,4.473,3.1755,2.5717,1.6624,1.4297,3.8402,4.0047,10.4938,10.1569,2.8099,2.9862,2.0868,2.1921,2.2662,2.3133,9.3692,10.283,2.3077,2.3788,1.9324,2.0954,11.1179,12.313,1.9433,1.7118,1.0968,1.1767,14.0128,13.9615,5.0658,4.7219,7.36,8.3409,3.6124,3.1314,8.6424,9.6846,6.8314,6.2275,7.0973,6.3763,3.5756,3.4373,1.512,1.5591,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,876
+desd878,71,71,M,2.0772,1.4758,0.37982,0.43293,0.93709,0.94991,20.181,3.2752,2.9293,52.995,52.2641,16.4498,16.2637,247.6455,246.0271,1.7044,3.6778,3.6642,0.70585,0.67293,21.7979,17.1651,1.7454,1.7342,4.0497,4.0091,7.7925,8.0582,5.0063,5.26,0.09689,5.2348,2.5519,2.9434,0.43993,0.44274,5.0084,5.2022,4.4509,4.8387,1.9744,1.6462,11.4297,10.0604,4.1188,3.6443,4.8738,4.7696,4.8737,4.5748,1.6968,1.7971,2.0089,2.1978,4.4508,4.1805,8.4549,7.8643,2.6917,2.6585,7.6351,7.2262,13.1325,11.4929,9.3591,8.0698,2.4377,2.5305,5.1262,5.7283,2.1863,2.0756,20.0268,21.7276,5.9832,6.6154,4.2119,4.4957,1.1411,1.1174,3.1823,2.9585,8.7517,8.3609,16.2367,14.9929,2.9965,3.4704,4.7004,4.8982,3.7074,3.5426,1.6262,1.7338,4.3933,4.8453,11.5462,11.1584,3.139,3.4822,2.771,2.9735,2.7449,2.4931,10.5419,10.4781,2.7286,2.7716,2.3361,2.8207,13.884,13.7414,2.4477,2.462,1.564,1.5834,15.8807,17.1693,5.8817,6.4636,9.1853,9.0905,4.6967,4.0134,12.2937,12.6052,8.1598,7.825,8.4958,8.0872,4.2226,4.3416,1.7308,1.9795,,30,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,877
+desd879,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,878
+desd880,66,66,M,1.251,1.8593,0.37286,0.42741,0.82078,0.90388,17.1853,2.8077,2.96,46.5868,47.4475,13.5201,13.9499,225.4359,218.0444,1.2586,3.1369,3.0149,0.45832,0.51393,9.5783,12.0729,1.5304,1.5138,3.5115,3.6449,6.7928,6.6585,4.3009,4.7452,0.08624,4.2532,2.022,2.6622,0.41216,0.39466,4.4166,4.8014,4.2447,4.3722,1.7177,1.4379,9.3977,9.8993,2.9195,2.8047,3.7906,3.8715,4.2877,3.813,1.5682,1.7455,2.1043,2.0412,3.4943,3.1806,7.6467,8.0186,2.0366,2.1409,6.2792,7.0398,10.8778,10.9211,7.5911,6.6398,2.3599,2.3699,3.9635,4.5407,1.7524,1.8185,17.5795,17.4076,5.3002,6.1699,3.7024,3.7771,0.90858,0.93811,2.8094,2.3054,8.1367,6.5107,13.5532,13.4995,2.1297,3.1687,3.842,4.1242,3.4657,3.4197,1.7098,1.5647,3.6622,3.9552,9.9622,9.7498,2.8314,3.1626,2.1732,2.4427,2.2654,2.1822,9.5323,11.7492,2.384,2.6404,2.0533,2.3763,12.4595,12.1891,2.1247,1.8478,1.1711,1.2389,12.8794,14.6558,6.055,5.6865,7.5626,8.7829,3.6085,3.151,9.6993,10.121,6.7893,6.5463,6.996,7.0982,3.7483,4.2773,1.5695,1.5876,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,879
+desd881,72,72,F,1.6456,2.2936,0.40132,0.46555,0.9344,0.92369,17.5546,2.9449,3.1851,44.3271,45.1092,13.5453,13.8831,186.3442,192.0136,1.6254,3.8423,3.3804,0.66879,0.51725,14.9264,18.9404,1.3688,1.3672,3.8316,3.816,7.1738,7.3633,4.5974,4.7553,0.07026,4.5422,1.8435,2.1089,0.40885,0.4067,4.1313,4.8562,4.3377,4.8321,1.8884,1.6648,9.3369,8.9824,3.5374,3.319,4.0193,3.786,4.8267,4.7116,1.7926,1.6611,2.2107,2.1097,3.7522,3.4696,8.1226,7.9662,2.219,2.1023,6.9008,6.9697,12.1398,12.2691,8.6053,7.4604,2.3951,2.5063,4.7042,5.3641,1.9521,1.9734,17.3549,17.1806,4.9671,5.6858,4.0221,4.0323,1.156,1.2433,2.6034,3.0645,8.5634,7.7965,15.1456,15.5946,3.7035,4.0329,4.5219,4.6343,4.0695,3.7375,1.6667,1.5328,4.496,4.9118,11.4914,10.8734,3.1184,3.3717,2.1884,2.2734,2.1185,2.1323,11.533,12.5624,2.6451,2.7005,2.154,2.3556,12.3971,13.6959,1.9862,1.9479,1.2255,1.1468,16.7818,15.7859,5.6699,5.6432,8.1332,8.526,4.958,3.9864,11.3807,11.3682,7.4,7.7847,7.8548,7.2254,3.4307,4.0353,1.5882,1.6345,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,880
+desd882,70,70,M,1.6679,1.4877,0.39026,0.43782,0.69111,0.70386,19.6163,3.2466,3.1512,49.1356,50.3468,15.6101,16.6198,260.1334,255.7585,1.2276,3.2393,3.135,0.76519,0.64214,12.6832,16.1099,1.8269,1.8629,3.9218,4.0653,7.4658,7.6321,4.8753,5.2435,0.10334,5.2514,2.4024,2.8167,0.42742,0.4264,4.7016,4.9002,4.2007,4.5723,1.8632,1.5635,9.5249,10.7998,3.1995,3.5363,3.9933,4.1715,4.6508,4.5407,1.2497,1.4181,1.9989,2.1736,3.7478,3.5344,6.7401,6.8529,2.2117,2.4717,6.2894,6.1346,11.3758,10.8031,7.9472,7.7973,2.5819,2.2855,5.1262,5.4779,1.8932,1.8628,17.1216,19.7148,4.8301,6.9096,3.9216,4.2172,1.5388,1.3141,2.9385,2.9983,7.8924,7.1463,15.7108,13.1422,3.1577,3.7877,4.1829,4.1715,3.1299,3.1072,1.7572,1.3119,3.9231,4.479,10.9355,11.3682,2.7692,2.9561,2.4656,2.4726,2.3964,2.5135,12.1475,12.4476,2.6482,2.3817,2.1712,2.3124,12.73,12.5431,1.8814,2.599,1.1512,1.2673,14.1941,13.1412,5.308,5.7857,8.3019,9.2497,4.3969,3.2927,10.3715,11.7028,7.7577,9.3392,7.2679,7.01,3.7217,3.3907,1.5318,1.7801,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,881
+desd883,70,70,M,2.5509,3.1783,0.37308,0.39586,0.84541,0.81119,19.4224,2.8121,2.1129,46.8023,46.8547,15.0782,15.2435,224.5213,219.4771,2.2756,3.6912,3.5098,1.2856,1.1149,22.5744,29.5189,1.4988,1.4886,2.8927,3.0362,6.0941,6.5669,4.7781,4.9542,0.08025,4.5608,2.1004,2.5511,0.3742,0.38035,4.6559,4.6875,3.8871,4.0682,1.6038,1.6095,10.6055,9.7323,2.8461,2.7771,4.0736,4.2559,4.7321,3.9091,1.5559,1.502,1.9638,1.9358,3.7183,3.7713,7.6522,7.1392,1.9459,1.9547,6.5007,6.005,11.9638,11.2543,8.3185,7.868,2.1412,2.3243,4.5636,4.4916,1.6433,1.695,18.2191,18.5906,5.1518,6.275,3.6635,3.7203,1.1664,1.016,2.3258,2.4038,7.4436,7.3763,14.637,13.9554,3.0109,3.1313,4.5601,4.4762,3.4353,3.3294,1.6097,1.4794,4.1532,4.675,10.3175,10.822,3.0398,3.1765,2.5824,2.3193,2.4464,2.4722,9.5763,11.1207,2.3824,2.4914,2.3544,2.288,11.1179,11.5614,1.9259,1.9948,1.1141,1.225,15.211,14.3161,4.9108,4.9431,7.1919,8.8281,4.1277,3.2117,10.0276,9.5776,7.6795,7.6438,8.3084,8.3414,3.6393,3.7475,1.6167,1.5867,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,882
+desd884,87,87,F,2.5154,2.5393,0.21445,0.28135,0.18236,0.55213,14.5561,1.7629,2.0902,32.5484,31.3093,10.8299,9.2054,153.3452,160.0347,2.9439,2.239,2.2563,1.0796,1.3042,27.4336,28.4876,1.2695,1.2944,3.0357,2.973,5.5596,5.6835,3.6233,3.8961,0.06724,4.1212,1.8031,1.7352,0.13799,0.2964,2.9398,3.2967,3.3663,3.583,1.3535,1.1725,8.1557,7.8407,2.9268,2.6632,3.175,3.1499,3.4139,3.7213,0.84711,1.0768,1.5568,1.4596,2.7222,2.6506,4.8245,4.8119,1.727,1.8205,4.9759,2.918,7.4539,6.8215,6.5107,5.6824,1.8215,1.7392,3.9639,3.5202,1.3545,1.3417,14.6268,14.4036,3.9047,4.8218,3.2287,3.2347,0.86595,0.94701,1.9498,2.0881,5.4504,4.8291,8.7517,9.1824,2.2858,2.9097,2.8718,2.673,2.482,2.5914,1.2201,1.1608,3.446,3.6676,8.6133,9.1429,2.1394,2.0225,1.8917,2.154,1.6795,1.946,8.5484,9.8218,1.866,2.0093,1.7391,2.1863,10.0649,10.4778,1.577,1.6307,1.0735,1.1272,11.4221,11.143,4.5521,4.5588,7.0421,7.4277,3.785,2.3676,9.1786,7.8501,5.9671,5.4729,5.0697,4.5637,2.9765,2.7339,1.2863,1.4902,,15,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,883
+desd885,67,67,M,1.0532,1.6573,0.46576,0.48466,1.0622,1.0282,22.1157,4.0632,3.6921,56.0955,55.6083,18.656,19.2974,334.9526,310.1523,1.4649,4.58,4.4519,0.39685,0.34487,8.7032,8.6635,2.0607,1.9859,4.5594,4.534,8.9716,9.0064,5.4829,5.7108,0.08055,5.0304,2.4745,3.567,0.4509,0.46534,4.4445,5.2964,4.6159,4.9035,2.048,1.7468,12.0024,9.9564,5.0955,4.4077,4.7146,4.7696,6.4285,5.3388,2.1282,1.9877,2.2817,2.0682,4.5707,4.2203,8.7955,8.6057,3.6083,3.5482,7.6633,7.365,13.3031,13.2035,9.6405,9.5357,2.6568,2.6402,4.9104,5.1103,2.1403,1.9903,21.0876,20.5668,5.9957,7.1985,4.4177,4.6553,1.1411,1.2664,2.8182,2.7667,8.9508,8.6131,16.6346,15.8939,3.881,4.0524,4.8151,4.8903,4.1295,3.6497,1.7793,1.7338,4.5817,5.0762,13.1268,14.0712,3.6548,3.5234,2.6001,2.575,2.5521,3.0561,11.659,13.0106,3.0954,3.0354,2.5621,2.8625,13.3159,15.0108,2.0353,2.9278,1.4563,1.4624,15.7713,17.4915,5.8817,5.6941,8.6646,10.9412,5.1129,4.8233,12.5316,11.8495,9.075,8.9813,9.2186,8.911,3.7601,3.9737,1.6655,2.1845,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,884
+desd886,66,66,M,1.4915,2.0764,0.42297,0.46538,0.90623,0.93788,19.6638,3.3844,3.3032,48.2352,47.8952,15.4842,15.6173,233.7051,232.5789,1.5208,3.6945,3.4613,0.9219,0.49127,9.9975,10.2369,1.5714,1.5518,3.8423,3.827,7.7315,8.0637,4.6489,4.9773,0.08168,4.9937,2.2895,2.9146,0.40645,0.40558,4.3311,4.7275,4.2808,4.2118,1.9291,1.8123,10.9565,9.3998,3.6757,3.3525,4.3249,4.1255,4.9726,5.1473,1.7,1.875,2.0311,2.0205,3.7271,3.5514,7.5378,7.6979,2.1663,2.2053,6.825,6.6334,12.2189,11.8957,8.0599,7.7994,2.4443,2.7728,4.1448,4.5369,1.8996,1.825,19.933,19.5969,5.92,6.4618,4.2496,4.7389,1.1188,1.0477,2.647,2.756,7.8987,7.3397,14.6283,14.356,3.3883,3.7877,4.4323,4.6383,3.908,3.6147,1.7725,1.7031,4.044,4.5085,10.7119,11.3595,3.0328,3.3871,2.4554,2.2345,2.409,2.6758,9.7332,12.15,2.5524,2.9716,2.2822,2.4308,12.9718,13.4365,2.1401,2.2746,1.2297,1.2694,15.8016,16.071,5.3815,5.6419,8.3976,9.0967,4.2807,3.4659,12.0364,12.3787,8.4022,7.5473,8.5756,8.0934,4.2047,4.0109,1.5527,1.6944,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,885
+desd887,59,59,F,1.6007,1.9337,0.37607,0.4225,0.8916,0.82955,15.3848,2.9039,2.7928,38.3685,36.1023,10.7408,11.7116,214.4995,213.9673,1.6202,3.5215,3.1606,0.66404,0.67355,16.3604,16.0797,1.6061,1.5537,3.5593,3.5929,6.1079,6.6574,4.2378,4.4331,0.0694,4.0379,2.1196,2.1231,0.38647,0.38685,4.4387,4.8887,3.9127,4.0412,1.5457,1.4604,10.1467,8.8426,3.5335,3.107,3.9695,4.1159,4.371,4.1656,1.6926,1.6122,1.9335,1.9798,3.5291,3.2042,7.3344,7.0611,2.0366,1.948,6.9569,6.9697,10.5811,10.0437,8.1686,7.5859,1.9201,2.162,4.4148,4.851,1.8225,1.7827,17.1404,18.6146,4.7657,6.1406,3.7157,3.5533,0.95943,1.0459,2.4555,2.3342,7.9264,6.5107,14.8903,13.5201,3.5384,4.0349,4.639,4.4217,3.43,3.6112,1.4236,1.5727,4.1098,4.2848,10.3697,10.027,2.8168,2.9691,2.198,2.1786,2.1039,2.3988,9.4488,11.4371,2.0584,2.0134,2.1557,2.3556,11.5031,12.0145,1.8444,1.9298,1.2562,1.2992,13.2127,12.6499,5.3515,5.2036,7.8793,8.7663,4.5894,3.8479,10.4796,9.5167,7.3433,7.2427,7.6691,7.062,3.1629,3.7906,1.3547,1.5839,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,886
+desd888,60,60,F,0.73794,1.6016,0.40736,0.44492,0.94447,0.94991,18.0477,3.5023,3.292,48.463,49.2031,14.6903,15.24,257.0058,252.8184,1.0269,3.3784,3.2768,0.343,0.35349,7.8019,9.3953,1.8399,1.8908,3.8073,3.8729,6.39,6.9475,4.8238,5.029,0.07632,4.4512,2.2438,2.4322,0.38702,0.3918,4.3045,5.3101,4.4397,4.2475,1.9153,1.6783,10.9138,9.6717,2.4294,2.614,4.1462,4.1255,3.6178,3.9624,1.8605,1.8557,2.0912,2.0677,4.0056,3.6493,7.5062,7.5396,2.4263,2.3994,6.9142,6.4482,11.5048,11.8586,7.5873,7.109,2.2997,2.611,4.8757,5.164,1.9441,2.0881,19.4145,20.5315,5.7983,5.3124,4.35,4.5683,1.0923,1.2561,2.8408,3.182,8.3169,7.2885,14.7468,14.8265,3.2252,3.7458,4.3511,4.2138,3.4069,3.34,1.8635,1.6058,4.044,4.5911,10.7143,11.103,3.026,3.2149,2.3262,2.2624,2.4349,2.6774,10.5252,12.5361,2.4149,2.6879,2.1469,2.3318,14.0005,13.0547,2.0353,2.1005,1.2573,1.3638,14.5903,14.8471,5.7812,5.4671,8.188,10.0223,3.9499,3.5935,11.0128,11.1672,7.1836,7.8687,8.3394,8.0872,4.1919,4.0681,1.6639,1.659,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,887
+desd889,58,58,M,2.3607,1.9842,0.49233,0.53321,1.0192,1.0531,20.2776,3.3473,3.4016,52.7122,51.7924,17.4447,17.357,258.846,252.6338,2.1323,4.0554,3.7722,0.68499,0.9025,24.7413,33.0922,1.8024,1.7408,3.5557,3.8527,7.9044,8.0582,5.3512,5.594,0.08927,5.3954,2.3239,2.8917,0.40882,0.41598,4.6817,4.911,4.4356,4.5521,1.7857,1.5044,10.1484,9.8771,3.7575,3.4106,4.1462,4.7189,5.917,5.1157,2.0086,1.9169,1.8845,1.946,3.5908,3.1803,7.5841,7.4051,1.8657,1.936,6.825,7.4654,11.9546,11.192,9.3943,8.509,2.3287,2.3452,5.0145,5.2531,1.8095,1.8406,18.0466,17.8445,4.8565,5.6858,3.4898,3.5057,1.2881,1.1793,2.831,2.9983,8.0218,6.5107,14.7521,13.8944,3.6274,3.8397,4.5189,4.5039,3.3178,3.0519,1.6705,1.5123,4.5414,4.8769,12.6383,13.0153,3.1361,3.4016,2.8244,2.5598,2.4104,2.7765,11.3381,13.1292,2.2138,2.4641,2.3959,2.2754,13.0102,13.1306,1.9454,2.5205,1.2901,1.3205,15.3155,14.4207,6.0924,6.0104,8.8275,9.1517,4.6967,3.6511,10.3849,12.624,9.075,7.8241,8.5504,7.9834,3.7217,3.8601,1.737,2.0155,,27,50-59y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,888
+desd890,56,56,M,1.6205,2.0832,0.49537,0.54456,1.2526,1.0289,20.0813,3.856,3.6104,52.7122,51.8798,17.3021,17.5743,267.6691,262.7257,1.7918,3.7434,3.4854,0.52761,0.54061,19.8907,27.1511,1.7185,1.6728,4.2333,4.534,7.6391,7.8519,5.0187,5.3992,0.08788,5.1347,2.4335,2.8551,0.56403,0.48888,5.3921,6.5134,4.6571,4.9237,2.0206,1.8539,11.7868,10.561,3.8322,3.8687,4.9595,4.6986,4.8737,4.4561,2.4117,2.055,2.4437,2.3582,4.3098,4.2753,8.2928,8.4139,2.6615,2.6585,7.3665,6.8257,13.5076,13.5711,9.1203,8.122,2.6408,2.8515,7.0872,6.2151,2.1883,2.2429,21.7039,21.2659,5.5976,7.3017,4.4547,4.5409,1.1047,1.3434,2.8166,2.8053,10.1452,7.9306,16.1292,18.2389,2.7271,3.6621,4.8557,4.8013,4.0271,3.5479,2.014,1.8448,4.6583,5.4421,12.0215,12.1484,3.6548,3.8127,2.6035,2.5927,2.9821,3.1049,10.778,12.6904,2.7286,2.754,2.5449,2.7172,11.0075,12.0834,2.3606,2.4655,1.3198,1.2201,16.5771,15.2985,6.2281,6.0604,9.415,10.9412,5.0079,4.0462,11.2573,10.4451,9.6366,8.8713,8.9394,8.6315,4.1643,4.5874,1.8468,1.7715,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,889
+desd891,76,76,M,2.7779,2.2981,0.3829,0.40435,0.83472,0.82841,15.6103,2.3084,2.1381,39.8187,41.3138,12.526,13.4096,214.4995,209.6925,1.8625,3.3738,3.0683,2.333,2.2641,27.8541,32.0552,1.402,1.3743,3.4449,3.6449,6.06,6.431,4.1089,4.3835,0.05934,4.7314,2.1931,2.2823,0.37608,0.36925,3.6959,3.972,4.1337,4.3225,1.603,1.3463,9.2071,8.9214,3.897,3.7251,3.4837,3.7729,4.9248,5.3417,1.5012,1.4739,1.8904,1.8075,3.1786,3.3483,6.309,5.8322,1.9206,1.8477,6.2496,6.1533,10.4349,9.1892,8.2468,7.895,2.0647,2.1743,4.2837,4.4549,1.6863,1.5214,16.2808,16.9539,5.5586,6.0172,3.6809,3.4488,1.1486,1.0646,2.6924,2.5008,6.9332,6.5634,12.5042,11.2573,3.0051,3.3539,3.9739,3.9903,3.0486,2.7283,1.5467,1.4269,3.8139,4.1396,10.5986,10.7938,2.9406,3.2449,2.3053,2.5227,1.7536,1.8166,9.5891,10.3895,2.0801,2.2588,2.084,2.5336,12.0222,11.7325,1.7066,1.6524,1.1105,1.2235,13.7655,13.1624,4.9585,4.7741,7.875,7.9461,4.6134,3.4559,10.0829,10.8338,7.2629,6.8695,7.636,6.2556,3.0725,3.434,1.2281,1.493,,8,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,890
+desd892,,,M,1.2242,1.3353,0.34404,0.38516,0.91074,0.83393,15.7424,2.5367,2.5622,39.3674,39.9015,13.3726,14.4498,203.3339,200.6377,0.94521,3.5536,3.2942,0.35594,0.32748,8.1124,9.3953,1.4203,1.4159,3.2747,3.402,6.1701,6.5324,4.3788,4.6214,0.08831,4.2224,1.8288,2.2459,0.34201,0.3502,3.5552,4.1131,3.8268,4.0966,1.8686,1.5801,9.6424,8.7428,2.8999,2.8431,3.2401,3.5014,4.3766,3.9562,1.7129,1.5778,1.8392,1.8104,3.6496,3.1623,6.8619,6.4367,1.9208,1.8994,5.8726,6.2899,10.4929,10.182,7.972,6.8315,2.4026,2.5556,4.1951,4.2647,1.5712,1.6823,17.5811,19.0743,4.2627,5.5222,3.8847,3.8233,0.95122,1.0004,2.2521,2.3165,6.8672,5.9229,13.5573,13.0458,2.7174,3.0273,3.9002,3.8377,3.1817,3.3625,1.5399,1.5459,3.5493,3.8906,9.0555,9.1319,2.8535,3.0225,2.0266,1.9375,1.6664,2.0229,9.151,10.4723,2.3189,2.3484,1.7805,1.8761,10.5838,11.8666,1.6013,1.5947,1.0798,1.0794,15.3682,14.3161,4.607,4.9805,7.1374,7.5543,3.8047,3.3642,10.3689,11.2121,6.5286,6.4315,7.5485,7.7833,3.1547,4.3223,1.1396,1.2918,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,891
+desd893,,,F,1.6135,1.5346,0.33048,0.3566,0.73506,0.78925,14.4094,2.5686,2.7342,31.4445,27.5385,11.3372,10.4877,191.845,178.1077,1.4354,2.6927,2.8613,0.58583,1.0232,17.332,23.9591,1.2041,1.2041,3.1034,3.0618,6.1316,6.3217,3.6565,3.8378,0.08783,4.0379,1.8832,1.872,0.34237,0.34291,4.0667,4.4639,3.6926,3.8233,1.5088,1.3047,9.5082,7.974,3.0369,2.9704,3.5399,3.7889,3.8261,4.3767,1.4482,1.582,1.7155,1.7469,3.4805,3.1735,6.1247,6.2422,1.6994,1.6888,5.3695,5.038,10.2904,10.2545,6.7667,5.6735,1.9375,2.0892,4.3398,4.41,1.616,1.778,15.5254,14.971,4.4809,4.9112,3.3353,3.3153,0.90791,1.2608,2.3197,2.155,6.988,6.2133,11.9567,12.0241,2.4359,2.7223,3.6552,3.5091,2.9381,2.9079,1.3089,1.2633,3.5786,3.721,9.9622,9.3258,2.5695,2.9742,2.1566,2.1371,1.8438,2.1911,9.2137,11.0462,2.0736,2.1226,1.805,2.0231,10.5813,11.3597,1.7988,1.5903,1.2824,1.2473,11.9065,11.3042,4.6001,4.6743,6.5966,8.9246,4.1722,3.0282,8.8861,9.5963,6.8511,6.1394,7.1958,6.9902,3.0398,3.0854,1.2267,1.2057,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,892
+desd894,86,86,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,893
+desd895,,,F,1.0344,1.5845,0.00066,0.02263,0.80246,0.69515,14.3243,0,0,31.918,30.9771,11.27,12.2296,94.0231,128.6959,0.91734,2.7104,2.4995,0.44707,0.36505,4.2276,2.7368,0.17428,0.95612,0.23437,1.2789,4.141,5.4137,4.0239,4.1604,0.06336,3.1358,1.8977,2.1231,0.27894,0.28477,1.9435,0.02955,2.0098,1.3518,0.45181,0.41169,7.3881,6.4636,2.9727,2.9022,0.01217,0.43185,3.9193,3.6811,1.4588,1.3351,0.01207,0.00001,0,0,6.3795,5.9755,0.88096,0.90295,5.4081,5.3117,9.2611,9.1482,7.1065,6.3769,0.07,0.02822,0,0,0.66198,0.25043,0,0,4.5401,4.2477,1.6316,1.5469,0.75182,0.99356,2.1498,1.9918,3.9657,0.00046,11.987,10.7707,2.4036,2.4495,3.7986,3.5196,0.00048,1.4087,0.48335,0.02459,3.2118,1.534,8.4179,8.0475,2.4627,2.6824,1.816,1.7402,1.2776,1.7508,0.00068,0.00568,0.63246,1.181,1.6459,1.6021,0,0,1.4682,1.5134,0.55918,0.91649,0.00029,0.00013,0,0,1.1506,0.29404,3.9528,2.8771,7.2866,8.0135,6.2157,6.3576,6.5621,5.9117,1.1485,0,0.78203,0.31108,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,894
+desd896,69,69,F,1.1823,1.9234,0.38433,0.42053,0.83627,0.90499,18.9336,3.1106,2.7471,47.362,47.0307,15.2445,15.6313,233.9581,234.3481,1.5549,3.3722,3.3145,0.54312,0.57533,11.9869,12.2702,1.7282,1.7506,3.8725,3.8361,7.2046,7.2372,4.9062,5.0856,0.07369,4.7502,2.055,2.7104,0.38394,0.37884,3.9506,4.7506,3.6586,3.8165,1.6552,1.6095,8.9804,8.4519,2.9159,2.6903,3.182,3.9702,4.4789,4.0207,1.6102,1.8278,1.6044,1.5889,3.3057,3.078,7.3682,7.0969,1.8764,1.8477,6.408,5.5888,12.728,11.5383,7.7665,7.0528,2.0495,2.1914,4.6626,4.8038,1.5897,1.5163,16.3713,16.9412,3.4789,5.0349,3.4976,3.5057,0.95246,1.0889,2.3328,2.1921,8.2987,6.3241,15.1685,13.567,2.7593,3.5094,4.1868,4.0075,2.5408,2.3332,1.349,1.2876,3.9393,4.0256,10.3809,10.2134,2.7121,2.8523,1.941,2.021,1.7326,2.2491,9.8485,12.15,2.4641,2.1443,1.8192,2.1099,12.0262,12.0214,1.6089,1.8484,0.97945,1.0339,13.4644,14.4139,5.4232,5.5574,7.7627,8.3562,3.9383,2.9199,9.3569,9.8267,7.067,7.5171,8.2629,7.9047,2.9562,3.2073,1.2951,1.2297,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,895
+desd897,67,67,M,2.1132,2.619,0.31295,0.31106,0.67514,0.68034,15.21,2.3546,2.1381,39.5813,41.3138,12.4457,12.9972,216.8783,211.5953,1.8735,2.9616,2.6841,1.285,1.2494,20.0417,23.8012,1.5866,1.5891,2.8896,2.9205,5.9197,6.6249,4.2161,4.3906,0.05839,3.607,2.1305,2.2823,0.30397,0.31632,3.7595,4.2821,3.5228,3.7082,1.5088,1.37,10.2363,8.8204,3.0589,2.7925,3.5283,3.2958,3.897,3.8057,1.2651,1.3351,1.7649,1.7326,3.3608,3.0266,6.1182,5.698,1.756,1.8647,5.6166,5.5081,9.5523,8.5717,6.5178,6.181,1.9707,2.2289,4.0647,4.1749,1.615,1.6313,16.9418,17.4131,6.5173,5.4848,3.3425,3.8057,0.78443,1.0109,2.2044,2.2115,7.2283,6.4791,13.1651,10.8007,2.6285,2.9729,3.3378,3.7827,2.857,3.016,1.2483,1.3582,3.5569,3.9026,9.3981,9.4283,2.4601,2.6325,2.0433,1.996,2.2401,2.1299,8.2134,9.5882,1.8405,2.2325,1.9834,1.9437,10.6894,10.6331,1.7409,1.684,0.99239,0.9414,13.2124,12.8537,4.6608,4.3894,7.384,7.6242,3.69,2.7218,10.2397,10.6964,6.6412,6.8627,6.7954,6.2351,2.8594,3.4508,1.4436,1.354,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,896
+desd898,65,65,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,897
+desd899,,,M,1.5598,1.7228,0.39026,0.40187,0.74951,0.76914,18.7409,3.4389,3.5369,48.6004,48.3369,14.9631,16.1352,227.1472,224.409,1.2497,2.7835,2.7936,0.80831,0.62222,11.9217,13.301,1.6559,1.668,3.8725,3.8729,7.2765,7.2998,4.8435,5.1317,0.0767,4.8763,2.1403,2.7276,0.37417,0.38153,4.3893,4.993,4.0464,4.2539,1.6909,1.4074,8.2161,7.0779,3.8622,3.6443,4.0855,4.1787,5.2367,5.4507,1.5815,1.4735,1.9053,1.946,3.6097,3.5412,6.8726,6.303,2.2971,2.4041,6.6615,7.0976,11.1777,9.8933,8.5381,7.8541,2.2263,2.1402,4.3943,4.8397,1.8932,1.7924,17.8634,16.4964,5.1801,6.07,4.1427,4.4698,0.99441,0.87229,2.4975,2.3482,8.0611,7.5175,14.0337,12.7654,2.8502,3.1821,4.6581,4.701,3.0486,2.9677,1.4721,1.4322,3.6144,3.9812,10.3011,10.5002,2.6608,2.9875,2.482,2.2366,2.2,2.2578,9.9975,10.1111,2.2717,2.3966,1.9848,2.2385,12.0309,11.0059,1.9912,1.8746,1.1305,1.195,13.6414,15.0795,4.8756,5.388,6.7642,7.0505,3.9936,3.6195,9.6159,8.8561,7.067,6.7763,7.6076,7.2184,3.4653,3.42,1.4227,1.7457,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,898
+desd900,53,53,F,0.78548,1.602,0.4108,0.44194,0.93386,0.862,17.8318,2.9757,2.8993,48.463,47.9713,14.4232,15.0453,255.5603,245.8349,0.89851,3.6065,3.2316,0.35781,0.34422,5.7605,5.4567,1.7259,1.7644,3.8314,3.972,6.6523,7.0526,4.5171,4.7162,0.0698,4.7095,2.2414,2.5672,0.36176,0.37195,3.9222,4.389,4.4772,4.2701,1.6685,1.4051,11.4685,9.9564,3.1256,2.7219,3.907,3.5921,4.6793,4.0075,1.7675,1.6599,2.0246,1.8331,3.4223,3.2678,7.562,7.4051,1.9369,2.0127,6.4317,6.9345,11.6498,10.95,8.0483,7.0559,2.1988,2.2914,4.6893,4.6375,1.658,1.702,17.3869,16.4964,5.861,6.2414,3.7817,3.7981,1.2879,1.0249,2.9285,2.7085,7.2823,6.6438,14.1938,13.2978,2.5652,3.198,4.0606,4.2841,3.0849,2.9118,1.6075,1.5132,3.5251,3.9075,9.4506,9.2995,2.984,3.2543,2.3548,2.4087,2.0334,2.008,9.7326,10.8637,2.3028,2.4377,2.0825,2.3094,10.3122,10.7422,1.6696,1.7462,1.0876,1.1527,13.233,13.7731,5.184,5.0385,8.554,8.876,4.7405,3.1916,9.329,11.3991,8.1165,8.4616,8.145,7.7768,3.8232,3.4379,1.2649,1.493,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,899
+desd901,,,F,1.3846,1.6251,0.35806,0.39511,0.76962,0.74775,17.472,2.5015,2.459,43.8168,43.3698,13.5685,13.7074,209.1347,205.0193,1.1862,3.2704,2.8482,0.37962,0.33279,7.9245,8.9561,1.4535,1.4262,3.5951,3.5981,6.1603,6.4486,4.2681,4.4056,0.08755,4.5531,2.0895,2.4138,0.38703,0.38422,4.4022,4.5768,3.7764,4.1438,1.778,1.453,10.0195,9.1459,2.8039,3.0178,3.7412,4.2067,4.3337,4.1353,1.4466,1.3838,1.983,1.9305,3.6496,3.4759,6.6504,6.8066,1.8166,1.9458,6.5625,6.303,10.8761,10.131,6.9399,6.9034,2.2044,2.2312,4.4369,4.4217,1.5622,1.5482,18.1699,18.5906,5.2675,6.2736,3.572,3.9433,1.1529,0.97321,2.946,2.3545,6.4777,6.358,13.5199,13.5201,3.2656,3.431,3.4721,3.9724,3.5678,3.3294,1.3825,1.4648,4.118,4.2848,10.3551,10.2617,2.754,2.9276,2.3773,2.2883,2.1997,2.4363,9.2381,11.0625,2.4218,2.5251,2.126,2.2206,11.478,11.9228,1.7494,2.1259,1.1512,1.2287,15.1168,15.9463,5.0858,4.9117,8.3342,9.747,3.9438,3.5995,10.2738,9.1754,7.0181,7.4916,7.2461,6.3369,3.365,3.4379,1.5081,1.4559,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,900
+desd902,82,82,F,1.9884,2.1846,0.29262,0.29104,0.68661,0.65911,16.4883,2.6305,2.4451,45.5295,44.7344,13.5214,13.8792,193.768,187.6717,1.8746,2.5942,2.6209,2.1389,1.6943,27.9583,30.4423,1.2369,1.5596,3.056,3.199,6.3053,6.5563,4.1629,4.3572,0.09045,5.2141,2.437,2.5975,0.32483,0.32086,3.2422,3.8966,3.7369,3.6699,1.4189,1.386,8.6533,8.244,3.3932,3.248,3.0914,3.7078,4.6393,4.3129,1.2651,1.26,1.7385,1.7433,3.2907,2.9913,5.7704,6.1212,1.6897,1.707,6.3686,5.8975,8.6221,9.0053,7.7439,7.6062,1.7777,2.1886,3.9937,3.9827,1.4334,1.4901,16.2826,17.0576,5.0888,6.0483,3.3879,3.3068,0.99977,0.95079,2.5231,2.1671,6.8391,5.8557,9.7986,10.794,2.8549,3.3182,3.7771,3.9945,2.8904,2.9128,1.2868,1.1636,3.3051,3.7111,9.5582,9.4709,2.5116,2.8842,2.0792,2.1951,2.0324,2.0631,9.4895,10.5983,1.8465,2.302,1.928,2.1995,11.6466,11.1364,1.662,1.7886,0.96188,1.0552,12.6543,12.2939,6.0736,6.1341,7.3483,6.9192,4.0534,3.2846,9.4346,9.8267,5.4202,5.328,6.5118,6.0238,3.0039,3.187,1.3782,1.4652,,8,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,901
+desd903,81,81,F,2.3475,2.0334,0.35661,0.41846,0.81285,0.78801,17.8283,2.4689,2.6642,49.1293,50.3468,14.3963,15.3281,190.2468,185.9051,2.0344,3.2757,3.0335,0.9369,0.80271,24.7413,31.4738,1.2369,1.2852,3.5759,3.7691,6.3221,6.3666,4.3799,4.5321,0.08875,5.6373,2.2973,2.8859,0.38626,0.37054,4.4161,4.9207,4.1455,4.1686,1.717,1.3355,8.6949,7.8979,2.76,2.3237,4.2449,4.1326,4.7794,3.9813,1.4602,1.4603,2.0658,2.0148,3.7123,3.5809,7.2788,7.2682,1.8708,1.9008,5.1454,5.8724,11.3475,11.0739,8.9171,7.6496,2.336,2.2603,4.5884,4.5009,1.7108,1.7522,17.3549,18.1861,4.5317,5.4103,3.572,3.4739,0.91698,0.93811,2.3383,2.448,7.6286,7.2659,13.6863,13.4861,2.3741,3.1216,4.6594,4.7166,4.1552,3.5449,1.6491,1.4083,4.0363,4.4163,11.3982,10.8777,3.1435,3.3523,2.4523,2.5088,2.4047,2.6226,9.3074,9.8837,2.2138,2.3759,2.123,2.4591,11.478,10.8834,1.9245,2.3556,1.2877,1.2506,14.511,13.9016,4.7946,4.9835,7.0275,8.4124,4.0265,3.4548,8.8258,9.4134,6.545,7.3668,7.1565,6.9968,3.5559,3.8118,1.4878,1.7766,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,902
+desd904,71,71,F,1.0581,1.8003,0.3531,0.36467,0.74204,0.77268,16.0576,2.8389,2.4052,44.3657,44.4463,12.6024,13.3701,207.8475,202.681,0.96045,3.1424,2.7903,0.47469,0.41701,12.2358,17.2025,1.3907,1.4396,3.1613,3.2616,6.3437,6.7574,4.1878,4.3579,0.06279,4.7614,2.2446,2.6051,0.3558,0.35723,3.9597,4.44,3.8641,3.8667,1.7559,1.5746,8.9771,9.3719,3.1163,2.7219,4.0617,3.9018,4.6443,4.362,1.4787,1.4048,1.9869,1.8254,3.5985,3.4439,7.167,7.3983,1.9583,1.969,6.6846,6.2801,11.1037,11.7204,7.901,7.0559,2.2388,2.4933,4.5815,4.6586,1.6585,1.7445,17.0713,19.0194,4.7811,5.8726,3.6583,3.7695,0.95377,1.0405,2.486,2.4684,7.3268,6.8634,12.8451,13.6697,2.8595,3.2256,4.5195,4.1949,3.4796,3.767,1.4678,1.5459,3.988,4.516,10.1977,10.4413,2.6424,2.8801,2.2006,2.2966,2.4668,2.6416,9.7326,11.5268,2.3375,2.5716,2.0332,2.2828,12.1052,12.0034,1.9634,2.2746,1.1223,1.2438,12.9657,14.8169,5.1467,5.388,7.9005,8.8669,4.0545,3.4603,10.5438,10.8141,7.4092,6.5395,7.4701,6.7795,3.2376,3.9146,1.5177,1.7349,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,903
+desd905,71,71,F,1.0318,1.8813,0.32332,0.37096,0.74204,0.77891,13.6372,2.5686,2.7309,34.594,30.9771,11.4024,10.4069,205.4985,203.5602,1.0689,2.8773,2.6776,0.49291,0.41701,9.4417,12.7084,1.2041,1.2199,3.286,3.5577,6.1141,6.3659,3.6561,3.79,0.0694,2.6869,1.9864,2.1231,0.34178,0.32526,3.525,4.3267,3.5503,3.7041,1.6054,1.5558,8.1043,7.8663,2.7482,2.6576,3.7618,3.7777,4.0345,3.7309,1.4607,1.431,1.7009,1.7573,3.1919,3.3009,5.9464,6.0146,1.8708,1.8979,5.9517,4.56,8.1681,9.5883,6.3471,6.1563,2.0023,2.2386,4.0691,4.2802,1.6189,1.8517,17.2272,17.9538,4.6573,5.1305,3.3978,3.6339,0.92508,1.0883,2.4117,2.4684,7.1542,6.3289,9.9196,10.4941,2.4105,2.7019,3.4624,3.0676,3.2061,3.5001,1.515,1.4125,3.1812,3.3066,8.1016,8.1385,2.5609,2.9458,2.0144,2.0828,2.4668,2.7322,8.9115,10.4034,1.8586,2.2933,1.9255,2.0571,10.0684,10.188,1.7599,1.8088,1.0645,1.1234,12.2302,12.375,4.6001,4.6651,6.7642,7.7036,4.0704,3.3969,9.3058,8.8161,6.079,5.8038,6.7932,7.5208,3.2162,3.8118,1.3992,1.387,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,904
+desd906,78,78,F,2.2232,2.1181,0.35861,0.37573,0.78953,0.74459,16.9978,2.6719,2.5373,43.9453,44.2579,14.5509,15.0908,243.5345,241.3842,1.6649,3.1141,3.1597,0.68917,0.67237,17.1038,21.7893,1.6819,1.7385,3.5761,3.5827,6.4965,7.1034,4.4222,4.6343,0.07783,4.6274,2.0488,2.275,0.36905,0.41099,3.9314,4.5432,3.8245,4.0654,1.6826,1.4743,9.611,8.7286,2.6925,2.636,3.7405,4.3316,4.1992,3.6543,1.4466,1.4084,1.946,1.924,3.3082,3.0901,6.8294,6.8122,1.9406,2.0083,5.3836,5.9258,10.1157,10.6215,7.1607,6.4803,1.9676,2.1242,4.6196,4.7776,1.732,1.7697,17.029,17.2614,4.1009,5.2674,3.5726,3.7084,0.90724,1.0611,2.3664,2.3792,7.3528,6.7962,12.7591,13.5472,2.589,3.0277,3.5755,3.9804,3.3518,3.322,1.4759,1.2667,3.5506,4.1078,9.7941,10.0151,2.6384,2.826,2.3047,2.5616,2.2259,2.5253,10.3775,11.6194,2.0466,2.1833,2.0199,2.3843,11.4539,11.0993,1.7032,1.9742,1.1998,1.2805,13.6789,13.1053,5.0937,5.0241,7.4471,8.9842,4.0434,3.1213,10.1591,9.2838,6.6418,7.2459,7.2502,7.9148,3.6145,3.6608,1.2959,1.5727,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,905
+desd907,69,69,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,906
+desd908,85,85,M,1.5742,1.794,0.29753,0.36521,0.71488,0.68479,16.1406,2.2307,2.301,33.5806,31.3093,12.6679,12.4571,197.7947,197.3386,1.7253,2.735,2.4852,0.65389,0.55943,16.2964,18.2211,1.4005,1.4245,2.967,3.199,6.1602,6.7606,4.0628,4.2692,0.07289,4.224,1.8977,2.1951,0.35576,0.33266,4.014,4.4173,3.2609,3.5961,1.4124,1.3463,8.8617,8.5704,2.4154,2.4886,3.7112,3.6662,4.6228,4.2478,1.4296,1.3277,1.7788,1.7313,3.3659,3.176,6.6602,6.1208,1.8534,1.9376,5.4434,5.3117,9.1167,10.5956,6.9363,6.4434,1.8888,1.9433,4.3398,4.2832,1.8007,1.7058,15.8517,17.241,4.7128,5.2048,3.1511,3.6399,0.97444,1.0718,2.299,2.4124,7.1215,6.5859,11.7,13.8452,2.4047,2.6527,3.5914,3.5196,3.1616,2.9593,1.2803,1.1985,3.6173,4.1302,9.7755,10.0366,2.6748,2.7595,2.0965,1.9205,2.1353,2.2465,8.9708,10.1847,2.0676,2.1624,1.8506,1.9524,12.1904,11.706,1.6213,1.6968,1.0551,1.1494,12.5908,12.8978,5.0937,5.0354,7.7568,8.8088,3.7279,3.6751,9.4762,9.8832,5.5752,5.6132,7.4184,7.629,3.1249,3.2269,1.2189,1.4045,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,907
+desd909,,,F,0.92151,1.602,0.00066,0.13301,0.80246,0.69515,17.0389,0,0.0006,28.1916,31.817,16.5675,16.3152,251.1307,246.3704,0.87039,2.9714,2.7632,0.52741,0.68775,10.5676,13.9193,1.6182,1.6449,0.23437,2.6696,5.7414,6.0814,4.3581,4.4773,0.07101,4.0219,2.1431,2.3776,0.32524,0.32201,1.9435,0.00936,3.3953,0.93454,1.2952,0.00414,7.3881,5.0961,2.9727,2.8431,3.2736,0.12649,3.525,3.7876,1.4784,1.3669,0,1.5738,3.0474,2.6506,6.1677,5.9607,1.4865,1.602,5.6178,4.9659,8.7273,8.2636,6.3936,6.6314,1.6103,0.951,3.8319,3.9688,0.06173,0.94623,14.8596,0,4.4236,4.1832,2.876,1.4103,0.78443,0.875,1.8416,2.0616,5.4504,0.00791,10.8521,11.3505,2.4036,2.5231,3.5942,3.4211,0.00197,2.6661,1.1439,0.49832,2.561,2.5736,8.079,7.5474,2.5692,2.7175,0.89588,1.7462,0.38842,0.02077,8.3107,9.697,0.63246,1.2601,1.457,1.7054,10.0125,6.6888,1.4385,1.7702,0.81661,0.93595,6.0263,0.00013,3.9938,3.6742,5.4248,6.0253,3.6293,3.2059,0.18875,8.6697,6.1677,6.2873,5.7754,5.9166,1.1485,0,1.2951,1.2516,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,908
+desd910,80,80,F,1.6409,1.6911,0.28869,0.31078,0.66914,0.64418,16.415,2.4778,2.4451,40.6976,41.3308,13.1359,13.5961,175.0226,172.1287,1.7253,2.7299,2.3678,2.2907,2.2971,23.9851,19.7701,1.4427,1.4433,3.056,2.8936,5.8237,5.747,4.1648,4.3104,0.079,4.3839,1.928,2.1836,0.31313,0.31457,3.4889,3.9528,3.5405,3.6771,1.3405,1.1981,7.9338,7.7611,2.8002,2.7897,3.4837,3.4338,4.4069,3.8821,1.1853,1.2692,1.681,1.7313,3.1985,3.0729,5.7398,5.7918,1.8392,1.8816,5.7627,5.1349,8.181,7.9082,7.1919,6.1704,1.8889,2.0551,3.9937,3.9178,1.5451,1.5387,16.1707,15.5558,4.739,5.2764,3.2287,3.3416,0.92508,0.875,2.1241,2.04,6.9458,6.2888,10.9055,9.4766,2.817,2.8995,3.587,3.5476,2.8904,2.7057,1.3185,1.3473,3.4814,3.752,8.2793,8.4152,2.4305,2.4644,2.0607,2.0745,1.9557,2.0723,9.0554,11.135,1.9656,2.2377,1.7823,1.9672,10.075,9.5586,1.568,1.7204,1.0539,1.0783,13.3021,13.4957,4.7634,4.5871,7.202,7.0627,3.8803,2.3676,9.2968,10.0392,6.5646,6.358,7.1652,6.782,3.2361,3.3617,1.2052,1.3919,,10,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,909
+desd911,72,72,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,910
+desd912,,,M,2.171,2.3369,0.49537,0.54746,0.94615,0.96877,19.4632,3.5623,3.2863,61.7421,54.4932,16.5035,17.4471,247.6455,241.611,1.7692,3.5677,3.4198,0.90834,1.16,27.5036,31.6678,1.6981,1.6405,4.4662,4.0548,7.1341,7.4395,4.9036,5.1795,0.09633,5.4942,3.0338,3.203,0.41998,0.44274,4.4457,4.7603,4.7992,4.7795,1.9233,1.6616,10.414,9.6673,4.3025,3.979,4.5932,4.47,5.4218,6.106,2.0136,1.8998,2.4361,2.3081,4.3083,4.2753,9.4739,8.5002,2.3084,2.4245,8.2375,8.0259,13.5149,12.9207,9.1257,8.2622,2.422,2.5738,5.0009,5.1103,2.1457,2.0987,21.7039,21.2659,5.4008,6.4996,4.2661,4.3599,1.1743,1.0816,3.1048,2.4332,8.8697,7.5799,16.4933,15.9462,4.4348,4.7167,5.5638,5.2811,3.5676,3.6453,1.7342,1.689,4.667,5.079,12.1176,12.8934,3.6548,3.3589,2.634,2.9166,2.7442,2.5593,10.0428,10.6017,2.6885,2.7716,2.3484,2.7196,12.2645,11.8722,2.3121,2.1086,1.4581,1.4624,16.5771,17.7676,6.2486,6.0104,7.3627,8.9854,4.9057,4.286,12.1298,11.2477,8.7417,7.3194,9.1304,9.0054,4.0728,3.9535,1.7648,1.7775,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,911
+desd913,38,38,F,1.2087,1.4841,0.32915,0.35337,0.76607,0.72214,15.5579,2.8236,2.5641,38.8014,38.1988,11.4186,11.7876,155.8267,148.1433,1.4275,2.7104,2.4742,0.71919,0.56021,16.0833,17.2999,1.2687,1.3368,2.9734,2.9935,5.4951,6.0637,3.7026,3.898,0.07522,4.1864,2.105,2.2594,0.33412,0.3312,3.753,4.0964,3.5405,3.723,1.5121,1.3872,9.4724,6.9954,2.7214,2.6644,3.4837,3.4995,3.7649,4.0124,1.49,1.4559,1.6922,1.7433,2.9616,3.1423,5.9909,6.0089,1.9155,1.8386,5.9514,4.903,9.5989,9.2094,6.9363,6.6783,2.0251,2.0723,4.0035,4.1536,1.5356,1.539,16.4198,15.7914,4.7423,4.7448,3.5983,3.3296,0.95289,1.1393,2.2389,2.4471,7.3052,6.2544,12.9889,13.0671,2.4574,2.5508,3.5942,3.5354,3.2791,2.9593,1.5482,1.1968,3.5569,3.8132,9.3965,9.5578,2.5252,2.6722,2.144,1.9116,1.8438,2.0017,9.2137,10.8398,2.0896,2.2928,1.8839,1.8074,10.8766,11.1711,1.5466,1.4413,1.122,1.1898,12.7796,12.5322,4.6107,4.6141,6.5719,7.7698,4.0787,3.0648,10.3689,9.1754,6.4612,6.4601,6.839,6.9649,3.5994,3.3739,1.3663,1.2715,,23,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,912
+desd914,56,56,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,913
+desd915,61,61,M,1.0829,1.7871,0.35485,0.41704,0.91074,0.86239,18.5205,2.5937,2.6066,46.7921,45.0515,15.7042,16.4393,247.7454,228.3948,0.96458,3.4077,3.3145,0.40818,0.36461,8.988,10.1571,1.6938,1.7432,3.3828,3.353,7.0514,7.2372,4.7557,5.0523,0.07484,4.7098,2.055,2.8265,0.35463,0.37363,4.1239,4.6051,3.9055,4.058,1.8044,1.4939,10.3104,8.8765,2.9679,2.8053,3.975,3.9784,4.344,4.6735,1.6649,1.6232,1.895,1.7371,3.5586,3.4006,7.3682,7.0828,2.1785,1.9045,6.7307,6.5106,10.8375,9.9995,7.7665,6.9412,2.3641,2.3374,5.0588,4.3981,1.8483,1.9333,17.2759,19.015,5.5995,6.1245,3.6462,3.7711,1.1224,1.1694,2.2511,2.4768,7.7032,6.6289,13.8112,12.5885,2.7936,3.1364,4.4489,3.9337,3.4238,3.4407,1.4083,1.4082,3.9393,4.0665,10.3809,10.2192,2.7134,2.9456,2.1158,2.1923,2.2846,2.3419,10.6953,10.6325,2.3766,2.6081,1.9056,2.2171,12.4923,12.1054,2.0567,2.2361,1.2068,1.2881,13.6414,14.8169,5.4325,5.799,8.0641,9.3872,4.5761,3.38,10.5653,10.5006,7.3547,7.2714,7.457,6.9902,3.4632,3.8254,1.4607,1.4851,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,914
+desd916,78,78,M,2.2224,2.1866,0.32095,0.36355,0.68437,0.60891,18.2564,2.6118,2.517,46.862,46.8638,15.7042,15.8947,224.9161,224.2603,1.9669,2.7718,2.4984,1.6954,1.2492,22.4678,23.0663,1.7507,1.6711,3.4519,3.5651,6.2729,6.5553,4.8238,5.0816,0.07446,5.1289,2.3064,2.7552,0.32995,0.33925,3.9962,4.3574,3.7453,4.0227,1.3613,1.3156,9.0266,8.5795,2.5233,2.4315,3.9293,4.1485,3.6178,2.9868,1.3279,1.276,1.946,2.0332,3.3185,3.2963,6.639,6.1687,1.7203,1.8851,5.9901,5.9248,10.3783,10.3489,6.9996,6.3627,1.8401,2.1293,4.2421,4.245,1.4822,1.5507,16.7875,17.4937,4.4676,5.6198,3.1417,3.4739,0.90939,1.0087,2.1223,2.6003,7.1016,6.5859,12.5317,11.6458,2.4897,3.2332,3.4384,3.9724,3.2014,3.3958,1.4013,1.4998,4.0214,4.4008,10.9795,11.5531,2.5224,2.8097,2.0759,2.0413,2.1324,2.496,10.4588,11.2932,2.0433,2.0887,1.8667,2.0571,10.8511,10.7072,1.7931,1.7615,1.0687,1.0778,13.4697,13.6532,4.9319,4.7508,6.9792,8.8565,3.8696,3.4441,10.3841,11.0686,6.3966,7.2334,6.9438,7.0025,3.3855,3.7028,1.3595,1.244,,22,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,915
+desd917,73,73,M,1.7782,1.7113,0.37741,0.43293,0.9583,0.88654,17.706,3.1894,3.0363,48.961,48.3369,13.857,14.203,211.353,210.2499,2.2077,3.4963,3.2125,0.68499,0.6989,19.5055,16.0454,1.4916,1.4867,3.5463,3.8389,6.6341,6.8129,4.4811,4.7031,0.07785,5.3454,2.3151,2.6607,0.37691,0.40045,4.2709,4.4975,3.8333,4.0109,1.6918,1.4472,9.8237,8.8246,3.4823,3.2987,3.5113,3.308,4.7813,4.5121,1.9183,1.6251,1.8441,1.7537,3.2698,3.2506,8.4134,7.7014,1.8882,1.9182,6.8062,6.6613,12.0698,11.4147,9.2299,8.5602,2.1802,2.4542,4.1804,4.3247,1.5698,1.659,19.7012,18.46,5.5995,6.6693,3.7639,3.7859,1.0517,0.96247,2.4677,2.5682,7.5173,6.7709,15.2442,14.2702,3.329,2.9863,4.5317,4.5282,3.3178,2.7968,1.5676,1.4613,4.1739,4.4141,10.2967,10.4699,3.2135,3.4402,2.2767,2.1583,2.0579,2.3211,9.279,10.8637,2.4315,2.5789,1.9836,2.3492,10.9804,11.7822,1.755,1.7874,1.2249,1.2087,14.8992,14.7676,5.0968,5.8195,7.3955,9.1593,4.7024,3.5745,10.7106,10.1041,7.8592,7.8346,8.0369,7.2595,3.5021,3.7809,1.4013,1.3936,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,916
+desd918,,,F,1.2722,1.8035,0.31747,0.33873,0.61902,0.6151,16.3066,2.6088,2.6409,39.8014,39.9862,13.5734,13.3837,183.5937,181.9258,1.4275,2.4818,2.7273,0.58583,0.56994,17.9412,15.7954,1.4017,1.4642,3.0847,3.0414,5.4271,6.17,4.1206,4.3053,0.06259,4.3562,1.8435,2.2057,0.34199,0.34291,3.6799,4.1134,3.5926,3.7187,1.6267,1.4454,8.84,8.6227,2.4298,1.9707,3.4373,3.5531,4.0856,3.7318,1.2567,1.1912,1.6328,1.5445,3.3107,3.3668,6.3586,6.0792,1.887,1.9845,6.6155,5.1608,9.9738,10.1241,6.5278,6.3457,2.0261,2.1242,3.815,3.7073,1.603,1.6175,17.2272,15.7695,4.8713,5.679,3.4487,3.5504,0.97444,0.91099,2.2753,2.2308,6.8223,6.2394,13.3397,13.0736,2.9165,2.9293,3.7588,3.8006,3.2791,3.235,1.4939,1.2441,3.0891,3.4752,9.1558,8.6156,2.6748,2.5619,2.1184,1.915,2.0792,1.8952,9.1447,10.3869,1.9431,2.054,1.8506,2.1139,11.1104,11.7583,1.6751,1.7921,1.0866,1.1289,11.5255,11.9293,4.4457,4.7226,7.184,8.3724,4.2164,3.3708,8.7626,8.1117,6.7171,6.3519,7.0344,6.4136,3.5994,3.498,1.4654,1.4548,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,917
+desd919,70,70,F,1.0932,1.9234,0.3887,0.42053,0.7548,0.77244,17.8487,2.9505,2.7813,45.0844,45.8795,13.7119,13.739,207.1482,202.3092,1.0818,2.8624,2.8231,0.65429,0.4371,11.468,12.4405,1.3907,1.4462,3.5593,3.5929,6.3999,6.5046,4.2681,4.5385,0.07894,4.6274,2.1986,2.6047,0.39142,0.38422,3.8443,4.4609,3.5958,3.9462,1.7531,1.6008,10.6817,9.289,3.1163,3.2706,3.776,3.865,4.8917,4.0775,1.5597,1.5145,1.8338,1.9445,3.5073,3.3437,6.8101,7.1118,1.9686,2.226,6.1716,6.3053,10.8761,10.4273,7.6364,7.1455,2.2858,2.3936,4.3218,4.7902,1.7698,1.8106,18.2342,19.4868,4.667,5.7092,3.8806,4.1708,0.91859,0.9117,2.486,2.2468,8.3181,6.6417,14.6495,12.3503,2.7509,3.2931,3.7584,4.1958,3.5913,3.2797,1.535,1.6004,3.5659,3.976,10.4938,10.7974,2.5645,2.7702,2.4339,2.2809,2.4199,2.6416,10.7561,11.7576,2.3965,2.4766,2.0367,2.3742,13.196,14.0706,1.9286,2.0007,1.1812,1.2696,13.9848,14.0169,5.6004,5.45,8.5253,10.2499,4.5115,3.6198,11.0128,10.5739,7.3502,7.3967,7.7161,6.5938,3.2861,4.2196,1.4831,1.4268,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,918
+desd920,67,67,M,2.324,2.619,0.31464,0.35003,0.77548,0.74054,16.7018,2.2687,2.1212,39.7455,41.3138,12.6679,13.7081,212.1663,208.3012,1.7697,3.175,2.9787,1.322,1.1802,20.2083,21.0729,1.4486,1.41,2.7027,2.7183,5.4613,5.9736,4.1197,4.2444,0.06895,3.9495,2.0517,2.353,0.32632,0.34954,3.672,4.1335,3.7177,3.8908,1.5077,1.37,10.0108,7.974,3.1261,3.1377,3.5759,3.7297,4.7744,4.4391,1.5505,1.4933,1.8194,1.7867,3.2079,2.8601,6.6938,6.3596,1.8516,1.7419,6.2356,5.5259,10.0606,10.082,7.662,7.1949,1.9707,2.0765,3.6314,4.146,1.603,1.5201,18.0319,17.3748,4.3545,5.5514,3.3978,3.4975,0.85757,0.94874,2.1498,2.2947,6.8601,6.6575,13.5857,12.9678,2.6611,2.9293,3.7771,3.9033,3.4017,3.2241,1.3481,1.2418,3.3466,3.7696,9.1884,9.1818,2.8873,3.0435,2.1284,2.2649,2.1279,2.5173,9.6822,10.8251,2.1216,2.1021,1.6495,2.0608,11.8801,10.3589,1.9325,1.9261,1.1388,1.1631,12.0086,12.7452,4.9585,5.1859,7.332,8.7445,3.8669,3.2059,8.6881,10.4434,6.787,7.0583,8.1322,7.3823,2.9755,3.3739,1.289,1.5251,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,919
+desd921,71,71,M,2.4335,1.8026,0.44772,0.47721,0.84292,0.90499,19.3443,3.6181,3.5314,51.8561,50.9913,16.1786,16.2485,231.234,224.0169,2.5576,3.3786,3.1863,0.70585,0.67237,26.7043,28.4876,1.5439,1.5793,3.5084,4.0539,7.1647,7.5452,4.7321,4.8669,0.07026,5.3954,2.5519,3.0321,0.37923,0.38685,5.5549,5.8186,4.0353,4.5576,1.9744,1.8397,12.444,10.5471,3.9194,3.8162,4.1051,3.9395,6.4748,5.1517,1.6065,1.8712,2.0489,2.1163,4.3098,4.1928,8.3586,8.0257,2.4397,2.4461,7.4532,6.8535,13.026,13.2013,9.245,8.0698,2.4591,2.9018,6.1242,7.119,2.2046,2.2306,21.4875,22.995,6.0666,6.6154,4.1494,4.279,1.1743,1.2966,2.8387,2.877,9.3424,8.1578,15.1999,15.709,3.0222,3.8068,4.9467,4.9305,4.0885,3.7879,1.6433,1.7352,4.9277,5.6503,13.1268,14.0712,3.2048,3.4562,2.3357,2.393,2.027,2.5855,11.4211,13.2842,2.952,3.2117,2.272,2.1765,13.6313,14.6171,1.8902,2.2938,1.359,1.4972,18.3793,19.4519,6.1867,6.8019,10.4337,9.2497,4.27,3.6135,10.8951,11.6813,7.1236,7.7573,7.5687,8.105,4.1919,4.5021,1.7147,1.6424,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,920
+desd922,,,M,1.906,1.9242,0.33253,0.3327,0.78023,0.78003,18.0333,2.5624,2.5135,49.6817,48.7858,14.2836,14.3571,202.9975,198.4048,2.0082,3.1135,3.0083,1.2669,1.1008,34.3074,42.9565,1.5922,1.6284,3.4342,3.5257,5.9142,6.3966,4.4807,4.6407,0.07932,5.1904,2.3151,2.4445,0.36765,0.35363,4.2224,4.993,4.1953,3.9313,1.8186,1.5935,8.2026,7.9713,2.8653,3.5436,4.0572,3.9962,4.091,4.6278,1.504,1.446,2.0536,2.0307,3.7726,3.2617,7.0709,7.6169,2.2451,2.0647,6.2522,5.7875,12.3722,12.53,7.7729,7.5044,2.3463,2.3315,4.8032,4.7091,1.8856,1.917,19.5505,20.5346,4.4528,5.9041,3.9278,3.8288,1.1534,1.0477,2.5934,2.4783,8.9934,7.8788,15.0737,13.859,2.563,3.2931,4.265,4.1715,3.9799,3.6869,1.5889,1.3778,4.2069,4.5279,9.6993,10.5648,2.7607,3.0104,2.3829,2.3517,2.2924,2.5638,9.638,11.0461,2.3178,2.3339,2.1409,2.3153,12.0085,12.5391,1.8109,2.002,1.1891,1.2696,16.4195,14.7357,5.9055,5.8485,7.2704,8.2955,3.5453,3.5915,9.6784,9.5354,7.3081,7.5915,7.4136,7.1556,3.9793,3.8888,1.5085,1.5884,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,921
+desd923,73,73,F,1.9465,2.8461,0.31394,0.33023,0.77404,0.74054,19.3377,2.3948,2.3042,46.9422,47.8707,15.4577,15.0071,231.6549,230.4366,1.7547,3.1953,2.8934,1.591,1.3591,22.5833,21.0729,1.7119,1.6762,3.4519,3.471,6.2951,6.2886,5.0649,5.254,0.07764,4.8017,2.305,2.517,0.34048,0.35224,3.4312,3.9461,3.8483,4.186,1.5077,1.3156,9.215,8.7724,2.9724,2.8776,3.2952,3.9159,4.5008,4.671,1.5582,1.5804,1.6044,1.8077,3.2907,2.9913,7.1609,7.0588,1.6907,1.7386,6.2472,5.5447,9.7032,10.1935,7.7532,7.2098,1.9513,2.1453,4.1144,4.4863,1.4585,1.5352,17.4708,17.8261,4.3346,5.1174,3.0127,3.2623,1.3114,0.98964,2.8271,2.3338,6.7752,6.6575,11.8764,12.7252,3.0313,3.7357,4.0324,3.9033,2.8762,3.243,1.314,1.3935,3.4229,3.8719,9.2661,9.1195,2.8919,3.0323,2.3076,2.5549,1.8613,2.3958,8.7061,9.7252,2.1623,2.2222,2.0147,2.3397,12.1904,12.0214,1.5262,2.1633,1.0627,1.1167,12.8832,13.2355,4.913,5.4783,6.9817,9.4771,3.5417,3.8739,8.7703,8.3738,6.656,7.1111,7.1243,6.4441,2.9755,3.8118,1.4054,1.6609,,18,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,922
+desd924,66,66,M,1.7179,2.3465,0.39742,0.42969,0.92208,0.94771,16.0602,3.3034,3.0836,27.9343,26.488,11.4186,12.2296,221.5317,215.5509,2.1765,3.7728,3.3285,0.90834,0.47793,19.6009,22.3572,1.6274,1.5897,3.4499,3.5025,7.6957,7.6113,4.6039,4.8818,0.07571,4.2336,2.0653,0,0.38062,0.40256,3.9944,5.0653,3.8533,3.8791,2.1453,1.8047,12.5747,10.2752,3.6393,3.2596,4.1024,4.4165,4.8849,4.4996,1.7756,1.8671,1.9062,1.881,4.2709,3.8123,7.759,7.9281,2.2995,2.3896,8.2003,7.5129,12.4866,11.8559,8.8478,7.4859,2.5281,2.9062,5.3121,5.3529,2.1264,2.0763,21.1619,22.2924,6.8947,6.6145,4.113,4.3627,1.1411,1.2063,2.7166,2.5701,9.0934,7.8866,15.5243,15.5091,3.4373,3.8449,5.0361,4.8221,3.3855,3.2415,1.6007,1.964,4.8073,5.1719,12.5686,11.4852,3.0946,3.4223,2.2603,2.3024,1.806,2.5132,10.4511,12.6198,2.7195,2.7591,2.1978,2.3748,14.1133,15.1703,1.9533,2.2445,1.3871,1.4764,17.2871,19.1718,5.6498,5.3595,8.8186,8.6411,4.6325,3.9244,11.5773,10.7001,6.9815,7.4313,8.6274,8.556,4.0714,4.8501,1.5237,1.6597,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,923
+desd925,80,80,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,924
+desd926,75,75,F,1.2991,1.9365,0.32621,0.35031,0.92165,0.93429,16.6399,2.6548,2.5483,40.966,43.5704,14.0509,14.0136,203.4714,198.292,1.0767,3.3221,3.1428,0.8319,0.54888,9.514,13.5929,1.5486,1.4958,3.1251,3.4984,6.1682,6.4778,4.281,4.4961,0.06742,4.5116,2.0943,2.2662,0.35381,0.36814,3.4872,4.3267,3.7837,4.0768,1.767,1.5801,10.3271,9.2589,2.8977,2.8396,3.7866,3.8558,4.2675,4.011,1.7919,1.7568,1.7677,1.7612,3.4663,3.3072,8.055,7.8124,2.0107,2.0571,6.628,5.5622,11.2669,11.4554,7.228,6.9034,2.2328,2.268,4.2837,4.6318,1.7361,1.7409,17.0713,18.1056,5.0421,6.3066,3.6601,3.8318,1.2128,1.0964,2.6036,2.6421,7.3406,6.7466,14.2617,13.963,2.6346,2.9748,4.4569,4.2322,3.3074,3.322,1.5709,1.3513,3.7107,4.0416,9.8443,9.6351,2.9867,3.2123,2.0409,2.0849,2.1558,2.4363,9.9962,11.28,2.2575,2.2497,2.0082,2.0999,11.8239,10.7097,1.8903,2.0675,0.97024,0.99363,12.9657,13.8689,4.8783,5.0385,7.3278,8.907,3.907,3.2341,10.9218,10.1216,7.2631,7.3967,7.8905,7.3576,3.757,3.7699,1.573,1.5795,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,925
+desd927,,,F,0.70972,1.2525,0.00066,0.13301,0.77549,0.81137,2.0826,1.107,0.00029,30.325,26.0012,12.6449,13.067,97.6268,128.6959,0.81443,3.0233,3.0646,0.42906,0.39869,4.1696,7.6682,0.81757,0.19332,0.32208,0.79482,5.4218,5.8867,4.2723,4.4202,0.07224,4.8564,2.0194,1.6169,0.38336,0.37054,1.9435,0.00124,2.0098,1.3518,0.45181,0.00414,7.3412,7.3169,1.983,1.8742,0.23731,0.30529,3.7466,3.4567,1.4479,1.5448,0.00088,0.00096,1.969,0,6.6402,6.6129,0.23156,1.0331,5.215,4.9122,10.5636,9.8194,6.263,5.7349,1.7255,0.02822,2.897,0,0.66198,0.94623,0,0,4.6078,4.7546,2.8596,1.6916,0.92238,0.94425,1.915,1.7162,0.00154,0.00046,12.1516,11.3461,2.1433,2.7388,3.3985,3.295,0,0.00015,0.00001,0.0049,3.0606,2.6286,8.6448,6.5694,2.557,2.9638,1.5261,1.2675,0.38842,0.78485,0,8.1361,1.354,1.2601,1.6139,1.7069,6.3496,0,1.5879,1.7702,0.81661,0.79424,0.00052,0.00013,0,3.5064,5.1788,1.2354,4.2459,2.8771,1.7984,8.1941,6.6416,6.2873,7.424,6.7532,0,0,1.1316,1.2821,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,926
+desd928,,,M,1.7335,2.2655,0.38218,0.39718,0.8276,0.80084,15.6103,2.7956,2.6911,46.8493,47.4475,13.3453,13.839,201.5903,200.344,1.9086,3.2024,3.0014,1.2968,1.3149,23.7819,24.0846,1.4013,1.3821,3.4135,3.444,6.2277,6.5512,4.145,4.3835,0.07383,4.7631,2.4087,2.6234,0.38586,0.38747,4.1233,4.8432,3.6279,4.1858,1.739,1.6083,9.5422,8.3923,3.0008,2.9022,3.4617,3.7078,4.5471,4.5253,1.6222,1.4028,1.8373,1.7849,3.7183,3.7036,7.1612,6.7408,1.7907,1.8414,5.8883,6.0919,11.1037,9.5801,7.7672,7.4548,2.2504,2.3401,4.2137,4.5229,1.4899,1.7034,17.7483,17.0774,5.1316,6.4312,3.4252,3.6339,1.0517,1.0322,2.5015,2.357,7.6513,7.0546,13.611,12.5696,2.5712,2.8797,4.0199,4.1374,3.53,3.4705,1.5588,1.3536,3.7538,4.3477,10.2318,10.7974,2.9075,3.2237,2.3751,2.269,1.6549,1.8166,9.8458,11.4231,2.2682,2.4751,2.0756,2.273,11.9822,12.057,1.3661,1.5016,1.1412,1.1993,14.878,14.0278,4.955,5.1128,7.4471,8.2508,4.2512,3.38,9.5575,10.1458,5.8607,6.0871,7.1975,6.3369,3.2215,3.444,1.3226,1.4197,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,927
+desd929,73,73,M,1.7782,2.263,0.37023,0.43295,0.91609,0.95982,19.0873,3.5276,3.1726,50.7498,51.2977,15.8558,16.5995,232.3607,224.409,1.9797,3.7357,3.4854,0.831,0.50083,25.7333,30.2222,1.6363,1.7373,3.7304,3.8729,7.3263,7.5892,4.8366,5.2066,0.08748,4.9781,2.4731,3.0753,0.42028,0.42884,4.4445,4.8053,4.3715,4.8936,1.5749,1.4033,7.9801,9.481,3.1197,3.0054,4.1078,4.2174,5.6521,4.613,1.876,1.8532,1.9053,1.823,3.635,3.4425,7.894,7.159,1.9996,1.9996,6.8803,7.3491,12.4007,11.3456,8.4853,8.032,2.1833,2.2165,4.3869,4.7967,1.8869,1.8501,20.8868,19.892,4.6266,6.6359,3.6316,3.7363,1.0851,1.2664,2.906,2.8198,8.0629,7.0881,15.2482,14.7553,3.7168,4.3392,4.3302,4.6409,3.3793,3.0753,1.5359,1.4126,4.1452,4.7807,11.8649,12.7505,3.425,3.6757,2.3321,2.412,2.4729,3.1049,11.5448,12.5624,2.1795,2.3966,2.2995,2.4613,13.1865,15.2549,1.8109,2.8636,1.2266,1.3691,13.4644,13.7179,5.3932,5.845,7.4343,8.5741,4.5894,3.9702,10.3976,11.8615,9.075,8.561,8.3723,8.1949,3.6254,3.4384,1.5229,1.6412,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,928
+desd930,,,M,1.7635,1.9242,0.31335,0.36732,0.79662,0.82209,20.2468,2.5394,2.4381,48.9823,48.7858,17.0926,17.01,251.1307,245.2991,1.6919,3.3151,3.0983,0.61913,0.54447,17.315,20.0338,1.7228,1.6234,3.4877,3.4564,6.8653,8.0247,5.179,5.6066,0.08694,4.8087,2.174,2.987,0.36026,0.35012,4.1278,4.6802,3.9487,3.7471,1.7262,1.4517,10.0486,9.2595,3.2255,3.2162,4.0376,3.9881,5.0648,5.1473,1.4613,1.5029,1.8946,1.8812,3.4371,3.2432,6.8674,6.7283,1.9964,1.9996,7.7992,7.4757,10.4518,10.5973,8.0404,7.4887,2.1918,2.0673,4.5636,4.542,1.8048,1.8088,16.9019,17.3834,5.8715,6.4712,3.7058,3.6686,1.1856,1.0871,2.7318,2.5253,8.9869,7.5799,13.0276,13.909,3.2372,4.2916,3.8945,4.2695,3.3216,3.275,1.4724,1.3442,4.1182,4.2021,10.4286,9.9015,2.7524,2.8295,2.3357,2.2809,2.1997,2.1325,10.3188,10.9985,2.1961,2.3944,2.0686,2.2792,11.8972,12.417,1.8222,1.9274,1.09,1.1504,14.2123,14.5737,5.8279,5.2185,7.6464,7.7956,4.0299,3.2927,9.9145,10.4126,7.1689,7.0146,6.9538,6.9161,3.6254,3.707,1.5785,1.5717,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,929
+desd931,71,71,F,1.1751,1.4205,0.3775,0.43293,0.82078,0.90388,15.9782,2.7961,2.818,40.2222,41.6152,12.6382,13.4068,222.5085,226.454,1.368,3.1876,2.9384,0.38128,0.37161,14.5741,13.8356,1.7547,1.7893,3.4765,3.6449,7.0589,7.512,4.5527,4.7758,0.08036,4.4112,2.1285,2.2385,0.38425,0.38596,3.9022,4.4341,4.0215,3.9407,2.0187,1.7945,10.0195,8.7286,3.2221,3.4042,3.821,3.9924,4.2417,4.4412,1.7315,1.7455,1.8849,1.9253,3.9318,3.5415,7.133,7.0765,2.1363,2.2761,6.6074,6.0722,11.3876,11.1868,8.111,6.7788,2.5382,2.8104,4.8619,5.2523,1.954,1.9858,20.9626,19.8562,4.7728,5.6511,4.2627,4.5908,1.0299,1.0919,2.5739,2.5365,7.7004,6.5824,13.8112,13.6718,2.796,3.4097,4.16,3.9337,3.3756,3.0305,1.6253,1.8071,3.7308,4.3916,10.444,11.349,2.9475,2.9691,2.2439,2.2657,2.0188,2.1338,10.3026,11.8666,2.5605,2.7952,2.1686,2.3425,14.1,13.5612,1.9026,1.7056,1.3019,1.2201,15.0981,16.123,5.4556,5.7834,8.5253,9.5465,3.9385,3.7762,10.3715,10.6501,8.115,7.8241,8.3154,8.1256,3.8404,3.616,1.4217,1.54,,30,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,930
+desd932,81,81,F,1.6874,1.4237,0.28932,0.3229,0.6762,0.61564,15.4763,2.2485,1.8892,40.6976,38.1448,11.0862,11.7821,169.8396,169.618,1.9741,2.7299,2.4226,1.9068,2.4151,42.7786,43.4433,1.3342,1.2873,2.6432,2.3521,5.3345,5.6467,3.8723,4.1105,0.0605,4.4656,2.1165,2.1249,0.30289,0.31885,3.415,3.6553,3.2654,3.6208,1.4618,1.2468,7.4411,6.9027,2.4088,2.151,3.6036,3.3553,3.7966,3.5516,1.2539,1.2354,1.7421,1.5836,2.9935,2.8388,5.7398,5.6728,1.6173,1.0331,4.785,4.9093,8.3535,8.4368,5.4476,5.459,1.8577,1.8303,3.8319,3.825,1.2638,1.3208,15.1883,15.5908,4.149,4.4411,3.0201,3.0339,0.97928,0.94701,2.1427,2.0881,6.3032,5.4923,9.7986,10.3966,1.8272,2.2493,3.2993,3.4339,2.9738,2.7091,1.2625,1.2394,3.2125,3.3802,8.2959,7.6789,2.3072,2.4325,2.2098,2.2212,2.0023,1.6677,8.5484,9.8218,1.894,2.2377,2.0061,2.1697,10.3928,10.8212,1.3738,1.6744,0.88717,1.0621,12.8439,12.0223,4.6205,4.6898,7.202,7.0627,3.0945,2.3676,8.8494,9.2684,5.0048,5.655,6.2429,6.0501,2.9302,3.2392,1.4436,1.3825,,6,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,931
+desd933,73,73,M,1.9515,2.8461,0.30154,0.26814,0.60887,0.59923,16.9955,2.7353,2.1002,41.0361,41.6131,14.3029,14.7858,193.1778,188.7927,2.2084,2.6794,2.6209,0.7124,0.85492,27.4718,27.8679,1.4372,1.4572,3.3698,3.0238,5.7264,6.3167,4.2138,4.3908,0.07364,3.9853,2.1837,2.1259,0.30935,0.32624,3.6725,4.1821,3.6869,3.9,1.5756,1.3463,10.3634,8.7758,3.2184,3.0384,3.5194,3.7297,4.1389,4.0899,1.2567,1.1384,1.8156,1.7537,3.3402,3.3368,6.417,6.1736,1.7185,1.8822,6.5168,5.4306,9.8271,10.3489,6.9544,6.3129,1.9334,2.1584,3.8307,3.5663,1.5936,1.4935,15.7474,15.3404,5.0421,5.1979,3.3093,3.427,1.0385,1.1753,2.5617,2.771,7.4986,6.4788,12.3066,12.0092,2.3636,2.9097,3.9081,3.6264,3.3267,2.9717,1.3553,1.4634,3.0558,3.4659,8.5675,8.9741,2.4895,2.7751,2.2046,2.0918,2.1563,2.5641,8.5484,9.8218,2.0676,2.3358,1.9643,2.0868,11.2482,11.7657,1.737,1.9443,1.1388,1.1707,12.5704,12.6023,5.1579,5.4272,7.3278,8.8249,3.5488,2.9305,10.6498,9.2838,7.5225,6.9282,7.0344,7.2938,3.309,3.6834,1.4047,1.5247,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,932
+desd934,80,80,F,1.8046,2.2666,0.23863,0.28135,0.77549,0.761,15.6312,2.2682,2.3055,42.8936,41.2085,13.2443,13.2882,177.4279,173.5885,1.8042,3.0186,2.8084,1.1642,1.2296,23.7819,26.1031,1.3135,1.2852,3.1843,3.2691,5.6364,5.6835,4.0902,4.2826,0.08676,4.5072,1.928,2.1089,0.36412,0.33122,3.7732,3.9163,3.5221,3.7654,1.4402,1.3245,8.3732,7.1597,3.1923,2.7131,3.3255,3.5531,4.1389,4.2358,1.4715,1.4878,1.5528,1.6262,3.3126,3.1043,7.0857,6.775,1.5746,1.6118,5.6698,5.7125,11.7899,9.7307,7.5987,7.1609,1.8998,2.022,3.8459,4.0693,1.3793,1.4548,15.2181,15.3404,4.3218,5.2317,3.0518,3.293,1.0589,1.0809,2.2721,2.4518,6.9458,6.0318,14.489,11.7817,2.817,3.4845,3.9066,3.9485,2.708,2.473,1.3545,1.3473,3.3135,3.9112,9.0214,9.3387,2.4499,2.8032,2.0291,2.0073,1.7461,1.6606,8.0006,9.1597,1.9919,1.9402,1.9277,2.0436,9.6834,8.8425,1.6217,1.6524,0.99556,1.0459,12.6424,11.3018,4.862,4.9445,6.9574,7.344,3.6579,3.0225,8.2873,7.7179,6.5968,6.6294,6.7108,6.9261,2.7421,3.1627,1.2484,1.2057,,26,+80y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,933
+desd935,,,M,1.7433,2.4181,0.43308,0.45254,0.92208,0.94771,16.4676,3.1208,2.8802,44.6183,43.3222,12.9595,13.0713,233.3043,237.6268,2.1695,3.5677,3.3274,0.54138,0.54061,23.0322,27.7174,1.7406,1.7194,3.5031,3.438,7.042,7.3652,4.5718,4.7162,0.08338,4.7605,2.2993,2.5881,0.40149,0.41572,3.9559,5.1348,3.6586,3.3138,1.8094,1.7701,10.2283,9.9207,3.8968,3.8477,4.3899,3.8371,5.5844,5.4991,1.7919,1.8557,1.9582,1.9114,4.1116,3.6687,8.1661,8.1695,2.1816,2.2954,7.469,8.9127,12.4884,13.6809,9.2206,8.7069,2.09,2.5375,4.3481,4.4862,2.0802,2.0095,20.216,19.1111,5.7287,6.5834,4.2,4.3627,1.3109,1.206,2.7194,2.7707,8.9175,7.8075,15.1685,18.2389,3.4708,3.5237,4.5392,4.701,3.7894,3.6453,1.3489,1.4553,4.3894,4.6564,11.0276,10.6004,3.2315,3.3865,2.0792,2.1522,2.6699,2.7929,9.8217,12.3986,2.3497,2.6164,1.9514,2.311,13.3086,12.6387,2.1254,2.2086,1.3198,1.3772,15.5987,17.2763,5.5959,6.1416,7.8592,9.0459,4.5822,4.0371,10.9174,10.4229,7.7947,7.5284,7.785,7.6973,3.1968,3.7906,1.5011,1.7011,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,934
+desd936,,,M,1.4773,1.8551,0.30712,0.36732,0.77299,0.70023,15.1615,2.3874,2.1702,36.3493,37.8398,11.6495,11.9739,183.508,188.2762,1.5374,2.9478,2.5777,0.74448,0.93226,15.7404,20.5697,1.3624,1.3058,3.3698,3.3626,5.9114,6.3248,4.105,4.1428,0.06387,3.9415,1.8688,2.0198,0.31937,0.33844,3.5102,4.4638,3.7826,3.7464,1.5756,1.312,9.1366,7.5833,3.5049,3.6789,3.6569,3.2958,4.9808,5.2862,1.5043,1.3707,1.5777,1.7166,3.7108,3.169,6.2909,6.9755,2.0307,2.1474,7.4434,7.1014,10.0847,10.4634,7.8971,6.8163,1.9334,2.1873,4.1511,4.0677,1.7515,1.7383,16.9,17.0849,5.154,6.4098,3.6011,3.6508,1.0231,1.0797,2.4677,1.9644,7.0677,6.6371,11.7043,12.1925,3.8559,4.3907,4.0661,4.2771,2.7353,3.0103,1.3089,1.4614,3.4844,3.8391,10.0705,9.6318,2.4547,2.8032,2.0266,2.2063,1.7874,2.2225,9.2833,10.7959,1.9955,2.2464,1.7206,2.1408,11.9469,11.8684,1.6147,1.6047,1.1843,1.2512,16.8157,15.5659,5.2471,4.7219,7.2698,7.416,4.7073,4.4913,9.3013,9.9631,6.2276,5.8152,6.839,6.874,2.9562,3.8071,1.164,1.4343,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,935
+desd937,60,60,M,1.2958,2.0553,0.42253,0.46989,0.98247,0.98753,19.5486,2.8799,2.9785,56.6536,56.7564,16.2603,16.3574,256.5174,247.3031,1.2229,3.9562,4.4519,0.62167,0.42444,10.2175,9.6637,1.6471,1.7288,4.8434,4.806,7.5007,7.6419,4.8366,4.9977,0.08168,5.5523,2.6203,3.2649,0.45912,0.48888,4.7092,5.4798,4.3245,4.5754,1.8182,1.6856,12.1998,11.7363,4.093,3.5443,4.015,4.3044,5.5844,5.84,1.8996,1.7618,2.1378,2.1611,4.7077,4.2798,8.5003,7.9227,2.4397,2.4964,8.1387,7.4932,12.7428,11.6909,8.4174,7.7599,2.4161,2.7616,5.1192,5.3877,2.0591,2.0987,21.3627,21.2659,7.0774,6.5332,3.9652,4.2189,1.5652,1.0074,3.6503,2.4369,9.1711,8.6758,16.2184,14.5863,3.7683,3.8397,4.7235,4.9495,3.9781,3.8385,1.8217,1.7511,4.4745,4.6564,12.3452,11.2148,3.182,3.4822,2.3087,2.4637,2.3555,2.6854,12.6225,13.663,2.5856,2.7716,1.9456,2.2296,15.4733,13.7474,2.0751,2.3804,1.5078,1.5341,16.1404,15.1686,6.7193,7.8068,9.3915,10.3903,4.9629,4.5727,13.3127,11.3395,7.9658,8.5007,9.5512,9.4607,3.8973,4.191,1.4801,1.7766,,27,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,936
+desd938,74,74,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,937
+desd939,84,84,F,2.5515,2.2981,0.28306,0.33732,0.73594,0.64941,14.7621,2.5534,2.8728,33.9342,31.817,11.7082,12.6372,152.1523,150.5561,2.9439,3.0892,2.9396,1.8794,1.333,37.5915,39.4973,1.1776,1.146,3.1843,3.5668,5.6364,5.8214,3.6515,3.898,0.06895,3.9853,1.9258,2.0377,0.3239,0.36174,3.3315,3.7698,3.5266,3.6905,1.293,1.0793,7.942,6.2744,3.5365,3.1161,3.0001,3.0663,4.661,4.7694,1.4435,1.2706,1.5568,1.7025,3.1757,3.1579,6.6402,6.1208,1.5372,1.6227,5.4517,5.3421,9.9931,10.0939,8.124,8.0496,1.7255,1.9873,3.5388,3.2876,1.3007,1.3856,15.2414,14.3944,4.4809,3.9079,2.888,2.9727,1.1577,0.9521,2.6694,2.1671,6.3421,5.5465,12.9694,12.0113,2.2418,2.7624,3.9359,4.0298,2.5222,2.8552,1.2641,1.4357,1.3402,3.4659,8.3383,7.5474,2.7339,2.7595,2.1241,2.1573,1.5943,1.6318,10.0499,11.035,1.94,1.9458,1.7033,2.0971,11.9596,10.5286,1.3702,1.5016,0.91841,1.0318,11.9794,12.0324,4.612,4.5881,6.171,7.0145,4.0085,3.433,8.5211,10.2199,3.5,6.5243,6.0942,6.6038,3.018,3.224,1.1316,1.1515,,29,+80y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,938
+desd940,71,71,M,1.1722,2.0486,0.37286,0.44442,0.80409,0.86494,18.5205,2.8302,2.7139,48.8941,49.247,14.062,14.5417,201.885,203.2097,0.9901,3.2932,3.0859,0.41352,0.51123,8.3108,9.1725,1.4184,1.4159,3.548,3.8487,6.3787,6.5072,4.6503,5.0437,0.0791,4.9901,2.3305,2.6234,0.41447,0.4061,4.3436,5.2169,3.9821,4.5626,1.5345,1.4033,10.5766,9.553,2.4294,2.1827,4.1476,4.5763,3.6957,3.3427,1.676,1.8051,2.0784,2.2589,3.4999,3.4428,7.4427,7.1853,2.1532,1.9112,5.7902,7.0398,9.9814,10.134,7.6875,7.2814,2.1301,2.2603,4.7746,5.2259,1.7524,1.7519,16.859,17.4076,5.0751,6.07,3.6053,3.7618,0.95715,1.056,2.2511,2.2739,8.039,6.9028,12.9806,12.5685,2.4569,2.7676,3.8536,4.4898,3.7049,3.7512,1.6891,1.4998,3.9265,4.6305,10.4458,10.3626,2.9034,3.205,2.2177,2.3585,2.1703,2.4738,9.1457,10.7141,2.309,2.2818,2.0228,2.3682,12.9067,13.448,1.6753,2.4288,1.2053,1.2452,13.374,12.9795,6.0924,5.7798,7.1324,8.0099,3.6415,3.1632,10.6885,10.5249,7.0612,7.3153,8.3403,7.6834,3.384,3.8172,1.4436,1.7095,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,939
+desd941,79,79,M,2.3438,2.1882,0.35908,0.41846,0.84859,0.87128,18.099,2.973,2.9211,47.3925,47.9934,14.6699,14.8643,267.0388,260.6464,1.7692,3.3327,3.0683,1.7017,1.6401,26.6813,28.2816,1.8646,1.8286,4.0497,4.2565,6.2151,6.64,4.695,4.8258,0.08702,5.343,2.3039,3.0262,0.33912,0.40403,3.9314,4.574,3.6874,3.6726,2.1278,1.8047,10.0996,9.5056,3.3932,3.9856,4.2634,3.949,4.7289,4.3545,1.5758,1.602,1.9862,2.0271,4.4396,3.839,7.2911,7.4435,2.0653,2.0981,6.628,6.5865,11.3876,11.3352,8.2907,8.0496,2.5203,2.6731,4.5717,4.7808,1.9296,1.9126,21.3402,21.1393,5.1333,6.2887,3.8847,3.8569,0.99419,1.1127,2.3435,2.4756,7.3201,6.8789,13.8898,14.0717,2.7764,3.4704,4.4323,4.6028,3.6501,3.5868,1.5422,1.652,4.0614,4.4731,10.8608,11.6858,3.1894,3.2634,2.2964,2.2597,2.3058,2.497,9.6312,10.3083,2.4929,2.4864,2.1271,2.2384,10.878,10.7317,1.841,2.0925,1.3879,1.3751,14.6467,16.2504,4.9246,5.9736,8.2587,9.3758,4.181,3.4799,9.5689,9.1445,7.575,7.5151,7.2258,7.1076,3.5074,3.9851,1.4135,1.7118,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,940
+desd942,68,68,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,941
+desd943,71,71,M,2.4335,2.4877,0.34798,0.42061,0.77148,0.83678,20.4839,2.7661,2.9189,48.2744,46.7113,15.0686,15.5424,200.671,191.9704,2.4442,3.175,3.0569,1.6411,1.2971,31.0961,40.6739,1.4837,1.5372,3.4401,4.0539,6.2423,6.5553,4.9079,4.8368,0.07932,5.1451,2.2072,2.5363,0.37168,0.37411,3.9151,4.3394,4.2631,4.2489,1.7569,1.5322,8.4829,7.8979,3.2858,3.3004,3.4638,3.8802,4.6551,4.3731,1.601,1.5399,1.919,1.8075,3.3523,3.411,7.5272,7.3156,1.6895,1.7072,5.7668,6.553,11.5909,11.192,8.9171,7.8072,2.3287,2.4132,4.4849,4.6375,1.5496,1.6422,17.3679,17.8445,4.618,5.0215,3.6567,3.9422,1.0759,1.1086,2.6479,2.3228,7.2827,6.1987,14.0951,13.6328,2.4513,3.2931,4.453,4.5838,3.316,2.7283,1.6136,1.3539,3.705,3.9134,10.6434,10.4622,2.9202,3.1608,2.3244,2.305,1.9166,2.3958,10.5362,10.1079,2.3178,2.4795,2.3008,2.2904,10.8545,10.7317,1.8628,1.9123,1.1644,1.1993,14.8685,15.2836,4.9246,5.0469,7.4343,8.5434,4.1918,3.0282,10.1514,10.3233,7.9654,7.2878,7.3906,7.3258,3.4165,3.5983,1.5479,1.5275,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,942
+desd944,58,58,M,1.6205,1.3377,0.39026,0.43211,0.8916,0.89213,18.0157,3.2785,3.1047,44.6002,43.9517,15.1125,16.1998,203.3824,204.3392,1.3533,3.2723,3.0423,0.67856,0.72341,16.1951,20.0561,1.5049,1.4805,3.5571,3.6077,6.8741,7.1811,4.5496,4.8014,0.07994,4.0834,1.7664,2.5484,0.36785,0.36743,3.3679,4.256,4.0128,4.175,1.7381,1.5874,10.0401,8.5316,3.312,3.1292,3.5421,3.5014,4.7247,4.5272,1.6965,1.656,1.8537,1.8645,3.6547,3.0604,7.3344,7.0892,1.9583,2.0598,6.497,6.1595,11.756,11.192,7.714,7.1302,2.184,2.3684,4.574,4.739,1.6815,1.668,18.2342,17.9842,4.6329,5.0215,3.7853,4.1119,0.90751,1.021,2.5825,2.5689,6.975,5.8557,14.6369,14.4641,3.0677,3.4843,4.1216,4.1536,3.2705,3.4872,1.4668,1.318,3.217,3.4659,9.2661,8.6749,2.9996,3.1178,2.4096,2.409,1.8769,2.008,9.151,11.1282,2.3352,2.5758,2.3159,2.3636,10.3723,11.4368,1.9026,1.8446,1.2428,1.3256,13.286,13.7731,4.7566,4.9941,8.2718,8.0248,4.5785,3.5745,8.7778,9.8046,7.1922,6.8695,7.7968,7.2737,3.5397,3.3889,1.4503,1.5844,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,943
+desd945,75,75,F,1.6914,1.9555,0.44814,0.47721,0.78849,0.7886,17.5233,3.4082,3.3032,44.969,46.1134,13.8184,14.0371,216.916,207.3053,1.6899,3.1891,3.0014,0.93131,0.84058,21.0366,27.1511,1.3918,1.3795,3.9666,4.2364,6.3214,6.5321,4.2532,4.4261,0.08755,4.752,2.2487,2.428,0.40743,0.41072,4.8784,5.3592,4.2007,4.4546,1.9924,1.6144,10.2582,9.5056,3.0119,2.895,4.3249,4.7084,4.4505,4.5504,1.5285,1.4887,2.1033,2.2354,4.2434,4.099,7.0622,6.8231,2.097,2.1032,6.2898,6.4085,11.1621,9.5801,8.0448,7.3579,2.5564,2.5812,5.1542,5.2224,2.1264,1.973,18.2185,19.4458,5.6415,6.3878,4.2496,4.5688,1.112,1.22,2.3051,2.5427,8.6581,7.6754,14.2573,11.3686,3.0666,3.7458,3.8536,4.1958,3.5208,3.5708,1.7251,1.5915,4.0738,4.7152,10.9141,11.75,2.8045,3.4536,2.6966,2.575,2.2661,2.5125,11.2913,11.7131,2.5147,2.6401,2.3544,2.5286,13.196,13.2247,1.9074,2.1193,1.2072,1.2275,14.6511,15.5659,5.305,5.1503,8.3761,9.0181,4.4738,3.7598,11.0487,11.599,7.5951,7.1802,7.7904,7.4025,3.6254,3.7517,1.7121,1.8049,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,944
+desd946,69,69,F,1.1823,1.5129,0.35506,0.37612,0.83213,0.81498,16.6277,2.8534,2.5817,40.966,41.159,13.3747,13.553,191.9809,185.9051,1.053,3.2427,2.9369,0.81467,0.75845,15.0453,17.6247,1.4064,1.3671,3.515,3.5516,7.0073,7.4677,4.1878,4.425,0.07562,4.224,1.9941,2.2,0.36996,0.35716,3.6289,4.1208,3.9071,3.8667,1.6426,1.563,10.0401,7.8059,3.3215,3.1286,3.7573,3.8098,4.4174,3.971,1.7315,1.6194,1.8298,1.845,3.2989,3.0901,6.3183,6.3211,2.0401,1.9994,5.9165,6.2899,9.7293,9.9061,7.7153,7.1609,2.1498,2.3593,4.2057,4.3599,1.8351,1.6782,17.7419,17.1771,4.0075,5.8687,3.7851,3.7478,0.93798,1.0828,2.4041,2.549,6.7355,6.1179,11.541,12.0241,2.7949,3.0168,3.9359,3.7681,3.3205,3.1188,1.4622,1.3536,3.3779,3.7284,9.1,9.2699,2.6696,2.8781,2.0832,2.0505,2.0884,2.4953,8.5287,10.6662,2.4919,2.4218,1.8749,2.0989,11.1654,12.4066,1.6953,1.9809,1.1622,1.1725,13.2802,13.8267,4.719,4.8703,7.822,7.9887,4.0913,3.2329,8.7778,8.3378,6.2276,6.0375,7.2326,6.7432,3.591,3.3844,1.4741,1.5795,,,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,945
+desd947,69,69,M,2.1889,2.7178,0.41651,0.45745,0.96199,0.99176,18.9611,3.3179,3.1684,43.1093,42.0541,14.449,14.7498,251.5014,247.3031,1.9461,3.8127,3.3285,0.831,1.2937,23.4697,29.8965,1.718,1.7644,3.5557,3.8377,8.15,8.5207,4.6789,4.9244,0.07485,4.467,1.9909,2.4458,0.37923,0.38773,4.1313,4.7119,3.8533,4.0384,1.9376,1.7295,10.9565,9.4514,3.3603,3.0346,4.1024,3.9467,4.6632,4.4996,1.8996,1.8532,1.7548,1.7836,4.0432,3.5221,7.894,8.0619,2.1974,2.2761,6.5246,6.259,11.9546,11.8025,8.3185,7.8848,2.4443,2.4985,4.7873,4.9715,1.8458,1.9453,18.5718,18.4741,4.9903,5.3035,3.9216,4.4004,1.0775,1.1116,2.656,2.5166,8.372,7.0037,14.8922,13.2979,2.9953,3.5094,4.3302,4.1854,3.0321,3.1416,1.5115,1.4155,4.0406,4.6327,10.9019,10.9844,3.4273,3.3717,2.5604,2.5088,2.2714,2.5248,11.1992,11.1987,2.3298,2.8676,2.1531,2.4032,11.8631,11.7792,2.0422,1.9261,1.2933,1.3543,15.1247,14.7828,5.7548,5.6205,8.2741,8.9492,4.4534,3.6212,10.2284,11.1606,8.4316,8.4616,8.4608,8.3006,3.3878,3.8217,1.6638,1.8083,,27,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,946
+desd948,76,76,M,2.4682,2.4571,0.28581,0.33732,0.65022,0.70051,15.3609,2.3546,2.3038,42.5346,42.6192,12.794,13.644,151.1903,148.1433,2.7381,3.0829,2.8349,0.99284,1.5065,31.3476,32.0552,1.2711,1.2994,3.3326,3.2175,5.3636,5.6673,3.8011,3.8831,0.08302,4.0987,2.0712,2.5436,0.41304,0.38533,4.0312,4.706,4.1727,4.6432,1.6703,1.5717,9.61,8.2307,3.666,3.319,4.1108,4.3194,4.9808,4.0945,1.4815,1.3429,1.8778,1.953,3.7183,3.3382,7.167,6.9648,1.9019,1.8953,6.4312,6.4585,12.3185,12.081,8.5193,8.0496,2.0495,2.4265,4.2979,4.2699,1.6483,1.7445,20.3537,18.4001,5.6415,5.9223,3.7841,4.0077,1.1702,1.3535,2.9708,2.8146,8.0908,6.6326,14.9277,14.9531,2.5282,2.7739,4.0047,4.0093,2.944,2.9253,1.5239,1.5872,4.074,4.7787,11.3982,10.7039,2.7099,2.8411,2.6472,2.8041,1.9108,2.3713,9.1919,11.7269,1.9431,2.345,2.2918,2.3124,14.0005,13.0547,1.7924,2.1135,1.1721,1.2275,14.225,15.124,4.9986,5.0761,7.2824,8.0917,3.8669,3.134,10.9174,10.6438,7.8384,6.6392,7.2795,7.1147,3.3409,3.9026,1.6507,1.6991,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,947
+desd949,85,85,M,2.6191,2.5393,0.38018,0.39586,0.74336,0.78073,16.1262,2.6719,2.6895,39.2035,41.5414,12.6382,13.4068,201.5903,200.7235,2.1683,3.175,3.0335,1.0505,1.2494,25.6969,28.4876,1.6206,1.5737,3.3738,3.1469,6.5881,6.6044,4.6038,4.8757,0.08126,4.814,2.0194,2.3144,0.38239,0.38384,3.7422,4.2915,4.1091,4.2311,1.7418,1.6694,9.5638,8.3953,3.479,3.1567,4.168,4.5054,4.7899,4.7757,1.4113,1.4146,1.9208,1.8671,3.8508,3.3598,6.9071,7.0253,2.0468,2.1019,6.0251,5.3023,11.0173,10.0447,7.8474,7.4427,2.2476,2.3732,3.9778,4.426,1.7657,1.6281,17.0618,16.9412,4.9182,5.6348,3.9253,3.8666,0.90442,0.99913,2.2481,2.1599,7.7374,6.5146,13.305,11.2738,2.5289,2.8619,4.0199,3.952,3.3483,2.7283,1.5778,1.4449,3.5546,3.9026,11.9276,11.4987,2.7524,2.8589,2.5593,2.2662,2.1933,2.2847,8.7266,9.9287,2.2682,2.5752,2.2937,2.2557,11.3061,11.9401,1.792,1.9411,1.3166,1.3644,13.9933,13.8501,5.2099,5.4187,8.0461,8.6843,4.2109,3.6641,10.6321,11.59,7.1461,6.7763,7.4054,6.4164,3.269,3.3501,1.6457,1.8361,,17,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,948
+desd950,65,65,F,0.98147,1.759,0.33504,0.38328,0.82722,0.81606,13.6372,2.4491,2.354,40.7918,41.3507,10.0802,8.9953,223.5163,216.5383,1.029,2.9997,2.9587,0.343,0.41529,8.3108,11.6928,1.4165,1.3632,3.5597,3.455,6.1974,6.1372,3.8999,4.1494,0.06742,3.1358,1.988,2.097,0.33985,0.34437,3.6402,3.9625,3.6874,3.7863,1.6426,1.4954,9.7765,9.1829,2.8293,3.0208,3.5675,3.3355,4.3404,4.0278,1.6187,1.671,1.8392,1.7542,3.2442,3.6121,7.8632,6.6344,1.9155,2.1122,6.0584,5.5259,10.8778,10.2375,7.1358,7.1866,2.1651,2.2204,3.9778,4.228,1.5917,1.5876,17.3869,17.9538,4.2627,5.9041,3.6249,3.8401,1.0832,1.1926,2.1203,2.9515,6.6975,6.2394,14.7833,13.0736,2.5652,2.7924,4.0136,3.8738,3.2367,3.4594,1.4407,1.3513,3.8068,4.3145,10.444,10.1569,2.7955,2.9977,2.1191,2.0623,1.963,1.9125,9.3283,10.4723,2.0923,2.1792,1.7206,2.0569,10.4972,11.5839,1.7638,1.533,1.0297,1.1325,13.2237,13.027,4.8122,4.8952,8.062,7.965,3.9745,3.5751,9.887,10.4126,7.3024,7.1457,7.1644,6.2556,3.2606,3.9512,1.3372,1.3227,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,949
+desd951,,,M,2.4514,2.0322,0.34701,0.34666,0.84531,0.71981,22.0641,2.5624,1.6978,52.1853,52.2641,20.511,19.3243,245.8511,238.2906,2.233,3.3497,3.0874,0.96117,1.0446,32.8686,36.3813,1.6193,1.6208,3.5546,3.8535,6.9738,7.0742,4.8444,5.103,0.10665,5.6373,2.3638,2.9675,0.37894,0.3934,4.2702,4.7775,4.2215,3.9313,1.6155,1.552,9.615,9.4377,3.8376,3.3336,4.0561,4.0122,5.7872,5.2259,1.6092,1.4878,1.8085,1.8671,3.8239,3.8607,7.5028,6.8239,2.2793,2.2232,7.1968,7.4721,12.1627,10.7906,8.2625,7.5048,2.133,2.4125,4.6893,4.7795,1.8483,1.8501,18.9174,19.788,5.8835,6.6704,3.7239,4.276,0.94118,1.1814,2.0523,2.751,8.8827,7.5799,15.7273,13.7679,3.7168,5.7639,3.9853,4.2695,3.8443,3.163,1.4291,1.4772,4.1098,4.3027,10.9989,10.0543,3.0706,3.2449,2.3244,2.2809,2.0026,2.3823,11.1992,12.4707,2.1732,2.4762,2.2256,2.2655,12.5486,13.1256,1.8902,2.8074,1.3407,1.4052,16.4027,15.0927,6.077,6.0104,8.3242,9.1652,4.6967,4.1031,9.9513,9.7962,7.0267,7.1852,7.7944,7.2036,3.2533,3.4383,1.6169,1.7415,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,950
+desd952,69,69,F,1.4994,2.6631,0.34606,0.38521,0.69704,0.64098,17.3583,3.0644,2.8513,43.2544,43.4035,13.8917,14.4429,203.3339,201.5569,1.4373,2.9139,2.8019,0.47172,0.49947,16.0833,20.0821,1.3945,1.3795,3.3088,3.1882,6.1564,6.3614,4.2623,4.5315,0.0892,4.3788,2.0161,2.3483,0.35284,0.35716,3.525,3.9461,3.6267,3.9336,1.5942,1.3199,10.1877,9.1753,2.8482,2.7817,3.984,4.0141,4.2835,4.1327,1.3679,1.2057,2.033,2.0164,3.2479,2.9676,6.5704,6.0968,1.8239,2.0598,6.1681,5.7585,9.5523,10.5956,7.0904,6.3769,2.1142,2.0547,4.0911,4.1706,1.5811,1.5876,15.1184,16.5744,5.123,6.1263,3.4649,3.86,0.8514,1.0391,2.1904,2.3103,6.8391,6.3812,12.0458,13.5345,2.2906,3.2931,3.9168,3.9667,3.3829,3.2799,1.4056,1.3618,3.9989,4.2587,10.3754,9.9526,2.3849,2.6581,2.3501,2.2649,2.2338,2.5173,9.7286,10.7874,2.2844,2.2895,2.1534,2.0593,11.388,12.094,1.6137,1.9742,1.2428,1.2614,13.8201,13.1121,4.8735,5.0962,7.077,9.1424,3.8805,2.992,9.4279,9.1445,6.4612,6.5359,7.3106,7.624,3.3747,3.6085,1.5415,1.6046,,30,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,951
+desd953,70,70,F,2.4142,2.2218,0.33104,0.42615,0.83918,0.8721,16.0241,2.3362,2.2964,41.5171,45.4621,12.6077,12.9331,214.4218,210.2855,2.0844,3.2027,3.0738,0.83194,0.76028,23.9601,26.8131,1.5208,1.4512,3.3505,3.5089,6.2277,6.7249,4.4644,4.7191,0.09323,4.4402,1.9541,2.296,0.41184,0.3906,4.6205,4.8598,4.2447,4.5975,1.926,1.7562,10.9287,10.1742,3.0371,3.0054,4.2444,4.399,4.3487,4.7369,1.5516,1.5666,2.2787,2.1359,4.3682,4.0207,7.1384,7.3729,2.0694,2.2066,7.6147,6.5178,11.3475,11.0739,7.7003,7.1441,2.3845,2.7207,4.4032,4.9895,2.035,1.984,20.7405,20.5486,5.5976,7.1611,3.8739,4.2149,0.95377,1.036,2.5734,2.549,9.1646,7.8788,13.8898,13.0046,3.1843,3.3043,4.3009,4.3724,4.0074,3.4918,1.8121,1.7543,4.2617,4.7365,10.4945,10.3626,2.8378,3.2449,2.5976,2.855,2.4736,2.5505,9.2692,11.6356,2.4833,2.6944,2.3842,2.6681,12.0314,12.9433,1.9556,2.2623,1.3605,1.379,14.6511,17.4915,5.1314,4.8956,6.923,8.0256,4.2727,3.3894,10.9979,11.1783,7.3433,7.1216,7.8609,7.4728,3.9793,4.2752,1.6713,1.5202,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,952
+desd954,60,60,F,1.6007,1.9146,0.36347,0.40587,0.81818,0.82365,17.9623,2.8241,2.5681,46.1595,46.635,13.6561,13.873,206.3472,203.3802,1.7597,3.2027,3.0054,1.5235,1.3809,31.295,33.4058,1.4961,1.4541,3.3207,3.3141,6.6723,7.0188,4.3567,4.6199,0.06532,4.6394,2.1004,2.4806,0.35503,0.37608,3.7313,4.1727,3.8964,4.0682,1.7692,1.5874,9.7901,8.6035,3.2904,2.9452,3.8993,4.138,4.3664,4.2503,1.5516,1.5372,1.8671,1.8507,3.3523,3.2678,6.8674,6.4708,1.8311,1.93,6.0933,6.3134,10.3745,9.9259,7.659,7.1498,2.2048,2.3807,4.1706,4.5183,1.6885,1.6313,17.5811,18.325,4.9182,5.7157,3.5901,3.8426,1.161,1.2133,2.8162,2.8842,7.3052,6.6387,13.5573,13.4424,2.9431,3.0627,4.0702,4.2594,3.386,3.1416,1.3933,1.4181,3.5251,3.8657,9.6719,9.4352,2.9635,3.2237,2.0511,2.1921,2.0051,2.2584,10.3026,11.0887,2.3077,2.3726,1.8901,2.173,12.0222,11.9228,1.6444,2.0838,1.161,1.1584,13.5098,13.3514,4.5318,4.9835,7.763,8.2238,4.1034,3.1844,9.0019,9.2288,7.0259,7.2854,7.0906,6.8573,3.3051,3.4384,1.3723,1.3711,,24,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,953
+desd955,78,78,M,3.0911,2.5393,0.37516,0.40365,0.84848,0.87834,18.1907,2.8857,2.8398,46.439,46.0664,14.2442,14.3871,200.6661,191.4103,2.2756,3.6912,3.3839,2.0116,1.4956,31.2259,32.0552,1.3688,1.3587,3.5275,3.8389,6.1684,6.4669,4.5574,4.7364,0.06372,5.0502,2.3057,2.7636,0.41278,0.39466,4.0091,4.7562,4.5114,4.6694,1.6962,1.3355,9.615,8.9409,3.6043,3.623,4.3265,4.7189,5.3684,4.7596,1.5978,1.6225,1.9053,2.1288,3.4999,3.4748,7.3746,7.0828,1.795,1.8851,7.0583,7.1021,12.1539,12.1686,8.5997,7.7697,2.0495,2.0016,4.827,5.3246,1.5281,1.5775,17.7081,16.0005,5.1874,5.6858,3.6869,3.4488,1.2995,1.2298,2.8414,2.9668,8.2643,7.372,14.0658,13.9066,3.9516,4.4609,4.2578,4.593,3.1325,3.1692,1.3809,1.4158,4.3894,5.0361,11.757,10.7933,3.0706,3.1881,2.7021,2.7233,2.1122,2.6676,11.5448,13.0472,2.1878,2.2995,2.3358,2.2754,9.9662,11.4284,1.8675,2.0741,1.2384,1.2961,13.268,14.2373,5.3727,5.5141,8.1332,8.7963,4.4252,4.1879,9.6149,11.9904,6.8985,7.0583,7.7156,7.0299,3.3832,3.6508,1.5237,1.5672,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,954
+desd956,68,68,M,1.8597,2.6021,0.30154,0.33027,0.69146,0.65329,15.5866,2.3546,2.3038,38.4725,39.0933,12.2977,12.4404,188.2278,194.9133,1.6263,2.8093,2.6841,0.69365,0.59791,14.9264,21.9909,1.3624,1.315,2.8944,3.0414,5.7971,5.5759,4.145,4.1851,0.06565,3.9495,1.89,2.0222,0.30675,0.31563,4.133,4.1983,3.5469,3.7776,1.4124,1.3274,8.0657,7.2396,2.5069,2.5517,3.5194,3.4004,3.8955,3.4814,1.2911,1.3576,1.7125,1.7282,3.1919,3.0048,6.1386,5.759,1.6994,1.6888,5.6885,4.9306,9.6159,9.1482,6.8636,5.8129,1.9844,2.0345,3.9624,3.9006,1.4245,1.4548,14.5155,14.5091,3.9228,4.7552,3.2234,3.3296,0.76103,0.79301,2.1241,1.9321,7.0436,6.3812,12.7,11.827,2.1221,2.4683,3.7215,3.6789,3.0878,3.3054,1.4511,1.2037,3.6107,3.8171,9.7507,10.4289,2.5148,2.6681,2.144,1.9411,2.0738,1.9609,8.9708,10.3743,1.9175,2.1636,1.8667,2.0156,11.2482,10.2998,1.6213,1.6416,0.96188,0.99286,11.9794,11.1137,4.6001,4.9238,6.3937,7.8321,3.2598,2.7703,9.1265,9.1825,6.2157,6.018,6.2998,6.1193,3.1653,3.3739,1.3568,1.3848,,23,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,955
+desd957,,,M,2.1427,2.4283,0.27463,0.31748,0.65022,0.6567,17.5521,2.8393,2.3782,45.7654,46.3144,17.1083,17.357,242.2161,238.2906,1.9669,2.7931,2.4759,2.2907,1.9334,19.6264,21.0381,1.7801,1.7443,3.6701,3.5296,6.2777,6.5556,4.6057,4.9294,0.09039,5.0546,2.231,2.7636,0.29742,0.31393,4.4232,4.6633,3.8345,4.2382,1.4529,1.3767,10.2363,8.6252,3.1364,2.9269,4.0336,4.1119,4.5157,3.6558,1.2354,1.2884,2.038,1.8781,3.7219,3.7446,5.6571,5.671,2.0589,2.0723,6.0598,5.7805,8.0071,8.6306,7.7439,7.6062,1.8889,2.0831,4.7228,4.7063,1.7793,1.8793,18.9489,20.1029,5.0966,5.4664,3.0089,3.5735,1.1493,1.243,2.6392,2.5869,7.1681,6.5859,8.3232,10.6118,2.7605,3.4704,4.0605,4.4023,3.7043,3.859,1.3361,1.3629,3.9306,4.4367,10.3895,10.5725,1.593,2.8521,2.2248,2.2859,2.1185,2.4116,8.8901,10.8421,2.238,2.353,2.1426,2.2782,11.3873,11.4781,1.5149,1.9192,1.09,1.0943,15.2248,15.2984,5.328,5.0925,7.3279,9.726,4.0344,2.9155,10.0717,10.417,5.8004,5.9119,6.5118,5.9722,2.9747,3.6533,1.3599,1.5647,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,956
+desd958,76,76,M,1.1357,1.7496,0.32501,0.34567,0.92165,0.88935,18.2564,2.3362,2.647,49.0461,47.6329,15.0423,14.7204,203.9915,198.4048,1.029,3.4111,3.2125,0.39907,0.37814,10.3441,9.6637,1.5049,1.4666,3.4495,3.5857,6.7928,6.9347,4.5574,4.7287,0.0698,4.9801,2.174,2.7544,0.33326,0.35564,3.5433,3.854,3.5266,3.7761,1.4067,1.4063,9.1051,8.336,3.4156,3.0523,3.4909,3.7558,4.7749,4.1609,1.7915,1.8342,1.7108,1.7876,3.2413,3.3803,8.1937,7.683,1.9094,1.9581,6.6976,6.8599,11.5841,11.941,9.0811,7.9168,1.885,2.0739,4.5526,4.6586,1.4951,1.5214,17.2089,17.3982,4.9671,6.07,3.113,3.9265,1.3114,1.1114,2.8439,3.0216,6.3706,5.7266,13.6094,13.8303,3.4065,3.896,4.453,4.5027,3.4185,3.4294,1.3089,1.2491,4.3285,4.728,10.231,10.4413,3.0453,3.2821,1.9205,2.2063,2.0579,1.9104,9.6833,10.4789,2.0466,2.2599,1.7118,2.0694,10.0057,11.4284,1.7499,1.6304,0.99021,1.0239,11.7635,11.8102,5.0806,4.6149,7.4083,7.7832,4.285,3.8479,10.6873,10.6914,6.047,7.1046,8.3723,8.5867,3.1968,3.0854,1.2238,1.2918,,29,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,957
+desd959,68,68,M,1.9094,1.9663,0.37089,0.42178,0.90876,0.90626,17.6402,3.3177,3.1177,46.4549,47.4475,14.2605,13.7046,201.9419,195.9681,2.9852,3.684,3.3839,0.68332,0.6361,33.4486,36.4767,1.6159,1.6271,3.8694,3.8576,6.7401,7.4037,4.589,4.8199,0.06153,5.0546,2.5427,2.8145,0.38429,0.37465,3.9791,4.2575,4.1206,4.3726,1.5401,1.5227,9.3647,8.7108,3.3191,2.9452,4.0287,4.1651,4.6626,4.4358,1.7817,1.7886,1.8298,1.823,3.3854,3.2018,8.055,7.714,1.978,2.0515,6.6247,6.2071,11.64,11.8025,8.4893,7.7407,2.0562,2.4125,4.5711,4.5385,1.6169,1.7653,17.3506,19.0194,5.0217,5.6957,3.6053,3.9675,0.95377,1.0155,2.4558,2.4667,7.2701,6.7256,13.6094,13.2979,3.0677,3.1802,4.0047,4.1568,3.2752,3.2356,1.5031,1.4181,3.7311,4.24,10.4,10.0906,3.1435,3.3865,2.5509,2.5805,2.5448,2.5273,9.4866,12.15,2.3529,2.5496,2.2556,2.575,12.1052,11.5614,1.7727,2.195,1.0979,1.1542,13.1853,14.0161,4.8422,5.0241,7.3572,9.423,4.1532,3.4117,9.2403,9.647,6.7251,7.4916,7.8905,8.4928,3.1766,4.0589,1.6409,1.8102,,28,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,958
+desd960,65,65,F,1.1076,1.3598,0.36371,0.40587,0.87013,0.90119,17.5955,2.7863,2.8797,47.735,47.8739,14.2605,15.2252,245.3837,235.9845,1.0792,3.2866,3.0859,0.57188,0.44755,9.6558,9.6637,1.5158,1.5196,3.5165,3.7598,6.4114,6.74,4.6308,4.9063,0.07985,4.5837,2.2981,2.6527,0.37417,0.34714,3.6227,4.2337,4.0128,4.3376,1.7043,1.4936,10.1877,9.301,2.6981,2.4513,3.5289,4.0501,3.9205,3.4888,1.7302,1.8278,1.983,1.9523,3.492,3.2703,7.1333,7.5174,2.0165,2.0947,6.8316,6.5861,11.1866,11.4554,7.7853,7.146,2.2388,2.2746,4.2896,4.2647,1.7892,1.6913,17.1072,17.6304,5.0409,5.6957,3.7609,3.9596,0.89224,0.95416,2.678,2.4824,7.3406,6.721,14.2378,13.1288,3.2217,2.8547,4.3009,4.175,3.1835,3.2136,1.4561,1.4658,3.8402,4.1234,9.2007,9.5475,2.7557,3.108,2.2143,2.1583,1.7577,2.03,9.3051,11.9524,2.4268,2.3577,2.0199,2.2512,10.3723,11.5078,1.5904,1.7077,1.0864,1.1393,12.8768,13.0121,5.0819,5.243,7.2661,8.9568,3.9438,3.4355,10.6959,10.729,7.5386,7.3378,8.145,7.8093,3.2797,3.6927,1.3538,1.493,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,959
+desd961,73,73,M,1.6891,2.2007,0.32552,0.35956,0.59698,0.63104,17.5517,2.3829,2.2448,43.2213,40.841,15.0955,15.8019,232.1245,226.3817,1.4226,2.6794,2.4134,1.1237,0.76939,16.123,18.2211,1.5604,1.5973,2.9734,3.0408,6.3113,6.5945,4.3958,4.8843,0.07276,4.3109,2.1845,2.4347,0.34375,0.32516,3.8541,4.3399,3.4303,3.5961,1.7181,1.5505,10.2363,8.5074,3.1609,3.191,3.9493,3.4424,4.214,4.0173,1.3058,1.1912,1.7659,1.7366,3.3198,3.5652,6.8917,6.2913,2.0388,2.0114,6.7724,6.401,10.126,9.7291,6.9129,7.1164,2.2145,2.4265,4.5969,4.5669,1.7475,1.7409,16.6827,17.0816,5.0555,5.9096,3.6669,3.7741,1.0611,0.99431,2.465,2.4369,7.2289,6.5477,12.5326,11.984,3.0269,3.807,3.7588,3.8016,3.473,3.5948,1.4436,1.5459,3.993,4.3122,10.0864,10.3716,2.7302,2.8722,2.0965,1.9205,2.2849,2.4582,8.2134,10.25,2.1961,2.434,1.8945,2.0488,12.921,12.0868,2.069,2.0038,1.1427,1.1358,13.1937,13.4957,4.913,5.4187,7.9016,8.8249,4.5928,3.8687,9.3681,10.6744,7.3159,6.8093,7.5055,6.2351,3.2533,3.876,1.5011,1.5136,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,960
+desd962,77,77,M,1.6946,2.1247,0.37711,0.41771,0.7548,0.68479,15.6103,2.7088,2.7719,17.4511,14.2174,9.3302,3.9949,182.6154,179.6528,2.0996,2.7682,2.5595,0.89895,0.80324,24.2377,27.1775,1.2967,1.3368,3.6399,3.7474,6.1141,6.183,4.11,4.2826,0.079,4.0379,0.01071,1.1706,0.37188,0.37066,3.8507,4.0696,4.1186,4.2244,1.5828,1.1857,8.6949,9.0757,2.8271,2.7872,3.5212,3.4296,3.525,3.88,1.4491,1.2728,2.1566,2.0164,3.4485,3.177,6.3448,6.2422,1.9206,2.012,5.3781,4.7591,9.8718,10.0482,6.8706,5.6735,1.9596,2.0383,4.3398,4.1489,1.5715,1.6054,16.1075,15.9692,4.8364,6.139,3.6249,3.8273,1.3812,1.0161,3.123,2.5253,6.5669,6.171,12.4183,12.4628,2.7174,2.9293,2.5461,2.3413,3.551,3.2757,1.493,1.3204,3.7788,3.884,10.2125,10.7938,2.3207,2.7302,2.4793,2.2883,2.1007,2.2859,9.2381,10.4106,1.967,2.3203,2.0168,2.1983,11.1343,11.0993,1.6544,1.9957,1.161,1.1993,13.6789,13.027,4.8385,4.7192,7.3483,7.3882,3.4902,2.814,9.3173,9.8113,6.4836,6.9802,6.8311,6.9503,3.4369,3.9512,1.2959,1.3618,,25,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,961
+desd963,,,F,2.053,3.1127,0.36363,0.32138,0.70472,0.71856,17.356,2.7477,2.2636,45.0926,45.2612,14.3518,14.9131,203.0384,197.9945,2.2084,2.9465,2.7187,1.1172,1.3765,23.0322,35.4663,1.3988,1.428,3.4311,3.5257,5.9256,6.9973,4.2138,4.3707,0.06495,4.3864,2.1071,2.4456,0.30675,0.36524,2.7234,3.6164,3.8416,4.0384,1.4349,1.3079,7.3881,7.1368,3.666,3.7261,3.5572,3.3778,5.1278,5.4507,1.3679,1.3508,1.8441,1.8599,3.3566,3.0902,6.3165,7.1173,1.7864,1.8647,6.9756,7.2429,9.1927,10.6466,7.8971,7.4887,1.8851,2.0619,3.1064,4.0456,1.4273,1.458,16.0591,15.7639,5.0888,5.7261,3.1025,3.5444,1.1493,1.0322,2.4373,2.2378,6.5291,5.7123,11.343,13.0084,3.8629,4.3907,3.914,4.1242,3.1312,3.3434,1.3185,1.313,3.0514,3.4843,7.7055,7.5474,2.672,3.0222,2.1383,2.2194,1.8025,1.9119,10.3476,10.8241,2.0466,2.2394,1.737,2.1713,11.9639,12.3543,1.6347,1.7541,0.88812,1.0064,13.0274,12.251,5.0149,4.7219,6.9414,7.3055,4.9115,3.9616,8.5176,7.6989,6.1197,6.4992,6.5621,6.3247,3.0548,3.5039,1.164,1.5708,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,962
+desd964,66,66,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,963
+desd965,,,F,0.70972,1.2525,0.34421,0.37091,0.81146,0.764,17.7846,2.5342,2.7543,40.896,41.152,13.5467,14.0153,216.9418,209.6925,1.1615,3.1175,2.822,0.36495,0.34422,11.1323,11.9061,1.5012,1.4491,3.3185,3.2011,6.9572,6.9395,4.2532,4.6351,0.07985,3.7562,2.0176,2.3776,0.34513,0.37409,4.1239,4.6802,3.5085,3.4546,1.6275,1.4833,9.6815,8.0039,3.1924,2.9538,3.8864,3.6587,4.1039,4.0345,1.6458,1.4976,1.6815,1.6726,3.5592,3.0588,7.5268,7.6213,1.9173,1.8986,6.6976,6.362,11.4472,11.7663,7.901,7.0528,2.0886,2.3551,5.2099,5.5488,1.6125,1.7134,17.6055,17.1771,4.7446,6.0615,3.6826,3.7893,1.1946,1.0199,2.3766,2.5952,7.7854,6.8875,13.8112,15.7739,2.796,3.1118,3.9041,3.9532,3.3687,3.34,1.5239,1.4082,4.023,3.9408,9.8153,9.845,2.9314,2.9733,2.0016,1.9671,1.9359,2.1053,7.6773,9.912,2.3405,2.432,1.9364,2.1139,11.3471,11.7325,1.7509,1.7062,1.2357,1.3149,13.2791,14.4246,5.193,4.9853,7.059,7.7548,3.9385,3.1461,10.1847,9.5167,7.09,7.6438,6.9409,7.9921,3.6155,3.1706,1.3581,1.4946,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,964
+desd966,77,77,F,1.9673,2.1503,0.305,0.38244,0.6034,0.6127,14.6397,2.5445,2.4758,41.3288,41.053,12.1234,12.0742,176.0942,171.0676,1.8061,2.6271,2.5154,0.89895,0.6879,20.2083,24.2123,1.2718,1.2242,2.8162,2.8551,5.8536,6.2727,3.7026,3.9038,0.07289,4.1318,2.0453,2.3454,0.33936,0.3141,3.7277,4.1335,3.6051,3.5946,1.5405,1.3274,8.1557,8.0098,2.4866,2.3553,3.4837,3.6058,4.0856,4.1609,1.2083,1.1929,1.6328,1.6887,3.1512,2.9341,6.0359,6.2742,1.8534,1.8994,6.1881,6.1828,8.6314,9.1264,7.1919,6.3769,2.038,1.9589,4.3012,4.0897,1.5451,1.5493,15.6855,15.9692,4.6568,5.3467,3.4559,3.8057,0.89391,1.1048,2.2109,1.9644,6.5775,5.7755,8.7726,10.4941,2.5652,2.9214,4.0324,3.7844,3.0043,3.0148,1.2752,1.1488,3.6139,3.9031,9.5141,9.1919,2.4985,2.5634,2.1889,2.3411,1.7461,2.2491,8.0006,9.7953,2.0373,1.9831,1.9643,2.0287,12.156,11.8026,1.5081,1.635,1.1364,1.1941,12.9133,12.9226,4.6055,4.6141,6.2964,8.2094,3.907,3.0052,8.0575,9.3309,6.079,5.1293,6.5621,5.8077,3.0297,3.2663,1.353,1.4902,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,965
+desd967,72,72,F,2.0414,1.6804,0.37638,0.43295,0.84292,0.84107,16.4958,2.9267,3.0819,46.1005,45.2612,13.4651,13.784,211.9412,208.929,1.8061,3.2198,3.0738,0.6937,0.75575,21.4729,20.9017,1.4942,1.4679,3.5463,3.5983,6.7401,6.8888,4.2692,4.4778,0.07148,4.3048,2.1753,2.4456,0.37691,0.36925,4.3489,4.4999,3.6746,3.839,1.6453,1.5729,9.0115,7.8604,3.2904,3.1394,3.4921,3.2949,4.2417,4.011,1.6195,1.6028,2.0376,1.8254,3.3198,3.2323,6.8956,7.0472,1.9686,2.0293,6.5811,5.9785,10.3411,10.3088,8.0576,7.146,2.1988,2.3113,4.8128,4.5013,1.6021,1.7134,18.9184,19.9306,5.0888,5.6453,3.6617,3.8666,0.88561,1.021,2.1624,2.5646,7.1016,6.6809,13.2348,12.7032,3.1998,3.2421,4.0595,3.9924,3.8079,3.3111,1.5253,1.2866,3.8666,4.106,10.2366,10.4257,2.9008,3.1722,2.1295,2.1096,1.8566,1.9191,9.8788,10.212,2.2339,2.474,1.7823,2.2018,11.6594,11.7327,1.6251,1.598,1.122,1.1818,12.557,12.6856,5.1068,5.5878,7.4458,7.3055,3.9438,3.3476,10.0453,10.1367,7.0951,7.3936,7.7616,6.7235,3.4369,3.7102,1.1849,1.3108,,29,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,966
+desd968,75,75,F,2.0548,1.7023,0.36445,0.41872,0.68032,0.70698,18.4171,3.1676,2.7766,44.1127,43.4867,14.4027,15.3281,222.5464,216.6957,1.6106,2.6126,2.4835,0.86284,0.8374,19.1836,21.5958,1.5439,1.6443,3.6943,3.7474,6.6104,6.4111,4.5769,4.7468,0.08474,4.7616,2.3187,2.6047,0.36423,0.36399,3.6901,4.2625,4.1658,4.2786,1.7366,1.5874,9.6472,7.9257,2.8901,2.8997,4.0083,4.2323,4.1992,4.4238,1.3862,1.5362,1.919,1.8544,3.5073,3.4422,7.1137,7.107,1.8942,1.9946,6.9891,6.3329,11.4342,10.7932,7.8756,7.5599,2.2787,2.4227,4.4676,4.5402,1.5996,1.7425,18.2829,18.3586,5.1591,5.7989,3.5675,3.6104,0.99441,1.2133,2.4198,2.5876,7.2797,6.6941,13.305,12.9016,3.0832,3.8253,4.3071,4.2052,3.0754,2.9994,1.596,1.5541,4.0614,4.4726,10.1131,10.3582,2.6925,3.0296,2.2716,2.4319,2.2513,2.4227,9.654,11.5959,2.3178,2.474,2.0977,2.2557,12.1733,11.132,1.9074,2.0921,1.1782,1.2195,14.7709,14.606,5.0316,5.033,7.8114,8.5936,4.0794,4.2325,10.5337,10.5685,7.4318,6.5692,6.7199,6.9968,3.1585,3.3501,1.4361,1.5884,,20,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,967
+desd969,66,66,M,0.84724,1.7185,0.3977,0.44194,0.88409,0.8219,19.3435,2.7612,2.6721,45.3326,45.2649,14.5408,15.1152,239.7024,235.5425,0.78724,3.1602,3.0188,0.49761,0.49363,7.5822,9.9239,1.7118,1.7088,3.7745,3.8012,7.7732,7.9295,4.6789,5.0208,0.07369,4.1392,2.0528,2.3744,0.41897,0.42563,3.7232,4.3216,3.811,3.9407,1.8186,1.6453,11.1169,8.9531,3.332,3.1909,3.2401,3.6841,5.0393,5.172,1.6549,1.5702,1.8267,1.8645,3.7168,3.507,7.2452,7.0828,2.1663,2.2954,7.4434,7.4495,11.1037,10.964,7.7678,7.4578,2.3512,2.5762,4.1164,4.2699,1.8408,1.8339,19.4435,18.4817,5.6932,6.7319,3.8157,4.3392,1.273,1.0984,2.44,2.77,7.5534,6.583,12.9644,13.1896,3.2372,3.9531,3.9041,3.9924,3.53,3.307,1.6808,1.4969,4.0465,4.089,10.4226,10.2564,2.8498,3.1161,2.1178,2.146,2.176,2.1531,8.9747,10.3553,2.4015,2.45,1.9514,2.1839,11.6594,11.8905,1.8111,1.9032,1.2019,1.3117,14.6171,14.9169,5.1464,4.9526,8.3342,9.3872,4.285,3.8482,9.9526,10.146,7.1756,6.875,7.3187,7.2039,3.6254,4.2459,1.521,1.507,,30,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,968
+desd970,,,M,1.7433,2.3245,0.40865,0.41321,1.0465,1.0069,20.4108,3.74,3.4738,51.3226,50.5091,15.1496,15.5261,233.6644,236.6437,1.9797,4.0272,3.6754,1.0738,1.1065,31.4798,29.7356,1.8519,1.8286,3.958,4.0653,8.2756,9.3331,5.2466,5.4219,0.07616,5.1347,2.4147,2.9334,0.47669,0.44193,4.4457,4.8053,4.7838,5.316,2.1762,1.6474,9.5249,8.2205,3.1923,3.1621,4.5601,4.8171,4.1389,4.7357,1.9785,1.8275,2.4494,2.3856,5.8776,4.4307,7.3468,7.2873,2.4575,2.423,6.8896,6.8257,11.2816,11.508,7.8192,7.9235,2.5661,2.6536,4.1448,4.5369,2.196,2.1024,20.8614,20.2197,5.117,6.4884,4.2985,4.5667,1.2274,1.0533,3.1048,2.5553,8.1339,7.0881,14.0727,13.5805,2.9397,3.1936,4.3109,4.7443,3.968,3.9462,1.7436,1.6829,4.2989,4.9742,10.4945,11.3595,2.921,3.1965,3.0874,2.9309,2.8213,2.5593,9.6887,12.15,2.6022,2.8106,2.5633,2.7744,14.2536,14.3597,2.5439,2.1991,1.4417,1.443,13.344,15.2206,5.8464,5.8171,7.0599,8.2955,4.2164,3.4882,10.3841,12.7536,7.6115,6.3064,8.7804,7.923,3.9177,4.2673,2.0162,1.6798,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,969
+desd971,67,67,M,2.0299,2.8467,0.37692,0.4713,1.0559,1.0282,27.2308,2.969,2.9302,51.3652,50.3785,17.6235,18.2437,267.6691,268.7903,2.0269,3.73,3.7705,0.831,0.73717,31.4798,31.0679,1.73,1.7008,4.7141,4.7899,8.0712,8.3188,5.0187,5.2838,0.07687,5.3326,2.359,2.9397,0.45912,0.47435,4.4632,5.3928,4.7992,5.01,1.8966,1.3935,11.7542,10.0604,3.0736,3.0552,4.2181,4.6944,4.2201,4.1975,2.4117,1.9169,2.4777,2.3582,4.3129,4.3146,8.4549,8.1521,2.5943,2.687,6.777,7.1936,13.1236,12.3874,8.0981,7.7784,2.422,2.283,5.1863,5.5615,2.2046,2.1285,19.3203,20.819,5.3797,6.6668,4.3027,4.4376,1.041,1.5042,2.7471,3.2996,9.0757,7.724,15.3602,15.7275,3.3871,3.9225,4.4752,4.6028,4.5249,3.6933,1.7251,1.4322,4.3679,4.979,10.9832,11.1584,3.4057,3.6837,2.5671,2.5942,2.415,2.5739,12.1582,11.7424,2.4879,2.3966,2.2593,2.5655,15.4733,16.7357,2.0878,2.1086,1.3336,1.4052,15.5987,15.8127,6.055,5.4839,8.8272,9.0909,4.3263,3.144,10.7756,11.9308,8.4401,7.4672,8.7387,8.8122,4.2315,4.0589,1.6302,1.9359,,25,60-69y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,970
+desd972,,,F,1.6135,1.7191,0.33279,0.38686,0.83645,0.81498,16.6399,2.6115,2.3667,44.2168,42.9856,14.325,14.2885,213.2188,208.3012,1.5266,3.2427,3.2571,0.8956,0.86925,16.123,20.6057,1.4597,1.4622,3.2129,3.136,6.5265,6.6927,4.2692,4.4441,0.06634,4.418,2.2031,2.3908,0.37607,0.37687,3.6059,4.2679,3.7611,3.8908,1.6668,1.5455,9.8237,8.9214,3.3215,2.9169,3.8619,3.9018,4.62,4.24,1.6851,1.671,1.7651,1.8812,3.3198,2.9772,7.2848,7.2873,1.8851,1.9731,6.3114,5.7875,11.4184,10.8767,7.7182,6.8327,2.1152,2.4126,4.252,4.447,1.6483,1.7425,16.3713,16.3119,4.5537,5.7948,3.7885,3.7955,1.0469,1.0322,2.5962,2.7089,7.3804,5.9329,12.6272,13.6124,2.9425,3.6599,4.0129,3.9903,3.386,3.34,1.4978,1.408,3.8115,4.0773,10.7288,10.046,2.9635,3.1965,2.1873,2.3017,2.2662,2.4509,10.0348,11.0757,2.0801,2.4188,2.0332,2.1754,12.4675,12.9722,1.9352,2.0921,1.1501,1.1887,13.117,14.6558,5.1302,5.1386,7.6231,9.672,4.3971,3.5506,10.0955,10.6438,7.0859,6.9025,7.3535,7.2536,3.7856,3.321,1.5917,1.7284,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,971
+desd973,71,71,F,0.91006,1.7975,0.33877,0.4069,0.8021,0.79086,13.8913,2.4047,2.3065,37.0198,37.9211,11.4024,12.0243,191.845,185.9035,0.81582,3.0204,2.7514,0.42906,0.39153,8.3108,11.2279,1.3054,1.2745,3.6119,3.703,6.1141,6.2495,3.7544,4.0073,0.06336,3.9856,1.8821,2.1023,0.3361,0.33925,3.4068,4.4638,3.328,3.7407,1.593,1.3152,9.7765,8.209,2.1927,2.2721,3.8864,3.7777,4.0272,4.1609,1.6434,1.5837,1.7659,1.8045,2.9622,2.8406,6.4639,7.2039,1.7143,1.7072,6.4408,5.8485,9.7925,10.4962,7.2789,6.7015,1.8609,2.0345,4.2837,4.1489,1.4585,1.3901,15.0275,16.5744,4.7728,5.555,3.5012,3.4232,0.89908,1.0864,2.2727,2.3651,7.715,6.6947,11.4705,11.6458,3.0193,3.4184,4.0289,4.052,3.2045,3.1365,1.3481,1.2037,3.8912,4.1643,10.0818,9.1172,2.5036,2.8032,2.0967,2.0505,2.1442,2.2416,8.7491,10.7917,2.0584,2.137,1.9255,2.0831,10.9514,11.831,1.6213,1.7159,1.1365,1.0937,12.5704,11.9064,5.038,5.2349,6.1036,8.2094,4.3188,3.5751,8.8258,10.3822,6.4643,6.0232,7.0991,6.8856,3.0346,3.0542,1.2729,1.387,,21,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,972
+desd974,64,64,M,0.84179,1.6145,0.35485,0.38861,0.81057,0.83207,16.1386,2.8389,2.5079,44.3657,43.8058,12.3822,12.711,183.164,180.6172,0.85575,3.1208,2.8448,0.44707,0.36505,4.3307,6.8798,1.3605,1.3106,3.3107,3.3873,6.0902,6.0523,4.0164,4.1762,0.06888,3.6723,1.8995,2.1089,0.34124,0.34588,3.6412,4.0426,3.84,3.708,1.7272,1.5756,8.2922,8.2665,2.1927,2.2969,3.4439,3.6835,3.7092,2.9575,1.466,1.5029,1.8392,1.8045,3.4529,3.0385,6.7427,6.6506,1.9519,1.9121,6.4204,5.3497,10.2643,10.8075,6.3538,6.1424,2.2476,2.4936,4.2238,3.8306,1.6885,1.5313,16.2943,17.23,4.7997,5.0941,3.4504,3.5057,0.95179,0.91153,2.1051,2.2308,7.3388,5.5905,12.931,13.2739,2.5652,2.7864,3.5763,3.5683,3.53,3.4705,1.4201,1.5383,3.8792,4.516,10.0101,11.594,2.7692,2.9354,2.1219,1.9634,1.9047,2.2326,7.8324,9.5154,2.3959,2.6346,1.865,2.0997,11.2387,11.7583,1.823,1.8033,1.0432,1.0716,12.3433,12.3411,4.5608,4.7226,6.8385,8.9246,3.5579,2.8539,8.6424,10.1926,6.212,6.4992,7.1975,6.3085,3.4362,3.7394,1.3778,1.4355,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,973
+desd975,38,38,F,1.148,2.3561,0.37051,0.39718,0.65164,0.62575,17.684,2.4479,2.6413,47.2334,47.4352,14.4953,15.2271,196.9166,196.9209,1.1773,2.9639,2.454,0.75667,0.59913,16.9137,22.448,1.5525,1.5355,3.5524,3.5654,6.1315,7.2718,4.2468,4.532,0.08687,4.993,2.193,2.5698,0.38664,0.3722,4.0747,4.3795,4.0828,4.0245,1.6751,1.3813,8.4244,7.9427,2.9551,2.9022,3.8353,4.0207,4.2272,4.3683,1.3806,1.2807,1.9617,1.9402,3.4547,3.2963,6.6888,6.3827,1.9102,1.9731,5.988,5.6651,10.8467,9.8933,7.35,7.1759,2.1137,2.1743,4.7753,4.5042,1.7208,1.7254,15.809,17.1511,4.5705,5.5648,3.5726,3.5958,1.0611,0.97321,2.4763,2.456,7.7122,7.0339,13.5884,12.5524,2.8514,3.0815,3.9653,3.9102,3.182,2.706,1.3287,1.4849,3.9268,4.3659,9.6993,9.8654,2.5383,2.6174,2.3783,2.5227,2.2011,2.4116,9.1766,11.0625,2.2296,2.2182,2.123,2.3548,11.3144,10.8834,1.9325,1.7346,1.1297,1.2324,13.374,13.6614,5.1412,5.3351,6.8489,7.7894,3.919,3.2493,8.9923,9.0935,6.2974,6.1527,6.3412,6.2909,3.24,3.6681,1.5318,1.4384,,25,-50y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,974
+desd976,57,57,F,1.1864,1.3062,0.35998,0.39515,0.91074,0.89996,18.2717,2.7863,2.86,45.2867,44.7,16.2345,16.1223,237.2557,235.5425,1.0767,3.3942,3.2487,0.8319,0.51725,9.4417,12.0729,1.4855,1.4805,3.1602,3.3512,7.0223,7.3652,4.5649,4.7141,0.08831,4.9457,2.2046,2.5881,0.38263,0.38119,3.8443,4.4773,3.8848,3.8958,1.6918,1.5455,9.3977,8.7777,3.1375,3.1074,3.5002,3.7564,4.2951,4.1837,1.6807,1.7886,1.8365,1.8822,3.3588,3.4177,7.1771,7.1705,2.08,2.0292,5.7668,6.4625,11.4184,11.1327,7.8299,7.0559,2.1498,2.307,4.6419,4.6415,1.6016,1.6868,18.9184,20.1029,5.1316,5.3124,3.8288,4.0139,0.90751,0.82726,2.7211,2.2308,7.2826,7.1136,13.8398,13.3673,2.2058,3.1687,4.2749,4.214,3.6146,3.2757,1.4826,1.4794,4.0904,4.6213,10.5318,10.9108,2.9279,3.2697,2.0891,2.1169,2.0941,2.2148,9.9635,12.0075,2.16,2.3548,1.843,2.2691,13.5264,13.7014,1.7802,1.8484,1.0314,1.0551,13.5861,14.2522,5.1911,5.3351,7.6231,8.3562,3.6559,3.5387,10.2398,9.5201,7.4213,7.5846,7.3364,7.4622,3.2215,4.0182,1.3284,1.6094,,28,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,975
+desd977,,,M,1.8244,1.7773,0.38402,0.42715,0.9256,0.98383,16.9774,3.1894,3.1105,46.1005,45.9631,13.9055,14.3408,245.3837,240.6768,2.0082,3.5718,3.3564,0.67846,0.49127,34.3074,42.9565,1.7739,1.7742,3.958,3.8441,6.9093,7.2413,4.7493,5.0523,0.08694,5.2392,2.45,2.6607,0.41552,0.40317,4.3671,5.027,4.2808,4.5286,1.8993,1.6856,10.3104,10.3088,3.5456,3.2148,3.9646,3.9903,5.056,4.3988,1.7919,1.8671,2.0381,2.0304,4.0984,3.719,7.4065,7.2141,2.2758,2.2498,6.6586,7.3491,11.9174,11.1868,9.1142,7.9636,2.2496,2.4912,4.4531,5.3315,1.8932,1.9465,20.9626,20.8177,5.0217,6.4231,4.31,4.5663,0.96612,1.2063,2.3328,2.7193,7.9592,7.0519,14.027,14.0717,2.7841,3.2917,4.7616,4.2157,3.9737,3.9895,1.4922,1.526,4.0325,4.5085,11.55,10.5044,3.1888,3.2771,2.5153,2.5747,2.2523,2.538,9.2692,10.1322,2.3781,2.4754,2.2845,2.4642,10.8167,10.4154,1.9579,2.3654,1.2918,1.3219,15.211,15.6951,5.0013,5.9056,7.8072,8.9756,4.0865,3.4341,10.6511,9.7778,7.6795,7.014,8.3154,7.9776,3.5021,3.7906,1.6092,1.8181,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,976
+desd978,57,57,F,0.97219,2.0464,0.42838,0.46487,0.88749,0.80335,18.9252,3.2269,3.1874,48.3012,48.3435,14.851,15.6887,244.2927,240.4316,1.0689,3.1602,2.9317,0.32887,0.50571,11.6656,17.0265,1.6629,1.6886,3.7745,4.0915,6.9894,7.2195,4.8195,4.9371,0.08194,4.1751,2.1741,2.4858,0.36758,0.39472,4.1325,4.8562,4.0215,4.1081,2.0067,1.7008,9.8139,9.5744,3.1299,2.7666,4.5316,3.8371,5.1156,4.3212,1.7743,1.5748,1.8769,2.0088,3.9318,3.719,7.4427,7.5396,2.206,2.2575,6.3098,6.7482,11.8823,11.0984,7.9878,7.1498,2.4205,2.5448,4.9001,4.9602,1.9984,1.984,18.9174,19.1789,4.8301,5.9689,3.9951,4.3998,0.8944,1.2153,2.212,2.7991,8.0346,7.2737,14.0658,13.0046,2.7658,3.2347,4.2176,4.2021,3.6146,3.6648,1.5468,1.5283,4.1826,4.5911,10.5938,12.2321,3.0955,2.9862,2.4081,2.2428,2.2238,2.5405,11.3717,11.6598,2.564,2.7276,2.0151,2.1835,12.197,12.0597,1.9763,2.1403,1.2176,1.2399,14.3833,14.2595,5.1729,5.5878,8.1332,9.5542,3.7048,2.9731,9.6993,9.8936,6.7893,7.4058,8.0704,7.9146,3.2917,3.8605,1.421,1.5821,,30,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,977
+desd979,75,75,M,1.4578,2.9422,0.41517,0.45137,0.9344,0.85018,18.92,3.4614,2.9654,47.2617,46.647,15.1593,16.0108,219.3807,215.3137,1.3578,3.4863,3.2644,0.71604,0.5242,18.6368,16.4151,1.6766,1.6217,3.9127,4.1534,6.9894,6.9837,4.6789,5.0208,0.07369,4.6608,1.9311,2.6349,0.40007,0.40583,4.0148,4.4059,3.7583,3.7606,1.6038,1.4472,10.5865,8.8036,3.4931,3.0259,4.4781,4.1499,4.8648,4.5272,1.7792,1.5178,1.9731,1.7632,3.1852,3.1487,7.3746,7.2071,1.8574,1.8109,6.3129,5.8914,11.1909,10.6668,8.4587,7.8139,2.0562,2.1838,4.5029,4.6375,1.6742,1.7132,19.4878,19.7988,4.9014,5.2069,3.3141,3.3948,1.3035,1.1039,2.8439,2.631,7.8204,6.256,14.0951,12.909,3.0377,3.6115,3.9874,4.2536,3.341,3.5604,1.4839,1.4247,4.0596,4.3836,11.1316,10.8082,2.9406,3.1765,2.2922,2.1069,2.4781,2.5693,10.7458,11.6419,2.2418,2.175,2.0447,2.2179,13.6885,14.2066,1.8934,2.157,1.1412,1.2462,12.7673,12.375,5.7568,5.7842,8.2315,8.9968,3.962,4.2588,10.5029,10.6501,6.9127,7.437,7.9912,7.7644,3.5284,3.6948,1.5697,1.5869,,26,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,978
+desd980,,,M,1.535,2.3519,0.31019,0.33643,0.70429,0.74291,15.1615,2.1606,2.2449,39.7329,38.9969,12.669,13.2435,219.0305,211.6229,1.6202,3.0009,2.8438,1.0228,0.87975,16.9487,21.2815,1.5756,1.5818,2.812,2.7183,5.4613,5.8946,4.3635,4.6656,0.09323,4.3109,2.2288,2.4327,0.33346,0.33062,3.7805,4.0059,3.5926,3.6793,1.4226,1.3265,7.9558,7.6056,2.9717,2.8662,3.2035,3.5507,3.4139,4.3597,1.4113,1.4425,1.5911,1.7076,3.2345,2.858,6.0063,5.5941,1.6994,1.6651,5.4548,4.8097,9.0157,8.6055,6.5178,6.4476,1.8401,2.073,3.854,4.228,1.4788,1.4698,14.8866,15.3404,4.035,4.4877,3.0089,3.3074,0.86393,0.96225,1.9456,2.0043,6.7294,5.9385,11.6879,10.7233,2.4842,2.4894,3.6165,3.4649,2.7014,2.889,1.2926,1.2029,3.3135,3.6375,8.474,8.7801,2.5611,2.7836,2.1973,2.3482,1.6189,1.7184,8.5585,9.6952,1.9345,2.0234,2.0977,2.2876,9.573,9.5779,1.4817,1.5134,1.0546,1.1247,12.8832,14.9077,3.9289,4.2596,5.4316,5.7734,3.3046,2.5859,7.8694,7.8168,5.9591,5.6128,6.2429,5.9373,2.7421,3.2472,1.3226,1.3387,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,979
+desd981,77,77,F,1.9673,2.1079,0.3152,0.38244,0.6034,0.65986,18.5245,2.7265,2.8026,45.9086,44.7344,14.882,15.2551,223.1865,216.5383,1.9463,2.7748,2.5432,1.0386,0.92265,15.5524,16.1252,1.5439,1.5154,3.4568,3.471,6.1374,6.2847,4.4829,4.655,0.0781,5.2392,2.437,2.2641,0.34677,0.35342,3.7514,4.1858,3.8483,4.022,1.5538,1.4645,9.8747,7.3997,2.76,2.7737,3.9054,4.1302,4.429,4.1327,1.2651,1.3347,1.9098,1.9265,3.7934,3.4622,7.1137,7.1677,2.0844,2.0266,5.9028,6.4625,11.2191,10.7645,7.6875,6.499,2.0793,2.2401,4.1371,4.2584,1.8236,1.675,17.7483,17.1771,4.3612,5.345,3.579,3.8273,1.1702,1.1781,2.663,2.6843,7.7289,6.3117,13.5985,12.9016,2.5498,3.0329,4.1829,4.5702,3.3216,3.0269,1.4573,1.5133,3.7758,4.3477,10.2645,10.4332,2.662,2.8985,2.397,2.305,2.4415,2.8733,9.1919,11.7269,2.1166,2.5731,1.9035,2.2433,11.3666,11.132,2.0737,2.3159,1.1141,1.2012,15.1168,14.7992,4.4777,4.8908,7.5731,7.9887,3.4725,3.4871,9.6495,9.6846,7.4112,6.7763,6.5751,6.3247,3.1629,3.7323,1.573,1.6979,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,980
+desd982,84,84,M,1.9074,2.0425,0.29851,0.33948,0.77299,0.7267,17.5478,2.2592,1.6365,49.6817,47.6329,15.8175,15.7577,185.7545,188.3036,1.9452,2.9243,2.7632,1.1272,1.0629,18.4747,23.9591,1.4111,1.4035,3.2204,3.1562,5.9048,6.3666,4.2355,4.532,0.08137,5.7308,2.5086,2.8142,0.34048,0.33044,3.6238,4.0625,3.5394,3.7116,1.5609,1.3911,9.3444,7.8532,2.8281,3.1124,3.3561,4.0757,3.897,4.3767,1.4613,1.3727,1.6913,1.7378,3.2079,3.3009,6.6989,6.8975,1.9111,1.8094,4.8656,5.1164,10.3594,10.3088,6.9996,6.8239,2.1412,2.2539,4.3939,4.3582,1.5356,1.5372,16.2697,17.76,4.5832,5.679,3.4163,3.1832,0.90939,1.0543,2.1803,2.3106,6.5775,6.2523,12.2619,12.7688,2.7174,2.9748,3.9364,3.5443,2.8904,2.9296,1.4327,1.4418,3.4679,4.1248,8.8549,9.7931,2.5765,2.7175,1.9343,2.1935,1.8421,1.9729,8.3107,9.53,2.5005,2.3967,1.8307,2.0155,11.0228,11.0828,1.5454,1.7181,1.1644,1.1358,12.0203,12.0462,4.6414,4.6578,6.702,7.0518,3.69,3.3626,8.6881,8.2383,6.5134,6.5389,7.0417,6.4523,3.1547,3.1627,1.2118,1.3482,,21,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,981
+desd983,79,79,F,1.698,1.9137,0.29367,0.35158,0.74065,0.69431,16.4358,2.1606,2.2449,41.0899,41.8891,13.3855,13.625,214.5078,207.5702,1.4225,3.0156,2.6408,1.3804,0.87975,14.918,21.9909,1.4495,1.5129,2.8007,2.6895,6.0473,6.7249,4.1737,4.3714,0.06877,3.7736,1.9707,2.1259,0.32918,0.3225,3.7968,4.3399,3.637,3.8908,1.5505,1.2255,9.2651,7.3997,2.4866,2.577,3.941,3.8098,3.9211,3.9273,1.4599,1.3124,1.8262,1.8526,3.4391,3.134,6.251,5.2681,1.6958,1.6491,5.6166,5.398,10.2323,6.8215,6.4011,6.2403,2.0023,1.9304,4.1371,4.0897,1.616,1.5982,15.7002,15.8765,4.3617,4.4411,3.3085,3.3457,1.0472,1.1114,2.4732,2.6654,6.9852,6.6941,11.8131,9.1824,2.394,2.7622,3.4624,3.8015,3.2045,2.9794,1.5424,1.2056,3.2502,3.3549,9.4578,8.6526,2.5116,2.6449,2.187,2.1827,1.8636,2.3505,8.5287,11.1184,1.9568,2.1794,2.1469,2.2008,10.0684,11.831,1.8684,1.7496,1.017,1.0373,11.8048,12.0324,4.7292,4.5346,7.3309,8.3733,3.8231,2.6359,8.8287,9.0978,5.5752,5.5943,6.427,5.8461,3.1879,3.0854,1.3964,1.4652,,22,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,982
+desd984,77,77,F,1.3969,1.6251,0.35805,0.42163,0.7972,0.81016,16.7998,2.5003,2.5326,43.4399,42.7181,14.0549,14.2885,207.3131,202.5402,1.5034,3.2037,3.137,0.53477,0.61212,8.5689,8.6961,1.4574,1.4666,3.7056,3.7001,6.0475,6.4486,4.2798,4.484,0.07519,5.0864,2.3083,2.5773,0.36443,0.3541,3.4878,4.0703,4.1337,3.7959,1.4902,1.3434,9.4737,8.1347,2.9111,2.9299,3.6892,3.5908,4.1014,4.1994,1.4545,1.5448,2.116,1.9402,3.2104,2.9676,6.802,7.2039,1.7143,1.6118,6.3087,5.7707,10.9749,10.9211,7.8756,7.1263,2.1112,2.0882,4.408,4.4597,1.5691,1.4705,17.2152,17.2491,5.1888,5.555,3.0127,3.3068,1.1577,0.96672,2.7402,2.3338,6.977,6.4823,12.8679,13.4861,2.8735,3.0486,4.2749,4.0452,3.0718,3.2644,1.349,1.2952,3.8402,4.1231,9.8443,9.6412,2.8424,3.0109,2.4073,2.2883,1.7536,1.7184,9.3074,10.8637,2.2909,2.3531,2.0151,2.1204,10.6811,11.5461,1.4659,1.5334,1.0962,1.1931,12.7796,14.3766,5.1361,4.9117,7.3237,7.6587,4.1368,3.8424,10.0134,10.221,6.3043,6.9714,7.0902,6.9268,3.5983,2.9888,1.3977,1.304,,28,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,983
+desd985,67,67,M,2.0592,1.9408,0.29313,0.33912,0.71488,0.75437,15.54,2.0924,2.2449,44.7024,44.4463,12.3419,12.7122,175.9135,167.656,1.9235,2.9715,2.8124,1.5059,1.2229,29.0169,30.645,1.2879,1.312,2.6102,2.7921,5.5588,5.6673,4.1089,4.2826,0.10203,4.6035,2.0122,2.7071,0.36412,0.32201,3.525,4.1264,3.8641,4.2509,1.4566,1.287,7.9338,6.9952,2.5383,2.3237,3.1152,3.7782,3.4484,3.5843,1.4296,1.4807,1.7289,1.8114,3.2229,2.5302,6.3907,6.2676,1.8146,1.8676,5.9336,5.3497,10.2767,10.3227,6.5539,6.0848,1.8898,2.0662,3.815,3.7189,1.4698,1.3406,14.7917,15.4755,4.5545,4.4877,3.2234,3.4488,1.0149,1.012,2.1395,2.3651,6.7347,6.0421,12.5317,11.6458,2.4613,3.1116,3.3211,3.5271,2.5288,2.8991,1.2938,1.4422,3.2478,3.9112,8.474,8.4504,2.5847,2.7433,2.3289,2.0805,1.7412,1.7184,8.1811,9.4848,2.1623,2.2263,2.0686,2.1385,10.5813,10.188,1.5671,1.4705,1.0968,1.1767,12.2302,12.1091,4.8389,4.4744,5.6447,7.0676,3.4317,3.3858,7.8694,8.3972,6.4855,6.0233,6.5271,6.141,2.6007,3.3372,1.3226,1.3,,26,60-69y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,984
+desd986,59,59,M,1.6574,1.7948,0.39026,0.43093,0.91058,0.8445,20.5349,3.4584,3.415,49.1356,50.3468,15.1496,15.6313,211.7753,210.2499,1.2497,3.619,3.2782,0.60141,0.50392,12.8766,16.0191,1.63,1.6102,3.7338,3.844,7.6238,8.1197,4.9718,5.103,0.09345,4.6166,2.4731,2.7424,0.44246,0.42106,4.8252,4.8834,4.578,4.8409,1.9942,1.874,10.944,10.7749,3.6982,4.0107,4.6043,4.6612,5.6182,5.1517,1.9619,1.7295,2.1829,2.1829,4.1558,3.9928,8.2534,8.1068,2.2995,2.3001,7.4279,7.2798,12.5231,13.2071,9.89,7.3795,2.4969,2.7542,4.8567,4.7385,2.0523,2.0763,20.2924,19.8121,5.467,7.3017,4.4177,4.7516,1.1961,1.1105,2.9391,3.0938,9.7874,7.7744,16.6489,15.8939,2.9965,3.6547,4.8151,4.7157,3.7221,3.7671,1.7342,1.662,4.4546,4.9742,12.3452,12.7505,3.2833,3.5392,2.5151,2.719,2.9821,2.6774,12.0336,12.8633,2.7909,3.063,2.3505,2.6698,15.4733,15.5268,2.5439,2.1086,1.4417,1.4254,16.485,17.4915,6.3587,6.1762,9.5879,9.2554,4.4728,3.8956,10.8951,10.4451,8.2907,8.0575,8.5225,8.556,4.1855,4.479,1.8053,1.8285,,26,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,985
+desd987,82,82,F,1.9257,2.4213,0.31181,0.36521,0.77147,0.7886,16.8427,2.0987,2.442,40.1162,40.656,12.6679,13.4068,191.1721,192.4498,1.3921,3.1058,3.0023,1.1107,0.88033,21.6844,22.1617,1.4005,1.367,3.3326,3.2285,6.1098,6.423,4.3567,4.5977,0.08415,4.4837,2.0045,2.2823,0.37691,0.29494,4.6087,4.9207,4.1115,4.4668,1.8041,1.5935,7.3584,8.0933,2.8636,2.9299,4.3591,4.172,4.7794,3.9091,1.5548,1.5263,1.9956,1.9395,3.6079,3.4204,6.0677,5.8168,1.7867,1.8768,6.3722,6.6108,9.6121,9.187,7.2921,7.0962,2.1568,2.4673,5.0149,5.122,1.6876,1.7671,17.3195,17.8174,4.6369,5.3467,3.5027,3.5057,1.161,1.0314,2.9314,2.631,7.6286,7.4088,11.8751,11.4544,2.5498,2.9422,4.0318,3.6651,3.4353,3.4893,1.5898,1.5727,4.4412,4.6581,12.0108,11.6746,2.481,2.7706,2.5208,2.4725,2.2788,2.2995,9.6931,10.3831,2.3824,2.568,2.1977,2.7221,12.3347,12.8857,2.1247,1.8118,1.2437,1.3149,14.2447,13.156,5.0146,5.1128,7.1517,7.7603,3.6327,3.3626,8.6424,10.121,6.545,6.7279,7.7492,6.9502,3.4165,3.7462,1.6489,1.6201,,22,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,986
+desd988,67,67,M,1.0532,1.9381,0.4192,0.48436,0.92814,0.98008,20.9789,3.1164,2.7297,52.3858,51.6143,15.5148,15.5261,219.8286,215.5509,1.0868,3.4963,3.3065,0.55657,0.51445,8.2125,14.2795,1.5992,1.5431,3.7968,3.8835,6.6481,6.5537,4.8613,5.1095,0.08317,5.3514,2.245,2.9766,0.39005,0.4173,4.8909,5.7021,4.0238,4.5901,1.8561,1.8003,11.1846,10.1,3.2136,3.3204,3.8627,4.4796,5.1236,4.6505,1.7475,1.8556,2.1378,2.192,4.4074,4.1818,7.7346,7.494,2.3084,2.3465,7.0775,7.5747,12.1627,12.26,8.4853,7.8698,2.3599,2.7463,5.5455,5.5108,2.0461,2.2419,23.2146,23.6993,5.7455,6.3692,4.3059,4.6011,0.92792,2.0477,2.1741,2.8764,9.1099,8.5192,15.2276,15.7275,3.3336,3.8068,4.6395,4.9495,3.9394,3.6718,1.8499,1.7339,4.2239,4.6571,11.3053,10.7779,3.027,3.3923,2.2314,2.2907,2.2846,2.5347,11.1598,12.4274,2.1149,2.6057,1.9903,2.311,14.1133,15.5022,2.0604,2.2269,1.3218,1.3721,15.5683,16.9267,6.055,6.0188,8.9801,9.0181,4.2807,3.2927,12.1353,12.6052,6.8571,7.8232,8.1153,8.4928,4.5346,4.3634,1.3845,1.5694,,29,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,987
+desd989,52,52,F,1.0437,2.0142,0.3781,0.42741,0.89568,0.8853,16.4958,2.7122,2.7414,48.291,48.8532,13.3855,14.18,203.0384,205.443,1.0818,3.6065,3.4104,0.57073,0.4371,11.1851,13.4527,1.4802,1.4678,3.3703,3.4555,6.8393,6.8095,4.3818,4.6013,0.07566,4.8524,2.2394,2.5912,0.40044,0.41743,3.5594,4.2642,3.5168,3.6771,1.5749,1.4033,10.1495,9.301,3.2457,3.1286,4.0287,3.7683,4.9972,4.6493,1.7855,1.791,1.9458,1.9652,3.1526,3.0312,7.6897,7.3827,1.8708,1.969,6.9397,7.3491,12.8493,11.5383,8.5289,7.8815,2.2026,2.2914,4.2099,4.1942,1.6093,1.6313,19.7012,19.1111,5.532,6.6359,3.401,3.8396,1.2274,0.91745,2.6924,2.3482,7.785,5.8557,15.1999,14.0277,3.6274,4.46,4.6967,4.2157,3.182,3.2136,1.5666,1.4242,4.1173,4.1658,10.6008,10.4497,3.0451,3.262,2.1334,2.071,1.806,2.1131,10.313,11.4886,2.3682,2.5731,2.0512,2.2904,12.197,12.0034,1.7731,1.8977,1.1899,1.1941,13.516,13.1667,4.8559,4.9899,7.7679,8.9471,4.958,4.1028,10.3849,10.7102,7.0929,8.3187,9.4681,9.4243,3.1045,4.1011,1.3856,1.7457,,20,50-59y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,988
+desd990,75,75,F,1.6611,1.6066,0.33224,0.34673,0.64699,0.63576,16.1442,2.9581,2.3731,46.0148,41.5348,11.6546,11.7593,176.0942,168.3196,1.7563,2.6058,2.3904,0.85013,0.70622,15.8165,17.7824,1.329,1.3106,3.4732,3.5856,5.6714,6.2727,4.0467,4.2908,0.08069,4.6878,2.1447,2.3503,0.35155,0.33838,3.9292,3.972,4.0442,3.9214,1.6495,1.4159,9.083,6.4981,2.8613,3.1124,3.5839,3.4995,4.4989,3.9646,1.4101,1.3399,1.8795,1.7849,3.1786,3.23,6.9349,6.8111,1.7967,1.6615,6.3717,5.6966,10.4915,10.1922,7.4808,7.0962,2.0833,2.0384,4.5323,4.6951,1.4937,1.4828,17.2701,15.7424,4.5744,4.3309,3.4381,3.5433,0.90939,1.0918,2.2221,2.3577,6.7355,6.163,12.1727,11.6922,2.4105,2.9248,4.1711,4.2322,2.9196,3.0989,1.343,1.259,4.0167,4.5059,10.5467,10.7532,2.7196,2.6747,2.3259,2.3377,1.9047,2.1631,7.7528,9.5154,2.0783,2.1009,2.0355,2.2569,9.3165,9.3671,1.5249,1.5256,1.0548,1.1476,13.8201,13.3969,4.862,4.7314,6.8754,7.7141,3.6506,3.3384,8.2148,8.8561,6.5347,6.1394,6.6456,7.0134,3.2904,3.122,1.3282,1.2157,,19,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,989
+desd991,76,76,M,1.5559,2.2987,0.36254,0.40699,0.88578,0.84337,17.4445,2.4479,2.6413,46.439,45.3765,13.857,14.203,213.0143,210.3322,1.33,3.3649,3.0923,0.57386,0.55086,11.4556,12.2702,1.4726,1.4491,3.7248,3.7664,6.7266,6.9789,4.3378,4.6654,0.08328,4.8149,2.2729,2.6004,0.39444,0.41892,3.8191,4.9085,3.872,4.0341,1.6705,1.763,10.1495,9.0663,3.2456,3.2515,3.6842,4.1302,5.0371,4.6537,1.7387,1.5971,2.0114,1.8215,3.8329,3.4205,7.7152,6.9574,2.0828,2.129,6.8111,6.8617,12.6256,12.039,8.0404,7.2711,2.1234,2.5783,4.5169,4.5886,1.8667,2.0881,20.694,20.5998,4.7657,6.4884,3.9253,4.3998,0.97834,1.0488,2.486,2.5689,8.8827,7.7799,13.7943,14.9175,3.6971,4.4832,4.2927,4.2841,3.8289,3.215,1.5948,1.4691,3.9334,4.3267,10.6008,10.3125,2.8643,3.205,2.1346,2.0953,1.8433,2.4013,10.5483,11.3462,2.3529,2.6048,2.004,2.2462,10.878,11.5985,1.7417,1.9298,1.1594,1.2545,14.9771,16.2906,5.6305,5.2538,8.1468,9.747,4.4252,4.1879,11.3807,10.0853,6.9535,7.8232,7.7968,7.8874,3.7539,3.7831,1.3729,1.5694,,27,70-79y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,990
+desd992,60,60,M,2.3612,2.4455,0.39851,0.41321,0.91033,0.7873,21.6469,3.74,3.1242,50.1687,50.3468,16.0141,16.4425,243.9959,234.785,1.7846,3.4863,3.2644,1.3138,0.83934,20.8601,21.7721,1.6519,1.6516,3.7304,4.0139,6.9125,7.072,5.0986,5.2838,0.08496,5.4453,2.5213,3.1424,0.40362,0.44292,4.9389,5.1581,4.7992,5.144,2.0829,1.5591,12.0024,10.561,3.8459,3.613,4.8629,4.8883,5.8801,5.3929,1.8383,1.5799,2.3493,2.4241,4.3098,4.1805,7.9612,7.8688,2.4802,2.4508,7.4822,7.8584,12.9681,12.2345,9.3264,8.0287,2.4956,2.4717,5.1184,5.0957,2.1869,2.1111,21.4875,22.0139,5.9286,7.0711,4.31,4.1926,1.0477,1.2987,2.4162,2.7892,9.1132,8.1578,16.0082,15.5401,3.7683,4.7167,4.7004,4.7023,3.7286,4.5503,1.8499,1.6557,4.5952,5.1719,12.6814,13.0753,3.3891,3.5296,2.6785,2.7365,2.8756,2.7762,10.9608,12.6483,2.6818,2.7361,2.6326,2.7685,13.4439,14.2938,2.5439,2.3887,1.476,1.5581,17.0532,17.0932,5.7831,5.7904,9.1233,10.4647,5.0085,3.9216,10.9754,10.1761,8.583,8.5607,8.8402,8.4324,4.1973,4.2668,1.9142,2.3404,,28,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,991
+desd993,82,82,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,+80y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,992
+desd994,77,77,M,2.5948,2.5434,0.36398,0.34978,0.84531,0.75988,19.4836,2.7183,1.6978,53.3227,52.6487,16.2343,15.7577,250.4935,242.4689,1.967,3.6189,3.0573,1.3138,0.98324,21.4729,23.1056,1.7566,1.6123,3.1969,3.3637,7.2338,8.2229,5.0371,5.3238,0.09547,5.3622,2.2973,2.8663,0.39667,0.40503,4.4639,4.7492,3.9999,3.9356,1.6155,1.6272,10.4211,9.3013,3.0608,3.0593,4.0322,4.0084,5.232,4.9048,1.5559,1.4381,2.0541,1.9836,3.7183,3.2977,7.4758,7.1392,2.1491,2.187,6.497,5.1279,10.9587,10.4273,8.7588,7.9027,2.3412,2.3532,4.6196,4.4826,1.8545,1.9126,15.9832,15.7639,4.7554,5.4804,3.7179,3.9267,1.4516,1.3369,3.3463,3.2326,8.4599,7.7625,13.3795,12.3503,2.7025,3.0027,4.7616,4.4969,3.8942,3.6564,1.6825,1.4045,4.0659,4.7787,11.0276,11.2111,3.1435,3.2922,2.3605,2.2356,2.3774,2.4047,10.5882,11.9748,2.3484,2.6018,2.1619,2.3018,13.7355,14.0706,1.841,1.8926,1.2564,1.2912,16.623,14.2793,6.3351,6.2148,8.1528,8.3587,4.0509,2.9737,11.5215,11.0679,7.5884,7.1782,7.8609,7.1638,4.0742,3.3935,1.5415,1.5876,,15,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,993
+desd995,78,78,F,1.651,1.6088,0.36376,0.41604,0.64699,0.71834,15.4609,2.8072,2.7248,40.8899,40.8498,13.8539,13.8789,208.768,204.9386,1.2191,2.6387,2.4852,0.5428,0.60498,14.272,18.2943,1.4352,1.3657,3.6399,3.4659,5.8286,5.8946,4.11,4.3349,0.07935,4.1318,2.0658,2.1249,0.36866,0.34498,4.2008,4.9016,4.2546,4.2558,1.8139,1.6105,10.0875,8.6968,2.8047,2.5654,3.9493,4.1895,4.5978,4.3966,1.4172,1.467,1.9242,1.9723,3.7151,3.3598,6.9727,7.3443,2.1154,2.0739,6.4388,5.9628,11.252,11.1264,6.9763,6.2929,2.297,2.4936,4.7746,5.1096,1.7298,1.7233,19.6234,20.5346,4.9969,5.6491,3.7934,3.9769,1.1499,1.1072,2.6108,2.5356,7.6513,6.6326,13.3822,12.4664,2.8575,3.3613,3.512,3.7017,3.3855,3.4972,1.6095,1.5814,4.0413,4.7197,10.3697,10.2366,2.6925,2.7864,2.2249,2.4505,2.1185,2.535,10.0747,11.6001,2.3067,2.5758,2.1182,2.3763,13.2599,13.9885,1.6474,2.1613,1.1752,1.2275,15.0964,15.6348,5.4985,5.6432,7.3278,8.3731,3.8563,3.1164,10.1611,10.9917,6.3782,6.5463,6.2905,6.4156,3.9793,4.504,1.3901,1.5103,,16,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,994
+desd996,52,52,F,0.98668,1.9683,0.39807,0.44618,0.84458,0.83008,18.213,3.0766,2.9517,45.1005,45.9534,16.6983,16.7592,263.77,268.0351,1.1536,3.1393,3.0569,0.43528,0.46058,10.2175,9.3251,1.773,1.753,4.1009,4.0091,7.7554,7.9311,4.9413,5.1393,0.0767,4.061,2.0528,2.493,0.36176,0.40229,4.1239,5.2956,3.7583,3.9127,1.6038,1.3676,10.9234,9.0953,3.4774,2.5846,3.7257,3.7674,4.7629,4.24,1.6416,1.6131,1.9211,1.5849,3.7591,3.2994,7.4872,7.338,2.1663,2.0042,6.3441,6.1025,11.9429,11.2569,8.7503,7.7076,2.0704,2.2381,4.5884,4.9597,1.9356,1.8465,18.9489,19.7988,5.7511,5.6059,3.6362,3.6112,0.95246,1.036,2.4247,2.4667,8.3148,7.4916,16.2235,14.7553,2.7841,3.4704,4.5218,4.4217,3.3074,2.557,1.4263,1.3588,3.7873,4.1069,9.8438,8.9795,2.9475,3.095,2.1687,2.3915,1.9963,2.2573,10.5252,10.8325,2.4704,2.0967,2.1575,2.4219,11.0717,11.5156,1.9278,2.0327,1.1812,1.245,13.4679,13.8829,5.4278,5.4839,8.2656,8.0809,4.2425,3.3203,10.3299,9.5738,7.3433,7.64,8.5962,7.6834,3.3574,3.4373,1.3599,1.5839,,29,50-59y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,995
+desd997,77,77,M,2.3554,2.3118,0.43358,0.4622,0.84734,0.89128,19.5678,3.4062,3.217,46.4131,46.8022,15.8199,16.2485,247.9735,239.0348,1.8804,3.5105,3.2413,1.0172,1.363,27.5036,33.0922,1.6414,1.7288,4.3835,4.2137,7.1405,7.7091,4.6823,4.9142,0.07881,5.657,2.2369,2.5582,0.39528,0.4125,4.3893,4.7217,4.8339,4.7265,1.929,1.7618,10.91,9.6772,3.2677,3.0346,4.103,3.6873,5.244,4.2724,1.6126,1.6225,2.0381,2.078,3.9507,3.4284,7.5378,7.6027,1.896,1.8884,6.6846,6.7247,12.4167,12.0185,8.4893,7.7304,2.5819,2.6388,4.5246,4.7597,1.8095,1.6642,18.3983,18.6762,5.2318,6.6359,4.0723,4.0173,1.1802,1.0821,2.6736,2.6489,8.0025,7.0492,15.2797,15.049,3.0754,3.9171,4.4547,4.4752,3.6483,3.4639,1.6473,1.6164,4.2336,4.5016,11.2044,11.9548,2.9008,3.1722,2.634,2.8041,2.1797,2.7311,9.6355,11.5521,2.6656,2.4766,2.2806,2.6408,12.1602,11.8777,1.9494,2.2623,1.2933,1.2789,15.0454,14.9497,5.0146,5.6441,7.6425,8.5741,4.1733,3.4209,13.3909,11.5462,7.484,6.6764,9.073,8.4207,4.0428,4.0228,1.4503,1.8654,,27,70-79y,,,,,MCI,,Other,,MCI,desd-synthdata,,,,,,,,,,,,,,,,,,,996
+desd998,,,F,2.0768,2.5948,0.29367,0.26814,0.80199,0.76361,15.4625,2.5899,2.1002,37.5752,39.0933,11.0862,12.8773,214.5078,216.0617,1.6165,3.0186,2.8231,0.80942,0.79331,16.1464,18.95,1.5508,1.5497,2.9175,3.2904,5.8471,5.9495,4.2378,4.3579,0.06204,4.0486,1.8977,2.1388,0.32458,0.32814,3.2578,3.5295,3.6048,3.7338,1.4618,1.2669,10.2834,8.7173,3.1958,2.9704,3.4843,3.5732,4.1653,3.8993,1.5363,1.5231,1.6789,1.8755,3.2345,2.8371,5.7968,5.3721,1.9094,1.7546,5.9747,6.1533,9.4841,8.9927,7.3246,6.7154,1.73,2.0197,3.8826,4.1536,1.4358,1.3417,14.2288,13.927,5.0751,6.305,3.0614,3.16,1.0737,1.1394,2.1395,2.9239,6.2531,5.7841,11.9962,10.9002,2.7949,3.1354,4.0727,4.303,3.2227,2.8302,1.1581,1.3442,3.5868,3.7849,9.9622,9.4709,2.5944,2.8395,2.187,2.3322,2.0023,2.1001,9.1502,9.4049,1.8137,2.2089,2.0199,1.8964,10.3928,11.0022,1.7469,1.9516,1.0156,1.062,11.7783,12.1336,4.7844,4.3322,8.1137,8.823,3.8065,3.1314,9.6628,9.1892,6.7587,6.1329,6.8298,6.9502,3.1351,3.1986,1.3872,1.5102,,,-50y,,,,,,,,,,desd-synthdata,,,,,,,,,,,,,,,,,,,997
+desd999,62,62,M,0.84179,1.6,0.42259,0.46211,0.81082,0.79086,17.0687,3.1087,2.9517,43.1869,43.6755,13.5428,13.9885,252.5323,252.8866,0.94698,3.3734,3.1989,0.343,0.35349,6.2042,2.7368,1.7118,1.6868,3.7745,3.8252,6.9093,7.2195,4.7054,4.9351,0.07685,4.3606,2.2948,2.4677,0.38938,0.38373,4.3436,4.5795,4.2161,4.2786,2.0067,1.6583,11.0966,9.4514,3.4125,3.1948,4.2583,4.0324,4.5785,4.7193,1.466,1.5179,2.1033,2.0867,4.1246,3.6913,6.3506,6.9149,1.9946,2.1847,7.6067,6.5178,10.3559,10.1935,7.4103,7.4715,2.5124,2.4742,4.9065,4.757,1.7094,1.7279,19.0915,19.8549,6.2659,6.1769,4.0342,4.2002,1.0043,1.1624,2.3435,2.7088,7.0677,6.5407,14.8903,12.6821,3.3914,3.7792,3.927,4.2536,3.7191,3.4282,1.8317,1.6753,3.4305,3.9003,10.1893,10.4746,2.7607,2.8589,2.3799,2.3847,2.5684,2.6709,12.2547,12.1081,2.4163,2.6944,2.126,2.3251,13.3306,12.6851,1.9653,2.1495,1.2132,1.3239,15.1482,14.8242,5.3756,5.1752,9.0184,9.5017,3.9609,4.0371,10.5029,11.1783,7.8527,7.6208,6.4975,7.4131,3.8094,4.3993,1.4135,1.5449,,26,60-69y,,,,,CN,,CN,,,desd-synthdata,,,,,,,,,,,,,,,,,,,998
+desd1000,75,75,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,70-79y,,,,,AD,,AD,,AD,desd-synthdata,,,,,,,,,,,,,,,,,,,999
diff --git a/tests/demo_data/dementia/edsd.csv b/tests/demo_data/dementia_v_0_1/edsd.csv
similarity index 96%
rename from tests/demo_data/dementia/edsd.csv
rename to tests/demo_data/dementia_v_0_1/edsd.csv
index 20d799f2987ac6ff8ddc78e96a7d5618c8430063..3d8eae2eeca1e5a9fa1eaaf41863ac8708e0d997 100755
--- a/tests/demo_data/dementia/edsd.csv
+++ b/tests/demo_data/dementia_v_0_1/edsd.csv
@@ -1,475 +1,475 @@
-subjectcode,_3rdventricle,_4thventricle,adnicategory,agegroup,alzheimerbroadcategory,apoe4,av45,brainstem,cerebellarvermallobulesiv,cerebellarvermallobulesviiix,cerebellarvermallobulesvivii,csfglobal,dataset,edsdcategory,fdg,gender,handedness,leftaccumbensarea,leftacgganteriorcingulategyrus,leftainsanteriorinsula,leftamygdala,leftangangulargyrus,leftaorganteriororbitalgyrus,leftbasalforebrain,leftcalccalcarinecortex,leftcaudate,leftcerebellumexterior,leftcerebellumwhitematter,leftcerebralwhitematter,leftcocentraloperculum,leftcuncuneus,leftententorhinalarea,leftfofrontaloperculum,leftfrpfrontalpole,leftfugfusiformgyrus,leftgregyrusrectus,lefthippocampus,leftinflatvent,leftioginferioroccipitalgyrus,leftitginferiortemporalgyrus,leftlateralventricle,leftliglingualgyrus,leftlorglateralorbitalgyrus,leftmcggmiddlecingulategyrus,leftmfcmedialfrontalcortex,leftmfgmiddlefrontalgyrus,leftmogmiddleoccipitalgyrus,leftmorgmedialorbitalgyrus,leftmpogpostcentralgyrusmedialsegment,leftmprgprecentralgyrusmedialsegment,leftmsfgsuperiorfrontalgyrusmedialsegment,leftmtgmiddletemporalgyrus,leftocpoccipitalpole,leftofugoccipitalfusiformgyrus,leftopifgopercularpartoftheinferiorfrontalgyrus,leftorifgorbitalpartoftheinferiorfrontalgyrus,leftpallidum,leftpcggposteriorcingulategyrus,leftpcuprecuneus,leftphgparahippocampalgyrus,leftpinsposteriorinsula,leftpogpostcentralgyrus,leftpoparietaloperculum,leftporgposteriororbitalgyrus,leftppplanumpolare,leftprgprecentralgyrus,leftptplanumtemporale,leftputamen,leftscasubcallosalarea,leftsfgsuperiorfrontalgyrus,leftsmcsupplementarymotorcortex,leftsmgsupramarginalgyrus,leftsogsuperioroccipitalgyrus,leftsplsuperiorparietallobule,leftstgsuperiortemporalgyrus,leftthalamusproper,lefttmptemporalpole,lefttrifgtriangularpartoftheinferiorfrontalgyrus,leftttgtransversetemporalgyrus,leftventraldc,minimentalstate,montrealcognitiveassessment,neurodegenerativescategories,opticchiasm,parkinsonbroadcategory,pib,ppmicategory,rightaccumbensarea,rightacgganteriorcingulategyrus,rightainsanteriorinsula,rightamygdala,rightangangulargyrus,rightaorganteriororbitalgyrus,rightbasalforebrain,rightcalccalcarinecortex,rightcaudate,rightcerebellumexterior,rightcerebellumwhitematter,rightcerebralwhitematter,rightcocentraloperculum,rightcuncuneus,rightententorhinalarea,rightfofrontaloperculum,rightfrpfrontalpole,rightfugfusiformgyrus,rightgregyrusrectus,righthippocampus,rightinflatvent,rightioginferioroccipitalgyrus,rightitginferiortemporalgyrus,rightlateralventricle,rightliglingualgyrus,rightlorglateralorbitalgyrus,rightmcggmiddlecingulategyrus,rightmfcmedialfrontalcortex,rightmfgmiddlefrontalgyrus,rightmogmiddleoccipitalgyrus,rightmorgmedialorbitalgyrus,rightmpogpostcentralgyrusmedialsegment,rightmprgprecentralgyrusmedialsegment,rightmsfgsuperiorfrontalgyrusmedialsegment,rightmtgmiddletemporalgyrus,rightocpoccipitalpole,rightofugoccipitalfusiformgyrus,rightopifgopercularpartoftheinferiorfrontalgyrus,rightorifgorbitalpartoftheinferiorfrontalgyrus,rightpallidum,rightpcggposteriorcingulategyrus,rightpcuprecuneus,rightphgparahippocampalgyrus,rightpinsposteriorinsula,rightpogpostcentralgyrus,rightpoparietaloperculum,rightporgposteriororbitalgyrus,rightppplanumpolare,rightprgprecentralgyrus,rightptplanumtemporale,rightputamen,rightscasubcallosalarea,rightsfgsuperiorfrontalgyrus,rightsmcsupplementarymotorcortex,rightsmgsupramarginalgyrus,rightsogsuperioroccipitalgyrus,rightsplsuperiorparietallobule,rightstgsuperiortemporalgyrus,rightthalamusproper,righttmptemporalpole,righttrifgtriangularpartoftheinferiorfrontalgyrus,rightttgtransversetemporalgyrus,rightventraldc,rs10498633_t,rs11136000_t,rs11767557_c,rs1476679_c,rs17125944_c,rs190982_g,rs2718058_g,rs3764650_g,rs3818361_t,rs3851179_a,rs3865444_t,rs610932_a,rs744373_c,subjectage,subjectageyears,tiv,updrshy,updrstotal
-nG+AMS1T5AD001,1.6574,1.9967,,50-59y,AD,,,20.9507,5.197,2.7126,2.8173,1.6358,edsd,AD,,M,,0.42715,4.798,4.2093,0.81368,9.3013,1.5494,0.39307,3.722,2.8559,50.1737,16.5335,235.1473,3.8264,4.7218,1.5824,1.8498,3.4635,7.8456,2.1027,3.0569,0.72341,7.0384,11.4147,28.3623,8.5245,2.3702,4.8397,1.8161,16.4015,5.9285,4.1149,1.3124,2.8646,6.5824,13.0691,4.1271,4.701,3.1531,1.4865,1.8123,3.8906,9.739,3.3911,2.3604,12.1909,2.3681,2.8016,2.4632,12.916,2.0714,3.8835,1.3181,13.1425,5.3764,9.3389,3.4951,11.2121,7.3316,7.42,8.0872,3.5532,1.699,5.4263,24,,AD,0.08307,,,,0.38502,3.9619,4.4877,0.786,10.8675,1.7043,0.39372,3.8622,3.0778,50.0217,16.2989,241.6072,3.5981,5.0343,1.601,1.8904,3.826,7.4427,2.0859,3.1953,0.69183,7.0583,11.9225,23.0982,9.3943,2.3364,4.5636,1.8667,17.1216,5.31,3.6719,1.273,2.6163,8.0218,14.637,3.8541,4.7004,2.9994,1.5608,1.8519,3.6981,10.1712,3.0949,2.2089,12.1874,1.9963,2.5849,2.1876,13.1141,1.9533,3.761,1.2701,14.2843,5.0612,7.8322,5.1031,10.3507,7.1187,7.1072,8.2445,3.2944,1.5237,5.1677,,,,,,,,,,,,,,,59,,,
-nG+AMS1T5AD002,1.8908,1.894,,+80y,AD,,,17.3199,4.2129,2.2727,2.0073,1.6388,edsd,AD,,F,,0.36453,4.8437,4.0227,0.67135,8.2846,1.4756,0.38116,2.531,2.2654,43.4686,13.3972,205.3014,4.0314,4.1951,1.26,1.8544,3.5592,6.3431,2.2985,2.4134,0.97989,6.3134,10.0529,26.0747,6.465,2.3551,4.6655,1.8975,18.4698,5.4256,4.279,1.2398,2.5869,7.2469,12.054,3.3395,3.7471,3.5285,1.6307,1.4076,4.3477,10.3953,2.6718,2.2657,11.8108,2.4227,2.7755,2.2295,12.7057,1.8775,3.2548,1.4126,15.446,5.6746,8.2955,3.1058,10.532,6.4764,6.2112,6.6037,4.0731,1.5216,4.4778,21,,AD,0.08786,,,,0.36634,3.8217,3.6452,0.67163,9.527,1.7302,0.39029,2.6701,2.7298,44.3447,13.1793,207.9605,3.9873,3.6229,1.3501,1.9041,3.9771,6.1382,2.2997,2.7353,0.90852,6.15,11.202,22.1398,6.4011,2.3243,4.5074,1.9547,18.504,4.634,4.1959,0.93746,2.4188,8.372,13.3432,2.6698,3.512,3.4804,1.7572,1.4495,3.7934,9.7676,2.4115,2.1693,9.8834,2.206,2.4463,1.8817,12.3752,1.6475,3.1718,1.4023,13.9708,4.9986,6.9453,3.2345,9.0975,6.2997,6.1854,6.9448,3.8094,1.4054,4.2836,,,,,,,,,,,,,,,80,,,
-nG+AMS1T5AD003,2.069,2.619,,60-69y,AD,,,20.0226,5.3622,3.3127,2.4571,2.3624,edsd,AD,,M,,0.41066,4.3304,4.1694,0.73158,7.631,1.4033,0.38064,3.0412,2.5116,50.524,16.1223,196.4083,3.8199,4.1994,1.3838,2.028,3.5127,6.5105,2.1343,2.9131,1.5268,4.9948,9.0001,25.8464,7.087,2.3012,4.0969,1.7409,17.4774,5.2587,3.86,1.068,2.2374,6.5953,11.0109,3.4671,3.794,3.2888,1.6012,1.4726,3.7611,9.2029,2.9231,2.2731,9.1474,2.1299,2.4123,2.1411,12.3921,1.9589,3.7792,1.2987,14.5603,4.7508,7.7603,3.4265,9.4275,6.4783,6.824,6.6702,3.9026,1.5251,4.9461,19,,AD,0.08187,,,,0.3548,4.2702,3.8432,0.75449,7.942,1.5222,0.37054,3.0371,2.8196,50.4762,15.737,191.2965,3.497,4.091,1.3361,1.8181,3.879,6.3838,2.0662,3.2393,2.9648,5.0863,8.4138,30.421,7.4536,2.1092,3.8266,1.8175,16.6386,4.2617,3.6011,0.87656,2.2226,7.0677,10.0426,2.8122,3.5564,2.9884,1.506,1.4639,3.1522,8.474,2.6508,2.2541,8.4421,2.145,2.2578,1.8764,11.5468,1.8112,3.4955,1.2767,14.3759,4.9167,6.6869,3.8214,8.0329,6.4699,6.3787,6.5082,3.2712,1.3778,4.7272,,,,,,,,,,,,,,,67,,,
-nG+AMS1T5AD004,1.9094,1.759,,70-79y,AD,,,15.0982,4.6394,2.6234,2.1363,2.0012,edsd,AD,,M,,0.36467,5.2082,4.5626,0.68272,8.7841,1.5585,0.36468,2.866,2.3982,46.103,12.1483,198.292,4.2043,4.5426,1.4985,2.2116,4.089,7.3579,2.518,2.8601,0.79468,6.5097,11.0739,34.1486,7.6426,2.4061,5.1542,2.1285,18.1065,5.9067,4.2674,1.1754,2.5841,7.6754,12.4664,4.1521,4.5015,3.6735,1.6968,1.3795,4.8098,11.1905,3.2237,2.4109,12.1633,2.5327,2.5913,2.3251,13.3822,2.4035,3.1797,1.296,16.4787,5.7856,8.1623,4.2232,11.3832,6.6036,6.1372,7.7578,4.4426,1.6622,4.2063,17,,AD,0.08197,,,,0.35329,4.717,4.1966,0.70472,9.8865,1.9075,0.36335,2.7894,2.5753,46.4852,12.2044,204.1758,4.2217,4.6651,1.5815,2.2748,4.2283,7.6522,2.4293,3.0477,0.81809,6.581,11.6726,27.6324,8.1635,2.4906,5.1927,2.0519,19.0915,5.5954,4.3027,1.2135,2.5403,8.6581,14.0146,3.201,4.2578,3.9375,1.8217,1.3624,4.3402,10.9141,2.8815,2.3053,10.7252,2.3196,2.423,2.0228,13.5346,1.9556,3.0823,1.275,15.9535,5.9055,7.2196,4.5465,10.5532,7.3023,5.8994,8.0225,4.2839,1.4453,3.9964,,,,,,,,,,,,,,,72,,,
-nG+AMS1T5AD005,1.4362,1.6636,,60-69y,AD,,,15.9469,4.6495,2.6432,2.2577,2.1252,edsd,AD,,F,,0.42191,4.2382,3.8945,0.74934,8.3081,1.5227,0.38326,3.2724,2.9263,46.0664,13.839,197.6866,4.077,4.9988,1.3495,2.0093,3.3553,6.3067,2.0127,2.9242,0.62754,5.9854,8.8112,22.5146,7.8474,2.434,4.507,1.7425,18.644,5.789,3.9675,1.0462,2.5113,6.5312,10.8598,3.919,4.1272,3.4705,1.5986,1.6056,3.7924,9.5578,2.9188,1.9422,11.4371,2.2866,2.5155,1.8206,12.7934,1.976,3.6287,1.2219,14.4139,5.0821,7.5856,4.3388,10.0019,5.4578,6.885,6.1146,3.7373,1.508,4.6436,26,,AD,0.07221,,,,0.33512,3.2603,3.2609,0.73506,7.8043,1.4918,0.35033,3.3281,2.8147,46.8493,13.8539,185.1925,3.6734,4.6919,1.3483,1.7009,3.5829,5.8896,1.8545,3.2409,1.6199,5.9433,8.7702,31.5536,7.6982,1.9967,4.252,1.6093,16.3713,4.4818,3.3972,0.95246,2.3446,7.3804,10.0935,3.4893,3.9739,3.4479,1.5031,1.6072,3.3779,9.1521,2.5458,1.8647,9.5254,1.9315,2.133,1.6319,12.6393,1.6166,3.0876,1.1141,13.0346,4.918,6.1646,4.6428,8.9724,4.9838,6.1889,6.2112,3.6484,1.326,4.4105,,,,,,,,,,,,,,,65,,,
-nG+AMS1T5AD006,1.326,1.9878,,+80y,AD,,,16.1879,4.7614,2.6627,2.3147,1.6168,edsd,AD,,M,,0.4069,5.0827,3.7917,0.70386,9.2936,1.4945,0.36829,3.1698,2.6956,45.3358,12.1868,196.6974,4.2639,4.9183,1.3036,2.0209,3.5591,7.0287,2.0685,2.9165,0.92141,7.0691,10.6466,23.1483,7.4578,2.3936,4.8919,1.8038,17.8962,5.6108,3.9073,1.1971,2.5876,7.1258,12.8805,4.4609,4.5176,3.7217,1.5915,1.3431,4.3836,11.3547,2.8722,2.1204,12.0485,2.6183,2.4908,2.0694,12.9605,2.0925,3.3227,1.2436,14.7992,5.7898,9.8821,3.8705,11.2477,7.0219,6.3217,6.3247,3.9865,1.6371,4.2351,18,,AD,0.07584,,,,0.34444,4.2008,3.6737,0.65782,10.6025,1.797,0.35074,3.113,2.8146,45.1767,11.9531,197.7947,4.4985,5.0648,1.203,2.2071,4.0094,6.5065,2.1154,3.1112,0.92382,7.3182,10.5798,16.9487,7.7451,2.2271,4.617,1.7524,19.0582,5.2269,3.9207,1.1597,2.5289,8.1639,13.5573,3.7782,4.3228,3.7581,1.4201,1.329,4.1254,11.5747,2.5475,2.0289,10.8712,2.2152,2.3126,1.8492,12.5585,1.8069,3.1613,1.1764,14.8152,5.4872,8.702,4.817,11.6641,6.9194,6.0833,6.266,3.3747,1.3621,3.9747,,,,,,,,,,,,,,,80,,,
-nG+AMS1T5AD007,2.0435,2.0471,,70-79y,AD,,,16.9601,4.4349,2.4741,2.0232,1.8061,edsd,AD,,M,,0.40836,4.7429,4.1438,0.70698,8.7511,1.6105,0.37411,2.7036,2.9981,44.4978,13.625,203.3715,4.2844,4.0269,1.467,2.0771,3.3982,6.8859,2.3608,2.4835,0.81228,6.3408,10.9586,21.5958,6.6031,2.4742,4.8206,1.9217,19.0342,5.8415,4.3392,1.1154,2.5397,7.4662,12.8189,3.5344,4.1079,3.1796,1.5832,1.4316,4.4955,10.6114,2.7969,2.4505,11.8666,2.5641,2.4754,2.3636,12.6192,1.9931,3.8415,1.318,15.0536,5.6865,7.9466,3.3441,10.1458,6.6646,6.5764,7.4517,4.1227,1.6621,4.5994,19,,AD,0.08211,,,,0.367,4.0922,3.7839,0.69746,9.6472,1.8008,0.37297,2.9806,2.9267,43.9993,13.1238,201.0276,3.8148,4.5201,1.4172,1.8978,3.8635,6.6833,2.1897,2.6159,1.2616,6.4408,10.7731,18.4961,7.3238,2.5819,4.0914,1.8465,18.6379,5.0169,3.854,1.1153,2.3051,8.6644,13.0986,3.1751,4.0474,2.944,1.7116,1.4367,3.9231,10.2594,2.5366,2.2767,10.264,2.1442,2.3928,2.1024,12.2162,1.8383,3.5692,1.255,14.5554,5.6308,6.9308,4.1901,9.2403,6.9612,6.1098,7.5055,3.479,1.4823,4.4063,,,,,,,,,,,,,,,74,,,
-nG+AMS1T5AD008,1.1722,1.4343,,70-79y,AD,,,17.8395,5.2514,2.8418,2.354,1.005,edsd,AD,,M,,0.47258,4.7506,4.0412,0.862,8.6158,1.7562,0.41841,2.3839,2.9434,52.2059,14.6072,207.3053,4.5054,3.6537,1.654,2.0926,3.4063,7.0395,2.3479,3.1564,0.66107,6.2477,11.057,16.8039,6.9625,2.6598,4.739,1.8577,20.0176,6.3715,4.623,1.0919,2.5501,7.0379,12.1207,3.47,4.4513,3.264,1.5722,1.4708,4.4885,10.0906,3.163,2.2345,11.849,2.6758,2.7524,2.181,13.9885,2.2445,3.898,1.378,15.2126,5.5664,8.3731,3.2716,11.5007,5.7602,7.109,7.4704,3.9122,1.7511,4.5321,26,,AD,0.06811,,,,0.46576,3.9791,3.946,0.95187,10.3218,1.9667,0.43821,2.4982,3.2651,51.7615,14.1657,216.916,4.4781,3.9498,1.8101,2.0318,4.0432,7.9794,2.3691,3.515,0.49761,6.5007,11.9037,12.81,7.7532,2.5382,4.5987,1.9077,19.4266,5.1971,4.4345,1.2138,2.6297,8.254,13.4955,3.0193,4.4497,3.7103,1.6731,1.4916,4.248,10.6144,3.026,2.3943,11.073,2.3943,2.6135,2.1469,13.6143,1.9853,3.9666,1.3402,16.7998,5.4956,7.7506,4.0087,12.5354,6.7205,7.0544,8.0809,3.5686,1.6472,4.4045,,,,,,,,,,,,,,,72,,,
-nG+AMS1T5AD009,0.99857,1.4305,,60-69y,AD,,,17.0278,4.6708,2.7728,2.2487,1.0792,edsd,AD,,F,,0.44792,4.1942,3.9101,0.70257,7.0883,1.6453,0.38938,3.054,2.8533,44.5889,14.7581,211.7031,4.0095,4.5205,1.4221,1.7242,3.4007,6.7801,2.2954,2.6996,0.49923,5.7288,10.336,12.0323,7.1527,2.6616,4.2832,1.8049,16.3119,5.0434,4.472,1.1025,2.6228,6.4805,12.2163,3.8253,3.7139,3.1188,1.597,1.5671,3.721,9.3258,2.9696,2.2194,11.6057,2.3117,2.7098,2.2119,11.3767,1.8219,3.7625,1.2741,14.5303,4.8334,8.5434,3.8561,9.5985,6.0532,7.1107,7.1232,3.616,1.638,4.655,22,,AD,0.07949,,,,0.40807,3.6227,3.7596,0.75901,9.369,1.8691,0.41609,2.8733,3.0766,44.7901,14.305,224.0112,4,5.3005,1.6085,1.8055,3.579,7.1346,2.1868,3.108,0.44345,5.9288,11.4121,9.4417,7.6983,2.4026,4.1402,1.7382,18.0963,4.873,4.4105,1.1934,2.7537,7.4045,13.0595,3.0313,4.1184,2.9391,1.5115,1.5866,3.6334,9.9252,2.8906,2.126,10.4444,2.2662,2.6656,1.8737,12.3347,1.9286,3.8423,1.2573,13.661,5.0284,7.691,4.2064,10.1611,7.0181,7.0444,7.7123,3.524,1.4227,4.4731,,,,,,,,,,,,,,,61,,,
-nG+AMS1T5AD010,1.0902,1.2937,,70-79y,AD,,,18.0477,4.7605,2.4809,2.2808,1.4649,edsd,AD,,F,,0.42948,4.4059,4.0606,0.94374,8.7825,1.7273,0.41993,2.8576,2.8569,42.4788,14.4965,214.9522,3.9962,4.6934,1.741,2.0053,3.7036,6.7978,2.4152,3.1353,0.505,5.7158,10.3585,17.0523,7.1813,2.7764,4.6039,1.9479,18.4136,5.7141,4.748,1.2289,2.5427,6.6172,12.5934,3.807,3.7823,3.4972,1.8071,1.6295,3.9558,9.3937,3.1923,2.2492,11.6036,2.4953,2.7799,2.1704,11.5101,2.0007,3.8361,1.3214,14.9169,4.9941,8.8669,3.6497,8.897,7.4695,7.1892,7.3576,4.0317,1.5247,4.8199,21,,AD,0.08417,,,,0.3775,3.9522,3.811,0.97755,9.7817,1.8815,0.41245,2.9237,3.1106,41.7855,14.0101,222.5464,3.9385,4.3766,1.8523,1.7889,3.8345,7.3327,2.4263,3.4963,0.50498,6.349,11.7056,14.5098,7.9472,2.396,4.4194,1.8762,18.2751,5.2515,4.3562,1.0365,2.3888,7.5734,13.2712,3.4221,4.0362,3.3756,1.6822,1.6061,3.8757,9.2107,3.1056,2.1687,10.6207,2.2214,2.5147,2.0752,12.0586,1.9638,3.8205,1.2498,15.0529,4.8345,7.6058,4.2216,9.3513,7.4041,6.8393,7.932,3.9895,1.442,4.6196,,,,,,,,,,,,,,,70,,,
-nG+AMS1T5AD011,2.4856,2.5393,,70-79y,AD,,,17.4098,5.4468,2.8145,2.386,2.4679,edsd,AD,,M,,0.40797,4.7051,3.7959,0.79891,10.181,1.763,0.38088,2.7667,2.1129,49.5596,14.5417,218.0099,3.9544,3.734,1.4381,1.8812,3.633,7.1315,2.2232,3.1136,2.5342,6.8361,11.4838,43.4433,6.9652,2.6388,4.6561,1.7383,17.8848,6.3697,4.3173,1.1624,2.7218,7.2659,13.567,3.7806,4.2907,3.4289,1.5728,1.6152,4.3719,10.2192,3.0974,2.2809,12.4707,2.4892,2.7842,1.9832,12.7047,1.8926,3.605,1.3388,15.9463,5.4371,9.4176,3.6446,10.4671,6.856,6.8134,6.7795,3.4662,1.2704,4.8287,26,,AD,0.06925,,,,0.3829,4.218,4.0195,0.83472,10.8155,1.6857,0.388,2.7035,2.8121,49.4867,14.3484,225.2247,4.2881,3.9205,1.5306,1.8751,3.8834,6.7819,2.2614,3.2757,1.7017,6.6582,10.9084,33.5477,7.6884,2.2626,4.7913,1.7486,18.5739,5.677,3.8924,1.2112,2.7194,8.0372,13.0318,3.1303,4.0676,3.4063,1.4553,1.636,3.964,10.0857,2.7557,2.5186,11.4951,2.1644,2.4825,2.1181,12.813,1.7809,3.4449,1.3166,15.0942,5.4238,8.9866,3.8052,10.8623,7.5884,6.7746,7.7161,3.2317,1.5177,4.6494,,,,,,,,,,,,,,,75,,,
-nG+AMS1T5AD012,1.3194,1.8325,,70-79y,AD,,,15.4763,4.445,2.4478,2.2063,1.0692,edsd,AD,,F,,0.33873,4.0967,4.0423,0.6146,8.0933,1.5153,0.33412,2.8508,2.5949,42.9074,12.2351,181.1042,3.949,3.9646,1.276,1.8754,3.198,6.2485,2.2292,2.3678,0.88738,5.8245,9.4479,17.155,6.7154,2.2605,4.6495,1.6748,18.7835,5.9976,4.1708,1.1718,2.7629,6.4951,11.6121,3.2542,3.938,3.1416,1.387,1.3328,4.325,10.1946,2.6444,2.2662,11.0625,2.1707,2.496,2.4478,11.3994,1.927,3.1165,1.1538,14.1298,5.3581,7.231,3.2846,10.0293,6.7163,6.3659,7.3564,3.6846,1.5661,4.1256,23,,AD,0.07988,,,,0.32046,3.6799,3.7177,0.66677,8.8763,1.8686,0.3343,2.9744,2.7236,44.0019,12.0475,183.9344,3.5212,4.3805,1.3782,1.8833,3.6211,6.1583,2.0793,2.6804,1.4247,6.045,9.4246,14.503,7.4808,2.2373,4.3988,1.7473,18.3467,4.5876,4.0234,1.0944,2.5598,7.3388,11.2149,2.9064,4.0312,3.3074,1.5948,1.329,3.9209,10.0554,2.6202,2.3727,9.205,1.7874,2.3581,2.1977,10.5838,1.8366,3.035,1.1089,14.1774,4.9108,7.3483,4.1034,8.8861,6.9532,6.109,7.6678,4.0176,1.4701,3.9836,,,,,,,,,,,,,,,73,,,
-nG+AMS1T5AD013,1.9673,2.6574,,70-79y,AD,,,15.8861,3.5022,2.1906,1.8657,2.3346,edsd,AD,,F,,0.42163,4.0877,3.8616,0.69308,7.7611,1.2674,0.36477,2.5846,3.1047,36.5007,11.6878,164.9992,3.4004,4.3978,1.291,1.6997,2.9676,5.8322,1.9906,2.4136,1.3765,4.903,9.5654,34.8398,6.233,2.1536,4.0453,1.6313,16.5078,5.0145,3.6247,0.80524,1.9395,5.9558,11.822,3.0025,3.3534,3.0061,1.3874,1.3587,3.6379,8.5872,2.5337,2.0874,10.1974,2.0247,2.3358,1.9672,11.6975,1.6792,4.0548,1.1602,11.872,4.542,7.8423,3.4703,8.3738,6.0871,5.8946,6.727,3.1986,1.4112,4.2395,23,,AD,0.06724,,,,0.35861,3.8072,3.6431,0.70751,8.6949,1.603,0.37308,3.666,3.3177,36.0805,11.4282,167.8266,3.4373,4.371,1.3679,1.5209,3.3099,6.3448,1.8392,2.6915,1.285,5.917,9.7925,36.3593,7.2141,1.9744,4.0035,1.5917,17.0282,4.9289,3.4423,0.88409,2.0228,6.6631,11.4969,3.0101,3.503,3.2567,1.2655,1.3283,3.4858,8.2805,2.4883,2.0525,8.8546,2.0023,2.0512,1.6495,11.5471,1.6377,4.197,1.0999,12.0086,4.6006,7.0275,3.8625,8.437,5.8692,5.7447,6.2694,3.0039,1.2221,3.9919,,,,,,,,,,,,,,,77,,,
-nG+AMS1T5AD014,1.6544,1.6066,,70-79y,AD,,,16.8427,4.1296,2.4347,2.0515,1.3807,edsd,AD,,F,,0.3566,4.2551,3.8767,0.78925,8.9399,1.5186,0.37186,3.0365,2.7446,41.053,12.1929,218.3612,3.5278,4.1837,1.5327,1.8292,3.0901,6.4367,2.0114,2.8448,0.45515,6.2964,10.4842,20.4611,6.6881,2.4265,4.2699,1.7345,17.7121,5.4933,3.9769,0.9933,2.4819,6.2515,12.6361,3.6599,3.9903,3.6341,1.559,1.4293,4.3675,10.339,2.9354,2.1676,11.527,2.4967,2.5267,2.1058,12.8841,2.157,3.2567,1.2607,15.0795,5.0772,8.8249,3.746,11.403,6.3754,7.0423,6.9268,4.1627,1.574,4.6656,25,,AD,0.07783,,,,0.33536,3.9795,3.7475,0.74474,10.0281,1.7143,0.35968,3.0483,2.7642,41.8136,12.1539,221.3739,3.9593,4.429,1.5542,1.9869,3.3082,6.7407,2.1574,2.9717,0.4878,6.666,11.059,18.0767,7.0904,2.2034,4.2652,1.803,17.5811,4.983,3.8753,1.0391,2.4763,7.1431,12.9693,2.8595,4.0324,3.43,1.5666,1.48,3.8848,10.2587,2.7381,2.1623,10.0495,2.2636,2.2663,1.9028,12.0309,2.1452,3.0985,1.2151,13.6414,4.5318,7.6249,4.3206,11.6695,6.0187,6.6343,6.8489,3.5994,1.6093,4.4033,,,,,,,,,,,,,,,71,,,
-nG+AMS1T5AD015,1.6984,1.5141,,60-69y,AD,,,19.7882,5.3587,2.7406,2.2369,1.4225,edsd,AD,,F,,0.37612,4.591,3.8621,0.63576,8.6831,1.6583,0.37744,3.1029,2.5936,47.4352,15.9721,210.3322,4.1326,4.5504,1.4114,2.1008,3.4058,7.0076,2.3049,2.4742,0.59791,5.7691,10.4543,19.029,7.3066,2.5633,4.9906,1.8724,18.7659,5.8975,4.5908,1.4219,2.8949,6.957,13.2393,3.3037,4.1568,3.8766,1.7152,1.5372,3.9408,10.3716,2.8716,2.1576,13.1117,2.5973,2.691,2.1705,13.6239,2.0384,3.5516,1.3193,14.3946,5.8171,8.7571,3.7933,10.7067,6.8017,6.7086,7.6639,4.2257,1.6424,4.9523,25,,AD,0.09305,,,,0.35586,3.8401,3.7167,0.6842,9.3009,1.9518,0.39281,3.1189,2.6894,47.1373,15.6718,213.1064,4.3834,4.5157,1.4105,2.0299,3.7893,6.7401,2.1596,2.7222,0.67891,6.1973,10.9749,14.5767,7.4569,2.4443,5.0121,1.8397,18.8562,5.129,4.318,0.9789,2.4741,7.6669,14.1365,2.7183,3.9841,3.1299,1.6095,1.5049,3.9476,10.8558,2.8073,2.2352,11.3472,2.1702,2.5308,1.9836,13.2599,1.8163,3.5951,1.2562,13.9933,5.5129,8.3242,4.1039,10.4039,7.3502,6.4747,7.8679,3.8404,1.4827,4.6771,,,,,,,,,,,,,,,66,,,
-nG+AMS1T5HC001,1.2305,1.889,,60-69y,CN,,,15.4203,4.752,2.5975,2.2166,1.0805,edsd,CN,,F,,0.37575,4.4821,3.6634,0.86678,9.0712,1.6008,0.38336,2.9748,2.3891,43.5553,13.0099,208.929,3.5452,4.3306,1.6574,1.8246,3.4674,7.2967,2.149,3.1889,0.52345,5.9438,11.1036,12.3368,7.335,2.3544,4.8038,1.8231,19.601,5.873,4.2652,1.121,2.8146,6.6438,12.7972,3.0834,4.3583,3.4322,1.4578,1.3603,4.2577,10.4497,3.1112,1.9328,11.9634,2.2076,2.5128,2.1099,13.2577,1.8446,3.2036,1.2432,14.6131,5.424,8.9471,3.4355,11.1225,7.4058,6.792,7.5218,4.0145,1.3623,4.4331,28,,,0.0823,,,,0.35779,4.0974,3.6847,0.89225,10.1448,1.8601,0.38682,2.8749,2.4968,44.5202,12.8741,212.1139,3.6271,4.5471,1.6649,1.8338,3.6496,7.7436,2.0385,3.3942,0.71844,6.1452,11.2832,11.5201,7.8232,2.3152,4.5969,1.7046,19.2735,5.123,4.1381,1.3088,2.8271,7.3201,13.0278,2.5444,4.1769,3.6146,1.4492,1.4047,3.8029,10.2318,2.9145,1.9964,10.9172,1.8025,2.4142,1.9255,13.7538,1.5961,3.3313,1.1837,14.5232,5.1254,7.7679,4.0265,10.6562,6.8385,6.4092,7.404,3.834,1.2627,4.2464,,,,,,,,,,,,,,,65,,,
-nG+AMS1T5HC002,1.0728,1.0427,,70-79y,CN,,,12.9634,3.5114,1.9277,1.6298,0.91734,edsd,CN,,F,,0.34025,3.6379,3.1873,0.81137,7.4818,1.3872,0.32452,2.6576,2.5135,35.768,11.0439,191.4973,3.2123,3.3334,1.5029,1.6246,2.9333,5.9684,1.8433,2.5125,0.68477,4.6051,9.4893,13.9193,5.3717,2.1365,3.9422,1.5133,16.6634,4.627,3.7118,0.99619,2.3561,5.6315,10.9382,2.5104,3.2673,3.1155,1.2784,1.2234,3.3135,8.282,2.6449,1.7462,9.5882,2.0994,2.2911,2.0287,10.4681,1.8326,2.9394,0.99393,11.8028,4.5588,7.3065,2.95,9.3012,6.5243,5.5957,6.7463,3.5311,1.3835,3.6547,29,,,0.07224,,,,0.30261,3.2577,3.0319,0.78395,7.999,1.5499,0.33195,2.7214,2.6014,36.5871,10.6258,191.1721,2.9388,3.7323,1.4985,1.6918,2.9038,5.9909,1.7564,2.7104,0.6038,4.9259,9.5894,9.1226,6.2975,1.9061,3.8606,1.4819,15.2414,3.8107,3.4543,0.96823,2.4027,6.2531,11.6881,2.4206,3.4491,3.1981,1.2019,1.2041,3.3794,9.0041,2.5089,1.6208,8.3525,1.5889,2.0893,1.6185,10.8056,1.4385,2.9631,0.98169,12.3132,4.5457,5.7873,3.6905,8.2168,5.7204,5.4271,6.8371,3.0398,1.0384,3.4773,,,,,,,,,,,,,,,73,,,
-nG+AMS1T5HC003,1.1357,1.688,,70-79y,CN,,,17.0687,4.3015,2.6622,2.1688,1.167,edsd,CN,,M,,0.48582,4.3799,4.4515,0.871,9.1975,1.7618,0.40709,3.1286,3.1397,46.1125,13.5793,222.3009,3.9928,4.6713,1.7317,2.2115,3.5694,7.4301,2.3994,3.1363,0.51854,6.8765,12.3469,17.4128,7.3998,2.5654,4.0497,1.9734,19.7148,6.4443,4.7516,1.2153,2.7193,7.2608,15.3204,3.817,4.3657,3.2971,1.7847,1.4878,4.4328,10.1542,3.1306,2.2236,12.7861,1.9596,2.9642,2.4308,13.5132,1.6056,3.8632,1.3458,15.1834,5.2441,8.5848,3.5157,9.8356,7.273,7.2447,8.3456,3.7857,1.3547,4.6248,29,,,0.0698,,,,0.4372,3.7469,4.2385,0.88555,11.0966,1.9825,0.40709,3.2961,3.2366,45.4266,13.2066,222.6565,4.011,4.9111,1.7652,2.0886,3.9318,7.7255,2.2004,3.2016,0.53597,7.1069,12.0106,14.272,7.9751,2.5126,4.3864,1.9437,18.3009,5.3311,4.2485,0.96357,2.7882,7.6211,15.3034,3.2368,4.2732,3.5368,1.8317,1.4824,3.9948,10.3087,2.9867,2.2872,10.596,1.9139,2.5856,2.0531,13.2089,1.5262,3.7535,1.2547,15.0981,5.186,8.1754,4.285,9.4709,7.5389,6.7401,8.6265,3.8575,1.2864,4.4091,,,,,,,,,,,,,,,76,,,
-nG+AMS1T5HC004,1.1069,1.5612,,+80y,CN,,,15.4763,3.8533,2.247,1.8396,1.2509,edsd,CN,,F,,0.38516,3.932,3.6771,0.70985,6.9952,1.4646,0.33314,2.1666,2.6816,40.557,11.7821,162.7586,3.7172,4.1609,1.3546,1.7859,3.3375,6.0027,1.8207,2.4738,0.81761,4.9571,9.6013,17.1651,6.2023,2.4217,4.228,1.5314,19.5531,4.7492,3.6329,1.1048,2.4033,6.2394,11.2666,2.7891,3.5657,2.8783,1.6324,1.2221,3.9112,9.1919,2.7302,1.8463,10.672,2.3302,2.2946,1.887,10.584,1.9742,3.0858,1.0958,12.8249,4.7226,8.2982,2.9305,8.4178,6.4311,6.0392,6.2847,4.1721,1.4931,3.9391,29,,,0.06724,,,,0.32134,3.5469,3.539,0.67646,9.1242,1.4902,0.32938,2.2703,2.7039,40.6976,11.5711,164.8177,3.3255,4.1327,1.3537,1.7098,3.319,6.0937,1.787,2.6126,0.60329,5.9669,9.7293,21.4528,6.3538,2.0918,3.9721,1.5232,15.3359,4.6568,3.4502,0.94853,2.2137,6.8296,12.1742,2.5476,3.5301,2.8824,1.6195,1.2848,3.3842,9.4155,2.4133,1.8338,8.9708,2.0612,2.2384,1.697,11.1662,1.8629,2.967,1.0904,11.5871,4.5501,6.9284,3.5488,9.2977,6.6551,5.8536,6.5856,3.4253,1.2779,3.7728,,,,,,,,,,,,,,,82,,,
-nG+AMS1T5HC005,0.93743,1.4846,,70-79y,CN,,,18.2648,4.801,2.4586,2.1834,1.3199,edsd,CN,,F,,0.44488,4.237,3.9875,0.87536,7.4352,1.5719,0.38613,2.7017,2.9597,41.6152,14.2666,204.0367,3.8558,4.0439,1.6967,2.0134,3.411,6.5488,2.1019,3.121,0.54994,5.7124,10.0638,15.3366,6.5239,2.5023,4.0368,1.6286,17.052,5.4096,4.0271,1.0847,2.6421,6.5865,11.8988,3.2337,3.809,3.5357,1.5883,1.4625,3.3802,8.7884,3.1029,2.0438,10.6662,2.2733,2.6404,2.4076,11.3856,1.8972,3.8851,1.1882,14.426,4.7871,7.0505,3.4762,8.9853,6.5486,6.8888,7.3018,3.8279,1.6296,4.6618,29,,,0.07045,,,,0.41178,3.7232,3.872,0.84717,9.1016,1.6933,0.3918,2.6718,3.1158,40.896,14.0826,205.7097,3.697,3.7315,1.6624,1.8268,3.443,6.4928,2.0401,3.1839,0.50557,5.3781,9.8386,15.6377,7.0298,2.2757,3.9332,1.6016,16.6491,4.6366,3.7609,0.88375,2.3686,7.3471,12.6209,2.589,3.5923,3.316,1.6283,1.4184,3.1848,9.1677,2.8982,2.1409,8.6664,2.4128,2.3559,2.1575,11.2158,2.0422,3.8051,1.185,15.1427,4.7634,7.6003,4.0704,9.6935,7.4023,6.7261,7.0973,3.437,1.6639,4.4261,,,,,,,,,,,,,,,77,,,
-nG+AMS1T5HC006,2.3554,2.6714,,70-79y,CN,,,19.2789,5.2392,3.0603,2.4106,2.0243,edsd,CN,,M,,0.41846,4.9832,4.1629,0.7873,9.8332,1.5999,0.38748,2.7817,2.86,46.647,15.2872,243.7703,4.0862,4.3741,1.366,1.7371,3.5539,6.4949,2.2575,3.0368,1.0446,5.6319,10.9496,31.0679,7.7907,2.5432,5.4238,1.9318,17.5783,5.9197,4.163,1.2076,2.9189,7.4916,13.6104,3.2653,4.059,2.706,1.5023,1.6443,4.6896,10.643,2.9935,2.5113,11.0974,2.22,2.425,2.3124,12.5431,1.7712,3.7316,1.3703,16.1059,5.6885,7.7956,3.1461,9.8591,5.83,7.4579,6.8565,3.4015,1.6273,5.1122,29,,,0.07575,,,,0.35908,4.3509,4.0501,0.84859,10.4211,1.6703,0.39072,2.8901,2.9475,47.1015,15.1701,240.1943,4.0322,4.7451,1.5978,1.9178,4.0838,7.125,2.206,3.3401,0.90656,7.1968,11.3092,31.4798,7.9709,2.133,4.5884,1.9356,19.556,5.7479,3.9961,1.2076,2.8652,8.4822,12.8451,3.1322,4.4182,3.386,1.5054,1.5877,4.0325,11.1179,2.7628,2.8244,9.6355,2.317,2.1795,2.2556,12.4315,1.9074,3.4847,1.2988,14.6543,5.5549,7.1324,4.3004,9.1951,6.2974,7.1647,7.0624,3.4631,1.6725,4.7485,,,,,,,,,,,,,,,79,,,
-nG+AMS1T5HC007,1.6659,1.7828,,70-79y,CN,,,17.8769,5.1535,3.0321,2.4826,1.6666,edsd,CN,,M,,0.47796,5.078,4.9566,0.8445,9.3653,1.6061,0.424,3.0552,3.0989,51.1779,15.1321,216.6957,4.6146,4.8128,1.7295,2.1918,3.9239,7.9638,2.2967,3.3001,0.48128,6.7984,13.2071,13.7496,7.5703,2.6396,5.4468,1.8985,19.216,6.4185,4.4733,1.3434,3.0391,7.5365,15.4631,4.3392,4.6258,3.1556,1.7859,1.6449,4.9609,11.7447,3.4822,2.719,12.6033,2.4047,2.8525,2.5624,12.6387,1.7191,4.3739,1.4482,17.3921,5.9104,10.0674,4.0538,10.7372,7.583,7.7141,8.4243,3.7445,1.4211,4.9688,30,,,0.08927,,,,0.41211,4.7502,4.4494,0.88817,11.0332,2.0729,0.42072,3.1797,3.1087,51.8561,14.6903,219.8286,3.7911,5.6521,1.876,1.9982,4.1201,8.1061,2.2995,3.5268,0.50053,7.3504,12.0911,13.2517,8.4542,2.6408,5.416,1.9492,18.6234,5.5033,4.4177,1.1802,2.8441,8.3291,15.0358,3.5615,4.4547,3.1271,1.7978,1.6274,4.2539,11.757,3.3586,2.5473,11.4211,2.3964,2.5869,2.2957,13.0814,2.013,4.1601,1.3419,16.0654,5.6773,8.8272,5.3792,10.9949,7.9936,7.4829,8.5115,3.6594,1.5917,4.7513,,,,,,,,,,,,,,,72,,,
-nG+AMS1T5HC008,1.0932,2.2425,,70-79y,CN,,,15.199,3.9893,2.6174,2.0517,1.6012,edsd,CN,,F,,0.42826,4.1262,3.4235,0.7322,9.3178,1.5448,0.37164,2.4959,2.7411,41.9286,12.8402,202.0467,3.1584,4.0078,1.4425,1.6809,2.8299,6.45,1.9025,2.5833,0.50281,6.0717,10.8507,22.2409,6.3756,2.4227,4.4131,1.6249,16.4381,6.502,3.7905,0.88686,2.0521,5.6651,14.3444,3.0486,3.6426,3.4143,1.3539,1.3995,3.8467,10.2851,2.7835,1.812,10.97,2.0871,2.4663,1.8051,11.21,1.6919,3.438,1.1858,12.5322,4.4374,8.6658,3.6118,10.7694,6.5595,6.1353,6.9864,3.6013,1.2821,4.2019,29,,,0.06877,,,,0.38968,3.3501,3.4672,0.73159,9.5638,1.7983,0.38346,2.2925,2.8581,41.6767,12.4228,201.5903,3.455,4.0856,1.4647,1.8713,3.4857,6.3165,1.8886,2.8518,0.38128,6.2831,10.8354,16.018,6.5332,2.3407,4.1756,1.603,16.1406,4.8799,3.741,0.9126,2.0726,6.5775,14.5052,2.8103,3.6301,3.318,1.5267,1.438,3.7085,9.8992,2.5701,1.8127,10.9132,2.0792,2.3463,1.712,10.9258,1.7643,3.4478,1.1412,12.2098,4.5591,8.22,4.3735,9.6628,7.0929,6.0902,7.6569,3.4244,1.2908,3.978,,,,,,,,,,,,,,,70,,,
-nG+AMS1T5HC009,1.814,2.5602,,70-79y,CN,,,16.7592,4.5333,2.4711,2.0488,1.5971,edsd,CN,,F,,0.37454,4.2679,3.4546,0.78837,9.0189,1.5173,0.37894,2.8455,2.5866,43.1009,13.553,198.4048,3.869,4.3568,1.589,1.7103,3.1307,6.399,2.1713,2.8692,0.55843,5.9092,10.8045,21.7893,6.1336,2.5025,4.2802,1.7653,18.6146,6.139,4.2287,0.88755,2.1453,6.7466,13.7692,3.7925,3.6689,3.3705,1.502,1.4396,4.1181,9.6476,2.9457,2.154,11.3227,2.2295,2.6967,2.0946,11.3458,1.6888,3.3873,1.3157,12.2959,5.5811,8.5652,3.8479,10.7412,6.4642,6.7553,7.5228,3.4992,1.4272,4.3849,30,,,0.06957,,,,0.33461,3.4098,3.3815,0.82664,10.3369,1.7727,0.37465,2.8566,2.7586,43.4399,13.3747,204.0351,3.5984,4.2182,1.668,1.5552,3.405,6.6092,2.0323,3.1175,0.65435,6.1003,11.3715,17.315,6.7319,2.2165,4.0733,1.6765,17.552,5.2988,4.0233,1.149,2.3706,7.6768,14.1306,2.767,3.6394,2.7926,1.301,1.4064,3.8115,9.785,2.7144,1.9653,10.5483,2.0743,2.2339,1.7943,12.177,1.7591,3.1172,1.2038,12.2302,5.3583,8.2656,4.5761,9.9849,7.0811,6.5098,8.0801,3.049,1.3212,4.1878,,,,,,,,,,,,,,,70,,,
-nG+AMS1T5HC010,0.97687,1.4216,,70-79y,CN,,,14.7753,3.9446,2.2385,1.9849,1.1857,edsd,CN,,F,,0.37516,4.2226,3.1761,0.6525,8.5942,1.488,0.34048,3.342,2.3543,40.0559,11.9709,208.3012,3.7464,4.2839,1.3277,1.7469,3.1156,6.0968,2.1474,2.4806,0.33711,5.3593,9.9434,11.423,6.9309,2.3286,4.0897,1.7715,18.2664,5.4848,3.9559,0.95627,2.3329,6.1665,11.8295,3.7023,3.952,3.0267,1.4082,1.2873,4.253,10.1122,2.7603,1.8075,10.9985,2.0306,2.3887,1.8114,11.9401,1.6452,2.9935,1.2596,12.6797,5.0618,9.1592,3.8033,10.6744,6.3452,6.2495,6.4164,3.5052,1.3092,4.078,26,,,0.07862,,,,0.34953,4.0076,3.0836,0.68493,10.0177,1.6198,0.34545,3.3005,2.4421,39.8214,11.9444,212.1663,3.4136,4.6814,1.3917,1.6897,3.4374,6.3586,2.0423,2.7308,0.43528,6.0311,10.3798,9.4804,7.4337,2.0858,4.245,1.7035,18.315,5.1387,3.7179,0.97367,2.299,6.7998,12.6236,3.2164,3.8431,3.2791,1.457,1.3057,3.8666,10.1944,2.5203,1.7214,10.0348,1.8868,2.1371,1.5907,11.6578,1.587,3.0072,1.2301,11.8694,4.9874,7.0944,4.5361,9.4267,6.2985,5.9992,6.7056,3.5618,1.2238,3.8768,,,,,,,,,,,,,,,72,,,
-nG+AMS1T5HC011,1.169,2.0062,,70-79y,CN,,,18.0598,4.3786,2.4745,2.2798,1.0989,edsd,CN,,F,,0.54456,4.9132,4.5723,0.96388,10.4851,1.891,0.41552,3.7533,3.6918,46.6539,14.7498,257.7759,4.4326,5.1742,1.8626,2.1815,4.3243,7.9531,2.414,3.4711,0.49151,7.263,12.594,13.0408,7.8541,2.7562,5.1811,2.0602,20.8553,6.4883,4.6903,1.2571,2.7044,8.048,14.581,4.0329,4.465,3.5137,1.6547,1.6904,5.0085,12.6524,3.6186,2.5299,12.8486,2.9574,2.9618,2.5804,12.7845,2.5322,4.3726,1.38,17.0909,6.09,10.6727,4.2936,12.0351,8.0575,8.049,8.8366,4.4701,1.8082,5.1393,29,,,0.08319,,,,0.47559,4.8806,4.3102,0.97871,12.5747,2.1921,0.43353,3.4315,3.9326,46.0808,14.4232,261.275,4.4239,5.0832,1.9258,2.1956,4.3053,8.2534,2.3453,3.8137,0.8319,7.7388,12.7852,11.473,8.6567,2.7088,5.4616,1.9699,20.6915,6.0666,4.6542,1.1047,2.822,8.6493,16.0198,3.8712,4.8025,3.908,1.772,1.6958,4.5097,11.9595,3.2428,2.4554,10.2429,2.6699,2.6451,2.2592,12.1602,2.3043,4.1649,1.3468,15.4497,6.2855,9.0598,4.7164,10.9431,8.7938,7.6923,9.2186,4.3361,1.7648,4.9036,,,,,,,,,,,,,,,71,,,
-nG+AMS1T5HC012,1.5191,2.0916,,60-69y,CN,,,17.9005,4.739,2.5755,2.2135,1.0014,edsd,CN,,F,,0.44488,4.4443,3.8757,0.91061,9.3057,1.5811,0.40645,3.5693,3.0836,46.1134,15.5561,240.6768,3.5014,4.7193,1.6611,1.8263,3.467,7.6012,2.3043,3.0562,0.36461,6.2071,11.3352,13.8937,7.7564,2.5376,4.4862,1.8661,18.2848,5.9656,4.276,1.0249,2.3924,6.6474,13.9609,4.1988,4.5183,2.86,1.5388,1.6271,4.2587,10.0404,3.095,2.2052,10.8637,2.1484,2.6879,2.1839,11.5403,1.9056,3.9746,1.2827,15.0832,5.0173,8.9545,4.4032,11.3401,6.9025,7.7356,7.755,3.6702,1.5435,4.8049,28,,,0.0808,,,,0.40132,3.8431,3.8487,0.8916,9.3863,1.9295,0.41197,3.4883,3.2379,45.1005,15.1601,243.9959,3.6643,4.8708,1.7718,1.8804,3.798,7.4982,2.1934,3.2723,0.42116,6.2522,11.5592,12.0578,8.1686,2.4928,4.3221,1.8294,18.8893,5.6833,4.0677,1.0349,2.3303,7.6655,14.2617,3.6665,4.3439,3.4001,1.6712,1.6101,3.988,10.4929,2.9619,2.1346,9.877,2.2098,2.4739,1.9364,10.878,1.8382,3.9127,1.1739,14.0018,5.038,7.9455,4.9629,10.1514,7.1629,7.4219,8.2366,3.7113,1.295,4.5049,,,,,,,,,,,,,,,63,,,
-nG+AMS1T5HC013,1.651,1.578,,70-79y,CN,,,15.8825,4.2673,2.3922,2.0369,1.9093,edsd,CN,,F,,0.42454,5.04,3.9292,0.84107,9.6452,1.6768,0.39933,3.1842,3.0206,44.4366,12.711,192.1346,3.6082,4.6257,1.6683,1.9075,3.719,7.1633,2.4793,3.0007,0.44803,6.3827,12.081,16.4151,7.3946,2.4985,5.6776,1.9251,20.5998,6.6525,4.5558,1.0851,2.4038,7.9306,14.9899,3.5537,4.3191,3.4179,1.4683,1.3888,4.1715,10.4699,3.0969,2.2582,11.0923,1.9455,2.6048,2.2819,12.8191,1.5474,3.5266,1.3937,15.4303,5.4839,8.876,4.0371,10.0853,7.1046,7.0248,8.0934,3.9486,1.3138,4.4327,30,,,0.08128,,,,0.40112,4.4022,3.8127,0.84292,10.4294,1.9181,0.4066,3.2956,3.3034,43.2933,12.2852,195.4331,4.1476,4.8252,1.7405,1.8603,4.1116,7.4872,2.3123,3.2075,0.52761,6.8412,12.3106,17.6306,8.1582,2.2809,5.5381,1.9405,20.5,5.7808,4.3326,1.0672,2.6796,8.8146,15.1793,3.0222,4.2075,4.1684,1.4475,1.432,3.9265,10.2967,2.9938,2.3679,10.2606,2.2,2.418,2.126,12.3454,1.6474,3.4636,1.377,14.6949,5.5665,8.65,4.3661,10.3739,7.0267,6.7878,8.0311,3.5995,1.3499,4.2099,,,,,,,,,,,,,,,78,,,
-nG+AMS1T5HC014,1.2958,2.1299,,60-69y,CN,,,16.5496,4.7502,2.5628,2.2424,1.368,edsd,CN,,M,,0.44617,4.8598,3.7848,0.87777,10.0979,1.7566,0.40067,3.4506,2.7297,47.0212,13.5847,221.6966,3.8315,5.2398,1.7173,1.8199,3.2994,7.2309,2.2924,2.8334,0.75056,7.0508,11.4622,19.9328,8.008,2.6424,4.7707,1.892,19.1819,6.5377,4.6011,1.3013,2.771,6.9166,15.1973,4.0804,4.6446,3.5604,1.4844,1.4938,3.962,10.5184,3.1201,2.1096,12.3416,2.5135,2.8759,2.1765,13.7325,2.0896,3.8847,1.2774,16.593,5.7101,9.0617,4.1628,10.9341,7.3335,7.3053,7.8828,3.7517,1.6896,4.5504,26,,,0.08075,,,,0.42253,4.3671,3.8333,0.88638,10.8548,1.9727,0.41096,3.312,2.8969,48.291,13.6586,226.1795,4.0193,5.0393,1.7967,1.8945,3.7899,7.6897,2.1491,3.0375,0.68417,6.8691,12.4007,17.2503,8.5289,2.5194,4.8619,1.9242,20.216,5.2877,4.251,1.0049,2.4198,7.9264,15.0508,3.3336,4.4759,3.332,1.6136,1.5411,4.0329,10.1034,2.843,2.142,11.3717,2.4668,2.7026,2.1764,12.8708,2.0604,3.8883,1.2363,15.7196,5.4532,9.0707,4.8823,10.0276,7.3271,6.9977,8.4846,3.6974,1.5527,4.3466,,,,,,,,,,,,,,,60,,,
-nG+AMS1T5HC015,1.0188,1.5845,,60-69y,CN,,,18.9176,4.9845,3.0327,2.3002,1.1534,edsd,CN,,M,,0.44492,4.7275,4.038,0.8882,9.3483,1.8329,0.41897,2.636,2.5681,50.4537,15.6313,243.7977,3.9291,4.1531,1.6595,2.0307,3.7187,7.6804,2.2471,3.1069,0.36724,7.2898,12.4775,10.1571,7.2814,2.7463,4.6468,2.0028,20.032,6.9543,4.4957,0.9325,2.2468,6.9939,15.2735,3.8225,4.403,3.7584,1.686,1.6433,4.8835,10.7779,3.2545,2.2563,11.976,2.5638,2.594,2.2646,13.4711,2.3021,3.8509,1.3382,14.606,4.9107,8.6483,3.7769,10.954,7.4974,7.7499,7.8026,4.2005,1.5844,5.0823,29,,,0.08245,,,,0.40591,4.3511,4.1919,0.93717,11.591,1.9736,0.40317,2.5672,2.8422,49.6939,15.073,247.7454,3.9002,4.608,1.7831,2.0694,4.1558,7.4065,2.2668,3.3797,0.51741,6.3098,11.9523,10.462,7.6875,2.4991,4.3592,1.9722,18.9592,5.7983,4.113,0.98527,2.3532,8.6556,15.3673,2.7658,3.9583,3.4796,1.6501,1.6653,4.49,10.9272,3.2593,2.3262,10.541,2.2901,2.3298,2.1327,13.5264,1.8934,3.7745,1.2176,15.887,5.6699,8.3097,4.5506,11.1134,8.115,7.2981,8.5425,3.9409,1.4808,4.837,,,,,,,,,,,,,,,66,,,
-nG+AMS1T5HC016,1.0035,1.9683,,60-69y,CN,,,19.9378,5.4555,2.7276,2.3494,1.0408,edsd,CN,,M,,0.49152,4.6922,4.2871,0.93788,9.1982,1.8866,0.42028,3.2526,2.8993,49.2067,15.3827,246.2771,4.0678,4.6555,1.7889,2.2218,3.5865,6.9908,2.1694,3.189,0.41871,6.6759,11.318,10.7932,7.5869,2.8104,4.7808,1.8658,17.8708,5.9037,4.5924,0.95883,2.1709,7.0881,14.2233,4.2514,4.4561,3.921,1.7236,1.6677,4.3803,10.6443,3.1859,2.0821,11.519,2.5469,2.805,2.1262,11.7631,2.314,3.8748,1.3265,15.6305,5.4097,9.3659,3.9117,11.1783,7.9989,7.5241,7.9834,4.479,1.5798,5.0581,29,,,0.08861,,,,0.42259,3.9151,3.8534,0.89704,11.418,1.9291,0.43687,3.1833,3.1164,49.5065,14.8788,248.8227,3.7833,4.9765,1.7335,2.1616,3.7506,7.1333,2.2727,3.3593,0.49432,6.7266,11.5585,12.2358,8.469,2.6412,4.4938,1.8843,19.4685,5.6307,4.2925,0.92792,2.3972,8.152,14.3111,3.5521,4.4969,4.0445,1.8308,1.6938,3.9334,10.5938,2.9188,2.1271,9.6312,2.1039,2.6442,1.9149,11.9125,1.9632,3.8376,1.3268,14.6467,5.58,8.1734,4.9331,10.6885,8.0677,7.2765,8.4394,3.9282,1.4508,4.903,,,,,,,,,,,,,,,62,,,
-nG+AMS1T5HC017,2.5948,2.3702,,70-79y,CN,,,18.3099,4.7843,2.6607,2.3598,2.2756,edsd,CN,,M,,0.45413,5.2169,4.406,0.92369,9.7685,1.8709,0.41953,2.9403,3.2971,47.4564,13.3742,215.926,4.2559,4.382,1.8454,2.019,3.8872,8.2525,2.3092,3.1706,1.0519,6.8556,12.624,42.0744,7.6174,2.6328,4.5129,2.1563,21.5817,6.4996,4.5213,1.2799,3.0216,7.896,14.667,3.9336,4.4719,3.2469,1.597,1.6387,4.4991,11.3342,3.4725,2.5062,12.7977,2.3546,2.8076,2.4763,14.0994,2.0185,4.294,1.4297,17.2763,5.5603,8.8749,3.9616,12.0068,7.7847,7.5574,8.4177,3.9967,1.6291,5.0856,29,,,0.07446,,,,0.43358,4.5528,3.9821,0.9567,12.3409,1.9698,0.42106,3.137,3.6279,47.2617,13.2285,220.4778,4.1024,5.1236,1.8941,2.0784,4.3129,8.4134,2.3073,3.4863,1.0172,6.6592,13.1288,29.6512,8.0098,2.4687,4.8022,2.2237,22.0412,5.5348,4.2817,1.2997,2.9285,8.7517,15.0559,3.3631,4.3418,3.279,1.668,1.6435,3.8864,11.1202,3.425,2.3243,11.6151,2.0996,2.5177,2.0387,13.1865,2.1241,4.2087,1.3218,16.1404,5.4748,9.0184,4.7434,11.8296,8.4678,7.2774,8.7056,3.7601,1.4845,4.9151,,,,,,,,,,,,,,,77,,,
-nG+AMS1T5HC018,1.076,1.5729,,70-79y,CN,,,18.5205,4.5333,2.5554,2.382,1.2612,edsd,CN,,M,,0.42651,4.4975,3.9313,0.88146,9.2589,1.6574,0.40044,3.4373,2.459,49.5695,14.7056,224.2603,3.7564,5.3392,1.8471,1.8403,3.4057,8.1556,2.2212,3.1719,0.32748,7.2429,12.2544,8.9561,8.4921,2.5077,4.2283,1.8433,18.612,6.7319,4.3007,0.99429,2.2854,6.8197,14.1192,4.5897,5.1101,3.3629,1.4835,1.5442,4.0854,10.2529,3.4797,2.2262,11.9197,2.5934,2.4762,2.2562,12.2977,2.2135,3.6962,1.2614,14.2564,5.0238,9.0017,4.1028,11.0075,7.9222,7.4677,8.3303,3.4379,1.4484,4.9063,28,,,0.07575,,,,0.36748,4.1159,3.9907,0.89568,10.0903,1.8072,0.41892,3.406,2.5003,49.9071,14.6481,224.1156,3.5958,5.0682,1.8943,1.9211,3.5305,8.1594,2.2207,3.3412,0.40967,6.9888,12.3164,8.2854,9.245,2.2466,4.5105,1.8458,17.5795,5.6872,3.989,1.0464,2.3621,7.6525,13.9705,3.7683,5.0057,3.4272,1.4047,1.541,3.7805,9.8649,3.2935,2.2439,10.4726,2.2022,2.3909,2.1939,11.5285,1.9192,3.7044,1.2132,14.4175,4.886,8.2998,4.7643,10.3795,8.3,7.0253,8.9281,3.0674,1.4503,4.6711,,,,,,,,,,,,,,,72,,,
-nG+AMS1T5HC019,1.7938,1.714,,70-79y,CN,,,17.5262,5.0323,2.6273,2.323,2.9477,edsd,CN,,M,,0.47384,5.0062,4.1532,0.87597,9.3932,1.6616,0.41447,3.2987,2.9435,47.8478,15.2294,240.4316,4.2706,4.6493,1.7333,2.0427,3.7186,7.5937,2.4366,3.166,0.60762,7.5747,11.8586,35.0719,8.122,2.5839,4.6036,2.0542,20.5391,6.4609,4.4376,1.4546,3.2996,7.5252,14.1186,4.3706,4.6219,3.4918,1.6414,1.5954,4.7807,11.3682,3.2999,2.2331,12.5857,2.6919,2.7591,2.408,16.7357,2.1631,3.5807,1.5153,16.2504,6.144,9.733,3.9202,11.0686,7.1837,7.4728,8.3974,3.9737,1.5945,4.9511,25,,,0.08307,,,,0.41218,4.1667,4.258,0.88855,11.3817,2.1453,0.39804,3.4747,3.2036,47.8771,14.9799,243.2493,4.134,5.056,1.7707,2.1883,4.4843,7.2855,2.3994,3.2833,0.70855,7.2674,11.7256,36.8666,9.1059,2.5281,4.4332,2.2023,20.8614,5.4944,4.31,1.3109,3.2078,9.0652,14.7209,3.5247,4.5213,3.9781,1.7034,1.6604,4.1115,10.9734,3.0825,2.3321,10.9465,2.11,2.4505,2.3609,15.2789,1.8904,3.5515,1.3379,16.7818,5.9398,8.2247,5.1463,11.5773,7.6795,6.9178,8.5756,3.6955,1.5061,4.7595,,,,,,,,,,,,,,,70,,,
-nG+AMS1T5HC020,1.6456,2.2644,,70-79y,CN,,,18.648,4.7161,2.6648,2.0488,1.0389,edsd,CN,,F,,0.44495,4.4628,3.9673,0.81158,8.8426,1.7656,0.40119,3.274,3.1447,43.2517,13.9821,224.2628,3.895,4.2645,1.5702,1.9253,3.429,6.7828,2.2016,2.8996,0.75322,6.5072,9.9826,16.7889,6.8138,2.6173,5.2523,1.7795,19.2897,5.9481,4.3193,1.2233,2.7591,6.4089,13.0377,3.9099,3.9462,3.3267,1.4772,1.4795,4.2848,9.9788,2.9921,2.1748,11.6562,2.5173,2.45,2.2402,13.0428,1.9809,3.5655,1.3373,15.6985,5.2782,8.9305,3.8792,10.4922,7.0127,7.1078,8.1096,4.3223,1.5497,4.7995,29,,,0.07334,,,,0.39267,3.8895,3.8702,0.83316,10.2686,1.8782,0.39221,3.1718,3.2466,43.5641,13.7417,227.5293,3.9038,4.4936,1.6899,1.7505,3.7168,6.967,2.1558,3.0928,0.69172,6.2461,10.7232,14.7903,7.3151,2.3802,4.7442,1.8236,19.2383,4.667,4.1567,1.1023,2.4211,7.5696,13.3822,3.0362,3.7902,3.4185,1.55,1.5006,4.118,10.3697,2.7955,2.1158,9.4488,2.0884,2.573,2.0512,13.181,1.8786,3.5052,1.2698,15.9411,5.2705,7.9077,4.5235,9.7753,7.4112,6.7759,8.1007,3.5074,1.421,4.5972,,,,,,,,,,,,,,,72,,,
-nG+AMS1T5HC021,1.2068,1.4588,,60-69y,CN,,,17.684,4.8838,2.8921,2.3782,1.0511,edsd,CN,,F,,0.3887,4.2462,3.8922,0.83691,8.2347,1.6142,0.39444,3.3204,2.4323,50.7717,14.1673,200.3927,4.1382,4.3587,1.6483,2.0322,3.3415,7.2732,2.1143,2.9863,0.32914,5.9628,11.0067,9.812,7.3589,2.6051,4.5514,1.7207,18.5287,5.7544,4.169,0.95711,2.2289,6.3517,12.3497,3.7467,4.3142,3.6648,1.5799,1.4678,4.0399,9.2307,3.1717,2.1136,11.0569,2.3142,2.6608,2.1713,11.7583,1.8458,3.5857,1.251,13.6614,5.023,7.9887,3.9842,10.1863,6.3064,7.512,7.1342,4.0344,1.6448,4.7191,30,,,0.08159,,,,0.36199,4.0472,3.7408,0.8218,9.0756,1.9022,0.39516,3.2221,2.5015,49.986,14.0525,202.5455,3.6053,4.6393,1.6434,1.9894,3.6079,7.2811,2.083,3.1017,0.35781,6.1375,10.9388,8.1124,7.7381,2.4733,4.6339,1.7644,17.6302,4.4945,4.1108,0.95447,2.2262,7.5161,13.3617,3.4065,4.213,3.7312,1.6438,1.4764,3.596,8.7178,2.8378,2.0832,9.9204,2.2087,2.7044,1.906,11.6764,1.9763,3.4135,1.2162,12.8794,5.0335,7.9386,4.647,9.4351,7.1689,7.159,7.4283,3.699,1.512,4.4256,,,,,,,,,,,,,,,62,,,
-nG+AMS1T5HC022,1.6374,1.8017,,70-79y,CN,,,18.9081,4.6385,2.6861,2.1986,1.4656,edsd,CN,,F,,0.41414,4.7603,4.2189,0.90388,9.1437,1.7064,0.42072,2.9037,2.8513,46.635,15.2001,213.4574,3.949,4.9891,1.6972,1.9358,3.5203,7.1017,2.429,3.1525,0.45813,6.0095,10.6636,13.8588,7.1432,2.5448,5.473,1.8594,19.8549,5.8466,4.5663,1.2063,2.6654,6.871,13.3923,2.9022,4.2611,3.4516,1.6549,1.567,4.3145,10.4386,3.1605,2.2431,11.5897,2.4359,2.7641,2.2894,13.6874,1.7909,3.9997,1.3256,15.6999,5.845,8.974,3.7842,9.2288,6.5373,6.8997,7.2249,3.8351,1.5429,5.2915,30,,,0.09828,,,,0.37168,4.4166,3.9129,0.81699,10.0195,1.926,0.39487,2.9159,2.9687,45.1406,14.7142,215.8332,4.3562,4.6859,1.5534,1.9862,3.8763,6.9495,2.2603,3.1876,0.47303,5.909,10.6118,15.3711,7.5137,2.3611,4.9921,1.8483,20.3927,4.6608,4.2661,1.013,2.4162,7.9592,13.1652,2.8575,3.9442,3.5751,1.6974,1.5114,3.8501,10.1319,2.7337,2.2595,11.7534,2.3645,2.3974,2.1469,13.9635,1.8808,3.7462,1.2397,15.1738,5.4491,8.1971,4.0652,9.7343,6.8885,6.7086,6.996,3.9782,1.4654,4.6497,,,,,,,,,,,,,,,77,,,
-nG+AMS1T5HC023,1.002,1.1684,,70-79y,CN,,,16.6277,3.9657,2.2847,2.0418,1.261,edsd,CN,,F,,0.39394,4.3224,3.8048,0.80585,8.7173,1.536,0.37092,3.0962,2.385,41.4748,12.7326,190.4946,3.6587,3.971,1.7193,1.9062,3.5415,6.5512,2.2302,2.7514,0.39808,5.4912,9.9061,13.1029,6.7001,2.4936,4.1108,1.8625,17.4723,5.7014,4.1818,0.9141,2.2374,6.5123,12.0092,3.7121,3.6946,3.322,1.5541,1.3274,3.8072,8.9777,3.1353,1.9205,10.3112,2.1389,2.8676,1.9291,12.5735,1.7093,3.2119,1.2571,13.9844,4.9117,8.733,3.5506,10.0089,6.3079,6.6813,7.4077,3.602,1.279,4.4563,30,,,0.07494,,,,0.35506,3.7269,3.5221,0.80319,10.3271,1.7669,0.36975,3.1339,2.7496,41.9494,12.9262,192.3478,3.7325,4.2951,1.702,1.815,3.8925,6.7927,2.24,2.9243,0.49501,5.9517,9.6786,14.9818,7.143,2.2402,4.2238,1.9029,16.5933,5.0751,3.9285,0.99017,2.3795,7.3528,11.9965,3.327,3.6548,3.3435,1.3382,1.3659,3.4569,9.1884,2.8246,2.1334,9.308,1.9607,2.4268,1.7411,12.4461,1.8028,3.2122,1.1843,15.0862,5.0477,7.6044,4.5928,9.329,6.8605,6.504,7.313,3.0297,1.3492,4.23,,,,,,,,,,,,,,,73,,,
-nG+AMS3T0MCI001,1.5612,1.5528,,50-59y,Other,,,22.1811,5.8009,3.2572,2.5426,1.3455,edsd,MCI,,M,,0.46979,4.6851,4.6844,0.93238,11.7363,1.8149,0.41629,4.0107,3.0601,58.4906,17.9844,236.0462,4.3491,5.9042,1.8031,2.192,3.8104,8.7116,2.382,3.5674,0.61776,7.8584,13.1241,16.0191,9.3182,2.6354,4.9199,2.0408,21.7276,7.7007,4.3548,1.1164,2.8154,7.5905,16.551,4.4443,5.647,3.6497,1.689,1.6838,4.7538,12.7487,3.5374,2.5832,13.3238,2.9421,2.8535,2.661,13.5612,2.5205,4.47,1.2694,15.8127,5.7834,11.0348,4.286,10.7712,9.0984,7.8547,9.0054,4.2673,1.9406,5.4329,27,,MCI,0.08636,,,,0.44099,4.262,4.5407,0.89961,12.1452,1.9233,0.42533,3.8322,3.3853,58.2693,17.7021,245.8511,4.6459,5.5132,1.913,2.3232,3.7062,9.204,2.1937,3.6539,0.57608,8.6467,14.5805,14.2623,9.7915,2.4607,5.0009,1.9822,19.6963,6.1881,4.1554,1.1898,3.1048,8.5634,17.9601,3.8559,5.5638,4.0271,1.7398,1.6726,4.3129,12.0991,3.2764,2.5034,12.7685,2.3612,2.4879,2.3505,13.9407,2.0861,4.3591,1.2293,15.5683,5.8532,9.3915,5.1807,11.3379,8.4316,7.6238,9.2188,4.0762,1.6366,5.1514,,,,,,,,,,,,,,,58,,,
-nG+AMS3T0MCI002,1.0172,1.5911,,60-69y,Other,,,17.2523,4.2532,2.5065,2.1287,1.0729,edsd,MCI,,F,,0.49526,4.5045,4.8668,0.99715,10.3806,1.6322,0.41932,3.6094,3.0375,45.8428,13.8831,208.7993,4.1159,5.1902,1.8122,2.3666,3.6493,7.7524,2.187,3.1016,0.54112,6.7305,11.9203,12.3983,7.6911,2.4611,4.4675,1.8786,18.425,6.5712,4.2002,1.0916,2.5535,6.7422,13.8484,4.0377,4.7157,3.8995,1.5328,1.4679,4.0856,10.4042,3.2552,2.5625,11.9811,2.5824,2.5914,2.2601,13.01,2.1086,3.9664,1.2963,15.1143,5.0804,9.8394,3.8769,11.0512,7.1363,7.2578,8.4033,3.9777,1.7457,4.7381,26,,MCI,0.07143,,,,0.41515,4.0148,4.3377,1.0266,10.6585,1.8884,0.41273,3.4566,3.0201,46.1005,13.5428,204.7483,4.0641,4.9446,1.9135,2.0912,4.0081,7.5102,2.1408,3.7434,0.55657,6.825,11.5526,11.3638,8.4588,2.2511,4.4081,1.7657,17.8984,5.2828,3.9864,1.1714,2.7402,7.7828,14.6532,3.3716,4.8358,3.5311,1.4668,1.4966,3.8056,10.1363,3.0666,2.3087,10.6069,2.3555,2.3965,1.9664,12.413,2.008,3.8316,1.1711,15.0282,5.3515,8.8145,4.2942,10.0806,7.5512,6.7267,8.3918,3.5315,1.4607,4.4811,,,,,,,,,,,,,,,63,,,
-nG+AMS3T0MCI003,1.1798,2.1211,,60-69y,Other,,,21.4893,5.1861,3.1347,2.4314,1.0976,edsd,MCI,,M,,0.43588,5.2022,4.5901,1.026,10.3088,1.8758,0.42315,3.5443,2.6904,52.0304,17.4215,252.4717,4.1715,5.3907,2.0776,2.1122,4.1818,8.1502,2.4245,3.5424,0.39072,7.1483,13.6809,9.7437,7.7952,2.7017,4.7385,2.0763,20.6499,7.252,4.7389,1.1962,2.8704,7.8075,16.2596,3.7497,4.8407,3.58,1.7339,1.5755,4.6564,11.2292,3.5329,2.3972,11.3309,2.2933,2.9495,2.4483,13.4651,2.1543,4.0091,1.4279,15.6956,5.8485,9.4144,4.3052,11.8283,8.7673,7.7091,9.5122,3.8815,1.6391,5.4028,29,,MCI,0.0856,,,,0.37286,4.8909,4.1988,1.0815,11.1846,2.0647,0.40562,3.793,2.855,51.3652,16.5514,252.7015,4.015,5.0213,2.0533,2.0381,4.3098,8.1273,2.2712,3.9391,0.62167,7.6726,12.7428,7.9245,8.2528,2.6347,4.8968,2.0238,19.571,5.7444,4.4372,1.1451,2.831,8.8697,16.2888,3.3058,4.4893,3.7074,1.8682,1.581,4.3629,11.2018,3.4349,2.4661,10.2604,2.3606,2.625,2.2729,12.3388,2.1117,4.0283,1.3336,17.0549,5.7327,8.5887,4.826,10.7447,8.7417,7.277,9.5,4.1023,1.601,5.1201,,,,,,,,,,,,,,,66,,,
-nG+AMS3T0MCI004,2.3722,1.8026,,70-79y,Other,,,17.5678,5.0099,2.8521,2.405,2.4162,edsd,MCI,,M,,0.47335,6.2693,5.144,0.95116,11.7003,1.8727,0.4509,3.6257,3.2439,50.4555,14.4933,238.7424,4.9252,5.6975,1.8697,2.3948,4.5646,8.5571,2.4444,3.3601,0.9025,8.4243,13.5711,32.5525,9.0367,2.6735,6.2151,2.1273,25.1051,8.9713,4.7688,1.3973,3.2169,9.2277,18.8747,4.3628,5.2768,4.5611,1.652,1.668,5.4421,12.8934,3.6051,2.7365,14.1955,2.993,2.8669,2.8207,15.5268,2.2326,4.6387,1.435,18.4898,7.0728,11.4554,4.7436,12.8896,9.2875,7.252,9.5514,4.191,1.8049,4.926,28,,MCI,0.07789,,,,0.42912,6.2992,4.9298,0.90295,14.1407,2.1559,0.45253,4.1079,3.5495,49.8605,14.4502,244.2927,5.1564,5.5844,1.9052,2.4407,5.3607,8.5592,2.5471,3.5677,0.67846,8.6978,14.059,27.4336,9.3264,2.7488,6.1433,2.196,23.3061,6.7632,4.7119,1.4862,3.6503,9.9152,19.0242,3.6796,5.1121,3.9768,2.0054,1.6568,5.004,12.6814,3.2971,2.6819,13.6552,3.0685,2.7286,2.3648,15.4733,2.633,4.3008,1.3892,18.732,6.8058,10.7194,5.0784,12.5559,9.6366,7.1373,9.5488,4.2107,1.699,4.7012,,,,,,,,,,,,,,,70,,,
-nG+AMS3T0MCI005,1.3524,2.2589,,60-69y,Other,,,18.4429,4.4829,2.4806,2.2936,1.4322,edsd,MCI,,F,,0.39746,4.2866,3.9682,0.71697,9.7666,1.4063,0.35407,2.6353,2.7425,48.7858,14.6907,211.5945,3.8726,4.5532,1.3235,1.9369,3.4121,7.3628,1.9641,2.6837,0.34929,6.4221,11.1264,13.2075,7.086,2.3733,4.2584,1.7049,18.0674,5.6059,3.7893,1.2208,3.0342,6.5881,13.5169,3.2029,4.381,3.6143,1.5872,1.5023,3.7284,9.0895,2.8842,2.1346,11.8226,2.8733,2.5093,2.2664,13.7014,2.376,3.5353,1.2014,14.5441,5.3283,10.1914,3.7472,10.5871,7.5841,7.2176,6.7205,4.0232,1.7095,4.7797,27,,MCI,0.08338,,,,0.33046,3.7805,3.5908,0.64242,10.1877,1.5848,0.33838,2.8331,2.9266,49.1293,14.0054,216.9418,3.8351,4.0748,1.2605,1.9102,3.7934,7.0467,2.1043,2.6398,0.57082,6.3333,10.8761,15.0825,7.5148,2.1142,4.1469,1.7515,18.3451,5.2188,3.8132,1.423,2.9005,7.7621,13.43,2.8209,4.1804,3.5914,1.4048,1.5279,3.3776,9.8346,2.4531,2.0043,10.4753,2.3324,2.1505,1.8378,13.4046,2.0355,3.4965,1.1427,14.9338,5.6198,8.6076,3.919,10.6959,7.3148,6.6104,6.4587,3.305,1.4654,4.5162,,,,,,,,,,,,,,,66,,,
-nG+AMS3T0MCI006,1.1194,1.7496,,70-79y,Other,,,16.7998,4.1865,2.2376,1.8995,0.96458,edsd,MCI,,F,,0.40435,3.9625,3.7351,0.72415,8.8151,1.563,0.3361,3.0649,2.9733,43.3333,12.804,189.1448,3.8558,4.2415,1.4044,1.8123,3.2036,6.7579,1.9871,2.5467,0.41701,6.0101,10.4886,14.5656,6.612,2.3723,3.9784,1.5876,17.3969,6.1877,3.847,1.0109,2.0313,6.171,13.2139,3.0054,3.8381,3.2505,1.3536,1.3799,3.7696,9.5992,2.6581,2.0828,11.0565,2.091,2.3532,2.0895,11.725,1.5903,3.6981,1.0937,13.1831,4.5162,8.4996,3.5995,9.7759,6.4179,6.4419,6.5772,3.5338,1.4236,4.2692,28,,MCI,0.06888,,,,0.37843,3.7247,3.6989,0.74951,9.5927,1.6426,0.34323,3.0811,3.4437,43.1869,12.1684,194.8429,3.7919,4.2695,1.4346,1.9731,3.1786,6.9349,1.9111,2.86,0.46835,6.5625,10.8308,11.6656,6.8965,2.1682,4.1599,1.6497,16.5157,5.3553,3.7239,0.98225,2.1203,6.59,13.1705,2.9068,3.7588,3.4353,1.4504,1.3243,3.3562,8.5837,2.5134,2.0102,10.5715,1.8592,2.1903,1.843,11.8801,1.5526,3.7696,1.0998,13.6789,4.48,7.1464,4.2164,9.4686,6.656,6.1911,6.6521,3.641,1.2939,4.068,,,,,,,,,,,,,,,74,,,
-nG+AMS3T0MCI007,1.0539,1.4794,,60-69y,Other,,,17.1365,4.7803,2.878,2.3474,0.98009,edsd,MCI,,F,,0.41604,4.5673,3.973,0.82268,9.3164,1.6657,0.38263,3.2631,2.7248,49.247,15.3281,205.3097,4.0305,4.6278,1.6079,1.9025,3.3598,7.3729,2.0395,3.0418,0.37085,6.2704,11.3971,8.4064,7.3764,2.5953,4.7776,1.7827,19.9306,6.1171,4.0164,1.0709,2.549,6.7603,14.7594,3.4979,4.2672,3.8005,1.5383,1.416,4.1396,9.7868,3.0104,2.224,11.5429,2.4724,2.474,2.1378,13.3993,1.9298,3.7598,1.1887,13.3558,5.1257,9.0983,4.1508,10.0838,7.2648,6.9905,7.1638,3.7456,1.4266,4.4057,23,,MCI,0.0748,,,,0.36371,3.9767,3.6062,0.81057,10.8823,1.925,0.36713,3.2766,2.8256,48.5734,14.4356,212.2345,3.9506,4.2223,1.6458,1.895,3.8209,7.2433,1.968,3.0836,0.38042,7.0325,10.9261,8.3182,7.9804,2.3648,4.5309,1.7385,18.9316,5.861,3.8634,0.90147,2.486,8.3783,13.4801,3.3664,4.4303,3.1982,1.6005,1.4597,3.7645,9.9058,2.63,2.1167,10.3889,2.1641,2.1732,1.8956,13.4823,1.8503,3.4878,1.1558,15.0964,5.4278,8.6347,4.3993,11.2976,7.2047,6.6749,7.2265,3.5464,1.4291,4.2138,,,,,,,,,,,,,,,65,,,
-nG+AMS3T0MCI008,1.0263,1.6573,,70-79y,Other,,,19.3435,4.7606,2.97,2.3012,1.1862,edsd,MCI,,M,,0.44415,4.6875,4.2417,0.88654,8.7968,1.5632,0.36176,3.0499,2.675,51.4787,16.4896,216.712,4.1647,4.5915,1.6946,2.0148,3.4262,7.4887,1.993,3.2963,0.50083,6.279,10.6071,17.2025,8.097,2.2322,4.4916,1.7519,17.6304,5.8612,3.7696,1.3214,2.9781,7.2991,13.0271,3.6447,4.4881,3.4439,1.3203,1.6886,4.1629,10.2604,3.2698,2.1921,11.1147,2.1272,2.3858,2.1995,12.42,1.9558,4.086,1.0622,14.4207,5.6712,9.747,4.1031,10.0305,7.8241,6.8078,7.4794,3.6103,1.467,4.8736,26,,MCI,0.07416,,,,0.40752,4.5177,4.0292,0.92814,11.7269,1.8172,0.37705,2.6446,3.0753,51.3695,16.2343,232.3607,4.025,4.8288,1.7743,2.0489,3.5537,7.7346,1.966,3.6065,0.67066,6.6048,12.0364,11.892,7.9318,2.2302,4.6232,1.7712,16.9019,5.2541,3.6354,1.0911,2.7163,7.8118,14.7521,2.877,4.639,3.647,1.4854,1.6559,3.7326,11.1153,2.984,2.1379,9.4866,2.1703,2.2453,2.0799,11.9413,2.031,3.9218,1.0609,14.6241,5.1466,8.2718,4.1317,9.2928,8.2179,7.2191,7.7894,3.4566,1.5695,4.8346,,,,,,,,,,,,,,,70,,,
-nG+AMS3T0MCI009,1.6679,1.6088,,70-79y,Other,,,20.5451,5.4004,2.8574,2.4335,1.5379,edsd,MCI,,M,,0.43782,4.9207,4.1636,0.7214,9.4337,1.6433,0.38257,3.1698,2.7164,51.2891,17.357,232.4672,4.1588,4.4023,1.5106,1.8261,3.5344,7.4849,2.0934,2.8019,0.49349,6.6397,11.3361,12.8542,7.7772,2.394,4.5919,1.926,18.8358,6.9325,4.2138,1.1011,2.5482,7.6371,14.397,3.3834,4.6409,3.2288,1.505,1.7288,4.5085,11.0795,3.0972,2.2356,11.2918,2.3583,2.7276,2.0812,13.2127,1.8518,4.0694,1.2529,14.7058,5.1752,8.9686,3.7085,11.6813,7.4566,7.1034,7.1076,3.6503,1.3575,5.103,20,,MCI,0.08774,,,,0.39026,4.413,4.0238,0.69111,10.7837,1.7991,0.35829,3.2654,3.1728,52.3858,17.5979,233.4803,3.9169,4.7764,1.4493,2.1172,3.8129,7.5723,1.9881,2.93,0.53646,6.9251,11.3479,14.3883,8.7216,2.2894,4.3691,1.8869,19.2703,5.3678,3.8406,0.94118,2.3493,8.2775,14.4949,2.9755,4.3783,3.5209,1.5705,1.6026,4.023,10.8753,3.044,2.2122,10.4538,2.0598,2.3996,1.9456,11.0717,1.755,3.9922,1.1188,14.2328,5.4539,8.1186,4.5403,11.2315,7.1278,6.4665,7.3499,3.8612,1.2903,4.9718,,,,,,,,,,,,,,,70,,,
-nG+AMS3T0MCI010,1.2622,2.1065,,60-69y,Other,,,19.9315,4.8395,2.8917,2.4117,1.5249,edsd,MCI,,M,,0.46192,5.0058,4.3339,0.92984,9.3302,1.8003,0.40149,3.4592,3.127,50.868,16.6023,232.4718,4.2215,4.4937,1.6861,1.9723,3.8961,8.0619,2.2216,3.4468,0.75845,6.2778,12.2668,25.4666,8.0063,2.4828,4.5886,2.0881,20.8052,6.3878,4.4004,1.168,2.5419,7.6159,14.0223,3.5097,4.61,2.9794,1.4758,1.7462,4.1557,9.9015,3.3091,2.2907,12.6483,2.3082,2.5655,2.2698,13.4365,1.8173,3.9576,1.2919,14.552,5.677,8.8827,3.6195,10.0564,6.807,7.8753,7.6904,3.7485,1.5099,5.4395,28,,MCI,0.07574,,,,0.42152,4.4987,4.0823,0.8884,10.7409,1.9076,0.39345,3.3405,3.5829,50.1582,16.4222,237.4927,3.9817,4.8925,1.7,2.1817,3.8432,7.9421,2.1816,3.6406,0.66291,6.9133,11.9546,22.4278,8.2507,2.3413,4.3943,1.9362,18.9612,5.206,4.0039,1.1101,2.3501,8.7086,14.8922,3.4103,4.4381,3.6103,1.4682,1.7416,3.8169,10.4412,3.1447,2.2995,10.8503,1.806,2.1907,2.0631,12.7276,1.8463,3.7896,1.1758,14.9386,5.6305,8.4135,4.5391,10.7573,7.2375,7.6391,7.8526,3.5166,1.404,5.1384,,,,,,,,,,,,,,,64,,,
-nG+AMS3T0MCI011,1.8719,1.7773,,-50y,,,,16.2768,4.4055,2.2879,2.0523,1.5095,edsd,,,F,,0.36378,4.256,4.003,0.77666,10.0039,1.448,0.3662,2.676,3.1426,43.7109,13.7926,191.4103,4.0266,3.6503,1.491,1.8744,3.1916,7.1677,1.9547,2.7774,0.40884,6.2111,10.3825,21.9909,6.9145,2.2343,4.6753,1.6386,17.0596,6.4612,3.7574,1.0155,2.5799,6.2442,12.8847,2.982,4.0524,3.234,1.4045,1.3464,3.9387,9.9705,2.8701,2.232,11.6489,2.2465,2.3966,2.1588,11.8026,1.8025,3.6017,1.1631,14.5119,4.7806,9.2066,2.8296,9.0894,7.1143,6.423,6.8548,3.6979,1.4578,4.2791,,,,0.07894,,,,0.32711,3.5452,3.8936,0.80725,10.3432,1.5377,0.36148,2.725,3.2602,43.2103,12.6024,195.4017,3.974,4.3431,1.6069,1.943,3.4805,7.0278,2.013,3.0438,0.58583,5.7902,10.2882,14.6737,7.2448,2.0793,4.196,1.6708,16.4198,4.8115,3.4848,0.91859,2.1968,7.785,12.931,2.2855,3.8278,3.1038,1.4573,1.359,3.753,10.2366,2.7282,2.2328,9.7326,2.3256,2.0774,2.0478,11.388,1.953,3.4518,1.1501,14.8685,5.1579,8.8547,3.6085,9.405,7.3625,6.0475,7.358,3.4252,1.5901,4.0628,,,,,,,,,,,,,,,,,,
-nG+AMS3T0MCI012,1.2942,1.7239,,70-79y,Other,,,19.2755,4.3921,2.4858,2.142,1.4324,edsd,MCI,,F,,0.48466,4.7646,4.4503,0.89013,10.3576,1.6751,0.39506,3.188,3.6011,46.8022,16.2485,236.2561,3.7658,4.6747,1.7536,2.0561,3.5031,7.6814,2.2817,3.3085,0.57999,7.418,11.9185,16.4158,7.2622,2.5991,4.9895,1.8758,19.4086,6.6016,4.3998,1.0984,2.77,6.8637,15.8176,3.783,4.4089,3.4099,1.6164,1.7008,4.5968,10.6224,3.3782,2.3155,11.1911,2.8677,2.6807,2.3742,11.5328,2.4258,4.2289,1.2819,14.0924,4.7618,10.3903,3.7136,10.3277,8.0384,7.4475,8.4288,4.0182,1.6204,5.0355,29,,MCI,0.07289,,,,0.45306,4.5381,4.8483,0.91315,12.0047,1.8887,0.41072,2.9748,3.9854,46.3654,15.9503,247.9735,4.3528,4.653,1.8746,2.3681,4.1379,7.9612,2.1746,3.5198,0.7684,7.4359,12.1627,18.6368,7.7678,2.2997,4.5717,1.8178,20.3753,5.467,4.0427,1.1323,2.4473,7.5988,16.2235,3.2767,4.7382,3.9048,1.5594,1.718,4.3861,10.5983,3.0608,2.4649,10.305,2.378,2.336,2.3492,11.3933,2.2141,4.3835,1.2266,15.0078,5.3122,9.1233,4.4809,10.5594,9.0593,7.1405,8.8345,3.7418,1.6375,4.8726,,,,,,,,,,,,,,,74,,,
-nG+AMS3T0MCI013,1.4409,2.9115,,70-79y,Other,,,18.92,4.9901,2.8048,2.2373,1.4629,edsd,MCI,,M,,0.45745,4.8237,4.5414,0.89788,9.5266,1.7701,0.38887,3.2318,3.217,49.327,14.8297,225.3591,4.582,4.1609,1.7548,2.2036,3.5761,7.8643,2.3796,3.1695,0.81448,6.4688,11.8559,22.1591,7.39,2.5848,5.0043,1.8608,18.4817,5.5294,4.3773,1.1741,2.5507,7.5175,13.859,3.3291,4.5738,3.5953,1.6753,1.6474,4.6282,11.4852,3.059,2.412,14.123,2.7727,2.7582,2.4102,12.4904,2.1467,4.1105,1.2545,14.9704,5.8453,10.4402,3.6516,10.5394,8.0802,7.3593,8.3006,3.8459,1.7354,5.0235,28,,MCI,0.06747,,,,0.41517,4.7063,4.5421,0.90401,10.6557,1.8262,0.37462,3.3907,3.4665,49.2956,14.9021,226.904,4.4609,4.6632,1.8278,2.3805,3.6851,8.1722,2.1646,3.4753,0.76747,7.4006,12.5231,21.7125,7.9634,2.3845,4.8096,1.7793,19.129,6.1064,4.2,1.0789,2.6133,8.0011,14.6469,3.3883,4.5026,3.584,1.7848,1.6417,4.4516,12.1045,2.9352,2.3477,11.0207,2.5237,2.4884,2.1073,12.9376,2.0878,4.11,1.1406,14.3833,5.5701,7.9781,4.755,10.6104,7.6512,7.1341,8.4456,3.7111,1.5776,4.7321,,,,,,,,,,,,,,,72,,,
-nG+AMS3T0MCI014,1.1174,1.4711,,60-69y,Other,,,17.5546,5.1231,2.5734,2.2727,1.1125,edsd,MCI,,F,,0.45319,4.4582,4.2244,0.8969,10.3137,1.6215,0.36758,2.833,3.179,42.9266,14.4634,239.2128,3.9924,4.4054,1.7216,2.0467,3.4296,7.0611,2.0778,3.3334,0.40851,6.9187,11.089,10.5276,7.1949,2.3732,4.7597,1.6868,17.8174,7.0711,4.0756,1.3634,2.6403,6.6437,13.7377,3.3386,4.1122,3.2658,1.4475,1.6826,4.6291,11.3059,3.3554,2.2096,11.3454,2.4363,2.3627,2.2018,11.9001,1.965,3.8252,1.0655,14.9783,5.3351,9.0967,3.5745,11.1606,6.9867,7.6227,7.1663,3.6306,1.3679,4.8527,25,,MCI,0.0773,,,,0.43242,4.1539,4.2161,0.89318,10.6009,1.8447,0.37371,2.8146,3.3168,43.8168,14.1702,245.6176,3.7686,4.3549,1.7283,1.9715,3.6668,6.8065,1.9779,3.6014,0.39136,6.6976,11.0775,9.5783,7.7853,2.2752,4.6419,1.6013,17.934,5.7823,3.8878,1.2688,2.5147,7.2701,14.1547,3.0039,4.443,3.1875,1.4654,1.6961,4.2127,10.4401,2.9846,2.2915,9.8452,2.2241,2.2682,1.8932,11.6991,1.9406,3.8314,1.0409,14.5183,5.0858,8.1802,4.2762,10.8406,7.4213,7.0498,7.5485,3.4643,1.3272,4.6039,,,,,,,,,,,,,,,67,,,
-nG+AMS3T0MCI015,0.84724,1.4936,,60-69y,Other,,,14.4902,3.7043,2.3657,1.8867,0.85296,edsd,MCI,,M,,0.36562,3.5612,3.5395,0.75144,9.012,1.3371,0.34178,3.1519,2.3381,39.9015,12.3273,186.1535,3.0202,4.388,1.5122,1.557,2.902,6.515,1.7665,2.6744,0.38169,5.7652,10.2843,5.9407,7.061,2.0625,3.9688,1.3929,17.5548,5.6222,3.458,0.8139,2.1295,5.4778,12.4628,3.0621,4.0486,2.5815,1.2363,1.2494,3.8171,9.7498,2.8994,1.9261,10.4106,1.8596,2.2089,1.984,11.5839,1.5947,3.4476,0.98277,13.045,4.8697,8.0448,3.3888,10.3822,6.3519,6.0388,6.7386,3.1176,1.2445,3.9349,24,,MCI,0.07101,,,,0.33083,3.0348,3.3701,0.74265,8.7034,1.5597,0.34819,3.038,2.408,39.2901,11.9078,191.4117,3.2661,4.3094,1.5589,1.5935,3.1757,6.5553,1.6804,2.8093,0.40723,5.8928,10.3025,5.0105,6.92,1.9712,3.8611,1.3818,16.6893,4.7725,3.2401,0.94522,2.0321,6.357,11.9567,2.5099,3.6667,2.9142,1.2979,1.2675,3.5483,9.7319,2.6622,1.9412,9.0742,1.6965,1.9919,1.8307,10.8645,1.5257,3.3993,0.97439,12.7522,4.6263,6.702,4.2139,8.964,6.4494,5.7309,7.1022,3.1351,1.2951,3.7485,,,,,,,,,,,,,,,66,,,
-nG+AMS3T0MCI016,2.1179,2.2637,,70-79y,Other,,,17.0328,5.2786,2.533,2.2816,2.3005,edsd,MCI,,M,,0.41405,4.8834,4.8058,0.83264,9.9337,1.5177,0.38586,3.3924,3.3105,46.7941,14.1856,205.0193,4.3986,4.5901,1.6122,2.0348,3.9472,7.4957,2.3147,3.0937,1.1827,6.5911,11.7343,36.4767,7.9636,2.4717,4.4564,1.9582,19.4458,6.6146,4.037,1.036,2.2993,7.2554,14.2988,4.4832,4.473,3.3307,1.7149,1.6966,4.5059,10.3626,3.2149,2.6759,10.1492,2.4474,2.5491,2.6306,11.8286,1.9192,4.0139,1.3427,14.8102,4.9639,7.8636,3.88,9.587,6.718,7.4037,7.2724,4.1613,1.7641,4.7364,27,,MCI,0.06998,,,,0.38777,4.8784,4.7198,0.8276,10.2892,2.0366,0.3834,3.4485,3.5058,46.5868,13.8985,209.4883,4.1277,4.5785,1.6257,2.1111,4.3605,7.6877,2.2015,3.262,1.1726,7.5239,11.4847,32.0154,8.5372,2.586,3.5995,1.978,18.5999,5.8487,3.9853,0.99441,2.5409,8.0249,14.1895,3.6256,4.4752,3.4552,1.8133,1.6551,4.2069,10.4945,3.1021,2.5451,9.6216,2.1145,2.5339,2.2593,11.9313,1.6088,3.6873,1.2831,15.211,5.2403,6.8857,4.6947,8.8582,6.597,6.9843,7.4012,3.7822,1.5927,4.5368,,,,,,,,,,,,,,,70,,,
-nG+AMS3T0MCI017,1.8191,1.9797,,70-79y,Other,,,20.4111,4.9098,2.7104,2.0673,2.0278,edsd,MCI,,M,,0.42597,4.6224,4.316,0.81387,10.2613,1.492,0.41032,3.1055,2.941,48.1425,16.8806,213.1019,3.9394,4.447,1.6922,1.996,3.4676,7.0446,2.2694,3.0803,0.9965,7.0548,11.3556,30.9263,7.4316,2.2401,4.3875,1.8129,18.4445,7.1574,4.1871,1.1058,2.4672,6.9405,13.2507,3.7749,4.4591,3.3622,1.4301,1.5857,4.4456,11.6858,3.3696,2.6301,11.7576,2.8133,2.2818,2.6408,12.0283,2.5416,3.8389,1.4216,13.3202,5.1503,9.6382,3.6387,11.0742,6.722,6.9801,7.7768,3.9507,1.9358,5.0587,29,,MCI,0.09098,,,,0.38561,4.0449,4.1727,0.76377,10.5986,1.8814,0.38869,3.5456,3.1815,44.0619,15.6477,219.5922,4.6704,4.7629,1.5582,2.0089,4.015,7.1238,2.2922,3.1148,0.74791,6.7955,11.4373,25.644,8.059,2.3294,4.3437,1.8294,17.0618,5.279,4.1673,1.1645,2.5709,7.9901,14.3784,3.1402,4.3157,3.0884,1.5468,1.5953,4.0218,10.9604,2.8765,2.6966,10.7664,2.5274,2.2664,2.4737,12.0903,2.1401,3.564,1.3224,14.0523,5.225,9.0133,4.5211,11.7471,7.6657,6.5677,8.1214,3.5716,1.737,4.79,,,,,,,,,,,,,,,76,,,
-nG+AMS3T0MCI018,0.947,1.6951,,60-69y,Other,,,16.6483,3.6723,2.426,1.9234,0.94698,edsd,MCI,,F,,0.39078,4.7897,4.1186,0.71981,11.0556,1.5895,0.36052,2.883,2.7002,45.1092,13.5987,207.636,4.1499,4.3198,1.5917,2.0471,3.3493,8.0029,2.443,2.8167,0.34487,6.7376,12.9861,9.1725,7.1804,2.4643,4.9493,1.9973,19.5447,6.4813,4.1418,1.1694,3.0079,7.2768,15.8882,3.1849,4.1904,3.5007,1.5799,1.4111,4.4772,10.3743,3.0711,2.2704,12.5361,2.1472,2.6115,2.3199,13.2312,1.7062,3.7931,1.1931,14.4419,5.5141,10.4661,3.2665,10.6301,8.3261,7.17,7.499,3.9199,1.5224,4.3906,27,,MCI,0.07082,,,,0.35999,4.1866,4.0224,0.84736,11.5262,1.7611,0.36399,2.9179,2.8948,44.7209,12.7423,212.7231,4.3517,4.9312,1.7921,2.0536,3.5592,8.3668,2.2971,3.131,0.37254,6.8045,13.0247,7.7344,7.592,2.3956,4.7958,1.9933,19.6477,5.7289,3.9652,1.135,2.726,8.4599,15.9131,2.9033,4.0656,3.3051,1.7361,1.4748,4.1826,10.2584,3.1078,2.4081,10.0741,2.2216,2.3716,2.2428,13.467,1.8799,3.7943,1.1607,14.2377,5.5548,8.554,4.7882,10.1637,7.9102,6.7747,8.4958,3.7857,1.5951,4.2492,,,,,,,,,,,,,,,63,,,
-nG+AMS3T0MCI019,1.0614,1.2781,,60-69y,Other,,,17.9623,4.3723,2.2805,2.1285,1.22,edsd,MCI,,F,,0.40093,4.1722,4.0309,0.71849,8.5074,1.3699,0.35599,3.0233,2.7336,44.2579,14.4147,204.5753,3.6261,4.3473,1.3681,1.9402,3.078,6.9662,2.1135,2.7014,0.60498,5.8397,10.8876,13.7295,6.4434,2.061,4.5229,1.539,17.7601,5.8084,3.717,1.0405,2.3103,5.8484,13.4239,2.959,3.992,3.0444,1.3652,1.5034,4.0433,10.3533,2.9706,2.2191,10.3273,2.5671,2.0966,2.1204,10.1415,2.3175,3.444,1.2385,12.9542,4.9362,8.8943,3.5987,10.5257,7.037,6.7057,6.9968,3.793,1.6106,4.4357,28,,MCI,0.07534,,,,0.36405,3.7641,4.0296,0.75525,10.2475,1.5604,0.34714,3.1004,2.7863,44.0934,13.8958,205.0426,4.0083,4.6168,1.512,2.0993,2.9622,6.836,1.9327,2.7835,0.50568,6.6952,11.1818,12.1007,6.9015,2.1573,4.3303,1.5375,17.4425,5.632,3.6162,0.97444,2.4969,6.722,13.5638,2.7025,3.8365,3.4022,1.6944,1.5397,3.6697,10.009,2.6706,2.4071,9.1502,2.4415,2.1629,2.0168,10.9663,2.0029,3.4112,1.1656,13.2237,5.1658,8.2762,4.2377,9.5747,7.2458,6.4004,7.2157,3.9623,1.511,4.2468,,,,,,,,,,,,,,,65,,,
-nG+AMS3T0MCI020,1.521,1.6818,,50-59y,Other,,,17.1056,4.5801,2.6199,2.1086,1.4733,edsd,MCI,,F,,0.40996,4.5129,3.8165,0.75446,8.4278,1.5024,0.35563,2.895,2.7742,47.4475,13.8792,193.6324,3.9354,4.0367,1.4748,1.7454,3.4439,6.9801,2.1409,2.7273,0.49958,5.623,10.4634,14.3974,6.9224,2.3057,4.2669,1.8683,18.8864,5.5514,3.9973,1.0833,2.6564,6.8984,12.8253,3.3182,3.9646,3.4162,1.3746,1.4988,3.7408,9.1992,2.9555,2.0073,11.7269,2.2571,2.4821,2.0385,13.0462,1.8531,3.5491,1.1707,13.548,5.0241,9.011,3.4721,10.5249,6.757,7.0331,7.3507,3.6967,1.5367,4.6538,27,,MCI,0.06899,,,,0.36491,3.9528,3.6749,0.70166,9.1421,1.8816,0.34498,2.7959,2.9039,46.7065,13.6021,195.3437,4.1558,4.4505,1.4827,1.8721,3.695,7.1123,2.1371,2.6732,0.55127,5.8093,9.9227,17.9412,7.2789,2.2256,4.0993,1.8545,17.9923,4.5479,3.9577,1.0201,2.4232,8.3181,11.9211,2.8925,3.8586,3.2812,1.4327,1.5564,3.1223,10.0841,2.56,2.0266,9.1447,1.9619,2.3005,1.8945,12.9067,1.9493,3.2743,1.1135,14.1397,5.0958,7.4589,4.3805,10.1384,7.0612,6.4276,6.9707,3.4093,1.4008,4.3581,,,,,,,,,,,,,,,57,,,
-nG+AMS3T0MCI021,1.4915,2.0084,,60-69y,Other,,,20.6291,4.5043,2.8039,2.285,1.1845,edsd,MCI,,M,,0.48436,5.7206,4.9237,0.98359,11.3323,2.0191,0.41955,3.6121,3.1684,52.0429,17.1017,280.1545,4.4935,5.8708,1.993,2.256,4.1863,8.9829,2.423,3.6848,0.54996,7.9981,14.593,10.8531,9.6118,3.0093,5.5482,2.1793,22.5254,7.9998,4.9299,1.1651,2.7925,8.1976,18.2389,4.5715,5.3973,3.5479,1.7745,1.8368,4.8597,12.3097,3.8127,2.5438,13.663,3.0783,3.1197,2.5102,14.6171,2.425,4.6599,1.3752,15.4939,6.08,10.2506,4.9429,11.8495,7.9424,8.5451,9.4243,4.4132,1.7766,5.5824,27,,MCI,0.08624,,,,0.41916,5.2958,4.6294,0.88631,12.444,2.4906,0.41668,3.5648,3.2627,51.3774,17.4447,291.2568,4.762,5.4766,1.8805,2.3493,4.3402,9.1032,2.4575,3.6865,0.51198,8.1387,14.8414,8.3477,9.1568,3.0055,5.2506,2.1869,21.4648,5.8744,4.8671,1.1961,2.6987,9.1315,18.5499,3.9931,5.1906,4.1295,2.0435,1.8399,4.3273,11.9501,3.1722,2.5458,12.0336,3.073,2.8486,2.3214,13.7001,2.5135,4.409,1.3131,17.039,6.2652,10.2352,5.5059,12.9071,8.9029,8.2756,9.4185,4.2315,1.7496,5.1695,,,,,,,,,,,,,,,66,,,
-nG+AMS3T0MCI022,0.98668,1.8414,,50-59y,Other,,,19.6702,5.4564,2.7653,2.6767,1.0689,edsd,MCI,,F,,0.44618,5.0439,3.8791,0.93558,10.418,1.7011,0.39005,3.2794,2.9093,50.4786,16.4672,243.1891,4.1255,5.0529,1.8365,1.7542,3.498,8.3258,2.2513,3.4302,0.46857,7.1724,12.533,11.9758,8.055,2.4943,5.0112,1.9903,20.7538,6.5332,4.3627,1.3481,3.0479,8.1268,15.7574,3.7785,4.6394,3.6265,1.5459,1.5944,4.4141,11.9956,3.3865,2.2839,15.0051,2.4738,2.652,2.3556,13.3092,2.2269,4.0539,1.225,16.071,6.3531,10.4398,4.2271,11.8615,9.3392,7.6297,8.6315,4.1072,1.6597,4.9866,30,,MCI,0.07632,,,,0.39807,4.491,3.7839,0.86557,10.9934,1.9654,0.36376,3.233,3.212,51.5385,16.5035,244.7943,4.7409,4.9972,1.7703,1.9038,3.8131,8.3586,2.2427,3.2866,0.42345,7.3873,12.3971,8.7002,8.945,2.4205,5.134,2.0133,19.4148,5.9367,4.1304,1.042,2.5152,8.6872,15.5243,3.7035,4.7603,3.5792,1.5399,1.6423,4.0738,11.8125,3.2048,2.1717,12.1224,2.2832,2.4963,2.1978,13.5045,2.1055,3.476,1.1572,16.623,6.0818,9.4162,5.1542,11.2368,8.7942,7.3193,8.8523,3.6826,1.7025,4.7729,,,,,,,,,,,,,,,56,,,
-nG+AMS3T0MCI023,2.3357,2.0334,,+80y,Other,,,19.6163,5.3158,2.9938,2.4215,1.9267,edsd,MCI,,M,,0.39958,4.4703,4.9796,0.81606,9.6673,1.3762,0.46289,3.0346,2.4915,52.0746,15.2766,195.9681,4.2174,4.236,1.6624,2.0968,3.4382,7.5253,1.9008,3.3138,0.84609,6.4522,11.5383,29.7356,8.0794,2.2603,4.5369,1.668,18.7124,6.7603,3.6194,1.0764,2.4667,6.6395,14.1416,3.5852,4.5411,3.1625,1.4163,1.6516,4.3227,10.3603,3.6146,2.855,10.9738,2.7249,2.3925,2.5305,12.5485,2.1623,4.1534,1.3239,14.7956,5.0169,9.5053,3.9651,10.1977,7.2786,6.8049,7.0541,3.6508,1.8662,4.9725,27,,MCI,0.08971,,,,0.38018,4.1302,4.3269,0.83178,10.5402,1.6874,0.47435,3.2742,2.9176,50.8783,15.0548,203.5591,4.4022,4.8643,1.722,1.9956,3.5006,7.5028,1.8945,3.1227,0.9369,7.1162,12.5056,24.5416,8.4853,2.2246,4.2825,1.6585,19.1137,5.8705,3.5675,1.0694,2.5962,7.5197,14.3165,3.2577,4.4323,3.4035,1.5394,1.6042,3.9418,10.8854,3.2159,2.7409,9.398,2.409,2.1918,2.4329,12.0507,2.0007,3.9512,1.2017,15.3155,5.5704,7.9453,4.9162,11.2722,7.6925,6.7515,7.7595,3.7023,1.7794,4.9193,,,,,,,,,,,,,,,86,,,
-nG+AMS3T0MCI024,1.9515,3.1605,,70-79y,Other,,,18.1907,4.9853,2.4445,2.4139,2.7035,edsd,MCI,,M,,0.40169,4.1665,5.2613,0.79138,10.3484,1.3377,0.37608,3.8687,2.9424,47.3623,15.5578,201.2834,3.6788,5.3417,1.4874,1.9655,3.4047,7.1392,1.9547,2.9782,1.103,7.2064,10.7722,54.7996,8.3526,2.1175,3.8856,1.595,17.4283,6.7421,3.4924,1.3187,3.6312,6.4714,13.9693,4.0652,4.5039,3.0088,1.3295,1.5711,3.8365,10.4791,3.0873,2.5536,11.1282,2.3333,2.2394,2.2297,12.3543,2.0789,4.1137,1.1993,12.5765,4.8703,8.4522,3.5542,11.0529,7.0812,6.7992,6.8228,3.533,1.5241,4.8258,29,,MCI,0.06153,,,,0.37308,3.3471,4.4412,0.80898,10.4229,1.4874,0.37247,3.6898,3.5473,47.3925,15.4287,211.8331,3.5421,5.137,1.4784,1.9053,3.7175,7.2787,1.8664,3.2322,1.2095,7.4434,11.0658,42.9125,8.7859,2.0652,3.9748,1.6863,17.9113,5.3361,3.3153,1.0243,2.2237,7.3479,14.2378,3.4264,4.5209,3.2367,1.4296,1.6509,3.4431,10.1893,2.8099,2.3728,9.2746,2.0713,1.9527,1.9927,10.969,1.7964,4.4426,1.161,13.286,4.6107,8.1688,4.5661,9.3739,6.9535,6.8653,6.8313,3.591,1.4169,4.733,,,,,,,,,,,,,,,73,,,
-nG+BRE3T0AD001,1.9954,1.6631,,70-79y,AD,,,15.8248,4.3017,1.9212,1.8793,1.8746,edsd,AD,,F,,0.35503,4.0285,3.9836,0.70714,6.0317,1.2714,0.32969,2.5391,2.2576,37.9211,12.0896,171.8839,3.2949,3.4301,1.3538,1.6868,2.8601,5.8776,1.6615,2.8504,0.96109,4.9659,8.5987,24.447,6.2854,1.8338,4.3598,1.4402,15.0329,4.2477,3.2627,1.051,2.2291,5.6333,9.9508,3.1137,3.4539,2.6171,1.2394,1.266,3.4365,7.6672,2.8489,2.0955,9.6952,1.69,2.1045,2.193,10.2988,1.4484,2.9421,1.1767,12.6023,4.4919,6.0982,2.7232,8.3686,5.1293,5.6835,6.1193,2.7278,1.304,4.4208,11,,AD,0.08783,,,,0.2966,3.6214,3.6817,0.69194,7.4411,1.5492,0.31563,2.4866,2.2614,36.8509,11.8484,175.9135,3.2035,3.4484,1.2676,1.6768,3.0306,5.4698,1.7367,3.0009,0.89895,5.2354,8.3535,20.0417,6.342,1.9201,4.2339,1.4738,14.7522,3.8083,3.3085,1.0149,2.1614,6.3595,11.1318,2.5157,3.1014,2.7106,1.2918,1.2879,3.4608,8.2799,2.4929,2.0511,8.5498,1.7451,2.1216,1.9717,10.5223,1.5819,3.0136,1.1108,12.3846,4.8351,5.4734,3.785,7.8694,6.3678,5.5506,6.6822,2.6323,1.344,4.2057,,,,,,,,,,,,,,,76,,,
-nG+BRE3T0AD002,1.7655,2.1868,,70-79y,AD,,,16.3376,4.1121,2.2729,1.9706,1.6565,edsd,AD,,F,,0.38244,4.1443,3.994,0.70404,7.8604,1.5018,0.34125,3.1161,2.5176,40.8836,13.93,213.7972,4.2725,4.406,1.3976,1.9634,3.2724,6.6103,1.9011,2.9325,0.85539,7.438,9.6841,24.8558,7.0785,2.4659,4.039,1.6823,17.5116,6.4401,3.8188,0.95322,2.4201,6.2523,11.4544,4.3907,4.5702,2.9576,1.6168,1.5973,3.7529,9.2245,2.8864,2.2649,11.7943,2.3093,2.5164,2.173,12.4872,1.6991,3.5801,1.1418,13.6239,5.0755,7.382,3.7399,10.3875,6.4605,6.6988,6.3349,3.6759,1.5591,4.6343,21,,AD,0.0781,,,,0.30214,3.7514,3.5452,0.61956,8.1014,1.777,0.32938,3.5068,2.334,42.1735,13.7794,208.9435,3.7391,4.5845,1.2083,1.7386,3.4041,6.3474,1.7426,2.9906,1.591,6.8592,9.0886,23.9851,7.8739,2.279,4.0471,1.5529,17.3679,4.6664,3.5422,1.0694,2.477,6.6446,10.9882,3.5953,4.3676,2.9562,1.676,1.5756,3.4491,8.6129,2.6024,2.1595,10.3476,2.0325,2.2353,1.8667,12.6621,1.6444,3.3326,1.018,13.7655,4.8931,6.6507,3.961,8.3418,6.2549,6.3195,6.3472,3.4193,1.4013,4.4214,,,,,,,,,,,,,,,74,,,
-nG+BRE3T0AD003,2.0414,1.9786,,70-79y,AD,,,13.995,4.0486,2.0875,1.9967,2.0004,edsd,AD,,F,,0.34943,3.9603,3.7041,0.6961,7.4469,1.2516,0.33279,2.9113,2.5209,34.6966,12.0021,169.0711,3.4206,3.8546,1.3728,1.7303,3.0048,5.7918,1.8049,2.7815,1.2296,5.9909,9.1252,32.6737,6.6314,1.9178,4.41,1.4901,16.5257,5.8493,3.332,1.2608,2.3196,6.1271,12.0337,3.5525,3.7121,3.2404,1.2268,1.3319,3.9031,9.008,2.8303,2.0389,10.0321,1.9125,1.9831,2.0166,11.6743,1.7181,3.2442,1.0193,12.0223,4.6608,6.5211,3.4542,8.872,6.3988,6.3248,6.782,3.4939,1.2854,4.1478,19,,AD,0.05934,,,,0.2753,3.3568,3.6329,0.66067,8.3589,1.4122,0.30959,2.8136,2.5792,35.6957,11.4024,171.7744,3.199,4.3906,1.2802,1.7155,3.1505,5.6871,1.7474,2.9372,1.6519,6.114,9.2432,29.0169,6.8063,1.9296,4.2218,1.4496,16.1474,4.6221,3.1511,0.91522,2.1223,6.8316,11.4677,2.8735,3.6596,3.3006,1.3055,1.3894,3.659,9.5141,2.4661,2.0896,8.6397,1.79,1.8405,1.9439,11.3304,1.7469,3.1653,0.93498,12.8693,4.8901,6.3222,4.1802,8.6452,6.1677,6.1982,6.8441,3.2507,1.2809,4.005,,,,,,,,,,,,,,,77,,,
-nG+BRE3T0AD004,2.6213,2.3996,,70-79y,AD,,,14.0306,4.1212,1.9396,1.9864,2.6575,edsd,AD,,F,,0.32698,3.6044,3.5495,0.67863,8.4588,1.1981,0.32688,2.8805,2.2189,26.0012,10.0326,154.1769,3.4527,4.4228,1.2061,1.6179,2.9676,5.7355,1.6285,2.8579,2.2962,6.6108,8.6193,37.629,6.3064,1.9742,4.0693,1.4058,16.2071,6.0367,3.2009,1.0822,2.3604,5.9312,11.3505,4.0951,3.6731,2.6236,1.225,1.2722,3.7411,8.7801,2.7285,1.916,10.0787,1.9168,2.059,1.8973,12.0317,1.7921,2.9232,1.1263,13.0025,4.6593,8.1314,3.7144,9.1738,6.0422,5.6341,6.0501,3.0524,1.191,4.1604,13,,AD,0.06895,,,,0.26034,3.415,3.353,0.68677,8.0774,1.293,0.30847,3.3055,2.1662,25.2218,10.0841,151.1903,3.4278,5.1283,1.1841,1.6243,3.0302,5.5218,1.5372,3.2062,4.1536,5.9213,8.181,37.5915,7.0608,1.8219,4.08,1.3007,16.2163,4.5545,2.888,0.94418,2.3342,6.2574,9.9196,3.0174,3.5914,2.9917,1.289,1.2695,3.4844,8.954,2.4819,1.9894,9.0977,1.7172,1.8465,1.7139,11.6234,1.5081,2.7027,1.0042,12.6543,4.7566,6.4474,4.5785,9.7074,5.8236,5.5588,5.7369,2.9685,1.2066,4.0239,,,,,,,,,,,,,,,78,,,
-nG+BRE3T0AD005,1.9853,2.4115,,70-79y,AD,,,15.4489,4.7108,2.6004,2.075,1.5338,edsd,AD,,M,,0.40963,3.9826,4.0342,0.74646,7.7962,1.4037,0.35365,2.374,2.9189,45.7221,13.7581,188.7927,3.7729,3.5843,1.4807,1.7789,2.8852,7.1118,1.6806,2.728,1.0471,6.2311,10.3429,27.8679,6.62,2.1137,4.3247,1.4152,17.6316,5.4806,3.4941,0.98964,2.4072,6.2803,11.286,3.0815,4.4139,2.7669,1.2023,1.3958,3.8016,9.5752,2.8521,2.1711,11.1386,2.0218,2.2259,2.0155,11.5033,1.7569,3.6449,1.0339,14.141,4.9559,7.7262,3.0921,10.2199,6.356,6.0733,6.6158,3.4214,1.387,4.3615,15,,AD,0.07383,,,,0.34803,3.4872,3.6892,0.68779,8.4832,1.4226,0.33649,2.6818,2.8526,46.6869,13.6541,187.5436,3.6452,3.7929,1.4101,1.8194,3.073,6.8871,1.6585,2.7141,1.1107,6.0112,10.2183,27.2861,7.4874,1.8851,4.2099,1.3704,15.8289,4.9023,3.3879,1.1627,2.6622,6.9634,11.4993,2.7967,4.0845,3.2803,1.3214,1.4166,3.2455,9.2152,2.5379,2.1566,10.0771,1.9282,2.0433,1.9282,10.9428,1.5884,3.4555,0.92726,13.015,5.4504,6.6979,3.7392,9.1168,5.98,6.1602,6.9204,3.1238,1.3282,4.11,,,,,,,,,,,,,,,70,,,
-nG+BRE3T0AD006,2.3108,3.3485,,60-69y,AD,,,15.21,4.6918,1.9847,2.1931,1.6106,edsd,AD,,M,,0.37163,4.4639,3.7407,0.70742,8.3889,1.5301,0.33253,3.4771,2.3693,40.2026,13.7861,216.0617,4.1679,5.0884,1.4068,1.7867,3.3874,7.1173,1.8117,2.7708,1.5945,6.9342,10.0437,35.2172,7.5599,2.2395,4.1845,1.6432,17.4151,5.7261,3.5988,1.0929,2.3792,6.9344,11.9602,4.7744,4.7443,2.9791,1.349,1.5483,4.3122,10.5408,2.9435,2.2597,11.5164,2.6276,2.2933,2.1728,11.4149,1.9102,3.3909,1.0873,15.5509,5.0411,8.1116,4.0503,10.2826,6.329,6.6129,7.0087,3.2213,1.6211,4.5983,15,,AD,0.07302,,,,0.33578,4.0784,3.4303,0.68424,9.6727,1.6668,0.33719,3.5365,2.5437,37.2891,13.3726,214.38,3.8895,4.7813,1.3909,1.8143,3.8539,6.285,1.8708,2.8479,1.7486,6.9728,10.1572,31.8545,7.7411,1.9995,4.0757,1.6945,16.7473,5.2902,3.4751,1.1334,2.4558,7.2857,13.132,3.7041,4.0605,2.857,1.3406,1.6007,3.9221,10.231,2.5922,2.1635,10.4524,1.9359,2.0246,1.8862,11.6645,1.8207,3.2272,1.0687,15.391,5.2122,6.9792,4.5894,9.3424,6.7545,6.3174,6.7199,2.8636,1.3114,4.3635,,,,,,,,,,,,,,,68,,,
-nG+BRE3T0AD007,2.2431,1.8675,,+80y,AD,,,13.4721,3.4571,1.6169,1.7341,1.979,edsd,AD,,F,,0.32631,3.2967,3.4777,0.61474,7.2867,1.1709,0.3292,2.4186,2.5907,18.1896,8.7055,150.8308,3.0259,3.3574,1.1425,1.5213,2.7384,5.2298,1.5898,2.454,1.0629,4.3656,7.844,36.3364,5.8143,1.8303,3.452,1.289,15.039,4.699,3.2126,0.83313,2.0965,4.8291,10.152,2.4072,2.673,2.5606,1.1734,1.1748,3.2689,8.5223,2.5272,1.9636,8.5934,1.5192,2.1158,1.9844,10.5862,1.5294,3.255,1.0666,11.842,4.2012,6.2791,3.0278,8.4194,5.6422,5.2142,5.8429,2.9625,1.3272,3.8821,15,,AD,0.06718,,,,0.25818,3.0547,3.471,0.66322,8.562,1.3788,0.31338,2.4298,2.826,21.6404,9.1965,159.7323,2.7604,3.8698,1.2808,1.5522,2.9585,5.6051,1.6173,2.86,1.2362,5.1103,8.7174,22.4109,6.071,1.8898,3.774,1.2506,15.1214,4.4224,3.1317,0.84734,2.1498,5.4759,10.8509,2.5487,3.1703,2.5222,1.3296,1.2156,3.2125,8.4878,2.403,2.0291,7.9143,1.2293,1.9815,1.9316,9.6834,1.4465,3.1248,0.99742,11.8048,4.2554,5.934,3.7138,8.3676,6.3524,5.6804,6.3894,2.844,1.2178,3.8345,,,,,,,,,,,,,,,85,,,
-nG+BRE3T0AD008,1.4797,1.5222,,70-79y,AD,,,14.9305,4.3562,2.1901,1.8977,1.3648,edsd,AD,,F,,0.30282,4.1491,3.6495,0.66264,7.4654,1.3243,0.30294,2.5867,2.3382,36.3923,12.4668,181.3242,3.3159,3.4881,1.308,1.5445,3.0902,5.698,1.8284,2.4588,0.59173,5.1095,9.5018,12.7441,5.8317,1.9518,4.6134,1.5917,17.9676,5.2418,3.4156,0.80674,1.9965,6.4823,12.3947,2.7864,3.2582,2.473,1.2223,1.3726,3.7111,8.373,2.6319,1.915,9.0151,1.7989,2.2124,1.9312,10.9874,1.4332,2.8827,0.99286,13.483,4.8594,7.282,2.9617,9.3042,5.6823,6.0793,6.9058,2.9167,1.3,4.1507,22,,AD,0.07933,,,,0.27575,3.6178,3.5439,0.61254,7.1019,1.5847,0.32318,2.9727,2.2485,36.777,12.295,179.5118,3.3561,4.0486,1.2567,1.5103,3.339,5.878,1.7203,2.4152,0.82691,5.4833,9.1185,12.2306,6.3517,1.9375,4.2237,1.4822,16.9845,3.8714,3.1492,0.96211,2.2328,6.8601,10.897,2.5782,3.4634,2.7864,1.2204,1.3678,3.4426,8.3878,2.2744,2.0859,8.6032,1.6424,2.0819,1.8903,11.1747,1.4107,2.9832,0.95764,12.5572,4.6146,5.4316,3.4931,7.7783,4.9691,5.9197,6.5783,2.8088,1.2877,3.8999,,,,,,,,,,,,,,,70,,,
-nG+BRE3T0AD009,2.5154,1.6601,,+80y,AD,,,13.7663,4.1864,1.7352,1.8832,2.0899,edsd,AD,,F,,0.26339,3.9163,3.8894,0.52273,7.1867,1.2254,0.2665,2.0323,2.0871,30.9771,11.2483,176.6453,3.305,2.9036,1.0504,1.6097,2.858,4.9533,1.8081,2.3022,0.97396,4.6545,7.6084,24.6515,5.7897,1.8477,4.3307,1.4145,14.7816,4.5592,3.1743,1.1001,1.954,5.903,10.2972,2.7388,3.0676,2.8132,1.1985,1.4265,3.752,8.6851,2.5425,2.3322,9.3435,1.7651,1.9178,2.2365,8.9993,1.5334,2.8936,0.9413,12.524,4.4581,7.0145,2.6645,9.2684,6.3046,5.5074,6.2765,2.9068,1.2157,4.2179,22,,AD,0.07222,,,,0.21445,3.6725,3.6745,0.5909,7.9338,1.4268,0.28338,2.5231,1.7629,30.325,10.7677,171.8927,3.1742,3.0771,1.1132,1.6696,2.9731,4.513,1.771,2.4818,0.90182,4.9538,7.2375,23.0969,6.106,1.7443,4.146,1.4273,13.6102,3.8943,3.0777,1.0548,2.0438,6.74,9.5092,2.255,2.8718,2.8706,1.1486,1.5685,3.228,8.1223,2.2397,2.2408,7.8324,1.7326,1.8224,1.9981,9.5908,1.5548,2.9437,0.88812,12.4841,4.4519,5.935,3.043,8.8065,6.018,5.2375,6.377,2.6106,1.2827,3.9613,,,,,,,,,,,,,,,87,,,
-nG+BRE3T0AD010,1.6047,1.9036,,-50y,,,,12.9797,4.1094,1.8897,1.7578,1.8529,edsd,,,F,,0.34527,3.6751,3.5054,0.55372,8.5704,1.274,0.30481,2.6493,2.416,28.5729,10.4069,175.5353,3.2309,3.4814,1.0134,1.5329,2.9251,4.8119,1.8205,2.0602,2.2794,5.3777,7.7636,29.1678,5.6735,1.8822,3.825,1.4061,15.8574,5.7216,3.4254,0.91269,2.147,5.4975,11.4906,2.9293,3.295,2.6661,1.1681,1.3058,3.3874,8.3454,2.1854,2.003,8.6872,1.9767,1.9953,2.0444,9.3671,1.6423,3.0238,1.0129,12.7683,4.4989,7.6242,3.0683,9.0978,6.4292,5.908,6.0018,3.3,1.2191,3.8384,,,,0.0805,,,,0.28645,3.2699,3.3117,0.61902,8.5819,1.4892,0.32496,2.9937,2.317,32.1332,10.46,177.7723,3.2202,3.9572,1.1124,1.4857,3.0721,5.5713,1.727,2.4167,1.9068,5.7857,9.1119,31.8323,6.5178,1.8193,3.6459,1.402,14.97,4.7423,3.3436,0.92958,1.9544,6.2179,11.987,2.7527,3.3211,2.8167,1.2743,1.3105,3.0563,8.6448,2.1424,2.0433,8.3505,1.8569,2.0072,1.7963,9.7467,1.4596,3.2751,0.96208,13.9377,4.509,6.6741,3.7189,9.2968,5.9721,5.6364,6.4215,2.7025,1.2047,3.7621,,,,,,,,,,,,,,,,,,
-nG+BRE3T0AD011,2.4142,2.3329,,70-79y,AD,,,14.5161,3.9853,2.3281,1.9527,2.9439,edsd,AD,,F,,0.30698,3.6567,3.5093,0.70051,6.4636,1.0793,0.30397,2.9306,2.2636,40.3567,12.7184,139.2125,3.4708,3.839,1.3508,1.5836,2.6516,5.6728,1.6227,2.6555,1.5853,5.3071,7.589,55.2829,6.7686,1.7342,3.8306,1.3901,13.0438,4.5191,3.0684,0.875,2.0499,5.6164,8.7619,2.9579,3.852,2.3396,1.097,1.1942,3.6198,9.3891,2.7242,2.1447,8.8505,1.6112,1.9514,2.0965,9.5275,1.6307,2.973,1.0064,10.7096,4.7956,5.7734,2.7912,7.7857,5.328,5.4602,5.8248,2.5035,1.2762,3.9699,8,,AD,0.0592,,,,0.29537,3.5383,3.5251,0.66791,8.1557,1.3535,0.31389,2.9997,2.5395,40.7918,12.0467,152.1523,3.5019,4.0172,1.2702,1.7244,3.0455,5.7398,1.6709,2.8667,1.8794,5.3701,8.294,43.3921,7.2798,1.8516,4.2511,1.4145,14.0942,4.4364,2.9565,0.94034,2.2873,6.4487,9.7986,2.3938,3.5957,2.7456,1.3545,1.2866,3.3578,8.7416,2.4347,2.1367,8.0006,1.9136,1.9032,1.9361,9.3165,1.5209,2.9829,0.95964,10.4235,4.5203,5.8455,3.4514,7.6841,5.4202,5.5258,6.3232,2.7553,1.4047,3.8951,,,,,,,,,,,,,,,70,,,
-nG+BRE3T0AD012,2.5788,1.9015,,+80y,AD,,,16.9955,3.982,1.7793,1.7441,2.739,edsd,AD,,M,,0.39194,4.5795,4.6432,0.78073,7.9803,1.2255,0.36788,2.6444,2.442,31.817,12.2296,213.6637,4.0858,3.9519,1.4568,2.0396,3.331,5.7522,1.9303,3.0592,2.3651,5.8975,9.4936,46.0499,6.2007,2.0662,5.0023,1.778,17.9877,6.0025,3.264,1.0314,2.4024,6.5059,12.9115,3.9247,3.3974,3.1969,1.4422,1.6671,4.4385,10.2617,2.9739,2.5438,9.4535,2.4762,2.3203,2.4582,11.229,1.9123,3.2904,1.2805,12.9671,4.8788,8.661,3.5939,10.2541,7.4916,6.5945,6.9502,3.7809,1.6294,4.8807,16,,AD,0.0883,,,,0.29474,4.2224,4.0404,0.7685,8.3991,1.4914,0.32917,3.351,1.9612,30.3967,11.5346,212.6955,3.9353,4.7214,1.4203,2.1033,3.3536,6.1331,1.8536,3.2804,2.1389,5.896,10.2904,41.0473,6.88,1.9596,4.5218,1.6087,16.9488,4.7874,3.1831,1.116,2.6776,7.2157,13.2245,3.5262,3.4874,3.5997,1.3267,1.6059,3.9721,10.4973,2.7657,2.4494,8.7885,1.9748,2.0875,2.1693,11.3144,1.7123,3.0887,1.1891,12.5704,5.0381,6.936,4.5952,9.7516,6.8013,6.2639,6.947,3.24,1.5882,4.6308,,,,,,,,,,,,,,,80,,,
-nG+BRE3T0AD013,1.4396,1.7707,,60-69y,AD,,,14.5522,3.6364,1.847,1.6853,1.5923,edsd,AD,,F,,0.33854,3.9495,3.7863,0.55213,8.6694,1.4523,0.30474,2.2112,2.6558,29.3034,10.4877,211.6229,3.7809,3.9733,1.0787,1.841,2.9772,5.4726,1.9112,2.2563,0.73466,5.1349,8.6306,15.7483,5.2629,2.2682,4.1273,1.5371,15.5038,5.679,3.7272,0.93506,2.185,6.0357,11.8085,3.6115,3.3116,2.9439,1.3582,1.572,3.6512,8.986,2.3404,2.2649,9.7953,2.1001,2.4146,2.3685,11.1387,1.684,3.1456,1.0783,12.4917,4.6472,8.3096,3.7914,11.4955,6.6294,6.1034,6.1399,3.434,1.3936,4.3053,20,,AD,0.06985,,,,0.3095,3.5363,3.7219,0.51972,9.321,1.6717,0.32294,2.4333,2.5567,31.4445,11.5216,216.8783,3.6874,4.2997,1.1498,1.7721,3.3422,5.7876,2.0447,2.4553,0.71919,6.6239,8.9138,14.6964,6.5299,2.0953,4.3694,1.6283,15.2815,5.5586,3.7152,0.87055,2.3533,6.9332,11.4926,3.2656,3.863,3.0877,1.4194,1.596,3.4464,8.942,2.16,2.187,8.0621,1.9047,2.2308,2.0719,10.712,1.8091,3.3634,1.017,13.2672,5.0658,6.6708,4.4738,10.3461,6.4288,5.8613,6.4111,2.9811,1.4499,4.0983,,,,,,,,,,,,,,,65,,,
-nG+BRE3T0AD014,1.7829,2.3061,,70-79y,AD,,,12.4527,3.7214,1.872,1.6058,2.1765,edsd,AD,,F,,0.33732,3.8584,3.7116,0.68183,7.946,1.2656,0.32499,2.4243,2.2676,32.6378,10.4569,156.4949,3.7889,3.4567,1.3182,1.6617,2.9361,5.2805,1.5624,2.6429,1.3809,5.3201,8.6055,27.6636,5.8332,1.9361,4.1367,1.4472,18.0442,5.1045,3.0025,0.97972,2.0813,5.7511,10.8954,3.0026,3.4339,2.8078,1.1813,1.1591,3.5485,8.3464,2.6325,2.0525,9.7572,2.0774,1.9725,2.048,10.8212,1.8889,3.0618,1.0804,12.1319,4.2424,7.4442,3.2754,10.4434,6.2873,5.6467,5.9166,3.0018,1.4348,3.9382,9,,AD,0.07364,,,,0.25343,3.2605,3.3928,0.65865,8.2003,1.3715,0.30766,2.5069,1.8066,32.5484,9.9298,153.3452,3.0914,3.7466,1.2651,1.6749,3.0743,5.1012,1.5062,2.89,1.417,5.5049,8.2175,32.5772,5.9072,1.7858,3.8459,1.3793,15.7992,4.1009,2.7665,1.0275,2.3171,6.0968,10.5996,2.5401,3.2939,3.3401,1.284,1.1898,3.2327,9.1097,2.355,2.0278,9.0129,1.7987,1.9447,1.7315,10.6188,1.5729,2.8986,1.0147,12.1351,4.4581,6.8164,3.7366,9.6925,6.2211,5.3109,6.0386,2.9307,1.2254,3.6515,,,,,,,,,,,,,,,79,,,
-nG+BRE3T0AD015,2.1187,1.8484,,-50y,,,,15.3463,4.181,2.2026,1.8249,2.165,edsd,,,F,,0.34214,3.4642,4.1295,0.4964,6.2744,1.0733,0.33009,1.9707,2.6248,36.5567,11.7522,148.1433,3.7673,2.6589,0.91633,1.5775,2.8818,4.5657,1.6491,1.9484,1.6943,3.8533,6.8215,35.2975,4.8537,1.7392,3.2876,1.3547,14.4447,3.9079,3.1131,0.9852,1.9147,5.4923,8.7586,2.0875,2.5875,2.6425,1.2083,1.2242,3.4149,8.1036,2.1743,2.2883,9.5457,1.8376,1.9931,2.1779,10.2205,1.6641,3.5782,1.0318,11.7842,4.3385,6.1559,2.0489,8.7234,5.349,5.6857,5.3353,2.9113,1.3825,4.1428,,,,0.08338,,,,0.29367,2.7234,3.7564,0.53111,7.5287,1.3256,0.32491,2.3393,2.5445,36.0362,11.6495,155.842,3.156,3.1037,1.0263,1.5777,3.0628,5.0191,1.5507,2.4249,1.7219,4.2343,8.0468,34.6058,5.351,1.7016,3.1064,1.3553,14.1463,3.6891,2.8623,1.0862,2.3075,6.4258,10.1412,1.9227,2.6426,2.8424,1.2641,1.2923,3.0192,8.7343,2.1022,2.4446,8.0768,1.6281,1.866,1.9255,10.0148,1.5465,3.354,0.93137,11.829,4.4946,6.1333,2.9098,8.1262,5.4504,5.6226,5.8082,2.9765,1.3216,4.1153,,,,,,,,,,,,,,,,,,
-nG+BRE3T0AD016,1.9773,1.9031,,+80y,AD,,,14.6397,3.9139,2.3445,2.0307,1.6855,edsd,AD,,F,,0.32265,3.6864,3.583,0.56069,7.2641,1.2794,0.28156,2.4315,2.1212,36.7825,12.1724,150.5561,3.1855,3.3657,1.0909,1.7017,2.8388,5.6767,1.6345,2.3076,1.6288,4.9289,8.4368,23.0663,6.1424,1.8461,3.5368,1.4253,15.1437,4.7696,3.2702,0.91099,2.1825,5.7841,10.6118,2.5807,3.3195,2.9128,1.0448,1.1695,3.7434,8.4152,2.6232,2.1279,8.4065,1.6536,2.0093,2.0374,9.5779,1.3524,2.9049,0.97401,11.5571,4.4271,6.4444,2.9009,8.4338,5.1939,5.1752,5.9416,2.9795,1.2505,4.0067,18,,AD,0.07392,,,,0.28932,3.4023,3.1251,0.54594,7.9765,1.3738,0.28477,2.5224,2.3106,36.7438,11.7082,150.0735,3.1009,3.2195,1.1199,1.3831,2.918,5.6402,1.6284,2.4966,1.5059,5.4548,8.7248,22.6621,6.3145,1.6987,3.866,1.3578,13.7531,4.4002,3.1172,0.9629,2.0339,6.2177,10.9757,2.5875,3.3293,2.7353,1.0699,1.1776,3.3295,8.2793,2.3445,2.01,7.8716,1.7161,1.9349,1.7177,9.7905,1.4148,2.8007,0.9635,11.9137,4.3057,5.6447,3.4558,8.6072,5.0713,5.2268,5.7647,2.5062,1.2209,3.7416,,,,,,,,,,,,,,,81,,,
-nG+BRE3T0AD017,3.1708,2.4934,,70-79y,AD,,,17.5957,4.6878,2.4032,2.2701,2.3965,edsd,AD,,F,,0.46684,4.6638,4.5698,0.93873,8.015,1.6856,0.42175,3.6852,2.5484,46.3144,13.6537,188.2762,4.6321,4.3007,1.7568,2.0179,3.4086,6.465,2.1148,3.4541,1.333,6.4585,9.9192,44.2152,7.8896,2.4569,4.7073,1.8874,18.7104,5.5006,4.2189,1.2412,2.9714,6.9341,11.7685,4.0623,4.2536,3.5961,1.4473,1.4261,4.7489,10.4812,3.2909,2.5625,11.7716,2.5347,2.7294,2.8223,14.2066,2.1388,3.6285,1.4476,14.6967,5.8481,8.0917,3.6882,10.5315,7.1664,6.6673,7.7833,3.8957,1.9831,4.8071,8,,AD,0.08132,,,,0.40041,4.0091,4.0728,0.88168,8.4829,1.7905,0.40079,3.7296,2.4205,45.5252,13.5663,183.1204,3.9039,4.5713,1.6292,1.9472,3.869,6.3183,2.1533,3.804,2.0116,6.0933,9.6121,44.5576,8.2468,2.2095,4.5653,1.8988,17.3819,4.3612,3.7824,1.1688,3.0467,7.947,12.6338,3.0945,3.9501,3.4069,1.3856,1.4275,4.1098,9.6993,3.0104,2.3183,9.3223,2.1573,2.2897,2.2845,13.0528,2.052,3.3207,1.3879,14.4338,5.4985,6.8489,3.7963,9.228,7.1897,6.6078,7.579,3.3051,1.6937,4.5974,,,,,,,,,,,,,,,72,,,
-nG+BRE3T0HC001,1.5676,2.2986,,70-79y,CN,,,16.6236,4.9095,2.1388,2.0194,1.5034,edsd,CN,,M,,0.40699,4.6218,4.2454,0.85732,8.4266,1.6388,0.36481,2.6239,2.6911,40.8598,14.5244,203.2097,3.9929,3.1737,1.5875,1.874,3.6426,7.0611,2.0694,3.137,0.55107,6.0013,10.7844,19.0497,6.4803,2.3362,4.9715,1.9029,20.5346,5.3469,3.7741,1.0988,2.3793,6.9709,13.3416,2.9641,3.9532,3.3683,1.3509,1.393,4.5016,9.8585,3.1578,2.4643,10.1888,2.0437,2.4751,2.3784,12.3532,1.7595,3.7361,1.1489,14.0631,5.0286,7.965,3.2684,10.9917,7.1273,6.5046,7.4294,3.6948,1.4265,4.4197,26,,,0.07283,,,,0.36254,4.0667,4.2152,0.8503,9.7693,1.7461,0.36129,2.7907,2.8217,38.9026,13.5734,203.0384,3.6777,3.6404,1.6102,2.0011,3.8294,7.2336,1.9797,3.2733,0.65501,6.3087,11.2816,16.3904,6.9763,2.0161,4.8109,1.8029,19.6056,4.7728,3.4504,1.0033,2.3383,7.6104,13.8398,2.8514,3.4721,3.3994,1.2954,1.4272,4.1859,10.2395,2.8643,2.304,9.8283,1.779,2.2852,2.0332,11.7128,1.5796,3.7056,1.1223,13.8475,4.955,8.042,3.4082,10.1684,7.09,6.338,7.4341,3.2904,1.2281,4.2638,,,,,,,,,,,,,,,78,,,
-nG+BRE3T0HC002,0.63477,1.5445,,60-69y,CN,,,15.4609,4.1429,2.4067,2.093,0.7582,edsd,CN,,F,,0.42275,4.6178,3.7369,0.88361,8.8036,1.5454,0.37755,2.7961,2.5944,44.1275,15.0423,210.2499,3.763,4.3938,1.7728,1.7211,3.2998,7.1705,1.9448,3.1428,0.37352,6.6013,11.3263,5.1615,6.7701,2.2721,4.5042,1.7434,18.9053,6.275,3.8333,1.1274,2.6167,6.6459,14.4591,3.3767,4.1586,3.0753,1.4185,1.3757,4.1543,9.8832,3.0372,2.0851,11.2863,2.2234,2.5069,2.0913,11.8905,1.8005,3.402,1.1023,14.584,5.2597,8.5647,3.3969,10.5664,7.2427,6.6061,7.6207,3.5409,1.4327,4.2061,30,,,0.07381,,,,0.37906,4.0983,3.5958,0.86192,10.8307,1.7906,0.37258,2.912,2.7501,44.3657,14.574,211.7795,3.6842,4.6637,1.6715,1.7747,3.617,7.2503,1.8974,3.3306,0.4904,6.3951,11.2911,4.3307,7.6419,2.2044,4.8128,1.7256,19.7012,4.9104,3.7921,1.1499,2.8894,7.5378,14.7741,2.8378,4.2714,3.1102,1.4407,1.4053,3.8987,10.0818,2.8784,1.9936,10.1441,1.9658,2.3067,1.7585,11.7388,1.7509,3.3659,1.0802,13.6319,5.1854,8.4112,3.9536,10.1525,7.5991,6.3384,7.0993,3.3338,1.2368,4.0316,,,,,,,,,,,,,,,68,,,
-nG+BRE3T0HC003,1.5285,1.6665,,70-79y,CN,,,16.2031,4.6685,1.1706,1.3543,1.3893,edsd,CN,,F,,0.40587,4.5147,4.2311,0.85492,10.4668,1.4732,0.39117,2.0109,2.6888,17.5955,9.5908,216.5383,4.0413,4.4358,1.6616,1.7251,3.268,6.6344,1.8676,3.0683,0.70554,4.7521,10.374,16.3416,5.6016,2.0354,4.3046,1.7594,17.6929,7.0509,3.7205,0.96142,2.0501,6.7828,13.6564,1.2586,2.2694,2.9994,1.1482,1.5342,4.224,10.3525,2.9405,2.5971,11.3081,2.3586,2.3531,2.3548,11.2965,1.9443,3.7863,1.1954,13.6532,4.8956,9.0232,4.0134,11.05,7.5305,6.7909,7.7009,3.122,1.4559,4.7828,26,,,0.09323,,,,0.36376,4.16,4.3171,0.8358,11.4685,1.6685,0.36723,2.4207,2.6323,17.4511,9.3302,222.8908,3.7413,4.6228,1.6261,1.8332,3.3689,7.5378,1.843,3.3738,0.58396,5.6115,12.4566,12.6277,5.7872,2.0293,4.3423,1.6669,16.3461,6.5173,3.4902,0.91562,2.2466,7.5173,15.2902,1.5521,2.7199,3.0495,1.4117,1.5531,3.8716,10.4,2.7981,2.482,9.2381,2.0362,2.3529,2.1534,10.0684,1.9694,3.6399,1.1141,13.7446,5.3208,8.4619,5.0079,11.0831,7.9135,6.9927,8.2744,3.0571,1.3547,4.6084,,,,,,,,,,,,,,,77,,,
-nG+BRE3T0HC004,2.3255,2.391,,+80y,CN,,,17.0807,5.2801,2.5582,2.3957,1.9368,edsd,CN,,M,,0.46097,4.8014,4.7752,0.94014,9.2301,1.5185,0.43573,3.0523,3.2616,45.9233,15.1093,229.6412,5.0423,4.6004,1.7477,2.0629,3.9985,7.5038,2.1944,3.3489,1.7229,7.0318,12.02,26.9842,7.8072,2.36,5.5108,1.92,21.8548,6.1756,4.0716,1.3141,2.9101,7.9001,15.24,4.0946,4.4217,3.6131,1.4462,1.6337,5.0361,11.4018,3.2659,2.5067,13.5758,2.8694,2.6081,2.7172,15.2549,2.3887,4.2169,1.3772,16.7784,5.6432,8.7049,3.9613,12.2077,8.1205,6.9837,9.0002,3.645,1.9208,4.8988,29,,,0.09039,,,,0.39004,4.4457,4.5559,0.91961,9.7385,1.6826,0.42884,3.5259,3.2785,46.091,14.6937,232.0406,4.5488,5.2557,1.6942,2.0358,3.9484,7.859,1.9564,3.3499,1.3791,7.6147,12.5177,24.219,8.6053,2.3412,5.2304,1.8585,20.694,5.5567,3.7214,1.302,2.9491,8.2947,15.3481,3.7168,4.6285,3.407,1.7399,1.6255,4.448,12.5485,2.8216,2.5812,11.3137,2.7442,2.6607,2.5206,13.2394,2.317,4.0675,1.3019,16.5313,5.7164,8.4426,4.6967,12.9849,7.9778,6.8815,8.8288,3.7539,1.8232,4.6086,,,,,,,,,,,,,,,82,,,
-nG+BRE3T0HC005,1.3691,1.4205,,70-79y,CN,,,17.0563,4.0219,2.4111,2.0176,1.033,edsd,CN,,F,,0.36871,3.8019,3.5139,0.75441,7.7872,1.259,0.33859,2.4514,2.3045,41.2085,16.6666,241.3842,3.3902,3.7273,1.3723,1.5965,2.8423,5.8965,1.602,2.7299,0.37161,5.8139,8.9927,9.9571,5.6466,1.892,4.0338,1.3385,16.0086,5.3461,3.2493,0.87376,2.0004,5.4513,12.1185,3.1752,3.5683,2.4846,1.2201,1.6863,3.6734,9.2175,2.6815,2.1383,9.4117,2.13,1.9402,2.1697,9.9515,1.7751,3.2931,1.0415,12.3802,4.4744,7.816,2.9174,9.6319,6.9838,6.686,6.3317,3.3177,1.3832,4.6844,30,,,0.08831,,,,0.3278,3.4038,3.3617,0.76307,8.2133,1.4292,0.34659,2.6333,2.3931,42.54,16.5675,242.2642,3.1436,3.8816,1.4479,1.4777,2.9935,5.8737,1.537,2.8776,0.41045,5.3796,9.5365,8.988,6.5539,1.9313,3.881,1.3868,15.764,3.9341,3.0517,0.90867,2.138,6.29,12.4758,2.4489,3.4707,3.1041,1.2984,1.7496,3.4626,9.2495,2.4452,2.0246,8.5585,1.7651,1.9844,1.8162,10.8149,1.5654,3.3077,0.99225,12.6629,4.3664,6.2696,3.3119,8.7087,6.2459,6.4687,6.4517,3.1211,1.2464,4.4904,,,,,,,,,,,,,,,71,,,
-nG+BRE3T0HC006,2.324,1.9035,,60-69y,CN,,,17.1042,4.7916,2.2734,2.0201,1.6234,edsd,CN,,M,,0.42178,5.0346,4.5754,0.90626,9.8771,1.5916,0.38983,3.0271,2.7179,35.7295,14.6398,233.5361,4.1345,4.6537,1.6341,1.9723,3.5221,7.0345,2.0083,3.3539,0.89918,7.291,10.7504,20.5572,7.4225,2.4742,4.9408,1.8517,20.3142,7.0699,4.0138,1.2002,2.5255,7.1431,14.2256,4.2854,4.2841,3.507,1.5579,1.6188,4.8769,10.7039,3.3066,2.3573,11.3632,2.2796,2.5079,2.4893,12.5602,2.1445,3.6697,1.2903,13.7765,5.4185,9.0722,3.9702,10.6654,7.8724,7.0601,7.8857,3.9585,1.5427,4.9442,29,,,0.09339,,,,0.37089,3.9011,4.1555,0.89412,10.3589,1.6824,0.38773,3.3893,2.7312,39.7325,14.9968,234.567,3.9415,5.0371,1.6965,1.8763,4.0964,7.4894,1.9341,3.5816,0.96117,7.6337,11.5999,19.1836,8.1675,2.17,4.4718,1.665,20.0346,5.4008,3.6743,1.2274,2.7515,8.7052,14.3491,3.859,4.3009,3.4054,1.5949,1.6611,4.4471,11.2362,3.1019,2.4361,10.6365,2.3931,2.5115,2.1559,12.2645,2.0179,3.6768,1.1729,14.303,5.6393,8.2315,4.5519,9.9526,7.4455,6.9095,7.9912,3.3044,1.5133,4.7495,,,,,,,,,,,,,,,67,,,
-nG+BRE3T0HC007,1.5107,1.6249,,60-69y,CN,,,18.3779,4.8245,2.4905,2.2394,1.4133,edsd,CN,,F,,0.36026,3.9538,3.4893,0.81901,8.7724,1.4948,0.33734,2.8913,2.8869,46.485,15.2514,196.2536,3.5616,4.1133,1.5971,1.7166,2.9867,6.7283,1.738,2.973,0.51393,6.0643,10.2714,15.693,7.2088,2.3021,4.6586,1.5041,18.8235,5.8088,3.5999,1.0809,2.4518,6.0255,13.4344,3.3573,4.385,3.5078,1.3463,1.4444,4.0252,10.2134,3.1227,1.7988,11.2494,1.9332,2.3008,1.8391,13.5901,1.6417,3.5212,0.93688,14.6057,4.9526,8.0408,3.4698,10.5006,6.7096,6.6519,6.9879,3.3764,1.182,4.7758,30,,,0.07383,,,,0.34305,3.4719,3.349,0.81818,9.4737,1.6958,0.35922,3.2335,2.8802,47.1369,14.6356,199.9507,3.2952,4.5468,1.6281,1.5528,3.4889,6.8956,1.8074,3.2024,0.4579,6.1947,10.8623,14.775,7.582,2.1113,4.6803,1.5281,18.6572,4.6573,3.528,0.99093,2.2643,7.1327,13.1632,2.5745,4.1496,3.0061,1.3687,1.4871,3.7733,10.4344,2.9075,1.8025,10.0317,1.9803,2.1568,1.6437,12.2882,1.5749,3.4543,0.93125,14.8992,5.1824,8.0252,3.9957,10.2263,6.5286,6.6045,7.1558,3.3878,1.1696,4.5429,,,,,,,,,,,,,,,69,,,
-nG+BRE3T0HC008,1.0879,1.5863,,60-69y,CN,,,18.9048,4.768,2.542,2.1997,1.2408,edsd,CN,,F,,0.44194,4.5454,3.9828,0.89305,8.7286,1.3397,0.3586,2.9269,3.3859,46.7113,16.4774,213.0487,4.0739,4.1815,1.7514,1.841,2.9067,6.9494,2.0006,3.1983,0.51638,6.1703,10.9301,14.1344,6.9613,2.0384,4.8735,1.7554,16.5372,6.0892,3.62,1.0543,2.549,6.5107,12.7389,3.7644,4.03,2.7665,1.3087,1.6447,4.24,10.0436,3.2821,2.3482,10.3895,1.9848,2.2988,2.4206,11.3434,1.598,3.9557,1.1825,13.5929,5.2669,8.1279,3.5384,9.2576,6.699,7.4651,7.2615,3.0662,1.54,5.1317,30,,,0.07484,,,,0.40736,4.1037,3.8721,0.84832,9.7549,1.5169,0.37472,3.0835,3.5023,47.8697,16.4399,213.4166,3.6548,4.6173,1.6681,1.7157,3.1852,7.4189,1.9012,3.4466,0.6389,6.1063,10.7373,12.8766,8.0791,2.0761,4.6952,1.6189,17.1276,4.7777,3.3669,0.98305,2.5762,7.2826,12.6504,2.7849,4.1388,3.0664,1.4056,1.6688,3.7308,10.5986,3.0453,2.2934,9.367,1.9944,2.3016,2.1557,11.52,1.7489,4.106,1.1184,13.1822,5.2426,7.8114,3.9277,10.1534,6.8712,7.2796,7.3364,3.3767,1.3599,4.7738,,,,,,,,,,,,,,,65,,,
-nG+BRE3T0HC009,1.2587,1.2549,,60-69y,CN,,,14.4094,3.7976,2.0595,1.8129,1.1253,edsd,CN,,F,,0.31078,3.4415,3.2009,0.75972,7.0338,1.246,0.30745,2.2969,2.254,36.6688,12.3842,173.4067,3.1499,3.1246,1.4,1.4077,2.5954,5.6911,1.5971,2.8217,0.4617,4.7373,8.829,12.8708,5.8094,1.8624,3.7226,1.3208,15.6491,4.4877,3.1944,0.83847,1.779,5.1598,10.3966,2.5231,3.385,3.0674,1.097,1.1772,3.3652,7.6794,2.6722,1.7303,9.6935,1.6677,2.1201,1.9804,10.4778,1.5665,2.7354,0.93595,12.0324,4.1032,6.5171,2.8935,8.9796,5.1763,5.5759,5.995,2.934,1.3848,3.8831,29,,,0.06699,,,,0.2921,3.0793,3.0941,0.74801,7.5111,1.5849,0.31234,2.3293,2.3504,35.9692,11.27,180.0634,3.2431,3.3574,1.3962,1.4159,2.9562,6.0063,1.626,2.9848,0.42204,5.2199,9.0157,10.0298,6.2051,1.8609,3.8319,1.3077,15.5645,4.0023,3.1075,1.0072,2.0511,5.7327,10.2149,2.4134,3.363,2.9907,1.1553,1.2196,3.2061,8.079,2.3912,1.7966,8.0245,1.7858,1.9091,1.7401,10.0972,1.7454,2.877,0.91508,11.9052,3.9761,6.8385,3.4634,8.5565,6.3164,5.785,6.4081,2.8801,1.1665,3.8095,,,,,,,,,,,,,,,66,,,
-nG+BRE3T0HC010,0.88743,1.9964,,70-79y,CN,,,18.1981,4.7656,2.4551,2.305,1.0679,edsd,CN,,F,,0.45212,4.1459,4.055,0.86685,8.5365,1.411,0.35327,2.9379,3.1277,44.2557,15.7259,238.5675,3.308,4.5858,1.6599,1.8092,3.2506,6.8761,1.9178,3.2942,0.40354,7.4721,11.1411,7.4895,6.9263,2.2107,4.4314,1.6085,17.8268,6.8039,3.7711,1.0348,2.3249,6.1349,13.734,4.7783,4.3095,3.2146,1.4126,1.6981,4.2314,9.804,3.1178,2.2586,10.212,2.1968,2.438,2.1408,10.9466,1.7886,3.8527,1.1302,13.2358,4.7641,7.3882,3.9864,9.1754,7.3126,7.8543,7.1257,3.5497,1.3077,5.0056,28,,,0.07254,,,,0.38433,3.591,3.8644,0.88854,9.2652,1.6813,0.35451,3.0653,2.8967,45.6943,16.6983,238.5124,3.5289,5.232,1.7787,1.7472,3.176,7.0668,1.8217,3.6718,0.51067,6.7307,11.1808,7.8019,7.8651,2.0839,4.2708,1.5471,17.1396,5.1801,3.6668,1.1358,2.7068,6.7697,13.7782,3.7885,4.0606,2.9653,1.2908,1.727,3.7653,10.1462,3.1027,2.1698,9.2483,2.0286,2.4704,1.8863,10.6278,1.6913,3.5889,1.0316,13.4238,5.1356,7.8294,4.7073,10.2113,7.2629,7.663,7.5087,3.036,1.2729,4.7913,,,,,,,,,,,,,,,71,,,
-nG+BRE3T0HC011,1.1076,1.3945,,60-69y,CN,,,15.5901,4.2432,2.2057,1.8736,0.99032,edsd,CN,,F,,0.41872,4.4726,3.5419,0.76662,8.3375,1.4445,0.34124,2.7239,2.7349,39.9079,13.1971,207.7314,3.8728,3.9231,1.4559,1.7831,3.2291,6.4193,1.8321,2.8231,0.35349,5.8054,9.6766,10.0306,6.4066,2.2255,5.1063,1.6816,17.7638,5.7343,3.5808,0.88782,2.2307,6.5047,12.523,3.1936,3.5668,3.2572,1.407,1.4028,4.165,9.6412,2.7322,1.8182,9.966,1.9972,2.2795,2.0997,11.0545,1.6453,3.5774,0.99153,14.3161,4.9805,7.5155,3.2589,10.1926,6.709,6.2616,7.508,3.9512,1.3859,4.2057,27,,,0.07014,,,,0.36656,3.8308,3.5284,0.78518,9.7765,1.746,0.34362,2.8039,2.8002,39.3487,12.6382,208.768,3.3572,4.0345,1.5099,1.6815,3.6547,5.9671,1.8289,2.9637,0.41256,6.0955,9.6194,9.9076,6.8044,2.1125,4.7753,1.6304,17.1552,4.7324,3.4252,0.95977,2.4632,7.0663,13.2977,2.916,3.6454,3.2061,1.457,1.4352,3.797,9.6819,2.3867,1.857,9.2137,1.8491,2.1507,1.84,11.0166,1.6764,3.5115,0.97385,15.0319,4.8342,7.5235,3.8119,9.4402,7.2718,6.1564,7.0589,3.1547,1.274,4.0474,,,,,,,,,,,,,,,65,,,
-nG+BRE3T0HC012,1.3832,2.213,,+80y,CN,,,17.0656,4.4217,2.493,2.1421,1.3749,edsd,CN,,F,,0.37445,3.902,3.9132,0.79963,7.6134,1.2392,0.32953,2.6636,2.5963,42.7427,15.2271,212.0212,3.9159,3.8322,1.5117,1.6285,2.9111,6.8122,1.844,2.8392,0.66511,5.4972,9.8852,15.0126,6.2984,1.9786,4.1942,1.5869,16.2676,4.7546,3.3257,1.0087,2.0461,5.9363,11.453,3.0161,3.7017,2.8744,1.3255,1.5196,4.0115,9.8686,2.9044,2.0742,10.5064,2.0017,2.1766,2.0868,11.5391,1.8311,2.7379,1.1234,12.7141,4.3767,8.448,3.2554,9.8361,6.4193,6.3968,7.0134,3.3445,1.3082,4.5907,28,,,0.08624,,,,0.34299,3.7635,3.6669,0.73728,9.6025,1.5496,0.33722,2.8962,2.828,43.5612,14.377,211.2005,3.4909,3.9844,1.381,1.6866,3.2079,6.6631,1.7184,2.9465,0.52755,6.1881,9.5823,13.6634,6.987,1.9992,4.2933,1.4989,16.0764,4.6187,3.2182,0.95179,2.313,6.6768,12.2732,3.2711,3.8619,2.8766,1.3021,1.5024,3.7277,10.113,2.5317,2.1301,9.1729,1.7744,2.1689,1.7793,11.2018,1.495,3.0935,1.0798,12.738,4.7982,7.366,3.5417,8.2148,5.9694,6.3029,6.5243,2.9217,1.2667,4.259,,,,,,,,,,,,,,,81,,,
-nG+BRE3T0HC013,1.9291,1.505,,+80y,CN,,,18.0157,4.9875,2.5773,2.2587,1.7785,edsd,CN,,M,,0.45981,4.7194,3.9908,0.82436,10.3377,1.6336,0.396,3.6197,2.4744,40.919,15.2435,224.409,3.9467,4.8776,1.5666,1.946,4.0054,6.9946,2.2647,3.0111,0.86062,7.1021,11.9409,27.1775,7.1302,2.4933,4.602,1.927,19.1111,7.0929,4.1113,1.0477,2.4332,7.3183,14.9175,4.6205,4.2718,3.2136,1.5283,1.6024,4.4685,10.1207,2.9815,2.2733,11.5915,2.2311,2.3456,2.174,11.8704,1.7221,3.7691,1.4349,15.3658,5.1103,8.9715,4.0462,10.483,6.9714,6.9789,7.2254,4.0972,1.3695,4.8516,27,,,0.08573,,,,0.40488,3.8443,3.9571,0.82479,10.6495,1.7905,0.35696,3.479,2.6515,40.9779,15.0903,226.9296,4.0902,5.0217,1.5012,1.7564,3.9918,6.7847,2.0976,3.3759,0.91151,7.0461,11.4592,23.4697,7.9421,2.2504,4.2838,1.8855,19.4435,5.1508,3.7545,1.2125,2.7869,8.4784,14.2573,3.82,4.2732,2.6948,1.4922,1.5958,4.1132,10.7414,2.8206,2.3357,9.7286,2.3281,2.1934,2.0686,13.3956,1.85,3.5759,1.2428,16.0842,5.871,7.384,4.9115,10.4802,6.6149,6.9738,7.6653,3.2341,1.4761,4.6454,,,,,,,,,,,,,,,81,,,
-nG+BRE3T0HC014,1.0532,1.9782,,60-69y,CN,,,16.3958,4.6425,2.1836,1.9574,1.0868,edsd,CN,,M,,0.38328,3.8966,4.0966,0.78381,8.6227,1.373,0.35351,2.7682,2.4731,41.3507,13.4068,206.3478,3.6776,4.2066,1.4866,1.8226,2.9094,6.7637,1.9946,2.9383,0.57025,6.9697,10.1658,15.492,6.6821,2.1257,4.2894,1.5425,16.3033,5.8408,3.5958,1.0559,2.7079,6.1736,12.4727,4.0632,4.2914,3.1365,1.4614,1.4602,3.7834,9.5476,2.8295,2.1325,10.1489,2.3464,2.1999,2.196,12.536,1.9505,3.7694,1.0006,13.1053,4.8268,8.5595,3.3562,9.8113,7.2459,6.5008,7.0965,3.7653,1.4755,4.3977,29,,,0.06742,,,,0.33255,3.209,3.9071,0.75255,8.8384,1.4595,0.36204,2.8293,2.5342,40.8755,12.9916,207.292,3.3183,4.5354,1.4942,1.8156,3.2104,6.6202,1.8475,3.0298,0.57073,6.6568,10.3411,10.2608,7.7523,2.0537,3.9778,1.4493,17.2089,4.8713,3.1417,1.3114,2.7452,7.2709,12.693,3.2247,3.914,3.1572,1.3911,1.4455,3.6401,9.7755,2.6338,2.0154,9.5358,1.8613,1.9431,1.9449,11.9596,1.6188,3.6304,0.97024,12.8768,5.1503,7.1082,4.0794,9.4618,6.7444,6.2423,7.5836,2.9832,1.3501,4.1197,,,,,,,,,,,,,,,67,,,
-nG+BRE3T0HC015,2.3438,2.1882,,70-79y,CN,,,15.4595,4.6412,2.0852,1.8821,1.817,edsd,CN,,M,,0.34796,4.6332,4.5975,0.83178,9.5744,1.5453,0.33923,2.5487,2.1381,33.0167,13.0618,208.4765,3.9289,3.5991,1.6035,2.0518,3.7446,6.7018,2.2699,3.3696,1.3149,6.2781,11.0921,31.6678,6.9034,2.1863,4.6175,1.8131,18.4105,6.0209,4.0771,1.0161,2.6498,6.9618,14.7968,3.8769,3.9235,2.9253,1.2603,1.3821,4.7769,10.6801,3.3962,2.36,10.5872,2.1136,2.1792,2.2788,12.0972,1.9479,3.2616,1.2689,17.1693,4.9509,8.8943,3.1908,10.6438,7.5252,6.9765,7.9047,3.4438,1.5759,4.6199,29,,,0.07639,,,,0.32585,4.2214,4.1263,0.84531,9.655,1.8044,0.35564,2.5054,2.4055,33.5806,12.669,212.9734,3.4617,4.456,1.6422,1.9403,3.8539,7.0639,2.0611,3.6263,1.3331,6.1465,11.8204,28.2264,7.2462,2.2463,4.5711,1.7877,19.3515,5.2137,3.7541,1.2128,2.663,7.7075,15.1456,3.0666,3.823,3.0386,1.5788,1.4013,4.4721,10.7557,3.1315,2.3829,9.3134,1.8566,2.1059,2.1627,12.4481,1.8902,3.2112,1.2626,15.3682,5.1692,8.0461,4.3171,10.1293,7.3433,6.8127,8.6143,3.6354,1.492,4.3788,,,,,,,,,,,,,,,78,,,
-nG+BRE3T0HC016,0.95234,2.013,,60-69y,CN,,,21.0547,5.3227,2.8837,2.4395,1.0269,edsd,CN,,M,,0.46189,5.5783,4.5444,0.97424,9.6062,1.7542,0.43993,2.4821,2.818,50.6327,17.272,250.5173,4.3736,4.0075,1.953,2.0682,3.9049,7.7927,2.2249,3.3501,0.50571,6.3223,11.7473,8.6117,6.7788,2.593,5.3642,2.1806,20.6388,7.1588,4.2149,1.4687,2.8764,8.0353,14.2003,3.2269,4.2086,3.5056,1.6617,1.7807,4.4619,10.3925,3.4671,2.278,11.767,2.1463,2.7234,2.3188,13.9825,2.0775,4.2219,1.2389,15.2985,5.6492,8.4355,3.3648,10.2256,7.5026,8.1584,9.2077,3.7557,1.5023,5.5023,30,,,0.08824,,,,0.37835,4.8283,4.3388,0.94447,11.2043,1.8182,0.39698,2.9195,2.7492,51.132,16.8057,252.4425,3.8627,4.8828,1.8764,2.1947,3.9367,8.0767,2.0694,3.5761,0.43769,7.0352,12.0698,7.1348,8.1568,2.2448,5.1542,1.9062,20.9626,5.8192,3.8381,0.8944,2.3747,8.3169,14.7733,3.4225,4.5378,3.6965,1.6373,1.7202,4.3186,11.5144,3.2514,2.458,9.3549,1.9329,2.2728,2.1508,11.673,1.7676,4.0092,1.1878,15.9956,5.8484,7.8423,4.1559,10.7547,7.9658,7.8667,8.4564,3.8231,1.3216,5.139,,,,,,,,,,,,,,,66,,,
-nG+BRE3T0HC017,1.7106,1.8055,,60-69y,CN,,,16.9774,4.8744,2.5172,2.3209,1.6673,edsd,CN,,M,,0.43644,4.9895,4.3722,0.94771,8.3617,1.7823,0.38429,3.5173,2.86,46.8828,16.1998,252.8866,4.8046,4.7596,1.7971,2.0677,4.0108,7.2873,2.3284,3.7705,0.84311,6.1905,11.1868,20.6057,7.5458,2.6168,5.2196,1.9384,23.3141,5.6886,4.4401,1.2297,2.7011,8.1543,13.7819,3.7682,4.1868,3.6147,1.5939,1.5897,4.479,11.6249,3.3059,2.5628,12.15,2.9222,2.6401,2.7196,13.2148,2.3435,3.8966,1.2697,17.7676,6.5596,9.3438,3.6894,12.624,7.6224,7.0209,8.0899,3.787,1.8674,4.8757,30,,,0.08029,,,,0.39648,4.7493,4.2179,0.93709,10.1476,2.0206,0.38339,4.093,2.6948,46.7564,15.3503,251.9128,4.3436,5.7872,1.7722,2.1033,4.3478,7.4213,2.3169,3.7728,0.94962,6.4488,12.0599,16.5462,8.211,2.5698,5.4889,1.9128,23.2146,5.0552,4.1808,1.2881,2.951,8.2778,14.0658,3.2392,4.0415,3.5302,1.7251,1.6059,3.9081,11.262,3.1552,2.5208,9.7599,2.5829,2.4929,2.3438,13.4291,2.0988,3.8911,1.2756,16.3566,6.3587,7.3627,4.5013,10.3841,7.4,6.6726,8.6274,3.9793,1.5923,4.589,,,,,,,,,,,,,,,68,,,
-nG+BRE3T0HC018,0.75255,1.2525,,60-69y,CN,,,12.5951,3.9856,1.4796,1.9054,0.85913,edsd,CN,,F,,0.43187,4.1727,4.2191,0.81121,9.9207,1.6524,0.35605,2.999,3.0716,18.9006,8.9953,221.6688,3.7308,4.9089,1.5094,2.1023,3.4571,6.303,2.0739,3.1466,0.38107,7.4757,10.0482,7.6682,6.4974,2.5812,4.0677,1.771,19.245,6.6156,4.1119,0.93862,2.1511,6.4163,13.6802,4.3637,4.2594,3.5831,1.7375,1.4276,4.4635,10.429,2.832,2.1526,10.4789,2.4255,2.6219,2.1527,12.1891,2.1538,3.4941,1.0522,14.8242,4.9899,10.095,4.5227,11.6839,7.8687,6.6266,7.1796,4.3993,1.5485,4.1776,28,,,0.06965,,,,0.40629,3.8292,4.1806,0.80756,10.3199,1.7919,0.36577,3.2555,3.1972,22.5067,10.0802,221.5317,3.7695,5.0607,1.466,2.0185,3.8675,6.6402,2.1813,3.3722,0.40818,7.7992,11.1523,5.9624,7.3862,2.415,4.3037,1.7839,19.346,6.1579,4.0524,0.96212,2.2434,7.1759,14.6495,3.9516,4.2119,3.5548,1.7302,1.4407,4.3285,11.3098,2.6563,2.1732,9.7535,2.1185,2.5499,2.0533,12.4119,1.9052,3.4974,1.054,15.0113,5.0969,8.1137,5.1129,10.9764,7.3333,6.3437,7.544,3.6254,1.4878,3.9093,,,,,,,,,,,,,,,68,,,
-nG+FRA3T0AD001,1.5742,0.86416,,+80y,AD,,,10.4775,4.7754,0.01307,0.88859,2.0996,edsd,AD,,M,,0.30794,3.9099,3.7795,0.55437,7.7738,1.5195,0.32475,2.76,2.3544,8.5017,2.9582,163.5753,3.5089,3.7148,1.071,1.7426,3.037,5.9789,1.9282,2.3474,1.3233,4.5324,8.2972,28.8535,6.1042,2.3,3.9178,1.4548,14.9308,5.7279,3.6918,1.0146,2.2434,5.9768,10.6925,2.5053,2.3413,3.0227,1.4323,1.2199,3.6676,9.2035,2.7255,2.0626,9.8218,2.0021,2.2464,1.9119,8.8425,1.5971,3.0473,1.1784,13.0945,4.4892,7.378,3.0052,9.055,5.5948,5.5956,5.8408,3.2833,1.3837,4.0073,26,,AD,0.08637,,,,0.28531,3.6304,3.6922,0.53273,8.6533,1.433,0.31885,2.714,2.6936,7.8188,2.8026,167.5756,3.507,3.8261,1.0283,1.7569,3.1681,5.9903,1.7916,2.4134,0.99284,5.1333,8.5353,25.4195,6.5468,1.7777,3.8307,1.3545,15.6573,4.6078,3.2923,0.89653,2.1363,6.5032,10.144,2.3876,2.5461,2.8152,1.2066,1.2247,3.4873,9.4528,2.3932,2.035,8.8464,1.9497,1.9076,1.8059,9.8279,1.6038,2.9937,1.0715,13.2221,4.6055,6.5966,3.4776,9.6784,5.4796,5.3636,5.4577,2.7704,1.2763,3.7752,,,,,,,,,,,,,,,84,,,
-nG+FRA3T0AD002,1.8949,1.2451,,70-79y,AD,,,17.8283,4.4952,2.3041,1.928,2.1695,edsd,AD,,F,,0.39098,4.993,4.2913,0.59853,9.5056,1.6651,0.37002,3.6314,2.7181,43.4585,13.2435,188.3036,4.2508,4.9829,1.2384,2.1908,3.6769,6.6305,2.4275,2.5657,0.8374,6.1329,10.2432,20.5641,7.4427,2.6274,4.6176,1.9798,19.7907,6.0172,4.3252,0.88625,2.448,7.9473,13.2848,4.0563,4.2771,3.5344,1.6018,1.4615,4.2202,10.7339,2.9822,2.5088,10.5547,2.3713,2.4903,2.3484,12.4066,2.4575,3.2644,1.3794,15.0048,5.7904,9.1099,3.7598,11.0553,7.0766,6.438,7.0574,4.3634,1.9146,4.4872,12,,AD,0.10203,,,,0.35875,4.2583,4.0912,0.64699,10.0875,1.8139,0.36817,3.6533,3.0485,42.383,12.8078,193.2219,4.3688,5.3581,1.3409,2.088,4.3706,6.767,2.2509,2.6387,0.90872,6.7589,10.7519,24.2377,7.7846,2.3834,4.6501,2.0714,19.3203,5.4367,3.9067,0.9041,2.4737,8.988,13.2145,3.3182,4.1078,3.7478,1.6667,1.4831,3.6144,11.2412,2.6608,2.5789,9.5763,2.4047,2.3984,2.2937,11.7135,2.2014,3.1852,1.253,14.6511,5.7812,6.923,4.6325,10.7106,7.3514,6.1138,7.2185,4.0428,1.8464,4.3567,,,,,,,,,,,,,,,76,,,
-nG+FRA3T0AD003,1.1814,1.3358,,+80y,AD,,,17.8487,4.7338,2.6363,2.1428,1.2419,edsd,AD,,F,,0.41475,4.4339,4.4443,0.7832,7.8755,1.5991,0.39142,3.4855,2.841,46.3476,13.739,200.7235,4.2908,4.0775,1.431,2.1162,3.6728,5.8516,2.3927,2.7458,0.74287,5.5408,9.3713,17.7403,7.1973,2.5062,4.4137,1.8448,18.4826,5.1979,4.2215,1.0821,2.4684,6.858,11.3677,3.1951,3.7857,3.1331,1.6331,1.4822,3.9228,9.925,2.8589,2.3392,11.1918,2.4538,2.4352,2.2743,12.8857,2.2187,3.53,1.3468,14.4115,5.2739,7.7036,3.4322,10.1047,6.4001,6.8634,7.066,4.4614,1.672,4.5385,18,,AD,0.08927,,,,0.38358,3.9559,4.0025,0.74739,8.484,1.8676,0.37594,3.2507,2.9543,45.7299,13.6561,201.9419,4.0193,4.8153,1.4113,1.9447,3.6966,6.1101,2.3192,2.8399,0.60754,6.1666,9.3731,15.0453,7.5329,2.3675,4.3975,1.815,18.4645,5.233,4.2036,1.0043,2.4901,7.4214,11.2089,2.8584,3.7584,3.6679,1.6253,1.4692,3.3773,9.5582,2.6206,2.1868,9.3905,2.0186,2.2717,1.9614,12.3509,1.6691,3.4885,1.2947,14.1941,5.1235,6.7591,4.7014,9.4371,6.1758,6.376,6.9474,3.69,1.4436,4.2758,,,,,,,,,,,,,,,82,,,
-nG+FRA3T0AD004,1.2434,1.7805,,70-79y,AD,,,18.7678,4.7909,2.5305,2.3544,1.4638,edsd,AD,,F,,0.36125,3.4753,3.6699,0.61856,7.0113,1.3791,0.32078,2.7897,2.5641,45.253,13.873,196.515,3.3553,3.6086,1.239,1.7952,3.023,5.8543,1.8904,2.5816,0.76297,4.9142,8.5717,14.9908,6.4476,2.0723,3.8107,1.4147,13.8636,4.7552,3.5511,0.9423,2.1599,5.5465,10.7235,2.6098,3.4649,2.4859,1.2018,1.4831,3.5086,8.9534,2.7706,1.8798,10.0487,1.9104,2.0224,2.004,10.4338,1.7443,3.187,1.0351,11.9997,4.2257,7.0627,2.6359,8.0135,6.358,6.7115,6.576,3.1253,1.3482,4.6407,15,,AD,0.08474,,,,0.31747,3.1277,3.5491,0.67783,8.7165,1.4615,0.3392,2.9315,2.6213,44.5434,13.5526,205.4396,3.5078,3.8457,1.3214,1.7559,3.3566,6.2261,1.8239,2.9506,0.60552,5.1878,9.3723,13.7106,6.7667,1.845,3.8785,1.4951,14.4447,3.8872,3.2927,0.88722,2.1518,6.2184,11.259,2.391,3.5942,2.8627,1.2154,1.5196,3.2253,8.9813,2.4547,2.0348,8.8773,1.8115,1.7935,1.8635,10.0704,1.6134,3.2527,1.0084,11.5255,4.5284,7.1713,3.2913,8.6694,6.5646,6.5223,6.8277,2.8756,1.3581,4.5013,,,,,,,,,,,,,,,70,,,
-nG+FRA3T0AD005,1.9257,2.0425,,+80y,AD,,,17.8724,4.7947,2.8095,2.2729,1.903,edsd,AD,,F,,0.37955,4.0531,4.2701,0.81498,7.974,1.3823,0.37008,2.8997,3.0305,49.9325,14.5866,191.6235,3.7912,4.2499,1.5458,1.9079,3.0604,7.0828,2.1179,3.0923,1.3508,6.342,10.7932,28.2322,7.4574,2.2506,4.597,1.6848,17.557,5.3342,3.8912,1.1988,2.5142,6.22,11.94,2.98,4.3265,2.9289,1.4402,1.5307,4.3027,10.294,3.1213,2.156,11.3304,2.3005,2.5279,2.1582,11.6061,1.9411,2.9568,1.2057,14.177,5.1488,8.7963,3.2833,9.1995,6.7032,6.5537,7.1051,3.2693,1.3876,4.5189,21,,AD,0.08239,,,,0.38217,3.4662,4.3523,0.83226,9.9299,1.7531,0.39096,2.8765,3.1769,48.1232,14.3962,200.6661,3.6022,3.9357,1.6092,2.1043,3.6539,7.2951,2.1047,3.3786,0.80317,6.8318,11.4342,22.5276,7.5602,2.4243,4.5022,1.7617,17.5262,5.027,3.8459,1.1324,2.5778,7.1327,14.0727,2.6968,4.0513,3.1209,1.7912,1.5691,4.0596,9.7225,2.9279,2.3259,9.6887,1.874,2.5605,2.1568,11.5372,1.7086,3.2185,1.2115,14.4163,4.9472,8.2169,3.6415,9.3873,7.9654,6.6487,8.1322,3.4761,1.3983,4.3418,,,,,,,,,,,,,,,82,,,
-nG+FRA3T0AD006,0.84179,1.4228,,60-69y,AD,,,18.6779,4.9392,2.6288,2.2895,1.1321,edsd,AD,,M,,0.4675,4.7587,4.2539,0.76414,8.9469,1.6403,0.38456,3.144,2.7731,45.9081,14.4878,203.3802,4.2542,4.5803,1.4774,1.918,3.5902,6.8662,2.148,2.8124,0.27558,6.4095,10.6973,10.0691,7.536,2.3765,4.9652,1.8136,19.7152,5.7798,4.1983,1.3061,3.0738,7.0344,12.7951,3.4573,4.2296,3.442,1.4691,1.6093,3.8132,9.4168,2.8998,2.4319,12.3052,2.2906,2.5278,2.2966,13.0547,1.8701,4.111,1.1685,15.6348,5.4263,9.5465,3.4117,10.4568,7.0463,7.072,7.3155,3.7596,1.4614,4.8599,18,,AD,0.07985,,,,0.39556,4.2012,4.0554,0.73258,10.2318,2.0195,0.38373,3.4156,2.8479,46.7108,14.5606,208.0855,3.6865,4.6403,1.4992,2.0368,4.0231,7.3114,2.1634,2.971,0.32887,7.3511,10.9624,8.0156,7.8024,2.4574,4.6942,1.7396,19.6234,5.7094,4.1906,1.1706,2.946,8.0908,13.3708,3.238,4.3103,3.7507,1.6043,1.5525,3.6314,9.5597,2.7887,2.2741,11.1598,2.0239,2.4833,1.8818,14.0005,1.6347,3.9886,1.0894,15.1279,5.7917,8.4644,3.9609,9.8361,7.0951,6.9572,7.3187,3.723,1.2774,4.6207,,,,,,,,,,,,,,,63,,,
-nG+FRA3T0AD007,1.1864,1.7443,,50-59y,AD,,,17.5238,4.5837,2.8725,2.1447,1.4806,edsd,AD,,F,,0.37281,4.2174,3.8636,0.764,7.7556,1.3901,0.36673,3.4654,2.5066,47.8809,14.685,178.1077,4.0701,4.4391,1.4503,1.7162,3.4666,6.5809,2.1961,2.8264,0.39771,5.3991,9.5007,22.1922,7.5794,2.2288,4.4356,1.7426,15.6098,5.4552,3.8534,1.2595,2.9515,6.717,11.2573,3.6427,3.8862,2.8947,1.3935,1.4068,3.6918,9.1856,2.9583,2.0168,11.1038,2.1941,2.2353,1.965,12.2439,1.8518,3.2011,1.2275,15.1234,4.9993,7.6971,3.8121,8.4851,6.7381,6.8109,6.7322,3.4373,1.4517,4.3655,16,,AD,0.07148,,,,0.35998,3.8518,4.0357,0.79506,9.0777,1.7559,0.37288,3.2514,2.7088,47.735,14.3963,191.9093,3.9783,4.7749,1.5598,2.168,3.8571,7.0709,2.2451,3.1279,0.57306,5.9288,10.4764,12.513,8.0228,2.4533,4.2759,1.8236,16.3896,5.1082,3.7934,0.88883,2.467,7.7289,12.8947,3.3381,4.0314,3.4637,1.8234,1.3875,3.509,9.3592,2.9241,2.125,10.5834,2.2739,2.3767,1.9273,12.5355,2.0045,3.2994,1.1997,14.878,4.9458,7.9335,4.3785,8.8843,7.3442,6.718,7.5888,3.7943,1.521,4.1478,,,,,,,,,,,,,,,57,,,
-nG+FRA3T0AD008,1.3249,1.6554,,60-69y,AD,,,18.5066,4.7616,2.7071,2.1884,1.3046,edsd,AD,,F,,0.36831,4.0071,3.8667,0.73163,7.639,1.4587,0.34728,2.7771,2.4509,44.7829,14.8868,186.1223,3.4424,4.107,1.4084,1.819,3.096,5.9897,1.9202,2.9636,0.65416,5.6047,9.3001,15.3654,6.3868,2.4098,4.325,1.5313,17.1374,5.4916,3.7363,1.0018,2.3324,5.7123,12.2537,3.1364,3.7275,3.1135,1.5183,1.5218,3.6396,8.8792,2.9276,2.0745,11.4776,1.9606,2.3548,1.9945,11.5259,1.4896,3.4084,1.1468,11.0698,4.6149,7.9897,2.9499,9.4147,6.0979,6.9254,6.7399,4.0968,1.2987,4.6997,23,,AD,0.07896,,,,0.34508,3.6366,3.8268,0.76775,9.1329,1.6668,0.36559,3.0144,2.6297,45.2867,14.843,202.0779,3.7748,4.0919,1.4526,1.8441,3.6023,6.4935,1.9583,3.2164,0.49829,6.6504,10.7082,11.8547,7.1534,2.1604,4.2587,1.5742,18.2829,4.7603,3.6681,1.0275,2.3434,6.6975,13.687,2.9051,3.7753,2.73,1.4436,1.5202,3.5177,8.9288,2.7734,2.1622,10.5362,1.9666,2.254,1.8414,11.9169,1.6444,3.4342,1.1782,13.0409,5.0806,6.9975,4.0972,9.8602,6.8921,6.8266,7.1565,3.2925,1.3288,4.5123,,,,,,,,,,,,,,,60,,,
-nG+FRA3T0AD009,2.6191,2.4571,,+80y,AD,,,18.2564,5.0567,2.7464,2.3305,1.9943,edsd,AD,,M,,0.36957,4.5166,4.3508,0.72388,9.4377,1.3813,0.38156,3.8162,2.8188,46.9867,14.3546,168.0025,4.0026,5.4373,1.5799,1.9192,3.292,6.8239,1.8768,3.0802,1.4657,6.9482,10.7906,28.4876,8.3281,2.2539,4.3733,1.5482,16.9671,6.4362,3.5828,1.3535,2.6677,6.5605,12.909,4.2916,4.4946,3.0803,1.4926,1.4598,4.4787,10.9135,3.2955,2.5533,12.0117,2.1829,2.3788,2.4406,11.1711,1.8896,3.7478,1.2447,12.462,4.8952,9.5642,3.9398,11.6252,7.014,6.5162,7.423,3.4383,1.659,4.6351,17,,AD,0.08896,,,,0.33007,4.0312,4.0442,0.81285,9.5111,1.6226,0.3793,3.676,3.1161,49.1382,14.2143,177.9895,3.8832,5.3723,1.6944,1.9493,3.7108,7.2356,1.7907,3.4166,1.4088,7.1322,11.2191,24.6327,8.7636,2.1371,4.4383,1.4812,16.9,5.705,3.4976,1.0517,2.145,7.2823,13.4418,3.5262,4.7616,3.4362,1.447,1.2369,4.0904,10.3831,3.1953,2.5153,10.8533,2.2714,2.2898,2.226,10.4972,1.9634,3.3088,1.1613,13.2144,4.8107,8.1119,4.958,10.0449,7.1842,5.6649,8.145,3.3574,1.6489,4.1711,,,,,,,,,,,,,,,83,,,
-nG+FRA3T0AD010,1.6733,2.1439,,+80y,AD,,,16.2793,4.5122,2.2317,2.1195,1.7253,edsd,AD,,F,,0.29738,3.6683,3.1001,0.50331,6.643,1.2982,0.30289,2.5089,2.1702,40.1862,12.2415,162.6556,3.4535,3.349,1.0768,1.5355,2.8575,5.2277,1.7297,2.0491,1.4008,4.6349,7.7991,17.1104,6.0476,2.0383,3.7073,1.3406,14.4036,4.1832,3.3296,0.81513,2.04,5.9385,9.4766,2.5727,3.5527,2.6854,1.2763,1.2703,3.282,7.8937,2.4806,1.9054,9.1597,1.8917,2.137,1.9636,10.7286,1.7051,2.6696,1.0497,10.2517,4.1389,6.5015,2.5571,7.6989,5.2566,5.6543,5.7466,2.9441,1.3481,4.0854,4,,AD,0.07357,,,,0.27846,3.374,3.1002,0.52431,7.9793,1.5405,0.2964,2.6871,2.3103,41.1694,12.1718,169.8396,3.175,3.2424,1.1072,1.7167,3.1704,6.0359,1.8505,2.239,1.4633,4.974,8.6786,14.918,7.1085,2.0766,3.5392,1.4358,14.7917,4.149,3.598,0.77061,1.8683,6.5984,10.0789,2.5506,3.587,3.166,1.2794,1.3722,3.1789,7.7055,2.3909,1.8084,7.8137,1.6795,1.9698,1.6847,9.7583,1.456,2.6449,1.0483,10.046,4.0735,5.4248,3.4065,7.3466,5.9552,5.6305,6.3104,2.9562,1.1692,3.916,,,,,,,,,,,,,,,81,,,
-nG+FRA3T0AD011,1.2087,1.4841,,-50y,AD,,,15.3715,4.4555,2.3454,2.1242,1.1023,edsd,AD,,F,,0.35337,4.5893,3.7307,0.83746,8.6436,1.5125,0.32989,2.9999,2.224,41.159,12.6969,182.7135,3.5149,4.7694,1.6527,1.7798,3.359,6.7266,2.1695,2.6776,0.33279,5.5447,10.716,9.075,7.101,2.2657,4.4226,1.7994,16.8676,5.5906,3.919,0.96828,2.3114,6.9068,12.0194,2.892,3.7316,2.8433,1.3667,1.3372,3.7849,9.3087,3.1042,2.016,10.3553,1.8935,2.2325,2.043,11.2192,1.533,2.9525,1.1222,13.0121,5.694,7.5996,2.9737,9.3499,5.7575,6.3793,7.4577,3.3617,1.2893,4.1275,24,,AD,0.07686,,,,0.32915,4.133,3.7458,0.83213,8.2447,1.7654,0.33409,2.8362,2.3358,41.6372,12.8206,187.5946,3.4588,4.6492,1.6396,1.9104,3.5147,7.0202,2.0818,2.945,0.35824,6.1011,10.6336,7.9119,7.6111,2.0758,4.5815,1.784,16.2846,4.8904,3.7335,0.91077,2.1051,7.4352,11.7785,2.7556,4.0318,2.666,1.4292,1.3407,3.5786,9.5312,2.8883,2.0427,9.279,1.9819,2.1194,1.9967,11.3285,1.5641,2.9483,1.0551,13.6519,5.3286,7.202,4.0865,8.5685,5.8814,6.2277,7.3106,3.1974,1.457,3.8742,,,,,,,,,,,,,,,42,,,
-nG+FRA3T0AD012,1.9017,1.7396,,70-79y,AD,,,18.7723,5.0892,2.7436,2.2369,2.9852,edsd,AD,,F,,0.40726,4.8192,4.4386,0.69368,8.0967,1.6658,0.36577,3.2162,3.0891,44.0063,14.0666,226.1267,3.6923,4.4391,1.2756,1.9836,4.099,6.7015,2.1136,2.6663,1.4858,6.0086,10.2159,37.077,7.3568,2.2284,4.2474,1.9126,18.3019,5.7989,3.9945,1.228,2.4514,7.366,12.213,3.9171,4.1242,3.3633,1.3639,1.5505,4.313,9.7247,2.8084,2.3494,11.5521,2.1129,2.1804,2.1983,11.5614,1.7911,3.6411,1.2195,14.5561,5.3514,7.9271,4.138,10.3502,6.522,6.9044,7.1399,3.713,1.5708,4.8818,20,,AD,0.09186,,,,0.36445,4.5016,4.3175,0.64944,9.8967,1.7572,0.36187,3.1995,3.2805,43.6868,14.0223,231.4132,3.8898,3.924,1.2354,2.1043,4.2184,6.3707,2.0996,2.7652,1.6576,6.7724,10.3651,35.4185,7.6204,2.0878,4.2555,1.8834,19.1215,5.1663,3.7301,1.0214,2.5091,8.5188,13.5027,3.1843,3.9848,3.0687,1.4205,1.5855,3.6767,9.1945,2.5224,2.2576,9.654,1.8914,2.0643,1.9298,12.0314,1.568,3.5593,1.1871,14.6309,5.6451,7.4083,3.9021,10.2397,6.5345,6.5881,7.057,3.4745,1.2913,4.6091,,,,,,,,,,,,,,,70,,,
-nG+FRA3T0AD013,1.9976,2.1503,,70-79y,AD,,,20.4912,5.4377,2.8718,2.4872,1.7619,edsd,AD,,M,,0.41321,4.5046,4.7265,0.844,8.6029,1.612,0.41278,3.1602,3.1512,50.9913,15.3233,213.7234,4.3879,4.3212,1.5439,2.1685,3.4707,7.5475,2.3589,3.2768,0.87269,6.9652,11.079,24.3171,7.4882,2.5305,4.8052,1.8187,16.8625,5.6361,4.4564,1.0912,2.5913,6.6877,14.5989,3.6547,4.8561,3.6564,1.5378,1.5332,4.6571,11.75,3.3717,2.5805,12.0075,2.497,2.6664,2.4695,13.3605,1.9438,3.7987,1.3802,13.5868,5.1668,8.9841,3.3474,11.0679,7.1802,7.8167,7.2509,4.3416,1.6201,4.8669,22,,AD,0.07252,,,,0.40465,4.3114,4.9269,0.86716,9.9077,1.954,0.39996,3.4724,3.2654,50.8088,15.2087,216.4777,4.2748,5.1278,1.6571,2.1498,3.9507,7.894,2.2824,3.3612,0.70921,6.3994,11.5046,21.2596,8.4174,2.6582,4.7472,1.7901,18.9174,5.0615,4.2999,0.97834,2.406,7.7374,13.918,2.9953,4.5219,3.7331,1.9195,1.5748,4.0838,11.2044,3.144,2.4717,10.3656,1.8926,2.6815,2.1285,11.8669,1.6779,3.7968,1.3078,13.8576,5.0951,8.3254,4.8341,11.1648,7.1236,7.2128,7.8609,4.3022,1.3729,4.7216,,,,,,,,,,,,,,,74,,,
-nG+FRA3T0AD014,1.3381,1.8403,,60-69y,AD,,,17.4303,4.0177,2.4605,2.3143,1.2391,edsd,AD,,F,,0.36188,4.239,3.7464,0.79791,7.6751,1.4833,0.35284,2.4872,2.448,47.8282,13.7333,176.2179,3.701,4.2103,1.5264,1.9031,3.1183,7.1181,2.0663,2.8738,0.83932,5.4665,11.0215,11.6998,7.1759,2.2672,4.4005,1.6391,17.3382,5.0155,3.8273,1.0918,2.5262,6.397,13.0084,2.6606,4.0075,3.4872,1.357,1.2974,3.7409,9.6203,3.1821,2.0181,10.3869,2.1774,2.3149,2.1223,10.7317,1.768,3.1336,1.2068,13.1121,5.0354,7.9938,3.2476,9.233,7.1332,6.3208,7.4622,3.7842,1.4548,4.4036,24,,AD,0.08828,,,,0.32403,3.753,3.7837,0.72891,8.84,1.6751,0.34531,2.5623,2.3838,48.0936,13.6201,178.6,3.4372,4.2242,1.428,1.7289,3.2689,7.2513,1.9686,2.8578,0.81467,5.6941,11.4824,11.83,7.5305,2.2316,4.4887,1.622,16.898,4.2296,3.6399,0.90211,2.3193,6.9498,14.0951,2.4467,4.0727,3.3103,1.4678,1.2905,3.405,9.4002,2.7602,2.0109,9.3074,1.9371,2.4304,1.8662,10.4116,1.7175,2.9851,1.0885,13.8663,4.8465,7.3672,3.4917,8.6712,7.3181,5.9675,7.8397,3.2533,1.4017,4.1745,,,,,,,,,,,,,,,68,,,
-nG+FRA3T0AD015,1.6893,1.4877,,70-79y,AD,,,16.2942,3.9997,2.1023,1.7952,1.7563,edsd,AD,,F,,0.3447,3.7673,3.7157,0.75437,7.1597,1.2021,0.35437,2.6393,2.17,37.8778,12.532,171.0676,3.468,4.021,1.4039,1.4596,2.8161,6.5727,1.748,2.8871,0.62636,5.6992,9.8519,16.8017,6.3769,1.8236,3.9912,1.391,15.3404,5.3329,3.3457,0.90098,1.9437,5.3863,10.5233,2.9214,3.8377,2.4859,1.095,1.2209,3.4843,8.2426,3.0236,2.0798,9.5329,2.0783,2.1661,2.1041,9.7869,1.6764,2.726,1.1387,10.9959,4.1712,7.0643,2.5859,8.6697,6.0329,5.4137,6.3351,2.8671,1.4742,4.1222,26,,AD,0.09045,,,,0.30776,3.7732,3.3778,0.74098,8.2861,1.4232,0.35774,3.0433,2.2307,37.6783,12.6679,176.0942,3.0001,4.5105,1.4652,1.4502,3.0474,6.6938,1.7257,3.0429,0.55733,5.9747,10.4471,15.7665,6.9459,1.7141,3.7918,1.4172,15.3894,4.272,3.2402,0.89621,2.0449,6.1474,12.1516,2.6173,3.7986,2.5538,1.031,1.2018,3.133,8.3131,2.8178,2.0607,8.2392,1.5943,1.9813,1.8371,10.0125,1.4816,2.6102,1.0735,10.918,4.4146,5.9932,3.6442,7.1767,6.6898,5.0212,6.8173,2.6693,1.2205,3.8491,,,,,,,,,,,,,,,74,,,
-nG+FRA3T0AD016,1.9503,1.6315,,50-59y,AD,,,17.4876,4.184,2.4456,2.0322,1.7585,edsd,AD,,F,,0.39595,4.4928,4.3307,0.68886,7.2396,1.5665,0.35027,3.8733,2.7872,44.287,13.7074,208.9042,3.6637,4.612,1.3399,1.9938,3.7043,6.5236,2.0515,2.7239,1.1837,5.6647,9.542,30.4423,7.4715,2.5044,4.1199,1.7076,17.2443,5.0582,3.9639,1.0718,2.4783,7.1206,10.4941,3.6812,3.9225,3.3582,1.5529,1.6259,3.4752,8.656,2.8487,2.4479,10.9801,2.008,2.3079,2.2782,12.094,1.9435,3.4661,1.2017,13.303,5.2349,7.7904,3.8482,9.1201,5.9119,7.3421,6.6926,4.2425,1.6609,4.8619,8,,AD,0.09669,,,,0.3587,4.2473,4.3829,0.65043,7.7391,1.7313,0.35188,3.4087,2.987,44.5851,13.5453,209.5752,3.4638,4.6551,1.2911,2.0685,3.8561,6.5531,2.0307,2.8017,1.5235,6.2322,9.3071,26.0293,7.3975,2.359,4.0506,1.7235,17.284,4.5705,3.6926,0.98132,2.4536,7.3403,10.2872,2.9425,4.0248,3.5646,1.6254,1.6206,3.1812,8.4179,2.5279,2.5552,9.3957,1.9324,2.1004,2.1412,11.3694,1.5779,3.4499,1.1297,13.344,4.8591,6.0292,4.1539,8.3438,5.7178,6.8938,6.9438,3.9717,1.3417,4.6057,,,,,,,,,,,,,,,57,,,
-nG+FRA3T0HC001,2.1132,1.9681,,60-69y,CN,,,20.4893,5.3326,2.7782,2.245,2.2262,edsd,CN,,M,,0.52506,5.1581,5.1481,1.1002,10.0604,1.748,0.47356,5.3609,3.5903,51.6314,15.5338,276.5258,4.4032,5.3388,1.9971,2.1393,4.3146,8.5935,2.5662,3.8846,0.6361,8.9127,12.7368,22.3935,9.5624,2.6402,5.5615,2.0628,20.5271,7.2785,4.6246,1.3386,3.0938,8.0969,15.2108,4.9376,5.784,3.6049,1.5735,1.7696,5.5126,12.082,3.9265,3.1971,11.405,3.0595,2.8383,3.3079,13.7474,2.8636,4.7365,1.4924,16.1344,6.0188,9.7647,3.8709,9.5201,9.1853,9.0064,9.1223,4.4044,2.5225,5.7108,28,,,0.10665,,,,0.4732,4.7617,4.7838,1.1379,11.7556,1.9503,0.48151,5.0955,3.8635,52.467,15.5148,284.0418,4.7858,5.917,2.0749,2.0709,4.4508,8.6704,2.4802,4.14,0.68332,8.3795,13.7261,23.08,9.7767,2.4969,5.3636,2.0591,21.2222,5.9286,4.3857,1.1923,3.018,9.0757,16.1292,3.7915,4.98,3.5138,1.7436,1.8269,4.6583,12.5596,3.4242,3.2245,11.3381,2.8213,2.6649,2.9434,14.0228,2.6404,4.7141,1.4588,15.1314,5.8192,8.6646,4.6761,10.8951,8.8789,8.4121,9.4681,4.1276,2.2885,5.3825,,,,,,,,,,,,,,,67,,,
-nG+FRA3T0HC002,1.6363,1.6911,,70-79y,CN,,,17.1183,4.3842,2.7688,2.236,1.2497,edsd,CN,,M,,0.53429,5.6897,4.4546,0.94756,10.2165,1.8907,0.45814,3.3525,3.3032,47.8952,13.6731,224.0768,4.0338,5.4337,1.8669,2.1407,4.036,7.887,2.4946,3.4613,0.42444,7.8866,12.3988,13.599,8.1047,2.9092,5.44,2.3946,21.9812,6.7797,4.7621,1.542,3.056,8.5192,15.5126,4.1582,4.9521,3.8581,1.8436,1.5403,5.2682,12.2125,3.5392,2.2288,11.5214,2.4889,2.9659,2.2369,13.8755,2.0426,3.8377,1.4972,14.6418,6.1272,10.0223,4.3502,10.6501,8.075,8.1197,8.5049,4.8095,1.5647,4.8479,30,,,0.08568,,,,0.46431,5.063,4.2667,0.9569,11.4018,2.3092,0.44342,3.6497,3.3473,47.704,13.3911,231.3293,4.2448,5.35,1.8996,2.2834,4.355,8.1022,2.3976,3.7933,0.53831,7.611,13.5149,11.4171,8.7852,2.739,5.5455,2.1863,21.001,5.6053,4.6467,1.2712,2.8519,9.3424,16.6346,3.5489,4.965,4.2568,1.8759,1.5901,4.7711,11.9513,3.3943,2.2818,10.3739,2.0493,2.7195,2.2111,13.7576,1.8426,3.6044,1.3847,16.4919,6.1193,9.1852,5.1851,10.9754,8.4167,7.7315,9.1299,4.49,1.5081,4.6513,,,,,,,,,,,,,,,71,,,
-nG+FRA3T0HC003,0.95053,1.579,,70-79y,CN,,,17.957,4.6249,2.5288,2.0903,1.2298,edsd,CN,,F,,0.46487,4.4999,4.1215,0.88139,9.1769,1.6284,0.3778,3.0648,3.248,44.8168,13.6165,206.9141,3.786,4.243,1.6892,1.9795,3.6657,7.6027,2.1666,3.107,0.32997,6.1849,10.5925,13.4527,7.0691,2.4862,4.5103,1.8106,18.46,6.771,3.9634,0.99787,2.214,7.1136,12.5885,3.3288,4.1406,3.6286,1.4376,1.6677,3.9812,9.6675,3.1961,2.4382,11.0461,2.0983,2.3237,2.2296,12.5788,1.9069,3.8439,1.1725,15.3711,5.1906,7.8033,3.4955,8.9908,7.3149,7.4816,7.75,4.0024,1.7051,4.7647,30,,,0.07566,,,,0.42851,4.143,3.9905,0.86149,9.879,1.9261,0.37809,2.9798,3.2281,43.8728,13.6405,209.5972,3.8863,4.2648,1.6926,1.9582,3.9158,7.562,2.1738,3.213,0.36068,6.1998,11.4472,11.1323,7.3121,2.332,4.3356,1.7718,19.4533,5.0812,3.884,0.82415,2.0343,7.6256,13.523,2.649,3.927,3.6778,1.5771,1.6529,3.5927,9.7507,2.902,2.4224,9.5323,2.1493,2.3824,1.9649,12.1021,1.8903,3.7019,1.1578,14.4424,5.3059,7.2777,3.6954,9.2834,7.1344,7.202,8.0704,3.6137,1.6034,4.4222,,,,,,,,,,,,,,,74,,,
-nG+FRA3T0HC004,1.9779,1.548,,70-79y,CN,,,18.1118,5.1974,2.5579,2.2385,1.5955,edsd,CN,,F,,0.40791,4.3151,4.8572,0.83459,8.8339,1.528,0.40247,3.4179,3.0724,48.6779,15.1504,197.2042,4.1455,4.6021,1.5657,2.0778,3.522,7.2563,2.0757,3.2196,1.6195,6.362,11.49,35.4198,8.2913,2.4256,4.0685,1.675,18.4001,6.0055,3.9981,1.0258,2.3144,6.1987,15.1053,3.7758,4.2177,2.9677,1.6584,1.5064,4.6273,10.0353,3.4943,2.5069,11.1024,2.275,2.6582,2.4032,12.8509,1.8746,3.5655,1.2961,13.4857,4.5847,7.2811,3.4659,9.3063,7.1874,7.1054,7.923,3.9689,1.7795,4.6688,30,,,0.08959,,,,0.41783,4.1324,4.594,0.91033,9.7225,1.9582,0.44292,3.4265,3.4126,48.8646,14.9187,203.3824,4.185,4.3475,1.7155,2.0395,4.1246,7.1827,2.1301,3.6559,1.0439,7.0621,11.7117,24.6727,8.5329,2.5564,4.3623,1.7351,19.6606,5.6384,4.1426,1.0478,2.4677,7.4436,14.4703,3.4728,4.3736,3.0754,1.6757,1.5391,4.3813,10.6211,3.0398,2.5671,9.0305,2.3147,2.703,2.2326,12.2499,1.9978,3.5275,1.2918,13.0801,4.781,7.504,4.3471,9.0685,7.3692,7.0836,8.1907,3.5851,1.6433,4.5249,,,,,,,,,,,,,,,75,,,
-nG+FRA3T0HC005,1.3139,1.4875,,70-79y,CN,,,17.1079,4.1274,2.4679,2.0434,1.6407,edsd,CN,,F,,0.45716,5.2849,4.7371,0.94991,9.6442,1.7987,0.45008,2.9772,3.6104,44.7038,13.1926,226.2861,4.4052,4.775,1.8276,1.9631,4.2113,7.8381,2.6111,3.4656,0.47239,7.5284,12.2219,20.6963,8.1228,2.9036,5.4811,2.1509,22.7106,7.1033,4.7475,1.1499,2.8305,7.8866,16.1575,4.0413,4.7293,3.5426,1.8138,1.5762,4.7365,11.4892,3.5234,2.5969,10.9396,2.6442,3.0914,2.5274,13.3365,2.0633,3.981,1.3974,19.1718,5.9494,8.9854,3.9205,11.599,8.349,8.1564,8.1597,4.389,1.6827,4.9747,28,,,0.10549,,,,0.46511,4.87,4.7665,0.93811,10.3061,2.2097,0.46748,3.3355,3.9117,44.6183,13.2665,233.3043,4.2875,5.4003,1.9036,2.0658,5.2785,7.7757,2.8108,3.6277,0.43043,7.7853,12.3394,19.7917,8.343,2.8403,5.5306,2.34,22.9942,6.0566,5.0028,1.0876,2.6201,9.4258,16.5637,3.2782,4.5476,3.7191,1.7728,1.6395,4.2346,11.3331,3.218,2.588,10.1299,2.4892,2.9933,2.493,13.1199,2.172,4.0015,1.4417,17.9928,5.9048,7.6392,4.9666,11.3768,8.1598,7.7925,8.9991,3.9384,1.746,4.7493,,,,,,,,,,,,,,,72,,,
-nG+FRA3T0HC006,1.3794,1.9998,,70-79y,CN,,,16.6992,4.8087,2.6814,2.3313,1.6499,edsd,CN,,F,,0.42626,4.7927,4.338,0.86239,9.2355,1.6082,0.41184,2.6916,2.7854,50.411,13.3627,199.762,4.0141,3.9624,1.791,1.9304,3.6374,7.8124,2.2498,3.0119,0.44981,5.8485,11.2932,16.1854,7.4214,2.4876,4.2942,1.9453,18.181,6.1279,4.2551,0.9641,2.4824,7.4276,13.9282,3.06,4.3462,2.9964,1.6281,1.3671,4.2673,10.4832,3.3524,2.2356,9.8837,2.3061,2.7123,2.1077,10.8834,1.9873,3.4285,1.3238,13.2984,5.4629,8.8281,3.1164,10.611,7.437,6.5321,8.0398,3.7462,1.3646,4.3026,29,,,0.0892,,,,0.39757,4.4918,4.2669,0.88136,10.9498,1.828,0.41984,3.0125,2.8717,50.5497,12.9595,209.5672,3.767,4.1802,1.7874,1.8845,3.861,8.289,2.2946,3.1976,0.40751,6.2753,12.1871,13.3926,7.8756,2.297,4.3547,1.8996,17.2067,5.0312,4.0994,0.99977,2.4443,8.0611,14.1504,2.6737,4.2176,3.2923,1.5618,1.3907,4.0065,10.2036,3.0955,2.4675,8.9747,2.0924,2.5053,2.0151,11.478,1.62,3.5074,1.3271,14.4276,5.4061,7.7449,3.508,9.8769,6.8596,6.3221,8.0866,3.4242,1.3658,4.1629,,,,,,,,,,,,,,,71,,,
-nG+FRA3T0HC007,1.8862,1.9084,,70-79y,CN,,,19.2653,4.7194,2.9623,2.2473,1.3765,edsd,CN,,F,,0.44238,4.5134,4.0315,0.82359,8.9329,1.5592,0.38849,3.3004,2.8851,49.1911,15.3178,193.8382,3.4167,4.6986,1.6762,1.8645,3.4043,7.0892,2.2668,3.1218,0.44524,6.3053,10.8432,13.8356,7.2281,2.3401,4.3498,1.8114,18.9638,5.8478,4.1118,0.9117,2.2202,6.6417,13.1896,3.4129,4.1233,3.659,1.345,1.3426,4.3404,10.6747,3.097,2.0953,10.9196,1.8289,2.3806,2.1006,11.8385,1.7338,3.5956,1.2655,13.027,5.243,8.078,3.4559,9.8233,7.1782,7.113,7.9784,3.5219,1.2297,4.7031,29,,,0.08608,,,,0.40957,3.8621,3.8848,0.82799,9.3369,1.8131,0.40256,3.3673,3.0659,48.3012,15.0437,200.671,3.5113,4.7726,1.6892,1.886,3.7113,7.3746,2.1971,3.2932,0.44145,6.5563,11.4184,14.5741,7.9878,2.2737,4.3328,1.8054,19.0404,4.6266,3.9463,0.97807,2.2511,7.7153,13.8714,3.0621,4.203,3.6326,1.4333,1.3961,3.911,10.7119,2.9483,2.0891,9.7397,1.7577,2.2138,1.8433,12.707,1.6013,3.5051,1.2809,13.451,5.2265,7.763,4.2653,9.3057,7.0517,6.8712,7.8439,3.4141,1.1396,4.5012,,,,,,,,,,,,,,,75,,,
-nG+FRA3T0HC008,1.0122,1.759,,50-59y,CN,,,20.2776,4.5484,3.0924,2.4251,0.98803,edsd,CN,,F,,0.54389,5.5892,4.8188,1.0179,10.7841,2.0028,0.45912,2.9988,3.546,55.7769,17.0034,245.919,4.4564,5.172,1.8927,2.1736,4.3341,8.4993,2.6585,3.9457,0.51123,7.4495,12.9207,17.1136,8.4522,3.0911,5.5629,2.2307,23.2876,7.0693,4.9523,1.2433,3.0236,8.0971,16.3302,4.2425,4.9123,3.7082,1.8557,1.7725,4.7456,12.1484,3.5386,2.5772,13.2572,2.4931,3.0828,2.704,14.834,2.1184,4.5662,1.3833,15.8824,5.8355,10.0553,4.8233,11.1593,8.9813,8.5207,9.0765,4.5557,1.6449,5.594,29,,,0.09225,,,,0.49416,4.5916,4.63,1.0112,12.0024,2.3199,0.46999,2.9026,3.5937,56.5683,16.4498,255.4177,4.7028,5.2958,1.948,2.2817,4.4622,8.7955,2.6917,3.9562,0.35911,7.6287,13.6542,8.8972,8.6739,2.7846,5.5418,2.1883,22.9857,6.1008,4.9389,1.2861,2.9956,9.196,17.6853,3.2032,4.8411,4.5249,1.7702,1.8024,4.667,11.9382,3.3891,2.6035,11.1595,2.6032,2.8536,2.3879,14.1394,2.3606,4.5594,1.4563,15.8807,5.6371,9.6912,4.7519,12.0364,9.9739,8.2686,9.7771,4.4615,1.7409,5.3058,,,,,,,,,,,,,,,55,,,
-nG+FRE3T0AD001,1.3569,1.4541,,+80y,AD,,,16.2816,4.4087,2.2728,2.0776,1.5796,edsd,AD,,F,,0.37573,4.44,3.9464,0.70779,9.0757,1.3607,0.34592,3.0209,2.7712,42.5625,13.538,200.344,3.7722,4.0704,1.332,1.7861,3.4422,6.4232,1.977,2.6341,0.65246,5.9482,9.954,21.2815,6.8315,2.1332,4.3926,1.6954,16.3922,5.7666,3.6137,1.1926,2.7371,6.9862,12.5638,3.0741,3.8858,2.9593,1.4269,1.5355,4.0047,9.7373,2.8421,2.2421,11.5958,2.3988,2.2402,2.2385,12.5391,1.8226,3.4035,1.1167,12.9276,5.1173,8.9842,3.6472,10.1939,6.7252,6.6608,6.5269,3.4937,1.5738,4.3867,23,,AD,0.07065,,,,0.34891,3.9597,3.8783,0.75455,8.7598,1.5817,0.36027,3.2457,2.8002,42.8936,13.2933,203.3559,3.8208,4.4357,1.4847,1.9098,3.3854,6.6948,1.7995,2.9715,0.6528,6.3686,10.5139,18.2873,7.7153,2.0189,4.2421,1.615,15.9353,4.5744,3.3523,1.0759,2.4197,7.6216,12.1609,2.6754,3.9359,3.3208,1.4235,1.5593,3.7861,10.0699,2.7173,2.2887,11.0103,2.2136,2.0698,1.9851,12.1095,1.7931,3.4324,1.0843,14.4863,5.1819,7.7824,4.1438,11.0618,6.8175,6.53,6.7108,3.5091,1.4394,4.1826,,,,,,,,,,,,,,,81,,,
-nG+FRE3T0AD002,3.4425,3.8623,,70-79y,AD,,,17.356,4.7028,2.4891,2.036,2.7462,edsd,AD,,F,,0.39382,4.574,4.3491,0.89655,9.2236,1.4703,0.40538,3.7261,3.2433,48.3552,12.8583,215.3137,4.0027,5.0715,1.6223,1.9798,3.2617,7.9761,2.0575,3.6642,1.7961,6.8617,11.5883,42.465,8.0332,2.4183,4.9177,1.7141,19.2203,5.956,3.9773,1.2392,2.6437,6.7709,14.8506,3.4538,4.5282,3.6112,1.5727,1.4918,5.0089,11.4222,3.5478,2.4628,12.4028,2.4206,2.563,2.3694,13.31,2.0979,3.7797,1.274,15.7859,5.4965,9.169,3.7762,11.8119,7.5387,7.2372,7.5986,3.9927,1.6562,4.9283,26,,AD,0.06578,,,,0.35912,4.0209,3.991,0.89501,10.1467,1.7307,0.39964,3.4933,2.9093,48.4185,12.6366,214.4218,3.9403,5.2421,1.5353,1.9529,3.8508,7.6698,1.9857,3.8025,2.1753,6.9397,11.7436,37.355,8.9492,2.184,4.7728,1.7781,19.7636,5.3462,3.8657,1.2995,2.906,7.4036,14.0138,3.0831,4.7305,3.5356,1.4118,1.5338,4.6508,11.967,3.1888,2.3796,12.0861,2.3616,2.3487,2.0678,12.5464,1.9259,3.4455,1.2897,14.6258,5.0638,7.5894,4.4703,12.0503,6.9565,7.4431,7.1298,3.5707,1.5459,4.615,,,,,,,,,,,,,,,72,,,
-nG+FRE3T0AD003,1.7016,2.1094,,60-69y,AD,,,17.5411,4.3606,2.4777,1.9311,1.6899,edsd,AD,,F,,0.47758,4.8934,4.0899,0.73306,8.5464,1.3478,0.3835,3.1543,3.1874,45.438,14.6543,207.1735,3.9203,3.8777,1.5054,1.8075,3.2323,7.177,1.9573,2.8389,0.93272,5.9451,10.1935,23.0199,7.0396,2.1462,4.8665,1.7413,16.5266,5.4893,3.6805,1.3496,2.9639,6.6826,11.6401,3.2421,3.9601,3.2733,1.3588,1.7194,3.9871,9.4352,2.826,2.5616,11.772,2.2891,2.1968,2.3764,11.9836,1.722,3.8256,1.2048,12.9747,4.9853,7.2648,2.8841,9.3275,6.2354,7.1391,6.4156,3.3889,1.493,4.9142,24,,AD,0.07484,,,,0.4353,4.5457,3.7521,0.74044,9.6025,1.6038,0.39259,3.6757,3.1525,45.3571,14.1082,212.8049,3.5842,4.8648,1.5,1.8373,3.4999,7.3078,2.01,3.0485,0.78669,6.9891,10.659,18.3746,7.8925,2.0702,4.8273,1.7338,16.0452,5.6475,3.6362,1.3629,2.9837,7.7435,12.6364,3.0955,4.1912,3.2045,1.4456,1.7131,3.5234,9.6544,2.615,2.3047,10.3775,2.0627,2.1154,1.9189,12.4675,1.5149,3.6721,1.1692,13.1704,5.269,7.1656,3.8405,9.1956,6.4804,7.1146,6.3412,3.4478,1.3266,4.6544,,,,,,,,,,,,,,,63,,,
-nG+FRE3T0AD004,1.5766,1.9146,,70-79y,AD,,,16.6399,4.3864,2.5807,2.1362,1.6859,edsd,AD,,F,,0.37961,4.1649,4.1858,0.81119,8.6007,1.4543,0.36996,3.2663,2.7192,44.6837,12.5481,189.8087,4.2323,4.5411,1.6194,1.9523,3.23,6.7179,2.0713,3.0773,0.70164,5.9031,9.5404,22.3572,7.1502,2.2312,4.4695,1.6175,17.575,5.3515,3.9735,1.2308,2.7815,6.6387,11.413,2.833,4.0192,3.1111,1.4734,1.3376,4.268,10.1569,3.1626,2.3505,11.6109,2.4107,2.5075,2.176,12.7961,2.0656,3.4071,1.192,15.8737,5.5213,8.5889,3.1517,8.7986,6.7968,6.0523,7.062,3.3805,1.5042,4.3083,25,,AD,0.08965,,,,0.32741,3.9133,3.6596,0.84635,10.0289,1.578,0.36185,3.5335,2.7801,44.649,12.1553,191.845,3.9964,4.7544,1.7124,2.033,3.309,6.8021,1.978,3.3327,0.80356,5.5175,10.4172,17.4759,8.0408,2.0356,4.6138,1.585,17.2194,4.9535,3.6635,1.25,2.587,6.932,13.5824,2.7084,3.9331,3.7043,1.4797,1.3569,4.0349,10.3351,2.9635,2.1187,10.3066,2.1558,2.2235,1.8018,12.8908,1.8433,3.2018,1.1625,14.8581,5.2378,7.6464,4.0133,9.0965,6.787,6.1684,7.4404,3.372,1.3079,4.0467,,,,,,,,,,,,,,,73,,,
-nG+FRE3T0AD005,1.6407,2.2936,,60-69y,AD,,,18.5245,4.993,2.2641,2.231,1.2296,edsd,AD,,F,,0.37021,4.2455,3.9336,0.51345,8.0306,1.4411,0.32261,2.7063,2.9211,44.7344,16.2466,224.5786,3.8489,3.9512,1.1591,1.8953,3.2963,6.4576,1.9337,2.4249,0.68775,5.957,9.242,13.8935,6.8462,2.1942,4.3926,1.751,15.7424,4.8197,3.73,1.0295,2.2048,6.5707,11.3686,2.8547,3.8519,2.9985,1.3574,1.5701,3.9986,9.845,2.7031,2.1517,11.246,2.0528,2.2696,2.1134,12.0998,1.5331,3.5981,1.0877,14.3766,4.7219,7.5768,2.934,9.0935,6.0233,6.3276,6.2477,3.4426,1.2385,4.7221,23,,AD,0.079,,,,0.34156,3.6388,3.7453,0.58763,9.1413,1.7254,0.34911,3.2626,3.014,46.1595,15.2028,231.2623,3.796,4.4286,1.3618,2.0643,3.3536,7.2561,1.9012,2.7499,0.55739,6.401,10.4698,10.5676,7.8459,2.2238,4.3383,1.6397,17.9403,4.9671,3.6362,1.1773,2.44,7.3004,12.5579,3.0239,4.2869,3.356,1.535,1.6223,3.8402,9.8443,2.7068,2.1214,9.9235,1.859,2.2985,1.8056,11.574,1.5466,3.6117,1.0297,12.2432,5.016,6.9067,4.0843,9.6188,6.4901,6.345,6.6504,3.5284,1.204,4.4829,,,,,,,,,,,,,,,67,,,
-nG+FRE3T0AD006,1.7486,2.435,,+80y,AD,,,14.8413,4.2629,2.5672,2.0045,1.9086,edsd,AD,,M,,0.34872,4.3685,4.1057,0.76688,7.6577,1.3681,0.34626,2.7653,2.9035,43.8841,14.0604,192.4498,3.8943,4.1327,1.4779,1.7388,3.3803,6.6884,1.6651,3.1014,0.79444,5.6966,9.5801,24.7165,7.2067,2.117,4.6193,1.5163,16.0015,5.1658,3.3774,0.99122,2.3515,6.7388,10.9923,3.0627,3.9307,2.7283,1.3473,1.3392,3.8647,9.4853,2.9646,2.3329,10.6611,2.5429,2.1009,2.0593,10.8424,2.1259,3.5577,1.1667,14.2373,5.1859,8.0712,3.0462,8.8561,6.0375,5.8612,6.7133,3.3588,1.5795,4.2762,22,,AD,0.08137,,,,0.29851,4.1125,4.0903,0.68649,8.9425,1.5162,0.343,3.094,2.7353,42.5346,12.794,190.2468,3.9223,4.2373,1.4199,1.8795,3.3102,6.8535,1.6777,2.9616,0.96452,5.7627,10.1136,21.5353,7.5987,2.0562,4.8651,1.4788,15.914,4.561,3.1373,1.0555,2.3142,7.1466,11.2172,3.0113,4.0478,3.1849,1.5467,1.2967,3.6139,9.6531,2.66,2.3581,9.1766,2.3783,2.1495,2.0316,11.1654,1.7727,3.3468,1.0767,13.1769,4.9319,7.2121,3.6644,9.0863,6.8639,5.7202,6.7344,3.2089,1.5388,3.9091,,,,,,,,,,,,,,,81,,,
-nG+FRE3T0AD007,1.698,2.1247,,70-79y,AD,,,16.3111,4.4765,2.2029,2.1165,2.1458,edsd,AD,,F,,0.32487,4.1485,4.1797,0.66117,8.7436,1.4454,0.35638,2.723,2.9367,43.1641,12.9305,185.9035,4.3633,4.1151,1.2706,1.953,3.177,6.3211,1.8926,2.783,1.1206,5.9063,9.2592,28.6518,6.9457,2.2977,4.0206,1.6211,17.2508,5.8156,3.5377,0.94137,2.1904,6.2958,12.5696,3.2245,3.9945,3.4619,1.4884,1.5737,3.8911,9.5133,2.8399,2.4182,10.3831,2.2847,2.3301,2.3094,10.8389,1.7874,3.5172,1.192,12.2416,4.592,7.8309,3.0737,9.065,6.4641,6.5655,6.5138,3.6489,1.5557,4.5116,25,,AD,0.08875,,,,0.29664,4.1811,4.1034,0.69047,9.1366,1.6276,0.36174,3.113,2.7154,41.8698,12.5059,190.6644,4.168,4.1589,1.3657,1.8374,3.541,6.1857,1.7773,3.0156,1.1458,6.2164,9.9723,25.6969,7.972,2.0819,4.1792,1.6024,17.7966,5.347,3.5262,0.89224,2.0523,6.7355,13.0178,2.7901,3.9425,3.1999,1.4944,1.6159,3.4305,8.8048,2.6483,2.4777,9.5891,2.2698,2.2374,2.2014,10.8625,1.7559,3.5762,1.1423,12.34,4.6414,6.5719,3.837,8.6881,6.5912,6.4671,6.7577,3.1866,1.5415,4.266,,,,,,,,,,,,,,,79,,,
-nG+FRE3T0AD008,2.2484,2.1181,,70-79y,AD,,,19.1081,4.3915,2.5241,2.0673,1.8735,edsd,AD,,M,,0.45101,5.052,4.6694,0.69169,8.2678,1.4355,0.40743,3.5396,3.1574,44.7231,15.1152,256.1073,4.4919,5.2259,1.4455,1.9459,3.6101,7.029,2.0286,2.8594,1.4488,6.2666,11.1327,31.0712,7.9692,2.162,4.7918,1.777,18.6366,6.1555,3.858,1.4731,3.2439,7.5516,12.9034,3.7458,4.2157,3.4449,1.4242,1.8616,4.6305,11.478,3.0142,2.7233,12.5624,2.5835,2.3577,2.2754,13.6688,2.0494,4.4528,1.3888,14.7282,5.9652,8.519,4.0874,10.3864,6.3939,7.3807,7.0149,3.3935,1.5981,5.1026,19,,AD,0.07845,,,,0.39908,4.183,4.5397,0.63104,11.0488,1.8335,0.40448,3.6878,3.122,44.3483,14.5408,260.1334,4.1936,5.3855,1.3511,2.0242,3.9526,7.2319,2.1739,2.8547,1.1272,6.6404,11.5377,31.0526,8.3146,2.2496,4.3896,1.9705,18.9489,4.9903,3.9278,1.154,3.0377,8.2049,13.8825,3.0677,4.5359,3.4565,1.5978,1.9091,3.9306,11.9621,2.6985,2.7146,11.0637,2.5684,2.3726,2.1531,12.6305,2.0737,4.3307,1.3882,14.8922,6.0849,8.0187,4.013,10.7216,6.9062,7.4658,6.5625,3.46,1.5167,4.7461,,,,,,,,,,,,,,,74,,,
-nG+FRE3T0AD009,1.3666,1.6793,,+80y,AD,,,14.4818,3.905,2.0068,1.7938,1.1402,edsd,AD,,F,,0.32098,3.3433,3.5846,0.63575,7.1684,1.1383,0.29277,2.6481,2.3864,36.8488,11.3255,161.6748,3.3895,3.2605,1.1379,1.7144,2.5766,5.5762,1.48,2.4226,0.90361,4.7187,7.6442,17.7824,6.0284,1.8256,3.5202,1.2859,13.8017,4.6762,2.9727,0.8312,1.689,5.038,9.1824,2.7223,3.3096,3.3025,1.2056,1.2801,3.2435,7.4883,2.373,1.9173,9.5492,1.9224,1.9443,1.7069,10.304,1.6225,3.1734,0.92855,10.6277,3.6356,7.4277,2.7854,8.589,5.1665,5.8002,5.0815,3.0953,1.1811,3.9123,17,,AD,0.0668,,,,0.29191,2.7429,3.3055,0.66914,7.3412,1.2661,0.30458,2.8613,2.5523,36.7519,10.8299,166.2224,3.4983,3.7902,1.2152,1.6911,2.737,5.5859,1.5472,2.7299,0.88682,4.8365,8.1992,16.123,6.3936,1.6305,3.3912,1.1938,14.2998,3.8871,3.0279,0.86393,1.8727,5.4087,10.4488,2.4945,3.2993,3.2271,1.1677,1.3705,3.0514,7.7781,2.3174,1.8902,8.3544,2.0738,1.8214,1.5833,10.2695,1.6751,3.056,0.93562,11.5543,3.9413,6.3379,3.9022,8.5553,5.9204,5.8785,5.7073,2.6569,1.2277,3.7745,,,,,,,,,,,,,,,85,,,
-nG+FRE3T0AD010,2.1657,2.1866,,70-79y,AD,,,16.1442,4.7659,2.688,2.1871,2.3102,edsd,AD,,F,,0.34427,4.6591,3.6309,0.59923,8.549,1.4029,0.34375,3.2808,2.5637,43.8058,12.4512,180.3862,3.7584,4.1712,1.0917,1.7489,3.169,6.6823,1.9491,2.443,1.3391,6.2899,10.1434,31.1846,7.1467,2.0668,4.8491,1.5863,17.2707,5.8583,3.7484,0.98415,2.2819,6.6809,12.0241,3.2256,3.9724,2.6684,1.1968,1.3663,3.9165,10.0476,2.629,2.2243,10.1044,2.1603,2.0887,2.0811,11.7325,1.599,3.1216,1.2614,14.0778,5.033,8.3501,3.1887,9.504,6.0762,5.9962,6.2909,3.1845,1.3749,4.377,24,,AD,0.08676,,,,0.3152,4.6469,3.6051,0.6043,9.5403,1.5598,0.34291,3.2748,2.5881,44.2379,12.0541,182.2084,3.6569,4.5113,1.1621,1.7784,3.6101,7.305,1.9337,2.6271,1.4125,6.5168,10.678,23.1492,7.3677,2.0054,5.1604,1.5572,17.6547,5.5607,3.5282,0.93469,2.2221,6.9852,12.4151,2.9628,3.8176,2.8835,1.4614,1.3605,3.7694,10.3416,2.5347,2.2618,8.8901,1.8668,1.9902,1.9457,11.0228,1.5615,2.9122,1.2437,13.374,4.9027,6.9255,4.0998,9.3095,6.3782,6.132,6.2905,3.198,1.3862,4.0971,,,,,,,,,,,,,,,77,,,
-nG+FRE3T0HC001,0.76151,1.714,,-50y,CN,,,16.4958,4.4512,2.5609,2.0513,0.78724,edsd,CN,,F,,0.43031,4.9085,4.2371,0.90897,9.6717,1.772,0.4115,2.7666,2.9504,47.0264,13.9499,225.0915,3.7567,4.6438,1.7206,1.9378,3.2088,8.0246,2.1924,3.1589,0.36325,6.7684,12.0056,6.976,7.5276,2.5783,4.8754,2.0486,18.56,6.459,4.297,1.1127,2.751,7.2737,14.406,3.0137,4.4651,3.1375,1.5683,1.5147,4.661,11.6825,3.1146,2.2111,11.4652,2.1089,2.8273,2.3153,12.7629,2.0263,3.4616,1.2343,13.7179,5.7578,9.7342,3.7982,11.6669,7.8476,7.2325,8.234,3.6023,1.4268,4.3505,30,,,0.07644,,,,0.41034,3.8597,4.0171,0.88749,10.5965,1.9203,0.40852,3.0513,2.9284,46.8232,13.4604,224.9191,3.878,4.5726,1.7915,2.0866,3.5908,8.2067,2.1785,3.3244,0.37858,7.2009,12.0574,8.5651,8.2483,2.4457,4.7548,1.9531,19.1158,5.9148,4.0221,0.88561,2.678,8.2108,14.6283,3.03,4.5684,3.6908,1.7088,1.5406,4.4753,10.997,2.9357,2.1827,10.1761,2.0026,2.6022,2.0447,12.7529,1.7387,3.315,1.1702,13.6528,5.3927,8.3342,4.3501,11.2587,7.5306,7.1042,8.1153,3.7315,1.3442,4.1703,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC002,1.172,1.4427,,-50y,CN,,,15.3848,4.0297,2.3422,2.0209,1.2018,edsd,CN,,F,,0.41591,4.0697,4.3721,0.77227,7.956,1.3703,0.35475,2.7737,3.5369,42.8081,12.1993,181.6168,3.6323,3.88,1.4891,1.8169,3.0064,6.4863,1.8333,2.7669,0.47194,5.7087,9.8514,16.4888,6.2929,2.0685,3.9836,1.6054,16.0011,5.1795,3.5545,0.93037,2.3415,6.1492,11.9519,2.8136,3.5194,2.7098,1.3442,1.403,3.9111,9.9161,2.7921,2.1704,10.309,2.0249,2.3422,2.1727,12.061,1.8002,4.0526,1.0952,12.9869,5.045,7.0518,3.2115,8.6635,6.3098,6.4197,6.6487,3.4622,1.4033,4.1494,28,,,0.06871,,,,0.4108,3.5552,3.8215,0.77349,9.1593,1.6786,0.38153,2.7482,3.5155,42.281,11.9307,183.8891,3.6925,4.3337,1.5769,1.8392,3.4529,6.7912,1.795,2.8341,0.33228,5.6825,10.2643,13.2144,7.017,2.1926,4.2693,1.5741,16.6427,4.1007,3.699,0.84444,2.5492,7.1218,12.1521,2.2547,3.8391,3.0267,1.4578,1.4317,3.5991,9.9622,2.5645,2.1607,8.7994,2.3633,2.3959,1.9582,11.0117,1.8677,3.5571,1.1006,13.4779,4.9902,7.2698,3.6559,8.8258,6.4777,6.2583,6.6768,3.4372,1.392,3.8723,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC003,1.7123,1.8267,,-50y,CN,,,17.815,5.657,2.693,2.45,1.7175,edsd,CN,,M,,0.44027,4.6323,4.3458,0.90065,9.5358,1.6272,0.41983,2.7219,3.1105,47.5675,16.1514,213.6856,3.8802,4.3846,1.8712,1.8184,3.2519,8.1054,1.9731,3.2413,0.54061,6.6271,11.6856,12.0729,8.0601,2.1914,5.3289,1.8184,17.1771,5.3035,3.8401,0.95972,2.3545,6.6368,13.6328,3.1821,4.8532,2.9829,1.2236,1.6215,4.9012,11.2007,3.4163,2.2301,11.0757,2.1615,2.4285,2.0657,12.0331,1.7509,4.4826,1.1901,13.2544,4.9962,8.5608,3.3885,9.8845,6.8695,6.9055,7.7538,3.187,1.3469,4.8273,30,,,0.07571,,,,0.39299,3.9954,3.9787,0.86381,9.9023,1.6716,0.39329,3.159,3.1739,47.289,15.1125,211.7753,3.4206,5.028,1.7675,1.6694,3.547,7.6932,1.9173,3.4143,0.6202,6.7827,11.9538,11.2721,8.4893,2.1498,4.7042,1.703,17.828,5.2143,3.5903,1.0939,2.5249,7.641,14.6205,2.9397,4.6384,2.8762,1.4397,1.6363,4.3894,11.0949,3.0393,2.117,10.1234,1.9296,2.3682,1.875,11.9271,1.6445,4.1544,1.1057,13.2791,5.1338,7.3716,4.0782,9.4135,7.8387,6.6755,7.785,3.0893,1.2649,4.5171,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC004,1.4722,2.1183,,-50y,CN,,,16.9803,4.1678,2.3748,1.9369,1.33,edsd,CN,,F,,0.34162,4.6022,3.9,0.85531,8.6035,1.5388,0.34664,3.623,2.5642,43.6755,13.6451,208.07,3.8098,4.3597,1.6249,2.093,3.0718,7.0831,1.8822,3.1929,0.86925,6.0919,11.4696,20.0561,7.1455,2.268,4.6865,1.7826,18.3395,5.5471,3.7536,1.0828,2.756,6.8875,13.7814,3.3136,4.3066,3.7596,1.4334,1.3743,4.2906,10.0407,3.1236,2.116,10.1079,2.4582,2.3931,2.0954,13.1373,1.8785,3.4101,1.1368,14.2914,5.308,8.2607,3.4293,9.9727,6.7011,6.9214,7.775,3.5972,1.6057,4.4267,29,,,0.0666,,,,0.30529,3.6402,3.5918,0.85499,9.322,1.7616,0.348,3.6045,2.5652,43.426,13.1039,210.1719,3.8917,4.6025,1.6645,1.929,3.3431,7.2848,1.8046,3.3311,0.79388,6.092,11.629,16.2077,7.8971,2.2909,4.7241,1.7065,17.3869,4.2855,3.6043,0.90751,2.4726,8.1541,13.534,2.8549,3.944,3.6483,1.6054,1.3967,4.0855,10.1163,2.9884,2.1205,10.2815,2.225,2.2864,1.8901,12.73,1.8962,3.1843,1.1135,15.0565,5.3897,8.3553,4.0282,10.6186,6.7479,6.889,7.7021,3.4329,1.4799,4.1848,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC005,1.614,1.9196,,-50y,CN,,,17.7762,5.3514,2.8305,2.4147,1.3533,edsd,CN,,M,,0.43307,4.7113,4.3376,0.93739,8.9409,1.5772,0.40429,3.406,2.7172,47.9713,14.8935,209.0373,3.8743,4.7242,1.751,1.9974,3.483,7.4826,1.9137,3.3839,0.5242,6.9762,11.9431,16.6564,8.032,2.324,4.7792,1.7003,18.1785,6.07,4.0077,1.2133,2.8053,6.7738,13.9066,3.5306,4.6549,3.2598,1.433,1.4637,4.4222,10.017,3.278,2.3157,13.1292,2.4288,2.6564,2.2945,14.1058,2.2553,3.8839,1.3028,16.3673,5.7798,8.6646,4.2588,10.7217,7.4109,6.7768,8.2614,3.4984,1.6861,4.7218,27,,,0.08379,,,,0.37903,4.1808,3.9727,0.90593,9.4278,1.6705,0.4125,3.1197,2.7961,48.8941,14.2605,211.353,3.8774,4.7354,1.7783,1.8918,3.5987,7.5272,1.9391,3.7963,0.9219,6.2446,11.8036,14.0815,8.3029,2.1975,4.3461,1.6627,18.5757,4.6453,3.6767,1.3128,2.9708,7.6634,14.5187,2.7054,4.4146,3.3178,1.6238,1.4537,4.5414,11.4914,3.139,2.1743,12.4641,2.4143,2.4765,2.0325,14.1011,1.9454,3.7248,1.2351,16.326,6.0924,8.1332,4.1025,10.3195,7.484,6.7928,8.8179,3.4829,1.5171,4.4563,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC006,0.78548,1.6452,,-50y,CN,,,19.3635,4.1392,2.4878,2.0164,0.73513,edsd,CN,,F,,0.41064,4.8959,4.2223,0.83318,8.7777,1.3855,0.37715,3.3904,2.5878,37.5008,15.2945,238.1675,4.0084,4.6911,1.5778,2.0205,3.5412,6.2539,2.1391,2.8952,0.33556,5.9105,9.9259,7.1916,6.7045,2.168,5.2192,1.853,18.4488,5.7345,3.7981,1.1846,2.7659,6.9348,13.0736,3.2581,4.0649,3.5025,1.4708,1.6868,4.2422,10.6576,2.7938,2.3813,11.5437,2.5104,2.2731,2.273,12.1483,2.2449,3.6351,1.2287,14.6143,5.5574,8.6181,3.4129,10.1731,7.2459,7.8912,6.7235,4.0429,1.7349,5.1199,30,,,0.0791,,,,0.387,4.3436,3.9787,0.88096,9.3742,1.6747,0.40229,3.332,2.7433,35.0639,14.6805,241.8441,4.1037,5.1201,1.7129,1.9335,3.6164,6.6275,2.0326,3.1393,0.40118,6.0577,10.4756,7.0678,7.1854,2.165,4.9833,1.6226,18.2342,4.5619,3.9055,1.0289,2.5523,8.1308,13.0443,2.796,3.7494,3.3518,1.509,1.7118,4.1126,11.0806,2.6373,2.3285,9.8985,2.3774,2.3582,2.0971,12.0913,2.0048,3.5761,1.1512,14.2183,5.6612,7.6442,3.9936,9.684,6.8412,7.7732,7.3028,3.3709,1.6071,4.917,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC007,1.0437,1.5136,,-50y,CN,,,15.3697,4.5442,2.3782,2.0083,1.0368,edsd,CN,,F,,0.41664,4.3344,3.8348,0.73871,8.8037,1.3958,0.36112,2.4261,2.7236,44.0482,13.4713,194.5846,3.4711,3.9218,1.5617,1.8746,3.3166,7.2892,1.781,2.7666,0.38246,5.5622,11.0049,10.1129,6.4685,2.1359,4.4478,1.5982,17.0455,5.6453,3.5882,1.0883,2.4786,6.3837,13.2182,2.6444,3.7836,3.0203,1.4083,1.3267,4.0792,9.5844,3.0323,2.083,11.135,2.1774,2.2597,2.0631,11.3711,1.8484,3.6105,1.1304,13.156,4.9445,8.5524,3.0463,9.7753,7.1655,6.4038,6.874,3.6062,1.454,4.1762,30,,,0.07662,,,,0.3781,3.829,3.5652,0.70439,9.1377,1.6695,0.37195,2.6141,2.7122,44.2266,12.8401,197.2012,3.6347,4.388,1.4809,1.6794,3.4888,7.2795,1.9219,2.8784,0.38569,5.857,10.7234,8.3227,7.228,2.0677,4.6062,1.6169,16.7745,4.6989,3.7345,0.9341,2.5825,6.8183,13.7059,2.4348,3.7202,3.2949,1.4943,1.3276,3.7534,9.906,2.8203,1.994,9.3578,1.9935,2.3325,1.7949,12.0539,1.7384,3.4216,1.1226,14.2012,4.8783,7.059,3.7545,10.3715,6.9698,6.4738,6.9538,3.2053,1.3506,3.9552,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC008,1.9259,1.8618,,-50y,CN,,,20.5349,4.9834,2.6853,2.271,1.4292,edsd,CN,,M,,0.42956,4.7719,4.5088,0.80523,10.6247,1.5926,0.39035,3.3305,3.3834,49.5858,16.9913,262.7257,4.3785,4.4205,1.5971,2.2471,3.3457,7.8688,2.0698,3.2871,0.83801,7.1185,12.1345,17.3104,7.4548,2.3653,5.1372,1.8623,19.1382,6.6145,4.0456,1.1148,2.5027,6.9028,14.8551,4.132,4.5319,3.5135,1.5157,1.7829,4.7566,11.8877,3.3232,2.5669,12.3824,2.6832,2.5105,2.6335,12.468,2.1252,4.0444,1.3612,14.5068,5.09,9.8517,3.2678,10.683,8.005,7.6113,7.8968,4.0525,1.8102,5.3238,27,,,0.07963,,,,0.40339,4.5827,4.2071,0.91058,11.4886,1.929,0.4173,3.4268,3.4256,49.6749,16.8646,263.77,4.2444,5.1805,1.871,2.1393,3.6978,7.6006,1.9291,3.7797,0.91749,6.7231,11.9333,16.3631,7.7976,2.4045,5.2766,1.7088,18.7096,5.2318,4.0174,1.1528,2.6392,7.6393,15.2121,3.0215,4.3444,3.8707,1.8664,1.7632,4.5444,12.0108,3.2685,2.4656,10.9379,2.3058,2.5801,2.272,11.9639,2.0602,3.9227,1.1998,14.0477,5.1936,9.3803,4.6967,11.4734,9.075,7.6821,8.3589,3.7947,1.6697,5.1077,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC009,0.98079,1.7414,,-50y,CN,,,18.3676,4.5193,2.801,2.2438,0.97366,edsd,CN,,F,,0.42186,4.1727,4.4858,0.99708,8.4172,1.5165,0.39874,3.1303,2.9262,49.1019,15.3354,235.0903,3.8408,4.3683,1.8282,1.9986,2.956,6.8231,1.936,3.3564,0.44762,5.345,10.5973,8.7825,7.1263,2.3593,4.7098,1.5193,16.9412,5.1693,3.9422,0.95416,2.4319,6.3507,12.9016,2.7212,3.9033,3.2757,1.4595,1.5518,4.4781,9.9819,3.2234,2.3288,10.8241,2.0978,2.2947,2.3109,11.8097,2.0697,4.0496,1.1527,14.2595,5.6534,8.6432,3.1983,9.647,7.4732,7.4687,7.1894,3.9039,1.5752,4.9773,30,,,0.08805,,,,0.37051,3.6659,4.0376,0.92482,8.7883,1.5749,0.40491,3.1133,2.9817,48.463,15.0445,234.7223,3.6958,4.4374,1.7302,1.8752,3.4547,7.0482,1.8119,3.4963,0.52741,5.7045,10.0696,7.8491,7.6388,2.074,4.5803,1.406,17.4708,4.9182,3.5889,0.89908,2.364,6.5382,13.0454,2.6821,3.9653,3.8443,1.5266,1.5473,4.0985,10.0864,2.8693,2.2314,10.3212,2.0918,2.2418,2.0243,12.7227,1.8905,3.8694,1.0553,14.4529,5.2933,7.6231,3.9919,9.4038,7.0859,7.3745,7.2509,3.6145,1.6067,4.6371,,,,,,,,,,,,,,,38,,,
-nG+FRE3T0HC010,1.3067,1.5541,,50-59y,CN,,,15.7677,4.4949,2.428,2.2014,1.2123,edsd,CN,,F,,0.38334,3.948,4.1302,0.81543,7.8059,1.4517,0.35521,3.0936,2.9964,48.8532,13.2768,197.3386,3.8421,4.1411,1.5989,2.0095,3.0274,7.0765,1.8733,2.9369,0.53477,5.8721,11.192,11.297,7.3258,2.2574,4.5183,1.5262,19.08,5.5648,3.9303,1.0797,2.5952,5.9829,13.5805,2.8725,4.4898,3.6752,1.4953,1.4294,4.063,9.5475,2.9691,2.1862,10.3821,2.0998,2.3906,2.0999,12.271,1.7358,3.7125,1.0558,13.3514,5.0496,8.2609,3.2683,9.7264,6.5389,6.6585,7.1993,3.8219,1.3907,4.3744,29,,,0.07652,,,,0.33749,3.7313,3.987,0.81108,9.3639,1.7272,0.35786,3.1251,3.0468,48.774,13.0406,198.2855,3.8619,4.3472,1.6164,1.7695,3.3107,7.15,1.9506,3.2615,0.61848,6.3483,11.7899,10.9034,7.6127,2.2476,4.2754,1.5515,18.4196,5.3002,3.843,1.2031,2.5856,6.5017,14.2685,2.5729,4.0219,3.238,1.5513,1.4203,3.8963,9.862,2.8919,2.2766,9.2469,1.8857,2.3375,2.0147,12.3611,1.6251,3.5259,1.0567,13.4644,4.7562,6.8716,3.907,8.6385,6.7893,6.777,7.2399,3.3444,1.3992,4.0793,,,,,,,,,,,,,,,56,,,
-nG+FRE3T0HC011,1.1685,1.7477,,70-79y,CN,,,19.276,4.6455,2.4322,2.4015,1.1866,edsd,CN,,M,,0.43293,4.3916,3.8499,0.92232,8.3897,1.5045,0.37346,2.7421,3.0777,48.6368,16.2364,247.9511,4.4111,4.24,1.7233,1.8167,3.2919,7.1775,1.8477,3.0353,0.55859,6.4785,10.2448,18.2943,7.3144,2.2314,4.8775,1.6885,18.3843,5.9223,3.8819,1.0491,2.3063,6.4913,12.3186,3.5209,3.9437,3.4594,1.3671,1.7373,4.2709,10.5513,3.0593,2.1487,11.9255,2.4013,2.3889,2.1035,12.313,2.1993,3.7195,1.062,13.9965,5.2041,9.2354,3.4209,11.0531,7.2854,6.9732,7.2184,3.3353,1.5584,5.0208,28,,,0.07155,,,,0.38266,3.847,3.7652,0.88295,9.6779,1.7381,0.36743,2.8778,2.9505,48.961,15.6228,247.6648,3.4866,4.7671,1.733,1.946,3.3523,7.9381,1.9369,3.2868,0.52265,6.5135,11.4244,14.3835,8.2699,2.2145,4.6196,1.6815,18.4993,4.9111,3.8106,0.88177,2.1624,7.0645,13.7817,3.0325,4.5112,3.3692,1.485,1.6457,3.849,10.7904,2.9531,1.9577,10.4588,1.8855,2.4033,1.8126,11.8116,1.6737,3.4358,1.0344,11.7635,4.8422,7.6688,4.4728,10.8439,6.6434,6.82,7.2326,3.3464,1.2189,4.6522,,,,,,,,,,,,,,,71,,,
-nG+FRE3T0HC012,0.91329,1.7207,,60-69y,CN,,,16.1386,4.5887,2.7387,2.022,1.0008,edsd,CN,,M,,0.39061,4.1357,4.0917,0.81981,8.9364,1.5141,0.35107,3.1909,2.7717,47.2241,13.6501,194.1429,3.4536,4.2396,1.6173,1.7793,3.6831,7.1395,1.8999,2.9412,0.47482,5.4965,10.134,9.8829,6.7062,2.3094,4.5961,1.7072,18.15,5.4532,3.8186,1.056,2.4012,6.5976,12.7252,3.0587,3.789,3.1734,1.3552,1.4067,4.4772,9.9918,3.108,2.1735,9.9433,2.222,2.2485,2.0736,12.6262,2.0422,3.6167,1.0199,14.0169,4.6124,8.1767,3.247,9.8267,7.1101,7.2343,7.094,3.6266,1.5315,4.4119,30,,,0.06615,,,,0.34632,3.3679,3.8703,0.81298,9.1914,1.7703,0.36647,3.3301,2.8389,46.4564,13.3453,197.3612,3.5122,4.4513,1.5899,1.7588,3.9505,7.4098,1.8913,3.1208,0.64451,6.4061,10.3327,9.599,7.3041,2.1512,4.1706,1.6885,18.2191,4.7997,3.6593,0.96542,2.4623,7.1449,12.3274,2.9431,3.9794,3.2753,1.4721,1.4045,3.8339,9.8438,2.7794,2.1178,9.151,2.2511,2.1937,1.8244,12.921,1.9433,3.5176,1.0378,14.225,5.0549,7.3513,3.9499,9.3557,7.0004,6.9295,7.0659,3.6063,1.3691,4.1609,,,,,,,,,,,,,,,66,,,
-nG+FRE3T0HC013,1.09,2.1104,,60-69y,CN,,,20.0813,5.5966,3.203,2.6033,1.2058,edsd,CN,,F,,0.4623,4.8053,4.5723,1.0289,10.068,1.6474,0.42315,3.3101,3.3455,56.8183,17.706,241.611,4.6986,4.7112,1.9169,2.4049,3.4284,8.6057,2.0895,3.8589,0.47953,7.3628,13.7005,14.2645,8.943,2.574,5.2113,1.8645,20.5315,7.0934,4.3626,1.3344,2.7667,7.0636,17.4934,3.712,5.2492,4.2748,1.681,1.6101,4.9118,11.0971,3.6665,2.268,12.3322,2.4504,2.7952,2.5748,12.9166,2.3558,4.1592,1.2197,15.5642,5.3513,9.3758,4.3046,11.2281,9.1999,7.9295,9.067,4.1858,1.948,5.1095,30,,,0.08406,,,,0.39576,4.4445,4.2808,1.0815,10.944,1.983,0.41206,3.5269,3.5504,56.6536,16.5226,242.0048,4.2583,5.0981,2.0513,2.2622,3.677,9.0219,1.9759,4.0554,0.5249,6.8803,13.5092,11.468,9.7277,2.4684,4.9783,1.7527,19.5149,5.3576,3.9365,1.016,2.974,7.7507,16.4933,3.2514,5.0129,3.7221,1.6658,1.5631,4.4571,11.4473,3.6236,2.1884,11.659,2.0384,2.5784,2.0261,14.1323,1.9243,4.0042,1.1594,16.125,5.7084,8.7476,4.8376,12.2937,9.0556,7.756,9.1932,3.928,1.4135,4.8444,,,,,,,,,,,,,,,60,,,
-nG+FRE3T0HC014,1.5052,2.2088,,60-69y,CN,,,20.4866,5.5523,3.3315,2.5184,1.2797,edsd,CN,,M,,0.53202,5.2964,4.7641,1.0389,10.1702,1.9169,0.45822,3.7225,3.7946,56.9775,18.8096,264.8382,4.6635,5.3039,1.9007,2.1829,4.2681,8.8549,2.4124,3.4854,0.51445,8.0259,12.5009,17.9065,8.4392,2.8515,5.76,2.1957,20.6639,7.1553,4.5659,1.1183,2.8748,7.6078,14.8773,4.253,5.2811,3.8385,1.7248,1.8286,4.8453,11.2148,3.6757,2.5786,13.0931,2.6854,2.7405,2.5914,15.0168,2.1991,4.534,1.3638,16.9267,6.0104,8.91,3.9528,10.7322,7.945,8.5038,8.7625,4.3936,1.6912,5.4939,30,,,0.08206,,,,0.45089,4.66,4.4752,1.0622,10.5744,2.1057,0.43711,3.9155,4.0632,56.0955,17.6577,267.6691,3.9016,6.0872,2.0086,1.9507,4.0984,8.6655,2.2903,3.73,0.59472,8.5205,13.1952,18.0334,8.9198,2.6877,5.1863,1.9748,21.7039,6.1211,4.4065,1.1751,2.9631,8.6373,15.9716,3.6969,5.0361,4.0885,1.7635,1.8444,4.4494,12.1435,3.2796,2.5382,11.9035,2.4104,2.5921,2.2951,15.2203,2.0751,4.2474,1.2841,16.4028,6.2661,8.3761,4.9057,10.4075,8.468,8.5553,8.8402,4.0728,1.5511,5.1922,,,,,,,,,,,,,,,63,,,
-nG+FRE3T0HC015,2.2023,2.4089,,-50y,CN,,,20.4108,5.1432,2.6853,2.4147,1.8849,edsd,CN,,M,,0.49147,5.7797,5.4048,1.0705,10.1609,1.9361,0.47669,4.2792,3.7724,50.5091,15.1132,260.6464,4.8171,5.84,2.0359,2.3748,4.5852,8.5002,2.5264,3.6457,1.2782,8.0441,12.2709,36.4723,8.2014,2.8999,5.8873,2.3385,21.5294,7.3778,5.0118,1.1017,2.9135,8.5151,13.8627,4.7167,5.0482,3.4564,1.8326,2.0654,5.1161,12.3314,3.5912,2.9766,13.2226,2.6311,3.2117,2.5947,14.8678,2.0213,4.0556,1.6854,17.5194,5.9421,9.0909,3.9376,12.1876,7.4672,8.3647,8.6,4.3584,1.741,5.5917,26,,,0.08199,,,,0.43308,5.0449,5.1362,1.0761,11.4297,2.2412,0.50087,4.3357,3.5906,51.3226,15.0686,271.7577,4.8673,6.0809,2.1282,2.4243,4.6571,9.3062,2.5305,3.9721,0.831,8.2424,14.1024,22.7888,9.3591,2.6996,5.5249,2.3643,23.7774,5.9573,4.8573,1.0667,2.693,9.3821,16.1744,3.9473,5.2588,3.8602,2.014,2.0366,5.0315,13.1268,3.5317,3.0945,12.1582,2.9868,3.0105,2.3733,14.3726,2.3121,3.9813,1.6001,16.9262,6.2281,8.9801,4.9166,13.1216,8.3923,8.509,8.592,4.5346,1.741,5.2466,,,,,,,,,,,,,,,36,,,
-nG+FRE3T0HC016,1.6311,3.1677,,50-59y,CN,,,17.7466,4.2336,2.3908,2.2948,1.397,edsd,CN,,F,,0.50415,4.8551,3.6905,0.90118,8.5927,1.6648,0.40135,3.1002,3.4491,43.6108,14.1073,236.364,3.5507,4.2445,1.8278,1.7326,3.2456,7.6172,2.0521,3.2721,0.4114,6.1879,11.7365,13.2896,7.3695,2.4923,5.247,1.7659,18.8778,6.239,4.0323,1.0539,2.5553,6.9886,14.6542,3.1911,4.1717,3.215,1.3831,1.7534,4.6327,10.6738,3.2769,2.1089,11.491,2.0229,2.4252,2.1393,13.0425,1.6488,4.065,1.1712,14.3869,5.6808,8.3562,3.5387,10.4434,7.4128,7.5669,7.9921,3.7699,1.3108,4.9448,30,,,0.0778,,,,0.44814,4.1386,3.5163,0.88245,9.709,1.7993,0.40558,3.2174,3.4082,42.5943,13.8667,235.8337,3.3643,4.1039,1.7926,1.6922,3.5605,7.6859,1.9793,3.4752,0.4896,6.2792,12.4167,13.1004,7.9132,2.3454,5.2099,1.7081,19.6031,5.0421,3.8013,1.2016,2.7977,7.7854,14.5562,2.7841,4.1794,3.5666,1.4006,1.7406,4.1308,10.5413,2.995,1.9103,10.351,1.846,2.384,1.6917,12.7812,1.5357,3.7825,1.1388,13.8458,5.534,7.505,3.8065,10.9174,6.7924,7.3168,7.6754,3.7288,1.1849,4.6835,,,,,,,,,,,,,,,53,,,
-nG+FRE3T0MCI001,2.0706,2.0163,,70-79y,Other,,,19.5817,4.4305,2.6272,2.1339,1.6165,edsd,MCI,,M,,0.47187,5.2728,4.7001,0.75755,8.5519,1.4728,0.42445,3.6191,3.1944,46.062,15.9103,265.6812,4.611,5.4128,1.5859,1.9881,3.6687,7.3032,2.1016,3.0114,1.16,6.5972,11.666,26.1449,8.2622,2.2228,4.9597,1.8474,19.788,6.2585,4.0204,1.4507,3.2474,7.864,13.6697,3.9963,4.4368,3.5359,1.4849,1.8589,4.7787,11.6746,3.1554,2.7304,13.0189,2.6709,2.4377,2.3202,13.7982,2.1133,4.4532,1.4347,15.5325,6.1866,8.8857,4.1879,10.9036,6.6694,7.5645,7.5251,3.5388,1.6156,5.2066,23,,MCI,0.08878,,,,0.40107,4.3094,4.578,0.70174,10.6092,1.9333,0.4175,3.7903,3.0841,46.3176,14.723,267.6029,4.3265,5.6101,1.4826,2.0374,4.0056,7.4807,2.2793,3.0377,0.91646,6.898,11.9752,26.1218,8.5997,2.3336,4.556,2.044,19.6653,5.1591,4.0721,1.1214,3.0654,8.4573,14.4409,3.1866,4.7235,3.5688,1.6433,1.9156,4.0692,12.2819,2.8111,2.7653,11.6993,2.826,2.4649,2.1911,13.0812,2.2121,4.3237,1.4368,15.5288,6.2218,9.123,4.142,10.8458,7.1791,7.7554,7.0269,3.5754,1.5656,4.8194,,,,,,,,,,,,,,,72,,,
-nG+FRE3T0MCI002,1.8953,2.5945,,70-79y,Other,,,14.5773,4.4402,2.3524,2.0402,2.1946,edsd,MCI,,F,,0.37204,4.6361,4.8409,0.82841,10.4591,1.61,0.4252,3.2596,2.3883,41.5414,12.9864,203.5602,4.3044,3.9577,1.6533,2.078,3.4559,7.5113,2.1852,3.0149,0.75575,6.4482,11.0984,24.8629,7.2914,2.3113,4.5528,1.825,18.6722,6.6358,4.0077,1.2911,2.823,7.1443,14.4684,3.5212,4.175,2.8404,1.4791,1.3178,4.1795,9.9764,3.3693,2.749,11.4993,2.2527,2.4641,2.4631,12.4153,2.0471,3.483,1.2777,15.4454,5.5097,8.6249,3.1602,10.1788,7.4301,5.8586,7.4169,3.7908,1.6836,4.6028,28,,MCI,0.08126,,,,0.33293,3.8135,4.3287,0.83571,10.6519,1.6952,0.3954,3.5223,2.6411,39.3618,11.7542,205.4985,3.8563,4.486,1.697,2.0246,3.8794,7.6589,2.0828,3.177,0.71055,6.7979,11.6861,18.5802,8.2264,2.1151,4.3397,1.865,18.5382,5.3372,3.7697,1.0231,2.5935,8.3682,13.4496,2.7936,4.16,3.476,1.5894,1.4291,3.9427,10.178,3.1334,2.5976,10.1561,2.2478,2.3101,2.4364,13.4881,1.9788,3.5721,1.2302,15.1689,5.9382,7.7913,3.6506,10.0116,7.2861,6.06,7.4145,3.5856,1.6521,4.2761,,,,,,,,,,,,,,,71,,,
-nG+FRE3T0MCI003,2.1015,1.7534,,70-79y,Other,,,17.9874,4.4376,2.4787,2.1521,2.3852,edsd,MCI,,F,,0.39083,5.1348,4.0663,0.67477,8.4411,1.5746,0.36423,3.2017,2.8943,42.0877,14.0153,225.7956,4.1119,4.2073,1.2548,1.8922,3.5095,6.1921,2.0571,2.8508,0.53907,5.6651,10.0363,26.8131,7.2431,2.453,5.122,1.8683,18.1012,5.7567,3.8299,1.169,2.8577,7.4069,13.1376,3.2235,3.8957,3.2361,1.4859,1.5949,4.7407,10.6004,2.8411,2.1022,10.5191,2.2584,2.3962,2.1122,12.8252,2.0671,3.4327,1.3397,13.8296,5.3595,8.3272,3.3041,11.1361,7.0293,6.6851,6.2131,3.4893,1.4024,4.6959,28,,MCI,0.07331,,,,0.37638,3.8738,4.1808,0.75549,9.8315,1.8107,0.38358,3.4931,3.263,42.1123,13.5405,231.4533,4.0561,4.661,1.4653,2.0224,3.9241,7.0622,2.1668,3.2673,0.68836,6.0352,11.1621,22.5303,8.124,2.2333,4.7746,1.9747,18.4156,5.0917,3.8633,1.0574,2.7924,8.8638,13.7589,3.0377,4.071,2.9628,1.5866,1.5569,4.3787,11.033,2.7786,2.1261,9.613,2.0188,2.3642,1.8467,12.6872,1.724,3.588,1.2807,15.3559,5.3899,7.0267,4.1087,10.2264,7.0635,6.6585,7.2049,3.1585,1.3367,4.4726,,,,,,,,,,,,,,,78,,,
-nG+FRE3T0MCI004,1.7918,2.263,,70-79y,Other,,,16.4676,4.65,2.3258,2.1492,1.8472,edsd,MCI,,M,,0.42626,4.3394,4.5025,0.98383,7.8224,1.507,0.38062,3.6252,3.1177,44.3414,14.0245,234.481,4.4271,5.0645,1.7409,1.9859,3.4587,6.9709,1.8884,3.2935,1.08,7.1014,11.891,26.646,6.8163,2.2737,4.7548,1.64,18.6128,5.576,3.7927,0.99106,2.4103,6.3584,14.521,3.7212,3.9801,3.4076,1.3963,1.5138,4.472,10.7108,3.2276,2.5572,12.102,2.8999,2.3144,2.5142,12.9802,2.5071,3.9674,1.2461,15.2437,5.0761,8.5936,3.4122,10.3845,6.9202,7.2452,7.6973,3.558,2.0659,4.7452,30,,MCI,0.07074,,,,0.38693,3.9506,4.1337,0.91609,9.4133,1.5605,0.37687,3.5571,3.263,44.7234,13.4651,234.7419,4.1216,5.3886,1.6863,2.0236,3.5307,7.2452,1.9149,3.5455,1.3282,7.5167,12.2302,24.5371,7.8474,2.0146,4.3869,1.6021,18.7735,5.154,3.5685,0.94454,2.3791,7.2435,15.3965,3.5384,4.2576,3.2545,1.4914,1.5604,4.1955,11.0979,2.9501,2.4221,10.0365,2.548,2.1878,2.144,13.319,2.0972,3.5342,1.1916,15.517,5.2471,7.7342,4.3813,8.8931,7.5918,7.4221,7.6637,3.6204,1.7041,4.3721,,,,,,,,,,,,,,,77,,,
-nG+FRE3T0MCI005,1.638,2.0759,,70-79y,Other,,,16.438,4.6477,2.258,2.215,2.023,edsd,MCI,,F,,0.36877,4.3795,4.2558,0.67372,8.6252,1.526,0.37038,2.8266,3.0729,43.9655,12.6795,187.7842,4.4532,4.2358,1.3091,1.9801,3.3382,6.4785,1.9196,2.83,0.98823,6.031,9.8794,27.0618,7.3711,2.3376,4.2041,1.7001,17.7781,5.8761,3.7203,0.94606,2.2947,6.5859,13.1768,3.2956,4.14,3.6754,1.4794,1.5031,4.0267,9.8588,2.898,2.3879,10.6316,2.2927,2.3997,2.3017,11.1521,1.8006,3.7607,1.249,12.8304,4.7759,8.0024,3.2329,9.0516,6.8049,6.6353,6.8749,3.6128,1.5333,4.484,25,,MCI,0.08508,,,,0.33687,4.3799,4.2546,0.74861,9.0055,1.6987,0.37411,3.2764,3.0644,42.7345,12.2102,190.114,4.1787,4.3989,1.4985,1.955,3.7548,6.5199,1.9057,3.1424,0.98229,6.2898,10.4651,24.0659,8.3148,2.1234,4.3957,1.6819,18.0849,5.4068,3.6591,0.91864,2.1266,6.9324,13.7816,2.7764,4.0199,3.2821,1.5588,1.5208,3.5659,9.1747,2.7598,2.495,9.8526,2.3147,2.3405,2.2209,10.9516,1.8109,3.7668,1.1606,12.4816,4.854,7.5731,4.0576,9.0019,6.9663,6.5668,7.2623,3.4384,1.5318,4.2637,,,,,,,,,,,,,,,77,,,
-nG+FRE3T0MCI006,1.8597,2.2503,,60-69y,Other,,,22.0641,4.7116,2.6687,2.2732,1.6516,edsd,MCI,,M,,0.36013,5.0472,4.8254,0.79975,8.6865,1.4939,0.3788,3.6542,2.5513,50.3468,18.4645,247.5545,4.9255,4.8328,1.4361,2.4317,3.7021,6.904,2.2327,3.3285,1.7776,7.4654,11.1838,20.8669,7.4604,2.2855,4.9476,2.1024,19.9508,5.9689,3.9113,1.23,2.8081,7.8222,14.0277,3.9308,4.6879,3.6939,1.5949,1.7605,5.2164,12.0823,3.0748,2.5954,12.5923,3.1789,2.4873,2.6377,13.6084,2.8052,3.4843,1.4442,14.7357,6.1341,10.0058,3.657,10.4425,7.6602,7.709,6.3763,4.372,2.1337,5.4606,25,,MCI,0.07962,,,,0.34783,4.2524,4.2562,0.90213,11.8125,1.8966,0.41411,3.6929,2.7281,48.9823,17.7409,257.664,4.3756,5.4773,1.6779,2.1701,4.0324,7.8367,2.39,3.8423,1.2206,7.0274,11.8356,15.3522,8.7088,2.4708,4.7915,2.0872,18.5568,5.4499,4.0581,1.4516,3.2335,9.4034,14.935,3.4373,4.5317,3.5992,1.8614,1.767,4.6815,12.6315,3.0946,2.4441,10.8522,2.4557,2.5508,2.1454,13.4558,2.123,3.6103,1.4287,16.53,6.7193,8.5362,4.4244,11.153,8.4027,7.9524,7.1233,3.6622,1.6989,5.2238,,,,,,,,,,,,,,,68,,,
-nG+FRE3T0MCI007,1.303,1.6704,,+80y,Other,,,14.5013,3.926,1.9635,1.8052,1.0877,edsd,MCI,,F,,0.31534,3.3593,3.6208,0.65091,7.3052,1.1283,0.30884,2.584,2.3065,36.6323,11.7864,168.3196,3.3813,3.2028,1.1807,1.7092,2.6099,5.6571,1.4716,2.4391,0.80996,4.7337,7.7916,16.1431,5.9051,1.8248,3.5663,1.301,13.927,4.7701,2.9874,0.8375,1.7162,5.0306,9.4157,2.6711,3.2516,3.3054,1.2189,1.3129,3.2871,7.5474,2.4135,1.9036,9.697,1.9191,2.0003,1.7202,10.6762,1.5973,3.1877,0.93605,10.8704,3.7126,7.5258,2.7428,8.9572,5.2296,5.7799,5.2112,3.0806,1.156,3.9387,21,,MCI,0.06808,,,,0.28468,2.7669,3.3216,0.68236,7.3881,1.2644,0.30427,2.8281,2.3944,37.0198,11.1152,172.6784,3.4696,3.7766,1.2539,1.668,2.7222,5.6155,1.5262,2.7004,0.75667,4.7703,8.2647,14.4921,6.3605,1.6103,3.4091,1.1999,14.1291,3.9098,2.9884,0.90001,1.937,5.4504,10.4835,2.4852,3.2956,3.1371,1.1439,1.3544,3.0558,7.8066,2.3072,1.8642,8.4134,2.0571,1.7994,1.5695,10.3155,1.6614,3.1153,0.91841,11.5987,3.9938,6.3937,3.8999,8.4191,5.9477,5.9261,5.7754,2.581,1.1985,3.7544,,,,,,,,,,,,,,,84,,,
-nG+FRE3T0MCI008,0.82014,1.8813,,60-69y,Other,,,13.8913,3.1358,2.0897,1.7692,0.81582,edsd,MCI,,F,,0.376,3.5274,3.3041,0.85018,8.336,1.2892,0.32784,2.5195,2.4613,26.922,8.7931,192.4074,3.0994,3.7098,1.6225,1.4353,2.6464,6.2328,1.5618,2.9587,0.39513,5.3421,9.8791,9.7537,6.1919,1.8431,4.0864,1.388,15.8475,4.9091,3.293,0.95253,2.1664,5.527,11.5238,2.4683,3.5111,2.5013,1.0686,1.2439,3.8391,9.1132,2.9627,1.9085,10.4314,2.0559,2.0244,1.8761,10.5874,1.6738,3.5668,0.97113,11.7258,4.3097,8.2933,2.8037,8.8161,6.35,6.183,6.9261,2.7935,1.3098,3.8961,28,,MCI,0.06425,,,,0.33877,3.1503,2.9994,0.82722,8.3539,1.6024,0.33234,2.6463,2.4875,34.594,9.9619,191.0961,3.1309,3.9576,1.5804,1.3705,2.9789,6.6602,1.5931,3.0628,0.43205,5.3595,10.4005,10.2081,6.4388,1.8036,3.8826,1.3504,14.8596,4.3924,3.4009,0.99196,2.1815,6.0696,12.435,2.1184,3.5715,2.6669,1.0875,1.2456,3.3487,8.9821,2.6696,1.8408,8.3866,1.726,1.9039,1.5118,9.573,1.5879,3.3107,0.89338,12.5051,4.0921,6.7642,3.3745,9.3816,6.4672,5.9582,6.8304,2.5902,1.0821,3.583,,,,,,,,,,,,,,,69,,,
-nG+FRE3T0MCI009,2.0548,2.2003,,70-79y,Other,,,16.4367,4.8159,2.6677,2.2356,2.2128,edsd,MCI,,F,,0.36521,4.6633,3.6793,0.61588,8.8703,1.3725,0.34677,3.1572,2.6902,44.6043,13.0851,186.1227,3.7078,4.1254,1.1851,1.7282,3.1138,7.0443,1.9584,2.5658,1.0902,6.5106,10.5929,28.1178,7.2396,2.0418,4.8805,1.5626,17.1683,5.8726,3.8057,0.98109,2.2928,6.6371,12.3186,3.4184,4.1374,2.6764,1.2029,1.385,3.9703,10.1583,2.7176,2.2477,10.1776,2.183,2.106,2.1192,12.0034,1.6366,3.1088,1.2771,14.2142,5.0925,8.5992,3.1419,9.686,6.1527,6.2932,6.4733,3.1957,1.3991,4.3835,28,,MCI,0.07564,,,,0.32035,4.6707,3.6026,0.62861,9.913,1.5401,0.34919,3.2294,2.5612,44.5338,12.5217,187.1765,3.6131,4.4648,1.2651,1.7466,3.5291,7.4692,1.9479,2.818,1.1172,6.667,11.0529,20.8672,7.5535,2.0076,5.1835,1.5256,17.4693,5.569,3.5983,0.91355,2.2481,6.8932,12.7816,3.1998,3.9382,2.878,1.4526,1.357,3.8347,10.3976,2.6261,2.2326,8.9765,1.8432,2.0353,1.9249,11.3471,1.5686,2.903,1.2499,13.3024,4.913,7.077,4.0964,9.3569,6.4836,6.3999,6.5284,3.1879,1.3568,4.1216,,,,,,,,,,,,,,,75,,,
-nG+FRE3T0MCI010,1.6335,1.64,,60-69y,Other,,,18.1667,4.7047,2.7361,2.2199,1.2841,edsd,MCI,,F,,0.41026,4.6754,4.0645,0.67729,8.5142,1.5935,0.34931,3.2925,2.9707,46.55,14.8168,227.9725,4.3847,4.2452,1.3674,1.9861,3.4617,7.1407,2.0406,2.6235,0.93226,6.567,10.1414,19.0423,7.1734,2.4132,5.2758,1.8406,20.4507,6.069,3.9993,0.97938,2.4105,6.9151,12.9082,3.431,4.2138,3.4061,1.5359,1.8143,4.728,10.6727,2.8595,2.4087,10.8325,2.5693,2.3344,2.3018,12.3655,1.9569,3.2834,1.2012,14.7414,5.3632,8.0809,3.4138,10.3305,6.9792,7.0505,6.9893,3.9839,1.6991,4.8963,22,,MCI,0.08606,,,,0.3393,4.0418,3.8477,0.755,9.4929,1.8409,0.35723,3.5653,2.9581,47.9629,14.5685,233.9581,4.2833,5.0469,1.5597,2.0541,3.6102,7.6467,2.0343,2.8766,0.80831,6.4022,11.2508,13.5658,8.1684,2.2267,5.1107,1.7926,19.14,5.1217,3.882,1.112,2.7527,7.7634,14.6607,3.084,4.2711,3.7979,1.5624,1.7739,4.4412,11.2544,2.7125,2.3109,10.214,2.7315,2.3034,2.138,13.1514,2.1015,3.1708,1.1482,14.3724,5.4416,8.1414,4.0972,9.197,7.7471,7.0589,7.7156,3.6155,1.7308,4.6409,,,,,,,,,,,,,,,68,,,
-nG+FRE3T0MCI011,2.4492,2.7068,,70-79y,Other,,,13.4202,4.0379,1.9487,1.7419,2.7381,edsd,MCI,,F,,0.33274,3.6764,3.7658,0.68034,7.7214,1.1709,0.32412,3.1377,2.6666,36.4376,10.191,154.0648,3.0663,3.8492,1.2728,1.5085,2.6019,5.9644,1.5814,2.7257,1.3342,5.4696,9.187,37.4298,6.8663,1.7794,3.7555,1.2612,14.3917,5.2153,3.1974,0.95454,1.863,5.3046,11.7048,2.9221,3.6751,2.6457,1.0427,1.2051,3.8282,8.8843,2.7676,2.1509,9.5154,1.5521,1.9466,2.0115,10.0965,1.39,3.1621,1.2045,11.5294,4.1638,6.9437,3.0659,9.3627,5.6132,5.4562,5.9373,3.0175,1.1446,3.898,26,,MCI,0.06805,,,,0.27774,3.324,3.5266,0.69473,9.1202,1.2616,0.32133,3.0725,2.5466,36.4172,10.0498,155.2651,3.0057,4.4469,1.2982,1.5568,2.8257,6.0894,1.4756,2.9109,1.5747,5.3178,9.9444,33.1003,7.2921,1.7255,3.264,1.2713,15.1883,4.5609,2.8596,0.78443,1.8416,6.1378,11.9962,2.4359,3.7932,2.7034,1.1581,1.2687,3.2841,8.8094,2.4313,2.1467,8.1811,1.4476,1.9135,1.805,10.0649,1.4138,3.0289,1.1013,11.7282,4.2906,6.1036,3.6908,8.0252,5.8607,5.4358,6.0942,2.9302,1.221,3.7026,,,,,,,,,,,,,,,72,,,
-nG+MAI1T5AD001,1.5757,2.3068,,60-69y,AD,,,18.9252,4.9801,3.0753,2.6122,1.2911,edsd,AD,,F,,0.44067,4.5408,4.1267,0.88019,9.2765,1.6258,0.40948,3.4526,2.7018,52.6494,15.5261,219.2785,4.43,4.8355,1.7904,2.0075,3.1436,8.0257,2.0827,3.0509,0.5124,6.6334,11.8236,14.6384,8.318,2.4243,4.9116,1.7445,18.0051,5.9404,4.2291,1.0871,2.3342,6.7864,13.9405,3.3791,5.0557,3.141,1.495,1.541,4.0093,9.5555,3.3523,2.2242,10.3083,2.336,2.6499,2.2022,11.4055,1.7895,3.6176,1.2399,13.9897,5.5021,9.6603,3.7167,10.9122,7.2202,6.9834,8.3901,3.7323,1.5502,5.029,27,,AD,0.07369,,,,0.37607,3.6059,3.9349,0.82482,10.0626,1.8017,0.38667,3.8968,2.644,53.872,15.0856,221.6299,3.9951,5.4218,1.7632,1.7788,3.4443,8.3507,1.9001,3.2171,0.59347,7.2177,12.1398,13.2917,9.2299,2.179,4.4497,1.5996,19.992,5.4263,3.8506,0.99414,2.5931,7.4242,14.9589,3.0921,5.0949,3.1581,1.3825,1.5865,3.6601,10.6316,3.1327,2.2158,9.7278,2.0761,2.32,1.9903,12.038,1.7196,3.5165,1.1721,13.8315,5.1764,7.6402,4.8322,10.0453,7.1283,6.5606,8.3723,3.4248,1.4243,4.7463,,,,,,,,,,,,,,,63,,,
-nG+MAI1T5AD002,1.0318,1.4807,,70-79y,AD,,,17.3583,4.5978,2.5404,1.9428,1.1215,edsd,AD,,F,,0.40888,4.1994,4.0654,0.77891,7.351,1.4873,0.35483,2.7872,2.6642,35.1182,15.9507,251.0024,3.6019,3.9551,1.582,1.8498,3.6591,6.4082,1.991,3.0774,0.55654,6.401,9.4931,16.483,6.6771,2.2633,4.4597,1.6947,16.929,5.1034,3.6766,0.88176,2.0058,6.5477,12.6595,3.4097,3.8126,3.029,1.4755,1.7194,4.555,9.759,2.9952,2.021,9.912,2.1503,2.2908,1.8273,10.4426,1.5947,3.402,1.1791,12.7603,4.7897,7.8429,2.9731,9.2975,6.3187,7.1192,6.6838,3.9592,1.2918,4.8289,26,,AD,0.07462,,,,0.3468,3.8395,3.9149,0.71864,8.7601,1.7298,0.34181,3.0094,2.5021,34.758,15.5711,252.5968,3.5586,3.9622,1.4331,1.6044,3.8378,6.1247,1.8439,3.0671,0.48238,6.7628,9.3651,12.6832,7.1912,2.2388,4.6756,1.6526,16.9474,4.6992,3.5027,0.85424,2.3443,7.0561,12.7733,2.7636,3.8431,2.5408,1.4161,1.7408,4.171,9.8462,2.6072,2.0289,7.6773,1.9497,2.2627,1.7823,9.7976,1.5772,3.3185,1.1514,13.3067,4.6608,6.8468,3.2599,8.9939,6.2928,6.769,6.9028,2.8968,1.1629,4.5376,,,,,,,,,,,,,,,71,,,
-nG+MAI1T5AD003,1.705,1.9622,,-50y,,,,17.6387,4.7526,2.52,2.1308,1.3861,edsd,,,M,,0.42314,4.3081,3.9399,0.81016,8.1347,1.5194,0.38388,2.9452,2.5326,47.6829,14.0371,207.9718,3.767,4.2067,1.567,1.7423,3.3437,7.2039,1.8109,2.9435,0.65681,5.7875,10.5797,20.0874,7.2232,2.2204,4.6398,1.7147,16.7287,6.0264,3.8464,0.82726,2.2657,6.3866,11.7806,3.2287,3.92,3.0311,1.3216,1.5288,3.8688,8.9573,3.1161,2.1922,9.29,2.1015,2.4872,2.249,10.5419,1.7077,3.4098,1.2572,12.3796,4.6711,7.9679,3.8424,8.8204,6.1163,6.4959,6.9877,3.4013,1.4683,4.7567,,,,0.07652,,,,0.35435,4.1933,3.8871,0.79656,9.5858,1.5423,0.37563,3.3619,2.5624,47.1622,13.8184,212.4621,3.8478,4.6451,1.5856,2.0217,3.3185,6.7617,1.9662,3.2314,0.57386,6.4462,10.5718,13.6408,7.6048,2.0749,4.6107,1.6735,17.9356,5.7265,3.6053,0.84214,2.1702,6.9936,13.5463,2.9346,3.967,3.5858,1.5566,1.5159,3.5546,9.1,2.8873,2.1365,8.7289,1.8993,2.2717,1.8749,10.932,1.5158,3.3925,1.2576,12.5015,4.4457,6.9534,4.6318,9.3173,6.1392,6.3973,6.8507,3.2215,1.2798,4.4807,,,,,,,,,,,,,,,,,,
-nG+MAI1T5AD004,1.8958,2.2178,,70-79y,AD,,,19.5678,5.4007,2.9853,2.379,1.8546,edsd,AD,,M,,0.4871,5.6036,5.7224,0.90499,9.1351,1.8863,0.47576,2.883,3.3583,48.7685,15.9533,247.3031,4.8883,3.8089,1.7413,2.421,3.8796,7.6226,2.3896,3.5722,0.97101,5.8914,11.4554,22.1617,7.9027,2.6731,4.8542,2.2059,21.8722,5.6353,4.6553,1.1345,3.2326,8.4889,14.5863,3.1483,4.1715,4.0353,1.7048,1.8386,4.9801,11.1584,3.3923,3.1656,11.3752,2.6291,2.8106,2.7252,12.6592,2.2886,4.5059,1.6804,17.0719,6.8019,8.9635,3.0447,10.7754,8.0185,7.6321,8.4673,4.7198,1.9453,5.3312,27,,AD,0.10334,,,,0.4137,5.2218,5.378,0.84734,11.3124,2.0829,0.47859,3.1833,3.4732,47.9031,16.1704,253.0074,4.7146,4.8917,1.6065,2.3116,4.2434,7.2526,2.2274,3.5946,1.2025,6.6247,10.83,24.1001,8.6542,2.5203,5.1245,2.035,19.8375,5.4599,4.3885,1.2605,3.2179,8.9955,14.6247,2.757,4.2046,3.5676,1.7599,1.8651,4.426,11.6043,2.9699,3.0362,9.6495,2.7449,2.7574,2.3358,13.6971,2.2942,4.2836,1.6682,17.0532,6.3351,7.9376,4.2425,10.5029,8.0255,7.3684,7.7616,3.817,1.7493,4.9713,,,,,,,,,,,,,,,74,,,
-nG+MAI1T5AD005,2.0299,2.3465,,60-69y,AD,,,19.5486,5.6373,2.6963,2.4622,1.9387,edsd,AD,,M,,0.46245,5.4798,4.6628,0.99176,8.3848,1.8539,0.40732,2.7433,2.3573,50.7872,16.8369,232.5789,4.3741,4.8912,1.9168,2.0178,4.195,7.683,2.3465,3.4198,1.3385,6.1025,12.5233,33.4058,7.868,2.6036,4.9032,2.1414,20.2197,5.3124,4.4896,0.87229,2.3482,7.8587,14.4218,3.6473,4.3069,3.6293,1.5012,1.6123,4.4991,11.03,3.3438,2.4456,9.1361,2.3224,2.5487,2.5369,11.0059,2.2361,3.6648,1.3751,15.2893,5.7415,9.2829,3.282,9.5487,8.3479,7.0968,9.4371,3.753,1.7603,4.8368,25,,AD,0.07916,,,,0.41601,4.8855,4.3379,0.96199,9.9596,2.1383,0.41794,2.9305,2.7794,48.9778,15.7789,241.6973,4.0601,4.7321,1.8976,2.1795,4.2709,8.1937,2.2547,3.5718,1.083,6.5161,13.1236,27.5036,8.3467,2.5275,4.652,2.1684,21.455,5.0577,4.2634,0.97994,2.3328,9.1132,16.2031,2.8536,4.0602,3.4648,1.5781,1.8306,4.2702,11.3053,3.1457,2.5381,8.6843,2.0498,2.332,2.2234,11.6594,1.9236,3.8067,1.3388,15.111,5.8085,7.2171,3.9274,9.5689,7.5164,7.2876,9.4414,3.5681,1.5259,4.9821,,,,,,,,,,,,,,,67,,,
-nG+MAI1T5AD006,2.4335,2.2218,,70-79y,AD,,,20.1268,5.2348,3.1022,2.5519,2.8942,edsd,AD,,M,,0.54746,5.7879,4.7668,0.85018,10.561,1.8573,0.4332,3.2695,3.2523,51.2861,16.2637,252.6338,4.8636,4.5287,1.6145,2.048,4.2798,8.1912,2.3903,3.0642,1.2163,7.4712,12.487,37.1856,7.9495,2.7365,5.0665,2.2306,22.2087,6.6482,4.5311,1.0533,2.9104,8.8695,15.049,3.6819,4.3266,3.5868,1.7511,1.7506,4.7127,11.096,3.2482,2.6767,10.6017,3.0943,2.7361,2.5826,13.5991,2.9964,4.2102,1.4624,17.2658,7.0051,12.1,3.3719,12.0709,8.8782,7.2896,8.4324,4.2928,2.0186,5.3218,25,,AD,0.10009,,,,0.49233,5.7576,4.7142,0.92825,11.7868,2.0576,0.44719,3.7575,3.273,51.6551,16.7208,256.9331,5.1466,5.0479,1.7793,2.3046,4.3942,8.6182,2.3084,3.0267,1.4616,7.6351,13.7426,29.6633,9.1203,2.4956,5.7806,2.1622,21.8063,5.6039,4.3013,1.1743,2.8466,9.613,17.1001,3.2211,4.81,4.1181,1.7098,1.7185,4.4357,11.7102,2.8835,2.6785,10.7699,2.7622,2.6904,2.4697,13.1425,2.3442,4.1402,1.4581,16.9044,6.2486,9.3326,4.0299,11.5215,9.4883,6.9125,8.8066,4.3531,1.8468,5.0063,,,,,,,,,,,,,,,71,,,
-nG+MAI1T5AD007,1.7391,1.907,,-50y,,,,17.4546,5.1586,2.8517,2.2832,1.6214,edsd,,,M,,0.36694,4.695,4.3225,0.60177,8.244,1.4503,0.36239,2.577,2.301,45.9432,17.01,245.6422,4.4055,4.1873,1.137,2.0911,3.6497,6.0491,1.9938,2.7899,0.9345,5.9881,8.8146,19.2761,6.4703,2.3733,4.8081,1.6649,20.7362,6.0671,3.7859,1.021,2.3043,7.372,10.0887,3.2332,3.9102,3.2124,1.6288,1.5937,4.2632,10.1896,2.5634,2.4293,10.8337,2.8574,2.2751,2.2179,12.3044,2.2086,3.5345,1.3309,14.4246,5.3446,8.3733,3.1069,9.8662,5.3564,6.9609,5.3971,3.8991,1.8736,4.782,,,,0.08504,,,,0.26249,4.1466,3.7727,0.5318,8.3779,1.7262,0.33266,2.5383,2.0018,45.5865,17.1083,233.252,4.3591,4.144,0.93517,2.1084,4.0664,5.5047,1.8103,2.6149,1.9548,5.9305,7.4539,20.3675,7.1455,2.2146,4.8699,1.6167,20.1227,4.7168,3.4874,0.95904,2.3664,7.6513,8.7517,2.563,3.9364,3.4657,1.5158,1.6193,3.6881,9.7858,2.1625,2.2136,9.8412,2.56,1.9507,2.0199,10.7852,1.8179,2.8828,1.2083,13.8721,5.115,7.4343,3.1742,9.4049,5.8004,6.3507,5.0697,3.6364,1.5917,4.3547,,,,,,,,,,,,,,,,,,
-nG+MAI1T5AD008,2.4682,2.739,,70-79y,AD,,,17.922,5.265,2.8821,2.4095,2.5729,edsd,AD,,M,,0.36604,4.7127,4.1591,0.87696,8.4519,1.7188,0.37438,3.2791,2.7058,48.6387,14.4678,194.9133,3.9282,4.2722,1.6481,1.8186,3.4426,7.1229,1.9565,3.1593,1.7937,6.2,10.4962,28.5032,8.1808,2.5265,4.5385,1.6862,17.763,6.0297,4.0818,1.101,2.1921,7.0865,12.4296,3.1621,4.4058,3.61,1.4014,1.5705,4.5039,11.1281,3.231,2.379,11.2932,2.4362,2.5752,2.2546,10.7422,2.4288,3.3512,1.1799,13.6917,5.4085,8.6945,3.4278,9.8091,6.9515,6.3839,7.4953,3.7665,1.8181,4.7552,21,,AD,0.06532,,,,0.29011,4.4838,3.817,0.79543,8.2026,1.7765,0.33823,3.6043,2.3874,47.2982,14.2406,184.7169,3.7962,4.6282,1.3929,1.6638,3.5851,5.7859,1.8661,3.2506,2.2907,4.8656,8.1681,42.5487,9.1893,2.2787,4.4369,1.5707,18.3073,4.1514,3.6869,1.1226,2.6924,7.2281,10.9055,2.6258,3.8839,3.0878,1.4234,1.546,3.5982,9.8266,2.7192,2.3488,10.0515,2.1232,2.3369,1.9848,9.9662,1.8463,3.1413,1.0816,13.9848,5.184,6.9484,3.8669,8.9923,5.9591,5.785,6.904,3.3442,1.5501,4.5291,,,,,,,,,,,,,,,76,,,
-nG+MAI1T5AD009,1.7245,2.2655,,-50y,,,,17.3862,4.8149,2.5642,2.4087,1.656,edsd,,,M,,0.38686,4.7178,4.4386,0.8218,9.0173,1.4374,0.34951,2.5087,2.7291,47.7822,15.1274,205.0069,3.9608,3.7881,1.5399,1.8814,3.2018,7.6169,1.8748,3.014,1.1402,6.0351,11.5223,17.4876,7.9083,2.2612,4.6949,1.6743,18.131,6.4153,3.701,1.0312,2.3185,6.6947,13.8784,2.8618,4.6582,2.889,1.5309,1.501,4.4101,10.4332,3.3079,2.5682,10.5975,2.3339,2.4157,2.5326,11.555,2.0301,3.2877,1.189,13.2053,4.9523,8.6034,3.1632,9.6091,7.0146,6.4181,8.5218,4.0303,1.9768,4.7556,,,,0.07898,,,,0.3252,4.3727,4.1455,0.67283,8.7247,1.7011,0.33917,3.1923,2.5394,48.0518,14.4953,201.9539,3.5949,4.4671,1.3386,1.7367,3.6471,7.0512,1.8319,2.7931,1.157,6.0951,10.916,17.9141,8.454,2.2048,4.3358,1.7641,16.7345,4.56,3.4898,0.94289,2.2491,7.5088,13.8663,2.4894,4.4021,2.7745,1.5397,1.5111,3.8961,10.2987,2.7583,2.4475,9.1566,1.7678,2.4092,2.1409,11.4501,1.8684,3.2359,1.1289,13.7628,5.4234,7.5826,3.7333,9.6761,7.7549,6.1025,7.4883,3.2797,1.4217,4.4339,,,,,,,,,,,,,,,,,,
-nG+MAI1T5AD010,1.148,1.9214,,50-59y,AD,,,18.3313,4.735,2.4811,2.0089,1.0312,edsd,AD,,F,,0.38088,3.8435,3.5203,0.75879,7.3516,1.4382,0.33326,2.9833,2.824,45.3645,16.5949,213.0231,3.7558,3.7876,1.5133,1.7447,3.0175,6.0799,1.9966,2.8311,0.83641,5.1321,9.8992,11.6214,6.1539,2.0673,4.4513,1.5214,16.5433,5.1021,3.6909,1.0935,2.3651,5.9184,12.3447,2.8267,3.4264,3.0443,1.3449,1.6283,3.8719,8.4504,2.8156,1.9472,9.8247,2.0723,2.0155,1.9149,11.4156,1.7322,3.046,1.0927,13.3816,4.9149,7.4303,3.1218,8.262,6.4601,7.1641,7.0717,3.3844,1.36,4.6267,22,,AD,0.08345,,,,0.34906,3.536,3.364,0.78877,8.0897,1.5324,0.32516,3.2904,2.765,45.9086,16.2345,213.239,3.1507,4.4174,1.5878,1.6913,3.1813,6.3436,1.8387,2.9507,0.73456,5.6325,10.8135,11.1642,7.2899,2.0493,4.356,1.5278,16.6176,4.5417,3.401,0.85757,2.3197,6.4877,12.8679,2.5345,3.7565,3.1839,1.3357,1.5992,3.4532,8.9011,2.6348,2.0113,9.0376,1.9454,2.0528,1.7805,10.7359,1.6654,3.0212,1.0228,13.5181,4.5952,6.673,3.8302,8.1985,6.6855,6.861,7.5813,3.2024,1.3028,4.3656,,,,,,,,,,,,,,,52,,,
-nG+MAI1T5AD011,2.0007,3.1127,,-50y,,,,15.8051,4.4944,2.4677,2.0488,1.6027,edsd,,,F,,0.35374,5.0481,4.5659,0.74291,8.714,1.5351,0.36412,3.0072,2.7129,42.4345,11.2156,186.0515,4.1895,4.1242,1.4211,1.8144,3.9277,6.9971,2.0894,3.0211,1.7636,6.2974,10.3938,25.7898,8.0496,2.3127,5.0957,1.8793,16.6234,5.3635,3.9652,1.1307,2.393,6.8858,12.6209,3.2931,4.5486,2.7484,1.404,1.4291,4.4336,10.1024,3.0252,2.6984,11.6356,2.387,2.5789,2.7803,12.404,2.1074,3.3894,1.2473,13.7966,5.0538,8.5755,3.2044,9.5354,7.4454,6.5673,7.4424,3.2866,1.7669,4.5147,,,,0.09045,,,,0.32753,4.1055,4.0828,0.73419,10.0401,1.8186,0.36691,3.1609,2.5676,42.0515,11.5206,188.2278,3.7899,4.1616,1.4342,1.7646,3.6364,7.4195,2.0422,3.1622,1.1466,6.8547,11.0199,22.0024,8.0981,2.3421,4.7105,1.8071,16.9497,6.0676,3.8541,0.9974,2.2653,8.4927,13.6382,2.7339,4.3364,3.3672,1.5783,1.5157,3.9462,10.1977,2.839,2.379,9.0906,1.9538,2.4206,2.1272,12.1226,1.8846,3.441,1.2872,13.0712,5.152,7.8793,4.0913,9.484,7.8856,6.3213,7.5046,3.3673,1.4361,4.3009,,,,,,,,,,,,,,,,,,
-nG+MAI1T5AD012,2.0518,1.7091,,70-79y,AD,,,18.4658,4.6172,2.3701,2.0275,2.0058,edsd,AD,,F,,0.32269,4.5631,4.2081,0.53621,8.3337,1.6155,0.31776,2.4011,2.5904,43.5792,14.9308,219.8805,4.3539,3.4888,1.0462,2.0412,3.3823,6.2158,1.9683,2.3086,1.3954,5.2755,9.1041,24.3512,6.7004,2.4051,4.4826,1.6642,17.7766,4.9258,3.8426,1.0283,2.3894,6.6487,11.9291,2.6167,3.4211,3.3094,1.4684,1.5956,4.1238,9.7817,2.6002,2.4977,10.4446,2.1041,2.1522,2.3843,10.8191,1.7707,3.3507,1.1247,12.771,4.5201,7.7141,3.0594,9.8225,6.3516,6.4279,6.4223,3.7933,1.4363,4.6251,22,,AD,0.07814,,,,0.32063,4.1339,4.2001,0.68661,9.5089,1.8134,0.33844,2.5845,2.7705,44.1127,14.8597,225.6701,3.7405,4.1195,1.3806,2.061,3.7229,6.8605,1.9449,2.6549,0.87142,5.4261,10.6744,19.5343,7.1372,2.2261,4.6893,1.7104,18.0906,4.3788,3.7639,1.1105,2.3443,7.5541,14.1593,2.2886,3.5627,3.7759,1.3933,1.566,3.75,9.8708,2.5383,2.6472,8.52,2.1797,2.0952,2.2952,10.3723,1.7839,3.4568,1.0849,13.7444,4.6765,7.4631,3.7281,9.4093,7.3081,6.3053,7.7307,3.4533,1.4672,4.4157,,,,,,,,,,,,,,,77,,,
-nG+MAI1T5AD013,1.7335,2.3497,,-50y,,,,18.842,5.1093,2.9139,2.5086,1.9452,edsd,,,M,,0.40036,4.9722,4.2475,0.71512,7.6735,1.6047,0.39049,3.1932,2.5448,50.5032,15.6924,220.1968,4.4796,4.5253,1.4232,1.9526,3.4419,7.0382,2.0176,2.8482,0.9762,6.1346,11.0005,23.7469,7.8092,2.5254,4.8373,1.7626,19.4487,5.2485,3.7044,0.93278,2.346,7.1578,12.9319,3.4953,4.4023,3.337,1.5516,1.565,4.196,9.9526,2.9862,2.3371,10.1649,2.3303,2.6031,2.444,12.6403,2.1318,3.3121,1.3923,14.8205,5.1325,7.6848,2.992,8.8356,7.4943,6.3334,7.4268,3.5155,1.7118,4.8951,,,,0.09024,,,,0.38019,4.514,4.466,0.86217,8.9804,1.6058,0.39953,3.0589,2.4479,49.7958,14.9069,226.8225,4.0521,4.2944,1.8249,2.1566,3.635,7.393,1.8973,3.3497,1.0524,6.41,11.8917,18.4747,8.3547,2.2932,4.8037,1.5732,18.7979,4.6092,3.4496,0.91355,2.4858,7.379,14.489,2.5911,4.3358,3.5255,1.6686,1.6076,4.2379,10.4514,3.0314,2.5593,8.407,2.2073,2.4891,2.236,11.6364,1.7366,3.4331,1.3351,14.2447,5.1077,7.1094,3.5453,9.3013,7.1836,6.4035,8.7804,3.4457,1.4867,4.7561,,,,,,,,,,,,,,,,,,
-nG+MAI1T5AD014,2.3493,2.1091,,60-69y,AD,,,18.2488,4.7782,2.7552,2.3524,1.6649,edsd,AD,,M,,0.40487,5.0318,4.0762,0.75988,8.5417,1.6986,0.38924,2.8557,2.6901,46.8547,15.9902,248.2285,4.0983,4.3319,1.446,1.87,3.4137,6.7408,2.3139,2.8485,1.1687,5.6291,11.0449,23.0601,7.1498,2.5233,4.7091,1.9772,20.1679,5.4664,4.4134,1.1249,2.723,7.5851,13.678,2.9998,3.8014,3.2817,1.4969,1.6217,4.5911,10.6669,2.8618,2.3242,10.647,2.1325,2.6159,2.4456,10.7097,1.7056,3.368,1.4052,14.5999,5.5968,7.7832,3.1863,9.7778,6.6764,6.9487,8.1635,3.8429,1.5925,4.9841,22,,AD,0.08981,,,,0.36072,4.3327,4.1953,0.84773,10.3104,2.0285,0.38895,3.3733,2.7183,46.4549,15.7885,259.9497,4.007,4.8917,1.5953,1.9271,3.9312,7.4396,2.2963,3.23,0.75266,6.6615,12.3722,17.1038,7.8219,2.5661,4.9935,1.9088,19.9341,4.7554,4.3291,1.1161,2.7166,8.5083,15.5069,2.686,4.1956,3.751,1.6176,1.703,4.0128,10.9989,2.7635,2.4064,9.9635,2.136,2.6695,2.3008,11.8631,1.8315,3.3727,1.378,15.5207,5.3515,7.9016,3.7048,10.8882,7.3975,6.7379,9.073,3.8534,1.5652,4.8238,,,,,,,,,,,,,,,61,,,
-nG+MAI1T5AD015,2.0909,1.9842,,-50y,,,,17.0245,4.9096,2.6663,2.1403,1.5952,edsd,,,M,,0.39511,5.0941,4.1751,0.86541,9.3998,1.4819,0.35503,2.6323,2.609,46.1531,14.1589,226.3817,4.0468,4.0817,1.5768,1.9224,3.3934,7.3371,1.9045,3.1412,0.98997,6.4182,11.1452,20.5697,6.7693,2.3518,4.8757,1.7523,18.4521,5.711,3.7584,1.0506,2.5031,7.2627,13.9634,2.764,3.8354,3.2242,1.5647,1.7385,4.106,10.4257,3.1765,2.2966,11.7131,2.5405,2.5225,2.3763,12.057,2.0261,3.4552,1.189,14.0051,6.0123,9.6918,2.7383,9.5733,7.7569,6.6249,8.2145,3.5148,1.7203,4.6676,,,,0.08037,,,,0.35116,4.5652,3.8806,0.83918,10.7304,1.7309,0.36136,2.6925,2.6115,45.3977,13.5201,228.1531,4.2634,4.2877,1.587,2.0149,3.6456,7.0984,2.0209,3.134,1.0017,6.7361,11.1006,17.501,7.3675,2.205,5.0172,1.7953,17.5666,4.822,3.7478,1.0923,2.3336,8.0824,14.516,2.1188,3.9088,3.0972,1.5709,1.6668,3.9776,10.746,2.8414,2.2006,11.1992,2.2039,2.2365,2.0833,11.9035,1.7268,3.4495,1.2283,15.0454,5.3303,8.0641,3.3494,10.2284,7.2625,6.2729,8.3403,3.5609,1.445,4.4646,,,,,,,,,,,,,,,,,,
-nG+MAI1T5AD016,1.7692,2.2777,,-50y,,,,18.7864,4.4861,2.5115,2.0817,1.6943,edsd,,,M,,0.39117,4.8586,4.022,0.70602,8.5795,1.6665,0.35331,3.1567,2.7995,45.7024,15.6678,231.8286,4.3056,4.0945,1.5204,2.0354,3.4071,7.2824,2.1497,2.7936,0.65395,6.5758,11.7124,15.7954,7.7475,2.5573,4.626,1.9573,19.8127,5.0735,4.3668,1.0262,2.6949,7.7799,13.963,3.0392,4.4682,3.4886,1.5858,1.6711,4.3723,10.3181,3.0222,2.1703,11.2482,2.7322,2.6018,2.4219,12.6866,2.316,3.4574,1.1654,14.2793,6.1762,8.9756,2.9199,10.2392,7.573,7.1101,7.8873,3.7006,1.7362,4.9371,,,,0.07654,,,,0.34273,4.1278,3.8533,0.59918,8.9771,1.8904,0.3396,3.617,2.6143,45.9484,15.0423,229.3533,3.9775,4.9487,1.3058,2.0843,3.6771,7.1384,2.0543,2.6107,1.0608,5.9028,11.4941,19.6921,8.3597,2.3599,4.4371,1.7934,19.1785,4.0075,4.1537,1.1779,2.75,8.9869,12.9644,2.3636,4.265,3.0623,1.72,1.7228,3.7771,10.2264,2.6071,2.2922,9.9668,2.4414,2.4519,2.1686,12.44,2.1247,3.3414,1.0663,15.9285,6.3356,7.467,4.0782,9.8733,7.3246,6.8344,7.4054,3.708,1.6079,4.7557,,,,,,,,,,,,,,,,,,
-nG+MAI1T5HC001,0.98147,2.0464,,60-69y,CN,,,15.5975,4.7538,2.3526,2.1388,0.98689,edsd,CN,,F,,0.42741,4.7647,3.7187,0.85866,9.1054,1.5534,0.3643,3.2148,2.8676,45.9534,14.0108,218.0444,3.8891,4.5931,1.6122,1.9606,3.1335,7.7943,2.0981,3.0832,0.40026,6.3359,12.039,10.1573,7.8698,2.3498,4.7222,1.8282,15.6377,5.5351,3.8902,0.97047,2.6527,7.3793,14.9584,3.2316,4.451,3.4183,1.4114,1.4314,4.4367,10.6416,3.1993,2.0334,11.4362,2.2962,2.4914,2.3093,12.9433,2.0222,3.3237,1.1575,15.2206,5.4435,8.9577,3.4129,10.1548,7.64,6.9676,8.135,3.6908,1.5839,4.4731,30,,,0.07021,,,,0.3887,4.1325,3.5875,0.86589,10.8312,1.8843,0.37323,3.4125,2.9099,45.7527,13.8725,222.1523,3.7412,5.1811,1.6748,1.9482,3.6814,7.7699,2.13,3.2916,0.54862,6.9335,12.6919,9.0393,8.2861,2.2869,4.4276,1.8624,18.6458,5.7511,3.8941,1.0391,2.7321,8.5302,15.1999,2.6114,4.5945,3.9426,1.5578,1.4538,4.0284,10.6378,2.8849,2.1012,9.7161,2.2849,2.3778,1.9496,12.0438,2.1118,3.4345,1.0987,13.6246,5.6201,8.4254,3.9845,9.798,8.0056,6.7328,7.8127,3.3345,1.3738,4.2378,,,,,,,,,,,,,,,64,,,
-nG+MAI1T5HC002,1.098,2.0007,,-50y,,,,15.9805,4.978,2.2839,2.1792,1.0822,edsd,,,F,,0.35496,4.1523,3.2997,0.761,9.2931,1.5505,0.34264,2.8318,2.5944,42.1947,13.8789,218.9022,3.7515,3.7986,1.4042,1.7317,3.2115,6.6439,1.99,2.9353,0.42583,6.2167,10.8075,12.5428,6.6851,2.2386,4.2148,1.6383,17.2184,5.9096,3.9021,0.94805,2.3509,6.6941,14.0834,3.0329,3.7679,3.3111,1.3787,1.3106,4.1078,10.1722,2.7655,1.9934,10.8993,2.012,2.1808,2.0734,12.0145,1.6876,3.2494,1.0943,13.9016,5.3982,7.9899,2.932,10.3844,7.3087,6.9922,6.8798,3.5508,1.4045,4.3463,,,,0.07305,,,,0.32059,3.6715,3.3852,0.77445,10.3245,1.7009,0.33672,3.1924,2.6216,41.9111,13.4103,222.8878,3.6395,4.5684,1.4866,1.9458,3.4031,6.6772,2.0809,3.0204,0.45832,5.8726,10.5808,10.239,7.151,1.936,4.057,1.5869,17.4987,5.4019,3.754,0.98014,2.3305,7.3052,13.8189,2.5237,3.6224,3.7248,1.2483,1.3347,3.6985,10.0636,2.5036,2.0205,10.0432,1.9492,1.8912,1.8649,11.5732,1.7331,3.23,1.0864,14.0331,5.3756,7.6472,4.1137,10.1367,7.3547,6.6087,7.07,3.1222,1.3829,4.1713,,,,,,,,,,,,,,,,,,
-nG+MAI1T5HC003,1.7884,2.0487,,+80y,CN,,,18.8247,5.3454,2.8875,2.4273,1.4859,edsd,CN,,M,,0.45254,4.7775,4.4212,0.85904,8.914,1.6461,0.40534,3.0459,3.0203,51.2977,15.5489,201.4517,4.4899,4.3278,1.656,2.0336,3.7527,7.929,2.1913,3.2341,0.65957,6.0011,12.9958,19.3908,7.7697,2.5738,4.7967,1.7804,20.0068,6.1301,4.3458,1.1695,2.7449,6.8283,15.709,3.392,4.3563,3.353,1.7338,1.523,4.434,10.3832,3.2634,2.4725,11.1282,2.8493,2.8316,2.5945,13.512,2.5636,3.5025,1.4414,15.5481,5.3845,9.1169,3.4548,11.6074,7.8012,6.8129,8.2217,4.0027,2.0395,4.8045,28,,,0.0765,,,,0.42506,4.0849,4.5114,0.91497,10.6387,1.8979,0.41953,3.2136,3.3825,50.7498,15.6096,205.3901,4.2331,4.8364,1.6968,2.2107,3.842,8.22,2.0653,3.619,0.96487,7.231,13.5076,17.0473,8.9171,2.456,4.5029,1.8048,20.2497,5.4456,4.0791,1.104,2.5889,8.0218,17.4594,2.7271,4.4433,3.8191,1.7914,1.5573,4.2111,11.2934,3.1871,2.4836,9.8726,2.2996,2.7909,2.3217,12.4228,2.1391,3.4333,1.3438,14.678,5.3134,8.2728,4.4519,10.2362,8.2643,6.6723,8.9394,3.9849,1.7588,4.6548,,,,,,,,,,,,,,,85,,,
-nG+MAI1T5HC004,1.0778,2.3561,,-50y,,,,21.4302,5.7021,2.8567,2.2812,1.3404,edsd,,,M,,0.52599,4.8177,3.8022,0.93694,8.6354,1.6399,0.3795,3.5363,3.5314,51.7551,18.6924,270.7394,4.0155,4.6995,1.8004,1.845,3.448,7.3417,2.094,3.3957,0.46197,6.5946,11.9217,11.7896,7.8045,2.3452,4.5753,1.9334,19.015,6.7995,4.1335,1.2448,2.8358,7.0902,13.9313,3.5934,4.1718,3.2747,1.3905,1.8178,4.1885,10.0897,3.2913,2.2624,11.6908,2.4296,2.4188,2.3368,12.417,2.1825,4.1583,1.1288,14.7828,5.566,8.5741,3.3599,10.2812,7.245,8.0711,8.1909,4.0589,1.6959,5.504,,,,0.07859,,,,0.47365,4.3893,3.8379,0.94615,9.9073,1.8675,0.37884,3.6251,3.6181,52.4729,18.3548,270.7593,3.9933,4.9417,1.827,1.8087,3.7271,7.5841,2.2056,3.538,0.72781,6.5615,12.0794,12.2649,8.7503,2.2557,4.2137,1.8424,17.8055,5.0435,4.1219,1.0728,2.6667,8.3722,14.54,2.8425,4.4684,3.2752,1.5199,1.8661,4.0397,10.0004,2.9862,2.3773,10.2644,1.9543,2.2669,2.2822,11.5471,1.7924,4.1009,1.1179,16.0953,5.6498,7.8137,4.4239,9.5575,7.8639,7.4638,8.4612,3.4042,1.6169,5.2468,,,,,,,,,,,,,,,,,,
-nG+MAI1T5HC005,1.2991,1.9365,,70-79y,CN,,,17.0633,4.4112,2.2922,2.2016,0.99997,edsd,CN,,F,,0.38521,4.6895,3.7334,0.81896,9.431,1.4915,0.35622,2.5355,2.1076,42.6192,14.195,204.3392,3.6307,3.9864,1.6097,2.0122,3.6495,6.6506,2.2582,2.9821,0.39153,5.9829,10.1853,7.6527,6.8608,2.126,4.5256,1.8038,18.8721,5.7951,3.9017,0.78936,2.2308,7.2392,13.3618,3.1216,4.0475,3.3711,1.4428,1.4886,3.9948,9.3243,2.9753,1.8908,9.4848,2.1503,1.9802,2.0488,9.9496,1.8636,3.136,1.1114,13.8689,5.198,8.9708,2.6808,8.2383,7.3967,6.5669,7.2224,4.115,1.244,4.5684,29,,,0.06768,,,,0.34606,3.6412,3.7258,0.79662,9.4821,1.6658,0.35834,2.7563,2.143,42.8216,13.5202,203.8109,3.344,4.3022,1.5363,1.7751,3.7123,6.7149,2.0468,3.0849,0.41352,6.2286,10.4622,7.9238,7.4506,2.1271,4.4139,1.7298,18.1155,4.978,3.6249,0.93322,2.4239,8.1367,13.4647,2.5707,3.9769,3.652,1.4826,1.4726,3.6622,9.4502,2.6687,2.0409,8.2043,1.8362,2.0613,1.865,10.0062,1.6388,3.1779,1.048,13.7241,5.1314,7.5447,4.0434,8.5994,7.546,6.2558,6.9409,3.7283,1.1903,4.3434,,,,,,,,,,,,,,,75,,,
-nG+MAI1T5HC006,2.154,1.814,,70-79y,CN,,,21.8183,5.3437,2.9397,2.4099,1.7692,edsd,CN,,M,,0.43857,4.9705,4.5935,0.9122,9.2381,1.5579,0.45297,3.6488,3.1553,52.9312,19.2974,281.4037,4.6128,4.6551,1.8925,2.0081,3.5871,8.4465,2.3001,3.2736,0.67293,6.819,13.5068,17.5087,7.9282,2.4614,4.7795,1.9723,19.5969,6.3374,4.2597,1.1342,2.877,7.1,16.1211,3.4271,4.7609,3.1865,1.5286,1.8463,4.4808,10.8777,3.446,2.7462,11.2548,2.8754,2.5482,2.8263,13.2622,2.5189,4.3575,1.4668,14.8471,5.9718,8.6043,3.5834,10.5103,7.5284,7.9311,9.2947,4.0213,2.0174,5.7709,27,,,0.08748,,,,0.37982,4.3991,4.571,0.9583,10.4568,1.7178,0.42654,4.0557,2.9664,51.4541,18.656,284.4215,4.5117,5.2486,1.931,2.0317,3.9597,8.1707,2.2986,3.5215,0.69059,7.0212,13.0245,13.6796,8.7891,2.3287,4.5169,1.9726,19.7097,5.0409,4.1427,0.96612,2.8094,8.2119,17.2692,3.0358,4.6508,3.7655,1.6416,1.8734,4.0659,11.3153,3.3221,2.8744,9.2692,2.7526,2.5634,2.5621,11.8337,2.3877,4.2333,1.4011,14.7021,5.8464,8.2241,3.8339,9.9047,8.618,7.5919,9.3517,4.0397,2.0162,5.486,,,,,,,,,,,,,,,71,,,
-nG+MAI1T5HC007,1.7737,2.6169,,60-69y,CN,,,20.0511,5.1312,3.1238,2.6203,1.3153,edsd,CN,,M,,0.42992,4.6834,4.193,0.90002,9.0159,1.5377,0.39569,3.107,2.6265,56.7564,17.4503,216.9257,4.1787,4.528,1.875,2.0063,3.4268,7.9662,2.4181,3.3067,0.68711,6.5311,11.5464,17.4652,7.9168,2.241,4.5076,1.8544,17.2614,6.6039,4.2172,0.93811,2.3054,7.2445,13.499,3.3266,4.8549,2.992,1.486,1.5431,4.0597,10.129,3.3939,2.3784,11.8499,2.3823,2.3246,2.3891,12.7485,2.0407,3.7359,1.3692,14.0278,5.799,9.3872,3.8516,10.6756,7.4204,7.053,7.9776,3.3893,1.5959,5.0523,30,,,0.07793,,,,0.38142,4.3058,4.0353,0.88504,9.8631,1.7418,0.39473,3.4253,2.7956,56.2714,16.2934,218.6139,3.8671,5.1768,1.7881,1.9656,3.801,8.0084,2.2039,3.4118,0.45382,6.5857,11.6498,11.8451,8.8478,2.1655,4.698,1.8468,17.8334,4.7311,3.77,0.91698,2.1777,7.8807,13.5532,3.0377,5.0191,3.182,1.5778,1.5439,3.8164,10.3762,3.0328,2.2177,10.313,2.0498,2.3019,2.1073,11.8972,1.845,3.6542,1.2053,14.6592,5.5635,7.9751,4.6594,9.1906,7.744,6.8947,8.383,3.4988,1.5578,4.8098,,,,,,,,,,,,,,,68,,,
-nG+MAI1T5HC008,0.94821,1.7785,,-50y,,,,16.7411,4.0109,2.5137,2.1104,1.1615,edsd,,,F,,0.44694,4.3787,3.8088,0.78801,8.3953,1.6815,0.38113,2.8543,2.8133,43.1576,13.0713,204.8485,3.806,3.9562,1.485,2.0164,3.2451,6.7178,2.1075,3.0526,0.352,6.3976,10.043,11.6928,6.9718,2.559,4.5037,1.7607,17.8216,5.345,4.2557,1.0924,2.4547,6.5407,12.722,2.9477,4.2453,3.7356,1.6183,1.3605,4.019,9.8994,2.9855,2.1073,10.9721,2.6416,2.6789,2.1285,11.3597,2.1929,3.3801,1.188,13.1603,4.8502,8.7262,3.1865,9.8936,6.5889,6.7714,6.2556,4.1668,1.7284,4.4371,,,,0.08687,,,,0.39144,3.9944,3.8964,0.81082,9.5333,1.7692,0.37037,2.8804,2.7826,42.862,12.7767,207.1482,3.941,4.1008,1.4659,2.0688,3.5073,6.6539,1.9519,3.1805,0.36495,5.9275,10.1011,7.6903,7.4103,2.3463,4.2888,1.7108,17.1072,4.6626,3.8145,0.90069,2.3321,7.1601,12.738,2.565,3.9511,4.2019,1.745,1.3718,3.6701,9.5987,2.7231,2.1873,9.2486,2.7577,2.4806,2.154,10.8445,2.1174,3.339,1.1324,13.7849,4.7457,8.062,4.1595,9.3888,6.6847,6.4579,7.0187,4.2047,1.7576,4.2416,,,,,,,,,,,,,,,,,,
-nG+MAI1T5HC009,1.1381,2.1155,,60-69y,CN,,,19.4859,5.1803,2.9146,2.359,1.2048,edsd,CN,,M,,0.46912,4.9365,4.3122,0.94418,8.3359,1.6953,0.40324,3.8477,2.9254,50.2409,16.4775,250.2604,4.2808,5.5077,1.8557,2.0271,3.4814,7.929,2.0647,3.3814,0.47793,7.0976,12.3832,12.4534,8.509,2.5896,4.9916,1.8644,22.1759,6.6359,4.0524,0.95426,2.4728,7.2562,14.59,3.6229,4.8903,3.5506,1.4998,1.5812,4.5827,11.103,3.4402,2.2083,11.7492,2.253,2.4362,2.6861,13.2247,2.0071,3.7431,1.2136,15.0348,5.8195,8.8807,3.9216,9.9701,8.5547,7.645,8.8122,4.1146,1.7775,5.26,28,,,0.08168,,,,0.3977,4.8714,3.9685,0.95725,10.7095,2.076,0.4067,4.2051,2.9449,49.3724,15.8199,251.5014,3.7037,5.9264,1.8859,2.0114,4.0191,8.1211,2.2758,3.5679,0.70599,7.4279,12.6562,8.5334,9.2206,2.5202,5.1655,2.0041,19.6171,5.7379,4.1763,0.88085,2.344,8.371,15.2634,3.4887,4.6594,3.9394,1.6825,1.57,4.1503,10.6337,3.1361,2.1718,9.5072,2.1838,2.5229,2.1977,13.3668,1.9862,3.7761,1.1771,14.5903,5.2916,7.9217,5.0085,10.0179,7.8592,7.2574,8.7938,3.9358,1.49,4.9907,,,,,,,,,,,,,,,67,,,
-nG+MAI1T5HC010,1.7635,1.9242,,-50y,,,,20.181,4.9609,2.9766,2.2871,1.8655,edsd,,,M,,0.45747,4.9562,4.5486,0.94616,9.7493,1.7032,0.40908,3.5196,3.2469,49.353,16.7592,247.7543,3.9955,4.9143,1.8532,2.0053,3.5467,7.7076,2.2119,3.6322,0.56756,7.5209,12.9047,18.1571,8.2718,2.4912,5.3445,1.8556,21.0272,6.1152,4.2769,1.0074,2.5666,7.6204,15.9462,3.8068,4.9493,3.4049,1.5814,1.7879,4.7499,12.1194,3.3717,2.5174,11.9908,2.2755,2.545,2.3794,11.9528,1.9472,4.1041,1.2777,15.1376,5.1896,8.6417,3.7044,11.5009,7.8346,7.627,8.5867,4.0681,1.6522,5.4334,,,,0.08496,,,,0.41653,4.6817,4.3715,0.9256,10.4015,1.8852,0.39288,3.7988,3.209,50.1687,16.6933,247.6455,3.776,5.6182,1.7475,2.1354,4.1515,7.759,2.2117,3.7437,0.71498,7.1181,12.4866,17.2587,8.7067,2.5304,5.4808,1.8856,19.2028,4.8565,4.0342,1.2084,2.8439,7.957,15.7167,3.2091,4.7296,3.3535,1.6749,1.7868,4.2029,11.8649,3.1553,2.5376,10.8847,2.4729,2.4394,2.1619,13.6885,2.1539,3.9642,1.2279,15.8485,5.3815,8.5693,4.4704,11.2573,8.6611,6.9086,8.5351,4.0489,1.5416,5.0292,,,,,,,,,,,,,,,,,,
-nG+MAI1T5HC011,1.8751,1.9879,,70-79y,CN,,,21.6469,5.2513,2.5881,2.2732,1.4963,edsd,CN,,M,,0.46676,5.0484,4.6632,0.88892,9.553,1.712,0.42318,3.6806,2.96,44.2208,17.0148,252.8184,4.3732,5.0088,1.5992,2.0404,3.6952,7.4774,2.1507,3.2358,0.44373,7.8621,12.2345,16.2363,8.0698,2.6652,5.164,1.9713,19.5364,6.1711,4.5705,1.206,2.8093,7.8366,15.5091,3.9967,5.3126,3.5357,1.7466,1.6728,5.0036,11.7641,3.2123,2.3709,12.3978,2.8163,3.1128,2.3682,12.4278,2.5498,3.8888,1.3784,16.7898,6.0978,9.8165,3.8774,11.9597,8.3032,7.7073,7.8021,4.5021,1.8456,5.4219,30,,,0.08878,,,,0.41207,3.9664,4.3956,0.90876,10.91,2.1787,0.41984,4.1066,2.7823,44.9029,16.5911,252.5748,4.6103,5.9936,1.6726,1.9532,4.1399,7.6692,2.1663,3.3869,0.6035,7.0775,12.869,13.5037,9.89,2.6452,4.9078,2.0802,20.2924,5.5313,4.2565,1.1911,2.5579,8.9175,15.7293,3.4106,4.8417,4.0695,1.7615,1.7266,4.7803,11.9644,3.0672,2.3431,10.2478,2.2238,3.0954,2.0673,12.4988,1.9471,3.8116,1.3277,15.5987,5.3621,8.188,4.4744,11.0118,7.2851,7.1371,8.4258,4.0204,1.4765,5.179,,,,,,,,,,,,,,,70,,,
-nG+MAI1T5HC012,2.2224,1.6965,,70-79y,CN,,,19.0873,5.7295,2.7544,2.2946,1.7409,edsd,CN,,M,,0.40661,4.7492,4.4273,0.87556,8.2205,1.6626,0.41673,3.0991,2.7414,47.9934,16.3434,212.556,4.6945,4.2253,1.7159,2.0577,3.4205,7.0588,2.2221,3.2225,0.6879,6.6269,11.3456,15.3171,7.7043,2.5762,4.542,1.7233,18.5906,6.2031,4.4698,0.97539,2.2393,7.1587,14.4608,3.5111,4.4226,3.2132,1.6339,1.5566,4.5228,11.5563,3.1607,2.5011,10.2569,2.6226,2.7605,2.6698,10.7284,2.3556,3.7459,1.379,14.1044,5.0398,7.9325,3.4312,9.1445,7.5535,6.4205,8.1949,4.2327,2.0204,4.5839,26,,,0.07799,,,,0.36502,4.3584,4.197,0.83986,9.2679,2.0187,0.4061,3.58,2.6719,48.6069,15.861,217.423,4.5316,4.9808,1.7484,2.1347,3.8636,7.1379,2.097,3.4839,0.93131,6.5811,12.5051,13.6761,8.2754,2.5362,4.4352,1.7393,18.5704,4.4528,4.2446,0.89143,2.212,8.2987,16.0082,2.9533,4.2793,3.9737,1.6906,1.6264,4.2651,11.011,3.0453,2.6554,9.0679,2.2493,2.6458,2.3573,10.4106,1.8814,3.636,1.3407,14.027,5.0383,7.6196,4.0175,8.6424,7.0984,6.0941,8.7133,4.1771,1.6713,4.4021,,,,,,,,,,,,,,,78,,,
-nG+MAI1T5HC013,1.4607,1.9231,,60-69y,CN,,,17.406,4.0998,2.3025,2.0744,1.2092,edsd,CN,,F,,0.45566,5.731,4.076,0.90411,8.6071,1.7596,0.42152,3.1292,2.8802,45.8795,14.8007,232.7609,3.9014,4.475,1.6546,1.8507,3.8123,7.6282,2.286,3.1557,0.46058,6.9906,11.2161,11.8938,7.7402,2.5102,5.7163,2.1694,20.2757,5.9604,4.3732,1.1174,2.7156,7.5771,14.5335,3.4704,4.5027,3.2356,1.4553,1.6993,4.0821,10.5003,3.1251,2.3017,11.0553,2.1431,2.5672,2.2468,11.5403,1.6008,3.9605,1.4156,14.2032,5.6403,9.2041,3.6985,10.2386,7.2026,7.1303,8.1809,4.0873,1.3387,4.7287,29,,,0.07821,,,,0.41859,4.8787,3.8483,0.89998,9.9345,1.9942,0.42467,3.2468,2.8799,44.969,14.2743,236.2717,3.9105,4.7931,1.7919,1.8272,4.2276,8.2799,2.4142,3.2398,0.37104,7.1576,12.0676,8.2125,7.9314,2.3789,5.682,2.1784,19.5598,5.1827,4.4043,0.88156,2.2727,8.7348,14.5391,2.9965,4.3781,3.3855,1.5772,1.7132,4.0842,10.6008,2.9001,2.198,9.9316,2.2372,2.5913,2.0195,10.9358,1.8903,4.0077,1.3251,15.3248,5.4292,8.2587,3.9312,9.8516,7.3592,6.6523,8.1233,3.5289,1.3967,4.5341,,,,,,,,,,,,,,,69,,,
-nG+MAI1T5HC014,2.1889,2.6021,,60-69y,CN,,,17.2224,4.7007,2.9126,2.1753,2.1928,edsd,CN,,M,,0.41851,5.2078,4.241,0.82955,8.7108,1.5591,0.37971,2.8329,2.7623,45.4351,14.4429,216.6593,4.1877,5.0822,1.6486,2.1194,3.6603,6.7324,2.2285,3.0623,1.1149,6.4085,10.3628,33.0922,7.7332,2.4718,4.7448,1.7961,18.6825,6.0827,4.1579,1.0284,2.5911,7.2885,13.2512,3.2935,3.9924,3.7512,1.6998,1.5667,4.2777,11.7941,3.1462,2.5549,9.3482,2.1322,2.2691,2.45,11.2645,1.7153,3.703,1.3543,13.6267,5.6455,7.8923,3.5227,9.905,6.7763,6.8546,7.2682,4.6862,1.6946,4.8185,29,,,0.06534,,,,0.37359,4.5861,4.0996,0.85597,9.768,1.922,0.36925,2.7547,2.6433,45.9326,13.8923,219.8081,3.6763,4.9072,1.6245,2.0558,3.9087,6.7859,2.1062,3.2315,1.3521,6.2496,10.3745,27.8541,7.9685,2.5695,4.4131,1.9441,18.6028,5.1992,3.8992,0.90442,2.2517,8.3811,13.0423,2.7022,3.7771,3.5463,1.7725,1.6242,3.8698,10.9873,2.7481,2.4003,8.8352,1.9541,2.3079,2.2112,11.5144,1.9731,3.548,1.2462,14.3595,5.6004,7.5626,3.9933,8.5477,7.0983,6.389,7.6852,4.0125,1.4877,4.5856,,,,,,,,,,,,,,,69,,,
-nG+MAI1T5HC015,1.6635,1.667,,70-79y,CN,,,15.9782,4.3414,2.4886,2.1739,1.5712,edsd,CN,,F,,0.43093,4.9454,3.8233,0.75706,9.2184,1.671,0.37217,2.868,2.9517,46.3665,13.5976,209.4858,3.891,4.011,1.5238,1.8338,3.3297,7.2979,2.0206,2.7903,0.63062,6.4625,10.8608,17.6733,6.9788,2.2746,4.9883,1.7697,19.8761,6.0511,4.0287,1.323,3.0645,7.0546,14.557,3.198,4.0762,3.2797,1.2876,1.4848,4.0665,9.9042,2.8891,2.1071,13.3253,2.0167,2.2573,2.2955,13.6664,1.7612,3.4716,1.2064,14.5211,5.8128,8.9568,3.3684,11.0209,7.5171,5.8789,7.9146,3.7102,1.3071,4.2753,29,,,0.08394,,,,0.38902,4.5469,3.7628,0.83404,10.7934,1.9274,0.38853,2.9111,3.0664,45.7536,13.5695,211.9412,3.9695,4.373,1.6676,1.9154,3.6906,7.3624,2.0692,3.1608,0.47172,6.3114,11.8823,11.9138,7.7665,2.346,4.9316,1.7698,19.5488,5.3743,3.9613,1.1282,2.5666,8.083,15.7273,2.5533,4.1414,3.601,1.5679,1.4437,3.9724,10.3754,2.816,2.1552,11.5448,1.8518,2.3362,1.9962,13.7294,1.5943,3.5193,1.1744,14.0106,5.8279,7.8463,4.204,10.0498,7.067,5.7788,8.0029,3.6244,1.3181,4.1648,,,,,,,,,,,,,,,70,,,
-nG+MAI1T5HC016,1.1435,1.9786,,60-69y,CN,,,20.9789,4.6296,2.9806,2.3099,1.1587,edsd,CN,,M,,0.45523,5.4149,4.9035,0.93311,9.5747,1.9205,0.40532,3.3652,2.796,49.9308,17.7471,251.408,4.261,4.9048,1.8225,2.2167,4.3061,7.7366,2.4791,3.2487,0.44459,7.4941,12.0957,9.3251,7.8815,2.8087,5.2524,2.1228,20.6867,6.998,4.6312,0.94449,2.3596,7.8726,14.356,3.9386,4.9495,3.2129,1.8108,1.7586,4.9408,11.1221,3.2606,2.4637,11.4977,2.3543,2.7016,2.5134,10.8132,2.0836,3.922,1.3161,15.1134,5.9413,9.5378,3.7664,10.8921,7.898,8.0637,8.47,4.0978,1.5416,5.6066,30,,,0.0839,,,,0.40741,4.7227,4.6047,0.90623,11.5141,2.1772,0.39981,3.5126,2.8016,49.9711,17.2068,252.8798,4.0349,5.1796,1.8405,2.0501,4.4396,7.4384,2.3144,3.3816,0.61029,7.6067,11.6005,10.0023,8.5437,2.5795,5.1262,1.9893,20.0268,5.5976,4.3741,1.1992,2.6164,8.9104,14.4125,3.1874,4.6581,3.2634,1.6705,1.7338,4.5284,12.1757,3.0333,2.4234,10.4138,2.0334,2.6173,2.1712,12.2964,1.7788,3.8073,1.2297,16.4195,6.5039,8.3045,4.1481,10.3709,8.1435,7.6786,8.255,3.5945,1.4193,5.2607,,,,,,,,,,,,,,,65,,,
-nG+MAI1T5MCI001,2.0592,2.9716,,60-69y,Other,,,19.4224,5.1119,3.0983,2.4767,2.1828,edsd,MCI,,M,,0.39708,4.2533,3.9716,0.6752,8.8765,1.6082,0.37206,4.0436,2.9163,52.6487,16.4934,219.4771,3.9395,5.2214,1.3252,1.8766,3.2432,6.3121,2.0025,2.8842,2.8079,6.8446,10.0583,35.4663,8.3309,2.3084,4.4754,1.6281,18.6762,6.9686,3.9294,1.0275,2.3978,6.3338,13.1477,3.7523,4.6941,3.4062,1.4284,1.6544,4.1658,10.3914,2.7592,2.146,10.7874,2.3306,2.43,1.9533,11.5103,2.2641,3.7419,1.1687,12.9521,4.9314,8.8968,3.6135,10.1226,7.83,7.2413,6.7961,3.707,1.5136,5.1048,,,MCI,0.07687,,,,0.3488,4.0314,3.7994,0.68032,10.21,1.6715,0.36923,3.8966,2.993,52.1784,16.2712,221.782,3.9721,4.9466,1.3279,2.0749,3.4846,6.3953,2.1135,2.9116,1.9578,6.7318,10.1379,22.6314,8.6663,2.1695,4.5939,1.7637,18.2727,4.7657,3.6462,0.99419,2.2614,7.1579,14.5233,3.2996,4.5124,3.8289,1.4891,1.6836,4.1739,11.1316,2.6322,2.1295,9.8458,2.1988,2.1149,1.9729,11.1433,1.9297,3.6883,1.1305,13.0426,4.9246,8.2705,4.0303,9.9145,7.8527,6.8573,7.2679,3.5429,1.4801,4.8589,,,,,,,,,,,,,,,67,,,
-nG+MAI1T5MCI002,1.1292,1.7046,,60-69y,Other,,,14.9737,4.3073,2.2432,1.8979,0.98114,edsd,MCI,,F,,0.3229,3.5363,3.1785,0.68323,7.634,1.3245,0.31183,2.0414,2.2554,37.5645,12.9972,166.051,3.1465,3.5516,1.3347,1.647,2.6873,6.0146,1.6965,2.5321,0.38757,5.2337,9.5933,12.4122,6.0848,2.067,3.9006,1.3169,15.5908,4.638,3.3153,0.94425,2.2649,5.2885,12.2667,2.6445,3.2681,2.9839,1.2794,1.146,3.0613,7.6789,2.6681,1.7402,9.5542,1.8012,1.9283,1.7825,11.2042,1.582,2.9976,0.99597,12.1091,4.5387,8.0225,3.0741,8.1832,6.3576,5.6673,6.1186,3.3288,1.1747,3.8854,27,,MCI,0.07015,,,,0.27157,3.1858,3.082,0.68458,8.3621,1.4283,0.30443,2.2371,2.2682,36.3493,12.3825,165.8618,3.3107,3.5413,1.3686,1.566,2.825,6.176,1.7214,2.7035,0.42906,5.215,9.9493,10.3441,6.2977,1.9844,3.7883,1.3142,14.8866,4.3704,3.2743,0.97386,2.2139,6.0534,12.731,2.2073,3.271,2.9772,1.3447,1.1609,2.9716,8.0933,2.5143,1.816,8.8763,1.6116,1.952,1.637,10.5813,1.4682,2.7905,0.95731,12.6073,4.577,6.3504,3.2518,7.2866,6.2157,5.4848,6.3459,3.0394,1.1214,3.6561,,,,,,,,,,,,,,,66,,,
-nG+MAI1T5MCI003,2.0795,1.5875,,+80y,Other,,,16.8748,4.6035,2.6837,2.2987,1.5639,edsd,MCI,,F,,0.38581,4.3208,4.1379,0.75047,7.5552,1.4925,0.37094,2.4942,2.8014,42.9856,15.809,208.5699,3.4338,3.7362,1.4384,1.7281,3.0876,6.1674,2.0281,2.8535,0.66927,5.6658,10.4329,16.8413,6.3126,2.3027,4.6092,1.6195,17.3096,5.0842,4.0888,1.0391,2.2378,6.2576,12.7032,2.9274,3.4415,3.286,1.4934,1.4248,3.9919,9.0322,2.8352,2.0413,9.6724,2.4893,2.4704,2.1972,12.1035,2.3003,3.1863,1.2723,12.8537,4.8699,8.6879,2.6668,8.4294,7.0583,5.9647,7.1829,3.8166,1.3618,4.3104,26,,MCI,0.08405,,,,0.36333,4.0939,4.0137,0.8053,8.727,1.7392,0.36874,2.8211,2.7109,44.7095,14.7578,212.1288,3.4837,4.2102,1.6047,1.8219,3.5418,6.6917,1.9263,3.2198,0.63939,5.9217,10.9634,17.1028,7.3228,2.1353,3.98,1.5906,17.9298,4.4501,3.9181,0.9308,2.478,7.1172,13.0638,2.4105,3.8626,3.3205,1.5532,1.4785,3.6384,9.3456,2.6897,2.0868,8.3787,2.1488,2.4919,1.8963,11.6113,1.737,3.2753,1.2357,13.5985,5.2152,7.3778,3.6081,8.0575,6.212,5.8336,6.9366,3.3817,1.2853,4.1359,,,,,,,,,,,,,,,80,,,
-nG+MAI1T5MCI004,1.5559,1.5382,,70-79y,Other,,,21.3172,5.3452,2.9019,2.6173,1.5208,edsd,MCI,,M,,0.46989,5.5532,5.316,0.98178,10.4839,1.4723,0.4324,3.0643,3.4016,47.6807,19.6686,272.8206,5.2749,3.8834,1.8067,2.4241,3.5318,7.2396,2.4717,3.6418,0.72399,6.717,11.7584,22.5706,7.7407,2.3507,5.2935,2.1111,20.0608,6.5278,4.4773,1.1405,2.7873,7.724,16.188,3.3803,4.2651,3.2658,1.5504,1.9322,4.8171,10.6903,3.3036,2.9309,11.7424,2.8887,2.6743,2.8054,13.6167,2.4095,4.2364,1.5834,14.8746,5.5681,10.4647,2.9982,10.8173,8.7394,8.3308,8.7519,4.1902,1.7583,5.4458,28,,MCI,0.08317,,,,0.41967,4.8039,5.3145,0.96308,11.0375,1.8561,0.4378,3.0736,3.3624,49.1356,19.0103,275.5598,4.8738,4.4464,1.7744,2.2342,4.1102,7.775,2.4356,3.7357,0.86054,5.9596,13.058,21.0918,8.1911,2.3599,5.2013,2.1857,20.661,4.8132,4.35,1.0775,2.4466,8.9508,15.9672,2.4873,4.14,3.2129,1.8669,1.9706,4.2336,10.7798,3.0673,3.3168,12.0025,3.2482,2.7181,2.6326,13.3306,2.25,4.0291,1.476,15.6876,5.7484,9.4078,3.6526,10.6511,8.6808,7.9724,8.9099,3.8567,1.8854,5.2788,,,,,,,,,,,,,,,76,,,
-nG+MAI1T5MCI005,1.8714,3.7549,,60-69y,Other,,,18.9611,4.551,2.7424,2.3995,1.3628,edsd,MCI,,M,,0.47268,5.0133,4.5085,0.99923,8.5451,1.3935,0.42389,3.1407,2.7306,48.5206,17.4471,277.4785,3.9082,4.0228,1.8556,2.0321,3.3232,7.3893,1.9996,3.5758,1.5041,6.1703,11.208,25.9844,7.4788,2.283,4.715,1.7707,20.1029,6.1769,3.6503,1.1086,2.6298,7.0839,14.0719,3.0981,4.2128,3.3958,1.373,1.7979,4.2804,9.5412,3.3795,2.4726,10.6431,2.37,2.3644,2.4591,11.8982,2.2687,4.2688,1.2581,15.0046,5.2937,8.2032,3.2747,10.3839,8.4616,7.7881,8.1256,4.1011,1.5632,5.2591,27,,MCI,0.09547,,,,0.42772,4.0944,4.3694,1.0214,9.5249,1.7656,0.4197,3.41,2.9795,49.3798,16.543,277.1635,3.5855,4.0595,1.9183,1.9232,3.8271,7.5062,2.0409,3.8748,0.83068,6.628,11.8861,18.5788,8.4697,2.3008,4.4531,1.7906,19.8372,5.1454,3.7841,1.2513,2.7126,7.5962,14.637,2.499,4.3085,3.4017,1.6353,1.773,3.9242,10.3895,3.3305,2.3947,8.9212,2.1497,2.316,2.1353,12.1028,1.9636,4.3524,1.1912,14.6523,5.0146,7.2978,3.3858,11.2632,8.0468,7.6957,8.3154,3.8261,1.468,5.0171,,,,,,,,,,,,,,,66,,,
-nG+MAI1T5MCI006,1.7028,1.8801,,60-69y,Other,,,19.4632,4.9412,2.7452,2.3699,2.0508,edsd,MCI,,M,,0.46279,5.0653,4.5576,0.94357,9.2893,1.7921,0.40885,2.7352,2.7014,47.6335,17.1,253.2682,4.5986,3.8144,1.6606,2.2501,3.7058,7.338,2.4546,3.3274,0.54888,6.8933,11.1448,19.6813,7.5164,2.5042,5.1709,2.032,18.5534,6.4884,4.4361,1.22,2.7873,7.7043,13.2646,3.8449,4.7097,3.7636,1.5248,1.7432,4.6815,11.0804,3.2146,2.5229,13.0472,2.8133,2.5346,2.4642,13.1306,2.2917,3.8487,1.4408,15.0927,5.515,9.726,3.144,9.7427,7.1852,7.349,7.0813,4.2711,1.8285,5.1787,26,,MCI,0.07616,,,,0.40335,3.8191,4.2546,0.99874,9.3221,1.9919,0.41275,3.0653,2.7537,47.6832,16.409,251.5132,4.2691,4.7934,1.8605,1.9896,4.2401,7.5851,2.2082,3.518,0.74874,6.9263,12.2734,19.5055,8.1837,2.4377,4.8032,2.1264,18.5718,4.6369,4.0896,1.0625,2.501,9.4104,15.1099,3.2839,4.3272,3.5849,1.5037,1.6725,4.0638,11.6781,3.1601,2.3467,11.473,2.3449,2.5591,2.0654,12.3701,1.7379,3.5981,1.305,15.6544,5.5948,7.6891,4.1761,9.257,6.8344,6.9236,7.8548,3.5809,1.3417,4.898,,,,,,,,,,,,,,,60,,,
-nG+MAI1T5MCI007,1.2524,1.7648,,70-79y,Other,,,18.8952,5.1619,2.8942,2.2487,1.253,edsd,MCI,,M,,0.3637,4.3178,3.9127,0.75193,7.8532,1.4641,0.34941,2.9029,2.4779,47.7378,16.4393,208.4223,3.8196,4.4206,1.5051,1.7537,3.2226,6.7072,1.8986,2.8044,0.59913,5.6511,10.2638,11.9184,7.2098,2.259,4.326,1.7254,17.9538,5.4755,3.688,1.1114,2.4768,6.4788,13.2022,2.9236,3.7863,3.4407,1.2833,1.5309,3.8501,9.4232,2.9875,2.2165,9.9641,2.2099,2.2951,2.3099,11.0987,1.8754,3.7227,1.1166,13.2132,4.9835,7.6911,3.0195,9.131,7.1043,6.9887,7.2069,3.4713,1.5064,4.7916,26,,MCI,0.08013,,,,0.32337,3.796,3.6869,0.75542,9.2794,1.7341,0.34884,2.9077,2.3429,47.0187,15.5311,208.0846,3.5675,4.5978,1.5398,1.7524,3.524,6.8726,1.927,3.0192,0.69273,5.9165,10.6387,10.9448,7.7062,2.0948,4.1302,1.7375,17.6055,4.62,3.5726,1.0295,2.2594,7.3454,12.9491,2.5652,4.0858,3.5344,1.3489,1.5049,3.4425,9.4506,2.6595,2.1973,9.2046,2.0579,2.1665,2.0206,10.7378,1.8743,3.5597,1.1018,13.8968,4.761,7.4666,3.6634,8.7778,6.5685,6.7483,7.2278,3.3557,1.413,4.609,,,,,,,,,,,,,,,71,,,
-nG+MAI1T5MCI008,1.7667,2.0757,,70-79y,Other,,,15.0058,4.8972,2.5637,2.374,1.8052,edsd,MCI,,F,,0.29104,3.6205,3.3815,0.65911,7.8407,1.3809,0.30681,2.6632,2.4308,43.9089,13.2882,169.618,3.5536,3.8821,1.3117,1.5738,2.9207,6.1212,1.6724,2.3904,0.85966,6.1186,9.4973,16.912,6.6139,2.1077,3.6587,1.3178,17.3748,5.3467,3.3495,0.94483,2.0826,5.8191,11.2481,2.8188,3.882,3.235,1.2695,1.2696,3.8224,9.1429,2.6174,2.0284,10.7265,1.8363,2.1207,2.0026,10.6166,1.3453,3.0077,0.97308,11.1715,4.5158,7.7769,3.0239,8.244,6.0181,5.6047,6.5334,3.2073,1.1515,4.0842,27,,MCI,0.06534,,,,0.26494,3.2474,3.1181,0.63979,8.2616,1.5399,0.31457,2.7943,2.3371,43.2699,13.2443,168.8952,3.6505,4.1507,1.3194,1.547,3.266,6.0292,1.7086,2.4729,0.80942,5.6021,9.4754,14.8834,7.1949,1.9455,4.0283,1.3406,16.3607,4.1239,3.3423,0.92791,2.1893,6.3421,11.7952,2.2023,3.6822,3.0185,1.2867,1.2718,3.4067,8.9617,2.3512,1.9205,9.5777,1.911,2.0447,1.8385,10.6755,1.4323,2.8162,0.97823,12.246,4.3692,7.0421,3.2066,8.751,6.4643,5.5917,6.6063,2.9747,1.1819,3.8767,,,,,,,,,,,,,,,72,,,
-nG+MAI1T5MCI009,2.2232,2.3713,,70-79y,Other,,,17.5233,5.412,2.5698,2.4097,2.0344,edsd,MCI,,F,,0.49937,5.3908,5.1585,0.83327,10.3589,1.874,0.44246,2.7674,3.2484,48.3291,14.2885,207.1667,5.4632,4.2724,1.6488,2.4767,4.1641,7.698,2.7388,3.4019,0.70448,7.2798,11.7136,27.2133,8.0202,2.9062,5.7541,2.2419,20.7531,6.9135,5.068,1.1415,2.8933,8.2845,14.9929,3.3014,4.6028,4.5503,1.9428,1.4462,4.8217,12.1553,3.4536,2.9166,12.3878,2.7218,3.0354,3.0548,13.9639,2.599,3.8576,1.6627,15.9932,5.684,9.9955,3.4527,11.4038,8.6959,6.79,8.883,4.8917,2.3404,4.6654,25,,MCI,0.09914,,,,0.38699,4.8619,4.7612,0.72539,10.5766,1.9924,0.43386,3.1364,3.1983,47.5632,14.2836,204.2511,5.3782,5.1406,1.4118,2.2825,4.3192,7.1548,2.6615,3.2705,0.92013,6.9142,11.7478,22.5744,8.3625,2.8092,5.1739,2.2046,20.7405,5.6223,4.7054,1.1752,3.1823,9.4497,15.6628,3.0519,4.3718,4.0074,2.0147,1.3918,4.2617,11.966,2.7816,2.6455,12.2547,2.8392,2.9609,2.5514,15.2012,2.3664,3.6951,1.564,15.8186,5.948,9.3669,4.2818,10.7296,9.013,6.4733,7.5177,4.5645,1.9393,4.2961,,,,,,,,,,,,,,,78,,,
-nG+MAI1T5MCI010,2.0283,2.1079,,70-79y,Other,,,20.4839,5.1451,2.6899,2.2037,1.9669,edsd,MCI,,M,,0.39364,4.3574,4.2118,0.64098,7.3997,1.5479,0.36143,2.7603,3.0276,46.5014,16.9448,235.5834,4.0944,4.0584,1.3227,1.9185,3.2977,6.8443,2.041,2.6789,1.2937,6.2837,11.0186,26.1031,6.9013,2.3008,4.5419,1.7188,17.9842,5.3522,3.8704,0.98826,2.242,6.823,13.1422,3.1687,4.2366,2.9118,1.4924,1.7012,4.3011,10.6302,2.8473,2.2366,10.0361,2.1338,2.434,2.2493,10.9252,1.8586,3.9563,1.2561,12.6499,4.8718,8.102,3.3078,9.0186,6.8428,6.8559,7.4774,3.9061,1.4376,5.3211,27,,MCI,0.0837,,,,0.3469,3.6612,4.1583,0.66017,9.4406,1.7927,0.35979,3.0608,2.9772,45.4788,16.2781,239.7919,3.9293,4.3653,1.3624,1.919,3.7151,6.6787,2.1974,2.9331,0.9527,6.3717,11.0369,23.1823,7.5903,2.2757,4.2896,1.8408,18.3593,4.6587,3.8121,0.87342,2.1484,8.0739,14.5227,2.5498,3.9044,3.2263,1.5458,1.7509,3.9989,10.8285,2.619,2.3244,8.7332,2.0257,2.2575,2.1415,10.6051,1.9026,3.8225,1.249,12.9467,4.8756,6.9161,3.5424,9.0229,7.8222,6.8637,7.7935,3.6752,1.4521,5.131,,,,,,,,,,,,,,,76,,,
-nG+MAI1T5MCI011,0.96939,1.2928,,+80y,Other,,,15.854,4.1318,2.2142,1.8978,1.0812,edsd,MCI,,F,,0.35225,3.8259,3.4425,0.6127,8.2659,1.258,0.32299,2.6232,2.5484,40.9443,13.3298,180.6172,3.3778,3.9205,1.2699,1.7192,2.9165,5.3721,1.9121,2.3258,0.47649,5.3417,8.338,12.59,5.8129,2.1752,3.713,1.5344,16.5488,5.5991,3.5479,0.86559,2.1072,5.8518,10.8007,3.3184,3.5476,2.8946,1.4418,1.3368,3.5591,8.6749,2.4191,1.9531,9.4062,2.2883,2.3937,1.9755,11.2346,1.8732,3.0212,1.1594,13.1717,4.71,7.8777,3.3708,10.1177,6.0194,5.9888,5.9722,3.4748,1.3116,4.216,25,,MCI,0.07429,,,,0.30571,3.393,3.3663,0.61742,8.749,1.6117,0.32011,2.8328,2.5199,40.571,12.8056,184.0221,3.5447,4.3684,1.2592,1.665,3.3842,6.2374,1.8495,2.5696,0.54235,5.5892,9.6919,11.8023,6.769,2.1403,3.8262,1.4928,15.6178,4.3254,3.4517,0.8514,2.0719,6.4642,11.5183,2.6264,3.6956,2.9641,1.4629,1.3261,3.0891,8.5374,2.336,1.9926,9.6469,1.974,2.2256,1.7402,10.8511,1.5249,2.7476,1.122,14.5163,4.7844,6.903,3.9745,8.5176,5.7387,5.8067,6.427,3.1827,1.2381,3.9973,,,,,,,,,,,,,,,83,,,
-nG+MAI1T5MCI012,2.1872,1.9933,,+80y,Other,,,16.7766,4.5116,2.4153,2.0943,2.4417,edsd,MCI,,M,,0.38052,4.6228,4.4668,0.83577,9.7383,1.4409,0.39599,2.9567,2.3038,41.5099,14.7727,200.2379,4.3708,4.3864,1.4931,1.84,3.4425,6.3769,2.0637,3.0646,0.90545,5.9709,10.3478,39.4973,6.9489,2.2494,4.6951,1.7996,20.0958,6.6411,3.7917,1.1734,2.392,6.9421,13.1911,3.4565,3.9485,3.215,1.3832,1.5129,4.3969,10.7269,2.9995,2.6305,11.7189,2.399,2.4527,2.4901,12.1468,2.0921,3.5089,1.4188,14.2183,4.9381,8.3596,3.5299,10.1041,6.6285,6.431,6.9161,3.8254,1.8194,4.6214,28,,MCI,0.07994,,,,0.30689,4.3461,4.2298,0.73342,9.8651,1.7096,0.3861,2.8436,2.2934,41.0899,14.6255,201.7523,4.2449,4.7794,1.3665,1.8223,3.559,6.6588,1.9296,3.1141,0.90312,6.6274,10.7446,31.9599,7.457,2.5055,4.6503,1.8043,20.0742,5.5448,3.6669,1.161,2.4373,7.5534,14.8189,2.9165,3.9168,3.032,1.6491,1.4423,4.074,11.2957,2.6701,2.4931,9.9542,2.0647,2.497,2.1838,12.4882,1.9325,3.2393,1.3131,12.7821,4.9632,7.2501,4.6134,11.0487,7.8384,6.2917,7.0417,3.5895,1.6481,4.3105,,,,,,,,,,,,,,,80,,,
-nG+MAI1T5MCI013,0.91253,1.6145,,60-69y,Other,,,21.302,5.2162,2.8859,2.4037,1.3758,edsd,MCI,,M,,0.43745,4.543,3.6726,0.83008,8.8545,1.5801,0.38333,3.1074,2.6277,47.9699,19.534,268.0351,3.9881,4.3545,1.6648,1.7366,3.4301,6.8769,2.2761,3.1856,0.4383,6.1785,10.9849,9.1183,7.0559,2.2929,4.3981,1.7545,17.8887,5.8314,4.2374,1.1895,2.6202,7.1516,13.0046,3.895,4.3198,2.9191,1.3513,1.7719,4.0697,10.0951,3.0763,1.9937,11.6035,2.0094,2.4373,2.0384,11.9634,1.6047,3.8715,1.2818,14.4765,5.7857,8.0248,3.8687,10.2664,6.6392,7.4289,7.2737,3.4399,1.2839,5.2367,20,,MCI,0.07952,,,,0.39689,4.3927,3.7443,0.84643,10.8415,1.8044,0.37882,3.0493,2.7612,48.6657,18.8763,274.269,4.0594,4.6875,1.6416,1.8849,3.5586,7.0307,2.1538,3.4038,0.54312,7.1621,11.3758,8.7032,7.9926,2.1953,4.7897,1.7094,18.3811,5.3797,3.8495,1.0299,2.3312,7.7032,14.0121,3.3914,4.4075,3.3159,1.4291,1.7834,3.9757,10.3809,2.7134,2.0485,9.5905,2.2033,2.1409,1.8574,11.9822,1.8111,3.7231,1.1415,14.2123,5.2241,9.2243,4.5727,10.1279,7.6245,7.1126,7.8174,3.3019,1.3485,5.0116,,,,,,,,,,,,,,,66,,,
-nG+MAI1T5MCI014,1.3169,1.7177,,60-69y,Other,,,18.68,4.5578,2.5511,2.1004,1.1484,edsd,MCI,,F,,0.39092,4.4609,3.9064,0.77185,8.5799,1.463,0.36948,2.3553,2.5622,46.2035,14.7328,201.4843,3.5647,3.7566,1.4953,1.9966,3.2982,6.643,2.0545,3.0792,0.51484,5.3327,9.618,9.6884,6.5798,2.2357,4.4969,1.702,16.8229,5.1746,3.6965,1.2771,2.8353,6.2133,12.9639,2.3736,3.6955,3.3423,1.4314,1.5146,4.1962,9.3708,2.8665,2.1578,10.0157,2.224,2.2111,2.1307,12.3857,1.9722,3.2674,1.2512,13.6172,5.0962,8.34,2.9212,9.4851,6.7973,6.6196,6.8573,3.7177,1.5514,4.6521,29,,MCI,0.07642,,,,0.35802,3.9884,3.7953,0.76722,9.611,1.6875,0.37354,2.4799,2.5737,46.5046,14.6035,203.9915,3.9048,3.8715,1.4669,1.7477,3.3539,7.1609,2.0211,3.2704,0.48748,5.3023,9.9814,8.265,7.3832,1.9966,4.5323,1.6566,16.6476,3.8406,3.6023,1.0838,2.6567,6.8416,12.6398,2.0991,3.6815,3.0608,1.3797,1.4964,3.8419,9.6078,2.7112,2.2004,9.7921,2.2493,2.0825,2.1182,11.5262,1.9094,3.3206,1.1747,14.2661,5.1399,7.6077,3.4045,9.4309,7.0455,6.3611,6.726,3.229,1.5607,4.4224,,,,,,,,,,,,,,,63,,,
-nG+MAI1T5MCI015,1.6891,1.911,,70-79y,Other,,,17.0912,4.447,2.4701,2.1788,1.7177,edsd,MCI,,M,,0.38856,4.5432,3.9356,0.75395,8.2307,1.4042,0.41347,2.0088,2.6431,27.3723,13.5003,206.0394,4.0958,3.0914,1.4315,1.8394,3.178,6.8111,1.9794,2.749,0.84058,5.1852,10.589,18.2211,5.6169,2.0882,4.0432,1.7602,17.1518,5.118,3.8396,0.91153,2.2791,6.4821,12.1722,2.4048,3.3533,3.2688,1.2523,1.3657,3.7688,9.2097,2.7836,2.2773,9.8737,2.3091,2.3944,2.3136,11.6058,2.1307,3.278,1.4896,12.6328,4.4778,7.416,2.5742,9.8046,7.006,6.3614,7.06,3.4934,1.8083,4.8843,25,,MCI,0.10986,,,,0.33253,3.9022,3.9964,0.73354,9.6946,1.5457,0.38533,2.3608,2.6329,28.1916,13.1626,209.8405,3.8309,3.9689,1.4296,1.8946,3.3744,6.9996,2.0098,2.7568,0.78206,4.9966,10.9298,16.1464,6.3471,2.1515,3.9635,1.7633,18.1699,3.9986,3.6316,0.81059,2.0692,7.3543,12.97,2.0591,3.335,3.183,1.6624,1.4486,3.3847,9.3965,2.578,2.3575,9.091,2.4114,2.4309,2.2136,11.0874,2.1681,3.3097,1.3989,12.9211,4.6001,7.4893,2.7962,8.6091,7.1533,6.137,6.9164,3.5756,1.6241,4.3919,,,,,,,,,,,,,,,73,,,
-nG+MAI1T5MCI016,1.2241,1.3928,,70-79y,Other,,,14.8189,3.856,2.1951,1.9258,1.4058,edsd,MCI,,F,,0.39595,3.6164,3.473,0.62575,7.1037,1.3592,0.31996,2.1419,2.7264,39.2713,12.0742,172.7608,3.5289,3.276,1.2354,1.5598,2.7572,5.8168,1.8211,2.4984,0.85943,5.0125,8.6997,17.2999,6.0214,1.9433,3.8008,1.4795,16.5744,4.4411,3.4097,1.0571,2.4209,5.5221,11.5039,2.2135,3.4407,2.7994,1.1488,1.3443,3.3313,8.1058,2.488,1.7432,8.9833,2.0626,2.0132,1.9545,9.9601,1.8672,3.3818,1.0318,12.0462,4.4567,7.7045,2.6071,8.188,6.8052,6.0221,6.5678,2.9272,1.288,4.171,26,,MCI,0.07026,,,,0.35805,3.0563,3.424,0.62618,8.2788,1.532,0.33202,2.1377,2.9308,38.9738,11.7407,169.4901,3.2976,3.3716,1.2126,1.4845,3.1138,5.7713,1.7245,2.7624,1.1237,5.3459,9.0415,17.4891,6.4027,1.9258,3.616,1.5083,16.2045,4.5401,3.2048,0.89699,2.2297,6.2368,11.7,2.2572,3.4624,2.8626,1.2201,1.3428,3.0816,8.3383,2.283,1.8782,8.1605,1.8895,1.9847,1.7656,10.8223,1.6495,3.3584,1.0433,11.0853,4.1068,6.8721,3.0572,7.8011,6.1488,5.7143,6.6466,2.8891,1.2052,3.9488,,,,,,,,,,,,,,,72,,,
-nG+MAI1T5MCI017,1.4128,2.2159,,+80y,Other,,,14.7621,4.569,2.4202,2.4258,1.4577,edsd,MCI,,M,,0.32409,4.0468,3.6205,0.68516,7.0736,1.2468,0.32656,2.7609,2.1582,44.4994,12.4404,169.8775,3.3405,4.0812,1.4088,1.6136,2.837,6.699,1.7144,2.7187,0.87975,5.7611,10.0698,20.429,7.1987,1.9352,3.8849,1.4512,15.6616,4.2735,3.3512,0.93562,2.0043,6.2928,11.8918,2.842,4.2322,3.2499,1.1783,1.3088,3.7243,8.6462,2.8801,1.9278,8.6894,1.8287,2.1794,1.8628,10.8802,1.6105,3.2296,1.0109,12.6978,4.4534,7.0271,2.71,8.3972,6.213,5.7188,6.6038,3.2472,1.1242,4.0373,28,,MCI,0.07035,,,,0.27168,3.5062,3.5926,0.66054,8.9382,1.4501,0.31773,2.9551,1.941,44.8015,12.3163,172.0283,3.1152,4.2634,1.4152,1.6328,2.957,6.6989,1.6958,2.8982,1.139,6.0335,9.5259,16.8999,7.4134,1.8577,3.854,1.4028,14.8746,4.1451,3.2018,0.92446,2.0981,6.741,11.4705,2.1902,4.1711,3.0043,1.3185,1.3283,3.4019,9.385,2.6237,2.1427,7.7493,1.7421,1.9982,1.7705,9.3404,1.4709,3.0357,0.99535,13.9343,4.4488,6.097,3.3486,9.9975,5.9102,5.6653,6.5621,3.1378,1.1932,3.8287,,,,,,,,,,,,,,,80,,,
-nG+MAI1T5MCI018,1.8198,1.9902,,50-59y,Other,,,22.0227,5.4193,2.517,2.4125,1.4817,edsd,MCI,,M,,0.41514,5.0139,4.5741,0.93247,8.2497,1.6054,0.4105,2.614,2.3463,48.2143,19.6858,268.7903,3.8697,3.5239,1.7135,1.9711,3.1803,6.9149,2.2165,3.4106,0.60686,4.866,10.3433,15.3112,6.5722,2.262,4.9819,1.8302,17.148,4.6679,4.1875,0.84283,2.3498,7.0358,12.5187,2.6631,3.5354,3.2517,1.5123,1.806,4.5049,10.1525,3.1965,2.4099,11.0462,2.5253,2.668,2.1435,11.3625,2.0321,3.7963,1.3364,13.0626,5.6441,8.4019,2.8245,9.841,6.6274,7.7973,7.9148,3.6669,1.5937,5.6575,,,MCI,0.08054,,,,0.33165,4.1621,4.5278,0.91607,7.9801,1.6155,0.40503,2.7775,2.3119,49.0777,19.2977,269.1573,4.0571,3.6181,1.7414,1.9537,3.3301,6.4639,1.9996,3.4111,0.79521,4.1811,9.1788,12.2069,7.0919,2.0312,4.4076,1.7644,15.0889,3.2197,3.8622,1.0455,2.3282,7.5775,11.6077,2.1773,3.2946,3.1857,1.4168,1.8646,3.9916,9.7306,2.8132,2.4147,8.9611,2.1997,2.4641,2.0049,10.7009,1.6753,3.7794,1.226,13.2802,5.1681,6.0433,2.7508,8.9515,6.2104,7.0451,7.3535,3.3832,1.4241,5.3512,,,,,,,,,,,,,,,57,,,
-nG+MAI1T5MCI019,2.3612,1.8381,,60-69y,Other,,,19.8139,5.3954,2.7214,2.4621,1.7846,edsd,MCI,,M,,0.41575,5.7021,4.7795,0.80505,10.4278,1.8502,0.40362,3.6552,3.1086,51.6143,17.5743,250.6816,4.5471,5.1517,1.6641,1.9878,4.5553,7.1772,2.4461,3.3506,0.80493,7.9824,11.819,25.9073,8.4943,2.5398,5.1753,2.3246,21.2659,7.712,4.6622,1.282,3.0303,8.6758,15.5401,4.326,4.7426,3.206,1.3827,1.6102,4.6327,12.0571,3.3844,2.8041,13.0556,2.8484,2.5675,2.575,11.8777,2.2838,3.9279,1.5057,16.2906,6.0819,10.0076,4.1756,12.3787,8.1252,7.6419,8.5194,4.0163,1.6803,5.1893,23,,MCI,0.09108,,,,0.37706,4.7092,4.927,0.74336,10.9138,2.1984,0.40924,3.8459,2.973,52.995,17.5865,251.1307,4.2181,5.7418,1.5225,2.2787,4.8016,7.207,2.4397,3.4557,1.5464,7.3727,11.8422,22.9681,9.1142,2.7532,5.1192,2.3196,21.7015,6.1715,4.5976,1.0366,2.8028,9.912,15.2442,3.2773,4.6118,3.7286,1.7555,1.6519,4.0929,11.392,3.0984,2.8013,10.1849,2.6137,2.6274,2.4671,11.0075,2.1302,3.909,1.443,16.823,5.7776,8.1998,4.4873,11.7266,7.6115,7.2232,8.5962,4.1643,1.6686,4.9062,,,,,,,,,,,,,,,61,,,
-nG+MAI1T5MCI020,1.7205,1.8905,,70-79y,Other,,,17.4707,4.4674,2.6526,2.2713,1.3021,edsd,MCI,,M,,0.36732,4.1131,4.1033,0.89488,7.6736,1.2669,0.35957,2.8084,2.474,43.4145,16.1295,215.6791,3.8426,3.6558,1.6513,1.8261,3.1364,6.5343,2.0201,3.0246,0.9251,5.5668,10.1241,18.2188,6.5649,2.0121,4.5046,1.6229,15.5329,5.2654,3.6112,1.1275,2.3439,5.8604,12.5088,3.0453,3.8975,2.945,1.4233,1.633,3.9726,9.6152,2.979,2.2859,11.2423,2.3187,2.1833,2.1471,10.5286,1.9918,3.2012,1.2975,13.5618,4.7346,8.4124,3.3555,9.6846,7.107,6.5556,6.5267,3.2801,1.5033,4.9294,23,,MCI,0.08227,,,,0.29313,3.3884,4.0215,0.79946,8.9475,1.4402,0.32201,3.0178,2.5514,43.2213,15.8175,211.4838,3.6471,4.2553,1.4797,1.6714,3.2413,6.2382,1.7185,3.143,1.5428,6.2476,9.9978,24.1438,6.9363,1.8908,4.0861,1.4684,15.6477,4.504,3.1249,1.076,2.3641,6.5478,12.096,2.7873,3.9081,2.5288,1.2625,1.6406,3.4641,9.7941,2.6229,2.2975,9.6252,1.8421,1.9955,2.0192,11.0072,1.7022,2.9873,1.0981,13.7916,5.1071,6.6039,3.8047,9.9435,6.7587,6.2869,6.5402,2.4577,1.5181,4.6038,,,,,,,,,,,,,,,71,,,
-nG+MAI1T5MCI021,2.201,3.4207,,60-69y,Other,,,15.1792,4.3788,2.6111,2.0582,1.7914,edsd,MCI,,M,,0.42607,5.0841,4.2128,0.87128,9.301,1.4017,0.40804,2.629,2.2924,43.5704,13.4048,220.6313,3.8546,4.0038,1.5507,1.8366,3.176,7.159,2.0363,3.1532,1.0131,6.0817,11.2533,24.3614,7.109,2.2381,5.1549,1.8501,18.1861,6.0602,3.8036,1.0763,2.6018,7.2792,14.4753,3.0986,4.3412,3.2087,1.4362,1.5799,4.5857,10.9152,3.0225,2.3405,10.1322,2.6086,2.5923,2.3318,11.3461,2.462,3.3626,1.4805,13.4751,5.4523,9.672,3.3642,10.31,7.8152,6.6574,6.9862,3.7107,1.6412,4.4346,27,,MCI,0.06455,,,,0.3314,4.672,4.2447,0.88037,10.2379,1.5345,0.41743,2.6921,2.3135,41.6776,13.7147,223.5583,4.4639,4.3443,1.6918,2.0403,3.4371,7.5386,2.0831,3.4051,1.3285,6.3904,11.1879,22.2686,7.462,2.1301,4.8872,1.854,17.3399,5.0735,3.6133,1.0744,2.7871,8.0629,14.0586,2.6053,4.0702,3.614,1.5359,1.5508,4.0996,10.5746,2.8289,2.5404,9.1457,2.3326,2.4103,2.1513,11.7388,2.2965,3.2202,1.3416,13.4212,5.2793,7.822,3.4725,9.7843,8.2144,6.1079,7.6691,3.3889,1.6691,4.0234,,,,,,,,,,,,,,,67,,,
-nG+MAI1T5MCI022,2.4287,2.1835,,+80y,Other,,,17.5478,5.4789,2.8142,2.3297,2.233,edsd,MCI,,M,,0.35423,4.8817,5.0384,0.78021,9.8041,1.625,0.41304,3.4607,2.1338,49.8549,14.947,214.2974,4.5763,4.613,1.4871,2.0697,3.9928,7.3443,2.3404,2.9426,0.79208,7.3491,11.1615,30.645,8.0138,2.6724,4.7431,2.1063,19.1663,6.5834,4.2231,1.0397,2.7085,7.7625,13.2366,3.8828,4.9418,3.324,1.7809,1.5117,4.5055,11.2253,3.1183,2.5598,11.871,2.5526,2.9829,2.5405,12.4876,2.1193,3.2674,1.5587,14.7961,5.366,9.0832,3.3581,12.2043,7.3638,6.2841,7.1531,4.0228,1.8601,4.7448,27,,MCI,0.07881,,,,0.29753,4.6205,4.9964,0.66088,12.0143,1.7402,0.3906,3.4589,2.2173,49.6817,15.0955,216.5298,4.479,5.3684,1.2456,2.0731,3.7987,6.9342,2.5485,2.9139,1.4438,7.3613,11.4426,26.4693,8.878,2.5019,4.8567,2.08,17.9655,6.2782,4.1958,0.97039,2.4247,8.2217,15.3987,3.6274,4.5218,3.5605,1.8121,1.5113,4.0044,12.2162,2.7019,2.771,9.9071,2.4338,2.6703,2.2918,13.0102,1.9105,3.0878,1.5078,14.9771,5.1721,8.1105,4.9552,10.9819,7.0448,6.1374,6.7052,4.0715,1.7607,4.4392,,,,,,,,,,,,,,,83,,,
-nG+MAI1T5MCI023,2.2559,2.271,,70-79y,Other,,,16.3872,5.4297,2.6553,2.3039,2.3689,edsd,MCI,,M,,0.42615,4.706,4.715,0.79633,8.3923,1.552,0.41127,3.1394,2.7821,45.5465,15.5684,205.443,4.1139,3.9433,1.6728,1.9395,3.3489,7.4408,2.226,3.1302,1.0467,6.1864,11.7106,33.6989,7.5048,2.3359,4.5407,1.8729,18.4741,5.9417,4.1855,1.0922,2.3009,7.3397,14.1348,3.3831,4.2973,3.5336,1.5012,1.4402,4.2143,10.2054,3.205,2.6283,11.9524,2.4089,2.6129,2.6993,10.6517,1.9429,3.4385,1.378,15.2734,5.1019,8.0099,3.1124,9.4851,6.7765,6.5324,7.8446,3.5559,1.7701,4.319,25,,MCI,0.08456,,,,0.33941,3.955,4.2608,0.72903,9.2757,1.7177,0.38493,3.404,2.4421,48.197,15.0964,201.0988,3.8354,4.2417,1.4702,2.0791,3.4554,7.2788,2.1089,3.3094,1.3138,6.777,11.3475,32.6771,8.1799,2.4405,4.013,1.862,17.8419,5.0888,3.9069,0.95715,2.1712,7.8987,14.1487,2.9056,4.5195,3.7704,1.7464,1.429,3.7147,10.1643,2.9139,2.4381,9.1008,2.3869,2.5181,2.2391,10.5358,2.0533,3.1749,1.2901,14.2656,4.7946,7.8555,3.6014,9.3758,7.3705,5.9114,7.0886,4.0742,1.6092,4.0367,,,,,,,,,,,,,,,74,,,
-nG+MAI1T5MCI024,1.94,2.155,,70-79y,Other,,,17.1812,4.4594,2.4315,2.0564,1.402,edsd,MCI,,F,,0.37285,4.5912,4.1261,0.78422,9.03,1.4412,0.36905,2.8776,2.5343,41.9434,13.883,216.1676,3.6837,4.4701,1.5179,1.8514,3.2268,7.0908,2.0747,3.0335,0.73692,6.1595,11.643,21.5615,6.9936,2.1838,4.664,1.7082,17.7897,5.7118,3.981,1.1615,2.6288,6.458,13.5837,3.3048,4.0664,3.1636,1.4375,1.4994,3.9752,9.303,2.9456,2.2396,10.2358,2.5998,2.4411,2.2512,12.1054,2.4502,3.4883,1.2235,14.2731,5.2913,8.903,3.6107,9.7327,7.4671,6.4332,7.0299,3.4384,1.6804,4.7121,26,,MCI,0.07234,,,,0.31472,3.6901,4.0128,0.77147,9.3444,1.6128,0.36407,2.8271,2.712,41.0361,13.6618,213.9162,4.058,4.3885,1.4898,1.8714,3.6393,6.5651,1.965,3.1878,1.0633,5.9047,10.212,22.6963,7.2942,2.1651,4.1058,1.6742,17.0285,4.8392,3.7009,1.1108,2.6174,7.6025,12.0367,2.6925,3.7539,3.1595,1.562,1.457,3.7978,9.2679,2.6384,2.3643,10.4786,2.4625,2.3157,2.1847,12.3971,2.1006,3.2816,1.1612,13.9606,5.2369,7.4471,4.0604,10.3349,7.4597,6.1317,6.886,3.2162,1.6409,4.4848,,,,,,,,,,,,,,,76,,,
-nG+MAI1T5MCI025,2.5515,2.6787,,+80y,Other,,,18.5757,5.2561,2.4848,2.2573,2.3378,edsd,MCI,,F,,0.4395,4.2915,4.3443,0.71834,7.2268,1.5065,0.3794,2.8124,2.6895,46.4712,16.1887,236.493,3.7713,3.813,1.3429,1.8077,3.3168,6.4628,1.8647,2.6784,1.2971,5.5784,10.3227,35.8274,6.5803,2.3184,3.86,1.7034,17.1141,5.2936,3.6339,0.86847,2.0853,6.6773,13.1579,3.0168,3.5685,3.2478,1.4079,1.6821,3.8758,9.1195,2.6702,2.3986,10.0842,1.8229,2.2128,2.2569,9.6065,1.4938,4.6426,1.2029,12.6454,4.7787,7.3877,3.4441,8.6869,5.8622,6.3966,7.1955,3.321,1.376,4.9817,23,,MCI,0.07588,,,,0.35661,3.6959,4.1206,0.65297,8.2161,1.5103,0.37661,3.2915,2.7755,44.8791,16.2491,236.8481,3.4411,3.9233,1.3332,1.6567,3.3218,6.6325,1.7867,2.9722,1.6954,6.6155,10.3076,31.4071,7.299,2.0397,4.165,1.5732,16.1322,4.6431,3.3801,0.90858,2.0905,7.2337,13.7425,2.811,4.0487,2.7778,1.4955,1.6819,3.77,9.4965,2.6131,2.3147,8.9832,1.6992,2.1348,2.0977,9.6738,1.5177,4.0806,1.1764,13.117,4.7292,6.171,3.5579,9.159,6.8894,6.2951,7.4188,3.0028,1.3226,4.6366,,,,,,,,,,,,,,,82,,,
-nG+MAI1T5MCI026,3.0911,2.782,,70-79y,Other,,,18.3977,5.0169,2.8167,2.5427,2.5576,edsd,MCI,,M,,0.36355,4.4827,4.5412,0.6755,10.0351,1.4878,0.36377,2.4464,2.5535,49.7441,15.8368,218.4875,4.1485,3.6756,1.231,2.1097,3.7032,7.4435,2.1155,3.0017,1.9734,6.9885,11.3466,33.0259,7.2196,2.2129,4.6415,1.7464,19.457,7.1611,3.9596,1.0991,2.6444,7.21,14.0082,3.0277,4.5593,3.859,1.4322,1.5912,4.3916,10.9686,2.8687,2.6703,10.3086,2.5337,2.3256,2.5336,13.7414,2.0504,3.4907,1.2379,15.2836,5.4501,9.1517,3.4434,11.8244,7.9053,6.8618,6.8093,3.9377,1.5202,5.0712,27,,MCI,0.08434,,,,0.31531,4.1619,4.5555,0.69146,11.4893,1.7272,0.35363,2.6604,2.6118,47.6643,15.2305,220.2831,4.103,4.1849,1.2013,2.1365,3.9159,7.1474,2.0844,3.1177,1.845,6.4874,12.3185,31.3476,7.8035,2.3463,4.5428,1.8564,20.0056,5.6771,3.8806,1.0098,2.5739,8.4907,15.0334,2.5004,4.2321,3.4737,1.7193,1.6506,3.831,10.444,2.6174,2.5779,10.5882,2.0929,2.3846,2.1795,13.703,1.7546,3.4877,1.1353,16.4903,5.5127,8.4129,3.7931,10.4791,7.5951,6.5226,6.7323,3.4577,1.3964,4.8324,,,,,,,,,,,,,,,78,,,
-nG+MAI1T5MCI027,2.0444,2.0586,,70-79y,Other,,,17.1704,5.0864,2.7359,2.2461,2.2084,edsd,MCI,,F,,0.41034,4.5768,4.3894,0.84553,9.4183,1.6083,0.38647,2.1827,2.8071,44.8061,13.0289,188.816,3.6886,2.9575,1.7096,2.1565,3.5799,7.2234,2.1146,3.1595,0.67237,6.259,11.508,31.4738,6.6905,2.5091,4.4217,1.7671,19.6418,5.9703,4.2283,0.92558,2.1489,6.8542,14.3386,2.4868,3.917,3.3003,1.6574,1.4046,4.3133,10.216,3.1722,2.3266,9.8466,2.1323,2.7123,2.2362,11.8684,1.9016,3.7664,1.2342,15.1137,4.9431,8.3724,2.9443,11.0565,7.1457,6.4532,8.0227,3.9893,1.3872,4.5547,26,,MCI,0.08302,,,,0.37032,4.497,4.3531,0.81045,9.5422,1.8202,0.38098,2.4067,3.0714,44.1353,12.3404,188.9378,3.8788,3.5822,1.6592,2.1129,3.6033,7.2418,2.0876,3.3865,0.75245,6.4673,10.8817,26.0515,7.2766,2.3253,4.6356,1.6764,19.2081,5.2675,3.9253,1.0535,2.5015,7.3909,14.2011,2.5739,4.2779,3.5233,1.6337,1.4427,3.8606,10.2469,2.9048,2.4688,9.7332,2.2906,2.3781,2.0953,12.189,1.8008,3.6843,1.1842,14.4784,5.0316,7.2824,3.8521,10.6321,7.0755,6.3214,8.3218,3.9268,1.4688,4.3378,,,,,,,,,,,,,,,78,,,
-nG+MAI1T5MCI028,1.1573,1.6479,,-50y,Other,,,17.706,4.6166,2.6527,2.3553,1.1203,edsd,MCI,,M,,0.52148,5.2234,4.3837,0.97955,9.9564,1.7786,0.46722,3.2357,3.0499,48.8077,15.3027,234.3481,4.47,5.1157,2.0771,2.1769,3.8368,8.202,2.6282,3.392,0.54447,7.5108,13.3026,9.0814,7.7076,2.7207,5.2148,2.2302,22.0139,6.7807,4.8288,1.1939,3.2518,8.0611,16.9337,3.896,4.8013,3.3782,1.638,1.5677,4.8577,12.1496,3.5523,2.3179,12.4274,2.7311,2.8223,2.5141,15.0108,2.2938,4.2109,1.4764,17.9714,6.7745,9.4001,3.9706,12.081,9.266,7.4399,9.4607,4.2497,1.8654,4.9638,29,,MCI,0.08351,,,,0.47296,4.4918,4.3245,0.96856,11.4551,1.993,0.44193,3.6591,3.2616,49.0461,14.6161,233.6644,4.3668,5.3221,1.9833,2.1829,4.3623,8.3301,2.5778,3.4125,0.58957,7.4532,13.5681,12.4613,9.1151,2.5006,4.9104,2.1888,22.3019,5.8369,4.4654,1.3779,3.1735,9.1711,17.1263,3.423,5.281,3.8129,1.7034,1.6182,4.4546,12.0596,3.2419,2.24,11.1063,2.1122,2.6098,2.1036,13.6869,2.0578,4.0296,1.4077,18.3793,6.3146,8.4491,4.7925,11.646,8.0171,7.0789,9.5096,4.0293,1.4403,4.741,,,,,,,,,,,,,,,43,,,
-nG+MAI1T5MCI029,1.2011,1.5129,,60-69y,Other,,,14.9542,4.3323,2.4327,1.9949,1.2254,edsd,MCI,,F,,0.34579,4.2396,3.4294,0.71167,7.1535,1.4159,0.34199,2.9632,2.2759,37.8754,12.9785,185.9051,3.5066,4.1558,1.5362,1.6942,3.1139,6.4238,1.8994,2.5602,0.52714,5.8648,10.063,14.9981,6.5991,2.1617,4.1749,1.6783,15.7914,4.7805,3.6076,1.1393,2.4251,6.3251,11.4825,2.7739,3.6651,3.1393,1.2806,1.2098,3.4438,8.9741,2.6824,1.8773,9.2961,1.8166,2.2723,2.0808,11.0377,1.5759,3.0403,1.1186,14.9077,4.8619,6.9192,2.9305,7.7179,6.2822,5.6381,7.5208,3.5224,1.2715,3.9457,28,,MCI,0.07406,,,,0.31059,3.9292,3.2948,0.68245,9.083,1.6056,0.33103,2.9722,2.2968,39.5813,12.526,190.7115,3.1711,3.9992,1.4815,1.7258,3.1919,6.0282,1.8708,2.5759,0.64781,5.5953,9.5989,13.7949,7.1358,2.1062,4.0546,1.6664,17.1331,4.6282,3.5124,0.79867,2.1091,6.988,12.476,2.5192,3.7258,3.466,1.4084,1.251,3.217,9.0731,2.3836,1.8645,8.1705,1.5783,2.1966,1.8284,10.304,1.6217,2.8808,1.0691,13.4697,4.7484,6.6221,3.6046,8.1687,6.6416,5.4613,7.378,3.4306,1.164,3.7661,,,,,,,,,,,,,,,69,,,
-nG+MAI1T5MCI030,3.3332,3.8497,,60-69y,Other,,,19.6638,5.0725,2.8265,2.4214,2.9538,edsd,MCI,,M,,0.39586,5.4815,4.8321,0.92421,10.7749,1.5635,0.42573,3.0917,2.483,43.6504,15.0071,252.0012,4.6133,4.0006,1.7135,2.1163,3.7492,8.0385,2.3058,3.3742,1.8377,6.3392,13.2013,48.6943,8.2575,2.2267,7.4817,2.0905,22.332,6.2518,4.3651,1.1816,3.4183,8.5604,16.525,2.9491,4.1181,3.9707,1.4159,1.698,4.6404,10.5044,3.3833,2.6622,12.8633,2.2781,2.559,2.5945,15.2823,1.7956,3.952,1.5341,16.7027,7.8068,9.2554,3.0232,11.6445,7.7573,7.5034,8.8303,4.2785,1.5657,5.3791,22,,MCI,0.07984,,,,0.38883,4.6882,4.4507,0.85168,11.1842,1.7931,0.40515,3.2677,2.3084,43.2356,15.1165,253.2645,4.4733,4.3975,1.6222,1.9633,4.1318,7.8944,2.219,3.5007,2.0029,7.0655,12.5272,46.5001,8.2312,2.2129,8.5193,2.0811,20.1658,5.4473,4.121,1.4563,3.5084,8.9555,16.2367,2.4779,4.2929,3.9458,1.4123,1.7198,4.0301,11.7754,3.0242,2.61,13.2796,2.0587,2.6013,2.1663,14.2141,1.7499,3.9759,1.5347,16.1595,6.8389,8.2807,3.8761,12.6491,8.3095,7.4845,8.2629,3.6062,1.3875,5.0649,,,,,,,,,,,,,,,68,,,
-nG+MAI1T5MCI031,1.4578,1.6353,,70-79y,Other,,,18.7857,4.9481,2.4507,2.3841,1.4539,edsd,MCI,,M,,0.42612,4.8174,4.3787,0.72893,8.5611,1.7008,0.39275,3.3939,2.7139,45.4929,16.8291,246.0271,4.0202,4.7725,1.3727,2.0259,3.5148,7.4144,2.1847,2.9395,0.47716,6.5697,11.0308,13.0165,7.7973,2.6274,4.6702,2.0006,19.7988,6.2199,4.367,0.87314,2.3049,6.885,13.3089,3.4664,4.593,3.5948,1.6419,1.6286,4.4251,10.4119,3.0435,2.3743,10.2494,2.1522,2.8073,2.4949,10.8385,1.8573,3.2638,1.3515,14.6553,5.2519,8.3013,3.6297,10.9433,7.2975,7.0526,7.2519,4.2459,1.7839,4.9331,25,,MCI,0.0791,,,,0.36741,4.2319,4.1091,0.78586,8.8971,1.9665,0.38226,3.5374,2.7406,46.5743,16.0334,245.9835,3.9024,5.149,1.4466,1.8305,3.8456,7.2803,2.0631,3.3142,0.64456,6.5396,10.8476,14.164,8.0021,2.493,4.7873,1.9407,19.5745,4.8343,4.0723,1.1375,2.5524,7.5522,13.5114,3.0755,4.423,3.4238,1.6007,1.6414,4.0413,10.4286,2.9202,2.2716,10.6116,1.9892,2.7401,2.2013,12.2431,1.8628,3.3123,1.3104,14.1307,4.8574,7.7578,4.3685,9.3456,7.5457,6.6072,7.4701,3.6638,1.5637,4.7275,,,,,,,,,,,,,,,75,,,
-nG+MAI1T5MCI032,1.4175,2.9422,,70-79y,Other,,,16.2223,4.8812,2.2552,2.0486,1.2465,edsd,MCI,,M,,0.39387,4.3072,4.2182,0.88549,8.5372,1.4072,0.36866,2.4976,2.9602,33.5396,10.7472,200.1052,3.4986,3.6357,1.6332,1.8386,3.2685,6.7244,1.9992,3.1435,0.85075,5.7583,10.9826,16.5609,6.499,2.2157,4.3599,1.694,17.4937,5.5329,3.7565,0.85443,2.0722,6.2544,13.6412,2.7448,3.817,3.2162,1.4457,1.5129,3.7649,8.5862,3.0897,2.1665,8.9628,1.8276,2.394,2.2036,10.1446,1.5134,3.3626,1.2128,13.4043,4.6651,7.0687,2.7602,8.8152,6.4859,6.4486,7.7587,3.7784,1.3227,4.67,24,,MCI,0.08415,,,,0.34877,3.6096,4.0283,0.88578,9.0649,1.6939,0.37148,3.0346,2.848,38.3685,13.9708,201.2127,3.3349,4.2675,1.638,1.8298,3.3802,6.8619,1.8429,3.2885,0.58691,6.5767,11.252,16.4044,7.8816,2.0889,4.1951,1.6097,17.3505,4.4194,3.5288,0.97369,2.2521,6.975,14.1728,2.6868,4.0595,3.0912,1.3192,1.5456,3.4599,8.9099,2.8682,2.2143,7.9696,1.733,2.141,1.9201,10.0523,1.5063,3.1251,1.1956,12.252,4.6644,6.9817,3.7716,8.8287,6.8655,6.0546,7.636,3.4521,1.2484,4.3102,,,,,,,,,,,,,,,73,,,
-nG+MAI1T5MCI033,1.6205,2.0832,,50-59y,Other,,,15.9729,4.6121,2.3625,1.9541,1.5266,edsd,MCI,,M,,0.35821,4.766,4.3225,0.75649,7.3551,1.4914,0.3603,3.0259,2.5169,42.4254,14.456,206.736,3.9707,4.0667,1.5317,1.9804,3.4177,6.6497,2.0302,2.7619,0.84978,5.7301,9.8925,20.0821,6.6418,2.2644,4.5009,1.7927,18.0206,5.3231,3.8473,1.0778,2.4593,6.7513,11.6922,2.9334,4.1086,3.6095,1.55,1.4541,3.7867,9.0938,2.8218,2.269,10.6941,2.3937,2.4628,2.2557,12.8559,2.2683,3.2992,1.3192,12.5947,4.6578,7.9869,3.214,9.2838,7.1108,6.1968,7.1295,3.8057,1.7159,4.4853,22,,MCI,0.08755,,,,0.3203,4.2948,4.034,0.78049,9.5082,1.6552,0.35235,3.4584,2.4361,42.7073,14.1235,213.2188,3.6818,4.5664,1.5285,2.0772,3.4943,7.167,2.0366,3.0186,0.8956,6.4052,11.1909,15.8165,7.6717,2.1865,4.5338,1.7464,18.9982,4.6822,3.7199,1.0959,2.5263,7.5373,12.6272,2.6629,4.2318,4.092,1.6075,1.4574,3.6515,9.7512,2.6144,2.4096,8.5287,1.9813,2.3766,2.2022,11.3873,1.852,3.305,1.2877,12.0744,4.4777,7.0599,3.9179,10.9249,7.0146,5.9759,7.3176,3.8196,1.6442,4.2159,,,,,,,,,,,,,,,56,,,
-nG+MAN3T0HC001,2.0714,2.342,,-50y,,,,18.5915,5.6198,3.0748,2.4745,1.5056,edsd,,,M,,0.53321,5.669,4.6844,1.1046,11.2047,1.8397,0.47709,3.877,3.4738,54.4932,17.2047,255.3596,4.7696,5.5617,2.1113,2.1611,4.1805,8.9061,2.3453,3.717,0.72598,7.365,13.2533,21.1877,8.6138,2.7585,5.1103,2.2084,21.8987,6.7802,4.6798,1.198,2.9585,8.9122,15.7252,4.0524,5.1498,3.6874,1.6954,1.7825,5.079,12.8823,3.7962,2.8164,13.1955,2.9678,2.8981,2.8001,15.1703,2.0328,4.7899,1.5581,17.0932,6.7152,9.71,3.8942,12.9099,7.4482,7.6513,8.4709,4.3525,1.983,5.3294,,,,0.09123,,,,0.49537,4.8252,4.4509,1.076,12.1998,2.0035,0.48888,4.1188,3.7787,54.7687,16.5424,262.7638,4.9359,5.6221,2.0902,2.1003,4.5707,9.3536,2.4687,3.9712,0.68395,8.1901,13.7282,17.6406,9.2103,2.5593,5.082,2.2693,21.3627,6.3417,4.5626,1.4446,3.209,10.1452,16.9531,4.2089,5.092,4.1308,1.6844,1.7895,4.9457,12.5874,3.4057,2.8719,13.1671,3.0101,2.6931,2.5449,15.5797,2.3346,4.8434,1.5046,17.0581,6.3984,9.5879,4.6666,10.6237,8.398,7.5007,8.7387,4.0988,1.9095,5.0559,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC002,1.572,3.2169,,-50y,,,,20.7649,4.4245,2.5673,2.51,1.4166,edsd,,,M,,0.43211,3.9206,3.7606,0.90077,8.7758,1.4243,0.36201,3.1835,3.2314,49.0913,15.6173,224.7484,4.016,4.1656,1.6788,1.7312,3.0359,7.3659,1.6841,3.1416,0.72065,6.1691,11.0933,25.9601,7.54,2.3004,4.3651,1.5494,17.151,5.7157,3.4982,1.0378,2.5173,6.3812,13.4873,3.03,4.4668,3.1942,1.4297,1.6405,3.9075,9.0072,3.2431,2.0849,11.782,2.3633,2.5496,2.2691,13.0542,1.9484,3.7198,0.99363,14.1363,4.861,9.0355,3.5643,9.6246,7.6237,7.2876,7.0982,3.443,1.7326,5.3616,,,,0.07009,,,,0.39005,3.4598,3.6146,0.85776,10.7613,1.6495,0.3749,3.3603,3.3457,48.7658,15.1496,226.2902,3.2503,4.2915,1.5662,1.983,3.3333,7.4758,1.7222,3.5105,0.84992,6.6976,11.3054,21.6844,7.8192,2.1137,4.0911,1.5406,16.5951,5.5605,3.508,0.91035,2.5118,7.1911,13.6863,2.9326,4.3071,3.0849,1.4257,1.6766,3.5558,9.1188,2.9996,1.9953,9.4994,2.0589,2.3654,1.8904,11.8814,1.9995,3.5381,0.97914,14.4123,5.101,8.3038,3.9083,10.2779,7.1459,7.1846,7.0754,3.3471,1.3957,5.0802,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC003,0.92151,1.6,,-50y,,,,18.8633,4.3107,2.4164,2.0867,0.94766,edsd,,,F,,0.42411,4.7133,4.2674,0.94757,9.1753,1.5216,0.38425,2.8439,2.7813,43.5986,15.5595,240.7816,3.7793,4.073,1.7618,2.0074,3.5094,7.0565,1.983,3.1927,0.40076,6.1344,10.5122,10.2369,6.935,2.3998,4.5362,1.8628,19.3525,5.7645,3.9091,1.2561,2.6333,7.1463,13.5444,3.237,4.0348,3.4729,1.6004,1.6861,4.3599,10.046,3.1201,2.2232,11.9325,2.1978,2.6404,2.1705,12.9722,1.7725,3.4359,1.2427,14.0161,5.3636,8.6843,3.3454,10.4071,7.4062,7.521,7.7727,4.2532,1.5321,4.9351,,,,0.06967,,,,0.38436,4.0241,4.0761,0.93386,10.0928,1.909,0.38759,2.9679,2.884,44.8393,15.0817,241.8319,3.7257,4.5519,1.8133,2.045,3.8594,7.4238,2.0199,3.3784,0.41762,5.7775,11.1037,9.478,7.2877,2.3249,4.947,1.861,17.6735,4.5494,3.9283,1.0608,2.5406,7.6531,13.6957,2.2898,3.6322,3.8173,1.6568,1.6673,3.9078,10.5318,2.921,2.2895,10.5334,2.2048,2.5048,1.943,12.4649,1.8182,3.3666,1.1343,13.7294,5.2361,8.3106,3.9854,10.5224,7.1765,7.2046,7.8606,3.9979,1.3885,4.6789,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC004,1.0344,2.0142,,-50y,,,,17.5955,4.3164,2.6222,2.0463,0.97752,edsd,,,F,,0.33492,4.5862,3.5961,0.9011,9.0953,1.3797,0.33559,2.9698,2.1591,46.6155,15.2252,215.8183,3.6877,4.0143,1.7702,1.7248,3.1128,7.1217,1.8094,3.0859,0.37663,5.5259,10.6209,13.7011,6.9139,2.1288,4.8278,1.6576,17.3826,5.5199,3.4604,1.0876,2.8104,6.9455,13.6124,2.8563,3.7199,2.8353,1.4107,1.4117,4.4256,10.4746,3.145,1.9099,10.6325,2.2225,2.2895,2.0039,12.0505,1.8999,3.1634,1.0159,13.3131,5.3245,9.1534,3.2059,10.5645,7.4843,6.7641,7.2039,3.6224,1.4827,4.4261,,,,0.06557,,,,0.34421,3.9222,3.3686,0.86099,10.7894,1.6968,0.37409,3.0752,2.269,47.2334,14.1917,221.2064,3.987,4.1831,1.7196,1.728,3.4223,7.3385,1.8877,3.3323,0.33252,5.7668,10.8413,11.8521,7.901,2.0592,4.7776,1.688,18.0319,5.1115,3.7058,0.95377,2.7211,7.4819,14.0497,2.5412,3.9008,3.0958,1.4342,1.4582,3.8666,10.2645,2.8667,1.9203,10.6031,2.0672,2.3497,1.8158,11.0384,1.8116,3.1933,1.0432,13.5098,5.0535,8.9313,3.7911,11.5183,7.655,6.7055,7.5484,3.2658,1.3803,4.2237,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC005,1.2047,1.7778,,-50y,,,,18.2717,4.2224,2.4289,1.917,1.0767,edsd,,,F,,0.39471,4.4607,4.2618,0.89996,8.9531,1.4954,0.35534,3.1032,2.8797,44.5662,15.2986,221.3182,3.7717,4.8713,1.8106,1.9034,3.0754,7.3156,1.9279,3.1989,0.54857,6.3145,11.3782,10.6779,7.1563,2.4126,4.6616,1.6784,17.8445,5.6957,3.5985,0.98038,2.456,6.7962,13.649,3.4843,4.1161,3.5001,1.408,1.6976,4.4163,10.2564,3.2697,2.1205,11.7092,2.089,2.4625,2.2326,11.7822,1.8587,3.3339,1.1584,14.1541,5.4901,8.2792,3.6601,10.5995,7.1608,7.2998,7.7769,3.8292,1.5646,4.8882,,,,0.08438,,,,0.39205,4.2456,4.0413,0.86232,10.4836,1.631,0.37595,3.2255,2.7861,44.5615,14.882,224.9161,3.7248,5.1156,1.7756,1.9229,3.4976,7.5457,2.0388,3.3652,0.47477,6.4854,11.4744,9.5205,7.8396,2.1152,4.8793,1.6841,16.6894,5.4842,3.7022,1.1591,2.5359,7.3002,13.8112,3.1466,4.0725,3.3505,1.5673,1.6654,4.0465,10.0915,2.9055,2.0389,9.3283,2.0699,2.3338,1.8568,11.6976,1.942,3.3033,1.1654,14.5743,5.2838,7.8621,4.5789,9.9654,7.1474,7.0833,8.0132,3.5037,1.3595,4.552,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC006,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC008,2.3602,3.3379,,-50y,,,,21.1231,5.4568,2.9156,2.3581,1.8804,edsd,,,M,,0.51409,5.3212,5.3807,1.001,10.2752,1.6462,0.45532,3.616,3.3213,54.2968,17.1942,249.3192,4.6024,4.7321,1.9829,2.1109,3.4631,7.9227,2.1032,3.6754,1.9334,7.2467,11.5966,38.6828,7.9709,2.666,5.5136,1.9993,20.8177,6.6668,4.0128,1.4265,3.4006,7.9687,15.991,3.5541,4.8135,3.4357,1.7352,1.9055,5.0463,13.0153,3.5993,3.0549,13.531,2.7762,2.7005,2.7415,13.9171,2.8134,4.2136,1.3644,16.123,6.2688,9.0181,3.7773,11.9308,8.8477,8.0449,8.5546,4.2387,2.034,5.6657,,,,0.07136,,,,0.46575,4.3045,4.9162,1.0192,11.5993,1.915,0.46534,3.9194,3.4755,55.275,16.6993,253.7161,4.5708,4.8477,1.9621,2.2927,3.757,8.4729,2.0569,4.0002,2.1061,6.6563,13.085,33.0263,8.5558,2.4036,5.0995,1.9883,20.5293,5.4373,3.9158,1.3226,3.2789,9.3907,15.5635,2.9678,4.5297,4.2238,1.8173,1.9924,4.6962,12.0215,3.3322,2.9604,11.8415,2.9233,2.6093,2.5971,15.0636,2.2913,4.0435,1.3177,15.6749,6.5321,8.8988,3.9975,10.9728,8.5913,7.9898,8.9331,4.1998,1.9688,5.459,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC009,1.7082,1.8993,,-50y,,,,16.0241,4.0126,2.1681,1.9905,1.2276,edsd,,,F,,0.35194,4.0768,3.5753,0.82209,8.9056,1.2267,0.34825,2.8662,2.3271,41.3001,11.9739,204.9386,3.6662,4.0173,1.5651,1.8045,2.8687,6.8404,1.7464,3.0322,0.64834,5.6807,10.2239,19.5313,6.5887,1.9076,4.4103,1.5201,15.5558,5.159,3.1058,1.0947,2.755,5.826,12.6821,2.8955,3.8194,2.8438,1.203,1.4829,4.202,10.6643,2.9769,2.0253,9.9328,2.0912,1.9809,1.8933,11.1563,2.0851,2.9815,1.0654,11.6837,4.786,8.6776,3.0905,10.6911,6.9802,6.5134,6.2784,3.1315,1.5763,4.4831,,,,0.07702,,,,0.32204,3.6504,3.4688,0.80628,9.8549,1.4111,0.33822,2.8977,2.408,42.9428,11.6546,206.2201,3.8267,4.1126,1.5565,1.7788,2.9758,7.2479,1.7508,3.251,0.76519,5.5048,10.912,13.0913,7.3246,1.8888,4.061,1.4958,16.1397,4.4493,3.1269,1.1739,2.7454,6.4922,13.172,2.3504,3.8081,2.8948,1.3857,1.4942,4.0201,10.2237,2.8699,2.1233,9.3724,1.9107,1.9568,1.8621,11.0016,1.6691,3.0909,0.97945,11.1834,4.6979,7.1374,3.7321,9.5405,6.606,6.2957,7.268,3.2086,1.3987,4.2283,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC010,2.0768,2.3398,,-50y,,,,15.5076,4.6959,2.4424,2.1408,1.8946,edsd,,,F,,0.44214,4.5979,4.4162,0.91589,9.89,1.5544,0.37923,3.0178,3.0003,47.2679,12.7531,205.1095,4.138,4.5685,1.8062,1.8254,3.6363,7.9281,1.9651,3.5098,0.59446,6.3132,11.941,22.8015,7.7599,2.2768,4.9897,1.8465,20.5379,6.4869,3.8233,1.0159,2.5253,7.4901,14.9531,3.3539,4.4821,3.6718,1.3862,1.4048,4.8399,11.3572,3.4414,2.4438,10.4683,2.538,2.4222,2.2659,12.05,2.1135,3.7316,1.2125,15.2984,5.0563,9.3385,3.5419,11.1369,7.927,6.6497,7.3685,3.9727,1.4354,4.3168,,,,0.07643,,,,0.43007,4.6927,4.1115,0.93134,10.8441,2.0067,0.39993,2.9724,3.2886,46.5324,12.1037,212.6126,3.8663,4.9336,1.8413,1.9838,4.3331,7.9478,2.0479,3.6945,0.54138,6.4716,11.3922,19.8907,8.1016,2.3645,5.0583,1.9296,19.249,5.4129,4.0725,1.2433,2.8146,7.9787,14.1004,2.8358,4.4483,3.7968,1.5889,1.4408,4.2966,11.7678,3.052,2.3148,9.7747,2.1957,2.3911,1.8971,11.1964,1.8301,3.5463,1.1967,14.8198,4.9354,7.9431,4.1829,11.3561,7.6082,6.439,7.5165,4.1919,1.375,4.1214,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC012,1.7433,3.1062,,-50y,,,,18.633,4.704,2.6146,2.2797,1.4161,edsd,,,M,,0.49261,5.1229,4.867,0.96877,9.1168,1.6753,0.42509,2.8929,3.3293,49.98,15.6951,230.4366,4.6187,4.7357,1.9605,2.3081,3.716,8.1695,2.1159,3.7722,0.82917,6.8257,13.213,19.5064,7.6197,2.5486,4.7509,1.9465,19.892,6.6191,4.1319,1.0488,2.2716,6.8789,16.4376,3.079,4.6383,3.5979,1.774,1.673,4.724,10.8436,3.6837,2.7003,13.3585,3.1235,2.7531,2.3889,11.9276,2.8102,3.5921,1.4012,15.6987,4.9771,10.0726,3.2423,10.7163,7.9968,7.6112,8.4413,4.0992,1.9144,5.1161,,,,0.08937,,,,0.44948,4.3311,4.7486,0.92208,11.0191,1.896,0.4362,3.0673,3.5623,50.2053,14.851,232.2511,4.5601,4.3487,1.9038,2.4437,3.97,8.2928,2.1071,3.9042,0.68606,7.3738,13.4129,18.0742,8.4702,2.3951,4.5917,1.897,20.6739,5.8715,4.0835,0.99114,2.1741,7.8364,16.5941,2.8751,4.4894,4.157,1.6756,1.6981,4.4736,11.1725,3.2799,2.6285,11.4864,2.5521,2.5457,2.3798,12.5486,2.3089,3.5031,1.404,15.3386,5.1729,9.0035,3.9606,10.4968,8.6455,7.4725,8.8659,4.0039,1.7168,4.8321,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC013,0.96391,1.5949,,-50y,,,,17.0389,4.4837,2.3776,2.1431,0.39686,edsd,,,F,,0.00296,0.00216,0.46849,0.73903,2.2506,0,0.39393,3.2706,0,35.054,13.9885,69.2732,0.00108,4.2504,1.5204,1.00E-05,0,6.8983,0.52539,2.7845,0.3713,6.1828,10.5743,2.7368,6.8705,0.02822,0,0.05335,0,5.794,1.4103,0,0,0.00046,13.0122,3.1354,4.052,0,0.00156,0.31864,1.548,3.5147,2.9152,1.2675,0,0.02077,1.1664,1.6021,0,0.26866,0.34756,0.79424,0.00013,0,0.29404,3.4871,0.43408,3.8933,2.2812,6.141,0,0.31108,4.7468,,,,0.0788,,,,0.00066,0.00019,0.12458,0.80246,1.1839,0,0.29494,3.0698,0,36.0414,13.5685,61.8725,2.00E-05,4.0344,1.5984,0,0,6.9563,0.51662,3.0757,0.51523,6.4312,10.6705,1.953,7.219,0.00098,0,0.06173,0,3.4789,1.0463,0,0,0.00154,12.9694,2.8358,3.8708,0,1.00E-05,0.17428,1.3402,2.9491,2.7196,0.89588,0,0,0.63246,1.236,0,0.00244,0.23437,0.62791,0.00029,0,0.01333,2.7989,0.04308,3.5,1.8203,6.3126,0,0.1162,4.5571,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC014,1.2664,0.73524,,-50y,,,,14.3243,4.061,0.00144,0.30153,1.0479,edsd,,,M,,0.095,0.00936,0.93454,0.93429,5.0678,8.00E-05,0.3909,2.626,0.00075,8.4133,3.9949,93.4871,0.12649,4.6735,1.7088,0.00096,0,6.8267,0.77512,3.2914,0.37413,4.5079,10.3129,4.2156,5.8934,0.03638,0.00012,0.13214,0,6.0224,1.5469,0,0,0.00232,12.7688,2.0922,2.1357,0,0.0049,1.2159,2.5736,6.5694,3.2339,1.7975,0.00111,0.60781,1.2601,1.7054,7.00E-05,1.8796,1.2789,0.91649,5.00E-05,0,1.6946,3.6751,1.8453,6.8612,5.6342,6.8159,0,1.4479,5.254,,,,0.07591,,,,0.08978,0.00729,1.2425,0.92367,6.6486,0.00047,0.41433,2.4984,0.00133,7.4207,3.8003,94.0231,0.23731,4.2668,1.7916,0.00581,0,7.0561,0.88096,3.4248,0.35758,4.5203,10.0606,4.2276,5.5517,0.03515,0.00011,0.16873,0,5.1691,1.529,0,0,0.01018,12.3632,1.5826,1.4146,0.00048,0.01065,1.3485,2.3859,6.4692,2.9363,1.8725,0.00068,0.53142,1.354,1.6502,0.00012,1.613,1.3661,0.91095,0.00046,0,1.1506,3.8805,1.7984,7.0259,5.6051,7.1214,0,1.3559,5.0321,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC016,1.8122,2.3628,,-50y,,,,18.18,5.3858,2.5363,2.4587,3.0552,edsd,,,M,,0.48236,4.9245,4.3136,0.84615,9.2512,1.5551,0.38806,3.6789,3.1889,48.8959,15.7173,231.5152,4.9912,4.5121,1.6321,2.0666,3.6913,7.603,2.0793,3.2644,1.1065,6.5227,10.9339,42.9565,7.9342,2.4124,4.371,1.9333,19.8121,6.4312,3.8666,1.0426,2.6489,7.4088,13.3737,3.921,4.2695,3.0519,1.4715,1.7443,4.2021,10.9054,3.1722,2.4935,13.411,2.7369,2.2607,2.4753,12.5606,1.9968,3.9778,1.2978,14.8115,5.9056,9.6355,3.4728,11.0443,6.7864,6.9179,7.6834,3.7374,1.9283,4.7842,,,,0.06372,,,,0.37592,4.6416,4.4452,0.89651,10.5865,1.6798,0.38685,3.5084,3.5276,47.7163,15.0825,234.6124,4.4878,4.8267,1.7792,2.0766,3.9194,7.5756,2.1025,3.4728,1.0926,6.3455,11.2242,33.4486,8.6267,2.2492,4.3434,1.8383,19.933,4.7768,3.6583,1.3035,2.6694,8.0209,14.4022,3.2534,4.0129,3.2817,1.596,1.7519,4.1235,11.6293,2.9552,2.6632,11.1468,2.425,2.2252,2.333,12.4819,2.0447,3.9383,1.1925,14.2742,5.1464,9.1188,4.4749,10.9218,7.9591,6.6604,8.8386,3.6761,1.7,4.6372,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC018,1.7034,1.0793,,-50y,,,,15.6338,4.8564,1.4673,1.9311,0.97859,edsd,,,M,,0.0003,0.00124,1.1702,0.89401,5.0961,0.00046,0.40802,3.0493,0.00029,23.5087,12.2231,98.56,0.43185,5.4245,1.8342,0.02155,0,7.714,0.56823,3.3032,0.36505,7.0699,11.9568,3.8601,7.294,0.06594,0,0.03454,0,6.8641,1.6916,0,0,0.00018,15.3681,3.5237,4.2284,0.00223,0.02459,0.95612,2.6286,7.2975,3.4223,1.865,0.00568,0.78485,1.4214,2.0836,0.00255,2.099,0.79482,0.7997,2.00E-05,0,1.4319,4.1125,1.7797,8.561,4.1722,8.556,0,1.7277,4.444,,,,0.07313,,,,9.00E-05,6.00E-05,0.9969,0.87078,5.3578,5.00E-05,0.36049,3.0625,0.00039,24.3004,12.3303,97.6268,0.30663,5.4629,1.8487,0.01207,0,8.1453,0.23156,3.4769,0.44527,7.9388,12.4884,4.1696,7.6364,0.02731,0,0.03295,0,5.4663,0.5615,0,0,0.00038,15.1353,3.4708,4.3265,0.00197,0.00987,0.88805,2.561,7.3639,3.1033,1.8795,0.00167,0.38842,1.1899,1.9014,0.00078,1.5154,0.65264,0.43488,0.00055,0,0.74456,4.7781,1.3359,7.5386,4.141,8.0369,0,1.4603,4.2723,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC019,1.3846,0.25159,,-50y,,,,9.0519,2.6869,0,0.01071,0.75438,edsd,,,F,,0.13301,0.02955,1.3518,0.75894,3.9193,0.00414,0.37279,2.0798,0.0006,2.6377,0.57277,79.2274,0.30529,3.8911,1.394,0.00757,0,5.2681,0.90295,2.8084,0.34671,2.918,7.7384,5.4567,3.9167,0.22842,0,0.25043,0,5.8146,2.0093,0,0,0.00791,12.1717,1.4747,0.40331,0.00015,0.05771,1.0678,1.534,3.6801,2.7175,1.6036,0.00809,1.0746,1.8238,1.9235,0.00038,1.7231,1.4263,0.95159,0.00013,0,1.2354,3.4305,0.58342,6.0861,3.9641,5.9117,1.00E-05,1.4522,4.486,,,,0.05472,,,,0.03898,0.01082,0.72891,0.77549,3.2251,0.0014,0.33044,2.7178,0,3.1812,0.71528,76.6563,0.01217,4.2654,1.4286,0.00088,0,6.1677,0.8931,3.0099,0.50736,4.3628,9.211,3.3372,4.9555,0.07,0,0.23008,0,4.6182,1.6316,0,0,0.02225,12.1545,1.7028,1.0875,0,0.01559,0.80256,1.3853,3.1452,2.5611,1.3262,0,0.03744,1.4502,1.457,0,0.54699,0.79783,0.81661,0.00052,0,0.20706,3.7419,0.18875,4.9112,3.756,5.7627,0,0.78203,4.2635,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC020,2.9825,1.8463,,-50y,,,,18.4171,4.8811,2.587,2.0504,2.2316,edsd,,,F,,0.42415,5.1149,4.677,0.81236,9.0578,1.6095,0.3848,3.255,3.0044,44.55,14.443,203.9779,4.2457,4.3801,1.5448,2.1225,3.8607,6.9452,2.1315,3.1305,0.63192,6.3901,11.016,23.2024,7.19,2.4574,5.3641,1.931,19.6679,5.8606,4.099,1.0805,2.4911,7.5323,14.4684,3.1313,4.1384,3.0452,1.634,1.5615,4.6726,10.8734,3.1342,2.6329,12.296,2.452,2.5092,2.4907,12.7384,1.7346,3.5025,1.3893,14.0776,5.5889,9.4761,3.3455,9.875,6.6008,6.5072,7.2536,4.2196,1.4384,4.8843,,,,0.07735,,,,0.3852,4.2935,4.102,0.81764,9.7638,1.7091,0.38747,3.8375,3.1409,44.7195,14.0881,204.8771,4.0143,5.2677,1.6126,1.9559,3.9306,6.9456,2.0676,3.328,0.723,6.4805,11.3008,19.6009,8.2625,2.2645,4.7426,1.7927,19.7995,5.6415,3.7024,0.94556,2.5158,9.1281,14.5541,2.8999,3.9853,3.6501,1.5673,1.4856,4.1532,10.9553,2.8747,2.5532,11.5793,2.4669,2.309,2.2704,12.8111,2.0276,3.2779,1.3053,14.4455,6.055,8.6764,4.4398,9.6993,6.5711,6.4398,7.7847,3.1766,1.5639,4.5574,,,,,,,,,,,,,,,,,,
-nG+MAN3T0HC021,1.4349,2.0474,,-50y,,,,20.0813,4.9295,2.386,2.223,2.0648,edsd,,,M,,0.47015,4.911,4.9333,0.86931,9.2433,1.5044,0.41486,3.1621,3.5048,45.8046,17.9163,267.9129,4.3576,4.7744,1.6251,2.118,3.6738,7.1098,2.0042,3.4506,0.74077,6.3329,10.751,26.4464,7.61,2.4884,4.6051,1.9743,18.6286,6.3081,3.8542,1.1105,2.588,7.0512,13.0567,3.6268,4.0253,2.9777,1.5065,1.8908,4.9885,11.4207,3.3609,2.713,10.4781,2.4877,2.4608,2.539,11.7792,2.3654,4.1447,1.3665,14.4063,5.2036,8.3352,3.5556,9.4013,7.3668,7.7786,7.7609,3.6295,1.9204,5.4715,,,,0.05304,,,,0.43905,4.4693,4.7025,0.89181,10.2329,1.7857,0.45301,3.1923,3.7532,47.1806,17.5141,274.0747,4.2161,4.8374,1.8665,2.0495,4.3083,7.488,2.1982,3.684,0.66404,7.0424,11.0295,23.9601,8.4769,2.44,4.57,2.029,17.1763,5.5995,3.9443,1.2879,2.3766,8.1339,13.8534,3.0832,4.0666,2.8621,1.6389,1.911,4.4756,11.5462,3.4228,2.585,10.1522,2.4843,2.5118,2.1613,11.1296,1.9579,4.0897,1.3429,15.1682,5.3775,7.8592,4.1733,9.4148,6.8985,7.2338,8.1518,3.5485,1.6525,5.2037,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI001,0.70972,1.6016,,-50y,,,,16.0278,4.5469,2.6738,2.0385,0.88663,edsd,,,F,,0.39515,3.854,3.5746,0.77713,7.6242,1.3806,0.33588,2.9829,2.4758,43.3074,13.1052,202.3092,3.4933,3.8993,1.4048,1.7001,3.1291,6.2676,1.6118,3.0048,0.3085,5.5888,9.1926,6.8798,6.5916,2.1449,4.7158,1.458,17.1615,5.121,3.3196,0.97622,2.0857,5.8231,11.3543,2.9422,3.6566,3.2241,1.3231,1.41,4.3043,9.6138,2.7641,1.9134,9.9579,1.9609,2.2591,2.0156,10.0129,1.7658,3.6406,0.98202,11.5908,4.2845,7.561,2.8281,9.1825,6.0232,6.4669,6.245,3.3791,1.3545,4.3095,,,,0.06708,,,,0.34892,3.4694,3.5431,0.81267,8.0545,1.4067,0.33865,2.8999,2.5937,43.8192,12.9229,207.8096,3.2912,4.2997,1.4859,1.6595,3.2345,6.5846,1.623,3.0915,0.343,5.741,9.7025,5.7605,6.8819,1.8401,4.4826,1.4174,15.5385,4.6056,3.0518,1.0611,2.24,6.4216,12.0458,2.5854,3.4699,2.9659,1.2818,1.427,3.993,9.6595,2.6132,2.0129,9.1474,1.9233,2.117,1.8461,11.1298,1.6307,3.515,0.9568,12.3813,4.2338,6.7592,3.6544,8.4749,6.1503,6.1603,6.4508,2.9372,1.2987,4.1144,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI002,1.8314,2.6779,,-50y,,,,14.7604,4.1318,2.353,2.0224,2.2694,edsd,,,F,,0.35398,4.1603,4.144,0.71712,7.8526,1.3045,0.3558,2.4377,2.8677,41.3138,12.0243,171.5857,3.6058,3.8675,1.3851,1.5849,2.9944,6.5195,1.707,2.7935,0.81622,5.1534,9.2094,32.7167,7.0737,2.0383,3.8364,1.5493,14.7495,5.1569,3.3905,0.8838,1.9321,6.1147,11.6384,3.2655,3.6817,3.0246,1.1944,1.2638,3.6757,8.9996,2.9054,2.3411,9.8007,2.094,2.2995,2.1427,9.6108,1.8782,3.643,1.1458,11.627,4.3549,7.9444,3.064,9.1142,6.252,6.0253,6.4499,3.0679,1.3732,3.8789,,,,0.06565,,,,0.34863,4.1127,3.8964,0.75848,8.8617,1.4124,0.3655,2.6728,3.0383,39.28,10.9827,181.8204,3.6133,4.2275,1.468,1.7112,3.1661,6.6665,1.6994,2.967,0.69365,5.3377,9.6893,22.7909,7.321,1.8512,4.2258,1.614,15.1184,4.2287,3.1968,0.80958,1.9052,6.6667,11.9343,2.3226,3.6809,2.9781,1.2925,1.3905,3.5566,9.4578,2.6493,2.1974,9.2561,2.0846,2.2356,1.8789,10.3549,1.8005,3.6984,1.0892,11.2428,4.2116,6.8754,3.5341,9.4762,6.8314,6.2277,6.8238,3.0548,1.4185,3.9227,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI003,1.4719,2.5289,,-50y,,,,17.753,4.8524,2.6358,2.3057,1.3542,edsd,,,F,,0.39298,4.2807,3.7132,0.8853,8.6024,1.3301,0.37417,3.3372,2.882,47.8704,14.4579,200.6377,3.818,4.5031,1.626,1.7378,3.3075,7.1326,1.8037,3.3007,0.67355,5.8756,10.3088,16.0797,7.7168,2.1453,4.7181,1.575,16.2955,5.8863,3.5166,0.99431,2.5682,6.6449,13.0492,3.0963,4.0677,3.3434,1.3767,1.4915,4.4008,11.2827,3.29,2.3017,11.6791,2.3728,2.1983,2.1861,11.8194,1.8216,3.5654,1.1542,13.4789,4.8832,8.7663,3.6641,10.6328,6.79,6.9036,6.5856,3.5039,1.529,4.6325,,,,0.07495,,,,0.35988,3.7856,3.6267,0.8557,8.9835,1.6621,0.37298,3.3453,2.9766,47.2251,14.3158,203.4714,3.6974,4.7066,1.6269,1.8298,3.5588,7.3288,1.8234,3.5323,0.792,6.2472,10.5303,16.6148,8.0846,1.9809,4.3293,1.6049,17.7081,4.954,3.4535,1.0679,2.6416,7.6361,13.5857,2.8502,4.0193,2.9952,1.3809,1.5162,3.9268,10.8608,2.9406,2.2169,10.8412,2.1277,2.0584,1.9562,10.8727,1.7538,3.4841,1.1007,12.9133,5.3321,7.4458,4.2321,9.187,6.8511,6.5749,7.3061,3.3013,1.3621,4.4412,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI004,2.4702,6.1146,,-50y,,,,2.0826,4.8946,1.7593,3.3807,3.5469,edsd,,,F,,0.02263,1.9898,2.4313,0.18576,7.3169,0.41169,0.13799,3.7946,0.88732,31.3093,13.6673,128.6959,2.1042,6.106,0.39954,0.90154,1.9083,3.9341,0.76651,1.3047,0.56994,6.143,5.4301,28.2007,7.4786,0.74684,3.087,0.64037,7.2894,6.305,1.2391,1.3891,2.9929,3.6668,7.3624,5.7639,3.5251,1.4087,0.49832,0.19332,4.1248,13.0753,2.0225,1.4917,8.1361,1.946,0.90385,1.4588,6.6888,1.5083,0.32999,0.64464,5.9188,3.5064,6.0253,4.0374,8.4484,3.4718,2.2488,2.5612,1.414,1.066,1.0756,,,,0.06507,,,,0.0226,1.9435,2.0098,0.18236,9.1916,0.45181,0.13082,3.897,1.107,31.918,13.6038,131.7706,2.1079,6.4748,0.34445,0.75116,1.969,3.8349,0.70935,1.1821,0.53909,7.3851,5.5287,26.7043,7.7322,0.67733,2.897,0.66198,6.9551,5.9004,1.0424,1.3235,2.5994,3.9657,7.0908,5.4531,3.9041,1.3448,0.48335,0.21428,3.403,11.9276,1.593,1.5261,6.8357,1.2776,0.77084,1.3134,6.3496,1.1138,0.32208,0.55918,6.0263,3.4089,5.1788,5.1011,7.6513,3.4409,1.9192,2.8712,1.1485,1.009,1.1205,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI005,1.5598,2.3519,,-50y,,,,16.3267,3.8669,2.3747,1.9097,1.5533,edsd,,,M,,0.31748,3.6878,3.5856,0.62498,7.9257,1.2413,0.31313,3.1004,2.3142,40.733,13.7156,182.5569,3.3077,3.6811,1.2463,1.8109,2.8706,6.184,1.5884,2.654,0.92777,5.6675,8.7671,21.8116,6.7632,1.9837,3.9037,1.3637,14.7075,6.1161,3.16,0.91292,2.1757,5.7178,10.7795,3.437,4.0016,3.0103,1.2667,1.4512,3.8922,9.1461,2.6542,2.0745,9.9779,2.4906,2.2202,2.0525,10.6862,2.08,2.8971,1.0087,11.6951,4.3593,7.8364,3.2368,9.5078,6.4189,6.17,5.8961,3.3994,1.491,4.3908,,,,0.07342,,,,0.27463,3.4799,3.2654,0.6096,9.1996,1.3405,0.32624,2.9717,2.5073,39.7329,12.7794,186.1888,3.2736,4.4989,1.3314,1.6264,3.1716,6.2572,1.6976,2.7611,1.0165,5.7367,8.7273,18.8999,7.0864,1.885,4.1291,1.4155,14.0834,4.6644,3.0089,0.83979,2.2319,6.6262,10.9934,3.1677,3.7857,2.9058,1.3532,1.5003,3.5454,9.1457,2.5273,2.1121,8.7491,2.1279,2.0102,1.9188,10.5583,1.7409,2.8944,0.97633,12.0018,4.3139,7.0168,4.363,9.0405,6.3171,5.8626,6.4156,2.9755,1.3723,4.1737,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI006,1.3797,1.7453,,-50y,,,,17.2171,5.4817,2.893,2.437,1.6975,edsd,,,F,,0.38664,4.2242,4.0881,0.8008,8.7033,1.3981,0.33346,2.8431,2.7719,46.3621,15.227,189.237,4.1408,4.0278,1.5057,1.823,3.1787,7.107,1.7386,3.0689,0.90791,6.0304,10.8121,19.3711,7.5597,2.272,4.8029,1.5606,16.6257,6.2003,3.3074,1.2298,2.4471,6.4399,13.3383,3.2823,4.1883,2.8552,1.3371,1.528,4.2412,10.5263,3.0905,2.3911,11.457,2.4116,2.1443,2.3762,11.5461,2.2004,3.3958,1.0772,11.6763,4.7932,8.4148,3.5751,11.021,6.6204,6.5938,7.3164,3.224,1.885,4.5314,,,,0.07934,,,,0.36741,4.014,3.5798,0.77569,9.0385,1.5197,0.32912,2.9262,2.8077,45.1608,14.5272,193.0484,3.9428,4.2208,1.5454,1.7829,3.4809,7.0857,1.6844,3.1058,0.66256,6.0687,10.8828,15.6604,7.9171,1.9705,4.4849,1.5598,16.6387,4.9477,3.0127,1.2107,2.527,7.2283,13.6094,2.9318,3.9903,2.7013,1.399,1.5705,3.7818,10.6284,2.7618,2.2248,10.1362,2.1701,1.8947,2.0154,10.3294,1.7802,3.3618,0.98644,12.5855,5.2929,7.5073,4.0746,10.6824,6.9858,6.1315,7.6791,3.1577,1.5274,4.3009,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI007,2.156,2.3676,,-50y,,,,18.0333,4.8407,2.5717,2.1949,2.1285,edsd,,,M,,0.33912,4.4281,4.0384,0.88831,8.8246,1.3642,0.36765,3.1601,2.4853,45.3765,13.7356,189.7608,4.1096,3.8755,1.5954,1.8637,3.1207,6.8406,1.8414,3.1144,1.1008,5.7793,11.0469,30.2228,6.8955,2.2053,4.7763,1.6424,16.6826,5.6852,3.5812,1.204,2.5312,6.8154,13.5345,3.1264,3.9129,3.0989,1.4531,1.4771,3.9719,9.2855,3.0379,2.4272,10.7917,2.4721,2.3365,2.3251,11.0321,1.9593,3.3141,1.1785,11.8188,5.3179,8.8539,3.3858,8.4367,6.9033,6.3765,7.0678,3.6834,1.5869,4.7548,,,,0.07303,,,,0.31019,3.7918,3.8641,0.79242,9.5174,1.5218,0.37363,3.2041,2.3291,46.765,13.7119,185.9887,4.0572,4.0908,1.5648,1.8262,3.4391,7.4468,1.7976,3.1628,1.1453,6.1974,11.0239,23.0322,7.3752,2.0647,4.3012,1.5496,14.7771,4.4909,3.3936,0.90791,2.4373,7.4924,12.4739,2.5282,4.0839,2.7918,1.4839,1.4005,3.4772,8.402,2.9544,2.397,8.7061,2.351,2.3064,2.1612,11.3061,1.8144,3.1774,1.0854,12.0217,5.4325,7.0785,3.56,8.5336,6.72,5.9142,7.1243,3.0562,1.603,4.4025,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI008,1.8244,1.701,,-50y,,,,18.1835,4.7098,2.8787,2.2973,1.6754,edsd,,,M,,0.371,4.8666,4.0666,0.83217,9.15,1.6704,0.37578,3.2017,2.6953,48.3698,15.0998,213.9673,3.865,4.3731,1.6314,1.8625,3.8139,7.6829,1.9238,3.2571,0.88033,6.8599,11.0853,23.4172,7.0528,2.5063,4.2768,1.8339,19.922,7.2955,3.7608,1.3369,3.1151,7.2598,13.7679,3.9225,4.1958,3.3625,1.4459,1.5301,4.2252,11.0284,3.154,2.3847,12.1016,2.5174,2.6018,2.2909,13.2339,2.0461,3.3951,1.2992,13.7549,5.4277,9.5152,3.6813,11.024,7.0721,6.5338,7.7644,4.0353,1.5876,4.783,,,,0.08038,,,,0.33936,4.6087,3.6746,0.77985,10.414,1.8734,0.38384,3.1325,2.8085,47.8126,14.8911,214.9513,4.0376,4.62,1.6425,1.7548,3.9227,7.329,2.0926,3.1891,1.0569,6.7062,11.7404,21.6185,7.7003,2.4284,4.0828,1.9171,18.7861,5.2795,3.7914,1.0662,2.8046,8.0737,14.1437,3.329,3.8945,3.0321,1.6074,1.5304,3.9946,10.9832,2.8467,2.3751,11.0345,2.4287,2.426,2.0756,12.8154,1.8569,3.2129,1.2814,14.151,5.4518,8.2924,4.2333,10.9979,6.9815,6.3113,7.8855,3.4794,1.5212,4.5635,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI009,2.4514,2.0322,,-50y,,,,18.6723,5.1289,2.8429,2.2006,2.1683,edsd,,,M,,0.43008,4.6132,4.4363,0.8298,9.6728,1.4963,0.37691,3.3825,3.0369,47.0307,15.1085,203.9727,4.5333,4.7483,1.4579,1.973,3.4284,7.5082,1.8945,3.011,1.0618,6.7989,12.583,24.2618,7.2711,2.4247,4.5683,1.8075,18.7841,7.057,3.7728,1.1039,2.4345,6.6393,15.7739,3.7622,4.0608,3.1158,1.5863,1.613,4.4166,10.9285,3.1414,2.7377,12.9774,2.5505,2.4951,2.4711,13.3354,1.868,3.7971,1.3149,15.5659,5.226,9.3025,3.8956,9.9939,7.1688,7.0188,7.5415,3.9354,1.7313,4.9567,,,,0.08257,,,,0.40428,4.4161,4.3046,0.82585,10.4493,1.7895,0.39388,3.7591,3.2384,47.8528,14.4027,207.7413,4.3249,4.9248,1.5758,2.0531,4.0582,7.4038,1.896,3.268,1.2669,7.0963,12.1539,23.6087,8.0151,2.3304,4.4032,1.8095,17.7483,5.3261,3.6261,1.069,2.3003,7.3176,14.5372,3.4912,4.3587,3.3691,1.5422,1.6261,4.0223,10.2779,2.8626,2.6779,10.2866,2.5501,2.3285,2.2051,13.196,1.841,3.6831,1.2551,14.6561,5.0677,8.3165,4.4252,10.9051,7.7033,6.6341,7.5206,3.5021,1.5416,4.7321,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI010,1.7432,2.2178,,-50y,,,,18.0355,4.275,2.4066,1.9909,1.9797,edsd,,,M,,0.42969,4.4399,4.2755,0.87588,8.844,1.5729,0.37104,2.8827,3.0922,42.0541,16.143,209.6925,4.2973,4.1815,1.655,1.8734,3.4759,7.1972,1.7798,3.3788,1.0156,6.1868,11.3035,29.4319,7.3653,2.2966,5.0879,1.6692,19.3901,6.2736,3.8074,1.2361,2.7517,6.9048,14.2702,3.4363,4.2021,3.4832,1.4831,1.563,4.4726,10.571,3.262,2.4915,11.4886,2.522,2.4598,2.2682,13.2719,2.1613,3.8252,1.12,15.2695,5.4624,8.9517,3.7756,10.1216,7.825,6.8095,7.3258,3.4464,1.7011,4.6462,,,,0.06526,,,,0.40865,3.8126,3.996,0.89253,10.1495,1.6191,0.37521,3.1375,3.2034,43.1093,16.2098,219.3807,3.9927,4.3213,1.7055,1.8713,3.6528,7.3967,1.7307,3.6156,0.85339,6.6265,12.728,22.2383,8.0576,2.0326,4.7222,1.6876,18.981,4.8896,3.4302,1.1188,2.7387,7.8169,15.5968,2.917,4.331,3.2259,1.4956,1.63,4.1739,10.9355,3.0451,2.4017,10.4643,2.4429,2.2032,1.8778,12.7071,1.7782,3.8124,1.033,15.2759,5.6312,8.1537,4.0302,10.205,7.3142,6.9093,7.7964,3.5823,1.3821,4.5814,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI011,2.171,1.8234,,-50y,,,,18.0431,5.1904,2.8277,2.4619,1.8805,edsd,,,M,,0.4225,5.1765,4.7315,0.90579,9.8544,1.8069,0.41216,4.0042,3.1726,49.6062,14.8209,213.6136,4.7189,5.2487,1.8749,2.2354,4.0207,7.9513,2.0666,3.3865,0.75136,7.4932,12.9477,27.7174,9.1613,2.8712,5.3815,2.0095,22.3925,6.9267,4.4599,1.1123,2.7707,8.1578,15.8939,4.46,4.9054,3.6257,1.964,1.5793,5.0762,12.7505,3.5371,2.519,12.368,2.5739,3.063,2.5114,15.7924,2.2277,3.816,1.3258,16.525,6.1594,8.0256,3.7986,10.9693,7.1803,7.3432,8.911,4.5874,1.8423,4.9601,,,,0.09689,,,,0.38402,4.7026,4.2613,0.93913,11.3833,1.9753,0.42219,4.2052,3.4004,52.0037,14.6699,217.3875,4.3878,5.6182,2.0136,2.1933,4.7077,8.5667,2.1539,3.7959,0.70585,8.4674,13.3726,22.6581,9.5438,2.5197,5.5142,2.1457,21.6418,5.9935,4.23,1.0851,2.7102,9.0934,16.5453,4.1232,5.4242,3.4523,1.8522,1.5324,4.7816,12.3998,3.637,2.5411,10.0428,2.3097,2.8364,2.3171,14.2158,2.0714,3.6942,1.3198,16.9546,6.497,7.5211,5.4604,9.2836,8.6442,7.1666,9.5234,3.9805,1.5567,4.7611,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI012,2.142,2.2847,,-50y,,,,20.1977,5.2834,2.893,2.2935,1.8952,edsd,,,M,,0.41378,5.4008,5.0997,0.89128,9.3175,1.5833,0.37909,3.0526,2.9293,47.0448,16.4425,221.9076,4.3187,4.3988,1.6502,2.1885,3.9122,6.7926,2.1023,3.3827,1.1391,6.877,10.9526,21.0729,7.1441,2.4261,5.1775,1.8696,19.2424,6.8466,3.8288,1.2778,2.7892,7.9076,13.9946,3.688,4.3724,3.5472,1.4536,1.6813,4.979,11.9548,3.1589,2.8568,12.2728,2.6562,2.4749,2.5655,12.9803,2.0692,4.6401,1.195,15.3991,5.7582,8.7328,3.5,10.4451,7.358,7.3319,7.4971,3.9535,1.801,5.2657,,,,0.07486,,,,0.37555,5.0084,4.8339,0.84541,10.2283,2.0117,0.38335,3.254,3.1676,46.8023,15.5572,229.0916,4.0531,4.9485,1.5576,2.1556,4.4074,7.7057,2.2595,3.5467,1.2968,7.1056,12.347,19.8549,8.0448,2.5327,5.1184,2.0589,18.3906,5.1798,3.8695,1.0185,2.3642,8.7335,15.1685,3.0006,4.3293,3.7595,1.7426,1.7384,4.496,11.5674,2.8367,2.6484,10.9025,2.3223,2.3569,2.3494,12.1477,2.0168,4.562,1.122,15.565,5.6846,8.2884,3.962,10.4796,8.1165,6.7978,7.9541,3.9177,1.6347,5.0958,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI013,1.472,1.8551,,-50y,,,,17.652,4.2291,2.4742,1.8955,1.5374,edsd,,,M,,0.36272,3.8938,4.0386,0.70023,7.6977,1.3199,0.31235,2.9441,2.7552,42.9721,14.1809,191.857,3.6124,3.9989,1.3323,1.8297,3.0151,6.5989,1.7072,2.5608,1.0824,5.9376,9.6693,18.4698,6.7321,1.998,4.1081,1.4315,15.4102,5.6491,3.3918,1.1478,2.5346,6.3862,13.0671,3.4594,3.7681,3.112,1.3436,1.4491,4.1302,9.9496,2.8395,2.1047,10.2916,2.0428,2.2599,2.0989,12.5186,1.9748,3.4916,0.95781,12.6877,5.1003,7.6723,3.4249,8.4244,7.2637,6.49,6.5986,3.3662,1.3711,4.4544,,,,0.07451,,,,0.35587,3.7968,3.7142,0.77011,9.1051,1.5506,0.34437,2.9883,2.8912,44.0812,14.2611,196.2657,3.6045,4.56,1.4789,1.7346,3.1741,6.8101,1.711,2.8868,0.84938,5.8617,11.0778,14.5168,7.4372,2.0464,4.0779,1.4247,15.7914,4.8125,3.1815,0.92636,2.3095,6.7463,14.3049,2.4513,3.7601,3.1755,1.4462,1.4837,3.5698,10.2546,2.662,2.2027,9.5544,1.7999,2.1807,1.9693,12.9492,1.7104,3.6797,0.92721,11.8822,4.8749,6.8248,4.2512,9.6159,7.0764,6.3181,7.2502,2.9834,1.3803,4.2681,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI015,2.053,2.5948,,-50y,,,,16.9978,4.1112,2.481,1.9707,1.4848,edsd,,,F,,0.36018,3.7399,4.1623,0.7886,8.3706,1.3418,0.3316,2.9683,2.6533,42.9952,12.8799,180.5895,3.2669,3.9632,1.4328,1.8599,3.0625,6.6684,1.7039,2.9775,1.1293,5.5081,9.777,25.4214,6.7395,2.1102,4.224,1.4846,18.1444,5.3321,3.4097,1.1394,2.6138,5.9028,11.641,3.0027,3.6782,3.1208,1.4238,1.3575,4.3925,10.2765,2.9742,2.1265,10.3562,2.1062,2.353,1.9779,12.0108,1.5966,3.1253,1.0849,13.2191,4.8888,7.5452,3.5242,9.5132,5.4674,6.2662,6.4185,3.7251,1.3028,4.4364,,,,0.06174,,,,0.35333,3.5866,3.7741,0.78957,8.3796,1.5734,0.35398,2.8833,2.8156,41.8076,12.2783,183.164,3.3477,4.0084,1.4545,1.8826,3.4485,6.5448,1.7864,3.0845,0.93407,5.4694,9.525,22.5833,7.2669,2.053,3.8935,1.4837,16.4595,4.7128,3.3978,1.1694,2.9314,6.5287,11.8764,2.6636,3.9142,3.4017,1.3766,1.3866,3.8624,10.4475,2.6872,2.0377,8.9115,2.1563,2.1787,1.7206,11.4033,1.6544,3.0918,1.0351,12.967,4.719,6.5122,3.9876,10.0829,5.8241,6.0473,6.2989,3.6116,1.3253,4.2623,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI019,2.1892,2.354,,-50y,,,,16.0109,4.7631,2.565,2.3053,1.9862,edsd,,,F,,0.39969,4.3399,4.2661,0.77196,9.1492,1.3341,0.36383,3.3336,2.7766,45.797,13.1133,180.9211,3.7157,4.8114,1.4081,2.0563,3.0385,6.4578,1.8086,3.0068,0.94835,5.8779,9.7999,28.241,7.9235,2.1319,4.7261,1.6417,16.165,6.1115,3.3321,1.0322,2.4855,6.0886,12.1538,2.9929,4.168,3.3007,1.5146,1.5094,4.2644,10.2797,2.9924,2.2211,10.8813,2.187,2.2152,2.2297,11.0993,1.9274,3.4336,1.0998,13.2713,5.2071,7.5987,3.7495,9.1848,7.3352,6.7011,6.8887,3.6426,1.5867,4.4056,,,,0.06495,,,,0.36542,3.8856,3.7875,0.74275,9.7966,1.5403,0.3668,3.7436,3.2648,45.5827,12.5599,186.3442,3.7605,5.0423,1.4359,1.7385,3.3402,6.802,1.799,3.1777,1.5234,6.4392,10.1361,31.2259,7.9457,1.9759,4.3955,1.616,16.5415,4.5897,3.3841,1.0743,2.416,7.0396,12.9666,3.0167,4.0047,3.2782,1.4668,1.5456,3.8139,10.5466,2.685,2.2838,8.4056,2.0448,2.238,2.102,11.1084,1.8825,3.4792,1.0959,13.2357,5.2668,7.2187,4.2409,9.5535,7.5225,6.3445,7.1225,3.1629,1.5318,4.2646,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI020,1.2046,1.3062,,-50y,,,,17.472,4.6347,2.7989,2.1081,0.9599,edsd,,,F,,0.39427,4.082,4.1044,0.88298,8.2539,1.4743,0.36306,3.1948,2.7424,45.5105,14.3456,201.1678,4.0207,5.1353,1.6267,1.8671,3.1487,6.8975,1.8472,3.3145,0.34422,6.3345,10.964,9.3953,7.7603,2.2156,4.6668,1.5583,19.2686,5.8435,3.6691,1.1793,2.7373,6.5634,13.2739,3.7357,4.2382,3.243,1.4915,1.5353,4.3723,10.5725,3.1678,2.1493,10.682,2.1042,2.1861,2.1094,11.8666,1.7524,4.4232,1.093,14.2635,5.5218,8.1054,4.4913,10.4191,6.2275,6.8794,7.0968,3.8793,1.4852,4.7434,,,,0.08167,,,,0.35806,3.4068,3.928,0.87013,9.9215,1.6918,0.38002,3.5942,3.0658,45.3945,13.9782,204.8212,3.9124,4.7055,1.6549,1.6729,3.2479,6.702,1.7687,3.3661,0.39907,6.9756,10.8467,8.4332,7.8783,2.0467,4.3572,1.5208,16.936,5.2609,3.6916,1.0169,2.5902,7.5001,13.2849,3.2424,4.4089,2.9058,1.356,1.5486,4.1495,10.781,2.8498,2.206,9.2584,2.2044,2.2909,1.9772,10.6811,1.9332,4.1883,1.104,13.2138,5.3901,7.9417,4.846,12.3532,6.6617,6.7091,7.2099,3.1851,1.3748,4.4242,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI021,1.906,2.1809,,-50y,,,,15.6103,4.4656,2.4511,2.0028,1.6274,edsd,,,M,,0.38063,3.8072,4.0771,0.7312,9.1829,1.3463,0.32807,3.4883,2.8481,39.3698,12.8773,179.6528,3.7772,5.0758,1.4104,1.7516,3.3009,6.3222,1.6533,2.9145,0.80183,5.5182,9.9752,23.2142,7.2027,2.0739,4.3147,1.4082,16.6759,5.4804,3.3215,1.0691,2.3079,5.9052,13.6607,2.9587,3.7917,2.9079,1.3436,1.3632,4.2419,10.3582,3.0299,2.3377,10.8421,1.9753,2.207,2.1965,11.5328,1.7361,3.8948,1.0373,12.2852,4.5346,7.8575,3.6105,10.0653,7.1633,6.1409,6.9503,3.3026,1.4235,4.2449,,,,0.06667,,,,0.3771,3.5549,3.9007,0.78539,9.2811,1.59,0.36027,3.3852,3.0755,39.8014,11.4186,182.6154,3.1699,5.244,1.5548,1.7571,3.1353,6.7279,1.9094,3.2514,0.89647,6.4583,11.3405,20.5498,7.4424,2.0058,4.2057,1.5572,17.2152,4.7811,3.3303,1.0648,2.3793,6.5251,14.348,3.0024,3.8589,2.8653,1.5348,1.402,3.7725,10.402,2.9281,2.3685,9.0846,1.8811,2.0466,1.89,10.8296,1.7731,3.8803,1.0543,11.9065,4.8131,7.36,4.8432,9.5941,7.2022,6.0978,6.9804,3.3454,1.2488,4.0879,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI022,1.5218,1.5346,,-50y,,,,18.4167,4.6203,2.8765,2.2475,1.3017,edsd,,,F,,0.43272,4.7217,4.317,0.89213,9.359,1.6172,0.38884,3.6169,2.9334,48.3369,15.8275,236.6437,4.3245,4.7594,1.6007,2.0751,3.6773,7.4051,1.9665,3.3502,0.35882,7.0398,10.9949,14.0431,7.6841,2.5033,4.9852,1.9,17.1806,6.1117,4.0173,1.1447,2.8198,7.2136,12.8951,3.7564,4.5662,3.2388,1.6958,1.7742,4.5595,10.9108,3.1423,2.3503,11.4424,2.4024,2.6027,2.2433,13.448,2.1538,3.8137,1.2573,12.9795,5.5847,8.6361,4.2325,10.146,6.2479,7.7363,6.5938,3.8605,1.7066,5.1078,,,,0.0845,,,,0.40101,4.3549,3.9549,0.86831,9.8139,1.7974,0.3934,3.4045,2.9757,48.342,15.3206,239.7024,3.8236,4.9123,1.7069,2.0182,3.7929,7.4584,2.1109,3.4804,0.38181,6.4671,11.031,13.0689,8.0599,2.3641,5.0588,1.8636,16.8669,5.0285,3.9369,1.2747,2.8511,8.1859,14.0606,3.219,4.2342,3.8942,1.6262,1.7943,4.2239,10.7091,2.9151,2.2954,10.3997,2.1558,2.3579,1.8859,12.3146,1.7615,3.7169,1.2019,13.5275,5.3963,7.7627,4.5874,9.9323,7.0086,7.4277,7.83,3.8521,1.4511,4.8547,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI023,1.5226,3.1249,,-50y,,,,18.528,4.1815,2.5036,1.9941,1.6642,edsd,,,M,,0.46538,4.7298,4.8047,0.87246,9.1874,1.5729,0.39528,3.1905,3.6729,43.7242,15.2551,216.3348,4.4184,4.2503,1.5593,2.1686,3.8925,6.8061,2.0272,3.355,0.66674,6.0786,10.8031,20.0338,7.7103,2.5556,4.6108,1.8702,19.2089,6.6615,3.785,1.1753,2.4826,7.4626,13.5668,3.8682,4.1172,3.3729,1.6799,1.7644,4.6581,10.7933,3.1525,2.6056,11.6598,2.3477,2.4995,2.3724,13.0195,2.2166,4.2979,1.2837,15.9663,5.5097,8.2931,3.5935,11.5457,6.3731,7.6598,7.7004,4.1453,1.8382,5.1536,,,,0.07177,,,,0.42429,4.5323,4.7368,0.86853,10.6055,1.6872,0.43803,2.9586,3.6893,44.4048,14.8142,220.49,3.907,4.2201,1.6893,2.1733,4.1186,7.0263,1.9854,3.5737,0.58529,6.2894,10.8839,16.7432,8.0416,2.3783,4.6986,1.914,17.659,5.2723,3.681,1.112,2.4003,8.0842,14.0732,3.1855,4.0559,3.8315,1.8635,1.725,4.2989,11.1301,2.9481,2.4912,11.1617,2.4349,2.6482,2.0367,12.4923,2.0136,4.2337,1.2363,15.1759,5.305,7.7676,4.5806,11.3106,6.7731,7.3845,7.8027,3.8903,1.518,4.9413,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI024,1.2722,1.9878,,-50y,,,,16.589,4.2462,2.488,1.9767,1.053,edsd,,,F,,0.35041,3.8512,3.6514,0.77586,8.3938,1.2251,0.32524,2.7067,2.3855,41.152,13.5784,190.6344,2.9876,3.9242,1.53,1.7025,2.835,6.2393,1.5008,2.9396,0.56191,6.252,9.274,16.1099,6.1769,1.9196,4.4549,1.294,14.1337,6.3036,3.0339,1.0199,2.2267,5.5347,12.2458,3.3709,3.7607,3.1162,1.2729,1.4666,3.6484,9.8795,2.8395,1.8829,9.7252,1.6317,2.0031,1.9091,11.0022,1.4705,3.5903,1.0042,11.8102,4.4288,7.8301,3.6198,9.3309,6.1394,6.3183,6.197,3.46,1.1486,4.4306,,,,0.07442,,,,0.33898,3.5976,3.2943,0.785,9.5312,1.3136,0.34954,2.8537,2.6802,41.4415,13.3855,191.9809,3.1371,3.862,1.5982,1.572,3.0302,6.4328,1.5676,3.131,0.67471,5.6899,9.3181,12.1443,6.9306,1.7375,4.3231,1.2819,15.8814,4.4236,2.92,1.0833,2.1381,6.0777,11.343,2.4452,3.5643,3.0384,1.2201,1.4654,3.5992,9.1639,2.6336,1.9382,8.2134,1.7073,1.8322,1.7939,10.3466,1.5058,3.4541,0.97345,11.9794,4.5127,6.6345,4.0787,9.0106,6.1268,6.0479,6.5985,2.8631,1.2118,4.2798,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI026,1.1606,1.759,,-50y,,,,19.3177,5.0541,1.4143,2.1795,0.9901,edsd,,,M,,0.49714,5.214,4.4585,0.98753,9.093,1.9626,0.43463,3.5061,3.2863,24.6806,13.0646,257.2867,4.3391,5.0647,1.8006,2.0626,4.4307,7.6505,2.3867,3.5201,0.36448,6.1348,11.3178,13.7019,7.8711,2.8077,5.2206,2.1469,20.5486,6.4618,4.5033,1.2654,2.9983,7.9308,13.8944,3.8664,4.3997,3.3928,1.729,1.8023,4.4228,10.8883,3.3589,2.3585,12.1081,2.7929,2.7716,2.4174,14.4091,2.3105,4.158,1.3721,16.3306,5.9984,9.318,4.1518,11.3682,7.5473,8.4379,8.5374,4.1558,1.8215,5.6885,,,,0.0895,,,,0.45669,4.1542,4.0304,0.96734,10.2582,2.1762,0.43646,3.1363,3.3837,28.2987,14.449,259.0133,4.1725,5.1925,1.8772,2.1776,4.5784,7.7064,2.3395,3.8111,0.44614,6.8896,11.4399,12.2949,8.5128,2.5657,5.035,2.2148,20.5284,5.3816,4.2985,1.2922,2.8387,9.1099,14.5379,3.355,4.4761,3.8269,1.763,1.8326,4.044,11.1018,3.182,2.249,11.4609,2.5608,2.5224,2.0431,13.9024,2.2101,4.0564,1.3146,15.0536,5.5959,8.8443,4.558,10.9258,8.223,8.15,8.5504,4.3135,1.6101,5.4042,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI027,1.2254,1.8035,,-50y,,,,16.5658,4.5306,2.5107,1.8461,1.4275,edsd,,,F,,0.35398,3.5949,3.839,0.74054,8.1706,1.312,0.33271,2.7311,2.3365,43.0669,13.9352,196.1977,3.464,3.8192,1.356,1.6744,2.7766,6.3827,1.7728,2.9787,0.75804,5.8218,9.8556,14.4741,6.2255,2.1558,4.0456,1.4708,14.5091,5.5529,3.4158,0.79301,1.8661,5.5724,12.45,2.9338,3.6226,2.7807,1.4125,1.3677,3.6227,9.1187,2.8635,1.9634,9.9218,1.9164,2.3124,1.7846,10.7297,1.6999,3.0644,1.0546,11.9064,4.3065,7.851,3.035,10.0392,5.8972,6.643,6.3182,3.2501,1.2383,4.4202,,,,0.06798,,,,0.31856,3.0647,3.752,0.77274,9.0441,1.4168,0.34086,2.5013,2.3948,44.1237,13.5214,203.2654,3.656,4.0272,1.391,1.7241,3.16,6.6617,1.7754,3.2123,0.96812,5.1454,10.1939,13.6285,6.7517,1.8612,3.7029,1.3676,14.2288,4.5317,3.2723,0.85504,1.9884,6.3032,12.5042,2.1433,3.4684,2.6068,1.3396,1.4087,3.4994,9.1558,2.7355,2.1191,9.6268,2.1587,2.1775,1.796,11.0423,1.798,3.0487,0.99556,11.7783,4.245,7.245,3.4049,9.4749,6.7171,6.3008,6.5782,2.8918,1.3764,4.2692,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI028,2.2889,2.2088,,-50y,,,,14.033,4.193,2.0279,1.8031,2.2209,edsd,,,F,,0.2958,3.8893,3.6426,0.72975,7.5739,1.1683,0.32906,3.0912,2.0902,31.6077,9.2054,166.7693,3.4714,3.6532,1.3872,1.6296,2.8304,5.8143,1.5903,2.8045,1.2492,4.9093,8.5023,36.3813,6.3731,1.9649,4.1221,1.3479,15.8776,4.6717,3.0824,0.94794,2.1198,5.7327,11.6557,2.7612,3.489,3.0245,1.2633,1.3777,3.7098,9.4057,2.7311,2.0085,9.384,2.0222,1.9458,2.0436,9.9871,1.8519,3.1394,1.0886,11.66,4.4013,7.7698,3.2767,10.605,6.6787,6.0675,6.3681,3.1119,1.4542,4.0564,,,,0.05839,,,,0.27619,3.3315,3.7676,0.74703,9.078,1.2226,0.32959,2.9268,2.1606,38.7839,11.0519,165.7529,3.2306,3.6222,1.3943,1.8599,3.3098,6.1386,1.6023,3.1412,1.642,5.4161,8.7966,42.7786,7.1065,1.7066,3.8898,1.3728,15.2981,4.4627,2.876,0.86488,1.988,6.3494,11.4876,2.3425,3.4647,3.2234,1.3064,1.3845,3.3135,8.8549,2.5609,2.1383,7.8636,2.0324,1.9193,1.928,10.7321,1.7638,3.1281,1.0127,12.7796,4.5228,6.7775,3.6293,8.9171,6.5997,5.5596,6.5751,3.2172,1.4754,3.7973,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI031,1.6004,1.5472,,-50y,,,,15.3515,4.5381,2.4976,2.2288,1.4932,edsd,,,F,,0.31414,4.1821,3.3138,0.7787,6.9954,1.3022,0.29862,3.3694,2.4267,44.0719,14.5715,204.5866,3.659,4.2643,1.4933,1.5008,3.3725,6.753,1.6901,2.8585,0.49947,5.984,9.5931,14.2795,7.146,1.932,4.3193,1.5996,15.5037,5.2847,3.3068,1.1142,2.379,6.3117,10.7411,3.0631,4.052,2.6527,1.09,1.5185,3.352,8.6156,2.7864,2.2281,11.1603,2.1631,1.9031,2.0608,11.5985,1.5256,2.8915,0.97977,11.5783,4.5226,7.737,3.151,9.2653,5.4002,6.3287,6.4441,2.9014,1.3071,4.3714,,,,0.07934,,,,0.33048,3.672,3.6874,0.85789,9.4689,1.6598,0.3502,3.4554,2.5686,44.7024,14.6801,224.1112,3.9054,4.2111,1.6478,1.8938,3.3588,7.3072,1.7493,3.2022,0.45596,6.2151,11.1469,8.2195,7.7077,2.0692,4.0403,1.6025,15.8147,4.713,3.5095,0.95122,2.3201,7.7596,13.0066,2.7196,4.0324,3.0486,1.5424,1.5892,3.4763,8.8532,2.7121,2.2065,10.1397,2.0456,2.188,2.0158,10.3908,1.6953,3.3577,1.0434,12.1081,4.4891,7.1729,3.3772,7.8982,6.6673,6.1701,7.7795,3.5269,1.3768,4.2401,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI032,2.0915,2.9031,,-50y,,,,19.2627,5.2607,2.5118,2.4451,1.8762,edsd,,,M,,0.27353,4.4141,4.2382,0.78396,7.6056,1.287,0.32351,2.9704,2.1284,48.8023,16.5544,252.0335,4.0095,4.6044,1.4603,1.9458,2.9685,7.475,1.7419,3.2747,1.6117,5.9728,9.1474,27.853,7.8848,2.0197,4.6734,1.5011,18.023,6.1776,3.2221,1.1475,2.7598,6.9119,10.7707,3.6695,4.6057,2.7968,1.3629,1.6522,4.3669,10.4845,3.1118,2.5147,10.8543,2.2248,2.1298,2.4694,10.8799,1.8673,3.518,1.0196,12.7452,5.9736,7.4743,3.8739,9.9631,7.2334,6.6111,7.2298,3.3509,1.657,5.1663,,,,0.07764,,,,0.19817,3.7329,3.8483,0.74893,8.5042,1.4529,0.31907,3.1304,2.1816,47.9737,15.7383,250.4935,3.6476,4.7744,1.3917,1.9727,3.325,7.4297,1.8674,3.4165,1.6347,6.4351,9.7032,24.9669,8.1276,1.8122,4.0647,1.5463,16.9533,4.9686,3.113,1.1493,2.3258,7.2313,11.1984,2.4538,4.5287,3.2503,1.493,1.6753,3.9831,10.4286,2.7925,2.5824,9.1919,2.0544,1.9127,2.3067,10.1527,1.8906,3.6701,0.95054,12.7223,5.1528,7.1517,3.5689,9.3977,6.8406,6.2151,6.7935,3.5721,1.6457,4.9035,,,,,,,,,,,,,,,,,,
-nG+MAN3T0MCI038,3.2846,2.7696,,-50y,,,,20.2468,5.7308,2.3632,2.4043,3.0457,edsd,,,M,,0.36202,4.9016,4.2844,0.85008,10.1825,1.6266,0.37921,3.3618,1.8892,47.6329,18.277,246.3704,4.4735,4.7116,1.6354,2.2199,3.6432,7.4753,2.089,3.5761,1.4126,7.1936,11.6101,47.3906,8.4002,2.4351,5.367,1.8939,19.8398,6.993,3.8636,1.208,2.9948,7.9295,13.8103,4.216,4.8982,3.5614,1.5907,1.683,4.8786,11.851,3.4545,2.363,12.3899,2.8888,2.3339,2.3134,14.7662,2.3236,3.8535,1.2673,13.9481,5.911,9.3648,3.2927,12.7536,6.7669,7.3519,7.0857,4.1255,1.6979,5.648,,,,0.07543,,,,0.30154,4.2872,4.1799,0.70429,10.3699,1.7374,0.3722,3.3932,2.0987,49.7409,18.8412,256.3853,4.4897,4.724,1.4435,2.0832,3.7183,7.6686,1.9633,2.9303,2.7545,6.9628,12.2189,48.6081,9.1343,2.421,5.3121,1.8686,19.3375,5.5035,3.6457,1.0477,2.6479,7.9026,14.0511,3.2372,4.7817,4.0543,1.6958,1.7252,4.6767,11.1166,2.8876,2.7021,10.7561,2.7145,2.2067,2.2806,13.2148,1.9137,3.4085,1.1155,15.6729,5.4556,8.5253,4.3133,11.4796,7.7577,6.4965,7.4944,3.5559,1.753,5.4024,,,,,,,,,,,,,,,,,,
-nG+MIL1T5AD001,2.508,2.286,,70-79y,AD,,,15.3609,4.9986,2.4775,2.1428,1.8625,edsd,AD,,M,,0.30203,4.7414,3.8,0.61564,9.7234,1.3767,0.34614,2.6204,1.6365,39.997,15.4454,210.9608,4.4165,3.8266,1.1929,1.9933,3.0477,7.2287,1.7441,2.8438,1.0388,6.2659,11.0916,23.1056,7.3194,2.1619,4.8644,1.6169,17.6678,6.0615,3.4975,1.0809,2.249,6.8312,13.0867,2.9412,4.1949,3.0345,1.3261,1.3961,4.6213,10.0704,3.0382,2.2438,11.8537,2.9146,2.0967,2.2094,11.132,2.2004,2.8551,1.2696,13.1233,4.8412,9.191,2.9155,9.8832,7.1782,6.0487,6.3085,3.5823,1.569,4.4663,25,,AD,0.0849,,,,0.26593,4.1763,3.7369,0.65022,9.8024,1.5075,0.32232,3.0828,1.5969,41.9003,14.413,218.2553,4.0617,4.6058,1.2752,2.0226,3.5009,7.5047,1.6766,3.0493,1.3304,6.2743,11.7629,20.9274,8.238,2.0648,4.6895,1.5622,16.859,5.1888,3.2845,1.0656,2.8374,7.6286,14.6369,2.7468,4.2749,3.0161,1.4383,1.5521,4.0363,9.9923,2.8551,2.2052,9.7231,1.9877,2.0589,2.1271,11.1306,1.6696,2.8285,1.1752,13.741,5.1062,7.3309,4.0754,9.6917,7.2282,5.6667,6.9081,3.4012,1.3402,4.311,,,,,,,,,,,,,,,76,,,
-nG+MIL1T5AD002,1.936,2.9353,,50-59y,AD,,,18.827,5.1249,2.6155,2.3642,1.4619,edsd,AD,,M,,0.36446,4.1929,4.1655,0.81768,8.297,1.4472,0.37265,2.9022,2.4566,51.1758,15.3101,219.1379,4.156,3.9091,1.6028,2.1231,3.3174,7.111,2.0391,3.1269,0.79331,5.9248,9.9995,20.2442,7.6496,2.4542,4.4899,1.6646,16.7927,5.3989,3.7339,1.1074,2.3228,6.585,13.5095,3.0187,4.3141,3.4282,1.8031,1.4576,4.2493,10.457,3.2543,2.2715,10.7772,2.4654,2.4393,2.3425,11.2389,2.0344,3.1295,1.2411,13.4099,5.4272,8.332,3.4836,10.7558,7.1385,6.6236,7.0412,3.9858,1.6945,4.8188,10,,AD,0.08584,,,,0.32875,3.7836,3.9139,0.84517,10.0845,1.6579,0.35012,3.0314,2.4292,50.9428,15.3238,224.5213,3.7778,4.6639,1.6252,2.0589,3.564,7.8422,2.108,3.3341,0.9213,6.0313,11.2669,18.8623,8.7588,2.33,4.4706,1.7635,17.9707,4.3346,3.6826,0.97499,2.2753,7.4551,13.611,2.2906,4.2779,4.1552,1.6172,1.5238,3.8381,10.1503,3.0501,2.1427,8.7266,2.2846,2.2324,2.0193,11.0799,2.0364,2.908,1.1548,12.5908,5.2099,8.0442,4.0222,10.2666,7.3816,6.3576,7.1034,4.0345,1.5205,4.6781,,,,,,,,,,,,,,,53,,,
-nG+MIL1T5AD003,1.7266,2.4181,,50-59y,AD,,,17.8149,4.8141,2.6944,2.1051,1.8256,edsd,AD,,M,,0.36515,4.3647,3.9905,0.63104,7.9909,1.364,0.33936,2.614,2.647,46.8638,15.8019,206.531,4.1743,3.8352,1.3853,1.9445,3.2473,5.671,1.8242,2.647,1.3495,4.832,8.2636,24.0846,6.2727,2.2274,4.5673,1.7132,14.971,4.698,3.367,1.012,2.3818,6.8144,10.0782,2.9658,3.6517,3.0148,1.4993,1.6382,3.7548,8.9244,2.7562,2.1434,10.6629,1.9084,2.302,2.1656,11.8402,1.6402,3.2029,1.0794,11.9291,5.1072,7.0676,2.8583,9.024,5.7462,6.6472,7.4131,3.5572,1.4902,4.8719,6,,AD,0.0756,,,,0.32695,3.9906,3.6724,0.59698,8.1043,1.4974,0.32526,2.74,2.3829,46.2948,15.072,204.7797,4.0279,3.839,1.191,1.8667,3.4367,5.7704,1.7615,2.7074,1.7114,4.9385,8.2424,22.4678,6.4411,2.1853,4.4469,1.6487,15.1636,4.1544,3.2405,1.0472,2.4465,7.2669,8.7726,2.3956,3.2195,3.0018,1.6746,1.6167,3.3708,8.7928,2.3769,2.1967,10.0747,1.8636,2.2408,1.7647,11.6719,1.4714,2.9734,1.071,12.0203,4.8456,5.9791,3.4528,8.8864,5.2529,6.1977,6.1071,3.3092,1.2994,4.6607,,,,,,,,,,,,,,,58,,,
-nG+MIL1T5AD004,1.7801,1.8769,,70-79y,AD,,,18.9472,4.7821,2.7636,2.1832,1.6953,edsd,AD,,M,,0.47086,4.8887,4.5141,0.79298,8.9164,1.4074,0.38738,2.8335,3.1851,46.3508,16.4823,242.1665,4.2007,3.665,1.6233,2.1016,3.7713,6.6604,2.2846,3.0823,0.58109,6.2155,10.6215,18.4159,7.1401,2.0924,4.5961,1.9557,16.7974,5.6511,3.9194,0.99224,2.2267,7.0023,13.5472,3.3043,3.9757,3.1692,1.3226,1.712,4.0943,9.7931,3.2074,2.3278,11.1945,2.4133,2.2097,2.4232,11.4368,2.0111,4.1054,1.3509,13.451,5.0587,8.9752,3.3203,9.8389,7.2104,6.6066,7.9545,3.3431,1.5717,5.0769,24,,AD,0.08648,,,,0.37741,4.3234,4.2998,0.7155,9.61,1.6909,0.39785,2.9363,3.0452,46.862,15.8558,243.3349,3.8819,3.9531,1.5116,2.116,3.7219,7.2114,2.2667,3.1254,0.68917,6.5426,10.6601,16.2964,7.5428,2.1145,4.2543,1.8932,15.9832,4.8301,3.8301,0.98211,2.4028,7.8924,13.0276,3.1249,4.1388,3.0718,1.4587,1.6401,3.6731,10.0389,2.9034,2.4523,9.4062,2.2523,2.3169,2.3159,10.8662,1.9245,3.6541,1.3215,12.8557,5.3766,7.1078,4.1358,10.774,7.0388,6.1751,8.3084,3.1875,1.5229,4.7695,,,,,,,,,,,,,,,73,,,
-nG+MIL1T5AD005,1.6495,1.4237,,+80y,AD,,,14.6382,4.5072,2.2569,1.6783,1.9729,edsd,AD,,F,,0.34673,3.7891,3.4544,0.57692,8.383,1.4462,0.31585,2.2648,2.5848,38.5626,13.793,195.672,3.6616,3.1217,1.0259,1.7876,2.8814,5.4559,1.8077,2.4348,1.0868,4.7825,7.9082,23.9703,5.6572,2.1242,3.7145,1.4892,14.3693,5.6348,3.6157,0.85182,1.979,5.6687,9.5771,2.4894,3.2395,2.8646,1.3064,1.4402,3.9756,9.2437,2.4247,1.8505,9.713,2.1257,1.9159,1.8074,9.7843,1.8179,2.8063,1.0816,11.3018,3.9575,8.0317,2.6374,9.2085,5.1942,5.8032,4.7509,3.498,1.318,4.0697,19,,AD,0.07935,,,,0.33199,3.7088,3.4291,0.59752,8.7062,1.5053,0.31612,2.4088,2.8802,39.3277,13.5025,199.1276,3.4843,3.7966,1.0905,1.6873,3.1507,5.785,1.6897,2.7197,1.1542,5.5004,8.0071,26.0403,6.664,2.072,3.7305,1.3857,14.5155,4.6532,3.3492,0.95202,1.9861,6.0549,9.6374,2.5645,3.3378,2.7786,1.3816,1.4416,3.4287,8.9068,2.3783,2.0164,7.8549,2.0345,1.9772,1.8667,9.0997,1.9249,2.8663,1.0216,11.8701,3.9776,6.9928,3.6278,8.0776,5.9671,5.5432,5.3235,3.3347,1.312,3.8948,,,,,,,,,,,,,,,82,,,
-nG+MIL1T5AD006,2.3616,2.4877,,70-79y,AD,,,16.9104,4.4978,2.1259,2.0161,1.9463,edsd,AD,,M,,0.37155,4.7088,4.1827,0.60891,7.9713,1.3515,0.35605,2.8628,2.3639,42.5416,14.9923,228.3403,3.6873,3.6558,1.183,1.7849,3.595,6.4119,1.8851,2.8349,1.5606,5.9245,9.7809,26.0504,6.3129,2.1544,4.7063,1.7384,18.0565,5.092,3.4488,1.1088,2.3047,7.1113,11.4618,3.6257,3.7395,3.0846,1.1636,1.7077,4.3041,9.8654,2.7152,2.5227,10.4337,1.999,2.1786,2.4044,10.3418,1.6811,3.0327,1.2404,13.1192,5.1725,7.344,3.1777,10.417,6.2011,6.5664,6.9798,3.535,1.6874,4.78,18,,AD,0.07276,,,,0.31917,4.5164,4.2215,0.68437,9.1013,1.63,0.34739,3.2184,2.1957,43.6651,14.0549,227.4627,3.7054,4.1389,1.3096,1.647,3.6097,6.3936,1.7791,3.0829,1.7499,5.6349,9.6159,26.6813,6.9544,2.0721,4.7228,1.6694,17.2908,3.9228,3.2251,0.90724,2.261,7.4354,12.0451,3.0861,3.9054,2.889,1.4901,1.7255,3.8343,9.9279,2.4627,2.5382,9.8788,1.7204,2.1408,2.1189,11.4539,1.4394,3.0378,1.1709,14.0128,4.9585,6.76,3.8853,10.4029,6.4675,6.2777,7.095,2.9657,1.3977,4.5871,,,,,,,,,,,,,,,79,,,
-nG+MIL1T5AD007,2.0417,1.4758,,70-79y,AD,,,18.339,4.9582,2.8959,2.1702,1.716,edsd,AD,,M,,0.42061,4.4999,4.6331,0.67811,8.5714,1.3156,0.36677,2.5654,2.8006,43.844,15.8947,237.6268,4.3316,3.7909,1.3803,1.9959,3.4428,6.7281,1.9198,2.5595,1.0221,5.9187,10.3866,18.992,6.367,2.1886,4.6783,1.6954,15.9692,5.5254,3.6528,1.1781,2.7107,6.9014,11.6735,3.4845,4.0073,3.0674,1.5727,1.6395,4.5439,10.2366,2.9475,2.292,11.3873,2.7685,2.4597,2.2505,11.5137,2.2319,3.5292,1.3467,13.9225,5.1128,9.0459,3.2779,10.6914,6.7777,6.5553,6.9869,3.9455,1.686,4.8657,25,,AD,0.07821,,,,0.35138,3.8541,3.9487,0.65252,9.5932,1.448,0.35084,2.8084,2.6878,44.0377,15.5627,234.9673,4.0554,4.1187,1.3046,1.8952,3.605,6.7651,1.8248,2.7718,1.277,6.2988,10.1965,20.4945,6.9399,1.9787,3.9214,1.6125,14.8247,4.9648,3.3946,1.2371,2.6736,7.4902,12.2619,2.9419,3.6185,3.1312,1.4511,1.5678,3.8581,10.2821,2.6925,2.3747,10.094,2.4172,2.1918,2.065,10.4564,1.8124,3.1677,1.2042,12.7837,5.133,6.6432,3.8244,10.2398,6.5891,6.0281,6.7759,3.4066,1.5697,4.6023,,,,,,,,,,,,,,,72,,,
-nG+MIL1T5AD008,0.48792,1.1257,,50-59y,AD,,,23.2577,6.2257,3.567,3.0338,0.89851,edsd,AD,,F,,0.66196,6.5134,5.2563,1.3139,11.394,2.235,0.56403,3.7189,3.6921,61.1428,17.3113,293.5499,5.229,6.1359,2.4015,2.6153,4.7688,9.7987,3.5482,4.4519,0.33872,7.1878,13.2137,7.33,9.5357,3.027,7.119,3.0114,23.6993,8.0952,5.6412,1.5831,4.4095,9.517,15.7392,4.0078,4.8221,4.7752,2.08,1.9859,6.5954,15.0284,4.1027,2.6832,14.1806,3.1129,3.2494,2.8625,16.6832,2.5849,5.3069,1.4542,19.4519,8.4787,10.9412,4.6918,12.9192,8.8713,9.5428,10.4928,4.9952,1.9292,6.5029,8,,AD,0.04755,,,,0.68265,5.3921,5.1134,1.2526,12.1829,2.7957,0.57889,3.9552,4.2284,61.7421,17.4458,300.9244,5.1454,6.5936,2.4117,2.5755,5.8776,9.4739,3.6083,4.58,0.35763,8.0131,13.0873,6.2042,10.6299,2.8493,7.0872,3.0691,23.1467,6.8947,5.6107,1.5659,4.4218,10.9811,16.7504,3.8629,5.2554,4.7587,1.7736,2.0607,6.1239,14.9955,3.8217,2.675,13.4065,2.9302,2.8813,2.6052,15.9763,2.5313,4.8227,1.4728,19.5882,8.6997,10.4337,5.5404,12.6887,9.0071,9.5374,10.7681,3.9961,1.7728,6.1194,,,,,,,,,,,,,,,56,,,
-nG+MIL1T5AD009,1.7716,2.8467,,60-69y,AD,,,15.54,3.6568,2.3166,2.0712,1.3813,edsd,AD,,M,,0.3271,4.2821,4.0479,0.78003,7.8838,1.2637,0.35381,2.938,2.1122,41.3308,15.0376,211.5953,3.6034,3.713,1.4671,1.8104,3.0078,6.4074,1.8174,2.8161,1.6267,6.4138,9.4626,21.4466,6.3627,2.1157,3.9769,1.6445,15.3283,5.6435,3.4472,0.96896,2.2592,6.459,10.8127,3.6333,4.0357,3.1509,1.4222,1.5497,3.6375,8.5779,2.9658,2.2965,11.177,2.0182,2.4992,2.1321,10.2455,1.612,2.9205,1.1494,13.0667,4.7939,6.9655,3.0348,11.3991,5.9425,6.0853,6.9649,3.4668,1.4343,4.425,17,,AD,0.0659,,,,0.29097,3.7942,3.8813,0.77176,9.5628,1.5088,0.33543,3.1958,1.7904,41.0787,14.3029,214.5078,3.1196,4.1653,1.4693,1.8537,3.3659,6.7427,1.7813,2.9478,1.5198,6.3031,10.3594,17.864,7.1945,2.0659,3.815,1.6476,15.9057,4.7685,3.3353,1.0737,2.2443,6.8614,11.7478,2.8044,4.0098,3.3883,1.515,1.569,3.3466,8.3421,2.7705,2.0729,8.9721,1.6514,2.1817,1.7444,10.8173,1.3661,2.8896,1.0642,12.3623,4.7791,7.473,4.0145,8.7703,5.9782,5.7971,7.0902,3.6972,1.069,4.2118,,,,,,,,,,,,,,,67,,,
-nG+MIL1T5AD010,1.8946,2.3804,,70-79y,AD,,,16.3066,4.3959,2.0749,1.8047,1.6263,edsd,AD,,F,,0.35158,3.7923,3.867,0.67411,6.4981,1.1509,0.32995,2.6807,2.4204,39.17,13.5418,167.2846,3.9781,4.1589,1.3351,1.5103,3.0729,5.8603,1.6468,2.6209,0.94534,4.7591,9.0866,23.1588,5.962,1.8717,4.0779,1.3864,16.0798,4.6551,3.1754,1.3547,2.627,5.9115,10.6656,2.5508,3.2641,2.7267,1.2007,1.2852,3.3203,8.1385,2.6495,2.2224,11.5959,1.8952,2.14,2.3019,14.0706,1.6488,3.1623,1.1367,12.2212,4.6449,6.9608,2.789,8.2836,5.8038,5.8214,6.3723,3.3172,1.4731,4.2195,26,,AD,0.06919,,,,0.29367,3.6232,3.4566,0.60861,8.1734,1.4545,0.31239,3.0008,2.5025,38.7047,13.1125,171.0863,3.7345,3.7473,1.1052,1.6169,3.1468,5.4139,1.688,2.6794,1.0499,5.3338,8.6314,22.9569,6.6954,1.8889,3.9147,1.3135,15.6446,4.3477,3.2287,1.0259,2.4473,6.511,10.6424,2.2858,3.2884,3.3687,1.2992,1.3159,2.9264,8.3521,2.293,2.2631,9.4345,2.0588,1.8718,2.0061,13.2372,1.6339,3.1384,1.0597,12.0196,4.441,6.6645,3.6263,9.3038,6.079,5.4951,6.1074,2.8802,1.3152,4.0164,,,,,,,,,,,,,,,79,,,
-nG+MIL1T5AD011,2.2463,1.6804,,70-79y,AD,,,16.4399,4.5196,2.3448,2.0428,2.034,edsd,AD,,F,,0.35003,3.9392,3.7078,0.65986,7.9992,1.2979,0.32973,2.6003,2.6409,39.5951,13.7906,189.0925,3.7099,3.7309,1.3635,1.6887,3.028,6.2742,1.8678,2.6597,0.92265,5.2449,9.9822,21.5998,5.9821,2.067,4.1536,1.4944,16.4845,4.9917,3.427,0.94417,2.551,5.9197,12.5646,2.9097,3.4578,2.763,1.2441,1.367,4.041,9.2741,2.8423,2.1371,11.6058,2.2219,2.0306,2.0754,11.831,1.9228,3.1733,1.1726,12.9407,4.5871,8.3044,2.7703,9.6914,6.7908,5.9495,6.9116,3.104,1.4037,4.377,20,,AD,0.07157,,,,0.30493,3.2422,3.5394,0.6034,7.6621,1.4896,0.31251,2.8194,2.6126,39.7455,13.84,183.5937,3.6892,3.4139,1.2407,1.53,3.2431,5.9454,1.7798,2.6165,1.3815,4.772,8.946,31.0836,5.9288,1.9222,3.9839,1.4698,16.5137,3.6917,3.2501,0.86595,2.2447,6.9508,11.2838,2.4347,3.0802,2.5761,1.2663,1.3987,3.2293,9.0454,2.4305,2.0847,9.6585,2.1352,1.9189,1.8653,10.5575,1.9087,3.222,1.0968,12.9936,4.4074,6.9414,3.0225,9.0286,6.2713,5.6575,6.839,2.977,1.3806,4.1085,,,,,,,,,,,,,,,70,,,
-nG+MIL1T5AD012,2.0772,1.3442,,70-79y,AD,,,14.5802,4.3889,0.2032,1.57,2.3172,edsd,AD,,M,,0.41166,4.341,4.1862,0.76914,8.8485,1.3863,0.35773,3.0208,2.6071,14.2174,7.8781,230.7701,4.1444,3.5719,1.4728,1.8651,3.1423,6.2374,1.8896,2.6792,1.356,4.5914,10.5956,25.3654,5.792,2.1418,4.447,1.5507,16.0005,5.0349,3.6231,1.383,2.6061,6.3,13.8206,2.8097,3.1632,3.0023,1.391,1.6597,4.0857,10.1246,2.7751,2.394,11.8159,2.3883,2.3736,2.0576,11.7457,1.9996,3.4333,1.1504,13.1621,5.0094,8.6343,2.863,10.9214,6.5359,6.7856,7.0184,3.7335,1.4862,5.0076,21,,AD,0.07698,,,,0.35086,4.1184,3.996,0.70917,9.0266,1.4344,0.33321,3.0119,2.6908,15.1677,7.6675,223.5163,4.1108,3.6763,1.2358,2.0866,3.2243,4.7168,1.7967,2.7682,2.4881,4.083,8.1016,26.3421,5.7237,1.9783,4.2945,1.4937,16.5221,3.4563,3.3509,1.1758,2.6417,7.1152,11.6241,2.0264,2.8509,3.4287,1.4537,1.7119,3.7187,10.6191,2.2415,2.3922,9.4306,1.9108,2.1024,1.9035,10.8545,1.6634,3.3633,1.0924,13.4322,4.8122,7.875,3.3619,10.4408,6.659,6.3211,6.6456,3.3582,1.2959,4.8225,,,,,,,,,,,,,,,71,,,
-nG+MIL1T5AD013,1.9074,2.1846,,+80y,AD,,,18.4101,5.0502,2.5562,2.1171,1.7956,edsd,AD,,M,,0.41651,4.389,4.2877,0.60762,8.3197,1.5246,0.38239,3.162,2.8888,47.1271,16.055,212.0113,4.0757,4.3195,1.1384,1.8211,3.3368,6.4318,1.93,2.5938,1.4453,5.9483,9.0053,23.0926,7.0352,2.328,4.5669,1.7058,17.2788,5.7076,3.8498,1.0979,2.7557,6.7878,11.9987,3.9331,4.0772,3.7901,1.4802,1.6611,4.4389,11.1859,2.6747,2.3789,10.3747,2.3958,2.42,2.4798,11.8957,2.4099,3.5927,1.263,12.8978,5.2777,8.9968,3.2538,10.8338,7.0542,6.712,6.9046,3.7072,1.7415,4.8254,24,,AD,0.07497,,,,0.34998,4.0253,4.0554,0.68803,9.0908,1.7043,0.35469,3.0958,2.8697,46.8712,15.0903,212.9949,3.6328,4.1878,1.3234,1.891,3.3198,6.639,1.8402,2.9796,1.778,5.9378,9.6295,19.6264,7.2507,2.1323,4.619,1.7157,17.0588,4.6593,3.572,1.3812,3.0988,7.7004,12.6813,3.1107,3.8353,3.5913,1.4907,1.6892,3.9896,10.9795,2.672,2.4397,10.6953,2.0054,2.3178,2.312,11.8239,1.9278,3.4545,1.1022,12.7223,5.259,7.9835,4.3263,10.0955,7.5978,6.4189,7.5417,3.2911,1.6507,4.6238,,,,,,,,,,,,,,,82,,,
-nG+MIL1T5AD014,1.8234,1.6123,,70-79y,AD,,,16.5482,4.4313,2.6862,2.0977,1.4967,edsd,AD,,F,,0.37816,4.0625,4.1644,0.71028,8.6186,1.5289,0.34262,2.5467,2.6657,44.8003,13.5134,202.681,4.2033,4.0097,1.1769,2.0332,3.0475,6.4322,1.8986,2.7291,0.64214,5.3023,10.3489,13.2744,6.5665,2.3112,4.3607,1.5082,16.7602,5.0603,3.6837,1.0474,2.4851,5.9222,13.0087,2.7058,3.6077,3.6122,1.4596,1.4159,3.7223,9.2699,2.5063,2.1935,10.9548,2.2773,2.4025,2.2574,12.2039,1.9195,3.9178,1.0201,12.1336,4.4457,8.5838,2.9878,9.2394,7.3543,6.2407,7.1199,4.0165,1.5239,4.502,25,,AD,0.06836,,,,0.33943,3.6238,4.1021,0.69622,8.8693,1.4647,0.34498,2.7636,2.6543,44.5808,13.2022,204.8715,3.3679,4.1992,1.2784,1.9975,3.1985,6.5704,1.7608,3.0307,0.97991,5.8883,9.917,11.9869,7.1919,2.1112,4.574,1.3887,15.6108,4.6161,3.2708,0.96877,2.3765,6.4158,11.4578,2.4569,3.8474,3.5678,1.5225,1.4334,3.479,9.5306,2.3849,2.039,8.9768,2.0696,2.1481,1.9277,11.6883,1.8156,3.7495,0.98281,12.1339,4.4485,6.5404,3.6665,9.3587,6.2276,5.9398,6.2058,3.4733,1.4408,4.2808,,,,,,,,,,,,,,,70,,,
-nG+MIL1T5AD015,2.97,2.2981,,70-79y,AD,,,22.1853,5.521,2.8663,2.4024,1.967,edsd,AD,,M,,0.33849,4.8056,4.3726,0.81125,7.6763,1.4519,0.35392,2.4466,2.6787,50.4855,18.9707,229.8856,3.9903,3.7318,1.4481,1.8732,3.4204,6.0325,1.9785,2.9226,2.0014,5.7805,9.6776,26.3035,6.865,2.1982,4.2348,1.7052,16.2543,4.7454,3.7523,1.0639,2.4552,7.0426,12.4146,2.9607,4.2295,2.8893,1.3049,1.6135,4.4399,10.0543,2.9458,2.4106,10.5992,2.496,2.2676,2.4352,10.9432,1.8922,2.8466,1.2762,12.6856,4.7041,8.3125,2.7448,9.2149,6.5187,6.64,7.3433,3.3907,1.5449,5.3964,15,,AD,0.09347,,,,0.32095,3.9068,4.2283,0.77114,9.7901,1.767,0.37333,3.1109,2.6548,52.1853,17.6235,240.1227,4.0703,4.2585,1.4166,1.9242,3.5967,6.1695,1.8311,3.0601,1.4552,5.8681,9.375,23.7121,7.5401,2.1265,4.139,1.6854,16.7187,4.8676,3.449,0.96897,2.1526,7.4436,12.056,2.7174,4.0877,2.9196,1.4656,1.6071,4.2673,10.9155,2.7822,2.4503,9.2869,2.1933,2.1487,2.0772,11.2973,1.687,3.0756,1.1725,12.5964,4.3662,7.887,3.9259,9.0381,6.7893,6.1423,6.587,3.4653,1.4741,5.1366,,,,,,,,,,,,,,,78,,,
-nG+MIL1T5HC001,0.93909,1.7796,,60-69y,CN,,,15.9804,4.0092,2.3794,1.988,0.83792,edsd,CN,,F,,0.35247,3.7447,3.6702,0.76205,8.4283,1.3008,0.3289,1.8742,2.4179,41.4904,13.3837,201.3279,3.0664,2.5465,1.3462,1.707,2.924,5.9776,1.7443,2.9529,0.42677,5.1719,9.0952,9.3133,5.459,2.0953,4.1817,1.4864,14.7416,5.2592,3.348,1.0004,2.0616,5.5425,10.9522,2.4031,3.1947,3.153,1.2418,1.414,3.9007,8.4977,2.6572,1.9992,9.2757,1.7184,2.0846,1.9473,9.8827,1.9203,3.0835,1.0054,13.0674,4.2591,7.5543,2.7218,8.673,5.7842,6.5512,5.8683,3.2268,1.5821,4.3949,26,,,0.06458,,,,0.32332,3.2997,3.2802,0.82618,8.6147,1.4885,0.33271,1.9566,2.5076,43.3741,13.3111,203.4859,3.1692,3.1204,1.4588,1.634,3.315,6.5829,1.7015,3.2166,0.38198,5.0955,9.5817,8.7354,5.7616,1.9799,3.9916,1.4035,15.0275,3.9415,3.2653,0.94132,1.915,6.0084,11.7143,1.852,3.2669,2.9334,1.3375,1.4535,3.5994,8.7866,2.5342,1.8739,7.9816,1.7412,2.0131,1.615,9.7711,1.5285,2.9703,1.0038,11.7989,4.244,7.1539,3.241,8.8494,5.8164,6.1788,6.2429,3.0771,1.16,4.1389,,,,,,,,,,,,,,,68,,,
-nG+MIL1T5HC002,1.0829,1.7871,,60-69y,CN,,,18.1291,4.7095,2.4738,2.1306,1.029,edsd,CN,,M,,0.41704,4.2337,3.9013,0.89798,8.721,1.5808,0.38664,2.7274,2.7022,45.2721,15.9417,253.4884,3.6622,4.0441,1.6232,1.9201,3.3786,7.6213,2.0776,3.4104,0.38479,6.3769,11.562,11.6139,6.7187,2.4224,4.4844,1.7611,19.0743,5.5222,4.0288,1.1116,2.5701,6.6879,14.7553,3.1473,3.9337,3.4189,1.5109,1.6625,4.1643,9.4709,3.0987,2.3037,11.6194,2.3419,2.6528,2.2828,11.5573,1.9749,3.353,1.2385,13.4797,5.0385,8.9906,3.3567,10.575,7.3378,7.6489,7.2146,3.7831,1.6345,5.0305,,,,0.07883,,,,0.35485,3.5594,3.7583,0.91074,9.8237,1.6724,0.38515,2.9539,2.6517,46.7921,15.0585,253.6807,4.0372,4.5374,1.6807,1.8156,3.697,7.7092,1.9843,3.5536,0.42881,6.6099,11.9429,7.1264,7.6647,2.2263,4.2544,1.7718,17.4702,4.6329,3.6451,1.2147,2.7318,7.7122,14.6255,2.6346,4.0661,3.4149,1.5816,1.6517,3.9087,9.3961,2.919,2.236,10.3667,2.2434,2.3484,2.047,12.1052,1.9491,3.2159,1.1899,14.0941,5.1229,8.0516,4.2499,9.6342,7.2631,7.2864,7.3667,3.7217,1.5655,4.8435,,,,,,,,,,,,,,,61,,,
-nG+MIL1T5HC003,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+MIL1T5HC004,1.7085,2.2076,,70-79y,CN,,,16.0067,4.5196,2.1089,1.8515,2.2077,edsd,CN,,F,,0.41771,4.5958,4.0559,0.86442,8.5907,1.6081,0.3743,2.5994,2.5286,41.0896,14.0561,219.3099,3.7964,4.3966,1.7023,1.9128,3.8924,6.4708,2.0287,3.1809,0.51725,5.8724,9.5956,28.2816,6.1758,2.2979,4.2246,1.8066,17.6661,5.9989,3.8569,1.1072,2.5839,6.6289,11.9449,3.6621,3.8015,2.9411,1.3913,1.5295,3.794,10.3125,2.9473,2.4469,10.8314,2.3096,2.2497,2.2008,10.8665,2.0327,3.4516,1.3027,14.3737,4.9208,8.3635,3.5191,10.0323,6.852,6.5563,7.3955,3.564,1.6638,4.5859,,,,0.07149,,,,0.38851,4.0432,4.1186,0.91559,10.1158,1.7569,0.37418,2.8461,2.7088,41.5171,13.8541,225.4359,3.9394,4.5875,1.7212,1.9208,4.049,6.7028,2.0382,3.4992,0.76046,5.4877,9.9474,27.4718,7.262,2.1066,4.2337,1.7744,16.9538,4.2927,3.6544,1.1529,2.6108,7.8167,12.6923,2.2058,3.7215,3.1817,1.4499,1.6181,3.5726,10.3441,2.8322,2.4793,9.6902,2.3381,2.25,2.0732,10.9318,2.0302,3.4874,1.2473,14.2522,5.1473,7.332,3.6124,9.5773,7.0319,6.1456,7.6168,3.3669,1.4831,4.3728,,,,,,,,,,,,,,,75,,,
-nG+MIL1T5HC005,1.7674,2.2014,,60-69y,CN,,,18.099,4.8811,2.7387,2.1969,1.4746,edsd,CN,,M,,0.39718,4.5463,3.9433,0.86195,8.843,1.4371,0.36443,2.8053,2.3042,45.8901,14.8966,220.7889,4.0501,4.0207,1.7505,1.9466,3.221,6.8737,2.0461,3.1676,0.8071,5.9384,10.6593,17.5791,7.4707,2.1384,4.4251,1.7127,17.2818,6.1887,3.7365,0.7957,1.9472,6.4523,14.5686,3.282,3.8106,3.2148,1.3119,1.5537,4.4731,10.8082,3.3577,2.3365,11.7193,2.2573,2.3591,2.5306,11.8036,2.0648,3.0686,1.2881,12.943,4.7632,8.3436,3.7027,11.6051,7.4313,6.6092,8.1007,3.3076,1.7581,4.7895,,,,0.0902,,,,0.37023,4.4381,3.5838,0.84848,8.4244,1.6462,0.37066,2.8367,2.3777,46.439,15.0955,223.1865,3.3061,4.344,1.6514,1.6764,3.5843,7.0941,2.0941,3.3298,0.91587,6.7567,11.983,16.0835,8.271,1.9606,4.7296,1.7705,17.3506,4.2999,3.6554,1.1486,2.2511,7.2289,14.5319,2.9122,4.1868,2.8161,1.3695,1.5495,4.1905,10.9296,2.9925,2.1593,10.977,1.8012,2.1258,2.1021,11.4383,1.6503,3.1969,1.2236,13.6084,4.962,7.2704,4.2727,11.1253,6.807,6.0964,8.2183,3.1045,1.426,4.5327,,,,,,,,,,,,,,,66,,,
-nG+MIL1T5HC006,2.4324,2.4433,,+80y,CN,,,17.4475,5.1672,2.6349,2.356,2.0625,edsd,CN,,M,,0.46265,4.8983,4.8784,0.95982,9.8993,1.6045,0.44294,3.3389,3.3039,46.8229,14.2393,235.5425,5.1241,4.8222,1.799,2.1078,4.1468,7.7014,2.3391,3.4208,1.7795,6.639,12.5652,26.8485,7.7974,2.5951,5.6182,1.9858,22.0556,5.8134,4.2233,1.2284,2.9668,7.9262,15.7801,3.6108,4.4974,3.7375,1.589,1.6486,5.0508,11.9074,3.3107,2.5815,12.5961,2.9346,2.6349,2.7526,14.364,2.4797,4.2565,1.4242,15.6951,5.45,8.9492,3.6201,11.9809,8.3187,6.9475,9.3224,3.8809,1.9795,4.892,29,,,0.07709,,,,0.41411,4.5751,4.6538,0.93015,9.9074,1.8015,0.43137,3.5254,3.3844,47.2819,14.5233,239.8651,4.5932,5.3644,1.7733,2.0991,4.1722,8.3539,2.112,3.4505,1.4227,7.267,13.2295,24.1549,8.4069,2.6095,5.381,1.9685,21.395,5.4519,3.9778,1.1281,2.9352,8.4474,15.4421,3.483,4.5601,4.1233,1.868,1.6508,4.404,12.1176,2.9008,2.634,10.6681,2.8028,2.6713,2.5367,11.8206,2.3634,4.1266,1.3445,16.5771,5.7831,8.5402,4.5822,11.3807,7.9944,6.5436,9.1304,4.0714,1.9142,4.6439,,,,,,,,,,,,,,,81,,,
-nG+MIL1T5HC007,1.427,1.8659,,60-69y,CN,,,16.7031,4.6274,2.2662,2.0996,1.2083,edsd,CN,,F,,0.3983,4.4029,4.1508,0.74588,7.3366,1.5801,0.35182,2.5598,2.6746,40.0099,14.7292,207.5659,3.5359,3.6548,1.446,1.6093,3.4222,6.6129,1.9182,3.0874,0.55812,5.5437,9.7698,13.9922,6.4209,2.2919,4.5127,1.6697,19.1495,4.8732,3.7671,1.1236,2.155,6.358,11.9465,2.8417,3.8423,2.8152,1.3012,1.4262,4.0416,8.8072,2.9508,2.305,9.752,2.0237,2.3985,1.9697,10.7577,1.8033,3.722,1.1554,13.7471,4.6801,8.0408,3.2175,8.9387,6.7653,6.5896,7.5036,3.3439,1.3773,4.6409,26,,,0.06628,,,,0.36213,3.8566,4.4772,0.76962,8.2922,1.748,0.35821,2.4649,2.9314,40.966,14.4089,213.0143,3.4815,3.6957,1.5043,1.8574,3.7816,6.8863,1.9019,3.2954,0.59843,6.0389,10.4929,11.9376,6.6873,2.1745,4.203,1.5995,18.7904,4.6322,3.7832,1.0741,2.2514,7.2009,12.1727,2.7805,3.9429,3.0406,1.4896,1.524,3.8068,9.1317,2.7902,2.3783,8.3638,1.7414,2.3858,1.9982,10.8167,1.618,3.8497,1.1435,13.6742,4.7941,6.4383,3.4153,8.2873,6.0969,6.5034,7.2488,3.1721,1.3538,4.4608,,,,,,,,,,,,,,,68,,,
-nG+MIL1T5HC008,1.9465,2.5409,,70-79y,CN,,,18.184,4.2368,2.5286,2.0747,1.4013,edsd,CN,,F,,0.33027,3.8676,3.5241,0.79729,7.9427,1.37,0.34048,2.3237,2.2936,42.0141,14.7204,217.4497,3.3012,3.1715,1.5892,1.4889,3.1734,6.4013,1.7576,2.8767,0.85492,5.3173,9.5883,21.454,5.8912,2.073,3.8531,1.4691,15.828,5.1462,3.4001,0.95079,2.0936,5.8155,10.794,2.7924,3.6291,2.5003,1.2288,1.5516,3.1833,7.8027,2.8097,1.9991,10.124,1.8836,2.0482,1.8628,10.188,1.4383,3.4564,1.0143,12.251,4.2596,8.131,2.7978,9.9883,5.5943,6.6563,6.7334,3.1,1.1738,4.9407,30,,,0.07328,,,,0.31394,3.2214,3.5391,0.75633,8.7011,1.4031,0.32832,2.5233,2.7168,41.516,14.8152,218.3786,3.2381,3.1896,1.4715,1.5951,3.2878,6.3907,1.6315,3.0437,0.697,5.6166,9.6818,15.8726,6.5178,1.8187,3.7044,1.4162,15.2181,4.3218,3.0235,1.0589,2.2721,6.4771,10.3927,2.454,3.6688,2.6327,1.2405,1.585,3.0606,8.1016,2.4996,1.9313,9.0085,1.7203,1.8589,1.7225,10.3188,1.3384,3.5262,0.9244,12.8832,4.3475,7.2102,3.1376,9.1786,5.8192,6.3441,6.4493,2.8391,1.1206,4.6796,,,,,,,,,,,,,,,73,,,
-nG+MIL1T5HC009,1.6583,2.2007,,60-69y,CN,,,19.511,4.8064,2.5672,2.1871,1.7918,edsd,CN,,F,,0.46555,4.9042,4.3879,1.0396,9.7867,1.8698,0.41989,3.2388,3.1743,49.3091,15.6105,236.1107,4.14,4.5748,1.8998,1.9546,3.8632,7.938,2.2114,3.6808,0.52111,6.6676,12.1495,18.9404,7.5269,2.9299,5.0934,2.0564,21.3198,6.8424,4.5688,0.99196,2.4369,7.0519,15.4839,3.7408,4.5838,3.6933,1.7763,1.6465,4.7032,11.0082,3.5232,2.5942,12.3441,2.7283,2.9946,2.6681,12.0834,2.0854,3.9264,1.3146,14.1021,4.9214,9.3659,3.7493,11.5742,7.8247,7.4805,8.2014,4.0871,1.8144,5.173,30,,,0.08872,,,,0.39303,4.5854,4.4342,1.056,9.8124,1.912,0.40146,3.3191,3.1447,47.8821,15.4577,236.4197,4.177,4.6793,1.9942,2.1378,3.7478,7.7827,2.1389,3.9806,0.57647,6.9008,12.8493,15.1081,8.0483,2.4161,5.1387,1.9134,19.0468,5.117,4.2557,1.041,2.5683,7.9185,15.8443,2.789,4.2832,3.9785,1.6218,1.6523,4.4084,11.1074,3.3648,2.5509,10.5419,2.4781,2.7598,2.2835,12.047,2.1289,3.8407,1.2561,14.0763,5.1152,8.4066,4.0509,11.2932,8.4079,7.1682,8.5754,3.8336,1.6968,4.9633,,,,,,,,,,,,,,,69,,,
-nG+MIL1T5HC010,1.6014,2.2559,,70-79y,CN,,,17.1853,4.843,2.3955,2.1319,1.2468,edsd,CN,,M,,0.43295,4.7909,4.4816,0.88144,8.9824,1.6807,0.39639,3.2287,2.753,46.3326,14.0919,219.9492,3.9079,4.8068,1.6079,2.1288,3.4285,8.0286,1.9458,3.3271,0.52513,6.4314,11.7663,13.5929,7.7479,2.5297,5.2531,1.8311,18.7306,6.2481,3.9938,1.1741,2.7233,7.3763,14.611,3.788,4.6343,3.4639,1.64,1.5027,4.6613,10.9844,3.3085,2.1583,12.1538,2.4004,2.698,2.4613,11.8722,2.1958,3.4555,1.2417,15.6297,5.4558,8.6116,3.9244,9.9009,7.8519,7.1811,8.4207,3.9898,1.6978,4.7141,28,,,0.08537,,,,0.37023,4.0747,4.2348,0.91712,9.9873,1.8315,0.38032,3.6048,2.6819,46.5083,13.7148,221.9736,3.9693,5.0459,1.7817,1.9111,3.6716,8.0655,1.9208,3.5952,0.5428,6.9214,11.7446,11.1851,8.8442,2.4678,4.6909,1.7927,18.7008,4.7446,3.6669,1.156,2.7194,7.9189,13.9812,3.0022,4.5938,3.5385,1.6497,1.527,4.1515,11.0616,3.2315,2.2009,10.5419,2.2654,2.519,2.1862,12.9718,2.1924,3.3703,1.1865,14.7237,5.7568,8.7982,4.5181,9.975,8.4022,6.7266,8.4608,3.384,1.5894,4.5078,,,,,,,,,,,,,,,76,,,
-nG+MIL1T5HC011,0.82892,1.5251,,60-69y,CN,,,14.9846,3.9415,2.6376,2.0875,0.81443,edsd,CN,,F,,0.37091,4.1134,3.4545,0.76441,7.9641,1.327,0.32632,2.5701,2.4524,41.9724,13.7081,181.9258,3.4761,3.8232,1.5837,1.678,3.0336,6.2204,1.8689,2.886,0.39869,5.398,9.2321,7.5408,6.181,1.9589,4.3331,1.4807,15.4708,5.3655,3.6628,0.93141,2.0748,5.9445,11.462,2.7813,3.7827,2.9963,1.1608,1.1974,4.019,9.235,2.8443,1.8408,12.1449,2.1688,2.0597,1.7797,10.6935,1.7216,3.0414,1.0615,12.7331,4.8072,8.9246,3.3079,10.5726,5.982,6.0178,6.7532,2.9888,1.2516,3.8679,27,,,0.06279,,,,0.32996,3.649,3.4775,0.78938,9.4724,1.5703,0.34001,2.8527,2.5862,42.4737,12.6458,183.5008,3.2363,3.9569,1.571,1.7128,3.1512,6.4112,1.7704,3.067,0.44707,5.5082,9.4183,7.5822,6.6465,1.9458,4.5714,1.4481,15.5811,4.4501,3.5012,0.90507,2.3854,6.7581,10.9933,2.4357,3.4823,2.8904,1.4053,1.2104,3.6395,9.3893,2.6748,1.8934,10.1064,1.8712,2.0736,1.7949,10.9179,1.6954,3.0508,1.028,12.2797,4.7214,7.7759,3.2296,10.6279,6.1258,5.7828,7.0991,3.3409,1.3372,3.6997,,,,,,,,,,,,,,,65,,,
-nG+MIL1T5HC012,0.89251,1.7185,,50-59y,CN,,,18.4322,4.7016,2.5807,2.2158,1.0371,edsd,CN,,F,,0.45606,4.431,4.0495,0.84166,8.8709,1.6694,0.38239,2.8626,3.1011,45.9694,15.0095,220.5259,3.6297,3.8821,1.5178,2.0102,3.5809,6.9016,2.1293,3.3754,0.37683,5.9517,10.0065,6.6855,7.1587,2.3635,4.4796,1.7286,19.56,5.896,4.1009,0.87729,2.3427,6.84,12.7949,3.3407,4.1008,3.307,1.3626,1.6149,3.9552,9.3441,2.9176,1.9962,11.7282,2.398,2.3484,2.0997,12.0469,2.0809,3.7317,1.1084,13.2205,5.3547,9.4288,3.5209,11.1783,7.395,7.4648,7.2896,3.8888,1.4929,4.8877,26,,,0.07262,,,,0.41623,3.8231,3.8678,0.84458,9.5148,1.8534,0.38119,2.8932,3.1672,44.9758,14.8459,222.79,3.8353,3.8024,1.6222,1.8769,3.7522,6.9795,1.9946,3.469,0.35594,6.0687,10.6778,6.8043,7.5859,2.1568,4.472,1.7892,18.6709,4.6494,3.7512,1.0925,2.6238,7.3267,13.3397,2.6292,4.0277,3.5265,1.4031,1.6336,3.5251,9.3341,2.6761,2.0716,10.8576,2.161,2.1618,1.9748,13.1105,1.8444,3.6551,1.0314,12.5188,5.2488,8.2692,3.8131,10.4484,7.0697,7.1647,7.5284,3.3528,1.3845,4.6823,,,,,,,,,,,,,,,59,,,
-nG+MIL1T5HC013,2.2182,2.2575,,70-79y,CN,,,18.057,4.371,2.2749,1.9961,1.576,edsd,CN,,M,,0.37602,4.9958,4.4532,0.7483,9.4514,1.6135,0.37576,3.0593,2.1251,43.4867,15.0908,236.9625,4.3194,4.7369,1.7013,1.9949,3.7629,7.6299,2.1921,3.1597,0.54285,6.8015,12.7822,16.12,7.1973,2.6536,4.9186,1.8185,19.6619,6.6704,4.0437,1.0459,2.7089,7.1143,15.3184,3.5629,4.4299,3.0315,1.662,1.58,4.5832,10.822,3.3577,2.393,12.4476,2.4094,2.4928,2.4078,13.6959,1.9643,3.5935,1.3577,13.7674,5.4508,8.6411,4.0232,10.5739,6.9533,6.74,8.105,3.9042,1.6421,4.875,30,,,0.07937,,,,0.32142,4.4639,4.4397,0.71271,10.3895,1.8664,0.36038,3.0805,2.1378,44.0443,14.8474,238.3759,4.1462,4.1683,1.5181,2.1404,4.0593,7.4857,2.0171,3.1193,0.5229,8.2003,11.4524,14.9264,7.7182,2.3725,5.0149,1.7213,18.8851,6.2556,3.7965,0.95657,2.4486,8.039,14.4871,3.3003,4.4489,3.2773,1.6771,1.5712,4.295,10.3858,2.8337,2.3799,11.1857,2.4054,2.3339,2.0955,12.4627,2.0535,3.5212,1.3046,15.2184,5.5522,8.2741,4.3188,11.0085,7.225,6.5392,7.622,3.8232,1.6178,4.5409,,,,,,,,,,,,,,,77,,,
-nG+MIL1T5HC014,1.1081,1.8104,,60-69y,CN,,,16.0117,3.7738,2.3834,1.7664,0.91896,edsd,CN,,F,,0.37092,4.0426,3.758,0.79648,8.1155,1.4496,0.33985,3.0693,2.5107,41.6876,13.4096,213.5467,3.6125,4.3767,1.5231,1.881,3.252,6.7922,1.8935,3.0023,0.44917,5.9785,10.455,9.9239,6.6054,2.1764,4.5634,1.5188,19.1102,5.4103,3.6573,1.0389,2.5646,6.2017,13.505,3.1901,4.0005,3.4346,1.3284,1.3981,4.0773,9.5413,2.9977,2.0505,11.4231,2.3505,2.0134,2.0216,11.7862,1.9839,3.455,1.1114,13.6062,5.1211,8.4831,3.5915,9.0615,7.2733,6.4778,7.2595,3.8205,1.5055,4.2939,,,,0.06598,,,,0.33504,3.7742,3.7341,0.81262,9.1163,1.8882,0.34588,3.042,2.5367,41.246,12.9533,215.0197,3.5689,3.9812,1.5538,1.9503,3.6334,7.1203,1.8969,3.0712,0.52536,5.7922,11.4667,7.0569,7.0125,2.3719,4.6835,1.5895,17.7419,4.3545,3.7374,1.0439,2.5257,7.1866,13.7474,2.2463,3.9417,3.1835,1.6125,1.4165,3.8189,9.3593,2.7711,2.0539,9.6623,2.0489,2.0726,1.8856,10.5343,1.969,3.4854,1.0685,13.5014,4.7568,8.0575,3.3671,10.1847,7.3159,6.1144,7.8998,3.555,1.4907,4.0924,,,,,,,,,,,,,,,68,,,
-nG+MIL1T5HC015,1.4432,2.6631,,60-69y,CN,,,16.4182,4.484,2.3516,1.9992,1.3297,edsd,CN,,F,,0.33023,3.6304,3.6966,0.80759,7.5543,1.25,0.32441,2.9302,2.2478,45.0794,13.6013,193.5193,3.1451,3.7841,1.4961,1.6998,2.8371,6.5926,1.7242,3.0606,1.1697,4.8611,9.9105,27.4566,6.2339,2.0018,4.228,1.3674,16.3877,4.7448,3.2152,0.87763,2.0881,5.4577,12.0916,2.5511,3.6566,2.8991,1.2335,1.4112,3.7326,8.9063,2.9638,2.082,9.5017,1.6901,1.93,2.0903,10.7323,1.671,3.199,0.99226,11.9293,3.7976,7.8321,2.772,8.5418,6.8169,6.8349,6.8255,3.297,1.2599,4.4961,30,,,0.0789,,,,0.30825,3.2095,3.3953,0.80199,8.8051,1.4349,0.34543,2.5892,2.5066,44.7662,13.3684,192.0432,3.1901,3.897,1.4945,1.5223,3.2913,6.4975,1.6718,3.0522,1.0092,5.3353,10.1838,19.7474,6.5331,1.8998,3.9625,1.3389,16.2577,4.0748,3.1645,0.76993,1.9324,6.101,11.8131,1.9907,3.4124,2.7014,1.2503,1.3363,3.5027,9.0583,2.6218,2.1583,8.8201,1.5536,1.894,1.9628,10.3644,1.5671,3.0092,0.96188,12.1772,3.9289,7.3955,3.0337,8.7626,6.0528,6.4526,6.9408,2.7457,1.2927,4.2677,,,,,,,,,,,,,,,69,,,
-nG+MIL3T0HC001,2.2506,2.2271,,70-79y,CN,,,16.8618,4.814,2.3503,2.2993,2.2732,edsd,CN,,M,,0.32138,4.2575,3.6893,0.75163,7.6315,1.443,0.34766,3.1679,2.1736,45.0829,14.3571,194.6723,3.5452,4.3633,1.4878,1.569,2.5791,6.4434,2.0266,2.7632,0.60964,6.2988,9.6552,28.2525,7.1164,2.3922,4.426,1.6313,17.1345,5.5864,3.5735,1.115,2.5677,5.9329,12.0562,3.2646,3.9804,2.6453,1.4832,1.595,4.0273,10.701,2.7534,2.1925,10.3158,2.4435,2.3726,2.0771,11.164,2.0037,3.3777,1.2975,13.5656,4.5444,8.3409,3.4603,9.7964,6.8093,6.8531,7.0192,3.3372,1.4764,4.4993,,,,0.06596,,,,0.36398,3.9106,3.6017,0.78953,9.0314,1.4807,0.41099,3.0901,2.7349,44.3705,14.325,202.5373,3.3527,4.518,1.6117,1.5566,3.1918,6.768,2.0352,2.8581,0.73085,5.9135,10.3698,28.0695,7.2066,2.0386,3.9624,1.7018,16.7566,4.6208,3.4805,0.96521,2.1395,7.6757,13.3075,2.5253,3.8105,2.7216,1.4229,1.3784,3.5002,10.1006,2.5765,2.2978,8.8236,2.2367,2.0373,1.9552,11.2005,1.9326,3.7274,1.2384,13.9114,4.5982,7.5605,4.181,9.3681,7.0912,5.6992,7.453,3.1455,1.455,4.4153,,,,,,,,,,,,,,,77,,,
-nG+MIL3T0HC002,1.0872,1.5972,,-50y,,,,17.1094,4.9457,2.4471,2.2017,1.2461,edsd,,,M,,0.3078,4.1983,4.058,0.90119,8.2861,1.2537,0.33802,3.0771,1.8828,43.1548,15.1107,228.3948,3.8403,4.1975,1.7606,1.8331,2.8406,6.7736,1.7852,3.0997,0.50392,5.777,11.6521,12.3254,7.036,1.9946,4.0852,1.6119,16.8245,4.7495,3.3636,1.1921,2.9239,5.8331,13.9397,2.8373,3.9987,3.1578,1.3155,1.5938,4.0634,9.6546,2.8523,1.996,9.5644,1.9735,2.5449,1.9736,11.6246,1.7249,3.0846,1.054,12.3174,5.0895,7.854,2.7544,9.225,6.8376,7.2666,8.4584,3.0499,1.2649,4.7331,,,,0.07215,,,,0.34523,4.3417,3.8248,0.8493,9.0586,1.6622,0.35689,2.4294,2.4047,41.548,15.8163,243.5345,3.7573,3.6178,1.6117,1.9548,3.2491,6.6421,1.9445,3.26,0.57188,5.687,10.9414,11.0564,6.6337,2.1988,3.9591,1.7738,16.6827,4.2785,3.6215,0.86988,2.1427,7.1764,14.544,2.549,3.7528,3.1579,1.4803,1.5158,3.4985,8.5675,2.603,2.0263,9.2992,1.9459,2.3028,1.8696,11.4796,1.6362,3.3206,1.1181,13.1293,4.862,7.2817,3.9092,10.4219,7.2945,6.4114,8.2434,3.5694,1.3838,4.4926,,,,,,,,,,,,,,,,,,
-nG+MIL3T0HC003,1.0581,1.7975,,70-79y,CN,,,15.5056,3.9495,2.097,1.9454,0.96045,edsd,CN,,F,,0.32252,3.6553,3.658,0.66949,8.2641,1.244,0.3239,2.0926,1.848,38.1448,14.5574,197.9945,3.0206,2.897,1.2057,1.7285,2.9023,5.4416,1.5408,2.8086,0.41529,4.8529,8.5582,10.4055,5.62,2.0803,4.3419,1.3678,14.1078,4.9703,3.1934,0.96039,2.0914,5.0512,10.7233,2.2493,3.0576,3.016,1.2897,1.428,4.0421,8.9246,2.4612,1.9743,8.821,1.6318,2.3052,1.7962,9.0197,1.7702,2.6212,1.0551,11.351,4.3949,7.1172,2.3676,7.8501,5.6191,6.525,5.5284,3.0854,1.437,4.1549,29,,,0.05802,,,,0.29497,3.4262,3.2016,0.76212,7.9388,1.3526,0.31193,1.7932,2.2033,40.9338,14.8867,202.8273,3.152,2.8214,1.3896,1.5672,3.2655,6.1725,1.7114,3.1302,0.39387,4.8907,9.1927,9.514,5.4476,1.7262,4.0824,1.4448,13.9244,3.5569,3.1025,0.83221,1.7925,6.1492,11.6879,1.8272,3.2957,2.8743,1.1366,1.4337,3.446,8.0695,2.365,1.8917,7.5687,1.7224,1.8489,1.624,9.4524,1.5904,2.539,1.0201,10.8889,4.2302,6.8191,3.1221,8.2253,5.8447,5.9057,6.3501,3.0722,1.1816,3.9635,,,,,,,,,,,,,,,71,,,
-nG+MIL3T0HC004,1.0858,1.9234,,70-79y,CN,,,16.6248,3.9719,2.3954,1.992,1.1536,edsd,CN,,F,,0.37448,4.3176,4.0023,0.71771,9.4621,1.5558,0.32816,2.6605,2.5095,40.8498,12.6276,203.6258,3.9037,3.8276,1.3707,2.0334,3.0493,6.8767,2.0292,2.8714,0.42006,5.5398,10.8658,13.6065,6.4755,2.3258,4.5381,1.6913,17.23,6.3066,3.8318,1.086,2.357,5.9256,13.4995,2.3848,3.5196,3.9377,1.467,1.4833,4.0438,10.0151,2.8164,2.2312,10.8438,2.3329,2.3812,2.2049,9.5586,1.8088,3.4323,1.1892,13.1632,4.3746,9.4771,3.1756,9.7743,6.9524,7.0902,6.8639,3.8172,1.4172,4.3579,30,,,0.07738,,,,0.38859,3.7026,3.6498,0.73452,9.752,1.6456,0.35794,2.1927,3.0643,42.3023,12.4688,206.115,3.8835,3.7048,1.4643,1.946,3.3553,6.97,2.0107,3.1331,0.45092,5.1454,11.0579,11.7448,6.5278,2.0059,4.564,1.8351,17.029,5.1094,3.5505,0.92238,2.1904,7.3406,13.5199,2.0437,3.5847,3.5269,1.3571,1.4296,3.4881,9.1766,2.6559,2.1283,9.3621,2.2332,1.843,2.0082,10.6592,1.8306,3.4102,1.0993,13.0925,4.6269,7.3399,3.6249,9.2164,7.0665,6.3432,7.6584,3.459,1.4472,4.2579,,,,,,,,,,,,,,,70,,,
-nG+MIL3T0HC006,1.3335,1.6423,,70-79y,CN,,,16.0578,4.2492,2.2835,1.9851,1.3381,edsd,CN,,F,,0.44518,4.8562,4.0202,0.90359,8.6968,1.453,0.42165,3.7731,2.354,44.4176,13.3229,222.1084,3.9068,4.0624,1.7002,1.7612,3.1244,7.4944,2.0947,3.5191,0.40315,6.1854,10.6668,15.1691,8.1658,2.1075,4.9814,1.7259,19.4553,5.6598,3.9485,1.0816,2.7168,7.2201,13.693,3.0222,4.1854,3.0305,1.3053,1.471,4.453,11.349,3.263,2.3915,11.4351,2.0968,2.3807,2.3897,13.0845,1.8977,3.7221,1.4137,13.1624,5.2538,8.2508,2.8257,11.1999,7.3608,6.7606,7.2767,3.3446,1.5567,4.4851,,,,0.05288,,,,0.4066,4.1233,3.7836,0.85271,10.1935,1.8186,0.42857,3.6194,2.6128,43.7419,14.0219,227.3956,3.6876,4.5531,1.6351,1.7598,3.5202,7.5268,2.1477,3.4733,0.39191,5.6893,10.8778,14.8113,8.4337,2.09,4.5501,1.9436,19.4878,4.9089,3.8011,1.0469,2.7296,8.8827,13.8385,2.549,4.0605,3.3216,1.42,1.4997,4.1452,10.7143,2.8168,2.2922,10.9301,2.1272,2.3153,2.1845,12.9534,1.8131,3.68,1.3019,12.9657,5.4232,7.2368,4.0568,10.6915,7.3496,6.2893,7.3208,3.2725,1.5479,4.2425,,,,,,,,,,,,,,,75,,,
-nG+MIL3T0HC007,1.2242,1.3353,,-50y,,,,15.7424,4.2476,2.0971,1.9523,1.2004,edsd,,,M,,0.35887,4.6802,4.005,0.75684,7.677,1.3555,0.34513,2.5129,1.6978,37.8262,13.644,189.4892,3.864,3.9667,1.4938,2.0111,3.2231,6.3805,1.8763,2.8969,0.41212,4.9122,10.274,10.8098,6.1198,2.1568,4.7802,1.7906,17.3748,4.6857,3.6273,1.1416,2.5155,6.6321,11.6458,3.0095,3.3384,3.8938,1.506,1.5596,4.1002,10.0293,2.8056,1.9193,9.7018,2.4066,2.3786,1.9,11.7764,1.9041,2.6506,1.2162,14.1994,5.3156,8.1567,3.0282,8.8138,5.9411,6.7694,6.9902,3.9146,1.4223,3.9321,,,,0.07385,,,,0.34404,4.1869,3.5752,0.76607,8.7675,1.593,0.35521,2.7614,2.5929,39.3674,12.8538,198.8894,3.7788,3.7649,1.5505,1.7659,3.5513,6.7114,1.8571,2.9554,0.56721,5.2995,10.1157,9.5855,6.8706,1.9652,4.6155,1.7212,15.8517,4.4809,3.2559,0.93959,2.2389,8.2643,12.4217,2.3532,3.6227,3.1785,1.2388,1.2771,3.4724,9.7815,2.4499,1.8843,8.5085,1.8431,2.1836,1.8357,12.156,1.6429,3.1034,1.1721,13.723,5.4414,7.184,3.9528,9.3873,6.4855,6.1316,7.1975,2.9919,1.1627,3.7611,,,,,,,,,,,,,,,,,,
-nG+MIL3T0HC008,1.2993,1.6239,,70-79y,CN,,,16.1406,4.2336,2.2817,1.9299,1.2238,edsd,CN,,M,,0.32521,4.2369,3.8937,0.76442,8.209,1.4318,0.34166,2.6537,1.7664,43.6805,13.6057,210.1924,3.9018,4.3004,1.5579,1.9412,3.134,6.8294,1.7804,2.8249,0.46211,4.9819,9.8961,11.9061,6.416,2.4893,4.4832,1.5532,17.76,5.1371,3.5541,1.133,2.4756,6.6941,12.4233,2.4851,3.5787,3.4893,1.5838,1.369,3.8789,9.7656,3.0073,2.0982,10.6118,2.5476,2.5033,1.9267,11.4577,2.1223,2.6628,1.1941,13.0842,5.078,8.4604,2.9824,10.1258,7.2878,6.7249,6.5539,3.7364,1.4071,4.3251,,,,0.08,,,,0.2972,3.9558,3.8315,0.79662,9.9987,1.5505,0.35902,2.2766,2.2592,45.1277,13.9568,219.0305,4.1002,3.631,1.6702,2.1555,3.3473,7.1779,1.8882,2.8816,0.46983,5.4081,10.8375,10.8911,6.5715,2.0816,4.4848,1.6102,16.273,4.2158,3.4844,0.86718,2.4041,7.9829,13.4185,2.4052,3.6774,3.7049,1.4842,1.314,3.5856,9.6417,2.7711,2.1538,9.3087,2.2286,2.048,1.8839,11.2387,1.8895,2.7561,1.2077,13.2124,5.4969,8.3912,3.3046,9.5839,7.4318,6.1149,7.0914,3.7856,1.4087,4.1327,,,,,,,,,,,,,,,75,,,
-nG+MIL3T0HC009,1.9816,2.7942,,50-59y,CN,,,19.4303,5.3145,2.5815,2.3638,2.0269,edsd,CN,,M,,0.45137,5.1269,4.6396,0.98523,10.3267,1.6136,0.41518,3.9856,2.5032,52.2468,18.7838,249.8021,4.6944,5.2218,1.8275,2.3856,3.6086,8.0387,2.2114,3.7377,0.73717,7.2262,12.6099,25.9303,8.2792,2.5249,5.795,1.9397,20.819,6.5476,4.3148,1.2007,2.9417,7.7744,15.7612,3.2734,4.8159,3.5502,1.7998,1.9314,5.1719,13.0258,3.5022,2.5239,11.9236,3.007,2.8007,2.4994,11.5156,2.5786,3.6937,1.498,15.9179,6.2839,11.8596,3.6212,11.3395,8.8837,8.2229,8.2427,4.3612,1.7888,5.2838,30,,,0.08325,,,,0.41651,4.6559,4.6159,1.0167,11.7542,1.6088,0.44274,3.2868,3.3179,54.1172,18.9067,258.846,4.7203,4.7502,1.9067,2.4661,4.0767,8.4549,2.3466,4.0272,0.90834,7.653,13.1325,24.7413,8.4717,2.1702,5.0524,2.0523,20.253,5.9832,4.0133,1.0593,2.5463,8.8946,15.9125,3.3382,4.6643,3.4368,1.6891,1.8652,4.722,12.0285,3.1093,2.6876,11.4475,2.699,2.2488,2.34,12.2152,2.273,3.5557,1.3669,16.095,5.8817,8.5809,4.2807,11.9661,7.9134,7.3263,8.6714,4.3454,1.839,5.0703,,,,,,,,,,,,,,,59,,,
-nG+MIL3T0HC010,1.9294,2.3056,,-50y,,,,17.2506,4.7414,2.5069,2.2981,2.0082,edsd,,,F,,0.41252,4.7562,3.8908,0.86494,8.2935,1.7547,0.40229,3.6397,2.1832,48.0839,14.3871,210.2855,3.7718,4.4561,1.5289,1.6262,3.3666,7.7327,2.1454,3.4276,0.9679,6.553,11.051,30.2222,8.5602,2.3277,4.6375,1.9166,18.0269,5.6835,4.2465,1.3173,3.182,7.3094,13.2606,3.2759,4.5181,2.9484,1.2898,1.5078,4.1169,10.5002,3.2449,2.2063,11.2527,2.1894,2.6164,2.0887,12.2938,1.9207,3.2373,1.3167,14.9497,4.8014,8.3427,3.7492,10.5685,6.6397,6.7811,6.3119,3.1907,1.5665,4.9025,,,,0.06139,,,,0.38094,4.0018,3.6586,0.80513,9.6822,1.8422,0.4046,3.9561,2.4192,47.376,14.3601,217.6717,3.182,4.7214,1.5935,1.6005,3.6404,8.1492,2.1543,3.4931,1.0738,6.2094,11.5745,30.9267,9.1724,2.214,4.4407,1.9846,17.7502,5.1017,3.8157,1.1071,2.8006,8.6739,14.0337,2.5283,4.2481,3.1353,1.3991,1.4853,3.9078,10.4226,2.9597,1.9922,9.3938,2.176,2.5161,1.8475,12.8949,1.8675,3.2836,1.1437,14.6171,5.2541,7.0035,3.9089,10.3849,7.1485,6.2039,7.1507,3.1664,1.369,4.6277,,,,,,,,,,,,,,,,,,
-nG+MIL3T0HC012,1.4773,1.6605,,-50y,,,,21.2508,5.0225,3.0338,2.4731,1.3649,edsd,,,M,,0.42808,4.9878,4.8936,0.92443,9.9313,1.8135,0.41876,3.5359,2.3651,51.6413,18.2437,294.1752,4.783,4.9173,1.7487,2.2589,4.0095,7.7758,2.3336,3.3306,0.49127,6.5007,12.6202,16.1099,7.466,2.7266,5.7041,1.9821,21.0629,5.7859,4.5683,1.4277,3.1529,7.2745,15.7275,3.5094,4.1933,3.9895,1.6911,1.8629,4.9742,11.8842,3.0782,2.5068,12.0172,3.1132,3.1392,2.3906,14.3597,2.7258,3.9292,1.443,16.4776,6.0682,10.6515,3.3367,10.1761,8.5477,8.6603,8.0872,4.28,1.9245,5.5975,,,,0.08938,,,,0.41623,4.7836,4.5119,0.98247,10.1484,2.178,0.42563,2.9193,3.1376,52.8327,19.2503,301.2319,4.6883,4.4619,1.9368,2.1031,4.4148,8.2086,2.4882,3.6414,0.71604,6.5246,12.8101,13.6461,7.6316,2.5803,5.3472,2.0737,22.3671,4.8995,4.4057,1.0777,2.656,9.5021,16.0264,2.9491,4.3511,3.9799,1.7328,1.828,4.3364,10.4931,2.9381,2.6974,10.778,2.7077,2.502,2.3842,14.1,2.4477,3.6943,1.3308,15.1482,6.0927,9.1853,4.3903,10.3976,8.583,7.9425,9.1009,4.1776,1.9135,5.4829,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI001,1.5895,1.7191,,-50y,,,,14.6547,3.7908,2.0222,1.9539,1.4354,edsd,,,F,,0.3327,4.0958,4.0193,0.80957,8.1047,1.4399,0.33867,3.1943,2.3731,37.0487,12.7019,198.6874,3.579,4.2605,1.4739,1.8469,3.3513,6.1158,1.6632,3.111,0.57687,5.2045,10.0282,18.3588,6.6743,2.3387,4.6191,1.4935,17.0576,5.1163,3.5241,1.0864,2.5356,5.955,12.8216,2.8619,3.448,3.4294,1.6784,1.2944,4.066,10.0366,2.9109,2.0918,9.8615,1.9866,2.7094,1.9355,9.6896,1.7292,3.3269,1.0716,13.0649,4.6743,7.6945,2.8771,8.7603,6.4315,6.6802,6.8558,3.7394,1.3919,4.17,,,,0.06704,,,,0.33279,3.9432,4.0374,0.90418,8.9337,1.5828,0.35812,2.3843,2.921,37.5752,12.9884,206.6841,3.5839,3.7159,1.575,1.9935,3.1846,6.6059,1.8017,3.4077,0.95012,5.7465,10.6925,14.5273,6.0729,2.0023,4.4682,1.5811,17.0255,4.618,3.63,0.83247,2.0912,7.0821,12.9806,2.3287,3.5347,3.5054,1.3937,1.2453,3.4679,8.6424,2.7828,2.1738,8.606,2.2401,1.9081,1.9542,10.3754,1.7164,3.0766,1.0156,12.3433,4.518,6.4613,4.1722,9.0243,6.4914,6.0299,7.3189,3.2606,1.3876,4.0008,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI002,2.1427,2.4283,,-50y,,,,15.1615,5.2141,2.4238,2.3011,2.1398,edsd,,,M,,0.26814,4.7454,4.0245,0.55987,9.0312,1.5785,0.3253,3.5436,1.9965,45.2612,13.5961,198.8349,4.193,5.1005,1.0476,2.1427,2.9464,5.8754,1.8867,2.3865,0.859,6.1276,9.5231,21.7721,7.7994,2.5005,5.1096,1.6231,19.9726,6.4758,3.8828,1.1814,2.755,7.1554,12.6184,3.2409,4.1702,3.8409,1.5585,1.4642,4.5279,11.3595,2.4325,2.3517,10.9914,2.6184,2.4944,2.1437,11.8217,2.1044,3.1679,1.2438,14.3131,5.9672,9.4172,3.6288,11.0505,6.8181,6.9973,5.6543,4.3787,1.5044,4.2444,,,,0.08329,,,,0.29701,4.4036,4.2539,0.60887,9.9959,1.524,0.3378,2.9201,2.6031,46.0148,13.6647,210.0919,4.2568,4.4191,1.1403,1.9617,3.6944,6.4464,2.0589,2.7667,1.1529,6.8719,9.9738,20.4639,7.6609,1.8522,4.7473,1.883,19.209,5.4975,3.7157,0.7652,2.1727,8.4398,13.5111,3.0004,4.3109,3.7894,1.3389,1.4088,4.2202,10.4458,2.3207,2.4911,10.3956,2.4736,1.9909,2.0355,12.3735,1.9653,3.3698,1.1388,15.6048,6.077,8.2433,4.8821,10.6873,7.3794,6.0573,6.6344,3.5983,1.5479,4.1478,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI003,1.9071,2.5673,,70-79y,Other,,,17.1029,4.3109,2.0325,2.2031,1.9752,edsd,MCI,,M,,0.30522,4.2377,4.2509,0.6567,7.8905,1.3152,0.3347,3.2637,1.7009,43.0986,15.6229,205.9744,3.7297,4.432,1.3124,1.8175,2.8959,6.5838,1.8473,2.6357,1.2494,5.3211,10.082,29.1534,7.6057,2.0571,4.2487,1.5372,17.8261,5.3886,3.6596,1.0072,2.2577,6.4791,11.9541,2.9748,4.0633,2.925,1.3506,1.5457,3.9562,11.102,2.6956,2.2649,10.0256,2.3261,2.3874,2.0492,10.3115,2.0179,3.0188,1.2261,13.8267,5.1194,8.5425,2.9346,9.9311,6.6077,6.7017,6.7462,3.5044,1.5102,4.5025,24,,MCI,0.07023,,,,0.31295,3.7277,3.8017,0.67514,10.2363,1.3882,0.32251,2.7145,2.3546,43.9453,15.2712,208.2842,3.7154,4.0939,1.4354,1.7724,3.2552,6.6455,1.9542,2.7995,1.0913,5.5449,9.9931,22.3523,7.3667,1.8215,4.0691,1.6467,17.4139,4.8004,3.2924,0.75182,1.9456,7.728,13.1951,2.639,3.8961,3.1616,1.2868,1.3988,3.6512,9.6104,2.6072,2.3076,7.7528,1.8433,1.8475,1.9774,11.267,1.5787,2.812,1.1177,13.492,5.0162,7.8577,3.573,9.4464,6.3466,5.9256,7.4184,3.1555,1.4436,4.3675,,,,,,,,,,,,,,,76,,,
-nG+MIL3T0MCI004,1.9094,1.9663,,60-69y,Other,,,20.527,5.4453,2.7923,2.5032,1.6919,edsd,MCI,,M,,0.34799,4.2172,4.2093,0.84055,7.1368,1.4082,0.36026,3.1002,2.0924,49.9543,19.3243,235.9845,3.9702,4.2788,1.4929,1.694,3.0773,6.5483,1.7568,3.0983,1.2124,5.1279,10.0939,23.9591,7.008,2.2874,4.64,1.5761,17.7432,5.1165,3.4528,1.2033,2.7867,5.8557,11.2738,3.1545,4.1283,3.1391,1.4247,1.7893,3.8852,9.8731,2.8781,2.4581,10.7917,2.2148,2.5135,2.2152,12.1998,1.7915,3.5625,1.1817,13.5356,5.1648,7.4959,2.9805,8.3378,6.271,7.6406,6.4808,3.8217,1.4197,5.3377,26,,MCI,0.08488,,,,0.36223,4.2674,3.9999,0.79687,8.6911,1.5645,0.36788,3.0739,3.0596,49.7075,19.6819,250.1019,3.4347,4.2835,1.4613,1.623,3.3062,7.0847,1.8791,3.3151,0.92808,5.8415,11.0946,16.9221,7.7672,2.062,4.7125,1.682,16.7945,5.0392,3.3833,1.1335,2.3574,7.2827,13.8578,2.6562,4.1829,2.9993,1.3383,1.7801,3.5838,9.4082,2.7607,2.408,8.8582,2.1804,2.0801,2.0681,11.9469,2.0784,3.4573,1.1381,13.5102,5.2431,7.4095,4.2413,9.4346,7.575,7.1824,7.1958,3.0453,1.3856,5.0986,,,,,,,,,,,,,,,68,,,
-nG+MIL3T0MCI005,2.442,2.2191,,-50y,,,,18.7455,4.5608,2.5866,2.1892,1.8908,edsd,,,M,,0.34666,4.7708,3.9845,0.69628,7.8979,1.3214,0.36072,3.191,2.2943,46.1168,15.5494,219.7046,3.6841,4.4523,1.3406,1.7537,3.1256,6.1208,1.9686,2.9132,1.3759,5.1164,9.4804,19.5786,6.5668,2.1293,4.851,1.7203,17.0849,4.7026,3.5284,0.97873,2.5926,6.4436,11.827,2.9205,3.5443,2.9264,1.3584,1.5154,3.9284,10.9225,3.0333,2.1169,9.1617,2.1053,2.1077,2.011,10.3439,1.8146,3.2508,1.3205,13.6217,5.1639,7.6459,2.8751,9.0228,6.8094,7.545,6.4523,3.2229,1.3771,4.873,,,,0.08744,,,,0.34701,4.588,3.6892,0.76392,8.6076,1.5504,0.36847,3.0446,2.7861,48.3411,15.7042,231.6549,3.6584,3.7201,1.5607,1.7152,3.2742,6.8115,2.0079,3.2147,1.3004,5.688,10.0357,16.5071,7.171,1.9673,4.6626,1.8028,16.9418,4.4035,3.3359,0.92397,2.1996,7.9915,12.7591,2.7573,3.8372,2.9123,1.3431,1.531,3.639,8.9853,2.8251,2.163,8.1216,1.9191,1.8586,1.9007,10.6978,1.7405,3.2613,1.2284,13.5233,5.4026,6.4417,3.4604,8.6539,6.6418,6.3466,6.8234,2.8685,1.4512,4.7781,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI006,1.449,1.3377,,60-69y,Other,,,16.7018,4.9634,2.5014,2.1661,1.5677,edsd,MCI,,M,,0.29347,4.2297,3.6212,0.67758,8.0039,1.5009,0.30675,3.1399,2.1486,45.7319,15.4527,199.3898,3.3601,4.1909,1.3042,1.8526,2.9085,6.3426,1.6308,2.7243,0.91831,5.9437,10.182,21.1384,7.0594,2.307,4.5402,1.638,15.8765,5.2674,3.3948,1.1775,2.906,6.2888,12.9678,3.0265,3.9262,3.1812,1.4434,1.5608,3.9003,10.4343,2.5452,1.9424,9.6771,1.9729,2.4873,1.9267,11.4781,1.7127,2.8534,1.047,13.4957,5.415,7.703,3.325,10.7102,6.5229,6.8479,6.5154,3.7028,1.3215,4.4911,28,,MCI,0.0756,,,,0.2877,4.0428,3.2582,0.76374,10.0099,1.7195,0.3225,2.4683,2.5461,48.1833,15.7526,206.4091,3.5715,3.8955,1.5192,1.7421,3.5773,7.1156,1.9915,3.2037,0.70216,5.8472,11.1866,16.7882,7.354,1.9466,4.6073,1.8738,14.8858,4.4069,3.8306,0.70435,1.9498,7.5678,13.4024,2.4754,4.0735,3.2342,1.3089,1.6183,3.4634,8.8723,2.5263,1.9505,8.7033,1.8787,2.2277,1.7733,11.4878,1.7301,2.8397,1.0813,13.7673,4.8616,7.8072,4.0455,10.1158,7.0391,6.1882,7.2108,3.1968,1.3058,4.281,,,,,,,,,,,,,,,62,,,
-nG+MIL3T0MCI007,1.2149,1.6201,,70-79y,Other,,,16.3551,4.224,2.3144,2.0225,1.2754,edsd,MCI,,F,,0.31718,4.3097,3.7565,0.64816,9.422,1.4009,0.34569,2.7305,2.1484,38.9201,13.2666,206.1572,3.7683,4.0124,1.2884,1.7904,3.5652,5.6216,1.809,2.5093,0.48349,5.2871,9.1892,10.9836,6.0287,2.3092,4.3288,1.7354,17.4871,5.8124,3.5847,1.053,2.538,6.1771,12.6359,2.6487,3.6789,3.5236,1.4634,1.4105,4.1836,9.9817,2.5078,1.9863,10.4723,2.3668,2.5716,2.1139,11.8859,2.0038,3.2669,1.1578,12.8619,4.7393,8.2928,3.0755,8.7433,7.0353,7.1669,6.8305,3.3501,1.7159,4.3401,29,,MCI,0.07438,,,,0.31039,3.8254,3.4647,0.6762,9.2651,1.5584,0.31962,2.5212,2.5394,39.9028,13.1521,212.1597,3.7165,3.9019,1.2497,1.7828,3.457,6.2984,1.9463,2.7915,0.66316,5.202,10.1107,10.6502,6.8636,2.1097,4.2552,1.8014,16.2697,4.8068,3.3256,0.95289,2.2109,7.1681,13.1167,2.3382,3.6166,3.3483,1.4978,1.3764,3.6107,8.6625,2.4062,2.0144,9.4055,2.3646,2.0174,1.9123,11.8667,2.1303,3.1335,1.0539,13.2317,4.5863,7.9005,3.69,9.7767,7.6034,6.5442,7.1652,3.4369,1.5011,4.2293,,,,,,,,,,,,,,,72,,,
-nG+MIL3T0MCI008,1.1521,1.8093,,60-69y,Other,,,16.0576,4.3013,2.4001,2.2242,1.3068,edsd,MCI,,F,,0.35894,4.3563,3.9608,0.77704,9.3719,1.3671,0.32929,2.4914,1.9421,40.841,13.7043,233.4226,3.7199,3.9712,1.5807,1.8578,3.2678,6.2661,1.7546,3.0083,0.41167,5.1135,10.0806,12.7389,6.0849,2.0567,4.8286,1.6533,14.7604,5.5331,3.5123,1.0583,2.1956,5.8159,13.4044,2.8025,3.5655,3.5056,1.3204,1.6009,4.304,10.7365,2.9176,2.1987,10.1111,2.0631,2.3311,1.9493,9.8087,1.6085,3.3076,1.1339,10.6457,4.1201,8.2312,2.794,9.1618,7.0896,6.8994,7.8093,3.1706,1.1341,4.4716,27,,MCI,0.06574,,,,0.37667,4.3118,3.344,0.81053,8.7417,1.6328,0.35342,1.983,2.8062,42.7332,14.3392,234.1269,3.8336,3.2572,1.5833,1.5972,3.4214,6.5806,1.8887,3.0205,0.39685,5.3695,10.417,11.7418,5.989,1.9941,4.738,1.7652,15.7474,4.6476,3.5589,1.0147,1.9825,7.6315,13.4186,2.3489,3.3581,3.2383,1.3541,1.4966,3.7291,9.2007,2.4831,2.0682,9.9349,1.9101,1.8493,1.843,10.5486,1.7637,2.8927,1.0979,10.1465,4.607,7.9138,3.3701,8.9161,7.4092,6.423,7.9132,3.463,1.335,4.2944,,,,,,,,,,,,,,,68,,,
-nG+MIL3T0MCI009,1.6135,1.8949,,-50y,,,,16.6818,3.8513,2.4886,1.9878,1.3132,edsd,,,F,,0.35028,4.4857,3.9644,0.75558,7.9211,1.3855,0.32855,3.096,2.0786,44.741,14.4504,224.0169,3.9186,4.467,1.4735,1.9597,3.0588,6.5746,2.0295,2.8934,0.74344,5.0515,10.3083,15.393,6.8839,2.2472,5.0431,1.7297,16.9218,5.4662,3.7638,1.0909,2.4565,6.3241,12.7654,2.7921,3.6434,3.63,1.5771,1.576,3.9584,9.8817,2.9202,2.1786,10.0153,2.3113,2.6116,2.1754,11.5086,1.9915,3.3637,1.1421,14.4789,5.0469,8.7445,3.309,9.0897,7.1061,6.7046,7.0749,3.4365,1.5321,4.4876,,,,0.06774,,,,0.36347,4.2767,3.3092,0.80181,9.0344,1.5732,0.36107,2.7924,2.8349,44.2168,14.7531,232.1245,3.7906,4.2089,1.504,1.7649,3.6256,6.5852,2.0165,3.1135,0.74448,5.6631,10.0847,14.3365,6.9075,2.0669,4.7904,1.7694,17.6235,5.0264,3.4163,0.76103,2.0237,7.9019,14.3297,2.3517,3.6618,3.2124,1.4995,1.5581,3.5569,9.2661,2.8045,2.2215,9.3147,2.2135,2.1166,2.1426,12.3494,1.9502,3.1602,1.14,14.4769,5.2593,7.6135,3.7227,9.2904,7.5752,6.2401,7.0173,3.1462,1.7368,4.3426,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI010,1.0706,1.4405,,-50y,,,,17.5712,4.3534,2.4018,2.1036,1.0958,edsd,,,F,,0.42053,4.2625,4.0179,0.77268,7.8968,1.4007,0.35463,2.5118,2.6672,36.1023,16.4259,253.9332,3.6665,3.8961,1.4352,1.8114,3.1806,6.6353,1.8537,2.8357,0.50891,4.7812,10.8721,12.2315,6.2403,2.153,4.427,1.6782,17.0065,4.831,3.7081,1.1718,2.4559,6.0505,13.8452,2.6117,3.5603,3.4084,1.4754,1.7676,4.1599,10.1186,2.7336,2.1949,10.4308,2.2491,2.5731,2.1863,11.5145,1.8485,3.3287,1.2036,13.8568,5.1331,7.9579,3.0307,8.8828,6.9543,7.862,7.629,3.3856,1.3651,4.8226,,,,0.08285,,,,0.38794,3.9571,3.8024,0.7548,7.9558,1.4738,0.36064,2.2066,2.8135,37.7172,17.5882,252.377,3.233,3.4552,1.4464,1.8267,3.492,6.491,2.0711,2.914,0.54171,5.263,9.8059,11.3418,5.8811,1.94,4.3943,1.8179,17.0132,3.884,3.579,0.89696,1.9606,7.2386,12.9889,2.2567,3.3377,2.99,1.225,1.7282,3.5506,8.6133,2.557,2.4339,8.6724,1.6189,1.9345,1.9529,11.9335,1.6103,3.3802,1.2661,14.0725,4.512,7.1461,3.3415,8.0848,6.7829,6.39,7.424,2.9139,1.2354,4.5527,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI011,1.5784,1.597,,-50y,,,,17.5065,5.0546,2.6047,2.3387,1.7597,edsd,,,F,,0.39625,4.265,4.0673,0.6773,8.1467,1.456,0.36116,3.3367,3.1242,41.5348,13.7046,199.2788,4.2067,4.5886,1.2221,2.0387,3.0711,5.9755,1.948,2.8348,1.2597,5.5489,8.88,29.8965,6.7852,2.3252,4.8107,1.6371,17.9973,6.228,3.7655,1.1203,2.578,6.2941,11.984,3.1116,3.7021,3.7014,1.6476,1.4927,4.3411,10.6683,2.7096,2.2321,12.4842,2.5377,2.5171,2.1583,12.0531,1.9261,3.6003,1.2325,13.631,5.0196,8.8607,3.819,9.3483,6.9651,6.3167,6.3369,3.7415,1.4667,4.5935,,,,0.08553,,,,0.4011,3.8357,3.6279,0.80229,10.6817,1.8094,0.38798,2.6735,3.74,45.473,14.4054,206.3472,3.8625,3.8762,1.5559,1.8671,3.5937,6.8294,2.098,3.168,1.196,6.4204,10.3388,21.5357,6.9458,2.2001,4.5652,1.954,18.0466,5.3586,3.7041,0.9656,2.1075,7.6251,14.8903,2.4654,3.9121,3.0754,1.5607,1.4516,3.8706,9.8585,2.6944,2.3068,10.3534,2.0793,1.8117,1.9234,11.3502,2.03,3.5562,1.2749,13.069,4.9768,8.854,4.2459,11.0128,8.0376,5.8286,7.2258,3.5295,1.4195,4.4146,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI012,1.9176,1.6033,,60-69y,Other,,,18.9345,4.6514,2.4651,2.1973,1.4449,edsd,MCI,,M,,0.3701,5.0519,4.6529,0.84092,9.2428,1.6258,0.39667,3.4438,2.1727,44.7,15.6548,237.8328,3.9784,4.277,1.5372,2.3372,3.4622,7.4547,2.4041,2.7706,0.76939,5.9025,12.53,16.5571,7.5524,2.3079,5.2762,1.9712,18.6945,6.2788,4.5134,1.4141,3.3245,7.4477,13.855,2.9439,4.2319,3.7312,1.5915,1.7088,4.6272,11.594,2.9739,2.3505,12.4431,2.6756,2.5953,2.2462,11.6069,2.1297,3.4341,1.3699,14.8177,6.2345,10.3583,3.2117,9.5776,7.3212,8.1874,7.7448,4.6504,1.5694,5.1015,29,,MCI,0.07553,,,,0.38384,4.6665,4.0464,0.86696,10.8969,1.778,0.39108,2.6886,2.7477,46.848,16.3894,244.1906,3.7151,4.5377,1.6107,2.0204,3.8044,8.1498,2.37,3.2742,1.2486,6.2916,12.7153,14.077,7.2984,2.0001,5.296,1.9521,18.3983,5.3062,4.1225,0.95669,2.2975,8.299,14.1925,2.4179,4.3247,3.5208,1.4431,1.6818,3.7538,9.9488,2.9268,2.3587,11.2913,1.9819,1.967,2.0106,12.5541,1.6364,3.4765,1.2262,15.1168,5.3727,8.7147,4.7405,10.2127,7.4072,7.1314,8.2958,4.039,1.3371,5.0371,,,,,,,,,,,,,,,62,,,
-nG+MIL3T0MCI013,1.1082,1.4415,,60-69y,Other,,,15.5579,4.0235,2.1701,1.8414,1.0778,edsd,MCI,,F,,0.34514,4.2505,3.7508,0.62016,8.8677,1.5155,0.3402,2.7747,2.1983,40.656,12.9644,188.5754,3.7099,4.2084,1.3032,1.9445,3.1623,6.0792,2.0001,2.577,0.49987,5.7585,9.865,11.4231,6.2959,2.3684,5.0252,1.6534,17.3935,5.7948,3.8671,1.1569,2.8489,6.4019,13.6704,2.9248,3.8581,3.6936,1.4598,1.312,4.516,10.5648,2.6026,2.0161,10.5565,2.0482,2.432,1.9437,11.759,1.9443,3.003,1.1983,13.4651,5.3888,8.8088,3.3862,9.1892,6.7935,6.3529,6.6556,3.7906,1.4303,4.1851,27,,MCI,0.07726,,,,0.338,3.6592,3.3155,0.75465,10.0629,1.8041,0.35036,2.3796,2.4974,42.2721,13.5126,199.6805,3.5194,3.8567,1.6323,1.8362,3.7118,6.8976,1.9771,2.9427,0.60093,5.7385,11.1388,10.2828,6.5732,2.1805,4.5201,1.8138,17.4694,4.4187,3.5735,1.1256,2.4941,7.7055,14.774,2.3112,3.9695,3.473,1.5133,1.3158,3.9743,9.8678,2.6928,2.144,9.768,1.9255,2.0391,1.9546,11.0238,1.6975,3.1242,1.1027,14.7744,5.0161,7.3116,3.5958,9.4279,7.3424,5.6208,7.8795,3.7177,1.3665,4.074,,,,,,,,,,,,,,,63,,,
-nG+MIL3T0MCI014,1.535,1.7228,,-50y,,,,23.3658,4.8712,2.8273,2.452,1.2541,edsd,,,M,,0.29998,4.1991,3.9609,0.72214,7.5833,1.2591,0.34336,3.0567,2.0219,51.1016,19.9391,240.4482,3.4475,4.3597,1.316,1.8822,2.5302,6.5742,1.8091,3.135,1.1214,5.0406,9.8194,8.6635,7.1178,2.1521,4.3332,1.5853,14.8729,5.0336,3.3416,0.73349,1.843,5.6612,12.8625,3.029,4.0298,2.9105,1.4606,1.7181,4.2617,10.7271,2.8032,2.1061,9.3536,2.1576,2.5272,2.1272,9.0831,1.7456,2.7149,1.2038,11.143,4.2436,7.7732,2.9176,9.6116,6.4992,7.2718,6.5208,3.1545,1.4946,5.3393,,,,0.07497,,,,0.30712,3.9057,3.637,0.71488,8.4879,1.3613,0.33996,2.2395,2.1408,53.3227,20.1528,249.6425,3.4186,3.5655,1.407,1.5911,3.1885,6.6888,1.8516,3.163,0.66079,5.3644,10.8862,8.2404,6.5453,1.73,4.1491,1.8007,15.2511,3.9653,3.5051,0.8214,1.7049,7.1482,12.7445,2.3718,4.0499,2.3161,1.2154,1.5444,3.4587,9.0214,2.516,2.1701,9.0473,1.9259,1.932,1.809,9.7805,1.6205,3.1365,1.1644,11.4221,3.9591,6.5489,3.8231,9.9673,6.2515,5.9457,6.7739,3.018,1.4022,4.9079,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI015,1.2064,1.8021,,70-79y,Other,,,19.1316,4.3138,2.3728,2.1741,1.1243,edsd,MCI,,F,,0.3531,4.5091,3.7082,0.7718,7.9547,1.3986,0.33463,2.6185,2.1533,45.9615,15.6508,223.5984,3.7674,4.2687,1.5263,2.0475,3.0894,6.5485,1.9565,2.7564,0.48694,5.0644,9.9019,12.7246,6.6889,2.2887,4.5033,1.7294,18.0381,5.2764,3.5669,1.1835,2.798,6.1601,12.3393,2.7173,3.6074,3.3721,1.4805,1.6013,3.9026,9.3387,2.7702,1.9738,9.5345,2.0319,2.2222,1.8964,12.7244,1.635,2.8304,1.1289,11.6385,5.3437,7.5909,2.7745,8.3007,6.9282,7.2052,7.4258,3.8071,1.3564,4.8012,27,,MCI,0.07026,,,,0.34773,3.987,3.4372,0.7972,9.6587,1.6609,0.32724,2.197,2.8534,47.8802,16.3949,233.9477,3.7112,3.7056,1.5594,1.721,3.3523,6.9781,2.078,2.9714,0.61565,5.9901,11.2782,11.6728,6.4405,2.0261,4.491,1.7598,17.2272,4.582,3.5211,0.76618,2.4657,7.6448,13.7493,2.1297,3.6682,3.2227,1.3761,1.4988,3.5588,9.2515,2.5917,2.1612,7.6447,2.0394,1.7636,2.0475,11.0944,1.8222,2.8402,1.0787,12.557,4.954,6.8314,3.7965,9.7064,7.2331,6.6309,8.0762,3.1503,1.527,4.5176,,,,,,,,,,,,,,,76,,,
-nG+MIL3T0MCI016,1.7099,1.6168,,-50y,,,,15.5862,3.7736,2.0809,1.9834,1.8418,edsd,,,M,,0.36529,3.972,4.0682,0.66216,8.1956,1.3434,0.36046,2.7791,2.4052,41.5782,14.4498,201.0733,3.5037,4.2088,1.2692,1.9246,2.8694,6.2422,1.7495,2.5646,0.96842,5.3497,9.4202,16.1252,6.4052,2.2305,3.9488,1.4828,15.5124,5.1305,3.4512,0.99356,2.5555,5.5905,11.8768,2.7227,3.9653,2.937,1.5133,1.5513,3.8622,9.6145,2.5536,2.0964,9.4049,1.7409,2.4534,1.8767,10.6964,1.6524,3.5891,1.1133,11.7939,4.794,8.3502,3.1751,8.9179,6.8627,6.3151,6.2351,3.3725,1.1573,4.2973,,,,0.0684,,,,0.36092,3.9291,3.8771,0.60319,9.1247,1.4162,0.36231,2.5444,2.8072,40.8386,13.8782,210.0165,3.3731,3.7092,1.2108,2.0376,3.0341,6.1642,1.8231,2.7748,1.0422,5.6908,9.708,15.5524,6.6445,1.8575,4.3325,1.5862,15.5254,5.1316,3.1633,0.87777,2.0665,6.9133,13.1651,2.394,3.4384,3.341,1.4013,1.5107,3.6269,8.3795,2.2952,2.1889,9.2024,1.5756,1.8155,1.9643,10.105,1.577,3.4311,1.0548,12.1472,4.4572,6.609,3.8011,9.7912,6.5347,5.5724,6.7954,3.5397,1.3401,4.1675,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI017,1.7274,2.3245,,-50y,,,,20.5604,5.0087,2.275,2.2048,1.5282,edsd,,,M,,0.35447,5.1379,5.4519,0.82202,9.3894,1.6915,0.40662,3.0629,2.5628,41.2664,16.3152,242.4689,4.172,4.4845,1.5848,2.2851,3.0808,7.494,2.1218,3.2316,0.63498,6.1079,11.4929,15.2159,7.775,2.7886,5.5488,1.9423,19.1789,5.9314,4.3401,2.0477,4.3093,7.6082,14.1545,3.391,4.3338,3.2799,1.7543,1.7203,5.0554,12.2321,3.2771,3.0611,12.8651,2.6107,2.9716,2.7685,12.5137,2.2289,3.7922,1.4734,14.708,6.51,8.8502,3.1072,11.59,7.7407,8.0247,8.196,4.1063,1.6145,5.0079,,,,0.10157,,,,0.38218,4.5569,4.925,0.91267,10.7424,1.8993,0.40543,2.4736,2.8916,41.2298,17.0926,254.1394,4.2689,3.596,1.7571,2.2031,3.7726,7.7176,2.2933,3.598,0.62802,7.429,13.2069,11.9006,7.5873,2.356,5.506,2.1361,19.315,5.6932,4.2496,1.1132,2.7597,10.1498,16.6489,2.4932,4.5205,3.143,1.6892,1.7259,4.2871,10.3028,3.1579,3.0879,10.9437,2.5655,2.3994,2.5662,12.7377,2.0333,3.7198,1.3666,16.2564,6.7023,8.2785,4.0832,11.4824,8.049,6.8297,8.8573,3.6312,1.7211,4.8935,,,,,,,,,,,,,,,,,,
-nG+MIL3T0MCI019,0.97219,2.0565,,60-69y,Other,,,15.8768,3.8657,2.4582,2.1246,1.2455,edsd,MCI,,F,,0.37405,4.6941,3.9462,0.77244,8.3233,1.5717,0.37365,3.1124,2.3536,44.3359,12.7122,190.1632,4.1142,4.4412,1.5962,1.9265,3.1181,6.9337,2.0985,2.8656,0.35424,5.9617,10.8522,13.301,7.2373,2.5188,4.7272,1.8063,17.2931,5.555,3.8787,1.0611,2.5861,6.5001,13.4861,2.8797,4.2739,3.5708,1.5862,1.4068,4.0902,9.983,3.0504,2.1742,11.0064,2.2416,2.5758,1.9869,12.5071,1.7894,3.2971,1.2233,12.9226,4.9899,8.4213,3.433,9.0157,7.0953,6.7574,7.624,3.7579,1.3868,4.3687,27,,MCI,0.07815,,,,0.3747,4.4824,3.6757,0.7373,9.467,1.6139,0.38035,2.8737,2.8101,45.4569,12.3822,199.8175,4.0855,4.2472,1.4203,1.9177,3.3057,7.337,1.9123,2.9519,0.45856,6.4091,10.9587,12.1702,6.8966,2.0355,4.8213,1.8392,16.202,5.1868,3.7851,0.95164,2.1619,8.0783,13.2057,2.6801,4.1772,3.53,1.4431,1.327,3.5604,9.6636,2.5914,2.1848,10.5304,2.1452,2.0841,1.8509,12.4595,1.853,3.2405,1.2483,13.268,5.5426,8.0328,4.6808,10.0134,6.7367,6.3268,7.36,3.365,1.4169,4.1014,,,,,,,,,,,,,,,60,,,
-nG+MUN3T0AD001,2.3607,2.3369,,50-59y,AD,,,27.2308,5.4942,3.2649,2.6867,2.1323,edsd,AD,,M,,0.4622,6.5349,5.01,0.97834,12.0496,1.6984,0.41998,3.979,3.6894,55.6083,22.1671,312.4062,4.9235,5.7109,1.6975,2.5455,4.4791,7.8056,2.6145,4.0127,2.4539,7.3117,11.3764,38.1718,8.522,2.6506,6.12,2.5162,24.7661,7.2066,4.5409,1.544,3.2783,9.8321,14.1533,4.0731,4.7654,4.1904,1.9266,2.3875,5.6503,13.4261,3.7096,2.7942,14.025,3.2184,2.9114,2.8303,16.6237,2.7172,4.2137,1.5941,17.4955,6.754,10.6176,4.5727,15.6076,8.5607,9.7296,7.7869,4.8501,1.7715,6.8376,26,,AD,0.09633,,,,0.44332,5.5549,4.8522,1.0559,13.0456,2.2207,0.44196,4.7937,3.856,55.3105,21.5412,334.9526,5.1061,6.1535,1.9382,2.518,4.7109,9.1878,2.5943,4.2465,0.9969,8.7332,13.026,32.8686,10.1894,2.8399,5.6031,2.4392,25.3498,7.0774,4.3394,1.5652,3.3007,11.2819,16.2557,4.4348,5.2637,4.8534,1.8616,2.4612,5.1537,12.8597,3.4245,2.9142,12.5766,2.9821,2.6851,2.7202,15.096,2.3105,4.4662,1.5733,18.4689,7.2336,10.7075,5.9885,15.7637,8.8438,9.902,8.5532,4.9804,1.9364,6.6725,,,,,,,,,,,,,,,58,,,
-nG+MUN3T0AD002,1.7403,1.7113,,70-79y,AD,,,17.5146,4.6779,2.6882,2.1841,1.6773,edsd,AD,,F,,0.35366,4.1858,4.0424,0.66215,8.0827,1.4123,0.33652,2.8047,2.8728,42.8051,14.6336,196.9209,3.9901,3.8139,1.3199,1.7424,3.3483,6.3928,1.8516,2.5491,0.70622,5.5544,9.5955,24.6531,7.0945,2.0886,4.9393,1.6404,15.9371,5.1587,3.5433,1.1881,2.5673,6.2902,12.0173,2.8001,3.8561,3.014,1.2362,1.4702,4.0563,9.6885,2.8985,2.2624,11.9843,2.4738,2.1201,2.0971,13.7862,2.002,3.7764,1.0952,12.375,4.7191,8.151,3.2493,10.4569,6.5127,6.208,6.3148,3.0403,1.4164,4.532,26,,AD,0.07515,,,,0.30141,3.8395,3.7381,0.64983,8.201,1.5756,0.32475,2.8653,2.6305,42.1882,14.3679,198.5983,3.755,4.2131,1.3862,1.6704,3.1878,6.8917,1.7872,2.6675,0.85013,5.566,10.126,22.3641,7.4049,2.0103,4.5899,1.5491,16.507,4.2348,3.3546,1.2496,2.5616,6.4777,11.8607,2.5604,3.6893,2.9379,1.3287,1.3945,3.5686,9.1509,2.7432,2.2046,10.741,2.3098,2.1843,1.9023,12.754,1.7599,3.3525,1.0284,12.6986,5.0396,6.9574,4.0615,9.9738,6.3706,5.8988,6.6676,3.1249,1.3872,4.2355,,,,,,,,,,,,,,,77,,,
-nG+MUN3T0AD003,1.3485,1.1638,,+80y,AD,,,17.2983,4.3435,2.2858,1.9664,1.3829,edsd,AD,,F,,0.30387,3.9117,3.9147,0.63558,6.6607,1.2167,0.30035,3.0446,2.4984,39.0627,14.6249,172.1287,3.5531,4.0744,1.1777,1.9105,3.0591,5.4036,1.7103,2.4116,0.55943,4.9021,8.0032,14.8694,6.2589,1.9252,4.2817,1.5096,15.4965,4.3309,3.2347,0.95118,2.3338,6.1076,9.5015,2.9729,3.3711,3.0269,1.3123,1.453,3.793,9.5354,2.5224,1.9375,9.53,2.0229,2.0945,1.756,11.27,1.8821,2.8923,1.016,12.446,4.8076,6.9817,2.776,9.1891,5.2606,6.0814,5.6944,3.6222,1.4067,4.3006,25,,AD,0.08356,,,,0.28869,3.5433,3.5469,0.64534,7.8428,1.4189,0.3005,2.9378,2.8044,38.9068,13.9224,175.0226,3.5572,4.1145,1.1853,1.7486,3.3157,5.5942,1.768,2.6058,0.60897,5.2713,8.7021,13.8722,6.7317,1.8814,4.1144,1.5144,16.7875,4.035,3.1534,0.99077,2.374,6.977,10.8521,2.8068,3.4664,3.0089,1.3248,1.4979,3.4814,8.969,2.3406,1.9146,8.5765,1.6644,1.9221,1.7391,11.113,1.4817,2.9419,0.98828,13.6378,5.1372,6.1485,3.6579,9.2156,5.7197,5.8237,6.3608,3.2322,1.2354,4.1289,,,,,,,,,,,,,,,80,,,
-nG+MUN3T0AD004,2.5509,3.1783,,70-79y,AD,,,14.4951,4.3839,2.1249,2.0122,2.2484,edsd,AD,,M,,0.16158,3.252,4.6196,0.69515,10.6107,0.55737,0.31657,2.787,2.9339,39.5261,11.7876,145.7123,3.8715,3.9813,1.3338,1.4748,2.43,6.8021,1.0331,2.5777,1.0578,6.7709,10.1888,29.5189,7.3139,0.951,4.5013,0.94623,14.3944,6.9844,1.6839,1.2691,3.7953,5.6793,12.3503,3.4526,4.3142,2.557,0.65244,0.8757,4.526,11.4987,3.0711,2.6624,11.0579,2.535,1.181,2.3669,11.0202,2.1913,2.3521,1.0299,11.1137,6.2755,9.1424,3.6493,11.8303,6.8819,6.2727,5.9852,2.2786,1.6592,3.79,20,,AD,0.09289,,,,0.14032,3.2007,4.8436,0.83391,12.0358,1.047,0.43776,3.0485,2.8878,40.4081,11.6514,149.5422,3.9589,4.7709,1.5823,1.9017,2.924,6.9071,1.4529,2.8367,1.2454,7.213,11.0169,23.2901,7.8148,1.4676,4.7066,1.1024,14.918,6.0283,2.2148,1.5299,4.0337,6.2585,13.3795,3.2217,4.263,3.0302,1.0437,0.81757,3.8863,12.2159,2.8493,2.8884,9.4889,2.2439,1.9272,2.2133,10.6094,1.9195,2.1838,1.0751,11.7757,6.0736,7.6025,4.7024,13.3127,6.5753,5.4218,7.8558,2.623,1.7894,3.6709,,,,,,,,,,,,,,,70,,,
-nG+MUN3T0AD005,1.7758,1.7712,,70-79y,AD,,,18.505,4.467,2.2459,1.8435,1.5588,edsd,AD,,M,,0.35956,4.6505,4.4849,0.68479,8.3746,1.3469,0.32726,2.6865,2.7294,40.8983,14.5162,195.7271,3.7122,3.7368,1.2574,1.8984,3.4748,5.9511,1.9973,2.4692,1.0025,5.5447,9.5036,20.6888,6.6783,2.0598,4.3582,1.7204,16.9349,5.4697,3.6399,1.1666,2.7089,6.6186,12.4403,2.9441,3.6656,3.2033,1.4158,1.6284,3.8782,9.6318,2.727,2.3877,9.9287,2.3918,2.3991,2.1555,11.706,2.0798,3.5565,1.2657,13.206,5.095,7.5507,2.9178,9.7158,6.89,6.2886,6.634,3.407,1.4603,4.6758,22,,AD,0.07994,,,,0.32501,4.4763,4.0829,0.74253,8.3732,1.3769,0.35866,2.8047,2.8108,40.8155,14.3121,197.3373,3.6359,4.4069,1.3864,1.7701,3.4684,6.309,1.8146,2.6323,1.2937,5.988,10.2109,16.2377,7.1017,1.9553,4.4777,1.6823,15.7002,4.6104,3.0614,0.99442,2.4975,7.142,12.5677,2.3724,3.6369,2.9756,1.4759,1.5904,3.3984,9.9978,2.606,2.5101,8.6214,2.2195,2.1781,2.2047,11.7262,1.8068,3.4732,1.2024,13.8201,4.8984,7.0237,3.6213,8.7725,6.545,6.0289,6.8308,3.224,1.5356,4.4218,,,,,,,,,,,,,,,76,,,
-nG+MUN3T0AD006,2.5114,3.3687,,70-79y,AD,,,18.139,4.7097,2.4648,2.055,1.9764,edsd,AD,,M,,0.37589,4.3693,4.186,0.73047,8.7637,1.5396,0.35576,3.0912,2.8187,44.0634,14.2091,219.696,4.0233,4.7963,1.4822,1.7496,3.4006,7.1654,1.8517,2.6057,1.3042,6.2486,10.7645,35.5783,7.7304,2.3851,4.7563,1.6249,20.9488,5.9567,3.6104,1.2399,2.5166,6.5849,12.9455,3.3899,4.3582,2.6187,1.4155,1.5819,4.3083,11.5531,3.0296,2.4427,12.4304,2.6695,2.411,2.2384,13.4819,2.0163,3.5827,1.1701,15.5468,5.2693,9.5454,3.5477,11.5462,7.301,6.7055,6.8363,3.42,1.5846,4.7728,21,,AD,0.07485,,,,0.35414,3.8215,3.7816,0.7271,10.6755,1.7491,0.34401,3.1602,2.9574,44.8174,13.8416,218.897,4.0336,5.0257,1.3582,1.9924,3.5985,7.1137,1.8851,3.175,1.322,6.4169,10.7304,25.0894,8.2793,2.1918,4.1804,1.7,20.6697,5.1333,3.5876,0.90043,2.2057,7.3912,13.305,2.7967,4.3302,4.1054,1.4701,1.646,4.1216,11.5403,2.7692,2.2964,10.9935,2.2259,2.2182,2.0722,12.8515,1.7216,3.4259,1.1433,14.3383,5.3986,8.3652,4.5115,11.7083,7.1461,6.6898,7.1222,3.6095,1.5081,4.5769,,,,,,,,,,,,,,,73,,,
-nG+MUN3T0AD007,1.4798,1.794,,+80y,AD,,,15.1807,4.1593,2.2,2.0658,1.4373,edsd,AD,,F,,0.34264,4.3576,3.5366,0.58904,8.764,1.2758,0.32023,2.4884,2.4888,39.7366,12.1776,166.9242,3.62,3.5058,1.1912,1.6726,3.0897,6.0492,1.7789,2.3964,0.55524,5.038,9.7265,15.4314,6.5562,1.9304,4.4466,1.4819,17.3223,5.9041,3.5075,1.1074,2.5883,6.4198,11.8429,2.5463,3.5636,3.3111,1.3043,1.2125,3.8951,10.4289,2.5782,2.0805,10.202,1.9805,2.1719,1.9919,11.7657,1.5262,3.1931,1.0938,12.3486,5.257,8.3409,3.011,9.2063,5.4892,5.5218,5.9561,3.3739,1.2057,3.9084,19,,AD,0.07215,,,,0.28281,4.0819,3.5208,0.60264,8.3049,1.3454,0.3141,2.4015,2.4987,40.7914,12.2193,168.1404,3.8943,3.6266,1.1913,1.7567,3.1411,6.2469,1.7422,2.5179,0.73919,5.6885,10.071,12.5833,6.4032,1.7635,4.7499,1.4585,16.966,4.3617,3.2557,1.0125,2.4179,7.1016,11.7043,2.2467,3.6186,3.2696,1.2926,1.2751,3.5651,10.0103,2.4985,2.3245,10.1569,2.16,1.94,1.9951,12.1767,1.5956,3.0061,1.0845,12.6128,5.2666,6.7678,3.3676,9.3173,5.5752,5.3608,6.6331,2.8976,1.3985,3.7435,,,,,,,,,,,,,,,80,,,
-nG+MUN3T0AD008,1.772,2.1243,,+80y,AD,,,15.6667,3.6351,2.2508,1.7779,2.1647,edsd,AD,,F,,0.31392,4.0696,3.8433,0.71856,8.5595,1.2075,0.31619,2.6499,2.3055,34.3648,11.4985,173.5885,3.7782,3.7213,1.4147,1.6707,2.9635,5.6597,1.6654,2.6953,0.91579,5.5242,9.1482,21.5607,5.6824,1.9626,4.1336,1.4116,15.7892,4.8218,3.3071,0.96627,1.9728,5.7379,12.0321,2.7584,3.5851,2.7489,1.3048,1.3738,3.8109,9.4283,2.9639,2.2756,10.4034,1.8554,2.1196,2.0408,10.3,1.6726,3.0356,1.1152,11.7932,4.3894,8.3262,2.7419,7.6618,6.7168,5.913,6.3378,3.0846,1.1986,4.3272,22,,AD,0.06736,,,,0.28306,3.68,3.5228,0.73639,9.7382,1.4566,0.32673,2.8002,2.2641,33.9342,11.0862,177.4279,3.5759,3.525,1.4506,1.6736,3.1789,6.0432,1.681,2.8773,1.1098,5.9336,9.7939,21.9998,6.4929,1.8869,3.7239,1.4608,14.9787,4.5528,3.3358,0.86716,2.0355,6.7294,12.5191,2.4574,3.576,3.0443,1.314,1.376,3.5868,8.9276,2.7143,2.2098,9.0554,1.963,2.0583,1.8763,10.1462,1.5565,3.0868,1.0546,11.6557,4.5608,6.6323,3.2195,9.5553,6.2705,5.6714,6.8311,2.9019,1.3435,4.0902,,,,,,,,,,,,,,,87,,,
-nG+MUN3T0AD009,1.7983,1.3881,,+80y,AD,,,18.2149,4.1502,2.6726,2.1837,1.3463,edsd,AD,,F,,0.33917,4.0873,4.1797,0.71968,8.8907,1.3301,0.35406,2.8563,2.3539,41.9972,14.5835,187.3303,4.1184,4.0345,1.4601,1.9725,3.1771,6.3199,2.0598,2.7905,0.41764,6.1879,9.7188,9.6053,6.5016,2.2163,4.4931,1.6189,17.3982,6.0522,3.7084,1.1753,2.6843,6.2481,13.1739,3.167,3.9801,2.9979,1.6119,1.4572,4.0782,9.8741,2.8938,2.0948,11.6623,1.989,2.5251,2.0328,10.9786,1.6304,3.0698,1.2452,13.7731,4.9639,8.2916,3.1763,11.4525,6.5548,6.8207,6.7432,3.7528,1.3308,4.6347,24,,AD,0.08208,,,,0.32574,3.6934,3.7611,0.72158,10.3634,1.5942,0.3607,3.0608,2.4642,41.9996,14.1985,186.1146,3.2401,4.3882,1.4482,1.7941,3.4709,6.211,1.9403,2.9777,0.6177,6.3048,10.015,9.7001,7.1123,2.2187,4.408,1.6135,17.0713,5.0897,3.6443,1.1711,2.687,6.9543,13.0283,2.9139,4.0136,3.1402,1.5704,1.4111,3.7788,9.9597,2.728,1.9812,9.6857,1.7216,2.3685,1.8673,10.0057,1.5451,3.0689,1.218,13.5541,4.8429,7.5562,4.5245,10.3299,6.5134,6.4173,7.2374,3.3876,1.2186,4.4367,,,,,,,,,,,,,,,81,,,
-nG+MUN3T0AD010,2.1077,1.9478,,70-79y,AD,,,17.6402,4.7689,2.5756,2.193,1.8617,edsd,AD,,M,,0.40137,4.9046,5.0995,0.89547,9.6772,1.7774,0.37188,3.9468,3.0351,47.8707,14.203,238.2906,4.6371,5.4991,1.7241,2.3582,4.2636,8.1068,2.2793,2.7078,1.0311,6.8535,12.2691,24.4308,8.3164,2.7675,5.0952,2.0161,21.4624,6.4988,4.2011,1.2882,2.8643,8.0067,14.3792,3.8486,4.7529,3.4065,1.7989,1.6234,4.6666,12.1313,3.2579,2.7492,13.0106,2.6669,2.6944,2.7221,14.7498,2.1372,3.471,1.2201,17.4915,6.0863,9.3675,4.1038,12.2536,7.5582,7.1998,8.0069,4.4729,1.9359,4.7162,25,,AD,0.08385,,,,0.37516,4.3437,4.7863,0.91709,10.4147,2.1278,0.40375,3.8735,3.2081,47.187,13.857,245.3837,4.4146,5.9236,1.7979,2.3205,4.9292,8.2273,2.3498,3.3372,0.6937,7.9524,12.4447,21.8773,8.8864,2.6913,4.6992,2.0461,20.9149,6.2744,4.2891,1.1856,2.8339,9.1432,14.432,3.549,4.8557,4.2277,1.7793,1.7454,4.4305,12.5872,3.188,2.7094,11.533,2.53,2.4985,2.347,14.0489,2.0353,3.5084,1.3218,16.4806,6.4748,8.3689,4.9498,12.1298,7.2645,7.2992,7.7759,4.1973,1.6655,4.5718,,,,,,,,,,,,,,,78,,,
-nG+MUN3T0AD011,2.7779,2.6248,,70-79y,AD,,,16.6371,4.0492,2.2823,1.9304,2.0844,edsd,AD,,M,,0.35678,4.1868,4.1145,0.79027,8.6328,1.2772,0.35653,2.8522,2.4307,40.3972,13.0176,183.289,3.7547,3.7602,1.4146,1.8528,2.9913,5.9975,1.951,3.2782,2.2971,5.6719,9.3594,32.9243,6.1563,2.0551,3.9922,1.4705,17.6986,5.1595,3.7779,1.2518,2.8575,6.6575,12.1057,2.8772,3.5905,2.8882,1.3122,1.4856,3.8742,9.2696,2.9555,2.2212,10.8398,2.0582,2.2422,2.0482,11.9053,1.7204,3.5651,1.1941,13.237,5.2827,7.9461,2.8738,9.1609,6.3478,6.9259,6.2387,3.5983,1.5317,4.6769,17,,AD,0.0742,,,,0.31503,3.4711,4.1658,0.77548,7.9973,1.5459,0.34565,3.036,2.7039,40.1162,12.5805,180.3954,3.611,3.8916,1.412,1.9209,3.3008,5.6104,1.891,3.6133,3.9041,4.785,9.3244,31.295,6.5107,2.084,4.1371,1.5356,16.1707,4.1649,3.4381,0.99248,2.4732,7.5529,12.0255,2.4842,3.0665,3.0679,1.4382,1.527,3.5351,8.9106,2.5893,2.1883,9.4006,2.1353,2.1786,1.8592,11.4599,1.8444,3.5016,1.0962,13.0855,5.2316,6.5474,3.329,9.6322,6.3966,6.6626,6.6229,3.3741,1.2979,4.4644,,,,,,,,,,,,,,,76,,,
-nG+MUN3T0AD012,2.1555,1.7023,,70-79y,AD,,,19.6895,4.8108,3.0262,2.363,1.651,edsd,AD,,M,,0.30065,4.1264,3.7471,0.69934,10.7998,1.3186,0.33893,2.8396,2.4451,48.7275,16.5436,222.6818,3.9212,4.671,1.3693,1.8648,2.9085,7.0153,1.679,2.9702,0.7613,6.2704,10.2401,18.7512,7.4887,2.1449,4.3943,1.4467,16.5498,6.9096,3.5958,1.1109,2.7991,6.4365,12.4801,3.3357,4.6831,3.3294,1.4549,1.6443,4.5149,11.2111,2.9679,2.17,11.1987,2.5132,2.2588,2.1117,11.781,2.2746,3.2132,1.1358,13.7535,5.2185,9.7432,3.38,11.7028,7.1991,7.3428,6.3555,3.7077,1.6046,5.0816,25,,AD,0.08231,,,,0.3163,3.4889,4.075,0.77299,9.8747,1.5789,0.35224,2.9264,2.5827,47.3816,16.0443,227.2499,4.2545,4.4695,1.5323,2.0242,3.2281,8.1193,1.7869,3.3957,0.62177,6.8332,11.8785,16.3604,7.7729,2.2026,4.1511,1.4764,16.4094,4.9397,3.7264,1.1378,2.3481,7.6551,13.8965,3.0269,4.5165,3.4145,1.589,1.627,4.301,11.0041,2.9357,2.3662,11.4327,2.2163,2.2393,2.2267,12.5267,1.9912,3.4519,1.1365,15.6352,5.3443,8.4684,4.1368,11.1686,7.7406,7.4154,7.0684,3.7483,1.5409,4.8366,,,,,,,,,,,,,,,75,,,
-nG+MUN3T0AD013,1.6874,1.8097,,+80y,AD,,,14.8758,3.9879,2.2808,1.8288,1.4675,edsd,AD,,F,,0.32243,3.9528,3.7654,0.73343,8.7709,1.2993,0.33161,2.267,2.4183,39.5488,12.9421,168.5586,3.2958,3.4858,1.4496,1.6397,3.1579,6.3596,1.6933,2.6672,0.72958,6.0413,10.0256,22.448,6.0353,2.1329,3.8452,1.4695,16.6851,6.8442,3.3897,1.0455,2.3519,5.9198,13.4424,2.97,3.6264,3.0791,1.403,1.3074,3.5833,9.0424,2.7421,2.0525,10.5983,1.7434,2.2778,1.9111,11.9228,1.3734,3.1938,1.1623,12.2939,4.6411,7.6319,3.3626,9.8716,6.8159,5.863,6.5658,3.2984,1.1524,3.9915,19,,AD,0.06777,,,,0.2853,3.6258,3.5405,0.74065,9.6351,1.4896,0.33122,2.4154,2.2721,39.8187,12.3447,169.9447,3.44,3.8648,1.4345,1.8105,3.0727,6.8854,1.7143,3.0275,0.77148,5.9253,10.5636,17.332,6.6091,1.8806,4.0204,1.4585,16.1205,4.739,3.3425,0.89149,2.4117,6.1655,13.5206,2.515,3.733,3.3586,1.2826,1.3494,3.3725,9.0836,2.7302,1.9405,9.4373,1.7456,1.9867,1.6813,11.4526,1.4643,3.0293,1.1388,12.579,4.5279,8.0882,3.7049,10.3689,6.6136,5.8808,6.6282,3.1447,1.2155,3.8112,,,,,,,,,,,,,,,80,,,
-nG+MUN3T0AD014,2.1836,1.9983,,70-79y,AD,,,14.8491,4.7314,2.241,2.3187,2.082,edsd,AD,,F,,0.36987,4.0549,4.3948,0.70712,8.7596,1.1857,0.34125,2.5517,2.517,40.055,12.4071,160.3455,4.0985,3.4644,1.3483,1.9841,2.9948,6.1687,1.7877,2.5154,1.0572,5.2497,9.1264,21.7437,6.4034,2.0075,4.2672,1.4698,16.0813,5.2048,3.3438,1.1962,2.4839,6.1079,10.9168,2.7195,3.5991,3.5102,1.3882,1.2994,4.1246,9.8551,2.8,2.4939,10.8728,2.4688,2.2573,2.5356,10.9797,2.2049,3.4578,1.2411,11.7064,4.5551,8.8565,2.8301,10.221,6.7279,5.4876,6.6647,3.8118,1.7596,4.1364,22,,AD,0.079,,,,0.34366,3.9387,3.8572,0.6519,8.7781,1.5568,0.35342,2.6385,2.6777,41.7928,12.0435,165.4738,4.013,3.8655,1.2855,1.725,3.2229,6.5409,1.7742,2.6384,0.98311,5.6178,9.5773,23.0839,7.3407,2.0035,4.2076,1.5127,16.2296,4.6429,3.2739,0.99108,2.404,6.6045,12.0496,2.4921,3.9017,2.8755,1.3346,1.2711,3.8792,10.311,2.618,2.3289,10.5173,2.2338,2.2067,2.2266,11.7584,1.758,3.4679,1.1259,12.5539,4.749,7.2411,3.4867,9.887,6.8552,5.1972,6.7398,3.0865,1.5085,3.9107,,,,,,,,,,,,,,,79,,,
-nG+MUN3T0AD015,2.2566,2.528,,70-79y,AD,,,16.4468,4.9321,2.8769,2.3411,1.9461,edsd,AD,,M,,0.38133,4.3334,4.0109,0.87834,8.7428,1.3465,0.36628,3.0047,2.8973,46.0575,14.2481,214.5005,3.7968,4.1353,1.602,1.7401,3.222,6.974,1.8466,3.1606,0.80833,5.8649,10.5959,19.1291,7.031,2.1045,4.4611,1.6204,17.4485,5.7175,3.4739,1.0879,1.9644,6.2187,13.2595,2.8994,4.5263,2.8826,1.2964,1.4552,4.877,11.088,3.2046,2.17,11.6878,1.9923,2.1929,2.2568,11.6814,1.7541,3.7739,1.1874,13.1303,4.5418,8.6986,3.3384,10.1601,6.9612,6.179,6.8856,2.9626,1.3766,4.3716,25,,AD,0.07275,,,,0.35128,3.7905,3.8199,0.85869,10.0061,1.6152,0.37156,3.3529,2.8989,45.649,13.9055,217.6363,3.4007,4.4276,1.5867,1.5533,3.459,7.1605,1.804,3.4678,1.2856,6.6393,10.5811,21.4729,8.478,2.0071,4.3567,1.6149,16.9728,5.4778,3.5305,1.0638,2.3815,6.8009,13.7151,2.7949,4.3442,2.6049,1.3798,1.5032,4.4639,10.5846,3.054,2.1284,10.2035,1.6959,2.2645,1.9403,11.7555,1.6089,3.4932,1.1395,13.5278,4.6871,7.2661,3.8065,9.2774,6.8383,6.1196,7.1959,2.8794,1.3013,4.2108,,,,,,,,,,,,,,,70,,,
-nG+MUN3T0AD016,1.7152,1.6037,,70-79y,AD,,,15.1483,4.0987,2.3483,2.0435,1.7158,edsd,AD,,F,,0.31044,4.0012,3.7476,0.65514,7.7201,1.2721,0.32483,2.9206,2.2608,43.0744,12.8359,171.0498,3.7777,4.2772,1.3591,1.7689,3.0976,6.8644,1.8386,2.4759,0.6269,5.79,9.7307,15.8686,6.9586,1.9827,4.146,1.5611,16.1258,5.047,3.3962,1.0197,2.4124,6.5846,11.3461,3.1491,4.0405,2.8007,1.2955,1.296,3.7294,9.7919,2.7706,2.1753,10.2318,2.003,2.108,2.1959,10.8807,1.6744,3.0497,1.1272,12.2218,5.1869,7.0634,2.8836,9.8944,6.5145,5.8176,6.9603,2.8594,1.326,4.1105,23,,AD,0.08069,,,,0.31102,3.5102,3.4882,0.59381,8.252,1.6455,0.34344,2.9617,2.4715,42.589,12.3419,176.7668,3.732,4.5577,1.2558,1.7233,3.3839,7.1564,1.8534,2.478,0.83647,5.6505,10.3262,18.6268,7.7439,2.1473,3.6314,1.5347,16.9207,4.0703,3.4649,0.99992,2.5231,7.7453,11.7179,2.4036,3.9002,2.9381,1.4724,1.3135,3.2259,9.4847,2.5377,2.2668,9.2833,1.7536,2.0888,1.9957,10.6894,1.3702,3.1506,1.0645,11.8307,5.0842,6.5027,3.6327,9.0337,6.0248,5.5578,7.2726,3.0989,1.3404,3.8928,,,,,,,,,,,,,,,71,,,
-nG+MUN3T0AD017,1.4022,1.6709,,60-69y,AD,,,15.4625,4.1373,2.2169,1.9665,1.3977,edsd,AD,,F,,0.33219,4.228,3.8564,0.64418,6.9027,1.3047,0.3093,2.8007,2.4484,38.7255,12.5769,175.5307,3.4995,3.8057,1.3669,1.7313,3.3346,5.759,1.7875,2.4995,0.63503,5.2195,7.9189,17.0265,6.3161,2.1712,4.1489,1.618,15.7862,4.722,3.3619,1.1334,2.3999,6.3289,9.3037,3.0388,3.4301,2.9794,1.3574,1.4423,3.552,8.6143,2.7433,2.1058,9.9456,2.2859,2.3113,2.0071,11.6122,1.7751,3.2448,1.0854,12.274,4.9238,7.5438,2.9742,9.7034,5.6296,5.9124,5.8461,3.4506,1.5286,4.0614,22,,AD,0.07092,,,,0.30452,4.2118,3.7146,0.7034,7.3584,1.5816,0.3202,2.7977,2.514,38.1916,12.2977,183.508,3.3172,4.4477,1.4698,1.8398,3.3794,6.2614,1.792,2.6927,0.57614,5.6379,9.0506,11.4556,7.0294,2.0669,4.1021,1.5936,15.5214,4.2365,3.2639,1.0387,2.465,7.0534,10.7111,2.817,3.7422,3.0284,1.459,1.4289,3.2263,8.8895,2.5732,1.9479,9.7185,2.1007,2.0922,1.8567,11.9216,1.7054,3.1049,1.0636,12.8344,4.7906,6.2754,3.7534,9.1446,5.4535,5.7414,6.5118,3.1653,1.3782,3.9027,,,,,,,,,,,,,,,61,,,
-nG+MUN3T0AD018,1.3193,2.3053,,70-79y,AD,,,16.6075,4.6638,2.7039,2.054,1.027,edsd,AD,,F,,0.40283,4.161,3.5727,0.70871,9.481,1.5874,0.34831,2.9878,2.6578,44.6311,13.6368,189.3294,3.7975,4.3129,1.4257,1.7992,3.839,6.7155,1.8113,2.4852,0.4663,6.1523,10.2375,11.3273,7.3043,2.5224,4.4422,1.5716,22.7685,5.6276,3.5057,1.0132,2.3548,6.5125,13.0458,2.8215,4.303,3.767,1.5583,1.3917,4.1477,10.3429,2.8332,1.9116,12.5231,2.1531,2.3886,1.9836,14.409,1.8398,3.7001,1.0478,15.124,4.9414,8.483,3.8647,10.4229,7.0975,6.2609,7.4087,4.504,1.3702,4.2383,20,,AD,0.07124,,,,0.3546,3.5309,3.328,0.69704,9.0115,1.7992,0.35921,3.1828,2.8217,44.5325,13.3741,195.6757,3.984,4.6187,1.3995,1.7945,4.3682,7.0434,1.6926,2.737,0.46074,6.044,10.8435,9.6558,7.7997,2.3512,4.1272,1.5505,23.4151,4.7022,3.3473,1.0974,2.6271,7.3488,13.5649,2.5289,4.1226,3.8531,1.577,1.4477,3.7758,10.3657,2.6135,2.0967,11.2743,2.2397,2.0923,1.9435,14.7374,1.8069,3.6935,1.0135,16.8157,5.328,8.3019,4.0534,10.303,6.8112,6.2942,7.4519,4.2226,1.2894,4.2133,,,,,,,,,,,,,,,73,,,
-nG+MUN3T0AD019,1.9443,1.9275,,+80y,AD,,,15.585,4.2206,2.5436,2.0453,1.8042,edsd,AD,,F,,0.38319,4.3325,4.2054,0.78155,8.65,1.3386,0.34598,3.0364,2.8277,41.3733,12.9331,190.1899,4.1893,4.0899,1.6039,1.9806,3.4387,6.5679,1.9924,3.0347,0.84535,6.005,10.1499,24.8942,6.5669,2.022,4.8068,1.6942,17.3434,5.8968,3.499,1.0851,2.2739,6.5523,13.5824,3.2317,4.1678,3.5374,1.3523,1.4302,4.3165,9.8269,3.2102,2.3751,10.5023,2.1802,2.0384,2.2876,12.5679,1.9516,3.4568,1.2348,14.7676,4.7331,8.3512,3.1314,9.9823,6.982,6.46,7.4025,3.6143,1.5275,4.4351,24,,AD,0.07738,,,,0.3427,4.0405,4.0004,0.62574,10.9804,1.5062,0.33121,3.2835,2.6987,41.3288,12.8512,192.7491,3.988,4.209,1.279,1.8245,3.7518,6.9239,2.0569,2.8602,1.0386,6.0598,11.0173,27.8543,7.3984,1.9513,4.3525,1.7502,16.3678,5.0966,3.5202,0.98315,2.4535,7.6309,13.5948,2.7691,3.9188,3.3441,1.4505,1.5018,3.7311,10.2125,2.7605,2.3854,9.6833,2.2011,2.1033,2.2995,11.96,2.0173,3.2375,1.1983,14.6636,4.8324,7.3278,3.8308,10.0073,6.9716,6.1754,6.9801,3.2585,1.597,4.2161,,,,,,,,,,,,,,,83,,,
-nG+MUN3T0AD020,2.3766,1.789,,+80y,AD,,,15.6312,4.5791,2.2139,1.89,2.2824,edsd,AD,,F,,0.29139,3.7076,3.937,0.67914,7.1444,1.1635,0.30935,2.3392,2.3089,36.9739,13.067,167.5406,3.2248,3.2594,1.3576,1.7142,2.9432,5.9039,1.6765,2.6793,0.80357,5.0487,9.1289,29.1422,5.592,1.9873,3.7621,1.4415,15.9414,4.8572,3.0109,1.2322,2.6539,5.8097,11.7615,2.7303,3.2456,3.138,1.3536,1.4433,3.5562,8.3648,2.7753,2.1462,10.2945,1.8776,2.1738,2.1995,13.3509,1.7841,3.1287,1.0246,13.2611,4.6898,7.5526,2.7951,7.8168,6.8865,5.747,6.2006,3.3639,1.3876,4.4513,29,,AD,0.0694,,,,0.27647,3.2902,3.6517,0.66068,8.1283,1.4346,0.32086,2.5548,2.3875,36.9984,12.8008,166.1759,3.2858,3.3844,1.3936,1.8686,3.2384,6.3795,1.6336,2.6811,1.0036,5.4073,9.2611,27.8355,6.11,1.8598,3.5388,1.4334,15.608,4.5748,3.019,1.2187,2.6036,6.3937,11.7067,2.6534,3.3919,3.5969,1.2803,1.4,3.2478,8.5796,2.4895,2.0759,8.8208,1.7598,1.9126,1.9904,12.356,1.6063,2.8946,0.98098,13.6011,4.5919,6.3966,3.3981,8.1187,6.4507,5.5835,6.5271,3.309,1.4283,4.1089,,,,,,,,,,,,,,,83,,,
-nG+MUN3T0AD021,2.6836,4.2231,,70-79y,AD,,,18.6209,4.483,2.6372,2.164,1.5899,edsd,AD,,M,,0.43868,5.2259,4.2958,0.90895,10.4475,1.5872,0.40196,3.3786,2.9654,45.6732,14.4955,230.6618,3.7851,4.4991,1.7739,2.0487,3.6149,7.3827,2.2869,3.3822,0.76028,6.9959,12.1164,25.9158,7.7195,2.5257,4.7503,2.0756,19.7497,6.6154,4.1394,1.3387,2.8998,7.7693,15.7806,3.6204,4.4752,3.6869,1.6557,1.6373,5.2247,12.4284,3.3253,2.1069,12.1018,2.1228,2.6346,2.1959,13.1288,2.1762,3.8441,1.4796,16.0232,5.8553,9.2919,3.7427,13.0103,7.8232,7.6655,8.716,4.2773,1.4352,5.0683,25,,AD,0.07709,,,,0.41779,4.3315,4.0639,0.90169,11.2125,1.8865,0.40583,3.5348,3.4614,45.176,14.1435,231.9229,4.0736,5.0809,1.8057,1.8098,4.0853,7.8783,2.1711,3.5878,0.86303,7.3695,12.4454,25.069,9.0195,2.3747,4.3481,2.0095,19.5505,6.2659,3.9951,1.1033,2.52,9.1937,15.9737,3.3699,4.5189,3.4744,1.6023,1.7082,4.5952,12.7939,3.1747,2.3018,9.8581,1.9439,2.4315,2.1162,13.3086,1.7417,3.9988,1.3886,16.485,5.6822,8.3976,4.5964,13.3909,6.8571,7.55,8.3288,3.5768,1.4047,4.8612,,,,,,,,,,,,,,,74,,,
-nG+MUN3T0AD022,1.9884,1.4711,,+80y,AD,,,15.8484,4.8339,2.4493,1.9135,2.0642,edsd,AD,,F,,0.29177,3.5812,3.5946,0.67972,8.8204,1.1725,0.33227,2.268,1.6876,39.5897,13.3701,167.656,3.4878,2.9868,1.3351,1.7199,2.6735,6.1889,1.6585,2.5551,0.91086,5.1707,9.9763,28.2043,6.1207,1.9667,3.7189,1.451,15.2067,5.0941,3.201,0.9521,2.0742,5.5572,11.9078,2.4495,3.7054,3.349,1.4357,1.3001,3.8485,9.5026,2.559,1.9715,9.9004,2.053,2.1636,1.8632,10.4429,1.6485,2.6509,1.1898,13.1403,4.6141,7.5637,2.7374,9.8198,6.1329,5.499,6.4791,3.6085,1.2955,3.9924,20,,AD,0.0732,,,,0.28582,3.2047,3.6048,0.73594,10.2834,1.3544,0.32814,2.4957,1.8786,39.2035,12.6156,172.9512,3.1549,3.5198,1.4214,1.6789,3.176,6.094,1.6842,2.9735,1.1642,5.205,9.8271,26.7509,6.6618,1.9127,3.772,1.4458,14.5359,4.5945,3.1955,1.0393,2.0731,6.4004,11.9269,2.1446,3.4528,3.4593,1.3934,1.3342,3.4211,9.5692,2.4601,2.1584,8.2496,1.902,2.0384,1.8828,10.075,1.594,2.6344,1.1354,13.2609,4.6205,7.3279,3.4317,9.6445,6.7881,5.3345,7.1664,3.3992,1.369,3.8353,,,,,,,,,,,,,,,84,,,
-nG+MUN3T0AD023,1.8553,1.7913,,70-79y,AD,,,15.5147,4.5478,2.2326,2.0725,1.3921,edsd,AD,,M,,0.32602,4.4443,3.8666,0.68262,8.1893,1.4234,0.31777,2.7354,2.3866,39.9639,13.4894,197.0866,3.7872,3.9611,1.3397,1.7469,3.5683,6.6309,1.912,2.4133,0.66018,5.9591,10.131,17.2753,7.0962,2.1484,4.626,1.7733,17.3049,5.2284,3.5504,1.243,2.5797,7.4178,12.0113,3.2095,4.0482,3.0265,1.5059,1.3368,4.3323,10.033,2.7039,2.0887,12.4163,2.3287,2.302,2.2753,11.5078,1.9869,3.0905,1.0338,14.416,5.3369,9.3403,3.3715,10.729,6.5275,6.2038,6.5384,3.5489,1.7914,4.2908,23,,AD,0.08216,,,,0.28581,3.9181,3.6926,0.61151,8.457,1.6345,0.31393,2.7469,2.4448,40.8899,12.3257,193.768,3.5399,4.1291,1.2135,1.7688,3.8335,6.417,1.8818,2.5334,0.85361,5.9237,10.4233,18.0568,7.2804,2.0833,4.4082,1.805,17.3549,4.0399,3.5021,1.0385,2.3302,7.8815,13.4058,2.818,3.6761,3.0337,1.4136,1.3497,3.9715,10.2035,2.5703,2.1981,10.8372,1.8438,2.2844,2.0861,10.5172,1.6147,3.0363,0.9634,14.511,5.1136,7.9324,3.9031,10.3852,6.5747,5.8471,6.7848,2.9482,1.3179,4.0572,,,,,,,,,,,,,,,76,,,
-nG+MUN3T0AD024,1.1324,1.2667,,+80y,AD,,,14.6471,3.5511,2.412,1.9315,1.2559,edsd,AD,,F,,0.28135,3.0857,3.0507,0.54267,7.6089,1.1268,0.28045,2.377,2.1042,38.1988,11.9422,152.4398,3.0922,3.438,1.1229,1.4795,2.3836,5.323,1.4475,2.3105,0.57737,4.9728,8.4953,10.6452,5.7349,1.8792,3.6506,1.1377,13.0473,4.7936,3.0423,0.92442,1.9918,4.7167,11.0512,2.5733,3.4132,2.5532,1.2242,1.2041,3.3716,8.0475,2.4644,1.6945,8.8018,1.6606,1.9358,1.8708,9.7042,1.514,2.6123,0.87415,10.4476,3.6742,6.8321,2.6655,7.9356,5.9566,5.3895,6.0238,2.8697,1.0805,3.802,19,,AD,0.0605,,,,0.24275,2.8713,2.9997,0.61379,8.4476,1.3371,0.28347,2.5026,2.1424,39.1093,11.491,159.2096,3.1166,3.4831,1.2138,1.4528,2.522,5.3857,1.4865,2.554,0.57092,4.9759,8.8693,9.3026,6.5576,1.7172,3.3637,1.136,12.9504,3.9723,2.8635,0.86368,1.8906,5.201,11.1185,1.9228,3.5804,2.6661,1.163,1.2103,3.1265,8.7364,2.2915,1.8207,7.7997,1.5512,1.7677,1.7635,9.8727,1.4659,2.6432,0.81868,10.0494,3.6495,5.7985,3.0642,8.4448,6.1989,5.3342,6.3709,2.4138,1.1191,3.6233,,,,,,,,,,,,,,,84,,,
-nG+MUN3T0AD025,1.6007,1.9337,,60-69y,AD,,,18.765,4.6047,2.6051,2.2165,1.435,edsd,AD,,F,,0.35031,3.7859,3.3318,0.69324,7.0779,1.3911,0.31248,3.2473,2.629,44.821,15.384,203.7548,3.2416,4.2309,1.3436,1.5681,2.9802,5.647,1.6831,2.5632,1.0276,5.1608,8.7208,21.0381,6.8327,2.1125,4.0558,1.3856,17.1232,4.9534,3.3836,1.009,2.2815,6.0421,10.1113,3.075,3.8006,2.5608,1.2284,1.5621,3.884,9.415,2.5647,1.9671,10.7959,2.2844,2.054,1.9524,11.489,2.0657,3.3873,0.9414,12.1885,4.5485,8.5754,3.125,10.3009,5.7493,6.6011,6.0514,3.3312,1.4729,4.7993,17,,AD,0.07429,,,,0.32688,3.614,3.4572,0.79012,8.9583,1.5475,0.33925,3.3215,2.8236,46.231,15.2445,218.9212,3.6942,4.7492,1.5487,1.5983,3.0947,6.8219,1.6682,3.0443,0.71242,6.071,9.9808,15.7404,7.7756,1.9912,3.9457,1.31,17.2701,4.2627,3.278,0.8248,2.1808,6.5869,11.8728,3.0051,3.9874,3.1906,1.2752,1.5661,3.7549,9.9124,2.6796,2.0359,9.1945,1.8168,1.9387,1.9357,12.4204,1.6462,3.4024,0.92285,12.5558,4.4287,7.0718,4.2872,10.3873,6.9483,6.7414,6.9971,3.2361,1.3584,4.6753,,,,,,,,,,,,,,,60,,,
-nG+MUN3T0AD026,2.1805,1.6825,,60-69y,AD,,,13.0928,4.4285,2.1798,1.9632,1.6755,edsd,AD,,F,,0.3308,4.4638,3.7407,0.56468,8.1952,1.3016,0.32352,2.6644,2.296,40.6259,10.9588,147.6763,3.5908,3.8183,1.1673,1.7433,3.0987,5.8912,1.9357,2.2897,1.0232,5.0071,9.4124,29.3432,6.717,2.0203,4.3327,1.7134,18.0128,4.9424,3.49,1.0798,2.7089,7.0089,12.3,2.4214,3.5079,2.8302,1.259,1.1515,3.7825,9.4536,2.5184,2.0725,12.4954,1.9303,2.0985,2.0047,11.8824,1.4413,3.2691,1.1565,14.2374,5.2331,7.5044,2.8725,10.519,5.8138,5.4855,6.042,3.4848,1.153,3.8337,22,,AD,0.06536,,,,0.30692,3.4942,3.5446,0.60361,10.0108,1.5163,0.33652,2.739,2.4093,40.7245,10.3602,155.8267,4.0779,4.3518,1.2747,1.7125,3.2527,6.2909,1.9131,2.5906,0.61913,5.5955,10.2323,18.4515,7.6501,1.9334,4.12,1.6483,18.2283,4.9339,3.4901,1.0474,2.5617,7.7702,13.7024,2.1221,3.7109,3.0249,1.3481,1.1754,3.7856,10.4549,2.5148,2.0965,10.1175,2.0855,2.0404,1.9409,12.4787,1.6213,3.1697,1.1318,14.0155,5.514,8.0238,3.9037,9.7527,6.3729,5.7145,6.7502,3.1843,1.2975,3.6257,,,,,,,,,,,,,,,68,,,
-nG+MUN3T0HC001,2.3977,2.3118,,70-79y,CN,,,16.0602,4.9098,2.5664,2.2046,1.9235,edsd,CN,,M,,0.42069,5.3369,4.378,0.96084,9.3309,1.6718,0.39923,3.613,2.6065,46.4122,12.6339,191.9704,4.4266,4.8414,1.8671,1.9114,3.5142,8.1165,2.1371,3.5194,0.91392,7.2521,11.2922,27.473,9.1975,2.4938,5.3529,1.9912,19.6225,6.7847,4.2163,1.3268,2.8608,8.3609,13.6718,3.9065,5.0414,4.0702,1.4956,1.4061,4.7202,10.9168,3.6922,2.5458,10.8701,2.7641,2.6361,2.4041,13.3634,2.5338,3.5929,1.3937,16.6941,6.3158,9.7304,3.6816,10.7229,7.5151,6.4111,8.1057,3.6743,1.6751,4.6013,29,,,0.08331,,,,0.40497,4.8125,4.0993,0.92387,10.9234,2.0347,0.41012,3.6973,2.8766,46.6868,12.6077,197.4064,4.1699,4.8737,1.831,1.9749,3.9295,8.188,2.1121,3.8127,0.83194,6.8062,11.5841,23.7819,9.7373,2.519,5.342,1.8545,19.4832,5.1891,4.1413,0.95377,2.516,9.1858,14.3478,3.1298,5.0403,4.0185,1.6808,1.4414,4.3882,11.0276,3.4273,2.3952,10.9608,2.7669,2.6885,2.1916,13.884,2.2523,3.5593,1.2903,16.4027,6.6401,8.6232,4.6521,11.3914,7.9266,6.6984,8.2934,3.5375,1.6855,4.3818,,,,,,,,,,,,,,,71,,,
-nG+MUN3T0HC002,2.0765,1.9177,,70-79y,CN,,,18.8525,4.9061,2.8658,2.2865,1.7484,edsd,CN,,M,,0.40152,4.9002,4.2762,0.89047,9.3961,1.5468,0.3742,2.8104,3.415,49.2328,14.573,201.5569,4.0324,3.6543,1.7489,1.7176,3.1651,7.6878,2.0546,3.3209,0.80271,6.0712,12.26,20.9017,7.1023,2.4185,5.5882,1.7924,19.8562,5.7762,3.9386,1.2117,2.5586,7.27,15.5946,2.9691,4.214,3.2974,1.4181,1.6107,4.6604,10.4413,3.4016,2.4961,11.8231,2.5125,2.6528,2.3871,13.0042,2.0741,4.0915,1.3015,14.4107,5.4055,9.639,3.2341,10.7687,7.7485,7.5452,7.9158,3.6533,1.6025,4.9084,28,,,0.0731,,,,0.40048,4.7629,3.9925,0.90347,10.3955,1.8242,0.39039,2.9493,3.4389,49.0386,14.2442,201.885,4.1322,3.9661,1.8231,1.7464,3.5109,8.055,2.1145,3.6067,0.78974,6.4317,12.2909,21.7979,8.0746,2.2805,5.4314,1.8857,20.8868,5.0217,3.954,1.1664,2.6953,8.0025,15.5843,2.5344,4.222,3.1677,1.5207,1.6485,4.0406,10.263,3.2669,2.5105,10.9354,2.2983,2.659,2.123,12.9511,1.8695,3.8535,1.2912,14.3386,5.5314,7.9432,3.8457,10.5653,6.9127,7.0978,8.2166,3.4028,1.6192,4.6514,,,,,,,,,,,,,,,76,,,
-nG+MUN3T0HC003,1.611,1.69,,70-79y,CN,,,17.5517,5.4473,2.6106,2.2973,1.6254,edsd,CN,,M,,0.34567,4.0703,4.27,0.77098,8.4863,1.3625,0.33999,2.9703,2.2448,49.6968,15.7577,200.8307,3.9788,3.6686,1.5748,1.9555,3.3072,6.9429,1.8979,2.8797,0.60747,5.9868,10.6118,16.8971,6.8854,2.2165,4.097,1.6073,16.7384,5.1144,3.7108,1.0588,2.6154,6.1917,13.5247,2.9863,3.9262,2.8476,1.5716,1.4785,4.3793,10.1935,3.1551,2.2121,10.6313,2.3133,2.3903,2.085,10.5878,1.8047,3.0408,1.2271,14.0074,5.1386,9.423,2.6919,10.2162,7.5901,6.3735,7.2301,3.3446,1.3736,4.4975,29,,,0.07519,,,,0.32138,3.4882,3.8434,0.7897,9.6839,1.6267,0.35883,3.0369,2.4036,49.2345,15.5951,206.845,3.9933,4.0791,1.6669,1.8546,3.4152,7.0986,1.9206,3.101,0.65389,6.9008,10.6808,15.5073,7.35,2.1197,3.9888,1.606,15.809,5.4614,3.6809,1.1491,2.8162,7.1452,13.4782,3.2278,3.9741,3.4747,1.5768,1.5987,4.0913,10.4165,2.8675,2.2363,9.7499,2.1136,2.3006,1.8061,12.0222,1.7494,3.0784,1.1656,13.9154,5.0974,7.8176,3.7684,9.7846,7.1356,6.2583,7.3078,3.3861,1.3323,4.276,,,,,,,,,,,,,,,72,,,
-nG+MUN3T0HC004,0.73794,1.2959,,50-59y,CN,,,15.0725,3.7562,2.0458,1.7907,0.85575,edsd,CN,,F,,0.33326,3.5832,3.2021,0.71998,7.8663,1.3481,0.31621,2.6492,2.4063,36.591,12.7314,178.0647,3.0948,3.7902,1.4737,1.4358,2.9418,5.9514,1.7823,2.5595,0.28087,5.3117,9.4018,5.8647,5.7436,1.9148,3.9116,1.5077,15.3838,4.9577,3.4483,0.8659,2.3125,5.498,11.7304,2.7019,3.3611,2.4669,1.1918,1.2745,3.6058,8.5726,2.7332,1.7371,10.1847,1.7981,1.9682,1.7416,10.9442,1.4435,3.2175,0.9505,12.7407,4.369,7.6587,2.9298,8.1117,5.8152,6.3666,6.2356,3.1484,1.0864,4.0475,28,,,0.05859,,,,0.31981,3.0373,2.9892,0.73701,8.0657,1.4998,0.3211,2.79,2.5083,37.2794,12.4457,184.6449,3.3075,3.9193,1.4607,1.5684,3.0046,6.0677,1.7561,2.735,0.39474,5.1369,9.3017,4.9304,6.263,1.8169,3.9639,1.4825,14.9524,4.3988,3.2523,0.95841,2.2753,6.1495,11.8123,2.2139,3.2876,3.1657,1.2038,1.2984,3.3051,8.8201,2.5695,1.7383,9.0295,1.8718,1.9493,1.6139,10.3928,1.6023,3.1583,0.91742,12.7188,4.385,7.2679,3.5536,8.5293,6.1046,6.1763,6.3405,2.9813,1.182,3.9009,,,,,,,,,,,,,,,57,,,
-nG+MUN3T0HC005,1.1649,2.2211,,60-69y,CN,,,18.1482,4.3824,2.2563,2.0943,1.1773,edsd,CN,,F,,0.38121,3.7698,3.9264,0.70447,8.2665,1.3872,0.31937,2.4513,2.7351,43.4035,14.4078,202.5798,3.8207,3.4998,1.3173,1.8755,3.0323,6.2913,1.8575,2.701,0.39909,5.4153,9.7692,9.8195,6.4933,2.1518,4.2049,1.5476,17.1511,5.2818,3.6084,1.0193,2.2297,5.7994,11.6377,2.7622,3.7238,3.275,1.4643,1.6363,3.7437,8.7907,2.7082,2.0617,10.7559,2.4295,2.3422,1.9482,11.4748,2.1903,3.4066,1.0239,13.3589,4.5881,8.5511,2.9693,8.9922,6.0908,6.924,6.051,3.709,1.6248,4.4735,29,,,0.07582,,,,0.34792,3.6203,3.5631,0.71676,8.6472,1.6303,0.33062,2.6469,2.8412,43.3208,14.0423,202.9975,3.7405,4.0174,1.381,1.7762,3.2989,6.55,1.8396,2.9139,0.42811,5.1508,9.5706,10.4673,6.9996,2.0495,4.075,1.4615,15.873,4.4185,3.4487,1.072,2.4596,6.3706,11.541,2.1534,3.6132,3.1011,1.4548,1.5667,3.3332,9.0274,2.5847,2.0016,9.4862,2.0963,2.15,1.9069,11.2152,1.8261,3.2456,0.97366,14.7613,4.612,7.9694,3.8696,9.1039,6.3734,6.6407,6.6937,3.1442,1.4725,4.2391,,,,,,,,,,,,,,,69,,,
-nG+MUN3T0HC006,1.3555,1.357,,60-69y,CN,,,17.9907,5.0696,2.584,2.1802,1.1145,edsd,CN,,F,,0.38915,4.5078,4.0842,0.80224,9.0157,1.5847,0.35063,2.7956,3.0353,44.4463,14.9131,204.3795,4.4545,3.665,1.5192,2.0088,3.4446,6.1482,1.969,3.1275,0.61212,5.9589,9.9612,13.1846,6.6398,2.2613,4.7252,1.7735,18.1383,6.1263,3.9297,1.2013,2.7088,6.8728,13.7917,2.9054,3.8328,3.6904,1.318,1.4683,4.0042,9.3746,3.1128,2.1923,11.8534,2.141,2.4201,2.1973,13.1281,1.7462,3.4715,1.1614,14.7358,5.3501,8.0251,3.0401,11.0671,7.1166,7.1954,6.8396,3.6828,1.4584,4.7205,29,,,0.08036,,,,0.36462,4.1867,3.7764,0.76589,8.9774,1.7717,0.35868,2.8937,3.2366,44.6824,14.3293,205.5463,3.8306,4.5008,1.5659,1.8274,3.4663,6.5573,1.9435,3.2479,0.5807,5.7781,10.3559,11.6509,7.5728,2.0604,4.6942,1.7161,18.477,4.796,3.8288,0.9992,2.4368,7.4682,13.9152,2.3021,4.1069,3.2278,1.2881,1.5049,3.5864,10.1232,2.8557,2.1037,9.8217,2.1826,2.3449,1.9957,12.7629,1.8645,3.4167,1.1297,15.7621,5.7842,7.4809,3.9039,10.5337,7.3304,7.0385,7.0666,3.0346,1.4467,4.5094,,,,,,,,,,,,,,,65,,,
-nG+MUN3T0HC007,1.1133,2.0486,,70-79y,CN,,,17.4445,4.8325,3.0156,2.3034,1.0466,edsd,CN,,M,,0.37252,4.207,3.8279,0.90859,8.4609,1.4051,0.34201,3.0013,2.7543,47.8739,15.0749,194.5308,3.725,3.9855,1.7519,1.8755,3.3071,7.7764,2.0066,3.1268,0.40243,6.6613,11.0843,9.9204,7.1042,2.1013,4.1852,1.7445,17.0128,6.4712,3.7771,0.96247,2.297,6.317,12.6961,3.0433,4.4864,3.1919,1.425,1.4622,4.0267,9.915,3.2922,2.1163,11.0887,2.3211,2.3015,2.0831,12.3321,2.0751,3.3731,1.1058,14.357,4.7192,8.8259,3.3476,10.075,6.7122,6.8969,7.4425,3.9711,1.55,4.6063,28,,,0.0721,,,,0.36818,3.7785,3.8023,0.90904,9.7824,1.6852,0.37311,3.1472,2.8241,47.9786,14.4927,196.9166,3.3154,4.214,1.7709,1.9524,3.5052,7.4447,2.0282,3.3175,0.41122,6.6846,11.1527,7.7351,8.111,2.0486,4.1733,1.7099,16.7811,5.532,3.7438,1.1914,2.4234,7.2632,13.4412,2.7605,4.1216,3.2014,1.4263,1.4513,3.9344,10.1621,3.1435,2.1219,10.1239,1.8769,2.2487,1.9514,11.2796,1.6811,3.3923,1.0876,15.5874,4.8385,7.6528,3.9385,10.0717,7.1756,6.6481,7.8905,3.3855,1.2969,4.3799,,,,,,,,,,,,,,,70,,,
-nG+MUN3T0HC008,1.2013,2.5036,,50-59y,CN,,,23.9017,5.2487,3.0136,2.3239,1.2229,edsd,CN,,M,,0.49177,5.2181,4.5521,1.0531,10.3745,1.7468,0.44279,3.5228,3.1856,52.9065,20.1605,310.1523,4.7655,5.8995,1.9877,1.9869,3.7443,8.6021,2.1865,3.6979,0.43567,7.5011,13.2035,13.7839,8.1756,2.5375,5.3298,2.0987,19.6175,7.5661,4.2546,1.5042,3.189,7.9071,15.3056,4.0609,4.5792,3.1054,1.5605,2.1712,4.5776,12.2753,3.4088,2.6615,14.9649,3.0561,2.9932,2.6958,15.5418,2.9278,3.9109,1.3147,16.8733,6.337,9.547,4.3774,11.7601,8.1752,9.3331,8.2868,3.7874,2.2485,6.1972,29,,,0.09152,,,,0.46267,4.594,4.4733,1.0307,11.3972,1.9376,0.4242,3.7472,3.4027,52.7122,20.511,317.1721,4.5053,6.2507,2.0892,2.2203,3.89,8.9677,2.207,3.8622,0.50539,7.6633,14.3893,13.9526,9.0811,2.4832,5.2704,1.9984,21.4524,5.696,4.1593,1.1411,2.8182,8.5891,16.3772,3.5042,4.5392,3.762,1.5701,2.2761,4.3933,12.3452,3.1754,2.5205,13.1736,2.6939,2.815,2.3986,14.1083,2.3324,3.9504,1.2078,15.7713,6.0302,9.415,4.9509,11.6447,8.2907,8.9716,8.8052,4.1855,1.7937,5.937,,,,,,,,,,,,,,,59,,,
-nG+MUN3T0HC009,1.1563,1.8593,,70-79y,CN,,,19.3838,4.8763,2.7915,2.2072,1.2228,edsd,CN,,M,,0.42411,4.3216,3.8591,0.82365,8.8291,1.4767,0.36763,3.0768,3.1133,47.977,16.5995,206.1839,3.6528,4.114,1.6736,1.9199,3.2293,7.0969,2.0366,3.2016,0.50741,5.7929,10.4273,12.2702,7.1502,2.2861,4.7633,1.7025,17.1605,5.7717,3.8401,1.1678,2.8534,6.3666,13.5201,3.1758,4.0925,3.463,1.4658,1.6208,3.8657,9.4623,3.281,2.1522,11.3727,1.9191,2.4391,2.1113,13.1986,1.6495,3.5591,1.1393,13.2355,4.7741,8.2673,3.1916,9.5963,7.35,7.3633,7.3648,3.7391,1.3716,5.0074,28,,,0.07365,,,,0.39802,3.8128,3.5971,0.82078,8.765,1.6031,0.38007,3.2888,3.3929,48.2352,15.7454,208.496,3.3605,4.2814,1.6902,1.8365,3.1235,7.3682,1.8574,3.3798,0.56116,6.408,11.1146,11.9217,8.01,2.1833,4.5303,1.6411,17.1033,4.5779,3.3141,1.1842,2.9391,6.9914,13.6445,2.8192,4.2499,3.4434,1.4922,1.6221,3.7024,9.9434,3.0239,2.1494,9.4895,2.0859,2.16,1.9139,13.7355,1.7032,3.5869,1.0766,13.927,4.9767,7.3907,3.9958,9.3204,6.7324,7.1738,7.3755,3.4757,1.3663,4.6624,,,,,,,,,,,,,,,71,,,
-nG+MUN3T0HC010,2.088,2.1591,,60-69y,CN,,,18.9937,5.343,2.6336,2.1858,1.7044,edsd,CN,,M,,0.3989,4.3947,4.1081,0.78419,9.6959,1.4512,0.36965,3.4112,2.7933,48.3435,17.0418,234.785,4.0122,4.6505,1.5808,1.9652,3.285,7.0253,1.9173,3.2985,1.0427,6.6433,11.1512,18.5819,7.7312,2.1445,4.3222,1.711,18.3061,6.6693,3.6686,0.99809,2.3513,7.2102,13.8644,3.8397,4.5731,3.0816,1.4648,1.6336,4.1789,10.6984,3.1822,2.0499,11.1207,2.1848,2.2905,2.1385,11.9992,1.8409,4.2961,1.245,13.7678,5.4896,8.7829,3.879,10.7538,7.1293,7.0742,6.5995,3.6927,1.3603,5.1795,29,,,0.08816,,,,0.38425,3.6558,3.9866,0.81126,10.7906,1.6552,0.39006,3.5698,3.0522,48.4678,16.5091,242.2161,4.0791,5.0822,1.6799,2.1351,3.6502,7.0693,1.9635,3.5596,0.95945,7.2028,10.7133,17.223,8.2567,2.1437,4.4437,1.7698,17.0565,5.8092,3.5804,0.91818,2.4555,7.8836,14.1578,3.6971,4.6967,3.4493,1.4141,1.662,3.9944,11.0205,2.949,2.238,9.7797,2.0698,2.2686,2.084,11.9364,1.9494,4.1819,1.2021,14.5716,5.1412,7.4591,4.5039,10.0633,8.2077,6.9894,7.457,3.4516,1.5785,4.9232,,,,,,,,,,,,,,,69,,,
-nG+MUN3T0HC011,1.3969,1.7585,,70-79y,CN,,,15.3895,4.028,2.1959,2.105,1.2558,edsd,CN,,F,,0.34349,3.7709,2.9999,0.68249,8.0098,1.497,0.30771,2.81,2.5252,38.2802,11.7189,161.0911,3.1551,3.6052,1.3525,1.5735,3.2343,6.0089,1.8172,2.6064,0.41122,5.5156,9.0178,12.2916,6.489,2.0638,3.9856,1.4987,17.3371,5.6877,3.7063,0.9992,2.2646,5.7266,11.7817,2.7125,3.817,2.9323,1.2037,1.1355,3.5594,9.3807,2.5995,1.7543,10.9703,1.6428,2.1226,1.7473,11.9346,1.2898,2.6895,0.99695,13.3969,4.5392,7.7181,2.8507,9.5507,6.1545,5.8428,6.1066,3.2565,1.0059,3.8378,29,,,0.06809,,,,0.31844,3.3809,2.9807,0.68021,8.8075,1.5354,0.31325,2.8323,2.6088,38.4189,11.3847,163.5324,3.1265,4.1376,1.3767,1.4564,3.3155,5.9951,1.7359,2.7875,0.43641,5.4517,9.4841,11.8682,7.2742,1.8762,3.9268,1.5342,17.359,4.3234,3.2755,0.8586,2.2044,6.4407,12.4177,2.2862,3.7103,2.7412,1.211,1.1362,3.3272,9.2206,2.4086,1.8548,9.6822,1.7387,1.9487,1.6058,11.8063,1.4708,2.7133,0.97115,13.7606,4.408,6.8403,3.6041,9.0949,6.3846,5.7713,6.3213,2.9951,1.1316,3.6565,,,,,,,,,,,,,,,77,,,
-nG+MUN3T0HC012,0.92769,1.602,,60-69y,CN,,,17.0213,4.1751,2.6155,2.2093,1.399,edsd,CN,,F,,0.40136,5.1017,3.723,0.80659,9.2595,1.5373,0.36122,3.4042,2.9916,47.2955,14.5006,211.7263,3.9707,4.9263,1.6001,1.8215,3.2514,7.3983,2.0545,2.9924,0.41025,6.0308,10.8081,12.3222,7.7624,2.5026,4.9602,1.94,18.6858,5.8987,3.8823,1.2417,2.8748,7.5175,13.8302,3.1802,4.3736,2.8141,1.5784,1.4918,3.9295,10.7974,3.2203,2.065,11.28,2.1756,2.7168,2.311,12.3724,1.8337,3.5786,1.1464,14.0655,6.4636,8.526,3.4341,10.5715,7.3153,7.0292,7.2036,3.62,1.6822,4.6727,30,,,0.08194,,,,0.36667,4.1239,3.5168,0.8032,9.5238,1.717,0.35908,3.2456,3.1599,47.4525,14.4586,213.4782,3.4921,4.9356,1.6149,1.9501,3.3523,7.7197,2.1532,3.1986,0.44021,6.8111,10.6656,10.9352,8.3993,2.2305,4.9537,1.8843,17.8634,5.0555,3.9101,1.137,3.0045,8.0346,13.708,3.1079,4.4969,3.5157,1.5253,1.5389,3.5903,10.2759,2.9314,1.9027,10.0404,2.0085,2.3009,1.8192,12.7044,1.823,3.5256,1.1772,13.5861,5.7421,7.9481,4.4602,10.3038,7.2082,6.8949,7.3982,3.6254,1.3284,4.4484,,,,,,,,,,,,,,,60,,,
-nG+MUN3T0HC013,0.89572,1.1991,,70-79y,CN,,,15.1679,3.6008,2.0198,1.7855,0.86119,edsd,CN,,F,,0.39818,3.5518,3.5396,0.74553,8.1748,1.2826,0.32629,2.7326,2.5817,36.3908,11.1161,158.4892,3.612,4.1721,1.4514,1.7712,2.9122,6.3012,1.7244,2.6656,0.46899,5.1469,9.3124,11.2279,6.1704,1.9754,4.0007,1.4588,15.7201,5.3288,3.3944,0.88803,2.1671,5.7877,11.4312,2.6527,3.5091,3.1727,1.1974,1.1916,3.5421,8.6526,2.821,1.7311,10.761,1.7698,2.141,1.887,10.3589,1.486,3.5409,0.96288,13.2426,4.3968,7.5649,3.0422,8.8459,6.4235,5.8867,6.3663,3.2663,1.2591,4.0213,29,,,0.06336,,,,0.35701,2.8803,3.3243,0.74204,9.1822,1.5096,0.34147,2.6629,2.8103,36.5847,10.7408,160.604,3.2413,3.8996,1.4787,1.7332,2.9616,6.1785,1.8028,2.8624,0.37644,5.3569,9.308,8.3108,6.9363,1.9003,3.8303,1.4626,16.0591,4.0341,3.3378,0.92088,2.2603,6.4539,11.8959,2.3741,3.7099,3.0137,1.2823,1.2084,3.4327,8.9542,2.5985,1.6855,9.0756,1.5787,2.0272,1.7498,11.1104,1.5024,3.3738,0.94846,12.6635,4.5699,6.7096,3.7021,8.8691,6.5049,5.8359,6.6545,3.0771,1.2267,3.8011,,,,,,,,,,,,,,,71,,,
-nG+MUN3T0HC014,1.3714,1.9167,,50-59y,CN,,,16.2224,4.0636,2.431,1.9338,1.2594,edsd,CN,,F,,0.42851,4.8226,3.9136,0.84704,9.8088,1.4379,0.37054,3.319,3.0593,43.8844,14.1874,213.7681,4.248,4.6638,1.5896,1.7836,3.3434,7.5396,1.9629,3.1642,0.41883,6.9345,11.5298,18.3889,7.4898,2.2946,4.7032,1.849,18.7872,6.1406,3.9265,1.0421,2.3727,6.6326,14.0717,3.555,4.3414,3.367,1.5132,1.5028,4.1069,10.4622,3.1441,2.3024,11.9748,2.3381,2.3237,2.341,13.815,2.0675,3.7474,1.2462,14.8169,5.1563,8.1149,3.269,11.3134,7.1021,7.01,7.1147,3.9856,1.7661,4.609,30,,,0.07095,,,,0.37753,4.3017,3.8856,0.82696,10.2074,1.6275,0.37608,3.4774,3.0724,44.341,13.5409,213.1412,4.0022,5.1395,1.676,1.9062,3.7591,7.5073,1.9965,3.1369,0.47873,6.497,11.6844,14.947,8.4587,2.1802,4.4148,1.8225,19.0835,4.6935,3.6617,0.95943,2.3546,7.8791,14.1806,3.0754,4.2927,3.5411,1.5453,1.5366,3.7873,10.7288,2.9328,2.1876,10.3188,2.2879,2.3008,1.957,12.9676,1.9096,3.6679,1.1449,13.4679,5.308,8.0531,4.1277,10.2725,7.1103,6.8741,7.7904,3.6728,1.4892,4.3747,,,,,,,,,,,,,,,59,,,
-nG+MUN3T0HC015,1.6975,2.1377,,60-69y,CN,,,20.7412,4.2965,2.5852,2.2105,1.4226,edsd,CN,,M,,0.43967,5.3101,4.6927,0.94919,10.7431,1.6783,0.40561,3.1443,3.0987,47.4532,17.5254,252.5392,4.622,5.1473,1.8609,2.1657,4.015,8.2176,2.281,3.3746,0.47243,7.3809,13.1401,14.8496,7.7831,2.747,5.1606,2.0169,21.2525,7.3017,4.2112,1.1088,2.6688,8.6131,16.9706,3.65,4.7029,3.9462,1.798,1.7342,4.9629,12.0702,3.5065,2.5935,14.2092,2.5855,2.6925,2.5011,15.7442,2.2623,3.9769,1.3112,17.7633,6.4053,9.2497,3.287,11.8275,8.3054,8.0582,9.1485,4.8047,1.884,5.2544,30,,,0.08694,,,,0.42297,4.2614,4.7343,0.96258,11.4851,2.0372,0.41572,3.3212,3.2182,46.4131,17.1776,256.9963,4.4059,4.9915,1.9505,2.3227,4.5967,8.1661,2.4681,3.6412,0.60679,7.5426,13.5408,13.3892,8.2946,2.5671,5.0183,2.1403,20.5258,6.0093,4.373,1.0121,2.7904,9.7874,17.4995,3.2751,4.6993,3.968,1.7342,1.73,4.4745,11.9149,3.1658,2.6001,12.4968,2.415,2.5524,2.3015,16.6497,2.0739,3.9542,1.359,17.7623,6.262,9.1267,4.3351,11.7597,8.4401,7.8888,9.1321,4.0751,1.7121,5.0187,,,,,,,,,,,,,,,64,,,
-nG+MUN3T0HC016,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+MUN3T0HC017,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+MUN3T0HC018,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+MUN3T0HC019,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+MUN3T0HC020,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS1T5AD001,2.5027,2.4064,,70-79y,AD,,,16.4358,4.7015,2.4794,2.1563,2.486,edsd,AD,,F,,0.35524,4.6571,4.5286,0.64941,8.1307,1.3311,0.33708,3.1114,2.7342,45.4416,13.7952,184.7551,4.399,4.5617,1.2181,1.9733,3.3587,6.2417,2.0723,2.7707,2.3176,5.8456,9.0324,33.7795,6.9412,2.1766,4.5531,1.6768,16.2445,5.8283,3.6734,1.2004,2.5269,6.8762,11.0624,3.6103,4.095,3.5537,1.328,1.3795,4.4056,10.6859,2.9537,2.9307,11.5548,2.2995,2.3013,2.749,11.3869,1.9957,3.1882,1.2912,13.8474,5.4783,7.7548,3.7345,10.3114,6.2291,6.5612,6.7166,3.8213,1.8672,4.5977,19,,AD,0.07945,,,,0.33104,4.6685,4.1956,0.76311,10.0514,1.647,0.35654,3.2858,2.7565,43.2544,12.6576,197.9988,4.3301,4.7579,1.4298,1.8085,3.4653,6.6325,2.1665,3.1337,1.6972,6.2204,10.3783,23.4086,8.0404,2.1543,4.88,1.8653,17.153,5.1453,3.7817,1.1946,2.5934,7.9289,13.2348,2.8883,4.0742,3.4978,1.397,1.4017,4.1182,11.4994,2.8424,2.7182,9.638,2.2661,2.3948,2.2659,11.6466,1.9109,3.277,1.2824,14.1835,5.0751,7.6425,4.0545,11.0324,7.0378,6.3537,7.2461,3.4632,1.6167,4.3203,,,,,,,,,,,,,,,72,,,
-nG+ROS1T5AD002,2.3907,2.0275,,70-79y,AD,,,17.3904,4.791,2.6029,2.0012,1.764,edsd,AD,,M,,0.37947,4.7538,4.221,0.76239,8.523,1.4906,0.37984,2.5104,2.5079,43.9796,14.2885,202.5402,3.9903,3.929,1.5256,1.8315,3.7458,6.4178,2.0388,2.822,1.3141,5.4306,10.5122,22.8793,6.5675,2.1791,4.7902,1.7966,19.4868,5.5142,3.8465,1.3627,2.5871,7.1449,12.5919,3.015,3.724,2.9683,1.3288,1.4679,4.6253,10.8822,3.0441,2.4826,11.6001,2.544,2.3097,2.2002,13.1256,1.7496,3.4382,1.2506,14.3556,5.0555,8.4672,2.8313,11.5286,6.0978,6.567,7.6262,3.4155,1.4657,4.6879,26,,AD,0.08193,,,,0.35828,4.0183,4.1616,0.80167,9.7211,1.7002,0.38422,2.76,2.6583,44.5195,14.3129,207.3131,3.7483,4.738,1.5457,1.8778,3.8239,6.5734,2.0343,3.0892,1.0113,6.2901,10.5644,20.9617,7.1607,2.0666,4.121,1.867,18.3215,5.1518,3.6637,1.1437,2.7155,8.2489,13.7507,2.5973,4.0484,2.9351,1.5482,1.5007,4.0387,10.9995,2.7339,2.3157,10.5416,2.3392,2.3145,1.9335,12.809,1.8213,3.4118,1.2567,15.2248,5.6763,8.0486,4.2109,9.3569,6.9792,6.3608,7.2818,3.4556,1.3532,4.5209,,,,,,,,,,,,,,,76,,,
-nG+ROS1T5AD003,1.8912,2.101,,70-79y,AD,,,16.484,4.024,2.4515,1.9053,1.6692,edsd,AD,,F,,0.30723,3.5615,3.5909,0.51831,8.4396,1.2471,0.31056,2.3661,2.2964,43.9793,14.3408,195.881,3.7363,3.0535,0.9014,1.7171,2.7854,5.6812,1.4887,2.3976,2.2042,5.0373,8.1703,26.5933,5.6364,1.892,3.8523,1.3034,17.2683,4.7415,3.3108,1.1189,2.5823,5.7272,11.5067,2.7148,3.5271,2.8929,1.0652,1.5011,3.3549,8.2201,2.3682,2.0925,10.8251,2.2497,2.2377,2.0265,12.0214,1.6968,3.0355,1.0146,14.0173,4.6555,7.9196,2.7485,8.7339,6.0437,5.9736,4.5637,3.1222,1.4395,4.3385,26,,AD,0.07651,,,,0.25479,3.3465,3.0838,0.51139,8.7539,1.4618,0.29135,2.3802,2.2612,43.9449,13.7873,193.1734,3.5441,3.6372,0.89669,1.5613,2.8831,5.7579,1.4739,2.6136,2.6248,4.9028,8.6221,17.8408,6.3269,1.8498,4.0806,1.3076,17.2115,4.3615,3.0201,0.89391,2.1641,6.112,11.6544,2.1548,3.4317,2.708,1.1772,1.4591,3.2502,8.2959,2.3121,1.9343,8.8486,1.9557,1.9505,1.5795,12.1904,1.4979,2.965,0.93261,13.3021,4.6412,7.3237,3.5403,9.3058,5.9154,5.7264,4.674,2.9833,1.3268,4.1046,,,,,,,,,,,,,,,78,,,
-nG+ROS1T5AD004,1.7782,1.6608,,70-79y,AD,,,17.4656,4.418,2.5824,2.1635,1.5388,edsd,AD,,M,,0.38838,4.6177,3.9214,0.80952,8.867,1.5455,0.39973,3.0632,2.6278,43.3222,14.6074,202.825,3.5407,4.6623,1.6131,1.6752,3.237,7.4269,1.9376,2.9384,0.66825,6.5178,12.0413,17.5594,7.3152,2.3104,4.5039,1.7096,17.9772,6.0193,4.002,1.0363,2.5008,7.1374,13.8299,2.9967,4.3777,2.8302,1.3237,1.5195,4.3339,11.2784,3.043,2.1631,11.8171,2.498,2.4828,2.288,13.939,2.1021,3.3722,1.2469,14.6558,5.7842,9.142,3.3175,9.9203,7.3223,6.5539,8.0864,3.2433,1.381,4.6455,26,,AD,0.07678,,,,0.33312,4.2709,4.2416,0.84375,9.4246,1.7341,0.37589,3.4823,2.642,44.6002,14.898,203.5476,3.7519,4.7899,1.7149,1.8743,3.4434,7.7755,1.887,3.276,0.72004,8.1062,12.5964,14.9498,8.4486,2.1723,4.6956,1.7002,18.9184,5.4728,3.7269,0.98811,2.5734,7.5331,15.0737,2.9995,4.8387,3.322,1.4818,1.4802,4.1502,11.3982,2.904,2.3395,9.8857,2.3402,2.4015,2.1158,12.6563,1.9224,3.4389,1.1265,13.5537,5.3932,7.8089,3.733,10.0615,6.9084,6.5732,7.8822,3.251,1.505,4.3893,,,,,,,,,,,,,,,73,,,
-nG+ROS1T5AD005,1.5988,1.7275,,60-69y,AD,,,15.3855,3.607,2.3772,1.8362,1.6202,edsd,AD,,F,,0.34425,4.1787,3.6281,0.70882,7.8288,1.3598,0.30933,2.9538,2.4343,39.5564,12.8817,218.6799,3.6835,4.0687,1.3078,1.7076,3.1735,5.5941,1.6396,2.5693,1.161,6.1125,8.8462,17.9963,6.8042,2.0547,4.1896,1.5646,16.5803,5.7901,3.3339,0.99768,2.3455,5.9402,10.6693,3.4122,3.9141,2.8977,1.241,1.4388,3.9854,9.1818,2.5619,2.0444,10.8967,2.0925,2.1021,1.9808,11.8988,1.6351,3.1348,1.0621,12.5684,4.1708,6.8818,3.7136,9.5738,5.6128,6.1851,6.1349,3.0542,1.3844,4.3349,14,,AD,0.07289,,,,0.31226,3.8583,3.4726,0.77434,9.9686,1.6327,0.31632,3.0612,2.5899,38.8014,12.6773,227.8522,3.5283,4.7257,1.5192,1.6705,3.3897,6.3108,1.7701,2.9276,0.86284,6.2178,9.7183,12.8318,7.5242,2.0886,4.2768,1.6284,16.6407,4.6874,3.3231,0.99046,2.3317,6.8223,11.8751,2.6611,3.8353,3.0829,1.3953,1.4269,3.6173,9.5098,2.6926,1.9287,10.0499,1.7696,2.21,1.7975,11.3434,1.655,3.1985,0.99631,12.9783,4.5731,7.7316,4.0379,10.921,6.4666,6.0708,6.4502,2.8351,1.2863,4.145,,,,,,,,,,,,,,,67,,,
-nG+ROS1T5AD006,2.2635,2.9737,,60-69y,AD,,,18.029,4.8893,2.6567,2.2255,1.947,edsd,AD,,F,,0.27429,3.5158,3.4285,0.50656,7.9235,1.2013,0.31367,2.3375,2.2449,46.4249,15.7361,202.1358,3.2403,3.1617,0.91267,1.401,2.7626,5.238,1.6461,2.5125,2.4151,4.9586,7.9361,27.7839,6.3648,1.7763,3.6438,1.373,14.1142,5.1368,3.2007,0.9948,2.3254,5.3951,10.631,2.7624,3.5406,2.3332,1.019,1.5726,3.545,8.5134,2.5548,1.9431,10.0348,1.7508,1.9167,1.807,10.6186,1.5016,2.7921,1.068,11.176,4.6129,6.9517,2.9609,8.1941,5.397,6.3917,4.4876,2.7339,1.2157,4.6976,10,,AD,0.07224,,,,0.14255,3.2578,2.9729,0.5099,7.7656,1.2883,0.2706,2.5168,1.6327,45.8701,15.3667,195.6455,2.9176,3.4986,0.84711,1.3754,2.9684,4.8245,1.4389,2.6,3.4118,4.9471,6.7824,27.9583,7.072,1.5963,3.2808,1.2638,13.307,4.1136,2.842,0.95104,2.2305,5.7964,8.3232,2.2124,3.6165,2.482,1.0136,1.5495,3.2366,8.6154,2.2618,1.8315,8.2449,1.4645,1.7699,1.6459,9.388,1.3264,2.1346,0.88717,11.3672,4.5521,6.2964,3.2598,8.5211,4.6116,5.9048,4.2566,2.4977,1.166,4.3457,,,,,,,,,,,,,,,66,,,
-nG+ROS1T5AD007,1.7205,2.1606,,+80y,AD,,,14.5561,4.1908,2.4339,2.0009,1.4826,edsd,AD,,F,,0.29266,3.2107,3.2557,0.51612,7.3711,1.1382,0.27894,2.2721,2.2076,39.9862,12.2676,174.809,3.0844,3.5075,0.91296,1.4724,2.6506,5.6822,1.4448,2.1047,1.5123,4.8097,8.542,20.4219,5.921,1.7863,3.7306,1.2201,15.3308,4.6049,2.9419,0.94701,2.0706,5.0106,10.4151,2.3704,3.4255,2.7091,1.0839,1.3295,3.3066,8.1084,2.2801,1.9054,9.8791,1.9155,1.8669,1.7673,11.0634,1.685,2.7899,0.88828,12.8727,4.1648,7.2062,2.4503,8.4428,5.6658,5.3712,5.1306,3.3531,1.2325,3.8383,24,,AD,0.06387,,,,0.23863,2.9398,3.102,0.52829,7.907,1.2952,0.28174,2.3947,2.2253,39.9292,11.702,180.321,3.0951,3.5081,0.98201,1.4898,2.8054,5.9779,1.4337,2.2385,1.3804,5.0779,8.5534,19.2048,6.1657,1.6042,3.7048,1.2801,14.6268,3.8656,2.88,0.97928,2.1041,5.6562,9.934,2.3409,3.3985,3.2769,1.0991,1.3457,3.2198,8.3606,2.1394,1.8836,8.3107,1.7183,1.8547,1.6124,10.9701,1.5309,2.742,0.86423,12.8439,4.0352,6.8963,3.3967,8.5249,5.6425,5.5443,5.2322,2.8863,1.2142,3.6911,,,,,,,,,,,,,,,80,,,
-nG+ROS1T5AD008,1.6273,2.8848,,+80y,AD,,,18.2541,4.9781,2.9885,2.6456,1.9741,edsd,AD,,M,,0.4002,4.4773,4.3594,0.84623,9.356,1.3355,0.39676,2.6138,2.6821,49.9324,15.2682,200.9291,4.5637,3.8902,1.6055,1.9302,3.2728,7.6441,1.9128,3.1782,0.92258,6.6511,12.1859,28.7946,7.6818,1.9197,4.5869,1.5974,16.0376,5.6946,3.5444,1.0156,2.3741,7.0339,13.2979,3.306,4.4762,3.0456,1.1352,1.4664,4.4398,9.9894,3.37,2.5453,11.3462,2.6666,2.1708,2.3584,11.4284,2.2757,3.7789,1.2935,12.7089,4.7531,8.7912,3.1213,9.8328,7.6438,6.697,7.1314,3.2269,1.8597,4.6501,25,,AD,0.07785,,,,0.38417,3.9769,4.1091,0.97399,9.615,1.6484,0.40055,3.1292,2.8117,50.477,14.2626,203.5624,4.1078,4.7485,1.7997,1.8618,3.3687,7.7073,1.8451,3.721,1.0228,6.4737,12.6256,25.7333,8.7273,1.9676,4.2264,1.5897,16.2688,4.884,3.5438,1.2338,2.6034,7.8204,13.7943,2.8295,4.6353,2.9091,1.4236,1.4961,3.915,10.3175,3.2494,2.4739,10.0384,2.2766,2.1623,2.1183,10.3122,1.8744,3.6373,1.2473,13.0274,5.0514,8.3387,4.0905,9.8015,7.4507,6.5123,7.7968,2.786,1.5494,4.496,,,,,,,,,,,,,,,80,,,
-nG+ROS1T5AD009,1.5307,1.6632,,60-69y,AD,,,18.2718,5.5227,2.6402,2.3083,1.3578,edsd,AD,,F,,0.33628,4.0059,3.5351,0.63995,8.1906,1.3116,0.31593,2.9352,2.3977,43.3698,16.4591,212.4724,3.3978,4.0442,1.2714,1.5889,2.9676,6.1736,1.7921,2.5612,0.61403,5.801,9.7291,11.0313,6.9263,2.0765,4.527,1.5387,16.1953,5.1174,3.4719,1.0396,2.4751,6.0788,11.7532,3.1119,3.9476,2.5914,1.2872,1.4418,4.0492,8.9795,2.7595,2.09,10.0379,1.6071,2.164,2.0231,10.2525,1.5349,3.0362,1.0946,12.4278,4.3322,7.3055,3.1844,9.0908,6.018,6.5934,6.4202,3.0491,1.1861,4.7553,24,,AD,0.08825,,,,0.30608,3.7724,3.3296,0.73118,8.8451,1.5121,0.32214,3.3108,2.4722,42.6368,16.2523,221.3597,3.4629,4.6626,1.5275,1.5785,3.1487,6.9003,1.967,2.9698,0.70652,6.2295,10.4915,8.5689,7.4809,1.9381,4.3939,1.6212,16.2808,4.4835,3.4606,0.82125,2.1098,6.8024,12.5326,2.6113,4.0153,2.8089,1.2938,1.4998,4.0167,9.8153,2.7883,2.0597,9.199,1.9867,2.0741,1.8775,10.0402,1.662,3.051,1.054,12.8457,4.5739,7.5731,4.1324,8.1599,6.2019,6.4965,6.8963,2.7421,1.2736,4.5929,,,,,,,,,,,,,,,69,,,
-nG+ROS1T5AD010,1.8046,2.2666,,+80y,AD,,,17.8348,4.3332,2.7285,2.1502,1.3246,edsd,AD,,F,,0.33948,4.3446,3.9315,0.61613,8.4948,1.4645,0.32918,2.6577,2.4322,44.4199,14.7858,190.9265,4.1199,4.2478,1.1974,2.028,3.1008,6.5086,1.8384,2.6566,0.83269,6.6913,9.8933,15.6945,6.9152,2.1182,4.7437,1.5775,17.0774,5.6858,3.5912,0.9475,2.3337,6.4263,12.5524,3.0273,4.1686,3.14,1.2952,1.3646,4.2696,10.1787,2.7866,2.2569,11.1711,2.4603,2.1403,2.1287,11.3743,2.0647,3.4479,1.0709,13.6861,5.4187,8.823,3.4472,9.7265,7.1111,6.6977,5.5822,3.5795,1.4745,4.4773,25,,AD,0.07498,,,,0.30555,3.8971,3.7102,0.67461,9.5718,1.5735,0.34224,2.9231,2.4778,45.0844,14.3518,194.9975,3.9442,4.5982,1.2883,1.9338,3.1526,7.2272,1.7646,2.9639,0.7039,6.1605,11.0527,14.2,7.5607,2.0251,4.87,1.593,17.1404,4.631,3.3191,1.1405,2.6301,7.1171,13.5476,2.4897,4.0289,3.3603,1.349,1.4372,3.9639,10.1131,2.6235,2.3326,9.8485,2.1393,2.1342,2.0354,11.246,1.6533,3.5534,1.0616,13.7675,5.1361,8.0795,4.0344,10.5438,6.5102,6.5221,6.406,3.3015,1.4494,4.3188,,,,,,,,,,,,,,,80,,,
-nG+ROS1T5AD011,2.8751,2.405,,70-79y,AD,,,18.8058,4.8977,2.3533,2.2446,2.4442,edsd,AD,,M,,0.4164,4.1603,4.442,0.83678,9.4289,1.3887,0.38626,3.2765,2.7829,44.4746,15.7034,226.454,3.8934,4.2425,1.5631,2.0719,3.5254,6.8529,2.0977,2.9317,1.6401,6.0722,10.1719,32.0855,8.1555,2.1378,4.6318,1.7082,17.9085,5.0215,3.6508,1.0867,2.5647,6.6771,13.3558,3.2169,4.3812,3.4064,1.3445,1.7045,4.4716,10.6461,3.0955,2.4979,10.7141,2.3143,2.175,2.3513,11.857,1.9181,3.972,1.2912,14.9559,5.2255,9.1804,3.2556,11.4757,6.9313,7.1651,7.1049,3.5194,1.6703,5.3933,20,,AD,0.09255,,,,0.34798,3.7422,4.2508,0.77148,9.7558,1.4291,0.37721,3.8419,2.742,44.1094,14.8592,222.5126,3.5163,4.2007,1.3855,1.8886,3.3997,6.3506,1.8657,3.2181,2.333,5.7441,9.5523,44.4104,8.3023,1.9358,4.3009,1.5629,15.8963,4.0321,3.3717,1.0456,2.2773,6.9458,12.4183,2.5712,4.1937,3.1325,1.4353,1.7046,3.7654,10.1147,2.7524,2.4574,9.1737,2.0571,2.2016,1.9823,11.531,1.6137,3.7643,1.2135,14.0826,4.8578,7.6297,3.5277,9.7624,6.4612,6.7605,6.8968,3.0513,1.3901,5.1551,,,,,,,,,,,,,,,74,,,
-nG+ROS1T5AD012,1.9942,2.9245,,60-69y,AD,,,16.544,4.3441,2.3231,2.1436,1.5455,edsd,AD,,M,,0.37309,4.9564,4.7798,0.74284,7.1824,1.5836,0.37691,2.8373,2.3186,46.7756,14.18,225.9172,4.281,3.5316,1.486,2.1089,3.3412,7.0497,2.054,3.0493,0.98324,5.7635,10.5925,18.833,6.9909,2.4053,4.8171,1.845,17.5596,5.2317,4.0665,1.0127,2.5689,7.0037,12.7179,2.9945,4.012,3.3911,1.5209,1.5847,3.9774,9.8724,3.1977,2.5561,10.7457,2.3182,2.7539,2.4728,12.2405,1.9846,3.2226,1.3117,13.1412,5.2487,7.6417,2.636,9.8547,6.5463,6.8909,7.869,3.7475,1.7926,4.7085,20,,AD,0.09549,,,,0.32367,4.7235,4.6534,0.78023,8.8027,1.8041,0.36839,3.0557,2.2687,45.3684,13.1475,227.9069,3.9162,4.2272,1.557,2.2423,3.6087,6.9727,1.893,3.3077,1.1926,6.077,10.9046,14.7058,7.9894,2.336,5.0101,1.7442,17.3195,4.4676,3.7203,0.98736,2.6087,7.3249,13.5884,2.519,4.1983,3.1401,1.8297,1.597,3.7162,9.763,2.984,2.6482,9.3692,2.0408,2.4477,2.2609,12.4549,2.1011,3.3506,1.1994,14.3506,5.2541,6.883,3.5325,9.4004,6.6412,6.633,7.6076,3.5886,1.7147,4.4743,,,,,,,,,,,,,,,67,,,
-nG+ROS1T5AD013,1.9663,1.738,,70-79y,AD,,,18.1318,4.0834,2.4511,2.0528,1.5343,edsd,AD,,M,,0.44442,5.2696,4.9004,0.84559,10.5471,1.8075,0.4116,3.0178,3.0819,45.8179,15.0169,264.2635,4.6948,4.5272,1.9168,2.2728,4.4117,8.2372,2.687,3.2125,0.56028,7.4188,13.168,20.2561,7.3795,2.8413,4.9725,2.3605,22.6366,7.2491,4.6757,1.1874,2.6676,8.2813,15.5508,3.9649,4.698,3.8125,1.8448,1.6229,5.0648,11.9777,3.5296,2.8764,12.6198,3.0844,2.754,2.6651,14.0853,2.4655,4.0042,1.5359,17.4002,5.4671,10.535,3.7987,11.6329,7.6208,8.0618,8.7411,4.4704,1.9738,5.0959,24,,AD,0.09345,,,,0.3806,4.0816,4.6764,0.86543,11.4273,2.1901,0.4058,3.5938,2.969,45.3326,14.6129,267.0388,4.5909,4.8849,1.9619,2.1706,4.9592,8.2978,2.7332,3.52,0.67627,8.2916,12.9346,18.1727,9.9897,2.6568,4.7227,2.3381,21.0876,5.8797,4.5732,1.1392,2.711,9.5842,14.9277,3.7836,5.1473,3.357,1.8723,1.6471,4.683,12.5686,3.2135,2.6198,10.1976,2.8223,2.6906,2.3484,14.1133,2.4074,3.7338,1.5271,16.2499,5.7548,8.3049,5.261,11.7123,7.7947,7.9992,8.7657,4.3254,1.9478,4.7523,,,,,,,,,,,,,,,72,,,
-nG+ROS1T5AD014,2.1921,1.9408,,60-69y,AD,,,16.493,4.3048,2.4462,2.0938,1.7697,edsd,AD,,F,,0.43673,5.1973,4.8529,0.74459,8.5735,1.6144,0.40259,3.2669,3.0055,46.8683,13.784,215.5509,4.5869,4.5894,1.4028,2.6485,3.9356,6.1466,2.3382,3.0505,0.87113,6.3159,8.9824,26.4455,7.3401,2.6654,5.2224,1.917,21.1393,5.7884,4.1731,1.02,2.631,7.598,12.0891,3.7792,4.471,3.7138,1.8233,1.6023,4.6003,11.2471,2.868,2.5124,12.7777,2.5265,2.4766,2.3431,15.3695,2.0005,3.8764,1.396,15.8389,5.73,8.1905,3.5781,10.8917,6.6344,7.1699,5.9814,4.7317,1.6615,4.6753,20,,AD,0.08078,,,,0.37235,4.4839,4.3955,0.78849,9.5074,1.9347,0.39466,3.4901,3.1894,45.5968,13.5067,222.5085,4.2485,5.1205,1.4921,2.4777,4.3521,6.5731,2.2355,3.2981,0.88156,6.2356,10.0786,19.8248,8.5193,2.5124,5.1711,1.8679,21.3402,5.1845,4.2627,1.368,3.123,8.3148,12.8081,3.0431,4.2082,4.0166,1.7604,1.6023,4.0853,11.258,2.8008,2.3847,11.0358,1.9709,2.4163,2.0711,13.9036,1.8027,3.8336,1.3276,16.9133,5.7727,7.3979,4.3743,9.9513,6.7251,7.0232,6.4975,4.2534,1.518,4.4392,,,,,,,,,,,,,,,67,,,
-nG+ROS1T5AD015,0.93683,1.8003,,60-69y,AD,,,17.8318,4.2232,2.1274,1.9377,0.83177,edsd,AD,,F,,0.4778,4.4953,4.2786,0.8219,8.91,1.7441,0.38576,2.9975,3.1873,42.9947,15.0453,235.0482,3.5921,4.1618,1.5749,2.0414,3.2489,7.1117,2.0366,3.2328,0.49363,6.1547,10.958,10.2416,7.1609,2.558,4.6442,1.8088,19.0645,5.8687,4.2087,1.1569,2.8132,7.0284,13.3618,3.2549,4.3679,3.6787,1.5796,1.5749,4.7197,10.7426,3.0096,2.2769,11.2276,2.4509,2.6802,2.0773,13.3408,2.072,3.3541,1.2137,15.0872,5.5874,8.8826,3.5048,11.1672,6.9201,7.3533,7.0273,3.9851,1.7502,4.7107,23,,AD,0.07715,,,,0.40749,4.1313,4.1279,0.88409,10.0036,1.9226,0.38292,3.6417,3.1693,43.341,14.4105,233.7051,3.975,5.0362,1.7387,2.0494,3.7029,7.3887,2.1171,3.4127,0.52059,6.3217,11.9174,10.8471,7.9649,2.3987,4.4958,1.7549,20.0624,4.5537,4.0186,1.0173,2.7448,7.4767,14.5547,2.4353,4.3479,3.8079,1.5765,1.5478,4.2479,11.55,2.846,2.1817,10.1223,2.1405,2.479,1.9059,12.6519,1.6382,3.3926,1.1929,14.8528,5.0013,8.2128,3.9383,10.0736,6.8531,7.1627,7.8442,3.6747,1.385,4.5448,,,,,,,,,,,,,,,67,,,
-nG+ROS1T5AD016,2.0414,1.2763,,70-79y,AD,,,17.2136,4.4435,2.383,2.1958,2.0632,edsd,AD,,F,,0.35654,5.3592,3.9407,0.7267,9.1459,1.5934,0.35492,3.0106,2.8383,42.6489,14.0136,203.9892,4.1394,4.3423,1.4114,1.7612,3.7623,6.775,2.3202,2.6408,0.87676,5.6049,10.6496,27.843,6.5977,2.2619,5.1367,1.8825,21.7198,5.3917,4.1393,1.2119,2.2992,7.5129,12.4328,3.3707,3.8876,3.0539,1.2866,1.4958,4.5241,11.0973,2.6193,2.4487,10.7906,2.2689,2.3132,2.4785,12.5687,2.0576,3.2132,1.3757,15.0623,5.8097,7.7045,3.2142,9.7962,6.628,6.5824,7.3194,3.4999,1.6139,4.6406,25,,AD,0.08167,,,,0.32408,4.7046,3.9127,0.77616,9.6424,1.8656,0.35547,3.1413,3.0232,42.4316,14.0298,210.9773,4.0035,4.7289,1.5072,1.7677,3.8851,6.9815,2.1202,3.005,0.95062,6.3722,10.4518,22.4138,7.5424,2.2103,5.0145,1.7976,19.5017,5.0702,3.9216,1.051,2.3254,8.5314,12.4528,3.1577,4.0705,3.4294,1.4419,1.5633,4.2033,10.8726,2.6368,2.5604,10.2712,2.4199,2.231,2.3361,13.239,2.069,3.3594,1.278,15.3549,5.9981,7.5726,4.2119,9.7314,7.2476,6.4362,7.7492,3.287,1.5964,4.3958,,,,,,,,,,,,,,,72,,,
-nG+ROS1T5AD017,1.6611,1.7948,,70-79y,AD,,,17.5521,4.5881,2.469,1.9394,1.509,edsd,AD,,F,,0.34237,4.3656,4.1024,0.6151,7.939,1.3405,0.35155,2.7131,2.5269,41.8891,14.5376,190.3081,3.7952,4.1139,1.1603,1.9849,2.9341,5.9607,1.8571,2.6557,1.4956,5.7125,8.9819,19.7701,6.3846,2.1584,4.1706,1.5352,17.4805,5.6393,3.678,1.0472,2.3819,6.4494,10.6368,3.1413,3.7844,3.4199,1.4448,1.4044,4.1259,8.926,2.7654,2.409,11.1184,2.4379,2.303,2.1931,11.9755,1.7615,3.4816,1.2203,13.9064,5.3443,7.845,3.421,9.5167,5.655,6.4811,6.1755,3.8117,1.4652,4.6392,13,,AD,0.085,,,,0.27858,3.8669,4.0432,0.59385,9.031,1.4708,0.32272,3.0401,2.4563,42.0401,13.5467,187.0741,3.6154,3.9814,1.0996,2.001,3.1832,5.6571,1.7364,2.7967,1.8227,5.5872,8.2296,20.3411,6.9129,1.9371,4.3234,1.4245,17.3302,4.5832,3.3847,0.89567,2.2753,6.6822,9.5444,2.7453,3.5755,3.3829,1.4666,1.4275,3.8912,10.0101,2.4834,2.3548,8.6783,1.8017,2.0081,2.0867,10.9745,1.3738,3.2943,1.0825,13.1937,4.9056,6.6766,3.7382,10.9059,5.0048,6.1767,5.4621,3.3918,1.26,4.3212,,,,,,,,,,,,,,,75,,,
-nG+ROS1T5AD018,2.655,3.3151,,70-79y,AD,,,21.9754,4.8017,2.4607,2.1822,1.8157,edsd,AD,,M,,0.42061,4.7119,4.8166,0.77814,9.5107,1.5648,0.41411,3.4106,2.6392,46.9712,16.4765,251.7752,4.4687,4.7361,1.5455,2.1359,3.7495,6.9168,2.3378,3.1956,1.5703,5.5669,10.9412,25.6471,7.4205,2.3374,4.7275,1.984,18.8355,4.9584,4.365,1.3221,2.8102,7.3574,12.7792,3.2347,4.0452,3.3859,1.4893,1.7237,4.4781,10.1091,3.3571,2.8236,11.1943,2.573,2.6625,2.8374,12.6851,2.8074,3.8085,1.4499,14.6977,4.9228,9.4317,3.4882,10.121,7.7574,7.6661,8.3414,3.9321,2.1845,5.7002,8,,AD,0.09881,,,,0.38885,4.2134,4.6231,0.85803,9.9833,1.8632,0.42929,3.7793,3.0005,47.1094,16.0141,260.0396,4.2573,5.1792,1.8121,1.9719,3.8489,8.1226,2.2531,3.6189,1.1632,6.5681,13.1683,22.1314,8.5381,2.3552,4.827,1.9961,17.3005,4.7661,4.2061,1.0614,2.7165,7.8857,16.2228,2.9069,4.4028,3.4459,1.6473,1.7789,4.1851,10.6296,3.3377,2.602,10.2031,2.4994,2.7136,2.5679,13.5707,2.1807,3.7689,1.4049,16.0886,5.2991,8.2093,4.0864,9.6149,7.8023,7.5697,9.0227,3.5129,1.7003,5.4789,,,,,,,,,,,,,,,71,,,
-nG+ROS1T5AD019,1.4436,1.5609,,70-79y,AD,,,14.3356,3.7344,2.1048,1.8688,1.6237,edsd,AD,,F,,0.32916,3.5295,3.9087,0.67601,7.2062,1.3804,0.32224,2.4132,2.2522,37.8398,11.9258,165.6806,3.5732,3.3383,1.3345,1.6433,2.8665,5.7889,1.6765,2.6841,0.85944,4.56,8.6348,25.111,5.4669,2.0345,3.7509,1.3769,17.0924,4.7761,3.3491,0.92597,2.285,5.8422,10.0357,2.5273,3.1932,2.5717,1.094,1.2571,3.3631,8.7818,2.5695,2.133,9.6605,1.9811,2.0158,1.8969,10.6331,1.7153,3.1596,1.0459,14.1173,4.4672,7.2704,2.717,8.881,5.4729,5.319,6.0729,2.8132,1.284,3.9038,21,,AD,0.07921,,,,0.32836,3.222,3.8416,0.72047,9.1675,1.4324,0.3312,2.5118,2.5007,37.0575,11.3372,170.1503,3.6484,3.6838,1.4662,1.8551,3.1985,6.251,1.5746,2.8764,0.70902,5.8496,10.2767,14.9221,6.1482,1.9543,3.6723,1.3567,16.147,4.6196,3.0863,0.95698,2.2617,6.5291,12.5317,2.4047,3.5763,3.3267,1.3361,1.2833,3.2118,9.4355,2.5116,2.151,7.8857,1.7461,2.0082,1.7033,10.0863,1.4755,3.2533,0.96674,12.8483,4.4575,6.092,3.9136,9.7252,5.9959,5.3503,6.9312,2.8492,1.1585,3.674,,,,,,,,,,,,,,,79,,,
-nG+ROS1T5AD020,1.7097,2.0278,,70-79y,AD,,,19.3443,5.3587,2.9434,2.5213,1.6015,edsd,AD,,M,,0.48779,5.2595,4.607,0.87073,11.1179,1.8239,0.42742,3.8466,3.251,52.2641,15.7609,245.8619,4.6612,5.2862,1.7888,2.0581,4.2753,7.9502,2.4508,3.3827,0.65958,6.7564,12.3874,20.7198,8.7069,2.8718,5.8325,2.2429,22.2924,7.1985,4.6179,1.048,2.9164,8.4238,15.6892,4.1036,4.788,3.7671,1.7417,1.7332,5.4284,12.6692,3.5072,2.5747,13.853,2.5593,2.9372,2.5953,13.257,1.8968,4.806,1.4254,18.842,6.6482,9.081,4.7905,13.9386,7.3194,7.8413,8.4546,4.4532,1.6798,5.0564,26,,AD,0.08788,,,,0.44771,5.2074,4.6571,0.88765,12.4061,1.9587,0.44588,3.7986,3.2801,52.246,16.1786,247.676,4.8629,5.1616,1.8383,2.3292,4.3523,7.9899,2.4457,3.5553,0.82291,6.9693,12.2567,16.9311,9.3788,2.4591,5.8995,2.1531,21.6581,6.0089,4.4122,1.3914,3.1132,9.1265,16.6756,3.2264,4.9467,4.3609,1.8499,1.7566,5.0546,12.4279,3.2563,2.5151,11.3623,2.4819,2.6564,2.2269,14.2536,1.9339,4.6811,1.3871,17.2871,6.2438,8.5548,4.7824,12.2404,8.3126,7.7882,8.8428,4.5598,1.6691,4.7776,,,,,,,,,,,,,,,73,,,
-nG+ROS1T5HC001,1.4694,2.0764,,60-69y,CN,,,15.5866,4.7154,2.4515,2.2339,1.6097,edsd,CN,,M,,0.39444,5.3274,4.5297,0.80084,10.1,1.5261,0.41104,2.1018,2.4605,44.7677,13.82,192.0511,4.6042,3.7091,1.5806,2.1696,3.5574,8.0186,2.0751,3.0452,0.62222,6.8881,11.3744,17.7235,7.0399,2.5384,5.3086,1.8622,18.3586,5.9325,4.0139,1.101,2.4567,7.3773,13.9603,3.0863,4.5236,3.4033,1.6605,1.3175,4.7152,11.0417,3.2946,2.416,10.9446,2.6345,2.5611,2.3748,13.4129,2.3352,3.5257,1.3507,13.949,5.3741,9.0978,2.9222,10.2535,7.8018,6.4724,7.5783,4.191,1.814,4.24,28,,,0.07213,,,,0.32552,4.4387,4.2007,0.83645,10.4915,1.8194,0.38027,2.76,2.5579,44.2265,13.1032,195.029,4.3899,4.7084,1.7166,2.1334,3.6965,7.8887,2.1424,3.2427,0.66814,6.6711,11.9638,17.0008,8.0041,2.406,4.8757,1.7941,18.2185,5.1077,3.97,1.1424,2.4436,8.6305,14.3888,2.4321,4.3761,3.2229,1.7189,1.3174,4.0449,11.5494,3.0705,2.5021,10.5252,2.2788,2.3189,2.2072,11.4997,2.0349,3.4247,1.2068,15.3456,5.6541,8.0471,3.8563,9.6541,7.2628,6.1974,8.0592,3.8343,1.6766,4.0058,,,,,,,,,,,,,,,65,,,
-nG+ROS1T5HC002,1.1751,2.1387,,70-79y,CN,,,19.8097,4.6608,2.782,2.2621,1.5549,edsd,CN,,F,,0.43648,5.2956,4.5632,0.98008,10.1742,1.7295,0.40312,2.8059,2.9921,48.2509,16.0108,253.8471,4.0826,4.4212,1.859,2.0304,3.9438,8.0058,2.2618,3.3216,0.46701,6.2247,11.8025,10.939,7.3579,2.611,5.4779,2.0045,20.4062,6.2414,4.2481,1.2966,2.5948,7.5977,14.8265,3.3159,4.1536,3.34,1.606,1.753,4.4419,11.041,3.3871,2.575,12.6904,2.5471,2.5654,2.5596,12.5849,2.0881,3.8762,1.1943,15.1221,5.7074,9.6666,3.2416,10.7882,7.3592,7.6457,8.0938,4.0113,1.7839,5.2117,30,,,0.08055,,,,0.40473,4.6799,4.2834,0.94335,10.6342,1.9153,0.39525,2.9254,2.9065,46.3204,15.3319,256.5174,4.1051,4.6672,1.8751,1.9307,4.1304,7.6561,2.3816,3.4471,0.38238,6.2807,11.3129,9.9975,7.7691,2.2754,5.0773,2.0804,19.4145,5.0089,4.2119,1.1224,2.8408,8.359,14.7468,3.0109,4.2554,3.6352,1.4561,1.7878,3.9393,10.6949,3.0379,2.5876,10.5847,2.2924,2.4149,2.3544,12.6388,2.0567,3.7933,1.2072,16.3539,6.0458,8.3309,4.27,10.994,7.9287,7.3645,8.5225,3.4275,1.5361,4.9581,,,,,,,,,,,,,,,71,,,
-nG+ROS1T5HC003,1.527,2.2414,,60-69y,CN,,,22.1157,4.8961,3.0709,2.3697,1.3304,edsd,CN,,M,,0.45025,5.6461,4.6767,1.0069,9.3956,1.9521,0.43463,3.5281,2.9302,50.4743,17.6952,289.5558,4.7194,4.3323,1.7658,2.3755,3.7524,7.7174,2.1405,3.5729,0.58997,6.7247,12.167,18.7588,7.4859,2.9018,5.2025,2.1174,22.995,6.2585,4.5732,1.1983,2.8057,8.0272,15.1511,3.7877,4.8644,4.1135,1.6495,1.7804,5.0967,11.4003,3.2491,2.3462,12.7437,2.6713,3.0912,2.3949,14.0366,2.1182,4.2053,1.3596,15.864,6.1416,9.0905,3.4209,11.5268,7.6646,8.5587,7.6055,4.5087,1.8178,5.7298,29,,,0.08487,,,,0.39812,4.4632,4.7992,1.0478,10.5609,2.048,0.43084,3.6609,2.9081,50.395,16.8651,295.4615,4.4272,5.2292,1.9785,2.4494,3.7273,7.8411,2.0203,4.0327,0.80688,7.3665,12.3948,14.5829,9.1257,2.6087,4.8944,1.9892,21.2925,5.3864,4.1489,1.0222,2.7471,8.5647,15.3602,3.1072,5.0772,4.4008,1.8216,1.8043,4.9277,12.654,3.2833,2.3071,10.4511,2.6122,2.952,2.2008,13.4439,2.2245,4.0707,1.2925,17.274,5.7054,8.488,4.4156,11.866,7.6908,8.1433,8.5122,4.0003,1.6556,5.5358,,,,,,,,,,,,,,,60,,,
-nG+ROS1T5HC004,1.251,2.384,,60-69y,CN,,,22.4176,5.0304,2.9675,2.2352,1.2586,edsd,CN,,M,,0.48445,5.3928,4.2912,0.96487,11.0348,1.7476,0.43406,3.1103,2.9785,54.1574,17.3212,247.8442,4.5022,5.1469,1.9961,2.2077,3.7717,8.2358,2.3516,3.4736,0.43966,6.0727,12.5923,9.6637,7.5759,2.6404,5.7283,2.1308,21.3202,6.3692,4.3599,1.3617,3.0387,7.7965,16.0116,3.1518,4.7023,3.6231,1.6983,1.7408,5.0378,12.5599,3.5841,2.2395,14.5135,2.7908,2.6119,2.3091,13.344,2.1236,4.0945,1.3398,16.3563,6.0604,10.2393,3.7481,11.7076,8.3879,8.2819,9.2731,4.2668,1.5651,5.3992,28,,,0.08763,,,,0.4192,4.2812,4.4282,0.89923,11.4729,2.0388,0.4264,3.1256,2.9277,54.2284,16.7807,251.8469,5.0674,5.2542,1.9148,2.325,3.9948,8.6418,2.4357,3.5258,0.48523,7.4056,12.6225,9.0514,8.1104,2.7614,4.8834,2.1551,21.4875,5.9963,4.2825,1.435,3.3604,9.411,15.2482,3.1121,4.6395,4.4141,1.7894,1.7723,4.3351,12.422,3.1107,2.4674,12.8155,2.5551,2.6084,2.1355,14.1164,2.1358,4.0788,1.2963,17.0002,6.5781,9.5451,4.4673,11.0173,8.2011,7.861,8.3874,3.9441,1.6095,5.044,,,,,,,,,,,,,,,66,,,
-nG+ROS1T5HC005,1.1935,2.9028,,70-79y,CN,,,18.4232,5.0798,2.5833,2.2423,1.148,edsd,CN,,M,,0.40203,4.4341,3.8384,0.87555,9.9061,1.7945,0.36067,3.0054,2.6413,52.9837,16.3663,252.3158,4.0472,4.2406,1.6786,2.0867,3.5218,8.6136,2.0553,2.956,0.55086,7.2986,12.3279,13.1091,8.1669,2.7542,4.9662,1.8453,19.7118,5.9594,3.9861,1.3169,2.8842,6.8344,13.8303,3.9531,5.1469,3.7879,1.6781,1.5725,4.3267,10.0918,3.3641,2.1538,11.9307,2.4724,2.5996,2.2904,12.3437,2.3907,3.6548,1.1584,15.0032,5.388,9.9347,3.772,12.6052,7.801,6.9347,8.4928,4.2163,1.7801,4.7913,29,,,0.06854,,,,0.34448,4.0656,4.1578,0.8495,10.5805,1.9409,0.38207,3.1614,2.5547,52.4901,16.1122,255.5603,4.055,4.7789,1.6851,2.0899,3.9362,8.5371,2.1363,3.1602,0.5503,7.5573,12.5933,15.4596,8.8272,2.5749,4.8625,1.8973,20.8946,5.7287,3.8968,1.0921,2.9697,7.8255,13.9325,3.3871,4.9265,3.6151,1.7339,1.5787,3.8233,10.5799,2.9475,2.2249,11.0441,2.3964,2.4489,2.1402,13.5061,2.0277,3.5548,1.1589,15.2906,5.3077,8.1468,4.5338,12.1353,7.2129,6.9742,8.2108,3.975,1.6302,4.5649,,,,,,,,,,,,,,,71,,,
-nG+ROS1T5HC006,2.5429,2.2419,,70-79y,CN,,,16.1262,5.3923,1.2793,2.1787,1.6256,edsd,CN,,M,,0.4186,5.027,4.1686,0.8502,9.2691,1.8123,0.40169,3.2168,2.6721,26.488,11.9306,237.6217,4.5149,5.1317,1.7304,1.9671,3.5514,7.7465,2.2066,3.1767,0.86279,6.6257,12.6597,20.8007,8.0205,2.5785,5.0779,1.9469,21.4013,6.3027,4.4766,1.2664,2.775,7.3116,14.5309,3.2917,4.6005,3.7346,1.5317,1.7354,4.9304,11.3723,3.3515,2.2443,12.9365,2.2754,2.7957,2.3359,14.8469,2.017,3.5983,1.3407,15.6758,6.056,8.7474,3.7508,10.7001,7.9303,7.1507,8.5195,4.0109,1.5727,4.9825,27,,,0.08777,,,,0.39339,4.3489,4.166,0.83864,10.7538,1.9533,0.39793,3.6393,2.6524,26.9492,12.0168,236.2134,3.9303,5.2497,1.7555,2.2065,3.8484,7.7152,2.0146,3.4092,1.0505,7.2824,12.3094,18.5472,9.0216,2.6066,4.9646,1.8926,20.5995,5.2401,3.8739,1.2187,2.8666,8.9934,16.7309,2.779,4.7909,3.8209,1.7694,1.682,4.2545,11.7976,3.145,2.2028,10.979,2.4618,2.5828,1.9393,13.6313,1.9948,3.6109,1.2428,17.322,6.1867,8.5987,4.1453,11.6259,8.2265,6.9078,8.5438,4.0822,1.5062,4.7054,,,,,,,,,,,,,,,72,,,
-nG+ROS1T5HC007,1.8962,2.4455,,60-69y,CN,,,20.1618,5.6612,3.0942,2.6479,1.2255,edsd,CN,,M,,0.4713,5.8186,4.8085,0.99325,10.6139,1.8454,0.42014,3.3737,2.9926,54.4207,17.6,252.5573,4.4329,5.6454,1.9511,2.3582,4.1928,8.4139,2.4964,3.4241,0.6351,6.837,14.1385,15.9618,7.7111,2.7182,6.0349,2.1738,21.8414,6.4231,4.5667,1.3127,2.9477,8.5037,16.8572,3.9248,4.5567,3.481,1.7193,1.6675,4.9147,11.6244,3.5245,2.5927,12.9495,2.2081,2.6057,2.6396,13.2651,1.8785,4.1462,1.3219,15.1686,5.811,9.5109,3.5177,11.324,7.5069,7.4395,9.5572,4.3462,1.5662,5.2364,28,,,0.09106,,,,0.37414,5.0313,4.6922,0.96245,11.0596,1.9744,0.40369,3.2672,3.0661,54.8997,17.3021,255.5904,4.6043,5.5107,1.8042,2.4361,4.244,8.5003,2.3828,3.6778,0.60141,8.2375,13.5794,12.814,8.6827,2.4049,5.7194,2.0711,21.3816,5.9957,4.3394,1.2171,2.6537,9.0482,16.6257,3.7195,5.0778,3.8184,1.745,1.6165,4.6463,12.6383,3.2168,2.8499,11.4189,2.3301,2.3616,2.5633,12.7329,2.0492,4.0851,1.2792,16.0237,6.1303,8.9082,4.3393,10.8166,7.9211,7.2696,9.1086,4.1574,1.6618,4.8613,,,,,,,,,,,,,,,61,,,
-nG+ROS1T5HC008,1.3944,1.2513,,70-79y,CN,,,16.1426,4.6417,2.3656,2.2946,1.3728,edsd,CN,,F,,0.40995,4.5304,3.9851,0.88935,9.0663,1.6265,0.38957,2.9169,2.7962,45.4621,13.5865,212.866,4.2281,4.4389,1.7252,1.8781,3.5507,7.5174,2.129,3.0577,0.44755,6.0644,11.9897,12.7084,7.5859,2.4024,4.9383,1.8261,19.3029,6.047,4.1917,0.91745,2.4963,6.8634,14.4012,3.3102,4.2052,3.2415,1.5149,1.3672,4.5808,10.7532,3.0676,2.3193,11.7807,2.4722,2.5627,2.3454,12.4411,2.0129,3.8067,1.235,14.8706,5.0501,8.7812,3.6876,11.8903,7.1216,6.2847,7.8874,3.5923,1.8361,4.2268,29,,,0.07562,,,,0.3667,3.8507,3.8245,0.92165,10.0996,1.8186,0.38596,3.2222,2.8092,40.2222,12.807,214.4228,3.9493,4.6917,1.7835,1.9782,3.7308,7.894,1.9718,3.3221,0.5856,6.8316,11.5909,9.3245,8.3185,2.2386,4.3218,1.7208,18.1561,5.4516,3.9408,1.0943,2.4385,7.7678,13.8343,2.8753,4.4102,3.3648,1.6128,1.3677,4.0614,10.4193,2.9695,2.3396,10.0542,2.4464,2.5713,2.0388,11.5031,2.0754,3.5273,1.1784,14.8003,5.4666,7.6318,4.4996,10.754,7.1523,6.1682,7.8081,3.4326,1.6819,4.1206,,,,,,,,,,,,,,,75,,,
-nG+ROS1T5HC009,1.5061,2.5699,,70-79y,CN,,,19.1869,4.2516,2.493,2.021,1.0849,edsd,CN,,F,,0.40187,4.1909,3.9006,0.92263,9.289,1.6037,0.38394,3.1139,3.2956,49.0781,14.9754,234.3725,3.9223,4.3969,1.77,1.8616,3.3603,7.7173,2.1124,3.1863,0.48943,6.3284,11.5102,15.6225,7.0848,2.3268,4.5467,1.7975,17.3332,6.0122,4.0925,1.073,2.6667,6.583,13.9335,3.1118,4.3142,2.9831,1.4118,1.6339,4.2383,10.0223,3.3362,2.3771,12.2803,2.4531,2.4218,2.1608,12.6558,2.1118,3.9026,1.1446,15.3062,5.2323,8.757,3.7717,10.5792,7.0818,7.8519,7.3997,3.2322,1.709,5.1621,29,,,0.0767,,,,0.39192,3.8445,3.7288,0.86623,11.1169,1.7778,0.39318,3.0636,3.5965,47.362,14.5116,237.8669,3.7866,4.3404,1.666,1.8491,3.6085,7.3445,2.1591,3.3065,0.59421,6.3441,11.0364,16.9137,7.6085,2.2584,4.5922,1.7998,17.2194,5.7455,4.0038,1.1739,2.8354,7.5207,14.5429,2.8065,4.0865,3.307,1.4692,1.6668,3.9089,10.3551,2.9001,2.1812,10.3561,2.2513,2.421,1.8633,12.3605,1.928,3.8725,1.1537,14.7075,5.193,7.8018,3.9771,10.6498,7.2986,7.5791,7.1644,3.33,1.573,4.8753,,,,,,,,,,,,,,,71,,,
-nG+ROS1T5HC010,0.98083,1.9381,,60-69y,CN,,,18.0166,4.5422,2.4458,2.1777,1.0818,edsd,CN,,F,,0.46211,4.2164,4.0577,0.80335,8.1165,1.616,0.37921,2.6903,3.2867,43.9517,14.4657,239.0348,3.8252,3.8832,1.4976,1.8585,2.8584,6.8223,2.0293,3.0496,0.50993,5.9188,10.6809,14.0786,6.7447,2.4574,4.2561,1.678,18.6921,5.2227,4.0194,1.0727,2.6782,6.3499,12.9054,3.5556,4.1614,2.8897,1.5343,1.6542,4.1234,10.5432,3.0421,2.0921,9.8186,2.1097,2.4615,1.9086,11.7327,1.6694,3.8729,1.1818,12.7444,5.1526,8.2094,3.7429,11.4096,5.7033,7.0953,7.1746,3.3848,1.4537,4.701,29,,,0.07952,,,,0.42838,3.6152,4.1032,0.85179,9.0647,1.7764,0.37701,2.9744,3.4062,44.3271,13.8128,242.5288,3.573,4.4789,1.5735,2.1879,3.3516,6.9415,2.08,3.2688,0.51853,5.5253,10.7078,11.4639,7.5364,2.2323,4.1164,1.7361,19.3284,4.0521,3.8323,1.0106,2.4806,7.1215,13.5985,2.5522,3.6371,3.3685,1.6273,1.6629,3.7472,10.4938,2.8232,2.045,9.0917,1.9221,2.3352,1.737,10.9804,1.5543,3.6811,1.1622,13.516,4.9428,7.2241,4.4664,10.6544,6.3043,6.8462,7.4567,3.7811,1.194,4.4939,,,,,,,,,,,,,,,67,,,
-nG+ROS1T5HC011,1.3845,1.6251,,70-79y,CN,,,18.213,4.5216,2.7068,2.0783,1.0956,edsd,CN,,F,,0.44711,4.4354,3.9611,0.84425,8.957,1.4936,0.40007,2.666,2.8656,45.5447,15.24,223.8198,3.8455,3.9248,1.6256,1.6895,3.3108,7.1825,2.066,3.0423,0.40647,6.5748,11.7204,13.8198,6.8615,2.3745,4.708,1.653,19.3072,5.9727,3.8976,1.0964,2.5365,6.4512,13.9179,2.8953,3.9398,3.3972,1.4613,1.5046,4.211,10.0677,3.0361,2.3589,11.6123,2.354,2.4606,2.295,12.3791,1.8886,3.6077,1.2546,14.8167,5.2493,8.6561,3.1136,10.1991,7.3659,7.3654,7.42,3.8183,1.5672,4.701,28,,,0.08328,,,,0.38364,3.8443,3.7949,0.82649,9.6815,1.7091,0.395,2.9646,2.816,45.1156,14.6141,227.1472,3.667,4.032,1.6187,1.9109,3.4477,7.133,1.9964,3.2027,0.50735,7.044,11.1322,11.259,7.4187,2.2825,4.6016,1.7021,18.7798,5.289,3.7853,1.1168,2.6624,7.1901,14.1938,2.9069,4.4569,3.2705,1.5898,1.5167,3.7107,9.5387,2.754,2.2847,9.2722,2.0941,2.4218,2.0277,12.4333,2.1068,3.5454,1.1812,14.7709,5.1911,7.4967,4.1329,10.6014,8.0635,7.0223,7.4136,3.757,1.5601,4.4537,,,,,,,,,,,,,,,70,,,
-nG+ROS1T5HC012,1.4415,1.6845,,70-79y,CN,,,18.2485,4.3222,2.399,2.1071,1.3123,edsd,CN,,F,,0.38264,4.3819,4.0759,0.79104,8.5673,1.4046,0.37157,2.5086,2.5391,45.2649,15.7193,234.1957,3.8617,3.651,1.5151,1.7596,3.3668,6.9801,1.9134,3.0188,0.53379,6.3151,10.6652,12.636,6.4468,2.0127,4.734,1.6915,17.4131,6.1169,3.7618,0.93192,2.0641,6.1395,13.2978,3.1367,4.0669,2.7667,1.1638,1.4805,4.2258,9.4214,3.139,2.324,10.3232,2.1324,2.2928,2.1536,12.0433,1.6572,3.3576,1.2082,13.2583,4.7155,7.8741,3.0225,9.5962,6.6717,6.4523,7.0025,3.082,1.2325,4.6755,29,,,0.08044,,,,0.34399,4.0376,3.6161,0.79481,9.8043,1.5538,0.36352,2.6981,2.4689,45.0054,15.384,237.2557,3.5002,3.9735,1.555,1.694,3.2279,6.8047,1.8787,3.19,0.53477,5.7668,10.2878,10.9143,7.5911,2.0685,4.554,1.6125,17.1221,5.1637,3.6114,0.93612,2.5773,6.9244,14.2384,2.4907,4.0328,2.755,1.2343,1.4855,3.7293,9.124,2.8215,2.1184,9.3026,1.6549,2.2056,1.8506,11.8479,1.3884,3.2631,1.1638,12.9203,4.8559,6.7607,3.9162,9.8461,6.5968,6.1679,6.8298,3.1005,1.15,4.4495,,,,,,,,,,,,,,,73,,,
-nG+ROS1T5HC013,1.0758,1.7459,,70-79y,CN,,,17.9951,4.5531,2.4133,2.0566,1.1103,edsd,CN,,F,,0.38904,4.1208,3.6465,0.74775,8.2294,1.4127,0.38703,1.9387,2.3667,45.4069,14.8204,204.0734,3.5026,3.3427,1.5145,1.7573,3.0312,6.6064,1.9552,2.8535,0.40205,5.9258,9.8419,13.6102,6.3457,2.1152,4.7366,1.5699,17.2491,5.6198,3.9433,1.0747,2.4209,6.1907,12.256,2.5224,3.9682,2.9926,1.2491,1.4035,4.0256,9.2995,2.9473,2.0748,9.6645,2.03,2.2758,2.0571,10.4154,1.8612,3.6953,1.2159,13.8567,4.608,7.8799,2.8539,8.9107,7.1869,6.6506,6.8223,3.2268,1.4283,4.5315,28,,,0.07514,,,,0.33694,3.4618,3.7264,0.76768,9.2715,1.6977,0.38263,2.272,2.4491,44.1686,14.1835,207.6328,3.1699,3.6786,1.49,1.7505,3.2442,6.9756,1.9155,3.0977,0.37962,5.1472,10.1663,10.7726,6.7914,2.12,4.624,1.5451,16.9559,4.2523,3.5397,1.0793,2.5015,6.8938,12.9202,2.0316,3.7802,2.9137,1.3858,1.4046,3.862,9.3632,2.7841,2.1229,8.7594,1.6664,2.0896,1.8687,10.3295,1.647,3.7678,1.1062,13.6325,4.9239,7.3572,3.0945,9.5659,6.3764,6.5266,7.0838,3.2715,1.2537,4.2859,,,,,,,,,,,,,,,73,,,
-nG+ROS1T5HC014,2.5243,2.5434,,70-79y,CN,,,19.4836,4.7388,2.6407,2.2414,2.1649,edsd,CN,,M,,0.39642,4.4643,4.9404,0.84337,8.8732,1.4319,0.38727,2.9745,2.8398,47.6442,15.5424,231.6862,4.3737,4.1745,1.502,2.169,3.4626,7.2602,2.0807,3.2824,1.7079,6.8921,11.2543,40.6739,7.0703,2.3699,4.5241,1.902,17.4076,6.4098,3.8039,1.0397,2.4481,6.833,13.1288,4.0712,4.1489,3.0642,1.5144,1.754,4.8286,11.2225,3.0474,2.9735,10.25,2.8394,2.4347,2.5891,11.0473,2.4649,4.0015,1.3691,13.5638,5.3058,8.3587,3.3147,9.6688,7.0429,7.4497,7.097,3.8601,2.259,5.2072,29,,,0.06528,,,,0.36748,4.001,4.6043,0.86274,10.0504,1.7255,0.39605,3.4035,2.8857,48.2744,15.4842,231.8648,4.1853,5.5947,1.5809,1.9812,3.4718,7.5488,1.9065,3.3649,1.6411,5.5486,11.64,30.6841,8.8586,2.3363,4.3593,1.7567,17.9957,4.2038,3.6733,1.0518,2.4686,7.5136,13.5871,2.6285,4.453,2.8235,1.6807,1.7547,4.2319,11.7594,2.8052,2.7133,8.8302,2.4205,2.4355,2.2516,11.3666,2.1804,3.867,1.2564,13.5067,5.2648,8.3454,3.7939,10.2738,7.6891,7.122,7.1688,3.4165,1.7921,4.9783,,,,,,,,,,,,,,,75,,,
-nG+ROS1T5HC015,0.91006,1.9037,,70-79y,CN,,,16.1622,4.2701,2.296,2.0895,0.87039,edsd,CN,,F,,0.42802,4.4614,4.317,0.79086,9.8121,1.4604,0.3938,2.4546,2.6066,43.3422,13.5481,207.8898,4.1343,3.6445,1.6036,2.0503,3.1772,6.9574,2.0115,3.0014,0.39307,6.0503,10.95,10.7903,6.533,2.2419,4.4569,1.7522,19.0436,5.7527,3.8194,1.0646,2.6416,6.8896,14.599,2.7676,3.9968,3.5732,1.4998,1.4245,4.0189,9.5155,3.1477,2.1874,11.6679,2.144,2.341,2.1981,11.9453,1.9032,3.4931,1.2324,14.7205,5.5878,9.4901,3.2399,10.1685,7.7327,6.6927,7.4638,3.876,1.507,4.2817,29,,,0.07325,,,,0.33871,3.494,4.174,0.8021,11.5015,1.519,0.37594,2.7307,2.5314,44.4358,13.0955,209.1347,3.8081,3.9068,1.6672,2.0643,3.3608,7.7075,1.9853,3.183,0.47469,6.0062,11.5048,11.1899,7.42,2.038,4.4357,1.7475,18.8515,5.4042,3.5454,1.1689,2.6103,7.6933,14.7577,2.3955,4.354,3.4705,1.572,1.4081,3.8557,9.4884,3.0009,2.4135,10.0021,2.027,2.1151,2.033,12.197,1.6375,3.2579,1.1538,14.18,5.1829,7.1919,3.977,10.3903,6.7222,6.5152,7.0906,3.6933,1.4588,4.0593,,,,,,,,,,,,,,,71,,,
-nG+ROS1T5HC016,1.6203,1.7982,,70-79y,CN,,,19.6162,4.4525,2.6867,2.174,1.246,edsd,CN,,F,,0.41094,4.5299,4.0341,0.80252,9.2074,1.5756,0.36673,3.2515,2.8472,49.7581,16.505,236.611,3.8341,4.5713,1.5804,1.8592,3.1892,7.2397,1.9945,3.1365,0.45743,6.36,12.0185,15.3692,7.0238,2.2879,4.6044,1.7026,17.9409,5.5959,3.9961,1.0076,2.2115,6.9141,15.5411,3.5645,4.4969,3.2415,1.2838,1.5849,3.9076,9.6351,3.0676,1.9991,11.7391,2.1131,2.3817,2.0488,13.0261,1.8478,3.6223,1.1747,15.4411,5.2108,9.1709,3.4169,10.1367,7.7066,7.2195,7.8138,3.6608,1.3337,4.9872,29,,,0.09281,,,,0.34365,4.0142,3.9055,0.80711,10.0299,1.7233,0.3541,3.2433,2.7232,49.9101,16.0736,238.7635,3.821,4.8058,1.5703,2.0197,3.4137,7.5501,1.8764,3.3454,0.58387,6.2791,12.309,11.703,8.1373,2.0395,4.5246,1.6264,17.3403,4.8127,3.6345,0.93798,2.4037,7.2652,14.9677,3.0013,4.6824,4.09,1.3612,1.5714,3.8449,9.9958,2.8671,2.0447,10.533,2.01,2.2637,1.8819,12.1733,1.8938,3.5546,1.09,14.5954,5.1068,8.8382,4.4534,10.5219,8.0088,6.9328,7.5089,3.2982,1.3263,4.6503,,,,,,,,,,,,,,,72,,,
-nG+ROS1T5HC017,1.3317,2.6417,,60-69y,CN,,,15.9099,4.0268,2.0572,1.7958,0.94521,edsd,CN,,F,,0.37096,4.2006,3.6338,0.80394,8.7883,1.4061,0.34747,2.7953,2.3391,42.7712,13.0015,194.1091,3.4296,3.7017,1.5459,1.7621,3.2457,6.9648,1.9862,3.129,0.52592,6.1018,10.0447,8.8317,6.423,2.0892,4.1746,1.7359,17.2447,6.2887,3.5098,1.0092,2.1265,6.5146,13.3602,2.9202,3.9303,2.9939,1.37,1.315,3.8357,9.1904,3.0109,2.0623,11.0258,2.2208,2.0089,2.1408,10.7072,1.7918,3.5573,1.0628,13.0419,5.189,8.2238,3.0325,9.14,7.1959,6.5387,6.8696,3.6177,1.4648,4.2826,28,,,0.07786,,,,0.32621,3.525,3.4448,0.8509,10.396,1.6289,0.35716,2.8482,2.3362,43.8019,12.8616,197.8048,3.3712,4.3497,1.6064,1.8087,3.5199,7.3746,1.9686,3.3659,0.62914,6.1716,10.9484,7.1317,7.2475,1.9363,4.351,1.6433,16.3854,5.249,3.4608,0.89907,1.9986,7.2797,13.2445,2.2015,4.0096,3.3793,1.3675,1.3693,3.5451,9.3981,2.8535,2.1241,9.0724,1.9874,1.9175,1.9056,10.9514,1.8749,3.2747,1.0058,13.5211,4.9908,7.5884,3.707,8.9606,7.4978,6.3908,7.0546,3.2264,1.4273,4.105,,,,,,,,,,,,,,,65,,,
-nG+ROS1T5HC018,1.4677,1.8126,,60-69y,CN,,,13.3723,3.4172,2.1231,1.9186,1.1862,edsd,CN,,M,,0.37441,4.4758,4.1434,0.83207,8.9214,1.5206,0.37607,3.0867,2.5626,37.811,11.7116,205.4184,4.1638,4.7757,1.671,2.0207,3.2423,6.9936,2.012,2.8613,0.41712,6.3167,11.3663,11.4972,6.5829,2.3807,5.0687,1.6422,19.4124,5.9184,4.074,1.0315,2.4243,6.4971,13.5582,3.2254,4.0093,3.3582,1.554,1.2568,4.2633,10.7938,2.9568,2.1286,11.2429,2.309,2.4171,2.3492,12.5277,1.9657,3.6592,1.1778,14.2289,5.3553,8.3346,3.1956,11.1494,7.4312,6.3845,7.4731,3.4175,1.5103,3.96,27,,,0.06589,,,,0.33456,4.0313,4.0089,0.81161,9.3977,1.6576,0.38368,3.1163,2.5652,37.3972,10.8603,207.8475,3.6724,4.5913,1.6677,2.1614,3.1709,7.3344,1.8698,3.0354,0.48196,6.2715,11.3876,10.7542,7.378,2.1928,5.0936,1.5318,19.0364,5.1762,3.7885,1.1716,2.7041,7.1428,13.9134,2.5746,3.8946,3.8414,1.5509,1.3054,3.883,10.3332,2.7925,2.0946,10.3026,2.1869,2.3214,2.004,12.0085,1.8701,3.4401,1.1517,13.9443,5.6586,8.0063,3.7279,9.7519,7.5744,6.1141,7.6642,3.2917,1.4206,3.8544,,,,,,,,,,,,,,,68,,,
-nG+ROS1T5HC019,1.5343,2.2987,,60-69y,CN,,,15.4248,4.5422,2.0473,2.1196,1.2727,edsd,CN,,M,,0.47854,4.8432,4.0614,0.91774,9.5449,1.6423,0.38702,3.0346,3.1461,29.3947,12.7157,245.8349,4.352,4.7009,1.7886,2.092,3.662,8.1847,2.1645,3.4515,0.57533,6.4983,11.6051,13.4763,7.8393,2.553,5.3246,1.8811,21.0104,6.9378,3.9287,1.0978,2.5842,7.1976,14.6139,3.7074,4.8176,3.8011,1.6565,1.5693,4.7706,10.6517,3.5992,2.3272,13.5281,2.7765,2.5227,2.3045,13.433,2.3233,3.8682,1.2108,15.8498,4.9912,10.1358,4.0105,12.4455,8.2163,7.4762,7.8928,4.2752,1.7436,4.6891,29,,,0.07502,,,,0.43386,4.1578,4.0337,0.83141,11.3973,1.8997,0.40045,3.1299,3.1208,27.9343,12.4128,252.5323,4.3541,4.6508,1.6729,2.2589,3.8015,7.7486,2.1126,3.5614,0.64657,7.4588,12.6046,10.2175,8.7643,2.3921,4.9065,1.8795,20.3537,5.9387,3.8949,1.1114,2.5793,8.4067,15.5315,3.2252,4.8151,3.8511,1.7267,1.6126,4.5318,11.2847,3.1184,2.3811,11.1539,2.3873,2.564,2.0373,13.0447,2.0183,3.8347,1.1978,15.8016,5.3549,8.8275,4.5474,12.1937,7.4287,7.3034,7.7944,4.171,1.3905,4.4591,,,,,,,,,,,,,,,67,,,
-nG+ROS1T5HC020,1.0668,1.8248,,60-69y,CN,,,15.3939,4.6817,2.5912,2.1092,1.0806,edsd,CN,,F,,0.37769,4.4173,4.1184,0.8138,8.8843,1.5322,0.35684,2.4886,2.6191,45.9631,13.3136,196.7427,3.7664,3.9273,1.5673,1.8545,3.2061,6.9637,1.8953,2.8595,0.49065,5.653,10.7251,8.6961,6.5888,2.4377,4.5658,1.6741,18.1056,6.0443,3.7955,0.96148,2.4017,6.256,13.0863,2.8357,3.9667,2.9361,1.5016,1.4039,3.9841,9.27,3.0087,2.1631,9.9857,2.1911,2.4795,2.3653,11.9425,2.1489,3.7795,1.1325,14.5737,5.1043,8.3573,3.2171,9.5526,7.3936,7.2292,7.6994,3.519,1.6575,4.2758,29,,,0.07482,,,,0.3531,3.7748,4.0836,0.81146,10.6284,1.7366,0.3594,2.7324,2.8507,46.127,12.6874,200.7114,3.6115,4.1014,1.5551,1.9982,3.5505,7.3593,1.8166,2.9997,0.65429,6.0555,11.0786,8.3533,7.3233,2.1214,4.4676,1.5541,17.2619,4.8922,3.5901,0.98894,2.4558,7.3268,14.3263,2.4613,3.9979,3.5137,1.4772,1.4927,3.5904,9.138,2.8393,2.2999,9.6499,1.8712,2.2296,1.9686,11.793,1.7591,3.9906,1.0384,14.1763,5.1467,7.8821,3.8384,9.275,7.3024,6.5912,7.3909,3.4062,1.299,4.0859,,,,,,,,,,,,,,,68,,,
-nG+ROS3T0AD001,1.6946,1.9137,,70-79y,AD,,,17.6046,4.2263,2.4388,2.1845,1.141,edsd,AD,,M,,0.36041,4.5751,3.8958,0.59288,10.0478,1.6058,0.3306,3.4869,2.5373,42.157,14.5612,207.5702,4.3733,4.7057,1.335,1.924,3.3089,6.6987,1.8854,2.5432,0.82843,6.3979,10.9225,17.7497,6.9976,2.3243,4.757,1.714,17.4396,6.8622,3.7695,1.3318,2.4799,6.8184,14.6998,3.2907,3.9573,3.5511,1.4045,1.654,4.2619,10.6018,2.9113,2.4669,12.7921,2.2186,2.5126,2.499,11.6796,1.9032,3.1469,1.1728,13.4785,5.057,8.4822,3.9881,10.3233,7.5915,6.6044,7.4728,3.444,1.5387,4.636,25,,AD,0.09071,,,,0.37711,4.4232,3.8345,0.65164,10.9287,1.7528,0.38985,3.3256,2.7093,42.3458,13.8917,215.7579,4.2506,4.4075,1.4172,2.038,3.3654,6.4508,1.8942,2.7959,0.79701,6.7931,11.5109,15.0645,7.7851,2.1154,4.693,1.6941,16.95,5.5177,3.6847,1.1047,2.5932,7.7053,15.7108,2.9302,4.0239,3.6102,1.3391,1.6238,3.911,10.9019,2.6167,2.3501,11.4189,2.0784,2.3103,2.1212,12.1241,1.7711,3.3503,1.2249,14.0337,5.2041,8.9673,3.9438,11.5295,7.6178,6.6101,7.2795,3.0679,1.4543,4.4318,,,,,,,,,,,,,,,78,,,
-nG+ROS3T0AD002,2.6594,3.6291,,50-59y,AD,,,18.3788,5.3382,2.9866,2.591,2.171,edsd,AD,,M,,0.39484,4.6921,4.469,0.79912,8.7108,1.4198,0.37168,3.6084,2.7712,54.6501,16.4669,214.3011,4.8279,4.4191,1.5724,2.1978,3.4402,8.4934,1.9302,2.8751,1.1271,6.5861,11.7461,32.1618,8.5248,2.1402,4.4309,1.844,16.4964,5.981,3.6606,1.2218,2.8656,7.1731,12.8711,3.5588,4.8401,3.4197,1.4551,1.6719,4.0424,9.3968,3.3151,2.4568,11.3546,2.6079,2.3702,2.5504,12.5472,2.3804,3.4659,1.2704,13.8501,5.8365,7.9048,3.6653,10.0025,7.7323,7.5892,7.882,3.8341,2.0348,5.031,18,,AD,0.07733,,,,0.38212,4.3085,4.5078,0.81323,10.8511,1.6962,0.40337,3.936,3.0675,54.9233,15.2336,226.5443,4.3366,4.6279,1.7416,2.1704,3.548,8.823,1.8605,3.101,1.2051,7.0218,12.2874,34.3074,9.125,2.2866,4.1448,1.7905,16.5037,5.5575,3.5655,1.1633,2.8414,8.3038,15.2797,3.55,4.5756,3.551,1.6201,1.7507,3.8168,9.8164,3.2138,2.5579,10.9818,2.2331,2.5219,2.3959,12.7136,2.2771,3.7304,1.2933,13.9778,6.1697,8.3565,4.0048,10.6658,8.7756,7.4172,8.7521,3.6156,1.6638,4.8413,,,,,,,,,,,,,,,52,,,
-nG+ROS3T0AD003,1.8493,1.3802,,+80y,AD,,,15.3461,4.6473,2.4745,2.0021,1.5099,edsd,AD,,F,,0.31776,4.1585,3.7776,0.63181,6.8492,1.3231,0.30231,2.151,2.2161,39.0957,12.6372,160.0347,3.5404,3.4434,1.2807,1.8102,3.2042,5.9556,1.8303,2.4073,0.73893,4.7346,9.1131,18.5578,6.0511,2.0421,4.245,1.5676,16.3618,4.9286,3.3954,1.0753,2.3106,6.163,10.9002,2.3928,3.3854,2.8238,1.2927,1.2698,3.976,9.1319,2.7527,2.0618,9.8752,2.3381,2.0234,2.0569,10.6697,1.9443,2.7618,1.1,12.363,4.7366,7.7894,2.8757,9.3198,6.1784,5.5339,6.4136,3.2392,1.4275,4.0644,27,,AD,0.07,,,,0.29812,3.9012,3.5605,0.67398,8.2316,1.4567,0.32923,2.4034,2.3884,39.8051,11.8682,160.9065,3.4837,3.8222,1.4063,1.6943,3.3366,6.3894,1.8708,2.7121,0.91186,4.9555,9.6125,14.2137,6.8722,1.8843,4.1494,1.597,16.2457,3.9047,3.336,0.97379,2.1241,6.7347,11.5526,2.188,3.6552,2.8593,1.3959,1.2633,3.5503,9.1998,2.656,2.0454,8.7441,1.8768,1.9656,1.8492,10.0587,1.6023,2.9175,1.1364,12.0865,4.3702,6.883,3.4034,9.1265,6.839,5.37,7.0344,3.2372,1.289,3.8355,,,,,,,,,,,,,,,84,,,
-nG+ROS3T0AD004,2.3475,1.977,,+80y,AD,,,19.3377,4.8141,2.6063,2.1092,1.9063,edsd,AD,,F,,0.29365,3.9571,4.1862,0.68548,9.8171,1.386,0.32841,3.2504,2.0586,45.121,15.21,209.9187,4.2224,4.7039,1.2683,1.9234,3.1014,6.9755,1.8858,2.6516,2.2641,6.1578,10.32,28.677,7.0679,2.0831,3.9827,1.5429,18.3016,5.7092,3.5062,1.0982,2.5591,6.0318,13.1751,3.1664,4.1288,3.1904,1.4244,1.5208,4.0922,10.3191,2.7347,2.3419,10.3798,2.5248,2.2263,2.0661,12.6951,2.1522,3.3609,1.0778,13.8401,4.8915,9.1593,3.3597,10.6964,7.4393,6.4873,6.5726,3.4508,1.591,4.8014,26,,AD,0.07932,,,,0.29262,3.2435,3.9564,0.71488,9.2071,1.5145,0.33861,3.549,2.0924,46.3996,15.0782,209.0358,4.1768,5.0668,1.2694,2.0862,3.2779,6.2903,1.9041,3.0506,3.6454,6.0251,9.8718,31.5216,7.5056,2.0158,3.97,1.5715,17.0585,4.4743,3.4559,0.97523,2.3435,7.2702,12.3066,2.5101,4.1177,3.2295,1.5145,1.5656,3.5844,10.0427,2.481,2.1909,9.348,2.1164,1.9636,1.9379,11.1179,1.792,3.0753,1.0877,13.3726,5.1302,7.0021,4.2825,10.2994,6.1715,6.2733,6.2998,3.5287,1.4593,4.5237,,,,,,,,,,,,,,,81,,,
-nG+ROS3T0AD005,1.7427,1.8741,,60-69y,AD,,,19.3173,4.582,2.7442,2.2693,1.6454,edsd,AD,,M,,0.43145,4.9975,4.4056,0.66297,9.7323,1.503,0.36785,3.9202,3.0363,49.2031,17.0724,248.9335,4.7084,4.5908,1.4181,2.0523,3.4294,7.2141,2.031,2.7733,1.363,7.1014,11.4267,28.5522,7.704,2.5075,5.0405,1.9404,17.8097,6.3818,3.8041,1.2428,2.8206,7.5799,14.562,3.365,4.4501,3.2166,1.6058,1.8031,4.3697,10.2423,2.9561,2.5789,11.6419,2.5676,2.6607,2.5286,13.5479,2.1005,3.6271,1.2756,15.0896,5.6207,8.6666,3.3894,9.7669,7.5533,7.9181,6.5667,3.8073,1.6919,4.9977,23,,AD,0.07256,,,,0.4372,4.4803,4.1678,0.71715,10.7487,1.8936,0.40229,3.6394,3.2269,48.6004,15.6101,260.5051,4.5358,4.8444,1.4334,2.1312,4.1828,7.2911,2.2114,3.051,1.1578,7.4683,11.1823,21.2482,8.2907,2.3471,4.7462,2.0997,17.9533,6.0795,3.8847,1.0401,2.2485,8.8107,14.0717,3.5509,4.6522,3.8623,1.6039,1.8391,4.262,10.5945,2.7099,2.5809,10.7519,2.9351,2.4037,2.4137,13.2427,2.3823,3.8952,1.244,15.6293,6.0073,8.2259,4.5184,10.2414,8.2518,7.631,7.2006,3.4307,1.8975,4.8195,,,,,,,,,,,,,,,62,,,
-nG+ROS3T0AD006,1.6236,2.1107,,70-79y,AD,,,15.9375,4.5693,2.1846,2.1257,1.6396,edsd,AD,,M,,0.41978,4.707,4.0291,0.70417,9.9879,1.6642,0.33912,2.9137,3.0868,43.381,13.3684,216.4528,3.8371,4.5715,1.3727,1.7616,3.507,7.2492,1.9994,2.9228,0.80324,6.5865,10.8291,24.2123,7.5909,2.4673,4.7702,1.751,18.5232,7.0538,3.9717,1.164,2.5227,6.7189,13.2642,3.5947,4.3823,3.3273,1.5397,1.5891,4.3659,10.8542,2.9404,2.3836,11.8374,2.6676,2.345,2.2125,12.4075,2.1403,3.3868,1.2297,15.8069,5.2826,9.5542,4.0429,11.5678,6.875,6.8284,6.8292,3.6655,1.7699,4.5443,25,,AD,0.06634,,,,0.41158,4.0261,4.0205,0.6968,10.8702,1.8425,0.36524,2.9376,3.1659,43.7226,13.0437,220.5805,4.2643,4.9171,1.4097,1.7979,3.85,6.6504,1.9719,3.0205,0.97819,6.3129,10.8711,21.0366,7.8612,2.1175,4.4752,1.7142,19.1862,5.92,3.7967,1.1534,2.5573,8.014,12.9283,2.9651,4.0166,3.1583,1.3383,1.5931,4.0011,11.2169,2.6524,2.3438,10.9578,2.3003,2.0783,2.0236,12.817,1.9352,3.514,1.189,15.1247,5.1148,8.1528,4.3322,10.2496,7.1015,6.4129,7.0752,3.2971,1.5042,4.3972,,,,,,,,,,,,,,,71,,,
-nG+ROS3T0AD007,1.1873,1.3598,,60-69y,AD,,,15.585,4.2774,2.097,1.8229,1.2126,edsd,AD,,F,,0.35007,4.2094,3.4818,0.7152,7.4835,1.3752,0.308,3.3301,2.4242,36.7788,11.7593,188.3665,3.7297,4.0752,1.36,1.681,2.9356,6.1484,1.6888,2.6804,0.56021,5.4631,9.8659,14.178,6.8258,2.1681,4.1875,1.509,16.9539,5.3272,3.4263,1.0109,2.5647,6.178,12.1925,3.063,3.7928,3.2185,1.3086,1.3782,3.4659,8.625,2.6462,1.9411,10.5503,2.2326,2.3133,2.0972,12.6388,1.7742,3.0208,0.97981,12.2805,4.9642,7.5654,3.4805,9.556,6.435,6.1208,6.6252,3.3211,1.4821,4.128,25,,AD,0.07522,,,,0.30681,3.7014,3.3575,0.73957,7.6747,1.6854,0.32039,3.5049,2.4566,37.2014,11.6065,187.6209,3.4233,4.4068,1.4147,1.681,3.3626,6.085,1.6787,2.7989,0.76905,5.6698,9.7323,12.3522,7.5965,2.0994,4.2146,1.6189,16.8034,4.3769,3.4573,0.96676,2.4699,7.2112,11.9513,2.6637,3.5584,3.2878,1.3722,1.3407,3.1766,8.5006,2.4122,2.1106,9.1609,1.9166,2.1007,1.9834,11.769,1.5651,3.0847,1.0023,11.8843,4.8672,6.6309,3.9446,8.8583,6.1703,5.7666,6.7932,3.2376,1.3466,3.9207,,,,,,,,,,,,,,,66,,,
-nG+ROS3T0AD008,1.4892,1.6062,,+80y,AD,,,16.4883,4.0424,2.3787,2.0853,1.2759,edsd,AD,,F,,0.33374,3.9115,3.8737,0.65465,8.7738,1.3295,0.33725,2.7963,2.548,42.7181,13.5418,187.6717,4.0186,3.7832,1.3281,1.9553,3.6121,6.5177,1.9845,2.7613,0.80604,5.2621,10.2545,18.1597,6.8281,2.1873,4.4521,1.5953,17.1431,4.9112,3.5451,0.99614,2.2863,5.9132,12.9215,2.5982,3.6688,3.5456,1.5561,1.4265,4.0479,9.7879,2.884,2.1171,11.5268,2.1897,2.2182,1.9256,11.0828,1.5861,3.0976,1.1716,14.102,4.8908,9.2047,2.8795,10.4819,6.5551,6.1844,6.9901,4.3296,1.2654,4.2827,25,,AD,0.08136,,,,0.33228,3.4536,3.7826,0.70437,10.4181,1.5852,0.35084,2.8545,2.6553,43.4099,13.4176,195.1598,4.0917,4.2043,1.3987,1.7923,3.2388,6.3825,1.9636,3.1466,0.76116,5.6078,10.4349,12.8554,7.5887,1.9132,4.357,1.5552,18.9317,4.5156,3.5988,0.90939,2.3346,6.7752,14.4077,2.2418,3.9066,2.9592,1.3601,1.4021,3.9248,10.4842,2.754,2.1078,9.6931,2.3054,2.0676,1.7293,11.8168,1.7452,3.3535,1.1198,13.3892,4.7624,8.0458,3.6786,10.3213,6.5986,6.0502,6.9277,3.3421,1.2654,4.0602,,,,,,,,,,,,,,,85,,,
-nG+ROS3T0AD009,1.8611,2.3987,,70-79y,AD,,,16.415,3.8579,2.0238,1.868,1.9525,edsd,AD,,F,,0.32609,4.1335,3.7338,0.66135,8.0959,1.3274,0.30157,2.3528,2.6142,38.9969,12.9974,179.8191,3.9535,3.4995,1.3025,1.7087,3.1043,5.9773,1.8172,2.4155,1.2114,4.9306,9.2873,23.8012,5.6111,2.0975,4.5898,1.5268,16.5627,5.768,3.3728,0.93261,2.037,5.8552,12.0653,2.6691,3.2949,2.7057,1.3388,1.5236,3.7729,9.0785,2.6127,2.1827,10.436,1.9638,2.0272,2.1079,10.3514,1.6416,3.046,1.0907,11.9706,4.6264,6.846,2.8184,9.249,5.8236,6.0637,6.366,3.205,1.5013,4.2763,24,,AD,0.07027,,,,0.305,3.9589,3.6489,0.64989,9.5952,1.3442,0.31728,2.308,2.8393,39.1359,12.9291,181.3894,3.7618,3.9211,1.3272,1.78,3.2421,6.0484,1.8216,2.5942,1.6285,5.179,9.5319,21.9802,5.9926,1.8268,4.4261,1.5113,16.1624,4.2694,3.2234,0.92508,2.0625,6.2218,12.1948,2.0007,3.0002,2.8518,1.2473,1.4299,3.4715,9.185,2.3902,2.2341,8.2358,1.8088,1.8137,1.9547,10.1731,1.7405,3.0412,1.0818,12.5938,4.8389,6.2404,3.3322,8.8912,6.047,5.7702,6.5847,2.8594,1.3782,4.0988,,,,,,,,,,,,,,,73,,,
-nG+ROS3T0AD010,1.6409,2.7372,,+80y,AD,,,16.2165,3.9406,1.9934,1.7942,1.8279,edsd,AD,,F,,0.42432,4.0572,3.9405,0.99575,8.6848,1.6322,0.3679,3.0384,3.7262,39.7345,13.4104,217.8863,4.0747,4.3308,1.7909,1.7632,3.4123,7.1638,1.8084,3.3065,0.6989,6.9858,11.183,27.1511,6.7015,2.567,4.4628,1.6191,18.325,6.6593,3.751,1.1028,2.645,5.9229,13.9554,3.3613,4.1709,3.3086,1.3698,1.5699,3.8112,10.027,3.1173,2.2734,12.3986,2.5427,2.5123,2.1835,12.6653,1.9727,3.827,1.1476,13.2744,4.6362,8.907,3.1925,10.8141,7.3101,6.8234,7.1679,3.4615,1.5399,4.5855,28,,AD,0.0635,,,,0.39726,3.7686,3.8941,0.9344,10.4467,1.8168,0.38177,3.2397,3.9094,40.2388,12.7606,219.7823,4.0287,4.9237,1.7773,2.0596,3.5642,7.1403,1.8087,3.6047,0.66879,6.6586,11.756,20.8601,7.3271,2.325,4.2837,1.5945,17.4824,4.9969,3.5975,0.99532,2.3138,6.5218,14.8914,3.0135,4.2429,3.5443,1.4083,1.5413,3.6745,10.3011,2.8142,2.2603,9.7635,1.9113,2.4155,1.9752,11.9639,1.7988,3.8481,1.0738,13.1853,4.6988,7.0375,4.1532,10.7756,6.8121,6.5958,7.9797,3.4362,1.3541,4.3405,,,,,,,,,,,,,,,81,,,
-nG+ROS3T0AD011,1.9908,2.8461,,70-79y,AD,,,18.025,4.824,2.5587,2.1742,2.3436,edsd,AD,,M,,0.31106,4.2709,3.9148,0.70803,9.6711,1.4003,0.32983,3.3726,2.424,45.6187,16.3574,208.8861,4.0188,4.4484,1.4531,1.8573,3.1838,6.6814,1.8008,2.8995,1.2456,6.9006,10.1351,31.1066,7.895,2.2289,4.0383,1.5932,16.4313,6.1699,3.2623,1.097,2.3577,6.2112,12.5685,3.8695,4.5582,2.9717,1.4433,1.6759,4.1748,10.1114,2.9832,2.2164,11.035,2.2548,2.327,2.1129,12.3687,2.0838,3.1297,1.0662,11.3042,4.7314,9.7778,3.6511,10.3302,6.5317,6.7659,6.736,3.6681,1.463,4.7044,28,,AD,0.06422,,,,0.31464,3.7595,3.6969,0.62673,9.215,1.5988,0.3321,3.6102,2.7199,45.7654,15.5442,207.3436,3.8597,4.6554,1.2605,1.7651,3.4393,6.1182,1.6895,3.0664,1.7858,6.1681,9.6576,34.3032,8.0838,2.0035,4.0959,1.4899,15.482,4.95,3.2505,1.1577,2.647,6.6016,12.312,2.959,4.0927,2.9696,1.3766,1.5922,3.5207,9.5439,2.5944,2.2297,9.9962,2.1324,1.9962,1.9084,11.4401,1.8615,3.2204,1.0627,12.6424,4.8735,7.4532,3.9435,10.1591,6.2336,6.1978,6.1222,3.3307,1.5549,4.4183,,,,,,,,,,,,,,,75,,,
-nG+ROS3T0AD012,1.8705,2.0842,,60-69y,AD,,,16.1588,3.9762,2.0377,1.9231,1.8466,edsd,AD,,F,,0.28521,3.7149,3.6201,0.69431,6.946,1.2668,0.27877,3.3412,2.1002,39.0933,14.047,190.1264,3.6249,3.5666,1.256,1.6037,2.6663,5.3686,1.5688,2.9396,1.2229,4.9027,8.1732,30.4767,6.8239,2.0279,4.0876,1.3417,15.4755,4.5397,3.2354,0.94874,2.1558,5.3896,10.2645,2.8995,3.7048,2.9716,1.2695,1.4815,3.5265,8.7958,2.7139,2.1573,9.6135,2.265,1.9543,2.1163,10.3883,1.8391,2.7183,0.97237,11.831,4.437,7.0387,2.6126,8.7612,5.7279,6.0018,5.8077,3.3566,1.4355,4.4441,9,,AD,0.06579,,,,0.28634,3.4889,3.3259,0.76898,8.7368,1.5609,0.31519,3.1922,2.5534,38.4725,13.1359,202.999,3.6036,4.1096,1.4491,1.7031,3.0618,5.7968,1.5802,3.1711,1.0796,5.9191,9.1946,20.3151,7.2106,1.8789,3.9474,1.3566,15.3492,4.493,3.3093,0.95845,2.3593,6.3844,11.1503,2.7687,3.7271,2.9738,1.2226,1.4935,3.4656,9.4991,2.5692,2.06,8.5484,2.265,2.0628,1.9324,11.2482,1.6939,2.8452,0.98978,12.212,4.5286,5.992,3.8803,10.0134,5.6891,5.9534,6.1097,3.1308,1.4436,4.2851,,,,,,,,,,,,,,,68,,,
-nG+ROS3T0AD013,2.7489,2.6286,,70-79y,AD,,,19.522,5.6116,2.987,2.2979,2.3921,edsd,AD,,M,,0.40365,5.3957,5.065,0.80298,9.418,1.5211,0.37947,3.2873,2.5005,46.9977,15.5227,225.5933,4.6239,4.3734,1.4887,2.1482,3.4696,6.8121,2.1586,3.127,1.3591,5.6019,10.9206,32.6877,7.5044,2.4125,5.2259,1.973,18.7331,5.4347,3.9267,1.2392,2.9556,7.8788,13.328,3.7368,3.7503,3.4774,1.5424,1.6762,4.8942,11.3415,3.1608,2.7114,11.6129,3.1072,2.568,2.4552,12.6607,2.5081,3.8304,1.3946,15.5816,6.0767,8.7975,3.2804,11.8854,7.0438,7.4256,7.01,3.9344,2.0155,4.9542,28,,AD,0.07715,,,,0.37692,4.7016,4.8816,0.82463,10.7221,1.7314,0.41085,3.4009,2.9012,48.6965,15.1746,231.234,4.3948,4.502,1.5516,2.2165,3.8329,7.0327,2.1899,3.307,1.614,5.3836,11.4971,32.0847,7.659,2.1777,5.1288,2.0599,18.2068,4.6014,3.8959,1.1385,2.8719,8.8586,13.8898,2.9587,3.6938,3.9717,1.5357,1.6749,4.2915,10.9706,2.9383,2.7515,9.915,2.6297,2.3987,2.3733,13.4418,2.0618,4.0497,1.3605,16.5398,5.893,7.8348,3.7511,10.6607,7.6887,7.0514,7.6612,3.7643,1.6957,4.8424,,,,,,,,,,,,,,,70,,,
-nG+ROS3T0AD014,1.9111,2.7178,,60-69y,AD,,,16.6617,5.0999,2.4648,2.3064,1.7547,edsd,AD,,M,,0.30878,3.8518,3.632,0.65329,8.2258,1.3156,0.29742,2.7925,2.3782,45.0515,15.2779,206.891,3.771,3.9512,1.317,1.9383,2.9832,6.0265,1.6821,2.6601,1.5065,6.1533,10.207,27.0472,6.518,2.0016,3.9864,1.5073,15.7695,5.0946,3.1832,0.89426,2.1719,5.7755,12.5967,3.4076,3.9752,3.1947,1.3618,1.429,4.1086,9.7632,2.7861,2.1779,10.283,2.2578,2.0315,2.0287,9.5847,1.8418,3.1562,1.009,11.9654,4.7418,9.085,3.0648,9.1723,6.2265,6.4687,6.2617,3.4857,1.3774,4.3572,23,,AD,0.06403,,,,0.29945,3.3244,3.3852,0.70242,9.5494,1.4276,0.32726,3.1261,2.6146,46.8572,14.8074,212.7922,3.8102,4.7016,1.4113,1.6408,3.1352,6.6711,1.6907,2.8752,1.1437,6.173,11.0511,21.9738,7.5827,1.8924,3.9937,1.5055,16.2826,4.4037,3.2603,0.99292,2.3241,6.5434,13.0026,2.7992,4.0501,2.7895,1.356,1.3842,4.0214,10.5074,2.5166,2.1101,8.9266,2.31,2.0795,1.8649,10.0526,1.9312,3.2657,0.99021,12.5425,4.5393,8.0874,4.0085,9.727,6.605,6.1396,6.3507,2.9562,1.3929,4.1354,,,,,,,,,,,,,,,69,,,
-nG+ROS3T0AD015,3.7693,2.8987,,60-69y,AD,,,17.7593,5.6435,2.9466,2.4551,3.7567,edsd,AD,,M,,0.42438,5.2966,5.24,0.93165,11.3392,1.6343,0.42319,4.4077,2.7471,49.4891,13.8672,171.3762,5.0758,5.3929,1.81,2.4743,3.9876,7.8013,2.2053,3.3804,1.7941,7.6584,11.8957,58.4504,8.8932,2.534,5.9994,2.0682,22.4796,7.6538,4.0782,1.5852,3.3004,8.3647,15.2632,4.3693,4.9457,4.3849,1.6744,1.4867,5.0996,13.7199,3.6242,2.8774,14.138,3.1049,2.7288,2.6109,15.5022,2.4123,3.52,1.3904,15.8233,6.4664,11.8785,4.1396,12.7091,8.0023,6.3572,7.5491,4.3703,1.8995,4.7201,21,,AD,0.07159,,,,0.39919,4.7391,4.75,0.84385,12.5335,1.8453,0.43215,4.3025,2.9661,51.5474,13.2315,179.8113,4.9595,5.9276,1.4602,2.1004,4.4916,8.1592,2.1728,3.6912,2.2274,7.469,12.3597,57.8325,9.6405,2.422,6.1242,1.9543,20.8231,6.468,4.2479,1.5388,2.9385,9.0827,16.2184,3.864,5.0413,3.8318,1.5784,1.5261,4.5744,13.3566,3.1894,3.0874,12.6202,2.9625,2.6818,2.519,16.172,2.3534,3.6372,1.3844,16.9206,6.2078,10.1282,5.673,13.5756,8.932,6.5265,6.7543,3.7104,1.9199,4.6268,,,,,,,,,,,,,,,69,,,
-nG+ROS3T0HC001,2.4393,1.9084,,60-69y,CN,,,20.545,5.4387,2.8551,2.5913,1.8683,edsd,CN,,M,,0.41387,5.4071,4.8613,1.0669,10.8554,1.6751,0.40882,3.7251,2.9527,48.5069,16.1352,250.3627,5.2039,5.6165,2.055,2.2823,3.9511,8.7704,2.2756,3.7395,0.68632,7.6213,13.9209,21.4459,8.4315,2.7616,5.4866,2.1069,21.696,7.6079,4.2153,1.3398,3.0378,7.9523,17.6266,3.8992,4.9305,3.79,1.7031,1.7673,5.8096,14.0712,3.8436,2.9316,15.2824,3.1023,2.9926,2.7744,14.5931,2.5288,3.4106,1.4707,14.3559,6.2148,10.9359,4.4894,13.2127,8.7619,8.0975,9.1,4.2512,2.0798,5.4181,27,,,0.09316,,,,0.39851,4.9389,4.4451,1.0465,12.0751,2.0518,0.44027,3.8929,3.2449,50.7475,14.9431,257.0058,4.588,6.4285,2.1363,2.2514,3.9677,9.4503,2.2534,3.9872,0.68499,8.4875,15.13,20.2643,9.0223,2.5046,5.3489,2.1056,21.3093,5.6263,4.4547,1.4549,3.3463,9.1646,18.12,3.6534,5.0926,3.5722,1.8631,1.803,5.1543,13.8605,3.6548,2.7424,12.1475,3.0347,2.7907,2.5395,14.6459,2.5439,3.7901,1.4301,16.4699,6.496,9.3329,5.4935,13.2102,7.9397,7.9044,9.5512,3.8973,1.852,5.202,,,,,,,,,,,,,,,69,,,
-nG+ROS3T0HC002,1.0048,2.2035,,60-69y,CN,,,17.7846,4.7861,2.9013,2.407,1.1281,edsd,CN,,F,,0.38536,4.1461,4.175,0.83393,9.3786,1.3676,0.34977,2.5886,2.8026,51.7045,14.8643,182.3985,4.1651,4.362,1.7098,1.9219,2.9401,7.3465,1.8816,3.0843,0.44135,6.7482,10.8767,12.4405,7.706,2.2914,4.2647,1.5915,16.473,6.2249,3.4737,0.96672,2.3554,5.9834,14.0014,3.4333,4.3904,3.2644,1.4832,1.5061,4.1946,10.1777,3.2195,2.5846,11.3254,2.5273,2.336,2.3384,11.3597,1.8994,3.7885,1.0768,12.9686,4.8506,9.5017,3.4799,9.3142,7.2714,6.0547,7.3823,3.5457,1.5884,4.2721,29,,,0.07222,,,,0.34508,3.4878,4.0509,0.88724,8.9648,1.6186,0.36602,2.9174,2.7661,52.3719,14.668,185.7545,4.0128,4.648,1.7855,1.9712,3.4674,7.569,1.9615,3.3929,0.55737,6.4388,11.8572,11.6909,8.5063,2.2221,4.2741,1.5712,16.2943,5.0661,3.6181,1.1702,2.3862,6.8672,14.027,2.7593,4.6201,3.2114,1.6097,1.4893,3.7354,10.1423,3.0706,2.4073,10.4306,2.5448,2.3077,2.0825,11.6145,1.8633,3.6568,1.0439,13.2127,5.0149,8.3674,4.1509,9.6495,7.1922,5.8915,8.0653,3.269,1.3897,4.0399,,,,,,,,,,,,,,,68,,,
-nG+ROS3T0HC003,1.7179,2.794,,60-69y,CN,,,16.0896,5.078,2.6387,2.229,1.7204,edsd,CN,,M,,0.36127,4.0964,3.958,0.87665,8.5316,1.3079,0.35928,3.6443,2.9888,50.1394,14.0383,197.7453,4.4762,4.9364,1.7041,1.9447,2.9133,7.7126,1.78,3.4216,1.1802,6.4962,12.1686,22.3409,7.7784,2.2508,4.1062,1.5185,17.156,6.1245,3.4544,1.016,2.3418,6.3947,14.8918,3.1964,4.6073,3.0969,1.5697,1.5101,4.503,10.9055,3.2914,2.3436,11.928,2.6774,2.3967,2.2792,11.9987,2.2021,3.487,1.1544,13.9615,5.384,9.1577,3.8011,10.2256,8.0034,7.0201,7.0794,3.639,1.6944,4.3227,29,,,0.0769,,,,0.34326,3.689,3.9995,0.88171,9.6515,1.5077,0.36814,3.8947,3.2005,49.447,13.0052,203.3339,4.542,4.9176,1.6826,2.1442,3.2315,7.6151,1.7041,3.5712,1.2944,7.0902,12.3609,22.2937,8.1593,1.9009,4.2293,1.5856,16.4378,5.1874,3.3117,1.0051,2.1803,7.1015,15.1414,3.0322,4.3485,3.7953,1.3566,1.5327,4.1849,10.4651,2.9602,2.3605,10.7458,2.4748,2.1132,2.2256,12.0416,2.2156,3.5583,1.1105,14.1559,5.2291,8.4164,4.3971,10.5549,8.1109,6.7219,7.5884,3.1809,1.7493,4.1518,,,,,,,,,,,,,,,66,,,
-nG+ROS3T0HC004,1.4925,2.0363,,60-69y,CN,,,18.7409,5.4903,2.9334,2.3151,1.8515,edsd,CN,,M,,0.42549,4.7612,4.4768,0.71904,11.4997,1.6691,0.3595,3.7808,3.292,50.3785,15.2393,243.6928,4.5458,5.1041,1.3822,2.132,3.6712,7.7822,2.086,3.0573,0.9797,7.9157,13.2008,22.5116,8.3888,2.5022,5.3315,1.8787,19.1402,7.804,4.0472,1.5159,3.0101,7.2221,16.3448,4.2602,5.0193,3.9138,1.526,1.725,4.6368,11.6056,2.9516,2.2643,13.4742,2.4349,2.5567,2.1688,15.2456,1.9948,4.0653,1.2789,15.5599,5.3197,10.4137,4.5027,12.5369,7.8305,7.7516,7.9123,3.8312,1.5107,4.9244,28,,,0.08702,,,,0.39742,3.9314,4.3814,0.80409,12.1488,2.0054,0.40403,3.6982,3.4584,50.7836,14.9631,250.2897,4.329,5.8801,1.5884,2.0311,4.0529,8.4096,2.1914,3.5434,1.1855,7.664,13.9916,19.7081,9.3268,2.4307,4.6365,1.9484,19.1186,5.4709,4.1783,1.2452,3.0786,8.3765,16.5237,3.2263,4.6849,3.6886,1.6736,1.6741,4.3679,12.6168,3.0423,2.398,12.8035,2.2298,2.2847,2.1552,14.7043,1.9704,3.958,1.2799,15.6293,5.8884,8.8186,4.9871,12.5488,8.0943,7.4702,8.9998,4.0663,1.5173,4.7272,,,,,,,,,,,,,,,68,,,
-nG+ROS3T0HC005,1.6914,1.9555,,70-79y,CN,,,14.0597,4.0997,2.3906,2.0875,1.2513,edsd,CN,,F,,0.37631,4.7613,3.5566,0.80039,8.5698,1.4917,0.34776,2.3365,2.8282,41.5027,12.1339,213.1765,4.0244,3.8266,1.4683,1.9003,3.2598,6.8066,1.7793,3.05,0.4674,6.303,10.1922,16.6159,7.007,2.3687,5.0769,1.6231,17.3834,5.8746,3.5866,0.96225,2.3868,6.6387,12.8021,3.2088,3.8016,3.34,1.4913,1.5627,4.1032,10.0684,3.0342,2.0096,10.536,2.3151,2.3116,2.133,12.0868,1.8239,3.3147,1.0615,13.8629,5.0726,8.3486,3.2111,10.0274,6.5395,6.9551,6.7899,4.103,1.5556,4.2795,29,,,0.07538,,,,0.36717,4.2276,3.5085,0.7993,9.2201,1.7356,0.38526,2.4765,2.8302,41.4208,12.1234,214.4995,3.8864,4.0904,1.5278,1.8091,3.5348,6.8553,1.8574,3.1792,0.49291,6.0584,11.0044,13.19,7.19,2.2858,4.5274,1.5675,17.6072,5.1447,3.7047,0.84399,2.2491,7.5348,13.9774,2.7509,3.842,3.1232,1.5009,1.5275,4.0339,9.9208,2.6424,1.9707,10.0758,2.0051,2.1961,1.8343,12.8277,1.7287,3.5524,1.0766,13.752,5.3249,7.6708,4.209,9.7965,7.1714,6.9816,7.0508,3.4382,1.2285,4.0537,,,,,,,,,,,,,,,75,,,
-nG+ROS3T0HC006,1.3735,2.0553,,70-79y,CN,,,17.052,4.5285,2.3744,2.2638,1.2792,edsd,CN,,M,,0.36736,4.3084,4.0768,0.82347,8.0828,1.502,0.33087,2.9906,2.5483,45.4976,13.9549,222.2557,4.1069,4.211,1.5735,2.0529,3.2703,7.2682,1.9581,3.0054,0.5261,5.9553,11.6942,15.766,6.9805,2.3889,4.6652,1.5724,17.0816,6.0322,3.7478,0.94038,2.4715,6.4788,13.4569,3.0348,4.0231,3.2668,1.6267,1.563,4.1231,10.3557,2.9733,2.0142,11.3986,2.0867,2.4864,2.0326,11.9842,1.8303,3.4984,1.0635,14.2522,5.3664,7.6473,3.5773,10.3786,6.5064,6.6985,7.4329,3.7692,1.4327,4.5118,27,,,0.07533,,,,0.34004,3.4537,3.9291,0.83099,8.6234,1.7677,0.36317,3.0221,2.6076,45.0926,14.0187,221.8362,3.56,4.5585,1.6593,1.9544,3.5208,7.1771,1.9406,3.2428,0.6201,6.9569,10.6799,16.0833,7.4618,2.2328,4.2386,1.7171,17.6219,4.5062,3.6601,1.1113,2.6011,7.7103,13.0804,2.815,4.3228,2.8978,1.5676,1.5318,3.745,10.6434,2.8314,1.941,9.9975,1.8528,2.3864,1.6775,12.5557,1.6951,3.3505,1.0866,13.7717,5.4783,7.437,4.3767,10.198,6.9538,6.6463,7.3906,3.0725,1.181,4.1903,,,,,,,,,,,,,,,70,,,
-nG+ROS3T0HC007,1.4994,2.2117,,60-69y,CN,,,19.5657,5.1891,2.7349,2.4159,1.2191,edsd,CN,,F,,0.35065,4.2723,3.7666,0.75571,9.3047,1.4608,0.32458,2.6745,2.7087,51.3749,16.6198,208.2046,3.6973,3.6652,1.4735,1.7916,3.0698,7.1853,1.861,2.9098,0.4371,5.8863,11.2569,13.0221,7.6062,2.2542,4.6872,1.619,19.0194,6.3498,3.5533,1.0437,2.7138,6.2086,14.6647,2.9513,4.3422,3.1566,1.2722,1.5958,4.0705,9.4207,3.1061,2.0545,10.8106,1.9119,2.3759,2.0075,11.894,1.65,3.4259,1.0429,13.1667,5.245,8.428,3.3276,9.4134,7.5846,6.9569,7.2938,3.2835,1.4168,4.8556,30,,,0.06923,,,,0.34514,3.9962,3.7171,0.72504,10.0486,1.6327,0.34711,2.7482,2.8485,53.3095,16.2603,208.3674,3.7881,4.1411,1.4599,1.8302,3.2631,7.3608,2.0011,3.1431,0.55701,6.5386,11.6078,11.8847,8.0202,2.0495,4.4169,1.5913,17.022,5.227,3.6406,1.0843,2.5435,6.7768,14.7833,2.6699,4.7147,2.9823,1.4095,1.5412,3.722,9.7114,2.8432,2.1433,10.098,1.9097,2.14,1.8823,12.5547,1.6802,3.3828,1.1238,13.233,5.4557,7.686,3.916,9.4088,7.422,6.908,6.9153,2.9698,1.3243,4.5223,,,,,,,,,,,,,,,69,,,
-nG+ROS3T0HC008,1.1823,2.8853,,60-69y,CN,,,16.4464,4.341,2.5204,2.2913,1.1808,edsd,CN,,F,,0.40494,4.3886,3.9484,0.80109,9.325,1.424,0.34921,3.1403,2.6985,44.0165,13.9654,226.4608,4.2821,4.5407,1.5511,1.9355,3.0946,7.6979,1.8034,3.0738,0.37814,6.7557,11.5205,10.6412,7.8139,2.3409,4.4298,1.659,17.1072,6.1903,3.563,0.97321,2.3165,6.2714,14.4641,3.6186,4.7166,3.1457,1.5421,1.7106,4.3267,10.5771,3.0174,2.15,11.2567,2.5488,2.4101,2.2171,12.0597,2.1495,3.8012,1.1202,13.4974,5.1214,8.5303,3.9706,10.2242,6.5692,7.3652,7.1556,3.5866,1.7672,4.6137,28,,,0.07685,,,,0.38153,3.9888,3.919,0.83346,10.4985,1.6038,0.39472,3.198,2.8327,44.8116,13.9034,232.7685,4.1937,4.6443,1.6258,1.9638,3.173,7.5483,1.837,3.2033,0.43104,6.5161,11.3751,9.3603,8.1904,2.0704,4.3176,1.5766,17.2382,5.2024,3.704,1.0288,2.4053,7.1281,14.7813,3.0427,4.5988,3.4757,1.5239,1.6691,3.9742,10.554,2.6768,2.1406,10.65,2.5902,2.2809,2.011,12.0262,2.1254,3.9125,1.1264,14.486,5.0504,8.3967,4.3969,10.3266,7.6597,7.042,6.9358,3.5068,1.5547,4.4382,,,,,,,,,,,,,,,69,,,
-nG+ROS3T0HC009,1.6791,1.7785,,70-79y,CN,,,17.6069,4.3582,2.7364,2.2275,1.4175,edsd,CN,,M,,0.34417,4.2776,3.9932,0.81958,8.5753,1.4283,0.34227,2.9589,2.4236,46.1667,15.9846,216.8382,4.1302,4.8578,1.6001,1.9267,3.2787,7.2071,1.8568,3.1406,0.54806,6.2385,10.9211,10.8498,7.0595,2.2064,4.5069,1.5537,18.0771,5.901,3.6814,0.99,2.6003,6.7256,13.909,3.2318,4.2388,3.2773,1.5249,1.5818,4.089,9.1172,3.2521,2.3191,10.394,2.3211,2.3643,2.2286,11.7937,1.8118,3.0787,1.1536,13.8829,5.3068,7.9473,3.7422,9.1237,7.3722,7.3494,7.4591,3.6839,1.6558,4.8195,27,,,0.07879,,,,0.33228,3.6599,3.9166,0.81466,9.4497,1.7181,0.35595,2.977,2.5722,46.6652,15.2168,221.7553,3.8488,4.9481,1.6091,1.8693,3.6165,7.1612,1.8402,3.2781,0.59586,6.3439,10.9034,10.6469,7.6887,2.0939,4.5526,1.5698,18.328,4.7816,3.6567,1.0032,2.3478,7.4986,13.799,2.7821,4.2997,3.179,1.4939,1.5605,4.063,10.0122,2.9582,2.2498,9.6913,2.1501,2.3719,2.0147,11.6556,2.0285,3.3229,1.1126,13.9392,5.0968,7.2607,3.7829,9.9159,7.5898,7.0073,7.2523,3.0846,1.4788,4.5496,,,,,,,,,,,,,,,74,,,
-nG+ROS3T0HC010,1.8287,2.3463,,60-69y,CN,,,18.9336,4.41,2.522,2.0771,1.1571,edsd,CN,,F,,0.34978,5.0327,3.9407,0.91015,9.5276,1.5897,0.34107,3.2874,2.7928,46.8404,14.6229,208.5733,4.2802,4.4996,1.7455,1.9305,3.3237,7.1408,2.1122,3.3166,0.58428,6.2801,12.0395,20.9043,7.1991,2.3315,5.1993,1.7279,20.5201,6.0806,4.132,1.239,2.6742,7.0492,15.4195,3.1976,4.1683,3.5668,1.3778,1.5186,4.5837,11.4582,3.1881,2.4172,12.8986,2.1822,2.4356,2.3397,14.2938,1.9001,3.5296,1.119,14.8241,5.9413,8.8438,3.3271,11.9904,7.6945,6.9395,7.5882,3.9953,1.811,4.8595,29,,,0.0794,,,,0.36363,4.5993,4.025,0.90359,10.6153,1.7432,0.39845,3.2389,2.8806,46.9422,14.062,215.1196,3.9646,4.7458,1.744,1.9989,3.8415,7.7769,1.9592,3.4705,0.60023,7.1179,12.9681,14.8505,7.714,2.2262,4.69,1.7526,21.1619,5.4805,3.819,0.94817,2.3465,7.8601,16.5679,2.7447,4.2992,3.4766,1.6061,1.5012,4.4865,11.7274,3.0069,2.3294,11.6598,2.293,2.3426,1.9749,13.5552,1.9446,3.7425,1.2255,14.5201,5.538,8.4524,4.1918,9.9835,7.6223,6.8355,7.7771,3.6393,1.5421,4.663,,,,,,,,,,,,,,,67,,,
-nG+ROS3T0HC011,1.8968,2.4213,,+80y,CN,,,16.6514,4.1429,2.4138,2.0849,1.3795,edsd,CN,,F,,0.35751,4.2445,3.6754,0.77604,8.6004,1.3265,0.3495,3.248,2.4381,41.3981,14.7444,206.2584,3.5342,4.47,1.4712,1.8386,2.954,6.542,1.7617,2.9249,0.90151,5.3269,9.9986,18.95,7.2026,2.1056,4.16,1.6612,16.2403,4.9474,3.4185,0.93964,2.3461,6.1634,12.6747,2.8064,3.8738,3.2954,1.3531,1.5537,3.8426,9.6564,2.8817,2.0758,10.9116,2.2704,2.2483,2.0502,10.2998,1.9011,3.2285,1.2087,12.0567,5.2665,10.2499,3.134,10.4126,7.3057,6.3979,7.1082,3.429,1.354,4.7356,28,,,0.07654,,,,0.31181,3.3719,3.5503,0.77404,9.7188,1.5737,0.36284,3.2408,2.4425,41.9809,14.5509,217.7609,3.7878,4.7247,1.4808,1.8056,3.1855,6.9291,1.6035,3.2064,1.0107,5.7916,10.1979,18.3726,7.662,2.0092,3.8441,1.5443,17.5442,4.5508,3.4183,0.81378,2.1093,7.1542,12.5616,2.647,4.0595,3.3417,1.343,1.6142,3.5145,10.0705,2.7849,2.0391,11.3563,2.3543,2.2331,1.7814,12.0609,1.7623,3.3423,1.1824,12.7673,5.0937,9.2217,3.9158,9.8415,6.6185,6.1624,7.0603,3.0691,1.2917,4.5083,,,,,,,,,,,,,,,83,,,
-nG+ROS3T0HC012,1.4763,1.6379,,70-79y,CN,,,16.9074,4.2978,2.5484,2.2877,1.5709,edsd,CN,,F,,0.33352,3.9461,3.7761,0.76361,9.1174,1.3787,0.34237,2.9299,2.512,44.4757,13.9998,184.4339,3.8246,4.3581,1.472,1.7217,3.0811,6.9626,1.764,2.9947,0.35091,5.3417,10.8271,11.6707,7.1866,2.1743,4.2745,1.5442,15.7639,5.1925,3.6539,1.358,2.4669,6.1415,13.3673,2.7213,4.0574,2.9296,1.3253,1.3354,4.675,10.349,3.0515,2.071,11.3341,2.1672,2.3872,2.1104,10.72,1.7943,3.2831,1.0551,11.6482,4.7072,9.1592,3.2748,9.5743,7.2901,6.731,6.5834,3.1627,1.293,4.3707,27,,,0.08108,,,,0.33224,3.4061,3.5203,0.83563,10.2123,1.5678,0.36657,2.9866,2.6357,45.5295,14.0509,193.1778,3.6255,4.5065,1.6513,1.7108,3.2907,6.9156,1.7637,3.3875,0.39434,6.0143,11.0967,9.8956,7.1881,2.1412,4.3071,1.5691,16.1075,5.3698,3.5657,1.0832,2.5278,6.8391,14.115,2.6433,4.253,2.7727,1.4622,1.3688,4.1173,10.5467,2.8236,2.0819,9.3051,1.958,2.5005,1.7945,10.8766,1.5976,3.3746,1.0128,11.921,4.6043,7.4612,4.3422,10.8639,7.2725,6.4949,7.057,3.0863,1.2459,4.2532,,,,,,,,,,,,,,,73,,,
-nG+ROS3T0HC013,2.5682,2.5057,,70-79y,CN,,,21.694,5.6788,3.0265,2.6508,2.6887,edsd,CN,,M,,0.47721,5.2847,4.8387,0.89123,11.1859,1.7584,0.40972,3.5156,3.7296,53.3131,18.1067,255.7585,4.5057,5.4507,1.8051,2.107,4.2203,8.1521,2.238,3.5866,0.83934,7.393,12.7422,32.0552,8.4713,2.8047,5.3877,2.232,20.5668,7.4299,4.1926,1.2336,2.7471,7.7655,15.6467,4.0155,5.2773,3.163,1.652,1.76,5.5754,13.1864,3.5371,2.7849,13.5908,2.9455,2.5919,2.5133,15.5381,2.48,3.844,1.4984,15.6301,5.6941,10.377,3.8453,12.5354,7.5332,8.006,7.888,3.7731,2.1132,5.4311,28,,,0.08025,,,,0.44772,5.4144,4.4356,0.85519,12.7054,1.947,0.41598,3.5772,3.8859,53.1828,17.5212,262.0686,5.0284,4.9726,1.6195,2.2642,4.2777,8.0764,2.199,3.8467,1.1194,8.3124,13.3031,31.0961,9.2575,2.5104,5.1521,2.0182,20.9655,6.7079,4.3059,1.2839,2.8166,8.7683,18.097,3.881,5.4657,4.4607,1.8193,1.8361,4.8263,12.5322,3.1497,2.771,12.6225,2.8756,2.5064,2.2315,13.9001,2.2641,3.8649,1.443,15.8672,5.5008,9.1534,4.8871,13.1508,8.5808,7.8588,7.5687,3.6455,1.8053,5.1523,,,,,,,,,,,,,,,70,,,
-nG+ROS3T0HC014,1.0572,1.685,,60-69y,CN,,,13.6372,4.4069,2.2594,2.0653,1.397,edsd,CN,,F,,0.36928,3.9172,3.708,0.71617,8.1491,1.3209,0.31821,3.5413,2.7309,27.5385,12.4571,192.0136,3.3355,4.2491,1.3701,1.6528,3.0791,6.4713,1.6755,2.8025,0.43749,5.6584,8.9153,14.9227,7.3706,2.0619,3.9956,1.5183,17.241,6.0483,3.4232,0.90998,2.1715,6.1179,11.55,3.1963,4.0099,2.7695,1.3871,1.4019,3.7115,9.4709,2.9882,1.9385,9.8693,2.3029,2.2076,1.9759,11.1364,1.7118,3.5856,0.97895,12.3411,4.4677,8.1728,3.7343,10.1228,6.074,6.641,6.306,3.3288,1.5138,4.2874,28,,,0.06204,,,,0.34181,3.5233,3.782,0.7596,9.622,1.4813,0.35762,3.3611,2.8386,32.158,12.6449,192.6969,3.1416,4.3664,1.4594,1.7333,3.3126,6.6275,1.7222,3.0233,0.42775,5.4434,9.1167,13.9911,7.8314,1.9707,3.9765,1.3587,15.8594,4.8364,3.3806,0.92943,2.2005,6.5669,11.7788,2.6741,3.8536,2.971,1.3553,1.3856,3.4229,9.6719,2.764,1.9765,8.9588,1.878,2.1067,1.7118,11.1343,1.5454,3.6119,0.91306,12.3815,4.5244,7.7568,4.2353,9.4211,6.1197,6.2906,6.5955,3.0252,1.3062,4.0622,,,,,,,,,,,,,,,67,,,
-nG+ROS3T0HC015,1.746,1.922,,70-79y,CN,,,18.924,5.4109,3.0682,2.5385,1.582,edsd,CN,,M,,0.33703,4.2642,3.6477,0.85586,8.6252,1.598,0.36629,3.1288,2.4683,51.7924,16.0955,204.8371,4.0282,4.4238,1.7345,1.881,3.1445,7.179,1.8084,3.1951,0.73334,5.7707,10.8506,17.6247,7.1327,2.3532,4.4863,1.6402,17.6918,5.2069,3.8937,0.99913,2.406,6.2331,14.4179,3.16,4.2241,3.5449,1.4449,1.4728,3.9134,9.4371,3.4146,2.1616,11.085,2.5838,2.4878,2.2206,11.7379,2.1633,3.33,1.1942,13.4185,4.9874,9.4595,3.6745,9.6752,7.8197,6.6555,8.0004,3.6428,1.4851,4.5506,29,,,0.06398,,,,0.31335,3.6289,3.5497,0.83649,10.2154,1.7697,0.37558,3.1536,2.6616,52.136,15.6745,209.6607,3.8993,4.4217,1.7315,1.83,3.371,7.3468,1.9102,3.3254,0.74711,6.6074,10.9587,15.4962,7.8299,2.2751,4.3039,1.732,17.2759,4.9683,3.8077,0.89837,2.2469,7.3224,14.0409,2.9668,4.3292,3.4363,1.5567,1.5907,3.705,9.588,3.0232,2.199,9.9252,2.3542,2.349,2.1026,11.2915,1.8275,3.3018,1.1543,13.278,5.0819,8.3,4.2161,9.5964,6.6682,6.4998,8.3394,3.2861,1.5101,4.3976,,,,,,,,,,,,,,,71,,,
-nG+ROS3T0HC016,1.8203,2.3693,,60-69y,CN,,,20.8786,5.1347,3.1424,2.4952,1.541,edsd,CN,,M,,0.38861,4.8193,4.4761,1.0282,10.2967,1.8047,0.37903,3.9768,3.0196,51.8798,18.5846,245.2991,4.4106,5.1312,1.9445,2.308,3.8704,7.7808,2.2381,3.6464,0.687,7.2915,13.6062,14.1622,8.0287,2.7728,5.1166,1.932,19.4226,6.7807,4.2106,1.2987,3.0629,6.8696,17.155,4.0809,4.6758,3.6453,1.6829,1.7541,5.229,11.5639,3.6673,2.3588,13.0527,2.7626,2.6542,2.3603,13.423,2.3159,3.4074,1.1796,16.1223,5.6205,9.1652,4.1522,11.8699,8.5007,8.3188,8.822,4.3187,1.6405,5.2435,30,,,0.0834,,,,0.3603,4.5332,4.1484,1.0118,10.9565,1.9423,0.39248,4.0653,3.2752,53.9778,19.9017,254.6872,4.199,5.2367,1.9954,2.1141,3.9924,8.5283,2.2496,3.7482,0.65598,8.0563,13.3156,12.8097,9.2334,2.4351,4.9001,1.9441,19.8668,5.8835,4.1494,1.4007,3.1132,8.135,16.7568,3.5397,5.1058,3.7747,1.6274,1.7571,4.5817,12.0986,3.2923,2.2668,11.9788,2.3698,2.6,2.0267,13.3159,2.124,3.6072,1.1172,15.3281,5.5129,9.2301,5.0689,12.5316,8.5019,8.0712,8.3799,3.8485,1.5661,4.949,,,,,,,,,,,,,,,68,,,
-nG+ROS3T0HC017,1.4538,2.0873,,60-69y,CN,,,18.3098,4.9937,2.8688,2.1986,1.3511,edsd,CN,,M,,0.41848,4.3267,3.8488,0.8721,8.7048,1.3184,0.35228,3.3702,2.9646,47.956,16.4401,232.8723,3.8269,4.6151,1.5863,1.9553,3.1571,7.0472,1.7075,3.3223,0.57124,5.8453,11.4197,11.4524,7.2409,2.1047,4.2856,1.5684,17.1496,5.2156,3.4098,1.0889,2.531,6.721,14.4265,2.9551,4.1456,3.1072,1.313,1.6986,4.0578,10.0097,3.3311,2.0912,12.0557,2.2998,2.1624,2.2474,12.2178,1.8724,3.6544,1.1602,14.0875,5.6419,8.648,3.5768,10.0536,7.2195,7.0318,7.4809,3.5607,1.6094,5.0437,28,,,0.08499,,,,0.39528,3.4312,3.7504,0.83627,9.3647,1.6453,0.37781,3.6674,3.2685,47.9509,15.1593,237.9884,3.5358,4.9757,1.5682,1.7944,3.2698,6.8674,1.78,3.3734,0.67856,6.4499,11.1777,11.539,8.3743,2.058,4.2094,1.5878,16.8387,4.9014,3.5136,0.94508,2.4824,7.715,14.4541,3.2342,4.2286,3.1751,1.4007,1.6676,3.7144,10.4286,3.027,2.1191,10.7019,1.9396,2.2357,1.916,11.8209,1.8172,3.7748,1.1679,13.402,5.5403,8.2654,4.3934,10.1625,7.2805,6.8002,7.3856,3.2818,1.3503,4.695,,,,,,,,,,,,,,,69,,,
-nG+ROS3T0HC018,1.7472,2.348,,60-69y,CN,,,17.1058,4.0555,2.3743,2.1305,1.9683,edsd,CN,,F,,0.33643,4.298,3.8531,0.71092,8.8278,1.3674,0.3149,2.7883,2.626,41.6131,14.3919,198.8528,3.6814,3.2905,1.3949,1.7906,3.0266,6.018,1.719,2.7194,0.91308,5.6959,9.3132,23.1821,6.5913,2.1191,4.3268,1.5749,16.1093,5.9526,3.4229,1.063,2.2973,6.029,11.6314,2.9437,3.7672,3.2537,1.269,1.4767,3.9301,9.2219,2.7157,2.1951,10.3743,2.1557,2.3082,2.1502,10.2406,1.7159,3.1849,1.0552,11.6029,4.5958,8.03,2.814,9.6752,6.3194,6.2285,6.5792,3.4089,1.543,4.5656,29,,,0.06259,,,,0.31573,3.927,3.84,0.70782,9.8956,1.6054,0.33346,2.8636,2.7265,40.2924,14.0596,202.4628,3.4439,3.6079,1.3899,1.8467,3.3818,5.9464,1.756,2.8403,0.7124,5.9514,9.374,20.2083,7.0311,1.8405,4.3398,1.6494,15.6855,4.5922,3.4189,0.9344,2.054,7.0436,12.7,2.629,3.7471,2.6471,1.135,1.4765,3.5493,9.0555,2.5252,2.0792,9.3081,1.6872,2.0741,1.9633,10.1076,1.7066,3.286,0.99239,12.3468,4.5352,7.6101,3.4902,8.7907,6.4709,6.0014,6.8762,2.6007,1.353,4.3167,,,,,,,,,,,,,,,68,,,
-nG+ROS3T0HC019,1.7662,1.9789,,70-79y,CN,,,19.121,5.3115,2.9056,2.4353,1.4986,edsd,CN,,M,,0.38864,4.6051,4.2489,0.81507,10.5443,1.4925,0.35545,3.742,3.0692,49.6266,15.6887,225.8912,4.0153,5.6826,1.634,1.9936,3.3957,7.7677,1.9738,3.3058,0.72752,7.5129,11.6909,16.0454,8.1993,2.3816,4.8702,1.695,18.1078,6.283,3.7465,1.0831,2.5888,7.1078,15.4109,4.0349,4.8921,3.1473,1.6515,1.604,5.319,12.5753,3.4562,2.2428,13.2842,2.5193,2.4196,2.2655,13.3904,2.195,3.9839,1.2251,15.2019,5.1182,10.3407,3.8,11.138,7.8884,7.5289,7.9237,3.7727,1.4679,4.9328,27,,,0.08182,,,,0.38731,4.105,4.2631,0.81828,11.5855,1.739,0.38675,3.8376,3.1379,50.1061,14.5491,231.9271,4.1378,5.8685,1.653,2.1221,3.7092,7.8632,1.9459,3.4324,0.80059,7.4822,12.2047,16.1951,8.8942,2.1421,4.2979,1.658,18.5625,6.6368,3.7818,1.0557,2.5254,7.82,15.2276,3.5276,4.843,3.7873,1.5342,1.5997,4.8073,12.8049,3.1566,2.313,11.2679,2.0533,2.2087,2.1857,12.4531,1.8612,4.0664,1.2173,15.2896,5.5017,8.4487,4.5674,10.6958,7.7819,7.1646,7.9021,3.4781,1.5519,4.6489,,,,,,,,,,,,,,,71,,,
-nG+ROS3T0HC020,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI001,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI002,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI003,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI004,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI005,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI006,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI007,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI008,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI009,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI010,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI011,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI012,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI013,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI014,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI015,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI016,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI017,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI018,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI019,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI020,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI021,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI022,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI023,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI024,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI025,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI026,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI027,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI028,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
-nG+ROS3T0MCI029,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+subjectcode,_3rdventricle,_4thventricle,adnicategory,agegroup,alzheimerbroadcategory,apoe4,av45,brainstem,cerebellarvermallobulesiv,cerebellarvermallobulesviiix,cerebellarvermallobulesvivii,csfglobal,dataset,edsdcategory,fdg,gender,handedness,leftaccumbensarea,leftacgganteriorcingulategyrus,leftainsanteriorinsula,leftamygdala,leftangangulargyrus,leftaorganteriororbitalgyrus,leftbasalforebrain,leftcalccalcarinecortex,leftcaudate,leftcerebellumexterior,leftcerebellumwhitematter,leftcerebralwhitematter,leftcocentraloperculum,leftcuncuneus,leftententorhinalarea,leftfofrontaloperculum,leftfrpfrontalpole,leftfugfusiformgyrus,leftgregyrusrectus,lefthippocampus,leftinflatvent,leftioginferioroccipitalgyrus,leftitginferiortemporalgyrus,leftlateralventricle,leftliglingualgyrus,leftlorglateralorbitalgyrus,leftmcggmiddlecingulategyrus,leftmfcmedialfrontalcortex,leftmfgmiddlefrontalgyrus,leftmogmiddleoccipitalgyrus,leftmorgmedialorbitalgyrus,leftmpogpostcentralgyrusmedialsegment,leftmprgprecentralgyrusmedialsegment,leftmsfgsuperiorfrontalgyrusmedialsegment,leftmtgmiddletemporalgyrus,leftocpoccipitalpole,leftofugoccipitalfusiformgyrus,leftopifgopercularpartoftheinferiorfrontalgyrus,leftorifgorbitalpartoftheinferiorfrontalgyrus,leftpallidum,leftpcggposteriorcingulategyrus,leftpcuprecuneus,leftphgparahippocampalgyrus,leftpinsposteriorinsula,leftpogpostcentralgyrus,leftpoparietaloperculum,leftporgposteriororbitalgyrus,leftppplanumpolare,leftprgprecentralgyrus,leftptplanumtemporale,leftputamen,leftscasubcallosalarea,leftsfgsuperiorfrontalgyrus,leftsmcsupplementarymotorcortex,leftsmgsupramarginalgyrus,leftsogsuperioroccipitalgyrus,leftsplsuperiorparietallobule,leftstgsuperiortemporalgyrus,leftthalamusproper,lefttmptemporalpole,lefttrifgtriangularpartoftheinferiorfrontalgyrus,leftttgtransversetemporalgyrus,leftventraldc,minimentalstate,montrealcognitiveassessment,neurodegenerativescategories,opticchiasm,parkinsonbroadcategory,pib,ppmicategory,rightaccumbensarea,rightacgganteriorcingulategyrus,rightainsanteriorinsula,rightamygdala,rightangangulargyrus,rightaorganteriororbitalgyrus,rightbasalforebrain,rightcalccalcarinecortex,rightcaudate,rightcerebellumexterior,rightcerebellumwhitematter,rightcerebralwhitematter,rightcocentraloperculum,rightcuncuneus,rightententorhinalarea,rightfofrontaloperculum,rightfrpfrontalpole,rightfugfusiformgyrus,rightgregyrusrectus,righthippocampus,rightinflatvent,rightioginferioroccipitalgyrus,rightitginferiortemporalgyrus,rightlateralventricle,rightliglingualgyrus,rightlorglateralorbitalgyrus,rightmcggmiddlecingulategyrus,rightmfcmedialfrontalcortex,rightmfgmiddlefrontalgyrus,rightmogmiddleoccipitalgyrus,rightmorgmedialorbitalgyrus,rightmpogpostcentralgyrusmedialsegment,rightmprgprecentralgyrusmedialsegment,rightmsfgsuperiorfrontalgyrusmedialsegment,rightmtgmiddletemporalgyrus,rightocpoccipitalpole,rightofugoccipitalfusiformgyrus,rightopifgopercularpartoftheinferiorfrontalgyrus,rightorifgorbitalpartoftheinferiorfrontalgyrus,rightpallidum,rightpcggposteriorcingulategyrus,rightpcuprecuneus,rightphgparahippocampalgyrus,rightpinsposteriorinsula,rightpogpostcentralgyrus,rightpoparietaloperculum,rightporgposteriororbitalgyrus,rightppplanumpolare,rightprgprecentralgyrus,rightptplanumtemporale,rightputamen,rightscasubcallosalarea,rightsfgsuperiorfrontalgyrus,rightsmcsupplementarymotorcortex,rightsmgsupramarginalgyrus,rightsogsuperioroccipitalgyrus,rightsplsuperiorparietallobule,rightstgsuperiortemporalgyrus,rightthalamusproper,righttmptemporalpole,righttrifgtriangularpartoftheinferiorfrontalgyrus,rightttgtransversetemporalgyrus,rightventraldc,rs10498633_t,rs11136000_t,rs11767557_c,rs1476679_c,rs17125944_c,rs190982_g,rs2718058_g,rs3764650_g,rs3818361_t,rs3851179_a,rs3865444_t,rs610932_a,rs744373_c,subjectage,subjectageyears,tiv,updrshy,updrstotal,row_id
+nG+AMS1T5AD001,1.6574,1.9967,,50-59y,AD,,,20.9507,5.197,2.7126,2.8173,1.6358,edsd,AD,,M,,0.42715,4.798,4.2093,0.81368,9.3013,1.5494,0.39307,3.722,2.8559,50.1737,16.5335,235.1473,3.8264,4.7218,1.5824,1.8498,3.4635,7.8456,2.1027,3.0569,0.72341,7.0384,11.4147,28.3623,8.5245,2.3702,4.8397,1.8161,16.4015,5.9285,4.1149,1.3124,2.8646,6.5824,13.0691,4.1271,4.701,3.1531,1.4865,1.8123,3.8906,9.739,3.3911,2.3604,12.1909,2.3681,2.8016,2.4632,12.916,2.0714,3.8835,1.3181,13.1425,5.3764,9.3389,3.4951,11.2121,7.3316,7.42,8.0872,3.5532,1.699,5.4263,24,,AD,0.08307,,,,0.38502,3.9619,4.4877,0.786,10.8675,1.7043,0.39372,3.8622,3.0778,50.0217,16.2989,241.6072,3.5981,5.0343,1.601,1.8904,3.826,7.4427,2.0859,3.1953,0.69183,7.0583,11.9225,23.0982,9.3943,2.3364,4.5636,1.8667,17.1216,5.31,3.6719,1.273,2.6163,8.0218,14.637,3.8541,4.7004,2.9994,1.5608,1.8519,3.6981,10.1712,3.0949,2.2089,12.1874,1.9963,2.5849,2.1876,13.1141,1.9533,3.761,1.2701,14.2843,5.0612,7.8322,5.1031,10.3507,7.1187,7.1072,8.2445,3.2944,1.5237,5.1677,,,,,,,,,,,,,,,59,,,,0
+nG+AMS1T5AD002,1.8908,1.894,,+80y,AD,,,17.3199,4.2129,2.2727,2.0073,1.6388,edsd,AD,,F,,0.36453,4.8437,4.0227,0.67135,8.2846,1.4756,0.38116,2.531,2.2654,43.4686,13.3972,205.3014,4.0314,4.1951,1.26,1.8544,3.5592,6.3431,2.2985,2.4134,0.97989,6.3134,10.0529,26.0747,6.465,2.3551,4.6655,1.8975,18.4698,5.4256,4.279,1.2398,2.5869,7.2469,12.054,3.3395,3.7471,3.5285,1.6307,1.4076,4.3477,10.3953,2.6718,2.2657,11.8108,2.4227,2.7755,2.2295,12.7057,1.8775,3.2548,1.4126,15.446,5.6746,8.2955,3.1058,10.532,6.4764,6.2112,6.6037,4.0731,1.5216,4.4778,21,,AD,0.08786,,,,0.36634,3.8217,3.6452,0.67163,9.527,1.7302,0.39029,2.6701,2.7298,44.3447,13.1793,207.9605,3.9873,3.6229,1.3501,1.9041,3.9771,6.1382,2.2997,2.7353,0.90852,6.15,11.202,22.1398,6.4011,2.3243,4.5074,1.9547,18.504,4.634,4.1959,0.93746,2.4188,8.372,13.3432,2.6698,3.512,3.4804,1.7572,1.4495,3.7934,9.7676,2.4115,2.1693,9.8834,2.206,2.4463,1.8817,12.3752,1.6475,3.1718,1.4023,13.9708,4.9986,6.9453,3.2345,9.0975,6.2997,6.1854,6.9448,3.8094,1.4054,4.2836,,,,,,,,,,,,,,,80,,,,1
+nG+AMS1T5AD003,2.069,2.619,,60-69y,AD,,,20.0226,5.3622,3.3127,2.4571,2.3624,edsd,AD,,M,,0.41066,4.3304,4.1694,0.73158,7.631,1.4033,0.38064,3.0412,2.5116,50.524,16.1223,196.4083,3.8199,4.1994,1.3838,2.028,3.5127,6.5105,2.1343,2.9131,1.5268,4.9948,9.0001,25.8464,7.087,2.3012,4.0969,1.7409,17.4774,5.2587,3.86,1.068,2.2374,6.5953,11.0109,3.4671,3.794,3.2888,1.6012,1.4726,3.7611,9.2029,2.9231,2.2731,9.1474,2.1299,2.4123,2.1411,12.3921,1.9589,3.7792,1.2987,14.5603,4.7508,7.7603,3.4265,9.4275,6.4783,6.824,6.6702,3.9026,1.5251,4.9461,19,,AD,0.08187,,,,0.3548,4.2702,3.8432,0.75449,7.942,1.5222,0.37054,3.0371,2.8196,50.4762,15.737,191.2965,3.497,4.091,1.3361,1.8181,3.879,6.3838,2.0662,3.2393,2.9648,5.0863,8.4138,30.421,7.4536,2.1092,3.8266,1.8175,16.6386,4.2617,3.6011,0.87656,2.2226,7.0677,10.0426,2.8122,3.5564,2.9884,1.506,1.4639,3.1522,8.474,2.6508,2.2541,8.4421,2.145,2.2578,1.8764,11.5468,1.8112,3.4955,1.2767,14.3759,4.9167,6.6869,3.8214,8.0329,6.4699,6.3787,6.5082,3.2712,1.3778,4.7272,,,,,,,,,,,,,,,67,,,,2
+nG+AMS1T5AD004,1.9094,1.759,,70-79y,AD,,,15.0982,4.6394,2.6234,2.1363,2.0012,edsd,AD,,M,,0.36467,5.2082,4.5626,0.68272,8.7841,1.5585,0.36468,2.866,2.3982,46.103,12.1483,198.292,4.2043,4.5426,1.4985,2.2116,4.089,7.3579,2.518,2.8601,0.79468,6.5097,11.0739,34.1486,7.6426,2.4061,5.1542,2.1285,18.1065,5.9067,4.2674,1.1754,2.5841,7.6754,12.4664,4.1521,4.5015,3.6735,1.6968,1.3795,4.8098,11.1905,3.2237,2.4109,12.1633,2.5327,2.5913,2.3251,13.3822,2.4035,3.1797,1.296,16.4787,5.7856,8.1623,4.2232,11.3832,6.6036,6.1372,7.7578,4.4426,1.6622,4.2063,17,,AD,0.08197,,,,0.35329,4.717,4.1966,0.70472,9.8865,1.9075,0.36335,2.7894,2.5753,46.4852,12.2044,204.1758,4.2217,4.6651,1.5815,2.2748,4.2283,7.6522,2.4293,3.0477,0.81809,6.581,11.6726,27.6324,8.1635,2.4906,5.1927,2.0519,19.0915,5.5954,4.3027,1.2135,2.5403,8.6581,14.0146,3.201,4.2578,3.9375,1.8217,1.3624,4.3402,10.9141,2.8815,2.3053,10.7252,2.3196,2.423,2.0228,13.5346,1.9556,3.0823,1.275,15.9535,5.9055,7.2196,4.5465,10.5532,7.3023,5.8994,8.0225,4.2839,1.4453,3.9964,,,,,,,,,,,,,,,72,,,,3
+nG+AMS1T5AD005,1.4362,1.6636,,60-69y,AD,,,15.9469,4.6495,2.6432,2.2577,2.1252,edsd,AD,,F,,0.42191,4.2382,3.8945,0.74934,8.3081,1.5227,0.38326,3.2724,2.9263,46.0664,13.839,197.6866,4.077,4.9988,1.3495,2.0093,3.3553,6.3067,2.0127,2.9242,0.62754,5.9854,8.8112,22.5146,7.8474,2.434,4.507,1.7425,18.644,5.789,3.9675,1.0462,2.5113,6.5312,10.8598,3.919,4.1272,3.4705,1.5986,1.6056,3.7924,9.5578,2.9188,1.9422,11.4371,2.2866,2.5155,1.8206,12.7934,1.976,3.6287,1.2219,14.4139,5.0821,7.5856,4.3388,10.0019,5.4578,6.885,6.1146,3.7373,1.508,4.6436,26,,AD,0.07221,,,,0.33512,3.2603,3.2609,0.73506,7.8043,1.4918,0.35033,3.3281,2.8147,46.8493,13.8539,185.1925,3.6734,4.6919,1.3483,1.7009,3.5829,5.8896,1.8545,3.2409,1.6199,5.9433,8.7702,31.5536,7.6982,1.9967,4.252,1.6093,16.3713,4.4818,3.3972,0.95246,2.3446,7.3804,10.0935,3.4893,3.9739,3.4479,1.5031,1.6072,3.3779,9.1521,2.5458,1.8647,9.5254,1.9315,2.133,1.6319,12.6393,1.6166,3.0876,1.1141,13.0346,4.918,6.1646,4.6428,8.9724,4.9838,6.1889,6.2112,3.6484,1.326,4.4105,,,,,,,,,,,,,,,65,,,,4
+nG+AMS1T5AD006,1.326,1.9878,,+80y,AD,,,16.1879,4.7614,2.6627,2.3147,1.6168,edsd,AD,,M,,0.4069,5.0827,3.7917,0.70386,9.2936,1.4945,0.36829,3.1698,2.6956,45.3358,12.1868,196.6974,4.2639,4.9183,1.3036,2.0209,3.5591,7.0287,2.0685,2.9165,0.92141,7.0691,10.6466,23.1483,7.4578,2.3936,4.8919,1.8038,17.8962,5.6108,3.9073,1.1971,2.5876,7.1258,12.8805,4.4609,4.5176,3.7217,1.5915,1.3431,4.3836,11.3547,2.8722,2.1204,12.0485,2.6183,2.4908,2.0694,12.9605,2.0925,3.3227,1.2436,14.7992,5.7898,9.8821,3.8705,11.2477,7.0219,6.3217,6.3247,3.9865,1.6371,4.2351,18,,AD,0.07584,,,,0.34444,4.2008,3.6737,0.65782,10.6025,1.797,0.35074,3.113,2.8146,45.1767,11.9531,197.7947,4.4985,5.0648,1.203,2.2071,4.0094,6.5065,2.1154,3.1112,0.92382,7.3182,10.5798,16.9487,7.7451,2.2271,4.617,1.7524,19.0582,5.2269,3.9207,1.1597,2.5289,8.1639,13.5573,3.7782,4.3228,3.7581,1.4201,1.329,4.1254,11.5747,2.5475,2.0289,10.8712,2.2152,2.3126,1.8492,12.5585,1.8069,3.1613,1.1764,14.8152,5.4872,8.702,4.817,11.6641,6.9194,6.0833,6.266,3.3747,1.3621,3.9747,,,,,,,,,,,,,,,80,,,,5
+nG+AMS1T5AD007,2.0435,2.0471,,70-79y,AD,,,16.9601,4.4349,2.4741,2.0232,1.8061,edsd,AD,,M,,0.40836,4.7429,4.1438,0.70698,8.7511,1.6105,0.37411,2.7036,2.9981,44.4978,13.625,203.3715,4.2844,4.0269,1.467,2.0771,3.3982,6.8859,2.3608,2.4835,0.81228,6.3408,10.9586,21.5958,6.6031,2.4742,4.8206,1.9217,19.0342,5.8415,4.3392,1.1154,2.5397,7.4662,12.8189,3.5344,4.1079,3.1796,1.5832,1.4316,4.4955,10.6114,2.7969,2.4505,11.8666,2.5641,2.4754,2.3636,12.6192,1.9931,3.8415,1.318,15.0536,5.6865,7.9466,3.3441,10.1458,6.6646,6.5764,7.4517,4.1227,1.6621,4.5994,19,,AD,0.08211,,,,0.367,4.0922,3.7839,0.69746,9.6472,1.8008,0.37297,2.9806,2.9267,43.9993,13.1238,201.0276,3.8148,4.5201,1.4172,1.8978,3.8635,6.6833,2.1897,2.6159,1.2616,6.4408,10.7731,18.4961,7.3238,2.5819,4.0914,1.8465,18.6379,5.0169,3.854,1.1153,2.3051,8.6644,13.0986,3.1751,4.0474,2.944,1.7116,1.4367,3.9231,10.2594,2.5366,2.2767,10.264,2.1442,2.3928,2.1024,12.2162,1.8383,3.5692,1.255,14.5554,5.6308,6.9308,4.1901,9.2403,6.9612,6.1098,7.5055,3.479,1.4823,4.4063,,,,,,,,,,,,,,,74,,,,6
+nG+AMS1T5AD008,1.1722,1.4343,,70-79y,AD,,,17.8395,5.2514,2.8418,2.354,1.005,edsd,AD,,M,,0.47258,4.7506,4.0412,0.862,8.6158,1.7562,0.41841,2.3839,2.9434,52.2059,14.6072,207.3053,4.5054,3.6537,1.654,2.0926,3.4063,7.0395,2.3479,3.1564,0.66107,6.2477,11.057,16.8039,6.9625,2.6598,4.739,1.8577,20.0176,6.3715,4.623,1.0919,2.5501,7.0379,12.1207,3.47,4.4513,3.264,1.5722,1.4708,4.4885,10.0906,3.163,2.2345,11.849,2.6758,2.7524,2.181,13.9885,2.2445,3.898,1.378,15.2126,5.5664,8.3731,3.2716,11.5007,5.7602,7.109,7.4704,3.9122,1.7511,4.5321,26,,AD,0.06811,,,,0.46576,3.9791,3.946,0.95187,10.3218,1.9667,0.43821,2.4982,3.2651,51.7615,14.1657,216.916,4.4781,3.9498,1.8101,2.0318,4.0432,7.9794,2.3691,3.515,0.49761,6.5007,11.9037,12.81,7.7532,2.5382,4.5987,1.9077,19.4266,5.1971,4.4345,1.2138,2.6297,8.254,13.4955,3.0193,4.4497,3.7103,1.6731,1.4916,4.248,10.6144,3.026,2.3943,11.073,2.3943,2.6135,2.1469,13.6143,1.9853,3.9666,1.3402,16.7998,5.4956,7.7506,4.0087,12.5354,6.7205,7.0544,8.0809,3.5686,1.6472,4.4045,,,,,,,,,,,,,,,72,,,,7
+nG+AMS1T5AD009,0.99857,1.4305,,60-69y,AD,,,17.0278,4.6708,2.7728,2.2487,1.0792,edsd,AD,,F,,0.44792,4.1942,3.9101,0.70257,7.0883,1.6453,0.38938,3.054,2.8533,44.5889,14.7581,211.7031,4.0095,4.5205,1.4221,1.7242,3.4007,6.7801,2.2954,2.6996,0.49923,5.7288,10.336,12.0323,7.1527,2.6616,4.2832,1.8049,16.3119,5.0434,4.472,1.1025,2.6228,6.4805,12.2163,3.8253,3.7139,3.1188,1.597,1.5671,3.721,9.3258,2.9696,2.2194,11.6057,2.3117,2.7098,2.2119,11.3767,1.8219,3.7625,1.2741,14.5303,4.8334,8.5434,3.8561,9.5985,6.0532,7.1107,7.1232,3.616,1.638,4.655,22,,AD,0.07949,,,,0.40807,3.6227,3.7596,0.75901,9.369,1.8691,0.41609,2.8733,3.0766,44.7901,14.305,224.0112,4,5.3005,1.6085,1.8055,3.579,7.1346,2.1868,3.108,0.44345,5.9288,11.4121,9.4417,7.6983,2.4026,4.1402,1.7382,18.0963,4.873,4.4105,1.1934,2.7537,7.4045,13.0595,3.0313,4.1184,2.9391,1.5115,1.5866,3.6334,9.9252,2.8906,2.126,10.4444,2.2662,2.6656,1.8737,12.3347,1.9286,3.8423,1.2573,13.661,5.0284,7.691,4.2064,10.1611,7.0181,7.0444,7.7123,3.524,1.4227,4.4731,,,,,,,,,,,,,,,61,,,,8
+nG+AMS1T5AD010,1.0902,1.2937,,70-79y,AD,,,18.0477,4.7605,2.4809,2.2808,1.4649,edsd,AD,,F,,0.42948,4.4059,4.0606,0.94374,8.7825,1.7273,0.41993,2.8576,2.8569,42.4788,14.4965,214.9522,3.9962,4.6934,1.741,2.0053,3.7036,6.7978,2.4152,3.1353,0.505,5.7158,10.3585,17.0523,7.1813,2.7764,4.6039,1.9479,18.4136,5.7141,4.748,1.2289,2.5427,6.6172,12.5934,3.807,3.7823,3.4972,1.8071,1.6295,3.9558,9.3937,3.1923,2.2492,11.6036,2.4953,2.7799,2.1704,11.5101,2.0007,3.8361,1.3214,14.9169,4.9941,8.8669,3.6497,8.897,7.4695,7.1892,7.3576,4.0317,1.5247,4.8199,21,,AD,0.08417,,,,0.3775,3.9522,3.811,0.97755,9.7817,1.8815,0.41245,2.9237,3.1106,41.7855,14.0101,222.5464,3.9385,4.3766,1.8523,1.7889,3.8345,7.3327,2.4263,3.4963,0.50498,6.349,11.7056,14.5098,7.9472,2.396,4.4194,1.8762,18.2751,5.2515,4.3562,1.0365,2.3888,7.5734,13.2712,3.4221,4.0362,3.3756,1.6822,1.6061,3.8757,9.2107,3.1056,2.1687,10.6207,2.2214,2.5147,2.0752,12.0586,1.9638,3.8205,1.2498,15.0529,4.8345,7.6058,4.2216,9.3513,7.4041,6.8393,7.932,3.9895,1.442,4.6196,,,,,,,,,,,,,,,70,,,,9
+nG+AMS1T5AD011,2.4856,2.5393,,70-79y,AD,,,17.4098,5.4468,2.8145,2.386,2.4679,edsd,AD,,M,,0.40797,4.7051,3.7959,0.79891,10.181,1.763,0.38088,2.7667,2.1129,49.5596,14.5417,218.0099,3.9544,3.734,1.4381,1.8812,3.633,7.1315,2.2232,3.1136,2.5342,6.8361,11.4838,43.4433,6.9652,2.6388,4.6561,1.7383,17.8848,6.3697,4.3173,1.1624,2.7218,7.2659,13.567,3.7806,4.2907,3.4289,1.5728,1.6152,4.3719,10.2192,3.0974,2.2809,12.4707,2.4892,2.7842,1.9832,12.7047,1.8926,3.605,1.3388,15.9463,5.4371,9.4176,3.6446,10.4671,6.856,6.8134,6.7795,3.4662,1.2704,4.8287,26,,AD,0.06925,,,,0.3829,4.218,4.0195,0.83472,10.8155,1.6857,0.388,2.7035,2.8121,49.4867,14.3484,225.2247,4.2881,3.9205,1.5306,1.8751,3.8834,6.7819,2.2614,3.2757,1.7017,6.6582,10.9084,33.5477,7.6884,2.2626,4.7913,1.7486,18.5739,5.677,3.8924,1.2112,2.7194,8.0372,13.0318,3.1303,4.0676,3.4063,1.4553,1.636,3.964,10.0857,2.7557,2.5186,11.4951,2.1644,2.4825,2.1181,12.813,1.7809,3.4449,1.3166,15.0942,5.4238,8.9866,3.8052,10.8623,7.5884,6.7746,7.7161,3.2317,1.5177,4.6494,,,,,,,,,,,,,,,75,,,,10
+nG+AMS1T5AD012,1.3194,1.8325,,70-79y,AD,,,15.4763,4.445,2.4478,2.2063,1.0692,edsd,AD,,F,,0.33873,4.0967,4.0423,0.6146,8.0933,1.5153,0.33412,2.8508,2.5949,42.9074,12.2351,181.1042,3.949,3.9646,1.276,1.8754,3.198,6.2485,2.2292,2.3678,0.88738,5.8245,9.4479,17.155,6.7154,2.2605,4.6495,1.6748,18.7835,5.9976,4.1708,1.1718,2.7629,6.4951,11.6121,3.2542,3.938,3.1416,1.387,1.3328,4.325,10.1946,2.6444,2.2662,11.0625,2.1707,2.496,2.4478,11.3994,1.927,3.1165,1.1538,14.1298,5.3581,7.231,3.2846,10.0293,6.7163,6.3659,7.3564,3.6846,1.5661,4.1256,23,,AD,0.07988,,,,0.32046,3.6799,3.7177,0.66677,8.8763,1.8686,0.3343,2.9744,2.7236,44.0019,12.0475,183.9344,3.5212,4.3805,1.3782,1.8833,3.6211,6.1583,2.0793,2.6804,1.4247,6.045,9.4246,14.503,7.4808,2.2373,4.3988,1.7473,18.3467,4.5876,4.0234,1.0944,2.5598,7.3388,11.2149,2.9064,4.0312,3.3074,1.5948,1.329,3.9209,10.0554,2.6202,2.3727,9.205,1.7874,2.3581,2.1977,10.5838,1.8366,3.035,1.1089,14.1774,4.9108,7.3483,4.1034,8.8861,6.9532,6.109,7.6678,4.0176,1.4701,3.9836,,,,,,,,,,,,,,,73,,,,11
+nG+AMS1T5AD013,1.9673,2.6574,,70-79y,AD,,,15.8861,3.5022,2.1906,1.8657,2.3346,edsd,AD,,F,,0.42163,4.0877,3.8616,0.69308,7.7611,1.2674,0.36477,2.5846,3.1047,36.5007,11.6878,164.9992,3.4004,4.3978,1.291,1.6997,2.9676,5.8322,1.9906,2.4136,1.3765,4.903,9.5654,34.8398,6.233,2.1536,4.0453,1.6313,16.5078,5.0145,3.6247,0.80524,1.9395,5.9558,11.822,3.0025,3.3534,3.0061,1.3874,1.3587,3.6379,8.5872,2.5337,2.0874,10.1974,2.0247,2.3358,1.9672,11.6975,1.6792,4.0548,1.1602,11.872,4.542,7.8423,3.4703,8.3738,6.0871,5.8946,6.727,3.1986,1.4112,4.2395,23,,AD,0.06724,,,,0.35861,3.8072,3.6431,0.70751,8.6949,1.603,0.37308,3.666,3.3177,36.0805,11.4282,167.8266,3.4373,4.371,1.3679,1.5209,3.3099,6.3448,1.8392,2.6915,1.285,5.917,9.7925,36.3593,7.2141,1.9744,4.0035,1.5917,17.0282,4.9289,3.4423,0.88409,2.0228,6.6631,11.4969,3.0101,3.503,3.2567,1.2655,1.3283,3.4858,8.2805,2.4883,2.0525,8.8546,2.0023,2.0512,1.6495,11.5471,1.6377,4.197,1.0999,12.0086,4.6006,7.0275,3.8625,8.437,5.8692,5.7447,6.2694,3.0039,1.2221,3.9919,,,,,,,,,,,,,,,77,,,,12
+nG+AMS1T5AD014,1.6544,1.6066,,70-79y,AD,,,16.8427,4.1296,2.4347,2.0515,1.3807,edsd,AD,,F,,0.3566,4.2551,3.8767,0.78925,8.9399,1.5186,0.37186,3.0365,2.7446,41.053,12.1929,218.3612,3.5278,4.1837,1.5327,1.8292,3.0901,6.4367,2.0114,2.8448,0.45515,6.2964,10.4842,20.4611,6.6881,2.4265,4.2699,1.7345,17.7121,5.4933,3.9769,0.9933,2.4819,6.2515,12.6361,3.6599,3.9903,3.6341,1.559,1.4293,4.3675,10.339,2.9354,2.1676,11.527,2.4967,2.5267,2.1058,12.8841,2.157,3.2567,1.2607,15.0795,5.0772,8.8249,3.746,11.403,6.3754,7.0423,6.9268,4.1627,1.574,4.6656,25,,AD,0.07783,,,,0.33536,3.9795,3.7475,0.74474,10.0281,1.7143,0.35968,3.0483,2.7642,41.8136,12.1539,221.3739,3.9593,4.429,1.5542,1.9869,3.3082,6.7407,2.1574,2.9717,0.4878,6.666,11.059,18.0767,7.0904,2.2034,4.2652,1.803,17.5811,4.983,3.8753,1.0391,2.4763,7.1431,12.9693,2.8595,4.0324,3.43,1.5666,1.48,3.8848,10.2587,2.7381,2.1623,10.0495,2.2636,2.2663,1.9028,12.0309,2.1452,3.0985,1.2151,13.6414,4.5318,7.6249,4.3206,11.6695,6.0187,6.6343,6.8489,3.5994,1.6093,4.4033,,,,,,,,,,,,,,,71,,,,13
+nG+AMS1T5AD015,1.6984,1.5141,,60-69y,AD,,,19.7882,5.3587,2.7406,2.2369,1.4225,edsd,AD,,F,,0.37612,4.591,3.8621,0.63576,8.6831,1.6583,0.37744,3.1029,2.5936,47.4352,15.9721,210.3322,4.1326,4.5504,1.4114,2.1008,3.4058,7.0076,2.3049,2.4742,0.59791,5.7691,10.4543,19.029,7.3066,2.5633,4.9906,1.8724,18.7659,5.8975,4.5908,1.4219,2.8949,6.957,13.2393,3.3037,4.1568,3.8766,1.7152,1.5372,3.9408,10.3716,2.8716,2.1576,13.1117,2.5973,2.691,2.1705,13.6239,2.0384,3.5516,1.3193,14.3946,5.8171,8.7571,3.7933,10.7067,6.8017,6.7086,7.6639,4.2257,1.6424,4.9523,25,,AD,0.09305,,,,0.35586,3.8401,3.7167,0.6842,9.3009,1.9518,0.39281,3.1189,2.6894,47.1373,15.6718,213.1064,4.3834,4.5157,1.4105,2.0299,3.7893,6.7401,2.1596,2.7222,0.67891,6.1973,10.9749,14.5767,7.4569,2.4443,5.0121,1.8397,18.8562,5.129,4.318,0.9789,2.4741,7.6669,14.1365,2.7183,3.9841,3.1299,1.6095,1.5049,3.9476,10.8558,2.8073,2.2352,11.3472,2.1702,2.5308,1.9836,13.2599,1.8163,3.5951,1.2562,13.9933,5.5129,8.3242,4.1039,10.4039,7.3502,6.4747,7.8679,3.8404,1.4827,4.6771,,,,,,,,,,,,,,,66,,,,14
+nG+AMS1T5HC001,1.2305,1.889,,60-69y,CN,,,15.4203,4.752,2.5975,2.2166,1.0805,edsd,CN,,F,,0.37575,4.4821,3.6634,0.86678,9.0712,1.6008,0.38336,2.9748,2.3891,43.5553,13.0099,208.929,3.5452,4.3306,1.6574,1.8246,3.4674,7.2967,2.149,3.1889,0.52345,5.9438,11.1036,12.3368,7.335,2.3544,4.8038,1.8231,19.601,5.873,4.2652,1.121,2.8146,6.6438,12.7972,3.0834,4.3583,3.4322,1.4578,1.3603,4.2577,10.4497,3.1112,1.9328,11.9634,2.2076,2.5128,2.1099,13.2577,1.8446,3.2036,1.2432,14.6131,5.424,8.9471,3.4355,11.1225,7.4058,6.792,7.5218,4.0145,1.3623,4.4331,28,,,0.0823,,,,0.35779,4.0974,3.6847,0.89225,10.1448,1.8601,0.38682,2.8749,2.4968,44.5202,12.8741,212.1139,3.6271,4.5471,1.6649,1.8338,3.6496,7.7436,2.0385,3.3942,0.71844,6.1452,11.2832,11.5201,7.8232,2.3152,4.5969,1.7046,19.2735,5.123,4.1381,1.3088,2.8271,7.3201,13.0278,2.5444,4.1769,3.6146,1.4492,1.4047,3.8029,10.2318,2.9145,1.9964,10.9172,1.8025,2.4142,1.9255,13.7538,1.5961,3.3313,1.1837,14.5232,5.1254,7.7679,4.0265,10.6562,6.8385,6.4092,7.404,3.834,1.2627,4.2464,,,,,,,,,,,,,,,65,,,,15
+nG+AMS1T5HC002,1.0728,1.0427,,70-79y,CN,,,12.9634,3.5114,1.9277,1.6298,0.91734,edsd,CN,,F,,0.34025,3.6379,3.1873,0.81137,7.4818,1.3872,0.32452,2.6576,2.5135,35.768,11.0439,191.4973,3.2123,3.3334,1.5029,1.6246,2.9333,5.9684,1.8433,2.5125,0.68477,4.6051,9.4893,13.9193,5.3717,2.1365,3.9422,1.5133,16.6634,4.627,3.7118,0.99619,2.3561,5.6315,10.9382,2.5104,3.2673,3.1155,1.2784,1.2234,3.3135,8.282,2.6449,1.7462,9.5882,2.0994,2.2911,2.0287,10.4681,1.8326,2.9394,0.99393,11.8028,4.5588,7.3065,2.95,9.3012,6.5243,5.5957,6.7463,3.5311,1.3835,3.6547,29,,,0.07224,,,,0.30261,3.2577,3.0319,0.78395,7.999,1.5499,0.33195,2.7214,2.6014,36.5871,10.6258,191.1721,2.9388,3.7323,1.4985,1.6918,2.9038,5.9909,1.7564,2.7104,0.6038,4.9259,9.5894,9.1226,6.2975,1.9061,3.8606,1.4819,15.2414,3.8107,3.4543,0.96823,2.4027,6.2531,11.6881,2.4206,3.4491,3.1981,1.2019,1.2041,3.3794,9.0041,2.5089,1.6208,8.3525,1.5889,2.0893,1.6185,10.8056,1.4385,2.9631,0.98169,12.3132,4.5457,5.7873,3.6905,8.2168,5.7204,5.4271,6.8371,3.0398,1.0384,3.4773,,,,,,,,,,,,,,,73,,,,16
+nG+AMS1T5HC003,1.1357,1.688,,70-79y,CN,,,17.0687,4.3015,2.6622,2.1688,1.167,edsd,CN,,M,,0.48582,4.3799,4.4515,0.871,9.1975,1.7618,0.40709,3.1286,3.1397,46.1125,13.5793,222.3009,3.9928,4.6713,1.7317,2.2115,3.5694,7.4301,2.3994,3.1363,0.51854,6.8765,12.3469,17.4128,7.3998,2.5654,4.0497,1.9734,19.7148,6.4443,4.7516,1.2153,2.7193,7.2608,15.3204,3.817,4.3657,3.2971,1.7847,1.4878,4.4328,10.1542,3.1306,2.2236,12.7861,1.9596,2.9642,2.4308,13.5132,1.6056,3.8632,1.3458,15.1834,5.2441,8.5848,3.5157,9.8356,7.273,7.2447,8.3456,3.7857,1.3547,4.6248,29,,,0.0698,,,,0.4372,3.7469,4.2385,0.88555,11.0966,1.9825,0.40709,3.2961,3.2366,45.4266,13.2066,222.6565,4.011,4.9111,1.7652,2.0886,3.9318,7.7255,2.2004,3.2016,0.53597,7.1069,12.0106,14.272,7.9751,2.5126,4.3864,1.9437,18.3009,5.3311,4.2485,0.96357,2.7882,7.6211,15.3034,3.2368,4.2732,3.5368,1.8317,1.4824,3.9948,10.3087,2.9867,2.2872,10.596,1.9139,2.5856,2.0531,13.2089,1.5262,3.7535,1.2547,15.0981,5.186,8.1754,4.285,9.4709,7.5389,6.7401,8.6265,3.8575,1.2864,4.4091,,,,,,,,,,,,,,,76,,,,17
+nG+AMS1T5HC004,1.1069,1.5612,,+80y,CN,,,15.4763,3.8533,2.247,1.8396,1.2509,edsd,CN,,F,,0.38516,3.932,3.6771,0.70985,6.9952,1.4646,0.33314,2.1666,2.6816,40.557,11.7821,162.7586,3.7172,4.1609,1.3546,1.7859,3.3375,6.0027,1.8207,2.4738,0.81761,4.9571,9.6013,17.1651,6.2023,2.4217,4.228,1.5314,19.5531,4.7492,3.6329,1.1048,2.4033,6.2394,11.2666,2.7891,3.5657,2.8783,1.6324,1.2221,3.9112,9.1919,2.7302,1.8463,10.672,2.3302,2.2946,1.887,10.584,1.9742,3.0858,1.0958,12.8249,4.7226,8.2982,2.9305,8.4178,6.4311,6.0392,6.2847,4.1721,1.4931,3.9391,29,,,0.06724,,,,0.32134,3.5469,3.539,0.67646,9.1242,1.4902,0.32938,2.2703,2.7039,40.6976,11.5711,164.8177,3.3255,4.1327,1.3537,1.7098,3.319,6.0937,1.787,2.6126,0.60329,5.9669,9.7293,21.4528,6.3538,2.0918,3.9721,1.5232,15.3359,4.6568,3.4502,0.94853,2.2137,6.8296,12.1742,2.5476,3.5301,2.8824,1.6195,1.2848,3.3842,9.4155,2.4133,1.8338,8.9708,2.0612,2.2384,1.697,11.1662,1.8629,2.967,1.0904,11.5871,4.5501,6.9284,3.5488,9.2977,6.6551,5.8536,6.5856,3.4253,1.2779,3.7728,,,,,,,,,,,,,,,82,,,,18
+nG+AMS1T5HC005,0.93743,1.4846,,70-79y,CN,,,18.2648,4.801,2.4586,2.1834,1.3199,edsd,CN,,F,,0.44488,4.237,3.9875,0.87536,7.4352,1.5719,0.38613,2.7017,2.9597,41.6152,14.2666,204.0367,3.8558,4.0439,1.6967,2.0134,3.411,6.5488,2.1019,3.121,0.54994,5.7124,10.0638,15.3366,6.5239,2.5023,4.0368,1.6286,17.052,5.4096,4.0271,1.0847,2.6421,6.5865,11.8988,3.2337,3.809,3.5357,1.5883,1.4625,3.3802,8.7884,3.1029,2.0438,10.6662,2.2733,2.6404,2.4076,11.3856,1.8972,3.8851,1.1882,14.426,4.7871,7.0505,3.4762,8.9853,6.5486,6.8888,7.3018,3.8279,1.6296,4.6618,29,,,0.07045,,,,0.41178,3.7232,3.872,0.84717,9.1016,1.6933,0.3918,2.6718,3.1158,40.896,14.0826,205.7097,3.697,3.7315,1.6624,1.8268,3.443,6.4928,2.0401,3.1839,0.50557,5.3781,9.8386,15.6377,7.0298,2.2757,3.9332,1.6016,16.6491,4.6366,3.7609,0.88375,2.3686,7.3471,12.6209,2.589,3.5923,3.316,1.6283,1.4184,3.1848,9.1677,2.8982,2.1409,8.6664,2.4128,2.3559,2.1575,11.2158,2.0422,3.8051,1.185,15.1427,4.7634,7.6003,4.0704,9.6935,7.4023,6.7261,7.0973,3.437,1.6639,4.4261,,,,,,,,,,,,,,,77,,,,19
+nG+AMS1T5HC006,2.3554,2.6714,,70-79y,CN,,,19.2789,5.2392,3.0603,2.4106,2.0243,edsd,CN,,M,,0.41846,4.9832,4.1629,0.7873,9.8332,1.5999,0.38748,2.7817,2.86,46.647,15.2872,243.7703,4.0862,4.3741,1.366,1.7371,3.5539,6.4949,2.2575,3.0368,1.0446,5.6319,10.9496,31.0679,7.7907,2.5432,5.4238,1.9318,17.5783,5.9197,4.163,1.2076,2.9189,7.4916,13.6104,3.2653,4.059,2.706,1.5023,1.6443,4.6896,10.643,2.9935,2.5113,11.0974,2.22,2.425,2.3124,12.5431,1.7712,3.7316,1.3703,16.1059,5.6885,7.7956,3.1461,9.8591,5.83,7.4579,6.8565,3.4015,1.6273,5.1122,29,,,0.07575,,,,0.35908,4.3509,4.0501,0.84859,10.4211,1.6703,0.39072,2.8901,2.9475,47.1015,15.1701,240.1943,4.0322,4.7451,1.5978,1.9178,4.0838,7.125,2.206,3.3401,0.90656,7.1968,11.3092,31.4798,7.9709,2.133,4.5884,1.9356,19.556,5.7479,3.9961,1.2076,2.8652,8.4822,12.8451,3.1322,4.4182,3.386,1.5054,1.5877,4.0325,11.1179,2.7628,2.8244,9.6355,2.317,2.1795,2.2556,12.4315,1.9074,3.4847,1.2988,14.6543,5.5549,7.1324,4.3004,9.1951,6.2974,7.1647,7.0624,3.4631,1.6725,4.7485,,,,,,,,,,,,,,,79,,,,20
+nG+AMS1T5HC007,1.6659,1.7828,,70-79y,CN,,,17.8769,5.1535,3.0321,2.4826,1.6666,edsd,CN,,M,,0.47796,5.078,4.9566,0.8445,9.3653,1.6061,0.424,3.0552,3.0989,51.1779,15.1321,216.6957,4.6146,4.8128,1.7295,2.1918,3.9239,7.9638,2.2967,3.3001,0.48128,6.7984,13.2071,13.7496,7.5703,2.6396,5.4468,1.8985,19.216,6.4185,4.4733,1.3434,3.0391,7.5365,15.4631,4.3392,4.6258,3.1556,1.7859,1.6449,4.9609,11.7447,3.4822,2.719,12.6033,2.4047,2.8525,2.5624,12.6387,1.7191,4.3739,1.4482,17.3921,5.9104,10.0674,4.0538,10.7372,7.583,7.7141,8.4243,3.7445,1.4211,4.9688,30,,,0.08927,,,,0.41211,4.7502,4.4494,0.88817,11.0332,2.0729,0.42072,3.1797,3.1087,51.8561,14.6903,219.8286,3.7911,5.6521,1.876,1.9982,4.1201,8.1061,2.2995,3.5268,0.50053,7.3504,12.0911,13.2517,8.4542,2.6408,5.416,1.9492,18.6234,5.5033,4.4177,1.1802,2.8441,8.3291,15.0358,3.5615,4.4547,3.1271,1.7978,1.6274,4.2539,11.757,3.3586,2.5473,11.4211,2.3964,2.5869,2.2957,13.0814,2.013,4.1601,1.3419,16.0654,5.6773,8.8272,5.3792,10.9949,7.9936,7.4829,8.5115,3.6594,1.5917,4.7513,,,,,,,,,,,,,,,72,,,,21
+nG+AMS1T5HC008,1.0932,2.2425,,70-79y,CN,,,15.199,3.9893,2.6174,2.0517,1.6012,edsd,CN,,F,,0.42826,4.1262,3.4235,0.7322,9.3178,1.5448,0.37164,2.4959,2.7411,41.9286,12.8402,202.0467,3.1584,4.0078,1.4425,1.6809,2.8299,6.45,1.9025,2.5833,0.50281,6.0717,10.8507,22.2409,6.3756,2.4227,4.4131,1.6249,16.4381,6.502,3.7905,0.88686,2.0521,5.6651,14.3444,3.0486,3.6426,3.4143,1.3539,1.3995,3.8467,10.2851,2.7835,1.812,10.97,2.0871,2.4663,1.8051,11.21,1.6919,3.438,1.1858,12.5322,4.4374,8.6658,3.6118,10.7694,6.5595,6.1353,6.9864,3.6013,1.2821,4.2019,29,,,0.06877,,,,0.38968,3.3501,3.4672,0.73159,9.5638,1.7983,0.38346,2.2925,2.8581,41.6767,12.4228,201.5903,3.455,4.0856,1.4647,1.8713,3.4857,6.3165,1.8886,2.8518,0.38128,6.2831,10.8354,16.018,6.5332,2.3407,4.1756,1.603,16.1406,4.8799,3.741,0.9126,2.0726,6.5775,14.5052,2.8103,3.6301,3.318,1.5267,1.438,3.7085,9.8992,2.5701,1.8127,10.9132,2.0792,2.3463,1.712,10.9258,1.7643,3.4478,1.1412,12.2098,4.5591,8.22,4.3735,9.6628,7.0929,6.0902,7.6569,3.4244,1.2908,3.978,,,,,,,,,,,,,,,70,,,,22
+nG+AMS1T5HC009,1.814,2.5602,,70-79y,CN,,,16.7592,4.5333,2.4711,2.0488,1.5971,edsd,CN,,F,,0.37454,4.2679,3.4546,0.78837,9.0189,1.5173,0.37894,2.8455,2.5866,43.1009,13.553,198.4048,3.869,4.3568,1.589,1.7103,3.1307,6.399,2.1713,2.8692,0.55843,5.9092,10.8045,21.7893,6.1336,2.5025,4.2802,1.7653,18.6146,6.139,4.2287,0.88755,2.1453,6.7466,13.7692,3.7925,3.6689,3.3705,1.502,1.4396,4.1181,9.6476,2.9457,2.154,11.3227,2.2295,2.6967,2.0946,11.3458,1.6888,3.3873,1.3157,12.2959,5.5811,8.5652,3.8479,10.7412,6.4642,6.7553,7.5228,3.4992,1.4272,4.3849,30,,,0.06957,,,,0.33461,3.4098,3.3815,0.82664,10.3369,1.7727,0.37465,2.8566,2.7586,43.4399,13.3747,204.0351,3.5984,4.2182,1.668,1.5552,3.405,6.6092,2.0323,3.1175,0.65435,6.1003,11.3715,17.315,6.7319,2.2165,4.0733,1.6765,17.552,5.2988,4.0233,1.149,2.3706,7.6768,14.1306,2.767,3.6394,2.7926,1.301,1.4064,3.8115,9.785,2.7144,1.9653,10.5483,2.0743,2.2339,1.7943,12.177,1.7591,3.1172,1.2038,12.2302,5.3583,8.2656,4.5761,9.9849,7.0811,6.5098,8.0801,3.049,1.3212,4.1878,,,,,,,,,,,,,,,70,,,,23
+nG+AMS1T5HC010,0.97687,1.4216,,70-79y,CN,,,14.7753,3.9446,2.2385,1.9849,1.1857,edsd,CN,,F,,0.37516,4.2226,3.1761,0.6525,8.5942,1.488,0.34048,3.342,2.3543,40.0559,11.9709,208.3012,3.7464,4.2839,1.3277,1.7469,3.1156,6.0968,2.1474,2.4806,0.33711,5.3593,9.9434,11.423,6.9309,2.3286,4.0897,1.7715,18.2664,5.4848,3.9559,0.95627,2.3329,6.1665,11.8295,3.7023,3.952,3.0267,1.4082,1.2873,4.253,10.1122,2.7603,1.8075,10.9985,2.0306,2.3887,1.8114,11.9401,1.6452,2.9935,1.2596,12.6797,5.0618,9.1592,3.8033,10.6744,6.3452,6.2495,6.4164,3.5052,1.3092,4.078,26,,,0.07862,,,,0.34953,4.0076,3.0836,0.68493,10.0177,1.6198,0.34545,3.3005,2.4421,39.8214,11.9444,212.1663,3.4136,4.6814,1.3917,1.6897,3.4374,6.3586,2.0423,2.7308,0.43528,6.0311,10.3798,9.4804,7.4337,2.0858,4.245,1.7035,18.315,5.1387,3.7179,0.97367,2.299,6.7998,12.6236,3.2164,3.8431,3.2791,1.457,1.3057,3.8666,10.1944,2.5203,1.7214,10.0348,1.8868,2.1371,1.5907,11.6578,1.587,3.0072,1.2301,11.8694,4.9874,7.0944,4.5361,9.4267,6.2985,5.9992,6.7056,3.5618,1.2238,3.8768,,,,,,,,,,,,,,,72,,,,24
+nG+AMS1T5HC011,1.169,2.0062,,70-79y,CN,,,18.0598,4.3786,2.4745,2.2798,1.0989,edsd,CN,,F,,0.54456,4.9132,4.5723,0.96388,10.4851,1.891,0.41552,3.7533,3.6918,46.6539,14.7498,257.7759,4.4326,5.1742,1.8626,2.1815,4.3243,7.9531,2.414,3.4711,0.49151,7.263,12.594,13.0408,7.8541,2.7562,5.1811,2.0602,20.8553,6.4883,4.6903,1.2571,2.7044,8.048,14.581,4.0329,4.465,3.5137,1.6547,1.6904,5.0085,12.6524,3.6186,2.5299,12.8486,2.9574,2.9618,2.5804,12.7845,2.5322,4.3726,1.38,17.0909,6.09,10.6727,4.2936,12.0351,8.0575,8.049,8.8366,4.4701,1.8082,5.1393,29,,,0.08319,,,,0.47559,4.8806,4.3102,0.97871,12.5747,2.1921,0.43353,3.4315,3.9326,46.0808,14.4232,261.275,4.4239,5.0832,1.9258,2.1956,4.3053,8.2534,2.3453,3.8137,0.8319,7.7388,12.7852,11.473,8.6567,2.7088,5.4616,1.9699,20.6915,6.0666,4.6542,1.1047,2.822,8.6493,16.0198,3.8712,4.8025,3.908,1.772,1.6958,4.5097,11.9595,3.2428,2.4554,10.2429,2.6699,2.6451,2.2592,12.1602,2.3043,4.1649,1.3468,15.4497,6.2855,9.0598,4.7164,10.9431,8.7938,7.6923,9.2186,4.3361,1.7648,4.9036,,,,,,,,,,,,,,,71,,,,25
+nG+AMS1T5HC012,1.5191,2.0916,,60-69y,CN,,,17.9005,4.739,2.5755,2.2135,1.0014,edsd,CN,,F,,0.44488,4.4443,3.8757,0.91061,9.3057,1.5811,0.40645,3.5693,3.0836,46.1134,15.5561,240.6768,3.5014,4.7193,1.6611,1.8263,3.467,7.6012,2.3043,3.0562,0.36461,6.2071,11.3352,13.8937,7.7564,2.5376,4.4862,1.8661,18.2848,5.9656,4.276,1.0249,2.3924,6.6474,13.9609,4.1988,4.5183,2.86,1.5388,1.6271,4.2587,10.0404,3.095,2.2052,10.8637,2.1484,2.6879,2.1839,11.5403,1.9056,3.9746,1.2827,15.0832,5.0173,8.9545,4.4032,11.3401,6.9025,7.7356,7.755,3.6702,1.5435,4.8049,28,,,0.0808,,,,0.40132,3.8431,3.8487,0.8916,9.3863,1.9295,0.41197,3.4883,3.2379,45.1005,15.1601,243.9959,3.6643,4.8708,1.7718,1.8804,3.798,7.4982,2.1934,3.2723,0.42116,6.2522,11.5592,12.0578,8.1686,2.4928,4.3221,1.8294,18.8893,5.6833,4.0677,1.0349,2.3303,7.6655,14.2617,3.6665,4.3439,3.4001,1.6712,1.6101,3.988,10.4929,2.9619,2.1346,9.877,2.2098,2.4739,1.9364,10.878,1.8382,3.9127,1.1739,14.0018,5.038,7.9455,4.9629,10.1514,7.1629,7.4219,8.2366,3.7113,1.295,4.5049,,,,,,,,,,,,,,,63,,,,26
+nG+AMS1T5HC013,1.651,1.578,,70-79y,CN,,,15.8825,4.2673,2.3922,2.0369,1.9093,edsd,CN,,F,,0.42454,5.04,3.9292,0.84107,9.6452,1.6768,0.39933,3.1842,3.0206,44.4366,12.711,192.1346,3.6082,4.6257,1.6683,1.9075,3.719,7.1633,2.4793,3.0007,0.44803,6.3827,12.081,16.4151,7.3946,2.4985,5.6776,1.9251,20.5998,6.6525,4.5558,1.0851,2.4038,7.9306,14.9899,3.5537,4.3191,3.4179,1.4683,1.3888,4.1715,10.4699,3.0969,2.2582,11.0923,1.9455,2.6048,2.2819,12.8191,1.5474,3.5266,1.3937,15.4303,5.4839,8.876,4.0371,10.0853,7.1046,7.0248,8.0934,3.9486,1.3138,4.4327,30,,,0.08128,,,,0.40112,4.4022,3.8127,0.84292,10.4294,1.9181,0.4066,3.2956,3.3034,43.2933,12.2852,195.4331,4.1476,4.8252,1.7405,1.8603,4.1116,7.4872,2.3123,3.2075,0.52761,6.8412,12.3106,17.6306,8.1582,2.2809,5.5381,1.9405,20.5,5.7808,4.3326,1.0672,2.6796,8.8146,15.1793,3.0222,4.2075,4.1684,1.4475,1.432,3.9265,10.2967,2.9938,2.3679,10.2606,2.2,2.418,2.126,12.3454,1.6474,3.4636,1.377,14.6949,5.5665,8.65,4.3661,10.3739,7.0267,6.7878,8.0311,3.5995,1.3499,4.2099,,,,,,,,,,,,,,,78,,,,27
+nG+AMS1T5HC014,1.2958,2.1299,,60-69y,CN,,,16.5496,4.7502,2.5628,2.2424,1.368,edsd,CN,,M,,0.44617,4.8598,3.7848,0.87777,10.0979,1.7566,0.40067,3.4506,2.7297,47.0212,13.5847,221.6966,3.8315,5.2398,1.7173,1.8199,3.2994,7.2309,2.2924,2.8334,0.75056,7.0508,11.4622,19.9328,8.008,2.6424,4.7707,1.892,19.1819,6.5377,4.6011,1.3013,2.771,6.9166,15.1973,4.0804,4.6446,3.5604,1.4844,1.4938,3.962,10.5184,3.1201,2.1096,12.3416,2.5135,2.8759,2.1765,13.7325,2.0896,3.8847,1.2774,16.593,5.7101,9.0617,4.1628,10.9341,7.3335,7.3053,7.8828,3.7517,1.6896,4.5504,26,,,0.08075,,,,0.42253,4.3671,3.8333,0.88638,10.8548,1.9727,0.41096,3.312,2.8969,48.291,13.6586,226.1795,4.0193,5.0393,1.7967,1.8945,3.7899,7.6897,2.1491,3.0375,0.68417,6.8691,12.4007,17.2503,8.5289,2.5194,4.8619,1.9242,20.216,5.2877,4.251,1.0049,2.4198,7.9264,15.0508,3.3336,4.4759,3.332,1.6136,1.5411,4.0329,10.1034,2.843,2.142,11.3717,2.4668,2.7026,2.1764,12.8708,2.0604,3.8883,1.2363,15.7196,5.4532,9.0707,4.8823,10.0276,7.3271,6.9977,8.4846,3.6974,1.5527,4.3466,,,,,,,,,,,,,,,60,,,,28
+nG+AMS1T5HC015,1.0188,1.5845,,60-69y,CN,,,18.9176,4.9845,3.0327,2.3002,1.1534,edsd,CN,,M,,0.44492,4.7275,4.038,0.8882,9.3483,1.8329,0.41897,2.636,2.5681,50.4537,15.6313,243.7977,3.9291,4.1531,1.6595,2.0307,3.7187,7.6804,2.2471,3.1069,0.36724,7.2898,12.4775,10.1571,7.2814,2.7463,4.6468,2.0028,20.032,6.9543,4.4957,0.9325,2.2468,6.9939,15.2735,3.8225,4.403,3.7584,1.686,1.6433,4.8835,10.7779,3.2545,2.2563,11.976,2.5638,2.594,2.2646,13.4711,2.3021,3.8509,1.3382,14.606,4.9107,8.6483,3.7769,10.954,7.4974,7.7499,7.8026,4.2005,1.5844,5.0823,29,,,0.08245,,,,0.40591,4.3511,4.1919,0.93717,11.591,1.9736,0.40317,2.5672,2.8422,49.6939,15.073,247.7454,3.9002,4.608,1.7831,2.0694,4.1558,7.4065,2.2668,3.3797,0.51741,6.3098,11.9523,10.462,7.6875,2.4991,4.3592,1.9722,18.9592,5.7983,4.113,0.98527,2.3532,8.6556,15.3673,2.7658,3.9583,3.4796,1.6501,1.6653,4.49,10.9272,3.2593,2.3262,10.541,2.2901,2.3298,2.1327,13.5264,1.8934,3.7745,1.2176,15.887,5.6699,8.3097,4.5506,11.1134,8.115,7.2981,8.5425,3.9409,1.4808,4.837,,,,,,,,,,,,,,,66,,,,29
+nG+AMS1T5HC016,1.0035,1.9683,,60-69y,CN,,,19.9378,5.4555,2.7276,2.3494,1.0408,edsd,CN,,M,,0.49152,4.6922,4.2871,0.93788,9.1982,1.8866,0.42028,3.2526,2.8993,49.2067,15.3827,246.2771,4.0678,4.6555,1.7889,2.2218,3.5865,6.9908,2.1694,3.189,0.41871,6.6759,11.318,10.7932,7.5869,2.8104,4.7808,1.8658,17.8708,5.9037,4.5924,0.95883,2.1709,7.0881,14.2233,4.2514,4.4561,3.921,1.7236,1.6677,4.3803,10.6443,3.1859,2.0821,11.519,2.5469,2.805,2.1262,11.7631,2.314,3.8748,1.3265,15.6305,5.4097,9.3659,3.9117,11.1783,7.9989,7.5241,7.9834,4.479,1.5798,5.0581,29,,,0.08861,,,,0.42259,3.9151,3.8534,0.89704,11.418,1.9291,0.43687,3.1833,3.1164,49.5065,14.8788,248.8227,3.7833,4.9765,1.7335,2.1616,3.7506,7.1333,2.2727,3.3593,0.49432,6.7266,11.5585,12.2358,8.469,2.6412,4.4938,1.8843,19.4685,5.6307,4.2925,0.92792,2.3972,8.152,14.3111,3.5521,4.4969,4.0445,1.8308,1.6938,3.9334,10.5938,2.9188,2.1271,9.6312,2.1039,2.6442,1.9149,11.9125,1.9632,3.8376,1.3268,14.6467,5.58,8.1734,4.9331,10.6885,8.0677,7.2765,8.4394,3.9282,1.4508,4.903,,,,,,,,,,,,,,,62,,,,30
+nG+AMS1T5HC017,2.5948,2.3702,,70-79y,CN,,,18.3099,4.7843,2.6607,2.3598,2.2756,edsd,CN,,M,,0.45413,5.2169,4.406,0.92369,9.7685,1.8709,0.41953,2.9403,3.2971,47.4564,13.3742,215.926,4.2559,4.382,1.8454,2.019,3.8872,8.2525,2.3092,3.1706,1.0519,6.8556,12.624,42.0744,7.6174,2.6328,4.5129,2.1563,21.5817,6.4996,4.5213,1.2799,3.0216,7.896,14.667,3.9336,4.4719,3.2469,1.597,1.6387,4.4991,11.3342,3.4725,2.5062,12.7977,2.3546,2.8076,2.4763,14.0994,2.0185,4.294,1.4297,17.2763,5.5603,8.8749,3.9616,12.0068,7.7847,7.5574,8.4177,3.9967,1.6291,5.0856,29,,,0.07446,,,,0.43358,4.5528,3.9821,0.9567,12.3409,1.9698,0.42106,3.137,3.6279,47.2617,13.2285,220.4778,4.1024,5.1236,1.8941,2.0784,4.3129,8.4134,2.3073,3.4863,1.0172,6.6592,13.1288,29.6512,8.0098,2.4687,4.8022,2.2237,22.0412,5.5348,4.2817,1.2997,2.9285,8.7517,15.0559,3.3631,4.3418,3.279,1.668,1.6435,3.8864,11.1202,3.425,2.3243,11.6151,2.0996,2.5177,2.0387,13.1865,2.1241,4.2087,1.3218,16.1404,5.4748,9.0184,4.7434,11.8296,8.4678,7.2774,8.7056,3.7601,1.4845,4.9151,,,,,,,,,,,,,,,77,,,,31
+nG+AMS1T5HC018,1.076,1.5729,,70-79y,CN,,,18.5205,4.5333,2.5554,2.382,1.2612,edsd,CN,,M,,0.42651,4.4975,3.9313,0.88146,9.2589,1.6574,0.40044,3.4373,2.459,49.5695,14.7056,224.2603,3.7564,5.3392,1.8471,1.8403,3.4057,8.1556,2.2212,3.1719,0.32748,7.2429,12.2544,8.9561,8.4921,2.5077,4.2283,1.8433,18.612,6.7319,4.3007,0.99429,2.2854,6.8197,14.1192,4.5897,5.1101,3.3629,1.4835,1.5442,4.0854,10.2529,3.4797,2.2262,11.9197,2.5934,2.4762,2.2562,12.2977,2.2135,3.6962,1.2614,14.2564,5.0238,9.0017,4.1028,11.0075,7.9222,7.4677,8.3303,3.4379,1.4484,4.9063,28,,,0.07575,,,,0.36748,4.1159,3.9907,0.89568,10.0903,1.8072,0.41892,3.406,2.5003,49.9071,14.6481,224.1156,3.5958,5.0682,1.8943,1.9211,3.5305,8.1594,2.2207,3.3412,0.40967,6.9888,12.3164,8.2854,9.245,2.2466,4.5105,1.8458,17.5795,5.6872,3.989,1.0464,2.3621,7.6525,13.9705,3.7683,5.0057,3.4272,1.4047,1.541,3.7805,9.8649,3.2935,2.2439,10.4726,2.2022,2.3909,2.1939,11.5285,1.9192,3.7044,1.2132,14.4175,4.886,8.2998,4.7643,10.3795,8.3,7.0253,8.9281,3.0674,1.4503,4.6711,,,,,,,,,,,,,,,72,,,,32
+nG+AMS1T5HC019,1.7938,1.714,,70-79y,CN,,,17.5262,5.0323,2.6273,2.323,2.9477,edsd,CN,,M,,0.47384,5.0062,4.1532,0.87597,9.3932,1.6616,0.41447,3.2987,2.9435,47.8478,15.2294,240.4316,4.2706,4.6493,1.7333,2.0427,3.7186,7.5937,2.4366,3.166,0.60762,7.5747,11.8586,35.0719,8.122,2.5839,4.6036,2.0542,20.5391,6.4609,4.4376,1.4546,3.2996,7.5252,14.1186,4.3706,4.6219,3.4918,1.6414,1.5954,4.7807,11.3682,3.2999,2.2331,12.5857,2.6919,2.7591,2.408,16.7357,2.1631,3.5807,1.5153,16.2504,6.144,9.733,3.9202,11.0686,7.1837,7.4728,8.3974,3.9737,1.5945,4.9511,25,,,0.08307,,,,0.41218,4.1667,4.258,0.88855,11.3817,2.1453,0.39804,3.4747,3.2036,47.8771,14.9799,243.2493,4.134,5.056,1.7707,2.1883,4.4843,7.2855,2.3994,3.2833,0.70855,7.2674,11.7256,36.8666,9.1059,2.5281,4.4332,2.2023,20.8614,5.4944,4.31,1.3109,3.2078,9.0652,14.7209,3.5247,4.5213,3.9781,1.7034,1.6604,4.1115,10.9734,3.0825,2.3321,10.9465,2.11,2.4505,2.3609,15.2789,1.8904,3.5515,1.3379,16.7818,5.9398,8.2247,5.1463,11.5773,7.6795,6.9178,8.5756,3.6955,1.5061,4.7595,,,,,,,,,,,,,,,70,,,,33
+nG+AMS1T5HC020,1.6456,2.2644,,70-79y,CN,,,18.648,4.7161,2.6648,2.0488,1.0389,edsd,CN,,F,,0.44495,4.4628,3.9673,0.81158,8.8426,1.7656,0.40119,3.274,3.1447,43.2517,13.9821,224.2628,3.895,4.2645,1.5702,1.9253,3.429,6.7828,2.2016,2.8996,0.75322,6.5072,9.9826,16.7889,6.8138,2.6173,5.2523,1.7795,19.2897,5.9481,4.3193,1.2233,2.7591,6.4089,13.0377,3.9099,3.9462,3.3267,1.4772,1.4795,4.2848,9.9788,2.9921,2.1748,11.6562,2.5173,2.45,2.2402,13.0428,1.9809,3.5655,1.3373,15.6985,5.2782,8.9305,3.8792,10.4922,7.0127,7.1078,8.1096,4.3223,1.5497,4.7995,29,,,0.07334,,,,0.39267,3.8895,3.8702,0.83316,10.2686,1.8782,0.39221,3.1718,3.2466,43.5641,13.7417,227.5293,3.9038,4.4936,1.6899,1.7505,3.7168,6.967,2.1558,3.0928,0.69172,6.2461,10.7232,14.7903,7.3151,2.3802,4.7442,1.8236,19.2383,4.667,4.1567,1.1023,2.4211,7.5696,13.3822,3.0362,3.7902,3.4185,1.55,1.5006,4.118,10.3697,2.7955,2.1158,9.4488,2.0884,2.573,2.0512,13.181,1.8786,3.5052,1.2698,15.9411,5.2705,7.9077,4.5235,9.7753,7.4112,6.7759,8.1007,3.5074,1.421,4.5972,,,,,,,,,,,,,,,72,,,,34
+nG+AMS1T5HC021,1.2068,1.4588,,60-69y,CN,,,17.684,4.8838,2.8921,2.3782,1.0511,edsd,CN,,F,,0.3887,4.2462,3.8922,0.83691,8.2347,1.6142,0.39444,3.3204,2.4323,50.7717,14.1673,200.3927,4.1382,4.3587,1.6483,2.0322,3.3415,7.2732,2.1143,2.9863,0.32914,5.9628,11.0067,9.812,7.3589,2.6051,4.5514,1.7207,18.5287,5.7544,4.169,0.95711,2.2289,6.3517,12.3497,3.7467,4.3142,3.6648,1.5799,1.4678,4.0399,9.2307,3.1717,2.1136,11.0569,2.3142,2.6608,2.1713,11.7583,1.8458,3.5857,1.251,13.6614,5.023,7.9887,3.9842,10.1863,6.3064,7.512,7.1342,4.0344,1.6448,4.7191,30,,,0.08159,,,,0.36199,4.0472,3.7408,0.8218,9.0756,1.9022,0.39516,3.2221,2.5015,49.986,14.0525,202.5455,3.6053,4.6393,1.6434,1.9894,3.6079,7.2811,2.083,3.1017,0.35781,6.1375,10.9388,8.1124,7.7381,2.4733,4.6339,1.7644,17.6302,4.4945,4.1108,0.95447,2.2262,7.5161,13.3617,3.4065,4.213,3.7312,1.6438,1.4764,3.596,8.7178,2.8378,2.0832,9.9204,2.2087,2.7044,1.906,11.6764,1.9763,3.4135,1.2162,12.8794,5.0335,7.9386,4.647,9.4351,7.1689,7.159,7.4283,3.699,1.512,4.4256,,,,,,,,,,,,,,,62,,,,35
+nG+AMS1T5HC022,1.6374,1.8017,,70-79y,CN,,,18.9081,4.6385,2.6861,2.1986,1.4656,edsd,CN,,F,,0.41414,4.7603,4.2189,0.90388,9.1437,1.7064,0.42072,2.9037,2.8513,46.635,15.2001,213.4574,3.949,4.9891,1.6972,1.9358,3.5203,7.1017,2.429,3.1525,0.45813,6.0095,10.6636,13.8588,7.1432,2.5448,5.473,1.8594,19.8549,5.8466,4.5663,1.2063,2.6654,6.871,13.3923,2.9022,4.2611,3.4516,1.6549,1.567,4.3145,10.4386,3.1605,2.2431,11.5897,2.4359,2.7641,2.2894,13.6874,1.7909,3.9997,1.3256,15.6999,5.845,8.974,3.7842,9.2288,6.5373,6.8997,7.2249,3.8351,1.5429,5.2915,30,,,0.09828,,,,0.37168,4.4166,3.9129,0.81699,10.0195,1.926,0.39487,2.9159,2.9687,45.1406,14.7142,215.8332,4.3562,4.6859,1.5534,1.9862,3.8763,6.9495,2.2603,3.1876,0.47303,5.909,10.6118,15.3711,7.5137,2.3611,4.9921,1.8483,20.3927,4.6608,4.2661,1.013,2.4162,7.9592,13.1652,2.8575,3.9442,3.5751,1.6974,1.5114,3.8501,10.1319,2.7337,2.2595,11.7534,2.3645,2.3974,2.1469,13.9635,1.8808,3.7462,1.2397,15.1738,5.4491,8.1971,4.0652,9.7343,6.8885,6.7086,6.996,3.9782,1.4654,4.6497,,,,,,,,,,,,,,,77,,,,36
+nG+AMS1T5HC023,1.002,1.1684,,70-79y,CN,,,16.6277,3.9657,2.2847,2.0418,1.261,edsd,CN,,F,,0.39394,4.3224,3.8048,0.80585,8.7173,1.536,0.37092,3.0962,2.385,41.4748,12.7326,190.4946,3.6587,3.971,1.7193,1.9062,3.5415,6.5512,2.2302,2.7514,0.39808,5.4912,9.9061,13.1029,6.7001,2.4936,4.1108,1.8625,17.4723,5.7014,4.1818,0.9141,2.2374,6.5123,12.0092,3.7121,3.6946,3.322,1.5541,1.3274,3.8072,8.9777,3.1353,1.9205,10.3112,2.1389,2.8676,1.9291,12.5735,1.7093,3.2119,1.2571,13.9844,4.9117,8.733,3.5506,10.0089,6.3079,6.6813,7.4077,3.602,1.279,4.4563,30,,,0.07494,,,,0.35506,3.7269,3.5221,0.80319,10.3271,1.7669,0.36975,3.1339,2.7496,41.9494,12.9262,192.3478,3.7325,4.2951,1.702,1.815,3.8925,6.7927,2.24,2.9243,0.49501,5.9517,9.6786,14.9818,7.143,2.2402,4.2238,1.9029,16.5933,5.0751,3.9285,0.99017,2.3795,7.3528,11.9965,3.327,3.6548,3.3435,1.3382,1.3659,3.4569,9.1884,2.8246,2.1334,9.308,1.9607,2.4268,1.7411,12.4461,1.8028,3.2122,1.1843,15.0862,5.0477,7.6044,4.5928,9.329,6.8605,6.504,7.313,3.0297,1.3492,4.23,,,,,,,,,,,,,,,73,,,,37
+nG+AMS3T0MCI001,1.5612,1.5528,,50-59y,Other,,,22.1811,5.8009,3.2572,2.5426,1.3455,edsd,MCI,,M,,0.46979,4.6851,4.6844,0.93238,11.7363,1.8149,0.41629,4.0107,3.0601,58.4906,17.9844,236.0462,4.3491,5.9042,1.8031,2.192,3.8104,8.7116,2.382,3.5674,0.61776,7.8584,13.1241,16.0191,9.3182,2.6354,4.9199,2.0408,21.7276,7.7007,4.3548,1.1164,2.8154,7.5905,16.551,4.4443,5.647,3.6497,1.689,1.6838,4.7538,12.7487,3.5374,2.5832,13.3238,2.9421,2.8535,2.661,13.5612,2.5205,4.47,1.2694,15.8127,5.7834,11.0348,4.286,10.7712,9.0984,7.8547,9.0054,4.2673,1.9406,5.4329,27,,MCI,0.08636,,,,0.44099,4.262,4.5407,0.89961,12.1452,1.9233,0.42533,3.8322,3.3853,58.2693,17.7021,245.8511,4.6459,5.5132,1.913,2.3232,3.7062,9.204,2.1937,3.6539,0.57608,8.6467,14.5805,14.2623,9.7915,2.4607,5.0009,1.9822,19.6963,6.1881,4.1554,1.1898,3.1048,8.5634,17.9601,3.8559,5.5638,4.0271,1.7398,1.6726,4.3129,12.0991,3.2764,2.5034,12.7685,2.3612,2.4879,2.3505,13.9407,2.0861,4.3591,1.2293,15.5683,5.8532,9.3915,5.1807,11.3379,8.4316,7.6238,9.2188,4.0762,1.6366,5.1514,,,,,,,,,,,,,,,58,,,,38
+nG+AMS3T0MCI002,1.0172,1.5911,,60-69y,Other,,,17.2523,4.2532,2.5065,2.1287,1.0729,edsd,MCI,,F,,0.49526,4.5045,4.8668,0.99715,10.3806,1.6322,0.41932,3.6094,3.0375,45.8428,13.8831,208.7993,4.1159,5.1902,1.8122,2.3666,3.6493,7.7524,2.187,3.1016,0.54112,6.7305,11.9203,12.3983,7.6911,2.4611,4.4675,1.8786,18.425,6.5712,4.2002,1.0916,2.5535,6.7422,13.8484,4.0377,4.7157,3.8995,1.5328,1.4679,4.0856,10.4042,3.2552,2.5625,11.9811,2.5824,2.5914,2.2601,13.01,2.1086,3.9664,1.2963,15.1143,5.0804,9.8394,3.8769,11.0512,7.1363,7.2578,8.4033,3.9777,1.7457,4.7381,26,,MCI,0.07143,,,,0.41515,4.0148,4.3377,1.0266,10.6585,1.8884,0.41273,3.4566,3.0201,46.1005,13.5428,204.7483,4.0641,4.9446,1.9135,2.0912,4.0081,7.5102,2.1408,3.7434,0.55657,6.825,11.5526,11.3638,8.4588,2.2511,4.4081,1.7657,17.8984,5.2828,3.9864,1.1714,2.7402,7.7828,14.6532,3.3716,4.8358,3.5311,1.4668,1.4966,3.8056,10.1363,3.0666,2.3087,10.6069,2.3555,2.3965,1.9664,12.413,2.008,3.8316,1.1711,15.0282,5.3515,8.8145,4.2942,10.0806,7.5512,6.7267,8.3918,3.5315,1.4607,4.4811,,,,,,,,,,,,,,,63,,,,39
+nG+AMS3T0MCI003,1.1798,2.1211,,60-69y,Other,,,21.4893,5.1861,3.1347,2.4314,1.0976,edsd,MCI,,M,,0.43588,5.2022,4.5901,1.026,10.3088,1.8758,0.42315,3.5443,2.6904,52.0304,17.4215,252.4717,4.1715,5.3907,2.0776,2.1122,4.1818,8.1502,2.4245,3.5424,0.39072,7.1483,13.6809,9.7437,7.7952,2.7017,4.7385,2.0763,20.6499,7.252,4.7389,1.1962,2.8704,7.8075,16.2596,3.7497,4.8407,3.58,1.7339,1.5755,4.6564,11.2292,3.5329,2.3972,11.3309,2.2933,2.9495,2.4483,13.4651,2.1543,4.0091,1.4279,15.6956,5.8485,9.4144,4.3052,11.8283,8.7673,7.7091,9.5122,3.8815,1.6391,5.4028,29,,MCI,0.0856,,,,0.37286,4.8909,4.1988,1.0815,11.1846,2.0647,0.40562,3.793,2.855,51.3652,16.5514,252.7015,4.015,5.0213,2.0533,2.0381,4.3098,8.1273,2.2712,3.9391,0.62167,7.6726,12.7428,7.9245,8.2528,2.6347,4.8968,2.0238,19.571,5.7444,4.4372,1.1451,2.831,8.8697,16.2888,3.3058,4.4893,3.7074,1.8682,1.581,4.3629,11.2018,3.4349,2.4661,10.2604,2.3606,2.625,2.2729,12.3388,2.1117,4.0283,1.3336,17.0549,5.7327,8.5887,4.826,10.7447,8.7417,7.277,9.5,4.1023,1.601,5.1201,,,,,,,,,,,,,,,66,,,,40
+nG+AMS3T0MCI004,2.3722,1.8026,,70-79y,Other,,,17.5678,5.0099,2.8521,2.405,2.4162,edsd,MCI,,M,,0.47335,6.2693,5.144,0.95116,11.7003,1.8727,0.4509,3.6257,3.2439,50.4555,14.4933,238.7424,4.9252,5.6975,1.8697,2.3948,4.5646,8.5571,2.4444,3.3601,0.9025,8.4243,13.5711,32.5525,9.0367,2.6735,6.2151,2.1273,25.1051,8.9713,4.7688,1.3973,3.2169,9.2277,18.8747,4.3628,5.2768,4.5611,1.652,1.668,5.4421,12.8934,3.6051,2.7365,14.1955,2.993,2.8669,2.8207,15.5268,2.2326,4.6387,1.435,18.4898,7.0728,11.4554,4.7436,12.8896,9.2875,7.252,9.5514,4.191,1.8049,4.926,28,,MCI,0.07789,,,,0.42912,6.2992,4.9298,0.90295,14.1407,2.1559,0.45253,4.1079,3.5495,49.8605,14.4502,244.2927,5.1564,5.5844,1.9052,2.4407,5.3607,8.5592,2.5471,3.5677,0.67846,8.6978,14.059,27.4336,9.3264,2.7488,6.1433,2.196,23.3061,6.7632,4.7119,1.4862,3.6503,9.9152,19.0242,3.6796,5.1121,3.9768,2.0054,1.6568,5.004,12.6814,3.2971,2.6819,13.6552,3.0685,2.7286,2.3648,15.4733,2.633,4.3008,1.3892,18.732,6.8058,10.7194,5.0784,12.5559,9.6366,7.1373,9.5488,4.2107,1.699,4.7012,,,,,,,,,,,,,,,70,,,,41
+nG+AMS3T0MCI005,1.3524,2.2589,,60-69y,Other,,,18.4429,4.4829,2.4806,2.2936,1.4322,edsd,MCI,,F,,0.39746,4.2866,3.9682,0.71697,9.7666,1.4063,0.35407,2.6353,2.7425,48.7858,14.6907,211.5945,3.8726,4.5532,1.3235,1.9369,3.4121,7.3628,1.9641,2.6837,0.34929,6.4221,11.1264,13.2075,7.086,2.3733,4.2584,1.7049,18.0674,5.6059,3.7893,1.2208,3.0342,6.5881,13.5169,3.2029,4.381,3.6143,1.5872,1.5023,3.7284,9.0895,2.8842,2.1346,11.8226,2.8733,2.5093,2.2664,13.7014,2.376,3.5353,1.2014,14.5441,5.3283,10.1914,3.7472,10.5871,7.5841,7.2176,6.7205,4.0232,1.7095,4.7797,27,,MCI,0.08338,,,,0.33046,3.7805,3.5908,0.64242,10.1877,1.5848,0.33838,2.8331,2.9266,49.1293,14.0054,216.9418,3.8351,4.0748,1.2605,1.9102,3.7934,7.0467,2.1043,2.6398,0.57082,6.3333,10.8761,15.0825,7.5148,2.1142,4.1469,1.7515,18.3451,5.2188,3.8132,1.423,2.9005,7.7621,13.43,2.8209,4.1804,3.5914,1.4048,1.5279,3.3776,9.8346,2.4531,2.0043,10.4753,2.3324,2.1505,1.8378,13.4046,2.0355,3.4965,1.1427,14.9338,5.6198,8.6076,3.919,10.6959,7.3148,6.6104,6.4587,3.305,1.4654,4.5162,,,,,,,,,,,,,,,66,,,,42
+nG+AMS3T0MCI006,1.1194,1.7496,,70-79y,Other,,,16.7998,4.1865,2.2376,1.8995,0.96458,edsd,MCI,,F,,0.40435,3.9625,3.7351,0.72415,8.8151,1.563,0.3361,3.0649,2.9733,43.3333,12.804,189.1448,3.8558,4.2415,1.4044,1.8123,3.2036,6.7579,1.9871,2.5467,0.41701,6.0101,10.4886,14.5656,6.612,2.3723,3.9784,1.5876,17.3969,6.1877,3.847,1.0109,2.0313,6.171,13.2139,3.0054,3.8381,3.2505,1.3536,1.3799,3.7696,9.5992,2.6581,2.0828,11.0565,2.091,2.3532,2.0895,11.725,1.5903,3.6981,1.0937,13.1831,4.5162,8.4996,3.5995,9.7759,6.4179,6.4419,6.5772,3.5338,1.4236,4.2692,28,,MCI,0.06888,,,,0.37843,3.7247,3.6989,0.74951,9.5927,1.6426,0.34323,3.0811,3.4437,43.1869,12.1684,194.8429,3.7919,4.2695,1.4346,1.9731,3.1786,6.9349,1.9111,2.86,0.46835,6.5625,10.8308,11.6656,6.8965,2.1682,4.1599,1.6497,16.5157,5.3553,3.7239,0.98225,2.1203,6.59,13.1705,2.9068,3.7588,3.4353,1.4504,1.3243,3.3562,8.5837,2.5134,2.0102,10.5715,1.8592,2.1903,1.843,11.8801,1.5526,3.7696,1.0998,13.6789,4.48,7.1464,4.2164,9.4686,6.656,6.1911,6.6521,3.641,1.2939,4.068,,,,,,,,,,,,,,,74,,,,43
+nG+AMS3T0MCI007,1.0539,1.4794,,60-69y,Other,,,17.1365,4.7803,2.878,2.3474,0.98009,edsd,MCI,,F,,0.41604,4.5673,3.973,0.82268,9.3164,1.6657,0.38263,3.2631,2.7248,49.247,15.3281,205.3097,4.0305,4.6278,1.6079,1.9025,3.3598,7.3729,2.0395,3.0418,0.37085,6.2704,11.3971,8.4064,7.3764,2.5953,4.7776,1.7827,19.9306,6.1171,4.0164,1.0709,2.549,6.7603,14.7594,3.4979,4.2672,3.8005,1.5383,1.416,4.1396,9.7868,3.0104,2.224,11.5429,2.4724,2.474,2.1378,13.3993,1.9298,3.7598,1.1887,13.3558,5.1257,9.0983,4.1508,10.0838,7.2648,6.9905,7.1638,3.7456,1.4266,4.4057,23,,MCI,0.0748,,,,0.36371,3.9767,3.6062,0.81057,10.8823,1.925,0.36713,3.2766,2.8256,48.5734,14.4356,212.2345,3.9506,4.2223,1.6458,1.895,3.8209,7.2433,1.968,3.0836,0.38042,7.0325,10.9261,8.3182,7.9804,2.3648,4.5309,1.7385,18.9316,5.861,3.8634,0.90147,2.486,8.3783,13.4801,3.3664,4.4303,3.1982,1.6005,1.4597,3.7645,9.9058,2.63,2.1167,10.3889,2.1641,2.1732,1.8956,13.4823,1.8503,3.4878,1.1558,15.0964,5.4278,8.6347,4.3993,11.2976,7.2047,6.6749,7.2265,3.5464,1.4291,4.2138,,,,,,,,,,,,,,,65,,,,44
+nG+AMS3T0MCI008,1.0263,1.6573,,70-79y,Other,,,19.3435,4.7606,2.97,2.3012,1.1862,edsd,MCI,,M,,0.44415,4.6875,4.2417,0.88654,8.7968,1.5632,0.36176,3.0499,2.675,51.4787,16.4896,216.712,4.1647,4.5915,1.6946,2.0148,3.4262,7.4887,1.993,3.2963,0.50083,6.279,10.6071,17.2025,8.097,2.2322,4.4916,1.7519,17.6304,5.8612,3.7696,1.3214,2.9781,7.2991,13.0271,3.6447,4.4881,3.4439,1.3203,1.6886,4.1629,10.2604,3.2698,2.1921,11.1147,2.1272,2.3858,2.1995,12.42,1.9558,4.086,1.0622,14.4207,5.6712,9.747,4.1031,10.0305,7.8241,6.8078,7.4794,3.6103,1.467,4.8736,26,,MCI,0.07416,,,,0.40752,4.5177,4.0292,0.92814,11.7269,1.8172,0.37705,2.6446,3.0753,51.3695,16.2343,232.3607,4.025,4.8288,1.7743,2.0489,3.5537,7.7346,1.966,3.6065,0.67066,6.6048,12.0364,11.892,7.9318,2.2302,4.6232,1.7712,16.9019,5.2541,3.6354,1.0911,2.7163,7.8118,14.7521,2.877,4.639,3.647,1.4854,1.6559,3.7326,11.1153,2.984,2.1379,9.4866,2.1703,2.2453,2.0799,11.9413,2.031,3.9218,1.0609,14.6241,5.1466,8.2718,4.1317,9.2928,8.2179,7.2191,7.7894,3.4566,1.5695,4.8346,,,,,,,,,,,,,,,70,,,,45
+nG+AMS3T0MCI009,1.6679,1.6088,,70-79y,Other,,,20.5451,5.4004,2.8574,2.4335,1.5379,edsd,MCI,,M,,0.43782,4.9207,4.1636,0.7214,9.4337,1.6433,0.38257,3.1698,2.7164,51.2891,17.357,232.4672,4.1588,4.4023,1.5106,1.8261,3.5344,7.4849,2.0934,2.8019,0.49349,6.6397,11.3361,12.8542,7.7772,2.394,4.5919,1.926,18.8358,6.9325,4.2138,1.1011,2.5482,7.6371,14.397,3.3834,4.6409,3.2288,1.505,1.7288,4.5085,11.0795,3.0972,2.2356,11.2918,2.3583,2.7276,2.0812,13.2127,1.8518,4.0694,1.2529,14.7058,5.1752,8.9686,3.7085,11.6813,7.4566,7.1034,7.1076,3.6503,1.3575,5.103,20,,MCI,0.08774,,,,0.39026,4.413,4.0238,0.69111,10.7837,1.7991,0.35829,3.2654,3.1728,52.3858,17.5979,233.4803,3.9169,4.7764,1.4493,2.1172,3.8129,7.5723,1.9881,2.93,0.53646,6.9251,11.3479,14.3883,8.7216,2.2894,4.3691,1.8869,19.2703,5.3678,3.8406,0.94118,2.3493,8.2775,14.4949,2.9755,4.3783,3.5209,1.5705,1.6026,4.023,10.8753,3.044,2.2122,10.4538,2.0598,2.3996,1.9456,11.0717,1.755,3.9922,1.1188,14.2328,5.4539,8.1186,4.5403,11.2315,7.1278,6.4665,7.3499,3.8612,1.2903,4.9718,,,,,,,,,,,,,,,70,,,,46
+nG+AMS3T0MCI010,1.2622,2.1065,,60-69y,Other,,,19.9315,4.8395,2.8917,2.4117,1.5249,edsd,MCI,,M,,0.46192,5.0058,4.3339,0.92984,9.3302,1.8003,0.40149,3.4592,3.127,50.868,16.6023,232.4718,4.2215,4.4937,1.6861,1.9723,3.8961,8.0619,2.2216,3.4468,0.75845,6.2778,12.2668,25.4666,8.0063,2.4828,4.5886,2.0881,20.8052,6.3878,4.4004,1.168,2.5419,7.6159,14.0223,3.5097,4.61,2.9794,1.4758,1.7462,4.1557,9.9015,3.3091,2.2907,12.6483,2.3082,2.5655,2.2698,13.4365,1.8173,3.9576,1.2919,14.552,5.677,8.8827,3.6195,10.0564,6.807,7.8753,7.6904,3.7485,1.5099,5.4395,28,,MCI,0.07574,,,,0.42152,4.4987,4.0823,0.8884,10.7409,1.9076,0.39345,3.3405,3.5829,50.1582,16.4222,237.4927,3.9817,4.8925,1.7,2.1817,3.8432,7.9421,2.1816,3.6406,0.66291,6.9133,11.9546,22.4278,8.2507,2.3413,4.3943,1.9362,18.9612,5.206,4.0039,1.1101,2.3501,8.7086,14.8922,3.4103,4.4381,3.6103,1.4682,1.7416,3.8169,10.4412,3.1447,2.2995,10.8503,1.806,2.1907,2.0631,12.7276,1.8463,3.7896,1.1758,14.9386,5.6305,8.4135,4.5391,10.7573,7.2375,7.6391,7.8526,3.5166,1.404,5.1384,,,,,,,,,,,,,,,64,,,,47
+nG+AMS3T0MCI011,1.8719,1.7773,,-50y,,,,16.2768,4.4055,2.2879,2.0523,1.5095,edsd,,,F,,0.36378,4.256,4.003,0.77666,10.0039,1.448,0.3662,2.676,3.1426,43.7109,13.7926,191.4103,4.0266,3.6503,1.491,1.8744,3.1916,7.1677,1.9547,2.7774,0.40884,6.2111,10.3825,21.9909,6.9145,2.2343,4.6753,1.6386,17.0596,6.4612,3.7574,1.0155,2.5799,6.2442,12.8847,2.982,4.0524,3.234,1.4045,1.3464,3.9387,9.9705,2.8701,2.232,11.6489,2.2465,2.3966,2.1588,11.8026,1.8025,3.6017,1.1631,14.5119,4.7806,9.2066,2.8296,9.0894,7.1143,6.423,6.8548,3.6979,1.4578,4.2791,,,,0.07894,,,,0.32711,3.5452,3.8936,0.80725,10.3432,1.5377,0.36148,2.725,3.2602,43.2103,12.6024,195.4017,3.974,4.3431,1.6069,1.943,3.4805,7.0278,2.013,3.0438,0.58583,5.7902,10.2882,14.6737,7.2448,2.0793,4.196,1.6708,16.4198,4.8115,3.4848,0.91859,2.1968,7.785,12.931,2.2855,3.8278,3.1038,1.4573,1.359,3.753,10.2366,2.7282,2.2328,9.7326,2.3256,2.0774,2.0478,11.388,1.953,3.4518,1.1501,14.8685,5.1579,8.8547,3.6085,9.405,7.3625,6.0475,7.358,3.4252,1.5901,4.0628,,,,,,,,,,,,,,,,,,,48
+nG+AMS3T0MCI012,1.2942,1.7239,,70-79y,Other,,,19.2755,4.3921,2.4858,2.142,1.4324,edsd,MCI,,F,,0.48466,4.7646,4.4503,0.89013,10.3576,1.6751,0.39506,3.188,3.6011,46.8022,16.2485,236.2561,3.7658,4.6747,1.7536,2.0561,3.5031,7.6814,2.2817,3.3085,0.57999,7.418,11.9185,16.4158,7.2622,2.5991,4.9895,1.8758,19.4086,6.6016,4.3998,1.0984,2.77,6.8637,15.8176,3.783,4.4089,3.4099,1.6164,1.7008,4.5968,10.6224,3.3782,2.3155,11.1911,2.8677,2.6807,2.3742,11.5328,2.4258,4.2289,1.2819,14.0924,4.7618,10.3903,3.7136,10.3277,8.0384,7.4475,8.4288,4.0182,1.6204,5.0355,29,,MCI,0.07289,,,,0.45306,4.5381,4.8483,0.91315,12.0047,1.8887,0.41072,2.9748,3.9854,46.3654,15.9503,247.9735,4.3528,4.653,1.8746,2.3681,4.1379,7.9612,2.1746,3.5198,0.7684,7.4359,12.1627,18.6368,7.7678,2.2997,4.5717,1.8178,20.3753,5.467,4.0427,1.1323,2.4473,7.5988,16.2235,3.2767,4.7382,3.9048,1.5594,1.718,4.3861,10.5983,3.0608,2.4649,10.305,2.378,2.336,2.3492,11.3933,2.2141,4.3835,1.2266,15.0078,5.3122,9.1233,4.4809,10.5594,9.0593,7.1405,8.8345,3.7418,1.6375,4.8726,,,,,,,,,,,,,,,74,,,,49
+nG+AMS3T0MCI013,1.4409,2.9115,,70-79y,Other,,,18.92,4.9901,2.8048,2.2373,1.4629,edsd,MCI,,M,,0.45745,4.8237,4.5414,0.89788,9.5266,1.7701,0.38887,3.2318,3.217,49.327,14.8297,225.3591,4.582,4.1609,1.7548,2.2036,3.5761,7.8643,2.3796,3.1695,0.81448,6.4688,11.8559,22.1591,7.39,2.5848,5.0043,1.8608,18.4817,5.5294,4.3773,1.1741,2.5507,7.5175,13.859,3.3291,4.5738,3.5953,1.6753,1.6474,4.6282,11.4852,3.059,2.412,14.123,2.7727,2.7582,2.4102,12.4904,2.1467,4.1105,1.2545,14.9704,5.8453,10.4402,3.6516,10.5394,8.0802,7.3593,8.3006,3.8459,1.7354,5.0235,28,,MCI,0.06747,,,,0.41517,4.7063,4.5421,0.90401,10.6557,1.8262,0.37462,3.3907,3.4665,49.2956,14.9021,226.904,4.4609,4.6632,1.8278,2.3805,3.6851,8.1722,2.1646,3.4753,0.76747,7.4006,12.5231,21.7125,7.9634,2.3845,4.8096,1.7793,19.129,6.1064,4.2,1.0789,2.6133,8.0011,14.6469,3.3883,4.5026,3.584,1.7848,1.6417,4.4516,12.1045,2.9352,2.3477,11.0207,2.5237,2.4884,2.1073,12.9376,2.0878,4.11,1.1406,14.3833,5.5701,7.9781,4.755,10.6104,7.6512,7.1341,8.4456,3.7111,1.5776,4.7321,,,,,,,,,,,,,,,72,,,,50
+nG+AMS3T0MCI014,1.1174,1.4711,,60-69y,Other,,,17.5546,5.1231,2.5734,2.2727,1.1125,edsd,MCI,,F,,0.45319,4.4582,4.2244,0.8969,10.3137,1.6215,0.36758,2.833,3.179,42.9266,14.4634,239.2128,3.9924,4.4054,1.7216,2.0467,3.4296,7.0611,2.0778,3.3334,0.40851,6.9187,11.089,10.5276,7.1949,2.3732,4.7597,1.6868,17.8174,7.0711,4.0756,1.3634,2.6403,6.6437,13.7377,3.3386,4.1122,3.2658,1.4475,1.6826,4.6291,11.3059,3.3554,2.2096,11.3454,2.4363,2.3627,2.2018,11.9001,1.965,3.8252,1.0655,14.9783,5.3351,9.0967,3.5745,11.1606,6.9867,7.6227,7.1663,3.6306,1.3679,4.8527,25,,MCI,0.0773,,,,0.43242,4.1539,4.2161,0.89318,10.6009,1.8447,0.37371,2.8146,3.3168,43.8168,14.1702,245.6176,3.7686,4.3549,1.7283,1.9715,3.6668,6.8065,1.9779,3.6014,0.39136,6.6976,11.0775,9.5783,7.7853,2.2752,4.6419,1.6013,17.934,5.7823,3.8878,1.2688,2.5147,7.2701,14.1547,3.0039,4.443,3.1875,1.4654,1.6961,4.2127,10.4401,2.9846,2.2915,9.8452,2.2241,2.2682,1.8932,11.6991,1.9406,3.8314,1.0409,14.5183,5.0858,8.1802,4.2762,10.8406,7.4213,7.0498,7.5485,3.4643,1.3272,4.6039,,,,,,,,,,,,,,,67,,,,51
+nG+AMS3T0MCI015,0.84724,1.4936,,60-69y,Other,,,14.4902,3.7043,2.3657,1.8867,0.85296,edsd,MCI,,M,,0.36562,3.5612,3.5395,0.75144,9.012,1.3371,0.34178,3.1519,2.3381,39.9015,12.3273,186.1535,3.0202,4.388,1.5122,1.557,2.902,6.515,1.7665,2.6744,0.38169,5.7652,10.2843,5.9407,7.061,2.0625,3.9688,1.3929,17.5548,5.6222,3.458,0.8139,2.1295,5.4778,12.4628,3.0621,4.0486,2.5815,1.2363,1.2494,3.8171,9.7498,2.8994,1.9261,10.4106,1.8596,2.2089,1.984,11.5839,1.5947,3.4476,0.98277,13.045,4.8697,8.0448,3.3888,10.3822,6.3519,6.0388,6.7386,3.1176,1.2445,3.9349,24,,MCI,0.07101,,,,0.33083,3.0348,3.3701,0.74265,8.7034,1.5597,0.34819,3.038,2.408,39.2901,11.9078,191.4117,3.2661,4.3094,1.5589,1.5935,3.1757,6.5553,1.6804,2.8093,0.40723,5.8928,10.3025,5.0105,6.92,1.9712,3.8611,1.3818,16.6893,4.7725,3.2401,0.94522,2.0321,6.357,11.9567,2.5099,3.6667,2.9142,1.2979,1.2675,3.5483,9.7319,2.6622,1.9412,9.0742,1.6965,1.9919,1.8307,10.8645,1.5257,3.3993,0.97439,12.7522,4.6263,6.702,4.2139,8.964,6.4494,5.7309,7.1022,3.1351,1.2951,3.7485,,,,,,,,,,,,,,,66,,,,52
+nG+AMS3T0MCI016,2.1179,2.2637,,70-79y,Other,,,17.0328,5.2786,2.533,2.2816,2.3005,edsd,MCI,,M,,0.41405,4.8834,4.8058,0.83264,9.9337,1.5177,0.38586,3.3924,3.3105,46.7941,14.1856,205.0193,4.3986,4.5901,1.6122,2.0348,3.9472,7.4957,2.3147,3.0937,1.1827,6.5911,11.7343,36.4767,7.9636,2.4717,4.4564,1.9582,19.4458,6.6146,4.037,1.036,2.2993,7.2554,14.2988,4.4832,4.473,3.3307,1.7149,1.6966,4.5059,10.3626,3.2149,2.6759,10.1492,2.4474,2.5491,2.6306,11.8286,1.9192,4.0139,1.3427,14.8102,4.9639,7.8636,3.88,9.587,6.718,7.4037,7.2724,4.1613,1.7641,4.7364,27,,MCI,0.06998,,,,0.38777,4.8784,4.7198,0.8276,10.2892,2.0366,0.3834,3.4485,3.5058,46.5868,13.8985,209.4883,4.1277,4.5785,1.6257,2.1111,4.3605,7.6877,2.2015,3.262,1.1726,7.5239,11.4847,32.0154,8.5372,2.586,3.5995,1.978,18.5999,5.8487,3.9853,0.99441,2.5409,8.0249,14.1895,3.6256,4.4752,3.4552,1.8133,1.6551,4.2069,10.4945,3.1021,2.5451,9.6216,2.1145,2.5339,2.2593,11.9313,1.6088,3.6873,1.2831,15.211,5.2403,6.8857,4.6947,8.8582,6.597,6.9843,7.4012,3.7822,1.5927,4.5368,,,,,,,,,,,,,,,70,,,,53
+nG+AMS3T0MCI017,1.8191,1.9797,,70-79y,Other,,,20.4111,4.9098,2.7104,2.0673,2.0278,edsd,MCI,,M,,0.42597,4.6224,4.316,0.81387,10.2613,1.492,0.41032,3.1055,2.941,48.1425,16.8806,213.1019,3.9394,4.447,1.6922,1.996,3.4676,7.0446,2.2694,3.0803,0.9965,7.0548,11.3556,30.9263,7.4316,2.2401,4.3875,1.8129,18.4445,7.1574,4.1871,1.1058,2.4672,6.9405,13.2507,3.7749,4.4591,3.3622,1.4301,1.5857,4.4456,11.6858,3.3696,2.6301,11.7576,2.8133,2.2818,2.6408,12.0283,2.5416,3.8389,1.4216,13.3202,5.1503,9.6382,3.6387,11.0742,6.722,6.9801,7.7768,3.9507,1.9358,5.0587,29,,MCI,0.09098,,,,0.38561,4.0449,4.1727,0.76377,10.5986,1.8814,0.38869,3.5456,3.1815,44.0619,15.6477,219.5922,4.6704,4.7629,1.5582,2.0089,4.015,7.1238,2.2922,3.1148,0.74791,6.7955,11.4373,25.644,8.059,2.3294,4.3437,1.8294,17.0618,5.279,4.1673,1.1645,2.5709,7.9901,14.3784,3.1402,4.3157,3.0884,1.5468,1.5953,4.0218,10.9604,2.8765,2.6966,10.7664,2.5274,2.2664,2.4737,12.0903,2.1401,3.564,1.3224,14.0523,5.225,9.0133,4.5211,11.7471,7.6657,6.5677,8.1214,3.5716,1.737,4.79,,,,,,,,,,,,,,,76,,,,54
+nG+AMS3T0MCI018,0.947,1.6951,,60-69y,Other,,,16.6483,3.6723,2.426,1.9234,0.94698,edsd,MCI,,F,,0.39078,4.7897,4.1186,0.71981,11.0556,1.5895,0.36052,2.883,2.7002,45.1092,13.5987,207.636,4.1499,4.3198,1.5917,2.0471,3.3493,8.0029,2.443,2.8167,0.34487,6.7376,12.9861,9.1725,7.1804,2.4643,4.9493,1.9973,19.5447,6.4813,4.1418,1.1694,3.0079,7.2768,15.8882,3.1849,4.1904,3.5007,1.5799,1.4111,4.4772,10.3743,3.0711,2.2704,12.5361,2.1472,2.6115,2.3199,13.2312,1.7062,3.7931,1.1931,14.4419,5.5141,10.4661,3.2665,10.6301,8.3261,7.17,7.499,3.9199,1.5224,4.3906,27,,MCI,0.07082,,,,0.35999,4.1866,4.0224,0.84736,11.5262,1.7611,0.36399,2.9179,2.8948,44.7209,12.7423,212.7231,4.3517,4.9312,1.7921,2.0536,3.5592,8.3668,2.2971,3.131,0.37254,6.8045,13.0247,7.7344,7.592,2.3956,4.7958,1.9933,19.6477,5.7289,3.9652,1.135,2.726,8.4599,15.9131,2.9033,4.0656,3.3051,1.7361,1.4748,4.1826,10.2584,3.1078,2.4081,10.0741,2.2216,2.3716,2.2428,13.467,1.8799,3.7943,1.1607,14.2377,5.5548,8.554,4.7882,10.1637,7.9102,6.7747,8.4958,3.7857,1.5951,4.2492,,,,,,,,,,,,,,,63,,,,55
+nG+AMS3T0MCI019,1.0614,1.2781,,60-69y,Other,,,17.9623,4.3723,2.2805,2.1285,1.22,edsd,MCI,,F,,0.40093,4.1722,4.0309,0.71849,8.5074,1.3699,0.35599,3.0233,2.7336,44.2579,14.4147,204.5753,3.6261,4.3473,1.3681,1.9402,3.078,6.9662,2.1135,2.7014,0.60498,5.8397,10.8876,13.7295,6.4434,2.061,4.5229,1.539,17.7601,5.8084,3.717,1.0405,2.3103,5.8484,13.4239,2.959,3.992,3.0444,1.3652,1.5034,4.0433,10.3533,2.9706,2.2191,10.3273,2.5671,2.0966,2.1204,10.1415,2.3175,3.444,1.2385,12.9542,4.9362,8.8943,3.5987,10.5257,7.037,6.7057,6.9968,3.793,1.6106,4.4357,28,,MCI,0.07534,,,,0.36405,3.7641,4.0296,0.75525,10.2475,1.5604,0.34714,3.1004,2.7863,44.0934,13.8958,205.0426,4.0083,4.6168,1.512,2.0993,2.9622,6.836,1.9327,2.7835,0.50568,6.6952,11.1818,12.1007,6.9015,2.1573,4.3303,1.5375,17.4425,5.632,3.6162,0.97444,2.4969,6.722,13.5638,2.7025,3.8365,3.4022,1.6944,1.5397,3.6697,10.009,2.6706,2.4071,9.1502,2.4415,2.1629,2.0168,10.9663,2.0029,3.4112,1.1656,13.2237,5.1658,8.2762,4.2377,9.5747,7.2458,6.4004,7.2157,3.9623,1.511,4.2468,,,,,,,,,,,,,,,65,,,,56
+nG+AMS3T0MCI020,1.521,1.6818,,50-59y,Other,,,17.1056,4.5801,2.6199,2.1086,1.4733,edsd,MCI,,F,,0.40996,4.5129,3.8165,0.75446,8.4278,1.5024,0.35563,2.895,2.7742,47.4475,13.8792,193.6324,3.9354,4.0367,1.4748,1.7454,3.4439,6.9801,2.1409,2.7273,0.49958,5.623,10.4634,14.3974,6.9224,2.3057,4.2669,1.8683,18.8864,5.5514,3.9973,1.0833,2.6564,6.8984,12.8253,3.3182,3.9646,3.4162,1.3746,1.4988,3.7408,9.1992,2.9555,2.0073,11.7269,2.2571,2.4821,2.0385,13.0462,1.8531,3.5491,1.1707,13.548,5.0241,9.011,3.4721,10.5249,6.757,7.0331,7.3507,3.6967,1.5367,4.6538,27,,MCI,0.06899,,,,0.36491,3.9528,3.6749,0.70166,9.1421,1.8816,0.34498,2.7959,2.9039,46.7065,13.6021,195.3437,4.1558,4.4505,1.4827,1.8721,3.695,7.1123,2.1371,2.6732,0.55127,5.8093,9.9227,17.9412,7.2789,2.2256,4.0993,1.8545,17.9923,4.5479,3.9577,1.0201,2.4232,8.3181,11.9211,2.8925,3.8586,3.2812,1.4327,1.5564,3.1223,10.0841,2.56,2.0266,9.1447,1.9619,2.3005,1.8945,12.9067,1.9493,3.2743,1.1135,14.1397,5.0958,7.4589,4.3805,10.1384,7.0612,6.4276,6.9707,3.4093,1.4008,4.3581,,,,,,,,,,,,,,,57,,,,57
+nG+AMS3T0MCI021,1.4915,2.0084,,60-69y,Other,,,20.6291,4.5043,2.8039,2.285,1.1845,edsd,MCI,,M,,0.48436,5.7206,4.9237,0.98359,11.3323,2.0191,0.41955,3.6121,3.1684,52.0429,17.1017,280.1545,4.4935,5.8708,1.993,2.256,4.1863,8.9829,2.423,3.6848,0.54996,7.9981,14.593,10.8531,9.6118,3.0093,5.5482,2.1793,22.5254,7.9998,4.9299,1.1651,2.7925,8.1976,18.2389,4.5715,5.3973,3.5479,1.7745,1.8368,4.8597,12.3097,3.8127,2.5438,13.663,3.0783,3.1197,2.5102,14.6171,2.425,4.6599,1.3752,15.4939,6.08,10.2506,4.9429,11.8495,7.9424,8.5451,9.4243,4.4132,1.7766,5.5824,27,,MCI,0.08624,,,,0.41916,5.2958,4.6294,0.88631,12.444,2.4906,0.41668,3.5648,3.2627,51.3774,17.4447,291.2568,4.762,5.4766,1.8805,2.3493,4.3402,9.1032,2.4575,3.6865,0.51198,8.1387,14.8414,8.3477,9.1568,3.0055,5.2506,2.1869,21.4648,5.8744,4.8671,1.1961,2.6987,9.1315,18.5499,3.9931,5.1906,4.1295,2.0435,1.8399,4.3273,11.9501,3.1722,2.5458,12.0336,3.073,2.8486,2.3214,13.7001,2.5135,4.409,1.3131,17.039,6.2652,10.2352,5.5059,12.9071,8.9029,8.2756,9.4185,4.2315,1.7496,5.1695,,,,,,,,,,,,,,,66,,,,58
+nG+AMS3T0MCI022,0.98668,1.8414,,50-59y,Other,,,19.6702,5.4564,2.7653,2.6767,1.0689,edsd,MCI,,F,,0.44618,5.0439,3.8791,0.93558,10.418,1.7011,0.39005,3.2794,2.9093,50.4786,16.4672,243.1891,4.1255,5.0529,1.8365,1.7542,3.498,8.3258,2.2513,3.4302,0.46857,7.1724,12.533,11.9758,8.055,2.4943,5.0112,1.9903,20.7538,6.5332,4.3627,1.3481,3.0479,8.1268,15.7574,3.7785,4.6394,3.6265,1.5459,1.5944,4.4141,11.9956,3.3865,2.2839,15.0051,2.4738,2.652,2.3556,13.3092,2.2269,4.0539,1.225,16.071,6.3531,10.4398,4.2271,11.8615,9.3392,7.6297,8.6315,4.1072,1.6597,4.9866,30,,MCI,0.07632,,,,0.39807,4.491,3.7839,0.86557,10.9934,1.9654,0.36376,3.233,3.212,51.5385,16.5035,244.7943,4.7409,4.9972,1.7703,1.9038,3.8131,8.3586,2.2427,3.2866,0.42345,7.3873,12.3971,8.7002,8.945,2.4205,5.134,2.0133,19.4148,5.9367,4.1304,1.042,2.5152,8.6872,15.5243,3.7035,4.7603,3.5792,1.5399,1.6423,4.0738,11.8125,3.2048,2.1717,12.1224,2.2832,2.4963,2.1978,13.5045,2.1055,3.476,1.1572,16.623,6.0818,9.4162,5.1542,11.2368,8.7942,7.3193,8.8523,3.6826,1.7025,4.7729,,,,,,,,,,,,,,,56,,,,59
+nG+AMS3T0MCI023,2.3357,2.0334,,+80y,Other,,,19.6163,5.3158,2.9938,2.4215,1.9267,edsd,MCI,,M,,0.39958,4.4703,4.9796,0.81606,9.6673,1.3762,0.46289,3.0346,2.4915,52.0746,15.2766,195.9681,4.2174,4.236,1.6624,2.0968,3.4382,7.5253,1.9008,3.3138,0.84609,6.4522,11.5383,29.7356,8.0794,2.2603,4.5369,1.668,18.7124,6.7603,3.6194,1.0764,2.4667,6.6395,14.1416,3.5852,4.5411,3.1625,1.4163,1.6516,4.3227,10.3603,3.6146,2.855,10.9738,2.7249,2.3925,2.5305,12.5485,2.1623,4.1534,1.3239,14.7956,5.0169,9.5053,3.9651,10.1977,7.2786,6.8049,7.0541,3.6508,1.8662,4.9725,27,,MCI,0.08971,,,,0.38018,4.1302,4.3269,0.83178,10.5402,1.6874,0.47435,3.2742,2.9176,50.8783,15.0548,203.5591,4.4022,4.8643,1.722,1.9956,3.5006,7.5028,1.8945,3.1227,0.9369,7.1162,12.5056,24.5416,8.4853,2.2246,4.2825,1.6585,19.1137,5.8705,3.5675,1.0694,2.5962,7.5197,14.3165,3.2577,4.4323,3.4035,1.5394,1.6042,3.9418,10.8854,3.2159,2.7409,9.398,2.409,2.1918,2.4329,12.0507,2.0007,3.9512,1.2017,15.3155,5.5704,7.9453,4.9162,11.2722,7.6925,6.7515,7.7595,3.7023,1.7794,4.9193,,,,,,,,,,,,,,,86,,,,60
+nG+AMS3T0MCI024,1.9515,3.1605,,70-79y,Other,,,18.1907,4.9853,2.4445,2.4139,2.7035,edsd,MCI,,M,,0.40169,4.1665,5.2613,0.79138,10.3484,1.3377,0.37608,3.8687,2.9424,47.3623,15.5578,201.2834,3.6788,5.3417,1.4874,1.9655,3.4047,7.1392,1.9547,2.9782,1.103,7.2064,10.7722,54.7996,8.3526,2.1175,3.8856,1.595,17.4283,6.7421,3.4924,1.3187,3.6312,6.4714,13.9693,4.0652,4.5039,3.0088,1.3295,1.5711,3.8365,10.4791,3.0873,2.5536,11.1282,2.3333,2.2394,2.2297,12.3543,2.0789,4.1137,1.1993,12.5765,4.8703,8.4522,3.5542,11.0529,7.0812,6.7992,6.8228,3.533,1.5241,4.8258,29,,MCI,0.06153,,,,0.37308,3.3471,4.4412,0.80898,10.4229,1.4874,0.37247,3.6898,3.5473,47.3925,15.4287,211.8331,3.5421,5.137,1.4784,1.9053,3.7175,7.2787,1.8664,3.2322,1.2095,7.4434,11.0658,42.9125,8.7859,2.0652,3.9748,1.6863,17.9113,5.3361,3.3153,1.0243,2.2237,7.3479,14.2378,3.4264,4.5209,3.2367,1.4296,1.6509,3.4431,10.1893,2.8099,2.3728,9.2746,2.0713,1.9527,1.9927,10.969,1.7964,4.4426,1.161,13.286,4.6107,8.1688,4.5661,9.3739,6.9535,6.8653,6.8313,3.591,1.4169,4.733,,,,,,,,,,,,,,,73,,,,61
+nG+BRE3T0AD001,1.9954,1.6631,,70-79y,AD,,,15.8248,4.3017,1.9212,1.8793,1.8746,edsd,AD,,F,,0.35503,4.0285,3.9836,0.70714,6.0317,1.2714,0.32969,2.5391,2.2576,37.9211,12.0896,171.8839,3.2949,3.4301,1.3538,1.6868,2.8601,5.8776,1.6615,2.8504,0.96109,4.9659,8.5987,24.447,6.2854,1.8338,4.3598,1.4402,15.0329,4.2477,3.2627,1.051,2.2291,5.6333,9.9508,3.1137,3.4539,2.6171,1.2394,1.266,3.4365,7.6672,2.8489,2.0955,9.6952,1.69,2.1045,2.193,10.2988,1.4484,2.9421,1.1767,12.6023,4.4919,6.0982,2.7232,8.3686,5.1293,5.6835,6.1193,2.7278,1.304,4.4208,11,,AD,0.08783,,,,0.2966,3.6214,3.6817,0.69194,7.4411,1.5492,0.31563,2.4866,2.2614,36.8509,11.8484,175.9135,3.2035,3.4484,1.2676,1.6768,3.0306,5.4698,1.7367,3.0009,0.89895,5.2354,8.3535,20.0417,6.342,1.9201,4.2339,1.4738,14.7522,3.8083,3.3085,1.0149,2.1614,6.3595,11.1318,2.5157,3.1014,2.7106,1.2918,1.2879,3.4608,8.2799,2.4929,2.0511,8.5498,1.7451,2.1216,1.9717,10.5223,1.5819,3.0136,1.1108,12.3846,4.8351,5.4734,3.785,7.8694,6.3678,5.5506,6.6822,2.6323,1.344,4.2057,,,,,,,,,,,,,,,76,,,,62
+nG+BRE3T0AD002,1.7655,2.1868,,70-79y,AD,,,16.3376,4.1121,2.2729,1.9706,1.6565,edsd,AD,,F,,0.38244,4.1443,3.994,0.70404,7.8604,1.5018,0.34125,3.1161,2.5176,40.8836,13.93,213.7972,4.2725,4.406,1.3976,1.9634,3.2724,6.6103,1.9011,2.9325,0.85539,7.438,9.6841,24.8558,7.0785,2.4659,4.039,1.6823,17.5116,6.4401,3.8188,0.95322,2.4201,6.2523,11.4544,4.3907,4.5702,2.9576,1.6168,1.5973,3.7529,9.2245,2.8864,2.2649,11.7943,2.3093,2.5164,2.173,12.4872,1.6991,3.5801,1.1418,13.6239,5.0755,7.382,3.7399,10.3875,6.4605,6.6988,6.3349,3.6759,1.5591,4.6343,21,,AD,0.0781,,,,0.30214,3.7514,3.5452,0.61956,8.1014,1.777,0.32938,3.5068,2.334,42.1735,13.7794,208.9435,3.7391,4.5845,1.2083,1.7386,3.4041,6.3474,1.7426,2.9906,1.591,6.8592,9.0886,23.9851,7.8739,2.279,4.0471,1.5529,17.3679,4.6664,3.5422,1.0694,2.477,6.6446,10.9882,3.5953,4.3676,2.9562,1.676,1.5756,3.4491,8.6129,2.6024,2.1595,10.3476,2.0325,2.2353,1.8667,12.6621,1.6444,3.3326,1.018,13.7655,4.8931,6.6507,3.961,8.3418,6.2549,6.3195,6.3472,3.4193,1.4013,4.4214,,,,,,,,,,,,,,,74,,,,63
+nG+BRE3T0AD003,2.0414,1.9786,,70-79y,AD,,,13.995,4.0486,2.0875,1.9967,2.0004,edsd,AD,,F,,0.34943,3.9603,3.7041,0.6961,7.4469,1.2516,0.33279,2.9113,2.5209,34.6966,12.0021,169.0711,3.4206,3.8546,1.3728,1.7303,3.0048,5.7918,1.8049,2.7815,1.2296,5.9909,9.1252,32.6737,6.6314,1.9178,4.41,1.4901,16.5257,5.8493,3.332,1.2608,2.3196,6.1271,12.0337,3.5525,3.7121,3.2404,1.2268,1.3319,3.9031,9.008,2.8303,2.0389,10.0321,1.9125,1.9831,2.0166,11.6743,1.7181,3.2442,1.0193,12.0223,4.6608,6.5211,3.4542,8.872,6.3988,6.3248,6.782,3.4939,1.2854,4.1478,19,,AD,0.05934,,,,0.2753,3.3568,3.6329,0.66067,8.3589,1.4122,0.30959,2.8136,2.5792,35.6957,11.4024,171.7744,3.199,4.3906,1.2802,1.7155,3.1505,5.6871,1.7474,2.9372,1.6519,6.114,9.2432,29.0169,6.8063,1.9296,4.2218,1.4496,16.1474,4.6221,3.1511,0.91522,2.1223,6.8316,11.4677,2.8735,3.6596,3.3006,1.3055,1.3894,3.659,9.5141,2.4661,2.0896,8.6397,1.79,1.8405,1.9439,11.3304,1.7469,3.1653,0.93498,12.8693,4.8901,6.3222,4.1802,8.6452,6.1677,6.1982,6.8441,3.2507,1.2809,4.005,,,,,,,,,,,,,,,77,,,,64
+nG+BRE3T0AD004,2.6213,2.3996,,70-79y,AD,,,14.0306,4.1212,1.9396,1.9864,2.6575,edsd,AD,,F,,0.32698,3.6044,3.5495,0.67863,8.4588,1.1981,0.32688,2.8805,2.2189,26.0012,10.0326,154.1769,3.4527,4.4228,1.2061,1.6179,2.9676,5.7355,1.6285,2.8579,2.2962,6.6108,8.6193,37.629,6.3064,1.9742,4.0693,1.4058,16.2071,6.0367,3.2009,1.0822,2.3604,5.9312,11.3505,4.0951,3.6731,2.6236,1.225,1.2722,3.7411,8.7801,2.7285,1.916,10.0787,1.9168,2.059,1.8973,12.0317,1.7921,2.9232,1.1263,13.0025,4.6593,8.1314,3.7144,9.1738,6.0422,5.6341,6.0501,3.0524,1.191,4.1604,13,,AD,0.06895,,,,0.26034,3.415,3.353,0.68677,8.0774,1.293,0.30847,3.3055,2.1662,25.2218,10.0841,151.1903,3.4278,5.1283,1.1841,1.6243,3.0302,5.5218,1.5372,3.2062,4.1536,5.9213,8.181,37.5915,7.0608,1.8219,4.08,1.3007,16.2163,4.5545,2.888,0.94418,2.3342,6.2574,9.9196,3.0174,3.5914,2.9917,1.289,1.2695,3.4844,8.954,2.4819,1.9894,9.0977,1.7172,1.8465,1.7139,11.6234,1.5081,2.7027,1.0042,12.6543,4.7566,6.4474,4.5785,9.7074,5.8236,5.5588,5.7369,2.9685,1.2066,4.0239,,,,,,,,,,,,,,,78,,,,65
+nG+BRE3T0AD005,1.9853,2.4115,,70-79y,AD,,,15.4489,4.7108,2.6004,2.075,1.5338,edsd,AD,,M,,0.40963,3.9826,4.0342,0.74646,7.7962,1.4037,0.35365,2.374,2.9189,45.7221,13.7581,188.7927,3.7729,3.5843,1.4807,1.7789,2.8852,7.1118,1.6806,2.728,1.0471,6.2311,10.3429,27.8679,6.62,2.1137,4.3247,1.4152,17.6316,5.4806,3.4941,0.98964,2.4072,6.2803,11.286,3.0815,4.4139,2.7669,1.2023,1.3958,3.8016,9.5752,2.8521,2.1711,11.1386,2.0218,2.2259,2.0155,11.5033,1.7569,3.6449,1.0339,14.141,4.9559,7.7262,3.0921,10.2199,6.356,6.0733,6.6158,3.4214,1.387,4.3615,15,,AD,0.07383,,,,0.34803,3.4872,3.6892,0.68779,8.4832,1.4226,0.33649,2.6818,2.8526,46.6869,13.6541,187.5436,3.6452,3.7929,1.4101,1.8194,3.073,6.8871,1.6585,2.7141,1.1107,6.0112,10.2183,27.2861,7.4874,1.8851,4.2099,1.3704,15.8289,4.9023,3.3879,1.1627,2.6622,6.9634,11.4993,2.7967,4.0845,3.2803,1.3214,1.4166,3.2455,9.2152,2.5379,2.1566,10.0771,1.9282,2.0433,1.9282,10.9428,1.5884,3.4555,0.92726,13.015,5.4504,6.6979,3.7392,9.1168,5.98,6.1602,6.9204,3.1238,1.3282,4.11,,,,,,,,,,,,,,,70,,,,66
+nG+BRE3T0AD006,2.3108,3.3485,,60-69y,AD,,,15.21,4.6918,1.9847,2.1931,1.6106,edsd,AD,,M,,0.37163,4.4639,3.7407,0.70742,8.3889,1.5301,0.33253,3.4771,2.3693,40.2026,13.7861,216.0617,4.1679,5.0884,1.4068,1.7867,3.3874,7.1173,1.8117,2.7708,1.5945,6.9342,10.0437,35.2172,7.5599,2.2395,4.1845,1.6432,17.4151,5.7261,3.5988,1.0929,2.3792,6.9344,11.9602,4.7744,4.7443,2.9791,1.349,1.5483,4.3122,10.5408,2.9435,2.2597,11.5164,2.6276,2.2933,2.1728,11.4149,1.9102,3.3909,1.0873,15.5509,5.0411,8.1116,4.0503,10.2826,6.329,6.6129,7.0087,3.2213,1.6211,4.5983,15,,AD,0.07302,,,,0.33578,4.0784,3.4303,0.68424,9.6727,1.6668,0.33719,3.5365,2.5437,37.2891,13.3726,214.38,3.8895,4.7813,1.3909,1.8143,3.8539,6.285,1.8708,2.8479,1.7486,6.9728,10.1572,31.8545,7.7411,1.9995,4.0757,1.6945,16.7473,5.2902,3.4751,1.1334,2.4558,7.2857,13.132,3.7041,4.0605,2.857,1.3406,1.6007,3.9221,10.231,2.5922,2.1635,10.4524,1.9359,2.0246,1.8862,11.6645,1.8207,3.2272,1.0687,15.391,5.2122,6.9792,4.5894,9.3424,6.7545,6.3174,6.7199,2.8636,1.3114,4.3635,,,,,,,,,,,,,,,68,,,,67
+nG+BRE3T0AD007,2.2431,1.8675,,+80y,AD,,,13.4721,3.4571,1.6169,1.7341,1.979,edsd,AD,,F,,0.32631,3.2967,3.4777,0.61474,7.2867,1.1709,0.3292,2.4186,2.5907,18.1896,8.7055,150.8308,3.0259,3.3574,1.1425,1.5213,2.7384,5.2298,1.5898,2.454,1.0629,4.3656,7.844,36.3364,5.8143,1.8303,3.452,1.289,15.039,4.699,3.2126,0.83313,2.0965,4.8291,10.152,2.4072,2.673,2.5606,1.1734,1.1748,3.2689,8.5223,2.5272,1.9636,8.5934,1.5192,2.1158,1.9844,10.5862,1.5294,3.255,1.0666,11.842,4.2012,6.2791,3.0278,8.4194,5.6422,5.2142,5.8429,2.9625,1.3272,3.8821,15,,AD,0.06718,,,,0.25818,3.0547,3.471,0.66322,8.562,1.3788,0.31338,2.4298,2.826,21.6404,9.1965,159.7323,2.7604,3.8698,1.2808,1.5522,2.9585,5.6051,1.6173,2.86,1.2362,5.1103,8.7174,22.4109,6.071,1.8898,3.774,1.2506,15.1214,4.4224,3.1317,0.84734,2.1498,5.4759,10.8509,2.5487,3.1703,2.5222,1.3296,1.2156,3.2125,8.4878,2.403,2.0291,7.9143,1.2293,1.9815,1.9316,9.6834,1.4465,3.1248,0.99742,11.8048,4.2554,5.934,3.7138,8.3676,6.3524,5.6804,6.3894,2.844,1.2178,3.8345,,,,,,,,,,,,,,,85,,,,68
+nG+BRE3T0AD008,1.4797,1.5222,,70-79y,AD,,,14.9305,4.3562,2.1901,1.8977,1.3648,edsd,AD,,F,,0.30282,4.1491,3.6495,0.66264,7.4654,1.3243,0.30294,2.5867,2.3382,36.3923,12.4668,181.3242,3.3159,3.4881,1.308,1.5445,3.0902,5.698,1.8284,2.4588,0.59173,5.1095,9.5018,12.7441,5.8317,1.9518,4.6134,1.5917,17.9676,5.2418,3.4156,0.80674,1.9965,6.4823,12.3947,2.7864,3.2582,2.473,1.2223,1.3726,3.7111,8.373,2.6319,1.915,9.0151,1.7989,2.2124,1.9312,10.9874,1.4332,2.8827,0.99286,13.483,4.8594,7.282,2.9617,9.3042,5.6823,6.0793,6.9058,2.9167,1.3,4.1507,22,,AD,0.07933,,,,0.27575,3.6178,3.5439,0.61254,7.1019,1.5847,0.32318,2.9727,2.2485,36.777,12.295,179.5118,3.3561,4.0486,1.2567,1.5103,3.339,5.878,1.7203,2.4152,0.82691,5.4833,9.1185,12.2306,6.3517,1.9375,4.2237,1.4822,16.9845,3.8714,3.1492,0.96211,2.2328,6.8601,10.897,2.5782,3.4634,2.7864,1.2204,1.3678,3.4426,8.3878,2.2744,2.0859,8.6032,1.6424,2.0819,1.8903,11.1747,1.4107,2.9832,0.95764,12.5572,4.6146,5.4316,3.4931,7.7783,4.9691,5.9197,6.5783,2.8088,1.2877,3.8999,,,,,,,,,,,,,,,70,,,,69
+nG+BRE3T0AD009,2.5154,1.6601,,+80y,AD,,,13.7663,4.1864,1.7352,1.8832,2.0899,edsd,AD,,F,,0.26339,3.9163,3.8894,0.52273,7.1867,1.2254,0.2665,2.0323,2.0871,30.9771,11.2483,176.6453,3.305,2.9036,1.0504,1.6097,2.858,4.9533,1.8081,2.3022,0.97396,4.6545,7.6084,24.6515,5.7897,1.8477,4.3307,1.4145,14.7816,4.5592,3.1743,1.1001,1.954,5.903,10.2972,2.7388,3.0676,2.8132,1.1985,1.4265,3.752,8.6851,2.5425,2.3322,9.3435,1.7651,1.9178,2.2365,8.9993,1.5334,2.8936,0.9413,12.524,4.4581,7.0145,2.6645,9.2684,6.3046,5.5074,6.2765,2.9068,1.2157,4.2179,22,,AD,0.07222,,,,0.21445,3.6725,3.6745,0.5909,7.9338,1.4268,0.28338,2.5231,1.7629,30.325,10.7677,171.8927,3.1742,3.0771,1.1132,1.6696,2.9731,4.513,1.771,2.4818,0.90182,4.9538,7.2375,23.0969,6.106,1.7443,4.146,1.4273,13.6102,3.8943,3.0777,1.0548,2.0438,6.74,9.5092,2.255,2.8718,2.8706,1.1486,1.5685,3.228,8.1223,2.2397,2.2408,7.8324,1.7326,1.8224,1.9981,9.5908,1.5548,2.9437,0.88812,12.4841,4.4519,5.935,3.043,8.8065,6.018,5.2375,6.377,2.6106,1.2827,3.9613,,,,,,,,,,,,,,,87,,,,70
+nG+BRE3T0AD010,1.6047,1.9036,,-50y,,,,12.9797,4.1094,1.8897,1.7578,1.8529,edsd,,,F,,0.34527,3.6751,3.5054,0.55372,8.5704,1.274,0.30481,2.6493,2.416,28.5729,10.4069,175.5353,3.2309,3.4814,1.0134,1.5329,2.9251,4.8119,1.8205,2.0602,2.2794,5.3777,7.7636,29.1678,5.6735,1.8822,3.825,1.4061,15.8574,5.7216,3.4254,0.91269,2.147,5.4975,11.4906,2.9293,3.295,2.6661,1.1681,1.3058,3.3874,8.3454,2.1854,2.003,8.6872,1.9767,1.9953,2.0444,9.3671,1.6423,3.0238,1.0129,12.7683,4.4989,7.6242,3.0683,9.0978,6.4292,5.908,6.0018,3.3,1.2191,3.8384,,,,0.0805,,,,0.28645,3.2699,3.3117,0.61902,8.5819,1.4892,0.32496,2.9937,2.317,32.1332,10.46,177.7723,3.2202,3.9572,1.1124,1.4857,3.0721,5.5713,1.727,2.4167,1.9068,5.7857,9.1119,31.8323,6.5178,1.8193,3.6459,1.402,14.97,4.7423,3.3436,0.92958,1.9544,6.2179,11.987,2.7527,3.3211,2.8167,1.2743,1.3105,3.0563,8.6448,2.1424,2.0433,8.3505,1.8569,2.0072,1.7963,9.7467,1.4596,3.2751,0.96208,13.9377,4.509,6.6741,3.7189,9.2968,5.9721,5.6364,6.4215,2.7025,1.2047,3.7621,,,,,,,,,,,,,,,,,,,71
+nG+BRE3T0AD011,2.4142,2.3329,,70-79y,AD,,,14.5161,3.9853,2.3281,1.9527,2.9439,edsd,AD,,F,,0.30698,3.6567,3.5093,0.70051,6.4636,1.0793,0.30397,2.9306,2.2636,40.3567,12.7184,139.2125,3.4708,3.839,1.3508,1.5836,2.6516,5.6728,1.6227,2.6555,1.5853,5.3071,7.589,55.2829,6.7686,1.7342,3.8306,1.3901,13.0438,4.5191,3.0684,0.875,2.0499,5.6164,8.7619,2.9579,3.852,2.3396,1.097,1.1942,3.6198,9.3891,2.7242,2.1447,8.8505,1.6112,1.9514,2.0965,9.5275,1.6307,2.973,1.0064,10.7096,4.7956,5.7734,2.7912,7.7857,5.328,5.4602,5.8248,2.5035,1.2762,3.9699,8,,AD,0.0592,,,,0.29537,3.5383,3.5251,0.66791,8.1557,1.3535,0.31389,2.9997,2.5395,40.7918,12.0467,152.1523,3.5019,4.0172,1.2702,1.7244,3.0455,5.7398,1.6709,2.8667,1.8794,5.3701,8.294,43.3921,7.2798,1.8516,4.2511,1.4145,14.0942,4.4364,2.9565,0.94034,2.2873,6.4487,9.7986,2.3938,3.5957,2.7456,1.3545,1.2866,3.3578,8.7416,2.4347,2.1367,8.0006,1.9136,1.9032,1.9361,9.3165,1.5209,2.9829,0.95964,10.4235,4.5203,5.8455,3.4514,7.6841,5.4202,5.5258,6.3232,2.7553,1.4047,3.8951,,,,,,,,,,,,,,,70,,,,72
+nG+BRE3T0AD012,2.5788,1.9015,,+80y,AD,,,16.9955,3.982,1.7793,1.7441,2.739,edsd,AD,,M,,0.39194,4.5795,4.6432,0.78073,7.9803,1.2255,0.36788,2.6444,2.442,31.817,12.2296,213.6637,4.0858,3.9519,1.4568,2.0396,3.331,5.7522,1.9303,3.0592,2.3651,5.8975,9.4936,46.0499,6.2007,2.0662,5.0023,1.778,17.9877,6.0025,3.264,1.0314,2.4024,6.5059,12.9115,3.9247,3.3974,3.1969,1.4422,1.6671,4.4385,10.2617,2.9739,2.5438,9.4535,2.4762,2.3203,2.4582,11.229,1.9123,3.2904,1.2805,12.9671,4.8788,8.661,3.5939,10.2541,7.4916,6.5945,6.9502,3.7809,1.6294,4.8807,16,,AD,0.0883,,,,0.29474,4.2224,4.0404,0.7685,8.3991,1.4914,0.32917,3.351,1.9612,30.3967,11.5346,212.6955,3.9353,4.7214,1.4203,2.1033,3.3536,6.1331,1.8536,3.2804,2.1389,5.896,10.2904,41.0473,6.88,1.9596,4.5218,1.6087,16.9488,4.7874,3.1831,1.116,2.6776,7.2157,13.2245,3.5262,3.4874,3.5997,1.3267,1.6059,3.9721,10.4973,2.7657,2.4494,8.7885,1.9748,2.0875,2.1693,11.3144,1.7123,3.0887,1.1891,12.5704,5.0381,6.936,4.5952,9.7516,6.8013,6.2639,6.947,3.24,1.5882,4.6308,,,,,,,,,,,,,,,80,,,,73
+nG+BRE3T0AD013,1.4396,1.7707,,60-69y,AD,,,14.5522,3.6364,1.847,1.6853,1.5923,edsd,AD,,F,,0.33854,3.9495,3.7863,0.55213,8.6694,1.4523,0.30474,2.2112,2.6558,29.3034,10.4877,211.6229,3.7809,3.9733,1.0787,1.841,2.9772,5.4726,1.9112,2.2563,0.73466,5.1349,8.6306,15.7483,5.2629,2.2682,4.1273,1.5371,15.5038,5.679,3.7272,0.93506,2.185,6.0357,11.8085,3.6115,3.3116,2.9439,1.3582,1.572,3.6512,8.986,2.3404,2.2649,9.7953,2.1001,2.4146,2.3685,11.1387,1.684,3.1456,1.0783,12.4917,4.6472,8.3096,3.7914,11.4955,6.6294,6.1034,6.1399,3.434,1.3936,4.3053,20,,AD,0.06985,,,,0.3095,3.5363,3.7219,0.51972,9.321,1.6717,0.32294,2.4333,2.5567,31.4445,11.5216,216.8783,3.6874,4.2997,1.1498,1.7721,3.3422,5.7876,2.0447,2.4553,0.71919,6.6239,8.9138,14.6964,6.5299,2.0953,4.3694,1.6283,15.2815,5.5586,3.7152,0.87055,2.3533,6.9332,11.4926,3.2656,3.863,3.0877,1.4194,1.596,3.4464,8.942,2.16,2.187,8.0621,1.9047,2.2308,2.0719,10.712,1.8091,3.3634,1.017,13.2672,5.0658,6.6708,4.4738,10.3461,6.4288,5.8613,6.4111,2.9811,1.4499,4.0983,,,,,,,,,,,,,,,65,,,,74
+nG+BRE3T0AD014,1.7829,2.3061,,70-79y,AD,,,12.4527,3.7214,1.872,1.6058,2.1765,edsd,AD,,F,,0.33732,3.8584,3.7116,0.68183,7.946,1.2656,0.32499,2.4243,2.2676,32.6378,10.4569,156.4949,3.7889,3.4567,1.3182,1.6617,2.9361,5.2805,1.5624,2.6429,1.3809,5.3201,8.6055,27.6636,5.8332,1.9361,4.1367,1.4472,18.0442,5.1045,3.0025,0.97972,2.0813,5.7511,10.8954,3.0026,3.4339,2.8078,1.1813,1.1591,3.5485,8.3464,2.6325,2.0525,9.7572,2.0774,1.9725,2.048,10.8212,1.8889,3.0618,1.0804,12.1319,4.2424,7.4442,3.2754,10.4434,6.2873,5.6467,5.9166,3.0018,1.4348,3.9382,9,,AD,0.07364,,,,0.25343,3.2605,3.3928,0.65865,8.2003,1.3715,0.30766,2.5069,1.8066,32.5484,9.9298,153.3452,3.0914,3.7466,1.2651,1.6749,3.0743,5.1012,1.5062,2.89,1.417,5.5049,8.2175,32.5772,5.9072,1.7858,3.8459,1.3793,15.7992,4.1009,2.7665,1.0275,2.3171,6.0968,10.5996,2.5401,3.2939,3.3401,1.284,1.1898,3.2327,9.1097,2.355,2.0278,9.0129,1.7987,1.9447,1.7315,10.6188,1.5729,2.8986,1.0147,12.1351,4.4581,6.8164,3.7366,9.6925,6.2211,5.3109,6.0386,2.9307,1.2254,3.6515,,,,,,,,,,,,,,,79,,,,75
+nG+BRE3T0AD015,2.1187,1.8484,,-50y,,,,15.3463,4.181,2.2026,1.8249,2.165,edsd,,,F,,0.34214,3.4642,4.1295,0.4964,6.2744,1.0733,0.33009,1.9707,2.6248,36.5567,11.7522,148.1433,3.7673,2.6589,0.91633,1.5775,2.8818,4.5657,1.6491,1.9484,1.6943,3.8533,6.8215,35.2975,4.8537,1.7392,3.2876,1.3547,14.4447,3.9079,3.1131,0.9852,1.9147,5.4923,8.7586,2.0875,2.5875,2.6425,1.2083,1.2242,3.4149,8.1036,2.1743,2.2883,9.5457,1.8376,1.9931,2.1779,10.2205,1.6641,3.5782,1.0318,11.7842,4.3385,6.1559,2.0489,8.7234,5.349,5.6857,5.3353,2.9113,1.3825,4.1428,,,,0.08338,,,,0.29367,2.7234,3.7564,0.53111,7.5287,1.3256,0.32491,2.3393,2.5445,36.0362,11.6495,155.842,3.156,3.1037,1.0263,1.5777,3.0628,5.0191,1.5507,2.4249,1.7219,4.2343,8.0468,34.6058,5.351,1.7016,3.1064,1.3553,14.1463,3.6891,2.8623,1.0862,2.3075,6.4258,10.1412,1.9227,2.6426,2.8424,1.2641,1.2923,3.0192,8.7343,2.1022,2.4446,8.0768,1.6281,1.866,1.9255,10.0148,1.5465,3.354,0.93137,11.829,4.4946,6.1333,2.9098,8.1262,5.4504,5.6226,5.8082,2.9765,1.3216,4.1153,,,,,,,,,,,,,,,,,,,76
+nG+BRE3T0AD016,1.9773,1.9031,,+80y,AD,,,14.6397,3.9139,2.3445,2.0307,1.6855,edsd,AD,,F,,0.32265,3.6864,3.583,0.56069,7.2641,1.2794,0.28156,2.4315,2.1212,36.7825,12.1724,150.5561,3.1855,3.3657,1.0909,1.7017,2.8388,5.6767,1.6345,2.3076,1.6288,4.9289,8.4368,23.0663,6.1424,1.8461,3.5368,1.4253,15.1437,4.7696,3.2702,0.91099,2.1825,5.7841,10.6118,2.5807,3.3195,2.9128,1.0448,1.1695,3.7434,8.4152,2.6232,2.1279,8.4065,1.6536,2.0093,2.0374,9.5779,1.3524,2.9049,0.97401,11.5571,4.4271,6.4444,2.9009,8.4338,5.1939,5.1752,5.9416,2.9795,1.2505,4.0067,18,,AD,0.07392,,,,0.28932,3.4023,3.1251,0.54594,7.9765,1.3738,0.28477,2.5224,2.3106,36.7438,11.7082,150.0735,3.1009,3.2195,1.1199,1.3831,2.918,5.6402,1.6284,2.4966,1.5059,5.4548,8.7248,22.6621,6.3145,1.6987,3.866,1.3578,13.7531,4.4002,3.1172,0.9629,2.0339,6.2177,10.9757,2.5875,3.3293,2.7353,1.0699,1.1776,3.3295,8.2793,2.3445,2.01,7.8716,1.7161,1.9349,1.7177,9.7905,1.4148,2.8007,0.9635,11.9137,4.3057,5.6447,3.4558,8.6072,5.0713,5.2268,5.7647,2.5062,1.2209,3.7416,,,,,,,,,,,,,,,81,,,,77
+nG+BRE3T0AD017,3.1708,2.4934,,70-79y,AD,,,17.5957,4.6878,2.4032,2.2701,2.3965,edsd,AD,,F,,0.46684,4.6638,4.5698,0.93873,8.015,1.6856,0.42175,3.6852,2.5484,46.3144,13.6537,188.2762,4.6321,4.3007,1.7568,2.0179,3.4086,6.465,2.1148,3.4541,1.333,6.4585,9.9192,44.2152,7.8896,2.4569,4.7073,1.8874,18.7104,5.5006,4.2189,1.2412,2.9714,6.9341,11.7685,4.0623,4.2536,3.5961,1.4473,1.4261,4.7489,10.4812,3.2909,2.5625,11.7716,2.5347,2.7294,2.8223,14.2066,2.1388,3.6285,1.4476,14.6967,5.8481,8.0917,3.6882,10.5315,7.1664,6.6673,7.7833,3.8957,1.9831,4.8071,8,,AD,0.08132,,,,0.40041,4.0091,4.0728,0.88168,8.4829,1.7905,0.40079,3.7296,2.4205,45.5252,13.5663,183.1204,3.9039,4.5713,1.6292,1.9472,3.869,6.3183,2.1533,3.804,2.0116,6.0933,9.6121,44.5576,8.2468,2.2095,4.5653,1.8988,17.3819,4.3612,3.7824,1.1688,3.0467,7.947,12.6338,3.0945,3.9501,3.4069,1.3856,1.4275,4.1098,9.6993,3.0104,2.3183,9.3223,2.1573,2.2897,2.2845,13.0528,2.052,3.3207,1.3879,14.4338,5.4985,6.8489,3.7963,9.228,7.1897,6.6078,7.579,3.3051,1.6937,4.5974,,,,,,,,,,,,,,,72,,,,78
+nG+BRE3T0HC001,1.5676,2.2986,,70-79y,CN,,,16.6236,4.9095,2.1388,2.0194,1.5034,edsd,CN,,M,,0.40699,4.6218,4.2454,0.85732,8.4266,1.6388,0.36481,2.6239,2.6911,40.8598,14.5244,203.2097,3.9929,3.1737,1.5875,1.874,3.6426,7.0611,2.0694,3.137,0.55107,6.0013,10.7844,19.0497,6.4803,2.3362,4.9715,1.9029,20.5346,5.3469,3.7741,1.0988,2.3793,6.9709,13.3416,2.9641,3.9532,3.3683,1.3509,1.393,4.5016,9.8585,3.1578,2.4643,10.1888,2.0437,2.4751,2.3784,12.3532,1.7595,3.7361,1.1489,14.0631,5.0286,7.965,3.2684,10.9917,7.1273,6.5046,7.4294,3.6948,1.4265,4.4197,26,,,0.07283,,,,0.36254,4.0667,4.2152,0.8503,9.7693,1.7461,0.36129,2.7907,2.8217,38.9026,13.5734,203.0384,3.6777,3.6404,1.6102,2.0011,3.8294,7.2336,1.9797,3.2733,0.65501,6.3087,11.2816,16.3904,6.9763,2.0161,4.8109,1.8029,19.6056,4.7728,3.4504,1.0033,2.3383,7.6104,13.8398,2.8514,3.4721,3.3994,1.2954,1.4272,4.1859,10.2395,2.8643,2.304,9.8283,1.779,2.2852,2.0332,11.7128,1.5796,3.7056,1.1223,13.8475,4.955,8.042,3.4082,10.1684,7.09,6.338,7.4341,3.2904,1.2281,4.2638,,,,,,,,,,,,,,,78,,,,79
+nG+BRE3T0HC002,0.63477,1.5445,,60-69y,CN,,,15.4609,4.1429,2.4067,2.093,0.7582,edsd,CN,,F,,0.42275,4.6178,3.7369,0.88361,8.8036,1.5454,0.37755,2.7961,2.5944,44.1275,15.0423,210.2499,3.763,4.3938,1.7728,1.7211,3.2998,7.1705,1.9448,3.1428,0.37352,6.6013,11.3263,5.1615,6.7701,2.2721,4.5042,1.7434,18.9053,6.275,3.8333,1.1274,2.6167,6.6459,14.4591,3.3767,4.1586,3.0753,1.4185,1.3757,4.1543,9.8832,3.0372,2.0851,11.2863,2.2234,2.5069,2.0913,11.8905,1.8005,3.402,1.1023,14.584,5.2597,8.5647,3.3969,10.5664,7.2427,6.6061,7.6207,3.5409,1.4327,4.2061,30,,,0.07381,,,,0.37906,4.0983,3.5958,0.86192,10.8307,1.7906,0.37258,2.912,2.7501,44.3657,14.574,211.7795,3.6842,4.6637,1.6715,1.7747,3.617,7.2503,1.8974,3.3306,0.4904,6.3951,11.2911,4.3307,7.6419,2.2044,4.8128,1.7256,19.7012,4.9104,3.7921,1.1499,2.8894,7.5378,14.7741,2.8378,4.2714,3.1102,1.4407,1.4053,3.8987,10.0818,2.8784,1.9936,10.1441,1.9658,2.3067,1.7585,11.7388,1.7509,3.3659,1.0802,13.6319,5.1854,8.4112,3.9536,10.1525,7.5991,6.3384,7.0993,3.3338,1.2368,4.0316,,,,,,,,,,,,,,,68,,,,80
+nG+BRE3T0HC003,1.5285,1.6665,,70-79y,CN,,,16.2031,4.6685,1.1706,1.3543,1.3893,edsd,CN,,F,,0.40587,4.5147,4.2311,0.85492,10.4668,1.4732,0.39117,2.0109,2.6888,17.5955,9.5908,216.5383,4.0413,4.4358,1.6616,1.7251,3.268,6.6344,1.8676,3.0683,0.70554,4.7521,10.374,16.3416,5.6016,2.0354,4.3046,1.7594,17.6929,7.0509,3.7205,0.96142,2.0501,6.7828,13.6564,1.2586,2.2694,2.9994,1.1482,1.5342,4.224,10.3525,2.9405,2.5971,11.3081,2.3586,2.3531,2.3548,11.2965,1.9443,3.7863,1.1954,13.6532,4.8956,9.0232,4.0134,11.05,7.5305,6.7909,7.7009,3.122,1.4559,4.7828,26,,,0.09323,,,,0.36376,4.16,4.3171,0.8358,11.4685,1.6685,0.36723,2.4207,2.6323,17.4511,9.3302,222.8908,3.7413,4.6228,1.6261,1.8332,3.3689,7.5378,1.843,3.3738,0.58396,5.6115,12.4566,12.6277,5.7872,2.0293,4.3423,1.6669,16.3461,6.5173,3.4902,0.91562,2.2466,7.5173,15.2902,1.5521,2.7199,3.0495,1.4117,1.5531,3.8716,10.4,2.7981,2.482,9.2381,2.0362,2.3529,2.1534,10.0684,1.9694,3.6399,1.1141,13.7446,5.3208,8.4619,5.0079,11.0831,7.9135,6.9927,8.2744,3.0571,1.3547,4.6084,,,,,,,,,,,,,,,77,,,,81
+nG+BRE3T0HC004,2.3255,2.391,,+80y,CN,,,17.0807,5.2801,2.5582,2.3957,1.9368,edsd,CN,,M,,0.46097,4.8014,4.7752,0.94014,9.2301,1.5185,0.43573,3.0523,3.2616,45.9233,15.1093,229.6412,5.0423,4.6004,1.7477,2.0629,3.9985,7.5038,2.1944,3.3489,1.7229,7.0318,12.02,26.9842,7.8072,2.36,5.5108,1.92,21.8548,6.1756,4.0716,1.3141,2.9101,7.9001,15.24,4.0946,4.4217,3.6131,1.4462,1.6337,5.0361,11.4018,3.2659,2.5067,13.5758,2.8694,2.6081,2.7172,15.2549,2.3887,4.2169,1.3772,16.7784,5.6432,8.7049,3.9613,12.2077,8.1205,6.9837,9.0002,3.645,1.9208,4.8988,29,,,0.09039,,,,0.39004,4.4457,4.5559,0.91961,9.7385,1.6826,0.42884,3.5259,3.2785,46.091,14.6937,232.0406,4.5488,5.2557,1.6942,2.0358,3.9484,7.859,1.9564,3.3499,1.3791,7.6147,12.5177,24.219,8.6053,2.3412,5.2304,1.8585,20.694,5.5567,3.7214,1.302,2.9491,8.2947,15.3481,3.7168,4.6285,3.407,1.7399,1.6255,4.448,12.5485,2.8216,2.5812,11.3137,2.7442,2.6607,2.5206,13.2394,2.317,4.0675,1.3019,16.5313,5.7164,8.4426,4.6967,12.9849,7.9778,6.8815,8.8288,3.7539,1.8232,4.6086,,,,,,,,,,,,,,,82,,,,82
+nG+BRE3T0HC005,1.3691,1.4205,,70-79y,CN,,,17.0563,4.0219,2.4111,2.0176,1.033,edsd,CN,,F,,0.36871,3.8019,3.5139,0.75441,7.7872,1.259,0.33859,2.4514,2.3045,41.2085,16.6666,241.3842,3.3902,3.7273,1.3723,1.5965,2.8423,5.8965,1.602,2.7299,0.37161,5.8139,8.9927,9.9571,5.6466,1.892,4.0338,1.3385,16.0086,5.3461,3.2493,0.87376,2.0004,5.4513,12.1185,3.1752,3.5683,2.4846,1.2201,1.6863,3.6734,9.2175,2.6815,2.1383,9.4117,2.13,1.9402,2.1697,9.9515,1.7751,3.2931,1.0415,12.3802,4.4744,7.816,2.9174,9.6319,6.9838,6.686,6.3317,3.3177,1.3832,4.6844,30,,,0.08831,,,,0.3278,3.4038,3.3617,0.76307,8.2133,1.4292,0.34659,2.6333,2.3931,42.54,16.5675,242.2642,3.1436,3.8816,1.4479,1.4777,2.9935,5.8737,1.537,2.8776,0.41045,5.3796,9.5365,8.988,6.5539,1.9313,3.881,1.3868,15.764,3.9341,3.0517,0.90867,2.138,6.29,12.4758,2.4489,3.4707,3.1041,1.2984,1.7496,3.4626,9.2495,2.4452,2.0246,8.5585,1.7651,1.9844,1.8162,10.8149,1.5654,3.3077,0.99225,12.6629,4.3664,6.2696,3.3119,8.7087,6.2459,6.4687,6.4517,3.1211,1.2464,4.4904,,,,,,,,,,,,,,,71,,,,83
+nG+BRE3T0HC006,2.324,1.9035,,60-69y,CN,,,17.1042,4.7916,2.2734,2.0201,1.6234,edsd,CN,,M,,0.42178,5.0346,4.5754,0.90626,9.8771,1.5916,0.38983,3.0271,2.7179,35.7295,14.6398,233.5361,4.1345,4.6537,1.6341,1.9723,3.5221,7.0345,2.0083,3.3539,0.89918,7.291,10.7504,20.5572,7.4225,2.4742,4.9408,1.8517,20.3142,7.0699,4.0138,1.2002,2.5255,7.1431,14.2256,4.2854,4.2841,3.507,1.5579,1.6188,4.8769,10.7039,3.3066,2.3573,11.3632,2.2796,2.5079,2.4893,12.5602,2.1445,3.6697,1.2903,13.7765,5.4185,9.0722,3.9702,10.6654,7.8724,7.0601,7.8857,3.9585,1.5427,4.9442,29,,,0.09339,,,,0.37089,3.9011,4.1555,0.89412,10.3589,1.6824,0.38773,3.3893,2.7312,39.7325,14.9968,234.567,3.9415,5.0371,1.6965,1.8763,4.0964,7.4894,1.9341,3.5816,0.96117,7.6337,11.5999,19.1836,8.1675,2.17,4.4718,1.665,20.0346,5.4008,3.6743,1.2274,2.7515,8.7052,14.3491,3.859,4.3009,3.4054,1.5949,1.6611,4.4471,11.2362,3.1019,2.4361,10.6365,2.3931,2.5115,2.1559,12.2645,2.0179,3.6768,1.1729,14.303,5.6393,8.2315,4.5519,9.9526,7.4455,6.9095,7.9912,3.3044,1.5133,4.7495,,,,,,,,,,,,,,,67,,,,84
+nG+BRE3T0HC007,1.5107,1.6249,,60-69y,CN,,,18.3779,4.8245,2.4905,2.2394,1.4133,edsd,CN,,F,,0.36026,3.9538,3.4893,0.81901,8.7724,1.4948,0.33734,2.8913,2.8869,46.485,15.2514,196.2536,3.5616,4.1133,1.5971,1.7166,2.9867,6.7283,1.738,2.973,0.51393,6.0643,10.2714,15.693,7.2088,2.3021,4.6586,1.5041,18.8235,5.8088,3.5999,1.0809,2.4518,6.0255,13.4344,3.3573,4.385,3.5078,1.3463,1.4444,4.0252,10.2134,3.1227,1.7988,11.2494,1.9332,2.3008,1.8391,13.5901,1.6417,3.5212,0.93688,14.6057,4.9526,8.0408,3.4698,10.5006,6.7096,6.6519,6.9879,3.3764,1.182,4.7758,30,,,0.07383,,,,0.34305,3.4719,3.349,0.81818,9.4737,1.6958,0.35922,3.2335,2.8802,47.1369,14.6356,199.9507,3.2952,4.5468,1.6281,1.5528,3.4889,6.8956,1.8074,3.2024,0.4579,6.1947,10.8623,14.775,7.582,2.1113,4.6803,1.5281,18.6572,4.6573,3.528,0.99093,2.2643,7.1327,13.1632,2.5745,4.1496,3.0061,1.3687,1.4871,3.7733,10.4344,2.9075,1.8025,10.0317,1.9803,2.1568,1.6437,12.2882,1.5749,3.4543,0.93125,14.8992,5.1824,8.0252,3.9957,10.2263,6.5286,6.6045,7.1558,3.3878,1.1696,4.5429,,,,,,,,,,,,,,,69,,,,85
+nG+BRE3T0HC008,1.0879,1.5863,,60-69y,CN,,,18.9048,4.768,2.542,2.1997,1.2408,edsd,CN,,F,,0.44194,4.5454,3.9828,0.89305,8.7286,1.3397,0.3586,2.9269,3.3859,46.7113,16.4774,213.0487,4.0739,4.1815,1.7514,1.841,2.9067,6.9494,2.0006,3.1983,0.51638,6.1703,10.9301,14.1344,6.9613,2.0384,4.8735,1.7554,16.5372,6.0892,3.62,1.0543,2.549,6.5107,12.7389,3.7644,4.03,2.7665,1.3087,1.6447,4.24,10.0436,3.2821,2.3482,10.3895,1.9848,2.2988,2.4206,11.3434,1.598,3.9557,1.1825,13.5929,5.2669,8.1279,3.5384,9.2576,6.699,7.4651,7.2615,3.0662,1.54,5.1317,30,,,0.07484,,,,0.40736,4.1037,3.8721,0.84832,9.7549,1.5169,0.37472,3.0835,3.5023,47.8697,16.4399,213.4166,3.6548,4.6173,1.6681,1.7157,3.1852,7.4189,1.9012,3.4466,0.6389,6.1063,10.7373,12.8766,8.0791,2.0761,4.6952,1.6189,17.1276,4.7777,3.3669,0.98305,2.5762,7.2826,12.6504,2.7849,4.1388,3.0664,1.4056,1.6688,3.7308,10.5986,3.0453,2.2934,9.367,1.9944,2.3016,2.1557,11.52,1.7489,4.106,1.1184,13.1822,5.2426,7.8114,3.9277,10.1534,6.8712,7.2796,7.3364,3.3767,1.3599,4.7738,,,,,,,,,,,,,,,65,,,,86
+nG+BRE3T0HC009,1.2587,1.2549,,60-69y,CN,,,14.4094,3.7976,2.0595,1.8129,1.1253,edsd,CN,,F,,0.31078,3.4415,3.2009,0.75972,7.0338,1.246,0.30745,2.2969,2.254,36.6688,12.3842,173.4067,3.1499,3.1246,1.4,1.4077,2.5954,5.6911,1.5971,2.8217,0.4617,4.7373,8.829,12.8708,5.8094,1.8624,3.7226,1.3208,15.6491,4.4877,3.1944,0.83847,1.779,5.1598,10.3966,2.5231,3.385,3.0674,1.097,1.1772,3.3652,7.6794,2.6722,1.7303,9.6935,1.6677,2.1201,1.9804,10.4778,1.5665,2.7354,0.93595,12.0324,4.1032,6.5171,2.8935,8.9796,5.1763,5.5759,5.995,2.934,1.3848,3.8831,29,,,0.06699,,,,0.2921,3.0793,3.0941,0.74801,7.5111,1.5849,0.31234,2.3293,2.3504,35.9692,11.27,180.0634,3.2431,3.3574,1.3962,1.4159,2.9562,6.0063,1.626,2.9848,0.42204,5.2199,9.0157,10.0298,6.2051,1.8609,3.8319,1.3077,15.5645,4.0023,3.1075,1.0072,2.0511,5.7327,10.2149,2.4134,3.363,2.9907,1.1553,1.2196,3.2061,8.079,2.3912,1.7966,8.0245,1.7858,1.9091,1.7401,10.0972,1.7454,2.877,0.91508,11.9052,3.9761,6.8385,3.4634,8.5565,6.3164,5.785,6.4081,2.8801,1.1665,3.8095,,,,,,,,,,,,,,,66,,,,87
+nG+BRE3T0HC010,0.88743,1.9964,,70-79y,CN,,,18.1981,4.7656,2.4551,2.305,1.0679,edsd,CN,,F,,0.45212,4.1459,4.055,0.86685,8.5365,1.411,0.35327,2.9379,3.1277,44.2557,15.7259,238.5675,3.308,4.5858,1.6599,1.8092,3.2506,6.8761,1.9178,3.2942,0.40354,7.4721,11.1411,7.4895,6.9263,2.2107,4.4314,1.6085,17.8268,6.8039,3.7711,1.0348,2.3249,6.1349,13.734,4.7783,4.3095,3.2146,1.4126,1.6981,4.2314,9.804,3.1178,2.2586,10.212,2.1968,2.438,2.1408,10.9466,1.7886,3.8527,1.1302,13.2358,4.7641,7.3882,3.9864,9.1754,7.3126,7.8543,7.1257,3.5497,1.3077,5.0056,28,,,0.07254,,,,0.38433,3.591,3.8644,0.88854,9.2652,1.6813,0.35451,3.0653,2.8967,45.6943,16.6983,238.5124,3.5289,5.232,1.7787,1.7472,3.176,7.0668,1.8217,3.6718,0.51067,6.7307,11.1808,7.8019,7.8651,2.0839,4.2708,1.5471,17.1396,5.1801,3.6668,1.1358,2.7068,6.7697,13.7782,3.7885,4.0606,2.9653,1.2908,1.727,3.7653,10.1462,3.1027,2.1698,9.2483,2.0286,2.4704,1.8863,10.6278,1.6913,3.5889,1.0316,13.4238,5.1356,7.8294,4.7073,10.2113,7.2629,7.663,7.5087,3.036,1.2729,4.7913,,,,,,,,,,,,,,,71,,,,88
+nG+BRE3T0HC011,1.1076,1.3945,,60-69y,CN,,,15.5901,4.2432,2.2057,1.8736,0.99032,edsd,CN,,F,,0.41872,4.4726,3.5419,0.76662,8.3375,1.4445,0.34124,2.7239,2.7349,39.9079,13.1971,207.7314,3.8728,3.9231,1.4559,1.7831,3.2291,6.4193,1.8321,2.8231,0.35349,5.8054,9.6766,10.0306,6.4066,2.2255,5.1063,1.6816,17.7638,5.7343,3.5808,0.88782,2.2307,6.5047,12.523,3.1936,3.5668,3.2572,1.407,1.4028,4.165,9.6412,2.7322,1.8182,9.966,1.9972,2.2795,2.0997,11.0545,1.6453,3.5774,0.99153,14.3161,4.9805,7.5155,3.2589,10.1926,6.709,6.2616,7.508,3.9512,1.3859,4.2057,27,,,0.07014,,,,0.36656,3.8308,3.5284,0.78518,9.7765,1.746,0.34362,2.8039,2.8002,39.3487,12.6382,208.768,3.3572,4.0345,1.5099,1.6815,3.6547,5.9671,1.8289,2.9637,0.41256,6.0955,9.6194,9.9076,6.8044,2.1125,4.7753,1.6304,17.1552,4.7324,3.4252,0.95977,2.4632,7.0663,13.2977,2.916,3.6454,3.2061,1.457,1.4352,3.797,9.6819,2.3867,1.857,9.2137,1.8491,2.1507,1.84,11.0166,1.6764,3.5115,0.97385,15.0319,4.8342,7.5235,3.8119,9.4402,7.2718,6.1564,7.0589,3.1547,1.274,4.0474,,,,,,,,,,,,,,,65,,,,89
+nG+BRE3T0HC012,1.3832,2.213,,+80y,CN,,,17.0656,4.4217,2.493,2.1421,1.3749,edsd,CN,,F,,0.37445,3.902,3.9132,0.79963,7.6134,1.2392,0.32953,2.6636,2.5963,42.7427,15.2271,212.0212,3.9159,3.8322,1.5117,1.6285,2.9111,6.8122,1.844,2.8392,0.66511,5.4972,9.8852,15.0126,6.2984,1.9786,4.1942,1.5869,16.2676,4.7546,3.3257,1.0087,2.0461,5.9363,11.453,3.0161,3.7017,2.8744,1.3255,1.5196,4.0115,9.8686,2.9044,2.0742,10.5064,2.0017,2.1766,2.0868,11.5391,1.8311,2.7379,1.1234,12.7141,4.3767,8.448,3.2554,9.8361,6.4193,6.3968,7.0134,3.3445,1.3082,4.5907,28,,,0.08624,,,,0.34299,3.7635,3.6669,0.73728,9.6025,1.5496,0.33722,2.8962,2.828,43.5612,14.377,211.2005,3.4909,3.9844,1.381,1.6866,3.2079,6.6631,1.7184,2.9465,0.52755,6.1881,9.5823,13.6634,6.987,1.9992,4.2933,1.4989,16.0764,4.6187,3.2182,0.95179,2.313,6.6768,12.2732,3.2711,3.8619,2.8766,1.3021,1.5024,3.7277,10.113,2.5317,2.1301,9.1729,1.7744,2.1689,1.7793,11.2018,1.495,3.0935,1.0798,12.738,4.7982,7.366,3.5417,8.2148,5.9694,6.3029,6.5243,2.9217,1.2667,4.259,,,,,,,,,,,,,,,81,,,,90
+nG+BRE3T0HC013,1.9291,1.505,,+80y,CN,,,18.0157,4.9875,2.5773,2.2587,1.7785,edsd,CN,,M,,0.45981,4.7194,3.9908,0.82436,10.3377,1.6336,0.396,3.6197,2.4744,40.919,15.2435,224.409,3.9467,4.8776,1.5666,1.946,4.0054,6.9946,2.2647,3.0111,0.86062,7.1021,11.9409,27.1775,7.1302,2.4933,4.602,1.927,19.1111,7.0929,4.1113,1.0477,2.4332,7.3183,14.9175,4.6205,4.2718,3.2136,1.5283,1.6024,4.4685,10.1207,2.9815,2.2733,11.5915,2.2311,2.3456,2.174,11.8704,1.7221,3.7691,1.4349,15.3658,5.1103,8.9715,4.0462,10.483,6.9714,6.9789,7.2254,4.0972,1.3695,4.8516,27,,,0.08573,,,,0.40488,3.8443,3.9571,0.82479,10.6495,1.7905,0.35696,3.479,2.6515,40.9779,15.0903,226.9296,4.0902,5.0217,1.5012,1.7564,3.9918,6.7847,2.0976,3.3759,0.91151,7.0461,11.4592,23.4697,7.9421,2.2504,4.2838,1.8855,19.4435,5.1508,3.7545,1.2125,2.7869,8.4784,14.2573,3.82,4.2732,2.6948,1.4922,1.5958,4.1132,10.7414,2.8206,2.3357,9.7286,2.3281,2.1934,2.0686,13.3956,1.85,3.5759,1.2428,16.0842,5.871,7.384,4.9115,10.4802,6.6149,6.9738,7.6653,3.2341,1.4761,4.6454,,,,,,,,,,,,,,,81,,,,91
+nG+BRE3T0HC014,1.0532,1.9782,,60-69y,CN,,,16.3958,4.6425,2.1836,1.9574,1.0868,edsd,CN,,M,,0.38328,3.8966,4.0966,0.78381,8.6227,1.373,0.35351,2.7682,2.4731,41.3507,13.4068,206.3478,3.6776,4.2066,1.4866,1.8226,2.9094,6.7637,1.9946,2.9383,0.57025,6.9697,10.1658,15.492,6.6821,2.1257,4.2894,1.5425,16.3033,5.8408,3.5958,1.0559,2.7079,6.1736,12.4727,4.0632,4.2914,3.1365,1.4614,1.4602,3.7834,9.5476,2.8295,2.1325,10.1489,2.3464,2.1999,2.196,12.536,1.9505,3.7694,1.0006,13.1053,4.8268,8.5595,3.3562,9.8113,7.2459,6.5008,7.0965,3.7653,1.4755,4.3977,29,,,0.06742,,,,0.33255,3.209,3.9071,0.75255,8.8384,1.4595,0.36204,2.8293,2.5342,40.8755,12.9916,207.292,3.3183,4.5354,1.4942,1.8156,3.2104,6.6202,1.8475,3.0298,0.57073,6.6568,10.3411,10.2608,7.7523,2.0537,3.9778,1.4493,17.2089,4.8713,3.1417,1.3114,2.7452,7.2709,12.693,3.2247,3.914,3.1572,1.3911,1.4455,3.6401,9.7755,2.6338,2.0154,9.5358,1.8613,1.9431,1.9449,11.9596,1.6188,3.6304,0.97024,12.8768,5.1503,7.1082,4.0794,9.4618,6.7444,6.2423,7.5836,2.9832,1.3501,4.1197,,,,,,,,,,,,,,,67,,,,92
+nG+BRE3T0HC015,2.3438,2.1882,,70-79y,CN,,,15.4595,4.6412,2.0852,1.8821,1.817,edsd,CN,,M,,0.34796,4.6332,4.5975,0.83178,9.5744,1.5453,0.33923,2.5487,2.1381,33.0167,13.0618,208.4765,3.9289,3.5991,1.6035,2.0518,3.7446,6.7018,2.2699,3.3696,1.3149,6.2781,11.0921,31.6678,6.9034,2.1863,4.6175,1.8131,18.4105,6.0209,4.0771,1.0161,2.6498,6.9618,14.7968,3.8769,3.9235,2.9253,1.2603,1.3821,4.7769,10.6801,3.3962,2.36,10.5872,2.1136,2.1792,2.2788,12.0972,1.9479,3.2616,1.2689,17.1693,4.9509,8.8943,3.1908,10.6438,7.5252,6.9765,7.9047,3.4438,1.5759,4.6199,29,,,0.07639,,,,0.32585,4.2214,4.1263,0.84531,9.655,1.8044,0.35564,2.5054,2.4055,33.5806,12.669,212.9734,3.4617,4.456,1.6422,1.9403,3.8539,7.0639,2.0611,3.6263,1.3331,6.1465,11.8204,28.2264,7.2462,2.2463,4.5711,1.7877,19.3515,5.2137,3.7541,1.2128,2.663,7.7075,15.1456,3.0666,3.823,3.0386,1.5788,1.4013,4.4721,10.7557,3.1315,2.3829,9.3134,1.8566,2.1059,2.1627,12.4481,1.8902,3.2112,1.2626,15.3682,5.1692,8.0461,4.3171,10.1293,7.3433,6.8127,8.6143,3.6354,1.492,4.3788,,,,,,,,,,,,,,,78,,,,93
+nG+BRE3T0HC016,0.95234,2.013,,60-69y,CN,,,21.0547,5.3227,2.8837,2.4395,1.0269,edsd,CN,,M,,0.46189,5.5783,4.5444,0.97424,9.6062,1.7542,0.43993,2.4821,2.818,50.6327,17.272,250.5173,4.3736,4.0075,1.953,2.0682,3.9049,7.7927,2.2249,3.3501,0.50571,6.3223,11.7473,8.6117,6.7788,2.593,5.3642,2.1806,20.6388,7.1588,4.2149,1.4687,2.8764,8.0353,14.2003,3.2269,4.2086,3.5056,1.6617,1.7807,4.4619,10.3925,3.4671,2.278,11.767,2.1463,2.7234,2.3188,13.9825,2.0775,4.2219,1.2389,15.2985,5.6492,8.4355,3.3648,10.2256,7.5026,8.1584,9.2077,3.7557,1.5023,5.5023,30,,,0.08824,,,,0.37835,4.8283,4.3388,0.94447,11.2043,1.8182,0.39698,2.9195,2.7492,51.132,16.8057,252.4425,3.8627,4.8828,1.8764,2.1947,3.9367,8.0767,2.0694,3.5761,0.43769,7.0352,12.0698,7.1348,8.1568,2.2448,5.1542,1.9062,20.9626,5.8192,3.8381,0.8944,2.3747,8.3169,14.7733,3.4225,4.5378,3.6965,1.6373,1.7202,4.3186,11.5144,3.2514,2.458,9.3549,1.9329,2.2728,2.1508,11.673,1.7676,4.0092,1.1878,15.9956,5.8484,7.8423,4.1559,10.7547,7.9658,7.8667,8.4564,3.8231,1.3216,5.139,,,,,,,,,,,,,,,66,,,,94
+nG+BRE3T0HC017,1.7106,1.8055,,60-69y,CN,,,16.9774,4.8744,2.5172,2.3209,1.6673,edsd,CN,,M,,0.43644,4.9895,4.3722,0.94771,8.3617,1.7823,0.38429,3.5173,2.86,46.8828,16.1998,252.8866,4.8046,4.7596,1.7971,2.0677,4.0108,7.2873,2.3284,3.7705,0.84311,6.1905,11.1868,20.6057,7.5458,2.6168,5.2196,1.9384,23.3141,5.6886,4.4401,1.2297,2.7011,8.1543,13.7819,3.7682,4.1868,3.6147,1.5939,1.5897,4.479,11.6249,3.3059,2.5628,12.15,2.9222,2.6401,2.7196,13.2148,2.3435,3.8966,1.2697,17.7676,6.5596,9.3438,3.6894,12.624,7.6224,7.0209,8.0899,3.787,1.8674,4.8757,30,,,0.08029,,,,0.39648,4.7493,4.2179,0.93709,10.1476,2.0206,0.38339,4.093,2.6948,46.7564,15.3503,251.9128,4.3436,5.7872,1.7722,2.1033,4.3478,7.4213,2.3169,3.7728,0.94962,6.4488,12.0599,16.5462,8.211,2.5698,5.4889,1.9128,23.2146,5.0552,4.1808,1.2881,2.951,8.2778,14.0658,3.2392,4.0415,3.5302,1.7251,1.6059,3.9081,11.262,3.1552,2.5208,9.7599,2.5829,2.4929,2.3438,13.4291,2.0988,3.8911,1.2756,16.3566,6.3587,7.3627,4.5013,10.3841,7.4,6.6726,8.6274,3.9793,1.5923,4.589,,,,,,,,,,,,,,,68,,,,95
+nG+BRE3T0HC018,0.75255,1.2525,,60-69y,CN,,,12.5951,3.9856,1.4796,1.9054,0.85913,edsd,CN,,F,,0.43187,4.1727,4.2191,0.81121,9.9207,1.6524,0.35605,2.999,3.0716,18.9006,8.9953,221.6688,3.7308,4.9089,1.5094,2.1023,3.4571,6.303,2.0739,3.1466,0.38107,7.4757,10.0482,7.6682,6.4974,2.5812,4.0677,1.771,19.245,6.6156,4.1119,0.93862,2.1511,6.4163,13.6802,4.3637,4.2594,3.5831,1.7375,1.4276,4.4635,10.429,2.832,2.1526,10.4789,2.4255,2.6219,2.1527,12.1891,2.1538,3.4941,1.0522,14.8242,4.9899,10.095,4.5227,11.6839,7.8687,6.6266,7.1796,4.3993,1.5485,4.1776,28,,,0.06965,,,,0.40629,3.8292,4.1806,0.80756,10.3199,1.7919,0.36577,3.2555,3.1972,22.5067,10.0802,221.5317,3.7695,5.0607,1.466,2.0185,3.8675,6.6402,2.1813,3.3722,0.40818,7.7992,11.1523,5.9624,7.3862,2.415,4.3037,1.7839,19.346,6.1579,4.0524,0.96212,2.2434,7.1759,14.6495,3.9516,4.2119,3.5548,1.7302,1.4407,4.3285,11.3098,2.6563,2.1732,9.7535,2.1185,2.5499,2.0533,12.4119,1.9052,3.4974,1.054,15.0113,5.0969,8.1137,5.1129,10.9764,7.3333,6.3437,7.544,3.6254,1.4878,3.9093,,,,,,,,,,,,,,,68,,,,96
+nG+FRA3T0AD001,1.5742,0.86416,,+80y,AD,,,10.4775,4.7754,0.01307,0.88859,2.0996,edsd,AD,,M,,0.30794,3.9099,3.7795,0.55437,7.7738,1.5195,0.32475,2.76,2.3544,8.5017,2.9582,163.5753,3.5089,3.7148,1.071,1.7426,3.037,5.9789,1.9282,2.3474,1.3233,4.5324,8.2972,28.8535,6.1042,2.3,3.9178,1.4548,14.9308,5.7279,3.6918,1.0146,2.2434,5.9768,10.6925,2.5053,2.3413,3.0227,1.4323,1.2199,3.6676,9.2035,2.7255,2.0626,9.8218,2.0021,2.2464,1.9119,8.8425,1.5971,3.0473,1.1784,13.0945,4.4892,7.378,3.0052,9.055,5.5948,5.5956,5.8408,3.2833,1.3837,4.0073,26,,AD,0.08637,,,,0.28531,3.6304,3.6922,0.53273,8.6533,1.433,0.31885,2.714,2.6936,7.8188,2.8026,167.5756,3.507,3.8261,1.0283,1.7569,3.1681,5.9903,1.7916,2.4134,0.99284,5.1333,8.5353,25.4195,6.5468,1.7777,3.8307,1.3545,15.6573,4.6078,3.2923,0.89653,2.1363,6.5032,10.144,2.3876,2.5461,2.8152,1.2066,1.2247,3.4873,9.4528,2.3932,2.035,8.8464,1.9497,1.9076,1.8059,9.8279,1.6038,2.9937,1.0715,13.2221,4.6055,6.5966,3.4776,9.6784,5.4796,5.3636,5.4577,2.7704,1.2763,3.7752,,,,,,,,,,,,,,,84,,,,97
+nG+FRA3T0AD002,1.8949,1.2451,,70-79y,AD,,,17.8283,4.4952,2.3041,1.928,2.1695,edsd,AD,,F,,0.39098,4.993,4.2913,0.59853,9.5056,1.6651,0.37002,3.6314,2.7181,43.4585,13.2435,188.3036,4.2508,4.9829,1.2384,2.1908,3.6769,6.6305,2.4275,2.5657,0.8374,6.1329,10.2432,20.5641,7.4427,2.6274,4.6176,1.9798,19.7907,6.0172,4.3252,0.88625,2.448,7.9473,13.2848,4.0563,4.2771,3.5344,1.6018,1.4615,4.2202,10.7339,2.9822,2.5088,10.5547,2.3713,2.4903,2.3484,12.4066,2.4575,3.2644,1.3794,15.0048,5.7904,9.1099,3.7598,11.0553,7.0766,6.438,7.0574,4.3634,1.9146,4.4872,12,,AD,0.10203,,,,0.35875,4.2583,4.0912,0.64699,10.0875,1.8139,0.36817,3.6533,3.0485,42.383,12.8078,193.2219,4.3688,5.3581,1.3409,2.088,4.3706,6.767,2.2509,2.6387,0.90872,6.7589,10.7519,24.2377,7.7846,2.3834,4.6501,2.0714,19.3203,5.4367,3.9067,0.9041,2.4737,8.988,13.2145,3.3182,4.1078,3.7478,1.6667,1.4831,3.6144,11.2412,2.6608,2.5789,9.5763,2.4047,2.3984,2.2937,11.7135,2.2014,3.1852,1.253,14.6511,5.7812,6.923,4.6325,10.7106,7.3514,6.1138,7.2185,4.0428,1.8464,4.3567,,,,,,,,,,,,,,,76,,,,98
+nG+FRA3T0AD003,1.1814,1.3358,,+80y,AD,,,17.8487,4.7338,2.6363,2.1428,1.2419,edsd,AD,,F,,0.41475,4.4339,4.4443,0.7832,7.8755,1.5991,0.39142,3.4855,2.841,46.3476,13.739,200.7235,4.2908,4.0775,1.431,2.1162,3.6728,5.8516,2.3927,2.7458,0.74287,5.5408,9.3713,17.7403,7.1973,2.5062,4.4137,1.8448,18.4826,5.1979,4.2215,1.0821,2.4684,6.858,11.3677,3.1951,3.7857,3.1331,1.6331,1.4822,3.9228,9.925,2.8589,2.3392,11.1918,2.4538,2.4352,2.2743,12.8857,2.2187,3.53,1.3468,14.4115,5.2739,7.7036,3.4322,10.1047,6.4001,6.8634,7.066,4.4614,1.672,4.5385,18,,AD,0.08927,,,,0.38358,3.9559,4.0025,0.74739,8.484,1.8676,0.37594,3.2507,2.9543,45.7299,13.6561,201.9419,4.0193,4.8153,1.4113,1.9447,3.6966,6.1101,2.3192,2.8399,0.60754,6.1666,9.3731,15.0453,7.5329,2.3675,4.3975,1.815,18.4645,5.233,4.2036,1.0043,2.4901,7.4214,11.2089,2.8584,3.7584,3.6679,1.6253,1.4692,3.3773,9.5582,2.6206,2.1868,9.3905,2.0186,2.2717,1.9614,12.3509,1.6691,3.4885,1.2947,14.1941,5.1235,6.7591,4.7014,9.4371,6.1758,6.376,6.9474,3.69,1.4436,4.2758,,,,,,,,,,,,,,,82,,,,99
+nG+FRA3T0AD004,1.2434,1.7805,,70-79y,AD,,,18.7678,4.7909,2.5305,2.3544,1.4638,edsd,AD,,F,,0.36125,3.4753,3.6699,0.61856,7.0113,1.3791,0.32078,2.7897,2.5641,45.253,13.873,196.515,3.3553,3.6086,1.239,1.7952,3.023,5.8543,1.8904,2.5816,0.76297,4.9142,8.5717,14.9908,6.4476,2.0723,3.8107,1.4147,13.8636,4.7552,3.5511,0.9423,2.1599,5.5465,10.7235,2.6098,3.4649,2.4859,1.2018,1.4831,3.5086,8.9534,2.7706,1.8798,10.0487,1.9104,2.0224,2.004,10.4338,1.7443,3.187,1.0351,11.9997,4.2257,7.0627,2.6359,8.0135,6.358,6.7115,6.576,3.1253,1.3482,4.6407,15,,AD,0.08474,,,,0.31747,3.1277,3.5491,0.67783,8.7165,1.4615,0.3392,2.9315,2.6213,44.5434,13.5526,205.4396,3.5078,3.8457,1.3214,1.7559,3.3566,6.2261,1.8239,2.9506,0.60552,5.1878,9.3723,13.7106,6.7667,1.845,3.8785,1.4951,14.4447,3.8872,3.2927,0.88722,2.1518,6.2184,11.259,2.391,3.5942,2.8627,1.2154,1.5196,3.2253,8.9813,2.4547,2.0348,8.8773,1.8115,1.7935,1.8635,10.0704,1.6134,3.2527,1.0084,11.5255,4.5284,7.1713,3.2913,8.6694,6.5646,6.5223,6.8277,2.8756,1.3581,4.5013,,,,,,,,,,,,,,,70,,,,100
+nG+FRA3T0AD005,1.9257,2.0425,,+80y,AD,,,17.8724,4.7947,2.8095,2.2729,1.903,edsd,AD,,F,,0.37955,4.0531,4.2701,0.81498,7.974,1.3823,0.37008,2.8997,3.0305,49.9325,14.5866,191.6235,3.7912,4.2499,1.5458,1.9079,3.0604,7.0828,2.1179,3.0923,1.3508,6.342,10.7932,28.2322,7.4574,2.2506,4.597,1.6848,17.557,5.3342,3.8912,1.1988,2.5142,6.22,11.94,2.98,4.3265,2.9289,1.4402,1.5307,4.3027,10.294,3.1213,2.156,11.3304,2.3005,2.5279,2.1582,11.6061,1.9411,2.9568,1.2057,14.177,5.1488,8.7963,3.2833,9.1995,6.7032,6.5537,7.1051,3.2693,1.3876,4.5189,21,,AD,0.08239,,,,0.38217,3.4662,4.3523,0.83226,9.9299,1.7531,0.39096,2.8765,3.1769,48.1232,14.3962,200.6661,3.6022,3.9357,1.6092,2.1043,3.6539,7.2951,2.1047,3.3786,0.80317,6.8318,11.4342,22.5276,7.5602,2.4243,4.5022,1.7617,17.5262,5.027,3.8459,1.1324,2.5778,7.1327,14.0727,2.6968,4.0513,3.1209,1.7912,1.5691,4.0596,9.7225,2.9279,2.3259,9.6887,1.874,2.5605,2.1568,11.5372,1.7086,3.2185,1.2115,14.4163,4.9472,8.2169,3.6415,9.3873,7.9654,6.6487,8.1322,3.4761,1.3983,4.3418,,,,,,,,,,,,,,,82,,,,101
+nG+FRA3T0AD006,0.84179,1.4228,,60-69y,AD,,,18.6779,4.9392,2.6288,2.2895,1.1321,edsd,AD,,M,,0.4675,4.7587,4.2539,0.76414,8.9469,1.6403,0.38456,3.144,2.7731,45.9081,14.4878,203.3802,4.2542,4.5803,1.4774,1.918,3.5902,6.8662,2.148,2.8124,0.27558,6.4095,10.6973,10.0691,7.536,2.3765,4.9652,1.8136,19.7152,5.7798,4.1983,1.3061,3.0738,7.0344,12.7951,3.4573,4.2296,3.442,1.4691,1.6093,3.8132,9.4168,2.8998,2.4319,12.3052,2.2906,2.5278,2.2966,13.0547,1.8701,4.111,1.1685,15.6348,5.4263,9.5465,3.4117,10.4568,7.0463,7.072,7.3155,3.7596,1.4614,4.8599,18,,AD,0.07985,,,,0.39556,4.2012,4.0554,0.73258,10.2318,2.0195,0.38373,3.4156,2.8479,46.7108,14.5606,208.0855,3.6865,4.6403,1.4992,2.0368,4.0231,7.3114,2.1634,2.971,0.32887,7.3511,10.9624,8.0156,7.8024,2.4574,4.6942,1.7396,19.6234,5.7094,4.1906,1.1706,2.946,8.0908,13.3708,3.238,4.3103,3.7507,1.6043,1.5525,3.6314,9.5597,2.7887,2.2741,11.1598,2.0239,2.4833,1.8818,14.0005,1.6347,3.9886,1.0894,15.1279,5.7917,8.4644,3.9609,9.8361,7.0951,6.9572,7.3187,3.723,1.2774,4.6207,,,,,,,,,,,,,,,63,,,,102
+nG+FRA3T0AD007,1.1864,1.7443,,50-59y,AD,,,17.5238,4.5837,2.8725,2.1447,1.4806,edsd,AD,,F,,0.37281,4.2174,3.8636,0.764,7.7556,1.3901,0.36673,3.4654,2.5066,47.8809,14.685,178.1077,4.0701,4.4391,1.4503,1.7162,3.4666,6.5809,2.1961,2.8264,0.39771,5.3991,9.5007,22.1922,7.5794,2.2288,4.4356,1.7426,15.6098,5.4552,3.8534,1.2595,2.9515,6.717,11.2573,3.6427,3.8862,2.8947,1.3935,1.4068,3.6918,9.1856,2.9583,2.0168,11.1038,2.1941,2.2353,1.965,12.2439,1.8518,3.2011,1.2275,15.1234,4.9993,7.6971,3.8121,8.4851,6.7381,6.8109,6.7322,3.4373,1.4517,4.3655,16,,AD,0.07148,,,,0.35998,3.8518,4.0357,0.79506,9.0777,1.7559,0.37288,3.2514,2.7088,47.735,14.3963,191.9093,3.9783,4.7749,1.5598,2.168,3.8571,7.0709,2.2451,3.1279,0.57306,5.9288,10.4764,12.513,8.0228,2.4533,4.2759,1.8236,16.3896,5.1082,3.7934,0.88883,2.467,7.7289,12.8947,3.3381,4.0314,3.4637,1.8234,1.3875,3.509,9.3592,2.9241,2.125,10.5834,2.2739,2.3767,1.9273,12.5355,2.0045,3.2994,1.1997,14.878,4.9458,7.9335,4.3785,8.8843,7.3442,6.718,7.5888,3.7943,1.521,4.1478,,,,,,,,,,,,,,,57,,,,103
+nG+FRA3T0AD008,1.3249,1.6554,,60-69y,AD,,,18.5066,4.7616,2.7071,2.1884,1.3046,edsd,AD,,F,,0.36831,4.0071,3.8667,0.73163,7.639,1.4587,0.34728,2.7771,2.4509,44.7829,14.8868,186.1223,3.4424,4.107,1.4084,1.819,3.096,5.9897,1.9202,2.9636,0.65416,5.6047,9.3001,15.3654,6.3868,2.4098,4.325,1.5313,17.1374,5.4916,3.7363,1.0018,2.3324,5.7123,12.2537,3.1364,3.7275,3.1135,1.5183,1.5218,3.6396,8.8792,2.9276,2.0745,11.4776,1.9606,2.3548,1.9945,11.5259,1.4896,3.4084,1.1468,11.0698,4.6149,7.9897,2.9499,9.4147,6.0979,6.9254,6.7399,4.0968,1.2987,4.6997,23,,AD,0.07896,,,,0.34508,3.6366,3.8268,0.76775,9.1329,1.6668,0.36559,3.0144,2.6297,45.2867,14.843,202.0779,3.7748,4.0919,1.4526,1.8441,3.6023,6.4935,1.9583,3.2164,0.49829,6.6504,10.7082,11.8547,7.1534,2.1604,4.2587,1.5742,18.2829,4.7603,3.6681,1.0275,2.3434,6.6975,13.687,2.9051,3.7753,2.73,1.4436,1.5202,3.5177,8.9288,2.7734,2.1622,10.5362,1.9666,2.254,1.8414,11.9169,1.6444,3.4342,1.1782,13.0409,5.0806,6.9975,4.0972,9.8602,6.8921,6.8266,7.1565,3.2925,1.3288,4.5123,,,,,,,,,,,,,,,60,,,,104
+nG+FRA3T0AD009,2.6191,2.4571,,+80y,AD,,,18.2564,5.0567,2.7464,2.3305,1.9943,edsd,AD,,M,,0.36957,4.5166,4.3508,0.72388,9.4377,1.3813,0.38156,3.8162,2.8188,46.9867,14.3546,168.0025,4.0026,5.4373,1.5799,1.9192,3.292,6.8239,1.8768,3.0802,1.4657,6.9482,10.7906,28.4876,8.3281,2.2539,4.3733,1.5482,16.9671,6.4362,3.5828,1.3535,2.6677,6.5605,12.909,4.2916,4.4946,3.0803,1.4926,1.4598,4.4787,10.9135,3.2955,2.5533,12.0117,2.1829,2.3788,2.4406,11.1711,1.8896,3.7478,1.2447,12.462,4.8952,9.5642,3.9398,11.6252,7.014,6.5162,7.423,3.4383,1.659,4.6351,17,,AD,0.08896,,,,0.33007,4.0312,4.0442,0.81285,9.5111,1.6226,0.3793,3.676,3.1161,49.1382,14.2143,177.9895,3.8832,5.3723,1.6944,1.9493,3.7108,7.2356,1.7907,3.4166,1.4088,7.1322,11.2191,24.6327,8.7636,2.1371,4.4383,1.4812,16.9,5.705,3.4976,1.0517,2.145,7.2823,13.4418,3.5262,4.7616,3.4362,1.447,1.2369,4.0904,10.3831,3.1953,2.5153,10.8533,2.2714,2.2898,2.226,10.4972,1.9634,3.3088,1.1613,13.2144,4.8107,8.1119,4.958,10.0449,7.1842,5.6649,8.145,3.3574,1.6489,4.1711,,,,,,,,,,,,,,,83,,,,105
+nG+FRA3T0AD010,1.6733,2.1439,,+80y,AD,,,16.2793,4.5122,2.2317,2.1195,1.7253,edsd,AD,,F,,0.29738,3.6683,3.1001,0.50331,6.643,1.2982,0.30289,2.5089,2.1702,40.1862,12.2415,162.6556,3.4535,3.349,1.0768,1.5355,2.8575,5.2277,1.7297,2.0491,1.4008,4.6349,7.7991,17.1104,6.0476,2.0383,3.7073,1.3406,14.4036,4.1832,3.3296,0.81513,2.04,5.9385,9.4766,2.5727,3.5527,2.6854,1.2763,1.2703,3.282,7.8937,2.4806,1.9054,9.1597,1.8917,2.137,1.9636,10.7286,1.7051,2.6696,1.0497,10.2517,4.1389,6.5015,2.5571,7.6989,5.2566,5.6543,5.7466,2.9441,1.3481,4.0854,4,,AD,0.07357,,,,0.27846,3.374,3.1002,0.52431,7.9793,1.5405,0.2964,2.6871,2.3103,41.1694,12.1718,169.8396,3.175,3.2424,1.1072,1.7167,3.1704,6.0359,1.8505,2.239,1.4633,4.974,8.6786,14.918,7.1085,2.0766,3.5392,1.4358,14.7917,4.149,3.598,0.77061,1.8683,6.5984,10.0789,2.5506,3.587,3.166,1.2794,1.3722,3.1789,7.7055,2.3909,1.8084,7.8137,1.6795,1.9698,1.6847,9.7583,1.456,2.6449,1.0483,10.046,4.0735,5.4248,3.4065,7.3466,5.9552,5.6305,6.3104,2.9562,1.1692,3.916,,,,,,,,,,,,,,,81,,,,106
+nG+FRA3T0AD011,1.2087,1.4841,,-50y,AD,,,15.3715,4.4555,2.3454,2.1242,1.1023,edsd,AD,,F,,0.35337,4.5893,3.7307,0.83746,8.6436,1.5125,0.32989,2.9999,2.224,41.159,12.6969,182.7135,3.5149,4.7694,1.6527,1.7798,3.359,6.7266,2.1695,2.6776,0.33279,5.5447,10.716,9.075,7.101,2.2657,4.4226,1.7994,16.8676,5.5906,3.919,0.96828,2.3114,6.9068,12.0194,2.892,3.7316,2.8433,1.3667,1.3372,3.7849,9.3087,3.1042,2.016,10.3553,1.8935,2.2325,2.043,11.2192,1.533,2.9525,1.1222,13.0121,5.694,7.5996,2.9737,9.3499,5.7575,6.3793,7.4577,3.3617,1.2893,4.1275,24,,AD,0.07686,,,,0.32915,4.133,3.7458,0.83213,8.2447,1.7654,0.33409,2.8362,2.3358,41.6372,12.8206,187.5946,3.4588,4.6492,1.6396,1.9104,3.5147,7.0202,2.0818,2.945,0.35824,6.1011,10.6336,7.9119,7.6111,2.0758,4.5815,1.784,16.2846,4.8904,3.7335,0.91077,2.1051,7.4352,11.7785,2.7556,4.0318,2.666,1.4292,1.3407,3.5786,9.5312,2.8883,2.0427,9.279,1.9819,2.1194,1.9967,11.3285,1.5641,2.9483,1.0551,13.6519,5.3286,7.202,4.0865,8.5685,5.8814,6.2277,7.3106,3.1974,1.457,3.8742,,,,,,,,,,,,,,,42,,,,107
+nG+FRA3T0AD012,1.9017,1.7396,,70-79y,AD,,,18.7723,5.0892,2.7436,2.2369,2.9852,edsd,AD,,F,,0.40726,4.8192,4.4386,0.69368,8.0967,1.6658,0.36577,3.2162,3.0891,44.0063,14.0666,226.1267,3.6923,4.4391,1.2756,1.9836,4.099,6.7015,2.1136,2.6663,1.4858,6.0086,10.2159,37.077,7.3568,2.2284,4.2474,1.9126,18.3019,5.7989,3.9945,1.228,2.4514,7.366,12.213,3.9171,4.1242,3.3633,1.3639,1.5505,4.313,9.7247,2.8084,2.3494,11.5521,2.1129,2.1804,2.1983,11.5614,1.7911,3.6411,1.2195,14.5561,5.3514,7.9271,4.138,10.3502,6.522,6.9044,7.1399,3.713,1.5708,4.8818,20,,AD,0.09186,,,,0.36445,4.5016,4.3175,0.64944,9.8967,1.7572,0.36187,3.1995,3.2805,43.6868,14.0223,231.4132,3.8898,3.924,1.2354,2.1043,4.2184,6.3707,2.0996,2.7652,1.6576,6.7724,10.3651,35.4185,7.6204,2.0878,4.2555,1.8834,19.1215,5.1663,3.7301,1.0214,2.5091,8.5188,13.5027,3.1843,3.9848,3.0687,1.4205,1.5855,3.6767,9.1945,2.5224,2.2576,9.654,1.8914,2.0643,1.9298,12.0314,1.568,3.5593,1.1871,14.6309,5.6451,7.4083,3.9021,10.2397,6.5345,6.5881,7.057,3.4745,1.2913,4.6091,,,,,,,,,,,,,,,70,,,,108
+nG+FRA3T0AD013,1.9976,2.1503,,70-79y,AD,,,20.4912,5.4377,2.8718,2.4872,1.7619,edsd,AD,,M,,0.41321,4.5046,4.7265,0.844,8.6029,1.612,0.41278,3.1602,3.1512,50.9913,15.3233,213.7234,4.3879,4.3212,1.5439,2.1685,3.4707,7.5475,2.3589,3.2768,0.87269,6.9652,11.079,24.3171,7.4882,2.5305,4.8052,1.8187,16.8625,5.6361,4.4564,1.0912,2.5913,6.6877,14.5989,3.6547,4.8561,3.6564,1.5378,1.5332,4.6571,11.75,3.3717,2.5805,12.0075,2.497,2.6664,2.4695,13.3605,1.9438,3.7987,1.3802,13.5868,5.1668,8.9841,3.3474,11.0679,7.1802,7.8167,7.2509,4.3416,1.6201,4.8669,22,,AD,0.07252,,,,0.40465,4.3114,4.9269,0.86716,9.9077,1.954,0.39996,3.4724,3.2654,50.8088,15.2087,216.4777,4.2748,5.1278,1.6571,2.1498,3.9507,7.894,2.2824,3.3612,0.70921,6.3994,11.5046,21.2596,8.4174,2.6582,4.7472,1.7901,18.9174,5.0615,4.2999,0.97834,2.406,7.7374,13.918,2.9953,4.5219,3.7331,1.9195,1.5748,4.0838,11.2044,3.144,2.4717,10.3656,1.8926,2.6815,2.1285,11.8669,1.6779,3.7968,1.3078,13.8576,5.0951,8.3254,4.8341,11.1648,7.1236,7.2128,7.8609,4.3022,1.3729,4.7216,,,,,,,,,,,,,,,74,,,,109
+nG+FRA3T0AD014,1.3381,1.8403,,60-69y,AD,,,17.4303,4.0177,2.4605,2.3143,1.2391,edsd,AD,,F,,0.36188,4.239,3.7464,0.79791,7.6751,1.4833,0.35284,2.4872,2.448,47.8282,13.7333,176.2179,3.701,4.2103,1.5264,1.9031,3.1183,7.1181,2.0663,2.8738,0.83932,5.4665,11.0215,11.6998,7.1759,2.2672,4.4005,1.6391,17.3382,5.0155,3.8273,1.0918,2.5262,6.397,13.0084,2.6606,4.0075,3.4872,1.357,1.2974,3.7409,9.6203,3.1821,2.0181,10.3869,2.1774,2.3149,2.1223,10.7317,1.768,3.1336,1.2068,13.1121,5.0354,7.9938,3.2476,9.233,7.1332,6.3208,7.4622,3.7842,1.4548,4.4036,24,,AD,0.08828,,,,0.32403,3.753,3.7837,0.72891,8.84,1.6751,0.34531,2.5623,2.3838,48.0936,13.6201,178.6,3.4372,4.2242,1.428,1.7289,3.2689,7.2513,1.9686,2.8578,0.81467,5.6941,11.4824,11.83,7.5305,2.2316,4.4887,1.622,16.898,4.2296,3.6399,0.90211,2.3193,6.9498,14.0951,2.4467,4.0727,3.3103,1.4678,1.2905,3.405,9.4002,2.7602,2.0109,9.3074,1.9371,2.4304,1.8662,10.4116,1.7175,2.9851,1.0885,13.8663,4.8465,7.3672,3.4917,8.6712,7.3181,5.9675,7.8397,3.2533,1.4017,4.1745,,,,,,,,,,,,,,,68,,,,110
+nG+FRA3T0AD015,1.6893,1.4877,,70-79y,AD,,,16.2942,3.9997,2.1023,1.7952,1.7563,edsd,AD,,F,,0.3447,3.7673,3.7157,0.75437,7.1597,1.2021,0.35437,2.6393,2.17,37.8778,12.532,171.0676,3.468,4.021,1.4039,1.4596,2.8161,6.5727,1.748,2.8871,0.62636,5.6992,9.8519,16.8017,6.3769,1.8236,3.9912,1.391,15.3404,5.3329,3.3457,0.90098,1.9437,5.3863,10.5233,2.9214,3.8377,2.4859,1.095,1.2209,3.4843,8.2426,3.0236,2.0798,9.5329,2.0783,2.1661,2.1041,9.7869,1.6764,2.726,1.1387,10.9959,4.1712,7.0643,2.5859,8.6697,6.0329,5.4137,6.3351,2.8671,1.4742,4.1222,26,,AD,0.09045,,,,0.30776,3.7732,3.3778,0.74098,8.2861,1.4232,0.35774,3.0433,2.2307,37.6783,12.6679,176.0942,3.0001,4.5105,1.4652,1.4502,3.0474,6.6938,1.7257,3.0429,0.55733,5.9747,10.4471,15.7665,6.9459,1.7141,3.7918,1.4172,15.3894,4.272,3.2402,0.89621,2.0449,6.1474,12.1516,2.6173,3.7986,2.5538,1.031,1.2018,3.133,8.3131,2.8178,2.0607,8.2392,1.5943,1.9813,1.8371,10.0125,1.4816,2.6102,1.0735,10.918,4.4146,5.9932,3.6442,7.1767,6.6898,5.0212,6.8173,2.6693,1.2205,3.8491,,,,,,,,,,,,,,,74,,,,111
+nG+FRA3T0AD016,1.9503,1.6315,,50-59y,AD,,,17.4876,4.184,2.4456,2.0322,1.7585,edsd,AD,,F,,0.39595,4.4928,4.3307,0.68886,7.2396,1.5665,0.35027,3.8733,2.7872,44.287,13.7074,208.9042,3.6637,4.612,1.3399,1.9938,3.7043,6.5236,2.0515,2.7239,1.1837,5.6647,9.542,30.4423,7.4715,2.5044,4.1199,1.7076,17.2443,5.0582,3.9639,1.0718,2.4783,7.1206,10.4941,3.6812,3.9225,3.3582,1.5529,1.6259,3.4752,8.656,2.8487,2.4479,10.9801,2.008,2.3079,2.2782,12.094,1.9435,3.4661,1.2017,13.303,5.2349,7.7904,3.8482,9.1201,5.9119,7.3421,6.6926,4.2425,1.6609,4.8619,8,,AD,0.09669,,,,0.3587,4.2473,4.3829,0.65043,7.7391,1.7313,0.35188,3.4087,2.987,44.5851,13.5453,209.5752,3.4638,4.6551,1.2911,2.0685,3.8561,6.5531,2.0307,2.8017,1.5235,6.2322,9.3071,26.0293,7.3975,2.359,4.0506,1.7235,17.284,4.5705,3.6926,0.98132,2.4536,7.3403,10.2872,2.9425,4.0248,3.5646,1.6254,1.6206,3.1812,8.4179,2.5279,2.5552,9.3957,1.9324,2.1004,2.1412,11.3694,1.5779,3.4499,1.1297,13.344,4.8591,6.0292,4.1539,8.3438,5.7178,6.8938,6.9438,3.9717,1.3417,4.6057,,,,,,,,,,,,,,,57,,,,112
+nG+FRA3T0HC001,2.1132,1.9681,,60-69y,CN,,,20.4893,5.3326,2.7782,2.245,2.2262,edsd,CN,,M,,0.52506,5.1581,5.1481,1.1002,10.0604,1.748,0.47356,5.3609,3.5903,51.6314,15.5338,276.5258,4.4032,5.3388,1.9971,2.1393,4.3146,8.5935,2.5662,3.8846,0.6361,8.9127,12.7368,22.3935,9.5624,2.6402,5.5615,2.0628,20.5271,7.2785,4.6246,1.3386,3.0938,8.0969,15.2108,4.9376,5.784,3.6049,1.5735,1.7696,5.5126,12.082,3.9265,3.1971,11.405,3.0595,2.8383,3.3079,13.7474,2.8636,4.7365,1.4924,16.1344,6.0188,9.7647,3.8709,9.5201,9.1853,9.0064,9.1223,4.4044,2.5225,5.7108,28,,,0.10665,,,,0.4732,4.7617,4.7838,1.1379,11.7556,1.9503,0.48151,5.0955,3.8635,52.467,15.5148,284.0418,4.7858,5.917,2.0749,2.0709,4.4508,8.6704,2.4802,4.14,0.68332,8.3795,13.7261,23.08,9.7767,2.4969,5.3636,2.0591,21.2222,5.9286,4.3857,1.1923,3.018,9.0757,16.1292,3.7915,4.98,3.5138,1.7436,1.8269,4.6583,12.5596,3.4242,3.2245,11.3381,2.8213,2.6649,2.9434,14.0228,2.6404,4.7141,1.4588,15.1314,5.8192,8.6646,4.6761,10.8951,8.8789,8.4121,9.4681,4.1276,2.2885,5.3825,,,,,,,,,,,,,,,67,,,,113
+nG+FRA3T0HC002,1.6363,1.6911,,70-79y,CN,,,17.1183,4.3842,2.7688,2.236,1.2497,edsd,CN,,M,,0.53429,5.6897,4.4546,0.94756,10.2165,1.8907,0.45814,3.3525,3.3032,47.8952,13.6731,224.0768,4.0338,5.4337,1.8669,2.1407,4.036,7.887,2.4946,3.4613,0.42444,7.8866,12.3988,13.599,8.1047,2.9092,5.44,2.3946,21.9812,6.7797,4.7621,1.542,3.056,8.5192,15.5126,4.1582,4.9521,3.8581,1.8436,1.5403,5.2682,12.2125,3.5392,2.2288,11.5214,2.4889,2.9659,2.2369,13.8755,2.0426,3.8377,1.4972,14.6418,6.1272,10.0223,4.3502,10.6501,8.075,8.1197,8.5049,4.8095,1.5647,4.8479,30,,,0.08568,,,,0.46431,5.063,4.2667,0.9569,11.4018,2.3092,0.44342,3.6497,3.3473,47.704,13.3911,231.3293,4.2448,5.35,1.8996,2.2834,4.355,8.1022,2.3976,3.7933,0.53831,7.611,13.5149,11.4171,8.7852,2.739,5.5455,2.1863,21.001,5.6053,4.6467,1.2712,2.8519,9.3424,16.6346,3.5489,4.965,4.2568,1.8759,1.5901,4.7711,11.9513,3.3943,2.2818,10.3739,2.0493,2.7195,2.2111,13.7576,1.8426,3.6044,1.3847,16.4919,6.1193,9.1852,5.1851,10.9754,8.4167,7.7315,9.1299,4.49,1.5081,4.6513,,,,,,,,,,,,,,,71,,,,114
+nG+FRA3T0HC003,0.95053,1.579,,70-79y,CN,,,17.957,4.6249,2.5288,2.0903,1.2298,edsd,CN,,F,,0.46487,4.4999,4.1215,0.88139,9.1769,1.6284,0.3778,3.0648,3.248,44.8168,13.6165,206.9141,3.786,4.243,1.6892,1.9795,3.6657,7.6027,2.1666,3.107,0.32997,6.1849,10.5925,13.4527,7.0691,2.4862,4.5103,1.8106,18.46,6.771,3.9634,0.99787,2.214,7.1136,12.5885,3.3288,4.1406,3.6286,1.4376,1.6677,3.9812,9.6675,3.1961,2.4382,11.0461,2.0983,2.3237,2.2296,12.5788,1.9069,3.8439,1.1725,15.3711,5.1906,7.8033,3.4955,8.9908,7.3149,7.4816,7.75,4.0024,1.7051,4.7647,30,,,0.07566,,,,0.42851,4.143,3.9905,0.86149,9.879,1.9261,0.37809,2.9798,3.2281,43.8728,13.6405,209.5972,3.8863,4.2648,1.6926,1.9582,3.9158,7.562,2.1738,3.213,0.36068,6.1998,11.4472,11.1323,7.3121,2.332,4.3356,1.7718,19.4533,5.0812,3.884,0.82415,2.0343,7.6256,13.523,2.649,3.927,3.6778,1.5771,1.6529,3.5927,9.7507,2.902,2.4224,9.5323,2.1493,2.3824,1.9649,12.1021,1.8903,3.7019,1.1578,14.4424,5.3059,7.2777,3.6954,9.2834,7.1344,7.202,8.0704,3.6137,1.6034,4.4222,,,,,,,,,,,,,,,74,,,,115
+nG+FRA3T0HC004,1.9779,1.548,,70-79y,CN,,,18.1118,5.1974,2.5579,2.2385,1.5955,edsd,CN,,F,,0.40791,4.3151,4.8572,0.83459,8.8339,1.528,0.40247,3.4179,3.0724,48.6779,15.1504,197.2042,4.1455,4.6021,1.5657,2.0778,3.522,7.2563,2.0757,3.2196,1.6195,6.362,11.49,35.4198,8.2913,2.4256,4.0685,1.675,18.4001,6.0055,3.9981,1.0258,2.3144,6.1987,15.1053,3.7758,4.2177,2.9677,1.6584,1.5064,4.6273,10.0353,3.4943,2.5069,11.1024,2.275,2.6582,2.4032,12.8509,1.8746,3.5655,1.2961,13.4857,4.5847,7.2811,3.4659,9.3063,7.1874,7.1054,7.923,3.9689,1.7795,4.6688,30,,,0.08959,,,,0.41783,4.1324,4.594,0.91033,9.7225,1.9582,0.44292,3.4265,3.4126,48.8646,14.9187,203.3824,4.185,4.3475,1.7155,2.0395,4.1246,7.1827,2.1301,3.6559,1.0439,7.0621,11.7117,24.6727,8.5329,2.5564,4.3623,1.7351,19.6606,5.6384,4.1426,1.0478,2.4677,7.4436,14.4703,3.4728,4.3736,3.0754,1.6757,1.5391,4.3813,10.6211,3.0398,2.5671,9.0305,2.3147,2.703,2.2326,12.2499,1.9978,3.5275,1.2918,13.0801,4.781,7.504,4.3471,9.0685,7.3692,7.0836,8.1907,3.5851,1.6433,4.5249,,,,,,,,,,,,,,,75,,,,116
+nG+FRA3T0HC005,1.3139,1.4875,,70-79y,CN,,,17.1079,4.1274,2.4679,2.0434,1.6407,edsd,CN,,F,,0.45716,5.2849,4.7371,0.94991,9.6442,1.7987,0.45008,2.9772,3.6104,44.7038,13.1926,226.2861,4.4052,4.775,1.8276,1.9631,4.2113,7.8381,2.6111,3.4656,0.47239,7.5284,12.2219,20.6963,8.1228,2.9036,5.4811,2.1509,22.7106,7.1033,4.7475,1.1499,2.8305,7.8866,16.1575,4.0413,4.7293,3.5426,1.8138,1.5762,4.7365,11.4892,3.5234,2.5969,10.9396,2.6442,3.0914,2.5274,13.3365,2.0633,3.981,1.3974,19.1718,5.9494,8.9854,3.9205,11.599,8.349,8.1564,8.1597,4.389,1.6827,4.9747,28,,,0.10549,,,,0.46511,4.87,4.7665,0.93811,10.3061,2.2097,0.46748,3.3355,3.9117,44.6183,13.2665,233.3043,4.2875,5.4003,1.9036,2.0658,5.2785,7.7757,2.8108,3.6277,0.43043,7.7853,12.3394,19.7917,8.343,2.8403,5.5306,2.34,22.9942,6.0566,5.0028,1.0876,2.6201,9.4258,16.5637,3.2782,4.5476,3.7191,1.7728,1.6395,4.2346,11.3331,3.218,2.588,10.1299,2.4892,2.9933,2.493,13.1199,2.172,4.0015,1.4417,17.9928,5.9048,7.6392,4.9666,11.3768,8.1598,7.7925,8.9991,3.9384,1.746,4.7493,,,,,,,,,,,,,,,72,,,,117
+nG+FRA3T0HC006,1.3794,1.9998,,70-79y,CN,,,16.6992,4.8087,2.6814,2.3313,1.6499,edsd,CN,,F,,0.42626,4.7927,4.338,0.86239,9.2355,1.6082,0.41184,2.6916,2.7854,50.411,13.3627,199.762,4.0141,3.9624,1.791,1.9304,3.6374,7.8124,2.2498,3.0119,0.44981,5.8485,11.2932,16.1854,7.4214,2.4876,4.2942,1.9453,18.181,6.1279,4.2551,0.9641,2.4824,7.4276,13.9282,3.06,4.3462,2.9964,1.6281,1.3671,4.2673,10.4832,3.3524,2.2356,9.8837,2.3061,2.7123,2.1077,10.8834,1.9873,3.4285,1.3238,13.2984,5.4629,8.8281,3.1164,10.611,7.437,6.5321,8.0398,3.7462,1.3646,4.3026,29,,,0.0892,,,,0.39757,4.4918,4.2669,0.88136,10.9498,1.828,0.41984,3.0125,2.8717,50.5497,12.9595,209.5672,3.767,4.1802,1.7874,1.8845,3.861,8.289,2.2946,3.1976,0.40751,6.2753,12.1871,13.3926,7.8756,2.297,4.3547,1.8996,17.2067,5.0312,4.0994,0.99977,2.4443,8.0611,14.1504,2.6737,4.2176,3.2923,1.5618,1.3907,4.0065,10.2036,3.0955,2.4675,8.9747,2.0924,2.5053,2.0151,11.478,1.62,3.5074,1.3271,14.4276,5.4061,7.7449,3.508,9.8769,6.8596,6.3221,8.0866,3.4242,1.3658,4.1629,,,,,,,,,,,,,,,71,,,,118
+nG+FRA3T0HC007,1.8862,1.9084,,70-79y,CN,,,19.2653,4.7194,2.9623,2.2473,1.3765,edsd,CN,,F,,0.44238,4.5134,4.0315,0.82359,8.9329,1.5592,0.38849,3.3004,2.8851,49.1911,15.3178,193.8382,3.4167,4.6986,1.6762,1.8645,3.4043,7.0892,2.2668,3.1218,0.44524,6.3053,10.8432,13.8356,7.2281,2.3401,4.3498,1.8114,18.9638,5.8478,4.1118,0.9117,2.2202,6.6417,13.1896,3.4129,4.1233,3.659,1.345,1.3426,4.3404,10.6747,3.097,2.0953,10.9196,1.8289,2.3806,2.1006,11.8385,1.7338,3.5956,1.2655,13.027,5.243,8.078,3.4559,9.8233,7.1782,7.113,7.9784,3.5219,1.2297,4.7031,29,,,0.08608,,,,0.40957,3.8621,3.8848,0.82799,9.3369,1.8131,0.40256,3.3673,3.0659,48.3012,15.0437,200.671,3.5113,4.7726,1.6892,1.886,3.7113,7.3746,2.1971,3.2932,0.44145,6.5563,11.4184,14.5741,7.9878,2.2737,4.3328,1.8054,19.0404,4.6266,3.9463,0.97807,2.2511,7.7153,13.8714,3.0621,4.203,3.6326,1.4333,1.3961,3.911,10.7119,2.9483,2.0891,9.7397,1.7577,2.2138,1.8433,12.707,1.6013,3.5051,1.2809,13.451,5.2265,7.763,4.2653,9.3057,7.0517,6.8712,7.8439,3.4141,1.1396,4.5012,,,,,,,,,,,,,,,75,,,,119
+nG+FRA3T0HC008,1.0122,1.759,,50-59y,CN,,,20.2776,4.5484,3.0924,2.4251,0.98803,edsd,CN,,F,,0.54389,5.5892,4.8188,1.0179,10.7841,2.0028,0.45912,2.9988,3.546,55.7769,17.0034,245.919,4.4564,5.172,1.8927,2.1736,4.3341,8.4993,2.6585,3.9457,0.51123,7.4495,12.9207,17.1136,8.4522,3.0911,5.5629,2.2307,23.2876,7.0693,4.9523,1.2433,3.0236,8.0971,16.3302,4.2425,4.9123,3.7082,1.8557,1.7725,4.7456,12.1484,3.5386,2.5772,13.2572,2.4931,3.0828,2.704,14.834,2.1184,4.5662,1.3833,15.8824,5.8355,10.0553,4.8233,11.1593,8.9813,8.5207,9.0765,4.5557,1.6449,5.594,29,,,0.09225,,,,0.49416,4.5916,4.63,1.0112,12.0024,2.3199,0.46999,2.9026,3.5937,56.5683,16.4498,255.4177,4.7028,5.2958,1.948,2.2817,4.4622,8.7955,2.6917,3.9562,0.35911,7.6287,13.6542,8.8972,8.6739,2.7846,5.5418,2.1883,22.9857,6.1008,4.9389,1.2861,2.9956,9.196,17.6853,3.2032,4.8411,4.5249,1.7702,1.8024,4.667,11.9382,3.3891,2.6035,11.1595,2.6032,2.8536,2.3879,14.1394,2.3606,4.5594,1.4563,15.8807,5.6371,9.6912,4.7519,12.0364,9.9739,8.2686,9.7771,4.4615,1.7409,5.3058,,,,,,,,,,,,,,,55,,,,120
+nG+FRE3T0AD001,1.3569,1.4541,,+80y,AD,,,16.2816,4.4087,2.2728,2.0776,1.5796,edsd,AD,,F,,0.37573,4.44,3.9464,0.70779,9.0757,1.3607,0.34592,3.0209,2.7712,42.5625,13.538,200.344,3.7722,4.0704,1.332,1.7861,3.4422,6.4232,1.977,2.6341,0.65246,5.9482,9.954,21.2815,6.8315,2.1332,4.3926,1.6954,16.3922,5.7666,3.6137,1.1926,2.7371,6.9862,12.5638,3.0741,3.8858,2.9593,1.4269,1.5355,4.0047,9.7373,2.8421,2.2421,11.5958,2.3988,2.2402,2.2385,12.5391,1.8226,3.4035,1.1167,12.9276,5.1173,8.9842,3.6472,10.1939,6.7252,6.6608,6.5269,3.4937,1.5738,4.3867,23,,AD,0.07065,,,,0.34891,3.9597,3.8783,0.75455,8.7598,1.5817,0.36027,3.2457,2.8002,42.8936,13.2933,203.3559,3.8208,4.4357,1.4847,1.9098,3.3854,6.6948,1.7995,2.9715,0.6528,6.3686,10.5139,18.2873,7.7153,2.0189,4.2421,1.615,15.9353,4.5744,3.3523,1.0759,2.4197,7.6216,12.1609,2.6754,3.9359,3.3208,1.4235,1.5593,3.7861,10.0699,2.7173,2.2887,11.0103,2.2136,2.0698,1.9851,12.1095,1.7931,3.4324,1.0843,14.4863,5.1819,7.7824,4.1438,11.0618,6.8175,6.53,6.7108,3.5091,1.4394,4.1826,,,,,,,,,,,,,,,81,,,,121
+nG+FRE3T0AD002,3.4425,3.8623,,70-79y,AD,,,17.356,4.7028,2.4891,2.036,2.7462,edsd,AD,,F,,0.39382,4.574,4.3491,0.89655,9.2236,1.4703,0.40538,3.7261,3.2433,48.3552,12.8583,215.3137,4.0027,5.0715,1.6223,1.9798,3.2617,7.9761,2.0575,3.6642,1.7961,6.8617,11.5883,42.465,8.0332,2.4183,4.9177,1.7141,19.2203,5.956,3.9773,1.2392,2.6437,6.7709,14.8506,3.4538,4.5282,3.6112,1.5727,1.4918,5.0089,11.4222,3.5478,2.4628,12.4028,2.4206,2.563,2.3694,13.31,2.0979,3.7797,1.274,15.7859,5.4965,9.169,3.7762,11.8119,7.5387,7.2372,7.5986,3.9927,1.6562,4.9283,26,,AD,0.06578,,,,0.35912,4.0209,3.991,0.89501,10.1467,1.7307,0.39964,3.4933,2.9093,48.4185,12.6366,214.4218,3.9403,5.2421,1.5353,1.9529,3.8508,7.6698,1.9857,3.8025,2.1753,6.9397,11.7436,37.355,8.9492,2.184,4.7728,1.7781,19.7636,5.3462,3.8657,1.2995,2.906,7.4036,14.0138,3.0831,4.7305,3.5356,1.4118,1.5338,4.6508,11.967,3.1888,2.3796,12.0861,2.3616,2.3487,2.0678,12.5464,1.9259,3.4455,1.2897,14.6258,5.0638,7.5894,4.4703,12.0503,6.9565,7.4431,7.1298,3.5707,1.5459,4.615,,,,,,,,,,,,,,,72,,,,122
+nG+FRE3T0AD003,1.7016,2.1094,,60-69y,AD,,,17.5411,4.3606,2.4777,1.9311,1.6899,edsd,AD,,F,,0.47758,4.8934,4.0899,0.73306,8.5464,1.3478,0.3835,3.1543,3.1874,45.438,14.6543,207.1735,3.9203,3.8777,1.5054,1.8075,3.2323,7.177,1.9573,2.8389,0.93272,5.9451,10.1935,23.0199,7.0396,2.1462,4.8665,1.7413,16.5266,5.4893,3.6805,1.3496,2.9639,6.6826,11.6401,3.2421,3.9601,3.2733,1.3588,1.7194,3.9871,9.4352,2.826,2.5616,11.772,2.2891,2.1968,2.3764,11.9836,1.722,3.8256,1.2048,12.9747,4.9853,7.2648,2.8841,9.3275,6.2354,7.1391,6.4156,3.3889,1.493,4.9142,24,,AD,0.07484,,,,0.4353,4.5457,3.7521,0.74044,9.6025,1.6038,0.39259,3.6757,3.1525,45.3571,14.1082,212.8049,3.5842,4.8648,1.5,1.8373,3.4999,7.3078,2.01,3.0485,0.78669,6.9891,10.659,18.3746,7.8925,2.0702,4.8273,1.7338,16.0452,5.6475,3.6362,1.3629,2.9837,7.7435,12.6364,3.0955,4.1912,3.2045,1.4456,1.7131,3.5234,9.6544,2.615,2.3047,10.3775,2.0627,2.1154,1.9189,12.4675,1.5149,3.6721,1.1692,13.1704,5.269,7.1656,3.8405,9.1956,6.4804,7.1146,6.3412,3.4478,1.3266,4.6544,,,,,,,,,,,,,,,63,,,,123
+nG+FRE3T0AD004,1.5766,1.9146,,70-79y,AD,,,16.6399,4.3864,2.5807,2.1362,1.6859,edsd,AD,,F,,0.37961,4.1649,4.1858,0.81119,8.6007,1.4543,0.36996,3.2663,2.7192,44.6837,12.5481,189.8087,4.2323,4.5411,1.6194,1.9523,3.23,6.7179,2.0713,3.0773,0.70164,5.9031,9.5404,22.3572,7.1502,2.2312,4.4695,1.6175,17.575,5.3515,3.9735,1.2308,2.7815,6.6387,11.413,2.833,4.0192,3.1111,1.4734,1.3376,4.268,10.1569,3.1626,2.3505,11.6109,2.4107,2.5075,2.176,12.7961,2.0656,3.4071,1.192,15.8737,5.5213,8.5889,3.1517,8.7986,6.7968,6.0523,7.062,3.3805,1.5042,4.3083,25,,AD,0.08965,,,,0.32741,3.9133,3.6596,0.84635,10.0289,1.578,0.36185,3.5335,2.7801,44.649,12.1553,191.845,3.9964,4.7544,1.7124,2.033,3.309,6.8021,1.978,3.3327,0.80356,5.5175,10.4172,17.4759,8.0408,2.0356,4.6138,1.585,17.2194,4.9535,3.6635,1.25,2.587,6.932,13.5824,2.7084,3.9331,3.7043,1.4797,1.3569,4.0349,10.3351,2.9635,2.1187,10.3066,2.1558,2.2235,1.8018,12.8908,1.8433,3.2018,1.1625,14.8581,5.2378,7.6464,4.0133,9.0965,6.787,6.1684,7.4404,3.372,1.3079,4.0467,,,,,,,,,,,,,,,73,,,,124
+nG+FRE3T0AD005,1.6407,2.2936,,60-69y,AD,,,18.5245,4.993,2.2641,2.231,1.2296,edsd,AD,,F,,0.37021,4.2455,3.9336,0.51345,8.0306,1.4411,0.32261,2.7063,2.9211,44.7344,16.2466,224.5786,3.8489,3.9512,1.1591,1.8953,3.2963,6.4576,1.9337,2.4249,0.68775,5.957,9.242,13.8935,6.8462,2.1942,4.3926,1.751,15.7424,4.8197,3.73,1.0295,2.2048,6.5707,11.3686,2.8547,3.8519,2.9985,1.3574,1.5701,3.9986,9.845,2.7031,2.1517,11.246,2.0528,2.2696,2.1134,12.0998,1.5331,3.5981,1.0877,14.3766,4.7219,7.5768,2.934,9.0935,6.0233,6.3276,6.2477,3.4426,1.2385,4.7221,23,,AD,0.079,,,,0.34156,3.6388,3.7453,0.58763,9.1413,1.7254,0.34911,3.2626,3.014,46.1595,15.2028,231.2623,3.796,4.4286,1.3618,2.0643,3.3536,7.2561,1.9012,2.7499,0.55739,6.401,10.4698,10.5676,7.8459,2.2238,4.3383,1.6397,17.9403,4.9671,3.6362,1.1773,2.44,7.3004,12.5579,3.0239,4.2869,3.356,1.535,1.6223,3.8402,9.8443,2.7068,2.1214,9.9235,1.859,2.2985,1.8056,11.574,1.5466,3.6117,1.0297,12.2432,5.016,6.9067,4.0843,9.6188,6.4901,6.345,6.6504,3.5284,1.204,4.4829,,,,,,,,,,,,,,,67,,,,125
+nG+FRE3T0AD006,1.7486,2.435,,+80y,AD,,,14.8413,4.2629,2.5672,2.0045,1.9086,edsd,AD,,M,,0.34872,4.3685,4.1057,0.76688,7.6577,1.3681,0.34626,2.7653,2.9035,43.8841,14.0604,192.4498,3.8943,4.1327,1.4779,1.7388,3.3803,6.6884,1.6651,3.1014,0.79444,5.6966,9.5801,24.7165,7.2067,2.117,4.6193,1.5163,16.0015,5.1658,3.3774,0.99122,2.3515,6.7388,10.9923,3.0627,3.9307,2.7283,1.3473,1.3392,3.8647,9.4853,2.9646,2.3329,10.6611,2.5429,2.1009,2.0593,10.8424,2.1259,3.5577,1.1667,14.2373,5.1859,8.0712,3.0462,8.8561,6.0375,5.8612,6.7133,3.3588,1.5795,4.2762,22,,AD,0.08137,,,,0.29851,4.1125,4.0903,0.68649,8.9425,1.5162,0.343,3.094,2.7353,42.5346,12.794,190.2468,3.9223,4.2373,1.4199,1.8795,3.3102,6.8535,1.6777,2.9616,0.96452,5.7627,10.1136,21.5353,7.5987,2.0562,4.8651,1.4788,15.914,4.561,3.1373,1.0555,2.3142,7.1466,11.2172,3.0113,4.0478,3.1849,1.5467,1.2967,3.6139,9.6531,2.66,2.3581,9.1766,2.3783,2.1495,2.0316,11.1654,1.7727,3.3468,1.0767,13.1769,4.9319,7.2121,3.6644,9.0863,6.8639,5.7202,6.7344,3.2089,1.5388,3.9091,,,,,,,,,,,,,,,81,,,,126
+nG+FRE3T0AD007,1.698,2.1247,,70-79y,AD,,,16.3111,4.4765,2.2029,2.1165,2.1458,edsd,AD,,F,,0.32487,4.1485,4.1797,0.66117,8.7436,1.4454,0.35638,2.723,2.9367,43.1641,12.9305,185.9035,4.3633,4.1151,1.2706,1.953,3.177,6.3211,1.8926,2.783,1.1206,5.9063,9.2592,28.6518,6.9457,2.2977,4.0206,1.6211,17.2508,5.8156,3.5377,0.94137,2.1904,6.2958,12.5696,3.2245,3.9945,3.4619,1.4884,1.5737,3.8911,9.5133,2.8399,2.4182,10.3831,2.2847,2.3301,2.3094,10.8389,1.7874,3.5172,1.192,12.2416,4.592,7.8309,3.0737,9.065,6.4641,6.5655,6.5138,3.6489,1.5557,4.5116,25,,AD,0.08875,,,,0.29664,4.1811,4.1034,0.69047,9.1366,1.6276,0.36174,3.113,2.7154,41.8698,12.5059,190.6644,4.168,4.1589,1.3657,1.8374,3.541,6.1857,1.7773,3.0156,1.1458,6.2164,9.9723,25.6969,7.972,2.0819,4.1792,1.6024,17.7966,5.347,3.5262,0.89224,2.0523,6.7355,13.0178,2.7901,3.9425,3.1999,1.4944,1.6159,3.4305,8.8048,2.6483,2.4777,9.5891,2.2698,2.2374,2.2014,10.8625,1.7559,3.5762,1.1423,12.34,4.6414,6.5719,3.837,8.6881,6.5912,6.4671,6.7577,3.1866,1.5415,4.266,,,,,,,,,,,,,,,79,,,,127
+nG+FRE3T0AD008,2.2484,2.1181,,70-79y,AD,,,19.1081,4.3915,2.5241,2.0673,1.8735,edsd,AD,,M,,0.45101,5.052,4.6694,0.69169,8.2678,1.4355,0.40743,3.5396,3.1574,44.7231,15.1152,256.1073,4.4919,5.2259,1.4455,1.9459,3.6101,7.029,2.0286,2.8594,1.4488,6.2666,11.1327,31.0712,7.9692,2.162,4.7918,1.777,18.6366,6.1555,3.858,1.4731,3.2439,7.5516,12.9034,3.7458,4.2157,3.4449,1.4242,1.8616,4.6305,11.478,3.0142,2.7233,12.5624,2.5835,2.3577,2.2754,13.6688,2.0494,4.4528,1.3888,14.7282,5.9652,8.519,4.0874,10.3864,6.3939,7.3807,7.0149,3.3935,1.5981,5.1026,19,,AD,0.07845,,,,0.39908,4.183,4.5397,0.63104,11.0488,1.8335,0.40448,3.6878,3.122,44.3483,14.5408,260.1334,4.1936,5.3855,1.3511,2.0242,3.9526,7.2319,2.1739,2.8547,1.1272,6.6404,11.5377,31.0526,8.3146,2.2496,4.3896,1.9705,18.9489,4.9903,3.9278,1.154,3.0377,8.2049,13.8825,3.0677,4.5359,3.4565,1.5978,1.9091,3.9306,11.9621,2.6985,2.7146,11.0637,2.5684,2.3726,2.1531,12.6305,2.0737,4.3307,1.3882,14.8922,6.0849,8.0187,4.013,10.7216,6.9062,7.4658,6.5625,3.46,1.5167,4.7461,,,,,,,,,,,,,,,74,,,,128
+nG+FRE3T0AD009,1.3666,1.6793,,+80y,AD,,,14.4818,3.905,2.0068,1.7938,1.1402,edsd,AD,,F,,0.32098,3.3433,3.5846,0.63575,7.1684,1.1383,0.29277,2.6481,2.3864,36.8488,11.3255,161.6748,3.3895,3.2605,1.1379,1.7144,2.5766,5.5762,1.48,2.4226,0.90361,4.7187,7.6442,17.7824,6.0284,1.8256,3.5202,1.2859,13.8017,4.6762,2.9727,0.8312,1.689,5.038,9.1824,2.7223,3.3096,3.3025,1.2056,1.2801,3.2435,7.4883,2.373,1.9173,9.5492,1.9224,1.9443,1.7069,10.304,1.6225,3.1734,0.92855,10.6277,3.6356,7.4277,2.7854,8.589,5.1665,5.8002,5.0815,3.0953,1.1811,3.9123,17,,AD,0.0668,,,,0.29191,2.7429,3.3055,0.66914,7.3412,1.2661,0.30458,2.8613,2.5523,36.7519,10.8299,166.2224,3.4983,3.7902,1.2152,1.6911,2.737,5.5859,1.5472,2.7299,0.88682,4.8365,8.1992,16.123,6.3936,1.6305,3.3912,1.1938,14.2998,3.8871,3.0279,0.86393,1.8727,5.4087,10.4488,2.4945,3.2993,3.2271,1.1677,1.3705,3.0514,7.7781,2.3174,1.8902,8.3544,2.0738,1.8214,1.5833,10.2695,1.6751,3.056,0.93562,11.5543,3.9413,6.3379,3.9022,8.5553,5.9204,5.8785,5.7073,2.6569,1.2277,3.7745,,,,,,,,,,,,,,,85,,,,129
+nG+FRE3T0AD010,2.1657,2.1866,,70-79y,AD,,,16.1442,4.7659,2.688,2.1871,2.3102,edsd,AD,,F,,0.34427,4.6591,3.6309,0.59923,8.549,1.4029,0.34375,3.2808,2.5637,43.8058,12.4512,180.3862,3.7584,4.1712,1.0917,1.7489,3.169,6.6823,1.9491,2.443,1.3391,6.2899,10.1434,31.1846,7.1467,2.0668,4.8491,1.5863,17.2707,5.8583,3.7484,0.98415,2.2819,6.6809,12.0241,3.2256,3.9724,2.6684,1.1968,1.3663,3.9165,10.0476,2.629,2.2243,10.1044,2.1603,2.0887,2.0811,11.7325,1.599,3.1216,1.2614,14.0778,5.033,8.3501,3.1887,9.504,6.0762,5.9962,6.2909,3.1845,1.3749,4.377,24,,AD,0.08676,,,,0.3152,4.6469,3.6051,0.6043,9.5403,1.5598,0.34291,3.2748,2.5881,44.2379,12.0541,182.2084,3.6569,4.5113,1.1621,1.7784,3.6101,7.305,1.9337,2.6271,1.4125,6.5168,10.678,23.1492,7.3677,2.0054,5.1604,1.5572,17.6547,5.5607,3.5282,0.93469,2.2221,6.9852,12.4151,2.9628,3.8176,2.8835,1.4614,1.3605,3.7694,10.3416,2.5347,2.2618,8.8901,1.8668,1.9902,1.9457,11.0228,1.5615,2.9122,1.2437,13.374,4.9027,6.9255,4.0998,9.3095,6.3782,6.132,6.2905,3.198,1.3862,4.0971,,,,,,,,,,,,,,,77,,,,130
+nG+FRE3T0HC001,0.76151,1.714,,-50y,CN,,,16.4958,4.4512,2.5609,2.0513,0.78724,edsd,CN,,F,,0.43031,4.9085,4.2371,0.90897,9.6717,1.772,0.4115,2.7666,2.9504,47.0264,13.9499,225.0915,3.7567,4.6438,1.7206,1.9378,3.2088,8.0246,2.1924,3.1589,0.36325,6.7684,12.0056,6.976,7.5276,2.5783,4.8754,2.0486,18.56,6.459,4.297,1.1127,2.751,7.2737,14.406,3.0137,4.4651,3.1375,1.5683,1.5147,4.661,11.6825,3.1146,2.2111,11.4652,2.1089,2.8273,2.3153,12.7629,2.0263,3.4616,1.2343,13.7179,5.7578,9.7342,3.7982,11.6669,7.8476,7.2325,8.234,3.6023,1.4268,4.3505,30,,,0.07644,,,,0.41034,3.8597,4.0171,0.88749,10.5965,1.9203,0.40852,3.0513,2.9284,46.8232,13.4604,224.9191,3.878,4.5726,1.7915,2.0866,3.5908,8.2067,2.1785,3.3244,0.37858,7.2009,12.0574,8.5651,8.2483,2.4457,4.7548,1.9531,19.1158,5.9148,4.0221,0.88561,2.678,8.2108,14.6283,3.03,4.5684,3.6908,1.7088,1.5406,4.4753,10.997,2.9357,2.1827,10.1761,2.0026,2.6022,2.0447,12.7529,1.7387,3.315,1.1702,13.6528,5.3927,8.3342,4.3501,11.2587,7.5306,7.1042,8.1153,3.7315,1.3442,4.1703,,,,,,,,,,,,,,,38,,,,131
+nG+FRE3T0HC002,1.172,1.4427,,-50y,CN,,,15.3848,4.0297,2.3422,2.0209,1.2018,edsd,CN,,F,,0.41591,4.0697,4.3721,0.77227,7.956,1.3703,0.35475,2.7737,3.5369,42.8081,12.1993,181.6168,3.6323,3.88,1.4891,1.8169,3.0064,6.4863,1.8333,2.7669,0.47194,5.7087,9.8514,16.4888,6.2929,2.0685,3.9836,1.6054,16.0011,5.1795,3.5545,0.93037,2.3415,6.1492,11.9519,2.8136,3.5194,2.7098,1.3442,1.403,3.9111,9.9161,2.7921,2.1704,10.309,2.0249,2.3422,2.1727,12.061,1.8002,4.0526,1.0952,12.9869,5.045,7.0518,3.2115,8.6635,6.3098,6.4197,6.6487,3.4622,1.4033,4.1494,28,,,0.06871,,,,0.4108,3.5552,3.8215,0.77349,9.1593,1.6786,0.38153,2.7482,3.5155,42.281,11.9307,183.8891,3.6925,4.3337,1.5769,1.8392,3.4529,6.7912,1.795,2.8341,0.33228,5.6825,10.2643,13.2144,7.017,2.1926,4.2693,1.5741,16.6427,4.1007,3.699,0.84444,2.5492,7.1218,12.1521,2.2547,3.8391,3.0267,1.4578,1.4317,3.5991,9.9622,2.5645,2.1607,8.7994,2.3633,2.3959,1.9582,11.0117,1.8677,3.5571,1.1006,13.4779,4.9902,7.2698,3.6559,8.8258,6.4777,6.2583,6.6768,3.4372,1.392,3.8723,,,,,,,,,,,,,,,38,,,,132
+nG+FRE3T0HC003,1.7123,1.8267,,-50y,CN,,,17.815,5.657,2.693,2.45,1.7175,edsd,CN,,M,,0.44027,4.6323,4.3458,0.90065,9.5358,1.6272,0.41983,2.7219,3.1105,47.5675,16.1514,213.6856,3.8802,4.3846,1.8712,1.8184,3.2519,8.1054,1.9731,3.2413,0.54061,6.6271,11.6856,12.0729,8.0601,2.1914,5.3289,1.8184,17.1771,5.3035,3.8401,0.95972,2.3545,6.6368,13.6328,3.1821,4.8532,2.9829,1.2236,1.6215,4.9012,11.2007,3.4163,2.2301,11.0757,2.1615,2.4285,2.0657,12.0331,1.7509,4.4826,1.1901,13.2544,4.9962,8.5608,3.3885,9.8845,6.8695,6.9055,7.7538,3.187,1.3469,4.8273,30,,,0.07571,,,,0.39299,3.9954,3.9787,0.86381,9.9023,1.6716,0.39329,3.159,3.1739,47.289,15.1125,211.7753,3.4206,5.028,1.7675,1.6694,3.547,7.6932,1.9173,3.4143,0.6202,6.7827,11.9538,11.2721,8.4893,2.1498,4.7042,1.703,17.828,5.2143,3.5903,1.0939,2.5249,7.641,14.6205,2.9397,4.6384,2.8762,1.4397,1.6363,4.3894,11.0949,3.0393,2.117,10.1234,1.9296,2.3682,1.875,11.9271,1.6445,4.1544,1.1057,13.2791,5.1338,7.3716,4.0782,9.4135,7.8387,6.6755,7.785,3.0893,1.2649,4.5171,,,,,,,,,,,,,,,38,,,,133
+nG+FRE3T0HC004,1.4722,2.1183,,-50y,CN,,,16.9803,4.1678,2.3748,1.9369,1.33,edsd,CN,,F,,0.34162,4.6022,3.9,0.85531,8.6035,1.5388,0.34664,3.623,2.5642,43.6755,13.6451,208.07,3.8098,4.3597,1.6249,2.093,3.0718,7.0831,1.8822,3.1929,0.86925,6.0919,11.4696,20.0561,7.1455,2.268,4.6865,1.7826,18.3395,5.5471,3.7536,1.0828,2.756,6.8875,13.7814,3.3136,4.3066,3.7596,1.4334,1.3743,4.2906,10.0407,3.1236,2.116,10.1079,2.4582,2.3931,2.0954,13.1373,1.8785,3.4101,1.1368,14.2914,5.308,8.2607,3.4293,9.9727,6.7011,6.9214,7.775,3.5972,1.6057,4.4267,29,,,0.0666,,,,0.30529,3.6402,3.5918,0.85499,9.322,1.7616,0.348,3.6045,2.5652,43.426,13.1039,210.1719,3.8917,4.6025,1.6645,1.929,3.3431,7.2848,1.8046,3.3311,0.79388,6.092,11.629,16.2077,7.8971,2.2909,4.7241,1.7065,17.3869,4.2855,3.6043,0.90751,2.4726,8.1541,13.534,2.8549,3.944,3.6483,1.6054,1.3967,4.0855,10.1163,2.9884,2.1205,10.2815,2.225,2.2864,1.8901,12.73,1.8962,3.1843,1.1135,15.0565,5.3897,8.3553,4.0282,10.6186,6.7479,6.889,7.7021,3.4329,1.4799,4.1848,,,,,,,,,,,,,,,38,,,,134
+nG+FRE3T0HC005,1.614,1.9196,,-50y,CN,,,17.7762,5.3514,2.8305,2.4147,1.3533,edsd,CN,,M,,0.43307,4.7113,4.3376,0.93739,8.9409,1.5772,0.40429,3.406,2.7172,47.9713,14.8935,209.0373,3.8743,4.7242,1.751,1.9974,3.483,7.4826,1.9137,3.3839,0.5242,6.9762,11.9431,16.6564,8.032,2.324,4.7792,1.7003,18.1785,6.07,4.0077,1.2133,2.8053,6.7738,13.9066,3.5306,4.6549,3.2598,1.433,1.4637,4.4222,10.017,3.278,2.3157,13.1292,2.4288,2.6564,2.2945,14.1058,2.2553,3.8839,1.3028,16.3673,5.7798,8.6646,4.2588,10.7217,7.4109,6.7768,8.2614,3.4984,1.6861,4.7218,27,,,0.08379,,,,0.37903,4.1808,3.9727,0.90593,9.4278,1.6705,0.4125,3.1197,2.7961,48.8941,14.2605,211.353,3.8774,4.7354,1.7783,1.8918,3.5987,7.5272,1.9391,3.7963,0.9219,6.2446,11.8036,14.0815,8.3029,2.1975,4.3461,1.6627,18.5757,4.6453,3.6767,1.3128,2.9708,7.6634,14.5187,2.7054,4.4146,3.3178,1.6238,1.4537,4.5414,11.4914,3.139,2.1743,12.4641,2.4143,2.4765,2.0325,14.1011,1.9454,3.7248,1.2351,16.326,6.0924,8.1332,4.1025,10.3195,7.484,6.7928,8.8179,3.4829,1.5171,4.4563,,,,,,,,,,,,,,,38,,,,135
+nG+FRE3T0HC006,0.78548,1.6452,,-50y,CN,,,19.3635,4.1392,2.4878,2.0164,0.73513,edsd,CN,,F,,0.41064,4.8959,4.2223,0.83318,8.7777,1.3855,0.37715,3.3904,2.5878,37.5008,15.2945,238.1675,4.0084,4.6911,1.5778,2.0205,3.5412,6.2539,2.1391,2.8952,0.33556,5.9105,9.9259,7.1916,6.7045,2.168,5.2192,1.853,18.4488,5.7345,3.7981,1.1846,2.7659,6.9348,13.0736,3.2581,4.0649,3.5025,1.4708,1.6868,4.2422,10.6576,2.7938,2.3813,11.5437,2.5104,2.2731,2.273,12.1483,2.2449,3.6351,1.2287,14.6143,5.5574,8.6181,3.4129,10.1731,7.2459,7.8912,6.7235,4.0429,1.7349,5.1199,30,,,0.0791,,,,0.387,4.3436,3.9787,0.88096,9.3742,1.6747,0.40229,3.332,2.7433,35.0639,14.6805,241.8441,4.1037,5.1201,1.7129,1.9335,3.6164,6.6275,2.0326,3.1393,0.40118,6.0577,10.4756,7.0678,7.1854,2.165,4.9833,1.6226,18.2342,4.5619,3.9055,1.0289,2.5523,8.1308,13.0443,2.796,3.7494,3.3518,1.509,1.7118,4.1126,11.0806,2.6373,2.3285,9.8985,2.3774,2.3582,2.0971,12.0913,2.0048,3.5761,1.1512,14.2183,5.6612,7.6442,3.9936,9.684,6.8412,7.7732,7.3028,3.3709,1.6071,4.917,,,,,,,,,,,,,,,38,,,,136
+nG+FRE3T0HC007,1.0437,1.5136,,-50y,CN,,,15.3697,4.5442,2.3782,2.0083,1.0368,edsd,CN,,F,,0.41664,4.3344,3.8348,0.73871,8.8037,1.3958,0.36112,2.4261,2.7236,44.0482,13.4713,194.5846,3.4711,3.9218,1.5617,1.8746,3.3166,7.2892,1.781,2.7666,0.38246,5.5622,11.0049,10.1129,6.4685,2.1359,4.4478,1.5982,17.0455,5.6453,3.5882,1.0883,2.4786,6.3837,13.2182,2.6444,3.7836,3.0203,1.4083,1.3267,4.0792,9.5844,3.0323,2.083,11.135,2.1774,2.2597,2.0631,11.3711,1.8484,3.6105,1.1304,13.156,4.9445,8.5524,3.0463,9.7753,7.1655,6.4038,6.874,3.6062,1.454,4.1762,30,,,0.07662,,,,0.3781,3.829,3.5652,0.70439,9.1377,1.6695,0.37195,2.6141,2.7122,44.2266,12.8401,197.2012,3.6347,4.388,1.4809,1.6794,3.4888,7.2795,1.9219,2.8784,0.38569,5.857,10.7234,8.3227,7.228,2.0677,4.6062,1.6169,16.7745,4.6989,3.7345,0.9341,2.5825,6.8183,13.7059,2.4348,3.7202,3.2949,1.4943,1.3276,3.7534,9.906,2.8203,1.994,9.3578,1.9935,2.3325,1.7949,12.0539,1.7384,3.4216,1.1226,14.2012,4.8783,7.059,3.7545,10.3715,6.9698,6.4738,6.9538,3.2053,1.3506,3.9552,,,,,,,,,,,,,,,38,,,,137
+nG+FRE3T0HC008,1.9259,1.8618,,-50y,CN,,,20.5349,4.9834,2.6853,2.271,1.4292,edsd,CN,,M,,0.42956,4.7719,4.5088,0.80523,10.6247,1.5926,0.39035,3.3305,3.3834,49.5858,16.9913,262.7257,4.3785,4.4205,1.5971,2.2471,3.3457,7.8688,2.0698,3.2871,0.83801,7.1185,12.1345,17.3104,7.4548,2.3653,5.1372,1.8623,19.1382,6.6145,4.0456,1.1148,2.5027,6.9028,14.8551,4.132,4.5319,3.5135,1.5157,1.7829,4.7566,11.8877,3.3232,2.5669,12.3824,2.6832,2.5105,2.6335,12.468,2.1252,4.0444,1.3612,14.5068,5.09,9.8517,3.2678,10.683,8.005,7.6113,7.8968,4.0525,1.8102,5.3238,27,,,0.07963,,,,0.40339,4.5827,4.2071,0.91058,11.4886,1.929,0.4173,3.4268,3.4256,49.6749,16.8646,263.77,4.2444,5.1805,1.871,2.1393,3.6978,7.6006,1.9291,3.7797,0.91749,6.7231,11.9333,16.3631,7.7976,2.4045,5.2766,1.7088,18.7096,5.2318,4.0174,1.1528,2.6392,7.6393,15.2121,3.0215,4.3444,3.8707,1.8664,1.7632,4.5444,12.0108,3.2685,2.4656,10.9379,2.3058,2.5801,2.272,11.9639,2.0602,3.9227,1.1998,14.0477,5.1936,9.3803,4.6967,11.4734,9.075,7.6821,8.3589,3.7947,1.6697,5.1077,,,,,,,,,,,,,,,38,,,,138
+nG+FRE3T0HC009,0.98079,1.7414,,-50y,CN,,,18.3676,4.5193,2.801,2.2438,0.97366,edsd,CN,,F,,0.42186,4.1727,4.4858,0.99708,8.4172,1.5165,0.39874,3.1303,2.9262,49.1019,15.3354,235.0903,3.8408,4.3683,1.8282,1.9986,2.956,6.8231,1.936,3.3564,0.44762,5.345,10.5973,8.7825,7.1263,2.3593,4.7098,1.5193,16.9412,5.1693,3.9422,0.95416,2.4319,6.3507,12.9016,2.7212,3.9033,3.2757,1.4595,1.5518,4.4781,9.9819,3.2234,2.3288,10.8241,2.0978,2.2947,2.3109,11.8097,2.0697,4.0496,1.1527,14.2595,5.6534,8.6432,3.1983,9.647,7.4732,7.4687,7.1894,3.9039,1.5752,4.9773,30,,,0.08805,,,,0.37051,3.6659,4.0376,0.92482,8.7883,1.5749,0.40491,3.1133,2.9817,48.463,15.0445,234.7223,3.6958,4.4374,1.7302,1.8752,3.4547,7.0482,1.8119,3.4963,0.52741,5.7045,10.0696,7.8491,7.6388,2.074,4.5803,1.406,17.4708,4.9182,3.5889,0.89908,2.364,6.5382,13.0454,2.6821,3.9653,3.8443,1.5266,1.5473,4.0985,10.0864,2.8693,2.2314,10.3212,2.0918,2.2418,2.0243,12.7227,1.8905,3.8694,1.0553,14.4529,5.2933,7.6231,3.9919,9.4038,7.0859,7.3745,7.2509,3.6145,1.6067,4.6371,,,,,,,,,,,,,,,38,,,,139
+nG+FRE3T0HC010,1.3067,1.5541,,50-59y,CN,,,15.7677,4.4949,2.428,2.2014,1.2123,edsd,CN,,F,,0.38334,3.948,4.1302,0.81543,7.8059,1.4517,0.35521,3.0936,2.9964,48.8532,13.2768,197.3386,3.8421,4.1411,1.5989,2.0095,3.0274,7.0765,1.8733,2.9369,0.53477,5.8721,11.192,11.297,7.3258,2.2574,4.5183,1.5262,19.08,5.5648,3.9303,1.0797,2.5952,5.9829,13.5805,2.8725,4.4898,3.6752,1.4953,1.4294,4.063,9.5475,2.9691,2.1862,10.3821,2.0998,2.3906,2.0999,12.271,1.7358,3.7125,1.0558,13.3514,5.0496,8.2609,3.2683,9.7264,6.5389,6.6585,7.1993,3.8219,1.3907,4.3744,29,,,0.07652,,,,0.33749,3.7313,3.987,0.81108,9.3639,1.7272,0.35786,3.1251,3.0468,48.774,13.0406,198.2855,3.8619,4.3472,1.6164,1.7695,3.3107,7.15,1.9506,3.2615,0.61848,6.3483,11.7899,10.9034,7.6127,2.2476,4.2754,1.5515,18.4196,5.3002,3.843,1.2031,2.5856,6.5017,14.2685,2.5729,4.0219,3.238,1.5513,1.4203,3.8963,9.862,2.8919,2.2766,9.2469,1.8857,2.3375,2.0147,12.3611,1.6251,3.5259,1.0567,13.4644,4.7562,6.8716,3.907,8.6385,6.7893,6.777,7.2399,3.3444,1.3992,4.0793,,,,,,,,,,,,,,,56,,,,140
+nG+FRE3T0HC011,1.1685,1.7477,,70-79y,CN,,,19.276,4.6455,2.4322,2.4015,1.1866,edsd,CN,,M,,0.43293,4.3916,3.8499,0.92232,8.3897,1.5045,0.37346,2.7421,3.0777,48.6368,16.2364,247.9511,4.4111,4.24,1.7233,1.8167,3.2919,7.1775,1.8477,3.0353,0.55859,6.4785,10.2448,18.2943,7.3144,2.2314,4.8775,1.6885,18.3843,5.9223,3.8819,1.0491,2.3063,6.4913,12.3186,3.5209,3.9437,3.4594,1.3671,1.7373,4.2709,10.5513,3.0593,2.1487,11.9255,2.4013,2.3889,2.1035,12.313,2.1993,3.7195,1.062,13.9965,5.2041,9.2354,3.4209,11.0531,7.2854,6.9732,7.2184,3.3353,1.5584,5.0208,28,,,0.07155,,,,0.38266,3.847,3.7652,0.88295,9.6779,1.7381,0.36743,2.8778,2.9505,48.961,15.6228,247.6648,3.4866,4.7671,1.733,1.946,3.3523,7.9381,1.9369,3.2868,0.52265,6.5135,11.4244,14.3835,8.2699,2.2145,4.6196,1.6815,18.4993,4.9111,3.8106,0.88177,2.1624,7.0645,13.7817,3.0325,4.5112,3.3692,1.485,1.6457,3.849,10.7904,2.9531,1.9577,10.4588,1.8855,2.4033,1.8126,11.8116,1.6737,3.4358,1.0344,11.7635,4.8422,7.6688,4.4728,10.8439,6.6434,6.82,7.2326,3.3464,1.2189,4.6522,,,,,,,,,,,,,,,71,,,,141
+nG+FRE3T0HC012,0.91329,1.7207,,60-69y,CN,,,16.1386,4.5887,2.7387,2.022,1.0008,edsd,CN,,M,,0.39061,4.1357,4.0917,0.81981,8.9364,1.5141,0.35107,3.1909,2.7717,47.2241,13.6501,194.1429,3.4536,4.2396,1.6173,1.7793,3.6831,7.1395,1.8999,2.9412,0.47482,5.4965,10.134,9.8829,6.7062,2.3094,4.5961,1.7072,18.15,5.4532,3.8186,1.056,2.4012,6.5976,12.7252,3.0587,3.789,3.1734,1.3552,1.4067,4.4772,9.9918,3.108,2.1735,9.9433,2.222,2.2485,2.0736,12.6262,2.0422,3.6167,1.0199,14.0169,4.6124,8.1767,3.247,9.8267,7.1101,7.2343,7.094,3.6266,1.5315,4.4119,30,,,0.06615,,,,0.34632,3.3679,3.8703,0.81298,9.1914,1.7703,0.36647,3.3301,2.8389,46.4564,13.3453,197.3612,3.5122,4.4513,1.5899,1.7588,3.9505,7.4098,1.8913,3.1208,0.64451,6.4061,10.3327,9.599,7.3041,2.1512,4.1706,1.6885,18.2191,4.7997,3.6593,0.96542,2.4623,7.1449,12.3274,2.9431,3.9794,3.2753,1.4721,1.4045,3.8339,9.8438,2.7794,2.1178,9.151,2.2511,2.1937,1.8244,12.921,1.9433,3.5176,1.0378,14.225,5.0549,7.3513,3.9499,9.3557,7.0004,6.9295,7.0659,3.6063,1.3691,4.1609,,,,,,,,,,,,,,,66,,,,142
+nG+FRE3T0HC013,1.09,2.1104,,60-69y,CN,,,20.0813,5.5966,3.203,2.6033,1.2058,edsd,CN,,F,,0.4623,4.8053,4.5723,1.0289,10.068,1.6474,0.42315,3.3101,3.3455,56.8183,17.706,241.611,4.6986,4.7112,1.9169,2.4049,3.4284,8.6057,2.0895,3.8589,0.47953,7.3628,13.7005,14.2645,8.943,2.574,5.2113,1.8645,20.5315,7.0934,4.3626,1.3344,2.7667,7.0636,17.4934,3.712,5.2492,4.2748,1.681,1.6101,4.9118,11.0971,3.6665,2.268,12.3322,2.4504,2.7952,2.5748,12.9166,2.3558,4.1592,1.2197,15.5642,5.3513,9.3758,4.3046,11.2281,9.1999,7.9295,9.067,4.1858,1.948,5.1095,30,,,0.08406,,,,0.39576,4.4445,4.2808,1.0815,10.944,1.983,0.41206,3.5269,3.5504,56.6536,16.5226,242.0048,4.2583,5.0981,2.0513,2.2622,3.677,9.0219,1.9759,4.0554,0.5249,6.8803,13.5092,11.468,9.7277,2.4684,4.9783,1.7527,19.5149,5.3576,3.9365,1.016,2.974,7.7507,16.4933,3.2514,5.0129,3.7221,1.6658,1.5631,4.4571,11.4473,3.6236,2.1884,11.659,2.0384,2.5784,2.0261,14.1323,1.9243,4.0042,1.1594,16.125,5.7084,8.7476,4.8376,12.2937,9.0556,7.756,9.1932,3.928,1.4135,4.8444,,,,,,,,,,,,,,,60,,,,143
+nG+FRE3T0HC014,1.5052,2.2088,,60-69y,CN,,,20.4866,5.5523,3.3315,2.5184,1.2797,edsd,CN,,M,,0.53202,5.2964,4.7641,1.0389,10.1702,1.9169,0.45822,3.7225,3.7946,56.9775,18.8096,264.8382,4.6635,5.3039,1.9007,2.1829,4.2681,8.8549,2.4124,3.4854,0.51445,8.0259,12.5009,17.9065,8.4392,2.8515,5.76,2.1957,20.6639,7.1553,4.5659,1.1183,2.8748,7.6078,14.8773,4.253,5.2811,3.8385,1.7248,1.8286,4.8453,11.2148,3.6757,2.5786,13.0931,2.6854,2.7405,2.5914,15.0168,2.1991,4.534,1.3638,16.9267,6.0104,8.91,3.9528,10.7322,7.945,8.5038,8.7625,4.3936,1.6912,5.4939,30,,,0.08206,,,,0.45089,4.66,4.4752,1.0622,10.5744,2.1057,0.43711,3.9155,4.0632,56.0955,17.6577,267.6691,3.9016,6.0872,2.0086,1.9507,4.0984,8.6655,2.2903,3.73,0.59472,8.5205,13.1952,18.0334,8.9198,2.6877,5.1863,1.9748,21.7039,6.1211,4.4065,1.1751,2.9631,8.6373,15.9716,3.6969,5.0361,4.0885,1.7635,1.8444,4.4494,12.1435,3.2796,2.5382,11.9035,2.4104,2.5921,2.2951,15.2203,2.0751,4.2474,1.2841,16.4028,6.2661,8.3761,4.9057,10.4075,8.468,8.5553,8.8402,4.0728,1.5511,5.1922,,,,,,,,,,,,,,,63,,,,144
+nG+FRE3T0HC015,2.2023,2.4089,,-50y,CN,,,20.4108,5.1432,2.6853,2.4147,1.8849,edsd,CN,,M,,0.49147,5.7797,5.4048,1.0705,10.1609,1.9361,0.47669,4.2792,3.7724,50.5091,15.1132,260.6464,4.8171,5.84,2.0359,2.3748,4.5852,8.5002,2.5264,3.6457,1.2782,8.0441,12.2709,36.4723,8.2014,2.8999,5.8873,2.3385,21.5294,7.3778,5.0118,1.1017,2.9135,8.5151,13.8627,4.7167,5.0482,3.4564,1.8326,2.0654,5.1161,12.3314,3.5912,2.9766,13.2226,2.6311,3.2117,2.5947,14.8678,2.0213,4.0556,1.6854,17.5194,5.9421,9.0909,3.9376,12.1876,7.4672,8.3647,8.6,4.3584,1.741,5.5917,26,,,0.08199,,,,0.43308,5.0449,5.1362,1.0761,11.4297,2.2412,0.50087,4.3357,3.5906,51.3226,15.0686,271.7577,4.8673,6.0809,2.1282,2.4243,4.6571,9.3062,2.5305,3.9721,0.831,8.2424,14.1024,22.7888,9.3591,2.6996,5.5249,2.3643,23.7774,5.9573,4.8573,1.0667,2.693,9.3821,16.1744,3.9473,5.2588,3.8602,2.014,2.0366,5.0315,13.1268,3.5317,3.0945,12.1582,2.9868,3.0105,2.3733,14.3726,2.3121,3.9813,1.6001,16.9262,6.2281,8.9801,4.9166,13.1216,8.3923,8.509,8.592,4.5346,1.741,5.2466,,,,,,,,,,,,,,,36,,,,145
+nG+FRE3T0HC016,1.6311,3.1677,,50-59y,CN,,,17.7466,4.2336,2.3908,2.2948,1.397,edsd,CN,,F,,0.50415,4.8551,3.6905,0.90118,8.5927,1.6648,0.40135,3.1002,3.4491,43.6108,14.1073,236.364,3.5507,4.2445,1.8278,1.7326,3.2456,7.6172,2.0521,3.2721,0.4114,6.1879,11.7365,13.2896,7.3695,2.4923,5.247,1.7659,18.8778,6.239,4.0323,1.0539,2.5553,6.9886,14.6542,3.1911,4.1717,3.215,1.3831,1.7534,4.6327,10.6738,3.2769,2.1089,11.491,2.0229,2.4252,2.1393,13.0425,1.6488,4.065,1.1712,14.3869,5.6808,8.3562,3.5387,10.4434,7.4128,7.5669,7.9921,3.7699,1.3108,4.9448,30,,,0.0778,,,,0.44814,4.1386,3.5163,0.88245,9.709,1.7993,0.40558,3.2174,3.4082,42.5943,13.8667,235.8337,3.3643,4.1039,1.7926,1.6922,3.5605,7.6859,1.9793,3.4752,0.4896,6.2792,12.4167,13.1004,7.9132,2.3454,5.2099,1.7081,19.6031,5.0421,3.8013,1.2016,2.7977,7.7854,14.5562,2.7841,4.1794,3.5666,1.4006,1.7406,4.1308,10.5413,2.995,1.9103,10.351,1.846,2.384,1.6917,12.7812,1.5357,3.7825,1.1388,13.8458,5.534,7.505,3.8065,10.9174,6.7924,7.3168,7.6754,3.7288,1.1849,4.6835,,,,,,,,,,,,,,,53,,,,146
+nG+FRE3T0MCI001,2.0706,2.0163,,70-79y,Other,,,19.5817,4.4305,2.6272,2.1339,1.6165,edsd,MCI,,M,,0.47187,5.2728,4.7001,0.75755,8.5519,1.4728,0.42445,3.6191,3.1944,46.062,15.9103,265.6812,4.611,5.4128,1.5859,1.9881,3.6687,7.3032,2.1016,3.0114,1.16,6.5972,11.666,26.1449,8.2622,2.2228,4.9597,1.8474,19.788,6.2585,4.0204,1.4507,3.2474,7.864,13.6697,3.9963,4.4368,3.5359,1.4849,1.8589,4.7787,11.6746,3.1554,2.7304,13.0189,2.6709,2.4377,2.3202,13.7982,2.1133,4.4532,1.4347,15.5325,6.1866,8.8857,4.1879,10.9036,6.6694,7.5645,7.5251,3.5388,1.6156,5.2066,23,,MCI,0.08878,,,,0.40107,4.3094,4.578,0.70174,10.6092,1.9333,0.4175,3.7903,3.0841,46.3176,14.723,267.6029,4.3265,5.6101,1.4826,2.0374,4.0056,7.4807,2.2793,3.0377,0.91646,6.898,11.9752,26.1218,8.5997,2.3336,4.556,2.044,19.6653,5.1591,4.0721,1.1214,3.0654,8.4573,14.4409,3.1866,4.7235,3.5688,1.6433,1.9156,4.0692,12.2819,2.8111,2.7653,11.6993,2.826,2.4649,2.1911,13.0812,2.2121,4.3237,1.4368,15.5288,6.2218,9.123,4.142,10.8458,7.1791,7.7554,7.0269,3.5754,1.5656,4.8194,,,,,,,,,,,,,,,72,,,,147
+nG+FRE3T0MCI002,1.8953,2.5945,,70-79y,Other,,,14.5773,4.4402,2.3524,2.0402,2.1946,edsd,MCI,,F,,0.37204,4.6361,4.8409,0.82841,10.4591,1.61,0.4252,3.2596,2.3883,41.5414,12.9864,203.5602,4.3044,3.9577,1.6533,2.078,3.4559,7.5113,2.1852,3.0149,0.75575,6.4482,11.0984,24.8629,7.2914,2.3113,4.5528,1.825,18.6722,6.6358,4.0077,1.2911,2.823,7.1443,14.4684,3.5212,4.175,2.8404,1.4791,1.3178,4.1795,9.9764,3.3693,2.749,11.4993,2.2527,2.4641,2.4631,12.4153,2.0471,3.483,1.2777,15.4454,5.5097,8.6249,3.1602,10.1788,7.4301,5.8586,7.4169,3.7908,1.6836,4.6028,28,,MCI,0.08126,,,,0.33293,3.8135,4.3287,0.83571,10.6519,1.6952,0.3954,3.5223,2.6411,39.3618,11.7542,205.4985,3.8563,4.486,1.697,2.0246,3.8794,7.6589,2.0828,3.177,0.71055,6.7979,11.6861,18.5802,8.2264,2.1151,4.3397,1.865,18.5382,5.3372,3.7697,1.0231,2.5935,8.3682,13.4496,2.7936,4.16,3.476,1.5894,1.4291,3.9427,10.178,3.1334,2.5976,10.1561,2.2478,2.3101,2.4364,13.4881,1.9788,3.5721,1.2302,15.1689,5.9382,7.7913,3.6506,10.0116,7.2861,6.06,7.4145,3.5856,1.6521,4.2761,,,,,,,,,,,,,,,71,,,,148
+nG+FRE3T0MCI003,2.1015,1.7534,,70-79y,Other,,,17.9874,4.4376,2.4787,2.1521,2.3852,edsd,MCI,,F,,0.39083,5.1348,4.0663,0.67477,8.4411,1.5746,0.36423,3.2017,2.8943,42.0877,14.0153,225.7956,4.1119,4.2073,1.2548,1.8922,3.5095,6.1921,2.0571,2.8508,0.53907,5.6651,10.0363,26.8131,7.2431,2.453,5.122,1.8683,18.1012,5.7567,3.8299,1.169,2.8577,7.4069,13.1376,3.2235,3.8957,3.2361,1.4859,1.5949,4.7407,10.6004,2.8411,2.1022,10.5191,2.2584,2.3962,2.1122,12.8252,2.0671,3.4327,1.3397,13.8296,5.3595,8.3272,3.3041,11.1361,7.0293,6.6851,6.2131,3.4893,1.4024,4.6959,28,,MCI,0.07331,,,,0.37638,3.8738,4.1808,0.75549,9.8315,1.8107,0.38358,3.4931,3.263,42.1123,13.5405,231.4533,4.0561,4.661,1.4653,2.0224,3.9241,7.0622,2.1668,3.2673,0.68836,6.0352,11.1621,22.5303,8.124,2.2333,4.7746,1.9747,18.4156,5.0917,3.8633,1.0574,2.7924,8.8638,13.7589,3.0377,4.071,2.9628,1.5866,1.5569,4.3787,11.033,2.7786,2.1261,9.613,2.0188,2.3642,1.8467,12.6872,1.724,3.588,1.2807,15.3559,5.3899,7.0267,4.1087,10.2264,7.0635,6.6585,7.2049,3.1585,1.3367,4.4726,,,,,,,,,,,,,,,78,,,,149
+nG+FRE3T0MCI004,1.7918,2.263,,70-79y,Other,,,16.4676,4.65,2.3258,2.1492,1.8472,edsd,MCI,,M,,0.42626,4.3394,4.5025,0.98383,7.8224,1.507,0.38062,3.6252,3.1177,44.3414,14.0245,234.481,4.4271,5.0645,1.7409,1.9859,3.4587,6.9709,1.8884,3.2935,1.08,7.1014,11.891,26.646,6.8163,2.2737,4.7548,1.64,18.6128,5.576,3.7927,0.99106,2.4103,6.3584,14.521,3.7212,3.9801,3.4076,1.3963,1.5138,4.472,10.7108,3.2276,2.5572,12.102,2.8999,2.3144,2.5142,12.9802,2.5071,3.9674,1.2461,15.2437,5.0761,8.5936,3.4122,10.3845,6.9202,7.2452,7.6973,3.558,2.0659,4.7452,30,,MCI,0.07074,,,,0.38693,3.9506,4.1337,0.91609,9.4133,1.5605,0.37687,3.5571,3.263,44.7234,13.4651,234.7419,4.1216,5.3886,1.6863,2.0236,3.5307,7.2452,1.9149,3.5455,1.3282,7.5167,12.2302,24.5371,7.8474,2.0146,4.3869,1.6021,18.7735,5.154,3.5685,0.94454,2.3791,7.2435,15.3965,3.5384,4.2576,3.2545,1.4914,1.5604,4.1955,11.0979,2.9501,2.4221,10.0365,2.548,2.1878,2.144,13.319,2.0972,3.5342,1.1916,15.517,5.2471,7.7342,4.3813,8.8931,7.5918,7.4221,7.6637,3.6204,1.7041,4.3721,,,,,,,,,,,,,,,77,,,,150
+nG+FRE3T0MCI005,1.638,2.0759,,70-79y,Other,,,16.438,4.6477,2.258,2.215,2.023,edsd,MCI,,F,,0.36877,4.3795,4.2558,0.67372,8.6252,1.526,0.37038,2.8266,3.0729,43.9655,12.6795,187.7842,4.4532,4.2358,1.3091,1.9801,3.3382,6.4785,1.9196,2.83,0.98823,6.031,9.8794,27.0618,7.3711,2.3376,4.2041,1.7001,17.7781,5.8761,3.7203,0.94606,2.2947,6.5859,13.1768,3.2956,4.14,3.6754,1.4794,1.5031,4.0267,9.8588,2.898,2.3879,10.6316,2.2927,2.3997,2.3017,11.1521,1.8006,3.7607,1.249,12.8304,4.7759,8.0024,3.2329,9.0516,6.8049,6.6353,6.8749,3.6128,1.5333,4.484,25,,MCI,0.08508,,,,0.33687,4.3799,4.2546,0.74861,9.0055,1.6987,0.37411,3.2764,3.0644,42.7345,12.2102,190.114,4.1787,4.3989,1.4985,1.955,3.7548,6.5199,1.9057,3.1424,0.98229,6.2898,10.4651,24.0659,8.3148,2.1234,4.3957,1.6819,18.0849,5.4068,3.6591,0.91864,2.1266,6.9324,13.7816,2.7764,4.0199,3.2821,1.5588,1.5208,3.5659,9.1747,2.7598,2.495,9.8526,2.3147,2.3405,2.2209,10.9516,1.8109,3.7668,1.1606,12.4816,4.854,7.5731,4.0576,9.0019,6.9663,6.5668,7.2623,3.4384,1.5318,4.2637,,,,,,,,,,,,,,,77,,,,151
+nG+FRE3T0MCI006,1.8597,2.2503,,60-69y,Other,,,22.0641,4.7116,2.6687,2.2732,1.6516,edsd,MCI,,M,,0.36013,5.0472,4.8254,0.79975,8.6865,1.4939,0.3788,3.6542,2.5513,50.3468,18.4645,247.5545,4.9255,4.8328,1.4361,2.4317,3.7021,6.904,2.2327,3.3285,1.7776,7.4654,11.1838,20.8669,7.4604,2.2855,4.9476,2.1024,19.9508,5.9689,3.9113,1.23,2.8081,7.8222,14.0277,3.9308,4.6879,3.6939,1.5949,1.7605,5.2164,12.0823,3.0748,2.5954,12.5923,3.1789,2.4873,2.6377,13.6084,2.8052,3.4843,1.4442,14.7357,6.1341,10.0058,3.657,10.4425,7.6602,7.709,6.3763,4.372,2.1337,5.4606,25,,MCI,0.07962,,,,0.34783,4.2524,4.2562,0.90213,11.8125,1.8966,0.41411,3.6929,2.7281,48.9823,17.7409,257.664,4.3756,5.4773,1.6779,2.1701,4.0324,7.8367,2.39,3.8423,1.2206,7.0274,11.8356,15.3522,8.7088,2.4708,4.7915,2.0872,18.5568,5.4499,4.0581,1.4516,3.2335,9.4034,14.935,3.4373,4.5317,3.5992,1.8614,1.767,4.6815,12.6315,3.0946,2.4441,10.8522,2.4557,2.5508,2.1454,13.4558,2.123,3.6103,1.4287,16.53,6.7193,8.5362,4.4244,11.153,8.4027,7.9524,7.1233,3.6622,1.6989,5.2238,,,,,,,,,,,,,,,68,,,,152
+nG+FRE3T0MCI007,1.303,1.6704,,+80y,Other,,,14.5013,3.926,1.9635,1.8052,1.0877,edsd,MCI,,F,,0.31534,3.3593,3.6208,0.65091,7.3052,1.1283,0.30884,2.584,2.3065,36.6323,11.7864,168.3196,3.3813,3.2028,1.1807,1.7092,2.6099,5.6571,1.4716,2.4391,0.80996,4.7337,7.7916,16.1431,5.9051,1.8248,3.5663,1.301,13.927,4.7701,2.9874,0.8375,1.7162,5.0306,9.4157,2.6711,3.2516,3.3054,1.2189,1.3129,3.2871,7.5474,2.4135,1.9036,9.697,1.9191,2.0003,1.7202,10.6762,1.5973,3.1877,0.93605,10.8704,3.7126,7.5258,2.7428,8.9572,5.2296,5.7799,5.2112,3.0806,1.156,3.9387,21,,MCI,0.06808,,,,0.28468,2.7669,3.3216,0.68236,7.3881,1.2644,0.30427,2.8281,2.3944,37.0198,11.1152,172.6784,3.4696,3.7766,1.2539,1.668,2.7222,5.6155,1.5262,2.7004,0.75667,4.7703,8.2647,14.4921,6.3605,1.6103,3.4091,1.1999,14.1291,3.9098,2.9884,0.90001,1.937,5.4504,10.4835,2.4852,3.2956,3.1371,1.1439,1.3544,3.0558,7.8066,2.3072,1.8642,8.4134,2.0571,1.7994,1.5695,10.3155,1.6614,3.1153,0.91841,11.5987,3.9938,6.3937,3.8999,8.4191,5.9477,5.9261,5.7754,2.581,1.1985,3.7544,,,,,,,,,,,,,,,84,,,,153
+nG+FRE3T0MCI008,0.82014,1.8813,,60-69y,Other,,,13.8913,3.1358,2.0897,1.7692,0.81582,edsd,MCI,,F,,0.376,3.5274,3.3041,0.85018,8.336,1.2892,0.32784,2.5195,2.4613,26.922,8.7931,192.4074,3.0994,3.7098,1.6225,1.4353,2.6464,6.2328,1.5618,2.9587,0.39513,5.3421,9.8791,9.7537,6.1919,1.8431,4.0864,1.388,15.8475,4.9091,3.293,0.95253,2.1664,5.527,11.5238,2.4683,3.5111,2.5013,1.0686,1.2439,3.8391,9.1132,2.9627,1.9085,10.4314,2.0559,2.0244,1.8761,10.5874,1.6738,3.5668,0.97113,11.7258,4.3097,8.2933,2.8037,8.8161,6.35,6.183,6.9261,2.7935,1.3098,3.8961,28,,MCI,0.06425,,,,0.33877,3.1503,2.9994,0.82722,8.3539,1.6024,0.33234,2.6463,2.4875,34.594,9.9619,191.0961,3.1309,3.9576,1.5804,1.3705,2.9789,6.6602,1.5931,3.0628,0.43205,5.3595,10.4005,10.2081,6.4388,1.8036,3.8826,1.3504,14.8596,4.3924,3.4009,0.99196,2.1815,6.0696,12.435,2.1184,3.5715,2.6669,1.0875,1.2456,3.3487,8.9821,2.6696,1.8408,8.3866,1.726,1.9039,1.5118,9.573,1.5879,3.3107,0.89338,12.5051,4.0921,6.7642,3.3745,9.3816,6.4672,5.9582,6.8304,2.5902,1.0821,3.583,,,,,,,,,,,,,,,69,,,,154
+nG+FRE3T0MCI009,2.0548,2.2003,,70-79y,Other,,,16.4367,4.8159,2.6677,2.2356,2.2128,edsd,MCI,,F,,0.36521,4.6633,3.6793,0.61588,8.8703,1.3725,0.34677,3.1572,2.6902,44.6043,13.0851,186.1227,3.7078,4.1254,1.1851,1.7282,3.1138,7.0443,1.9584,2.5658,1.0902,6.5106,10.5929,28.1178,7.2396,2.0418,4.8805,1.5626,17.1683,5.8726,3.8057,0.98109,2.2928,6.6371,12.3186,3.4184,4.1374,2.6764,1.2029,1.385,3.9703,10.1583,2.7176,2.2477,10.1776,2.183,2.106,2.1192,12.0034,1.6366,3.1088,1.2771,14.2142,5.0925,8.5992,3.1419,9.686,6.1527,6.2932,6.4733,3.1957,1.3991,4.3835,28,,MCI,0.07564,,,,0.32035,4.6707,3.6026,0.62861,9.913,1.5401,0.34919,3.2294,2.5612,44.5338,12.5217,187.1765,3.6131,4.4648,1.2651,1.7466,3.5291,7.4692,1.9479,2.818,1.1172,6.667,11.0529,20.8672,7.5535,2.0076,5.1835,1.5256,17.4693,5.569,3.5983,0.91355,2.2481,6.8932,12.7816,3.1998,3.9382,2.878,1.4526,1.357,3.8347,10.3976,2.6261,2.2326,8.9765,1.8432,2.0353,1.9249,11.3471,1.5686,2.903,1.2499,13.3024,4.913,7.077,4.0964,9.3569,6.4836,6.3999,6.5284,3.1879,1.3568,4.1216,,,,,,,,,,,,,,,75,,,,155
+nG+FRE3T0MCI010,1.6335,1.64,,60-69y,Other,,,18.1667,4.7047,2.7361,2.2199,1.2841,edsd,MCI,,F,,0.41026,4.6754,4.0645,0.67729,8.5142,1.5935,0.34931,3.2925,2.9707,46.55,14.8168,227.9725,4.3847,4.2452,1.3674,1.9861,3.4617,7.1407,2.0406,2.6235,0.93226,6.567,10.1414,19.0423,7.1734,2.4132,5.2758,1.8406,20.4507,6.069,3.9993,0.97938,2.4105,6.9151,12.9082,3.431,4.2138,3.4061,1.5359,1.8143,4.728,10.6727,2.8595,2.4087,10.8325,2.5693,2.3344,2.3018,12.3655,1.9569,3.2834,1.2012,14.7414,5.3632,8.0809,3.4138,10.3305,6.9792,7.0505,6.9893,3.9839,1.6991,4.8963,22,,MCI,0.08606,,,,0.3393,4.0418,3.8477,0.755,9.4929,1.8409,0.35723,3.5653,2.9581,47.9629,14.5685,233.9581,4.2833,5.0469,1.5597,2.0541,3.6102,7.6467,2.0343,2.8766,0.80831,6.4022,11.2508,13.5658,8.1684,2.2267,5.1107,1.7926,19.14,5.1217,3.882,1.112,2.7527,7.7634,14.6607,3.084,4.2711,3.7979,1.5624,1.7739,4.4412,11.2544,2.7125,2.3109,10.214,2.7315,2.3034,2.138,13.1514,2.1015,3.1708,1.1482,14.3724,5.4416,8.1414,4.0972,9.197,7.7471,7.0589,7.7156,3.6155,1.7308,4.6409,,,,,,,,,,,,,,,68,,,,156
+nG+FRE3T0MCI011,2.4492,2.7068,,70-79y,Other,,,13.4202,4.0379,1.9487,1.7419,2.7381,edsd,MCI,,F,,0.33274,3.6764,3.7658,0.68034,7.7214,1.1709,0.32412,3.1377,2.6666,36.4376,10.191,154.0648,3.0663,3.8492,1.2728,1.5085,2.6019,5.9644,1.5814,2.7257,1.3342,5.4696,9.187,37.4298,6.8663,1.7794,3.7555,1.2612,14.3917,5.2153,3.1974,0.95454,1.863,5.3046,11.7048,2.9221,3.6751,2.6457,1.0427,1.2051,3.8282,8.8843,2.7676,2.1509,9.5154,1.5521,1.9466,2.0115,10.0965,1.39,3.1621,1.2045,11.5294,4.1638,6.9437,3.0659,9.3627,5.6132,5.4562,5.9373,3.0175,1.1446,3.898,26,,MCI,0.06805,,,,0.27774,3.324,3.5266,0.69473,9.1202,1.2616,0.32133,3.0725,2.5466,36.4172,10.0498,155.2651,3.0057,4.4469,1.2982,1.5568,2.8257,6.0894,1.4756,2.9109,1.5747,5.3178,9.9444,33.1003,7.2921,1.7255,3.264,1.2713,15.1883,4.5609,2.8596,0.78443,1.8416,6.1378,11.9962,2.4359,3.7932,2.7034,1.1581,1.2687,3.2841,8.8094,2.4313,2.1467,8.1811,1.4476,1.9135,1.805,10.0649,1.4138,3.0289,1.1013,11.7282,4.2906,6.1036,3.6908,8.0252,5.8607,5.4358,6.0942,2.9302,1.221,3.7026,,,,,,,,,,,,,,,72,,,,157
+nG+MAI1T5AD001,1.5757,2.3068,,60-69y,AD,,,18.9252,4.9801,3.0753,2.6122,1.2911,edsd,AD,,F,,0.44067,4.5408,4.1267,0.88019,9.2765,1.6258,0.40948,3.4526,2.7018,52.6494,15.5261,219.2785,4.43,4.8355,1.7904,2.0075,3.1436,8.0257,2.0827,3.0509,0.5124,6.6334,11.8236,14.6384,8.318,2.4243,4.9116,1.7445,18.0051,5.9404,4.2291,1.0871,2.3342,6.7864,13.9405,3.3791,5.0557,3.141,1.495,1.541,4.0093,9.5555,3.3523,2.2242,10.3083,2.336,2.6499,2.2022,11.4055,1.7895,3.6176,1.2399,13.9897,5.5021,9.6603,3.7167,10.9122,7.2202,6.9834,8.3901,3.7323,1.5502,5.029,27,,AD,0.07369,,,,0.37607,3.6059,3.9349,0.82482,10.0626,1.8017,0.38667,3.8968,2.644,53.872,15.0856,221.6299,3.9951,5.4218,1.7632,1.7788,3.4443,8.3507,1.9001,3.2171,0.59347,7.2177,12.1398,13.2917,9.2299,2.179,4.4497,1.5996,19.992,5.4263,3.8506,0.99414,2.5931,7.4242,14.9589,3.0921,5.0949,3.1581,1.3825,1.5865,3.6601,10.6316,3.1327,2.2158,9.7278,2.0761,2.32,1.9903,12.038,1.7196,3.5165,1.1721,13.8315,5.1764,7.6402,4.8322,10.0453,7.1283,6.5606,8.3723,3.4248,1.4243,4.7463,,,,,,,,,,,,,,,63,,,,158
+nG+MAI1T5AD002,1.0318,1.4807,,70-79y,AD,,,17.3583,4.5978,2.5404,1.9428,1.1215,edsd,AD,,F,,0.40888,4.1994,4.0654,0.77891,7.351,1.4873,0.35483,2.7872,2.6642,35.1182,15.9507,251.0024,3.6019,3.9551,1.582,1.8498,3.6591,6.4082,1.991,3.0774,0.55654,6.401,9.4931,16.483,6.6771,2.2633,4.4597,1.6947,16.929,5.1034,3.6766,0.88176,2.0058,6.5477,12.6595,3.4097,3.8126,3.029,1.4755,1.7194,4.555,9.759,2.9952,2.021,9.912,2.1503,2.2908,1.8273,10.4426,1.5947,3.402,1.1791,12.7603,4.7897,7.8429,2.9731,9.2975,6.3187,7.1192,6.6838,3.9592,1.2918,4.8289,26,,AD,0.07462,,,,0.3468,3.8395,3.9149,0.71864,8.7601,1.7298,0.34181,3.0094,2.5021,34.758,15.5711,252.5968,3.5586,3.9622,1.4331,1.6044,3.8378,6.1247,1.8439,3.0671,0.48238,6.7628,9.3651,12.6832,7.1912,2.2388,4.6756,1.6526,16.9474,4.6992,3.5027,0.85424,2.3443,7.0561,12.7733,2.7636,3.8431,2.5408,1.4161,1.7408,4.171,9.8462,2.6072,2.0289,7.6773,1.9497,2.2627,1.7823,9.7976,1.5772,3.3185,1.1514,13.3067,4.6608,6.8468,3.2599,8.9939,6.2928,6.769,6.9028,2.8968,1.1629,4.5376,,,,,,,,,,,,,,,71,,,,159
+nG+MAI1T5AD003,1.705,1.9622,,-50y,,,,17.6387,4.7526,2.52,2.1308,1.3861,edsd,,,M,,0.42314,4.3081,3.9399,0.81016,8.1347,1.5194,0.38388,2.9452,2.5326,47.6829,14.0371,207.9718,3.767,4.2067,1.567,1.7423,3.3437,7.2039,1.8109,2.9435,0.65681,5.7875,10.5797,20.0874,7.2232,2.2204,4.6398,1.7147,16.7287,6.0264,3.8464,0.82726,2.2657,6.3866,11.7806,3.2287,3.92,3.0311,1.3216,1.5288,3.8688,8.9573,3.1161,2.1922,9.29,2.1015,2.4872,2.249,10.5419,1.7077,3.4098,1.2572,12.3796,4.6711,7.9679,3.8424,8.8204,6.1163,6.4959,6.9877,3.4013,1.4683,4.7567,,,,0.07652,,,,0.35435,4.1933,3.8871,0.79656,9.5858,1.5423,0.37563,3.3619,2.5624,47.1622,13.8184,212.4621,3.8478,4.6451,1.5856,2.0217,3.3185,6.7617,1.9662,3.2314,0.57386,6.4462,10.5718,13.6408,7.6048,2.0749,4.6107,1.6735,17.9356,5.7265,3.6053,0.84214,2.1702,6.9936,13.5463,2.9346,3.967,3.5858,1.5566,1.5159,3.5546,9.1,2.8873,2.1365,8.7289,1.8993,2.2717,1.8749,10.932,1.5158,3.3925,1.2576,12.5015,4.4457,6.9534,4.6318,9.3173,6.1392,6.3973,6.8507,3.2215,1.2798,4.4807,,,,,,,,,,,,,,,,,,,160
+nG+MAI1T5AD004,1.8958,2.2178,,70-79y,AD,,,19.5678,5.4007,2.9853,2.379,1.8546,edsd,AD,,M,,0.4871,5.6036,5.7224,0.90499,9.1351,1.8863,0.47576,2.883,3.3583,48.7685,15.9533,247.3031,4.8883,3.8089,1.7413,2.421,3.8796,7.6226,2.3896,3.5722,0.97101,5.8914,11.4554,22.1617,7.9027,2.6731,4.8542,2.2059,21.8722,5.6353,4.6553,1.1345,3.2326,8.4889,14.5863,3.1483,4.1715,4.0353,1.7048,1.8386,4.9801,11.1584,3.3923,3.1656,11.3752,2.6291,2.8106,2.7252,12.6592,2.2886,4.5059,1.6804,17.0719,6.8019,8.9635,3.0447,10.7754,8.0185,7.6321,8.4673,4.7198,1.9453,5.3312,27,,AD,0.10334,,,,0.4137,5.2218,5.378,0.84734,11.3124,2.0829,0.47859,3.1833,3.4732,47.9031,16.1704,253.0074,4.7146,4.8917,1.6065,2.3116,4.2434,7.2526,2.2274,3.5946,1.2025,6.6247,10.83,24.1001,8.6542,2.5203,5.1245,2.035,19.8375,5.4599,4.3885,1.2605,3.2179,8.9955,14.6247,2.757,4.2046,3.5676,1.7599,1.8651,4.426,11.6043,2.9699,3.0362,9.6495,2.7449,2.7574,2.3358,13.6971,2.2942,4.2836,1.6682,17.0532,6.3351,7.9376,4.2425,10.5029,8.0255,7.3684,7.7616,3.817,1.7493,4.9713,,,,,,,,,,,,,,,74,,,,161
+nG+MAI1T5AD005,2.0299,2.3465,,60-69y,AD,,,19.5486,5.6373,2.6963,2.4622,1.9387,edsd,AD,,M,,0.46245,5.4798,4.6628,0.99176,8.3848,1.8539,0.40732,2.7433,2.3573,50.7872,16.8369,232.5789,4.3741,4.8912,1.9168,2.0178,4.195,7.683,2.3465,3.4198,1.3385,6.1025,12.5233,33.4058,7.868,2.6036,4.9032,2.1414,20.2197,5.3124,4.4896,0.87229,2.3482,7.8587,14.4218,3.6473,4.3069,3.6293,1.5012,1.6123,4.4991,11.03,3.3438,2.4456,9.1361,2.3224,2.5487,2.5369,11.0059,2.2361,3.6648,1.3751,15.2893,5.7415,9.2829,3.282,9.5487,8.3479,7.0968,9.4371,3.753,1.7603,4.8368,25,,AD,0.07916,,,,0.41601,4.8855,4.3379,0.96199,9.9596,2.1383,0.41794,2.9305,2.7794,48.9778,15.7789,241.6973,4.0601,4.7321,1.8976,2.1795,4.2709,8.1937,2.2547,3.5718,1.083,6.5161,13.1236,27.5036,8.3467,2.5275,4.652,2.1684,21.455,5.0577,4.2634,0.97994,2.3328,9.1132,16.2031,2.8536,4.0602,3.4648,1.5781,1.8306,4.2702,11.3053,3.1457,2.5381,8.6843,2.0498,2.332,2.2234,11.6594,1.9236,3.8067,1.3388,15.111,5.8085,7.2171,3.9274,9.5689,7.5164,7.2876,9.4414,3.5681,1.5259,4.9821,,,,,,,,,,,,,,,67,,,,162
+nG+MAI1T5AD006,2.4335,2.2218,,70-79y,AD,,,20.1268,5.2348,3.1022,2.5519,2.8942,edsd,AD,,M,,0.54746,5.7879,4.7668,0.85018,10.561,1.8573,0.4332,3.2695,3.2523,51.2861,16.2637,252.6338,4.8636,4.5287,1.6145,2.048,4.2798,8.1912,2.3903,3.0642,1.2163,7.4712,12.487,37.1856,7.9495,2.7365,5.0665,2.2306,22.2087,6.6482,4.5311,1.0533,2.9104,8.8695,15.049,3.6819,4.3266,3.5868,1.7511,1.7506,4.7127,11.096,3.2482,2.6767,10.6017,3.0943,2.7361,2.5826,13.5991,2.9964,4.2102,1.4624,17.2658,7.0051,12.1,3.3719,12.0709,8.8782,7.2896,8.4324,4.2928,2.0186,5.3218,25,,AD,0.10009,,,,0.49233,5.7576,4.7142,0.92825,11.7868,2.0576,0.44719,3.7575,3.273,51.6551,16.7208,256.9331,5.1466,5.0479,1.7793,2.3046,4.3942,8.6182,2.3084,3.0267,1.4616,7.6351,13.7426,29.6633,9.1203,2.4956,5.7806,2.1622,21.8063,5.6039,4.3013,1.1743,2.8466,9.613,17.1001,3.2211,4.81,4.1181,1.7098,1.7185,4.4357,11.7102,2.8835,2.6785,10.7699,2.7622,2.6904,2.4697,13.1425,2.3442,4.1402,1.4581,16.9044,6.2486,9.3326,4.0299,11.5215,9.4883,6.9125,8.8066,4.3531,1.8468,5.0063,,,,,,,,,,,,,,,71,,,,163
+nG+MAI1T5AD007,1.7391,1.907,,-50y,,,,17.4546,5.1586,2.8517,2.2832,1.6214,edsd,,,M,,0.36694,4.695,4.3225,0.60177,8.244,1.4503,0.36239,2.577,2.301,45.9432,17.01,245.6422,4.4055,4.1873,1.137,2.0911,3.6497,6.0491,1.9938,2.7899,0.9345,5.9881,8.8146,19.2761,6.4703,2.3733,4.8081,1.6649,20.7362,6.0671,3.7859,1.021,2.3043,7.372,10.0887,3.2332,3.9102,3.2124,1.6288,1.5937,4.2632,10.1896,2.5634,2.4293,10.8337,2.8574,2.2751,2.2179,12.3044,2.2086,3.5345,1.3309,14.4246,5.3446,8.3733,3.1069,9.8662,5.3564,6.9609,5.3971,3.8991,1.8736,4.782,,,,0.08504,,,,0.26249,4.1466,3.7727,0.5318,8.3779,1.7262,0.33266,2.5383,2.0018,45.5865,17.1083,233.252,4.3591,4.144,0.93517,2.1084,4.0664,5.5047,1.8103,2.6149,1.9548,5.9305,7.4539,20.3675,7.1455,2.2146,4.8699,1.6167,20.1227,4.7168,3.4874,0.95904,2.3664,7.6513,8.7517,2.563,3.9364,3.4657,1.5158,1.6193,3.6881,9.7858,2.1625,2.2136,9.8412,2.56,1.9507,2.0199,10.7852,1.8179,2.8828,1.2083,13.8721,5.115,7.4343,3.1742,9.4049,5.8004,6.3507,5.0697,3.6364,1.5917,4.3547,,,,,,,,,,,,,,,,,,,164
+nG+MAI1T5AD008,2.4682,2.739,,70-79y,AD,,,17.922,5.265,2.8821,2.4095,2.5729,edsd,AD,,M,,0.36604,4.7127,4.1591,0.87696,8.4519,1.7188,0.37438,3.2791,2.7058,48.6387,14.4678,194.9133,3.9282,4.2722,1.6481,1.8186,3.4426,7.1229,1.9565,3.1593,1.7937,6.2,10.4962,28.5032,8.1808,2.5265,4.5385,1.6862,17.763,6.0297,4.0818,1.101,2.1921,7.0865,12.4296,3.1621,4.4058,3.61,1.4014,1.5705,4.5039,11.1281,3.231,2.379,11.2932,2.4362,2.5752,2.2546,10.7422,2.4288,3.3512,1.1799,13.6917,5.4085,8.6945,3.4278,9.8091,6.9515,6.3839,7.4953,3.7665,1.8181,4.7552,21,,AD,0.06532,,,,0.29011,4.4838,3.817,0.79543,8.2026,1.7765,0.33823,3.6043,2.3874,47.2982,14.2406,184.7169,3.7962,4.6282,1.3929,1.6638,3.5851,5.7859,1.8661,3.2506,2.2907,4.8656,8.1681,42.5487,9.1893,2.2787,4.4369,1.5707,18.3073,4.1514,3.6869,1.1226,2.6924,7.2281,10.9055,2.6258,3.8839,3.0878,1.4234,1.546,3.5982,9.8266,2.7192,2.3488,10.0515,2.1232,2.3369,1.9848,9.9662,1.8463,3.1413,1.0816,13.9848,5.184,6.9484,3.8669,8.9923,5.9591,5.785,6.904,3.3442,1.5501,4.5291,,,,,,,,,,,,,,,76,,,,165
+nG+MAI1T5AD009,1.7245,2.2655,,-50y,,,,17.3862,4.8149,2.5642,2.4087,1.656,edsd,,,M,,0.38686,4.7178,4.4386,0.8218,9.0173,1.4374,0.34951,2.5087,2.7291,47.7822,15.1274,205.0069,3.9608,3.7881,1.5399,1.8814,3.2018,7.6169,1.8748,3.014,1.1402,6.0351,11.5223,17.4876,7.9083,2.2612,4.6949,1.6743,18.131,6.4153,3.701,1.0312,2.3185,6.6947,13.8784,2.8618,4.6582,2.889,1.5309,1.501,4.4101,10.4332,3.3079,2.5682,10.5975,2.3339,2.4157,2.5326,11.555,2.0301,3.2877,1.189,13.2053,4.9523,8.6034,3.1632,9.6091,7.0146,6.4181,8.5218,4.0303,1.9768,4.7556,,,,0.07898,,,,0.3252,4.3727,4.1455,0.67283,8.7247,1.7011,0.33917,3.1923,2.5394,48.0518,14.4953,201.9539,3.5949,4.4671,1.3386,1.7367,3.6471,7.0512,1.8319,2.7931,1.157,6.0951,10.916,17.9141,8.454,2.2048,4.3358,1.7641,16.7345,4.56,3.4898,0.94289,2.2491,7.5088,13.8663,2.4894,4.4021,2.7745,1.5397,1.5111,3.8961,10.2987,2.7583,2.4475,9.1566,1.7678,2.4092,2.1409,11.4501,1.8684,3.2359,1.1289,13.7628,5.4234,7.5826,3.7333,9.6761,7.7549,6.1025,7.4883,3.2797,1.4217,4.4339,,,,,,,,,,,,,,,,,,,166
+nG+MAI1T5AD010,1.148,1.9214,,50-59y,AD,,,18.3313,4.735,2.4811,2.0089,1.0312,edsd,AD,,F,,0.38088,3.8435,3.5203,0.75879,7.3516,1.4382,0.33326,2.9833,2.824,45.3645,16.5949,213.0231,3.7558,3.7876,1.5133,1.7447,3.0175,6.0799,1.9966,2.8311,0.83641,5.1321,9.8992,11.6214,6.1539,2.0673,4.4513,1.5214,16.5433,5.1021,3.6909,1.0935,2.3651,5.9184,12.3447,2.8267,3.4264,3.0443,1.3449,1.6283,3.8719,8.4504,2.8156,1.9472,9.8247,2.0723,2.0155,1.9149,11.4156,1.7322,3.046,1.0927,13.3816,4.9149,7.4303,3.1218,8.262,6.4601,7.1641,7.0717,3.3844,1.36,4.6267,22,,AD,0.08345,,,,0.34906,3.536,3.364,0.78877,8.0897,1.5324,0.32516,3.2904,2.765,45.9086,16.2345,213.239,3.1507,4.4174,1.5878,1.6913,3.1813,6.3436,1.8387,2.9507,0.73456,5.6325,10.8135,11.1642,7.2899,2.0493,4.356,1.5278,16.6176,4.5417,3.401,0.85757,2.3197,6.4877,12.8679,2.5345,3.7565,3.1839,1.3357,1.5992,3.4532,8.9011,2.6348,2.0113,9.0376,1.9454,2.0528,1.7805,10.7359,1.6654,3.0212,1.0228,13.5181,4.5952,6.673,3.8302,8.1985,6.6855,6.861,7.5813,3.2024,1.3028,4.3656,,,,,,,,,,,,,,,52,,,,167
+nG+MAI1T5AD011,2.0007,3.1127,,-50y,,,,15.8051,4.4944,2.4677,2.0488,1.6027,edsd,,,F,,0.35374,5.0481,4.5659,0.74291,8.714,1.5351,0.36412,3.0072,2.7129,42.4345,11.2156,186.0515,4.1895,4.1242,1.4211,1.8144,3.9277,6.9971,2.0894,3.0211,1.7636,6.2974,10.3938,25.7898,8.0496,2.3127,5.0957,1.8793,16.6234,5.3635,3.9652,1.1307,2.393,6.8858,12.6209,3.2931,4.5486,2.7484,1.404,1.4291,4.4336,10.1024,3.0252,2.6984,11.6356,2.387,2.5789,2.7803,12.404,2.1074,3.3894,1.2473,13.7966,5.0538,8.5755,3.2044,9.5354,7.4454,6.5673,7.4424,3.2866,1.7669,4.5147,,,,0.09045,,,,0.32753,4.1055,4.0828,0.73419,10.0401,1.8186,0.36691,3.1609,2.5676,42.0515,11.5206,188.2278,3.7899,4.1616,1.4342,1.7646,3.6364,7.4195,2.0422,3.1622,1.1466,6.8547,11.0199,22.0024,8.0981,2.3421,4.7105,1.8071,16.9497,6.0676,3.8541,0.9974,2.2653,8.4927,13.6382,2.7339,4.3364,3.3672,1.5783,1.5157,3.9462,10.1977,2.839,2.379,9.0906,1.9538,2.4206,2.1272,12.1226,1.8846,3.441,1.2872,13.0712,5.152,7.8793,4.0913,9.484,7.8856,6.3213,7.5046,3.3673,1.4361,4.3009,,,,,,,,,,,,,,,,,,,168
+nG+MAI1T5AD012,2.0518,1.7091,,70-79y,AD,,,18.4658,4.6172,2.3701,2.0275,2.0058,edsd,AD,,F,,0.32269,4.5631,4.2081,0.53621,8.3337,1.6155,0.31776,2.4011,2.5904,43.5792,14.9308,219.8805,4.3539,3.4888,1.0462,2.0412,3.3823,6.2158,1.9683,2.3086,1.3954,5.2755,9.1041,24.3512,6.7004,2.4051,4.4826,1.6642,17.7766,4.9258,3.8426,1.0283,2.3894,6.6487,11.9291,2.6167,3.4211,3.3094,1.4684,1.5956,4.1238,9.7817,2.6002,2.4977,10.4446,2.1041,2.1522,2.3843,10.8191,1.7707,3.3507,1.1247,12.771,4.5201,7.7141,3.0594,9.8225,6.3516,6.4279,6.4223,3.7933,1.4363,4.6251,22,,AD,0.07814,,,,0.32063,4.1339,4.2001,0.68661,9.5089,1.8134,0.33844,2.5845,2.7705,44.1127,14.8597,225.6701,3.7405,4.1195,1.3806,2.061,3.7229,6.8605,1.9449,2.6549,0.87142,5.4261,10.6744,19.5343,7.1372,2.2261,4.6893,1.7104,18.0906,4.3788,3.7639,1.1105,2.3443,7.5541,14.1593,2.2886,3.5627,3.7759,1.3933,1.566,3.75,9.8708,2.5383,2.6472,8.52,2.1797,2.0952,2.2952,10.3723,1.7839,3.4568,1.0849,13.7444,4.6765,7.4631,3.7281,9.4093,7.3081,6.3053,7.7307,3.4533,1.4672,4.4157,,,,,,,,,,,,,,,77,,,,169
+nG+MAI1T5AD013,1.7335,2.3497,,-50y,,,,18.842,5.1093,2.9139,2.5086,1.9452,edsd,,,M,,0.40036,4.9722,4.2475,0.71512,7.6735,1.6047,0.39049,3.1932,2.5448,50.5032,15.6924,220.1968,4.4796,4.5253,1.4232,1.9526,3.4419,7.0382,2.0176,2.8482,0.9762,6.1346,11.0005,23.7469,7.8092,2.5254,4.8373,1.7626,19.4487,5.2485,3.7044,0.93278,2.346,7.1578,12.9319,3.4953,4.4023,3.337,1.5516,1.565,4.196,9.9526,2.9862,2.3371,10.1649,2.3303,2.6031,2.444,12.6403,2.1318,3.3121,1.3923,14.8205,5.1325,7.6848,2.992,8.8356,7.4943,6.3334,7.4268,3.5155,1.7118,4.8951,,,,0.09024,,,,0.38019,4.514,4.466,0.86217,8.9804,1.6058,0.39953,3.0589,2.4479,49.7958,14.9069,226.8225,4.0521,4.2944,1.8249,2.1566,3.635,7.393,1.8973,3.3497,1.0524,6.41,11.8917,18.4747,8.3547,2.2932,4.8037,1.5732,18.7979,4.6092,3.4496,0.91355,2.4858,7.379,14.489,2.5911,4.3358,3.5255,1.6686,1.6076,4.2379,10.4514,3.0314,2.5593,8.407,2.2073,2.4891,2.236,11.6364,1.7366,3.4331,1.3351,14.2447,5.1077,7.1094,3.5453,9.3013,7.1836,6.4035,8.7804,3.4457,1.4867,4.7561,,,,,,,,,,,,,,,,,,,170
+nG+MAI1T5AD014,2.3493,2.1091,,60-69y,AD,,,18.2488,4.7782,2.7552,2.3524,1.6649,edsd,AD,,M,,0.40487,5.0318,4.0762,0.75988,8.5417,1.6986,0.38924,2.8557,2.6901,46.8547,15.9902,248.2285,4.0983,4.3319,1.446,1.87,3.4137,6.7408,2.3139,2.8485,1.1687,5.6291,11.0449,23.0601,7.1498,2.5233,4.7091,1.9772,20.1679,5.4664,4.4134,1.1249,2.723,7.5851,13.678,2.9998,3.8014,3.2817,1.4969,1.6217,4.5911,10.6669,2.8618,2.3242,10.647,2.1325,2.6159,2.4456,10.7097,1.7056,3.368,1.4052,14.5999,5.5968,7.7832,3.1863,9.7778,6.6764,6.9487,8.1635,3.8429,1.5925,4.9841,22,,AD,0.08981,,,,0.36072,4.3327,4.1953,0.84773,10.3104,2.0285,0.38895,3.3733,2.7183,46.4549,15.7885,259.9497,4.007,4.8917,1.5953,1.9271,3.9312,7.4396,2.2963,3.23,0.75266,6.6615,12.3722,17.1038,7.8219,2.5661,4.9935,1.9088,19.9341,4.7554,4.3291,1.1161,2.7166,8.5083,15.5069,2.686,4.1956,3.751,1.6176,1.703,4.0128,10.9989,2.7635,2.4064,9.9635,2.136,2.6695,2.3008,11.8631,1.8315,3.3727,1.378,15.5207,5.3515,7.9016,3.7048,10.8882,7.3975,6.7379,9.073,3.8534,1.5652,4.8238,,,,,,,,,,,,,,,61,,,,171
+nG+MAI1T5AD015,2.0909,1.9842,,-50y,,,,17.0245,4.9096,2.6663,2.1403,1.5952,edsd,,,M,,0.39511,5.0941,4.1751,0.86541,9.3998,1.4819,0.35503,2.6323,2.609,46.1531,14.1589,226.3817,4.0468,4.0817,1.5768,1.9224,3.3934,7.3371,1.9045,3.1412,0.98997,6.4182,11.1452,20.5697,6.7693,2.3518,4.8757,1.7523,18.4521,5.711,3.7584,1.0506,2.5031,7.2627,13.9634,2.764,3.8354,3.2242,1.5647,1.7385,4.106,10.4257,3.1765,2.2966,11.7131,2.5405,2.5225,2.3763,12.057,2.0261,3.4552,1.189,14.0051,6.0123,9.6918,2.7383,9.5733,7.7569,6.6249,8.2145,3.5148,1.7203,4.6676,,,,0.08037,,,,0.35116,4.5652,3.8806,0.83918,10.7304,1.7309,0.36136,2.6925,2.6115,45.3977,13.5201,228.1531,4.2634,4.2877,1.587,2.0149,3.6456,7.0984,2.0209,3.134,1.0017,6.7361,11.1006,17.501,7.3675,2.205,5.0172,1.7953,17.5666,4.822,3.7478,1.0923,2.3336,8.0824,14.516,2.1188,3.9088,3.0972,1.5709,1.6668,3.9776,10.746,2.8414,2.2006,11.1992,2.2039,2.2365,2.0833,11.9035,1.7268,3.4495,1.2283,15.0454,5.3303,8.0641,3.3494,10.2284,7.2625,6.2729,8.3403,3.5609,1.445,4.4646,,,,,,,,,,,,,,,,,,,172
+nG+MAI1T5AD016,1.7692,2.2777,,-50y,,,,18.7864,4.4861,2.5115,2.0817,1.6943,edsd,,,M,,0.39117,4.8586,4.022,0.70602,8.5795,1.6665,0.35331,3.1567,2.7995,45.7024,15.6678,231.8286,4.3056,4.0945,1.5204,2.0354,3.4071,7.2824,2.1497,2.7936,0.65395,6.5758,11.7124,15.7954,7.7475,2.5573,4.626,1.9573,19.8127,5.0735,4.3668,1.0262,2.6949,7.7799,13.963,3.0392,4.4682,3.4886,1.5858,1.6711,4.3723,10.3181,3.0222,2.1703,11.2482,2.7322,2.6018,2.4219,12.6866,2.316,3.4574,1.1654,14.2793,6.1762,8.9756,2.9199,10.2392,7.573,7.1101,7.8873,3.7006,1.7362,4.9371,,,,0.07654,,,,0.34273,4.1278,3.8533,0.59918,8.9771,1.8904,0.3396,3.617,2.6143,45.9484,15.0423,229.3533,3.9775,4.9487,1.3058,2.0843,3.6771,7.1384,2.0543,2.6107,1.0608,5.9028,11.4941,19.6921,8.3597,2.3599,4.4371,1.7934,19.1785,4.0075,4.1537,1.1779,2.75,8.9869,12.9644,2.3636,4.265,3.0623,1.72,1.7228,3.7771,10.2264,2.6071,2.2922,9.9668,2.4414,2.4519,2.1686,12.44,2.1247,3.3414,1.0663,15.9285,6.3356,7.467,4.0782,9.8733,7.3246,6.8344,7.4054,3.708,1.6079,4.7557,,,,,,,,,,,,,,,,,,,173
+nG+MAI1T5HC001,0.98147,2.0464,,60-69y,CN,,,15.5975,4.7538,2.3526,2.1388,0.98689,edsd,CN,,F,,0.42741,4.7647,3.7187,0.85866,9.1054,1.5534,0.3643,3.2148,2.8676,45.9534,14.0108,218.0444,3.8891,4.5931,1.6122,1.9606,3.1335,7.7943,2.0981,3.0832,0.40026,6.3359,12.039,10.1573,7.8698,2.3498,4.7222,1.8282,15.6377,5.5351,3.8902,0.97047,2.6527,7.3793,14.9584,3.2316,4.451,3.4183,1.4114,1.4314,4.4367,10.6416,3.1993,2.0334,11.4362,2.2962,2.4914,2.3093,12.9433,2.0222,3.3237,1.1575,15.2206,5.4435,8.9577,3.4129,10.1548,7.64,6.9676,8.135,3.6908,1.5839,4.4731,30,,,0.07021,,,,0.3887,4.1325,3.5875,0.86589,10.8312,1.8843,0.37323,3.4125,2.9099,45.7527,13.8725,222.1523,3.7412,5.1811,1.6748,1.9482,3.6814,7.7699,2.13,3.2916,0.54862,6.9335,12.6919,9.0393,8.2861,2.2869,4.4276,1.8624,18.6458,5.7511,3.8941,1.0391,2.7321,8.5302,15.1999,2.6114,4.5945,3.9426,1.5578,1.4538,4.0284,10.6378,2.8849,2.1012,9.7161,2.2849,2.3778,1.9496,12.0438,2.1118,3.4345,1.0987,13.6246,5.6201,8.4254,3.9845,9.798,8.0056,6.7328,7.8127,3.3345,1.3738,4.2378,,,,,,,,,,,,,,,64,,,,174
+nG+MAI1T5HC002,1.098,2.0007,,-50y,,,,15.9805,4.978,2.2839,2.1792,1.0822,edsd,,,F,,0.35496,4.1523,3.2997,0.761,9.2931,1.5505,0.34264,2.8318,2.5944,42.1947,13.8789,218.9022,3.7515,3.7986,1.4042,1.7317,3.2115,6.6439,1.99,2.9353,0.42583,6.2167,10.8075,12.5428,6.6851,2.2386,4.2148,1.6383,17.2184,5.9096,3.9021,0.94805,2.3509,6.6941,14.0834,3.0329,3.7679,3.3111,1.3787,1.3106,4.1078,10.1722,2.7655,1.9934,10.8993,2.012,2.1808,2.0734,12.0145,1.6876,3.2494,1.0943,13.9016,5.3982,7.9899,2.932,10.3844,7.3087,6.9922,6.8798,3.5508,1.4045,4.3463,,,,0.07305,,,,0.32059,3.6715,3.3852,0.77445,10.3245,1.7009,0.33672,3.1924,2.6216,41.9111,13.4103,222.8878,3.6395,4.5684,1.4866,1.9458,3.4031,6.6772,2.0809,3.0204,0.45832,5.8726,10.5808,10.239,7.151,1.936,4.057,1.5869,17.4987,5.4019,3.754,0.98014,2.3305,7.3052,13.8189,2.5237,3.6224,3.7248,1.2483,1.3347,3.6985,10.0636,2.5036,2.0205,10.0432,1.9492,1.8912,1.8649,11.5732,1.7331,3.23,1.0864,14.0331,5.3756,7.6472,4.1137,10.1367,7.3547,6.6087,7.07,3.1222,1.3829,4.1713,,,,,,,,,,,,,,,,,,,175
+nG+MAI1T5HC003,1.7884,2.0487,,+80y,CN,,,18.8247,5.3454,2.8875,2.4273,1.4859,edsd,CN,,M,,0.45254,4.7775,4.4212,0.85904,8.914,1.6461,0.40534,3.0459,3.0203,51.2977,15.5489,201.4517,4.4899,4.3278,1.656,2.0336,3.7527,7.929,2.1913,3.2341,0.65957,6.0011,12.9958,19.3908,7.7697,2.5738,4.7967,1.7804,20.0068,6.1301,4.3458,1.1695,2.7449,6.8283,15.709,3.392,4.3563,3.353,1.7338,1.523,4.434,10.3832,3.2634,2.4725,11.1282,2.8493,2.8316,2.5945,13.512,2.5636,3.5025,1.4414,15.5481,5.3845,9.1169,3.4548,11.6074,7.8012,6.8129,8.2217,4.0027,2.0395,4.8045,28,,,0.0765,,,,0.42506,4.0849,4.5114,0.91497,10.6387,1.8979,0.41953,3.2136,3.3825,50.7498,15.6096,205.3901,4.2331,4.8364,1.6968,2.2107,3.842,8.22,2.0653,3.619,0.96487,7.231,13.5076,17.0473,8.9171,2.456,4.5029,1.8048,20.2497,5.4456,4.0791,1.104,2.5889,8.0218,17.4594,2.7271,4.4433,3.8191,1.7914,1.5573,4.2111,11.2934,3.1871,2.4836,9.8726,2.2996,2.7909,2.3217,12.4228,2.1391,3.4333,1.3438,14.678,5.3134,8.2728,4.4519,10.2362,8.2643,6.6723,8.9394,3.9849,1.7588,4.6548,,,,,,,,,,,,,,,85,,,,176
+nG+MAI1T5HC004,1.0778,2.3561,,-50y,,,,21.4302,5.7021,2.8567,2.2812,1.3404,edsd,,,M,,0.52599,4.8177,3.8022,0.93694,8.6354,1.6399,0.3795,3.5363,3.5314,51.7551,18.6924,270.7394,4.0155,4.6995,1.8004,1.845,3.448,7.3417,2.094,3.3957,0.46197,6.5946,11.9217,11.7896,7.8045,2.3452,4.5753,1.9334,19.015,6.7995,4.1335,1.2448,2.8358,7.0902,13.9313,3.5934,4.1718,3.2747,1.3905,1.8178,4.1885,10.0897,3.2913,2.2624,11.6908,2.4296,2.4188,2.3368,12.417,2.1825,4.1583,1.1288,14.7828,5.566,8.5741,3.3599,10.2812,7.245,8.0711,8.1909,4.0589,1.6959,5.504,,,,0.07859,,,,0.47365,4.3893,3.8379,0.94615,9.9073,1.8675,0.37884,3.6251,3.6181,52.4729,18.3548,270.7593,3.9933,4.9417,1.827,1.8087,3.7271,7.5841,2.2056,3.538,0.72781,6.5615,12.0794,12.2649,8.7503,2.2557,4.2137,1.8424,17.8055,5.0435,4.1219,1.0728,2.6667,8.3722,14.54,2.8425,4.4684,3.2752,1.5199,1.8661,4.0397,10.0004,2.9862,2.3773,10.2644,1.9543,2.2669,2.2822,11.5471,1.7924,4.1009,1.1179,16.0953,5.6498,7.8137,4.4239,9.5575,7.8639,7.4638,8.4612,3.4042,1.6169,5.2468,,,,,,,,,,,,,,,,,,,177
+nG+MAI1T5HC005,1.2991,1.9365,,70-79y,CN,,,17.0633,4.4112,2.2922,2.2016,0.99997,edsd,CN,,F,,0.38521,4.6895,3.7334,0.81896,9.431,1.4915,0.35622,2.5355,2.1076,42.6192,14.195,204.3392,3.6307,3.9864,1.6097,2.0122,3.6495,6.6506,2.2582,2.9821,0.39153,5.9829,10.1853,7.6527,6.8608,2.126,4.5256,1.8038,18.8721,5.7951,3.9017,0.78936,2.2308,7.2392,13.3618,3.1216,4.0475,3.3711,1.4428,1.4886,3.9948,9.3243,2.9753,1.8908,9.4848,2.1503,1.9802,2.0488,9.9496,1.8636,3.136,1.1114,13.8689,5.198,8.9708,2.6808,8.2383,7.3967,6.5669,7.2224,4.115,1.244,4.5684,29,,,0.06768,,,,0.34606,3.6412,3.7258,0.79662,9.4821,1.6658,0.35834,2.7563,2.143,42.8216,13.5202,203.8109,3.344,4.3022,1.5363,1.7751,3.7123,6.7149,2.0468,3.0849,0.41352,6.2286,10.4622,7.9238,7.4506,2.1271,4.4139,1.7298,18.1155,4.978,3.6249,0.93322,2.4239,8.1367,13.4647,2.5707,3.9769,3.652,1.4826,1.4726,3.6622,9.4502,2.6687,2.0409,8.2043,1.8362,2.0613,1.865,10.0062,1.6388,3.1779,1.048,13.7241,5.1314,7.5447,4.0434,8.5994,7.546,6.2558,6.9409,3.7283,1.1903,4.3434,,,,,,,,,,,,,,,75,,,,178
+nG+MAI1T5HC006,2.154,1.814,,70-79y,CN,,,21.8183,5.3437,2.9397,2.4099,1.7692,edsd,CN,,M,,0.43857,4.9705,4.5935,0.9122,9.2381,1.5579,0.45297,3.6488,3.1553,52.9312,19.2974,281.4037,4.6128,4.6551,1.8925,2.0081,3.5871,8.4465,2.3001,3.2736,0.67293,6.819,13.5068,17.5087,7.9282,2.4614,4.7795,1.9723,19.5969,6.3374,4.2597,1.1342,2.877,7.1,16.1211,3.4271,4.7609,3.1865,1.5286,1.8463,4.4808,10.8777,3.446,2.7462,11.2548,2.8754,2.5482,2.8263,13.2622,2.5189,4.3575,1.4668,14.8471,5.9718,8.6043,3.5834,10.5103,7.5284,7.9311,9.2947,4.0213,2.0174,5.7709,27,,,0.08748,,,,0.37982,4.3991,4.571,0.9583,10.4568,1.7178,0.42654,4.0557,2.9664,51.4541,18.656,284.4215,4.5117,5.2486,1.931,2.0317,3.9597,8.1707,2.2986,3.5215,0.69059,7.0212,13.0245,13.6796,8.7891,2.3287,4.5169,1.9726,19.7097,5.0409,4.1427,0.96612,2.8094,8.2119,17.2692,3.0358,4.6508,3.7655,1.6416,1.8734,4.0659,11.3153,3.3221,2.8744,9.2692,2.7526,2.5634,2.5621,11.8337,2.3877,4.2333,1.4011,14.7021,5.8464,8.2241,3.8339,9.9047,8.618,7.5919,9.3517,4.0397,2.0162,5.486,,,,,,,,,,,,,,,71,,,,179
+nG+MAI1T5HC007,1.7737,2.6169,,60-69y,CN,,,20.0511,5.1312,3.1238,2.6203,1.3153,edsd,CN,,M,,0.42992,4.6834,4.193,0.90002,9.0159,1.5377,0.39569,3.107,2.6265,56.7564,17.4503,216.9257,4.1787,4.528,1.875,2.0063,3.4268,7.9662,2.4181,3.3067,0.68711,6.5311,11.5464,17.4652,7.9168,2.241,4.5076,1.8544,17.2614,6.6039,4.2172,0.93811,2.3054,7.2445,13.499,3.3266,4.8549,2.992,1.486,1.5431,4.0597,10.129,3.3939,2.3784,11.8499,2.3823,2.3246,2.3891,12.7485,2.0407,3.7359,1.3692,14.0278,5.799,9.3872,3.8516,10.6756,7.4204,7.053,7.9776,3.3893,1.5959,5.0523,30,,,0.07793,,,,0.38142,4.3058,4.0353,0.88504,9.8631,1.7418,0.39473,3.4253,2.7956,56.2714,16.2934,218.6139,3.8671,5.1768,1.7881,1.9656,3.801,8.0084,2.2039,3.4118,0.45382,6.5857,11.6498,11.8451,8.8478,2.1655,4.698,1.8468,17.8334,4.7311,3.77,0.91698,2.1777,7.8807,13.5532,3.0377,5.0191,3.182,1.5778,1.5439,3.8164,10.3762,3.0328,2.2177,10.313,2.0498,2.3019,2.1073,11.8972,1.845,3.6542,1.2053,14.6592,5.5635,7.9751,4.6594,9.1906,7.744,6.8947,8.383,3.4988,1.5578,4.8098,,,,,,,,,,,,,,,68,,,,180
+nG+MAI1T5HC008,0.94821,1.7785,,-50y,,,,16.7411,4.0109,2.5137,2.1104,1.1615,edsd,,,F,,0.44694,4.3787,3.8088,0.78801,8.3953,1.6815,0.38113,2.8543,2.8133,43.1576,13.0713,204.8485,3.806,3.9562,1.485,2.0164,3.2451,6.7178,2.1075,3.0526,0.352,6.3976,10.043,11.6928,6.9718,2.559,4.5037,1.7607,17.8216,5.345,4.2557,1.0924,2.4547,6.5407,12.722,2.9477,4.2453,3.7356,1.6183,1.3605,4.019,9.8994,2.9855,2.1073,10.9721,2.6416,2.6789,2.1285,11.3597,2.1929,3.3801,1.188,13.1603,4.8502,8.7262,3.1865,9.8936,6.5889,6.7714,6.2556,4.1668,1.7284,4.4371,,,,0.08687,,,,0.39144,3.9944,3.8964,0.81082,9.5333,1.7692,0.37037,2.8804,2.7826,42.862,12.7767,207.1482,3.941,4.1008,1.4659,2.0688,3.5073,6.6539,1.9519,3.1805,0.36495,5.9275,10.1011,7.6903,7.4103,2.3463,4.2888,1.7108,17.1072,4.6626,3.8145,0.90069,2.3321,7.1601,12.738,2.565,3.9511,4.2019,1.745,1.3718,3.6701,9.5987,2.7231,2.1873,9.2486,2.7577,2.4806,2.154,10.8445,2.1174,3.339,1.1324,13.7849,4.7457,8.062,4.1595,9.3888,6.6847,6.4579,7.0187,4.2047,1.7576,4.2416,,,,,,,,,,,,,,,,,,,181
+nG+MAI1T5HC009,1.1381,2.1155,,60-69y,CN,,,19.4859,5.1803,2.9146,2.359,1.2048,edsd,CN,,M,,0.46912,4.9365,4.3122,0.94418,8.3359,1.6953,0.40324,3.8477,2.9254,50.2409,16.4775,250.2604,4.2808,5.5077,1.8557,2.0271,3.4814,7.929,2.0647,3.3814,0.47793,7.0976,12.3832,12.4534,8.509,2.5896,4.9916,1.8644,22.1759,6.6359,4.0524,0.95426,2.4728,7.2562,14.59,3.6229,4.8903,3.5506,1.4998,1.5812,4.5827,11.103,3.4402,2.2083,11.7492,2.253,2.4362,2.6861,13.2247,2.0071,3.7431,1.2136,15.0348,5.8195,8.8807,3.9216,9.9701,8.5547,7.645,8.8122,4.1146,1.7775,5.26,28,,,0.08168,,,,0.3977,4.8714,3.9685,0.95725,10.7095,2.076,0.4067,4.2051,2.9449,49.3724,15.8199,251.5014,3.7037,5.9264,1.8859,2.0114,4.0191,8.1211,2.2758,3.5679,0.70599,7.4279,12.6562,8.5334,9.2206,2.5202,5.1655,2.0041,19.6171,5.7379,4.1763,0.88085,2.344,8.371,15.2634,3.4887,4.6594,3.9394,1.6825,1.57,4.1503,10.6337,3.1361,2.1718,9.5072,2.1838,2.5229,2.1977,13.3668,1.9862,3.7761,1.1771,14.5903,5.2916,7.9217,5.0085,10.0179,7.8592,7.2574,8.7938,3.9358,1.49,4.9907,,,,,,,,,,,,,,,67,,,,182
+nG+MAI1T5HC010,1.7635,1.9242,,-50y,,,,20.181,4.9609,2.9766,2.2871,1.8655,edsd,,,M,,0.45747,4.9562,4.5486,0.94616,9.7493,1.7032,0.40908,3.5196,3.2469,49.353,16.7592,247.7543,3.9955,4.9143,1.8532,2.0053,3.5467,7.7076,2.2119,3.6322,0.56756,7.5209,12.9047,18.1571,8.2718,2.4912,5.3445,1.8556,21.0272,6.1152,4.2769,1.0074,2.5666,7.6204,15.9462,3.8068,4.9493,3.4049,1.5814,1.7879,4.7499,12.1194,3.3717,2.5174,11.9908,2.2755,2.545,2.3794,11.9528,1.9472,4.1041,1.2777,15.1376,5.1896,8.6417,3.7044,11.5009,7.8346,7.627,8.5867,4.0681,1.6522,5.4334,,,,0.08496,,,,0.41653,4.6817,4.3715,0.9256,10.4015,1.8852,0.39288,3.7988,3.209,50.1687,16.6933,247.6455,3.776,5.6182,1.7475,2.1354,4.1515,7.759,2.2117,3.7437,0.71498,7.1181,12.4866,17.2587,8.7067,2.5304,5.4808,1.8856,19.2028,4.8565,4.0342,1.2084,2.8439,7.957,15.7167,3.2091,4.7296,3.3535,1.6749,1.7868,4.2029,11.8649,3.1553,2.5376,10.8847,2.4729,2.4394,2.1619,13.6885,2.1539,3.9642,1.2279,15.8485,5.3815,8.5693,4.4704,11.2573,8.6611,6.9086,8.5351,4.0489,1.5416,5.0292,,,,,,,,,,,,,,,,,,,183
+nG+MAI1T5HC011,1.8751,1.9879,,70-79y,CN,,,21.6469,5.2513,2.5881,2.2732,1.4963,edsd,CN,,M,,0.46676,5.0484,4.6632,0.88892,9.553,1.712,0.42318,3.6806,2.96,44.2208,17.0148,252.8184,4.3732,5.0088,1.5992,2.0404,3.6952,7.4774,2.1507,3.2358,0.44373,7.8621,12.2345,16.2363,8.0698,2.6652,5.164,1.9713,19.5364,6.1711,4.5705,1.206,2.8093,7.8366,15.5091,3.9967,5.3126,3.5357,1.7466,1.6728,5.0036,11.7641,3.2123,2.3709,12.3978,2.8163,3.1128,2.3682,12.4278,2.5498,3.8888,1.3784,16.7898,6.0978,9.8165,3.8774,11.9597,8.3032,7.7073,7.8021,4.5021,1.8456,5.4219,30,,,0.08878,,,,0.41207,3.9664,4.3956,0.90876,10.91,2.1787,0.41984,4.1066,2.7823,44.9029,16.5911,252.5748,4.6103,5.9936,1.6726,1.9532,4.1399,7.6692,2.1663,3.3869,0.6035,7.0775,12.869,13.5037,9.89,2.6452,4.9078,2.0802,20.2924,5.5313,4.2565,1.1911,2.5579,8.9175,15.7293,3.4106,4.8417,4.0695,1.7615,1.7266,4.7803,11.9644,3.0672,2.3431,10.2478,2.2238,3.0954,2.0673,12.4988,1.9471,3.8116,1.3277,15.5987,5.3621,8.188,4.4744,11.0118,7.2851,7.1371,8.4258,4.0204,1.4765,5.179,,,,,,,,,,,,,,,70,,,,184
+nG+MAI1T5HC012,2.2224,1.6965,,70-79y,CN,,,19.0873,5.7295,2.7544,2.2946,1.7409,edsd,CN,,M,,0.40661,4.7492,4.4273,0.87556,8.2205,1.6626,0.41673,3.0991,2.7414,47.9934,16.3434,212.556,4.6945,4.2253,1.7159,2.0577,3.4205,7.0588,2.2221,3.2225,0.6879,6.6269,11.3456,15.3171,7.7043,2.5762,4.542,1.7233,18.5906,6.2031,4.4698,0.97539,2.2393,7.1587,14.4608,3.5111,4.4226,3.2132,1.6339,1.5566,4.5228,11.5563,3.1607,2.5011,10.2569,2.6226,2.7605,2.6698,10.7284,2.3556,3.7459,1.379,14.1044,5.0398,7.9325,3.4312,9.1445,7.5535,6.4205,8.1949,4.2327,2.0204,4.5839,26,,,0.07799,,,,0.36502,4.3584,4.197,0.83986,9.2679,2.0187,0.4061,3.58,2.6719,48.6069,15.861,217.423,4.5316,4.9808,1.7484,2.1347,3.8636,7.1379,2.097,3.4839,0.93131,6.5811,12.5051,13.6761,8.2754,2.5362,4.4352,1.7393,18.5704,4.4528,4.2446,0.89143,2.212,8.2987,16.0082,2.9533,4.2793,3.9737,1.6906,1.6264,4.2651,11.011,3.0453,2.6554,9.0679,2.2493,2.6458,2.3573,10.4106,1.8814,3.636,1.3407,14.027,5.0383,7.6196,4.0175,8.6424,7.0984,6.0941,8.7133,4.1771,1.6713,4.4021,,,,,,,,,,,,,,,78,,,,185
+nG+MAI1T5HC013,1.4607,1.9231,,60-69y,CN,,,17.406,4.0998,2.3025,2.0744,1.2092,edsd,CN,,F,,0.45566,5.731,4.076,0.90411,8.6071,1.7596,0.42152,3.1292,2.8802,45.8795,14.8007,232.7609,3.9014,4.475,1.6546,1.8507,3.8123,7.6282,2.286,3.1557,0.46058,6.9906,11.2161,11.8938,7.7402,2.5102,5.7163,2.1694,20.2757,5.9604,4.3732,1.1174,2.7156,7.5771,14.5335,3.4704,4.5027,3.2356,1.4553,1.6993,4.0821,10.5003,3.1251,2.3017,11.0553,2.1431,2.5672,2.2468,11.5403,1.6008,3.9605,1.4156,14.2032,5.6403,9.2041,3.6985,10.2386,7.2026,7.1303,8.1809,4.0873,1.3387,4.7287,29,,,0.07821,,,,0.41859,4.8787,3.8483,0.89998,9.9345,1.9942,0.42467,3.2468,2.8799,44.969,14.2743,236.2717,3.9105,4.7931,1.7919,1.8272,4.2276,8.2799,2.4142,3.2398,0.37104,7.1576,12.0676,8.2125,7.9314,2.3789,5.682,2.1784,19.5598,5.1827,4.4043,0.88156,2.2727,8.7348,14.5391,2.9965,4.3781,3.3855,1.5772,1.7132,4.0842,10.6008,2.9001,2.198,9.9316,2.2372,2.5913,2.0195,10.9358,1.8903,4.0077,1.3251,15.3248,5.4292,8.2587,3.9312,9.8516,7.3592,6.6523,8.1233,3.5289,1.3967,4.5341,,,,,,,,,,,,,,,69,,,,186
+nG+MAI1T5HC014,2.1889,2.6021,,60-69y,CN,,,17.2224,4.7007,2.9126,2.1753,2.1928,edsd,CN,,M,,0.41851,5.2078,4.241,0.82955,8.7108,1.5591,0.37971,2.8329,2.7623,45.4351,14.4429,216.6593,4.1877,5.0822,1.6486,2.1194,3.6603,6.7324,2.2285,3.0623,1.1149,6.4085,10.3628,33.0922,7.7332,2.4718,4.7448,1.7961,18.6825,6.0827,4.1579,1.0284,2.5911,7.2885,13.2512,3.2935,3.9924,3.7512,1.6998,1.5667,4.2777,11.7941,3.1462,2.5549,9.3482,2.1322,2.2691,2.45,11.2645,1.7153,3.703,1.3543,13.6267,5.6455,7.8923,3.5227,9.905,6.7763,6.8546,7.2682,4.6862,1.6946,4.8185,29,,,0.06534,,,,0.37359,4.5861,4.0996,0.85597,9.768,1.922,0.36925,2.7547,2.6433,45.9326,13.8923,219.8081,3.6763,4.9072,1.6245,2.0558,3.9087,6.7859,2.1062,3.2315,1.3521,6.2496,10.3745,27.8541,7.9685,2.5695,4.4131,1.9441,18.6028,5.1992,3.8992,0.90442,2.2517,8.3811,13.0423,2.7022,3.7771,3.5463,1.7725,1.6242,3.8698,10.9873,2.7481,2.4003,8.8352,1.9541,2.3079,2.2112,11.5144,1.9731,3.548,1.2462,14.3595,5.6004,7.5626,3.9933,8.5477,7.0983,6.389,7.6852,4.0125,1.4877,4.5856,,,,,,,,,,,,,,,69,,,,187
+nG+MAI1T5HC015,1.6635,1.667,,70-79y,CN,,,15.9782,4.3414,2.4886,2.1739,1.5712,edsd,CN,,F,,0.43093,4.9454,3.8233,0.75706,9.2184,1.671,0.37217,2.868,2.9517,46.3665,13.5976,209.4858,3.891,4.011,1.5238,1.8338,3.3297,7.2979,2.0206,2.7903,0.63062,6.4625,10.8608,17.6733,6.9788,2.2746,4.9883,1.7697,19.8761,6.0511,4.0287,1.323,3.0645,7.0546,14.557,3.198,4.0762,3.2797,1.2876,1.4848,4.0665,9.9042,2.8891,2.1071,13.3253,2.0167,2.2573,2.2955,13.6664,1.7612,3.4716,1.2064,14.5211,5.8128,8.9568,3.3684,11.0209,7.5171,5.8789,7.9146,3.7102,1.3071,4.2753,29,,,0.08394,,,,0.38902,4.5469,3.7628,0.83404,10.7934,1.9274,0.38853,2.9111,3.0664,45.7536,13.5695,211.9412,3.9695,4.373,1.6676,1.9154,3.6906,7.3624,2.0692,3.1608,0.47172,6.3114,11.8823,11.9138,7.7665,2.346,4.9316,1.7698,19.5488,5.3743,3.9613,1.1282,2.5666,8.083,15.7273,2.5533,4.1414,3.601,1.5679,1.4437,3.9724,10.3754,2.816,2.1552,11.5448,1.8518,2.3362,1.9962,13.7294,1.5943,3.5193,1.1744,14.0106,5.8279,7.8463,4.204,10.0498,7.067,5.7788,8.0029,3.6244,1.3181,4.1648,,,,,,,,,,,,,,,70,,,,188
+nG+MAI1T5HC016,1.1435,1.9786,,60-69y,CN,,,20.9789,4.6296,2.9806,2.3099,1.1587,edsd,CN,,M,,0.45523,5.4149,4.9035,0.93311,9.5747,1.9205,0.40532,3.3652,2.796,49.9308,17.7471,251.408,4.261,4.9048,1.8225,2.2167,4.3061,7.7366,2.4791,3.2487,0.44459,7.4941,12.0957,9.3251,7.8815,2.8087,5.2524,2.1228,20.6867,6.998,4.6312,0.94449,2.3596,7.8726,14.356,3.9386,4.9495,3.2129,1.8108,1.7586,4.9408,11.1221,3.2606,2.4637,11.4977,2.3543,2.7016,2.5134,10.8132,2.0836,3.922,1.3161,15.1134,5.9413,9.5378,3.7664,10.8921,7.898,8.0637,8.47,4.0978,1.5416,5.6066,30,,,0.0839,,,,0.40741,4.7227,4.6047,0.90623,11.5141,2.1772,0.39981,3.5126,2.8016,49.9711,17.2068,252.8798,4.0349,5.1796,1.8405,2.0501,4.4396,7.4384,2.3144,3.3816,0.61029,7.6067,11.6005,10.0023,8.5437,2.5795,5.1262,1.9893,20.0268,5.5976,4.3741,1.1992,2.6164,8.9104,14.4125,3.1874,4.6581,3.2634,1.6705,1.7338,4.5284,12.1757,3.0333,2.4234,10.4138,2.0334,2.6173,2.1712,12.2964,1.7788,3.8073,1.2297,16.4195,6.5039,8.3045,4.1481,10.3709,8.1435,7.6786,8.255,3.5945,1.4193,5.2607,,,,,,,,,,,,,,,65,,,,189
+nG+MAI1T5MCI001,2.0592,2.9716,,60-69y,Other,,,19.4224,5.1119,3.0983,2.4767,2.1828,edsd,MCI,,M,,0.39708,4.2533,3.9716,0.6752,8.8765,1.6082,0.37206,4.0436,2.9163,52.6487,16.4934,219.4771,3.9395,5.2214,1.3252,1.8766,3.2432,6.3121,2.0025,2.8842,2.8079,6.8446,10.0583,35.4663,8.3309,2.3084,4.4754,1.6281,18.6762,6.9686,3.9294,1.0275,2.3978,6.3338,13.1477,3.7523,4.6941,3.4062,1.4284,1.6544,4.1658,10.3914,2.7592,2.146,10.7874,2.3306,2.43,1.9533,11.5103,2.2641,3.7419,1.1687,12.9521,4.9314,8.8968,3.6135,10.1226,7.83,7.2413,6.7961,3.707,1.5136,5.1048,,,MCI,0.07687,,,,0.3488,4.0314,3.7994,0.68032,10.21,1.6715,0.36923,3.8966,2.993,52.1784,16.2712,221.782,3.9721,4.9466,1.3279,2.0749,3.4846,6.3953,2.1135,2.9116,1.9578,6.7318,10.1379,22.6314,8.6663,2.1695,4.5939,1.7637,18.2727,4.7657,3.6462,0.99419,2.2614,7.1579,14.5233,3.2996,4.5124,3.8289,1.4891,1.6836,4.1739,11.1316,2.6322,2.1295,9.8458,2.1988,2.1149,1.9729,11.1433,1.9297,3.6883,1.1305,13.0426,4.9246,8.2705,4.0303,9.9145,7.8527,6.8573,7.2679,3.5429,1.4801,4.8589,,,,,,,,,,,,,,,67,,,,190
+nG+MAI1T5MCI002,1.1292,1.7046,,60-69y,Other,,,14.9737,4.3073,2.2432,1.8979,0.98114,edsd,MCI,,F,,0.3229,3.5363,3.1785,0.68323,7.634,1.3245,0.31183,2.0414,2.2554,37.5645,12.9972,166.051,3.1465,3.5516,1.3347,1.647,2.6873,6.0146,1.6965,2.5321,0.38757,5.2337,9.5933,12.4122,6.0848,2.067,3.9006,1.3169,15.5908,4.638,3.3153,0.94425,2.2649,5.2885,12.2667,2.6445,3.2681,2.9839,1.2794,1.146,3.0613,7.6789,2.6681,1.7402,9.5542,1.8012,1.9283,1.7825,11.2042,1.582,2.9976,0.99597,12.1091,4.5387,8.0225,3.0741,8.1832,6.3576,5.6673,6.1186,3.3288,1.1747,3.8854,27,,MCI,0.07015,,,,0.27157,3.1858,3.082,0.68458,8.3621,1.4283,0.30443,2.2371,2.2682,36.3493,12.3825,165.8618,3.3107,3.5413,1.3686,1.566,2.825,6.176,1.7214,2.7035,0.42906,5.215,9.9493,10.3441,6.2977,1.9844,3.7883,1.3142,14.8866,4.3704,3.2743,0.97386,2.2139,6.0534,12.731,2.2073,3.271,2.9772,1.3447,1.1609,2.9716,8.0933,2.5143,1.816,8.8763,1.6116,1.952,1.637,10.5813,1.4682,2.7905,0.95731,12.6073,4.577,6.3504,3.2518,7.2866,6.2157,5.4848,6.3459,3.0394,1.1214,3.6561,,,,,,,,,,,,,,,66,,,,191
+nG+MAI1T5MCI003,2.0795,1.5875,,+80y,Other,,,16.8748,4.6035,2.6837,2.2987,1.5639,edsd,MCI,,F,,0.38581,4.3208,4.1379,0.75047,7.5552,1.4925,0.37094,2.4942,2.8014,42.9856,15.809,208.5699,3.4338,3.7362,1.4384,1.7281,3.0876,6.1674,2.0281,2.8535,0.66927,5.6658,10.4329,16.8413,6.3126,2.3027,4.6092,1.6195,17.3096,5.0842,4.0888,1.0391,2.2378,6.2576,12.7032,2.9274,3.4415,3.286,1.4934,1.4248,3.9919,9.0322,2.8352,2.0413,9.6724,2.4893,2.4704,2.1972,12.1035,2.3003,3.1863,1.2723,12.8537,4.8699,8.6879,2.6668,8.4294,7.0583,5.9647,7.1829,3.8166,1.3618,4.3104,26,,MCI,0.08405,,,,0.36333,4.0939,4.0137,0.8053,8.727,1.7392,0.36874,2.8211,2.7109,44.7095,14.7578,212.1288,3.4837,4.2102,1.6047,1.8219,3.5418,6.6917,1.9263,3.2198,0.63939,5.9217,10.9634,17.1028,7.3228,2.1353,3.98,1.5906,17.9298,4.4501,3.9181,0.9308,2.478,7.1172,13.0638,2.4105,3.8626,3.3205,1.5532,1.4785,3.6384,9.3456,2.6897,2.0868,8.3787,2.1488,2.4919,1.8963,11.6113,1.737,3.2753,1.2357,13.5985,5.2152,7.3778,3.6081,8.0575,6.212,5.8336,6.9366,3.3817,1.2853,4.1359,,,,,,,,,,,,,,,80,,,,192
+nG+MAI1T5MCI004,1.5559,1.5382,,70-79y,Other,,,21.3172,5.3452,2.9019,2.6173,1.5208,edsd,MCI,,M,,0.46989,5.5532,5.316,0.98178,10.4839,1.4723,0.4324,3.0643,3.4016,47.6807,19.6686,272.8206,5.2749,3.8834,1.8067,2.4241,3.5318,7.2396,2.4717,3.6418,0.72399,6.717,11.7584,22.5706,7.7407,2.3507,5.2935,2.1111,20.0608,6.5278,4.4773,1.1405,2.7873,7.724,16.188,3.3803,4.2651,3.2658,1.5504,1.9322,4.8171,10.6903,3.3036,2.9309,11.7424,2.8887,2.6743,2.8054,13.6167,2.4095,4.2364,1.5834,14.8746,5.5681,10.4647,2.9982,10.8173,8.7394,8.3308,8.7519,4.1902,1.7583,5.4458,28,,MCI,0.08317,,,,0.41967,4.8039,5.3145,0.96308,11.0375,1.8561,0.4378,3.0736,3.3624,49.1356,19.0103,275.5598,4.8738,4.4464,1.7744,2.2342,4.1102,7.775,2.4356,3.7357,0.86054,5.9596,13.058,21.0918,8.1911,2.3599,5.2013,2.1857,20.661,4.8132,4.35,1.0775,2.4466,8.9508,15.9672,2.4873,4.14,3.2129,1.8669,1.9706,4.2336,10.7798,3.0673,3.3168,12.0025,3.2482,2.7181,2.6326,13.3306,2.25,4.0291,1.476,15.6876,5.7484,9.4078,3.6526,10.6511,8.6808,7.9724,8.9099,3.8567,1.8854,5.2788,,,,,,,,,,,,,,,76,,,,193
+nG+MAI1T5MCI005,1.8714,3.7549,,60-69y,Other,,,18.9611,4.551,2.7424,2.3995,1.3628,edsd,MCI,,M,,0.47268,5.0133,4.5085,0.99923,8.5451,1.3935,0.42389,3.1407,2.7306,48.5206,17.4471,277.4785,3.9082,4.0228,1.8556,2.0321,3.3232,7.3893,1.9996,3.5758,1.5041,6.1703,11.208,25.9844,7.4788,2.283,4.715,1.7707,20.1029,6.1769,3.6503,1.1086,2.6298,7.0839,14.0719,3.0981,4.2128,3.3958,1.373,1.7979,4.2804,9.5412,3.3795,2.4726,10.6431,2.37,2.3644,2.4591,11.8982,2.2687,4.2688,1.2581,15.0046,5.2937,8.2032,3.2747,10.3839,8.4616,7.7881,8.1256,4.1011,1.5632,5.2591,27,,MCI,0.09547,,,,0.42772,4.0944,4.3694,1.0214,9.5249,1.7656,0.4197,3.41,2.9795,49.3798,16.543,277.1635,3.5855,4.0595,1.9183,1.9232,3.8271,7.5062,2.0409,3.8748,0.83068,6.628,11.8861,18.5788,8.4697,2.3008,4.4531,1.7906,19.8372,5.1454,3.7841,1.2513,2.7126,7.5962,14.637,2.499,4.3085,3.4017,1.6353,1.773,3.9242,10.3895,3.3305,2.3947,8.9212,2.1497,2.316,2.1353,12.1028,1.9636,4.3524,1.1912,14.6523,5.0146,7.2978,3.3858,11.2632,8.0468,7.6957,8.3154,3.8261,1.468,5.0171,,,,,,,,,,,,,,,66,,,,194
+nG+MAI1T5MCI006,1.7028,1.8801,,60-69y,Other,,,19.4632,4.9412,2.7452,2.3699,2.0508,edsd,MCI,,M,,0.46279,5.0653,4.5576,0.94357,9.2893,1.7921,0.40885,2.7352,2.7014,47.6335,17.1,253.2682,4.5986,3.8144,1.6606,2.2501,3.7058,7.338,2.4546,3.3274,0.54888,6.8933,11.1448,19.6813,7.5164,2.5042,5.1709,2.032,18.5534,6.4884,4.4361,1.22,2.7873,7.7043,13.2646,3.8449,4.7097,3.7636,1.5248,1.7432,4.6815,11.0804,3.2146,2.5229,13.0472,2.8133,2.5346,2.4642,13.1306,2.2917,3.8487,1.4408,15.0927,5.515,9.726,3.144,9.7427,7.1852,7.349,7.0813,4.2711,1.8285,5.1787,26,,MCI,0.07616,,,,0.40335,3.8191,4.2546,0.99874,9.3221,1.9919,0.41275,3.0653,2.7537,47.6832,16.409,251.5132,4.2691,4.7934,1.8605,1.9896,4.2401,7.5851,2.2082,3.518,0.74874,6.9263,12.2734,19.5055,8.1837,2.4377,4.8032,2.1264,18.5718,4.6369,4.0896,1.0625,2.501,9.4104,15.1099,3.2839,4.3272,3.5849,1.5037,1.6725,4.0638,11.6781,3.1601,2.3467,11.473,2.3449,2.5591,2.0654,12.3701,1.7379,3.5981,1.305,15.6544,5.5948,7.6891,4.1761,9.257,6.8344,6.9236,7.8548,3.5809,1.3417,4.898,,,,,,,,,,,,,,,60,,,,195
+nG+MAI1T5MCI007,1.2524,1.7648,,70-79y,Other,,,18.8952,5.1619,2.8942,2.2487,1.253,edsd,MCI,,M,,0.3637,4.3178,3.9127,0.75193,7.8532,1.4641,0.34941,2.9029,2.4779,47.7378,16.4393,208.4223,3.8196,4.4206,1.5051,1.7537,3.2226,6.7072,1.8986,2.8044,0.59913,5.6511,10.2638,11.9184,7.2098,2.259,4.326,1.7254,17.9538,5.4755,3.688,1.1114,2.4768,6.4788,13.2022,2.9236,3.7863,3.4407,1.2833,1.5309,3.8501,9.4232,2.9875,2.2165,9.9641,2.2099,2.2951,2.3099,11.0987,1.8754,3.7227,1.1166,13.2132,4.9835,7.6911,3.0195,9.131,7.1043,6.9887,7.2069,3.4713,1.5064,4.7916,26,,MCI,0.08013,,,,0.32337,3.796,3.6869,0.75542,9.2794,1.7341,0.34884,2.9077,2.3429,47.0187,15.5311,208.0846,3.5675,4.5978,1.5398,1.7524,3.524,6.8726,1.927,3.0192,0.69273,5.9165,10.6387,10.9448,7.7062,2.0948,4.1302,1.7375,17.6055,4.62,3.5726,1.0295,2.2594,7.3454,12.9491,2.5652,4.0858,3.5344,1.3489,1.5049,3.4425,9.4506,2.6595,2.1973,9.2046,2.0579,2.1665,2.0206,10.7378,1.8743,3.5597,1.1018,13.8968,4.761,7.4666,3.6634,8.7778,6.5685,6.7483,7.2278,3.3557,1.413,4.609,,,,,,,,,,,,,,,71,,,,196
+nG+MAI1T5MCI008,1.7667,2.0757,,70-79y,Other,,,15.0058,4.8972,2.5637,2.374,1.8052,edsd,MCI,,F,,0.29104,3.6205,3.3815,0.65911,7.8407,1.3809,0.30681,2.6632,2.4308,43.9089,13.2882,169.618,3.5536,3.8821,1.3117,1.5738,2.9207,6.1212,1.6724,2.3904,0.85966,6.1186,9.4973,16.912,6.6139,2.1077,3.6587,1.3178,17.3748,5.3467,3.3495,0.94483,2.0826,5.8191,11.2481,2.8188,3.882,3.235,1.2695,1.2696,3.8224,9.1429,2.6174,2.0284,10.7265,1.8363,2.1207,2.0026,10.6166,1.3453,3.0077,0.97308,11.1715,4.5158,7.7769,3.0239,8.244,6.0181,5.6047,6.5334,3.2073,1.1515,4.0842,27,,MCI,0.06534,,,,0.26494,3.2474,3.1181,0.63979,8.2616,1.5399,0.31457,2.7943,2.3371,43.2699,13.2443,168.8952,3.6505,4.1507,1.3194,1.547,3.266,6.0292,1.7086,2.4729,0.80942,5.6021,9.4754,14.8834,7.1949,1.9455,4.0283,1.3406,16.3607,4.1239,3.3423,0.92791,2.1893,6.3421,11.7952,2.2023,3.6822,3.0185,1.2867,1.2718,3.4067,8.9617,2.3512,1.9205,9.5777,1.911,2.0447,1.8385,10.6755,1.4323,2.8162,0.97823,12.246,4.3692,7.0421,3.2066,8.751,6.4643,5.5917,6.6063,2.9747,1.1819,3.8767,,,,,,,,,,,,,,,72,,,,197
+nG+MAI1T5MCI009,2.2232,2.3713,,70-79y,Other,,,17.5233,5.412,2.5698,2.4097,2.0344,edsd,MCI,,F,,0.49937,5.3908,5.1585,0.83327,10.3589,1.874,0.44246,2.7674,3.2484,48.3291,14.2885,207.1667,5.4632,4.2724,1.6488,2.4767,4.1641,7.698,2.7388,3.4019,0.70448,7.2798,11.7136,27.2133,8.0202,2.9062,5.7541,2.2419,20.7531,6.9135,5.068,1.1415,2.8933,8.2845,14.9929,3.3014,4.6028,4.5503,1.9428,1.4462,4.8217,12.1553,3.4536,2.9166,12.3878,2.7218,3.0354,3.0548,13.9639,2.599,3.8576,1.6627,15.9932,5.684,9.9955,3.4527,11.4038,8.6959,6.79,8.883,4.8917,2.3404,4.6654,25,,MCI,0.09914,,,,0.38699,4.8619,4.7612,0.72539,10.5766,1.9924,0.43386,3.1364,3.1983,47.5632,14.2836,204.2511,5.3782,5.1406,1.4118,2.2825,4.3192,7.1548,2.6615,3.2705,0.92013,6.9142,11.7478,22.5744,8.3625,2.8092,5.1739,2.2046,20.7405,5.6223,4.7054,1.1752,3.1823,9.4497,15.6628,3.0519,4.3718,4.0074,2.0147,1.3918,4.2617,11.966,2.7816,2.6455,12.2547,2.8392,2.9609,2.5514,15.2012,2.3664,3.6951,1.564,15.8186,5.948,9.3669,4.2818,10.7296,9.013,6.4733,7.5177,4.5645,1.9393,4.2961,,,,,,,,,,,,,,,78,,,,198
+nG+MAI1T5MCI010,2.0283,2.1079,,70-79y,Other,,,20.4839,5.1451,2.6899,2.2037,1.9669,edsd,MCI,,M,,0.39364,4.3574,4.2118,0.64098,7.3997,1.5479,0.36143,2.7603,3.0276,46.5014,16.9448,235.5834,4.0944,4.0584,1.3227,1.9185,3.2977,6.8443,2.041,2.6789,1.2937,6.2837,11.0186,26.1031,6.9013,2.3008,4.5419,1.7188,17.9842,5.3522,3.8704,0.98826,2.242,6.823,13.1422,3.1687,4.2366,2.9118,1.4924,1.7012,4.3011,10.6302,2.8473,2.2366,10.0361,2.1338,2.434,2.2493,10.9252,1.8586,3.9563,1.2561,12.6499,4.8718,8.102,3.3078,9.0186,6.8428,6.8559,7.4774,3.9061,1.4376,5.3211,27,,MCI,0.0837,,,,0.3469,3.6612,4.1583,0.66017,9.4406,1.7927,0.35979,3.0608,2.9772,45.4788,16.2781,239.7919,3.9293,4.3653,1.3624,1.919,3.7151,6.6787,2.1974,2.9331,0.9527,6.3717,11.0369,23.1823,7.5903,2.2757,4.2896,1.8408,18.3593,4.6587,3.8121,0.87342,2.1484,8.0739,14.5227,2.5498,3.9044,3.2263,1.5458,1.7509,3.9989,10.8285,2.619,2.3244,8.7332,2.0257,2.2575,2.1415,10.6051,1.9026,3.8225,1.249,12.9467,4.8756,6.9161,3.5424,9.0229,7.8222,6.8637,7.7935,3.6752,1.4521,5.131,,,,,,,,,,,,,,,76,,,,199
+nG+MAI1T5MCI011,0.96939,1.2928,,+80y,Other,,,15.854,4.1318,2.2142,1.8978,1.0812,edsd,MCI,,F,,0.35225,3.8259,3.4425,0.6127,8.2659,1.258,0.32299,2.6232,2.5484,40.9443,13.3298,180.6172,3.3778,3.9205,1.2699,1.7192,2.9165,5.3721,1.9121,2.3258,0.47649,5.3417,8.338,12.59,5.8129,2.1752,3.713,1.5344,16.5488,5.5991,3.5479,0.86559,2.1072,5.8518,10.8007,3.3184,3.5476,2.8946,1.4418,1.3368,3.5591,8.6749,2.4191,1.9531,9.4062,2.2883,2.3937,1.9755,11.2346,1.8732,3.0212,1.1594,13.1717,4.71,7.8777,3.3708,10.1177,6.0194,5.9888,5.9722,3.4748,1.3116,4.216,25,,MCI,0.07429,,,,0.30571,3.393,3.3663,0.61742,8.749,1.6117,0.32011,2.8328,2.5199,40.571,12.8056,184.0221,3.5447,4.3684,1.2592,1.665,3.3842,6.2374,1.8495,2.5696,0.54235,5.5892,9.6919,11.8023,6.769,2.1403,3.8262,1.4928,15.6178,4.3254,3.4517,0.8514,2.0719,6.4642,11.5183,2.6264,3.6956,2.9641,1.4629,1.3261,3.0891,8.5374,2.336,1.9926,9.6469,1.974,2.2256,1.7402,10.8511,1.5249,2.7476,1.122,14.5163,4.7844,6.903,3.9745,8.5176,5.7387,5.8067,6.427,3.1827,1.2381,3.9973,,,,,,,,,,,,,,,83,,,,200
+nG+MAI1T5MCI012,2.1872,1.9933,,+80y,Other,,,16.7766,4.5116,2.4153,2.0943,2.4417,edsd,MCI,,M,,0.38052,4.6228,4.4668,0.83577,9.7383,1.4409,0.39599,2.9567,2.3038,41.5099,14.7727,200.2379,4.3708,4.3864,1.4931,1.84,3.4425,6.3769,2.0637,3.0646,0.90545,5.9709,10.3478,39.4973,6.9489,2.2494,4.6951,1.7996,20.0958,6.6411,3.7917,1.1734,2.392,6.9421,13.1911,3.4565,3.9485,3.215,1.3832,1.5129,4.3969,10.7269,2.9995,2.6305,11.7189,2.399,2.4527,2.4901,12.1468,2.0921,3.5089,1.4188,14.2183,4.9381,8.3596,3.5299,10.1041,6.6285,6.431,6.9161,3.8254,1.8194,4.6214,28,,MCI,0.07994,,,,0.30689,4.3461,4.2298,0.73342,9.8651,1.7096,0.3861,2.8436,2.2934,41.0899,14.6255,201.7523,4.2449,4.7794,1.3665,1.8223,3.559,6.6588,1.9296,3.1141,0.90312,6.6274,10.7446,31.9599,7.457,2.5055,4.6503,1.8043,20.0742,5.5448,3.6669,1.161,2.4373,7.5534,14.8189,2.9165,3.9168,3.032,1.6491,1.4423,4.074,11.2957,2.6701,2.4931,9.9542,2.0647,2.497,2.1838,12.4882,1.9325,3.2393,1.3131,12.7821,4.9632,7.2501,4.6134,11.0487,7.8384,6.2917,7.0417,3.5895,1.6481,4.3105,,,,,,,,,,,,,,,80,,,,201
+nG+MAI1T5MCI013,0.91253,1.6145,,60-69y,Other,,,21.302,5.2162,2.8859,2.4037,1.3758,edsd,MCI,,M,,0.43745,4.543,3.6726,0.83008,8.8545,1.5801,0.38333,3.1074,2.6277,47.9699,19.534,268.0351,3.9881,4.3545,1.6648,1.7366,3.4301,6.8769,2.2761,3.1856,0.4383,6.1785,10.9849,9.1183,7.0559,2.2929,4.3981,1.7545,17.8887,5.8314,4.2374,1.1895,2.6202,7.1516,13.0046,3.895,4.3198,2.9191,1.3513,1.7719,4.0697,10.0951,3.0763,1.9937,11.6035,2.0094,2.4373,2.0384,11.9634,1.6047,3.8715,1.2818,14.4765,5.7857,8.0248,3.8687,10.2664,6.6392,7.4289,7.2737,3.4399,1.2839,5.2367,20,,MCI,0.07952,,,,0.39689,4.3927,3.7443,0.84643,10.8415,1.8044,0.37882,3.0493,2.7612,48.6657,18.8763,274.269,4.0594,4.6875,1.6416,1.8849,3.5586,7.0307,2.1538,3.4038,0.54312,7.1621,11.3758,8.7032,7.9926,2.1953,4.7897,1.7094,18.3811,5.3797,3.8495,1.0299,2.3312,7.7032,14.0121,3.3914,4.4075,3.3159,1.4291,1.7834,3.9757,10.3809,2.7134,2.0485,9.5905,2.2033,2.1409,1.8574,11.9822,1.8111,3.7231,1.1415,14.2123,5.2241,9.2243,4.5727,10.1279,7.6245,7.1126,7.8174,3.3019,1.3485,5.0116,,,,,,,,,,,,,,,66,,,,202
+nG+MAI1T5MCI014,1.3169,1.7177,,60-69y,Other,,,18.68,4.5578,2.5511,2.1004,1.1484,edsd,MCI,,F,,0.39092,4.4609,3.9064,0.77185,8.5799,1.463,0.36948,2.3553,2.5622,46.2035,14.7328,201.4843,3.5647,3.7566,1.4953,1.9966,3.2982,6.643,2.0545,3.0792,0.51484,5.3327,9.618,9.6884,6.5798,2.2357,4.4969,1.702,16.8229,5.1746,3.6965,1.2771,2.8353,6.2133,12.9639,2.3736,3.6955,3.3423,1.4314,1.5146,4.1962,9.3708,2.8665,2.1578,10.0157,2.224,2.2111,2.1307,12.3857,1.9722,3.2674,1.2512,13.6172,5.0962,8.34,2.9212,9.4851,6.7973,6.6196,6.8573,3.7177,1.5514,4.6521,29,,MCI,0.07642,,,,0.35802,3.9884,3.7953,0.76722,9.611,1.6875,0.37354,2.4799,2.5737,46.5046,14.6035,203.9915,3.9048,3.8715,1.4669,1.7477,3.3539,7.1609,2.0211,3.2704,0.48748,5.3023,9.9814,8.265,7.3832,1.9966,4.5323,1.6566,16.6476,3.8406,3.6023,1.0838,2.6567,6.8416,12.6398,2.0991,3.6815,3.0608,1.3797,1.4964,3.8419,9.6078,2.7112,2.2004,9.7921,2.2493,2.0825,2.1182,11.5262,1.9094,3.3206,1.1747,14.2661,5.1399,7.6077,3.4045,9.4309,7.0455,6.3611,6.726,3.229,1.5607,4.4224,,,,,,,,,,,,,,,63,,,,203
+nG+MAI1T5MCI015,1.6891,1.911,,70-79y,Other,,,17.0912,4.447,2.4701,2.1788,1.7177,edsd,MCI,,M,,0.38856,4.5432,3.9356,0.75395,8.2307,1.4042,0.41347,2.0088,2.6431,27.3723,13.5003,206.0394,4.0958,3.0914,1.4315,1.8394,3.178,6.8111,1.9794,2.749,0.84058,5.1852,10.589,18.2211,5.6169,2.0882,4.0432,1.7602,17.1518,5.118,3.8396,0.91153,2.2791,6.4821,12.1722,2.4048,3.3533,3.2688,1.2523,1.3657,3.7688,9.2097,2.7836,2.2773,9.8737,2.3091,2.3944,2.3136,11.6058,2.1307,3.278,1.4896,12.6328,4.4778,7.416,2.5742,9.8046,7.006,6.3614,7.06,3.4934,1.8083,4.8843,25,,MCI,0.10986,,,,0.33253,3.9022,3.9964,0.73354,9.6946,1.5457,0.38533,2.3608,2.6329,28.1916,13.1626,209.8405,3.8309,3.9689,1.4296,1.8946,3.3744,6.9996,2.0098,2.7568,0.78206,4.9966,10.9298,16.1464,6.3471,2.1515,3.9635,1.7633,18.1699,3.9986,3.6316,0.81059,2.0692,7.3543,12.97,2.0591,3.335,3.183,1.6624,1.4486,3.3847,9.3965,2.578,2.3575,9.091,2.4114,2.4309,2.2136,11.0874,2.1681,3.3097,1.3989,12.9211,4.6001,7.4893,2.7962,8.6091,7.1533,6.137,6.9164,3.5756,1.6241,4.3919,,,,,,,,,,,,,,,73,,,,204
+nG+MAI1T5MCI016,1.2241,1.3928,,70-79y,Other,,,14.8189,3.856,2.1951,1.9258,1.4058,edsd,MCI,,F,,0.39595,3.6164,3.473,0.62575,7.1037,1.3592,0.31996,2.1419,2.7264,39.2713,12.0742,172.7608,3.5289,3.276,1.2354,1.5598,2.7572,5.8168,1.8211,2.4984,0.85943,5.0125,8.6997,17.2999,6.0214,1.9433,3.8008,1.4795,16.5744,4.4411,3.4097,1.0571,2.4209,5.5221,11.5039,2.2135,3.4407,2.7994,1.1488,1.3443,3.3313,8.1058,2.488,1.7432,8.9833,2.0626,2.0132,1.9545,9.9601,1.8672,3.3818,1.0318,12.0462,4.4567,7.7045,2.6071,8.188,6.8052,6.0221,6.5678,2.9272,1.288,4.171,26,,MCI,0.07026,,,,0.35805,3.0563,3.424,0.62618,8.2788,1.532,0.33202,2.1377,2.9308,38.9738,11.7407,169.4901,3.2976,3.3716,1.2126,1.4845,3.1138,5.7713,1.7245,2.7624,1.1237,5.3459,9.0415,17.4891,6.4027,1.9258,3.616,1.5083,16.2045,4.5401,3.2048,0.89699,2.2297,6.2368,11.7,2.2572,3.4624,2.8626,1.2201,1.3428,3.0816,8.3383,2.283,1.8782,8.1605,1.8895,1.9847,1.7656,10.8223,1.6495,3.3584,1.0433,11.0853,4.1068,6.8721,3.0572,7.8011,6.1488,5.7143,6.6466,2.8891,1.2052,3.9488,,,,,,,,,,,,,,,72,,,,205
+nG+MAI1T5MCI017,1.4128,2.2159,,+80y,Other,,,14.7621,4.569,2.4202,2.4258,1.4577,edsd,MCI,,M,,0.32409,4.0468,3.6205,0.68516,7.0736,1.2468,0.32656,2.7609,2.1582,44.4994,12.4404,169.8775,3.3405,4.0812,1.4088,1.6136,2.837,6.699,1.7144,2.7187,0.87975,5.7611,10.0698,20.429,7.1987,1.9352,3.8849,1.4512,15.6616,4.2735,3.3512,0.93562,2.0043,6.2928,11.8918,2.842,4.2322,3.2499,1.1783,1.3088,3.7243,8.6462,2.8801,1.9278,8.6894,1.8287,2.1794,1.8628,10.8802,1.6105,3.2296,1.0109,12.6978,4.4534,7.0271,2.71,8.3972,6.213,5.7188,6.6038,3.2472,1.1242,4.0373,28,,MCI,0.07035,,,,0.27168,3.5062,3.5926,0.66054,8.9382,1.4501,0.31773,2.9551,1.941,44.8015,12.3163,172.0283,3.1152,4.2634,1.4152,1.6328,2.957,6.6989,1.6958,2.8982,1.139,6.0335,9.5259,16.8999,7.4134,1.8577,3.854,1.4028,14.8746,4.1451,3.2018,0.92446,2.0981,6.741,11.4705,2.1902,4.1711,3.0043,1.3185,1.3283,3.4019,9.385,2.6237,2.1427,7.7493,1.7421,1.9982,1.7705,9.3404,1.4709,3.0357,0.99535,13.9343,4.4488,6.097,3.3486,9.9975,5.9102,5.6653,6.5621,3.1378,1.1932,3.8287,,,,,,,,,,,,,,,80,,,,206
+nG+MAI1T5MCI018,1.8198,1.9902,,50-59y,Other,,,22.0227,5.4193,2.517,2.4125,1.4817,edsd,MCI,,M,,0.41514,5.0139,4.5741,0.93247,8.2497,1.6054,0.4105,2.614,2.3463,48.2143,19.6858,268.7903,3.8697,3.5239,1.7135,1.9711,3.1803,6.9149,2.2165,3.4106,0.60686,4.866,10.3433,15.3112,6.5722,2.262,4.9819,1.8302,17.148,4.6679,4.1875,0.84283,2.3498,7.0358,12.5187,2.6631,3.5354,3.2517,1.5123,1.806,4.5049,10.1525,3.1965,2.4099,11.0462,2.5253,2.668,2.1435,11.3625,2.0321,3.7963,1.3364,13.0626,5.6441,8.4019,2.8245,9.841,6.6274,7.7973,7.9148,3.6669,1.5937,5.6575,,,MCI,0.08054,,,,0.33165,4.1621,4.5278,0.91607,7.9801,1.6155,0.40503,2.7775,2.3119,49.0777,19.2977,269.1573,4.0571,3.6181,1.7414,1.9537,3.3301,6.4639,1.9996,3.4111,0.79521,4.1811,9.1788,12.2069,7.0919,2.0312,4.4076,1.7644,15.0889,3.2197,3.8622,1.0455,2.3282,7.5775,11.6077,2.1773,3.2946,3.1857,1.4168,1.8646,3.9916,9.7306,2.8132,2.4147,8.9611,2.1997,2.4641,2.0049,10.7009,1.6753,3.7794,1.226,13.2802,5.1681,6.0433,2.7508,8.9515,6.2104,7.0451,7.3535,3.3832,1.4241,5.3512,,,,,,,,,,,,,,,57,,,,207
+nG+MAI1T5MCI019,2.3612,1.8381,,60-69y,Other,,,19.8139,5.3954,2.7214,2.4621,1.7846,edsd,MCI,,M,,0.41575,5.7021,4.7795,0.80505,10.4278,1.8502,0.40362,3.6552,3.1086,51.6143,17.5743,250.6816,4.5471,5.1517,1.6641,1.9878,4.5553,7.1772,2.4461,3.3506,0.80493,7.9824,11.819,25.9073,8.4943,2.5398,5.1753,2.3246,21.2659,7.712,4.6622,1.282,3.0303,8.6758,15.5401,4.326,4.7426,3.206,1.3827,1.6102,4.6327,12.0571,3.3844,2.8041,13.0556,2.8484,2.5675,2.575,11.8777,2.2838,3.9279,1.5057,16.2906,6.0819,10.0076,4.1756,12.3787,8.1252,7.6419,8.5194,4.0163,1.6803,5.1893,23,,MCI,0.09108,,,,0.37706,4.7092,4.927,0.74336,10.9138,2.1984,0.40924,3.8459,2.973,52.995,17.5865,251.1307,4.2181,5.7418,1.5225,2.2787,4.8016,7.207,2.4397,3.4557,1.5464,7.3727,11.8422,22.9681,9.1142,2.7532,5.1192,2.3196,21.7015,6.1715,4.5976,1.0366,2.8028,9.912,15.2442,3.2773,4.6118,3.7286,1.7555,1.6519,4.0929,11.392,3.0984,2.8013,10.1849,2.6137,2.6274,2.4671,11.0075,2.1302,3.909,1.443,16.823,5.7776,8.1998,4.4873,11.7266,7.6115,7.2232,8.5962,4.1643,1.6686,4.9062,,,,,,,,,,,,,,,61,,,,208
+nG+MAI1T5MCI020,1.7205,1.8905,,70-79y,Other,,,17.4707,4.4674,2.6526,2.2713,1.3021,edsd,MCI,,M,,0.36732,4.1131,4.1033,0.89488,7.6736,1.2669,0.35957,2.8084,2.474,43.4145,16.1295,215.6791,3.8426,3.6558,1.6513,1.8261,3.1364,6.5343,2.0201,3.0246,0.9251,5.5668,10.1241,18.2188,6.5649,2.0121,4.5046,1.6229,15.5329,5.2654,3.6112,1.1275,2.3439,5.8604,12.5088,3.0453,3.8975,2.945,1.4233,1.633,3.9726,9.6152,2.979,2.2859,11.2423,2.3187,2.1833,2.1471,10.5286,1.9918,3.2012,1.2975,13.5618,4.7346,8.4124,3.3555,9.6846,7.107,6.5556,6.5267,3.2801,1.5033,4.9294,23,,MCI,0.08227,,,,0.29313,3.3884,4.0215,0.79946,8.9475,1.4402,0.32201,3.0178,2.5514,43.2213,15.8175,211.4838,3.6471,4.2553,1.4797,1.6714,3.2413,6.2382,1.7185,3.143,1.5428,6.2476,9.9978,24.1438,6.9363,1.8908,4.0861,1.4684,15.6477,4.504,3.1249,1.076,2.3641,6.5478,12.096,2.7873,3.9081,2.5288,1.2625,1.6406,3.4641,9.7941,2.6229,2.2975,9.6252,1.8421,1.9955,2.0192,11.0072,1.7022,2.9873,1.0981,13.7916,5.1071,6.6039,3.8047,9.9435,6.7587,6.2869,6.5402,2.4577,1.5181,4.6038,,,,,,,,,,,,,,,71,,,,209
+nG+MAI1T5MCI021,2.201,3.4207,,60-69y,Other,,,15.1792,4.3788,2.6111,2.0582,1.7914,edsd,MCI,,M,,0.42607,5.0841,4.2128,0.87128,9.301,1.4017,0.40804,2.629,2.2924,43.5704,13.4048,220.6313,3.8546,4.0038,1.5507,1.8366,3.176,7.159,2.0363,3.1532,1.0131,6.0817,11.2533,24.3614,7.109,2.2381,5.1549,1.8501,18.1861,6.0602,3.8036,1.0763,2.6018,7.2792,14.4753,3.0986,4.3412,3.2087,1.4362,1.5799,4.5857,10.9152,3.0225,2.3405,10.1322,2.6086,2.5923,2.3318,11.3461,2.462,3.3626,1.4805,13.4751,5.4523,9.672,3.3642,10.31,7.8152,6.6574,6.9862,3.7107,1.6412,4.4346,27,,MCI,0.06455,,,,0.3314,4.672,4.2447,0.88037,10.2379,1.5345,0.41743,2.6921,2.3135,41.6776,13.7147,223.5583,4.4639,4.3443,1.6918,2.0403,3.4371,7.5386,2.0831,3.4051,1.3285,6.3904,11.1879,22.2686,7.462,2.1301,4.8872,1.854,17.3399,5.0735,3.6133,1.0744,2.7871,8.0629,14.0586,2.6053,4.0702,3.614,1.5359,1.5508,4.0996,10.5746,2.8289,2.5404,9.1457,2.3326,2.4103,2.1513,11.7388,2.2965,3.2202,1.3416,13.4212,5.2793,7.822,3.4725,9.7843,8.2144,6.1079,7.6691,3.3889,1.6691,4.0234,,,,,,,,,,,,,,,67,,,,210
+nG+MAI1T5MCI022,2.4287,2.1835,,+80y,Other,,,17.5478,5.4789,2.8142,2.3297,2.233,edsd,MCI,,M,,0.35423,4.8817,5.0384,0.78021,9.8041,1.625,0.41304,3.4607,2.1338,49.8549,14.947,214.2974,4.5763,4.613,1.4871,2.0697,3.9928,7.3443,2.3404,2.9426,0.79208,7.3491,11.1615,30.645,8.0138,2.6724,4.7431,2.1063,19.1663,6.5834,4.2231,1.0397,2.7085,7.7625,13.2366,3.8828,4.9418,3.324,1.7809,1.5117,4.5055,11.2253,3.1183,2.5598,11.871,2.5526,2.9829,2.5405,12.4876,2.1193,3.2674,1.5587,14.7961,5.366,9.0832,3.3581,12.2043,7.3638,6.2841,7.1531,4.0228,1.8601,4.7448,27,,MCI,0.07881,,,,0.29753,4.6205,4.9964,0.66088,12.0143,1.7402,0.3906,3.4589,2.2173,49.6817,15.0955,216.5298,4.479,5.3684,1.2456,2.0731,3.7987,6.9342,2.5485,2.9139,1.4438,7.3613,11.4426,26.4693,8.878,2.5019,4.8567,2.08,17.9655,6.2782,4.1958,0.97039,2.4247,8.2217,15.3987,3.6274,4.5218,3.5605,1.8121,1.5113,4.0044,12.2162,2.7019,2.771,9.9071,2.4338,2.6703,2.2918,13.0102,1.9105,3.0878,1.5078,14.9771,5.1721,8.1105,4.9552,10.9819,7.0448,6.1374,6.7052,4.0715,1.7607,4.4392,,,,,,,,,,,,,,,83,,,,211
+nG+MAI1T5MCI023,2.2559,2.271,,70-79y,Other,,,16.3872,5.4297,2.6553,2.3039,2.3689,edsd,MCI,,M,,0.42615,4.706,4.715,0.79633,8.3923,1.552,0.41127,3.1394,2.7821,45.5465,15.5684,205.443,4.1139,3.9433,1.6728,1.9395,3.3489,7.4408,2.226,3.1302,1.0467,6.1864,11.7106,33.6989,7.5048,2.3359,4.5407,1.8729,18.4741,5.9417,4.1855,1.0922,2.3009,7.3397,14.1348,3.3831,4.2973,3.5336,1.5012,1.4402,4.2143,10.2054,3.205,2.6283,11.9524,2.4089,2.6129,2.6993,10.6517,1.9429,3.4385,1.378,15.2734,5.1019,8.0099,3.1124,9.4851,6.7765,6.5324,7.8446,3.5559,1.7701,4.319,25,,MCI,0.08456,,,,0.33941,3.955,4.2608,0.72903,9.2757,1.7177,0.38493,3.404,2.4421,48.197,15.0964,201.0988,3.8354,4.2417,1.4702,2.0791,3.4554,7.2788,2.1089,3.3094,1.3138,6.777,11.3475,32.6771,8.1799,2.4405,4.013,1.862,17.8419,5.0888,3.9069,0.95715,2.1712,7.8987,14.1487,2.9056,4.5195,3.7704,1.7464,1.429,3.7147,10.1643,2.9139,2.4381,9.1008,2.3869,2.5181,2.2391,10.5358,2.0533,3.1749,1.2901,14.2656,4.7946,7.8555,3.6014,9.3758,7.3705,5.9114,7.0886,4.0742,1.6092,4.0367,,,,,,,,,,,,,,,74,,,,212
+nG+MAI1T5MCI024,1.94,2.155,,70-79y,Other,,,17.1812,4.4594,2.4315,2.0564,1.402,edsd,MCI,,F,,0.37285,4.5912,4.1261,0.78422,9.03,1.4412,0.36905,2.8776,2.5343,41.9434,13.883,216.1676,3.6837,4.4701,1.5179,1.8514,3.2268,7.0908,2.0747,3.0335,0.73692,6.1595,11.643,21.5615,6.9936,2.1838,4.664,1.7082,17.7897,5.7118,3.981,1.1615,2.6288,6.458,13.5837,3.3048,4.0664,3.1636,1.4375,1.4994,3.9752,9.303,2.9456,2.2396,10.2358,2.5998,2.4411,2.2512,12.1054,2.4502,3.4883,1.2235,14.2731,5.2913,8.903,3.6107,9.7327,7.4671,6.4332,7.0299,3.4384,1.6804,4.7121,26,,MCI,0.07234,,,,0.31472,3.6901,4.0128,0.77147,9.3444,1.6128,0.36407,2.8271,2.712,41.0361,13.6618,213.9162,4.058,4.3885,1.4898,1.8714,3.6393,6.5651,1.965,3.1878,1.0633,5.9047,10.212,22.6963,7.2942,2.1651,4.1058,1.6742,17.0285,4.8392,3.7009,1.1108,2.6174,7.6025,12.0367,2.6925,3.7539,3.1595,1.562,1.457,3.7978,9.2679,2.6384,2.3643,10.4786,2.4625,2.3157,2.1847,12.3971,2.1006,3.2816,1.1612,13.9606,5.2369,7.4471,4.0604,10.3349,7.4597,6.1317,6.886,3.2162,1.6409,4.4848,,,,,,,,,,,,,,,76,,,,213
+nG+MAI1T5MCI025,2.5515,2.6787,,+80y,Other,,,18.5757,5.2561,2.4848,2.2573,2.3378,edsd,MCI,,F,,0.4395,4.2915,4.3443,0.71834,7.2268,1.5065,0.3794,2.8124,2.6895,46.4712,16.1887,236.493,3.7713,3.813,1.3429,1.8077,3.3168,6.4628,1.8647,2.6784,1.2971,5.5784,10.3227,35.8274,6.5803,2.3184,3.86,1.7034,17.1141,5.2936,3.6339,0.86847,2.0853,6.6773,13.1579,3.0168,3.5685,3.2478,1.4079,1.6821,3.8758,9.1195,2.6702,2.3986,10.0842,1.8229,2.2128,2.2569,9.6065,1.4938,4.6426,1.2029,12.6454,4.7787,7.3877,3.4441,8.6869,5.8622,6.3966,7.1955,3.321,1.376,4.9817,23,,MCI,0.07588,,,,0.35661,3.6959,4.1206,0.65297,8.2161,1.5103,0.37661,3.2915,2.7755,44.8791,16.2491,236.8481,3.4411,3.9233,1.3332,1.6567,3.3218,6.6325,1.7867,2.9722,1.6954,6.6155,10.3076,31.4071,7.299,2.0397,4.165,1.5732,16.1322,4.6431,3.3801,0.90858,2.0905,7.2337,13.7425,2.811,4.0487,2.7778,1.4955,1.6819,3.77,9.4965,2.6131,2.3147,8.9832,1.6992,2.1348,2.0977,9.6738,1.5177,4.0806,1.1764,13.117,4.7292,6.171,3.5579,9.159,6.8894,6.2951,7.4188,3.0028,1.3226,4.6366,,,,,,,,,,,,,,,82,,,,214
+nG+MAI1T5MCI026,3.0911,2.782,,70-79y,Other,,,18.3977,5.0169,2.8167,2.5427,2.5576,edsd,MCI,,M,,0.36355,4.4827,4.5412,0.6755,10.0351,1.4878,0.36377,2.4464,2.5535,49.7441,15.8368,218.4875,4.1485,3.6756,1.231,2.1097,3.7032,7.4435,2.1155,3.0017,1.9734,6.9885,11.3466,33.0259,7.2196,2.2129,4.6415,1.7464,19.457,7.1611,3.9596,1.0991,2.6444,7.21,14.0082,3.0277,4.5593,3.859,1.4322,1.5912,4.3916,10.9686,2.8687,2.6703,10.3086,2.5337,2.3256,2.5336,13.7414,2.0504,3.4907,1.2379,15.2836,5.4501,9.1517,3.4434,11.8244,7.9053,6.8618,6.8093,3.9377,1.5202,5.0712,27,,MCI,0.08434,,,,0.31531,4.1619,4.5555,0.69146,11.4893,1.7272,0.35363,2.6604,2.6118,47.6643,15.2305,220.2831,4.103,4.1849,1.2013,2.1365,3.9159,7.1474,2.0844,3.1177,1.845,6.4874,12.3185,31.3476,7.8035,2.3463,4.5428,1.8564,20.0056,5.6771,3.8806,1.0098,2.5739,8.4907,15.0334,2.5004,4.2321,3.4737,1.7193,1.6506,3.831,10.444,2.6174,2.5779,10.5882,2.0929,2.3846,2.1795,13.703,1.7546,3.4877,1.1353,16.4903,5.5127,8.4129,3.7931,10.4791,7.5951,6.5226,6.7323,3.4577,1.3964,4.8324,,,,,,,,,,,,,,,78,,,,215
+nG+MAI1T5MCI027,2.0444,2.0586,,70-79y,Other,,,17.1704,5.0864,2.7359,2.2461,2.2084,edsd,MCI,,F,,0.41034,4.5768,4.3894,0.84553,9.4183,1.6083,0.38647,2.1827,2.8071,44.8061,13.0289,188.816,3.6886,2.9575,1.7096,2.1565,3.5799,7.2234,2.1146,3.1595,0.67237,6.259,11.508,31.4738,6.6905,2.5091,4.4217,1.7671,19.6418,5.9703,4.2283,0.92558,2.1489,6.8542,14.3386,2.4868,3.917,3.3003,1.6574,1.4046,4.3133,10.216,3.1722,2.3266,9.8466,2.1323,2.7123,2.2362,11.8684,1.9016,3.7664,1.2342,15.1137,4.9431,8.3724,2.9443,11.0565,7.1457,6.4532,8.0227,3.9893,1.3872,4.5547,26,,MCI,0.08302,,,,0.37032,4.497,4.3531,0.81045,9.5422,1.8202,0.38098,2.4067,3.0714,44.1353,12.3404,188.9378,3.8788,3.5822,1.6592,2.1129,3.6033,7.2418,2.0876,3.3865,0.75245,6.4673,10.8817,26.0515,7.2766,2.3253,4.6356,1.6764,19.2081,5.2675,3.9253,1.0535,2.5015,7.3909,14.2011,2.5739,4.2779,3.5233,1.6337,1.4427,3.8606,10.2469,2.9048,2.4688,9.7332,2.2906,2.3781,2.0953,12.189,1.8008,3.6843,1.1842,14.4784,5.0316,7.2824,3.8521,10.6321,7.0755,6.3214,8.3218,3.9268,1.4688,4.3378,,,,,,,,,,,,,,,78,,,,216
+nG+MAI1T5MCI028,1.1573,1.6479,,-50y,Other,,,17.706,4.6166,2.6527,2.3553,1.1203,edsd,MCI,,M,,0.52148,5.2234,4.3837,0.97955,9.9564,1.7786,0.46722,3.2357,3.0499,48.8077,15.3027,234.3481,4.47,5.1157,2.0771,2.1769,3.8368,8.202,2.6282,3.392,0.54447,7.5108,13.3026,9.0814,7.7076,2.7207,5.2148,2.2302,22.0139,6.7807,4.8288,1.1939,3.2518,8.0611,16.9337,3.896,4.8013,3.3782,1.638,1.5677,4.8577,12.1496,3.5523,2.3179,12.4274,2.7311,2.8223,2.5141,15.0108,2.2938,4.2109,1.4764,17.9714,6.7745,9.4001,3.9706,12.081,9.266,7.4399,9.4607,4.2497,1.8654,4.9638,29,,MCI,0.08351,,,,0.47296,4.4918,4.3245,0.96856,11.4551,1.993,0.44193,3.6591,3.2616,49.0461,14.6161,233.6644,4.3668,5.3221,1.9833,2.1829,4.3623,8.3301,2.5778,3.4125,0.58957,7.4532,13.5681,12.4613,9.1151,2.5006,4.9104,2.1888,22.3019,5.8369,4.4654,1.3779,3.1735,9.1711,17.1263,3.423,5.281,3.8129,1.7034,1.6182,4.4546,12.0596,3.2419,2.24,11.1063,2.1122,2.6098,2.1036,13.6869,2.0578,4.0296,1.4077,18.3793,6.3146,8.4491,4.7925,11.646,8.0171,7.0789,9.5096,4.0293,1.4403,4.741,,,,,,,,,,,,,,,43,,,,217
+nG+MAI1T5MCI029,1.2011,1.5129,,60-69y,Other,,,14.9542,4.3323,2.4327,1.9949,1.2254,edsd,MCI,,F,,0.34579,4.2396,3.4294,0.71167,7.1535,1.4159,0.34199,2.9632,2.2759,37.8754,12.9785,185.9051,3.5066,4.1558,1.5362,1.6942,3.1139,6.4238,1.8994,2.5602,0.52714,5.8648,10.063,14.9981,6.5991,2.1617,4.1749,1.6783,15.7914,4.7805,3.6076,1.1393,2.4251,6.3251,11.4825,2.7739,3.6651,3.1393,1.2806,1.2098,3.4438,8.9741,2.6824,1.8773,9.2961,1.8166,2.2723,2.0808,11.0377,1.5759,3.0403,1.1186,14.9077,4.8619,6.9192,2.9305,7.7179,6.2822,5.6381,7.5208,3.5224,1.2715,3.9457,28,,MCI,0.07406,,,,0.31059,3.9292,3.2948,0.68245,9.083,1.6056,0.33103,2.9722,2.2968,39.5813,12.526,190.7115,3.1711,3.9992,1.4815,1.7258,3.1919,6.0282,1.8708,2.5759,0.64781,5.5953,9.5989,13.7949,7.1358,2.1062,4.0546,1.6664,17.1331,4.6282,3.5124,0.79867,2.1091,6.988,12.476,2.5192,3.7258,3.466,1.4084,1.251,3.217,9.0731,2.3836,1.8645,8.1705,1.5783,2.1966,1.8284,10.304,1.6217,2.8808,1.0691,13.4697,4.7484,6.6221,3.6046,8.1687,6.6416,5.4613,7.378,3.4306,1.164,3.7661,,,,,,,,,,,,,,,69,,,,218
+nG+MAI1T5MCI030,3.3332,3.8497,,60-69y,Other,,,19.6638,5.0725,2.8265,2.4214,2.9538,edsd,MCI,,M,,0.39586,5.4815,4.8321,0.92421,10.7749,1.5635,0.42573,3.0917,2.483,43.6504,15.0071,252.0012,4.6133,4.0006,1.7135,2.1163,3.7492,8.0385,2.3058,3.3742,1.8377,6.3392,13.2013,48.6943,8.2575,2.2267,7.4817,2.0905,22.332,6.2518,4.3651,1.1816,3.4183,8.5604,16.525,2.9491,4.1181,3.9707,1.4159,1.698,4.6404,10.5044,3.3833,2.6622,12.8633,2.2781,2.559,2.5945,15.2823,1.7956,3.952,1.5341,16.7027,7.8068,9.2554,3.0232,11.6445,7.7573,7.5034,8.8303,4.2785,1.5657,5.3791,22,,MCI,0.07984,,,,0.38883,4.6882,4.4507,0.85168,11.1842,1.7931,0.40515,3.2677,2.3084,43.2356,15.1165,253.2645,4.4733,4.3975,1.6222,1.9633,4.1318,7.8944,2.219,3.5007,2.0029,7.0655,12.5272,46.5001,8.2312,2.2129,8.5193,2.0811,20.1658,5.4473,4.121,1.4563,3.5084,8.9555,16.2367,2.4779,4.2929,3.9458,1.4123,1.7198,4.0301,11.7754,3.0242,2.61,13.2796,2.0587,2.6013,2.1663,14.2141,1.7499,3.9759,1.5347,16.1595,6.8389,8.2807,3.8761,12.6491,8.3095,7.4845,8.2629,3.6062,1.3875,5.0649,,,,,,,,,,,,,,,68,,,,219
+nG+MAI1T5MCI031,1.4578,1.6353,,70-79y,Other,,,18.7857,4.9481,2.4507,2.3841,1.4539,edsd,MCI,,M,,0.42612,4.8174,4.3787,0.72893,8.5611,1.7008,0.39275,3.3939,2.7139,45.4929,16.8291,246.0271,4.0202,4.7725,1.3727,2.0259,3.5148,7.4144,2.1847,2.9395,0.47716,6.5697,11.0308,13.0165,7.7973,2.6274,4.6702,2.0006,19.7988,6.2199,4.367,0.87314,2.3049,6.885,13.3089,3.4664,4.593,3.5948,1.6419,1.6286,4.4251,10.4119,3.0435,2.3743,10.2494,2.1522,2.8073,2.4949,10.8385,1.8573,3.2638,1.3515,14.6553,5.2519,8.3013,3.6297,10.9433,7.2975,7.0526,7.2519,4.2459,1.7839,4.9331,25,,MCI,0.0791,,,,0.36741,4.2319,4.1091,0.78586,8.8971,1.9665,0.38226,3.5374,2.7406,46.5743,16.0334,245.9835,3.9024,5.149,1.4466,1.8305,3.8456,7.2803,2.0631,3.3142,0.64456,6.5396,10.8476,14.164,8.0021,2.493,4.7873,1.9407,19.5745,4.8343,4.0723,1.1375,2.5524,7.5522,13.5114,3.0755,4.423,3.4238,1.6007,1.6414,4.0413,10.4286,2.9202,2.2716,10.6116,1.9892,2.7401,2.2013,12.2431,1.8628,3.3123,1.3104,14.1307,4.8574,7.7578,4.3685,9.3456,7.5457,6.6072,7.4701,3.6638,1.5637,4.7275,,,,,,,,,,,,,,,75,,,,220
+nG+MAI1T5MCI032,1.4175,2.9422,,70-79y,Other,,,16.2223,4.8812,2.2552,2.0486,1.2465,edsd,MCI,,M,,0.39387,4.3072,4.2182,0.88549,8.5372,1.4072,0.36866,2.4976,2.9602,33.5396,10.7472,200.1052,3.4986,3.6357,1.6332,1.8386,3.2685,6.7244,1.9992,3.1435,0.85075,5.7583,10.9826,16.5609,6.499,2.2157,4.3599,1.694,17.4937,5.5329,3.7565,0.85443,2.0722,6.2544,13.6412,2.7448,3.817,3.2162,1.4457,1.5129,3.7649,8.5862,3.0897,2.1665,8.9628,1.8276,2.394,2.2036,10.1446,1.5134,3.3626,1.2128,13.4043,4.6651,7.0687,2.7602,8.8152,6.4859,6.4486,7.7587,3.7784,1.3227,4.67,24,,MCI,0.08415,,,,0.34877,3.6096,4.0283,0.88578,9.0649,1.6939,0.37148,3.0346,2.848,38.3685,13.9708,201.2127,3.3349,4.2675,1.638,1.8298,3.3802,6.8619,1.8429,3.2885,0.58691,6.5767,11.252,16.4044,7.8816,2.0889,4.1951,1.6097,17.3505,4.4194,3.5288,0.97369,2.2521,6.975,14.1728,2.6868,4.0595,3.0912,1.3192,1.5456,3.4599,8.9099,2.8682,2.2143,7.9696,1.733,2.141,1.9201,10.0523,1.5063,3.1251,1.1956,12.252,4.6644,6.9817,3.7716,8.8287,6.8655,6.0546,7.636,3.4521,1.2484,4.3102,,,,,,,,,,,,,,,73,,,,221
+nG+MAI1T5MCI033,1.6205,2.0832,,50-59y,Other,,,15.9729,4.6121,2.3625,1.9541,1.5266,edsd,MCI,,M,,0.35821,4.766,4.3225,0.75649,7.3551,1.4914,0.3603,3.0259,2.5169,42.4254,14.456,206.736,3.9707,4.0667,1.5317,1.9804,3.4177,6.6497,2.0302,2.7619,0.84978,5.7301,9.8925,20.0821,6.6418,2.2644,4.5009,1.7927,18.0206,5.3231,3.8473,1.0778,2.4593,6.7513,11.6922,2.9334,4.1086,3.6095,1.55,1.4541,3.7867,9.0938,2.8218,2.269,10.6941,2.3937,2.4628,2.2557,12.8559,2.2683,3.2992,1.3192,12.5947,4.6578,7.9869,3.214,9.2838,7.1108,6.1968,7.1295,3.8057,1.7159,4.4853,22,,MCI,0.08755,,,,0.3203,4.2948,4.034,0.78049,9.5082,1.6552,0.35235,3.4584,2.4361,42.7073,14.1235,213.2188,3.6818,4.5664,1.5285,2.0772,3.4943,7.167,2.0366,3.0186,0.8956,6.4052,11.1909,15.8165,7.6717,2.1865,4.5338,1.7464,18.9982,4.6822,3.7199,1.0959,2.5263,7.5373,12.6272,2.6629,4.2318,4.092,1.6075,1.4574,3.6515,9.7512,2.6144,2.4096,8.5287,1.9813,2.3766,2.2022,11.3873,1.852,3.305,1.2877,12.0744,4.4777,7.0599,3.9179,10.9249,7.0146,5.9759,7.3176,3.8196,1.6442,4.2159,,,,,,,,,,,,,,,56,,,,222
+nG+MAN3T0HC001,2.0714,2.342,,-50y,,,,18.5915,5.6198,3.0748,2.4745,1.5056,edsd,,,M,,0.53321,5.669,4.6844,1.1046,11.2047,1.8397,0.47709,3.877,3.4738,54.4932,17.2047,255.3596,4.7696,5.5617,2.1113,2.1611,4.1805,8.9061,2.3453,3.717,0.72598,7.365,13.2533,21.1877,8.6138,2.7585,5.1103,2.2084,21.8987,6.7802,4.6798,1.198,2.9585,8.9122,15.7252,4.0524,5.1498,3.6874,1.6954,1.7825,5.079,12.8823,3.7962,2.8164,13.1955,2.9678,2.8981,2.8001,15.1703,2.0328,4.7899,1.5581,17.0932,6.7152,9.71,3.8942,12.9099,7.4482,7.6513,8.4709,4.3525,1.983,5.3294,,,,0.09123,,,,0.49537,4.8252,4.4509,1.076,12.1998,2.0035,0.48888,4.1188,3.7787,54.7687,16.5424,262.7638,4.9359,5.6221,2.0902,2.1003,4.5707,9.3536,2.4687,3.9712,0.68395,8.1901,13.7282,17.6406,9.2103,2.5593,5.082,2.2693,21.3627,6.3417,4.5626,1.4446,3.209,10.1452,16.9531,4.2089,5.092,4.1308,1.6844,1.7895,4.9457,12.5874,3.4057,2.8719,13.1671,3.0101,2.6931,2.5449,15.5797,2.3346,4.8434,1.5046,17.0581,6.3984,9.5879,4.6666,10.6237,8.398,7.5007,8.7387,4.0988,1.9095,5.0559,,,,,,,,,,,,,,,,,,,223
+nG+MAN3T0HC002,1.572,3.2169,,-50y,,,,20.7649,4.4245,2.5673,2.51,1.4166,edsd,,,M,,0.43211,3.9206,3.7606,0.90077,8.7758,1.4243,0.36201,3.1835,3.2314,49.0913,15.6173,224.7484,4.016,4.1656,1.6788,1.7312,3.0359,7.3659,1.6841,3.1416,0.72065,6.1691,11.0933,25.9601,7.54,2.3004,4.3651,1.5494,17.151,5.7157,3.4982,1.0378,2.5173,6.3812,13.4873,3.03,4.4668,3.1942,1.4297,1.6405,3.9075,9.0072,3.2431,2.0849,11.782,2.3633,2.5496,2.2691,13.0542,1.9484,3.7198,0.99363,14.1363,4.861,9.0355,3.5643,9.6246,7.6237,7.2876,7.0982,3.443,1.7326,5.3616,,,,0.07009,,,,0.39005,3.4598,3.6146,0.85776,10.7613,1.6495,0.3749,3.3603,3.3457,48.7658,15.1496,226.2902,3.2503,4.2915,1.5662,1.983,3.3333,7.4758,1.7222,3.5105,0.84992,6.6976,11.3054,21.6844,7.8192,2.1137,4.0911,1.5406,16.5951,5.5605,3.508,0.91035,2.5118,7.1911,13.6863,2.9326,4.3071,3.0849,1.4257,1.6766,3.5558,9.1188,2.9996,1.9953,9.4994,2.0589,2.3654,1.8904,11.8814,1.9995,3.5381,0.97914,14.4123,5.101,8.3038,3.9083,10.2779,7.1459,7.1846,7.0754,3.3471,1.3957,5.0802,,,,,,,,,,,,,,,,,,,224
+nG+MAN3T0HC003,0.92151,1.6,,-50y,,,,18.8633,4.3107,2.4164,2.0867,0.94766,edsd,,,F,,0.42411,4.7133,4.2674,0.94757,9.1753,1.5216,0.38425,2.8439,2.7813,43.5986,15.5595,240.7816,3.7793,4.073,1.7618,2.0074,3.5094,7.0565,1.983,3.1927,0.40076,6.1344,10.5122,10.2369,6.935,2.3998,4.5362,1.8628,19.3525,5.7645,3.9091,1.2561,2.6333,7.1463,13.5444,3.237,4.0348,3.4729,1.6004,1.6861,4.3599,10.046,3.1201,2.2232,11.9325,2.1978,2.6404,2.1705,12.9722,1.7725,3.4359,1.2427,14.0161,5.3636,8.6843,3.3454,10.4071,7.4062,7.521,7.7727,4.2532,1.5321,4.9351,,,,0.06967,,,,0.38436,4.0241,4.0761,0.93386,10.0928,1.909,0.38759,2.9679,2.884,44.8393,15.0817,241.8319,3.7257,4.5519,1.8133,2.045,3.8594,7.4238,2.0199,3.3784,0.41762,5.7775,11.1037,9.478,7.2877,2.3249,4.947,1.861,17.6735,4.5494,3.9283,1.0608,2.5406,7.6531,13.6957,2.2898,3.6322,3.8173,1.6568,1.6673,3.9078,10.5318,2.921,2.2895,10.5334,2.2048,2.5048,1.943,12.4649,1.8182,3.3666,1.1343,13.7294,5.2361,8.3106,3.9854,10.5224,7.1765,7.2046,7.8606,3.9979,1.3885,4.6789,,,,,,,,,,,,,,,,,,,225
+nG+MAN3T0HC004,1.0344,2.0142,,-50y,,,,17.5955,4.3164,2.6222,2.0463,0.97752,edsd,,,F,,0.33492,4.5862,3.5961,0.9011,9.0953,1.3797,0.33559,2.9698,2.1591,46.6155,15.2252,215.8183,3.6877,4.0143,1.7702,1.7248,3.1128,7.1217,1.8094,3.0859,0.37663,5.5259,10.6209,13.7011,6.9139,2.1288,4.8278,1.6576,17.3826,5.5199,3.4604,1.0876,2.8104,6.9455,13.6124,2.8563,3.7199,2.8353,1.4107,1.4117,4.4256,10.4746,3.145,1.9099,10.6325,2.2225,2.2895,2.0039,12.0505,1.8999,3.1634,1.0159,13.3131,5.3245,9.1534,3.2059,10.5645,7.4843,6.7641,7.2039,3.6224,1.4827,4.4261,,,,0.06557,,,,0.34421,3.9222,3.3686,0.86099,10.7894,1.6968,0.37409,3.0752,2.269,47.2334,14.1917,221.2064,3.987,4.1831,1.7196,1.728,3.4223,7.3385,1.8877,3.3323,0.33252,5.7668,10.8413,11.8521,7.901,2.0592,4.7776,1.688,18.0319,5.1115,3.7058,0.95377,2.7211,7.4819,14.0497,2.5412,3.9008,3.0958,1.4342,1.4582,3.8666,10.2645,2.8667,1.9203,10.6031,2.0672,2.3497,1.8158,11.0384,1.8116,3.1933,1.0432,13.5098,5.0535,8.9313,3.7911,11.5183,7.655,6.7055,7.5484,3.2658,1.3803,4.2237,,,,,,,,,,,,,,,,,,,226
+nG+MAN3T0HC005,1.2047,1.7778,,-50y,,,,18.2717,4.2224,2.4289,1.917,1.0767,edsd,,,F,,0.39471,4.4607,4.2618,0.89996,8.9531,1.4954,0.35534,3.1032,2.8797,44.5662,15.2986,221.3182,3.7717,4.8713,1.8106,1.9034,3.0754,7.3156,1.9279,3.1989,0.54857,6.3145,11.3782,10.6779,7.1563,2.4126,4.6616,1.6784,17.8445,5.6957,3.5985,0.98038,2.456,6.7962,13.649,3.4843,4.1161,3.5001,1.408,1.6976,4.4163,10.2564,3.2697,2.1205,11.7092,2.089,2.4625,2.2326,11.7822,1.8587,3.3339,1.1584,14.1541,5.4901,8.2792,3.6601,10.5995,7.1608,7.2998,7.7769,3.8292,1.5646,4.8882,,,,0.08438,,,,0.39205,4.2456,4.0413,0.86232,10.4836,1.631,0.37595,3.2255,2.7861,44.5615,14.882,224.9161,3.7248,5.1156,1.7756,1.9229,3.4976,7.5457,2.0388,3.3652,0.47477,6.4854,11.4744,9.5205,7.8396,2.1152,4.8793,1.6841,16.6894,5.4842,3.7022,1.1591,2.5359,7.3002,13.8112,3.1466,4.0725,3.3505,1.5673,1.6654,4.0465,10.0915,2.9055,2.0389,9.3283,2.0699,2.3338,1.8568,11.6976,1.942,3.3033,1.1654,14.5743,5.2838,7.8621,4.5789,9.9654,7.1474,7.0833,8.0132,3.5037,1.3595,4.552,,,,,,,,,,,,,,,,,,,227
+nG+MAN3T0HC006,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,228
+nG+MAN3T0HC008,2.3602,3.3379,,-50y,,,,21.1231,5.4568,2.9156,2.3581,1.8804,edsd,,,M,,0.51409,5.3212,5.3807,1.001,10.2752,1.6462,0.45532,3.616,3.3213,54.2968,17.1942,249.3192,4.6024,4.7321,1.9829,2.1109,3.4631,7.9227,2.1032,3.6754,1.9334,7.2467,11.5966,38.6828,7.9709,2.666,5.5136,1.9993,20.8177,6.6668,4.0128,1.4265,3.4006,7.9687,15.991,3.5541,4.8135,3.4357,1.7352,1.9055,5.0463,13.0153,3.5993,3.0549,13.531,2.7762,2.7005,2.7415,13.9171,2.8134,4.2136,1.3644,16.123,6.2688,9.0181,3.7773,11.9308,8.8477,8.0449,8.5546,4.2387,2.034,5.6657,,,,0.07136,,,,0.46575,4.3045,4.9162,1.0192,11.5993,1.915,0.46534,3.9194,3.4755,55.275,16.6993,253.7161,4.5708,4.8477,1.9621,2.2927,3.757,8.4729,2.0569,4.0002,2.1061,6.6563,13.085,33.0263,8.5558,2.4036,5.0995,1.9883,20.5293,5.4373,3.9158,1.3226,3.2789,9.3907,15.5635,2.9678,4.5297,4.2238,1.8173,1.9924,4.6962,12.0215,3.3322,2.9604,11.8415,2.9233,2.6093,2.5971,15.0636,2.2913,4.0435,1.3177,15.6749,6.5321,8.8988,3.9975,10.9728,8.5913,7.9898,8.9331,4.1998,1.9688,5.459,,,,,,,,,,,,,,,,,,,229
+nG+MAN3T0HC009,1.7082,1.8993,,-50y,,,,16.0241,4.0126,2.1681,1.9905,1.2276,edsd,,,F,,0.35194,4.0768,3.5753,0.82209,8.9056,1.2267,0.34825,2.8662,2.3271,41.3001,11.9739,204.9386,3.6662,4.0173,1.5651,1.8045,2.8687,6.8404,1.7464,3.0322,0.64834,5.6807,10.2239,19.5313,6.5887,1.9076,4.4103,1.5201,15.5558,5.159,3.1058,1.0947,2.755,5.826,12.6821,2.8955,3.8194,2.8438,1.203,1.4829,4.202,10.6643,2.9769,2.0253,9.9328,2.0912,1.9809,1.8933,11.1563,2.0851,2.9815,1.0654,11.6837,4.786,8.6776,3.0905,10.6911,6.9802,6.5134,6.2784,3.1315,1.5763,4.4831,,,,0.07702,,,,0.32204,3.6504,3.4688,0.80628,9.8549,1.4111,0.33822,2.8977,2.408,42.9428,11.6546,206.2201,3.8267,4.1126,1.5565,1.7788,2.9758,7.2479,1.7508,3.251,0.76519,5.5048,10.912,13.0913,7.3246,1.8888,4.061,1.4958,16.1397,4.4493,3.1269,1.1739,2.7454,6.4922,13.172,2.3504,3.8081,2.8948,1.3857,1.4942,4.0201,10.2237,2.8699,2.1233,9.3724,1.9107,1.9568,1.8621,11.0016,1.6691,3.0909,0.97945,11.1834,4.6979,7.1374,3.7321,9.5405,6.606,6.2957,7.268,3.2086,1.3987,4.2283,,,,,,,,,,,,,,,,,,,230
+nG+MAN3T0HC010,2.0768,2.3398,,-50y,,,,15.5076,4.6959,2.4424,2.1408,1.8946,edsd,,,F,,0.44214,4.5979,4.4162,0.91589,9.89,1.5544,0.37923,3.0178,3.0003,47.2679,12.7531,205.1095,4.138,4.5685,1.8062,1.8254,3.6363,7.9281,1.9651,3.5098,0.59446,6.3132,11.941,22.8015,7.7599,2.2768,4.9897,1.8465,20.5379,6.4869,3.8233,1.0159,2.5253,7.4901,14.9531,3.3539,4.4821,3.6718,1.3862,1.4048,4.8399,11.3572,3.4414,2.4438,10.4683,2.538,2.4222,2.2659,12.05,2.1135,3.7316,1.2125,15.2984,5.0563,9.3385,3.5419,11.1369,7.927,6.6497,7.3685,3.9727,1.4354,4.3168,,,,0.07643,,,,0.43007,4.6927,4.1115,0.93134,10.8441,2.0067,0.39993,2.9724,3.2886,46.5324,12.1037,212.6126,3.8663,4.9336,1.8413,1.9838,4.3331,7.9478,2.0479,3.6945,0.54138,6.4716,11.3922,19.8907,8.1016,2.3645,5.0583,1.9296,19.249,5.4129,4.0725,1.2433,2.8146,7.9787,14.1004,2.8358,4.4483,3.7968,1.5889,1.4408,4.2966,11.7678,3.052,2.3148,9.7747,2.1957,2.3911,1.8971,11.1964,1.8301,3.5463,1.1967,14.8198,4.9354,7.9431,4.1829,11.3561,7.6082,6.439,7.5165,4.1919,1.375,4.1214,,,,,,,,,,,,,,,,,,,231
+nG+MAN3T0HC012,1.7433,3.1062,,-50y,,,,18.633,4.704,2.6146,2.2797,1.4161,edsd,,,M,,0.49261,5.1229,4.867,0.96877,9.1168,1.6753,0.42509,2.8929,3.3293,49.98,15.6951,230.4366,4.6187,4.7357,1.9605,2.3081,3.716,8.1695,2.1159,3.7722,0.82917,6.8257,13.213,19.5064,7.6197,2.5486,4.7509,1.9465,19.892,6.6191,4.1319,1.0488,2.2716,6.8789,16.4376,3.079,4.6383,3.5979,1.774,1.673,4.724,10.8436,3.6837,2.7003,13.3585,3.1235,2.7531,2.3889,11.9276,2.8102,3.5921,1.4012,15.6987,4.9771,10.0726,3.2423,10.7163,7.9968,7.6112,8.4413,4.0992,1.9144,5.1161,,,,0.08937,,,,0.44948,4.3311,4.7486,0.92208,11.0191,1.896,0.4362,3.0673,3.5623,50.2053,14.851,232.2511,4.5601,4.3487,1.9038,2.4437,3.97,8.2928,2.1071,3.9042,0.68606,7.3738,13.4129,18.0742,8.4702,2.3951,4.5917,1.897,20.6739,5.8715,4.0835,0.99114,2.1741,7.8364,16.5941,2.8751,4.4894,4.157,1.6756,1.6981,4.4736,11.1725,3.2799,2.6285,11.4864,2.5521,2.5457,2.3798,12.5486,2.3089,3.5031,1.404,15.3386,5.1729,9.0035,3.9606,10.4968,8.6455,7.4725,8.8659,4.0039,1.7168,4.8321,,,,,,,,,,,,,,,,,,,232
+nG+MAN3T0HC013,0.96391,1.5949,,-50y,,,,17.0389,4.4837,2.3776,2.1431,0.39686,edsd,,,F,,0.00296,0.00216,0.46849,0.73903,2.2506,0,0.39393,3.2706,0,35.054,13.9885,69.2732,0.00108,4.2504,1.5204,1.00E-05,0,6.8983,0.52539,2.7845,0.3713,6.1828,10.5743,2.7368,6.8705,0.02822,0,0.05335,0,5.794,1.4103,0,0,0.00046,13.0122,3.1354,4.052,0,0.00156,0.31864,1.548,3.5147,2.9152,1.2675,0,0.02077,1.1664,1.6021,0,0.26866,0.34756,0.79424,0.00013,0,0.29404,3.4871,0.43408,3.8933,2.2812,6.141,0,0.31108,4.7468,,,,0.0788,,,,0.00066,0.00019,0.12458,0.80246,1.1839,0,0.29494,3.0698,0,36.0414,13.5685,61.8725,2.00E-05,4.0344,1.5984,0,0,6.9563,0.51662,3.0757,0.51523,6.4312,10.6705,1.953,7.219,0.00098,0,0.06173,0,3.4789,1.0463,0,0,0.00154,12.9694,2.8358,3.8708,0,1.00E-05,0.17428,1.3402,2.9491,2.7196,0.89588,0,0,0.63246,1.236,0,0.00244,0.23437,0.62791,0.00029,0,0.01333,2.7989,0.04308,3.5,1.8203,6.3126,0,0.1162,4.5571,,,,,,,,,,,,,,,,,,,233
+nG+MAN3T0HC014,1.2664,0.73524,,-50y,,,,14.3243,4.061,0.00144,0.30153,1.0479,edsd,,,M,,0.095,0.00936,0.93454,0.93429,5.0678,8.00E-05,0.3909,2.626,0.00075,8.4133,3.9949,93.4871,0.12649,4.6735,1.7088,0.00096,0,6.8267,0.77512,3.2914,0.37413,4.5079,10.3129,4.2156,5.8934,0.03638,0.00012,0.13214,0,6.0224,1.5469,0,0,0.00232,12.7688,2.0922,2.1357,0,0.0049,1.2159,2.5736,6.5694,3.2339,1.7975,0.00111,0.60781,1.2601,1.7054,7.00E-05,1.8796,1.2789,0.91649,5.00E-05,0,1.6946,3.6751,1.8453,6.8612,5.6342,6.8159,0,1.4479,5.254,,,,0.07591,,,,0.08978,0.00729,1.2425,0.92367,6.6486,0.00047,0.41433,2.4984,0.00133,7.4207,3.8003,94.0231,0.23731,4.2668,1.7916,0.00581,0,7.0561,0.88096,3.4248,0.35758,4.5203,10.0606,4.2276,5.5517,0.03515,0.00011,0.16873,0,5.1691,1.529,0,0,0.01018,12.3632,1.5826,1.4146,0.00048,0.01065,1.3485,2.3859,6.4692,2.9363,1.8725,0.00068,0.53142,1.354,1.6502,0.00012,1.613,1.3661,0.91095,0.00046,0,1.1506,3.8805,1.7984,7.0259,5.6051,7.1214,0,1.3559,5.0321,,,,,,,,,,,,,,,,,,,234
+nG+MAN3T0HC016,1.8122,2.3628,,-50y,,,,18.18,5.3858,2.5363,2.4587,3.0552,edsd,,,M,,0.48236,4.9245,4.3136,0.84615,9.2512,1.5551,0.38806,3.6789,3.1889,48.8959,15.7173,231.5152,4.9912,4.5121,1.6321,2.0666,3.6913,7.603,2.0793,3.2644,1.1065,6.5227,10.9339,42.9565,7.9342,2.4124,4.371,1.9333,19.8121,6.4312,3.8666,1.0426,2.6489,7.4088,13.3737,3.921,4.2695,3.0519,1.4715,1.7443,4.2021,10.9054,3.1722,2.4935,13.411,2.7369,2.2607,2.4753,12.5606,1.9968,3.9778,1.2978,14.8115,5.9056,9.6355,3.4728,11.0443,6.7864,6.9179,7.6834,3.7374,1.9283,4.7842,,,,0.06372,,,,0.37592,4.6416,4.4452,0.89651,10.5865,1.6798,0.38685,3.5084,3.5276,47.7163,15.0825,234.6124,4.4878,4.8267,1.7792,2.0766,3.9194,7.5756,2.1025,3.4728,1.0926,6.3455,11.2242,33.4486,8.6267,2.2492,4.3434,1.8383,19.933,4.7768,3.6583,1.3035,2.6694,8.0209,14.4022,3.2534,4.0129,3.2817,1.596,1.7519,4.1235,11.6293,2.9552,2.6632,11.1468,2.425,2.2252,2.333,12.4819,2.0447,3.9383,1.1925,14.2742,5.1464,9.1188,4.4749,10.9218,7.9591,6.6604,8.8386,3.6761,1.7,4.6372,,,,,,,,,,,,,,,,,,,235
+nG+MAN3T0HC018,1.7034,1.0793,,-50y,,,,15.6338,4.8564,1.4673,1.9311,0.97859,edsd,,,M,,0.0003,0.00124,1.1702,0.89401,5.0961,0.00046,0.40802,3.0493,0.00029,23.5087,12.2231,98.56,0.43185,5.4245,1.8342,0.02155,0,7.714,0.56823,3.3032,0.36505,7.0699,11.9568,3.8601,7.294,0.06594,0,0.03454,0,6.8641,1.6916,0,0,0.00018,15.3681,3.5237,4.2284,0.00223,0.02459,0.95612,2.6286,7.2975,3.4223,1.865,0.00568,0.78485,1.4214,2.0836,0.00255,2.099,0.79482,0.7997,2.00E-05,0,1.4319,4.1125,1.7797,8.561,4.1722,8.556,0,1.7277,4.444,,,,0.07313,,,,9.00E-05,6.00E-05,0.9969,0.87078,5.3578,5.00E-05,0.36049,3.0625,0.00039,24.3004,12.3303,97.6268,0.30663,5.4629,1.8487,0.01207,0,8.1453,0.23156,3.4769,0.44527,7.9388,12.4884,4.1696,7.6364,0.02731,0,0.03295,0,5.4663,0.5615,0,0,0.00038,15.1353,3.4708,4.3265,0.00197,0.00987,0.88805,2.561,7.3639,3.1033,1.8795,0.00167,0.38842,1.1899,1.9014,0.00078,1.5154,0.65264,0.43488,0.00055,0,0.74456,4.7781,1.3359,7.5386,4.141,8.0369,0,1.4603,4.2723,,,,,,,,,,,,,,,,,,,236
+nG+MAN3T0HC019,1.3846,0.25159,,-50y,,,,9.0519,2.6869,0,0.01071,0.75438,edsd,,,F,,0.13301,0.02955,1.3518,0.75894,3.9193,0.00414,0.37279,2.0798,0.0006,2.6377,0.57277,79.2274,0.30529,3.8911,1.394,0.00757,0,5.2681,0.90295,2.8084,0.34671,2.918,7.7384,5.4567,3.9167,0.22842,0,0.25043,0,5.8146,2.0093,0,0,0.00791,12.1717,1.4747,0.40331,0.00015,0.05771,1.0678,1.534,3.6801,2.7175,1.6036,0.00809,1.0746,1.8238,1.9235,0.00038,1.7231,1.4263,0.95159,0.00013,0,1.2354,3.4305,0.58342,6.0861,3.9641,5.9117,1.00E-05,1.4522,4.486,,,,0.05472,,,,0.03898,0.01082,0.72891,0.77549,3.2251,0.0014,0.33044,2.7178,0,3.1812,0.71528,76.6563,0.01217,4.2654,1.4286,0.00088,0,6.1677,0.8931,3.0099,0.50736,4.3628,9.211,3.3372,4.9555,0.07,0,0.23008,0,4.6182,1.6316,0,0,0.02225,12.1545,1.7028,1.0875,0,0.01559,0.80256,1.3853,3.1452,2.5611,1.3262,0,0.03744,1.4502,1.457,0,0.54699,0.79783,0.81661,0.00052,0,0.20706,3.7419,0.18875,4.9112,3.756,5.7627,0,0.78203,4.2635,,,,,,,,,,,,,,,,,,,237
+nG+MAN3T0HC020,2.9825,1.8463,,-50y,,,,18.4171,4.8811,2.587,2.0504,2.2316,edsd,,,F,,0.42415,5.1149,4.677,0.81236,9.0578,1.6095,0.3848,3.255,3.0044,44.55,14.443,203.9779,4.2457,4.3801,1.5448,2.1225,3.8607,6.9452,2.1315,3.1305,0.63192,6.3901,11.016,23.2024,7.19,2.4574,5.3641,1.931,19.6679,5.8606,4.099,1.0805,2.4911,7.5323,14.4684,3.1313,4.1384,3.0452,1.634,1.5615,4.6726,10.8734,3.1342,2.6329,12.296,2.452,2.5092,2.4907,12.7384,1.7346,3.5025,1.3893,14.0776,5.5889,9.4761,3.3455,9.875,6.6008,6.5072,7.2536,4.2196,1.4384,4.8843,,,,0.07735,,,,0.3852,4.2935,4.102,0.81764,9.7638,1.7091,0.38747,3.8375,3.1409,44.7195,14.0881,204.8771,4.0143,5.2677,1.6126,1.9559,3.9306,6.9456,2.0676,3.328,0.723,6.4805,11.3008,19.6009,8.2625,2.2645,4.7426,1.7927,19.7995,5.6415,3.7024,0.94556,2.5158,9.1281,14.5541,2.8999,3.9853,3.6501,1.5673,1.4856,4.1532,10.9553,2.8747,2.5532,11.5793,2.4669,2.309,2.2704,12.8111,2.0276,3.2779,1.3053,14.4455,6.055,8.6764,4.4398,9.6993,6.5711,6.4398,7.7847,3.1766,1.5639,4.5574,,,,,,,,,,,,,,,,,,,238
+nG+MAN3T0HC021,1.4349,2.0474,,-50y,,,,20.0813,4.9295,2.386,2.223,2.0648,edsd,,,M,,0.47015,4.911,4.9333,0.86931,9.2433,1.5044,0.41486,3.1621,3.5048,45.8046,17.9163,267.9129,4.3576,4.7744,1.6251,2.118,3.6738,7.1098,2.0042,3.4506,0.74077,6.3329,10.751,26.4464,7.61,2.4884,4.6051,1.9743,18.6286,6.3081,3.8542,1.1105,2.588,7.0512,13.0567,3.6268,4.0253,2.9777,1.5065,1.8908,4.9885,11.4207,3.3609,2.713,10.4781,2.4877,2.4608,2.539,11.7792,2.3654,4.1447,1.3665,14.4063,5.2036,8.3352,3.5556,9.4013,7.3668,7.7786,7.7609,3.6295,1.9204,5.4715,,,,0.05304,,,,0.43905,4.4693,4.7025,0.89181,10.2329,1.7857,0.45301,3.1923,3.7532,47.1806,17.5141,274.0747,4.2161,4.8374,1.8665,2.0495,4.3083,7.488,2.1982,3.684,0.66404,7.0424,11.0295,23.9601,8.4769,2.44,4.57,2.029,17.1763,5.5995,3.9443,1.2879,2.3766,8.1339,13.8534,3.0832,4.0666,2.8621,1.6389,1.911,4.4756,11.5462,3.4228,2.585,10.1522,2.4843,2.5118,2.1613,11.1296,1.9579,4.0897,1.3429,15.1682,5.3775,7.8592,4.1733,9.4148,6.8985,7.2338,8.1518,3.5485,1.6525,5.2037,,,,,,,,,,,,,,,,,,,239
+nG+MAN3T0MCI001,0.70972,1.6016,,-50y,,,,16.0278,4.5469,2.6738,2.0385,0.88663,edsd,,,F,,0.39515,3.854,3.5746,0.77713,7.6242,1.3806,0.33588,2.9829,2.4758,43.3074,13.1052,202.3092,3.4933,3.8993,1.4048,1.7001,3.1291,6.2676,1.6118,3.0048,0.3085,5.5888,9.1926,6.8798,6.5916,2.1449,4.7158,1.458,17.1615,5.121,3.3196,0.97622,2.0857,5.8231,11.3543,2.9422,3.6566,3.2241,1.3231,1.41,4.3043,9.6138,2.7641,1.9134,9.9579,1.9609,2.2591,2.0156,10.0129,1.7658,3.6406,0.98202,11.5908,4.2845,7.561,2.8281,9.1825,6.0232,6.4669,6.245,3.3791,1.3545,4.3095,,,,0.06708,,,,0.34892,3.4694,3.5431,0.81267,8.0545,1.4067,0.33865,2.8999,2.5937,43.8192,12.9229,207.8096,3.2912,4.2997,1.4859,1.6595,3.2345,6.5846,1.623,3.0915,0.343,5.741,9.7025,5.7605,6.8819,1.8401,4.4826,1.4174,15.5385,4.6056,3.0518,1.0611,2.24,6.4216,12.0458,2.5854,3.4699,2.9659,1.2818,1.427,3.993,9.6595,2.6132,2.0129,9.1474,1.9233,2.117,1.8461,11.1298,1.6307,3.515,0.9568,12.3813,4.2338,6.7592,3.6544,8.4749,6.1503,6.1603,6.4508,2.9372,1.2987,4.1144,,,,,,,,,,,,,,,,,,,240
+nG+MAN3T0MCI002,1.8314,2.6779,,-50y,,,,14.7604,4.1318,2.353,2.0224,2.2694,edsd,,,F,,0.35398,4.1603,4.144,0.71712,7.8526,1.3045,0.3558,2.4377,2.8677,41.3138,12.0243,171.5857,3.6058,3.8675,1.3851,1.5849,2.9944,6.5195,1.707,2.7935,0.81622,5.1534,9.2094,32.7167,7.0737,2.0383,3.8364,1.5493,14.7495,5.1569,3.3905,0.8838,1.9321,6.1147,11.6384,3.2655,3.6817,3.0246,1.1944,1.2638,3.6757,8.9996,2.9054,2.3411,9.8007,2.094,2.2995,2.1427,9.6108,1.8782,3.643,1.1458,11.627,4.3549,7.9444,3.064,9.1142,6.252,6.0253,6.4499,3.0679,1.3732,3.8789,,,,0.06565,,,,0.34863,4.1127,3.8964,0.75848,8.8617,1.4124,0.3655,2.6728,3.0383,39.28,10.9827,181.8204,3.6133,4.2275,1.468,1.7112,3.1661,6.6665,1.6994,2.967,0.69365,5.3377,9.6893,22.7909,7.321,1.8512,4.2258,1.614,15.1184,4.2287,3.1968,0.80958,1.9052,6.6667,11.9343,2.3226,3.6809,2.9781,1.2925,1.3905,3.5566,9.4578,2.6493,2.1974,9.2561,2.0846,2.2356,1.8789,10.3549,1.8005,3.6984,1.0892,11.2428,4.2116,6.8754,3.5341,9.4762,6.8314,6.2277,6.8238,3.0548,1.4185,3.9227,,,,,,,,,,,,,,,,,,,241
+nG+MAN3T0MCI003,1.4719,2.5289,,-50y,,,,17.753,4.8524,2.6358,2.3057,1.3542,edsd,,,F,,0.39298,4.2807,3.7132,0.8853,8.6024,1.3301,0.37417,3.3372,2.882,47.8704,14.4579,200.6377,3.818,4.5031,1.626,1.7378,3.3075,7.1326,1.8037,3.3007,0.67355,5.8756,10.3088,16.0797,7.7168,2.1453,4.7181,1.575,16.2955,5.8863,3.5166,0.99431,2.5682,6.6449,13.0492,3.0963,4.0677,3.3434,1.3767,1.4915,4.4008,11.2827,3.29,2.3017,11.6791,2.3728,2.1983,2.1861,11.8194,1.8216,3.5654,1.1542,13.4789,4.8832,8.7663,3.6641,10.6328,6.79,6.9036,6.5856,3.5039,1.529,4.6325,,,,0.07495,,,,0.35988,3.7856,3.6267,0.8557,8.9835,1.6621,0.37298,3.3453,2.9766,47.2251,14.3158,203.4714,3.6974,4.7066,1.6269,1.8298,3.5588,7.3288,1.8234,3.5323,0.792,6.2472,10.5303,16.6148,8.0846,1.9809,4.3293,1.6049,17.7081,4.954,3.4535,1.0679,2.6416,7.6361,13.5857,2.8502,4.0193,2.9952,1.3809,1.5162,3.9268,10.8608,2.9406,2.2169,10.8412,2.1277,2.0584,1.9562,10.8727,1.7538,3.4841,1.1007,12.9133,5.3321,7.4458,4.2321,9.187,6.8511,6.5749,7.3061,3.3013,1.3621,4.4412,,,,,,,,,,,,,,,,,,,242
+nG+MAN3T0MCI004,2.4702,6.1146,,-50y,,,,2.0826,4.8946,1.7593,3.3807,3.5469,edsd,,,F,,0.02263,1.9898,2.4313,0.18576,7.3169,0.41169,0.13799,3.7946,0.88732,31.3093,13.6673,128.6959,2.1042,6.106,0.39954,0.90154,1.9083,3.9341,0.76651,1.3047,0.56994,6.143,5.4301,28.2007,7.4786,0.74684,3.087,0.64037,7.2894,6.305,1.2391,1.3891,2.9929,3.6668,7.3624,5.7639,3.5251,1.4087,0.49832,0.19332,4.1248,13.0753,2.0225,1.4917,8.1361,1.946,0.90385,1.4588,6.6888,1.5083,0.32999,0.64464,5.9188,3.5064,6.0253,4.0374,8.4484,3.4718,2.2488,2.5612,1.414,1.066,1.0756,,,,0.06507,,,,0.0226,1.9435,2.0098,0.18236,9.1916,0.45181,0.13082,3.897,1.107,31.918,13.6038,131.7706,2.1079,6.4748,0.34445,0.75116,1.969,3.8349,0.70935,1.1821,0.53909,7.3851,5.5287,26.7043,7.7322,0.67733,2.897,0.66198,6.9551,5.9004,1.0424,1.3235,2.5994,3.9657,7.0908,5.4531,3.9041,1.3448,0.48335,0.21428,3.403,11.9276,1.593,1.5261,6.8357,1.2776,0.77084,1.3134,6.3496,1.1138,0.32208,0.55918,6.0263,3.4089,5.1788,5.1011,7.6513,3.4409,1.9192,2.8712,1.1485,1.009,1.1205,,,,,,,,,,,,,,,,,,,243
+nG+MAN3T0MCI005,1.5598,2.3519,,-50y,,,,16.3267,3.8669,2.3747,1.9097,1.5533,edsd,,,M,,0.31748,3.6878,3.5856,0.62498,7.9257,1.2413,0.31313,3.1004,2.3142,40.733,13.7156,182.5569,3.3077,3.6811,1.2463,1.8109,2.8706,6.184,1.5884,2.654,0.92777,5.6675,8.7671,21.8116,6.7632,1.9837,3.9037,1.3637,14.7075,6.1161,3.16,0.91292,2.1757,5.7178,10.7795,3.437,4.0016,3.0103,1.2667,1.4512,3.8922,9.1461,2.6542,2.0745,9.9779,2.4906,2.2202,2.0525,10.6862,2.08,2.8971,1.0087,11.6951,4.3593,7.8364,3.2368,9.5078,6.4189,6.17,5.8961,3.3994,1.491,4.3908,,,,0.07342,,,,0.27463,3.4799,3.2654,0.6096,9.1996,1.3405,0.32624,2.9717,2.5073,39.7329,12.7794,186.1888,3.2736,4.4989,1.3314,1.6264,3.1716,6.2572,1.6976,2.7611,1.0165,5.7367,8.7273,18.8999,7.0864,1.885,4.1291,1.4155,14.0834,4.6644,3.0089,0.83979,2.2319,6.6262,10.9934,3.1677,3.7857,2.9058,1.3532,1.5003,3.5454,9.1457,2.5273,2.1121,8.7491,2.1279,2.0102,1.9188,10.5583,1.7409,2.8944,0.97633,12.0018,4.3139,7.0168,4.363,9.0405,6.3171,5.8626,6.4156,2.9755,1.3723,4.1737,,,,,,,,,,,,,,,,,,,244
+nG+MAN3T0MCI006,1.3797,1.7453,,-50y,,,,17.2171,5.4817,2.893,2.437,1.6975,edsd,,,F,,0.38664,4.2242,4.0881,0.8008,8.7033,1.3981,0.33346,2.8431,2.7719,46.3621,15.227,189.237,4.1408,4.0278,1.5057,1.823,3.1787,7.107,1.7386,3.0689,0.90791,6.0304,10.8121,19.3711,7.5597,2.272,4.8029,1.5606,16.6257,6.2003,3.3074,1.2298,2.4471,6.4399,13.3383,3.2823,4.1883,2.8552,1.3371,1.528,4.2412,10.5263,3.0905,2.3911,11.457,2.4116,2.1443,2.3762,11.5461,2.2004,3.3958,1.0772,11.6763,4.7932,8.4148,3.5751,11.021,6.6204,6.5938,7.3164,3.224,1.885,4.5314,,,,0.07934,,,,0.36741,4.014,3.5798,0.77569,9.0385,1.5197,0.32912,2.9262,2.8077,45.1608,14.5272,193.0484,3.9428,4.2208,1.5454,1.7829,3.4809,7.0857,1.6844,3.1058,0.66256,6.0687,10.8828,15.6604,7.9171,1.9705,4.4849,1.5598,16.6387,4.9477,3.0127,1.2107,2.527,7.2283,13.6094,2.9318,3.9903,2.7013,1.399,1.5705,3.7818,10.6284,2.7618,2.2248,10.1362,2.1701,1.8947,2.0154,10.3294,1.7802,3.3618,0.98644,12.5855,5.2929,7.5073,4.0746,10.6824,6.9858,6.1315,7.6791,3.1577,1.5274,4.3009,,,,,,,,,,,,,,,,,,,245
+nG+MAN3T0MCI007,2.156,2.3676,,-50y,,,,18.0333,4.8407,2.5717,2.1949,2.1285,edsd,,,M,,0.33912,4.4281,4.0384,0.88831,8.8246,1.3642,0.36765,3.1601,2.4853,45.3765,13.7356,189.7608,4.1096,3.8755,1.5954,1.8637,3.1207,6.8406,1.8414,3.1144,1.1008,5.7793,11.0469,30.2228,6.8955,2.2053,4.7763,1.6424,16.6826,5.6852,3.5812,1.204,2.5312,6.8154,13.5345,3.1264,3.9129,3.0989,1.4531,1.4771,3.9719,9.2855,3.0379,2.4272,10.7917,2.4721,2.3365,2.3251,11.0321,1.9593,3.3141,1.1785,11.8188,5.3179,8.8539,3.3858,8.4367,6.9033,6.3765,7.0678,3.6834,1.5869,4.7548,,,,0.07303,,,,0.31019,3.7918,3.8641,0.79242,9.5174,1.5218,0.37363,3.2041,2.3291,46.765,13.7119,185.9887,4.0572,4.0908,1.5648,1.8262,3.4391,7.4468,1.7976,3.1628,1.1453,6.1974,11.0239,23.0322,7.3752,2.0647,4.3012,1.5496,14.7771,4.4909,3.3936,0.90791,2.4373,7.4924,12.4739,2.5282,4.0839,2.7918,1.4839,1.4005,3.4772,8.402,2.9544,2.397,8.7061,2.351,2.3064,2.1612,11.3061,1.8144,3.1774,1.0854,12.0217,5.4325,7.0785,3.56,8.5336,6.72,5.9142,7.1243,3.0562,1.603,4.4025,,,,,,,,,,,,,,,,,,,246
+nG+MAN3T0MCI008,1.8244,1.701,,-50y,,,,18.1835,4.7098,2.8787,2.2973,1.6754,edsd,,,M,,0.371,4.8666,4.0666,0.83217,9.15,1.6704,0.37578,3.2017,2.6953,48.3698,15.0998,213.9673,3.865,4.3731,1.6314,1.8625,3.8139,7.6829,1.9238,3.2571,0.88033,6.8599,11.0853,23.4172,7.0528,2.5063,4.2768,1.8339,19.922,7.2955,3.7608,1.3369,3.1151,7.2598,13.7679,3.9225,4.1958,3.3625,1.4459,1.5301,4.2252,11.0284,3.154,2.3847,12.1016,2.5174,2.6018,2.2909,13.2339,2.0461,3.3951,1.2992,13.7549,5.4277,9.5152,3.6813,11.024,7.0721,6.5338,7.7644,4.0353,1.5876,4.783,,,,0.08038,,,,0.33936,4.6087,3.6746,0.77985,10.414,1.8734,0.38384,3.1325,2.8085,47.8126,14.8911,214.9513,4.0376,4.62,1.6425,1.7548,3.9227,7.329,2.0926,3.1891,1.0569,6.7062,11.7404,21.6185,7.7003,2.4284,4.0828,1.9171,18.7861,5.2795,3.7914,1.0662,2.8046,8.0737,14.1437,3.329,3.8945,3.0321,1.6074,1.5304,3.9946,10.9832,2.8467,2.3751,11.0345,2.4287,2.426,2.0756,12.8154,1.8569,3.2129,1.2814,14.151,5.4518,8.2924,4.2333,10.9979,6.9815,6.3113,7.8855,3.4794,1.5212,4.5635,,,,,,,,,,,,,,,,,,,247
+nG+MAN3T0MCI009,2.4514,2.0322,,-50y,,,,18.6723,5.1289,2.8429,2.2006,2.1683,edsd,,,M,,0.43008,4.6132,4.4363,0.8298,9.6728,1.4963,0.37691,3.3825,3.0369,47.0307,15.1085,203.9727,4.5333,4.7483,1.4579,1.973,3.4284,7.5082,1.8945,3.011,1.0618,6.7989,12.583,24.2618,7.2711,2.4247,4.5683,1.8075,18.7841,7.057,3.7728,1.1039,2.4345,6.6393,15.7739,3.7622,4.0608,3.1158,1.5863,1.613,4.4166,10.9285,3.1414,2.7377,12.9774,2.5505,2.4951,2.4711,13.3354,1.868,3.7971,1.3149,15.5659,5.226,9.3025,3.8956,9.9939,7.1688,7.0188,7.5415,3.9354,1.7313,4.9567,,,,0.08257,,,,0.40428,4.4161,4.3046,0.82585,10.4493,1.7895,0.39388,3.7591,3.2384,47.8528,14.4027,207.7413,4.3249,4.9248,1.5758,2.0531,4.0582,7.4038,1.896,3.268,1.2669,7.0963,12.1539,23.6087,8.0151,2.3304,4.4032,1.8095,17.7483,5.3261,3.6261,1.069,2.3003,7.3176,14.5372,3.4912,4.3587,3.3691,1.5422,1.6261,4.0223,10.2779,2.8626,2.6779,10.2866,2.5501,2.3285,2.2051,13.196,1.841,3.6831,1.2551,14.6561,5.0677,8.3165,4.4252,10.9051,7.7033,6.6341,7.5206,3.5021,1.5416,4.7321,,,,,,,,,,,,,,,,,,,248
+nG+MAN3T0MCI010,1.7432,2.2178,,-50y,,,,18.0355,4.275,2.4066,1.9909,1.9797,edsd,,,M,,0.42969,4.4399,4.2755,0.87588,8.844,1.5729,0.37104,2.8827,3.0922,42.0541,16.143,209.6925,4.2973,4.1815,1.655,1.8734,3.4759,7.1972,1.7798,3.3788,1.0156,6.1868,11.3035,29.4319,7.3653,2.2966,5.0879,1.6692,19.3901,6.2736,3.8074,1.2361,2.7517,6.9048,14.2702,3.4363,4.2021,3.4832,1.4831,1.563,4.4726,10.571,3.262,2.4915,11.4886,2.522,2.4598,2.2682,13.2719,2.1613,3.8252,1.12,15.2695,5.4624,8.9517,3.7756,10.1216,7.825,6.8095,7.3258,3.4464,1.7011,4.6462,,,,0.06526,,,,0.40865,3.8126,3.996,0.89253,10.1495,1.6191,0.37521,3.1375,3.2034,43.1093,16.2098,219.3807,3.9927,4.3213,1.7055,1.8713,3.6528,7.3967,1.7307,3.6156,0.85339,6.6265,12.728,22.2383,8.0576,2.0326,4.7222,1.6876,18.981,4.8896,3.4302,1.1188,2.7387,7.8169,15.5968,2.917,4.331,3.2259,1.4956,1.63,4.1739,10.9355,3.0451,2.4017,10.4643,2.4429,2.2032,1.8778,12.7071,1.7782,3.8124,1.033,15.2759,5.6312,8.1537,4.0302,10.205,7.3142,6.9093,7.7964,3.5823,1.3821,4.5814,,,,,,,,,,,,,,,,,,,249
+nG+MAN3T0MCI011,2.171,1.8234,,-50y,,,,18.0431,5.1904,2.8277,2.4619,1.8805,edsd,,,M,,0.4225,5.1765,4.7315,0.90579,9.8544,1.8069,0.41216,4.0042,3.1726,49.6062,14.8209,213.6136,4.7189,5.2487,1.8749,2.2354,4.0207,7.9513,2.0666,3.3865,0.75136,7.4932,12.9477,27.7174,9.1613,2.8712,5.3815,2.0095,22.3925,6.9267,4.4599,1.1123,2.7707,8.1578,15.8939,4.46,4.9054,3.6257,1.964,1.5793,5.0762,12.7505,3.5371,2.519,12.368,2.5739,3.063,2.5114,15.7924,2.2277,3.816,1.3258,16.525,6.1594,8.0256,3.7986,10.9693,7.1803,7.3432,8.911,4.5874,1.8423,4.9601,,,,0.09689,,,,0.38402,4.7026,4.2613,0.93913,11.3833,1.9753,0.42219,4.2052,3.4004,52.0037,14.6699,217.3875,4.3878,5.6182,2.0136,2.1933,4.7077,8.5667,2.1539,3.7959,0.70585,8.4674,13.3726,22.6581,9.5438,2.5197,5.5142,2.1457,21.6418,5.9935,4.23,1.0851,2.7102,9.0934,16.5453,4.1232,5.4242,3.4523,1.8522,1.5324,4.7816,12.3998,3.637,2.5411,10.0428,2.3097,2.8364,2.3171,14.2158,2.0714,3.6942,1.3198,16.9546,6.497,7.5211,5.4604,9.2836,8.6442,7.1666,9.5234,3.9805,1.5567,4.7611,,,,,,,,,,,,,,,,,,,250
+nG+MAN3T0MCI012,2.142,2.2847,,-50y,,,,20.1977,5.2834,2.893,2.2935,1.8952,edsd,,,M,,0.41378,5.4008,5.0997,0.89128,9.3175,1.5833,0.37909,3.0526,2.9293,47.0448,16.4425,221.9076,4.3187,4.3988,1.6502,2.1885,3.9122,6.7926,2.1023,3.3827,1.1391,6.877,10.9526,21.0729,7.1441,2.4261,5.1775,1.8696,19.2424,6.8466,3.8288,1.2778,2.7892,7.9076,13.9946,3.688,4.3724,3.5472,1.4536,1.6813,4.979,11.9548,3.1589,2.8568,12.2728,2.6562,2.4749,2.5655,12.9803,2.0692,4.6401,1.195,15.3991,5.7582,8.7328,3.5,10.4451,7.358,7.3319,7.4971,3.9535,1.801,5.2657,,,,0.07486,,,,0.37555,5.0084,4.8339,0.84541,10.2283,2.0117,0.38335,3.254,3.1676,46.8023,15.5572,229.0916,4.0531,4.9485,1.5576,2.1556,4.4074,7.7057,2.2595,3.5467,1.2968,7.1056,12.347,19.8549,8.0448,2.5327,5.1184,2.0589,18.3906,5.1798,3.8695,1.0185,2.3642,8.7335,15.1685,3.0006,4.3293,3.7595,1.7426,1.7384,4.496,11.5674,2.8367,2.6484,10.9025,2.3223,2.3569,2.3494,12.1477,2.0168,4.562,1.122,15.565,5.6846,8.2884,3.962,10.4796,8.1165,6.7978,7.9541,3.9177,1.6347,5.0958,,,,,,,,,,,,,,,,,,,251
+nG+MAN3T0MCI013,1.472,1.8551,,-50y,,,,17.652,4.2291,2.4742,1.8955,1.5374,edsd,,,M,,0.36272,3.8938,4.0386,0.70023,7.6977,1.3199,0.31235,2.9441,2.7552,42.9721,14.1809,191.857,3.6124,3.9989,1.3323,1.8297,3.0151,6.5989,1.7072,2.5608,1.0824,5.9376,9.6693,18.4698,6.7321,1.998,4.1081,1.4315,15.4102,5.6491,3.3918,1.1478,2.5346,6.3862,13.0671,3.4594,3.7681,3.112,1.3436,1.4491,4.1302,9.9496,2.8395,2.1047,10.2916,2.0428,2.2599,2.0989,12.5186,1.9748,3.4916,0.95781,12.6877,5.1003,7.6723,3.4249,8.4244,7.2637,6.49,6.5986,3.3662,1.3711,4.4544,,,,0.07451,,,,0.35587,3.7968,3.7142,0.77011,9.1051,1.5506,0.34437,2.9883,2.8912,44.0812,14.2611,196.2657,3.6045,4.56,1.4789,1.7346,3.1741,6.8101,1.711,2.8868,0.84938,5.8617,11.0778,14.5168,7.4372,2.0464,4.0779,1.4247,15.7914,4.8125,3.1815,0.92636,2.3095,6.7463,14.3049,2.4513,3.7601,3.1755,1.4462,1.4837,3.5698,10.2546,2.662,2.2027,9.5544,1.7999,2.1807,1.9693,12.9492,1.7104,3.6797,0.92721,11.8822,4.8749,6.8248,4.2512,9.6159,7.0764,6.3181,7.2502,2.9834,1.3803,4.2681,,,,,,,,,,,,,,,,,,,252
+nG+MAN3T0MCI015,2.053,2.5948,,-50y,,,,16.9978,4.1112,2.481,1.9707,1.4848,edsd,,,F,,0.36018,3.7399,4.1623,0.7886,8.3706,1.3418,0.3316,2.9683,2.6533,42.9952,12.8799,180.5895,3.2669,3.9632,1.4328,1.8599,3.0625,6.6684,1.7039,2.9775,1.1293,5.5081,9.777,25.4214,6.7395,2.1102,4.224,1.4846,18.1444,5.3321,3.4097,1.1394,2.6138,5.9028,11.641,3.0027,3.6782,3.1208,1.4238,1.3575,4.3925,10.2765,2.9742,2.1265,10.3562,2.1062,2.353,1.9779,12.0108,1.5966,3.1253,1.0849,13.2191,4.8888,7.5452,3.5242,9.5132,5.4674,6.2662,6.4185,3.7251,1.3028,4.4364,,,,0.06174,,,,0.35333,3.5866,3.7741,0.78957,8.3796,1.5734,0.35398,2.8833,2.8156,41.8076,12.2783,183.164,3.3477,4.0084,1.4545,1.8826,3.4485,6.5448,1.7864,3.0845,0.93407,5.4694,9.525,22.5833,7.2669,2.053,3.8935,1.4837,16.4595,4.7128,3.3978,1.1694,2.9314,6.5287,11.8764,2.6636,3.9142,3.4017,1.3766,1.3866,3.8624,10.4475,2.6872,2.0377,8.9115,2.1563,2.1787,1.7206,11.4033,1.6544,3.0918,1.0351,12.967,4.719,6.5122,3.9876,10.0829,5.8241,6.0473,6.2989,3.6116,1.3253,4.2623,,,,,,,,,,,,,,,,,,,253
+nG+MAN3T0MCI019,2.1892,2.354,,-50y,,,,16.0109,4.7631,2.565,2.3053,1.9862,edsd,,,F,,0.39969,4.3399,4.2661,0.77196,9.1492,1.3341,0.36383,3.3336,2.7766,45.797,13.1133,180.9211,3.7157,4.8114,1.4081,2.0563,3.0385,6.4578,1.8086,3.0068,0.94835,5.8779,9.7999,28.241,7.9235,2.1319,4.7261,1.6417,16.165,6.1115,3.3321,1.0322,2.4855,6.0886,12.1538,2.9929,4.168,3.3007,1.5146,1.5094,4.2644,10.2797,2.9924,2.2211,10.8813,2.187,2.2152,2.2297,11.0993,1.9274,3.4336,1.0998,13.2713,5.2071,7.5987,3.7495,9.1848,7.3352,6.7011,6.8887,3.6426,1.5867,4.4056,,,,0.06495,,,,0.36542,3.8856,3.7875,0.74275,9.7966,1.5403,0.3668,3.7436,3.2648,45.5827,12.5599,186.3442,3.7605,5.0423,1.4359,1.7385,3.3402,6.802,1.799,3.1777,1.5234,6.4392,10.1361,31.2259,7.9457,1.9759,4.3955,1.616,16.5415,4.5897,3.3841,1.0743,2.416,7.0396,12.9666,3.0167,4.0047,3.2782,1.4668,1.5456,3.8139,10.5466,2.685,2.2838,8.4056,2.0448,2.238,2.102,11.1084,1.8825,3.4792,1.0959,13.2357,5.2668,7.2187,4.2409,9.5535,7.5225,6.3445,7.1225,3.1629,1.5318,4.2646,,,,,,,,,,,,,,,,,,,254
+nG+MAN3T0MCI020,1.2046,1.3062,,-50y,,,,17.472,4.6347,2.7989,2.1081,0.9599,edsd,,,F,,0.39427,4.082,4.1044,0.88298,8.2539,1.4743,0.36306,3.1948,2.7424,45.5105,14.3456,201.1678,4.0207,5.1353,1.6267,1.8671,3.1487,6.8975,1.8472,3.3145,0.34422,6.3345,10.964,9.3953,7.7603,2.2156,4.6668,1.5583,19.2686,5.8435,3.6691,1.1793,2.7373,6.5634,13.2739,3.7357,4.2382,3.243,1.4915,1.5353,4.3723,10.5725,3.1678,2.1493,10.682,2.1042,2.1861,2.1094,11.8666,1.7524,4.4232,1.093,14.2635,5.5218,8.1054,4.4913,10.4191,6.2275,6.8794,7.0968,3.8793,1.4852,4.7434,,,,0.08167,,,,0.35806,3.4068,3.928,0.87013,9.9215,1.6918,0.38002,3.5942,3.0658,45.3945,13.9782,204.8212,3.9124,4.7055,1.6549,1.6729,3.2479,6.702,1.7687,3.3661,0.39907,6.9756,10.8467,8.4332,7.8783,2.0467,4.3572,1.5208,16.936,5.2609,3.6916,1.0169,2.5902,7.5001,13.2849,3.2424,4.4089,2.9058,1.356,1.5486,4.1495,10.781,2.8498,2.206,9.2584,2.2044,2.2909,1.9772,10.6811,1.9332,4.1883,1.104,13.2138,5.3901,7.9417,4.846,12.3532,6.6617,6.7091,7.2099,3.1851,1.3748,4.4242,,,,,,,,,,,,,,,,,,,255
+nG+MAN3T0MCI021,1.906,2.1809,,-50y,,,,15.6103,4.4656,2.4511,2.0028,1.6274,edsd,,,M,,0.38063,3.8072,4.0771,0.7312,9.1829,1.3463,0.32807,3.4883,2.8481,39.3698,12.8773,179.6528,3.7772,5.0758,1.4104,1.7516,3.3009,6.3222,1.6533,2.9145,0.80183,5.5182,9.9752,23.2142,7.2027,2.0739,4.3147,1.4082,16.6759,5.4804,3.3215,1.0691,2.3079,5.9052,13.6607,2.9587,3.7917,2.9079,1.3436,1.3632,4.2419,10.3582,3.0299,2.3377,10.8421,1.9753,2.207,2.1965,11.5328,1.7361,3.8948,1.0373,12.2852,4.5346,7.8575,3.6105,10.0653,7.1633,6.1409,6.9503,3.3026,1.4235,4.2449,,,,0.06667,,,,0.3771,3.5549,3.9007,0.78539,9.2811,1.59,0.36027,3.3852,3.0755,39.8014,11.4186,182.6154,3.1699,5.244,1.5548,1.7571,3.1353,6.7279,1.9094,3.2514,0.89647,6.4583,11.3405,20.5498,7.4424,2.0058,4.2057,1.5572,17.2152,4.7811,3.3303,1.0648,2.3793,6.5251,14.348,3.0024,3.8589,2.8653,1.5348,1.402,3.7725,10.402,2.9281,2.3685,9.0846,1.8811,2.0466,1.89,10.8296,1.7731,3.8803,1.0543,11.9065,4.8131,7.36,4.8432,9.5941,7.2022,6.0978,6.9804,3.3454,1.2488,4.0879,,,,,,,,,,,,,,,,,,,256
+nG+MAN3T0MCI022,1.5218,1.5346,,-50y,,,,18.4167,4.6203,2.8765,2.2475,1.3017,edsd,,,F,,0.43272,4.7217,4.317,0.89213,9.359,1.6172,0.38884,3.6169,2.9334,48.3369,15.8275,236.6437,4.3245,4.7594,1.6007,2.0751,3.6773,7.4051,1.9665,3.3502,0.35882,7.0398,10.9949,14.0431,7.6841,2.5033,4.9852,1.9,17.1806,6.1117,4.0173,1.1447,2.8198,7.2136,12.8951,3.7564,4.5662,3.2388,1.6958,1.7742,4.5595,10.9108,3.1423,2.3503,11.4424,2.4024,2.6027,2.2433,13.448,2.1538,3.8137,1.2573,12.9795,5.5847,8.6361,4.2325,10.146,6.2479,7.7363,6.5938,3.8605,1.7066,5.1078,,,,0.0845,,,,0.40101,4.3549,3.9549,0.86831,9.8139,1.7974,0.3934,3.4045,2.9757,48.342,15.3206,239.7024,3.8236,4.9123,1.7069,2.0182,3.7929,7.4584,2.1109,3.4804,0.38181,6.4671,11.031,13.0689,8.0599,2.3641,5.0588,1.8636,16.8669,5.0285,3.9369,1.2747,2.8511,8.1859,14.0606,3.219,4.2342,3.8942,1.6262,1.7943,4.2239,10.7091,2.9151,2.2954,10.3997,2.1558,2.3579,1.8859,12.3146,1.7615,3.7169,1.2019,13.5275,5.3963,7.7627,4.5874,9.9323,7.0086,7.4277,7.83,3.8521,1.4511,4.8547,,,,,,,,,,,,,,,,,,,257
+nG+MAN3T0MCI023,1.5226,3.1249,,-50y,,,,18.528,4.1815,2.5036,1.9941,1.6642,edsd,,,M,,0.46538,4.7298,4.8047,0.87246,9.1874,1.5729,0.39528,3.1905,3.6729,43.7242,15.2551,216.3348,4.4184,4.2503,1.5593,2.1686,3.8925,6.8061,2.0272,3.355,0.66674,6.0786,10.8031,20.0338,7.7103,2.5556,4.6108,1.8702,19.2089,6.6615,3.785,1.1753,2.4826,7.4626,13.5668,3.8682,4.1172,3.3729,1.6799,1.7644,4.6581,10.7933,3.1525,2.6056,11.6598,2.3477,2.4995,2.3724,13.0195,2.2166,4.2979,1.2837,15.9663,5.5097,8.2931,3.5935,11.5457,6.3731,7.6598,7.7004,4.1453,1.8382,5.1536,,,,0.07177,,,,0.42429,4.5323,4.7368,0.86853,10.6055,1.6872,0.43803,2.9586,3.6893,44.4048,14.8142,220.49,3.907,4.2201,1.6893,2.1733,4.1186,7.0263,1.9854,3.5737,0.58529,6.2894,10.8839,16.7432,8.0416,2.3783,4.6986,1.914,17.659,5.2723,3.681,1.112,2.4003,8.0842,14.0732,3.1855,4.0559,3.8315,1.8635,1.725,4.2989,11.1301,2.9481,2.4912,11.1617,2.4349,2.6482,2.0367,12.4923,2.0136,4.2337,1.2363,15.1759,5.305,7.7676,4.5806,11.3106,6.7731,7.3845,7.8027,3.8903,1.518,4.9413,,,,,,,,,,,,,,,,,,,258
+nG+MAN3T0MCI024,1.2722,1.9878,,-50y,,,,16.589,4.2462,2.488,1.9767,1.053,edsd,,,F,,0.35041,3.8512,3.6514,0.77586,8.3938,1.2251,0.32524,2.7067,2.3855,41.152,13.5784,190.6344,2.9876,3.9242,1.53,1.7025,2.835,6.2393,1.5008,2.9396,0.56191,6.252,9.274,16.1099,6.1769,1.9196,4.4549,1.294,14.1337,6.3036,3.0339,1.0199,2.2267,5.5347,12.2458,3.3709,3.7607,3.1162,1.2729,1.4666,3.6484,9.8795,2.8395,1.8829,9.7252,1.6317,2.0031,1.9091,11.0022,1.4705,3.5903,1.0042,11.8102,4.4288,7.8301,3.6198,9.3309,6.1394,6.3183,6.197,3.46,1.1486,4.4306,,,,0.07442,,,,0.33898,3.5976,3.2943,0.785,9.5312,1.3136,0.34954,2.8537,2.6802,41.4415,13.3855,191.9809,3.1371,3.862,1.5982,1.572,3.0302,6.4328,1.5676,3.131,0.67471,5.6899,9.3181,12.1443,6.9306,1.7375,4.3231,1.2819,15.8814,4.4236,2.92,1.0833,2.1381,6.0777,11.343,2.4452,3.5643,3.0384,1.2201,1.4654,3.5992,9.1639,2.6336,1.9382,8.2134,1.7073,1.8322,1.7939,10.3466,1.5058,3.4541,0.97345,11.9794,4.5127,6.6345,4.0787,9.0106,6.1268,6.0479,6.5985,2.8631,1.2118,4.2798,,,,,,,,,,,,,,,,,,,259
+nG+MAN3T0MCI026,1.1606,1.759,,-50y,,,,19.3177,5.0541,1.4143,2.1795,0.9901,edsd,,,M,,0.49714,5.214,4.4585,0.98753,9.093,1.9626,0.43463,3.5061,3.2863,24.6806,13.0646,257.2867,4.3391,5.0647,1.8006,2.0626,4.4307,7.6505,2.3867,3.5201,0.36448,6.1348,11.3178,13.7019,7.8711,2.8077,5.2206,2.1469,20.5486,6.4618,4.5033,1.2654,2.9983,7.9308,13.8944,3.8664,4.3997,3.3928,1.729,1.8023,4.4228,10.8883,3.3589,2.3585,12.1081,2.7929,2.7716,2.4174,14.4091,2.3105,4.158,1.3721,16.3306,5.9984,9.318,4.1518,11.3682,7.5473,8.4379,8.5374,4.1558,1.8215,5.6885,,,,0.0895,,,,0.45669,4.1542,4.0304,0.96734,10.2582,2.1762,0.43646,3.1363,3.3837,28.2987,14.449,259.0133,4.1725,5.1925,1.8772,2.1776,4.5784,7.7064,2.3395,3.8111,0.44614,6.8896,11.4399,12.2949,8.5128,2.5657,5.035,2.2148,20.5284,5.3816,4.2985,1.2922,2.8387,9.1099,14.5379,3.355,4.4761,3.8269,1.763,1.8326,4.044,11.1018,3.182,2.249,11.4609,2.5608,2.5224,2.0431,13.9024,2.2101,4.0564,1.3146,15.0536,5.5959,8.8443,4.558,10.9258,8.223,8.15,8.5504,4.3135,1.6101,5.4042,,,,,,,,,,,,,,,,,,,260
+nG+MAN3T0MCI027,1.2254,1.8035,,-50y,,,,16.5658,4.5306,2.5107,1.8461,1.4275,edsd,,,F,,0.35398,3.5949,3.839,0.74054,8.1706,1.312,0.33271,2.7311,2.3365,43.0669,13.9352,196.1977,3.464,3.8192,1.356,1.6744,2.7766,6.3827,1.7728,2.9787,0.75804,5.8218,9.8556,14.4741,6.2255,2.1558,4.0456,1.4708,14.5091,5.5529,3.4158,0.79301,1.8661,5.5724,12.45,2.9338,3.6226,2.7807,1.4125,1.3677,3.6227,9.1187,2.8635,1.9634,9.9218,1.9164,2.3124,1.7846,10.7297,1.6999,3.0644,1.0546,11.9064,4.3065,7.851,3.035,10.0392,5.8972,6.643,6.3182,3.2501,1.2383,4.4202,,,,0.06798,,,,0.31856,3.0647,3.752,0.77274,9.0441,1.4168,0.34086,2.5013,2.3948,44.1237,13.5214,203.2654,3.656,4.0272,1.391,1.7241,3.16,6.6617,1.7754,3.2123,0.96812,5.1454,10.1939,13.6285,6.7517,1.8612,3.7029,1.3676,14.2288,4.5317,3.2723,0.85504,1.9884,6.3032,12.5042,2.1433,3.4684,2.6068,1.3396,1.4087,3.4994,9.1558,2.7355,2.1191,9.6268,2.1587,2.1775,1.796,11.0423,1.798,3.0487,0.99556,11.7783,4.245,7.245,3.4049,9.4749,6.7171,6.3008,6.5782,2.8918,1.3764,4.2692,,,,,,,,,,,,,,,,,,,261
+nG+MAN3T0MCI028,2.2889,2.2088,,-50y,,,,14.033,4.193,2.0279,1.8031,2.2209,edsd,,,F,,0.2958,3.8893,3.6426,0.72975,7.5739,1.1683,0.32906,3.0912,2.0902,31.6077,9.2054,166.7693,3.4714,3.6532,1.3872,1.6296,2.8304,5.8143,1.5903,2.8045,1.2492,4.9093,8.5023,36.3813,6.3731,1.9649,4.1221,1.3479,15.8776,4.6717,3.0824,0.94794,2.1198,5.7327,11.6557,2.7612,3.489,3.0245,1.2633,1.3777,3.7098,9.4057,2.7311,2.0085,9.384,2.0222,1.9458,2.0436,9.9871,1.8519,3.1394,1.0886,11.66,4.4013,7.7698,3.2767,10.605,6.6787,6.0675,6.3681,3.1119,1.4542,4.0564,,,,0.05839,,,,0.27619,3.3315,3.7676,0.74703,9.078,1.2226,0.32959,2.9268,2.1606,38.7839,11.0519,165.7529,3.2306,3.6222,1.3943,1.8599,3.3098,6.1386,1.6023,3.1412,1.642,5.4161,8.7966,42.7786,7.1065,1.7066,3.8898,1.3728,15.2981,4.4627,2.876,0.86488,1.988,6.3494,11.4876,2.3425,3.4647,3.2234,1.3064,1.3845,3.3135,8.8549,2.5609,2.1383,7.8636,2.0324,1.9193,1.928,10.7321,1.7638,3.1281,1.0127,12.7796,4.5228,6.7775,3.6293,8.9171,6.5997,5.5596,6.5751,3.2172,1.4754,3.7973,,,,,,,,,,,,,,,,,,,262
+nG+MAN3T0MCI031,1.6004,1.5472,,-50y,,,,15.3515,4.5381,2.4976,2.2288,1.4932,edsd,,,F,,0.31414,4.1821,3.3138,0.7787,6.9954,1.3022,0.29862,3.3694,2.4267,44.0719,14.5715,204.5866,3.659,4.2643,1.4933,1.5008,3.3725,6.753,1.6901,2.8585,0.49947,5.984,9.5931,14.2795,7.146,1.932,4.3193,1.5996,15.5037,5.2847,3.3068,1.1142,2.379,6.3117,10.7411,3.0631,4.052,2.6527,1.09,1.5185,3.352,8.6156,2.7864,2.2281,11.1603,2.1631,1.9031,2.0608,11.5985,1.5256,2.8915,0.97977,11.5783,4.5226,7.737,3.151,9.2653,5.4002,6.3287,6.4441,2.9014,1.3071,4.3714,,,,0.07934,,,,0.33048,3.672,3.6874,0.85789,9.4689,1.6598,0.3502,3.4554,2.5686,44.7024,14.6801,224.1112,3.9054,4.2111,1.6478,1.8938,3.3588,7.3072,1.7493,3.2022,0.45596,6.2151,11.1469,8.2195,7.7077,2.0692,4.0403,1.6025,15.8147,4.713,3.5095,0.95122,2.3201,7.7596,13.0066,2.7196,4.0324,3.0486,1.5424,1.5892,3.4763,8.8532,2.7121,2.2065,10.1397,2.0456,2.188,2.0158,10.3908,1.6953,3.3577,1.0434,12.1081,4.4891,7.1729,3.3772,7.8982,6.6673,6.1701,7.7795,3.5269,1.3768,4.2401,,,,,,,,,,,,,,,,,,,263
+nG+MAN3T0MCI032,2.0915,2.9031,,-50y,,,,19.2627,5.2607,2.5118,2.4451,1.8762,edsd,,,M,,0.27353,4.4141,4.2382,0.78396,7.6056,1.287,0.32351,2.9704,2.1284,48.8023,16.5544,252.0335,4.0095,4.6044,1.4603,1.9458,2.9685,7.475,1.7419,3.2747,1.6117,5.9728,9.1474,27.853,7.8848,2.0197,4.6734,1.5011,18.023,6.1776,3.2221,1.1475,2.7598,6.9119,10.7707,3.6695,4.6057,2.7968,1.3629,1.6522,4.3669,10.4845,3.1118,2.5147,10.8543,2.2248,2.1298,2.4694,10.8799,1.8673,3.518,1.0196,12.7452,5.9736,7.4743,3.8739,9.9631,7.2334,6.6111,7.2298,3.3509,1.657,5.1663,,,,0.07764,,,,0.19817,3.7329,3.8483,0.74893,8.5042,1.4529,0.31907,3.1304,2.1816,47.9737,15.7383,250.4935,3.6476,4.7744,1.3917,1.9727,3.325,7.4297,1.8674,3.4165,1.6347,6.4351,9.7032,24.9669,8.1276,1.8122,4.0647,1.5463,16.9533,4.9686,3.113,1.1493,2.3258,7.2313,11.1984,2.4538,4.5287,3.2503,1.493,1.6753,3.9831,10.4286,2.7925,2.5824,9.1919,2.0544,1.9127,2.3067,10.1527,1.8906,3.6701,0.95054,12.7223,5.1528,7.1517,3.5689,9.3977,6.8406,6.2151,6.7935,3.5721,1.6457,4.9035,,,,,,,,,,,,,,,,,,,264
+nG+MAN3T0MCI038,3.2846,2.7696,,-50y,,,,20.2468,5.7308,2.3632,2.4043,3.0457,edsd,,,M,,0.36202,4.9016,4.2844,0.85008,10.1825,1.6266,0.37921,3.3618,1.8892,47.6329,18.277,246.3704,4.4735,4.7116,1.6354,2.2199,3.6432,7.4753,2.089,3.5761,1.4126,7.1936,11.6101,47.3906,8.4002,2.4351,5.367,1.8939,19.8398,6.993,3.8636,1.208,2.9948,7.9295,13.8103,4.216,4.8982,3.5614,1.5907,1.683,4.8786,11.851,3.4545,2.363,12.3899,2.8888,2.3339,2.3134,14.7662,2.3236,3.8535,1.2673,13.9481,5.911,9.3648,3.2927,12.7536,6.7669,7.3519,7.0857,4.1255,1.6979,5.648,,,,0.07543,,,,0.30154,4.2872,4.1799,0.70429,10.3699,1.7374,0.3722,3.3932,2.0987,49.7409,18.8412,256.3853,4.4897,4.724,1.4435,2.0832,3.7183,7.6686,1.9633,2.9303,2.7545,6.9628,12.2189,48.6081,9.1343,2.421,5.3121,1.8686,19.3375,5.5035,3.6457,1.0477,2.6479,7.9026,14.0511,3.2372,4.7817,4.0543,1.6958,1.7252,4.6767,11.1166,2.8876,2.7021,10.7561,2.7145,2.2067,2.2806,13.2148,1.9137,3.4085,1.1155,15.6729,5.4556,8.5253,4.3133,11.4796,7.7577,6.4965,7.4944,3.5559,1.753,5.4024,,,,,,,,,,,,,,,,,,,265
+nG+MIL1T5AD001,2.508,2.286,,70-79y,AD,,,15.3609,4.9986,2.4775,2.1428,1.8625,edsd,AD,,M,,0.30203,4.7414,3.8,0.61564,9.7234,1.3767,0.34614,2.6204,1.6365,39.997,15.4454,210.9608,4.4165,3.8266,1.1929,1.9933,3.0477,7.2287,1.7441,2.8438,1.0388,6.2659,11.0916,23.1056,7.3194,2.1619,4.8644,1.6169,17.6678,6.0615,3.4975,1.0809,2.249,6.8312,13.0867,2.9412,4.1949,3.0345,1.3261,1.3961,4.6213,10.0704,3.0382,2.2438,11.8537,2.9146,2.0967,2.2094,11.132,2.2004,2.8551,1.2696,13.1233,4.8412,9.191,2.9155,9.8832,7.1782,6.0487,6.3085,3.5823,1.569,4.4663,25,,AD,0.0849,,,,0.26593,4.1763,3.7369,0.65022,9.8024,1.5075,0.32232,3.0828,1.5969,41.9003,14.413,218.2553,4.0617,4.6058,1.2752,2.0226,3.5009,7.5047,1.6766,3.0493,1.3304,6.2743,11.7629,20.9274,8.238,2.0648,4.6895,1.5622,16.859,5.1888,3.2845,1.0656,2.8374,7.6286,14.6369,2.7468,4.2749,3.0161,1.4383,1.5521,4.0363,9.9923,2.8551,2.2052,9.7231,1.9877,2.0589,2.1271,11.1306,1.6696,2.8285,1.1752,13.741,5.1062,7.3309,4.0754,9.6917,7.2282,5.6667,6.9081,3.4012,1.3402,4.311,,,,,,,,,,,,,,,76,,,,266
+nG+MIL1T5AD002,1.936,2.9353,,50-59y,AD,,,18.827,5.1249,2.6155,2.3642,1.4619,edsd,AD,,M,,0.36446,4.1929,4.1655,0.81768,8.297,1.4472,0.37265,2.9022,2.4566,51.1758,15.3101,219.1379,4.156,3.9091,1.6028,2.1231,3.3174,7.111,2.0391,3.1269,0.79331,5.9248,9.9995,20.2442,7.6496,2.4542,4.4899,1.6646,16.7927,5.3989,3.7339,1.1074,2.3228,6.585,13.5095,3.0187,4.3141,3.4282,1.8031,1.4576,4.2493,10.457,3.2543,2.2715,10.7772,2.4654,2.4393,2.3425,11.2389,2.0344,3.1295,1.2411,13.4099,5.4272,8.332,3.4836,10.7558,7.1385,6.6236,7.0412,3.9858,1.6945,4.8188,10,,AD,0.08584,,,,0.32875,3.7836,3.9139,0.84517,10.0845,1.6579,0.35012,3.0314,2.4292,50.9428,15.3238,224.5213,3.7778,4.6639,1.6252,2.0589,3.564,7.8422,2.108,3.3341,0.9213,6.0313,11.2669,18.8623,8.7588,2.33,4.4706,1.7635,17.9707,4.3346,3.6826,0.97499,2.2753,7.4551,13.611,2.2906,4.2779,4.1552,1.6172,1.5238,3.8381,10.1503,3.0501,2.1427,8.7266,2.2846,2.2324,2.0193,11.0799,2.0364,2.908,1.1548,12.5908,5.2099,8.0442,4.0222,10.2666,7.3816,6.3576,7.1034,4.0345,1.5205,4.6781,,,,,,,,,,,,,,,53,,,,267
+nG+MIL1T5AD003,1.7266,2.4181,,50-59y,AD,,,17.8149,4.8141,2.6944,2.1051,1.8256,edsd,AD,,M,,0.36515,4.3647,3.9905,0.63104,7.9909,1.364,0.33936,2.614,2.647,46.8638,15.8019,206.531,4.1743,3.8352,1.3853,1.9445,3.2473,5.671,1.8242,2.647,1.3495,4.832,8.2636,24.0846,6.2727,2.2274,4.5673,1.7132,14.971,4.698,3.367,1.012,2.3818,6.8144,10.0782,2.9658,3.6517,3.0148,1.4993,1.6382,3.7548,8.9244,2.7562,2.1434,10.6629,1.9084,2.302,2.1656,11.8402,1.6402,3.2029,1.0794,11.9291,5.1072,7.0676,2.8583,9.024,5.7462,6.6472,7.4131,3.5572,1.4902,4.8719,6,,AD,0.0756,,,,0.32695,3.9906,3.6724,0.59698,8.1043,1.4974,0.32526,2.74,2.3829,46.2948,15.072,204.7797,4.0279,3.839,1.191,1.8667,3.4367,5.7704,1.7615,2.7074,1.7114,4.9385,8.2424,22.4678,6.4411,2.1853,4.4469,1.6487,15.1636,4.1544,3.2405,1.0472,2.4465,7.2669,8.7726,2.3956,3.2195,3.0018,1.6746,1.6167,3.3708,8.7928,2.3769,2.1967,10.0747,1.8636,2.2408,1.7647,11.6719,1.4714,2.9734,1.071,12.0203,4.8456,5.9791,3.4528,8.8864,5.2529,6.1977,6.1071,3.3092,1.2994,4.6607,,,,,,,,,,,,,,,58,,,,268
+nG+MIL1T5AD004,1.7801,1.8769,,70-79y,AD,,,18.9472,4.7821,2.7636,2.1832,1.6953,edsd,AD,,M,,0.47086,4.8887,4.5141,0.79298,8.9164,1.4074,0.38738,2.8335,3.1851,46.3508,16.4823,242.1665,4.2007,3.665,1.6233,2.1016,3.7713,6.6604,2.2846,3.0823,0.58109,6.2155,10.6215,18.4159,7.1401,2.0924,4.5961,1.9557,16.7974,5.6511,3.9194,0.99224,2.2267,7.0023,13.5472,3.3043,3.9757,3.1692,1.3226,1.712,4.0943,9.7931,3.2074,2.3278,11.1945,2.4133,2.2097,2.4232,11.4368,2.0111,4.1054,1.3509,13.451,5.0587,8.9752,3.3203,9.8389,7.2104,6.6066,7.9545,3.3431,1.5717,5.0769,24,,AD,0.08648,,,,0.37741,4.3234,4.2998,0.7155,9.61,1.6909,0.39785,2.9363,3.0452,46.862,15.8558,243.3349,3.8819,3.9531,1.5116,2.116,3.7219,7.2114,2.2667,3.1254,0.68917,6.5426,10.6601,16.2964,7.5428,2.1145,4.2543,1.8932,15.9832,4.8301,3.8301,0.98211,2.4028,7.8924,13.0276,3.1249,4.1388,3.0718,1.4587,1.6401,3.6731,10.0389,2.9034,2.4523,9.4062,2.2523,2.3169,2.3159,10.8662,1.9245,3.6541,1.3215,12.8557,5.3766,7.1078,4.1358,10.774,7.0388,6.1751,8.3084,3.1875,1.5229,4.7695,,,,,,,,,,,,,,,73,,,,269
+nG+MIL1T5AD005,1.6495,1.4237,,+80y,AD,,,14.6382,4.5072,2.2569,1.6783,1.9729,edsd,AD,,F,,0.34673,3.7891,3.4544,0.57692,8.383,1.4462,0.31585,2.2648,2.5848,38.5626,13.793,195.672,3.6616,3.1217,1.0259,1.7876,2.8814,5.4559,1.8077,2.4348,1.0868,4.7825,7.9082,23.9703,5.6572,2.1242,3.7145,1.4892,14.3693,5.6348,3.6157,0.85182,1.979,5.6687,9.5771,2.4894,3.2395,2.8646,1.3064,1.4402,3.9756,9.2437,2.4247,1.8505,9.713,2.1257,1.9159,1.8074,9.7843,1.8179,2.8063,1.0816,11.3018,3.9575,8.0317,2.6374,9.2085,5.1942,5.8032,4.7509,3.498,1.318,4.0697,19,,AD,0.07935,,,,0.33199,3.7088,3.4291,0.59752,8.7062,1.5053,0.31612,2.4088,2.8802,39.3277,13.5025,199.1276,3.4843,3.7966,1.0905,1.6873,3.1507,5.785,1.6897,2.7197,1.1542,5.5004,8.0071,26.0403,6.664,2.072,3.7305,1.3857,14.5155,4.6532,3.3492,0.95202,1.9861,6.0549,9.6374,2.5645,3.3378,2.7786,1.3816,1.4416,3.4287,8.9068,2.3783,2.0164,7.8549,2.0345,1.9772,1.8667,9.0997,1.9249,2.8663,1.0216,11.8701,3.9776,6.9928,3.6278,8.0776,5.9671,5.5432,5.3235,3.3347,1.312,3.8948,,,,,,,,,,,,,,,82,,,,270
+nG+MIL1T5AD006,2.3616,2.4877,,70-79y,AD,,,16.9104,4.4978,2.1259,2.0161,1.9463,edsd,AD,,M,,0.37155,4.7088,4.1827,0.60891,7.9713,1.3515,0.35605,2.8628,2.3639,42.5416,14.9923,228.3403,3.6873,3.6558,1.183,1.7849,3.595,6.4119,1.8851,2.8349,1.5606,5.9245,9.7809,26.0504,6.3129,2.1544,4.7063,1.7384,18.0565,5.092,3.4488,1.1088,2.3047,7.1113,11.4618,3.6257,3.7395,3.0846,1.1636,1.7077,4.3041,9.8654,2.7152,2.5227,10.4337,1.999,2.1786,2.4044,10.3418,1.6811,3.0327,1.2404,13.1192,5.1725,7.344,3.1777,10.417,6.2011,6.5664,6.9798,3.535,1.6874,4.78,18,,AD,0.07276,,,,0.31917,4.5164,4.2215,0.68437,9.1013,1.63,0.34739,3.2184,2.1957,43.6651,14.0549,227.4627,3.7054,4.1389,1.3096,1.647,3.6097,6.3936,1.7791,3.0829,1.7499,5.6349,9.6159,26.6813,6.9544,2.0721,4.7228,1.6694,17.2908,3.9228,3.2251,0.90724,2.261,7.4354,12.0451,3.0861,3.9054,2.889,1.4901,1.7255,3.8343,9.9279,2.4627,2.5382,9.8788,1.7204,2.1408,2.1189,11.4539,1.4394,3.0378,1.1709,14.0128,4.9585,6.76,3.8853,10.4029,6.4675,6.2777,7.095,2.9657,1.3977,4.5871,,,,,,,,,,,,,,,79,,,,271
+nG+MIL1T5AD007,2.0417,1.4758,,70-79y,AD,,,18.339,4.9582,2.8959,2.1702,1.716,edsd,AD,,M,,0.42061,4.4999,4.6331,0.67811,8.5714,1.3156,0.36677,2.5654,2.8006,43.844,15.8947,237.6268,4.3316,3.7909,1.3803,1.9959,3.4428,6.7281,1.9198,2.5595,1.0221,5.9187,10.3866,18.992,6.367,2.1886,4.6783,1.6954,15.9692,5.5254,3.6528,1.1781,2.7107,6.9014,11.6735,3.4845,4.0073,3.0674,1.5727,1.6395,4.5439,10.2366,2.9475,2.292,11.3873,2.7685,2.4597,2.2505,11.5137,2.2319,3.5292,1.3467,13.9225,5.1128,9.0459,3.2779,10.6914,6.7777,6.5553,6.9869,3.9455,1.686,4.8657,25,,AD,0.07821,,,,0.35138,3.8541,3.9487,0.65252,9.5932,1.448,0.35084,2.8084,2.6878,44.0377,15.5627,234.9673,4.0554,4.1187,1.3046,1.8952,3.605,6.7651,1.8248,2.7718,1.277,6.2988,10.1965,20.4945,6.9399,1.9787,3.9214,1.6125,14.8247,4.9648,3.3946,1.2371,2.6736,7.4902,12.2619,2.9419,3.6185,3.1312,1.4511,1.5678,3.8581,10.2821,2.6925,2.3747,10.094,2.4172,2.1918,2.065,10.4564,1.8124,3.1677,1.2042,12.7837,5.133,6.6432,3.8244,10.2398,6.5891,6.0281,6.7759,3.4066,1.5697,4.6023,,,,,,,,,,,,,,,72,,,,272
+nG+MIL1T5AD008,0.48792,1.1257,,50-59y,AD,,,23.2577,6.2257,3.567,3.0338,0.89851,edsd,AD,,F,,0.66196,6.5134,5.2563,1.3139,11.394,2.235,0.56403,3.7189,3.6921,61.1428,17.3113,293.5499,5.229,6.1359,2.4015,2.6153,4.7688,9.7987,3.5482,4.4519,0.33872,7.1878,13.2137,7.33,9.5357,3.027,7.119,3.0114,23.6993,8.0952,5.6412,1.5831,4.4095,9.517,15.7392,4.0078,4.8221,4.7752,2.08,1.9859,6.5954,15.0284,4.1027,2.6832,14.1806,3.1129,3.2494,2.8625,16.6832,2.5849,5.3069,1.4542,19.4519,8.4787,10.9412,4.6918,12.9192,8.8713,9.5428,10.4928,4.9952,1.9292,6.5029,8,,AD,0.04755,,,,0.68265,5.3921,5.1134,1.2526,12.1829,2.7957,0.57889,3.9552,4.2284,61.7421,17.4458,300.9244,5.1454,6.5936,2.4117,2.5755,5.8776,9.4739,3.6083,4.58,0.35763,8.0131,13.0873,6.2042,10.6299,2.8493,7.0872,3.0691,23.1467,6.8947,5.6107,1.5659,4.4218,10.9811,16.7504,3.8629,5.2554,4.7587,1.7736,2.0607,6.1239,14.9955,3.8217,2.675,13.4065,2.9302,2.8813,2.6052,15.9763,2.5313,4.8227,1.4728,19.5882,8.6997,10.4337,5.5404,12.6887,9.0071,9.5374,10.7681,3.9961,1.7728,6.1194,,,,,,,,,,,,,,,56,,,,273
+nG+MIL1T5AD009,1.7716,2.8467,,60-69y,AD,,,15.54,3.6568,2.3166,2.0712,1.3813,edsd,AD,,M,,0.3271,4.2821,4.0479,0.78003,7.8838,1.2637,0.35381,2.938,2.1122,41.3308,15.0376,211.5953,3.6034,3.713,1.4671,1.8104,3.0078,6.4074,1.8174,2.8161,1.6267,6.4138,9.4626,21.4466,6.3627,2.1157,3.9769,1.6445,15.3283,5.6435,3.4472,0.96896,2.2592,6.459,10.8127,3.6333,4.0357,3.1509,1.4222,1.5497,3.6375,8.5779,2.9658,2.2965,11.177,2.0182,2.4992,2.1321,10.2455,1.612,2.9205,1.1494,13.0667,4.7939,6.9655,3.0348,11.3991,5.9425,6.0853,6.9649,3.4668,1.4343,4.425,17,,AD,0.0659,,,,0.29097,3.7942,3.8813,0.77176,9.5628,1.5088,0.33543,3.1958,1.7904,41.0787,14.3029,214.5078,3.1196,4.1653,1.4693,1.8537,3.3659,6.7427,1.7813,2.9478,1.5198,6.3031,10.3594,17.864,7.1945,2.0659,3.815,1.6476,15.9057,4.7685,3.3353,1.0737,2.2443,6.8614,11.7478,2.8044,4.0098,3.3883,1.515,1.569,3.3466,8.3421,2.7705,2.0729,8.9721,1.6514,2.1817,1.7444,10.8173,1.3661,2.8896,1.0642,12.3623,4.7791,7.473,4.0145,8.7703,5.9782,5.7971,7.0902,3.6972,1.069,4.2118,,,,,,,,,,,,,,,67,,,,274
+nG+MIL1T5AD010,1.8946,2.3804,,70-79y,AD,,,16.3066,4.3959,2.0749,1.8047,1.6263,edsd,AD,,F,,0.35158,3.7923,3.867,0.67411,6.4981,1.1509,0.32995,2.6807,2.4204,39.17,13.5418,167.2846,3.9781,4.1589,1.3351,1.5103,3.0729,5.8603,1.6468,2.6209,0.94534,4.7591,9.0866,23.1588,5.962,1.8717,4.0779,1.3864,16.0798,4.6551,3.1754,1.3547,2.627,5.9115,10.6656,2.5508,3.2641,2.7267,1.2007,1.2852,3.3203,8.1385,2.6495,2.2224,11.5959,1.8952,2.14,2.3019,14.0706,1.6488,3.1623,1.1367,12.2212,4.6449,6.9608,2.789,8.2836,5.8038,5.8214,6.3723,3.3172,1.4731,4.2195,26,,AD,0.06919,,,,0.29367,3.6232,3.4566,0.60861,8.1734,1.4545,0.31239,3.0008,2.5025,38.7047,13.1125,171.0863,3.7345,3.7473,1.1052,1.6169,3.1468,5.4139,1.688,2.6794,1.0499,5.3338,8.6314,22.9569,6.6954,1.8889,3.9147,1.3135,15.6446,4.3477,3.2287,1.0259,2.4473,6.511,10.6424,2.2858,3.2884,3.3687,1.2992,1.3159,2.9264,8.3521,2.293,2.2631,9.4345,2.0588,1.8718,2.0061,13.2372,1.6339,3.1384,1.0597,12.0196,4.441,6.6645,3.6263,9.3038,6.079,5.4951,6.1074,2.8802,1.3152,4.0164,,,,,,,,,,,,,,,79,,,,275
+nG+MIL1T5AD011,2.2463,1.6804,,70-79y,AD,,,16.4399,4.5196,2.3448,2.0428,2.034,edsd,AD,,F,,0.35003,3.9392,3.7078,0.65986,7.9992,1.2979,0.32973,2.6003,2.6409,39.5951,13.7906,189.0925,3.7099,3.7309,1.3635,1.6887,3.028,6.2742,1.8678,2.6597,0.92265,5.2449,9.9822,21.5998,5.9821,2.067,4.1536,1.4944,16.4845,4.9917,3.427,0.94417,2.551,5.9197,12.5646,2.9097,3.4578,2.763,1.2441,1.367,4.041,9.2741,2.8423,2.1371,11.6058,2.2219,2.0306,2.0754,11.831,1.9228,3.1733,1.1726,12.9407,4.5871,8.3044,2.7703,9.6914,6.7908,5.9495,6.9116,3.104,1.4037,4.377,20,,AD,0.07157,,,,0.30493,3.2422,3.5394,0.6034,7.6621,1.4896,0.31251,2.8194,2.6126,39.7455,13.84,183.5937,3.6892,3.4139,1.2407,1.53,3.2431,5.9454,1.7798,2.6165,1.3815,4.772,8.946,31.0836,5.9288,1.9222,3.9839,1.4698,16.5137,3.6917,3.2501,0.86595,2.2447,6.9508,11.2838,2.4347,3.0802,2.5761,1.2663,1.3987,3.2293,9.0454,2.4305,2.0847,9.6585,2.1352,1.9189,1.8653,10.5575,1.9087,3.222,1.0968,12.9936,4.4074,6.9414,3.0225,9.0286,6.2713,5.6575,6.839,2.977,1.3806,4.1085,,,,,,,,,,,,,,,70,,,,276
+nG+MIL1T5AD012,2.0772,1.3442,,70-79y,AD,,,14.5802,4.3889,0.2032,1.57,2.3172,edsd,AD,,M,,0.41166,4.341,4.1862,0.76914,8.8485,1.3863,0.35773,3.0208,2.6071,14.2174,7.8781,230.7701,4.1444,3.5719,1.4728,1.8651,3.1423,6.2374,1.8896,2.6792,1.356,4.5914,10.5956,25.3654,5.792,2.1418,4.447,1.5507,16.0005,5.0349,3.6231,1.383,2.6061,6.3,13.8206,2.8097,3.1632,3.0023,1.391,1.6597,4.0857,10.1246,2.7751,2.394,11.8159,2.3883,2.3736,2.0576,11.7457,1.9996,3.4333,1.1504,13.1621,5.0094,8.6343,2.863,10.9214,6.5359,6.7856,7.0184,3.7335,1.4862,5.0076,21,,AD,0.07698,,,,0.35086,4.1184,3.996,0.70917,9.0266,1.4344,0.33321,3.0119,2.6908,15.1677,7.6675,223.5163,4.1108,3.6763,1.2358,2.0866,3.2243,4.7168,1.7967,2.7682,2.4881,4.083,8.1016,26.3421,5.7237,1.9783,4.2945,1.4937,16.5221,3.4563,3.3509,1.1758,2.6417,7.1152,11.6241,2.0264,2.8509,3.4287,1.4537,1.7119,3.7187,10.6191,2.2415,2.3922,9.4306,1.9108,2.1024,1.9035,10.8545,1.6634,3.3633,1.0924,13.4322,4.8122,7.875,3.3619,10.4408,6.659,6.3211,6.6456,3.3582,1.2959,4.8225,,,,,,,,,,,,,,,71,,,,277
+nG+MIL1T5AD013,1.9074,2.1846,,+80y,AD,,,18.4101,5.0502,2.5562,2.1171,1.7956,edsd,AD,,M,,0.41651,4.389,4.2877,0.60762,8.3197,1.5246,0.38239,3.162,2.8888,47.1271,16.055,212.0113,4.0757,4.3195,1.1384,1.8211,3.3368,6.4318,1.93,2.5938,1.4453,5.9483,9.0053,23.0926,7.0352,2.328,4.5669,1.7058,17.2788,5.7076,3.8498,1.0979,2.7557,6.7878,11.9987,3.9331,4.0772,3.7901,1.4802,1.6611,4.4389,11.1859,2.6747,2.3789,10.3747,2.3958,2.42,2.4798,11.8957,2.4099,3.5927,1.263,12.8978,5.2777,8.9968,3.2538,10.8338,7.0542,6.712,6.9046,3.7072,1.7415,4.8254,24,,AD,0.07497,,,,0.34998,4.0253,4.0554,0.68803,9.0908,1.7043,0.35469,3.0958,2.8697,46.8712,15.0903,212.9949,3.6328,4.1878,1.3234,1.891,3.3198,6.639,1.8402,2.9796,1.778,5.9378,9.6295,19.6264,7.2507,2.1323,4.619,1.7157,17.0588,4.6593,3.572,1.3812,3.0988,7.7004,12.6813,3.1107,3.8353,3.5913,1.4907,1.6892,3.9896,10.9795,2.672,2.4397,10.6953,2.0054,2.3178,2.312,11.8239,1.9278,3.4545,1.1022,12.7223,5.259,7.9835,4.3263,10.0955,7.5978,6.4189,7.5417,3.2911,1.6507,4.6238,,,,,,,,,,,,,,,82,,,,278
+nG+MIL1T5AD014,1.8234,1.6123,,70-79y,AD,,,16.5482,4.4313,2.6862,2.0977,1.4967,edsd,AD,,F,,0.37816,4.0625,4.1644,0.71028,8.6186,1.5289,0.34262,2.5467,2.6657,44.8003,13.5134,202.681,4.2033,4.0097,1.1769,2.0332,3.0475,6.4322,1.8986,2.7291,0.64214,5.3023,10.3489,13.2744,6.5665,2.3112,4.3607,1.5082,16.7602,5.0603,3.6837,1.0474,2.4851,5.9222,13.0087,2.7058,3.6077,3.6122,1.4596,1.4159,3.7223,9.2699,2.5063,2.1935,10.9548,2.2773,2.4025,2.2574,12.2039,1.9195,3.9178,1.0201,12.1336,4.4457,8.5838,2.9878,9.2394,7.3543,6.2407,7.1199,4.0165,1.5239,4.502,25,,AD,0.06836,,,,0.33943,3.6238,4.1021,0.69622,8.8693,1.4647,0.34498,2.7636,2.6543,44.5808,13.2022,204.8715,3.3679,4.1992,1.2784,1.9975,3.1985,6.5704,1.7608,3.0307,0.97991,5.8883,9.917,11.9869,7.1919,2.1112,4.574,1.3887,15.6108,4.6161,3.2708,0.96877,2.3765,6.4158,11.4578,2.4569,3.8474,3.5678,1.5225,1.4334,3.479,9.5306,2.3849,2.039,8.9768,2.0696,2.1481,1.9277,11.6883,1.8156,3.7495,0.98281,12.1339,4.4485,6.5404,3.6665,9.3587,6.2276,5.9398,6.2058,3.4733,1.4408,4.2808,,,,,,,,,,,,,,,70,,,,279
+nG+MIL1T5AD015,2.97,2.2981,,70-79y,AD,,,22.1853,5.521,2.8663,2.4024,1.967,edsd,AD,,M,,0.33849,4.8056,4.3726,0.81125,7.6763,1.4519,0.35392,2.4466,2.6787,50.4855,18.9707,229.8856,3.9903,3.7318,1.4481,1.8732,3.4204,6.0325,1.9785,2.9226,2.0014,5.7805,9.6776,26.3035,6.865,2.1982,4.2348,1.7052,16.2543,4.7454,3.7523,1.0639,2.4552,7.0426,12.4146,2.9607,4.2295,2.8893,1.3049,1.6135,4.4399,10.0543,2.9458,2.4106,10.5992,2.496,2.2676,2.4352,10.9432,1.8922,2.8466,1.2762,12.6856,4.7041,8.3125,2.7448,9.2149,6.5187,6.64,7.3433,3.3907,1.5449,5.3964,15,,AD,0.09347,,,,0.32095,3.9068,4.2283,0.77114,9.7901,1.767,0.37333,3.1109,2.6548,52.1853,17.6235,240.1227,4.0703,4.2585,1.4166,1.9242,3.5967,6.1695,1.8311,3.0601,1.4552,5.8681,9.375,23.7121,7.5401,2.1265,4.139,1.6854,16.7187,4.8676,3.449,0.96897,2.1526,7.4436,12.056,2.7174,4.0877,2.9196,1.4656,1.6071,4.2673,10.9155,2.7822,2.4503,9.2869,2.1933,2.1487,2.0772,11.2973,1.687,3.0756,1.1725,12.5964,4.3662,7.887,3.9259,9.0381,6.7893,6.1423,6.587,3.4653,1.4741,5.1366,,,,,,,,,,,,,,,78,,,,280
+nG+MIL1T5HC001,0.93909,1.7796,,60-69y,CN,,,15.9804,4.0092,2.3794,1.988,0.83792,edsd,CN,,F,,0.35247,3.7447,3.6702,0.76205,8.4283,1.3008,0.3289,1.8742,2.4179,41.4904,13.3837,201.3279,3.0664,2.5465,1.3462,1.707,2.924,5.9776,1.7443,2.9529,0.42677,5.1719,9.0952,9.3133,5.459,2.0953,4.1817,1.4864,14.7416,5.2592,3.348,1.0004,2.0616,5.5425,10.9522,2.4031,3.1947,3.153,1.2418,1.414,3.9007,8.4977,2.6572,1.9992,9.2757,1.7184,2.0846,1.9473,9.8827,1.9203,3.0835,1.0054,13.0674,4.2591,7.5543,2.7218,8.673,5.7842,6.5512,5.8683,3.2268,1.5821,4.3949,26,,,0.06458,,,,0.32332,3.2997,3.2802,0.82618,8.6147,1.4885,0.33271,1.9566,2.5076,43.3741,13.3111,203.4859,3.1692,3.1204,1.4588,1.634,3.315,6.5829,1.7015,3.2166,0.38198,5.0955,9.5817,8.7354,5.7616,1.9799,3.9916,1.4035,15.0275,3.9415,3.2653,0.94132,1.915,6.0084,11.7143,1.852,3.2669,2.9334,1.3375,1.4535,3.5994,8.7866,2.5342,1.8739,7.9816,1.7412,2.0131,1.615,9.7711,1.5285,2.9703,1.0038,11.7989,4.244,7.1539,3.241,8.8494,5.8164,6.1788,6.2429,3.0771,1.16,4.1389,,,,,,,,,,,,,,,68,,,,281
+nG+MIL1T5HC002,1.0829,1.7871,,60-69y,CN,,,18.1291,4.7095,2.4738,2.1306,1.029,edsd,CN,,M,,0.41704,4.2337,3.9013,0.89798,8.721,1.5808,0.38664,2.7274,2.7022,45.2721,15.9417,253.4884,3.6622,4.0441,1.6232,1.9201,3.3786,7.6213,2.0776,3.4104,0.38479,6.3769,11.562,11.6139,6.7187,2.4224,4.4844,1.7611,19.0743,5.5222,4.0288,1.1116,2.5701,6.6879,14.7553,3.1473,3.9337,3.4189,1.5109,1.6625,4.1643,9.4709,3.0987,2.3037,11.6194,2.3419,2.6528,2.2828,11.5573,1.9749,3.353,1.2385,13.4797,5.0385,8.9906,3.3567,10.575,7.3378,7.6489,7.2146,3.7831,1.6345,5.0305,,,,0.07883,,,,0.35485,3.5594,3.7583,0.91074,9.8237,1.6724,0.38515,2.9539,2.6517,46.7921,15.0585,253.6807,4.0372,4.5374,1.6807,1.8156,3.697,7.7092,1.9843,3.5536,0.42881,6.6099,11.9429,7.1264,7.6647,2.2263,4.2544,1.7718,17.4702,4.6329,3.6451,1.2147,2.7318,7.7122,14.6255,2.6346,4.0661,3.4149,1.5816,1.6517,3.9087,9.3961,2.919,2.236,10.3667,2.2434,2.3484,2.047,12.1052,1.9491,3.2159,1.1899,14.0941,5.1229,8.0516,4.2499,9.6342,7.2631,7.2864,7.3667,3.7217,1.5655,4.8435,,,,,,,,,,,,,,,61,,,,282
+nG+MIL1T5HC003,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,283
+nG+MIL1T5HC004,1.7085,2.2076,,70-79y,CN,,,16.0067,4.5196,2.1089,1.8515,2.2077,edsd,CN,,F,,0.41771,4.5958,4.0559,0.86442,8.5907,1.6081,0.3743,2.5994,2.5286,41.0896,14.0561,219.3099,3.7964,4.3966,1.7023,1.9128,3.8924,6.4708,2.0287,3.1809,0.51725,5.8724,9.5956,28.2816,6.1758,2.2979,4.2246,1.8066,17.6661,5.9989,3.8569,1.1072,2.5839,6.6289,11.9449,3.6621,3.8015,2.9411,1.3913,1.5295,3.794,10.3125,2.9473,2.4469,10.8314,2.3096,2.2497,2.2008,10.8665,2.0327,3.4516,1.3027,14.3737,4.9208,8.3635,3.5191,10.0323,6.852,6.5563,7.3955,3.564,1.6638,4.5859,,,,0.07149,,,,0.38851,4.0432,4.1186,0.91559,10.1158,1.7569,0.37418,2.8461,2.7088,41.5171,13.8541,225.4359,3.9394,4.5875,1.7212,1.9208,4.049,6.7028,2.0382,3.4992,0.76046,5.4877,9.9474,27.4718,7.262,2.1066,4.2337,1.7744,16.9538,4.2927,3.6544,1.1529,2.6108,7.8167,12.6923,2.2058,3.7215,3.1817,1.4499,1.6181,3.5726,10.3441,2.8322,2.4793,9.6902,2.3381,2.25,2.0732,10.9318,2.0302,3.4874,1.2473,14.2522,5.1473,7.332,3.6124,9.5773,7.0319,6.1456,7.6168,3.3669,1.4831,4.3728,,,,,,,,,,,,,,,75,,,,284
+nG+MIL1T5HC005,1.7674,2.2014,,60-69y,CN,,,18.099,4.8811,2.7387,2.1969,1.4746,edsd,CN,,M,,0.39718,4.5463,3.9433,0.86195,8.843,1.4371,0.36443,2.8053,2.3042,45.8901,14.8966,220.7889,4.0501,4.0207,1.7505,1.9466,3.221,6.8737,2.0461,3.1676,0.8071,5.9384,10.6593,17.5791,7.4707,2.1384,4.4251,1.7127,17.2818,6.1887,3.7365,0.7957,1.9472,6.4523,14.5686,3.282,3.8106,3.2148,1.3119,1.5537,4.4731,10.8082,3.3577,2.3365,11.7193,2.2573,2.3591,2.5306,11.8036,2.0648,3.0686,1.2881,12.943,4.7632,8.3436,3.7027,11.6051,7.4313,6.6092,8.1007,3.3076,1.7581,4.7895,,,,0.0902,,,,0.37023,4.4381,3.5838,0.84848,8.4244,1.6462,0.37066,2.8367,2.3777,46.439,15.0955,223.1865,3.3061,4.344,1.6514,1.6764,3.5843,7.0941,2.0941,3.3298,0.91587,6.7567,11.983,16.0835,8.271,1.9606,4.7296,1.7705,17.3506,4.2999,3.6554,1.1486,2.2511,7.2289,14.5319,2.9122,4.1868,2.8161,1.3695,1.5495,4.1905,10.9296,2.9925,2.1593,10.977,1.8012,2.1258,2.1021,11.4383,1.6503,3.1969,1.2236,13.6084,4.962,7.2704,4.2727,11.1253,6.807,6.0964,8.2183,3.1045,1.426,4.5327,,,,,,,,,,,,,,,66,,,,285
+nG+MIL1T5HC006,2.4324,2.4433,,+80y,CN,,,17.4475,5.1672,2.6349,2.356,2.0625,edsd,CN,,M,,0.46265,4.8983,4.8784,0.95982,9.8993,1.6045,0.44294,3.3389,3.3039,46.8229,14.2393,235.5425,5.1241,4.8222,1.799,2.1078,4.1468,7.7014,2.3391,3.4208,1.7795,6.639,12.5652,26.8485,7.7974,2.5951,5.6182,1.9858,22.0556,5.8134,4.2233,1.2284,2.9668,7.9262,15.7801,3.6108,4.4974,3.7375,1.589,1.6486,5.0508,11.9074,3.3107,2.5815,12.5961,2.9346,2.6349,2.7526,14.364,2.4797,4.2565,1.4242,15.6951,5.45,8.9492,3.6201,11.9809,8.3187,6.9475,9.3224,3.8809,1.9795,4.892,29,,,0.07709,,,,0.41411,4.5751,4.6538,0.93015,9.9074,1.8015,0.43137,3.5254,3.3844,47.2819,14.5233,239.8651,4.5932,5.3644,1.7733,2.0991,4.1722,8.3539,2.112,3.4505,1.4227,7.267,13.2295,24.1549,8.4069,2.6095,5.381,1.9685,21.395,5.4519,3.9778,1.1281,2.9352,8.4474,15.4421,3.483,4.5601,4.1233,1.868,1.6508,4.404,12.1176,2.9008,2.634,10.6681,2.8028,2.6713,2.5367,11.8206,2.3634,4.1266,1.3445,16.5771,5.7831,8.5402,4.5822,11.3807,7.9944,6.5436,9.1304,4.0714,1.9142,4.6439,,,,,,,,,,,,,,,81,,,,286
+nG+MIL1T5HC007,1.427,1.8659,,60-69y,CN,,,16.7031,4.6274,2.2662,2.0996,1.2083,edsd,CN,,F,,0.3983,4.4029,4.1508,0.74588,7.3366,1.5801,0.35182,2.5598,2.6746,40.0099,14.7292,207.5659,3.5359,3.6548,1.446,1.6093,3.4222,6.6129,1.9182,3.0874,0.55812,5.5437,9.7698,13.9922,6.4209,2.2919,4.5127,1.6697,19.1495,4.8732,3.7671,1.1236,2.155,6.358,11.9465,2.8417,3.8423,2.8152,1.3012,1.4262,4.0416,8.8072,2.9508,2.305,9.752,2.0237,2.3985,1.9697,10.7577,1.8033,3.722,1.1554,13.7471,4.6801,8.0408,3.2175,8.9387,6.7653,6.5896,7.5036,3.3439,1.3773,4.6409,26,,,0.06628,,,,0.36213,3.8566,4.4772,0.76962,8.2922,1.748,0.35821,2.4649,2.9314,40.966,14.4089,213.0143,3.4815,3.6957,1.5043,1.8574,3.7816,6.8863,1.9019,3.2954,0.59843,6.0389,10.4929,11.9376,6.6873,2.1745,4.203,1.5995,18.7904,4.6322,3.7832,1.0741,2.2514,7.2009,12.1727,2.7805,3.9429,3.0406,1.4896,1.524,3.8068,9.1317,2.7902,2.3783,8.3638,1.7414,2.3858,1.9982,10.8167,1.618,3.8497,1.1435,13.6742,4.7941,6.4383,3.4153,8.2873,6.0969,6.5034,7.2488,3.1721,1.3538,4.4608,,,,,,,,,,,,,,,68,,,,287
+nG+MIL1T5HC008,1.9465,2.5409,,70-79y,CN,,,18.184,4.2368,2.5286,2.0747,1.4013,edsd,CN,,F,,0.33027,3.8676,3.5241,0.79729,7.9427,1.37,0.34048,2.3237,2.2936,42.0141,14.7204,217.4497,3.3012,3.1715,1.5892,1.4889,3.1734,6.4013,1.7576,2.8767,0.85492,5.3173,9.5883,21.454,5.8912,2.073,3.8531,1.4691,15.828,5.1462,3.4001,0.95079,2.0936,5.8155,10.794,2.7924,3.6291,2.5003,1.2288,1.5516,3.1833,7.8027,2.8097,1.9991,10.124,1.8836,2.0482,1.8628,10.188,1.4383,3.4564,1.0143,12.251,4.2596,8.131,2.7978,9.9883,5.5943,6.6563,6.7334,3.1,1.1738,4.9407,30,,,0.07328,,,,0.31394,3.2214,3.5391,0.75633,8.7011,1.4031,0.32832,2.5233,2.7168,41.516,14.8152,218.3786,3.2381,3.1896,1.4715,1.5951,3.2878,6.3907,1.6315,3.0437,0.697,5.6166,9.6818,15.8726,6.5178,1.8187,3.7044,1.4162,15.2181,4.3218,3.0235,1.0589,2.2721,6.4771,10.3927,2.454,3.6688,2.6327,1.2405,1.585,3.0606,8.1016,2.4996,1.9313,9.0085,1.7203,1.8589,1.7225,10.3188,1.3384,3.5262,0.9244,12.8832,4.3475,7.2102,3.1376,9.1786,5.8192,6.3441,6.4493,2.8391,1.1206,4.6796,,,,,,,,,,,,,,,73,,,,288
+nG+MIL1T5HC009,1.6583,2.2007,,60-69y,CN,,,19.511,4.8064,2.5672,2.1871,1.7918,edsd,CN,,F,,0.46555,4.9042,4.3879,1.0396,9.7867,1.8698,0.41989,3.2388,3.1743,49.3091,15.6105,236.1107,4.14,4.5748,1.8998,1.9546,3.8632,7.938,2.2114,3.6808,0.52111,6.6676,12.1495,18.9404,7.5269,2.9299,5.0934,2.0564,21.3198,6.8424,4.5688,0.99196,2.4369,7.0519,15.4839,3.7408,4.5838,3.6933,1.7763,1.6465,4.7032,11.0082,3.5232,2.5942,12.3441,2.7283,2.9946,2.6681,12.0834,2.0854,3.9264,1.3146,14.1021,4.9214,9.3659,3.7493,11.5742,7.8247,7.4805,8.2014,4.0871,1.8144,5.173,30,,,0.08872,,,,0.39303,4.5854,4.4342,1.056,9.8124,1.912,0.40146,3.3191,3.1447,47.8821,15.4577,236.4197,4.177,4.6793,1.9942,2.1378,3.7478,7.7827,2.1389,3.9806,0.57647,6.9008,12.8493,15.1081,8.0483,2.4161,5.1387,1.9134,19.0468,5.117,4.2557,1.041,2.5683,7.9185,15.8443,2.789,4.2832,3.9785,1.6218,1.6523,4.4084,11.1074,3.3648,2.5509,10.5419,2.4781,2.7598,2.2835,12.047,2.1289,3.8407,1.2561,14.0763,5.1152,8.4066,4.0509,11.2932,8.4079,7.1682,8.5754,3.8336,1.6968,4.9633,,,,,,,,,,,,,,,69,,,,289
+nG+MIL1T5HC010,1.6014,2.2559,,70-79y,CN,,,17.1853,4.843,2.3955,2.1319,1.2468,edsd,CN,,M,,0.43295,4.7909,4.4816,0.88144,8.9824,1.6807,0.39639,3.2287,2.753,46.3326,14.0919,219.9492,3.9079,4.8068,1.6079,2.1288,3.4285,8.0286,1.9458,3.3271,0.52513,6.4314,11.7663,13.5929,7.7479,2.5297,5.2531,1.8311,18.7306,6.2481,3.9938,1.1741,2.7233,7.3763,14.611,3.788,4.6343,3.4639,1.64,1.5027,4.6613,10.9844,3.3085,2.1583,12.1538,2.4004,2.698,2.4613,11.8722,2.1958,3.4555,1.2417,15.6297,5.4558,8.6116,3.9244,9.9009,7.8519,7.1811,8.4207,3.9898,1.6978,4.7141,28,,,0.08537,,,,0.37023,4.0747,4.2348,0.91712,9.9873,1.8315,0.38032,3.6048,2.6819,46.5083,13.7148,221.9736,3.9693,5.0459,1.7817,1.9111,3.6716,8.0655,1.9208,3.5952,0.5428,6.9214,11.7446,11.1851,8.8442,2.4678,4.6909,1.7927,18.7008,4.7446,3.6669,1.156,2.7194,7.9189,13.9812,3.0022,4.5938,3.5385,1.6497,1.527,4.1515,11.0616,3.2315,2.2009,10.5419,2.2654,2.519,2.1862,12.9718,2.1924,3.3703,1.1865,14.7237,5.7568,8.7982,4.5181,9.975,8.4022,6.7266,8.4608,3.384,1.5894,4.5078,,,,,,,,,,,,,,,76,,,,290
+nG+MIL1T5HC011,0.82892,1.5251,,60-69y,CN,,,14.9846,3.9415,2.6376,2.0875,0.81443,edsd,CN,,F,,0.37091,4.1134,3.4545,0.76441,7.9641,1.327,0.32632,2.5701,2.4524,41.9724,13.7081,181.9258,3.4761,3.8232,1.5837,1.678,3.0336,6.2204,1.8689,2.886,0.39869,5.398,9.2321,7.5408,6.181,1.9589,4.3331,1.4807,15.4708,5.3655,3.6628,0.93141,2.0748,5.9445,11.462,2.7813,3.7827,2.9963,1.1608,1.1974,4.019,9.235,2.8443,1.8408,12.1449,2.1688,2.0597,1.7797,10.6935,1.7216,3.0414,1.0615,12.7331,4.8072,8.9246,3.3079,10.5726,5.982,6.0178,6.7532,2.9888,1.2516,3.8679,27,,,0.06279,,,,0.32996,3.649,3.4775,0.78938,9.4724,1.5703,0.34001,2.8527,2.5862,42.4737,12.6458,183.5008,3.2363,3.9569,1.571,1.7128,3.1512,6.4112,1.7704,3.067,0.44707,5.5082,9.4183,7.5822,6.6465,1.9458,4.5714,1.4481,15.5811,4.4501,3.5012,0.90507,2.3854,6.7581,10.9933,2.4357,3.4823,2.8904,1.4053,1.2104,3.6395,9.3893,2.6748,1.8934,10.1064,1.8712,2.0736,1.7949,10.9179,1.6954,3.0508,1.028,12.2797,4.7214,7.7759,3.2296,10.6279,6.1258,5.7828,7.0991,3.3409,1.3372,3.6997,,,,,,,,,,,,,,,65,,,,291
+nG+MIL1T5HC012,0.89251,1.7185,,50-59y,CN,,,18.4322,4.7016,2.5807,2.2158,1.0371,edsd,CN,,F,,0.45606,4.431,4.0495,0.84166,8.8709,1.6694,0.38239,2.8626,3.1011,45.9694,15.0095,220.5259,3.6297,3.8821,1.5178,2.0102,3.5809,6.9016,2.1293,3.3754,0.37683,5.9517,10.0065,6.6855,7.1587,2.3635,4.4796,1.7286,19.56,5.896,4.1009,0.87729,2.3427,6.84,12.7949,3.3407,4.1008,3.307,1.3626,1.6149,3.9552,9.3441,2.9176,1.9962,11.7282,2.398,2.3484,2.0997,12.0469,2.0809,3.7317,1.1084,13.2205,5.3547,9.4288,3.5209,11.1783,7.395,7.4648,7.2896,3.8888,1.4929,4.8877,26,,,0.07262,,,,0.41623,3.8231,3.8678,0.84458,9.5148,1.8534,0.38119,2.8932,3.1672,44.9758,14.8459,222.79,3.8353,3.8024,1.6222,1.8769,3.7522,6.9795,1.9946,3.469,0.35594,6.0687,10.6778,6.8043,7.5859,2.1568,4.472,1.7892,18.6709,4.6494,3.7512,1.0925,2.6238,7.3267,13.3397,2.6292,4.0277,3.5265,1.4031,1.6336,3.5251,9.3341,2.6761,2.0716,10.8576,2.161,2.1618,1.9748,13.1105,1.8444,3.6551,1.0314,12.5188,5.2488,8.2692,3.8131,10.4484,7.0697,7.1647,7.5284,3.3528,1.3845,4.6823,,,,,,,,,,,,,,,59,,,,292
+nG+MIL1T5HC013,2.2182,2.2575,,70-79y,CN,,,18.057,4.371,2.2749,1.9961,1.576,edsd,CN,,M,,0.37602,4.9958,4.4532,0.7483,9.4514,1.6135,0.37576,3.0593,2.1251,43.4867,15.0908,236.9625,4.3194,4.7369,1.7013,1.9949,3.7629,7.6299,2.1921,3.1597,0.54285,6.8015,12.7822,16.12,7.1973,2.6536,4.9186,1.8185,19.6619,6.6704,4.0437,1.0459,2.7089,7.1143,15.3184,3.5629,4.4299,3.0315,1.662,1.58,4.5832,10.822,3.3577,2.393,12.4476,2.4094,2.4928,2.4078,13.6959,1.9643,3.5935,1.3577,13.7674,5.4508,8.6411,4.0232,10.5739,6.9533,6.74,8.105,3.9042,1.6421,4.875,30,,,0.07937,,,,0.32142,4.4639,4.4397,0.71271,10.3895,1.8664,0.36038,3.0805,2.1378,44.0443,14.8474,238.3759,4.1462,4.1683,1.5181,2.1404,4.0593,7.4857,2.0171,3.1193,0.5229,8.2003,11.4524,14.9264,7.7182,2.3725,5.0149,1.7213,18.8851,6.2556,3.7965,0.95657,2.4486,8.039,14.4871,3.3003,4.4489,3.2773,1.6771,1.5712,4.295,10.3858,2.8337,2.3799,11.1857,2.4054,2.3339,2.0955,12.4627,2.0535,3.5212,1.3046,15.2184,5.5522,8.2741,4.3188,11.0085,7.225,6.5392,7.622,3.8232,1.6178,4.5409,,,,,,,,,,,,,,,77,,,,293
+nG+MIL1T5HC014,1.1081,1.8104,,60-69y,CN,,,16.0117,3.7738,2.3834,1.7664,0.91896,edsd,CN,,F,,0.37092,4.0426,3.758,0.79648,8.1155,1.4496,0.33985,3.0693,2.5107,41.6876,13.4096,213.5467,3.6125,4.3767,1.5231,1.881,3.252,6.7922,1.8935,3.0023,0.44917,5.9785,10.455,9.9239,6.6054,2.1764,4.5634,1.5188,19.1102,5.4103,3.6573,1.0389,2.5646,6.2017,13.505,3.1901,4.0005,3.4346,1.3284,1.3981,4.0773,9.5413,2.9977,2.0505,11.4231,2.3505,2.0134,2.0216,11.7862,1.9839,3.455,1.1114,13.6062,5.1211,8.4831,3.5915,9.0615,7.2733,6.4778,7.2595,3.8205,1.5055,4.2939,,,,0.06598,,,,0.33504,3.7742,3.7341,0.81262,9.1163,1.8882,0.34588,3.042,2.5367,41.246,12.9533,215.0197,3.5689,3.9812,1.5538,1.9503,3.6334,7.1203,1.8969,3.0712,0.52536,5.7922,11.4667,7.0569,7.0125,2.3719,4.6835,1.5895,17.7419,4.3545,3.7374,1.0439,2.5257,7.1866,13.7474,2.2463,3.9417,3.1835,1.6125,1.4165,3.8189,9.3593,2.7711,2.0539,9.6623,2.0489,2.0726,1.8856,10.5343,1.969,3.4854,1.0685,13.5014,4.7568,8.0575,3.3671,10.1847,7.3159,6.1144,7.8998,3.555,1.4907,4.0924,,,,,,,,,,,,,,,68,,,,294
+nG+MIL1T5HC015,1.4432,2.6631,,60-69y,CN,,,16.4182,4.484,2.3516,1.9992,1.3297,edsd,CN,,F,,0.33023,3.6304,3.6966,0.80759,7.5543,1.25,0.32441,2.9302,2.2478,45.0794,13.6013,193.5193,3.1451,3.7841,1.4961,1.6998,2.8371,6.5926,1.7242,3.0606,1.1697,4.8611,9.9105,27.4566,6.2339,2.0018,4.228,1.3674,16.3877,4.7448,3.2152,0.87763,2.0881,5.4577,12.0916,2.5511,3.6566,2.8991,1.2335,1.4112,3.7326,8.9063,2.9638,2.082,9.5017,1.6901,1.93,2.0903,10.7323,1.671,3.199,0.99226,11.9293,3.7976,7.8321,2.772,8.5418,6.8169,6.8349,6.8255,3.297,1.2599,4.4961,30,,,0.0789,,,,0.30825,3.2095,3.3953,0.80199,8.8051,1.4349,0.34543,2.5892,2.5066,44.7662,13.3684,192.0432,3.1901,3.897,1.4945,1.5223,3.2913,6.4975,1.6718,3.0522,1.0092,5.3353,10.1838,19.7474,6.5331,1.8998,3.9625,1.3389,16.2577,4.0748,3.1645,0.76993,1.9324,6.101,11.8131,1.9907,3.4124,2.7014,1.2503,1.3363,3.5027,9.0583,2.6218,2.1583,8.8201,1.5536,1.894,1.9628,10.3644,1.5671,3.0092,0.96188,12.1772,3.9289,7.3955,3.0337,8.7626,6.0528,6.4526,6.9408,2.7457,1.2927,4.2677,,,,,,,,,,,,,,,69,,,,295
+nG+MIL3T0HC001,2.2506,2.2271,,70-79y,CN,,,16.8618,4.814,2.3503,2.2993,2.2732,edsd,CN,,M,,0.32138,4.2575,3.6893,0.75163,7.6315,1.443,0.34766,3.1679,2.1736,45.0829,14.3571,194.6723,3.5452,4.3633,1.4878,1.569,2.5791,6.4434,2.0266,2.7632,0.60964,6.2988,9.6552,28.2525,7.1164,2.3922,4.426,1.6313,17.1345,5.5864,3.5735,1.115,2.5677,5.9329,12.0562,3.2646,3.9804,2.6453,1.4832,1.595,4.0273,10.701,2.7534,2.1925,10.3158,2.4435,2.3726,2.0771,11.164,2.0037,3.3777,1.2975,13.5656,4.5444,8.3409,3.4603,9.7964,6.8093,6.8531,7.0192,3.3372,1.4764,4.4993,,,,0.06596,,,,0.36398,3.9106,3.6017,0.78953,9.0314,1.4807,0.41099,3.0901,2.7349,44.3705,14.325,202.5373,3.3527,4.518,1.6117,1.5566,3.1918,6.768,2.0352,2.8581,0.73085,5.9135,10.3698,28.0695,7.2066,2.0386,3.9624,1.7018,16.7566,4.6208,3.4805,0.96521,2.1395,7.6757,13.3075,2.5253,3.8105,2.7216,1.4229,1.3784,3.5002,10.1006,2.5765,2.2978,8.8236,2.2367,2.0373,1.9552,11.2005,1.9326,3.7274,1.2384,13.9114,4.5982,7.5605,4.181,9.3681,7.0912,5.6992,7.453,3.1455,1.455,4.4153,,,,,,,,,,,,,,,77,,,,296
+nG+MIL3T0HC002,1.0872,1.5972,,-50y,,,,17.1094,4.9457,2.4471,2.2017,1.2461,edsd,,,M,,0.3078,4.1983,4.058,0.90119,8.2861,1.2537,0.33802,3.0771,1.8828,43.1548,15.1107,228.3948,3.8403,4.1975,1.7606,1.8331,2.8406,6.7736,1.7852,3.0997,0.50392,5.777,11.6521,12.3254,7.036,1.9946,4.0852,1.6119,16.8245,4.7495,3.3636,1.1921,2.9239,5.8331,13.9397,2.8373,3.9987,3.1578,1.3155,1.5938,4.0634,9.6546,2.8523,1.996,9.5644,1.9735,2.5449,1.9736,11.6246,1.7249,3.0846,1.054,12.3174,5.0895,7.854,2.7544,9.225,6.8376,7.2666,8.4584,3.0499,1.2649,4.7331,,,,0.07215,,,,0.34523,4.3417,3.8248,0.8493,9.0586,1.6622,0.35689,2.4294,2.4047,41.548,15.8163,243.5345,3.7573,3.6178,1.6117,1.9548,3.2491,6.6421,1.9445,3.26,0.57188,5.687,10.9414,11.0564,6.6337,2.1988,3.9591,1.7738,16.6827,4.2785,3.6215,0.86988,2.1427,7.1764,14.544,2.549,3.7528,3.1579,1.4803,1.5158,3.4985,8.5675,2.603,2.0263,9.2992,1.9459,2.3028,1.8696,11.4796,1.6362,3.3206,1.1181,13.1293,4.862,7.2817,3.9092,10.4219,7.2945,6.4114,8.2434,3.5694,1.3838,4.4926,,,,,,,,,,,,,,,,,,,297
+nG+MIL3T0HC003,1.0581,1.7975,,70-79y,CN,,,15.5056,3.9495,2.097,1.9454,0.96045,edsd,CN,,F,,0.32252,3.6553,3.658,0.66949,8.2641,1.244,0.3239,2.0926,1.848,38.1448,14.5574,197.9945,3.0206,2.897,1.2057,1.7285,2.9023,5.4416,1.5408,2.8086,0.41529,4.8529,8.5582,10.4055,5.62,2.0803,4.3419,1.3678,14.1078,4.9703,3.1934,0.96039,2.0914,5.0512,10.7233,2.2493,3.0576,3.016,1.2897,1.428,4.0421,8.9246,2.4612,1.9743,8.821,1.6318,2.3052,1.7962,9.0197,1.7702,2.6212,1.0551,11.351,4.3949,7.1172,2.3676,7.8501,5.6191,6.525,5.5284,3.0854,1.437,4.1549,29,,,0.05802,,,,0.29497,3.4262,3.2016,0.76212,7.9388,1.3526,0.31193,1.7932,2.2033,40.9338,14.8867,202.8273,3.152,2.8214,1.3896,1.5672,3.2655,6.1725,1.7114,3.1302,0.39387,4.8907,9.1927,9.514,5.4476,1.7262,4.0824,1.4448,13.9244,3.5569,3.1025,0.83221,1.7925,6.1492,11.6879,1.8272,3.2957,2.8743,1.1366,1.4337,3.446,8.0695,2.365,1.8917,7.5687,1.7224,1.8489,1.624,9.4524,1.5904,2.539,1.0201,10.8889,4.2302,6.8191,3.1221,8.2253,5.8447,5.9057,6.3501,3.0722,1.1816,3.9635,,,,,,,,,,,,,,,71,,,,298
+nG+MIL3T0HC004,1.0858,1.9234,,70-79y,CN,,,16.6248,3.9719,2.3954,1.992,1.1536,edsd,CN,,F,,0.37448,4.3176,4.0023,0.71771,9.4621,1.5558,0.32816,2.6605,2.5095,40.8498,12.6276,203.6258,3.9037,3.8276,1.3707,2.0334,3.0493,6.8767,2.0292,2.8714,0.42006,5.5398,10.8658,13.6065,6.4755,2.3258,4.5381,1.6913,17.23,6.3066,3.8318,1.086,2.357,5.9256,13.4995,2.3848,3.5196,3.9377,1.467,1.4833,4.0438,10.0151,2.8164,2.2312,10.8438,2.3329,2.3812,2.2049,9.5586,1.8088,3.4323,1.1892,13.1632,4.3746,9.4771,3.1756,9.7743,6.9524,7.0902,6.8639,3.8172,1.4172,4.3579,30,,,0.07738,,,,0.38859,3.7026,3.6498,0.73452,9.752,1.6456,0.35794,2.1927,3.0643,42.3023,12.4688,206.115,3.8835,3.7048,1.4643,1.946,3.3553,6.97,2.0107,3.1331,0.45092,5.1454,11.0579,11.7448,6.5278,2.0059,4.564,1.8351,17.029,5.1094,3.5505,0.92238,2.1904,7.3406,13.5199,2.0437,3.5847,3.5269,1.3571,1.4296,3.4881,9.1766,2.6559,2.1283,9.3621,2.2332,1.843,2.0082,10.6592,1.8306,3.4102,1.0993,13.0925,4.6269,7.3399,3.6249,9.2164,7.0665,6.3432,7.6584,3.459,1.4472,4.2579,,,,,,,,,,,,,,,70,,,,299
+nG+MIL3T0HC006,1.3335,1.6423,,70-79y,CN,,,16.0578,4.2492,2.2835,1.9851,1.3381,edsd,CN,,F,,0.44518,4.8562,4.0202,0.90359,8.6968,1.453,0.42165,3.7731,2.354,44.4176,13.3229,222.1084,3.9068,4.0624,1.7002,1.7612,3.1244,7.4944,2.0947,3.5191,0.40315,6.1854,10.6668,15.1691,8.1658,2.1075,4.9814,1.7259,19.4553,5.6598,3.9485,1.0816,2.7168,7.2201,13.693,3.0222,4.1854,3.0305,1.3053,1.471,4.453,11.349,3.263,2.3915,11.4351,2.0968,2.3807,2.3897,13.0845,1.8977,3.7221,1.4137,13.1624,5.2538,8.2508,2.8257,11.1999,7.3608,6.7606,7.2767,3.3446,1.5567,4.4851,,,,0.05288,,,,0.4066,4.1233,3.7836,0.85271,10.1935,1.8186,0.42857,3.6194,2.6128,43.7419,14.0219,227.3956,3.6876,4.5531,1.6351,1.7598,3.5202,7.5268,2.1477,3.4733,0.39191,5.6893,10.8778,14.8113,8.4337,2.09,4.5501,1.9436,19.4878,4.9089,3.8011,1.0469,2.7296,8.8827,13.8385,2.549,4.0605,3.3216,1.42,1.4997,4.1452,10.7143,2.8168,2.2922,10.9301,2.1272,2.3153,2.1845,12.9534,1.8131,3.68,1.3019,12.9657,5.4232,7.2368,4.0568,10.6915,7.3496,6.2893,7.3208,3.2725,1.5479,4.2425,,,,,,,,,,,,,,,75,,,,300
+nG+MIL3T0HC007,1.2242,1.3353,,-50y,,,,15.7424,4.2476,2.0971,1.9523,1.2004,edsd,,,M,,0.35887,4.6802,4.005,0.75684,7.677,1.3555,0.34513,2.5129,1.6978,37.8262,13.644,189.4892,3.864,3.9667,1.4938,2.0111,3.2231,6.3805,1.8763,2.8969,0.41212,4.9122,10.274,10.8098,6.1198,2.1568,4.7802,1.7906,17.3748,4.6857,3.6273,1.1416,2.5155,6.6321,11.6458,3.0095,3.3384,3.8938,1.506,1.5596,4.1002,10.0293,2.8056,1.9193,9.7018,2.4066,2.3786,1.9,11.7764,1.9041,2.6506,1.2162,14.1994,5.3156,8.1567,3.0282,8.8138,5.9411,6.7694,6.9902,3.9146,1.4223,3.9321,,,,0.07385,,,,0.34404,4.1869,3.5752,0.76607,8.7675,1.593,0.35521,2.7614,2.5929,39.3674,12.8538,198.8894,3.7788,3.7649,1.5505,1.7659,3.5513,6.7114,1.8571,2.9554,0.56721,5.2995,10.1157,9.5855,6.8706,1.9652,4.6155,1.7212,15.8517,4.4809,3.2559,0.93959,2.2389,8.2643,12.4217,2.3532,3.6227,3.1785,1.2388,1.2771,3.4724,9.7815,2.4499,1.8843,8.5085,1.8431,2.1836,1.8357,12.156,1.6429,3.1034,1.1721,13.723,5.4414,7.184,3.9528,9.3873,6.4855,6.1316,7.1975,2.9919,1.1627,3.7611,,,,,,,,,,,,,,,,,,,301
+nG+MIL3T0HC008,1.2993,1.6239,,70-79y,CN,,,16.1406,4.2336,2.2817,1.9299,1.2238,edsd,CN,,M,,0.32521,4.2369,3.8937,0.76442,8.209,1.4318,0.34166,2.6537,1.7664,43.6805,13.6057,210.1924,3.9018,4.3004,1.5579,1.9412,3.134,6.8294,1.7804,2.8249,0.46211,4.9819,9.8961,11.9061,6.416,2.4893,4.4832,1.5532,17.76,5.1371,3.5541,1.133,2.4756,6.6941,12.4233,2.4851,3.5787,3.4893,1.5838,1.369,3.8789,9.7656,3.0073,2.0982,10.6118,2.5476,2.5033,1.9267,11.4577,2.1223,2.6628,1.1941,13.0842,5.078,8.4604,2.9824,10.1258,7.2878,6.7249,6.5539,3.7364,1.4071,4.3251,,,,0.08,,,,0.2972,3.9558,3.8315,0.79662,9.9987,1.5505,0.35902,2.2766,2.2592,45.1277,13.9568,219.0305,4.1002,3.631,1.6702,2.1555,3.3473,7.1779,1.8882,2.8816,0.46983,5.4081,10.8375,10.8911,6.5715,2.0816,4.4848,1.6102,16.273,4.2158,3.4844,0.86718,2.4041,7.9829,13.4185,2.4052,3.6774,3.7049,1.4842,1.314,3.5856,9.6417,2.7711,2.1538,9.3087,2.2286,2.048,1.8839,11.2387,1.8895,2.7561,1.2077,13.2124,5.4969,8.3912,3.3046,9.5839,7.4318,6.1149,7.0914,3.7856,1.4087,4.1327,,,,,,,,,,,,,,,75,,,,302
+nG+MIL3T0HC009,1.9816,2.7942,,50-59y,CN,,,19.4303,5.3145,2.5815,2.3638,2.0269,edsd,CN,,M,,0.45137,5.1269,4.6396,0.98523,10.3267,1.6136,0.41518,3.9856,2.5032,52.2468,18.7838,249.8021,4.6944,5.2218,1.8275,2.3856,3.6086,8.0387,2.2114,3.7377,0.73717,7.2262,12.6099,25.9303,8.2792,2.5249,5.795,1.9397,20.819,6.5476,4.3148,1.2007,2.9417,7.7744,15.7612,3.2734,4.8159,3.5502,1.7998,1.9314,5.1719,13.0258,3.5022,2.5239,11.9236,3.007,2.8007,2.4994,11.5156,2.5786,3.6937,1.498,15.9179,6.2839,11.8596,3.6212,11.3395,8.8837,8.2229,8.2427,4.3612,1.7888,5.2838,30,,,0.08325,,,,0.41651,4.6559,4.6159,1.0167,11.7542,1.6088,0.44274,3.2868,3.3179,54.1172,18.9067,258.846,4.7203,4.7502,1.9067,2.4661,4.0767,8.4549,2.3466,4.0272,0.90834,7.653,13.1325,24.7413,8.4717,2.1702,5.0524,2.0523,20.253,5.9832,4.0133,1.0593,2.5463,8.8946,15.9125,3.3382,4.6643,3.4368,1.6891,1.8652,4.722,12.0285,3.1093,2.6876,11.4475,2.699,2.2488,2.34,12.2152,2.273,3.5557,1.3669,16.095,5.8817,8.5809,4.2807,11.9661,7.9134,7.3263,8.6714,4.3454,1.839,5.0703,,,,,,,,,,,,,,,59,,,,303
+nG+MIL3T0HC010,1.9294,2.3056,,-50y,,,,17.2506,4.7414,2.5069,2.2981,2.0082,edsd,,,F,,0.41252,4.7562,3.8908,0.86494,8.2935,1.7547,0.40229,3.6397,2.1832,48.0839,14.3871,210.2855,3.7718,4.4561,1.5289,1.6262,3.3666,7.7327,2.1454,3.4276,0.9679,6.553,11.051,30.2222,8.5602,2.3277,4.6375,1.9166,18.0269,5.6835,4.2465,1.3173,3.182,7.3094,13.2606,3.2759,4.5181,2.9484,1.2898,1.5078,4.1169,10.5002,3.2449,2.2063,11.2527,2.1894,2.6164,2.0887,12.2938,1.9207,3.2373,1.3167,14.9497,4.8014,8.3427,3.7492,10.5685,6.6397,6.7811,6.3119,3.1907,1.5665,4.9025,,,,0.06139,,,,0.38094,4.0018,3.6586,0.80513,9.6822,1.8422,0.4046,3.9561,2.4192,47.376,14.3601,217.6717,3.182,4.7214,1.5935,1.6005,3.6404,8.1492,2.1543,3.4931,1.0738,6.2094,11.5745,30.9267,9.1724,2.214,4.4407,1.9846,17.7502,5.1017,3.8157,1.1071,2.8006,8.6739,14.0337,2.5283,4.2481,3.1353,1.3991,1.4853,3.9078,10.4226,2.9597,1.9922,9.3938,2.176,2.5161,1.8475,12.8949,1.8675,3.2836,1.1437,14.6171,5.2541,7.0035,3.9089,10.3849,7.1485,6.2039,7.1507,3.1664,1.369,4.6277,,,,,,,,,,,,,,,,,,,304
+nG+MIL3T0HC012,1.4773,1.6605,,-50y,,,,21.2508,5.0225,3.0338,2.4731,1.3649,edsd,,,M,,0.42808,4.9878,4.8936,0.92443,9.9313,1.8135,0.41876,3.5359,2.3651,51.6413,18.2437,294.1752,4.783,4.9173,1.7487,2.2589,4.0095,7.7758,2.3336,3.3306,0.49127,6.5007,12.6202,16.1099,7.466,2.7266,5.7041,1.9821,21.0629,5.7859,4.5683,1.4277,3.1529,7.2745,15.7275,3.5094,4.1933,3.9895,1.6911,1.8629,4.9742,11.8842,3.0782,2.5068,12.0172,3.1132,3.1392,2.3906,14.3597,2.7258,3.9292,1.443,16.4776,6.0682,10.6515,3.3367,10.1761,8.5477,8.6603,8.0872,4.28,1.9245,5.5975,,,,0.08938,,,,0.41623,4.7836,4.5119,0.98247,10.1484,2.178,0.42563,2.9193,3.1376,52.8327,19.2503,301.2319,4.6883,4.4619,1.9368,2.1031,4.4148,8.2086,2.4882,3.6414,0.71604,6.5246,12.8101,13.6461,7.6316,2.5803,5.3472,2.0737,22.3671,4.8995,4.4057,1.0777,2.656,9.5021,16.0264,2.9491,4.3511,3.9799,1.7328,1.828,4.3364,10.4931,2.9381,2.6974,10.778,2.7077,2.502,2.3842,14.1,2.4477,3.6943,1.3308,15.1482,6.0927,9.1853,4.3903,10.3976,8.583,7.9425,9.1009,4.1776,1.9135,5.4829,,,,,,,,,,,,,,,,,,,305
+nG+MIL3T0MCI001,1.5895,1.7191,,-50y,,,,14.6547,3.7908,2.0222,1.9539,1.4354,edsd,,,F,,0.3327,4.0958,4.0193,0.80957,8.1047,1.4399,0.33867,3.1943,2.3731,37.0487,12.7019,198.6874,3.579,4.2605,1.4739,1.8469,3.3513,6.1158,1.6632,3.111,0.57687,5.2045,10.0282,18.3588,6.6743,2.3387,4.6191,1.4935,17.0576,5.1163,3.5241,1.0864,2.5356,5.955,12.8216,2.8619,3.448,3.4294,1.6784,1.2944,4.066,10.0366,2.9109,2.0918,9.8615,1.9866,2.7094,1.9355,9.6896,1.7292,3.3269,1.0716,13.0649,4.6743,7.6945,2.8771,8.7603,6.4315,6.6802,6.8558,3.7394,1.3919,4.17,,,,0.06704,,,,0.33279,3.9432,4.0374,0.90418,8.9337,1.5828,0.35812,2.3843,2.921,37.5752,12.9884,206.6841,3.5839,3.7159,1.575,1.9935,3.1846,6.6059,1.8017,3.4077,0.95012,5.7465,10.6925,14.5273,6.0729,2.0023,4.4682,1.5811,17.0255,4.618,3.63,0.83247,2.0912,7.0821,12.9806,2.3287,3.5347,3.5054,1.3937,1.2453,3.4679,8.6424,2.7828,2.1738,8.606,2.2401,1.9081,1.9542,10.3754,1.7164,3.0766,1.0156,12.3433,4.518,6.4613,4.1722,9.0243,6.4914,6.0299,7.3189,3.2606,1.3876,4.0008,,,,,,,,,,,,,,,,,,,306
+nG+MIL3T0MCI002,2.1427,2.4283,,-50y,,,,15.1615,5.2141,2.4238,2.3011,2.1398,edsd,,,M,,0.26814,4.7454,4.0245,0.55987,9.0312,1.5785,0.3253,3.5436,1.9965,45.2612,13.5961,198.8349,4.193,5.1005,1.0476,2.1427,2.9464,5.8754,1.8867,2.3865,0.859,6.1276,9.5231,21.7721,7.7994,2.5005,5.1096,1.6231,19.9726,6.4758,3.8828,1.1814,2.755,7.1554,12.6184,3.2409,4.1702,3.8409,1.5585,1.4642,4.5279,11.3595,2.4325,2.3517,10.9914,2.6184,2.4944,2.1437,11.8217,2.1044,3.1679,1.2438,14.3131,5.9672,9.4172,3.6288,11.0505,6.8181,6.9973,5.6543,4.3787,1.5044,4.2444,,,,0.08329,,,,0.29701,4.4036,4.2539,0.60887,9.9959,1.524,0.3378,2.9201,2.6031,46.0148,13.6647,210.0919,4.2568,4.4191,1.1403,1.9617,3.6944,6.4464,2.0589,2.7667,1.1529,6.8719,9.9738,20.4639,7.6609,1.8522,4.7473,1.883,19.209,5.4975,3.7157,0.7652,2.1727,8.4398,13.5111,3.0004,4.3109,3.7894,1.3389,1.4088,4.2202,10.4458,2.3207,2.4911,10.3956,2.4736,1.9909,2.0355,12.3735,1.9653,3.3698,1.1388,15.6048,6.077,8.2433,4.8821,10.6873,7.3794,6.0573,6.6344,3.5983,1.5479,4.1478,,,,,,,,,,,,,,,,,,,307
+nG+MIL3T0MCI003,1.9071,2.5673,,70-79y,Other,,,17.1029,4.3109,2.0325,2.2031,1.9752,edsd,MCI,,M,,0.30522,4.2377,4.2509,0.6567,7.8905,1.3152,0.3347,3.2637,1.7009,43.0986,15.6229,205.9744,3.7297,4.432,1.3124,1.8175,2.8959,6.5838,1.8473,2.6357,1.2494,5.3211,10.082,29.1534,7.6057,2.0571,4.2487,1.5372,17.8261,5.3886,3.6596,1.0072,2.2577,6.4791,11.9541,2.9748,4.0633,2.925,1.3506,1.5457,3.9562,11.102,2.6956,2.2649,10.0256,2.3261,2.3874,2.0492,10.3115,2.0179,3.0188,1.2261,13.8267,5.1194,8.5425,2.9346,9.9311,6.6077,6.7017,6.7462,3.5044,1.5102,4.5025,24,,MCI,0.07023,,,,0.31295,3.7277,3.8017,0.67514,10.2363,1.3882,0.32251,2.7145,2.3546,43.9453,15.2712,208.2842,3.7154,4.0939,1.4354,1.7724,3.2552,6.6455,1.9542,2.7995,1.0913,5.5449,9.9931,22.3523,7.3667,1.8215,4.0691,1.6467,17.4139,4.8004,3.2924,0.75182,1.9456,7.728,13.1951,2.639,3.8961,3.1616,1.2868,1.3988,3.6512,9.6104,2.6072,2.3076,7.7528,1.8433,1.8475,1.9774,11.267,1.5787,2.812,1.1177,13.492,5.0162,7.8577,3.573,9.4464,6.3466,5.9256,7.4184,3.1555,1.4436,4.3675,,,,,,,,,,,,,,,76,,,,308
+nG+MIL3T0MCI004,1.9094,1.9663,,60-69y,Other,,,20.527,5.4453,2.7923,2.5032,1.6919,edsd,MCI,,M,,0.34799,4.2172,4.2093,0.84055,7.1368,1.4082,0.36026,3.1002,2.0924,49.9543,19.3243,235.9845,3.9702,4.2788,1.4929,1.694,3.0773,6.5483,1.7568,3.0983,1.2124,5.1279,10.0939,23.9591,7.008,2.2874,4.64,1.5761,17.7432,5.1165,3.4528,1.2033,2.7867,5.8557,11.2738,3.1545,4.1283,3.1391,1.4247,1.7893,3.8852,9.8731,2.8781,2.4581,10.7917,2.2148,2.5135,2.2152,12.1998,1.7915,3.5625,1.1817,13.5356,5.1648,7.4959,2.9805,8.3378,6.271,7.6406,6.4808,3.8217,1.4197,5.3377,26,,MCI,0.08488,,,,0.36223,4.2674,3.9999,0.79687,8.6911,1.5645,0.36788,3.0739,3.0596,49.7075,19.6819,250.1019,3.4347,4.2835,1.4613,1.623,3.3062,7.0847,1.8791,3.3151,0.92808,5.8415,11.0946,16.9221,7.7672,2.062,4.7125,1.682,16.7945,5.0392,3.3833,1.1335,2.3574,7.2827,13.8578,2.6562,4.1829,2.9993,1.3383,1.7801,3.5838,9.4082,2.7607,2.408,8.8582,2.1804,2.0801,2.0681,11.9469,2.0784,3.4573,1.1381,13.5102,5.2431,7.4095,4.2413,9.4346,7.575,7.1824,7.1958,3.0453,1.3856,5.0986,,,,,,,,,,,,,,,68,,,,309
+nG+MIL3T0MCI005,2.442,2.2191,,-50y,,,,18.7455,4.5608,2.5866,2.1892,1.8908,edsd,,,M,,0.34666,4.7708,3.9845,0.69628,7.8979,1.3214,0.36072,3.191,2.2943,46.1168,15.5494,219.7046,3.6841,4.4523,1.3406,1.7537,3.1256,6.1208,1.9686,2.9132,1.3759,5.1164,9.4804,19.5786,6.5668,2.1293,4.851,1.7203,17.0849,4.7026,3.5284,0.97873,2.5926,6.4436,11.827,2.9205,3.5443,2.9264,1.3584,1.5154,3.9284,10.9225,3.0333,2.1169,9.1617,2.1053,2.1077,2.011,10.3439,1.8146,3.2508,1.3205,13.6217,5.1639,7.6459,2.8751,9.0228,6.8094,7.545,6.4523,3.2229,1.3771,4.873,,,,0.08744,,,,0.34701,4.588,3.6892,0.76392,8.6076,1.5504,0.36847,3.0446,2.7861,48.3411,15.7042,231.6549,3.6584,3.7201,1.5607,1.7152,3.2742,6.8115,2.0079,3.2147,1.3004,5.688,10.0357,16.5071,7.171,1.9673,4.6626,1.8028,16.9418,4.4035,3.3359,0.92397,2.1996,7.9915,12.7591,2.7573,3.8372,2.9123,1.3431,1.531,3.639,8.9853,2.8251,2.163,8.1216,1.9191,1.8586,1.9007,10.6978,1.7405,3.2613,1.2284,13.5233,5.4026,6.4417,3.4604,8.6539,6.6418,6.3466,6.8234,2.8685,1.4512,4.7781,,,,,,,,,,,,,,,,,,,310
+nG+MIL3T0MCI006,1.449,1.3377,,60-69y,Other,,,16.7018,4.9634,2.5014,2.1661,1.5677,edsd,MCI,,M,,0.29347,4.2297,3.6212,0.67758,8.0039,1.5009,0.30675,3.1399,2.1486,45.7319,15.4527,199.3898,3.3601,4.1909,1.3042,1.8526,2.9085,6.3426,1.6308,2.7243,0.91831,5.9437,10.182,21.1384,7.0594,2.307,4.5402,1.638,15.8765,5.2674,3.3948,1.1775,2.906,6.2888,12.9678,3.0265,3.9262,3.1812,1.4434,1.5608,3.9003,10.4343,2.5452,1.9424,9.6771,1.9729,2.4873,1.9267,11.4781,1.7127,2.8534,1.047,13.4957,5.415,7.703,3.325,10.7102,6.5229,6.8479,6.5154,3.7028,1.3215,4.4911,28,,MCI,0.0756,,,,0.2877,4.0428,3.2582,0.76374,10.0099,1.7195,0.3225,2.4683,2.5461,48.1833,15.7526,206.4091,3.5715,3.8955,1.5192,1.7421,3.5773,7.1156,1.9915,3.2037,0.70216,5.8472,11.1866,16.7882,7.354,1.9466,4.6073,1.8738,14.8858,4.4069,3.8306,0.70435,1.9498,7.5678,13.4024,2.4754,4.0735,3.2342,1.3089,1.6183,3.4634,8.8723,2.5263,1.9505,8.7033,1.8787,2.2277,1.7733,11.4878,1.7301,2.8397,1.0813,13.7673,4.8616,7.8072,4.0455,10.1158,7.0391,6.1882,7.2108,3.1968,1.3058,4.281,,,,,,,,,,,,,,,62,,,,311
+nG+MIL3T0MCI007,1.2149,1.6201,,70-79y,Other,,,16.3551,4.224,2.3144,2.0225,1.2754,edsd,MCI,,F,,0.31718,4.3097,3.7565,0.64816,9.422,1.4009,0.34569,2.7305,2.1484,38.9201,13.2666,206.1572,3.7683,4.0124,1.2884,1.7904,3.5652,5.6216,1.809,2.5093,0.48349,5.2871,9.1892,10.9836,6.0287,2.3092,4.3288,1.7354,17.4871,5.8124,3.5847,1.053,2.538,6.1771,12.6359,2.6487,3.6789,3.5236,1.4634,1.4105,4.1836,9.9817,2.5078,1.9863,10.4723,2.3668,2.5716,2.1139,11.8859,2.0038,3.2669,1.1578,12.8619,4.7393,8.2928,3.0755,8.7433,7.0353,7.1669,6.8305,3.3501,1.7159,4.3401,29,,MCI,0.07438,,,,0.31039,3.8254,3.4647,0.6762,9.2651,1.5584,0.31962,2.5212,2.5394,39.9028,13.1521,212.1597,3.7165,3.9019,1.2497,1.7828,3.457,6.2984,1.9463,2.7915,0.66316,5.202,10.1107,10.6502,6.8636,2.1097,4.2552,1.8014,16.2697,4.8068,3.3256,0.95289,2.2109,7.1681,13.1167,2.3382,3.6166,3.3483,1.4978,1.3764,3.6107,8.6625,2.4062,2.0144,9.4055,2.3646,2.0174,1.9123,11.8667,2.1303,3.1335,1.0539,13.2317,4.5863,7.9005,3.69,9.7767,7.6034,6.5442,7.1652,3.4369,1.5011,4.2293,,,,,,,,,,,,,,,72,,,,312
+nG+MIL3T0MCI008,1.1521,1.8093,,60-69y,Other,,,16.0576,4.3013,2.4001,2.2242,1.3068,edsd,MCI,,F,,0.35894,4.3563,3.9608,0.77704,9.3719,1.3671,0.32929,2.4914,1.9421,40.841,13.7043,233.4226,3.7199,3.9712,1.5807,1.8578,3.2678,6.2661,1.7546,3.0083,0.41167,5.1135,10.0806,12.7389,6.0849,2.0567,4.8286,1.6533,14.7604,5.5331,3.5123,1.0583,2.1956,5.8159,13.4044,2.8025,3.5655,3.5056,1.3204,1.6009,4.304,10.7365,2.9176,2.1987,10.1111,2.0631,2.3311,1.9493,9.8087,1.6085,3.3076,1.1339,10.6457,4.1201,8.2312,2.794,9.1618,7.0896,6.8994,7.8093,3.1706,1.1341,4.4716,27,,MCI,0.06574,,,,0.37667,4.3118,3.344,0.81053,8.7417,1.6328,0.35342,1.983,2.8062,42.7332,14.3392,234.1269,3.8336,3.2572,1.5833,1.5972,3.4214,6.5806,1.8887,3.0205,0.39685,5.3695,10.417,11.7418,5.989,1.9941,4.738,1.7652,15.7474,4.6476,3.5589,1.0147,1.9825,7.6315,13.4186,2.3489,3.3581,3.2383,1.3541,1.4966,3.7291,9.2007,2.4831,2.0682,9.9349,1.9101,1.8493,1.843,10.5486,1.7637,2.8927,1.0979,10.1465,4.607,7.9138,3.3701,8.9161,7.4092,6.423,7.9132,3.463,1.335,4.2944,,,,,,,,,,,,,,,68,,,,313
+nG+MIL3T0MCI009,1.6135,1.8949,,-50y,,,,16.6818,3.8513,2.4886,1.9878,1.3132,edsd,,,F,,0.35028,4.4857,3.9644,0.75558,7.9211,1.3855,0.32855,3.096,2.0786,44.741,14.4504,224.0169,3.9186,4.467,1.4735,1.9597,3.0588,6.5746,2.0295,2.8934,0.74344,5.0515,10.3083,15.393,6.8839,2.2472,5.0431,1.7297,16.9218,5.4662,3.7638,1.0909,2.4565,6.3241,12.7654,2.7921,3.6434,3.63,1.5771,1.576,3.9584,9.8817,2.9202,2.1786,10.0153,2.3113,2.6116,2.1754,11.5086,1.9915,3.3637,1.1421,14.4789,5.0469,8.7445,3.309,9.0897,7.1061,6.7046,7.0749,3.4365,1.5321,4.4876,,,,0.06774,,,,0.36347,4.2767,3.3092,0.80181,9.0344,1.5732,0.36107,2.7924,2.8349,44.2168,14.7531,232.1245,3.7906,4.2089,1.504,1.7649,3.6256,6.5852,2.0165,3.1135,0.74448,5.6631,10.0847,14.3365,6.9075,2.0669,4.7904,1.7694,17.6235,5.0264,3.4163,0.76103,2.0237,7.9019,14.3297,2.3517,3.6618,3.2124,1.4995,1.5581,3.5569,9.2661,2.8045,2.2215,9.3147,2.2135,2.1166,2.1426,12.3494,1.9502,3.1602,1.14,14.4769,5.2593,7.6135,3.7227,9.2904,7.5752,6.2401,7.0173,3.1462,1.7368,4.3426,,,,,,,,,,,,,,,,,,,314
+nG+MIL3T0MCI010,1.0706,1.4405,,-50y,,,,17.5712,4.3534,2.4018,2.1036,1.0958,edsd,,,F,,0.42053,4.2625,4.0179,0.77268,7.8968,1.4007,0.35463,2.5118,2.6672,36.1023,16.4259,253.9332,3.6665,3.8961,1.4352,1.8114,3.1806,6.6353,1.8537,2.8357,0.50891,4.7812,10.8721,12.2315,6.2403,2.153,4.427,1.6782,17.0065,4.831,3.7081,1.1718,2.4559,6.0505,13.8452,2.6117,3.5603,3.4084,1.4754,1.7676,4.1599,10.1186,2.7336,2.1949,10.4308,2.2491,2.5731,2.1863,11.5145,1.8485,3.3287,1.2036,13.8568,5.1331,7.9579,3.0307,8.8828,6.9543,7.862,7.629,3.3856,1.3651,4.8226,,,,0.08285,,,,0.38794,3.9571,3.8024,0.7548,7.9558,1.4738,0.36064,2.2066,2.8135,37.7172,17.5882,252.377,3.233,3.4552,1.4464,1.8267,3.492,6.491,2.0711,2.914,0.54171,5.263,9.8059,11.3418,5.8811,1.94,4.3943,1.8179,17.0132,3.884,3.579,0.89696,1.9606,7.2386,12.9889,2.2567,3.3377,2.99,1.225,1.7282,3.5506,8.6133,2.557,2.4339,8.6724,1.6189,1.9345,1.9529,11.9335,1.6103,3.3802,1.2661,14.0725,4.512,7.1461,3.3415,8.0848,6.7829,6.39,7.424,2.9139,1.2354,4.5527,,,,,,,,,,,,,,,,,,,315
+nG+MIL3T0MCI011,1.5784,1.597,,-50y,,,,17.5065,5.0546,2.6047,2.3387,1.7597,edsd,,,F,,0.39625,4.265,4.0673,0.6773,8.1467,1.456,0.36116,3.3367,3.1242,41.5348,13.7046,199.2788,4.2067,4.5886,1.2221,2.0387,3.0711,5.9755,1.948,2.8348,1.2597,5.5489,8.88,29.8965,6.7852,2.3252,4.8107,1.6371,17.9973,6.228,3.7655,1.1203,2.578,6.2941,11.984,3.1116,3.7021,3.7014,1.6476,1.4927,4.3411,10.6683,2.7096,2.2321,12.4842,2.5377,2.5171,2.1583,12.0531,1.9261,3.6003,1.2325,13.631,5.0196,8.8607,3.819,9.3483,6.9651,6.3167,6.3369,3.7415,1.4667,4.5935,,,,0.08553,,,,0.4011,3.8357,3.6279,0.80229,10.6817,1.8094,0.38798,2.6735,3.74,45.473,14.4054,206.3472,3.8625,3.8762,1.5559,1.8671,3.5937,6.8294,2.098,3.168,1.196,6.4204,10.3388,21.5357,6.9458,2.2001,4.5652,1.954,18.0466,5.3586,3.7041,0.9656,2.1075,7.6251,14.8903,2.4654,3.9121,3.0754,1.5607,1.4516,3.8706,9.8585,2.6944,2.3068,10.3534,2.0793,1.8117,1.9234,11.3502,2.03,3.5562,1.2749,13.069,4.9768,8.854,4.2459,11.0128,8.0376,5.8286,7.2258,3.5295,1.4195,4.4146,,,,,,,,,,,,,,,,,,,316
+nG+MIL3T0MCI012,1.9176,1.6033,,60-69y,Other,,,18.9345,4.6514,2.4651,2.1973,1.4449,edsd,MCI,,M,,0.3701,5.0519,4.6529,0.84092,9.2428,1.6258,0.39667,3.4438,2.1727,44.7,15.6548,237.8328,3.9784,4.277,1.5372,2.3372,3.4622,7.4547,2.4041,2.7706,0.76939,5.9025,12.53,16.5571,7.5524,2.3079,5.2762,1.9712,18.6945,6.2788,4.5134,1.4141,3.3245,7.4477,13.855,2.9439,4.2319,3.7312,1.5915,1.7088,4.6272,11.594,2.9739,2.3505,12.4431,2.6756,2.5953,2.2462,11.6069,2.1297,3.4341,1.3699,14.8177,6.2345,10.3583,3.2117,9.5776,7.3212,8.1874,7.7448,4.6504,1.5694,5.1015,29,,MCI,0.07553,,,,0.38384,4.6665,4.0464,0.86696,10.8969,1.778,0.39108,2.6886,2.7477,46.848,16.3894,244.1906,3.7151,4.5377,1.6107,2.0204,3.8044,8.1498,2.37,3.2742,1.2486,6.2916,12.7153,14.077,7.2984,2.0001,5.296,1.9521,18.3983,5.3062,4.1225,0.95669,2.2975,8.299,14.1925,2.4179,4.3247,3.5208,1.4431,1.6818,3.7538,9.9488,2.9268,2.3587,11.2913,1.9819,1.967,2.0106,12.5541,1.6364,3.4765,1.2262,15.1168,5.3727,8.7147,4.7405,10.2127,7.4072,7.1314,8.2958,4.039,1.3371,5.0371,,,,,,,,,,,,,,,62,,,,317
+nG+MIL3T0MCI013,1.1082,1.4415,,60-69y,Other,,,15.5579,4.0235,2.1701,1.8414,1.0778,edsd,MCI,,F,,0.34514,4.2505,3.7508,0.62016,8.8677,1.5155,0.3402,2.7747,2.1983,40.656,12.9644,188.5754,3.7099,4.2084,1.3032,1.9445,3.1623,6.0792,2.0001,2.577,0.49987,5.7585,9.865,11.4231,6.2959,2.3684,5.0252,1.6534,17.3935,5.7948,3.8671,1.1569,2.8489,6.4019,13.6704,2.9248,3.8581,3.6936,1.4598,1.312,4.516,10.5648,2.6026,2.0161,10.5565,2.0482,2.432,1.9437,11.759,1.9443,3.003,1.1983,13.4651,5.3888,8.8088,3.3862,9.1892,6.7935,6.3529,6.6556,3.7906,1.4303,4.1851,27,,MCI,0.07726,,,,0.338,3.6592,3.3155,0.75465,10.0629,1.8041,0.35036,2.3796,2.4974,42.2721,13.5126,199.6805,3.5194,3.8567,1.6323,1.8362,3.7118,6.8976,1.9771,2.9427,0.60093,5.7385,11.1388,10.2828,6.5732,2.1805,4.5201,1.8138,17.4694,4.4187,3.5735,1.1256,2.4941,7.7055,14.774,2.3112,3.9695,3.473,1.5133,1.3158,3.9743,9.8678,2.6928,2.144,9.768,1.9255,2.0391,1.9546,11.0238,1.6975,3.1242,1.1027,14.7744,5.0161,7.3116,3.5958,9.4279,7.3424,5.6208,7.8795,3.7177,1.3665,4.074,,,,,,,,,,,,,,,63,,,,318
+nG+MIL3T0MCI014,1.535,1.7228,,-50y,,,,23.3658,4.8712,2.8273,2.452,1.2541,edsd,,,M,,0.29998,4.1991,3.9609,0.72214,7.5833,1.2591,0.34336,3.0567,2.0219,51.1016,19.9391,240.4482,3.4475,4.3597,1.316,1.8822,2.5302,6.5742,1.8091,3.135,1.1214,5.0406,9.8194,8.6635,7.1178,2.1521,4.3332,1.5853,14.8729,5.0336,3.3416,0.73349,1.843,5.6612,12.8625,3.029,4.0298,2.9105,1.4606,1.7181,4.2617,10.7271,2.8032,2.1061,9.3536,2.1576,2.5272,2.1272,9.0831,1.7456,2.7149,1.2038,11.143,4.2436,7.7732,2.9176,9.6116,6.4992,7.2718,6.5208,3.1545,1.4946,5.3393,,,,0.07497,,,,0.30712,3.9057,3.637,0.71488,8.4879,1.3613,0.33996,2.2395,2.1408,53.3227,20.1528,249.6425,3.4186,3.5655,1.407,1.5911,3.1885,6.6888,1.8516,3.163,0.66079,5.3644,10.8862,8.2404,6.5453,1.73,4.1491,1.8007,15.2511,3.9653,3.5051,0.8214,1.7049,7.1482,12.7445,2.3718,4.0499,2.3161,1.2154,1.5444,3.4587,9.0214,2.516,2.1701,9.0473,1.9259,1.932,1.809,9.7805,1.6205,3.1365,1.1644,11.4221,3.9591,6.5489,3.8231,9.9673,6.2515,5.9457,6.7739,3.018,1.4022,4.9079,,,,,,,,,,,,,,,,,,,319
+nG+MIL3T0MCI015,1.2064,1.8021,,70-79y,Other,,,19.1316,4.3138,2.3728,2.1741,1.1243,edsd,MCI,,F,,0.3531,4.5091,3.7082,0.7718,7.9547,1.3986,0.33463,2.6185,2.1533,45.9615,15.6508,223.5984,3.7674,4.2687,1.5263,2.0475,3.0894,6.5485,1.9565,2.7564,0.48694,5.0644,9.9019,12.7246,6.6889,2.2887,4.5033,1.7294,18.0381,5.2764,3.5669,1.1835,2.798,6.1601,12.3393,2.7173,3.6074,3.3721,1.4805,1.6013,3.9026,9.3387,2.7702,1.9738,9.5345,2.0319,2.2222,1.8964,12.7244,1.635,2.8304,1.1289,11.6385,5.3437,7.5909,2.7745,8.3007,6.9282,7.2052,7.4258,3.8071,1.3564,4.8012,27,,MCI,0.07026,,,,0.34773,3.987,3.4372,0.7972,9.6587,1.6609,0.32724,2.197,2.8534,47.8802,16.3949,233.9477,3.7112,3.7056,1.5594,1.721,3.3523,6.9781,2.078,2.9714,0.61565,5.9901,11.2782,11.6728,6.4405,2.0261,4.491,1.7598,17.2272,4.582,3.5211,0.76618,2.4657,7.6448,13.7493,2.1297,3.6682,3.2227,1.3761,1.4988,3.5588,9.2515,2.5917,2.1612,7.6447,2.0394,1.7636,2.0475,11.0944,1.8222,2.8402,1.0787,12.557,4.954,6.8314,3.7965,9.7064,7.2331,6.6309,8.0762,3.1503,1.527,4.5176,,,,,,,,,,,,,,,76,,,,320
+nG+MIL3T0MCI016,1.7099,1.6168,,-50y,,,,15.5862,3.7736,2.0809,1.9834,1.8418,edsd,,,M,,0.36529,3.972,4.0682,0.66216,8.1956,1.3434,0.36046,2.7791,2.4052,41.5782,14.4498,201.0733,3.5037,4.2088,1.2692,1.9246,2.8694,6.2422,1.7495,2.5646,0.96842,5.3497,9.4202,16.1252,6.4052,2.2305,3.9488,1.4828,15.5124,5.1305,3.4512,0.99356,2.5555,5.5905,11.8768,2.7227,3.9653,2.937,1.5133,1.5513,3.8622,9.6145,2.5536,2.0964,9.4049,1.7409,2.4534,1.8767,10.6964,1.6524,3.5891,1.1133,11.7939,4.794,8.3502,3.1751,8.9179,6.8627,6.3151,6.2351,3.3725,1.1573,4.2973,,,,0.0684,,,,0.36092,3.9291,3.8771,0.60319,9.1247,1.4162,0.36231,2.5444,2.8072,40.8386,13.8782,210.0165,3.3731,3.7092,1.2108,2.0376,3.0341,6.1642,1.8231,2.7748,1.0422,5.6908,9.708,15.5524,6.6445,1.8575,4.3325,1.5862,15.5254,5.1316,3.1633,0.87777,2.0665,6.9133,13.1651,2.394,3.4384,3.341,1.4013,1.5107,3.6269,8.3795,2.2952,2.1889,9.2024,1.5756,1.8155,1.9643,10.105,1.577,3.4311,1.0548,12.1472,4.4572,6.609,3.8011,9.7912,6.5347,5.5724,6.7954,3.5397,1.3401,4.1675,,,,,,,,,,,,,,,,,,,321
+nG+MIL3T0MCI017,1.7274,2.3245,,-50y,,,,20.5604,5.0087,2.275,2.2048,1.5282,edsd,,,M,,0.35447,5.1379,5.4519,0.82202,9.3894,1.6915,0.40662,3.0629,2.5628,41.2664,16.3152,242.4689,4.172,4.4845,1.5848,2.2851,3.0808,7.494,2.1218,3.2316,0.63498,6.1079,11.4929,15.2159,7.775,2.7886,5.5488,1.9423,19.1789,5.9314,4.3401,2.0477,4.3093,7.6082,14.1545,3.391,4.3338,3.2799,1.7543,1.7203,5.0554,12.2321,3.2771,3.0611,12.8651,2.6107,2.9716,2.7685,12.5137,2.2289,3.7922,1.4734,14.708,6.51,8.8502,3.1072,11.59,7.7407,8.0247,8.196,4.1063,1.6145,5.0079,,,,0.10157,,,,0.38218,4.5569,4.925,0.91267,10.7424,1.8993,0.40543,2.4736,2.8916,41.2298,17.0926,254.1394,4.2689,3.596,1.7571,2.2031,3.7726,7.7176,2.2933,3.598,0.62802,7.429,13.2069,11.9006,7.5873,2.356,5.506,2.1361,19.315,5.6932,4.2496,1.1132,2.7597,10.1498,16.6489,2.4932,4.5205,3.143,1.6892,1.7259,4.2871,10.3028,3.1579,3.0879,10.9437,2.5655,2.3994,2.5662,12.7377,2.0333,3.7198,1.3666,16.2564,6.7023,8.2785,4.0832,11.4824,8.049,6.8297,8.8573,3.6312,1.7211,4.8935,,,,,,,,,,,,,,,,,,,322
+nG+MIL3T0MCI019,0.97219,2.0565,,60-69y,Other,,,15.8768,3.8657,2.4582,2.1246,1.2455,edsd,MCI,,F,,0.37405,4.6941,3.9462,0.77244,8.3233,1.5717,0.37365,3.1124,2.3536,44.3359,12.7122,190.1632,4.1142,4.4412,1.5962,1.9265,3.1181,6.9337,2.0985,2.8656,0.35424,5.9617,10.8522,13.301,7.2373,2.5188,4.7272,1.8063,17.2931,5.555,3.8787,1.0611,2.5861,6.5001,13.4861,2.8797,4.2739,3.5708,1.5862,1.4068,4.0902,9.983,3.0504,2.1742,11.0064,2.2416,2.5758,1.9869,12.5071,1.7894,3.2971,1.2233,12.9226,4.9899,8.4213,3.433,9.0157,7.0953,6.7574,7.624,3.7579,1.3868,4.3687,27,,MCI,0.07815,,,,0.3747,4.4824,3.6757,0.7373,9.467,1.6139,0.38035,2.8737,2.8101,45.4569,12.3822,199.8175,4.0855,4.2472,1.4203,1.9177,3.3057,7.337,1.9123,2.9519,0.45856,6.4091,10.9587,12.1702,6.8966,2.0355,4.8213,1.8392,16.202,5.1868,3.7851,0.95164,2.1619,8.0783,13.2057,2.6801,4.1772,3.53,1.4431,1.327,3.5604,9.6636,2.5914,2.1848,10.5304,2.1452,2.0841,1.8509,12.4595,1.853,3.2405,1.2483,13.268,5.5426,8.0328,4.6808,10.0134,6.7367,6.3268,7.36,3.365,1.4169,4.1014,,,,,,,,,,,,,,,60,,,,323
+nG+MUN3T0AD001,2.3607,2.3369,,50-59y,AD,,,27.2308,5.4942,3.2649,2.6867,2.1323,edsd,AD,,M,,0.4622,6.5349,5.01,0.97834,12.0496,1.6984,0.41998,3.979,3.6894,55.6083,22.1671,312.4062,4.9235,5.7109,1.6975,2.5455,4.4791,7.8056,2.6145,4.0127,2.4539,7.3117,11.3764,38.1718,8.522,2.6506,6.12,2.5162,24.7661,7.2066,4.5409,1.544,3.2783,9.8321,14.1533,4.0731,4.7654,4.1904,1.9266,2.3875,5.6503,13.4261,3.7096,2.7942,14.025,3.2184,2.9114,2.8303,16.6237,2.7172,4.2137,1.5941,17.4955,6.754,10.6176,4.5727,15.6076,8.5607,9.7296,7.7869,4.8501,1.7715,6.8376,26,,AD,0.09633,,,,0.44332,5.5549,4.8522,1.0559,13.0456,2.2207,0.44196,4.7937,3.856,55.3105,21.5412,334.9526,5.1061,6.1535,1.9382,2.518,4.7109,9.1878,2.5943,4.2465,0.9969,8.7332,13.026,32.8686,10.1894,2.8399,5.6031,2.4392,25.3498,7.0774,4.3394,1.5652,3.3007,11.2819,16.2557,4.4348,5.2637,4.8534,1.8616,2.4612,5.1537,12.8597,3.4245,2.9142,12.5766,2.9821,2.6851,2.7202,15.096,2.3105,4.4662,1.5733,18.4689,7.2336,10.7075,5.9885,15.7637,8.8438,9.902,8.5532,4.9804,1.9364,6.6725,,,,,,,,,,,,,,,58,,,,324
+nG+MUN3T0AD002,1.7403,1.7113,,70-79y,AD,,,17.5146,4.6779,2.6882,2.1841,1.6773,edsd,AD,,F,,0.35366,4.1858,4.0424,0.66215,8.0827,1.4123,0.33652,2.8047,2.8728,42.8051,14.6336,196.9209,3.9901,3.8139,1.3199,1.7424,3.3483,6.3928,1.8516,2.5491,0.70622,5.5544,9.5955,24.6531,7.0945,2.0886,4.9393,1.6404,15.9371,5.1587,3.5433,1.1881,2.5673,6.2902,12.0173,2.8001,3.8561,3.014,1.2362,1.4702,4.0563,9.6885,2.8985,2.2624,11.9843,2.4738,2.1201,2.0971,13.7862,2.002,3.7764,1.0952,12.375,4.7191,8.151,3.2493,10.4569,6.5127,6.208,6.3148,3.0403,1.4164,4.532,26,,AD,0.07515,,,,0.30141,3.8395,3.7381,0.64983,8.201,1.5756,0.32475,2.8653,2.6305,42.1882,14.3679,198.5983,3.755,4.2131,1.3862,1.6704,3.1878,6.8917,1.7872,2.6675,0.85013,5.566,10.126,22.3641,7.4049,2.0103,4.5899,1.5491,16.507,4.2348,3.3546,1.2496,2.5616,6.4777,11.8607,2.5604,3.6893,2.9379,1.3287,1.3945,3.5686,9.1509,2.7432,2.2046,10.741,2.3098,2.1843,1.9023,12.754,1.7599,3.3525,1.0284,12.6986,5.0396,6.9574,4.0615,9.9738,6.3706,5.8988,6.6676,3.1249,1.3872,4.2355,,,,,,,,,,,,,,,77,,,,325
+nG+MUN3T0AD003,1.3485,1.1638,,+80y,AD,,,17.2983,4.3435,2.2858,1.9664,1.3829,edsd,AD,,F,,0.30387,3.9117,3.9147,0.63558,6.6607,1.2167,0.30035,3.0446,2.4984,39.0627,14.6249,172.1287,3.5531,4.0744,1.1777,1.9105,3.0591,5.4036,1.7103,2.4116,0.55943,4.9021,8.0032,14.8694,6.2589,1.9252,4.2817,1.5096,15.4965,4.3309,3.2347,0.95118,2.3338,6.1076,9.5015,2.9729,3.3711,3.0269,1.3123,1.453,3.793,9.5354,2.5224,1.9375,9.53,2.0229,2.0945,1.756,11.27,1.8821,2.8923,1.016,12.446,4.8076,6.9817,2.776,9.1891,5.2606,6.0814,5.6944,3.6222,1.4067,4.3006,25,,AD,0.08356,,,,0.28869,3.5433,3.5469,0.64534,7.8428,1.4189,0.3005,2.9378,2.8044,38.9068,13.9224,175.0226,3.5572,4.1145,1.1853,1.7486,3.3157,5.5942,1.768,2.6058,0.60897,5.2713,8.7021,13.8722,6.7317,1.8814,4.1144,1.5144,16.7875,4.035,3.1534,0.99077,2.374,6.977,10.8521,2.8068,3.4664,3.0089,1.3248,1.4979,3.4814,8.969,2.3406,1.9146,8.5765,1.6644,1.9221,1.7391,11.113,1.4817,2.9419,0.98828,13.6378,5.1372,6.1485,3.6579,9.2156,5.7197,5.8237,6.3608,3.2322,1.2354,4.1289,,,,,,,,,,,,,,,80,,,,326
+nG+MUN3T0AD004,2.5509,3.1783,,70-79y,AD,,,14.4951,4.3839,2.1249,2.0122,2.2484,edsd,AD,,M,,0.16158,3.252,4.6196,0.69515,10.6107,0.55737,0.31657,2.787,2.9339,39.5261,11.7876,145.7123,3.8715,3.9813,1.3338,1.4748,2.43,6.8021,1.0331,2.5777,1.0578,6.7709,10.1888,29.5189,7.3139,0.951,4.5013,0.94623,14.3944,6.9844,1.6839,1.2691,3.7953,5.6793,12.3503,3.4526,4.3142,2.557,0.65244,0.8757,4.526,11.4987,3.0711,2.6624,11.0579,2.535,1.181,2.3669,11.0202,2.1913,2.3521,1.0299,11.1137,6.2755,9.1424,3.6493,11.8303,6.8819,6.2727,5.9852,2.2786,1.6592,3.79,20,,AD,0.09289,,,,0.14032,3.2007,4.8436,0.83391,12.0358,1.047,0.43776,3.0485,2.8878,40.4081,11.6514,149.5422,3.9589,4.7709,1.5823,1.9017,2.924,6.9071,1.4529,2.8367,1.2454,7.213,11.0169,23.2901,7.8148,1.4676,4.7066,1.1024,14.918,6.0283,2.2148,1.5299,4.0337,6.2585,13.3795,3.2217,4.263,3.0302,1.0437,0.81757,3.8863,12.2159,2.8493,2.8884,9.4889,2.2439,1.9272,2.2133,10.6094,1.9195,2.1838,1.0751,11.7757,6.0736,7.6025,4.7024,13.3127,6.5753,5.4218,7.8558,2.623,1.7894,3.6709,,,,,,,,,,,,,,,70,,,,327
+nG+MUN3T0AD005,1.7758,1.7712,,70-79y,AD,,,18.505,4.467,2.2459,1.8435,1.5588,edsd,AD,,M,,0.35956,4.6505,4.4849,0.68479,8.3746,1.3469,0.32726,2.6865,2.7294,40.8983,14.5162,195.7271,3.7122,3.7368,1.2574,1.8984,3.4748,5.9511,1.9973,2.4692,1.0025,5.5447,9.5036,20.6888,6.6783,2.0598,4.3582,1.7204,16.9349,5.4697,3.6399,1.1666,2.7089,6.6186,12.4403,2.9441,3.6656,3.2033,1.4158,1.6284,3.8782,9.6318,2.727,2.3877,9.9287,2.3918,2.3991,2.1555,11.706,2.0798,3.5565,1.2657,13.206,5.095,7.5507,2.9178,9.7158,6.89,6.2886,6.634,3.407,1.4603,4.6758,22,,AD,0.07994,,,,0.32501,4.4763,4.0829,0.74253,8.3732,1.3769,0.35866,2.8047,2.8108,40.8155,14.3121,197.3373,3.6359,4.4069,1.3864,1.7701,3.4684,6.309,1.8146,2.6323,1.2937,5.988,10.2109,16.2377,7.1017,1.9553,4.4777,1.6823,15.7002,4.6104,3.0614,0.99442,2.4975,7.142,12.5677,2.3724,3.6369,2.9756,1.4759,1.5904,3.3984,9.9978,2.606,2.5101,8.6214,2.2195,2.1781,2.2047,11.7262,1.8068,3.4732,1.2024,13.8201,4.8984,7.0237,3.6213,8.7725,6.545,6.0289,6.8308,3.224,1.5356,4.4218,,,,,,,,,,,,,,,76,,,,328
+nG+MUN3T0AD006,2.5114,3.3687,,70-79y,AD,,,18.139,4.7097,2.4648,2.055,1.9764,edsd,AD,,M,,0.37589,4.3693,4.186,0.73047,8.7637,1.5396,0.35576,3.0912,2.8187,44.0634,14.2091,219.696,4.0233,4.7963,1.4822,1.7496,3.4006,7.1654,1.8517,2.6057,1.3042,6.2486,10.7645,35.5783,7.7304,2.3851,4.7563,1.6249,20.9488,5.9567,3.6104,1.2399,2.5166,6.5849,12.9455,3.3899,4.3582,2.6187,1.4155,1.5819,4.3083,11.5531,3.0296,2.4427,12.4304,2.6695,2.411,2.2384,13.4819,2.0163,3.5827,1.1701,15.5468,5.2693,9.5454,3.5477,11.5462,7.301,6.7055,6.8363,3.42,1.5846,4.7728,21,,AD,0.07485,,,,0.35414,3.8215,3.7816,0.7271,10.6755,1.7491,0.34401,3.1602,2.9574,44.8174,13.8416,218.897,4.0336,5.0257,1.3582,1.9924,3.5985,7.1137,1.8851,3.175,1.322,6.4169,10.7304,25.0894,8.2793,2.1918,4.1804,1.7,20.6697,5.1333,3.5876,0.90043,2.2057,7.3912,13.305,2.7967,4.3302,4.1054,1.4701,1.646,4.1216,11.5403,2.7692,2.2964,10.9935,2.2259,2.2182,2.0722,12.8515,1.7216,3.4259,1.1433,14.3383,5.3986,8.3652,4.5115,11.7083,7.1461,6.6898,7.1222,3.6095,1.5081,4.5769,,,,,,,,,,,,,,,73,,,,329
+nG+MUN3T0AD007,1.4798,1.794,,+80y,AD,,,15.1807,4.1593,2.2,2.0658,1.4373,edsd,AD,,F,,0.34264,4.3576,3.5366,0.58904,8.764,1.2758,0.32023,2.4884,2.4888,39.7366,12.1776,166.9242,3.62,3.5058,1.1912,1.6726,3.0897,6.0492,1.7789,2.3964,0.55524,5.038,9.7265,15.4314,6.5562,1.9304,4.4466,1.4819,17.3223,5.9041,3.5075,1.1074,2.5883,6.4198,11.8429,2.5463,3.5636,3.3111,1.3043,1.2125,3.8951,10.4289,2.5782,2.0805,10.202,1.9805,2.1719,1.9919,11.7657,1.5262,3.1931,1.0938,12.3486,5.257,8.3409,3.011,9.2063,5.4892,5.5218,5.9561,3.3739,1.2057,3.9084,19,,AD,0.07215,,,,0.28281,4.0819,3.5208,0.60264,8.3049,1.3454,0.3141,2.4015,2.4987,40.7914,12.2193,168.1404,3.8943,3.6266,1.1913,1.7567,3.1411,6.2469,1.7422,2.5179,0.73919,5.6885,10.071,12.5833,6.4032,1.7635,4.7499,1.4585,16.966,4.3617,3.2557,1.0125,2.4179,7.1016,11.7043,2.2467,3.6186,3.2696,1.2926,1.2751,3.5651,10.0103,2.4985,2.3245,10.1569,2.16,1.94,1.9951,12.1767,1.5956,3.0061,1.0845,12.6128,5.2666,6.7678,3.3676,9.3173,5.5752,5.3608,6.6331,2.8976,1.3985,3.7435,,,,,,,,,,,,,,,80,,,,330
+nG+MUN3T0AD008,1.772,2.1243,,+80y,AD,,,15.6667,3.6351,2.2508,1.7779,2.1647,edsd,AD,,F,,0.31392,4.0696,3.8433,0.71856,8.5595,1.2075,0.31619,2.6499,2.3055,34.3648,11.4985,173.5885,3.7782,3.7213,1.4147,1.6707,2.9635,5.6597,1.6654,2.6953,0.91579,5.5242,9.1482,21.5607,5.6824,1.9626,4.1336,1.4116,15.7892,4.8218,3.3071,0.96627,1.9728,5.7379,12.0321,2.7584,3.5851,2.7489,1.3048,1.3738,3.8109,9.4283,2.9639,2.2756,10.4034,1.8554,2.1196,2.0408,10.3,1.6726,3.0356,1.1152,11.7932,4.3894,8.3262,2.7419,7.6618,6.7168,5.913,6.3378,3.0846,1.1986,4.3272,22,,AD,0.06736,,,,0.28306,3.68,3.5228,0.73639,9.7382,1.4566,0.32673,2.8002,2.2641,33.9342,11.0862,177.4279,3.5759,3.525,1.4506,1.6736,3.1789,6.0432,1.681,2.8773,1.1098,5.9336,9.7939,21.9998,6.4929,1.8869,3.7239,1.4608,14.9787,4.5528,3.3358,0.86716,2.0355,6.7294,12.5191,2.4574,3.576,3.0443,1.314,1.376,3.5868,8.9276,2.7143,2.2098,9.0554,1.963,2.0583,1.8763,10.1462,1.5565,3.0868,1.0546,11.6557,4.5608,6.6323,3.2195,9.5553,6.2705,5.6714,6.8311,2.9019,1.3435,4.0902,,,,,,,,,,,,,,,87,,,,331
+nG+MUN3T0AD009,1.7983,1.3881,,+80y,AD,,,18.2149,4.1502,2.6726,2.1837,1.3463,edsd,AD,,F,,0.33917,4.0873,4.1797,0.71968,8.8907,1.3301,0.35406,2.8563,2.3539,41.9972,14.5835,187.3303,4.1184,4.0345,1.4601,1.9725,3.1771,6.3199,2.0598,2.7905,0.41764,6.1879,9.7188,9.6053,6.5016,2.2163,4.4931,1.6189,17.3982,6.0522,3.7084,1.1753,2.6843,6.2481,13.1739,3.167,3.9801,2.9979,1.6119,1.4572,4.0782,9.8741,2.8938,2.0948,11.6623,1.989,2.5251,2.0328,10.9786,1.6304,3.0698,1.2452,13.7731,4.9639,8.2916,3.1763,11.4525,6.5548,6.8207,6.7432,3.7528,1.3308,4.6347,24,,AD,0.08208,,,,0.32574,3.6934,3.7611,0.72158,10.3634,1.5942,0.3607,3.0608,2.4642,41.9996,14.1985,186.1146,3.2401,4.3882,1.4482,1.7941,3.4709,6.211,1.9403,2.9777,0.6177,6.3048,10.015,9.7001,7.1123,2.2187,4.408,1.6135,17.0713,5.0897,3.6443,1.1711,2.687,6.9543,13.0283,2.9139,4.0136,3.1402,1.5704,1.4111,3.7788,9.9597,2.728,1.9812,9.6857,1.7216,2.3685,1.8673,10.0057,1.5451,3.0689,1.218,13.5541,4.8429,7.5562,4.5245,10.3299,6.5134,6.4173,7.2374,3.3876,1.2186,4.4367,,,,,,,,,,,,,,,81,,,,332
+nG+MUN3T0AD010,2.1077,1.9478,,70-79y,AD,,,17.6402,4.7689,2.5756,2.193,1.8617,edsd,AD,,M,,0.40137,4.9046,5.0995,0.89547,9.6772,1.7774,0.37188,3.9468,3.0351,47.8707,14.203,238.2906,4.6371,5.4991,1.7241,2.3582,4.2636,8.1068,2.2793,2.7078,1.0311,6.8535,12.2691,24.4308,8.3164,2.7675,5.0952,2.0161,21.4624,6.4988,4.2011,1.2882,2.8643,8.0067,14.3792,3.8486,4.7529,3.4065,1.7989,1.6234,4.6666,12.1313,3.2579,2.7492,13.0106,2.6669,2.6944,2.7221,14.7498,2.1372,3.471,1.2201,17.4915,6.0863,9.3675,4.1038,12.2536,7.5582,7.1998,8.0069,4.4729,1.9359,4.7162,25,,AD,0.08385,,,,0.37516,4.3437,4.7863,0.91709,10.4147,2.1278,0.40375,3.8735,3.2081,47.187,13.857,245.3837,4.4146,5.9236,1.7979,2.3205,4.9292,8.2273,2.3498,3.3372,0.6937,7.9524,12.4447,21.8773,8.8864,2.6913,4.6992,2.0461,20.9149,6.2744,4.2891,1.1856,2.8339,9.1432,14.432,3.549,4.8557,4.2277,1.7793,1.7454,4.4305,12.5872,3.188,2.7094,11.533,2.53,2.4985,2.347,14.0489,2.0353,3.5084,1.3218,16.4806,6.4748,8.3689,4.9498,12.1298,7.2645,7.2992,7.7759,4.1973,1.6655,4.5718,,,,,,,,,,,,,,,78,,,,333
+nG+MUN3T0AD011,2.7779,2.6248,,70-79y,AD,,,16.6371,4.0492,2.2823,1.9304,2.0844,edsd,AD,,M,,0.35678,4.1868,4.1145,0.79027,8.6328,1.2772,0.35653,2.8522,2.4307,40.3972,13.0176,183.289,3.7547,3.7602,1.4146,1.8528,2.9913,5.9975,1.951,3.2782,2.2971,5.6719,9.3594,32.9243,6.1563,2.0551,3.9922,1.4705,17.6986,5.1595,3.7779,1.2518,2.8575,6.6575,12.1057,2.8772,3.5905,2.8882,1.3122,1.4856,3.8742,9.2696,2.9555,2.2212,10.8398,2.0582,2.2422,2.0482,11.9053,1.7204,3.5651,1.1941,13.237,5.2827,7.9461,2.8738,9.1609,6.3478,6.9259,6.2387,3.5983,1.5317,4.6769,17,,AD,0.0742,,,,0.31503,3.4711,4.1658,0.77548,7.9973,1.5459,0.34565,3.036,2.7039,40.1162,12.5805,180.3954,3.611,3.8916,1.412,1.9209,3.3008,5.6104,1.891,3.6133,3.9041,4.785,9.3244,31.295,6.5107,2.084,4.1371,1.5356,16.1707,4.1649,3.4381,0.99248,2.4732,7.5529,12.0255,2.4842,3.0665,3.0679,1.4382,1.527,3.5351,8.9106,2.5893,2.1883,9.4006,2.1353,2.1786,1.8592,11.4599,1.8444,3.5016,1.0962,13.0855,5.2316,6.5474,3.329,9.6322,6.3966,6.6626,6.6229,3.3741,1.2979,4.4644,,,,,,,,,,,,,,,76,,,,334
+nG+MUN3T0AD012,2.1555,1.7023,,70-79y,AD,,,19.6895,4.8108,3.0262,2.363,1.651,edsd,AD,,M,,0.30065,4.1264,3.7471,0.69934,10.7998,1.3186,0.33893,2.8396,2.4451,48.7275,16.5436,222.6818,3.9212,4.671,1.3693,1.8648,2.9085,7.0153,1.679,2.9702,0.7613,6.2704,10.2401,18.7512,7.4887,2.1449,4.3943,1.4467,16.5498,6.9096,3.5958,1.1109,2.7991,6.4365,12.4801,3.3357,4.6831,3.3294,1.4549,1.6443,4.5149,11.2111,2.9679,2.17,11.1987,2.5132,2.2588,2.1117,11.781,2.2746,3.2132,1.1358,13.7535,5.2185,9.7432,3.38,11.7028,7.1991,7.3428,6.3555,3.7077,1.6046,5.0816,25,,AD,0.08231,,,,0.3163,3.4889,4.075,0.77299,9.8747,1.5789,0.35224,2.9264,2.5827,47.3816,16.0443,227.2499,4.2545,4.4695,1.5323,2.0242,3.2281,8.1193,1.7869,3.3957,0.62177,6.8332,11.8785,16.3604,7.7729,2.2026,4.1511,1.4764,16.4094,4.9397,3.7264,1.1378,2.3481,7.6551,13.8965,3.0269,4.5165,3.4145,1.589,1.627,4.301,11.0041,2.9357,2.3662,11.4327,2.2163,2.2393,2.2267,12.5267,1.9912,3.4519,1.1365,15.6352,5.3443,8.4684,4.1368,11.1686,7.7406,7.4154,7.0684,3.7483,1.5409,4.8366,,,,,,,,,,,,,,,75,,,,335
+nG+MUN3T0AD013,1.6874,1.8097,,+80y,AD,,,14.8758,3.9879,2.2808,1.8288,1.4675,edsd,AD,,F,,0.32243,3.9528,3.7654,0.73343,8.7709,1.2993,0.33161,2.267,2.4183,39.5488,12.9421,168.5586,3.2958,3.4858,1.4496,1.6397,3.1579,6.3596,1.6933,2.6672,0.72958,6.0413,10.0256,22.448,6.0353,2.1329,3.8452,1.4695,16.6851,6.8442,3.3897,1.0455,2.3519,5.9198,13.4424,2.97,3.6264,3.0791,1.403,1.3074,3.5833,9.0424,2.7421,2.0525,10.5983,1.7434,2.2778,1.9111,11.9228,1.3734,3.1938,1.1623,12.2939,4.6411,7.6319,3.3626,9.8716,6.8159,5.863,6.5658,3.2984,1.1524,3.9915,19,,AD,0.06777,,,,0.2853,3.6258,3.5405,0.74065,9.6351,1.4896,0.33122,2.4154,2.2721,39.8187,12.3447,169.9447,3.44,3.8648,1.4345,1.8105,3.0727,6.8854,1.7143,3.0275,0.77148,5.9253,10.5636,17.332,6.6091,1.8806,4.0204,1.4585,16.1205,4.739,3.3425,0.89149,2.4117,6.1655,13.5206,2.515,3.733,3.3586,1.2826,1.3494,3.3725,9.0836,2.7302,1.9405,9.4373,1.7456,1.9867,1.6813,11.4526,1.4643,3.0293,1.1388,12.579,4.5279,8.0882,3.7049,10.3689,6.6136,5.8808,6.6282,3.1447,1.2155,3.8112,,,,,,,,,,,,,,,80,,,,336
+nG+MUN3T0AD014,2.1836,1.9983,,70-79y,AD,,,14.8491,4.7314,2.241,2.3187,2.082,edsd,AD,,F,,0.36987,4.0549,4.3948,0.70712,8.7596,1.1857,0.34125,2.5517,2.517,40.055,12.4071,160.3455,4.0985,3.4644,1.3483,1.9841,2.9948,6.1687,1.7877,2.5154,1.0572,5.2497,9.1264,21.7437,6.4034,2.0075,4.2672,1.4698,16.0813,5.2048,3.3438,1.1962,2.4839,6.1079,10.9168,2.7195,3.5991,3.5102,1.3882,1.2994,4.1246,9.8551,2.8,2.4939,10.8728,2.4688,2.2573,2.5356,10.9797,2.2049,3.4578,1.2411,11.7064,4.5551,8.8565,2.8301,10.221,6.7279,5.4876,6.6647,3.8118,1.7596,4.1364,22,,AD,0.079,,,,0.34366,3.9387,3.8572,0.6519,8.7781,1.5568,0.35342,2.6385,2.6777,41.7928,12.0435,165.4738,4.013,3.8655,1.2855,1.725,3.2229,6.5409,1.7742,2.6384,0.98311,5.6178,9.5773,23.0839,7.3407,2.0035,4.2076,1.5127,16.2296,4.6429,3.2739,0.99108,2.404,6.6045,12.0496,2.4921,3.9017,2.8755,1.3346,1.2711,3.8792,10.311,2.618,2.3289,10.5173,2.2338,2.2067,2.2266,11.7584,1.758,3.4679,1.1259,12.5539,4.749,7.2411,3.4867,9.887,6.8552,5.1972,6.7398,3.0865,1.5085,3.9107,,,,,,,,,,,,,,,79,,,,337
+nG+MUN3T0AD015,2.2566,2.528,,70-79y,AD,,,16.4468,4.9321,2.8769,2.3411,1.9461,edsd,AD,,M,,0.38133,4.3334,4.0109,0.87834,8.7428,1.3465,0.36628,3.0047,2.8973,46.0575,14.2481,214.5005,3.7968,4.1353,1.602,1.7401,3.222,6.974,1.8466,3.1606,0.80833,5.8649,10.5959,19.1291,7.031,2.1045,4.4611,1.6204,17.4485,5.7175,3.4739,1.0879,1.9644,6.2187,13.2595,2.8994,4.5263,2.8826,1.2964,1.4552,4.877,11.088,3.2046,2.17,11.6878,1.9923,2.1929,2.2568,11.6814,1.7541,3.7739,1.1874,13.1303,4.5418,8.6986,3.3384,10.1601,6.9612,6.179,6.8856,2.9626,1.3766,4.3716,25,,AD,0.07275,,,,0.35128,3.7905,3.8199,0.85869,10.0061,1.6152,0.37156,3.3529,2.8989,45.649,13.9055,217.6363,3.4007,4.4276,1.5867,1.5533,3.459,7.1605,1.804,3.4678,1.2856,6.6393,10.5811,21.4729,8.478,2.0071,4.3567,1.6149,16.9728,5.4778,3.5305,1.0638,2.3815,6.8009,13.7151,2.7949,4.3442,2.6049,1.3798,1.5032,4.4639,10.5846,3.054,2.1284,10.2035,1.6959,2.2645,1.9403,11.7555,1.6089,3.4932,1.1395,13.5278,4.6871,7.2661,3.8065,9.2774,6.8383,6.1196,7.1959,2.8794,1.3013,4.2108,,,,,,,,,,,,,,,70,,,,338
+nG+MUN3T0AD016,1.7152,1.6037,,70-79y,AD,,,15.1483,4.0987,2.3483,2.0435,1.7158,edsd,AD,,F,,0.31044,4.0012,3.7476,0.65514,7.7201,1.2721,0.32483,2.9206,2.2608,43.0744,12.8359,171.0498,3.7777,4.2772,1.3591,1.7689,3.0976,6.8644,1.8386,2.4759,0.6269,5.79,9.7307,15.8686,6.9586,1.9827,4.146,1.5611,16.1258,5.047,3.3962,1.0197,2.4124,6.5846,11.3461,3.1491,4.0405,2.8007,1.2955,1.296,3.7294,9.7919,2.7706,2.1753,10.2318,2.003,2.108,2.1959,10.8807,1.6744,3.0497,1.1272,12.2218,5.1869,7.0634,2.8836,9.8944,6.5145,5.8176,6.9603,2.8594,1.326,4.1105,23,,AD,0.08069,,,,0.31102,3.5102,3.4882,0.59381,8.252,1.6455,0.34344,2.9617,2.4715,42.589,12.3419,176.7668,3.732,4.5577,1.2558,1.7233,3.3839,7.1564,1.8534,2.478,0.83647,5.6505,10.3262,18.6268,7.7439,2.1473,3.6314,1.5347,16.9207,4.0703,3.4649,0.99992,2.5231,7.7453,11.7179,2.4036,3.9002,2.9381,1.4724,1.3135,3.2259,9.4847,2.5377,2.2668,9.2833,1.7536,2.0888,1.9957,10.6894,1.3702,3.1506,1.0645,11.8307,5.0842,6.5027,3.6327,9.0337,6.0248,5.5578,7.2726,3.0989,1.3404,3.8928,,,,,,,,,,,,,,,71,,,,339
+nG+MUN3T0AD017,1.4022,1.6709,,60-69y,AD,,,15.4625,4.1373,2.2169,1.9665,1.3977,edsd,AD,,F,,0.33219,4.228,3.8564,0.64418,6.9027,1.3047,0.3093,2.8007,2.4484,38.7255,12.5769,175.5307,3.4995,3.8057,1.3669,1.7313,3.3346,5.759,1.7875,2.4995,0.63503,5.2195,7.9189,17.0265,6.3161,2.1712,4.1489,1.618,15.7862,4.722,3.3619,1.1334,2.3999,6.3289,9.3037,3.0388,3.4301,2.9794,1.3574,1.4423,3.552,8.6143,2.7433,2.1058,9.9456,2.2859,2.3113,2.0071,11.6122,1.7751,3.2448,1.0854,12.274,4.9238,7.5438,2.9742,9.7034,5.6296,5.9124,5.8461,3.4506,1.5286,4.0614,22,,AD,0.07092,,,,0.30452,4.2118,3.7146,0.7034,7.3584,1.5816,0.3202,2.7977,2.514,38.1916,12.2977,183.508,3.3172,4.4477,1.4698,1.8398,3.3794,6.2614,1.792,2.6927,0.57614,5.6379,9.0506,11.4556,7.0294,2.0669,4.1021,1.5936,15.5214,4.2365,3.2639,1.0387,2.465,7.0534,10.7111,2.817,3.7422,3.0284,1.459,1.4289,3.2263,8.8895,2.5732,1.9479,9.7185,2.1007,2.0922,1.8567,11.9216,1.7054,3.1049,1.0636,12.8344,4.7906,6.2754,3.7534,9.1446,5.4535,5.7414,6.5118,3.1653,1.3782,3.9027,,,,,,,,,,,,,,,61,,,,340
+nG+MUN3T0AD018,1.3193,2.3053,,70-79y,AD,,,16.6075,4.6638,2.7039,2.054,1.027,edsd,AD,,F,,0.40283,4.161,3.5727,0.70871,9.481,1.5874,0.34831,2.9878,2.6578,44.6311,13.6368,189.3294,3.7975,4.3129,1.4257,1.7992,3.839,6.7155,1.8113,2.4852,0.4663,6.1523,10.2375,11.3273,7.3043,2.5224,4.4422,1.5716,22.7685,5.6276,3.5057,1.0132,2.3548,6.5125,13.0458,2.8215,4.303,3.767,1.5583,1.3917,4.1477,10.3429,2.8332,1.9116,12.5231,2.1531,2.3886,1.9836,14.409,1.8398,3.7001,1.0478,15.124,4.9414,8.483,3.8647,10.4229,7.0975,6.2609,7.4087,4.504,1.3702,4.2383,20,,AD,0.07124,,,,0.3546,3.5309,3.328,0.69704,9.0115,1.7992,0.35921,3.1828,2.8217,44.5325,13.3741,195.6757,3.984,4.6187,1.3995,1.7945,4.3682,7.0434,1.6926,2.737,0.46074,6.044,10.8435,9.6558,7.7997,2.3512,4.1272,1.5505,23.4151,4.7022,3.3473,1.0974,2.6271,7.3488,13.5649,2.5289,4.1226,3.8531,1.577,1.4477,3.7758,10.3657,2.6135,2.0967,11.2743,2.2397,2.0923,1.9435,14.7374,1.8069,3.6935,1.0135,16.8157,5.328,8.3019,4.0534,10.303,6.8112,6.2942,7.4519,4.2226,1.2894,4.2133,,,,,,,,,,,,,,,73,,,,341
+nG+MUN3T0AD019,1.9443,1.9275,,+80y,AD,,,15.585,4.2206,2.5436,2.0453,1.8042,edsd,AD,,F,,0.38319,4.3325,4.2054,0.78155,8.65,1.3386,0.34598,3.0364,2.8277,41.3733,12.9331,190.1899,4.1893,4.0899,1.6039,1.9806,3.4387,6.5679,1.9924,3.0347,0.84535,6.005,10.1499,24.8942,6.5669,2.022,4.8068,1.6942,17.3434,5.8968,3.499,1.0851,2.2739,6.5523,13.5824,3.2317,4.1678,3.5374,1.3523,1.4302,4.3165,9.8269,3.2102,2.3751,10.5023,2.1802,2.0384,2.2876,12.5679,1.9516,3.4568,1.2348,14.7676,4.7331,8.3512,3.1314,9.9823,6.982,6.46,7.4025,3.6143,1.5275,4.4351,24,,AD,0.07738,,,,0.3427,4.0405,4.0004,0.62574,10.9804,1.5062,0.33121,3.2835,2.6987,41.3288,12.8512,192.7491,3.988,4.209,1.279,1.8245,3.7518,6.9239,2.0569,2.8602,1.0386,6.0598,11.0173,27.8543,7.3984,1.9513,4.3525,1.7502,16.3678,5.0966,3.5202,0.98315,2.4535,7.6309,13.5948,2.7691,3.9188,3.3441,1.4505,1.5018,3.7311,10.2125,2.7605,2.3854,9.6833,2.2011,2.1033,2.2995,11.96,2.0173,3.2375,1.1983,14.6636,4.8324,7.3278,3.8308,10.0073,6.9716,6.1754,6.9801,3.2585,1.597,4.2161,,,,,,,,,,,,,,,83,,,,342
+nG+MUN3T0AD020,2.3766,1.789,,+80y,AD,,,15.6312,4.5791,2.2139,1.89,2.2824,edsd,AD,,F,,0.29139,3.7076,3.937,0.67914,7.1444,1.1635,0.30935,2.3392,2.3089,36.9739,13.067,167.5406,3.2248,3.2594,1.3576,1.7142,2.9432,5.9039,1.6765,2.6793,0.80357,5.0487,9.1289,29.1422,5.592,1.9873,3.7621,1.4415,15.9414,4.8572,3.0109,1.2322,2.6539,5.8097,11.7615,2.7303,3.2456,3.138,1.3536,1.4433,3.5562,8.3648,2.7753,2.1462,10.2945,1.8776,2.1738,2.1995,13.3509,1.7841,3.1287,1.0246,13.2611,4.6898,7.5526,2.7951,7.8168,6.8865,5.747,6.2006,3.3639,1.3876,4.4513,29,,AD,0.0694,,,,0.27647,3.2902,3.6517,0.66068,8.1283,1.4346,0.32086,2.5548,2.3875,36.9984,12.8008,166.1759,3.2858,3.3844,1.3936,1.8686,3.2384,6.3795,1.6336,2.6811,1.0036,5.4073,9.2611,27.8355,6.11,1.8598,3.5388,1.4334,15.608,4.5748,3.019,1.2187,2.6036,6.3937,11.7067,2.6534,3.3919,3.5969,1.2803,1.4,3.2478,8.5796,2.4895,2.0759,8.8208,1.7598,1.9126,1.9904,12.356,1.6063,2.8946,0.98098,13.6011,4.5919,6.3966,3.3981,8.1187,6.4507,5.5835,6.5271,3.309,1.4283,4.1089,,,,,,,,,,,,,,,83,,,,343
+nG+MUN3T0AD021,2.6836,4.2231,,70-79y,AD,,,18.6209,4.483,2.6372,2.164,1.5899,edsd,AD,,M,,0.43868,5.2259,4.2958,0.90895,10.4475,1.5872,0.40196,3.3786,2.9654,45.6732,14.4955,230.6618,3.7851,4.4991,1.7739,2.0487,3.6149,7.3827,2.2869,3.3822,0.76028,6.9959,12.1164,25.9158,7.7195,2.5257,4.7503,2.0756,19.7497,6.6154,4.1394,1.3387,2.8998,7.7693,15.7806,3.6204,4.4752,3.6869,1.6557,1.6373,5.2247,12.4284,3.3253,2.1069,12.1018,2.1228,2.6346,2.1959,13.1288,2.1762,3.8441,1.4796,16.0232,5.8553,9.2919,3.7427,13.0103,7.8232,7.6655,8.716,4.2773,1.4352,5.0683,25,,AD,0.07709,,,,0.41779,4.3315,4.0639,0.90169,11.2125,1.8865,0.40583,3.5348,3.4614,45.176,14.1435,231.9229,4.0736,5.0809,1.8057,1.8098,4.0853,7.8783,2.1711,3.5878,0.86303,7.3695,12.4454,25.069,9.0195,2.3747,4.3481,2.0095,19.5505,6.2659,3.9951,1.1033,2.52,9.1937,15.9737,3.3699,4.5189,3.4744,1.6023,1.7082,4.5952,12.7939,3.1747,2.3018,9.8581,1.9439,2.4315,2.1162,13.3086,1.7417,3.9988,1.3886,16.485,5.6822,8.3976,4.5964,13.3909,6.8571,7.55,8.3288,3.5768,1.4047,4.8612,,,,,,,,,,,,,,,74,,,,344
+nG+MUN3T0AD022,1.9884,1.4711,,+80y,AD,,,15.8484,4.8339,2.4493,1.9135,2.0642,edsd,AD,,F,,0.29177,3.5812,3.5946,0.67972,8.8204,1.1725,0.33227,2.268,1.6876,39.5897,13.3701,167.656,3.4878,2.9868,1.3351,1.7199,2.6735,6.1889,1.6585,2.5551,0.91086,5.1707,9.9763,28.2043,6.1207,1.9667,3.7189,1.451,15.2067,5.0941,3.201,0.9521,2.0742,5.5572,11.9078,2.4495,3.7054,3.349,1.4357,1.3001,3.8485,9.5026,2.559,1.9715,9.9004,2.053,2.1636,1.8632,10.4429,1.6485,2.6509,1.1898,13.1403,4.6141,7.5637,2.7374,9.8198,6.1329,5.499,6.4791,3.6085,1.2955,3.9924,20,,AD,0.0732,,,,0.28582,3.2047,3.6048,0.73594,10.2834,1.3544,0.32814,2.4957,1.8786,39.2035,12.6156,172.9512,3.1549,3.5198,1.4214,1.6789,3.176,6.094,1.6842,2.9735,1.1642,5.205,9.8271,26.7509,6.6618,1.9127,3.772,1.4458,14.5359,4.5945,3.1955,1.0393,2.0731,6.4004,11.9269,2.1446,3.4528,3.4593,1.3934,1.3342,3.4211,9.5692,2.4601,2.1584,8.2496,1.902,2.0384,1.8828,10.075,1.594,2.6344,1.1354,13.2609,4.6205,7.3279,3.4317,9.6445,6.7881,5.3345,7.1664,3.3992,1.369,3.8353,,,,,,,,,,,,,,,84,,,,345
+nG+MUN3T0AD023,1.8553,1.7913,,70-79y,AD,,,15.5147,4.5478,2.2326,2.0725,1.3921,edsd,AD,,M,,0.32602,4.4443,3.8666,0.68262,8.1893,1.4234,0.31777,2.7354,2.3866,39.9639,13.4894,197.0866,3.7872,3.9611,1.3397,1.7469,3.5683,6.6309,1.912,2.4133,0.66018,5.9591,10.131,17.2753,7.0962,2.1484,4.626,1.7733,17.3049,5.2284,3.5504,1.243,2.5797,7.4178,12.0113,3.2095,4.0482,3.0265,1.5059,1.3368,4.3323,10.033,2.7039,2.0887,12.4163,2.3287,2.302,2.2753,11.5078,1.9869,3.0905,1.0338,14.416,5.3369,9.3403,3.3715,10.729,6.5275,6.2038,6.5384,3.5489,1.7914,4.2908,23,,AD,0.08216,,,,0.28581,3.9181,3.6926,0.61151,8.457,1.6345,0.31393,2.7469,2.4448,40.8899,12.3257,193.768,3.5399,4.1291,1.2135,1.7688,3.8335,6.417,1.8818,2.5334,0.85361,5.9237,10.4233,18.0568,7.2804,2.0833,4.4082,1.805,17.3549,4.0399,3.5021,1.0385,2.3302,7.8815,13.4058,2.818,3.6761,3.0337,1.4136,1.3497,3.9715,10.2035,2.5703,2.1981,10.8372,1.8438,2.2844,2.0861,10.5172,1.6147,3.0363,0.9634,14.511,5.1136,7.9324,3.9031,10.3852,6.5747,5.8471,6.7848,2.9482,1.3179,4.0572,,,,,,,,,,,,,,,76,,,,346
+nG+MUN3T0AD024,1.1324,1.2667,,+80y,AD,,,14.6471,3.5511,2.412,1.9315,1.2559,edsd,AD,,F,,0.28135,3.0857,3.0507,0.54267,7.6089,1.1268,0.28045,2.377,2.1042,38.1988,11.9422,152.4398,3.0922,3.438,1.1229,1.4795,2.3836,5.323,1.4475,2.3105,0.57737,4.9728,8.4953,10.6452,5.7349,1.8792,3.6506,1.1377,13.0473,4.7936,3.0423,0.92442,1.9918,4.7167,11.0512,2.5733,3.4132,2.5532,1.2242,1.2041,3.3716,8.0475,2.4644,1.6945,8.8018,1.6606,1.9358,1.8708,9.7042,1.514,2.6123,0.87415,10.4476,3.6742,6.8321,2.6655,7.9356,5.9566,5.3895,6.0238,2.8697,1.0805,3.802,19,,AD,0.0605,,,,0.24275,2.8713,2.9997,0.61379,8.4476,1.3371,0.28347,2.5026,2.1424,39.1093,11.491,159.2096,3.1166,3.4831,1.2138,1.4528,2.522,5.3857,1.4865,2.554,0.57092,4.9759,8.8693,9.3026,6.5576,1.7172,3.3637,1.136,12.9504,3.9723,2.8635,0.86368,1.8906,5.201,11.1185,1.9228,3.5804,2.6661,1.163,1.2103,3.1265,8.7364,2.2915,1.8207,7.7997,1.5512,1.7677,1.7635,9.8727,1.4659,2.6432,0.81868,10.0494,3.6495,5.7985,3.0642,8.4448,6.1989,5.3342,6.3709,2.4138,1.1191,3.6233,,,,,,,,,,,,,,,84,,,,347
+nG+MUN3T0AD025,1.6007,1.9337,,60-69y,AD,,,18.765,4.6047,2.6051,2.2165,1.435,edsd,AD,,F,,0.35031,3.7859,3.3318,0.69324,7.0779,1.3911,0.31248,3.2473,2.629,44.821,15.384,203.7548,3.2416,4.2309,1.3436,1.5681,2.9802,5.647,1.6831,2.5632,1.0276,5.1608,8.7208,21.0381,6.8327,2.1125,4.0558,1.3856,17.1232,4.9534,3.3836,1.009,2.2815,6.0421,10.1113,3.075,3.8006,2.5608,1.2284,1.5621,3.884,9.415,2.5647,1.9671,10.7959,2.2844,2.054,1.9524,11.489,2.0657,3.3873,0.9414,12.1885,4.5485,8.5754,3.125,10.3009,5.7493,6.6011,6.0514,3.3312,1.4729,4.7993,17,,AD,0.07429,,,,0.32688,3.614,3.4572,0.79012,8.9583,1.5475,0.33925,3.3215,2.8236,46.231,15.2445,218.9212,3.6942,4.7492,1.5487,1.5983,3.0947,6.8219,1.6682,3.0443,0.71242,6.071,9.9808,15.7404,7.7756,1.9912,3.9457,1.31,17.2701,4.2627,3.278,0.8248,2.1808,6.5869,11.8728,3.0051,3.9874,3.1906,1.2752,1.5661,3.7549,9.9124,2.6796,2.0359,9.1945,1.8168,1.9387,1.9357,12.4204,1.6462,3.4024,0.92285,12.5558,4.4287,7.0718,4.2872,10.3873,6.9483,6.7414,6.9971,3.2361,1.3584,4.6753,,,,,,,,,,,,,,,60,,,,348
+nG+MUN3T0AD026,2.1805,1.6825,,60-69y,AD,,,13.0928,4.4285,2.1798,1.9632,1.6755,edsd,AD,,F,,0.3308,4.4638,3.7407,0.56468,8.1952,1.3016,0.32352,2.6644,2.296,40.6259,10.9588,147.6763,3.5908,3.8183,1.1673,1.7433,3.0987,5.8912,1.9357,2.2897,1.0232,5.0071,9.4124,29.3432,6.717,2.0203,4.3327,1.7134,18.0128,4.9424,3.49,1.0798,2.7089,7.0089,12.3,2.4214,3.5079,2.8302,1.259,1.1515,3.7825,9.4536,2.5184,2.0725,12.4954,1.9303,2.0985,2.0047,11.8824,1.4413,3.2691,1.1565,14.2374,5.2331,7.5044,2.8725,10.519,5.8138,5.4855,6.042,3.4848,1.153,3.8337,22,,AD,0.06536,,,,0.30692,3.4942,3.5446,0.60361,10.0108,1.5163,0.33652,2.739,2.4093,40.7245,10.3602,155.8267,4.0779,4.3518,1.2747,1.7125,3.2527,6.2909,1.9131,2.5906,0.61913,5.5955,10.2323,18.4515,7.6501,1.9334,4.12,1.6483,18.2283,4.9339,3.4901,1.0474,2.5617,7.7702,13.7024,2.1221,3.7109,3.0249,1.3481,1.1754,3.7856,10.4549,2.5148,2.0965,10.1175,2.0855,2.0404,1.9409,12.4787,1.6213,3.1697,1.1318,14.0155,5.514,8.0238,3.9037,9.7527,6.3729,5.7145,6.7502,3.1843,1.2975,3.6257,,,,,,,,,,,,,,,68,,,,349
+nG+MUN3T0HC001,2.3977,2.3118,,70-79y,CN,,,16.0602,4.9098,2.5664,2.2046,1.9235,edsd,CN,,M,,0.42069,5.3369,4.378,0.96084,9.3309,1.6718,0.39923,3.613,2.6065,46.4122,12.6339,191.9704,4.4266,4.8414,1.8671,1.9114,3.5142,8.1165,2.1371,3.5194,0.91392,7.2521,11.2922,27.473,9.1975,2.4938,5.3529,1.9912,19.6225,6.7847,4.2163,1.3268,2.8608,8.3609,13.6718,3.9065,5.0414,4.0702,1.4956,1.4061,4.7202,10.9168,3.6922,2.5458,10.8701,2.7641,2.6361,2.4041,13.3634,2.5338,3.5929,1.3937,16.6941,6.3158,9.7304,3.6816,10.7229,7.5151,6.4111,8.1057,3.6743,1.6751,4.6013,29,,,0.08331,,,,0.40497,4.8125,4.0993,0.92387,10.9234,2.0347,0.41012,3.6973,2.8766,46.6868,12.6077,197.4064,4.1699,4.8737,1.831,1.9749,3.9295,8.188,2.1121,3.8127,0.83194,6.8062,11.5841,23.7819,9.7373,2.519,5.342,1.8545,19.4832,5.1891,4.1413,0.95377,2.516,9.1858,14.3478,3.1298,5.0403,4.0185,1.6808,1.4414,4.3882,11.0276,3.4273,2.3952,10.9608,2.7669,2.6885,2.1916,13.884,2.2523,3.5593,1.2903,16.4027,6.6401,8.6232,4.6521,11.3914,7.9266,6.6984,8.2934,3.5375,1.6855,4.3818,,,,,,,,,,,,,,,71,,,,350
+nG+MUN3T0HC002,2.0765,1.9177,,70-79y,CN,,,18.8525,4.9061,2.8658,2.2865,1.7484,edsd,CN,,M,,0.40152,4.9002,4.2762,0.89047,9.3961,1.5468,0.3742,2.8104,3.415,49.2328,14.573,201.5569,4.0324,3.6543,1.7489,1.7176,3.1651,7.6878,2.0546,3.3209,0.80271,6.0712,12.26,20.9017,7.1023,2.4185,5.5882,1.7924,19.8562,5.7762,3.9386,1.2117,2.5586,7.27,15.5946,2.9691,4.214,3.2974,1.4181,1.6107,4.6604,10.4413,3.4016,2.4961,11.8231,2.5125,2.6528,2.3871,13.0042,2.0741,4.0915,1.3015,14.4107,5.4055,9.639,3.2341,10.7687,7.7485,7.5452,7.9158,3.6533,1.6025,4.9084,28,,,0.0731,,,,0.40048,4.7629,3.9925,0.90347,10.3955,1.8242,0.39039,2.9493,3.4389,49.0386,14.2442,201.885,4.1322,3.9661,1.8231,1.7464,3.5109,8.055,2.1145,3.6067,0.78974,6.4317,12.2909,21.7979,8.0746,2.2805,5.4314,1.8857,20.8868,5.0217,3.954,1.1664,2.6953,8.0025,15.5843,2.5344,4.222,3.1677,1.5207,1.6485,4.0406,10.263,3.2669,2.5105,10.9354,2.2983,2.659,2.123,12.9511,1.8695,3.8535,1.2912,14.3386,5.5314,7.9432,3.8457,10.5653,6.9127,7.0978,8.2166,3.4028,1.6192,4.6514,,,,,,,,,,,,,,,76,,,,351
+nG+MUN3T0HC003,1.611,1.69,,70-79y,CN,,,17.5517,5.4473,2.6106,2.2973,1.6254,edsd,CN,,M,,0.34567,4.0703,4.27,0.77098,8.4863,1.3625,0.33999,2.9703,2.2448,49.6968,15.7577,200.8307,3.9788,3.6686,1.5748,1.9555,3.3072,6.9429,1.8979,2.8797,0.60747,5.9868,10.6118,16.8971,6.8854,2.2165,4.097,1.6073,16.7384,5.1144,3.7108,1.0588,2.6154,6.1917,13.5247,2.9863,3.9262,2.8476,1.5716,1.4785,4.3793,10.1935,3.1551,2.2121,10.6313,2.3133,2.3903,2.085,10.5878,1.8047,3.0408,1.2271,14.0074,5.1386,9.423,2.6919,10.2162,7.5901,6.3735,7.2301,3.3446,1.3736,4.4975,29,,,0.07519,,,,0.32138,3.4882,3.8434,0.7897,9.6839,1.6267,0.35883,3.0369,2.4036,49.2345,15.5951,206.845,3.9933,4.0791,1.6669,1.8546,3.4152,7.0986,1.9206,3.101,0.65389,6.9008,10.6808,15.5073,7.35,2.1197,3.9888,1.606,15.809,5.4614,3.6809,1.1491,2.8162,7.1452,13.4782,3.2278,3.9741,3.4747,1.5768,1.5987,4.0913,10.4165,2.8675,2.2363,9.7499,2.1136,2.3006,1.8061,12.0222,1.7494,3.0784,1.1656,13.9154,5.0974,7.8176,3.7684,9.7846,7.1356,6.2583,7.3078,3.3861,1.3323,4.276,,,,,,,,,,,,,,,72,,,,352
+nG+MUN3T0HC004,0.73794,1.2959,,50-59y,CN,,,15.0725,3.7562,2.0458,1.7907,0.85575,edsd,CN,,F,,0.33326,3.5832,3.2021,0.71998,7.8663,1.3481,0.31621,2.6492,2.4063,36.591,12.7314,178.0647,3.0948,3.7902,1.4737,1.4358,2.9418,5.9514,1.7823,2.5595,0.28087,5.3117,9.4018,5.8647,5.7436,1.9148,3.9116,1.5077,15.3838,4.9577,3.4483,0.8659,2.3125,5.498,11.7304,2.7019,3.3611,2.4669,1.1918,1.2745,3.6058,8.5726,2.7332,1.7371,10.1847,1.7981,1.9682,1.7416,10.9442,1.4435,3.2175,0.9505,12.7407,4.369,7.6587,2.9298,8.1117,5.8152,6.3666,6.2356,3.1484,1.0864,4.0475,28,,,0.05859,,,,0.31981,3.0373,2.9892,0.73701,8.0657,1.4998,0.3211,2.79,2.5083,37.2794,12.4457,184.6449,3.3075,3.9193,1.4607,1.5684,3.0046,6.0677,1.7561,2.735,0.39474,5.1369,9.3017,4.9304,6.263,1.8169,3.9639,1.4825,14.9524,4.3988,3.2523,0.95841,2.2753,6.1495,11.8123,2.2139,3.2876,3.1657,1.2038,1.2984,3.3051,8.8201,2.5695,1.7383,9.0295,1.8718,1.9493,1.6139,10.3928,1.6023,3.1583,0.91742,12.7188,4.385,7.2679,3.5536,8.5293,6.1046,6.1763,6.3405,2.9813,1.182,3.9009,,,,,,,,,,,,,,,57,,,,353
+nG+MUN3T0HC005,1.1649,2.2211,,60-69y,CN,,,18.1482,4.3824,2.2563,2.0943,1.1773,edsd,CN,,F,,0.38121,3.7698,3.9264,0.70447,8.2665,1.3872,0.31937,2.4513,2.7351,43.4035,14.4078,202.5798,3.8207,3.4998,1.3173,1.8755,3.0323,6.2913,1.8575,2.701,0.39909,5.4153,9.7692,9.8195,6.4933,2.1518,4.2049,1.5476,17.1511,5.2818,3.6084,1.0193,2.2297,5.7994,11.6377,2.7622,3.7238,3.275,1.4643,1.6363,3.7437,8.7907,2.7082,2.0617,10.7559,2.4295,2.3422,1.9482,11.4748,2.1903,3.4066,1.0239,13.3589,4.5881,8.5511,2.9693,8.9922,6.0908,6.924,6.051,3.709,1.6248,4.4735,29,,,0.07582,,,,0.34792,3.6203,3.5631,0.71676,8.6472,1.6303,0.33062,2.6469,2.8412,43.3208,14.0423,202.9975,3.7405,4.0174,1.381,1.7762,3.2989,6.55,1.8396,2.9139,0.42811,5.1508,9.5706,10.4673,6.9996,2.0495,4.075,1.4615,15.873,4.4185,3.4487,1.072,2.4596,6.3706,11.541,2.1534,3.6132,3.1011,1.4548,1.5667,3.3332,9.0274,2.5847,2.0016,9.4862,2.0963,2.15,1.9069,11.2152,1.8261,3.2456,0.97366,14.7613,4.612,7.9694,3.8696,9.1039,6.3734,6.6407,6.6937,3.1442,1.4725,4.2391,,,,,,,,,,,,,,,69,,,,354
+nG+MUN3T0HC006,1.3555,1.357,,60-69y,CN,,,17.9907,5.0696,2.584,2.1802,1.1145,edsd,CN,,F,,0.38915,4.5078,4.0842,0.80224,9.0157,1.5847,0.35063,2.7956,3.0353,44.4463,14.9131,204.3795,4.4545,3.665,1.5192,2.0088,3.4446,6.1482,1.969,3.1275,0.61212,5.9589,9.9612,13.1846,6.6398,2.2613,4.7252,1.7735,18.1383,6.1263,3.9297,1.2013,2.7088,6.8728,13.7917,2.9054,3.8328,3.6904,1.318,1.4683,4.0042,9.3746,3.1128,2.1923,11.8534,2.141,2.4201,2.1973,13.1281,1.7462,3.4715,1.1614,14.7358,5.3501,8.0251,3.0401,11.0671,7.1166,7.1954,6.8396,3.6828,1.4584,4.7205,29,,,0.08036,,,,0.36462,4.1867,3.7764,0.76589,8.9774,1.7717,0.35868,2.8937,3.2366,44.6824,14.3293,205.5463,3.8306,4.5008,1.5659,1.8274,3.4663,6.5573,1.9435,3.2479,0.5807,5.7781,10.3559,11.6509,7.5728,2.0604,4.6942,1.7161,18.477,4.796,3.8288,0.9992,2.4368,7.4682,13.9152,2.3021,4.1069,3.2278,1.2881,1.5049,3.5864,10.1232,2.8557,2.1037,9.8217,2.1826,2.3449,1.9957,12.7629,1.8645,3.4167,1.1297,15.7621,5.7842,7.4809,3.9039,10.5337,7.3304,7.0385,7.0666,3.0346,1.4467,4.5094,,,,,,,,,,,,,,,65,,,,355
+nG+MUN3T0HC007,1.1133,2.0486,,70-79y,CN,,,17.4445,4.8325,3.0156,2.3034,1.0466,edsd,CN,,M,,0.37252,4.207,3.8279,0.90859,8.4609,1.4051,0.34201,3.0013,2.7543,47.8739,15.0749,194.5308,3.725,3.9855,1.7519,1.8755,3.3071,7.7764,2.0066,3.1268,0.40243,6.6613,11.0843,9.9204,7.1042,2.1013,4.1852,1.7445,17.0128,6.4712,3.7771,0.96247,2.297,6.317,12.6961,3.0433,4.4864,3.1919,1.425,1.4622,4.0267,9.915,3.2922,2.1163,11.0887,2.3211,2.3015,2.0831,12.3321,2.0751,3.3731,1.1058,14.357,4.7192,8.8259,3.3476,10.075,6.7122,6.8969,7.4425,3.9711,1.55,4.6063,28,,,0.0721,,,,0.36818,3.7785,3.8023,0.90904,9.7824,1.6852,0.37311,3.1472,2.8241,47.9786,14.4927,196.9166,3.3154,4.214,1.7709,1.9524,3.5052,7.4447,2.0282,3.3175,0.41122,6.6846,11.1527,7.7351,8.111,2.0486,4.1733,1.7099,16.7811,5.532,3.7438,1.1914,2.4234,7.2632,13.4412,2.7605,4.1216,3.2014,1.4263,1.4513,3.9344,10.1621,3.1435,2.1219,10.1239,1.8769,2.2487,1.9514,11.2796,1.6811,3.3923,1.0876,15.5874,4.8385,7.6528,3.9385,10.0717,7.1756,6.6481,7.8905,3.3855,1.2969,4.3799,,,,,,,,,,,,,,,70,,,,356
+nG+MUN3T0HC008,1.2013,2.5036,,50-59y,CN,,,23.9017,5.2487,3.0136,2.3239,1.2229,edsd,CN,,M,,0.49177,5.2181,4.5521,1.0531,10.3745,1.7468,0.44279,3.5228,3.1856,52.9065,20.1605,310.1523,4.7655,5.8995,1.9877,1.9869,3.7443,8.6021,2.1865,3.6979,0.43567,7.5011,13.2035,13.7839,8.1756,2.5375,5.3298,2.0987,19.6175,7.5661,4.2546,1.5042,3.189,7.9071,15.3056,4.0609,4.5792,3.1054,1.5605,2.1712,4.5776,12.2753,3.4088,2.6615,14.9649,3.0561,2.9932,2.6958,15.5418,2.9278,3.9109,1.3147,16.8733,6.337,9.547,4.3774,11.7601,8.1752,9.3331,8.2868,3.7874,2.2485,6.1972,29,,,0.09152,,,,0.46267,4.594,4.4733,1.0307,11.3972,1.9376,0.4242,3.7472,3.4027,52.7122,20.511,317.1721,4.5053,6.2507,2.0892,2.2203,3.89,8.9677,2.207,3.8622,0.50539,7.6633,14.3893,13.9526,9.0811,2.4832,5.2704,1.9984,21.4524,5.696,4.1593,1.1411,2.8182,8.5891,16.3772,3.5042,4.5392,3.762,1.5701,2.2761,4.3933,12.3452,3.1754,2.5205,13.1736,2.6939,2.815,2.3986,14.1083,2.3324,3.9504,1.2078,15.7713,6.0302,9.415,4.9509,11.6447,8.2907,8.9716,8.8052,4.1855,1.7937,5.937,,,,,,,,,,,,,,,59,,,,357
+nG+MUN3T0HC009,1.1563,1.8593,,70-79y,CN,,,19.3838,4.8763,2.7915,2.2072,1.2228,edsd,CN,,M,,0.42411,4.3216,3.8591,0.82365,8.8291,1.4767,0.36763,3.0768,3.1133,47.977,16.5995,206.1839,3.6528,4.114,1.6736,1.9199,3.2293,7.0969,2.0366,3.2016,0.50741,5.7929,10.4273,12.2702,7.1502,2.2861,4.7633,1.7025,17.1605,5.7717,3.8401,1.1678,2.8534,6.3666,13.5201,3.1758,4.0925,3.463,1.4658,1.6208,3.8657,9.4623,3.281,2.1522,11.3727,1.9191,2.4391,2.1113,13.1986,1.6495,3.5591,1.1393,13.2355,4.7741,8.2673,3.1916,9.5963,7.35,7.3633,7.3648,3.7391,1.3716,5.0074,28,,,0.07365,,,,0.39802,3.8128,3.5971,0.82078,8.765,1.6031,0.38007,3.2888,3.3929,48.2352,15.7454,208.496,3.3605,4.2814,1.6902,1.8365,3.1235,7.3682,1.8574,3.3798,0.56116,6.408,11.1146,11.9217,8.01,2.1833,4.5303,1.6411,17.1033,4.5779,3.3141,1.1842,2.9391,6.9914,13.6445,2.8192,4.2499,3.4434,1.4922,1.6221,3.7024,9.9434,3.0239,2.1494,9.4895,2.0859,2.16,1.9139,13.7355,1.7032,3.5869,1.0766,13.927,4.9767,7.3907,3.9958,9.3204,6.7324,7.1738,7.3755,3.4757,1.3663,4.6624,,,,,,,,,,,,,,,71,,,,358
+nG+MUN3T0HC010,2.088,2.1591,,60-69y,CN,,,18.9937,5.343,2.6336,2.1858,1.7044,edsd,CN,,M,,0.3989,4.3947,4.1081,0.78419,9.6959,1.4512,0.36965,3.4112,2.7933,48.3435,17.0418,234.785,4.0122,4.6505,1.5808,1.9652,3.285,7.0253,1.9173,3.2985,1.0427,6.6433,11.1512,18.5819,7.7312,2.1445,4.3222,1.711,18.3061,6.6693,3.6686,0.99809,2.3513,7.2102,13.8644,3.8397,4.5731,3.0816,1.4648,1.6336,4.1789,10.6984,3.1822,2.0499,11.1207,2.1848,2.2905,2.1385,11.9992,1.8409,4.2961,1.245,13.7678,5.4896,8.7829,3.879,10.7538,7.1293,7.0742,6.5995,3.6927,1.3603,5.1795,29,,,0.08816,,,,0.38425,3.6558,3.9866,0.81126,10.7906,1.6552,0.39006,3.5698,3.0522,48.4678,16.5091,242.2161,4.0791,5.0822,1.6799,2.1351,3.6502,7.0693,1.9635,3.5596,0.95945,7.2028,10.7133,17.223,8.2567,2.1437,4.4437,1.7698,17.0565,5.8092,3.5804,0.91818,2.4555,7.8836,14.1578,3.6971,4.6967,3.4493,1.4141,1.662,3.9944,11.0205,2.949,2.238,9.7797,2.0698,2.2686,2.084,11.9364,1.9494,4.1819,1.2021,14.5716,5.1412,7.4591,4.5039,10.0633,8.2077,6.9894,7.457,3.4516,1.5785,4.9232,,,,,,,,,,,,,,,69,,,,359
+nG+MUN3T0HC011,1.3969,1.7585,,70-79y,CN,,,15.3895,4.028,2.1959,2.105,1.2558,edsd,CN,,F,,0.34349,3.7709,2.9999,0.68249,8.0098,1.497,0.30771,2.81,2.5252,38.2802,11.7189,161.0911,3.1551,3.6052,1.3525,1.5735,3.2343,6.0089,1.8172,2.6064,0.41122,5.5156,9.0178,12.2916,6.489,2.0638,3.9856,1.4987,17.3371,5.6877,3.7063,0.9992,2.2646,5.7266,11.7817,2.7125,3.817,2.9323,1.2037,1.1355,3.5594,9.3807,2.5995,1.7543,10.9703,1.6428,2.1226,1.7473,11.9346,1.2898,2.6895,0.99695,13.3969,4.5392,7.7181,2.8507,9.5507,6.1545,5.8428,6.1066,3.2565,1.0059,3.8378,29,,,0.06809,,,,0.31844,3.3809,2.9807,0.68021,8.8075,1.5354,0.31325,2.8323,2.6088,38.4189,11.3847,163.5324,3.1265,4.1376,1.3767,1.4564,3.3155,5.9951,1.7359,2.7875,0.43641,5.4517,9.4841,11.8682,7.2742,1.8762,3.9268,1.5342,17.359,4.3234,3.2755,0.8586,2.2044,6.4407,12.4177,2.2862,3.7103,2.7412,1.211,1.1362,3.3272,9.2206,2.4086,1.8548,9.6822,1.7387,1.9487,1.6058,11.8063,1.4708,2.7133,0.97115,13.7606,4.408,6.8403,3.6041,9.0949,6.3846,5.7713,6.3213,2.9951,1.1316,3.6565,,,,,,,,,,,,,,,77,,,,360
+nG+MUN3T0HC012,0.92769,1.602,,60-69y,CN,,,17.0213,4.1751,2.6155,2.2093,1.399,edsd,CN,,F,,0.40136,5.1017,3.723,0.80659,9.2595,1.5373,0.36122,3.4042,2.9916,47.2955,14.5006,211.7263,3.9707,4.9263,1.6001,1.8215,3.2514,7.3983,2.0545,2.9924,0.41025,6.0308,10.8081,12.3222,7.7624,2.5026,4.9602,1.94,18.6858,5.8987,3.8823,1.2417,2.8748,7.5175,13.8302,3.1802,4.3736,2.8141,1.5784,1.4918,3.9295,10.7974,3.2203,2.065,11.28,2.1756,2.7168,2.311,12.3724,1.8337,3.5786,1.1464,14.0655,6.4636,8.526,3.4341,10.5715,7.3153,7.0292,7.2036,3.62,1.6822,4.6727,30,,,0.08194,,,,0.36667,4.1239,3.5168,0.8032,9.5238,1.717,0.35908,3.2456,3.1599,47.4525,14.4586,213.4782,3.4921,4.9356,1.6149,1.9501,3.3523,7.7197,2.1532,3.1986,0.44021,6.8111,10.6656,10.9352,8.3993,2.2305,4.9537,1.8843,17.8634,5.0555,3.9101,1.137,3.0045,8.0346,13.708,3.1079,4.4969,3.5157,1.5253,1.5389,3.5903,10.2759,2.9314,1.9027,10.0404,2.0085,2.3009,1.8192,12.7044,1.823,3.5256,1.1772,13.5861,5.7421,7.9481,4.4602,10.3038,7.2082,6.8949,7.3982,3.6254,1.3284,4.4484,,,,,,,,,,,,,,,60,,,,361
+nG+MUN3T0HC013,0.89572,1.1991,,70-79y,CN,,,15.1679,3.6008,2.0198,1.7855,0.86119,edsd,CN,,F,,0.39818,3.5518,3.5396,0.74553,8.1748,1.2826,0.32629,2.7326,2.5817,36.3908,11.1161,158.4892,3.612,4.1721,1.4514,1.7712,2.9122,6.3012,1.7244,2.6656,0.46899,5.1469,9.3124,11.2279,6.1704,1.9754,4.0007,1.4588,15.7201,5.3288,3.3944,0.88803,2.1671,5.7877,11.4312,2.6527,3.5091,3.1727,1.1974,1.1916,3.5421,8.6526,2.821,1.7311,10.761,1.7698,2.141,1.887,10.3589,1.486,3.5409,0.96288,13.2426,4.3968,7.5649,3.0422,8.8459,6.4235,5.8867,6.3663,3.2663,1.2591,4.0213,29,,,0.06336,,,,0.35701,2.8803,3.3243,0.74204,9.1822,1.5096,0.34147,2.6629,2.8103,36.5847,10.7408,160.604,3.2413,3.8996,1.4787,1.7332,2.9616,6.1785,1.8028,2.8624,0.37644,5.3569,9.308,8.3108,6.9363,1.9003,3.8303,1.4626,16.0591,4.0341,3.3378,0.92088,2.2603,6.4539,11.8959,2.3741,3.7099,3.0137,1.2823,1.2084,3.4327,8.9542,2.5985,1.6855,9.0756,1.5787,2.0272,1.7498,11.1104,1.5024,3.3738,0.94846,12.6635,4.5699,6.7096,3.7021,8.8691,6.5049,5.8359,6.6545,3.0771,1.2267,3.8011,,,,,,,,,,,,,,,71,,,,362
+nG+MUN3T0HC014,1.3714,1.9167,,50-59y,CN,,,16.2224,4.0636,2.431,1.9338,1.2594,edsd,CN,,F,,0.42851,4.8226,3.9136,0.84704,9.8088,1.4379,0.37054,3.319,3.0593,43.8844,14.1874,213.7681,4.248,4.6638,1.5896,1.7836,3.3434,7.5396,1.9629,3.1642,0.41883,6.9345,11.5298,18.3889,7.4898,2.2946,4.7032,1.849,18.7872,6.1406,3.9265,1.0421,2.3727,6.6326,14.0717,3.555,4.3414,3.367,1.5132,1.5028,4.1069,10.4622,3.1441,2.3024,11.9748,2.3381,2.3237,2.341,13.815,2.0675,3.7474,1.2462,14.8169,5.1563,8.1149,3.269,11.3134,7.1021,7.01,7.1147,3.9856,1.7661,4.609,30,,,0.07095,,,,0.37753,4.3017,3.8856,0.82696,10.2074,1.6275,0.37608,3.4774,3.0724,44.341,13.5409,213.1412,4.0022,5.1395,1.676,1.9062,3.7591,7.5073,1.9965,3.1369,0.47873,6.497,11.6844,14.947,8.4587,2.1802,4.4148,1.8225,19.0835,4.6935,3.6617,0.95943,2.3546,7.8791,14.1806,3.0754,4.2927,3.5411,1.5453,1.5366,3.7873,10.7288,2.9328,2.1876,10.3188,2.2879,2.3008,1.957,12.9676,1.9096,3.6679,1.1449,13.4679,5.308,8.0531,4.1277,10.2725,7.1103,6.8741,7.7904,3.6728,1.4892,4.3747,,,,,,,,,,,,,,,59,,,,363
+nG+MUN3T0HC015,1.6975,2.1377,,60-69y,CN,,,20.7412,4.2965,2.5852,2.2105,1.4226,edsd,CN,,M,,0.43967,5.3101,4.6927,0.94919,10.7431,1.6783,0.40561,3.1443,3.0987,47.4532,17.5254,252.5392,4.622,5.1473,1.8609,2.1657,4.015,8.2176,2.281,3.3746,0.47243,7.3809,13.1401,14.8496,7.7831,2.747,5.1606,2.0169,21.2525,7.3017,4.2112,1.1088,2.6688,8.6131,16.9706,3.65,4.7029,3.9462,1.798,1.7342,4.9629,12.0702,3.5065,2.5935,14.2092,2.5855,2.6925,2.5011,15.7442,2.2623,3.9769,1.3112,17.7633,6.4053,9.2497,3.287,11.8275,8.3054,8.0582,9.1485,4.8047,1.884,5.2544,30,,,0.08694,,,,0.42297,4.2614,4.7343,0.96258,11.4851,2.0372,0.41572,3.3212,3.2182,46.4131,17.1776,256.9963,4.4059,4.9915,1.9505,2.3227,4.5967,8.1661,2.4681,3.6412,0.60679,7.5426,13.5408,13.3892,8.2946,2.5671,5.0183,2.1403,20.5258,6.0093,4.373,1.0121,2.7904,9.7874,17.4995,3.2751,4.6993,3.968,1.7342,1.73,4.4745,11.9149,3.1658,2.6001,12.4968,2.415,2.5524,2.3015,16.6497,2.0739,3.9542,1.359,17.7623,6.262,9.1267,4.3351,11.7597,8.4401,7.8888,9.1321,4.0751,1.7121,5.0187,,,,,,,,,,,,,,,64,,,,364
+nG+MUN3T0HC016,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,365
+nG+MUN3T0HC017,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,366
+nG+MUN3T0HC018,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,367
+nG+MUN3T0HC019,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,368
+nG+MUN3T0HC020,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,369
+nG+ROS1T5AD001,2.5027,2.4064,,70-79y,AD,,,16.4358,4.7015,2.4794,2.1563,2.486,edsd,AD,,F,,0.35524,4.6571,4.5286,0.64941,8.1307,1.3311,0.33708,3.1114,2.7342,45.4416,13.7952,184.7551,4.399,4.5617,1.2181,1.9733,3.3587,6.2417,2.0723,2.7707,2.3176,5.8456,9.0324,33.7795,6.9412,2.1766,4.5531,1.6768,16.2445,5.8283,3.6734,1.2004,2.5269,6.8762,11.0624,3.6103,4.095,3.5537,1.328,1.3795,4.4056,10.6859,2.9537,2.9307,11.5548,2.2995,2.3013,2.749,11.3869,1.9957,3.1882,1.2912,13.8474,5.4783,7.7548,3.7345,10.3114,6.2291,6.5612,6.7166,3.8213,1.8672,4.5977,19,,AD,0.07945,,,,0.33104,4.6685,4.1956,0.76311,10.0514,1.647,0.35654,3.2858,2.7565,43.2544,12.6576,197.9988,4.3301,4.7579,1.4298,1.8085,3.4653,6.6325,2.1665,3.1337,1.6972,6.2204,10.3783,23.4086,8.0404,2.1543,4.88,1.8653,17.153,5.1453,3.7817,1.1946,2.5934,7.9289,13.2348,2.8883,4.0742,3.4978,1.397,1.4017,4.1182,11.4994,2.8424,2.7182,9.638,2.2661,2.3948,2.2659,11.6466,1.9109,3.277,1.2824,14.1835,5.0751,7.6425,4.0545,11.0324,7.0378,6.3537,7.2461,3.4632,1.6167,4.3203,,,,,,,,,,,,,,,72,,,,370
+nG+ROS1T5AD002,2.3907,2.0275,,70-79y,AD,,,17.3904,4.791,2.6029,2.0012,1.764,edsd,AD,,M,,0.37947,4.7538,4.221,0.76239,8.523,1.4906,0.37984,2.5104,2.5079,43.9796,14.2885,202.5402,3.9903,3.929,1.5256,1.8315,3.7458,6.4178,2.0388,2.822,1.3141,5.4306,10.5122,22.8793,6.5675,2.1791,4.7902,1.7966,19.4868,5.5142,3.8465,1.3627,2.5871,7.1449,12.5919,3.015,3.724,2.9683,1.3288,1.4679,4.6253,10.8822,3.0441,2.4826,11.6001,2.544,2.3097,2.2002,13.1256,1.7496,3.4382,1.2506,14.3556,5.0555,8.4672,2.8313,11.5286,6.0978,6.567,7.6262,3.4155,1.4657,4.6879,26,,AD,0.08193,,,,0.35828,4.0183,4.1616,0.80167,9.7211,1.7002,0.38422,2.76,2.6583,44.5195,14.3129,207.3131,3.7483,4.738,1.5457,1.8778,3.8239,6.5734,2.0343,3.0892,1.0113,6.2901,10.5644,20.9617,7.1607,2.0666,4.121,1.867,18.3215,5.1518,3.6637,1.1437,2.7155,8.2489,13.7507,2.5973,4.0484,2.9351,1.5482,1.5007,4.0387,10.9995,2.7339,2.3157,10.5416,2.3392,2.3145,1.9335,12.809,1.8213,3.4118,1.2567,15.2248,5.6763,8.0486,4.2109,9.3569,6.9792,6.3608,7.2818,3.4556,1.3532,4.5209,,,,,,,,,,,,,,,76,,,,371
+nG+ROS1T5AD003,1.8912,2.101,,70-79y,AD,,,16.484,4.024,2.4515,1.9053,1.6692,edsd,AD,,F,,0.30723,3.5615,3.5909,0.51831,8.4396,1.2471,0.31056,2.3661,2.2964,43.9793,14.3408,195.881,3.7363,3.0535,0.9014,1.7171,2.7854,5.6812,1.4887,2.3976,2.2042,5.0373,8.1703,26.5933,5.6364,1.892,3.8523,1.3034,17.2683,4.7415,3.3108,1.1189,2.5823,5.7272,11.5067,2.7148,3.5271,2.8929,1.0652,1.5011,3.3549,8.2201,2.3682,2.0925,10.8251,2.2497,2.2377,2.0265,12.0214,1.6968,3.0355,1.0146,14.0173,4.6555,7.9196,2.7485,8.7339,6.0437,5.9736,4.5637,3.1222,1.4395,4.3385,26,,AD,0.07651,,,,0.25479,3.3465,3.0838,0.51139,8.7539,1.4618,0.29135,2.3802,2.2612,43.9449,13.7873,193.1734,3.5441,3.6372,0.89669,1.5613,2.8831,5.7579,1.4739,2.6136,2.6248,4.9028,8.6221,17.8408,6.3269,1.8498,4.0806,1.3076,17.2115,4.3615,3.0201,0.89391,2.1641,6.112,11.6544,2.1548,3.4317,2.708,1.1772,1.4591,3.2502,8.2959,2.3121,1.9343,8.8486,1.9557,1.9505,1.5795,12.1904,1.4979,2.965,0.93261,13.3021,4.6412,7.3237,3.5403,9.3058,5.9154,5.7264,4.674,2.9833,1.3268,4.1046,,,,,,,,,,,,,,,78,,,,372
+nG+ROS1T5AD004,1.7782,1.6608,,70-79y,AD,,,17.4656,4.418,2.5824,2.1635,1.5388,edsd,AD,,M,,0.38838,4.6177,3.9214,0.80952,8.867,1.5455,0.39973,3.0632,2.6278,43.3222,14.6074,202.825,3.5407,4.6623,1.6131,1.6752,3.237,7.4269,1.9376,2.9384,0.66825,6.5178,12.0413,17.5594,7.3152,2.3104,4.5039,1.7096,17.9772,6.0193,4.002,1.0363,2.5008,7.1374,13.8299,2.9967,4.3777,2.8302,1.3237,1.5195,4.3339,11.2784,3.043,2.1631,11.8171,2.498,2.4828,2.288,13.939,2.1021,3.3722,1.2469,14.6558,5.7842,9.142,3.3175,9.9203,7.3223,6.5539,8.0864,3.2433,1.381,4.6455,26,,AD,0.07678,,,,0.33312,4.2709,4.2416,0.84375,9.4246,1.7341,0.37589,3.4823,2.642,44.6002,14.898,203.5476,3.7519,4.7899,1.7149,1.8743,3.4434,7.7755,1.887,3.276,0.72004,8.1062,12.5964,14.9498,8.4486,2.1723,4.6956,1.7002,18.9184,5.4728,3.7269,0.98811,2.5734,7.5331,15.0737,2.9995,4.8387,3.322,1.4818,1.4802,4.1502,11.3982,2.904,2.3395,9.8857,2.3402,2.4015,2.1158,12.6563,1.9224,3.4389,1.1265,13.5537,5.3932,7.8089,3.733,10.0615,6.9084,6.5732,7.8822,3.251,1.505,4.3893,,,,,,,,,,,,,,,73,,,,373
+nG+ROS1T5AD005,1.5988,1.7275,,60-69y,AD,,,15.3855,3.607,2.3772,1.8362,1.6202,edsd,AD,,F,,0.34425,4.1787,3.6281,0.70882,7.8288,1.3598,0.30933,2.9538,2.4343,39.5564,12.8817,218.6799,3.6835,4.0687,1.3078,1.7076,3.1735,5.5941,1.6396,2.5693,1.161,6.1125,8.8462,17.9963,6.8042,2.0547,4.1896,1.5646,16.5803,5.7901,3.3339,0.99768,2.3455,5.9402,10.6693,3.4122,3.9141,2.8977,1.241,1.4388,3.9854,9.1818,2.5619,2.0444,10.8967,2.0925,2.1021,1.9808,11.8988,1.6351,3.1348,1.0621,12.5684,4.1708,6.8818,3.7136,9.5738,5.6128,6.1851,6.1349,3.0542,1.3844,4.3349,14,,AD,0.07289,,,,0.31226,3.8583,3.4726,0.77434,9.9686,1.6327,0.31632,3.0612,2.5899,38.8014,12.6773,227.8522,3.5283,4.7257,1.5192,1.6705,3.3897,6.3108,1.7701,2.9276,0.86284,6.2178,9.7183,12.8318,7.5242,2.0886,4.2768,1.6284,16.6407,4.6874,3.3231,0.99046,2.3317,6.8223,11.8751,2.6611,3.8353,3.0829,1.3953,1.4269,3.6173,9.5098,2.6926,1.9287,10.0499,1.7696,2.21,1.7975,11.3434,1.655,3.1985,0.99631,12.9783,4.5731,7.7316,4.0379,10.921,6.4666,6.0708,6.4502,2.8351,1.2863,4.145,,,,,,,,,,,,,,,67,,,,374
+nG+ROS1T5AD006,2.2635,2.9737,,60-69y,AD,,,18.029,4.8893,2.6567,2.2255,1.947,edsd,AD,,F,,0.27429,3.5158,3.4285,0.50656,7.9235,1.2013,0.31367,2.3375,2.2449,46.4249,15.7361,202.1358,3.2403,3.1617,0.91267,1.401,2.7626,5.238,1.6461,2.5125,2.4151,4.9586,7.9361,27.7839,6.3648,1.7763,3.6438,1.373,14.1142,5.1368,3.2007,0.9948,2.3254,5.3951,10.631,2.7624,3.5406,2.3332,1.019,1.5726,3.545,8.5134,2.5548,1.9431,10.0348,1.7508,1.9167,1.807,10.6186,1.5016,2.7921,1.068,11.176,4.6129,6.9517,2.9609,8.1941,5.397,6.3917,4.4876,2.7339,1.2157,4.6976,10,,AD,0.07224,,,,0.14255,3.2578,2.9729,0.5099,7.7656,1.2883,0.2706,2.5168,1.6327,45.8701,15.3667,195.6455,2.9176,3.4986,0.84711,1.3754,2.9684,4.8245,1.4389,2.6,3.4118,4.9471,6.7824,27.9583,7.072,1.5963,3.2808,1.2638,13.307,4.1136,2.842,0.95104,2.2305,5.7964,8.3232,2.2124,3.6165,2.482,1.0136,1.5495,3.2366,8.6154,2.2618,1.8315,8.2449,1.4645,1.7699,1.6459,9.388,1.3264,2.1346,0.88717,11.3672,4.5521,6.2964,3.2598,8.5211,4.6116,5.9048,4.2566,2.4977,1.166,4.3457,,,,,,,,,,,,,,,66,,,,375
+nG+ROS1T5AD007,1.7205,2.1606,,+80y,AD,,,14.5561,4.1908,2.4339,2.0009,1.4826,edsd,AD,,F,,0.29266,3.2107,3.2557,0.51612,7.3711,1.1382,0.27894,2.2721,2.2076,39.9862,12.2676,174.809,3.0844,3.5075,0.91296,1.4724,2.6506,5.6822,1.4448,2.1047,1.5123,4.8097,8.542,20.4219,5.921,1.7863,3.7306,1.2201,15.3308,4.6049,2.9419,0.94701,2.0706,5.0106,10.4151,2.3704,3.4255,2.7091,1.0839,1.3295,3.3066,8.1084,2.2801,1.9054,9.8791,1.9155,1.8669,1.7673,11.0634,1.685,2.7899,0.88828,12.8727,4.1648,7.2062,2.4503,8.4428,5.6658,5.3712,5.1306,3.3531,1.2325,3.8383,24,,AD,0.06387,,,,0.23863,2.9398,3.102,0.52829,7.907,1.2952,0.28174,2.3947,2.2253,39.9292,11.702,180.321,3.0951,3.5081,0.98201,1.4898,2.8054,5.9779,1.4337,2.2385,1.3804,5.0779,8.5534,19.2048,6.1657,1.6042,3.7048,1.2801,14.6268,3.8656,2.88,0.97928,2.1041,5.6562,9.934,2.3409,3.3985,3.2769,1.0991,1.3457,3.2198,8.3606,2.1394,1.8836,8.3107,1.7183,1.8547,1.6124,10.9701,1.5309,2.742,0.86423,12.8439,4.0352,6.8963,3.3967,8.5249,5.6425,5.5443,5.2322,2.8863,1.2142,3.6911,,,,,,,,,,,,,,,80,,,,376
+nG+ROS1T5AD008,1.6273,2.8848,,+80y,AD,,,18.2541,4.9781,2.9885,2.6456,1.9741,edsd,AD,,M,,0.4002,4.4773,4.3594,0.84623,9.356,1.3355,0.39676,2.6138,2.6821,49.9324,15.2682,200.9291,4.5637,3.8902,1.6055,1.9302,3.2728,7.6441,1.9128,3.1782,0.92258,6.6511,12.1859,28.7946,7.6818,1.9197,4.5869,1.5974,16.0376,5.6946,3.5444,1.0156,2.3741,7.0339,13.2979,3.306,4.4762,3.0456,1.1352,1.4664,4.4398,9.9894,3.37,2.5453,11.3462,2.6666,2.1708,2.3584,11.4284,2.2757,3.7789,1.2935,12.7089,4.7531,8.7912,3.1213,9.8328,7.6438,6.697,7.1314,3.2269,1.8597,4.6501,25,,AD,0.07785,,,,0.38417,3.9769,4.1091,0.97399,9.615,1.6484,0.40055,3.1292,2.8117,50.477,14.2626,203.5624,4.1078,4.7485,1.7997,1.8618,3.3687,7.7073,1.8451,3.721,1.0228,6.4737,12.6256,25.7333,8.7273,1.9676,4.2264,1.5897,16.2688,4.884,3.5438,1.2338,2.6034,7.8204,13.7943,2.8295,4.6353,2.9091,1.4236,1.4961,3.915,10.3175,3.2494,2.4739,10.0384,2.2766,2.1623,2.1183,10.3122,1.8744,3.6373,1.2473,13.0274,5.0514,8.3387,4.0905,9.8015,7.4507,6.5123,7.7968,2.786,1.5494,4.496,,,,,,,,,,,,,,,80,,,,377
+nG+ROS1T5AD009,1.5307,1.6632,,60-69y,AD,,,18.2718,5.5227,2.6402,2.3083,1.3578,edsd,AD,,F,,0.33628,4.0059,3.5351,0.63995,8.1906,1.3116,0.31593,2.9352,2.3977,43.3698,16.4591,212.4724,3.3978,4.0442,1.2714,1.5889,2.9676,6.1736,1.7921,2.5612,0.61403,5.801,9.7291,11.0313,6.9263,2.0765,4.527,1.5387,16.1953,5.1174,3.4719,1.0396,2.4751,6.0788,11.7532,3.1119,3.9476,2.5914,1.2872,1.4418,4.0492,8.9795,2.7595,2.09,10.0379,1.6071,2.164,2.0231,10.2525,1.5349,3.0362,1.0946,12.4278,4.3322,7.3055,3.1844,9.0908,6.018,6.5934,6.4202,3.0491,1.1861,4.7553,24,,AD,0.08825,,,,0.30608,3.7724,3.3296,0.73118,8.8451,1.5121,0.32214,3.3108,2.4722,42.6368,16.2523,221.3597,3.4629,4.6626,1.5275,1.5785,3.1487,6.9003,1.967,2.9698,0.70652,6.2295,10.4915,8.5689,7.4809,1.9381,4.3939,1.6212,16.2808,4.4835,3.4606,0.82125,2.1098,6.8024,12.5326,2.6113,4.0153,2.8089,1.2938,1.4998,4.0167,9.8153,2.7883,2.0597,9.199,1.9867,2.0741,1.8775,10.0402,1.662,3.051,1.054,12.8457,4.5739,7.5731,4.1324,8.1599,6.2019,6.4965,6.8963,2.7421,1.2736,4.5929,,,,,,,,,,,,,,,69,,,,378
+nG+ROS1T5AD010,1.8046,2.2666,,+80y,AD,,,17.8348,4.3332,2.7285,2.1502,1.3246,edsd,AD,,F,,0.33948,4.3446,3.9315,0.61613,8.4948,1.4645,0.32918,2.6577,2.4322,44.4199,14.7858,190.9265,4.1199,4.2478,1.1974,2.028,3.1008,6.5086,1.8384,2.6566,0.83269,6.6913,9.8933,15.6945,6.9152,2.1182,4.7437,1.5775,17.0774,5.6858,3.5912,0.9475,2.3337,6.4263,12.5524,3.0273,4.1686,3.14,1.2952,1.3646,4.2696,10.1787,2.7866,2.2569,11.1711,2.4603,2.1403,2.1287,11.3743,2.0647,3.4479,1.0709,13.6861,5.4187,8.823,3.4472,9.7265,7.1111,6.6977,5.5822,3.5795,1.4745,4.4773,25,,AD,0.07498,,,,0.30555,3.8971,3.7102,0.67461,9.5718,1.5735,0.34224,2.9231,2.4778,45.0844,14.3518,194.9975,3.9442,4.5982,1.2883,1.9338,3.1526,7.2272,1.7646,2.9639,0.7039,6.1605,11.0527,14.2,7.5607,2.0251,4.87,1.593,17.1404,4.631,3.3191,1.1405,2.6301,7.1171,13.5476,2.4897,4.0289,3.3603,1.349,1.4372,3.9639,10.1131,2.6235,2.3326,9.8485,2.1393,2.1342,2.0354,11.246,1.6533,3.5534,1.0616,13.7675,5.1361,8.0795,4.0344,10.5438,6.5102,6.5221,6.406,3.3015,1.4494,4.3188,,,,,,,,,,,,,,,80,,,,379
+nG+ROS1T5AD011,2.8751,2.405,,70-79y,AD,,,18.8058,4.8977,2.3533,2.2446,2.4442,edsd,AD,,M,,0.4164,4.1603,4.442,0.83678,9.4289,1.3887,0.38626,3.2765,2.7829,44.4746,15.7034,226.454,3.8934,4.2425,1.5631,2.0719,3.5254,6.8529,2.0977,2.9317,1.6401,6.0722,10.1719,32.0855,8.1555,2.1378,4.6318,1.7082,17.9085,5.0215,3.6508,1.0867,2.5647,6.6771,13.3558,3.2169,4.3812,3.4064,1.3445,1.7045,4.4716,10.6461,3.0955,2.4979,10.7141,2.3143,2.175,2.3513,11.857,1.9181,3.972,1.2912,14.9559,5.2255,9.1804,3.2556,11.4757,6.9313,7.1651,7.1049,3.5194,1.6703,5.3933,20,,AD,0.09255,,,,0.34798,3.7422,4.2508,0.77148,9.7558,1.4291,0.37721,3.8419,2.742,44.1094,14.8592,222.5126,3.5163,4.2007,1.3855,1.8886,3.3997,6.3506,1.8657,3.2181,2.333,5.7441,9.5523,44.4104,8.3023,1.9358,4.3009,1.5629,15.8963,4.0321,3.3717,1.0456,2.2773,6.9458,12.4183,2.5712,4.1937,3.1325,1.4353,1.7046,3.7654,10.1147,2.7524,2.4574,9.1737,2.0571,2.2016,1.9823,11.531,1.6137,3.7643,1.2135,14.0826,4.8578,7.6297,3.5277,9.7624,6.4612,6.7605,6.8968,3.0513,1.3901,5.1551,,,,,,,,,,,,,,,74,,,,380
+nG+ROS1T5AD012,1.9942,2.9245,,60-69y,AD,,,16.544,4.3441,2.3231,2.1436,1.5455,edsd,AD,,M,,0.37309,4.9564,4.7798,0.74284,7.1824,1.5836,0.37691,2.8373,2.3186,46.7756,14.18,225.9172,4.281,3.5316,1.486,2.1089,3.3412,7.0497,2.054,3.0493,0.98324,5.7635,10.5925,18.833,6.9909,2.4053,4.8171,1.845,17.5596,5.2317,4.0665,1.0127,2.5689,7.0037,12.7179,2.9945,4.012,3.3911,1.5209,1.5847,3.9774,9.8724,3.1977,2.5561,10.7457,2.3182,2.7539,2.4728,12.2405,1.9846,3.2226,1.3117,13.1412,5.2487,7.6417,2.636,9.8547,6.5463,6.8909,7.869,3.7475,1.7926,4.7085,20,,AD,0.09549,,,,0.32367,4.7235,4.6534,0.78023,8.8027,1.8041,0.36839,3.0557,2.2687,45.3684,13.1475,227.9069,3.9162,4.2272,1.557,2.2423,3.6087,6.9727,1.893,3.3077,1.1926,6.077,10.9046,14.7058,7.9894,2.336,5.0101,1.7442,17.3195,4.4676,3.7203,0.98736,2.6087,7.3249,13.5884,2.519,4.1983,3.1401,1.8297,1.597,3.7162,9.763,2.984,2.6482,9.3692,2.0408,2.4477,2.2609,12.4549,2.1011,3.3506,1.1994,14.3506,5.2541,6.883,3.5325,9.4004,6.6412,6.633,7.6076,3.5886,1.7147,4.4743,,,,,,,,,,,,,,,67,,,,381
+nG+ROS1T5AD013,1.9663,1.738,,70-79y,AD,,,18.1318,4.0834,2.4511,2.0528,1.5343,edsd,AD,,M,,0.44442,5.2696,4.9004,0.84559,10.5471,1.8075,0.4116,3.0178,3.0819,45.8179,15.0169,264.2635,4.6948,4.5272,1.9168,2.2728,4.4117,8.2372,2.687,3.2125,0.56028,7.4188,13.168,20.2561,7.3795,2.8413,4.9725,2.3605,22.6366,7.2491,4.6757,1.1874,2.6676,8.2813,15.5508,3.9649,4.698,3.8125,1.8448,1.6229,5.0648,11.9777,3.5296,2.8764,12.6198,3.0844,2.754,2.6651,14.0853,2.4655,4.0042,1.5359,17.4002,5.4671,10.535,3.7987,11.6329,7.6208,8.0618,8.7411,4.4704,1.9738,5.0959,24,,AD,0.09345,,,,0.3806,4.0816,4.6764,0.86543,11.4273,2.1901,0.4058,3.5938,2.969,45.3326,14.6129,267.0388,4.5909,4.8849,1.9619,2.1706,4.9592,8.2978,2.7332,3.52,0.67627,8.2916,12.9346,18.1727,9.9897,2.6568,4.7227,2.3381,21.0876,5.8797,4.5732,1.1392,2.711,9.5842,14.9277,3.7836,5.1473,3.357,1.8723,1.6471,4.683,12.5686,3.2135,2.6198,10.1976,2.8223,2.6906,2.3484,14.1133,2.4074,3.7338,1.5271,16.2499,5.7548,8.3049,5.261,11.7123,7.7947,7.9992,8.7657,4.3254,1.9478,4.7523,,,,,,,,,,,,,,,72,,,,382
+nG+ROS1T5AD014,2.1921,1.9408,,60-69y,AD,,,16.493,4.3048,2.4462,2.0938,1.7697,edsd,AD,,F,,0.43673,5.1973,4.8529,0.74459,8.5735,1.6144,0.40259,3.2669,3.0055,46.8683,13.784,215.5509,4.5869,4.5894,1.4028,2.6485,3.9356,6.1466,2.3382,3.0505,0.87113,6.3159,8.9824,26.4455,7.3401,2.6654,5.2224,1.917,21.1393,5.7884,4.1731,1.02,2.631,7.598,12.0891,3.7792,4.471,3.7138,1.8233,1.6023,4.6003,11.2471,2.868,2.5124,12.7777,2.5265,2.4766,2.3431,15.3695,2.0005,3.8764,1.396,15.8389,5.73,8.1905,3.5781,10.8917,6.6344,7.1699,5.9814,4.7317,1.6615,4.6753,20,,AD,0.08078,,,,0.37235,4.4839,4.3955,0.78849,9.5074,1.9347,0.39466,3.4901,3.1894,45.5968,13.5067,222.5085,4.2485,5.1205,1.4921,2.4777,4.3521,6.5731,2.2355,3.2981,0.88156,6.2356,10.0786,19.8248,8.5193,2.5124,5.1711,1.8679,21.3402,5.1845,4.2627,1.368,3.123,8.3148,12.8081,3.0431,4.2082,4.0166,1.7604,1.6023,4.0853,11.258,2.8008,2.3847,11.0358,1.9709,2.4163,2.0711,13.9036,1.8027,3.8336,1.3276,16.9133,5.7727,7.3979,4.3743,9.9513,6.7251,7.0232,6.4975,4.2534,1.518,4.4392,,,,,,,,,,,,,,,67,,,,383
+nG+ROS1T5AD015,0.93683,1.8003,,60-69y,AD,,,17.8318,4.2232,2.1274,1.9377,0.83177,edsd,AD,,F,,0.4778,4.4953,4.2786,0.8219,8.91,1.7441,0.38576,2.9975,3.1873,42.9947,15.0453,235.0482,3.5921,4.1618,1.5749,2.0414,3.2489,7.1117,2.0366,3.2328,0.49363,6.1547,10.958,10.2416,7.1609,2.558,4.6442,1.8088,19.0645,5.8687,4.2087,1.1569,2.8132,7.0284,13.3618,3.2549,4.3679,3.6787,1.5796,1.5749,4.7197,10.7426,3.0096,2.2769,11.2276,2.4509,2.6802,2.0773,13.3408,2.072,3.3541,1.2137,15.0872,5.5874,8.8826,3.5048,11.1672,6.9201,7.3533,7.0273,3.9851,1.7502,4.7107,23,,AD,0.07715,,,,0.40749,4.1313,4.1279,0.88409,10.0036,1.9226,0.38292,3.6417,3.1693,43.341,14.4105,233.7051,3.975,5.0362,1.7387,2.0494,3.7029,7.3887,2.1171,3.4127,0.52059,6.3217,11.9174,10.8471,7.9649,2.3987,4.4958,1.7549,20.0624,4.5537,4.0186,1.0173,2.7448,7.4767,14.5547,2.4353,4.3479,3.8079,1.5765,1.5478,4.2479,11.55,2.846,2.1817,10.1223,2.1405,2.479,1.9059,12.6519,1.6382,3.3926,1.1929,14.8528,5.0013,8.2128,3.9383,10.0736,6.8531,7.1627,7.8442,3.6747,1.385,4.5448,,,,,,,,,,,,,,,67,,,,384
+nG+ROS1T5AD016,2.0414,1.2763,,70-79y,AD,,,17.2136,4.4435,2.383,2.1958,2.0632,edsd,AD,,F,,0.35654,5.3592,3.9407,0.7267,9.1459,1.5934,0.35492,3.0106,2.8383,42.6489,14.0136,203.9892,4.1394,4.3423,1.4114,1.7612,3.7623,6.775,2.3202,2.6408,0.87676,5.6049,10.6496,27.843,6.5977,2.2619,5.1367,1.8825,21.7198,5.3917,4.1393,1.2119,2.2992,7.5129,12.4328,3.3707,3.8876,3.0539,1.2866,1.4958,4.5241,11.0973,2.6193,2.4487,10.7906,2.2689,2.3132,2.4785,12.5687,2.0576,3.2132,1.3757,15.0623,5.8097,7.7045,3.2142,9.7962,6.628,6.5824,7.3194,3.4999,1.6139,4.6406,25,,AD,0.08167,,,,0.32408,4.7046,3.9127,0.77616,9.6424,1.8656,0.35547,3.1413,3.0232,42.4316,14.0298,210.9773,4.0035,4.7289,1.5072,1.7677,3.8851,6.9815,2.1202,3.005,0.95062,6.3722,10.4518,22.4138,7.5424,2.2103,5.0145,1.7976,19.5017,5.0702,3.9216,1.051,2.3254,8.5314,12.4528,3.1577,4.0705,3.4294,1.4419,1.5633,4.2033,10.8726,2.6368,2.5604,10.2712,2.4199,2.231,2.3361,13.239,2.069,3.3594,1.278,15.3549,5.9981,7.5726,4.2119,9.7314,7.2476,6.4362,7.7492,3.287,1.5964,4.3958,,,,,,,,,,,,,,,72,,,,385
+nG+ROS1T5AD017,1.6611,1.7948,,70-79y,AD,,,17.5521,4.5881,2.469,1.9394,1.509,edsd,AD,,F,,0.34237,4.3656,4.1024,0.6151,7.939,1.3405,0.35155,2.7131,2.5269,41.8891,14.5376,190.3081,3.7952,4.1139,1.1603,1.9849,2.9341,5.9607,1.8571,2.6557,1.4956,5.7125,8.9819,19.7701,6.3846,2.1584,4.1706,1.5352,17.4805,5.6393,3.678,1.0472,2.3819,6.4494,10.6368,3.1413,3.7844,3.4199,1.4448,1.4044,4.1259,8.926,2.7654,2.409,11.1184,2.4379,2.303,2.1931,11.9755,1.7615,3.4816,1.2203,13.9064,5.3443,7.845,3.421,9.5167,5.655,6.4811,6.1755,3.8117,1.4652,4.6392,13,,AD,0.085,,,,0.27858,3.8669,4.0432,0.59385,9.031,1.4708,0.32272,3.0401,2.4563,42.0401,13.5467,187.0741,3.6154,3.9814,1.0996,2.001,3.1832,5.6571,1.7364,2.7967,1.8227,5.5872,8.2296,20.3411,6.9129,1.9371,4.3234,1.4245,17.3302,4.5832,3.3847,0.89567,2.2753,6.6822,9.5444,2.7453,3.5755,3.3829,1.4666,1.4275,3.8912,10.0101,2.4834,2.3548,8.6783,1.8017,2.0081,2.0867,10.9745,1.3738,3.2943,1.0825,13.1937,4.9056,6.6766,3.7382,10.9059,5.0048,6.1767,5.4621,3.3918,1.26,4.3212,,,,,,,,,,,,,,,75,,,,386
+nG+ROS1T5AD018,2.655,3.3151,,70-79y,AD,,,21.9754,4.8017,2.4607,2.1822,1.8157,edsd,AD,,M,,0.42061,4.7119,4.8166,0.77814,9.5107,1.5648,0.41411,3.4106,2.6392,46.9712,16.4765,251.7752,4.4687,4.7361,1.5455,2.1359,3.7495,6.9168,2.3378,3.1956,1.5703,5.5669,10.9412,25.6471,7.4205,2.3374,4.7275,1.984,18.8355,4.9584,4.365,1.3221,2.8102,7.3574,12.7792,3.2347,4.0452,3.3859,1.4893,1.7237,4.4781,10.1091,3.3571,2.8236,11.1943,2.573,2.6625,2.8374,12.6851,2.8074,3.8085,1.4499,14.6977,4.9228,9.4317,3.4882,10.121,7.7574,7.6661,8.3414,3.9321,2.1845,5.7002,8,,AD,0.09881,,,,0.38885,4.2134,4.6231,0.85803,9.9833,1.8632,0.42929,3.7793,3.0005,47.1094,16.0141,260.0396,4.2573,5.1792,1.8121,1.9719,3.8489,8.1226,2.2531,3.6189,1.1632,6.5681,13.1683,22.1314,8.5381,2.3552,4.827,1.9961,17.3005,4.7661,4.2061,1.0614,2.7165,7.8857,16.2228,2.9069,4.4028,3.4459,1.6473,1.7789,4.1851,10.6296,3.3377,2.602,10.2031,2.4994,2.7136,2.5679,13.5707,2.1807,3.7689,1.4049,16.0886,5.2991,8.2093,4.0864,9.6149,7.8023,7.5697,9.0227,3.5129,1.7003,5.4789,,,,,,,,,,,,,,,71,,,,387
+nG+ROS1T5AD019,1.4436,1.5609,,70-79y,AD,,,14.3356,3.7344,2.1048,1.8688,1.6237,edsd,AD,,F,,0.32916,3.5295,3.9087,0.67601,7.2062,1.3804,0.32224,2.4132,2.2522,37.8398,11.9258,165.6806,3.5732,3.3383,1.3345,1.6433,2.8665,5.7889,1.6765,2.6841,0.85944,4.56,8.6348,25.111,5.4669,2.0345,3.7509,1.3769,17.0924,4.7761,3.3491,0.92597,2.285,5.8422,10.0357,2.5273,3.1932,2.5717,1.094,1.2571,3.3631,8.7818,2.5695,2.133,9.6605,1.9811,2.0158,1.8969,10.6331,1.7153,3.1596,1.0459,14.1173,4.4672,7.2704,2.717,8.881,5.4729,5.319,6.0729,2.8132,1.284,3.9038,21,,AD,0.07921,,,,0.32836,3.222,3.8416,0.72047,9.1675,1.4324,0.3312,2.5118,2.5007,37.0575,11.3372,170.1503,3.6484,3.6838,1.4662,1.8551,3.1985,6.251,1.5746,2.8764,0.70902,5.8496,10.2767,14.9221,6.1482,1.9543,3.6723,1.3567,16.147,4.6196,3.0863,0.95698,2.2617,6.5291,12.5317,2.4047,3.5763,3.3267,1.3361,1.2833,3.2118,9.4355,2.5116,2.151,7.8857,1.7461,2.0082,1.7033,10.0863,1.4755,3.2533,0.96674,12.8483,4.4575,6.092,3.9136,9.7252,5.9959,5.3503,6.9312,2.8492,1.1585,3.674,,,,,,,,,,,,,,,79,,,,388
+nG+ROS1T5AD020,1.7097,2.0278,,70-79y,AD,,,19.3443,5.3587,2.9434,2.5213,1.6015,edsd,AD,,M,,0.48779,5.2595,4.607,0.87073,11.1179,1.8239,0.42742,3.8466,3.251,52.2641,15.7609,245.8619,4.6612,5.2862,1.7888,2.0581,4.2753,7.9502,2.4508,3.3827,0.65958,6.7564,12.3874,20.7198,8.7069,2.8718,5.8325,2.2429,22.2924,7.1985,4.6179,1.048,2.9164,8.4238,15.6892,4.1036,4.788,3.7671,1.7417,1.7332,5.4284,12.6692,3.5072,2.5747,13.853,2.5593,2.9372,2.5953,13.257,1.8968,4.806,1.4254,18.842,6.6482,9.081,4.7905,13.9386,7.3194,7.8413,8.4546,4.4532,1.6798,5.0564,26,,AD,0.08788,,,,0.44771,5.2074,4.6571,0.88765,12.4061,1.9587,0.44588,3.7986,3.2801,52.246,16.1786,247.676,4.8629,5.1616,1.8383,2.3292,4.3523,7.9899,2.4457,3.5553,0.82291,6.9693,12.2567,16.9311,9.3788,2.4591,5.8995,2.1531,21.6581,6.0089,4.4122,1.3914,3.1132,9.1265,16.6756,3.2264,4.9467,4.3609,1.8499,1.7566,5.0546,12.4279,3.2563,2.5151,11.3623,2.4819,2.6564,2.2269,14.2536,1.9339,4.6811,1.3871,17.2871,6.2438,8.5548,4.7824,12.2404,8.3126,7.7882,8.8428,4.5598,1.6691,4.7776,,,,,,,,,,,,,,,73,,,,389
+nG+ROS1T5HC001,1.4694,2.0764,,60-69y,CN,,,15.5866,4.7154,2.4515,2.2339,1.6097,edsd,CN,,M,,0.39444,5.3274,4.5297,0.80084,10.1,1.5261,0.41104,2.1018,2.4605,44.7677,13.82,192.0511,4.6042,3.7091,1.5806,2.1696,3.5574,8.0186,2.0751,3.0452,0.62222,6.8881,11.3744,17.7235,7.0399,2.5384,5.3086,1.8622,18.3586,5.9325,4.0139,1.101,2.4567,7.3773,13.9603,3.0863,4.5236,3.4033,1.6605,1.3175,4.7152,11.0417,3.2946,2.416,10.9446,2.6345,2.5611,2.3748,13.4129,2.3352,3.5257,1.3507,13.949,5.3741,9.0978,2.9222,10.2535,7.8018,6.4724,7.5783,4.191,1.814,4.24,28,,,0.07213,,,,0.32552,4.4387,4.2007,0.83645,10.4915,1.8194,0.38027,2.76,2.5579,44.2265,13.1032,195.029,4.3899,4.7084,1.7166,2.1334,3.6965,7.8887,2.1424,3.2427,0.66814,6.6711,11.9638,17.0008,8.0041,2.406,4.8757,1.7941,18.2185,5.1077,3.97,1.1424,2.4436,8.6305,14.3888,2.4321,4.3761,3.2229,1.7189,1.3174,4.0449,11.5494,3.0705,2.5021,10.5252,2.2788,2.3189,2.2072,11.4997,2.0349,3.4247,1.2068,15.3456,5.6541,8.0471,3.8563,9.6541,7.2628,6.1974,8.0592,3.8343,1.6766,4.0058,,,,,,,,,,,,,,,65,,,,390
+nG+ROS1T5HC002,1.1751,2.1387,,70-79y,CN,,,19.8097,4.6608,2.782,2.2621,1.5549,edsd,CN,,F,,0.43648,5.2956,4.5632,0.98008,10.1742,1.7295,0.40312,2.8059,2.9921,48.2509,16.0108,253.8471,4.0826,4.4212,1.859,2.0304,3.9438,8.0058,2.2618,3.3216,0.46701,6.2247,11.8025,10.939,7.3579,2.611,5.4779,2.0045,20.4062,6.2414,4.2481,1.2966,2.5948,7.5977,14.8265,3.3159,4.1536,3.34,1.606,1.753,4.4419,11.041,3.3871,2.575,12.6904,2.5471,2.5654,2.5596,12.5849,2.0881,3.8762,1.1943,15.1221,5.7074,9.6666,3.2416,10.7882,7.3592,7.6457,8.0938,4.0113,1.7839,5.2117,30,,,0.08055,,,,0.40473,4.6799,4.2834,0.94335,10.6342,1.9153,0.39525,2.9254,2.9065,46.3204,15.3319,256.5174,4.1051,4.6672,1.8751,1.9307,4.1304,7.6561,2.3816,3.4471,0.38238,6.2807,11.3129,9.9975,7.7691,2.2754,5.0773,2.0804,19.4145,5.0089,4.2119,1.1224,2.8408,8.359,14.7468,3.0109,4.2554,3.6352,1.4561,1.7878,3.9393,10.6949,3.0379,2.5876,10.5847,2.2924,2.4149,2.3544,12.6388,2.0567,3.7933,1.2072,16.3539,6.0458,8.3309,4.27,10.994,7.9287,7.3645,8.5225,3.4275,1.5361,4.9581,,,,,,,,,,,,,,,71,,,,391
+nG+ROS1T5HC003,1.527,2.2414,,60-69y,CN,,,22.1157,4.8961,3.0709,2.3697,1.3304,edsd,CN,,M,,0.45025,5.6461,4.6767,1.0069,9.3956,1.9521,0.43463,3.5281,2.9302,50.4743,17.6952,289.5558,4.7194,4.3323,1.7658,2.3755,3.7524,7.7174,2.1405,3.5729,0.58997,6.7247,12.167,18.7588,7.4859,2.9018,5.2025,2.1174,22.995,6.2585,4.5732,1.1983,2.8057,8.0272,15.1511,3.7877,4.8644,4.1135,1.6495,1.7804,5.0967,11.4003,3.2491,2.3462,12.7437,2.6713,3.0912,2.3949,14.0366,2.1182,4.2053,1.3596,15.864,6.1416,9.0905,3.4209,11.5268,7.6646,8.5587,7.6055,4.5087,1.8178,5.7298,29,,,0.08487,,,,0.39812,4.4632,4.7992,1.0478,10.5609,2.048,0.43084,3.6609,2.9081,50.395,16.8651,295.4615,4.4272,5.2292,1.9785,2.4494,3.7273,7.8411,2.0203,4.0327,0.80688,7.3665,12.3948,14.5829,9.1257,2.6087,4.8944,1.9892,21.2925,5.3864,4.1489,1.0222,2.7471,8.5647,15.3602,3.1072,5.0772,4.4008,1.8216,1.8043,4.9277,12.654,3.2833,2.3071,10.4511,2.6122,2.952,2.2008,13.4439,2.2245,4.0707,1.2925,17.274,5.7054,8.488,4.4156,11.866,7.6908,8.1433,8.5122,4.0003,1.6556,5.5358,,,,,,,,,,,,,,,60,,,,392
+nG+ROS1T5HC004,1.251,2.384,,60-69y,CN,,,22.4176,5.0304,2.9675,2.2352,1.2586,edsd,CN,,M,,0.48445,5.3928,4.2912,0.96487,11.0348,1.7476,0.43406,3.1103,2.9785,54.1574,17.3212,247.8442,4.5022,5.1469,1.9961,2.2077,3.7717,8.2358,2.3516,3.4736,0.43966,6.0727,12.5923,9.6637,7.5759,2.6404,5.7283,2.1308,21.3202,6.3692,4.3599,1.3617,3.0387,7.7965,16.0116,3.1518,4.7023,3.6231,1.6983,1.7408,5.0378,12.5599,3.5841,2.2395,14.5135,2.7908,2.6119,2.3091,13.344,2.1236,4.0945,1.3398,16.3563,6.0604,10.2393,3.7481,11.7076,8.3879,8.2819,9.2731,4.2668,1.5651,5.3992,28,,,0.08763,,,,0.4192,4.2812,4.4282,0.89923,11.4729,2.0388,0.4264,3.1256,2.9277,54.2284,16.7807,251.8469,5.0674,5.2542,1.9148,2.325,3.9948,8.6418,2.4357,3.5258,0.48523,7.4056,12.6225,9.0514,8.1104,2.7614,4.8834,2.1551,21.4875,5.9963,4.2825,1.435,3.3604,9.411,15.2482,3.1121,4.6395,4.4141,1.7894,1.7723,4.3351,12.422,3.1107,2.4674,12.8155,2.5551,2.6084,2.1355,14.1164,2.1358,4.0788,1.2963,17.0002,6.5781,9.5451,4.4673,11.0173,8.2011,7.861,8.3874,3.9441,1.6095,5.044,,,,,,,,,,,,,,,66,,,,393
+nG+ROS1T5HC005,1.1935,2.9028,,70-79y,CN,,,18.4232,5.0798,2.5833,2.2423,1.148,edsd,CN,,M,,0.40203,4.4341,3.8384,0.87555,9.9061,1.7945,0.36067,3.0054,2.6413,52.9837,16.3663,252.3158,4.0472,4.2406,1.6786,2.0867,3.5218,8.6136,2.0553,2.956,0.55086,7.2986,12.3279,13.1091,8.1669,2.7542,4.9662,1.8453,19.7118,5.9594,3.9861,1.3169,2.8842,6.8344,13.8303,3.9531,5.1469,3.7879,1.6781,1.5725,4.3267,10.0918,3.3641,2.1538,11.9307,2.4724,2.5996,2.2904,12.3437,2.3907,3.6548,1.1584,15.0032,5.388,9.9347,3.772,12.6052,7.801,6.9347,8.4928,4.2163,1.7801,4.7913,29,,,0.06854,,,,0.34448,4.0656,4.1578,0.8495,10.5805,1.9409,0.38207,3.1614,2.5547,52.4901,16.1122,255.5603,4.055,4.7789,1.6851,2.0899,3.9362,8.5371,2.1363,3.1602,0.5503,7.5573,12.5933,15.4596,8.8272,2.5749,4.8625,1.8973,20.8946,5.7287,3.8968,1.0921,2.9697,7.8255,13.9325,3.3871,4.9265,3.6151,1.7339,1.5787,3.8233,10.5799,2.9475,2.2249,11.0441,2.3964,2.4489,2.1402,13.5061,2.0277,3.5548,1.1589,15.2906,5.3077,8.1468,4.5338,12.1353,7.2129,6.9742,8.2108,3.975,1.6302,4.5649,,,,,,,,,,,,,,,71,,,,394
+nG+ROS1T5HC006,2.5429,2.2419,,70-79y,CN,,,16.1262,5.3923,1.2793,2.1787,1.6256,edsd,CN,,M,,0.4186,5.027,4.1686,0.8502,9.2691,1.8123,0.40169,3.2168,2.6721,26.488,11.9306,237.6217,4.5149,5.1317,1.7304,1.9671,3.5514,7.7465,2.2066,3.1767,0.86279,6.6257,12.6597,20.8007,8.0205,2.5785,5.0779,1.9469,21.4013,6.3027,4.4766,1.2664,2.775,7.3116,14.5309,3.2917,4.6005,3.7346,1.5317,1.7354,4.9304,11.3723,3.3515,2.2443,12.9365,2.2754,2.7957,2.3359,14.8469,2.017,3.5983,1.3407,15.6758,6.056,8.7474,3.7508,10.7001,7.9303,7.1507,8.5195,4.0109,1.5727,4.9825,27,,,0.08777,,,,0.39339,4.3489,4.166,0.83864,10.7538,1.9533,0.39793,3.6393,2.6524,26.9492,12.0168,236.2134,3.9303,5.2497,1.7555,2.2065,3.8484,7.7152,2.0146,3.4092,1.0505,7.2824,12.3094,18.5472,9.0216,2.6066,4.9646,1.8926,20.5995,5.2401,3.8739,1.2187,2.8666,8.9934,16.7309,2.779,4.7909,3.8209,1.7694,1.682,4.2545,11.7976,3.145,2.2028,10.979,2.4618,2.5828,1.9393,13.6313,1.9948,3.6109,1.2428,17.322,6.1867,8.5987,4.1453,11.6259,8.2265,6.9078,8.5438,4.0822,1.5062,4.7054,,,,,,,,,,,,,,,72,,,,395
+nG+ROS1T5HC007,1.8962,2.4455,,60-69y,CN,,,20.1618,5.6612,3.0942,2.6479,1.2255,edsd,CN,,M,,0.4713,5.8186,4.8085,0.99325,10.6139,1.8454,0.42014,3.3737,2.9926,54.4207,17.6,252.5573,4.4329,5.6454,1.9511,2.3582,4.1928,8.4139,2.4964,3.4241,0.6351,6.837,14.1385,15.9618,7.7111,2.7182,6.0349,2.1738,21.8414,6.4231,4.5667,1.3127,2.9477,8.5037,16.8572,3.9248,4.5567,3.481,1.7193,1.6675,4.9147,11.6244,3.5245,2.5927,12.9495,2.2081,2.6057,2.6396,13.2651,1.8785,4.1462,1.3219,15.1686,5.811,9.5109,3.5177,11.324,7.5069,7.4395,9.5572,4.3462,1.5662,5.2364,28,,,0.09106,,,,0.37414,5.0313,4.6922,0.96245,11.0596,1.9744,0.40369,3.2672,3.0661,54.8997,17.3021,255.5904,4.6043,5.5107,1.8042,2.4361,4.244,8.5003,2.3828,3.6778,0.60141,8.2375,13.5794,12.814,8.6827,2.4049,5.7194,2.0711,21.3816,5.9957,4.3394,1.2171,2.6537,9.0482,16.6257,3.7195,5.0778,3.8184,1.745,1.6165,4.6463,12.6383,3.2168,2.8499,11.4189,2.3301,2.3616,2.5633,12.7329,2.0492,4.0851,1.2792,16.0237,6.1303,8.9082,4.3393,10.8166,7.9211,7.2696,9.1086,4.1574,1.6618,4.8613,,,,,,,,,,,,,,,61,,,,396
+nG+ROS1T5HC008,1.3944,1.2513,,70-79y,CN,,,16.1426,4.6417,2.3656,2.2946,1.3728,edsd,CN,,F,,0.40995,4.5304,3.9851,0.88935,9.0663,1.6265,0.38957,2.9169,2.7962,45.4621,13.5865,212.866,4.2281,4.4389,1.7252,1.8781,3.5507,7.5174,2.129,3.0577,0.44755,6.0644,11.9897,12.7084,7.5859,2.4024,4.9383,1.8261,19.3029,6.047,4.1917,0.91745,2.4963,6.8634,14.4012,3.3102,4.2052,3.2415,1.5149,1.3672,4.5808,10.7532,3.0676,2.3193,11.7807,2.4722,2.5627,2.3454,12.4411,2.0129,3.8067,1.235,14.8706,5.0501,8.7812,3.6876,11.8903,7.1216,6.2847,7.8874,3.5923,1.8361,4.2268,29,,,0.07562,,,,0.3667,3.8507,3.8245,0.92165,10.0996,1.8186,0.38596,3.2222,2.8092,40.2222,12.807,214.4228,3.9493,4.6917,1.7835,1.9782,3.7308,7.894,1.9718,3.3221,0.5856,6.8316,11.5909,9.3245,8.3185,2.2386,4.3218,1.7208,18.1561,5.4516,3.9408,1.0943,2.4385,7.7678,13.8343,2.8753,4.4102,3.3648,1.6128,1.3677,4.0614,10.4193,2.9695,2.3396,10.0542,2.4464,2.5713,2.0388,11.5031,2.0754,3.5273,1.1784,14.8003,5.4666,7.6318,4.4996,10.754,7.1523,6.1682,7.8081,3.4326,1.6819,4.1206,,,,,,,,,,,,,,,75,,,,397
+nG+ROS1T5HC009,1.5061,2.5699,,70-79y,CN,,,19.1869,4.2516,2.493,2.021,1.0849,edsd,CN,,F,,0.40187,4.1909,3.9006,0.92263,9.289,1.6037,0.38394,3.1139,3.2956,49.0781,14.9754,234.3725,3.9223,4.3969,1.77,1.8616,3.3603,7.7173,2.1124,3.1863,0.48943,6.3284,11.5102,15.6225,7.0848,2.3268,4.5467,1.7975,17.3332,6.0122,4.0925,1.073,2.6667,6.583,13.9335,3.1118,4.3142,2.9831,1.4118,1.6339,4.2383,10.0223,3.3362,2.3771,12.2803,2.4531,2.4218,2.1608,12.6558,2.1118,3.9026,1.1446,15.3062,5.2323,8.757,3.7717,10.5792,7.0818,7.8519,7.3997,3.2322,1.709,5.1621,29,,,0.0767,,,,0.39192,3.8445,3.7288,0.86623,11.1169,1.7778,0.39318,3.0636,3.5965,47.362,14.5116,237.8669,3.7866,4.3404,1.666,1.8491,3.6085,7.3445,2.1591,3.3065,0.59421,6.3441,11.0364,16.9137,7.6085,2.2584,4.5922,1.7998,17.2194,5.7455,4.0038,1.1739,2.8354,7.5207,14.5429,2.8065,4.0865,3.307,1.4692,1.6668,3.9089,10.3551,2.9001,2.1812,10.3561,2.2513,2.421,1.8633,12.3605,1.928,3.8725,1.1537,14.7075,5.193,7.8018,3.9771,10.6498,7.2986,7.5791,7.1644,3.33,1.573,4.8753,,,,,,,,,,,,,,,71,,,,398
+nG+ROS1T5HC010,0.98083,1.9381,,60-69y,CN,,,18.0166,4.5422,2.4458,2.1777,1.0818,edsd,CN,,F,,0.46211,4.2164,4.0577,0.80335,8.1165,1.616,0.37921,2.6903,3.2867,43.9517,14.4657,239.0348,3.8252,3.8832,1.4976,1.8585,2.8584,6.8223,2.0293,3.0496,0.50993,5.9188,10.6809,14.0786,6.7447,2.4574,4.2561,1.678,18.6921,5.2227,4.0194,1.0727,2.6782,6.3499,12.9054,3.5556,4.1614,2.8897,1.5343,1.6542,4.1234,10.5432,3.0421,2.0921,9.8186,2.1097,2.4615,1.9086,11.7327,1.6694,3.8729,1.1818,12.7444,5.1526,8.2094,3.7429,11.4096,5.7033,7.0953,7.1746,3.3848,1.4537,4.701,29,,,0.07952,,,,0.42838,3.6152,4.1032,0.85179,9.0647,1.7764,0.37701,2.9744,3.4062,44.3271,13.8128,242.5288,3.573,4.4789,1.5735,2.1879,3.3516,6.9415,2.08,3.2688,0.51853,5.5253,10.7078,11.4639,7.5364,2.2323,4.1164,1.7361,19.3284,4.0521,3.8323,1.0106,2.4806,7.1215,13.5985,2.5522,3.6371,3.3685,1.6273,1.6629,3.7472,10.4938,2.8232,2.045,9.0917,1.9221,2.3352,1.737,10.9804,1.5543,3.6811,1.1622,13.516,4.9428,7.2241,4.4664,10.6544,6.3043,6.8462,7.4567,3.7811,1.194,4.4939,,,,,,,,,,,,,,,67,,,,399
+nG+ROS1T5HC011,1.3845,1.6251,,70-79y,CN,,,18.213,4.5216,2.7068,2.0783,1.0956,edsd,CN,,F,,0.44711,4.4354,3.9611,0.84425,8.957,1.4936,0.40007,2.666,2.8656,45.5447,15.24,223.8198,3.8455,3.9248,1.6256,1.6895,3.3108,7.1825,2.066,3.0423,0.40647,6.5748,11.7204,13.8198,6.8615,2.3745,4.708,1.653,19.3072,5.9727,3.8976,1.0964,2.5365,6.4512,13.9179,2.8953,3.9398,3.3972,1.4613,1.5046,4.211,10.0677,3.0361,2.3589,11.6123,2.354,2.4606,2.295,12.3791,1.8886,3.6077,1.2546,14.8167,5.2493,8.6561,3.1136,10.1991,7.3659,7.3654,7.42,3.8183,1.5672,4.701,28,,,0.08328,,,,0.38364,3.8443,3.7949,0.82649,9.6815,1.7091,0.395,2.9646,2.816,45.1156,14.6141,227.1472,3.667,4.032,1.6187,1.9109,3.4477,7.133,1.9964,3.2027,0.50735,7.044,11.1322,11.259,7.4187,2.2825,4.6016,1.7021,18.7798,5.289,3.7853,1.1168,2.6624,7.1901,14.1938,2.9069,4.4569,3.2705,1.5898,1.5167,3.7107,9.5387,2.754,2.2847,9.2722,2.0941,2.4218,2.0277,12.4333,2.1068,3.5454,1.1812,14.7709,5.1911,7.4967,4.1329,10.6014,8.0635,7.0223,7.4136,3.757,1.5601,4.4537,,,,,,,,,,,,,,,70,,,,400
+nG+ROS1T5HC012,1.4415,1.6845,,70-79y,CN,,,18.2485,4.3222,2.399,2.1071,1.3123,edsd,CN,,F,,0.38264,4.3819,4.0759,0.79104,8.5673,1.4046,0.37157,2.5086,2.5391,45.2649,15.7193,234.1957,3.8617,3.651,1.5151,1.7596,3.3668,6.9801,1.9134,3.0188,0.53379,6.3151,10.6652,12.636,6.4468,2.0127,4.734,1.6915,17.4131,6.1169,3.7618,0.93192,2.0641,6.1395,13.2978,3.1367,4.0669,2.7667,1.1638,1.4805,4.2258,9.4214,3.139,2.324,10.3232,2.1324,2.2928,2.1536,12.0433,1.6572,3.3576,1.2082,13.2583,4.7155,7.8741,3.0225,9.5962,6.6717,6.4523,7.0025,3.082,1.2325,4.6755,29,,,0.08044,,,,0.34399,4.0376,3.6161,0.79481,9.8043,1.5538,0.36352,2.6981,2.4689,45.0054,15.384,237.2557,3.5002,3.9735,1.555,1.694,3.2279,6.8047,1.8787,3.19,0.53477,5.7668,10.2878,10.9143,7.5911,2.0685,4.554,1.6125,17.1221,5.1637,3.6114,0.93612,2.5773,6.9244,14.2384,2.4907,4.0328,2.755,1.2343,1.4855,3.7293,9.124,2.8215,2.1184,9.3026,1.6549,2.2056,1.8506,11.8479,1.3884,3.2631,1.1638,12.9203,4.8559,6.7607,3.9162,9.8461,6.5968,6.1679,6.8298,3.1005,1.15,4.4495,,,,,,,,,,,,,,,73,,,,401
+nG+ROS1T5HC013,1.0758,1.7459,,70-79y,CN,,,17.9951,4.5531,2.4133,2.0566,1.1103,edsd,CN,,F,,0.38904,4.1208,3.6465,0.74775,8.2294,1.4127,0.38703,1.9387,2.3667,45.4069,14.8204,204.0734,3.5026,3.3427,1.5145,1.7573,3.0312,6.6064,1.9552,2.8535,0.40205,5.9258,9.8419,13.6102,6.3457,2.1152,4.7366,1.5699,17.2491,5.6198,3.9433,1.0747,2.4209,6.1907,12.256,2.5224,3.9682,2.9926,1.2491,1.4035,4.0256,9.2995,2.9473,2.0748,9.6645,2.03,2.2758,2.0571,10.4154,1.8612,3.6953,1.2159,13.8567,4.608,7.8799,2.8539,8.9107,7.1869,6.6506,6.8223,3.2268,1.4283,4.5315,28,,,0.07514,,,,0.33694,3.4618,3.7264,0.76768,9.2715,1.6977,0.38263,2.272,2.4491,44.1686,14.1835,207.6328,3.1699,3.6786,1.49,1.7505,3.2442,6.9756,1.9155,3.0977,0.37962,5.1472,10.1663,10.7726,6.7914,2.12,4.624,1.5451,16.9559,4.2523,3.5397,1.0793,2.5015,6.8938,12.9202,2.0316,3.7802,2.9137,1.3858,1.4046,3.862,9.3632,2.7841,2.1229,8.7594,1.6664,2.0896,1.8687,10.3295,1.647,3.7678,1.1062,13.6325,4.9239,7.3572,3.0945,9.5659,6.3764,6.5266,7.0838,3.2715,1.2537,4.2859,,,,,,,,,,,,,,,73,,,,402
+nG+ROS1T5HC014,2.5243,2.5434,,70-79y,CN,,,19.4836,4.7388,2.6407,2.2414,2.1649,edsd,CN,,M,,0.39642,4.4643,4.9404,0.84337,8.8732,1.4319,0.38727,2.9745,2.8398,47.6442,15.5424,231.6862,4.3737,4.1745,1.502,2.169,3.4626,7.2602,2.0807,3.2824,1.7079,6.8921,11.2543,40.6739,7.0703,2.3699,4.5241,1.902,17.4076,6.4098,3.8039,1.0397,2.4481,6.833,13.1288,4.0712,4.1489,3.0642,1.5144,1.754,4.8286,11.2225,3.0474,2.9735,10.25,2.8394,2.4347,2.5891,11.0473,2.4649,4.0015,1.3691,13.5638,5.3058,8.3587,3.3147,9.6688,7.0429,7.4497,7.097,3.8601,2.259,5.2072,29,,,0.06528,,,,0.36748,4.001,4.6043,0.86274,10.0504,1.7255,0.39605,3.4035,2.8857,48.2744,15.4842,231.8648,4.1853,5.5947,1.5809,1.9812,3.4718,7.5488,1.9065,3.3649,1.6411,5.5486,11.64,30.6841,8.8586,2.3363,4.3593,1.7567,17.9957,4.2038,3.6733,1.0518,2.4686,7.5136,13.5871,2.6285,4.453,2.8235,1.6807,1.7547,4.2319,11.7594,2.8052,2.7133,8.8302,2.4205,2.4355,2.2516,11.3666,2.1804,3.867,1.2564,13.5067,5.2648,8.3454,3.7939,10.2738,7.6891,7.122,7.1688,3.4165,1.7921,4.9783,,,,,,,,,,,,,,,75,,,,403
+nG+ROS1T5HC015,0.91006,1.9037,,70-79y,CN,,,16.1622,4.2701,2.296,2.0895,0.87039,edsd,CN,,F,,0.42802,4.4614,4.317,0.79086,9.8121,1.4604,0.3938,2.4546,2.6066,43.3422,13.5481,207.8898,4.1343,3.6445,1.6036,2.0503,3.1772,6.9574,2.0115,3.0014,0.39307,6.0503,10.95,10.7903,6.533,2.2419,4.4569,1.7522,19.0436,5.7527,3.8194,1.0646,2.6416,6.8896,14.599,2.7676,3.9968,3.5732,1.4998,1.4245,4.0189,9.5155,3.1477,2.1874,11.6679,2.144,2.341,2.1981,11.9453,1.9032,3.4931,1.2324,14.7205,5.5878,9.4901,3.2399,10.1685,7.7327,6.6927,7.4638,3.876,1.507,4.2817,29,,,0.07325,,,,0.33871,3.494,4.174,0.8021,11.5015,1.519,0.37594,2.7307,2.5314,44.4358,13.0955,209.1347,3.8081,3.9068,1.6672,2.0643,3.3608,7.7075,1.9853,3.183,0.47469,6.0062,11.5048,11.1899,7.42,2.038,4.4357,1.7475,18.8515,5.4042,3.5454,1.1689,2.6103,7.6933,14.7577,2.3955,4.354,3.4705,1.572,1.4081,3.8557,9.4884,3.0009,2.4135,10.0021,2.027,2.1151,2.033,12.197,1.6375,3.2579,1.1538,14.18,5.1829,7.1919,3.977,10.3903,6.7222,6.5152,7.0906,3.6933,1.4588,4.0593,,,,,,,,,,,,,,,71,,,,404
+nG+ROS1T5HC016,1.6203,1.7982,,70-79y,CN,,,19.6162,4.4525,2.6867,2.174,1.246,edsd,CN,,F,,0.41094,4.5299,4.0341,0.80252,9.2074,1.5756,0.36673,3.2515,2.8472,49.7581,16.505,236.611,3.8341,4.5713,1.5804,1.8592,3.1892,7.2397,1.9945,3.1365,0.45743,6.36,12.0185,15.3692,7.0238,2.2879,4.6044,1.7026,17.9409,5.5959,3.9961,1.0076,2.2115,6.9141,15.5411,3.5645,4.4969,3.2415,1.2838,1.5849,3.9076,9.6351,3.0676,1.9991,11.7391,2.1131,2.3817,2.0488,13.0261,1.8478,3.6223,1.1747,15.4411,5.2108,9.1709,3.4169,10.1367,7.7066,7.2195,7.8138,3.6608,1.3337,4.9872,29,,,0.09281,,,,0.34365,4.0142,3.9055,0.80711,10.0299,1.7233,0.3541,3.2433,2.7232,49.9101,16.0736,238.7635,3.821,4.8058,1.5703,2.0197,3.4137,7.5501,1.8764,3.3454,0.58387,6.2791,12.309,11.703,8.1373,2.0395,4.5246,1.6264,17.3403,4.8127,3.6345,0.93798,2.4037,7.2652,14.9677,3.0013,4.6824,4.09,1.3612,1.5714,3.8449,9.9958,2.8671,2.0447,10.533,2.01,2.2637,1.8819,12.1733,1.8938,3.5546,1.09,14.5954,5.1068,8.8382,4.4534,10.5219,8.0088,6.9328,7.5089,3.2982,1.3263,4.6503,,,,,,,,,,,,,,,72,,,,405
+nG+ROS1T5HC017,1.3317,2.6417,,60-69y,CN,,,15.9099,4.0268,2.0572,1.7958,0.94521,edsd,CN,,F,,0.37096,4.2006,3.6338,0.80394,8.7883,1.4061,0.34747,2.7953,2.3391,42.7712,13.0015,194.1091,3.4296,3.7017,1.5459,1.7621,3.2457,6.9648,1.9862,3.129,0.52592,6.1018,10.0447,8.8317,6.423,2.0892,4.1746,1.7359,17.2447,6.2887,3.5098,1.0092,2.1265,6.5146,13.3602,2.9202,3.9303,2.9939,1.37,1.315,3.8357,9.1904,3.0109,2.0623,11.0258,2.2208,2.0089,2.1408,10.7072,1.7918,3.5573,1.0628,13.0419,5.189,8.2238,3.0325,9.14,7.1959,6.5387,6.8696,3.6177,1.4648,4.2826,28,,,0.07786,,,,0.32621,3.525,3.4448,0.8509,10.396,1.6289,0.35716,2.8482,2.3362,43.8019,12.8616,197.8048,3.3712,4.3497,1.6064,1.8087,3.5199,7.3746,1.9686,3.3659,0.62914,6.1716,10.9484,7.1317,7.2475,1.9363,4.351,1.6433,16.3854,5.249,3.4608,0.89907,1.9986,7.2797,13.2445,2.2015,4.0096,3.3793,1.3675,1.3693,3.5451,9.3981,2.8535,2.1241,9.0724,1.9874,1.9175,1.9056,10.9514,1.8749,3.2747,1.0058,13.5211,4.9908,7.5884,3.707,8.9606,7.4978,6.3908,7.0546,3.2264,1.4273,4.105,,,,,,,,,,,,,,,65,,,,406
+nG+ROS1T5HC018,1.4677,1.8126,,60-69y,CN,,,13.3723,3.4172,2.1231,1.9186,1.1862,edsd,CN,,M,,0.37441,4.4758,4.1434,0.83207,8.9214,1.5206,0.37607,3.0867,2.5626,37.811,11.7116,205.4184,4.1638,4.7757,1.671,2.0207,3.2423,6.9936,2.012,2.8613,0.41712,6.3167,11.3663,11.4972,6.5829,2.3807,5.0687,1.6422,19.4124,5.9184,4.074,1.0315,2.4243,6.4971,13.5582,3.2254,4.0093,3.3582,1.554,1.2568,4.2633,10.7938,2.9568,2.1286,11.2429,2.309,2.4171,2.3492,12.5277,1.9657,3.6592,1.1778,14.2289,5.3553,8.3346,3.1956,11.1494,7.4312,6.3845,7.4731,3.4175,1.5103,3.96,27,,,0.06589,,,,0.33456,4.0313,4.0089,0.81161,9.3977,1.6576,0.38368,3.1163,2.5652,37.3972,10.8603,207.8475,3.6724,4.5913,1.6677,2.1614,3.1709,7.3344,1.8698,3.0354,0.48196,6.2715,11.3876,10.7542,7.378,2.1928,5.0936,1.5318,19.0364,5.1762,3.7885,1.1716,2.7041,7.1428,13.9134,2.5746,3.8946,3.8414,1.5509,1.3054,3.883,10.3332,2.7925,2.0946,10.3026,2.1869,2.3214,2.004,12.0085,1.8701,3.4401,1.1517,13.9443,5.6586,8.0063,3.7279,9.7519,7.5744,6.1141,7.6642,3.2917,1.4206,3.8544,,,,,,,,,,,,,,,68,,,,407
+nG+ROS1T5HC019,1.5343,2.2987,,60-69y,CN,,,15.4248,4.5422,2.0473,2.1196,1.2727,edsd,CN,,M,,0.47854,4.8432,4.0614,0.91774,9.5449,1.6423,0.38702,3.0346,3.1461,29.3947,12.7157,245.8349,4.352,4.7009,1.7886,2.092,3.662,8.1847,2.1645,3.4515,0.57533,6.4983,11.6051,13.4763,7.8393,2.553,5.3246,1.8811,21.0104,6.9378,3.9287,1.0978,2.5842,7.1976,14.6139,3.7074,4.8176,3.8011,1.6565,1.5693,4.7706,10.6517,3.5992,2.3272,13.5281,2.7765,2.5227,2.3045,13.433,2.3233,3.8682,1.2108,15.8498,4.9912,10.1358,4.0105,12.4455,8.2163,7.4762,7.8928,4.2752,1.7436,4.6891,29,,,0.07502,,,,0.43386,4.1578,4.0337,0.83141,11.3973,1.8997,0.40045,3.1299,3.1208,27.9343,12.4128,252.5323,4.3541,4.6508,1.6729,2.2589,3.8015,7.7486,2.1126,3.5614,0.64657,7.4588,12.6046,10.2175,8.7643,2.3921,4.9065,1.8795,20.3537,5.9387,3.8949,1.1114,2.5793,8.4067,15.5315,3.2252,4.8151,3.8511,1.7267,1.6126,4.5318,11.2847,3.1184,2.3811,11.1539,2.3873,2.564,2.0373,13.0447,2.0183,3.8347,1.1978,15.8016,5.3549,8.8275,4.5474,12.1937,7.4287,7.3034,7.7944,4.171,1.3905,4.4591,,,,,,,,,,,,,,,67,,,,408
+nG+ROS1T5HC020,1.0668,1.8248,,60-69y,CN,,,15.3939,4.6817,2.5912,2.1092,1.0806,edsd,CN,,F,,0.37769,4.4173,4.1184,0.8138,8.8843,1.5322,0.35684,2.4886,2.6191,45.9631,13.3136,196.7427,3.7664,3.9273,1.5673,1.8545,3.2061,6.9637,1.8953,2.8595,0.49065,5.653,10.7251,8.6961,6.5888,2.4377,4.5658,1.6741,18.1056,6.0443,3.7955,0.96148,2.4017,6.256,13.0863,2.8357,3.9667,2.9361,1.5016,1.4039,3.9841,9.27,3.0087,2.1631,9.9857,2.1911,2.4795,2.3653,11.9425,2.1489,3.7795,1.1325,14.5737,5.1043,8.3573,3.2171,9.5526,7.3936,7.2292,7.6994,3.519,1.6575,4.2758,29,,,0.07482,,,,0.3531,3.7748,4.0836,0.81146,10.6284,1.7366,0.3594,2.7324,2.8507,46.127,12.6874,200.7114,3.6115,4.1014,1.5551,1.9982,3.5505,7.3593,1.8166,2.9997,0.65429,6.0555,11.0786,8.3533,7.3233,2.1214,4.4676,1.5541,17.2619,4.8922,3.5901,0.98894,2.4558,7.3268,14.3263,2.4613,3.9979,3.5137,1.4772,1.4927,3.5904,9.138,2.8393,2.2999,9.6499,1.8712,2.2296,1.9686,11.793,1.7591,3.9906,1.0384,14.1763,5.1467,7.8821,3.8384,9.275,7.3024,6.5912,7.3909,3.4062,1.299,4.0859,,,,,,,,,,,,,,,68,,,,409
+nG+ROS3T0AD001,1.6946,1.9137,,70-79y,AD,,,17.6046,4.2263,2.4388,2.1845,1.141,edsd,AD,,M,,0.36041,4.5751,3.8958,0.59288,10.0478,1.6058,0.3306,3.4869,2.5373,42.157,14.5612,207.5702,4.3733,4.7057,1.335,1.924,3.3089,6.6987,1.8854,2.5432,0.82843,6.3979,10.9225,17.7497,6.9976,2.3243,4.757,1.714,17.4396,6.8622,3.7695,1.3318,2.4799,6.8184,14.6998,3.2907,3.9573,3.5511,1.4045,1.654,4.2619,10.6018,2.9113,2.4669,12.7921,2.2186,2.5126,2.499,11.6796,1.9032,3.1469,1.1728,13.4785,5.057,8.4822,3.9881,10.3233,7.5915,6.6044,7.4728,3.444,1.5387,4.636,25,,AD,0.09071,,,,0.37711,4.4232,3.8345,0.65164,10.9287,1.7528,0.38985,3.3256,2.7093,42.3458,13.8917,215.7579,4.2506,4.4075,1.4172,2.038,3.3654,6.4508,1.8942,2.7959,0.79701,6.7931,11.5109,15.0645,7.7851,2.1154,4.693,1.6941,16.95,5.5177,3.6847,1.1047,2.5932,7.7053,15.7108,2.9302,4.0239,3.6102,1.3391,1.6238,3.911,10.9019,2.6167,2.3501,11.4189,2.0784,2.3103,2.1212,12.1241,1.7711,3.3503,1.2249,14.0337,5.2041,8.9673,3.9438,11.5295,7.6178,6.6101,7.2795,3.0679,1.4543,4.4318,,,,,,,,,,,,,,,78,,,,410
+nG+ROS3T0AD002,2.6594,3.6291,,50-59y,AD,,,18.3788,5.3382,2.9866,2.591,2.171,edsd,AD,,M,,0.39484,4.6921,4.469,0.79912,8.7108,1.4198,0.37168,3.6084,2.7712,54.6501,16.4669,214.3011,4.8279,4.4191,1.5724,2.1978,3.4402,8.4934,1.9302,2.8751,1.1271,6.5861,11.7461,32.1618,8.5248,2.1402,4.4309,1.844,16.4964,5.981,3.6606,1.2218,2.8656,7.1731,12.8711,3.5588,4.8401,3.4197,1.4551,1.6719,4.0424,9.3968,3.3151,2.4568,11.3546,2.6079,2.3702,2.5504,12.5472,2.3804,3.4659,1.2704,13.8501,5.8365,7.9048,3.6653,10.0025,7.7323,7.5892,7.882,3.8341,2.0348,5.031,18,,AD,0.07733,,,,0.38212,4.3085,4.5078,0.81323,10.8511,1.6962,0.40337,3.936,3.0675,54.9233,15.2336,226.5443,4.3366,4.6279,1.7416,2.1704,3.548,8.823,1.8605,3.101,1.2051,7.0218,12.2874,34.3074,9.125,2.2866,4.1448,1.7905,16.5037,5.5575,3.5655,1.1633,2.8414,8.3038,15.2797,3.55,4.5756,3.551,1.6201,1.7507,3.8168,9.8164,3.2138,2.5579,10.9818,2.2331,2.5219,2.3959,12.7136,2.2771,3.7304,1.2933,13.9778,6.1697,8.3565,4.0048,10.6658,8.7756,7.4172,8.7521,3.6156,1.6638,4.8413,,,,,,,,,,,,,,,52,,,,411
+nG+ROS3T0AD003,1.8493,1.3802,,+80y,AD,,,15.3461,4.6473,2.4745,2.0021,1.5099,edsd,AD,,F,,0.31776,4.1585,3.7776,0.63181,6.8492,1.3231,0.30231,2.151,2.2161,39.0957,12.6372,160.0347,3.5404,3.4434,1.2807,1.8102,3.2042,5.9556,1.8303,2.4073,0.73893,4.7346,9.1131,18.5578,6.0511,2.0421,4.245,1.5676,16.3618,4.9286,3.3954,1.0753,2.3106,6.163,10.9002,2.3928,3.3854,2.8238,1.2927,1.2698,3.976,9.1319,2.7527,2.0618,9.8752,2.3381,2.0234,2.0569,10.6697,1.9443,2.7618,1.1,12.363,4.7366,7.7894,2.8757,9.3198,6.1784,5.5339,6.4136,3.2392,1.4275,4.0644,27,,AD,0.07,,,,0.29812,3.9012,3.5605,0.67398,8.2316,1.4567,0.32923,2.4034,2.3884,39.8051,11.8682,160.9065,3.4837,3.8222,1.4063,1.6943,3.3366,6.3894,1.8708,2.7121,0.91186,4.9555,9.6125,14.2137,6.8722,1.8843,4.1494,1.597,16.2457,3.9047,3.336,0.97379,2.1241,6.7347,11.5526,2.188,3.6552,2.8593,1.3959,1.2633,3.5503,9.1998,2.656,2.0454,8.7441,1.8768,1.9656,1.8492,10.0587,1.6023,2.9175,1.1364,12.0865,4.3702,6.883,3.4034,9.1265,6.839,5.37,7.0344,3.2372,1.289,3.8355,,,,,,,,,,,,,,,84,,,,412
+nG+ROS3T0AD004,2.3475,1.977,,+80y,AD,,,19.3377,4.8141,2.6063,2.1092,1.9063,edsd,AD,,F,,0.29365,3.9571,4.1862,0.68548,9.8171,1.386,0.32841,3.2504,2.0586,45.121,15.21,209.9187,4.2224,4.7039,1.2683,1.9234,3.1014,6.9755,1.8858,2.6516,2.2641,6.1578,10.32,28.677,7.0679,2.0831,3.9827,1.5429,18.3016,5.7092,3.5062,1.0982,2.5591,6.0318,13.1751,3.1664,4.1288,3.1904,1.4244,1.5208,4.0922,10.3191,2.7347,2.3419,10.3798,2.5248,2.2263,2.0661,12.6951,2.1522,3.3609,1.0778,13.8401,4.8915,9.1593,3.3597,10.6964,7.4393,6.4873,6.5726,3.4508,1.591,4.8014,26,,AD,0.07932,,,,0.29262,3.2435,3.9564,0.71488,9.2071,1.5145,0.33861,3.549,2.0924,46.3996,15.0782,209.0358,4.1768,5.0668,1.2694,2.0862,3.2779,6.2903,1.9041,3.0506,3.6454,6.0251,9.8718,31.5216,7.5056,2.0158,3.97,1.5715,17.0585,4.4743,3.4559,0.97523,2.3435,7.2702,12.3066,2.5101,4.1177,3.2295,1.5145,1.5656,3.5844,10.0427,2.481,2.1909,9.348,2.1164,1.9636,1.9379,11.1179,1.792,3.0753,1.0877,13.3726,5.1302,7.0021,4.2825,10.2994,6.1715,6.2733,6.2998,3.5287,1.4593,4.5237,,,,,,,,,,,,,,,81,,,,413
+nG+ROS3T0AD005,1.7427,1.8741,,60-69y,AD,,,19.3173,4.582,2.7442,2.2693,1.6454,edsd,AD,,M,,0.43145,4.9975,4.4056,0.66297,9.7323,1.503,0.36785,3.9202,3.0363,49.2031,17.0724,248.9335,4.7084,4.5908,1.4181,2.0523,3.4294,7.2141,2.031,2.7733,1.363,7.1014,11.4267,28.5522,7.704,2.5075,5.0405,1.9404,17.8097,6.3818,3.8041,1.2428,2.8206,7.5799,14.562,3.365,4.4501,3.2166,1.6058,1.8031,4.3697,10.2423,2.9561,2.5789,11.6419,2.5676,2.6607,2.5286,13.5479,2.1005,3.6271,1.2756,15.0896,5.6207,8.6666,3.3894,9.7669,7.5533,7.9181,6.5667,3.8073,1.6919,4.9977,23,,AD,0.07256,,,,0.4372,4.4803,4.1678,0.71715,10.7487,1.8936,0.40229,3.6394,3.2269,48.6004,15.6101,260.5051,4.5358,4.8444,1.4334,2.1312,4.1828,7.2911,2.2114,3.051,1.1578,7.4683,11.1823,21.2482,8.2907,2.3471,4.7462,2.0997,17.9533,6.0795,3.8847,1.0401,2.2485,8.8107,14.0717,3.5509,4.6522,3.8623,1.6039,1.8391,4.262,10.5945,2.7099,2.5809,10.7519,2.9351,2.4037,2.4137,13.2427,2.3823,3.8952,1.244,15.6293,6.0073,8.2259,4.5184,10.2414,8.2518,7.631,7.2006,3.4307,1.8975,4.8195,,,,,,,,,,,,,,,62,,,,414
+nG+ROS3T0AD006,1.6236,2.1107,,70-79y,AD,,,15.9375,4.5693,2.1846,2.1257,1.6396,edsd,AD,,M,,0.41978,4.707,4.0291,0.70417,9.9879,1.6642,0.33912,2.9137,3.0868,43.381,13.3684,216.4528,3.8371,4.5715,1.3727,1.7616,3.507,7.2492,1.9994,2.9228,0.80324,6.5865,10.8291,24.2123,7.5909,2.4673,4.7702,1.751,18.5232,7.0538,3.9717,1.164,2.5227,6.7189,13.2642,3.5947,4.3823,3.3273,1.5397,1.5891,4.3659,10.8542,2.9404,2.3836,11.8374,2.6676,2.345,2.2125,12.4075,2.1403,3.3868,1.2297,15.8069,5.2826,9.5542,4.0429,11.5678,6.875,6.8284,6.8292,3.6655,1.7699,4.5443,25,,AD,0.06634,,,,0.41158,4.0261,4.0205,0.6968,10.8702,1.8425,0.36524,2.9376,3.1659,43.7226,13.0437,220.5805,4.2643,4.9171,1.4097,1.7979,3.85,6.6504,1.9719,3.0205,0.97819,6.3129,10.8711,21.0366,7.8612,2.1175,4.4752,1.7142,19.1862,5.92,3.7967,1.1534,2.5573,8.014,12.9283,2.9651,4.0166,3.1583,1.3383,1.5931,4.0011,11.2169,2.6524,2.3438,10.9578,2.3003,2.0783,2.0236,12.817,1.9352,3.514,1.189,15.1247,5.1148,8.1528,4.3322,10.2496,7.1015,6.4129,7.0752,3.2971,1.5042,4.3972,,,,,,,,,,,,,,,71,,,,415
+nG+ROS3T0AD007,1.1873,1.3598,,60-69y,AD,,,15.585,4.2774,2.097,1.8229,1.2126,edsd,AD,,F,,0.35007,4.2094,3.4818,0.7152,7.4835,1.3752,0.308,3.3301,2.4242,36.7788,11.7593,188.3665,3.7297,4.0752,1.36,1.681,2.9356,6.1484,1.6888,2.6804,0.56021,5.4631,9.8659,14.178,6.8258,2.1681,4.1875,1.509,16.9539,5.3272,3.4263,1.0109,2.5647,6.178,12.1925,3.063,3.7928,3.2185,1.3086,1.3782,3.4659,8.625,2.6462,1.9411,10.5503,2.2326,2.3133,2.0972,12.6388,1.7742,3.0208,0.97981,12.2805,4.9642,7.5654,3.4805,9.556,6.435,6.1208,6.6252,3.3211,1.4821,4.128,25,,AD,0.07522,,,,0.30681,3.7014,3.3575,0.73957,7.6747,1.6854,0.32039,3.5049,2.4566,37.2014,11.6065,187.6209,3.4233,4.4068,1.4147,1.681,3.3626,6.085,1.6787,2.7989,0.76905,5.6698,9.7323,12.3522,7.5965,2.0994,4.2146,1.6189,16.8034,4.3769,3.4573,0.96676,2.4699,7.2112,11.9513,2.6637,3.5584,3.2878,1.3722,1.3407,3.1766,8.5006,2.4122,2.1106,9.1609,1.9166,2.1007,1.9834,11.769,1.5651,3.0847,1.0023,11.8843,4.8672,6.6309,3.9446,8.8583,6.1703,5.7666,6.7932,3.2376,1.3466,3.9207,,,,,,,,,,,,,,,66,,,,416
+nG+ROS3T0AD008,1.4892,1.6062,,+80y,AD,,,16.4883,4.0424,2.3787,2.0853,1.2759,edsd,AD,,F,,0.33374,3.9115,3.8737,0.65465,8.7738,1.3295,0.33725,2.7963,2.548,42.7181,13.5418,187.6717,4.0186,3.7832,1.3281,1.9553,3.6121,6.5177,1.9845,2.7613,0.80604,5.2621,10.2545,18.1597,6.8281,2.1873,4.4521,1.5953,17.1431,4.9112,3.5451,0.99614,2.2863,5.9132,12.9215,2.5982,3.6688,3.5456,1.5561,1.4265,4.0479,9.7879,2.884,2.1171,11.5268,2.1897,2.2182,1.9256,11.0828,1.5861,3.0976,1.1716,14.102,4.8908,9.2047,2.8795,10.4819,6.5551,6.1844,6.9901,4.3296,1.2654,4.2827,25,,AD,0.08136,,,,0.33228,3.4536,3.7826,0.70437,10.4181,1.5852,0.35084,2.8545,2.6553,43.4099,13.4176,195.1598,4.0917,4.2043,1.3987,1.7923,3.2388,6.3825,1.9636,3.1466,0.76116,5.6078,10.4349,12.8554,7.5887,1.9132,4.357,1.5552,18.9317,4.5156,3.5988,0.90939,2.3346,6.7752,14.4077,2.2418,3.9066,2.9592,1.3601,1.4021,3.9248,10.4842,2.754,2.1078,9.6931,2.3054,2.0676,1.7293,11.8168,1.7452,3.3535,1.1198,13.3892,4.7624,8.0458,3.6786,10.3213,6.5986,6.0502,6.9277,3.3421,1.2654,4.0602,,,,,,,,,,,,,,,85,,,,417
+nG+ROS3T0AD009,1.8611,2.3987,,70-79y,AD,,,16.415,3.8579,2.0238,1.868,1.9525,edsd,AD,,F,,0.32609,4.1335,3.7338,0.66135,8.0959,1.3274,0.30157,2.3528,2.6142,38.9969,12.9974,179.8191,3.9535,3.4995,1.3025,1.7087,3.1043,5.9773,1.8172,2.4155,1.2114,4.9306,9.2873,23.8012,5.6111,2.0975,4.5898,1.5268,16.5627,5.768,3.3728,0.93261,2.037,5.8552,12.0653,2.6691,3.2949,2.7057,1.3388,1.5236,3.7729,9.0785,2.6127,2.1827,10.436,1.9638,2.0272,2.1079,10.3514,1.6416,3.046,1.0907,11.9706,4.6264,6.846,2.8184,9.249,5.8236,6.0637,6.366,3.205,1.5013,4.2763,24,,AD,0.07027,,,,0.305,3.9589,3.6489,0.64989,9.5952,1.3442,0.31728,2.308,2.8393,39.1359,12.9291,181.3894,3.7618,3.9211,1.3272,1.78,3.2421,6.0484,1.8216,2.5942,1.6285,5.179,9.5319,21.9802,5.9926,1.8268,4.4261,1.5113,16.1624,4.2694,3.2234,0.92508,2.0625,6.2218,12.1948,2.0007,3.0002,2.8518,1.2473,1.4299,3.4715,9.185,2.3902,2.2341,8.2358,1.8088,1.8137,1.9547,10.1731,1.7405,3.0412,1.0818,12.5938,4.8389,6.2404,3.3322,8.8912,6.047,5.7702,6.5847,2.8594,1.3782,4.0988,,,,,,,,,,,,,,,73,,,,418
+nG+ROS3T0AD010,1.6409,2.7372,,+80y,AD,,,16.2165,3.9406,1.9934,1.7942,1.8279,edsd,AD,,F,,0.42432,4.0572,3.9405,0.99575,8.6848,1.6322,0.3679,3.0384,3.7262,39.7345,13.4104,217.8863,4.0747,4.3308,1.7909,1.7632,3.4123,7.1638,1.8084,3.3065,0.6989,6.9858,11.183,27.1511,6.7015,2.567,4.4628,1.6191,18.325,6.6593,3.751,1.1028,2.645,5.9229,13.9554,3.3613,4.1709,3.3086,1.3698,1.5699,3.8112,10.027,3.1173,2.2734,12.3986,2.5427,2.5123,2.1835,12.6653,1.9727,3.827,1.1476,13.2744,4.6362,8.907,3.1925,10.8141,7.3101,6.8234,7.1679,3.4615,1.5399,4.5855,28,,AD,0.0635,,,,0.39726,3.7686,3.8941,0.9344,10.4467,1.8168,0.38177,3.2397,3.9094,40.2388,12.7606,219.7823,4.0287,4.9237,1.7773,2.0596,3.5642,7.1403,1.8087,3.6047,0.66879,6.6586,11.756,20.8601,7.3271,2.325,4.2837,1.5945,17.4824,4.9969,3.5975,0.99532,2.3138,6.5218,14.8914,3.0135,4.2429,3.5443,1.4083,1.5413,3.6745,10.3011,2.8142,2.2603,9.7635,1.9113,2.4155,1.9752,11.9639,1.7988,3.8481,1.0738,13.1853,4.6988,7.0375,4.1532,10.7756,6.8121,6.5958,7.9797,3.4362,1.3541,4.3405,,,,,,,,,,,,,,,81,,,,419
+nG+ROS3T0AD011,1.9908,2.8461,,70-79y,AD,,,18.025,4.824,2.5587,2.1742,2.3436,edsd,AD,,M,,0.31106,4.2709,3.9148,0.70803,9.6711,1.4003,0.32983,3.3726,2.424,45.6187,16.3574,208.8861,4.0188,4.4484,1.4531,1.8573,3.1838,6.6814,1.8008,2.8995,1.2456,6.9006,10.1351,31.1066,7.895,2.2289,4.0383,1.5932,16.4313,6.1699,3.2623,1.097,2.3577,6.2112,12.5685,3.8695,4.5582,2.9717,1.4433,1.6759,4.1748,10.1114,2.9832,2.2164,11.035,2.2548,2.327,2.1129,12.3687,2.0838,3.1297,1.0662,11.3042,4.7314,9.7778,3.6511,10.3302,6.5317,6.7659,6.736,3.6681,1.463,4.7044,28,,AD,0.06422,,,,0.31464,3.7595,3.6969,0.62673,9.215,1.5988,0.3321,3.6102,2.7199,45.7654,15.5442,207.3436,3.8597,4.6554,1.2605,1.7651,3.4393,6.1182,1.6895,3.0664,1.7858,6.1681,9.6576,34.3032,8.0838,2.0035,4.0959,1.4899,15.482,4.95,3.2505,1.1577,2.647,6.6016,12.312,2.959,4.0927,2.9696,1.3766,1.5922,3.5207,9.5439,2.5944,2.2297,9.9962,2.1324,1.9962,1.9084,11.4401,1.8615,3.2204,1.0627,12.6424,4.8735,7.4532,3.9435,10.1591,6.2336,6.1978,6.1222,3.3307,1.5549,4.4183,,,,,,,,,,,,,,,75,,,,420
+nG+ROS3T0AD012,1.8705,2.0842,,60-69y,AD,,,16.1588,3.9762,2.0377,1.9231,1.8466,edsd,AD,,F,,0.28521,3.7149,3.6201,0.69431,6.946,1.2668,0.27877,3.3412,2.1002,39.0933,14.047,190.1264,3.6249,3.5666,1.256,1.6037,2.6663,5.3686,1.5688,2.9396,1.2229,4.9027,8.1732,30.4767,6.8239,2.0279,4.0876,1.3417,15.4755,4.5397,3.2354,0.94874,2.1558,5.3896,10.2645,2.8995,3.7048,2.9716,1.2695,1.4815,3.5265,8.7958,2.7139,2.1573,9.6135,2.265,1.9543,2.1163,10.3883,1.8391,2.7183,0.97237,11.831,4.437,7.0387,2.6126,8.7612,5.7279,6.0018,5.8077,3.3566,1.4355,4.4441,9,,AD,0.06579,,,,0.28634,3.4889,3.3259,0.76898,8.7368,1.5609,0.31519,3.1922,2.5534,38.4725,13.1359,202.999,3.6036,4.1096,1.4491,1.7031,3.0618,5.7968,1.5802,3.1711,1.0796,5.9191,9.1946,20.3151,7.2106,1.8789,3.9474,1.3566,15.3492,4.493,3.3093,0.95845,2.3593,6.3844,11.1503,2.7687,3.7271,2.9738,1.2226,1.4935,3.4656,9.4991,2.5692,2.06,8.5484,2.265,2.0628,1.9324,11.2482,1.6939,2.8452,0.98978,12.212,4.5286,5.992,3.8803,10.0134,5.6891,5.9534,6.1097,3.1308,1.4436,4.2851,,,,,,,,,,,,,,,68,,,,421
+nG+ROS3T0AD013,2.7489,2.6286,,70-79y,AD,,,19.522,5.6116,2.987,2.2979,2.3921,edsd,AD,,M,,0.40365,5.3957,5.065,0.80298,9.418,1.5211,0.37947,3.2873,2.5005,46.9977,15.5227,225.5933,4.6239,4.3734,1.4887,2.1482,3.4696,6.8121,2.1586,3.127,1.3591,5.6019,10.9206,32.6877,7.5044,2.4125,5.2259,1.973,18.7331,5.4347,3.9267,1.2392,2.9556,7.8788,13.328,3.7368,3.7503,3.4774,1.5424,1.6762,4.8942,11.3415,3.1608,2.7114,11.6129,3.1072,2.568,2.4552,12.6607,2.5081,3.8304,1.3946,15.5816,6.0767,8.7975,3.2804,11.8854,7.0438,7.4256,7.01,3.9344,2.0155,4.9542,28,,AD,0.07715,,,,0.37692,4.7016,4.8816,0.82463,10.7221,1.7314,0.41085,3.4009,2.9012,48.6965,15.1746,231.234,4.3948,4.502,1.5516,2.2165,3.8329,7.0327,2.1899,3.307,1.614,5.3836,11.4971,32.0847,7.659,2.1777,5.1288,2.0599,18.2068,4.6014,3.8959,1.1385,2.8719,8.8586,13.8898,2.9587,3.6938,3.9717,1.5357,1.6749,4.2915,10.9706,2.9383,2.7515,9.915,2.6297,2.3987,2.3733,13.4418,2.0618,4.0497,1.3605,16.5398,5.893,7.8348,3.7511,10.6607,7.6887,7.0514,7.6612,3.7643,1.6957,4.8424,,,,,,,,,,,,,,,70,,,,422
+nG+ROS3T0AD014,1.9111,2.7178,,60-69y,AD,,,16.6617,5.0999,2.4648,2.3064,1.7547,edsd,AD,,M,,0.30878,3.8518,3.632,0.65329,8.2258,1.3156,0.29742,2.7925,2.3782,45.0515,15.2779,206.891,3.771,3.9512,1.317,1.9383,2.9832,6.0265,1.6821,2.6601,1.5065,6.1533,10.207,27.0472,6.518,2.0016,3.9864,1.5073,15.7695,5.0946,3.1832,0.89426,2.1719,5.7755,12.5967,3.4076,3.9752,3.1947,1.3618,1.429,4.1086,9.7632,2.7861,2.1779,10.283,2.2578,2.0315,2.0287,9.5847,1.8418,3.1562,1.009,11.9654,4.7418,9.085,3.0648,9.1723,6.2265,6.4687,6.2617,3.4857,1.3774,4.3572,23,,AD,0.06403,,,,0.29945,3.3244,3.3852,0.70242,9.5494,1.4276,0.32726,3.1261,2.6146,46.8572,14.8074,212.7922,3.8102,4.7016,1.4113,1.6408,3.1352,6.6711,1.6907,2.8752,1.1437,6.173,11.0511,21.9738,7.5827,1.8924,3.9937,1.5055,16.2826,4.4037,3.2603,0.99292,2.3241,6.5434,13.0026,2.7992,4.0501,2.7895,1.356,1.3842,4.0214,10.5074,2.5166,2.1101,8.9266,2.31,2.0795,1.8649,10.0526,1.9312,3.2657,0.99021,12.5425,4.5393,8.0874,4.0085,9.727,6.605,6.1396,6.3507,2.9562,1.3929,4.1354,,,,,,,,,,,,,,,69,,,,423
+nG+ROS3T0AD015,3.7693,2.8987,,60-69y,AD,,,17.7593,5.6435,2.9466,2.4551,3.7567,edsd,AD,,M,,0.42438,5.2966,5.24,0.93165,11.3392,1.6343,0.42319,4.4077,2.7471,49.4891,13.8672,171.3762,5.0758,5.3929,1.81,2.4743,3.9876,7.8013,2.2053,3.3804,1.7941,7.6584,11.8957,58.4504,8.8932,2.534,5.9994,2.0682,22.4796,7.6538,4.0782,1.5852,3.3004,8.3647,15.2632,4.3693,4.9457,4.3849,1.6744,1.4867,5.0996,13.7199,3.6242,2.8774,14.138,3.1049,2.7288,2.6109,15.5022,2.4123,3.52,1.3904,15.8233,6.4664,11.8785,4.1396,12.7091,8.0023,6.3572,7.5491,4.3703,1.8995,4.7201,21,,AD,0.07159,,,,0.39919,4.7391,4.75,0.84385,12.5335,1.8453,0.43215,4.3025,2.9661,51.5474,13.2315,179.8113,4.9595,5.9276,1.4602,2.1004,4.4916,8.1592,2.1728,3.6912,2.2274,7.469,12.3597,57.8325,9.6405,2.422,6.1242,1.9543,20.8231,6.468,4.2479,1.5388,2.9385,9.0827,16.2184,3.864,5.0413,3.8318,1.5784,1.5261,4.5744,13.3566,3.1894,3.0874,12.6202,2.9625,2.6818,2.519,16.172,2.3534,3.6372,1.3844,16.9206,6.2078,10.1282,5.673,13.5756,8.932,6.5265,6.7543,3.7104,1.9199,4.6268,,,,,,,,,,,,,,,69,,,,424
+nG+ROS3T0HC001,2.4393,1.9084,,60-69y,CN,,,20.545,5.4387,2.8551,2.5913,1.8683,edsd,CN,,M,,0.41387,5.4071,4.8613,1.0669,10.8554,1.6751,0.40882,3.7251,2.9527,48.5069,16.1352,250.3627,5.2039,5.6165,2.055,2.2823,3.9511,8.7704,2.2756,3.7395,0.68632,7.6213,13.9209,21.4459,8.4315,2.7616,5.4866,2.1069,21.696,7.6079,4.2153,1.3398,3.0378,7.9523,17.6266,3.8992,4.9305,3.79,1.7031,1.7673,5.8096,14.0712,3.8436,2.9316,15.2824,3.1023,2.9926,2.7744,14.5931,2.5288,3.4106,1.4707,14.3559,6.2148,10.9359,4.4894,13.2127,8.7619,8.0975,9.1,4.2512,2.0798,5.4181,27,,,0.09316,,,,0.39851,4.9389,4.4451,1.0465,12.0751,2.0518,0.44027,3.8929,3.2449,50.7475,14.9431,257.0058,4.588,6.4285,2.1363,2.2514,3.9677,9.4503,2.2534,3.9872,0.68499,8.4875,15.13,20.2643,9.0223,2.5046,5.3489,2.1056,21.3093,5.6263,4.4547,1.4549,3.3463,9.1646,18.12,3.6534,5.0926,3.5722,1.8631,1.803,5.1543,13.8605,3.6548,2.7424,12.1475,3.0347,2.7907,2.5395,14.6459,2.5439,3.7901,1.4301,16.4699,6.496,9.3329,5.4935,13.2102,7.9397,7.9044,9.5512,3.8973,1.852,5.202,,,,,,,,,,,,,,,69,,,,425
+nG+ROS3T0HC002,1.0048,2.2035,,60-69y,CN,,,17.7846,4.7861,2.9013,2.407,1.1281,edsd,CN,,F,,0.38536,4.1461,4.175,0.83393,9.3786,1.3676,0.34977,2.5886,2.8026,51.7045,14.8643,182.3985,4.1651,4.362,1.7098,1.9219,2.9401,7.3465,1.8816,3.0843,0.44135,6.7482,10.8767,12.4405,7.706,2.2914,4.2647,1.5915,16.473,6.2249,3.4737,0.96672,2.3554,5.9834,14.0014,3.4333,4.3904,3.2644,1.4832,1.5061,4.1946,10.1777,3.2195,2.5846,11.3254,2.5273,2.336,2.3384,11.3597,1.8994,3.7885,1.0768,12.9686,4.8506,9.5017,3.4799,9.3142,7.2714,6.0547,7.3823,3.5457,1.5884,4.2721,29,,,0.07222,,,,0.34508,3.4878,4.0509,0.88724,8.9648,1.6186,0.36602,2.9174,2.7661,52.3719,14.668,185.7545,4.0128,4.648,1.7855,1.9712,3.4674,7.569,1.9615,3.3929,0.55737,6.4388,11.8572,11.6909,8.5063,2.2221,4.2741,1.5712,16.2943,5.0661,3.6181,1.1702,2.3862,6.8672,14.027,2.7593,4.6201,3.2114,1.6097,1.4893,3.7354,10.1423,3.0706,2.4073,10.4306,2.5448,2.3077,2.0825,11.6145,1.8633,3.6568,1.0439,13.2127,5.0149,8.3674,4.1509,9.6495,7.1922,5.8915,8.0653,3.269,1.3897,4.0399,,,,,,,,,,,,,,,68,,,,426
+nG+ROS3T0HC003,1.7179,2.794,,60-69y,CN,,,16.0896,5.078,2.6387,2.229,1.7204,edsd,CN,,M,,0.36127,4.0964,3.958,0.87665,8.5316,1.3079,0.35928,3.6443,2.9888,50.1394,14.0383,197.7453,4.4762,4.9364,1.7041,1.9447,2.9133,7.7126,1.78,3.4216,1.1802,6.4962,12.1686,22.3409,7.7784,2.2508,4.1062,1.5185,17.156,6.1245,3.4544,1.016,2.3418,6.3947,14.8918,3.1964,4.6073,3.0969,1.5697,1.5101,4.503,10.9055,3.2914,2.3436,11.928,2.6774,2.3967,2.2792,11.9987,2.2021,3.487,1.1544,13.9615,5.384,9.1577,3.8011,10.2256,8.0034,7.0201,7.0794,3.639,1.6944,4.3227,29,,,0.0769,,,,0.34326,3.689,3.9995,0.88171,9.6515,1.5077,0.36814,3.8947,3.2005,49.447,13.0052,203.3339,4.542,4.9176,1.6826,2.1442,3.2315,7.6151,1.7041,3.5712,1.2944,7.0902,12.3609,22.2937,8.1593,1.9009,4.2293,1.5856,16.4378,5.1874,3.3117,1.0051,2.1803,7.1015,15.1414,3.0322,4.3485,3.7953,1.3566,1.5327,4.1849,10.4651,2.9602,2.3605,10.7458,2.4748,2.1132,2.2256,12.0416,2.2156,3.5583,1.1105,14.1559,5.2291,8.4164,4.3971,10.5549,8.1109,6.7219,7.5884,3.1809,1.7493,4.1518,,,,,,,,,,,,,,,66,,,,427
+nG+ROS3T0HC004,1.4925,2.0363,,60-69y,CN,,,18.7409,5.4903,2.9334,2.3151,1.8515,edsd,CN,,M,,0.42549,4.7612,4.4768,0.71904,11.4997,1.6691,0.3595,3.7808,3.292,50.3785,15.2393,243.6928,4.5458,5.1041,1.3822,2.132,3.6712,7.7822,2.086,3.0573,0.9797,7.9157,13.2008,22.5116,8.3888,2.5022,5.3315,1.8787,19.1402,7.804,4.0472,1.5159,3.0101,7.2221,16.3448,4.2602,5.0193,3.9138,1.526,1.725,4.6368,11.6056,2.9516,2.2643,13.4742,2.4349,2.5567,2.1688,15.2456,1.9948,4.0653,1.2789,15.5599,5.3197,10.4137,4.5027,12.5369,7.8305,7.7516,7.9123,3.8312,1.5107,4.9244,28,,,0.08702,,,,0.39742,3.9314,4.3814,0.80409,12.1488,2.0054,0.40403,3.6982,3.4584,50.7836,14.9631,250.2897,4.329,5.8801,1.5884,2.0311,4.0529,8.4096,2.1914,3.5434,1.1855,7.664,13.9916,19.7081,9.3268,2.4307,4.6365,1.9484,19.1186,5.4709,4.1783,1.2452,3.0786,8.3765,16.5237,3.2263,4.6849,3.6886,1.6736,1.6741,4.3679,12.6168,3.0423,2.398,12.8035,2.2298,2.2847,2.1552,14.7043,1.9704,3.958,1.2799,15.6293,5.8884,8.8186,4.9871,12.5488,8.0943,7.4702,8.9998,4.0663,1.5173,4.7272,,,,,,,,,,,,,,,68,,,,428
+nG+ROS3T0HC005,1.6914,1.9555,,70-79y,CN,,,14.0597,4.0997,2.3906,2.0875,1.2513,edsd,CN,,F,,0.37631,4.7613,3.5566,0.80039,8.5698,1.4917,0.34776,2.3365,2.8282,41.5027,12.1339,213.1765,4.0244,3.8266,1.4683,1.9003,3.2598,6.8066,1.7793,3.05,0.4674,6.303,10.1922,16.6159,7.007,2.3687,5.0769,1.6231,17.3834,5.8746,3.5866,0.96225,2.3868,6.6387,12.8021,3.2088,3.8016,3.34,1.4913,1.5627,4.1032,10.0684,3.0342,2.0096,10.536,2.3151,2.3116,2.133,12.0868,1.8239,3.3147,1.0615,13.8629,5.0726,8.3486,3.2111,10.0274,6.5395,6.9551,6.7899,4.103,1.5556,4.2795,29,,,0.07538,,,,0.36717,4.2276,3.5085,0.7993,9.2201,1.7356,0.38526,2.4765,2.8302,41.4208,12.1234,214.4995,3.8864,4.0904,1.5278,1.8091,3.5348,6.8553,1.8574,3.1792,0.49291,6.0584,11.0044,13.19,7.19,2.2858,4.5274,1.5675,17.6072,5.1447,3.7047,0.84399,2.2491,7.5348,13.9774,2.7509,3.842,3.1232,1.5009,1.5275,4.0339,9.9208,2.6424,1.9707,10.0758,2.0051,2.1961,1.8343,12.8277,1.7287,3.5524,1.0766,13.752,5.3249,7.6708,4.209,9.7965,7.1714,6.9816,7.0508,3.4382,1.2285,4.0537,,,,,,,,,,,,,,,75,,,,429
+nG+ROS3T0HC006,1.3735,2.0553,,70-79y,CN,,,17.052,4.5285,2.3744,2.2638,1.2792,edsd,CN,,M,,0.36736,4.3084,4.0768,0.82347,8.0828,1.502,0.33087,2.9906,2.5483,45.4976,13.9549,222.2557,4.1069,4.211,1.5735,2.0529,3.2703,7.2682,1.9581,3.0054,0.5261,5.9553,11.6942,15.766,6.9805,2.3889,4.6652,1.5724,17.0816,6.0322,3.7478,0.94038,2.4715,6.4788,13.4569,3.0348,4.0231,3.2668,1.6267,1.563,4.1231,10.3557,2.9733,2.0142,11.3986,2.0867,2.4864,2.0326,11.9842,1.8303,3.4984,1.0635,14.2522,5.3664,7.6473,3.5773,10.3786,6.5064,6.6985,7.4329,3.7692,1.4327,4.5118,27,,,0.07533,,,,0.34004,3.4537,3.9291,0.83099,8.6234,1.7677,0.36317,3.0221,2.6076,45.0926,14.0187,221.8362,3.56,4.5585,1.6593,1.9544,3.5208,7.1771,1.9406,3.2428,0.6201,6.9569,10.6799,16.0833,7.4618,2.2328,4.2386,1.7171,17.6219,4.5062,3.6601,1.1113,2.6011,7.7103,13.0804,2.815,4.3228,2.8978,1.5676,1.5318,3.745,10.6434,2.8314,1.941,9.9975,1.8528,2.3864,1.6775,12.5557,1.6951,3.3505,1.0866,13.7717,5.4783,7.437,4.3767,10.198,6.9538,6.6463,7.3906,3.0725,1.181,4.1903,,,,,,,,,,,,,,,70,,,,430
+nG+ROS3T0HC007,1.4994,2.2117,,60-69y,CN,,,19.5657,5.1891,2.7349,2.4159,1.2191,edsd,CN,,F,,0.35065,4.2723,3.7666,0.75571,9.3047,1.4608,0.32458,2.6745,2.7087,51.3749,16.6198,208.2046,3.6973,3.6652,1.4735,1.7916,3.0698,7.1853,1.861,2.9098,0.4371,5.8863,11.2569,13.0221,7.6062,2.2542,4.6872,1.619,19.0194,6.3498,3.5533,1.0437,2.7138,6.2086,14.6647,2.9513,4.3422,3.1566,1.2722,1.5958,4.0705,9.4207,3.1061,2.0545,10.8106,1.9119,2.3759,2.0075,11.894,1.65,3.4259,1.0429,13.1667,5.245,8.428,3.3276,9.4134,7.5846,6.9569,7.2938,3.2835,1.4168,4.8556,30,,,0.06923,,,,0.34514,3.9962,3.7171,0.72504,10.0486,1.6327,0.34711,2.7482,2.8485,53.3095,16.2603,208.3674,3.7881,4.1411,1.4599,1.8302,3.2631,7.3608,2.0011,3.1431,0.55701,6.5386,11.6078,11.8847,8.0202,2.0495,4.4169,1.5913,17.022,5.227,3.6406,1.0843,2.5435,6.7768,14.7833,2.6699,4.7147,2.9823,1.4095,1.5412,3.722,9.7114,2.8432,2.1433,10.098,1.9097,2.14,1.8823,12.5547,1.6802,3.3828,1.1238,13.233,5.4557,7.686,3.916,9.4088,7.422,6.908,6.9153,2.9698,1.3243,4.5223,,,,,,,,,,,,,,,69,,,,431
+nG+ROS3T0HC008,1.1823,2.8853,,60-69y,CN,,,16.4464,4.341,2.5204,2.2913,1.1808,edsd,CN,,F,,0.40494,4.3886,3.9484,0.80109,9.325,1.424,0.34921,3.1403,2.6985,44.0165,13.9654,226.4608,4.2821,4.5407,1.5511,1.9355,3.0946,7.6979,1.8034,3.0738,0.37814,6.7557,11.5205,10.6412,7.8139,2.3409,4.4298,1.659,17.1072,6.1903,3.563,0.97321,2.3165,6.2714,14.4641,3.6186,4.7166,3.1457,1.5421,1.7106,4.3267,10.5771,3.0174,2.15,11.2567,2.5488,2.4101,2.2171,12.0597,2.1495,3.8012,1.1202,13.4974,5.1214,8.5303,3.9706,10.2242,6.5692,7.3652,7.1556,3.5866,1.7672,4.6137,28,,,0.07685,,,,0.38153,3.9888,3.919,0.83346,10.4985,1.6038,0.39472,3.198,2.8327,44.8116,13.9034,232.7685,4.1937,4.6443,1.6258,1.9638,3.173,7.5483,1.837,3.2033,0.43104,6.5161,11.3751,9.3603,8.1904,2.0704,4.3176,1.5766,17.2382,5.2024,3.704,1.0288,2.4053,7.1281,14.7813,3.0427,4.5988,3.4757,1.5239,1.6691,3.9742,10.554,2.6768,2.1406,10.65,2.5902,2.2809,2.011,12.0262,2.1254,3.9125,1.1264,14.486,5.0504,8.3967,4.3969,10.3266,7.6597,7.042,6.9358,3.5068,1.5547,4.4382,,,,,,,,,,,,,,,69,,,,432
+nG+ROS3T0HC009,1.6791,1.7785,,70-79y,CN,,,17.6069,4.3582,2.7364,2.2275,1.4175,edsd,CN,,M,,0.34417,4.2776,3.9932,0.81958,8.5753,1.4283,0.34227,2.9589,2.4236,46.1667,15.9846,216.8382,4.1302,4.8578,1.6001,1.9267,3.2787,7.2071,1.8568,3.1406,0.54806,6.2385,10.9211,10.8498,7.0595,2.2064,4.5069,1.5537,18.0771,5.901,3.6814,0.99,2.6003,6.7256,13.909,3.2318,4.2388,3.2773,1.5249,1.5818,4.089,9.1172,3.2521,2.3191,10.394,2.3211,2.3643,2.2286,11.7937,1.8118,3.0787,1.1536,13.8829,5.3068,7.9473,3.7422,9.1237,7.3722,7.3494,7.4591,3.6839,1.6558,4.8195,27,,,0.07879,,,,0.33228,3.6599,3.9166,0.81466,9.4497,1.7181,0.35595,2.977,2.5722,46.6652,15.2168,221.7553,3.8488,4.9481,1.6091,1.8693,3.6165,7.1612,1.8402,3.2781,0.59586,6.3439,10.9034,10.6469,7.6887,2.0939,4.5526,1.5698,18.328,4.7816,3.6567,1.0032,2.3478,7.4986,13.799,2.7821,4.2997,3.179,1.4939,1.5605,4.063,10.0122,2.9582,2.2498,9.6913,2.1501,2.3719,2.0147,11.6556,2.0285,3.3229,1.1126,13.9392,5.0968,7.2607,3.7829,9.9159,7.5898,7.0073,7.2523,3.0846,1.4788,4.5496,,,,,,,,,,,,,,,74,,,,433
+nG+ROS3T0HC010,1.8287,2.3463,,60-69y,CN,,,18.9336,4.41,2.522,2.0771,1.1571,edsd,CN,,F,,0.34978,5.0327,3.9407,0.91015,9.5276,1.5897,0.34107,3.2874,2.7928,46.8404,14.6229,208.5733,4.2802,4.4996,1.7455,1.9305,3.3237,7.1408,2.1122,3.3166,0.58428,6.2801,12.0395,20.9043,7.1991,2.3315,5.1993,1.7279,20.5201,6.0806,4.132,1.239,2.6742,7.0492,15.4195,3.1976,4.1683,3.5668,1.3778,1.5186,4.5837,11.4582,3.1881,2.4172,12.8986,2.1822,2.4356,2.3397,14.2938,1.9001,3.5296,1.119,14.8241,5.9413,8.8438,3.3271,11.9904,7.6945,6.9395,7.5882,3.9953,1.811,4.8595,29,,,0.0794,,,,0.36363,4.5993,4.025,0.90359,10.6153,1.7432,0.39845,3.2389,2.8806,46.9422,14.062,215.1196,3.9646,4.7458,1.744,1.9989,3.8415,7.7769,1.9592,3.4705,0.60023,7.1179,12.9681,14.8505,7.714,2.2262,4.69,1.7526,21.1619,5.4805,3.819,0.94817,2.3465,7.8601,16.5679,2.7447,4.2992,3.4766,1.6061,1.5012,4.4865,11.7274,3.0069,2.3294,11.6598,2.293,2.3426,1.9749,13.5552,1.9446,3.7425,1.2255,14.5201,5.538,8.4524,4.1918,9.9835,7.6223,6.8355,7.7771,3.6393,1.5421,4.663,,,,,,,,,,,,,,,67,,,,434
+nG+ROS3T0HC011,1.8968,2.4213,,+80y,CN,,,16.6514,4.1429,2.4138,2.0849,1.3795,edsd,CN,,F,,0.35751,4.2445,3.6754,0.77604,8.6004,1.3265,0.3495,3.248,2.4381,41.3981,14.7444,206.2584,3.5342,4.47,1.4712,1.8386,2.954,6.542,1.7617,2.9249,0.90151,5.3269,9.9986,18.95,7.2026,2.1056,4.16,1.6612,16.2403,4.9474,3.4185,0.93964,2.3461,6.1634,12.6747,2.8064,3.8738,3.2954,1.3531,1.5537,3.8426,9.6564,2.8817,2.0758,10.9116,2.2704,2.2483,2.0502,10.2998,1.9011,3.2285,1.2087,12.0567,5.2665,10.2499,3.134,10.4126,7.3057,6.3979,7.1082,3.429,1.354,4.7356,28,,,0.07654,,,,0.31181,3.3719,3.5503,0.77404,9.7188,1.5737,0.36284,3.2408,2.4425,41.9809,14.5509,217.7609,3.7878,4.7247,1.4808,1.8056,3.1855,6.9291,1.6035,3.2064,1.0107,5.7916,10.1979,18.3726,7.662,2.0092,3.8441,1.5443,17.5442,4.5508,3.4183,0.81378,2.1093,7.1542,12.5616,2.647,4.0595,3.3417,1.343,1.6142,3.5145,10.0705,2.7849,2.0391,11.3563,2.3543,2.2331,1.7814,12.0609,1.7623,3.3423,1.1824,12.7673,5.0937,9.2217,3.9158,9.8415,6.6185,6.1624,7.0603,3.0691,1.2917,4.5083,,,,,,,,,,,,,,,83,,,,435
+nG+ROS3T0HC012,1.4763,1.6379,,70-79y,CN,,,16.9074,4.2978,2.5484,2.2877,1.5709,edsd,CN,,F,,0.33352,3.9461,3.7761,0.76361,9.1174,1.3787,0.34237,2.9299,2.512,44.4757,13.9998,184.4339,3.8246,4.3581,1.472,1.7217,3.0811,6.9626,1.764,2.9947,0.35091,5.3417,10.8271,11.6707,7.1866,2.1743,4.2745,1.5442,15.7639,5.1925,3.6539,1.358,2.4669,6.1415,13.3673,2.7213,4.0574,2.9296,1.3253,1.3354,4.675,10.349,3.0515,2.071,11.3341,2.1672,2.3872,2.1104,10.72,1.7943,3.2831,1.0551,11.6482,4.7072,9.1592,3.2748,9.5743,7.2901,6.731,6.5834,3.1627,1.293,4.3707,27,,,0.08108,,,,0.33224,3.4061,3.5203,0.83563,10.2123,1.5678,0.36657,2.9866,2.6357,45.5295,14.0509,193.1778,3.6255,4.5065,1.6513,1.7108,3.2907,6.9156,1.7637,3.3875,0.39434,6.0143,11.0967,9.8956,7.1881,2.1412,4.3071,1.5691,16.1075,5.3698,3.5657,1.0832,2.5278,6.8391,14.115,2.6433,4.253,2.7727,1.4622,1.3688,4.1173,10.5467,2.8236,2.0819,9.3051,1.958,2.5005,1.7945,10.8766,1.5976,3.3746,1.0128,11.921,4.6043,7.4612,4.3422,10.8639,7.2725,6.4949,7.057,3.0863,1.2459,4.2532,,,,,,,,,,,,,,,73,,,,436
+nG+ROS3T0HC013,2.5682,2.5057,,70-79y,CN,,,21.694,5.6788,3.0265,2.6508,2.6887,edsd,CN,,M,,0.47721,5.2847,4.8387,0.89123,11.1859,1.7584,0.40972,3.5156,3.7296,53.3131,18.1067,255.7585,4.5057,5.4507,1.8051,2.107,4.2203,8.1521,2.238,3.5866,0.83934,7.393,12.7422,32.0552,8.4713,2.8047,5.3877,2.232,20.5668,7.4299,4.1926,1.2336,2.7471,7.7655,15.6467,4.0155,5.2773,3.163,1.652,1.76,5.5754,13.1864,3.5371,2.7849,13.5908,2.9455,2.5919,2.5133,15.5381,2.48,3.844,1.4984,15.6301,5.6941,10.377,3.8453,12.5354,7.5332,8.006,7.888,3.7731,2.1132,5.4311,28,,,0.08025,,,,0.44772,5.4144,4.4356,0.85519,12.7054,1.947,0.41598,3.5772,3.8859,53.1828,17.5212,262.0686,5.0284,4.9726,1.6195,2.2642,4.2777,8.0764,2.199,3.8467,1.1194,8.3124,13.3031,31.0961,9.2575,2.5104,5.1521,2.0182,20.9655,6.7079,4.3059,1.2839,2.8166,8.7683,18.097,3.881,5.4657,4.4607,1.8193,1.8361,4.8263,12.5322,3.1497,2.771,12.6225,2.8756,2.5064,2.2315,13.9001,2.2641,3.8649,1.443,15.8672,5.5008,9.1534,4.8871,13.1508,8.5808,7.8588,7.5687,3.6455,1.8053,5.1523,,,,,,,,,,,,,,,70,,,,437
+nG+ROS3T0HC014,1.0572,1.685,,60-69y,CN,,,13.6372,4.4069,2.2594,2.0653,1.397,edsd,CN,,F,,0.36928,3.9172,3.708,0.71617,8.1491,1.3209,0.31821,3.5413,2.7309,27.5385,12.4571,192.0136,3.3355,4.2491,1.3701,1.6528,3.0791,6.4713,1.6755,2.8025,0.43749,5.6584,8.9153,14.9227,7.3706,2.0619,3.9956,1.5183,17.241,6.0483,3.4232,0.90998,2.1715,6.1179,11.55,3.1963,4.0099,2.7695,1.3871,1.4019,3.7115,9.4709,2.9882,1.9385,9.8693,2.3029,2.2076,1.9759,11.1364,1.7118,3.5856,0.97895,12.3411,4.4677,8.1728,3.7343,10.1228,6.074,6.641,6.306,3.3288,1.5138,4.2874,28,,,0.06204,,,,0.34181,3.5233,3.782,0.7596,9.622,1.4813,0.35762,3.3611,2.8386,32.158,12.6449,192.6969,3.1416,4.3664,1.4594,1.7333,3.3126,6.6275,1.7222,3.0233,0.42775,5.4434,9.1167,13.9911,7.8314,1.9707,3.9765,1.3587,15.8594,4.8364,3.3806,0.92943,2.2005,6.5669,11.7788,2.6741,3.8536,2.971,1.3553,1.3856,3.4229,9.6719,2.764,1.9765,8.9588,1.878,2.1067,1.7118,11.1343,1.5454,3.6119,0.91306,12.3815,4.5244,7.7568,4.2353,9.4211,6.1197,6.2906,6.5955,3.0252,1.3062,4.0622,,,,,,,,,,,,,,,67,,,,438
+nG+ROS3T0HC015,1.746,1.922,,70-79y,CN,,,18.924,5.4109,3.0682,2.5385,1.582,edsd,CN,,M,,0.33703,4.2642,3.6477,0.85586,8.6252,1.598,0.36629,3.1288,2.4683,51.7924,16.0955,204.8371,4.0282,4.4238,1.7345,1.881,3.1445,7.179,1.8084,3.1951,0.73334,5.7707,10.8506,17.6247,7.1327,2.3532,4.4863,1.6402,17.6918,5.2069,3.8937,0.99913,2.406,6.2331,14.4179,3.16,4.2241,3.5449,1.4449,1.4728,3.9134,9.4371,3.4146,2.1616,11.085,2.5838,2.4878,2.2206,11.7379,2.1633,3.33,1.1942,13.4185,4.9874,9.4595,3.6745,9.6752,7.8197,6.6555,8.0004,3.6428,1.4851,4.5506,29,,,0.06398,,,,0.31335,3.6289,3.5497,0.83649,10.2154,1.7697,0.37558,3.1536,2.6616,52.136,15.6745,209.6607,3.8993,4.4217,1.7315,1.83,3.371,7.3468,1.9102,3.3254,0.74711,6.6074,10.9587,15.4962,7.8299,2.2751,4.3039,1.732,17.2759,4.9683,3.8077,0.89837,2.2469,7.3224,14.0409,2.9668,4.3292,3.4363,1.5567,1.5907,3.705,9.588,3.0232,2.199,9.9252,2.3542,2.349,2.1026,11.2915,1.8275,3.3018,1.1543,13.278,5.0819,8.3,4.2161,9.5964,6.6682,6.4998,8.3394,3.2861,1.5101,4.3976,,,,,,,,,,,,,,,71,,,,439
+nG+ROS3T0HC016,1.8203,2.3693,,60-69y,CN,,,20.8786,5.1347,3.1424,2.4952,1.541,edsd,CN,,M,,0.38861,4.8193,4.4761,1.0282,10.2967,1.8047,0.37903,3.9768,3.0196,51.8798,18.5846,245.2991,4.4106,5.1312,1.9445,2.308,3.8704,7.7808,2.2381,3.6464,0.687,7.2915,13.6062,14.1622,8.0287,2.7728,5.1166,1.932,19.4226,6.7807,4.2106,1.2987,3.0629,6.8696,17.155,4.0809,4.6758,3.6453,1.6829,1.7541,5.229,11.5639,3.6673,2.3588,13.0527,2.7626,2.6542,2.3603,13.423,2.3159,3.4074,1.1796,16.1223,5.6205,9.1652,4.1522,11.8699,8.5007,8.3188,8.822,4.3187,1.6405,5.2435,30,,,0.0834,,,,0.3603,4.5332,4.1484,1.0118,10.9565,1.9423,0.39248,4.0653,3.2752,53.9778,19.9017,254.6872,4.199,5.2367,1.9954,2.1141,3.9924,8.5283,2.2496,3.7482,0.65598,8.0563,13.3156,12.8097,9.2334,2.4351,4.9001,1.9441,19.8668,5.8835,4.1494,1.4007,3.1132,8.135,16.7568,3.5397,5.1058,3.7747,1.6274,1.7571,4.5817,12.0986,3.2923,2.2668,11.9788,2.3698,2.6,2.0267,13.3159,2.124,3.6072,1.1172,15.3281,5.5129,9.2301,5.0689,12.5316,8.5019,8.0712,8.3799,3.8485,1.5661,4.949,,,,,,,,,,,,,,,68,,,,440
+nG+ROS3T0HC017,1.4538,2.0873,,60-69y,CN,,,18.3098,4.9937,2.8688,2.1986,1.3511,edsd,CN,,M,,0.41848,4.3267,3.8488,0.8721,8.7048,1.3184,0.35228,3.3702,2.9646,47.956,16.4401,232.8723,3.8269,4.6151,1.5863,1.9553,3.1571,7.0472,1.7075,3.3223,0.57124,5.8453,11.4197,11.4524,7.2409,2.1047,4.2856,1.5684,17.1496,5.2156,3.4098,1.0889,2.531,6.721,14.4265,2.9551,4.1456,3.1072,1.313,1.6986,4.0578,10.0097,3.3311,2.0912,12.0557,2.2998,2.1624,2.2474,12.2178,1.8724,3.6544,1.1602,14.0875,5.6419,8.648,3.5768,10.0536,7.2195,7.0318,7.4809,3.5607,1.6094,5.0437,28,,,0.08499,,,,0.39528,3.4312,3.7504,0.83627,9.3647,1.6453,0.37781,3.6674,3.2685,47.9509,15.1593,237.9884,3.5358,4.9757,1.5682,1.7944,3.2698,6.8674,1.78,3.3734,0.67856,6.4499,11.1777,11.539,8.3743,2.058,4.2094,1.5878,16.8387,4.9014,3.5136,0.94508,2.4824,7.715,14.4541,3.2342,4.2286,3.1751,1.4007,1.6676,3.7144,10.4286,3.027,2.1191,10.7019,1.9396,2.2357,1.916,11.8209,1.8172,3.7748,1.1679,13.402,5.5403,8.2654,4.3934,10.1625,7.2805,6.8002,7.3856,3.2818,1.3503,4.695,,,,,,,,,,,,,,,69,,,,441
+nG+ROS3T0HC018,1.7472,2.348,,60-69y,CN,,,17.1058,4.0555,2.3743,2.1305,1.9683,edsd,CN,,F,,0.33643,4.298,3.8531,0.71092,8.8278,1.3674,0.3149,2.7883,2.626,41.6131,14.3919,198.8528,3.6814,3.2905,1.3949,1.7906,3.0266,6.018,1.719,2.7194,0.91308,5.6959,9.3132,23.1821,6.5913,2.1191,4.3268,1.5749,16.1093,5.9526,3.4229,1.063,2.2973,6.029,11.6314,2.9437,3.7672,3.2537,1.269,1.4767,3.9301,9.2219,2.7157,2.1951,10.3743,2.1557,2.3082,2.1502,10.2406,1.7159,3.1849,1.0552,11.6029,4.5958,8.03,2.814,9.6752,6.3194,6.2285,6.5792,3.4089,1.543,4.5656,29,,,0.06259,,,,0.31573,3.927,3.84,0.70782,9.8956,1.6054,0.33346,2.8636,2.7265,40.2924,14.0596,202.4628,3.4439,3.6079,1.3899,1.8467,3.3818,5.9464,1.756,2.8403,0.7124,5.9514,9.374,20.2083,7.0311,1.8405,4.3398,1.6494,15.6855,4.5922,3.4189,0.9344,2.054,7.0436,12.7,2.629,3.7471,2.6471,1.135,1.4765,3.5493,9.0555,2.5252,2.0792,9.3081,1.6872,2.0741,1.9633,10.1076,1.7066,3.286,0.99239,12.3468,4.5352,7.6101,3.4902,8.7907,6.4709,6.0014,6.8762,2.6007,1.353,4.3167,,,,,,,,,,,,,,,68,,,,442
+nG+ROS3T0HC019,1.7662,1.9789,,70-79y,CN,,,19.121,5.3115,2.9056,2.4353,1.4986,edsd,CN,,M,,0.38864,4.6051,4.2489,0.81507,10.5443,1.4925,0.35545,3.742,3.0692,49.6266,15.6887,225.8912,4.0153,5.6826,1.634,1.9936,3.3957,7.7677,1.9738,3.3058,0.72752,7.5129,11.6909,16.0454,8.1993,2.3816,4.8702,1.695,18.1078,6.283,3.7465,1.0831,2.5888,7.1078,15.4109,4.0349,4.8921,3.1473,1.6515,1.604,5.319,12.5753,3.4562,2.2428,13.2842,2.5193,2.4196,2.2655,13.3904,2.195,3.9839,1.2251,15.2019,5.1182,10.3407,3.8,11.138,7.8884,7.5289,7.9237,3.7727,1.4679,4.9328,27,,,0.08182,,,,0.38731,4.105,4.2631,0.81828,11.5855,1.739,0.38675,3.8376,3.1379,50.1061,14.5491,231.9271,4.1378,5.8685,1.653,2.1221,3.7092,7.8632,1.9459,3.4324,0.80059,7.4822,12.2047,16.1951,8.8942,2.1421,4.2979,1.658,18.5625,6.6368,3.7818,1.0557,2.5254,7.82,15.2276,3.5276,4.843,3.7873,1.5342,1.5997,4.8073,12.8049,3.1566,2.313,11.2679,2.0533,2.2087,2.1857,12.4531,1.8612,4.0664,1.2173,15.2896,5.5017,8.4487,4.5674,10.6958,7.7819,7.1646,7.9021,3.4781,1.5519,4.6489,,,,,,,,,,,,,,,71,,,,443
+nG+ROS3T0HC020,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,444
+nG+ROS3T0MCI001,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,445
+nG+ROS3T0MCI002,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,446
+nG+ROS3T0MCI003,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,447
+nG+ROS3T0MCI004,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,448
+nG+ROS3T0MCI005,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,449
+nG+ROS3T0MCI006,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,450
+nG+ROS3T0MCI007,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,451
+nG+ROS3T0MCI008,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,452
+nG+ROS3T0MCI009,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,453
+nG+ROS3T0MCI010,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,454
+nG+ROS3T0MCI011,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,455
+nG+ROS3T0MCI012,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,456
+nG+ROS3T0MCI013,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,457
+nG+ROS3T0MCI014,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,458
+nG+ROS3T0MCI015,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,459
+nG+ROS3T0MCI016,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,460
+nG+ROS3T0MCI017,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,461
+nG+ROS3T0MCI018,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,462
+nG+ROS3T0MCI019,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,463
+nG+ROS3T0MCI020,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,464
+nG+ROS3T0MCI021,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,465
+nG+ROS3T0MCI022,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,466
+nG+ROS3T0MCI023,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,467
+nG+ROS3T0MCI024,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,468
+nG+ROS3T0MCI025,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,469
+nG+ROS3T0MCI026,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,470
+nG+ROS3T0MCI027,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,471
+nG+ROS3T0MCI028,,,,-50y,,,,,,,,,edsd,,,M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,472
+nG+ROS3T0MCI029,,,,-50y,,,,,,,,,edsd,,,F,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,473
diff --git a/tests/demo_data/dementia/ppmi.csv b/tests/demo_data/dementia_v_0_1/ppmi.csv
similarity index 96%
rename from tests/demo_data/dementia/ppmi.csv
rename to tests/demo_data/dementia_v_0_1/ppmi.csv
index 2b7666ed8aaa04e4ee2aa2a03d52b7ac33f1f836..ed1c472bf8742220f6deeaa5aa32ff14a0e5efc2 100755
--- a/tests/demo_data/dementia/ppmi.csv
+++ b/tests/demo_data/dementia_v_0_1/ppmi.csv
@@ -1,715 +1,715 @@
-subjectcode,_3rdventricle,_4thventricle,adnicategory,agegroup,alzheimerbroadcategory,apoe4,av45,brainstem,cerebellarvermallobulesiv,cerebellarvermallobulesviiix,cerebellarvermallobulesvivii,csfglobal,dataset,edsdcategory,fdg,gender,handedness,leftaccumbensarea,leftacgganteriorcingulategyrus,leftainsanteriorinsula,leftamygdala,leftangangulargyrus,leftaorganteriororbitalgyrus,leftbasalforebrain,leftcalccalcarinecortex,leftcaudate,leftcerebellumexterior,leftcerebellumwhitematter,leftcerebralwhitematter,leftcocentraloperculum,leftcuncuneus,leftententorhinalarea,leftfofrontaloperculum,leftfrpfrontalpole,leftfugfusiformgyrus,leftgregyrusrectus,lefthippocampus,leftinflatvent,leftioginferioroccipitalgyrus,leftitginferiortemporalgyrus,leftlateralventricle,leftliglingualgyrus,leftlorglateralorbitalgyrus,leftmcggmiddlecingulategyrus,leftmfcmedialfrontalcortex,leftmfgmiddlefrontalgyrus,leftmogmiddleoccipitalgyrus,leftmorgmedialorbitalgyrus,leftmpogpostcentralgyrusmedialsegment,leftmprgprecentralgyrusmedialsegment,leftmsfgsuperiorfrontalgyrusmedialsegment,leftmtgmiddletemporalgyrus,leftocpoccipitalpole,leftofugoccipitalfusiformgyrus,leftopifgopercularpartoftheinferiorfrontalgyrus,leftorifgorbitalpartoftheinferiorfrontalgyrus,leftpallidum,leftpcggposteriorcingulategyrus,leftpcuprecuneus,leftphgparahippocampalgyrus,leftpinsposteriorinsula,leftpogpostcentralgyrus,leftpoparietaloperculum,leftporgposteriororbitalgyrus,leftppplanumpolare,leftprgprecentralgyrus,leftptplanumtemporale,leftputamen,leftscasubcallosalarea,leftsfgsuperiorfrontalgyrus,leftsmcsupplementarymotorcortex,leftsmgsupramarginalgyrus,leftsogsuperioroccipitalgyrus,leftsplsuperiorparietallobule,leftstgsuperiortemporalgyrus,leftthalamusproper,lefttmptemporalpole,lefttrifgtriangularpartoftheinferiorfrontalgyrus,leftttgtransversetemporalgyrus,leftventraldc,minimentalstate,montrealcognitiveassessment,neurodegenerativescategories,opticchiasm,parkinsonbroadcategory,pib,ppmicategory,rightaccumbensarea,rightacgganteriorcingulategyrus,rightainsanteriorinsula,rightamygdala,rightangangulargyrus,rightaorganteriororbitalgyrus,rightbasalforebrain,rightcalccalcarinecortex,rightcaudate,rightcerebellumexterior,rightcerebellumwhitematter,rightcerebralwhitematter,rightcocentraloperculum,rightcuncuneus,rightententorhinalarea,rightfofrontaloperculum,rightfrpfrontalpole,rightfugfusiformgyrus,rightgregyrusrectus,righthippocampus,rightinflatvent,rightioginferioroccipitalgyrus,rightitginferiortemporalgyrus,rightlateralventricle,rightliglingualgyrus,rightlorglateralorbitalgyrus,rightmcggmiddlecingulategyrus,rightmfcmedialfrontalcortex,rightmfgmiddlefrontalgyrus,rightmogmiddleoccipitalgyrus,rightmorgmedialorbitalgyrus,rightmpogpostcentralgyrusmedialsegment,rightmprgprecentralgyrusmedialsegment,rightmsfgsuperiorfrontalgyrusmedialsegment,rightmtgmiddletemporalgyrus,rightocpoccipitalpole,rightofugoccipitalfusiformgyrus,rightopifgopercularpartoftheinferiorfrontalgyrus,rightorifgorbitalpartoftheinferiorfrontalgyrus,rightpallidum,rightpcggposteriorcingulategyrus,rightpcuprecuneus,rightphgparahippocampalgyrus,rightpinsposteriorinsula,rightpogpostcentralgyrus,rightpoparietaloperculum,rightporgposteriororbitalgyrus,rightppplanumpolare,rightprgprecentralgyrus,rightptplanumtemporale,rightputamen,rightscasubcallosalarea,rightsfgsuperiorfrontalgyrus,rightsmcsupplementarymotorcortex,rightsmgsupramarginalgyrus,rightsogsuperioroccipitalgyrus,rightsplsuperiorparietallobule,rightstgsuperiortemporalgyrus,rightthalamusproper,righttmptemporalpole,righttrifgtriangularpartoftheinferiorfrontalgyrus,rightttgtransversetemporalgyrus,rightventraldc,rs10498633_t,rs11136000_t,rs11767557_c,rs1476679_c,rs17125944_c,rs190982_g,rs2718058_g,rs3764650_g,rs3818361_t,rs3851179_a,rs3865444_t,rs610932_a,rs744373_c,subjectage,subjectageyears,tiv,updrshy,updrstotal
-10874,1.1415,1.6535,,+80y,Other,,,17.2739,4.4087,2.8506,2.139,1.6134,ppmi,,,M,,0.37839,4.6365,4.0826,0.7836,8.1697,1.4866,0.35685,2.965,2.6017,39.3162,15.6097,213.2275,3.5657,4.1198,1.4567,1.8009,3.0559,6.9941,1.988,2.9081,0.44071,5.3806,10.0948,14.7868,7.1313,2.1976,4.6585,1.8706,16.6176,4.9504,3.7317,0.87314,2.1327,6.6488,12.6916,2.9047,3.8236,3.0183,1.4212,1.2707,4.0385,10.1086,2.8549,2.1749,9.8497,2.1241,2.3787,2.18,10.3712,1.6861,3.7382,1.1467,12.8927,4.6258,7.6945,2.5894,9.3174,6.4591,7.3853,6.9925,3.1808,1.4172,4.3382,,,,0.064615,CN,,HC,0.3427,3.9221,3.7656,0.79705,9.1327,1.6363,0.36071,3.1226,2.4231,38.4905,15.5323,214.3219,3.4815,5.2159,1.5052,1.8064,3.2526,7.312,1.849,3.1977,0.61126,5.7887,11.2193,14.1772,7.9715,2.0465,4.6533,1.782,16.8703,4.2505,3.6111,0.93032,2.1443,7.6814,13.057,2.7722,4.1488,3.0716,1.4294,1.2902,3.5782,9.838,2.7835,1.9904,8.3748,1.8338,2.3241,1.8295,10.6331,1.4368,3.5363,1.1097,13.5021,4.6806,7.3448,3.7443,9.2087,6.3495,6.9842,7.1818,2.9965,1.2412,4.1799,,,,,,,,,,,,,,,81,,,
-12593,1.7878,1.8564,,70-79y,Other,,,18.4783,4.2011,2.5299,2.2275,1.2854,ppmi,,,F,,0.41975,4.4359,3.906,0.89107,8.1653,1.4275,0.36862,3.1117,2.9238,42.0294,16.2344,221.3416,3.8735,4.2143,1.6027,1.9513,3.1144,7.4331,2.0801,3.3278,0.57301,5.0502,11.2238,15.8171,7.672,2.1579,4.4477,1.8465,16.3701,4.9989,3.7285,1.0277,2.246,6.5017,13.1102,2.7393,3.7581,3.1336,1.4268,1.3046,4.6073,10.9352,3.3254,2.0095,10.5437,2.2137,2.2861,2.0474,10.6999,1.8242,3.8852,1.2199,12.0352,4.5695,8.2203,3.1912,9.4383,6.8743,7.6848,7.4064,3.5948,1.3541,4.7021,,,,0.060294,Other,,PRODROMA,0.37649,3.8923,3.637,0.85433,8.2179,1.617,0.36424,3.4192,2.838,42.2264,15.3736,223.2151,3.536,4.7484,1.6042,1.8229,3.3247,7.1498,1.9927,3.4133,0.67653,5.0552,11.0697,13.0143,8.2636,2.0566,4.2937,1.7001,16.2388,3.8524,3.6011,1.0841,2.1509,7.3556,12.5733,2.1516,3.7829,3.4869,1.4027,1.2468,4.2648,11.2041,2.9961,2.1175,9.0803,2.1371,2.1568,1.87,10.6505,1.7478,3.6869,1.1302,12.6136,4.6371,7.3008,3.1861,9.2906,6.6113,7.3591,7.6143,3.3949,1.3573,4.3352,,,,,,,,,,,,,,,73,,,
-14281,1.2311,1.8894,,60-69y,Other,,,18.1855,4.9224,2.5258,2.4021,1.1653,ppmi,,,F,,0.47446,4.4177,3.8699,0.90749,9.2398,1.4222,0.39033,3.2647,3.3609,48.3231,14.5485,200.5693,3.2813,4.2474,1.7458,1.8604,3.4657,7.526,2.0973,3.202,0.31495,6.0225,10.5854,12.8598,7.9772,2.2286,4.7772,1.7675,17.6128,6.1449,3.796,1.2098,2.7115,6.476,12.6514,3.2877,4.2394,2.8409,1.396,1.3861,4.41,10.408,3.3362,2.2283,12.375,2.4609,2.2377,2.0327,13.0907,1.9528,4.4344,1.181,14.8274,4.9978,9.6993,3.4229,11.0433,6.7305,8.0944,7.3196,3.5495,1.3968,4.6606,,,,0.082518,Other,,PRODROMA,0.43563,4.0725,3.6611,0.9116,9.532,1.8643,0.38962,3.4124,3.518,48.5227,14.5798,207.0603,3.6874,4.4497,1.8405,1.6708,3.7517,7.9474,2.1424,3.3881,0.4263,5.9706,10.8422,12.3332,8.4909,2.069,4.8307,1.8156,18.1828,5.2866,4.0418,1.2439,2.7842,7.7587,13.4892,2.8624,4.2606,3.061,1.2186,1.4214,3.9334,9.47,3.166,2.2112,10.7831,2.0508,2.209,1.9085,11.7465,1.7982,4.2872,1.0989,15.0771,5.3286,8.1732,4.1122,10.9238,7.5535,7.6431,7.2719,2.9771,1.3419,4.5234,,,,,,,,,,,,,,,67,,,
-14426,1.6064,1.7958,,60-69y,Other,,,18.8707,5.0379,2.5161,2.1601,1.5173,ppmi,,,F,,0.50756,4.8718,4.3814,0.95697,8.7353,1.724,0.39562,3.2756,3.3199,45.4045,16.3485,260.2538,4.1547,5.2462,1.8635,1.9406,3.8021,7.4972,2.2131,3.1212,0.55225,6.7608,11.5087,28.4254,8.1487,2.5575,4.7325,1.859,20.1547,6.6835,4.2269,1.5053,3.1174,7.2992,14.3746,3.9073,4.3503,3.2393,1.501,1.6078,4.387,11.178,3.2561,2.4507,12.8909,2.5029,2.5446,2.4891,14.452,2.1416,4.5103,1.3711,16.5679,5.9373,8.3941,4.1241,9.8426,7.277,8.4833,7.8607,4.0902,1.6936,4.9006,,,,0.075733,Other,,PRODROMA,0.44217,4.5099,4.0469,0.93179,10.3595,1.7256,0.42421,3.4032,3.5567,44.9371,16.2403,265.7188,4.1635,5.1091,1.8239,1.968,3.8132,8.1589,2.035,3.3783,0.54228,6.6136,12.5277,22.173,8.5954,2.2735,4.6856,1.8597,19.1971,5.5363,3.7351,1.223,3.057,8.1522,14.4866,3.1664,4.3981,3.6297,1.5631,1.5477,4.1952,11.6762,3.1362,2.6315,10.9509,2.7772,2.3308,2.5156,13.6379,2.2053,4.496,1.3352,16.3192,6.0685,8.6027,4.1354,10.5975,7.1734,8.2288,8.0805,4.0911,1.8579,4.7266,,,,,,,,,,,,,,,63,,,
-15761,1.138,1.8477,,60-69y,Other,,,16.4242,4.5665,2.3042,2.1539,1.3233,ppmi,,,M,,0.38639,4.0975,3.886,0.74328,8.7976,1.5456,0.33568,3.5985,2.9168,44.3303,13.3366,177.8244,4.0773,4.8129,1.5163,1.8487,3.523,6.4002,1.9309,2.6275,0.43675,6.5933,10.1069,14.2007,7.4469,2.3848,4.5731,1.6524,17.0073,6.5806,3.6977,1.0685,2.5521,6.3783,12.5871,3.5038,4.2297,3.241,1.4097,1.1498,3.9519,9.772,2.9928,2.2366,10.8402,2.5643,2.2775,2.0105,11.2276,1.9735,3.9316,1.1042,12.567,4.6833,8.6023,4.0737,9.4233,6.462,7.2603,6.6955,3.5839,1.6138,3.9487,,,,0.079754,Other,,PRODROMA,0.34301,3.6981,3.7036,0.7401,10.0125,1.6322,0.34986,3.3986,2.8048,43.8482,13.0148,180.1012,4.0237,4.95,1.5386,1.7268,3.6283,6.9749,1.8913,2.778,0.45608,6.4485,10.8246,11.6967,7.4002,2.0428,4.4401,1.6382,15.626,5.4283,3.389,1.1343,2.4064,7.5664,13.798,2.8438,4.0862,3.0095,1.4368,1.1146,3.6923,9.7918,2.7718,2.2562,10.1905,2.1284,2.0894,1.8091,11.7167,1.6271,3.8497,1.0709,12.8801,4.793,8.2938,4.0786,9.1346,6.5146,6.9192,7.2562,3.2502,1.2571,3.8417,,,,,,,,,,,,,,,63,,,
-16644,1.6911,2.2142,,70-79y,Other,,,20.2818,4.8645,2.8599,2.1833,1.3755,ppmi,,,F,,0.45238,5.8766,5.1666,0.92011,11.7514,1.9622,0.43583,4.1571,3.1598,48.9516,17.1838,248.6812,4.4342,4.833,1.7166,2.4801,4.4647,7.4288,2.5525,3.3948,0.54148,8.2471,11.5045,19.1367,8.3658,3.0115,5.6374,2.2604,21.8955,8.2928,5.0693,1.0546,2.8591,9.103,14.5738,4.2529,4.977,4.1259,1.8367,1.534,5.0398,11.6945,3.4307,2.8471,11.6012,2.7227,3.1996,2.6726,14.3561,2.1185,4.4661,1.5581,17.4537,6.3092,8.9814,3.9546,10.895,7.0347,8.5959,8.0905,5.2781,2.0265,4.9062,,,,0.083381,Other,,PRODROMA,0.4078,5.6438,5.1698,0.89935,11.1304,2.1489,0.44541,3.8619,3.2705,50.1653,16.9708,250.3761,4.395,5.9253,1.7189,2.2811,4.3694,7.7827,2.5757,3.5933,0.4962,7.4889,11.9497,17.1231,8.7033,2.7135,5.4682,2.1851,19.4915,5.8143,4.6636,1.1868,3.0015,9.2072,14.4051,3.493,4.4988,3.9277,1.8462,1.4751,4.5549,12.5133,3.0349,2.5854,10.4654,2.6475,2.8523,2.0058,13.8867,2.0622,4.3965,1.4374,17.052,6.6364,8.0149,5.0567,11.2337,7.2826,8.3159,8.0853,4.1205,1.5389,4.6149,,,,,,,,,,,,,,,70,,,
-17608,2.1349,2.7486,,60-69y,Other,,,21.0443,4.7347,2.8952,2.1981,2.224,ppmi,,,M,,0.43471,5.4059,4.6861,0.90022,10.656,1.5578,0.40521,3.5952,3.2069,47.2681,16.5297,252.2348,4.0767,4.9892,1.8636,2.1113,4.2611,7.4787,2.1654,3.3648,1.0477,6.4007,11.2388,32.1863,8.4,2.4701,5.008,1.9355,19.1569,6.1475,4.1798,1.2713,3.062,8.4011,14.646,4.0942,4.542,3.2252,1.4926,1.6586,4.7549,12.465,3.5655,2.6225,13.2998,2.2666,2.7016,2.3908,12.433,1.744,4.3432,1.4071,15.4831,6.3292,9.7555,3.836,12.4723,7.5282,9.1144,7.7626,3.8616,1.4078,5.4512,,,,0.089555,Other,,PRODROMA,0.42505,4.492,4.4405,0.86999,11.6674,1.7779,0.41109,3.5861,3.4994,46.916,15.951,254.0413,3.974,4.7928,1.6548,1.97,4.2722,7.6542,2.2121,3.7364,0.71139,6.8691,11.8371,24.4349,8.5439,2.2798,5.3904,2.0585,18.5962,5.6814,3.9518,1.4256,3.2022,9.3285,14.853,3.2901,4.5612,3.1254,1.6093,1.6765,4.3236,11.87,3.1133,2.6005,11.4478,2.158,2.3879,2.1857,12.8779,1.9619,4.3681,1.3101,14.2318,5.7259,8.0795,4.5531,12.6019,7.3708,9.0942,7.8973,3.4298,1.4762,5.1801,,,,,,,,,,,,,,,65,,,
-18026,2.6961,3.2097,,60-69y,Other,,,19.6726,5.1126,2.0114,2.1293,3.1001,ppmi,,,M,,0.23604,3.4488,3.3041,0.78064,8.5854,0.97462,0.33302,1.9826,1.9841,43.7714,19.6012,267.7566,2.6704,3.1186,1.4073,1.0498,3.2298,5.7967,1.9094,2.8166,0.54601,6.2637,7.6335,36.564,8.3999,1.2581,4.4456,1.6227,10.689,6.2998,3.9222,1.1204,3.5963,5.7433,11.4275,2.7996,4.397,1.8765,0.73418,1.2791,3.8253,7.2652,2.926,2.0208,6.5366,1.6538,1.8562,1.916,6.6789,1.7387,3.0586,1.1985,7.5144,4.6119,7.2658,3.0529,6.546,5.7402,8.2406,5.8926,1.8985,1.1872,5.1601,,,,0.094683,Other,,PRODROMA,0.19576,3.0781,2.8196,0.716,9.3054,0.7806,0.29396,2.1649,2.0379,44.0443,16.7295,265.1049,2.4939,3.3431,1.3806,1.005,3.2425,6.107,1.7064,3.041,0.42433,7.002,8.1349,33.4046,8.7428,1.2786,4.0588,1.2751,10.7621,5.8583,2.7128,1.0086,3.0794,5.4889,10.6989,2.3911,4.2964,1.8793,0.91935,1.3948,3.4729,7.3089,2.8357,1.901,6.3771,1.3588,1.369,1.5172,7.3367,1.2834,2.6452,1.0213,7.2783,3.8828,6.1989,3.7611,6.013,4.9735,7.5406,6.0421,1.9661,1.1317,4.671,,,,,,,,,,,,,,,61,,,
-18491,1.1717,1.6511,,60-69y,Other,,,18.6711,4.762,2.3442,2.1407,1.0092,ppmi,,,M,,0.51286,5.0112,4.3533,0.89533,10.262,1.5224,0.4281,2.7053,3.3592,45.6626,13.8367,218.5761,4.3667,4.5175,1.7027,1.8992,3.4514,7.7874,2.3114,3.0515,0.39001,6.8513,11.8613,12.1458,7.6331,2.5298,4.7885,1.8551,18.8732,6.5626,4.3109,1.1528,2.9877,7.4199,14.4248,3.5379,4.2422,3.095,1.5026,1.4295,4.5395,11.451,3.2896,2.5903,12.818,2.747,2.7717,2.2059,12.658,2.1817,4.4184,1.442,15.898,5.721,10.3576,4.0216,13.0665,7.8828,8.7024,7.2771,3.7674,1.5823,4.7418,,,,0.080068,Other,,PRODROMA,0.4691,4.7478,4.1515,0.87858,11.9145,1.8538,0.43188,2.9278,3.3705,45.3276,13.2492,221.8025,4.1697,4.622,1.6706,1.768,4.1515,8.439,2.3721,3.2886,0.38706,7.5596,12.6902,8.4883,8.1668,2.3264,4.9316,1.9557,19.0636,5.8944,4.1847,1.177,3.1747,7.9472,14.6818,3.1058,4.6918,3.1743,1.5441,1.39,4.0813,11.1119,2.9438,2.5404,11.0498,2.2541,2.4237,2.1212,12.569,1.8082,4.3198,1.39,15.4383,5.6773,9.2441,4.7232,12.3636,7.2019,8.4143,7.6686,3.2947,1.4811,4.4868,,,,,,,,,,,,,,,66,,,
-18502,1.5841,2.455,,60-69y,Other,,,21.8077,5.8785,3.3459,2.5897,1.4134,ppmi,,,F,,0.5247,5.5651,5.0974,0.94178,10.1455,1.9192,0.48329,2.7383,3.2602,58.9379,21.1386,284.006,4.7843,4.3317,1.8361,2.2999,4.028,9.0512,2.6236,3.3131,0.55515,6.9952,13.8558,12.9767,7.5904,2.6585,5.1504,2.3377,21.3672,6.2264,4.6728,1.1886,3.1562,8.798,17.0026,3.3385,4.7879,3.6567,1.5841,1.7083,4.8552,11.9446,3.3521,2.846,11.7578,3.3011,2.8514,2.7992,13.3519,2.8625,4.4153,1.6499,16.6257,6.4701,10.1825,3.4392,12.3812,8.7439,10.5102,8.6141,4.5604,2.1603,5.7002,,,,0.078746,Other,,PRODROMA,0.43653,4.4221,4.7461,1.0416,12.0911,2.052,0.47348,2.935,3.024,57.4498,19.4165,291.5372,4.486,4.7884,2.0061,2.0946,4.3615,9.1089,2.3241,3.6325,0.60232,7.0473,13.0386,14.3042,8.5794,2.8105,4.9173,2.1503,22.5373,5.271,4.191,1.344,3.307,10.0869,16.6039,3.0676,4.5251,3.6863,1.92,1.8311,4.5388,11.831,3.2382,2.7971,10.288,2.799,2.9567,2.3996,13.5482,2.4431,4.4973,1.4686,18.0699,7.2903,9.2134,3.9698,11.2769,8.6602,9.939,7.8788,4.0823,1.6547,5.3992,,,,,,,,,,,,,,,66,,,
-18567,1.271,2.5647,,60-69y,Other,,,17.7049,4.8959,2.9289,2.5043,1.3396,ppmi,,,M,,0.48657,4.7944,4.5691,0.92704,10.9143,1.9269,0.46899,3.2679,3.2549,56.2637,12.7525,214.2604,4.3735,5.4956,1.815,2.1948,4.0581,8.5802,2.8367,3.0725,0.80569,8.1886,13.9512,24.2641,8.3513,2.6561,4.9511,1.9904,21.1682,7.8523,5.0893,1.3608,2.8158,7.4715,17.8181,4.2714,5.2576,3.8204,1.5358,1.1903,4.6135,11.6829,3.3698,2.4059,12.7277,2.5144,2.6106,2.4208,14.6658,2.087,4.2225,1.5113,15.3083,5.306,10.3444,4.3919,11.7564,8.5688,8.4159,8.5653,4.1397,1.8693,4.5101,,,,0.073115,Other,,PRODROMA,0.43851,4.3417,4.2726,0.909,11.7064,2.1888,0.45846,3.1687,3.4863,54.3794,12.4142,217.8298,4.2285,5.2923,1.8345,2.1171,4.0629,8.9369,2.5709,3.2477,0.80153,8.7396,14.3145,18.7777,8.2917,2.643,4.4196,1.8874,21.3293,6.9759,4.5925,1.1775,2.621,8.4483,17.418,3.4038,5.2076,3.841,1.7237,1.1997,4.2928,11.8476,3.0221,2.4544,11.8435,2.3811,2.6059,2.0759,14.334,2.1604,4.1204,1.3591,17.3144,5.3392,9.4251,5.1093,10.5666,8.9334,8.0616,8.6648,3.672,1.6662,4.2719,,,,,,,,,,,,,,,62,,,
-3000,1.5408,2.1073,,60-69y,Other,,,17.0275,4.3623,2.5513,2.0792,1.0531,ppmi,,,F,,0.42295,4.7818,4.3755,0.72961,9.0991,1.7231,0.36447,3.8574,2.9553,46.326,15.1477,217.8273,3.9289,4.9268,1.4697,1.9251,3.5624,7.1659,2.2454,2.8577,0.47686,6.5718,10.4832,12.8863,7.6066,2.5401,4.7447,1.9757,17.27,6.9347,4.0345,1.1313,2.8536,6.7974,13.2697,3.8009,4.4925,3.4429,1.602,1.3898,3.856,10.524,3.1148,2.2019,11.7897,2.0935,2.5472,2.3841,13.1285,1.9667,4.2663,1.1302,14.7688,5.5124,8.7953,4.2917,10.9083,7.4066,8.1938,6.6028,3.613,1.5249,4.6107,,,,0.075815,CN,,HC,0.39315,4.2525,4.4301,0.87853,9.4215,1.8398,0.39227,3.8864,3.1561,47.2827,13.5896,228.7397,3.9163,5.1056,1.702,2.2204,4.03,7.8255,2.2215,3.4384,0.49847,6.1253,11.2199,11.2383,8.4326,2.3592,4.5245,1.9808,18.5349,5.287,3.6738,1.0658,2.6571,7.842,13.3511,2.8568,4.5935,3.4801,1.6973,1.4925,3.8036,10.8601,3.1312,2.5707,10.2395,2.3977,2.3724,2.1441,12.1233,2.2582,4.4527,1.1,14.6958,5.2549,8.6937,4.9389,11.1772,7.4694,7.6877,7.4092,3.6246,1.7507,4.5081,,,,,,,,,,,,,,,69,,,
-3001,1.4938,1.9605,,60-69y,Other,,,21.0665,5.1653,2.7919,2.4048,1.5815,ppmi,,,M,,0.50905,5.4294,4.6346,1.0377,9.5962,1.8973,0.43264,3.8467,4.067,52.0689,17.996,254.2344,4.8657,4.5172,1.9332,2.1824,3.8094,7.9588,2.3351,3.5409,0.64321,6.6531,12.1938,22.3958,8.2036,2.6357,4.891,2.0825,19.7857,6.4299,4.586,1.0978,2.9658,7.2623,15.5101,3.2886,4.7494,3.8081,1.5869,1.7398,4.4254,10.6937,3.4621,2.4859,12.0421,2.7528,2.8652,2.6985,12.1886,2.1848,4.8694,1.2698,15.5085,5.7984,9.311,3.6604,9.6644,7.7152,8.703,9.0256,4.0352,1.757,5.2421,,,PD,0.083964,PD,,PD,0.41894,4.2764,4.5973,1.0346,11.1721,2.1164,0.40797,3.5284,4.1857,52.9336,17.8708,263.9553,4.5395,5.3381,1.9505,2.2553,4.0578,8.1426,2.2304,3.7999,0.6443,7.3812,13.0836,18.7379,8.6023,2.5679,4.6312,2.0798,19.6387,6.2608,4.2975,1.2428,3.0402,8.1988,16.3845,2.7467,4.9618,4.1247,1.7172,1.8185,3.8489,10.6681,3.1983,2.6547,9.9122,2.3122,2.5479,2.3355,13.2461,1.938,4.7528,1.2141,16.1117,5.9345,7.9723,4.5562,11.2211,7.7792,8.0379,9.0019,3.747,1.5773,5.1748,,,,,,,,,,,,,,,65,,,
-3002,0.78566,1.9478,,60-69y,Other,,,16.7977,5.0939,2.5279,2.1937,0.97229,ppmi,,,F,,0.46891,3.9426,4.1199,0.74512,8.1877,1.3769,0.37959,2.7419,3.1572,45.0208,13.8492,205.8855,3.7015,3.8155,1.5019,1.817,3.1658,7.0922,1.8926,2.7112,0.29354,5.9914,10.4297,10.0331,6.8603,2.1743,4.0499,1.5535,17.2116,6.2901,3.8216,1.0567,2.4909,5.7521,13.0711,2.9726,4.2783,3.5933,1.3817,1.2961,3.6547,8.4431,2.9357,2.2902,10.9701,2.058,2.6024,2.1217,11.5609,1.7442,4.4966,1.0554,14.7205,4.6399,8.4316,4.0416,9.934,6.7656,7.2936,7.2938,4.0363,1.556,4.1078,,,PD,0.06991,PD,,PD,0.40065,3.4293,4.2676,0.81422,9.5353,1.8214,0.36516,2.2261,3.2016,46.4781,13.1547,207.5885,3.0843,4.5686,1.6417,1.9189,3.1807,7.5087,1.8479,2.9453,0.37972,5.4833,11.0018,9.969,7.3979,2.2638,3.785,1.468,17.6043,4.5637,3.7742,1.1012,2.365,6.3276,13.4596,2.2143,3.9344,3.7198,1.4784,1.4238,3.232,9.4682,2.9324,2.2213,9.1324,1.5971,2.5092,1.8896,11.5443,1.5911,4.1502,0.96041,13.4548,4.3556,7.2331,4.3,11.0538,6.6384,6.9832,7.3991,3.653,1.2384,4.0861,,,,,,,,,,,,,,,68,,,
-3003,0.70634,1.4149,,50-59y,Other,,,18.8144,4.8504,2.7963,2.4718,1.0551,ppmi,,,F,,0.42414,4.7592,4.6446,0.88374,8.8094,1.7739,0.3608,3.4575,2.8888,49.8007,17.0369,237.1451,4.1169,5.7165,1.7771,1.9599,3.6868,7.2091,2.1963,3.262,0.41392,6.8988,11.7381,10.5334,7.3989,2.5098,4.3592,2.0105,17.9218,5.7124,4.1338,1.0796,2.6269,7.5057,13.6705,3.3304,4.311,2.973,1.4906,1.6895,3.8676,10.649,3.3572,2.3948,10.5754,2.5932,2.6007,2.2229,11.2236,2.1353,4.2143,1.1897,15.715,5.5834,8.7208,3.8509,10.5386,6.9638,8.2213,8.8323,3.4585,1.7541,4.9323,,,PD,0.07112,PD,,PD,0.41496,4.1622,4.3754,0.93435,10.6909,1.9488,0.38948,3.4218,3.1286,49.391,16.4465,245.1252,4.04,4.9005,1.8555,2.0653,3.9736,7.3204,2.1516,3.6861,0.687,5.8623,11.8012,9.4373,7.9883,2.3501,4.1112,2.0056,17.4786,5.2543,4.0317,1.1209,2.9608,8.3898,14.2303,2.7282,4.0478,3.0733,1.7293,1.676,3.8888,10.6686,3.2946,2.4348,9.4945,2.2886,2.3251,2.1188,11.5155,1.9195,4.2584,1.1261,17.1819,6.0782,7.3319,4.5152,10.3048,6.8112,8.0186,9.2169,3.9163,1.6133,4.8219,,,,,,,,,,,,,,,57,,,
-3004,0.78028,2.2172,,50-59y,Other,,,19.9529,4.4344,2.3932,2.028,0.84713,ppmi,,,M,,0.49037,5.1422,4.4927,0.91956,9.4924,1.7842,0.41248,3.2864,2.8477,46.6203,16.8698,245.4973,3.9031,4.8035,1.7668,1.9554,3.3876,7.5607,2.2443,3.0953,0.51287,6.5423,11.5408,8.7818,7.2092,2.5456,5.0694,1.9201,17.5227,6.1384,4.3197,1.1419,2.7274,7.1946,14.4446,3.4075,4.3349,3.214,1.4943,1.5028,4.3516,11.3416,3.0868,2.1904,13.4506,2.3456,2.754,2.1927,13.8948,1.9646,4.8357,1.117,15.4257,5.4653,10.4508,3.4262,12.0258,7.3729,8.1529,8.2254,3.6043,1.4081,4.8534,,,,0.067785,CN,,HC,0.4101,4.4275,4.5781,0.92446,11.0487,1.9266,0.38701,3.0077,3.1071,47.2527,16.0287,250.2958,4.3329,4.5921,1.8495,2.1474,3.6326,7.9543,2.0322,3.3378,0.56437,6.2556,12.1681,10.084,7.9226,2.4608,4.519,1.7466,17.8538,4.9627,3.8419,0.97003,2.5738,8.5072,15.093,2.5223,4.6741,3.9432,1.733,1.5108,4.2235,11.1836,2.9971,2.3686,10.839,2.6362,2.5906,2.0153,13.1054,2.124,4.5396,1.0136,15.199,5.8855,10.1937,4.0256,12.978,7.6767,7.9172,8.471,3.6931,1.6209,4.5902,,,,,,,,,,,,,,,59,,,
-3006,1.6978,2.6503,,50-59y,Other,,,19.5934,5.1491,2.9064,2.2324,1.4589,ppmi,,,F,,0.50842,4.9931,5.2245,1.0426,10.8393,1.7158,0.41953,3.7442,3.882,50.2635,17.3102,252.035,5.1058,4.7973,1.9843,2.2612,3.6727,8.8097,2.2764,3.8074,0.46859,6.8876,13.2179,14.8598,8.5114,2.4871,4.7589,1.8205,19.5254,6.8585,4.4324,1.1978,2.8388,7.2565,16.1338,2.8931,4.4697,3.8513,1.6679,1.7575,4.9592,12.3662,3.9478,2.9032,12.7062,3.2408,2.9087,2.8266,12.5679,2.6846,4.9915,1.2353,16.8389,5.5119,10.1432,3.3122,12.1795,7.8187,9.2073,8.3527,3.8347,2.0306,5.5158,,,PD,0.094512,PD,,PD,0.46467,4.7222,4.4755,1.0481,12.2653,1.9469,0.41912,3.7034,4.1978,50.7144,15.3622,255.5652,4.6666,5.1258,2.0063,2.0253,4.0182,8.979,2.0536,4.0418,0.47667,6.6365,14.1972,14.5174,8.5762,2.4649,4.9885,1.7502,20.9483,6.2086,4.1142,0.89265,2.5665,7.5858,17.2811,2.2601,4.5426,4.204,1.5467,1.744,4.6461,12.0287,3.4757,2.7328,11.1438,2.898,2.559,2.3333,12.9004,2.3028,4.8593,1.1875,15.1022,5.2112,9.154,4.3286,11.826,7.8976,8.74,8.6202,4.0094,1.8391,5.0274,,,,,,,,,,,,,,,58,,,
-3008,1.0525,2.0744,,+80y,Other,,,15.372,4.125,2.0127,2.143,1.31,ppmi,,,F,,0.39859,3.6124,4.2347,0.78341,8.3391,1.4789,0.34437,2.815,3.1231,43.1852,13.1095,165.3161,4.1141,4.5687,1.5938,1.9097,2.9552,6.7951,1.7801,2.8247,0.57953,6.1222,9.9317,17.3659,7.5639,2.103,3.7983,1.4502,15.2861,5.1882,3.5706,0.94952,1.9479,5.3863,11.2602,2.7992,4.313,3.2637,1.3251,1.0344,3.7495,9.4736,2.9509,2.2176,9.1164,2.2624,2.4788,2.2452,8.894,1.763,4.1048,0.98504,13.5215,4.0906,8.4279,3.0045,8.4077,6.072,6.2642,7.2087,3.1337,1.5076,3.7067,,,,0.059932,CN,,HC,0.35958,3.1506,3.8089,0.72432,9.3616,1.5266,0.33696,3.1764,3.315,44.664,12.9228,165.273,4.1243,4.9872,1.4465,2.0035,3.0834,7.1634,1.6389,2.9296,0.74663,6.0328,10.3459,17.696,7.7244,1.8827,3.7637,1.4091,14.8053,4.9179,3.3216,0.835,2.0828,5.8903,11.9352,2.3108,4.2622,3.092,1.4989,1.0464,3.3391,9.4201,2.6811,2.4394,8.2528,2.1589,2.1159,1.8901,9.5159,1.9284,4.0676,0.95185,12.8344,4.3159,8.2321,3.9963,7.5743,6.6097,5.8133,7.048,3.158,1.418,3.5722,,,,,,,,,,,,,,,82,,,
-3010,1.1631,3.2283,,-50y,Other,,,21.8966,5.8173,3.5113,2.6962,0.86965,ppmi,,,M,,0.54918,5.9127,5.429,1.2276,12.5715,2.0765,0.47299,3.6362,3.4117,64.8844,19.9506,269.6659,5.0349,5.8376,2.3462,2.4536,4.5689,9.4796,2.5871,4.0526,0.44339,7.5331,13.681,10.9408,8.9474,3.1766,5.7512,2.2885,23.1164,8.5086,4.8851,1.1222,3.0155,9.3701,16.2422,3.8163,5.5587,3.9889,1.933,1.7259,5.6089,13.3717,4.0402,2.742,14.0143,3.1786,2.8936,2.658,14.6189,2.92,5.7811,1.5045,17.2036,6.5322,10.909,4.4339,13.9575,9.8794,9.8338,10.1401,5.2264,2.2219,5.7318,,,PD,0.086514,PD,,PD,0.52319,4.6852,4.8631,1.1759,13.1092,2.1265,0.47444,4.0351,3.5588,64.6082,18.4275,269.7744,4.7286,6.675,2.2552,2.2014,4.9537,9.2883,2.4884,4.1565,0.55856,8.0831,14.0469,10.715,9.725,2.7632,5.4853,2.2549,21.7646,6.9704,4.3785,1.2481,3.3688,10.3226,17.7432,3.4019,5.3234,3.8831,1.9836,1.7214,4.8379,14.0082,3.7069,2.7284,13.1819,2.7288,2.801,2.3508,15.0312,2.4548,5.5096,1.4029,18.7379,6.2147,9.8111,5.7452,11.9943,9.822,9.5161,10.7881,4.9714,1.8584,5.4931,,,,,,,,,,,,,,,47,,,
-3011,0.90359,2.0293,,-50y,Other,,,19.0746,5.0769,3.2155,2.4167,0.97802,ppmi,,,M,,0.60143,5.8239,5.5466,0.96591,9.7962,2.1516,0.47749,3.5113,3.9408,55.5577,17.2516,238.6963,4.5024,4.6177,1.787,2.4325,3.9363,8.2008,2.4487,3.6157,0.39009,7.4684,12.2951,12.3156,8.0448,3.0849,5.1992,2.4548,21.2241,6.9136,4.5606,1.1532,2.7815,7.9784,14.7614,3.7116,4.7572,4.3595,1.9191,1.7539,4.5538,11.5527,3.4736,2.8921,12.552,2.6552,2.9891,2.741,14.2442,2.0966,5.6493,1.3108,15.6079,5.5491,9.5611,3.9188,11.1705,7.5713,8.9189,7.9491,5.247,1.8125,5.363,,,,0.066501,CN,,HC,0.52124,4.8743,4.9292,0.93124,11.7129,2.1961,0.46117,3.5286,3.9837,56.8859,17.7058,245.8464,4.3187,5.0175,1.771,2.0884,4.8267,8.2835,2.6567,3.496,0.39139,6.8191,12.307,9.2822,8.5089,2.7113,5.2559,2.3623,22.0913,6.0344,4.6342,1.1869,3.0372,9.1192,15.2528,2.4183,4.8411,3.8156,1.7069,1.7104,4.1709,11.4607,3.1322,2.8512,13.2975,2.5719,2.5893,2.3877,14.9035,2.0832,5.3428,1.2443,16.6747,5.9035,9.5123,4.8242,10.1691,8.1328,8.6845,8.7191,4.0101,1.7321,5.0926,,,,,,,,,,,,,,,32,,,
-3012,1.513,2.7912,,50-59y,Other,,,18.0099,5.4806,2.969,2.543,1.5119,ppmi,,,M,,0.4796,5.9637,4.9949,1.0629,10.9682,1.9343,0.4166,4.4044,3.559,53.9612,15.1934,265.0425,4.6987,6.092,2.0932,2.3903,4.0827,8.6016,2.3601,3.5986,0.43556,7.0165,13.0326,16.3293,9.0999,2.8032,6.0791,2.1519,23.6773,6.9989,4.4554,1.4547,3.1051,7.9739,15.9552,3.5092,4.8801,4.0314,1.6766,1.4181,5.7595,14.4253,3.7763,2.9552,13.7485,3.3041,2.7359,2.7583,16.9217,2.711,5.2532,1.3135,19.001,5.8491,11.3984,4.4468,14.0336,8.7051,8.3176,9.1528,4.6942,2.238,4.8249,,,PD,0.090736,PD,,PD,0.45382,5.1561,4.7482,1.0426,12.8141,2.1888,0.42683,3.8453,3.5801,56.2671,15.2069,270.1043,4.8458,6.1161,2.214,2.1706,4.7861,9.2858,2.5406,3.7444,0.535,7.2332,14.1687,13.3062,9.4182,2.8322,5.739,2.253,23.6114,5.9776,4.6305,1.2495,3.0169,9.7444,17.7369,2.6657,4.9049,4.0607,1.6998,1.4267,5.3521,13.8241,3.5588,2.7584,11.8066,3.0291,2.7405,2.5196,15.8683,2.6866,4.9174,1.2701,18.7371,6.2129,10.2798,4.7935,13.5725,9.627,8.2611,9.8891,4.1926,2.0217,4.5701,,,,,,,,,,,,,,,59,,,
-3013,1.5712,2.294,,70-79y,Other,,,21.031,5.3384,2.6647,2.653,1.239,ppmi,,,F,,0.43149,4.6651,3.9753,0.90523,9.7223,1.6622,0.36199,3.0996,3.0697,48.9035,17.9465,277.1282,4.057,4.3213,1.653,1.8522,3.2801,6.8303,2.2665,3.3268,0.4378,6.0063,10.9434,11.6774,7.1131,2.4058,4.7829,1.8114,20.2973,6.5482,4.2407,1.1109,2.7252,6.9992,14.5352,3.1403,4.055,3.2028,1.3891,1.6629,4.586,11.2994,3.126,2.178,10.0252,2.5856,2.6423,2.2812,10.9342,2.1214,4.0386,1.1776,14.2796,5.9897,8.5291,2.9796,10.2452,7.3004,8.1648,7.3132,3.21,1.6535,5.1545,,,,0.071791,CN,,HC,0.40954,4.2656,3.7528,0.90469,10.4957,1.8817,0.38147,3.0492,3.428,49.3611,17.5275,282.4774,4.1581,4.962,1.6526,1.8832,3.8219,6.9291,2.2045,3.5089,0.58962,5.5375,11.4703,10.2758,7.3,2.297,4.6693,1.7185,18.8735,4.9148,4.0056,1.064,2.624,7.9861,13.7713,2.108,3.7834,3.5652,1.4096,1.6983,4.127,10.9641,2.8966,2.2934,9.3078,2.6721,2.3267,2.1508,11.6766,2.3132,3.8,1.1758,14.8219,5.702,7.9216,3.5275,9.9651,7.7418,7.753,7.6174,3.1704,1.5713,4.823,,,,,,,,,,,,,,,79,,,
-3014,2.272,1.7575,,60-69y,Other,,,18.8698,4.4552,2.5023,2.0577,1.5623,ppmi,,,M,,0.48611,4.9419,4.8161,0.88998,8.9313,1.6353,0.42986,3.2845,4.0019,47.421,17.058,246.3078,4.4024,4.9054,1.6674,2.2205,3.4887,7.5548,2.1526,3.331,0.82581,6.9731,11.6664,24.982,7.4104,2.7383,4.8085,1.7818,18.8967,5.9536,4.1158,1.0842,2.606,7.1271,13.6165,3.2635,4.4668,3.4533,1.776,1.7681,4.4963,11.7868,3.2913,2.4095,11.3023,2.9379,2.811,2.3512,12.2753,2.4372,5.0922,1.2951,15.188,5.6418,9.1108,3.2712,10.8352,7.152,8.389,7.5351,4.1858,2.0982,5.3015,,,PD,0.075864,PD,,PD,0.45267,4.5167,4.5334,0.89152,10.2423,1.8574,0.44872,3.2584,4.05,47.1998,17.7573,241.9878,4.3014,5.0818,1.7309,2.1672,4.0582,7.7894,2.3553,3.5128,0.90356,5.8587,12.2844,17.521,7.984,2.5461,4.6228,2.0189,19.0146,4.4219,4.0713,0.96055,2.7328,8.6859,13.8249,2.2415,4.0098,3.4162,1.9675,1.7389,4.321,11.9684,3.0557,2.3968,8.8154,2.6745,2.6076,2.2245,11.6644,2.097,4.5473,1.2599,14.4608,5.3892,8.1044,3.9457,10.0598,7.4365,7.9657,8.0291,4.5033,1.6248,5.0853,,,,,,,,,,,,,,,68,,,
-3016,0.83838,1.7328,,50-59y,Other,,,17.3605,5.1052,2.6336,2.2396,1.3382,ppmi,,,M,,0.46675,4.852,4.6461,0.95581,9.6285,1.8145,0.42065,3.7735,3.3903,45.8946,15.9847,222.1883,4.5167,4.9241,1.8112,2.2196,3.7508,8.0795,2.2098,3.2937,0.59623,7.4733,12.3197,17.9206,8.1965,2.601,5.1396,2.0615,19.42,7.2973,4.328,1.1425,2.8288,7.3768,15.5869,3.6059,4.4932,3.7871,1.5782,1.4628,4.8442,11.8042,3.3362,2.4442,13.0858,3.3682,2.8452,2.4216,13.2261,2.5752,4.8432,1.1562,15.3037,5.2376,10.7737,4.2218,11.4879,7.8347,8.2204,8.3508,4.2032,1.9908,4.7151,,,,0.075511,CN,,HC,0.4318,4.6629,4.5423,0.9582,12.0832,2.1974,0.41905,3.8464,3.4878,46.7869,15.4976,219.6882,4.2006,5.9545,1.8845,2.2767,4.0644,8.4799,2.2916,3.5531,0.56175,7.4712,12.9407,9.8247,8.6972,2.6515,5.1442,1.8714,19.9599,5.7462,4.3666,0.90009,2.2876,7.8418,15.6683,2.9542,4.4711,3.8576,1.8196,1.3799,4.6132,12.3726,3.0685,2.3338,10.5677,2.5671,2.6277,2.0965,12.6178,2.3146,4.8314,1.1214,14.5499,4.9442,9.1055,4.8781,11.395,7.4577,7.8836,8.2111,4.0856,1.7583,4.3781,,,,,,,,,,,,,,,57,,,
-3018,1.3365,1.763,,60-69y,Other,,,17.9565,5.1811,2.6952,2.3814,1.0074,ppmi,,,F,,0.42856,4.3695,4.2657,0.90251,9.3416,1.4317,0.39612,3.2926,3.3127,47.3415,16.131,213.4359,3.648,4.1662,1.7135,1.898,3.4051,7.1955,1.8246,3.3297,0.47491,5.5818,10.1056,19.4145,7.629,2.3811,4.3276,1.7932,16.9974,5.7115,3.4928,0.93544,2.3648,6.5882,13.0013,2.9332,4.0194,3.3376,1.4949,1.4384,4.7382,11.2103,3.2882,2.37,9.7578,2.1755,2.3408,2.1524,10.2955,1.7857,4.2608,1.132,14.7124,4.5159,8.2818,3.7043,10.2349,6.593,7.1046,7.0806,3.9554,1.4416,4.6913,,,PD,0.077424,PD,,PD,0.3679,3.8135,3.7995,0.90413,10.4941,1.5837,0.37927,3.0391,3.2689,47.8663,16.7403,219.7398,3.6453,4.4754,1.8324,1.8684,4.0099,7.4332,2.0812,3.5263,0.65311,6.3767,10.9302,14.3156,7.9163,2.0369,4.1621,1.8545,17.1139,4.8194,3.501,1.0795,2.2746,7.6155,13.5332,2.0808,4.0724,3.3771,1.3059,1.4144,4.2886,10.5281,2.9704,2.0827,9.7463,2.074,2.0621,1.9104,10.5008,1.6909,3.8014,1.1065,13.767,4.8761,7.5907,3.2519,9.3398,6.7452,7.0127,7.2853,3.637,1.4418,4.3755,,,,,,,,,,,,,,,61,,,
-3020,1.347,2.0197,,70-79y,Other,,,18.863,4.8498,2.4644,2.2237,1.0837,ppmi,,,F,,0.43502,4.11,4.651,0.64553,9.5352,1.4581,0.35504,2.9426,3.0823,46.4212,16.3355,214.5128,4.429,4.8445,1.3246,2.0386,3.218,7.5493,1.918,2.7265,0.48311,6.3844,11.7299,11.0642,7.1588,2.2456,3.9978,1.6809,17.4732,6.6001,3.619,0.90853,2.2895,6.0401,13.5091,3.1547,4.4342,3.5025,1.5064,1.3291,4.0022,10.2527,2.8297,2.555,10.3387,2.7215,2.5803,2.4031,11.2138,2.3156,4.1779,1.0568,13.6517,4.7705,9.4471,4.1527,10.5305,6.6794,7.4296,7.2005,3.6481,2.1935,4.326,,,PD,0.073969,PD,,PD,0.42294,3.5392,4.2816,0.7325,10.1844,1.6139,0.35946,2.5477,3.5602,47.0554,16.8263,218.5406,4.111,4.1828,1.5023,1.9608,3.4421,7.937,1.7641,3.2135,0.5486,5.8914,12.217,9.8061,7.4076,2.0736,3.9409,1.6283,17.3039,4.8744,3.3695,1.2688,2.3944,6.6704,14.0775,2.5546,3.9497,3.2309,1.4381,1.33,3.8699,10.106,2.835,2.5121,10.3564,2.4893,2.2097,2.2151,11.6489,2.2506,4.3232,0.9772,13.6925,4.5611,9.1318,4.1564,9.8433,6.679,7.1778,7.7831,2.9409,1.8952,4.3186,,,,,,,,,,,,,,,74,,,
-3021,1.1005,1.5468,,60-69y,Other,,,19.6255,5.425,2.941,2.6239,1.2672,ppmi,,,F,,0.49632,5.1418,4.5987,0.90906,10.9945,1.8965,0.4252,3.7668,3.2585,54.2977,18.5387,265.2231,4.1079,4.8365,1.7197,2.0496,3.788,8.3205,2.2949,3.6913,0.38852,6.7941,12.09,14.7158,8.3618,2.8286,4.7806,2.1186,19.56,6.7081,4.8346,0.95465,2.5047,7.62,14.5789,3.2639,4.6102,3.323,1.7389,1.6897,4.7661,12.2473,3.3167,2.4417,11.3656,2.5347,2.9168,2.3848,11.9695,1.8964,4.7061,1.2642,15.118,5.0335,9.0351,3.8901,12.3028,7.4879,8.8205,7.9211,3.9745,1.6915,5.1742,,,PD,0.085419,PD,,PD,0.44285,4.3666,4.1995,0.96636,10.5612,2.1822,0.40724,4.2519,3.6986,52.7111,17.4776,269.1825,4.4049,5.4409,1.8291,2.0319,4.1679,7.9721,2.2785,3.9878,0.57868,6.4511,11.6967,14.641,8.7498,2.821,4.586,2.1512,20.9201,5.849,4.4708,0.95905,2.5677,8.0565,14.6947,2.5721,4.5214,3.8237,1.6794,1.8132,4.4214,12.5726,3.0194,2.3776,9.9608,2.3465,2.6935,2.0629,11.7994,1.9508,4.5008,1.2188,15.3423,5.0583,8.9476,4.3798,11.2655,7.6647,8.1095,7.7184,4.0946,1.5773,4.9077,,,,,,,,,,,,,,,64,,,
-3023,1.0681,2.1588,,70-79y,Other,,,17.6117,4.5033,2.5653,2.1788,1.7072,ppmi,,,F,,0.41455,4.1528,4.8155,0.79078,9.6073,1.3886,0.38089,3.0309,2.8821,49.0304,16.7067,223.2084,4.1027,3.9307,1.6024,2.1164,3.1976,7.4678,1.9821,3.0217,0.41871,6.3077,11.3421,18.419,7.352,2.4102,4.0779,1.622,17.8559,6.7203,3.7405,0.94758,2.239,6.4765,14.1912,2.9236,4.3911,2.9792,1.552,1.4772,4.0161,9.8845,3.1199,2.5227,9.494,2.4819,2.4903,2.3721,10.5112,1.9736,4.4735,1.2314,13.2078,5.2197,8.7635,3.309,9.3332,7.3501,7.5489,7.1102,3.1277,1.5977,4.6629,,,PD,0.065208,PD,,PD,0.39448,4.0703,4.4325,0.73566,11.5917,1.6254,0.39636,3.3928,3.225,48.2486,15.6525,224.7542,4.1377,4.6236,1.5,1.9046,3.7061,7.5507,1.9973,3.1656,0.51008,6.4552,12.0842,18.3887,7.7283,2.409,4.2346,1.6503,17.4918,5.9467,3.7593,0.98358,2.1873,6.61,13.7469,2.639,4.0378,3.3024,1.6077,1.5283,3.7608,9.9879,2.8222,2.4459,8.5794,2.2057,2.3368,2.1677,10.2877,1.7806,4.3479,1.2304,12.5382,4.9143,8.3118,4.0466,9.3138,6.8565,6.8892,7.0203,3.2595,1.6676,4.2708,,,,,,,,,,,,,,,71,,,
-3024,0.69327,1.7029,,50-59y,Other,,,19.8736,4.6072,2.6113,2.2589,0.89092,ppmi,,,M,,0.4366,4.9287,4.6527,0.93203,8.7586,1.8131,0.37408,3.7765,2.95,49.4755,16.1148,237.3029,3.7578,4.953,1.8097,2.2265,3.9173,7.5715,2.3013,3.3048,0.3755,6.3587,10.5076,8.227,7.8216,2.5471,4.8184,2.0626,18.3087,6.1425,4.1317,1.206,2.8232,7.5847,12.5933,3.47,4.6544,3.3718,1.5177,1.572,4.5772,11.1709,3.3406,2.2829,11.4519,2.5358,2.604,2.245,12.7358,2.0425,4.393,1.0086,16.8824,5.5164,8.6081,3.244,9.8626,7.2872,9.0261,8.1202,3.6676,1.6422,5.0806,,,PD,0.066076,PD,,PD,0.41877,4.1884,4.3798,0.91292,10.9026,2.0647,0.3769,3.1664,3.2391,50.4994,17.8479,249.1425,3.855,4.2826,1.7599,2.1639,4.1192,8.1209,2.0886,3.4294,0.38033,6.8135,11.5272,7.753,8.1085,2.3193,4.8307,1.9931,18.0777,5.1835,3.8694,0.89258,2.6831,8.5164,13.2718,2.7975,4.6841,3.6339,1.4987,1.6626,4.2346,10.8017,3.0108,2.2723,9.2657,2.3778,2.3001,2.1587,12.3347,2.0075,4.0773,0.95871,17.2392,5.7882,8.2484,4.1378,10.9706,7.3759,8.7866,7.7416,3.8332,1.5415,5.1347,,,,,,,,,,,,,,,53,,,
-3026,1.1633,1.8678,,50-59y,Other,,,26.1547,6.402,3.5765,2.8564,1.3101,ppmi,,,M,,0.58532,6.0271,5.0044,1.1064,12.4273,2.4559,0.46144,5.2084,3.2409,66.8592,21.6961,309.3383,5.2939,6.696,1.9165,2.3658,4.9224,8.6606,2.8721,4.0887,0.80978,8.6511,13.1275,9.1765,9.4445,3.4108,6.1243,2.3515,26.6336,8.0437,5.139,1.3612,2.8695,8.8299,17.7957,4.6913,5.4355,3.7073,1.9908,2.06,5.5496,13.6563,3.757,2.477,13.5195,3.2737,3.059,2.5758,15.8521,2.6503,4.9399,1.4321,20.3791,6.8922,12.9766,5.0589,12.3708,9.6725,11.1897,8.9882,4.758,2.0279,6.5984,,,PD,0.08424,PD,,PD,0.51057,5.3835,4.7692,1.0846,13.9879,2.5555,0.44722,4.5934,3.3054,67.8142,21.2183,300.5507,4.7881,6.252,2.1023,2.3354,5.2805,9.1014,2.6668,4.1322,0.80036,8.8804,13.933,8.5455,10.5755,3.0691,5.9442,2.3704,24.7778,7.4124,4.6061,1.3248,3.2386,10.2831,17.9458,4.2338,5.8894,4.0777,2.0625,1.9962,4.8321,13.4793,3.4995,2.52,12.3637,2.6127,2.6995,2.2729,15.3214,2.3253,4.9642,1.3281,19.6307,7.1243,9.4981,5.6122,13.8504,9.2782,10.6392,9.115,4.5473,1.7145,6.134,,,,,,,,,,,,,,,56,,,
-3027,1.0627,1.7968,,70-79y,Other,,,18.6154,5.1223,2.7368,2.5533,1.4749,ppmi,,,M,,0.50974,5.278,4.7909,0.87725,8.8441,1.6844,0.4317,3.7453,2.8371,48.5592,15.0035,215.1667,4.7596,5.0003,1.778,2.3026,3.8206,8.0511,2.2731,3.0759,0.47462,6.4417,12.609,15.8562,8.8326,2.5342,5.1197,2.0213,21.3596,6.2218,4.2913,1.3079,3.0979,7.7913,14.9239,3.7646,4.5698,3.54,1.6358,1.3125,4.3361,10.4854,3.3449,2.483,11.5916,2.6838,2.644,2.467,14.1262,2.3659,4.3318,1.269,17.2747,6.1365,9.6906,3.8936,10.4157,8.0019,8.0044,8.9788,4.2604,1.8362,4.5932,,,PD,0.083173,PD,,PD,0.47498,5.2901,4.4562,0.88385,10.8108,1.983,0.42311,3.6101,2.9883,48.9911,14.8745,216.6926,4.3488,4.9978,1.8151,2.069,4.1463,8.2303,2.3417,3.4152,0.49268,6.9177,12.8899,11.0622,8.6267,2.611,5.1803,2.0605,20.4987,5.8672,4.2748,1.115,2.6837,8.6792,15.6504,3.0886,4.4659,3.5534,1.7021,1.2649,4.0964,9.8084,3.2139,2.4239,11.1733,2.5823,2.606,2.2791,14.4133,2.385,4.1361,1.225,15.8775,5.8829,8.4563,4.8663,10.0324,8.1335,7.7788,8.8364,3.3792,1.8171,4.353,,,,,,,,,,,,,,,70,,,
-3028,2.141,1.8001,,70-79y,Other,,,19.8849,4.1867,2.9308,2.456,1.9656,ppmi,,,M,,0.47042,5.4275,4.2978,0.94531,10.6983,1.8322,0.43169,3.3322,2.9606,42.7594,24.0135,251.8342,3.8759,4.838,1.7113,2.0012,4.047,7.364,2.7309,3.7129,0.97898,6.7182,12.4484,31.9719,8.3632,2.5398,5.9664,2.2056,21.7427,6.9287,3.9351,1.515,2.9261,8.1078,17.2244,3.74,3.8429,3.988,1.6541,1.435,4.5444,12.3701,3.5316,2.22,12.7459,2.5404,2.4323,2.4253,11.8783,2.5077,3.9618,1.717,13.9717,6.4214,10.2924,3.6139,11.9397,8.9495,7.169,9.5245,4.777,1.8301,5.3722,,,PD,0.081895,PD,,PD,0.38584,4.5479,3.7628,1.0776,12.6206,2.0282,0.37748,3.0985,3.3185,42.2651,23.5979,254.6813,3.3393,5.1715,1.8723,1.7878,4.4239,7.7843,2.7028,4.2521,0.81556,7.0826,12.5669,22.6553,8.4287,2.4274,5.8862,2.2334,20.9362,6.1319,3.8375,1.2198,2.8173,9.158,18.232,3.2264,3.7032,3.743,1.6351,1.4754,4.3872,12.5869,3.3569,2.3578,10.0244,2.1824,1.8309,2.3953,10.9818,2.0834,4.072,1.4855,15.0478,6.2905,9.4804,4.3737,11.5375,8.7793,6.7497,9.7522,4.3403,1.6306,5.093,,,,,,,,,,,,,,,76,,,
-3029,1.726,1.6579,,60-69y,Other,,,17.8238,5.0851,3.0529,2.3906,1.6563,ppmi,,,M,,0.47804,4.4014,3.5426,1.0941,10.4381,1.4627,0.39766,2.759,3.2797,42.9119,23.4458,242.8902,3.4596,4.7795,1.9562,1.5031,3.5629,7.6452,1.9645,3.7555,0.5322,6.8612,11.0529,16.6384,8.1685,2.184,5.3783,1.6703,18.7718,6.4114,2.8641,1.1766,2.5459,6.6176,15.1712,3.0283,4.6056,2.8544,1.2696,1.2955,4.1238,11.3684,3.4092,1.811,10.8166,2.3609,1.8929,1.8507,10.9892,2.2011,4.3095,1.2715,14.4347,5.8632,10.5071,3.8943,11.2331,7.9726,5.8644,8.8288,3.5643,1.3058,5.0266,,,,0.044979,CN,,HC,0.47039,3.8445,3.6633,1.195,11.2514,1.2727,0.47075,2.9366,3.37,42.1856,23.8222,251.9781,3.106,4.7372,2.0146,1.749,3.3964,6.8701,1.9111,4.0175,0.52148,7.1687,11.1157,15.6519,8.1423,2.0571,4.3752,1.6883,17.7065,5.6837,2.6767,1.0644,2.2826,7.509,15.569,2.433,3.9934,3.1587,1.4635,1.3786,3.6177,11.3361,3.221,2.1196,10.1996,2.1083,1.8375,1.6207,10.9996,1.9755,4.544,1.1963,13.1842,4.8008,8.3495,3.7159,10.7125,7.7667,6.0445,7.8072,3.3324,1.3016,4.8778,,,,,,,,,,,,,,,66,,,
-3051,1.6028,1.958,,70-79y,Other,,,19.9749,4.947,2.6758,2.2749,1.1634,ppmi,,,M,,0.54092,5.3024,4.8929,0.97722,11.0079,2.0178,0.44119,4.1508,3.5008,47.577,15.048,258.1643,4.0006,5.0943,1.9476,2.189,4.3359,8.7851,2.6703,3.3872,0.51685,7.904,13.6154,19.6375,9.5801,2.881,5.2881,2.2719,22.1829,7.2159,5.0083,1.2664,2.743,8.5354,16.5236,4.5479,5.408,3.38,1.686,1.5946,5.2203,12.37,3.6344,2.5879,14.5706,2.8503,3.0299,2.5951,13.4001,2.4783,4.6855,1.4402,17.3628,6.1608,11.0811,3.8898,11.9265,8.4299,9.624,9.3705,4.3485,1.8528,5.2818,,,PD,0.095251,PD,,PD,0.48538,4.8981,4.6162,0.97418,13.0812,2.15,0.43414,4.3283,3.5117,47.8923,15.2242,262.7234,4.2756,5.7839,1.9661,2.107,4.5231,8.8047,2.5931,3.5924,0.46125,7.9766,13.6704,14.4016,10.3369,2.598,5.2638,2.2451,20.5525,6.2002,4.872,1.2421,2.7897,9.6899,16.5037,3.9478,5.0666,3.5647,1.6935,1.6185,4.5016,12.5313,3.3308,2.5915,12.3329,2.5181,2.8043,2.2435,14.7977,2.171,4.4301,1.3489,16.5697,6.1074,9.9903,4.5471,12.5844,8.7421,8.8589,9.1496,4.0829,1.7802,4.973,,,,,,,,,,,,,,,72,,,
-3052,0.73075,1.279,,60-69y,Other,,,18.8601,4.8243,2.4967,2.2808,1.1252,ppmi,,,F,,0.42995,4.3445,3.7787,0.82905,9.1026,1.344,0.3735,2.3858,3.1204,44.9819,15.3929,192.5099,3.4937,3.9575,1.627,1.7738,3.268,7.0444,2.0003,2.9071,0.26716,5.5101,10.3419,12.0475,7.1305,2.1631,4.465,1.6503,18.1849,5.9709,3.7968,0.98734,2.4841,6.647,13.2641,2.8823,3.8348,3.057,1.4422,1.2553,3.9911,9.2875,3.1623,1.8816,11.1468,1.8484,2.5433,1.9837,12.6689,1.5277,3.8318,1.0755,14.1518,5.0176,8.0187,2.9966,9.802,6.5555,7.0796,7.248,3.3773,1.2616,4.429,,,PD,0.074183,PD,,PD,0.3809,3.6234,3.595,0.8481,9.5213,1.7089,0.36323,2.5297,3.3256,44.8726,14.8629,196.3582,3.4613,4.1738,1.6828,1.8267,3.5462,7.256,2.0158,3.1334,0.38319,5.9083,10.6763,11.2779,7.6574,2.2145,4.457,1.6579,18.0872,4.8154,3.7324,1.1104,2.375,7.6585,13.3831,2.551,3.9642,3.291,1.4963,1.2831,3.5984,9.0825,2.9831,1.9082,10.525,1.7284,2.2783,1.9513,12.6096,1.5962,3.6502,1.0032,14.4193,4.7334,7.0383,3.9971,9.5111,6.8703,6.75,7.8791,3.3922,1.2515,4.2708,,,,,,,,,,,,,,,66,,,
-3053,1.0652,1.8505,,60-69y,Other,,,18.3244,4.5258,2.4085,2.3038,1.1102,ppmi,,,M,,0.45027,4.5102,4.7538,0.89216,9.4759,1.6142,0.3709,2.7501,3.1477,45.5448,14.85,204.5036,4.0684,4.1175,1.7713,1.9874,3.7507,7.7109,2.1513,3.0578,0.49335,6.8198,12.0833,14.3529,6.9737,2.6139,4.579,1.9259,19.8864,6.5777,4.2056,0.9427,2.4186,7.0804,14.9813,3.2224,4.1655,2.9739,1.7838,1.3541,4.4673,10.3369,3.1977,2.676,11.2264,2.2488,2.8628,2.1721,12.8275,1.772,3.9897,1.1628,14.3066,4.8795,8.9738,3.2301,10.5564,7.107,7.658,8.1604,3.9979,1.4028,4.5019,,,,0.073838,CN,,HC,0.38992,4.2065,4.3543,0.89441,10.2725,2.0207,0.36465,2.8527,3.2836,46.5061,14.6957,209.7857,3.9591,4.6143,1.7653,1.9335,4.0072,7.5989,2.1931,3.1847,0.53609,6.3795,12.6526,12.5844,7.9848,2.2498,4.7815,1.9491,19.6966,5.3565,4.1932,0.88688,2.3266,7.6996,15.3928,2.9153,4.1975,3.1784,1.4189,1.3635,4.1347,10.454,2.9965,2.5242,9.8307,1.8475,2.4156,2.2216,12.6049,1.5246,3.9631,1.1154,14.7908,5.2869,7.4484,3.9886,10.3442,7.3325,7.2875,8.5825,3.3763,1.4018,4.3886,,,,,,,,,,,,,,,69,,,
-3054,1.5791,1.6861,,70-79y,Other,,,18.8638,5.1636,2.8777,2.2844,1.3068,ppmi,,,M,,0.53158,5.0403,4.9518,1.0156,9.8131,1.7763,0.44386,3.4242,3.4995,50.6961,15.5854,245.2133,4.4557,4.6406,1.7895,2.2049,3.8655,7.9647,2.2105,3.6183,0.5108,7.3565,12.1851,15.9715,7.7363,2.6498,5.2101,1.9456,20.4511,7.2177,4.3824,1.1509,2.8509,8.1022,15.2778,4.1826,4.5203,3.7333,1.7011,1.5066,5.3608,11.7212,3.5095,2.5596,12.4601,2.8605,2.7168,2.4842,13.8563,2.2983,4.7619,1.4025,16.4208,5.6509,9.3941,3.956,10.5792,7.8369,8.2851,8.3936,4.3461,1.9363,4.8949,,,PD,0.081582,PD,,PD,0.47235,4.0517,4.6944,0.99554,10.3618,2.0218,0.43228,3.6977,3.4378,50.986,15.3952,249.5724,4.3639,5.1977,1.8559,2.0845,4.1722,7.8497,2.3105,3.7834,0.44435,7.5573,12.4285,13.7362,8.9967,2.3417,5.2352,2.0467,20.0506,5.5069,4.486,1.2185,2.7628,9.1836,15.0113,3.6186,4.5763,3.6962,1.5665,1.5009,4.8182,12.2642,3.3213,2.5415,10.6843,2.2619,2.7278,2.2531,12.6335,1.9739,4.4664,1.3574,17.3006,5.6452,7.9118,4.5486,10.9557,8.3767,7.8321,8.9529,3.6121,1.6035,4.7193,,,,,,,,,,,,,,,74,,,
-3055,1.7473,2.3332,,60-69y,Other,,,19.1162,4.7662,2.5786,2.2001,1.8641,ppmi,,,F,,0.48624,4.8267,4.6913,0.89635,9.5567,1.6028,0.40184,2.7918,3.4636,45.4426,15.0976,211.4001,3.9666,4.5618,1.6885,2.1034,3.2161,7.1695,2.1999,3.1303,0.56695,6.188,10.9375,21.6352,7.3609,2.5408,4.5334,1.8773,16.9978,6.4051,4.2982,1.2685,2.5322,7.2411,13.0726,3.6959,4.4558,3.2442,1.6945,1.4725,4.3758,10.4198,3.1336,2.4062,12.0379,2.616,2.7427,2.1348,12.0856,2.1527,4.4506,1.2287,15.0512,5.6812,9.5802,3.8597,9.7886,6.7082,8.2941,7.5676,3.7412,1.6844,4.8055,,,,0.073016,CN,,HC,0.43491,4.4779,4.5092,0.89813,9.7653,1.9257,0.40878,3.2484,3.6931,45.8653,14.9676,214.9631,3.9679,4.9657,1.7379,2.0762,3.7031,7.4239,2.1604,3.451,0.61029,7.1255,11.3589,19.3431,8.4032,2.452,4.8977,1.8326,17.5148,5.2174,4.1855,1.0644,2.5386,7.8825,13.6557,3.0369,4.3211,3.6125,1.6647,1.4747,3.9091,10.409,3.0158,2.4872,10.8656,2.1105,2.4938,2.1689,11.7952,1.6977,4.3386,1.1863,14.6428,5.4423,8.1441,4.1873,10.2074,7.0194,8.1396,8.2192,3.4151,1.463,4.7108,,,,,,,,,,,,,,,69,,,
-3056,1.0746,2.0967,,50-59y,Other,,,21.5176,4.893,3.0434,2.3051,1.1649,ppmi,,,M,,0.47053,5.4661,5.0478,0.91297,10.6485,1.8893,0.40725,3.784,3.1149,51.5975,18.0103,270.646,4.3536,5.4105,1.8028,2.2713,4.2053,7.9756,2.5035,3.4055,0.37646,8.0947,12.5154,12.9746,8.4108,2.726,6.1243,2.2647,22.2537,7.506,4.5283,1.3705,3.191,8.5903,15.0545,4.5681,4.9258,3.9004,1.6865,1.6768,5.2702,12.5471,3.462,2.3523,12.9788,2.57,2.8415,2.3621,15.962,2.1353,4.7345,1.3412,19.7292,6.4092,9.1913,4.5987,11.5501,6.8594,9.3784,8.2255,3.841,1.7852,5.3995,,,PD,0.09385,PD,,PD,0.45569,4.7963,4.4574,0.95321,11.1886,2.1435,0.41205,3.7112,3.0564,51.2628,17.5741,274.6319,4.7927,5.5495,1.9289,2.1932,4.662,8.1348,2.6362,3.7832,0.72627,6.6013,12.2339,8.4007,9.3821,2.5616,5.7412,2.4144,21.8147,5.1308,4.6287,1.1901,2.9594,9.9076,15.2265,3.3606,4.5456,3.7886,1.7347,1.6515,5.0929,12.5715,3.3541,2.2903,11.1015,2.2614,2.6028,2.2155,14.0876,1.9118,4.5051,1.2583,19.6482,7.025,9.6504,4.7691,11.0409,7.8888,8.9601,8.3868,4.0949,1.6991,5.2245,,,,,,,,,,,,,,,56,,,
-3057,0.94135,1.829,,60-69y,Other,,,16.8718,4.3736,2.6107,2.1723,1.0286,ppmi,,,F,,0.37676,4.2964,3.9474,0.79996,9.6773,1.6754,0.35035,3.6816,2.8183,45.5575,14.7401,237.4726,4.0666,4.8336,1.5706,2.0268,3.6597,7.3212,2.1501,3.0053,0.39566,7.2637,10.9902,17.2053,8.1499,2.4726,4.5161,1.8065,19.7156,7.5626,4.206,0.98938,2.2118,7.1001,13.8638,4.1513,4.6521,3.9168,1.4849,1.3822,4.408,10.9704,3.2225,2.0649,11.8218,2.5385,2.592,2.0778,13.2422,2.0813,3.7525,1.1345,14.5541,5.0362,9.0908,4.0279,11.6204,7.2623,7.9781,7.1473,3.7614,1.4754,4.548,,,,0.080509,CN,,HC,0.3405,3.4328,3.5718,0.80849,11.3148,1.9623,0.36297,3.4052,3.0707,45.3743,14.3291,242.3204,4.142,4.6786,1.6403,1.7691,4.2116,7.5341,2.2124,3.1965,0.39841,7.3655,12.2884,14.68,8.2474,2.4762,4.5037,1.887,20.4681,5.2819,4.1167,1.0754,2.227,8.144,15.1053,3.2473,4.5677,3.2122,1.6091,1.4073,4.1679,10.8469,2.9355,2.1605,11.9827,2.323,2.3284,2.0201,12.622,1.873,3.5816,1.1264,14.7634,5.1794,8.77,4.1322,10.644,7.5833,7.7065,7.3011,3.3526,1.4763,4.368,,,,,,,,,,,,,,,60,,,
-3059,1.7402,2.0216,,+80y,Other,,,18.5019,4.982,2.703,2.2392,1.5737,ppmi,,,M,,0.48681,4.3211,4.545,0.85506,9.6523,1.4593,0.4184,3.4104,3.7116,50.3462,15.3524,212.3847,4.0244,4.6022,1.6105,2.1343,3.2903,8.0305,2.1957,2.9853,1.1026,6.3227,11.6815,31.3785,7.5508,2.4451,4.357,1.7817,18.9249,5.6175,4.072,1.3077,2.7849,6.6056,13.9056,3.4066,4.4094,3.2773,1.4794,1.3381,4.6577,11.8488,3.3129,2.4021,13.8061,2.9489,2.6508,2.0769,13.3567,2.5754,4.1771,1.4824,15.536,5.0217,10.8673,3.6575,10.9821,8.3618,7.8319,7.6831,4.0177,1.5807,4.574,,,PD,0.086107,PD,,PD,0.44215,3.6301,4.2061,0.85367,11.1327,1.8297,0.43848,3.006,3.9926,51.0827,15.3183,214.9532,3.8811,4.7781,1.6685,1.9746,3.7994,7.5791,2.2914,3.2244,0.95665,6.5782,12.5247,26.4286,7.9462,2.4417,4.1354,1.8985,19.2969,4.9225,4.2594,1.155,2.571,8.3602,15.574,2.719,4.4687,3.3667,1.7507,1.3281,4.3191,12.4326,3.0034,2.3886,11.1386,2.5,2.6622,2.1024,12.0761,2.0401,4.1121,1.4148,15.5573,5.3708,9.156,4.2476,12.3102,8.0366,7.3926,8.5141,3.8613,1.6121,4.3672,,,,,,,,,,,,,,,83,,,
-3060,1.5663,1.8021,,70-79y,Other,,,20.3853,5.0521,2.7086,2.3494,1.2259,ppmi,,,M,,0.47054,4.7415,4.2999,0.93616,8.9558,1.739,0.4176,3.6695,3.3748,47.3648,16.6569,251.9383,4.1381,4.9669,1.6737,2.184,3.6915,6.9377,2.1166,3.1392,0.51814,6.2078,10.6168,17.5449,8.1763,2.6045,4.6697,1.8971,20.4325,6.1908,4.2171,1.0767,2.6652,6.8061,13.7214,3.8748,4.4851,3.3912,1.6192,1.5716,4.2855,10.5541,3.1263,2.1795,11.7364,2.1438,2.7309,2.3898,12.433,2.182,4.7283,1.2842,15.2429,5.2539,8.1373,4.1131,11.2651,6.5987,8.5687,7.779,4.0818,1.6593,5.1408,,,PD,0.08404,PD,,PD,0.4203,4.1465,4.1175,0.91435,9.1484,1.8937,0.42278,3.6879,3.863,47.3564,16.0151,255.6614,4.1086,5.1333,1.724,2.2226,3.9577,7.389,2.1349,3.2832,0.59593,7.5628,11.1186,16.2443,8.4266,2.4411,4.3849,1.793,19.5858,5.4562,4.0916,1.0613,2.5818,8.0655,14.3289,3.6336,4.6496,4.0045,1.6263,1.5064,3.7962,10.3864,2.7989,2.1611,10.0894,2.3299,2.5974,2.2202,12.7458,2.0204,4.8097,1.2267,15.0844,5.0697,7.796,5.2478,10.5724,6.7448,8.126,7.7776,3.691,1.6087,4.8842,,,,,,,,,,,,,,,75,,,
-3061,1.2946,1.5678,,50-59y,Other,,,21.5247,5.693,3.2139,2.6343,1.2197,ppmi,,,F,,0.53998,5.0276,4.6274,0.81987,9.1347,1.7596,0.42409,3.3931,3.5388,53.8485,19.0209,238.8828,4.1908,4.8162,1.5006,2.3549,3.4246,7.864,2.1788,3.1913,0.47615,7.1485,12.0377,14.2834,7.893,2.6521,5.4407,1.9219,20.776,6.6387,4.3309,1.1695,2.8759,7.1021,14.1034,4.0071,4.7224,3.8916,1.6155,1.599,4.727,11.1594,3.0165,2.3909,13.1676,2.4374,2.7409,2.203,14.7121,2.4136,4.4587,1.2972,16.4471,5.8784,9.2425,4.1056,11.4906,7.0062,9.2632,7.1588,4.4488,1.8889,5.1716,,,PD,0.082005,PD,,PD,0.48492,3.9414,4.297,0.86228,10.7142,1.9866,0.427,3.3289,3.7574,53.7282,18.1636,242.1879,3.9704,5.2875,1.6493,2.3201,4.1387,7.9611,2.2571,3.403,0.47022,7.2919,12.0481,14.2777,8.4077,2.6223,4.6948,2.1093,20.5641,5.7154,4.0698,1.1269,2.6286,8.6321,14.8504,3.035,4.4007,3.9849,1.813,1.6064,4.5378,11.6777,2.8976,2.3639,10.8906,2.5913,2.5307,2.1238,15.0221,2.2865,4.2999,1.2328,16.3218,5.6251,8.5318,4.9164,11.179,7.5972,8.6507,7.7888,4.0685,1.7216,4.9549,,,,,,,,,,,,,,,53,,,
-3062,0.87543,2.7481,,60-69y,Other,,,17.2932,3.9149,2.4123,1.8865,0.83349,ppmi,,,F,,0.44012,3.7265,3.9037,0.87219,8.276,1.3595,0.37828,2.7515,3.0023,40.7187,14.4591,220.8636,3.6486,3.7003,1.5956,1.8758,3.0961,6.3478,1.8937,3.0497,0.45272,5.6908,9.618,7.4665,6.6294,2.0957,4.1123,1.5914,15.3777,5.214,3.5786,1.0594,2.6153,6.1246,12.2536,2.5856,3.7174,3.1757,1.3686,1.5108,4.1448,9.6763,2.9563,2.2091,10.1693,2.2908,2.2413,2.2067,12.1485,1.9736,4.3044,1.0683,13.8529,4.9724,8.0808,2.7172,9.4352,6.6435,8.3011,7.0538,3.4899,1.5937,4.69,,,PD,0.075407,PD,,PD,0.4001,3.462,3.7616,0.85496,9.2372,1.6299,0.38878,2.8706,3.0236,40.4494,14.1567,223.5222,3.4177,4.152,1.5732,1.9472,3.1553,6.6669,1.8844,3.2528,0.45494,5.5625,10.0904,5.9145,7.0314,2.0883,4.2669,1.5312,15.229,4.3855,3.7613,0.96708,2.4103,6.8258,12.2893,2.3461,3.8489,3.1943,1.4719,1.5134,3.5842,9.5057,2.7962,2.2109,9.1826,1.9703,2.1889,2.0409,11.6371,1.6516,4.3157,1.0502,12.1301,4.788,7.3226,3.8628,9.2679,6.2221,7.9072,6.908,3.4616,1.3871,4.4601,,,,,,,,,,,,,,,61,,,
-3063,0.76208,1.5409,,-50y,Other,,,17.7179,4.4735,2.7163,2.0755,0.95371,ppmi,,,F,,0.44589,4.7137,3.8791,0.82102,9.5503,1.5464,0.38626,2.8171,2.9315,43.6048,15.8702,205.9904,3.7806,4.8077,1.5906,2.0901,3.0424,6.9916,2.0997,2.933,0.47989,5.9556,10.6597,7.6414,6.6858,2.451,4.8492,1.7818,17.7235,5.7623,4.1338,1.0404,2.7952,6.7081,13.2164,3.0114,4.0632,3.5966,1.5453,1.377,4.4353,11.4385,2.9804,1.9807,11.4922,2.1154,2.6879,2.017,11.7697,1.726,3.8656,1.1625,14.5979,5.2229,9.0169,3.641,10.2174,7.021,7.716,7.7487,4.1905,1.3498,4.4736,,,,0.066168,CN,,HC,0.38164,4.0749,3.6741,0.8204,9.3859,1.8094,0.37069,2.8232,2.8992,44.5042,15.5266,207.8724,3.5858,4.7751,1.6415,1.8946,3.3742,7.4365,2.1182,3.0748,0.50913,6.469,11.0119,5.7945,7.3228,2.3838,4.6889,1.6998,17.6637,5.0694,3.9812,0.95853,2.6991,7.5136,13.5672,2.8036,4.1006,3.6951,1.6736,1.3505,4.0199,11.2399,2.7447,2.061,10.3871,2.18,2.3634,1.9631,12.3358,1.8677,3.7402,1.1001,14.0858,5.273,7.423,3.837,10.2972,6.706,7.3523,7.7473,3.9044,1.4627,4.2289,,,,,,,,,,,,,,,40,,,
-3064,0.84082,1.8555,,60-69y,Other,,,18.6105,4.8076,2.7008,2.2292,1.0048,ppmi,,,F,,0.40756,4.34,3.8656,0.93462,8.9922,1.4343,0.38782,3.2125,2.5415,47.3243,15.9975,213.1355,3.6524,4.5331,1.6468,1.7569,3.1454,6.7885,2.1043,3.1571,0.45038,5.9014,11.0062,9.6707,7.2849,2.2489,4.5294,1.809,15.4765,5.9798,3.9052,1.0454,2.4423,6.2156,14.0714,2.997,3.8281,2.8231,1.4558,1.3711,3.8757,9.972,3.0246,2.1128,11.251,2.2299,2.4771,2.1333,12.3876,1.759,3.9012,1.1961,13.5133,5.0696,8.5223,3.1338,9.1516,6.9447,7.9256,7.7984,3.5807,1.372,4.671,,,,0.084895,CN,,HC,0.3719,4.0735,3.9032,0.94565,9.4686,1.6066,0.39377,3.2204,2.656,46.0144,15.2242,215.4425,3.7325,4.6392,1.6881,1.8118,3.4576,7.2951,1.9681,3.3179,0.48055,6.5956,11.3177,9.2997,7.4559,2.1554,4.4362,1.6583,16.2104,4.6151,3.6548,1.0068,2.3997,6.706,13.6967,2.6987,3.9045,3.5764,1.5763,1.3858,3.581,9.4614,2.9184,2.0549,9.2552,2.2795,2.3741,1.9135,11.2942,1.9195,3.9002,1.1167,13.4568,4.7833,8.3098,3.8649,9.6151,7.2652,7.5865,7.9405,3.71,1.4357,4.3955,,,,,,,,,,,,,,,60,,,
-3066,0.93254,1.5215,,60-69y,Other,,,17.28,4.1048,2.4105,2.1028,1.1469,ppmi,,,F,,0.4589,4.4096,3.7933,0.83939,8.7485,1.5944,0.39591,3.3713,3.1508,42.6185,13.8642,224.2485,3.7715,5.0894,1.5845,1.96,3.1866,7.2189,2.1,3.0116,0.60734,6.004,11.3267,12.8995,7.402,2.4969,4.8732,1.6916,18.5671,6.0131,4.2178,1.1338,2.4337,6.3752,12.9263,3.5609,4.1482,3.6545,1.524,1.3775,4.3479,10.5467,3.0205,2.0678,13.1887,2.4625,2.5526,2.2346,12.6997,2.1058,4.3512,1.1832,16.0388,4.9457,9.2306,3.9392,11.0549,7.007,7.7774,7.5217,4.2533,1.4876,4.4441,,,PD,0.074695,PD,,PD,0.45451,3.6902,3.8574,0.86368,10.1773,1.8612,0.39995,3.3597,3.6363,42.9133,13.8404,231.7315,3.7002,5.3051,1.6362,1.9846,3.5761,7.4256,2.0505,3.2791,0.40392,6.4877,11.6078,11.1886,8.1439,2.331,4.525,1.6075,19.9399,5.055,3.982,1.084,2.5326,7.2237,13.9427,3.0459,4.3085,3.4837,1.5697,1.4099,4.0136,10.8923,2.7409,2.0706,10.1761,2.1389,2.4192,2.2614,14.1217,2.0502,4.1917,1.1201,14.3966,5.2092,8.3368,4.5808,10.9959,7.0505,7.4737,8.0724,3.9808,1.6157,4.3292,,,,,,,,,,,,,,,64,,,
-3067,2.2837,2.2434,,70-79y,Other,,,20.8591,5.1555,3.0707,2.5806,1.4126,ppmi,,,M,,0.48311,5.0156,4.3492,0.95249,10.1983,1.7976,0.41177,3.1643,3.4282,54.4898,18.0165,268.9083,4.2133,4.1147,1.7758,2.0018,3.9673,7.5477,2.4332,3.2029,0.86867,6.8728,11.5784,18.1012,7.0613,2.7651,5.7117,2.0239,20.8638,7.0828,4.5411,1.1047,2.673,6.9458,14.4363,3.5314,4.3283,3.559,1.7341,1.6508,5.1648,10.9103,3.3851,2.4496,12.5392,2.7773,2.6582,2.3551,14.7867,2.3101,4.3385,1.3076,16.6218,5.7733,9.2818,3.6927,10.9377,7.5314,8.8376,7.4505,4.2535,1.8768,5.3131,,,PD,0.089812,PD,,PD,0.44652,4.6909,4.1496,0.93215,11.0807,1.8332,0.39813,3.173,3.6996,53.9097,17.637,273.353,4.0047,4.5682,1.6826,1.938,4.4568,7.8952,2.2582,3.361,0.90852,7.02,11.7054,17.1839,8.427,2.5068,5.6885,1.8956,21.1662,5.4613,4.1056,1.1378,2.9108,8.3899,14.033,2.8515,4.4156,3.6916,1.785,1.6425,4.6233,11.2845,3.1604,2.3387,11.1597,2.4581,2.4517,2.1267,13.034,2.0228,4.0867,1.2264,18.2006,6.2165,8.5678,4.0282,11.3717,7.5153,8.3597,7.4489,3.8596,1.5246,5.0889,,,,,,,,,,,,,,,74,,,
-3068,2.306,2.0169,,70-79y,Other,,,19.1129,5.0203,2.6789,2.6097,2.2977,ppmi,,,M,,0.4718,5.0759,4.4226,0.94914,8.8314,1.6442,0.41721,4.1541,3.732,50.8412,15.7388,243.5902,4.5184,5.259,1.8389,2.0556,4.0067,7.8215,2.3398,3.4909,1.2231,7.5926,12.6534,27.239,8.5911,2.37,5.0958,2.0756,19.1382,6.7801,4.3263,1.1391,2.6299,7.6285,15.1095,4.8106,4.9461,3.2672,1.4979,1.4855,4.5263,10.7924,3.4708,2.5793,11.1455,2.566,2.5122,2.5186,12.5832,2.1614,4.5476,1.3162,15.8371,5.5386,9.2777,4.1701,10.8508,7.9442,8.2432,8.4227,4.3692,1.7402,4.9858,,,PD,0.085368,PD,,PD,0.41764,4.3989,4.153,0.9798,10.9117,2.0382,0.39442,4.058,3.7605,51.2863,15.8175,244.6561,4.1481,5.3794,1.9322,2.0323,4.437,7.6982,2.366,3.7123,1.0619,7.4357,11.5736,28.2412,9.3887,2.4545,4.7476,2.152,20.1373,5.9704,4.1811,0.95508,2.4931,8.811,14.5143,3.6878,4.9556,3.4897,1.5968,1.4536,4.3051,11.8059,3.3325,2.7264,10.3217,2.1745,2.4295,2.3903,11.6386,2.0975,4.1664,1.2102,14.7926,5.6506,8.7471,4.8414,10.2868,8.038,8.0041,8.8301,3.7894,1.6185,4.6903,,,,,,,,,,,,,,,71,,,
-3069,1.0216,1.9511,,50-59y,Other,,,16.8428,4.7427,2.7284,2.1612,1.2564,ppmi,,,F,,0.50566,5.603,4.5208,0.9015,10.0957,1.7794,0.42478,3.1068,3.1872,47.057,14.0043,227.8112,4.3247,4.8193,1.7336,1.9305,4.1676,8.0795,2.7005,3.2415,0.50178,7.0672,12.1457,15.2417,7.7589,2.5851,5.115,2.4058,21.0707,7.3213,4.7736,1.2964,2.7439,8.2091,14.4191,3.5464,4.2434,2.7257,1.7244,1.326,4.8048,12.2311,3.3349,2.4678,12.7104,2.5221,2.6601,2.3108,12.3336,2.2857,4.045,1.4209,15.6805,5.8726,9.8622,4.122,11.5304,7.7019,8.1063,8.0867,4.0985,1.8415,4.3103,,,,0.074601,CN,,HC,0.45179,4.9647,4.4438,0.90122,11.4236,2.0632,0.41724,3.2366,3.4601,46.4627,14.0047,234.9026,3.9966,4.8067,1.7957,2.0508,4.5017,8.6251,2.5938,3.4247,0.47945,7.4875,12.5378,12.196,8.5322,2.4643,4.9895,2.2388,20.0217,6.1386,4.4188,1.2359,2.5434,8.9313,14.836,3.5541,4.6857,3.5172,1.6888,1.3259,4.5316,12.1738,3.1141,2.6371,10.3766,2.451,2.5169,2.2492,13.4836,2.1054,4.0005,1.3734,16.0227,5.6493,8.7002,4.7886,11.5197,7.1464,7.7279,8.1104,3.9419,1.7658,4.1165,,,,,,,,,,,,,,,54,,,
-3071,1.3015,1.7011,,70-79y,Other,,,18.2638,4.7427,2.747,2.166,0.94733,ppmi,,,M,,0.42667,4.5615,4.0089,0.85231,7.5792,1.4896,0.39187,3.3691,2.9672,46.1739,14.3771,218.4629,4.029,4.773,1.5488,2.0406,3.2879,6.9208,2.0543,2.9606,0.53166,6.6378,10.7408,10.2701,7.7943,2.357,4.4777,1.7742,19.0858,5.5857,3.9062,1.0584,2.2212,6.5552,12.2726,3.6781,4.2949,3.5204,1.5474,1.4472,4.2208,10.0731,3.1254,2.1062,10.7548,2.087,2.5121,2.1429,12.2024,1.924,4.1139,1.2267,13.9127,4.8787,7.9057,3.5099,10.3865,5.79,7.3835,6.9093,3.9946,1.6954,4.6017,,,,0.075857,CN,,HC,0.40403,3.9595,3.7681,0.84982,10.0229,1.7937,0.39301,3.6407,3.0156,46.456,14.6516,222.3891,3.6644,4.718,1.5873,1.971,3.7441,6.5878,2.1249,3.1865,0.49976,6.5933,10.4567,9.0865,8.4232,2.233,4.2684,1.8306,18.1551,5.2643,3.825,0.87972,2.0677,7.7677,12.9282,3.068,4.1885,3.4447,1.4935,1.3743,3.9411,9.4392,2.8997,2.0653,9.8965,1.9735,2.3903,1.9989,11.6045,1.7214,3.9579,1.1939,13.6722,4.828,7.7687,4.327,9.959,6.1432,7.2049,7.0089,3.5989,1.4437,4.4192,,,,,,,,,,,,,,,72,,,
-3072,0.61557,1.7055,,-50y,Other,,,16.0615,4.2355,2.4621,2.1695,0.73383,ppmi,,,F,,0.3919,3.7189,3.4099,0.77908,8.5108,1.391,0.35622,3.3185,2.5391,44.1001,12.8641,170.4913,3.3419,4.9174,1.5159,1.7839,2.9422,6.9944,2.0237,2.776,0.29083,6.3258,10.2483,6.0984,7.7454,2.0959,4.0651,1.5017,15.439,5.9454,3.8753,1.0687,2.2901,5.5805,12.4054,3.5781,4.2237,2.8969,1.2869,1.1587,3.5149,8.627,3.031,1.86,10.6374,1.925,2.252,1.9175,12.065,1.8286,3.7246,1.017,12.1607,4.6589,7.9235,3.5649,9.0393,6.3816,6.9327,6.8536,3.321,1.4057,4.0225,,,,0.069372,CN,,HC,0.35547,3.28,3.309,0.7651,9.4756,1.664,0.35235,3.3975,2.7999,44.8266,12.7376,176.5582,3.1247,4.797,1.5068,1.5277,3.1984,6.9807,1.9385,2.9312,0.35693,6.7193,10.0968,7.8217,8.5972,2.0268,3.722,1.538,15.6278,4.9737,3.7469,0.88073,2.3242,6.4472,12.1818,3.118,4.445,2.7754,1.2965,1.186,3.4773,9.0642,2.7589,1.7519,9.5844,1.7739,2.2929,1.7274,11.5806,1.7062,3.5571,0.97249,12.9307,4.5534,7.1852,4.2492,9.561,6.3919,6.6844,7.0989,2.9092,1.2594,3.9098,,,,,,,,,,,,,,,47,,,
-3073,0.73001,1.6414,,-50y,Other,,,18.2006,4.6252,2.4627,2.2972,1.033,ppmi,,,M,,0.38285,3.8681,3.803,0.81607,8.8283,1.4247,0.37034,2.5814,2.4575,44.7388,15.8689,212.9155,3.8069,4.2508,1.4925,1.8093,3.2272,6.7836,1.8838,2.8675,0.36574,5.6728,10.369,6.8137,7.0961,2.1876,3.841,1.6181,17.1684,5.4126,3.79,1.0976,2.327,5.9477,12.3151,3.0434,3.9302,3.0038,1.2954,1.3939,3.5348,9.997,2.8279,1.984,11.1294,2.1922,2.4647,2.1154,11.3733,1.9359,3.8395,1.0706,13.718,4.5761,8.0251,3.3568,12.0034,6.4131,7.1221,7.2228,3.2413,1.6126,4.545,,,,0.071518,CN,,HC,0.33835,3.4931,3.4951,0.81103,9.5637,1.5327,0.36796,2.927,2.4585,44.9229,15.5792,217.8738,3.7795,4.4776,1.4729,1.809,3.2912,6.7326,1.8691,2.9835,0.43453,6.2247,10.0475,5.112,7.6841,1.8997,4.1335,1.5787,16.5309,5.5723,3.6422,1.0813,2.6671,6.9377,12.8418,3.3537,3.866,3.3938,1.2555,1.3978,3.2448,9.1055,2.5357,1.9771,9.1084,2.1253,2.125,1.877,11.8174,1.8633,3.6849,1.0256,13.0967,4.7805,7.2942,5.1344,10.7965,6.3832,6.8467,6.4261,2.8981,1.5802,4.3687,,,,,,,,,,,,,,,48,,,
-3074,0.76943,1.9564,,-50y,Other,,,19.7932,5.1001,3.043,2.3793,0.91323,ppmi,,,M,,0.52744,5.2063,4.3046,0.95558,10.271,1.8711,0.43289,3.999,3.424,51.9039,16.5315,269.6401,4.286,5.6745,1.8472,2.1342,3.9574,8.2107,2.4482,3.4711,0.37451,7.8791,12.5676,9.5699,8.72,2.8958,5.4129,2.1629,21.4909,7.323,4.5743,1.4192,3.0454,7.6968,15.9005,4.6571,5.1242,3.7782,1.855,1.6541,4.5982,11.5208,3.3751,2.24,12.5738,2.711,2.7724,2.4345,14.8516,2.2524,4.9679,1.31,16.5056,5.7659,10.8192,4.4024,12.139,7.9782,9.2264,7.9783,4.7577,1.7162,5.4936,,,,0.083792,CN,,HC,0.47453,4.6619,4.1117,0.99048,11.3317,2.2165,0.43416,4.2752,3.6079,52.0527,16.3972,275.171,4.0026,6.0646,1.8972,2.1407,4.3121,8.2802,2.4332,3.7354,0.41684,8.2369,13.3332,9.9643,9.3976,2.6416,5.159,2.1677,21.5556,5.9778,4.5284,1.1659,3.2073,8.7452,16.4478,4.1108,5.0344,3.7539,1.77,1.7062,4.1682,11.9105,3.0556,2.2204,11.8918,2.3351,2.6153,2.1196,15.5578,2.1949,4.7976,1.2232,16.095,5.8341,9.4899,5.1471,10.7397,8.5177,8.7981,8.4394,4.2441,1.5057,5.2765,,,,,,,,,,,,,,,31,,,
-3075,1.6379,3.5415,,70-79y,Other,,,19.1695,4.3439,2.609,2.0711,1.7537,ppmi,,,M,,0.52822,5.9053,5.1861,1.0013,12.1104,1.8074,0.45568,3.7095,3.5199,46.7531,15.0843,272.0147,4.7333,5.11,1.9065,2.2997,4.3023,8.9126,2.5614,3.6208,0.75052,7.472,13.4224,28.3491,8.1429,2.8123,5.7653,2.2889,23.2086,8.0818,4.6608,1.4097,3.1266,8.8802,15.8922,4.1487,4.8585,3.666,1.8596,1.6655,5.4619,13.0707,3.6029,3.0571,13.1578,3.244,2.8296,2.7302,14.3029,2.5258,4.6624,1.5376,16.8166,6.4128,10.338,4.6637,12.1555,8.3295,9.6256,8.3515,4.9137,2.0296,5.3774,,,,0.087138,CN,,HC,0.47281,4.7687,4.8104,1.0155,12.5014,2.0346,0.46053,3.3515,3.6008,45.8452,14.9313,274.642,5.2684,5.1474,1.9272,2.3547,4.901,8.9156,2.5891,3.7285,0.8108,7.8192,12.8545,25.0857,8.6741,2.4494,5.2162,2.2864,22.7563,6.1979,4.4954,1.2937,3.209,11.0336,15.6894,3.6833,4.6898,4.2945,1.6668,1.6847,4.9728,13.3179,3.3391,3.1697,12.1062,2.8438,2.4587,2.6819,14.4484,2.4752,4.4793,1.533,17.1976,6.7439,8.592,5.0087,12.545,8.4294,9.1175,8.357,4.1942,2.1047,5.1654,,,,,,,,,,,,,,,76,,,
-3076,1.8133,1.6153,,70-79y,Other,,,20.4281,5.091,2.8417,2.4837,3.2605,ppmi,,,F,,0.50008,4.9682,4.7904,0.71334,10.4087,1.7275,0.40208,2.8232,3.8351,47.5536,15.0056,220.5682,4.5705,4.7271,1.4142,2.0974,3.5559,7.5906,2.2894,2.8957,0.92297,6.3365,11.5288,46.6861,7.2528,2.5103,5.1517,1.9644,19.5246,6.7294,4.319,1.2954,2.9489,7.258,14.4334,3.8419,4.1562,3.2781,1.6587,1.657,5.0449,11.8365,3.0983,2.8067,13.4702,2.4194,2.6958,2.5157,14.2289,2.1213,4.7129,1.4144,14.6502,5.9235,9.7745,3.847,10.3967,7.8592,8.7029,7.7341,4.1935,1.6455,5.0897,,,PD,0.082497,PD,,PD,0.46455,4.0935,4.3185,0.7076,10.3133,1.8529,0.39859,3.0676,4.0238,48.0245,14.9857,219.4732,4.0717,5.2035,1.5144,2.0331,4.2264,7.2181,2.3287,2.9373,1.3219,5.7278,11.1054,45.8363,7.1851,2.3451,5.1717,2.0367,19.4737,4.91,3.9643,1.0215,2.5734,8.7677,14.0258,2.5551,3.6758,3.1768,1.6678,1.5995,4.3458,11.4317,2.7601,2.6701,11.1093,2.1786,2.4871,2.4094,13.0006,2.0636,4.3801,1.3877,15.1326,5.8022,8.9079,4.0038,10.5645,8.6479,8.3437,8.3167,3.9823,1.7626,4.9557,,,,,,,,,,,,,,,76,,,
-3077,2.2312,2.56,,60-69y,Other,,,18.9955,5.3965,2.5302,2.4252,1.7421,ppmi,,,M,,0.42711,4.9827,4.5044,0.90154,9.6707,1.61,0.40203,3.0472,3.3716,47.7341,15.0763,225.1684,4.3339,4.8994,1.6906,2.0907,3.5931,8.0142,2.2406,3.3995,1.5741,7.0788,12.2832,36.9001,7.8839,2.5177,5.3546,1.8736,21.6384,6.7088,4.2983,1.2894,3.3631,7.2654,14.7966,3.6272,4.4483,3.5386,1.5589,1.4461,5.1735,11.7358,3.5005,2.6395,12.8086,2.6825,2.4579,2.6241,13.3513,2.5517,4.2431,1.3672,15.2795,6.7022,10.5667,3.9379,11.6571,8.4605,8.1201,8.7066,4.2717,1.787,4.8952,,,PD,0.091077,PD,,PD,0.37635,4.585,4.4625,0.88687,11.1163,1.79,0.40922,3.2449,3.7005,47.8429,14.987,228.3638,4.1523,4.9294,1.8159,2.2505,3.7756,8.5315,2.2451,3.6124,1.1716,7.3658,13.3797,27.8067,8.3115,2.3493,4.7828,1.8123,19.7358,5.0468,4.0658,1.2779,2.8988,8.5509,16.286,3.2821,4.6316,3.4934,1.7567,1.427,4.8859,12.2064,3.2639,2.5225,11.2428,2.353,2.4425,2.4364,12.5403,2.1648,4.1987,1.3879,16.0411,6.4709,8.6193,4.2874,11.3216,8.434,7.6295,8.9169,3.9891,1.7776,4.713,,,,,,,,,,,,,,,63,,,
-3078,0.79109,1.6694,,60-69y,Other,,,18.9539,4.7933,2.8629,1.9347,0.94067,ppmi,,,M,,0.48839,5.4352,4.77,0.99661,10.3392,1.8276,0.41844,3.5686,3.1763,49.6461,16.7659,277.7141,4.731,5.1211,1.8784,2.1858,4.592,8.1781,2.7286,3.575,0.46912,7.4143,12.4276,7.4205,8.594,2.786,5.5952,2.233,22.45,7.4259,4.8324,1.1211,2.8293,7.9433,14.8859,4.5429,4.8866,3.329,1.8124,1.6161,5.0219,11.2166,3.5331,2.4325,13.1643,3.0281,2.7065,2.4709,15.5721,2.5382,4.7241,1.3186,16.8477,5.9441,10.1708,4.3969,11.6547,7.5735,9.0817,8.3897,4.342,2.0387,5.0043,,,PD,0.079836,PD,,PD,0.45889,5.0843,4.6231,1.0135,12.026,2.4084,0.43214,3.7394,3.4601,50.4477,16.6176,285.1117,4.8934,5.5078,1.988,2.215,4.2922,8.3337,2.592,3.8293,0.61923,7.874,13.4558,6.6225,9.268,2.7657,5.3835,2.1819,22.0536,6.2129,4.7755,1.3144,3.0791,8.7461,16.2705,3.8095,4.9252,3.5448,1.7714,1.6591,4.6808,11.469,3.3011,2.5032,12.4141,2.7016,2.6547,2.2426,15.6345,2.3824,4.697,1.2626,16.7125,5.9452,9.0752,5.3531,11.0095,7.9494,8.8484,8.8599,3.7454,1.7816,4.8731,,,,,,,,,,,,,,,61,,,
-3080,1.5203,1.9212,,+80y,Other,,,19.3124,5.2418,3.0515,2.542,1.4777,ppmi,,,M,,0.51093,4.9299,4.4785,0.96807,9.8406,1.7133,0.43416,3.9767,2.937,53.3239,16.5937,256.9178,4.0165,5.189,1.9459,2.0122,3.6,7.9965,2.4829,3.2913,0.51855,7.6262,11.7112,12.1587,8.6762,2.6653,4.9101,2.0786,20.9435,7.362,4.432,1.0142,2.5333,7.4979,14.5785,4.438,5.0741,3.2349,1.5026,1.5804,4.5244,11.467,3.7817,2.5107,10.7287,2.6092,2.6998,2.3515,12.5742,2.2888,4.5048,1.3632,14.4735,5.7158,8.5164,4.1744,10.4552,6.9657,8.3643,8.4954,3.787,1.7154,5.0168,,,PD,0.089333,PD,,PD,0.43548,4.1603,4.4331,1.0084,10.0164,1.9416,0.41537,4.0457,3.0335,52.9305,16.9711,264.5061,4.0187,5.5692,2.0081,2.1359,3.8176,8.3622,2.4145,3.5197,0.58608,7.4068,13.3488,11.0906,8.6744,2.3763,4.873,2.071,20.1091,5.1243,4.2054,1.0087,2.4573,8.8822,15.5926,3.6283,4.8628,3.7945,1.495,1.5909,4.0554,11.3679,3.2404,2.5615,10.1211,2.6056,2.4055,2.3526,12.7066,2.2278,4.4666,1.2969,15.0205,5.3038,8.4287,4.7191,10.4503,8.2602,7.9652,8.745,3.8117,1.7377,4.7977,,,,,,,,,,,,,,,80,,,
-3081,1.7052,2.0263,,+80y,Other,,,17.5134,4.2882,2.5856,1.9018,1.7608,ppmi,,,F,,0.40279,4.3636,3.565,0.80937,8.592,1.3967,0.3569,2.4447,3.0181,43.3979,13.1127,183.063,3.928,3.9882,1.5745,1.588,3.2787,6.4695,1.9823,3.0386,0.58497,5.4494,9.7473,23.2464,6.7517,2.2826,4.8077,1.6065,17.4918,5.7901,3.5941,0.94797,2.1347,6.7145,11.9837,3.0594,3.847,3.03,1.3792,1.1985,4.1233,10.0403,3.114,2.221,10.963,2.1934,2.2238,2.198,11.3215,1.9312,3.4921,1.1713,14.4898,4.7291,8.3799,3.6187,9.6873,6.6481,7.2828,6.5832,3.5378,1.4617,4.3141,,,PD,0.076732,PD,,PD,0.34728,4.1478,3.4257,0.7972,9.749,1.5396,0.36223,2.4732,3.013,42.7756,12.7754,184.9392,3.6535,3.901,1.6105,1.7045,3.4144,6.6102,2.0206,3.213,0.5824,5.6134,10.1191,15.6721,7.2355,1.951,4.5523,1.5666,18.0229,4.719,3.5804,0.96977,2.0968,7.2625,12.2336,2.3628,3.8457,3.1274,1.3605,1.1968,3.9217,10.1618,2.8795,2.1452,10.1216,2.4761,1.9958,2.0027,11.1568,1.8874,3.5418,1.1875,12.9843,5.0493,7.3709,3.4323,9.3446,7.1569,6.8903,7.0952,3.0733,1.4314,4.1111,,,,,,,,,,,,,,,81,,,
-3083,1.5919,1.9303,,60-69y,Other,,,18.0984,4.4558,2.6109,2.1359,1.5588,ppmi,,,F,,0.42105,4.307,3.8761,0.83458,9.0152,1.5369,0.38121,2.786,2.746,46.8836,14.8391,222.7643,3.8622,4.5809,1.6276,1.7591,3.0532,7.5947,2.0104,3.0944,0.54226,6.2169,10.92,17.895,7.0669,2.2888,4.3858,1.586,17.5017,5.8157,4.0689,1.0724,2.2825,6.1923,12.8269,3.1631,4.2973,3.3271,1.353,1.3968,4.449,10.4959,3.1581,2.2651,11.5329,2.2584,2.4473,2.2369,12.8165,1.9524,4.417,1.2249,13.586,4.8781,9.1333,3.6975,10.7312,7.0564,7.3674,7.3646,3.5727,1.5494,4.573,,,PD,0.072581,PD,,PD,0.40106,3.5856,3.7618,0.83826,9.49,1.66,0.39385,2.936,2.8462,48.1547,14.7776,225.879,3.915,4.4878,1.6125,1.69,3.1969,7.7244,1.9927,3.3686,0.74786,6.1652,11.2073,16.8692,7.8803,2.099,4.3344,1.7552,16.3114,4.7761,3.8114,1.2189,2.5545,7.2671,13.1879,2.8813,4.5887,3.2259,1.423,1.4338,4.1504,10.7913,2.9135,2.2835,10.9285,2.1539,2.2736,2.0214,12.889,1.8627,4.2804,1.1503,13.2629,5.3118,7.9709,3.9818,9.7766,7.0194,7.0014,7.5415,3.5524,1.5323,4.4106,,,,,,,,,,,,,,,66,,,
-3086,1.1711,1.7681,,50-59y,Other,,,19.6247,4.8254,2.7233,2.2215,1.1623,ppmi,,,F,,0.44816,5.1152,4.2883,0.92129,9.8365,1.9169,0.43063,3.8096,3.2423,52.1935,16.4436,250.1178,4.1257,5.1964,1.633,1.9389,3.743,7.8751,2.4779,3.2162,0.39001,7.7734,12.314,13.2264,8.3949,2.7113,4.9456,2.0226,21.0011,7.7192,5.0334,1.293,2.8519,7.1288,15.4142,4.5433,4.9032,3.262,1.5035,1.5692,4.6985,11.6846,3.2248,2.3174,13.6838,3.1998,2.751,2.1566,13.7537,2.5346,4.213,1.4291,15.5132,5.8273,10.7813,4.7594,12.7758,7.5745,8.9576,7.4686,4.2073,1.6984,5.0472,,,PD,0.097903,PD,,PD,0.42523,4.6414,4.3217,0.95566,10.9776,2.1796,0.41745,3.9059,3.5206,51.4027,15.824,251.948,4.173,5.6697,1.7999,2.1423,4.2686,7.9057,2.6225,3.4458,0.4067,7.741,12.6422,14.2809,8.7018,2.8178,5.0137,2.1604,19.9682,6.0286,4.8309,1.3,2.6543,8.6714,15.2703,3.811,4.5507,3.923,1.9154,1.5839,4.0906,11.1409,3.0812,2.4167,12.0171,3.0193,2.6643,2.1935,11.9634,2.4023,4.1741,1.4072,16.3809,5.9212,9.3483,5.6354,11.6034,7.4536,8.6899,7.9662,4.4352,1.863,4.8717,,,,,,,,,,,,,,,56,,,
-3088,0.86862,1.2774,,50-59y,Other,,,20.0061,4.4335,2.6266,2.2397,0.79722,ppmi,,,F,,0.43461,5.0517,3.9141,0.84909,9.5933,1.7389,0.38688,3.1597,2.6825,47.1791,16.4444,255.4911,3.8974,4.4719,1.6436,1.9354,3.3664,7.0383,2.2725,3.1372,0.36071,6.4059,11.1621,5.9845,6.8781,2.6463,4.8691,1.9545,19.9872,6.9743,4.3596,1.2091,3.1064,7.5904,14.2082,3.5768,4.1481,3.3365,1.6379,1.4102,4.3048,10.4079,2.9335,2.1186,11.8383,2.0756,2.5701,2.3071,14.3996,1.8317,3.7993,1.2192,15.2074,6.1954,8.1512,3.7413,11.1141,7.6662,8.5169,7.9751,4.0758,1.4784,4.9787,,,PD,0.08476,PD,,PD,0.39393,4.9372,3.8293,0.84108,9.8338,2.0173,0.38607,3.4637,2.755,48.9542,16.694,261.171,3.6634,4.5583,1.7211,2.0126,3.8476,7.2569,2.1645,3.277,0.37253,7.4873,11.6617,5.6863,7.9895,2.4443,5.1986,2.0284,20.58,6.0466,4.067,1.1509,2.9974,8.4711,14.5194,3.3957,4.5152,3.5603,1.6415,1.4649,4.2699,10.5123,2.9641,2.1854,10.8708,2.0053,2.3579,2.188,13.713,1.7587,3.7585,1.21,14.5784,5.7758,7.6563,4.2839,9.6605,7.1687,8.1466,7.8688,3.866,1.4811,4.7253,,,,,,,,,,,,,,,55,,,
-3089,0.9969,2.1057,,50-59y,Other,,,19.2256,4.8949,2.6326,2.5489,1.0754,ppmi,,,F,,0.449,4.3938,3.8122,0.84095,8.5417,1.4543,0.38769,2.835,2.8475,47.3177,16.0513,203.0713,3.8669,4.5447,1.6405,1.9242,3.3581,7.5087,2.3152,3.1648,0.57272,6.0947,11.1977,11.5021,7.3395,2.222,4.9891,1.93,19.307,6.1265,3.8563,1.0692,2.474,6.8802,13.0286,3.5801,4.0115,3.1867,1.3748,1.3486,4.3802,10.4508,3.2896,2.104,11.812,2.3638,2.2085,2.1177,13.001,1.885,4.1956,1.2227,14.6977,5.5326,8.9731,3.9599,10.2029,6.9585,7.7353,7.5636,3.7723,1.5584,4.7699,,,PD,0.089112,PD,,PD,0.40541,4.2312,3.682,0.88046,10.6105,1.716,0.38495,2.806,2.9654,48.6498,15.7402,207.9989,3.7604,4.3238,1.6472,2.0658,3.5872,7.1113,2.1783,3.3389,0.57226,6.1405,11.7764,12.0029,8.0863,2.0926,5.0754,1.8637,19.0339,5.0918,3.7229,1.025,2.5617,7.6396,14.1526,2.8737,4.1311,3.7731,1.3984,1.3809,3.968,9.9771,2.9252,2.2233,10.4682,2.147,2.1208,1.9224,13.6526,1.6952,4.0397,1.158,13.9534,5.5768,7.5759,4.7316,11.2707,6.5876,7.2596,7.5983,3.5262,1.3966,4.5491,,,,,,,,,,,,,,,56,,,
-3102,1.5581,1.8037,,60-69y,Other,,,19.69,4.1919,2.5028,2.079,1.3479,ppmi,,,M,,0.45109,4.5349,4.4911,0.81629,10.2926,1.5183,0.3663,3.1825,3.5075,43.0802,16.7801,242.3501,4.1759,4.466,1.5778,2.048,3.6042,7.3176,2.0088,2.9459,0.66798,6.1034,11.3137,16.9883,7.2773,2.406,5.0302,1.8047,19.1476,6.0736,3.7691,1.0372,2.7892,6.9701,13.5608,3.7227,4.0931,3.163,1.4761,1.7187,4.8068,10.8387,3.036,2.5707,11.9569,2.5818,2.2941,2.3219,12.5921,2.1102,4.6958,1.2501,14.0798,5.2777,8.5425,3.434,10.6017,7.3549,8.5472,7.1405,3.9714,1.6958,5.1782,,,PD,0.064957,PD,,PD,0.40752,4.2693,3.951,0.82296,9.9588,1.6843,0.37908,3.4337,3.7347,43.2286,16.1761,245.8614,3.8458,5.1986,1.6293,1.9152,3.7285,7.362,2.0269,3.2886,0.60714,7.6298,11.0012,16.3899,7.8126,2.2053,4.8832,1.6582,17.6998,5.6452,3.7214,1.0851,2.6987,7.3101,13.8826,3.7364,4.2951,3.3531,1.5408,1.6614,4.3038,11.0155,2.8378,2.4904,9.9787,2.3642,2.0952,1.9478,12.4599,1.882,4.4812,1.1569,13.9506,5.63,7.8508,4.5869,9.8739,6.1918,8.3529,7.1395,3.5391,1.4624,4.8553,,,,,,,,,,,,,,,64,,,
-3104,1.7738,1.8381,,70-79y,Other,,,18.1729,4.8523,2.6162,2.2884,1.2278,ppmi,,,M,,0.44451,4.7252,4.4869,0.84206,9.4885,1.4461,0.39632,3.004,2.7615,47.8017,15.9597,198.3982,4.0028,4.7015,1.6484,1.8661,3.5451,7.8019,2.1288,2.9589,0.58878,6.1782,11.1027,18.2621,8.1706,2.4263,4.6044,1.888,17.5371,6.5929,3.7983,1.2354,2.5968,6.9505,12.8211,3.9067,4.4419,3.6271,1.4854,1.2851,4.4657,10.8298,3.2268,2.4432,11.3843,2.3659,2.4993,2.2168,12.9598,2.0905,3.9974,1.4171,13.2507,4.6533,8.3934,3.6903,10.5224,6.7383,7.9408,7.4357,3.7897,1.759,4.4855,,,,0.080241,CN,,HC,0.38799,4.1388,4.2561,0.90413,9.9406,1.5786,0.41352,3.4429,3.022,49.546,15.7973,203.5945,3.797,5.2844,1.8515,1.9583,3.7842,7.7229,2.0386,3.2085,0.71092,6.7129,11.3094,18.2911,8.7562,2.1345,4.178,1.8026,17.7961,5.4475,3.5441,1.2078,2.6472,7.804,13.5842,3.4106,4.5844,3.4516,1.4468,1.2596,4.0237,10.9726,3.107,2.4364,10.1082,2.2256,2.3209,2.101,12.7219,1.9062,3.8712,1.2749,14.8375,5.2599,7.8094,4.7521,10.8266,7.2815,7.8293,8.4073,3.3787,1.4947,4.3778,,,,,,,,,,,,,,,72,,,
-3105,1.8023,2.5253,,60-69y,Other,,,18.2092,5.2438,2.7748,2.3497,2.1312,ppmi,,,M,,0.40918,4.4275,4.457,0.83352,7.8177,1.4698,0.38893,3.3531,3.1741,49.2397,16.697,222.2521,3.9,4.922,1.5953,2.0652,3.5207,7.9092,2.144,2.8598,1.2839,7.2079,11.1926,45.524,7.4135,2.4463,4.4121,1.7128,18.4805,6.6342,4.0157,1.076,2.3436,6.1804,13.195,4.1765,4.3271,3.4979,1.6983,1.3071,4.7595,11.3557,3.1797,2.5444,11.223,2.2676,2.5174,2.3557,12.9652,2.0071,3.6022,1.3781,14.382,4.9807,7.6841,4.0664,9.3613,6.0747,7.801,7.1286,4.0505,1.6995,4.6151,,,PD,0.074162,PD,,PD,0.40761,4.1469,4.4173,0.81691,10.1003,1.5732,0.40714,3.1546,3.5271,49.2799,16.7636,225.5783,4.1476,4.9273,1.7188,2.0843,3.8282,7.8038,2.0912,3.306,0.93732,6.7961,11.4392,29.5849,8.111,2.3682,4.2667,1.671,17.2372,5.1014,3.6619,0.98502,2.3667,6.8689,13.6114,2.8452,4.0681,3.5606,1.801,1.4085,4.2326,10.9988,2.9632,2.7261,9.7543,2.1069,2.3421,2.2564,12.3387,1.8666,4.058,1.271,13.5002,4.9107,7.965,3.8473,9.6899,7.136,8.029,7.902,3.3558,1.694,4.497,,,,,,,,,,,,,,,69,,,
-3106,1.2101,1.6089,,70-79y,Other,,,18.273,3.8243,2.327,1.9316,1.3292,ppmi,,,F,,0.36996,4.0028,4.0127,0.77904,7.9323,1.4947,0.34532,2.8725,3.0196,39.2802,15.2939,234.1296,3.815,4.2171,1.5461,1.9103,3.1771,6.6393,1.9737,3.1454,0.58836,5.946,10.4438,17.8297,6.4766,2.2499,4.1804,1.5927,17.8388,6.1556,3.8237,1.1158,2.5765,6.5525,13.1147,3.7208,3.7618,3.8079,1.4363,1.616,4.0072,10.3749,3.0287,2.2409,12.286,2.0303,2.4418,2.1166,12.6848,1.6963,4.2531,1.1138,14.0245,5.4179,8.1931,3.5198,10.3687,6.1383,8.4591,7.4118,4.0202,1.5064,4.908,,,,0.070403,CN,,HC,0.35092,3.6867,3.5019,0.63252,9.6895,1.5542,0.33583,3.0458,3.0603,39.9226,15.2197,234.6455,3.6333,4.6534,1.2254,1.805,3.2742,6.6334,1.8893,2.8973,0.91532,6.189,9.6969,14.932,7.0443,2.0524,4.2848,1.529,17.262,5.0126,3.5374,1.0918,2.667,6.8683,12.5764,2.9351,3.7453,3.5915,1.4193,1.4979,3.5487,10.108,2.4394,1.9972,10.4677,2.0405,2.1555,1.8792,12.4132,1.7439,4.0058,0.99754,14.0565,5.2637,7.4845,4.2111,9.9715,6.7409,8.1919,6.3444,3.2856,1.4027,4.6256,,,,,,,,,,,,,,,70,,,
-3107,1.4825,1.63,,70-79y,Other,,,20.4465,5.6496,2.7642,2.5431,1.6722,ppmi,,,M,,0.46597,5.2934,4.5159,0.88298,10.7481,1.7704,0.41752,3.7985,3.079,49.0868,17.3946,239.419,4.1924,5.7048,1.777,2.0627,3.8236,7.8219,2.3353,3.2767,0.66631,6.9501,12.0365,23.1381,8.6958,2.639,5.0236,1.9882,20.2249,6.3929,4.3878,1.3155,2.864,8.1423,14.3789,3.9748,4.6477,3.3067,1.6562,1.6021,4.8281,12.2694,3.4105,2.4222,12.9061,2.683,2.6615,2.3611,12.2752,2.3925,4.3882,1.4886,14.0172,5.8898,9.8468,4.0992,12.1849,8.1675,8.734,8.2049,4.1242,1.8316,5.1265,,,PD,0.086986,PD,,PD,0.42064,4.2405,4.5265,0.89382,10.7915,1.7842,0.42146,4.0359,3.201,49.3343,17.2553,242.2809,4.4204,5.7641,1.777,2.1307,4.0845,7.9881,2.3682,3.5983,0.78317,7.433,12.5172,16.3663,9.0089,2.3995,4.7656,2.0323,18.6375,5.539,3.9093,1.1726,2.9445,9.4417,15.4447,3.5751,4.9598,3.3007,1.7839,1.5407,4.9424,12.5912,3.061,2.6141,11.2635,2.4629,2.4819,2.3696,13.484,2.1006,4.3371,1.3802,14.8129,5.3216,8.9219,4.8075,11.2064,7.8508,8.5666,8.5481,3.8376,1.753,4.9232,,,,,,,,,,,,,,,70,,,
-3108,0.69511,1.4022,,50-59y,Other,,,17.1174,4.53,2.6723,2.1668,0.864,ppmi,,,F,,0.43355,4.16,4.1217,0.86812,9.9142,1.6958,0.36747,3.3938,3.0355,46.2315,14.3046,200.2576,3.9031,4.378,1.6658,1.8535,3.2655,7.4731,2.0771,3.0857,0.35593,6.2182,10.6253,8.1254,7.8863,2.3536,4.7339,1.7258,18.4459,6.0505,4.1058,1.082,2.4951,6.418,13.9492,3.3836,4.444,3.3277,1.3835,1.3333,4.2663,9.6295,3.3093,2.1325,11.8466,2.4032,2.4852,2.0167,12.6982,1.9804,4.0521,1.0797,14.5494,4.5352,10.2675,3.7092,11.0067,7.8948,7.9006,7.7029,3.5565,1.4105,4.4989,,,PD,0.072358,PD,,PD,0.38539,3.2902,3.8804,0.83979,10.3192,1.6761,0.37946,3.5634,3.1221,46.2042,13.9887,203.8786,3.7891,4.5771,1.5963,1.8728,3.4625,7.3577,2.0388,3.3379,0.38794,6.884,11.598,7.5198,8.492,2.0844,4.238,1.6448,17.4011,5.7173,3.925,1.0151,2.5565,7.1783,15.0025,3.1707,4.3339,3.5471,1.4045,1.3625,3.9177,9.6555,2.9745,2.1115,11.2874,2.21,2.3344,1.9234,12.6208,1.87,3.9504,1.0463,15.2713,4.9311,9.1434,4.5938,10.4405,7.7367,7.7532,8.117,3.4746,1.3843,4.3139,,,,,,,,,,,,,,,50,,,
-3111,1.8406,2.0856,,60-69y,Other,,,19.8741,4.9239,2.3718,2.2239,1.9304,ppmi,,,M,,0.39756,4.0602,4.3736,0.84844,8.9969,1.2203,0.35992,2.708,3.1998,41.288,17.5352,228.7865,3.7913,4.3052,1.6237,1.7886,2.9892,6.5566,1.781,3.3024,1.0888,5.3877,10.0389,26.7825,7.3002,2.1291,4.2722,1.4142,16.9723,5.6973,3.4654,1.2207,2.8451,6.3069,13.5831,3.1306,3.9576,2.488,1.4121,1.4652,4.7604,11.3157,3.2416,2.4869,11.5846,2.2771,2.2894,2.3512,11.1987,1.8656,3.8756,1.1749,12.5519,5.4268,8.8009,3.6421,11.6694,7.206,8.3063,7.0436,3.2357,1.4311,4.7987,,,PD,0.065669,PD,,PD,0.35007,3.4847,4.0648,0.78272,10.4692,1.3136,0.37154,2.8862,3.3473,41.4769,17.4814,234.5161,3.4805,4.5241,1.5381,1.71,3.0772,6.7658,1.8159,3.4211,0.91849,7.1653,10.4543,23.5172,7.381,2.0633,4.4859,1.4411,14.7358,5.8629,3.2904,1.2524,2.965,6.6824,12.8265,3.2253,4.0755,2.3968,1.677,1.4022,4.4406,11.374,2.8532,2.4413,10.9162,2.27,2.1844,1.9983,9.5871,1.8787,3.7289,1.152,13.4285,5.0607,7.5833,4.7231,11.3523,6.9995,8.2684,6.7708,3.0994,1.5485,4.6031,,,,,,,,,,,,,,,65,,,
-3112,0.65532,1.6575,,60-69y,Other,,,16.5532,3.8452,2.0472,1.6801,0.82614,ppmi,,,F,,0.3914,3.4303,3.5956,0.81173,7.2566,1.2588,0.34787,2.5228,2.8859,35.7044,12.5142,194.6642,3.6023,4.0086,1.522,1.7704,2.7695,5.7704,1.7807,2.8269,0.41811,4.9148,9.379,8.7248,6.1027,2.0404,3.5523,1.425,15.452,5.0305,3.2881,1.0267,2.3584,5.5529,11.5153,2.7746,3.3513,3.0184,1.28,1.321,3.4511,8.9823,2.7844,1.8524,10.7358,2.0247,2.1494,1.7171,11.2233,1.7442,3.9907,1.0085,13.2394,4.6509,7.8372,3.0358,9.2509,5.7748,7.4592,6.9698,3.276,1.3584,4.2834,,,,0.069385,CN,,HC,0.36197,3.1627,3.4078,0.77809,8.7907,1.3946,0.35477,2.4965,2.8628,35.8716,13.0473,196.4646,3.4589,3.957,1.4737,1.6243,3.166,6.1584,1.8109,2.9572,0.42871,5.1044,9.9842,7.371,6.1834,1.8377,3.7468,1.4928,15.9779,4.2831,3.086,1.0012,2.3509,5.9724,11.7195,2.4713,3.4097,2.8584,1.3201,1.2707,3.0876,8.4715,2.5876,1.8974,9.049,1.8312,1.8894,1.5952,11.5364,1.639,4.02,0.96895,12.7407,4.36,7.0714,3.5495,8.7085,5.9082,7.3037,6.5547,2.7424,1.2977,3.9787,,,,,,,,,,,,,,,63,,,
-3113,0.87996,1.3998,,50-59y,Other,,,18.9429,4.374,2.6592,2.0505,1.5397,ppmi,,,F,,0.41716,4.3054,3.8434,0.80481,9.8529,1.5518,0.36361,2.8219,2.7608,44.4322,15.8427,216.505,3.9992,3.9849,1.5348,1.7687,3.2925,6.1721,2.023,3.1588,0.33691,5.7214,9.6067,10.8101,6.904,2.3916,4.256,1.7082,17.8285,5.9279,3.9952,1.2044,2.5225,6.6288,12.6076,3.2088,3.941,3.163,1.4404,1.3164,4.3563,10.3605,2.9483,2.2264,11.4601,2.3822,2.4964,2.3113,12.6336,1.852,3.2591,1.1775,13.4732,5.0928,9.0805,3.4064,10.6596,6.6374,7.6668,7.3063,3.5779,1.5585,4.6143,,,PD,0.072028,PD,,PD,0.39054,4.1012,3.3851,0.79527,9.2944,1.6842,0.37623,2.8393,2.9576,43.809,14.8695,223.0518,3.9699,4.7547,1.5295,1.6336,3.5325,6.4092,2.0387,3.3002,0.38659,6.308,9.7575,9.7852,7.154,2.1323,4.395,1.6562,18.1618,4.9281,3.7955,1.0379,2.5793,7.4763,12.6617,2.6799,3.7904,3.0659,1.3692,1.4192,3.973,10.2662,2.691,2.0364,10.2933,2.2164,2.3528,1.9225,12.8752,1.8254,3.5799,1.0963,14.3524,5.0876,7.85,4.1078,9.7188,6.6541,7.8691,7.3568,3.1689,1.5484,4.4831,,,,,,,,,,,,,,,59,,,
-3114,1.3931,2.0803,,60-69y,Other,,,16.5827,4.2673,2.2017,1.9732,1.0463,ppmi,,,F,,0.41389,3.9169,3.9407,0.84222,8.3608,1.4291,0.36406,3.1684,2.9722,41.6833,13.1067,189.0501,3.2988,4.432,1.6149,1.7132,3.1072,6.6574,1.6528,2.9292,0.40153,5.6306,10.3447,9.9253,7.1037,2.237,4.2237,1.5298,16.6263,4.9064,3.5174,1.0486,2.4199,6.1375,12.4727,3.0235,4.2074,2.8598,1.3856,1.2612,4.1036,9.5994,3.1083,1.9508,11.5025,1.6595,2.4233,2.1018,11.2414,1.5968,3.928,0.98508,14.5026,5.0048,8.4897,3.2036,10.146,6.8695,7.781,7.4266,3.2869,1.2289,4.3593,,,,0.076316,CN,,HC,0.36854,3.4136,3.5244,0.80343,9.0493,1.5269,0.37742,3.2619,3.1688,41.3335,12.8202,194.1754,3.0733,4.3215,1.6347,1.6595,3.1906,6.9434,1.8251,3.1295,0.44265,6.3913,10.17,9.863,7.6383,1.915,4.1339,1.5038,16.3446,4.9672,3.3579,1.1325,2.5972,6.9275,12.6411,2.9927,4.1607,3.4083,1.2268,1.2496,3.7036,9.9266,2.8164,1.8872,9.5586,1.7284,2.0853,1.7622,12.0328,1.6594,3.7591,0.99372,13.3821,4.9474,7.3737,4.2125,9.5081,6.8272,7.5991,6.9828,3.1529,1.1782,4.2179,,,,,,,,,,,,,,,64,,,
-3115,0.82153,1.3097,,60-69y,Other,,,19.8381,5.7175,2.5382,2.4366,0.95054,ppmi,,,M,,0.48924,5.1676,4.4022,0.91808,10.4234,1.6522,0.41651,3.1163,3.0175,48.6197,17.4945,250.0254,4.9358,4.9416,1.8295,2.1482,3.9447,8.1615,2.1477,3.0843,0.41699,6.9688,12.5456,11.9121,8.1763,2.5421,5.0759,2.0179,21.0262,6.4256,4.2722,1.2737,2.7684,8.0761,14.8449,4.0028,4.6633,3.6343,1.6299,1.5345,4.8604,11.9057,3.3084,2.5399,14.7903,2.7603,2.672,2.3696,14.5453,2.5811,4.5174,1.3424,16.9279,6.2392,9.9226,4.5025,14.0208,7.7984,8.6795,8.9743,4.2296,1.9765,4.7468,,,,0.075768,CN,,HC,0.42743,4.3567,4.2694,0.9367,11.2418,2.1976,0.4187,3.2297,3.165,49.373,17.1466,254.8805,4.5951,5.1831,1.9628,2.1244,4.6393,8.5825,2.3173,3.3587,0.42921,7.1066,13.1018,8.991,8.9967,2.5137,4.979,2.1727,20.3749,5.7867,4.2841,1.1926,3.0263,9.0499,16.898,3.2674,4.6784,3.822,1.7117,1.4543,4.5385,12.1088,3.2333,2.3234,12.3136,2.5591,2.465,1.9262,13.711,2.1295,4.4199,1.306,17.3525,5.8816,9.1342,4.9353,11.8819,8.3776,8.4728,8.6775,3.7087,1.5328,4.6485,,,,,,,,,,,,,,,61,,,
-3116,1.7438,2.9234,,60-69y,Other,,,16.4287,4.7869,2.5498,2.1237,1.9404,ppmi,,,M,,0.37556,3.7508,3.9329,0.8209,8.973,1.3112,0.31889,2.8071,2.8516,42.9209,14.9655,206.6022,3.8585,3.7871,1.5617,1.7597,3.2315,6.2596,1.7236,3.1349,1.029,5.4781,9.6555,23.5223,7.0229,1.9757,3.7519,1.3981,15.6807,6.0488,3.1841,0.92909,2.0477,5.8503,11.6985,3.2693,3.7996,2.9572,1.2807,1.5477,3.8101,9.1119,3.0915,2.261,10.2679,2.1748,1.9785,2.2846,11.402,1.8523,3.7906,1.0534,11.9487,4.324,8.1291,3.2948,8.6392,6.2745,7.6839,6.5271,3.1453,1.6161,4.4528,,,PD,0.066848,PD,,PD,0.3508,3.3027,3.8426,0.8056,9.1598,1.314,0.33778,3.1073,3.0778,44.1906,14.9709,214.5052,3.261,4.13,1.5996,1.7893,3.342,6.9368,1.793,3.2891,1.1683,5.9645,10.0403,26.3462,7.9039,1.8348,3.7437,1.4282,15.3241,4.413,3.032,0.9681,2.1378,6.5908,12.3337,2.8649,3.9868,2.8796,1.3465,1.528,3.4013,9.0343,2.9014,2.1723,8.8931,2.0384,1.793,1.8632,9.8815,1.6795,3.8305,1.0075,12.4761,4.3627,7.2286,3.669,9.3872,6.4323,7.3141,6.8992,3.2601,1.4343,4.3002,,,,,,,,,,,,,,,65,,,
-3118,1.7445,1.5142,,60-69y,Other,,,18.8433,4.824,2.8453,2.4792,1.3368,ppmi,,,M,,0.45492,4.6962,4.4006,0.91858,8.7548,1.3775,0.41657,3.04,2.8418,50.6227,16.8769,194.6954,4.3005,4.4508,1.79,1.9427,3.3907,7.5036,2.2125,3.4015,0.51004,6.8799,12.3179,12.9029,7.2653,2.2961,4.9463,1.9163,17.2899,6.0022,4.0445,1.2967,2.7929,7.2386,15.1343,3.4452,4.2042,3.2278,1.6169,1.2133,4.3411,10.2354,3.4111,2.4041,11.9404,2.4451,2.6779,2.1879,13.4518,1.9591,4.464,1.3197,15.3942,5.629,9.0341,3.7154,9.508,7.3468,7.9552,7.8511,3.6261,1.608,4.5349,,,PD,0.082464,PD,,PD,0.37259,3.5969,3.9902,0.90835,10.0974,1.5392,0.4039,2.9337,2.955,51.8282,16.4401,200.8583,3.9431,4.3694,1.8827,2.0144,3.914,8.2826,2.1321,3.5663,0.60306,6.7388,12.6789,15.111,7.902,2.2049,4.4117,1.9852,16.8627,5.235,3.5838,1.0278,2.535,8.5576,15.2169,2.6892,4.3794,3.7502,1.6204,1.2761,4.1385,11.006,3.2396,2.2728,11.6286,2.4746,2.4144,1.9329,13.0812,2.0759,4.2185,1.2941,14.1342,6.041,7.8728,3.7722,9.6902,7.1921,7.6634,8.2104,3.5695,1.4814,4.4356,,,,,,,,,,,,,,,60,,,
-3119,1.8875,2.4412,,60-69y,Other,,,18.4809,4.9369,2.7189,2.237,1.3107,ppmi,,,M,,0.52643,5.1478,4.921,0.96084,9.8902,1.761,0.42781,3.4481,3.0971,49.4687,16.6046,231.5694,4.4344,4.7482,1.9734,2.0475,3.6309,8.4811,2.2152,3.4513,0.60693,6.8159,12.9263,17.4559,7.9746,2.5178,5.2019,1.9496,21.8087,6.3502,4.2154,1.0548,2.7703,7.7546,14.3614,4.0312,4.9009,3.0725,1.5532,1.5628,4.9303,12.6591,3.6848,2.7491,12.2317,2.501,2.5847,2.6411,13.9538,2.442,5.1217,1.3367,14.2829,5.9972,9.9574,3.776,12.9913,7.8767,9.2882,8.3694,3.776,1.9511,4.9043,,,PD,0.09198,PD,,PD,0.49395,4.4402,4.3621,0.93129,10.1642,1.9574,0.46159,3.6926,3.2483,48.0581,15.9817,235.9989,4.0001,5.4285,2.0821,1.7936,4.026,8.3642,2.2911,3.5656,0.66434,7.1901,12.9704,15.5257,8.8843,2.2689,5.4693,2.1432,19.8734,5.249,4.1051,1.1349,2.6781,8.9824,15.2937,3.2818,4.7019,2.9925,1.4474,1.5431,4.5085,12.5871,3.3245,2.6,10.7229,2.6305,2.4748,2.3554,13.2733,2.267,4.8371,1.2879,15.0061,6.3006,9.0091,4.878,11.0818,8.0391,9.0269,9.0407,3.1111,1.7375,4.7043,,,,,,,,,,,,,,,64,,,
-3120,0.67058,1.642,,50-59y,Other,,,17.5787,4.2583,2.4945,2.0968,0.79881,ppmi,,,F,,0.41014,3.952,3.7444,0.80558,8.2381,1.3728,0.35861,3.5075,2.8264,45.0181,15.4153,214.6363,3.679,4.7088,1.5306,2.0223,3.472,6.6893,1.9171,2.7899,0.30358,5.8035,9.4219,6.6663,7.396,2.271,4.4203,1.6372,16.8077,5.5934,3.544,1.1308,2.492,6.3007,11.8856,3.4969,3.8851,3.0298,1.5713,1.4178,4.0633,9.9293,2.8691,1.9558,11.5243,2.2183,2.102,1.8573,12.3292,1.9299,4.0122,1.0612,14.161,4.9672,7.8124,4.0994,9.8882,6.4742,7.7303,6.5241,3.984,1.632,4.6053,,,PD,0.074321,PD,,PD,0.36991,3.5462,3.5347,0.81193,8.2139,1.492,0.36653,3.532,2.867,45.7917,15.2342,217.0027,3.5057,5.3143,1.5896,1.7711,3.5707,7.2256,2.0012,2.9775,0.33701,6.2354,10.5079,6.1097,7.6587,2.0332,4.3277,1.5421,16.2748,5.0738,3.3944,1.0159,2.4695,6.7721,11.4314,2.9004,4.0888,2.915,1.4647,1.3972,3.6676,10.6159,2.6274,1.9508,10.458,2.3258,1.9989,1.7059,13.069,1.8533,3.8771,0.98215,12.5062,4.5743,7.4413,4.71,9.3159,6.1776,7.2638,6.8822,3.11,1.4372,4.3879,,,,,,,,,,,,,,,50,,,
-3122,1.9132,1.6613,,60-69y,Other,,,19.6257,4.8433,2.5366,2.3404,1.4009,ppmi,,,M,,0.43002,4.3522,4.4608,0.84057,8.7644,1.5267,0.41261,3.0523,3.2267,48.0129,17.079,215.8341,3.9361,4.603,1.6177,2.0019,3.4497,7.4805,1.9981,3.174,0.55921,6.1803,11.6854,13.2259,7.628,2.4002,4.532,1.6551,18.8263,6.2438,3.9894,1.2345,2.5356,7.0455,13.7589,3.0892,4.3923,3.8332,1.5989,1.369,4.3926,10.2298,3.2706,2.2841,11.9435,2.0589,2.6147,2.1846,13.1935,1.7479,4.1838,1.3288,14.803,5.5208,8.995,3.3561,10.8925,6.9147,7.967,7.3417,3.8246,1.4955,4.7922,,,PD,0.073865,PD,,PD,0.39557,3.6335,4.4577,0.84862,10.4969,1.6027,0.42085,3.1572,3.5103,48.648,17.5749,223.4708,3.6025,4.6276,1.6896,1.9011,3.7402,7.4883,2.0164,3.3964,0.55865,6.9341,11.3882,12.266,8.0405,2.2364,4.4825,1.6843,19.797,5.6869,3.7287,1.0227,2.6246,8.008,14.3084,2.891,4.6216,3.3805,1.6833,1.3424,3.9737,10.3755,2.9919,2.3361,10.9624,2.0003,2.4553,2.0369,13.0686,1.9034,4.1783,1.2636,14.6412,5.5636,7.902,4.1661,9.784,7.0207,7.9412,7.7896,3.5404,1.4371,4.5909,,,,,,,,,,,,,,,62,,,
-3123,1.7381,2.2503,,60-69y,Other,,,19.0551,5.4321,2.9724,2.4558,1.5733,ppmi,,,M,,0.47885,4.2647,4.7819,0.91441,9.7399,1.5505,0.43502,3.0608,3.3788,52.7102,17.2639,231.3049,4.8278,4.8525,1.8465,2.3221,4.2907,7.8939,2.4093,3.227,0.89502,6.5872,11.4283,25.8664,7.7531,2.5588,4.6671,2.091,20.2859,6.4112,4.2769,1.3822,3.3525,7.0907,14.4132,3.304,4.5404,3.5629,1.7014,1.3389,4.465,11.7876,3.2999,2.6837,14.8165,2.9611,2.6223,2.4611,14.5535,2.4129,4.6442,1.3906,15.0311,5.665,9.9944,3.563,11.3516,8.0976,7.9954,8.1852,4.235,1.9355,4.7723,,,PD,0.074011,PD,,PD,0.42639,3.7156,4.3447,0.89957,12.0879,1.5505,0.43159,3.3431,3.4087,54.153,16.6984,231.4459,4.6634,5.2784,1.8249,2.0775,4.3978,8.5198,2.268,3.4747,0.93875,6.8065,11.0701,24.4469,8.9125,2.2155,4.5325,1.9376,17.6624,5.834,3.7895,1.4968,3.3063,8.2897,14.4417,3.3777,4.9193,3.2319,1.6249,1.3761,4.0506,11.6846,3.0991,2.6135,12.0054,2.9716,2.5812,2.3438,13.8576,2.5361,4.3832,1.2842,15.462,5.5457,9.3911,4.7086,12.4481,8.9077,7.9717,8.4852,3.4354,1.752,4.5825,,,,,,,,,,,,,,,69,,,
-3124,0.95822,1.6699,,50-59y,Other,,,21.707,4.8513,2.8117,2.3768,0.98707,ppmi,,,M,,0.53319,4.6078,4.1326,0.88436,8.9449,1.77,0.42871,3.713,3.1983,50.0655,19.1113,273.9907,3.9467,5.2859,1.6559,1.9546,4.0992,7.4974,2.1355,3.2708,0.45117,6.2562,10.894,7.6123,7.8954,2.6551,4.3482,1.8906,21.329,5.9304,4.3362,1.213,3.2309,7.392,13.77,3.5114,4.6539,3.5355,1.5472,1.6314,4.3425,11.5911,3.2967,2.3175,12.0207,2.3397,2.6205,2.3386,15.5645,2.1497,4.9012,1.3257,16.0191,5.8725,8.4833,3.7222,11.9773,7.2985,9.4611,7.3217,3.7516,1.702,5.3206,,,PD,0.075799,PD,,PD,0.46779,4.167,3.9475,0.90714,10.473,1.7632,0.43586,3.6445,3.2448,49.7158,19.1388,275.3125,3.5583,5.1751,1.7141,1.9104,4.2,7.5033,2.2298,3.5633,0.67101,6.447,11.1654,7.1857,8.2317,2.3333,4.5411,1.824,19.0813,5.1751,3.9177,1.0824,2.9225,8.2498,14.2078,2.9402,4.6135,3.2867,1.6076,1.6558,3.9729,11.2768,2.9867,2.2987,10.4403,2.4755,2.1293,2.0768,12.2193,2.0495,4.5622,1.2678,15.9939,5.5502,7.831,4.6515,12.0183,7.5276,8.9333,7.5412,3.6688,1.5513,5.1217,,,,,,,,,,,,,,,57,,,
-3125,1.1526,2.4799,,-50y,Other,,,19.4166,4.7363,2.3941,2.4962,1.1794,ppmi,,,M,,0.45843,4.2019,4.2713,0.8386,9.5244,1.6788,0.40844,3.8733,3.0751,51.3603,17.5547,238.061,4.1496,4.9541,1.6768,2.0315,3.8271,8.1112,1.9175,2.9871,0.54037,7.6825,11.3366,19.2373,8.1457,2.6009,4.7647,1.7204,19.9952,6.8569,3.8247,1.2485,2.8588,6.8606,13.3974,4.482,5.1239,3.765,1.7168,1.5814,4.2693,10.7773,3.1813,2.2963,12.5177,2.613,2.6244,2.2928,14.416,2.0951,4.8141,1.2247,16.3686,5.495,9.7435,4.158,11.2441,7.5363,8.5816,8.1279,4.6113,1.7651,5.099,,,PD,0.073932,PD,,PD,0.42823,3.6644,3.9863,0.85064,11.1244,1.5997,0.417,3.5953,3.1266,52.6598,17.2323,244.8658,4.1895,5.3589,1.8135,2.1154,3.9477,8.1585,1.8658,3.0542,0.49304,6.9186,12.1246,16.535,8.7301,2.1648,4.3678,1.6599,19.3091,5.3911,3.5732,1.1194,2.5977,8.2144,14.5965,3.0981,4.9421,4.1839,1.6756,1.5718,3.9513,11.4857,2.9762,2.2833,11.3056,2.4559,2.4024,2.0124,14.0301,2.0618,4.6472,1.1277,14.9893,5.953,8.872,4.8399,11.448,7.4026,8.2907,8.4012,3.9138,1.5212,4.8995,,,,,,,,,,,,,,,46,,,
-3126,2.2181,3.3313,,60-69y,Other,,,20.5656,4.7042,2.9486,2.3212,1.6742,ppmi,,,M,,0.4605,4.3376,4.5454,0.9233,9.7386,1.5382,0.41047,3.761,3.2515,51.2819,17.1783,232.9752,4.0326,5.2293,1.8233,2.0395,3.9655,7.1177,2.2284,3.2446,0.75455,7.1935,10.9736,23.1778,7.9562,2.2971,4.596,1.7872,19.7575,6.6895,4.0672,1.0646,2.5209,7.2692,13.2063,4.0121,4.4769,3.7406,1.4214,1.322,5.0948,12.1229,3.2834,2.3962,11.8826,2.556,2.3438,2.1789,13.5765,2.335,4.6638,1.2044,15.7336,5.2068,9.8444,3.791,12.484,6.5463,8.4383,7.7401,3.9951,1.7635,4.9351,,,PD,0.08109,PD,,PD,0.42553,4.0557,4.5992,0.9449,10.6138,1.7588,0.42167,3.965,3.4808,52.6894,17.1596,238.0025,3.7939,5.4495,1.847,2.1136,4.3619,7.8656,2.2835,3.5371,0.8375,7.0872,11.7595,20.2811,8.7812,2.1462,4.4221,1.7977,19.3877,5.3689,3.8427,1.0317,2.5114,7.8021,14.0971,3.2793,4.5677,4.0484,1.4939,1.3398,4.5256,12.1109,3.1665,2.3262,10.0459,2.5789,2.3237,1.9872,12.0056,2.0461,4.4847,1.1385,15.0877,5.2172,8.291,4.3866,11.7827,7.2348,8.1237,8.0384,3.4489,1.5233,4.7456,,,,,,,,,,,,,,,64,,,
-3127,1.019,1.239,,-50y,Other,,,20.1067,4.5883,2.6052,2.1744,0.91298,ppmi,,,F,,0.48653,4.824,4.685,0.8522,10.582,1.6505,0.43806,4.1936,3.0771,49.2801,17.4949,239.9988,4.1771,5.8447,1.6407,2.2031,3.6931,7.9289,2.289,3.33,0.49833,7.5066,12.7686,10.3527,8.3215,2.7889,4.8068,1.9859,18.6533,7.6108,4.3085,1.1281,2.783,7.0611,15.3698,3.8337,4.7611,3.5697,1.8363,1.5167,4.9159,11.8504,3.3072,2.4502,12.535,2.4857,2.754,2.4796,13.4414,1.9678,4.9023,1.2859,14.1507,5.3306,9.8402,4.8732,11.9,7.2567,8.4736,7.7862,4.0486,1.7294,4.8792,,,PD,0.085161,PD,,PD,0.4309,4.1026,4.2134,0.89386,11.0393,1.8636,0.44848,4.6201,3.134,49.6465,16.6663,244.7413,3.8637,5.7771,1.7958,1.9889,4.2771,8.3479,2.4196,3.5512,0.48503,8.1048,12.6605,9.05,9.2543,2.5103,4.5845,1.9714,17.8574,5.9672,4.2652,1.229,2.9412,8.0366,15.3021,3.7546,5.0152,3.5863,1.7317,1.4758,4.4604,11.8086,3.0082,2.478,10.4094,2.3946,2.6141,2.2439,13.0784,2.1757,4.6827,1.2534,14.2675,5.2989,8.6033,4.8544,11.6411,8.2325,8.2047,7.8079,3.7149,1.6998,4.6702,,,,,,,,,,,,,,,49,,,
-3128,0.8689,1.6593,,60-69y,Other,,,20.9996,4.6971,2.7764,2.6304,1.1381,ppmi,,,F,,0.39032,3.7697,3.843,0.79322,8.8353,1.4154,0.36921,3.2023,2.6502,48.5099,16.6899,192.3652,3.7609,4.5365,1.6226,1.8301,3.2018,7.0553,1.8297,2.8098,0.3683,6.2933,10.5083,10.3407,7.2683,2.1566,3.8146,1.5613,17.8766,6.3994,3.5695,0.9102,2.1209,5.7918,12.6909,3.3239,4.2591,3.1642,1.3098,1.2984,3.9127,9.823,3.1068,2.1369,11.206,2.4438,2.1467,2.0641,11.4935,2.0257,4.1113,1.1239,12.8358,4.8154,9.2184,3.9742,10.3354,7.0374,8.0981,7.3195,3.7367,1.5085,4.5823,,,PD,0.077314,PD,,PD,0.36973,3.4641,3.6973,0.79559,10.0916,1.4984,0.393,3.2811,2.7159,48.4447,16.0499,197.0715,3.4217,4.8493,1.6886,1.7084,3.4432,7.1883,1.8017,2.9033,0.4612,6.6782,10.2749,8.3217,7.753,1.9965,3.8961,1.4621,16.6189,5.315,3.3838,1.0802,2.2934,6.3109,12.4556,2.8402,4.3242,2.9283,1.3324,1.2225,3.5505,9.9158,2.9094,2.0594,9.364,1.8612,2.0807,1.83,11.6464,1.8702,3.9566,1.0862,12.4788,4.7446,7.8878,4.3596,10.0586,6.9149,7.8505,7.5408,3.1554,1.4184,4.3749,,,,,,,,,,,,,,,60,,,
-3129,1.281,1.8713,,50-59y,Other,,,22.6476,5.3342,3.0605,2.4583,0.98863,ppmi,,,M,,0.50497,5.5908,4.6535,0.96454,8.9866,1.8195,0.44174,4.0806,3.0051,49.9473,20.3164,283.046,4.4461,5.0607,1.8329,2.0646,4.3429,7.471,2.1841,3.6517,0.5632,6.8072,11.9169,9.6564,7.9514,2.7724,5.3055,2.0492,21.4723,6.2469,4.2462,1.4046,3.2357,8.2653,14.925,4.3042,4.6162,3.3253,1.6312,1.7183,4.9266,11.7111,3.3659,2.6917,12.7725,2.6061,2.754,2.5523,14.6711,2.146,5.2239,1.3753,15.948,6.1708,10.1087,3.9487,10.6991,7.3845,9.5949,8.2654,3.9517,1.6831,5.7222,,,PD,0.088469,PD,,PD,0.42138,5.0737,4.4098,1.01,9.5308,1.8968,0.43938,3.949,3.0801,50.7608,19.2596,286.6676,4.271,5.286,1.9558,1.9764,4.806,7.5715,2.2672,4.0822,0.56907,6.8585,12.1216,8.9253,8.5906,2.481,5.2566,2.0391,20.9952,5.6472,3.9649,1.1095,3.1646,8.7542,14.2668,3.6713,4.5414,3.2865,1.6075,1.8021,4.5942,12.117,3.342,2.5304,10.1528,2.7132,2.4694,2.237,12.9037,2.2109,5.0191,1.2232,14.8503,5.8225,7.7621,5.0957,10.1256,7.4721,9.2825,8.8211,3.4285,1.6634,5.5089,,,,,,,,,,,,,,,56,,,
-3130,0.8984,1.9141,,-50y,Other,,,21.021,4.8496,3.0958,2.5353,1.0582,ppmi,,,M,,0.47167,4.7765,4.5442,1.0716,11.321,1.6279,0.4492,4.4783,3.1967,52.7958,17.3614,245.5342,4.9785,6.1114,1.9619,2.2042,3.8469,8.4449,2.3271,3.4313,0.54228,7.9945,13.5897,7.461,9.6713,2.6269,5.4692,2.0091,20.4432,8.3624,4.2957,1.3182,2.7791,7.4851,16.3978,4.1668,5.3903,3.3595,1.6505,1.4541,5.5628,14.3571,3.7643,2.5683,15.8343,3.2452,2.6934,2.5079,13.7512,2.7108,4.9886,1.371,15.1539,5.7574,11.1768,4.8813,14.3212,8.2076,9.1936,8.3377,4.2081,1.9669,5.2745,,,PD,0.089589,PD,,PD,0.42681,4.368,4.4065,1.0636,11.9208,1.7527,0.46066,4.475,3.2716,54.0578,17.174,253.4855,4.6681,6.3736,2.037,2.0945,4.0809,9.4521,2.334,3.6953,0.43357,8.5921,14.3643,6.56,10.3504,2.4009,5.249,1.9521,18.8721,6.4472,4.0549,1.2562,2.7401,8.3174,16.4942,3.3506,5.4918,3.6618,1.6161,1.4904,5.292,14.3918,3.6927,2.5812,14.4812,3.0586,2.5564,2.3482,14.4958,2.3968,4.7848,1.3233,15.4696,5.9637,9.8,5.2695,13.9509,8.3852,9.1006,8.8817,3.4525,1.8001,5.1414,,,,,,,,,,,,,,,44,,,
-3131,1.6729,2.4157,,70-79y,Other,,,23.7805,5.0355,2.6659,2.4311,1.7072,ppmi,,,M,,0.48977,4.0219,4.4521,0.78959,8.7621,1.4418,0.39678,3.8962,3.4975,49.6354,20.4238,257.6211,4.0221,4.8054,1.5218,2.0322,3.7762,7.0601,2.1932,2.9275,0.63807,6.9247,10.4145,28.99,8.1417,2.2218,4.0838,1.7679,18.2191,6.2381,4.1012,1.0693,2.5966,6.5637,12.2638,4.3349,4.8829,3.2864,1.352,1.7328,4.3633,11.0538,3.1304,2.3969,10.3251,2.3197,2.4216,2.1843,11.5781,1.8305,4.3528,1.3737,13.8109,5.0364,7.9541,3.7132,11.3205,6.0493,9.1297,7.295,3.7642,1.704,5.6328,,,PD,0.090388,PD,,PD,0.45392,3.3501,4.2201,0.81938,8.9941,1.4831,0.40182,3.8351,3.6427,50.857,19.8766,262.6667,3.8838,5.0787,1.5645,1.8675,3.9204,7.6091,2.0387,3.2193,0.67826,6.893,11.0137,24.6826,9.2525,2.0298,4.1277,1.7619,16.761,4.9348,3.5866,1.1348,2.4766,7.6888,12.7086,3.3259,4.6264,3.3354,1.4276,1.7592,4.1428,10.7968,3.0624,2.3586,9.236,2.2402,2.3473,1.8936,11.1142,1.6874,4.1226,1.2162,12.8955,5.0551,6.67,4.5734,9.5303,5.9947,8.8242,7.5109,3.2114,1.4403,5.4525,,,,,,,,,,,,,,,71,,,
-3132,0.95694,1.8165,,50-59y,Other,,,19.5542,4.2205,2.5161,2.0401,0.8883,ppmi,,,M,,0.47423,4.3282,4.1705,0.90417,9.2299,1.6087,0.40892,3.0762,2.875,45.2878,16.772,239.5827,3.8781,4.6663,1.803,2.1792,3.6665,7.215,1.9046,3.2743,0.50144,6.0335,10.864,7.3917,7.6988,2.633,4.7329,1.769,18.5205,6.4451,3.8359,1.4065,2.7594,6.5228,13.6868,3.294,4.3561,3.5958,1.6601,1.4057,4.7795,11.5019,3.3074,2.1843,12.7986,2.4329,2.5482,2.1838,13.5971,1.8555,4.8146,1.2474,14.5025,4.8553,9.3334,3.8007,11.4878,7.0877,8.0335,7.9043,4.4585,1.6305,4.8787,,,PD,0.07934,PD,,PD,0.40922,3.7831,3.8173,0.89906,10.5124,1.5839,0.41037,3.0582,2.9827,44.7649,16.226,245.9409,4.1276,5.232,1.7867,1.8909,3.6164,7.0983,2.0265,3.518,0.61039,7.0351,10.7983,6.8096,8.0419,2.1806,4.5204,1.7083,17.5534,5.948,3.7906,1.1373,2.7483,7.6344,13.8147,3.3155,4.5415,3.3072,1.535,1.4397,4.1676,11.016,2.9455,2.1684,11.096,2.3217,2.4223,1.9136,13.591,1.8965,4.5128,1.2027,14.2955,5.2806,8.272,4.8341,11.7461,7.0576,7.9048,8.1194,3.3207,1.5022,4.7389,,,,,,,,,,,,,,,50,,,
-3134,0.81405,1.343,,-50y,Other,,,21.5,4.9743,2.9134,2.331,0.89701,ppmi,,,M,,0.55068,4.8181,4.5222,0.98711,9.4609,1.6322,0.4385,4.0437,3.4903,49.5937,19.071,265.2521,3.8121,4.8579,1.8607,1.8766,3.8831,7.3199,2.3308,3.3072,0.35135,7.1949,10.7264,5.7813,8.2659,2.5346,4.9599,2.034,20.0801,6.5999,4.355,1.015,2.3993,7.4693,14.385,3.8296,4.738,3.0785,1.5853,1.6906,4.7934,11.6061,3.3327,2.3224,12.2086,2.4684,2.5946,2.4698,13.3591,2.1639,5.0355,1.2474,13.9623,5.0977,9.4562,3.584,10.7044,7.9101,9.5914,8.0078,4.2219,1.7319,5.5263,,,PD,0.077519,PD,,PD,0.48198,3.8285,4.0939,1.0376,11.131,1.7404,0.44791,3.7558,3.5338,51.1741,18.7457,267.1616,3.8027,5.2665,2.021,1.9882,4.3021,7.7212,2.1711,3.7053,0.56804,6.8092,10.7999,5.2919,8.744,2.211,4.656,1.8383,18.3121,5.2582,3.9113,0.9958,2.485,8.4415,14.3514,3.1482,4.8494,3.4811,1.5996,1.6335,4.63,11.3193,3.2576,2.4618,10.0952,2.4141,2.2907,2.345,13.2814,2.1222,4.7087,1.0929,14.2039,5.4602,8.2395,4.0683,11.3295,8.4475,9.185,8.7786,3.8565,1.7118,5.3389,,,,,,,,,,,,,,,39,,,
-3150,0.80039,1.519,,50-59y,Other,,,16.962,4.4792,2.6889,2.2883,1.032,ppmi,,,F,,0.40361,4.3598,3.9255,0.84087,9.5388,1.5541,0.3686,2.8818,2.5849,45.8861,13.9401,188.5181,3.8027,4.936,1.712,1.8664,3.4394,6.8757,2.0747,2.9848,0.36325,6.4515,10.9143,7.6994,7.7046,2.3359,5.041,1.7781,17.666,6.6143,3.933,0.91013,2.4085,6.635,13.5708,3.3033,4.1416,3.4237,1.4503,1.353,4.2506,10.9438,3.1997,2.2303,10.585,2.1641,2.4275,2.158,10.4417,1.8017,3.8682,1.0919,13.4008,4.8812,9.0557,3.8031,11.1752,6.9037,7.7019,7.4578,3.7828,1.5512,4.3491,,,PD,0.077945,PD,,PD,0.35721,3.6591,3.7112,0.87256,11.1374,1.5943,0.37783,2.8945,2.7319,46.0877,13.4954,190.8785,3.768,5.4704,1.8361,2.0545,3.4285,7.1833,2.0269,3.2093,0.46052,6.5496,10.5813,6.406,7.986,2.0786,4.7486,1.6236,17.5376,5.2354,3.6292,0.89075,2.253,7.2921,13.2783,2.9653,4.1531,3.9122,1.4051,1.297,3.9605,11.0405,3.0025,2.3427,10.0313,2.2542,2.0206,2.0808,11.0104,1.9596,3.6866,1.0633,13.4714,5.3045,8.6017,4.5094,11.1289,7.3817,7.511,7.5109,3.5892,1.6041,4.1723,,,,,,,,,,,,,,,57,,,
-3151,0.85079,1.4167,,50-59y,Other,,,16.5866,3.9696,2.2482,1.8874,0.95114,ppmi,,,M,,0.42506,4.2647,3.893,0.88779,9.1434,1.4374,0.36608,2.7921,2.9328,42.4224,13.7245,223.998,3.6812,4.1895,1.6796,1.8964,3.563,6.8759,2.0315,3.1908,0.39535,6.1343,10.9881,10.5702,7.1504,2.4353,4.5412,1.6997,18.9989,6.3505,3.8485,1.0415,2.7587,6.6747,14.1278,3.2649,4.063,3.6703,1.478,1.321,4.4168,10.5386,3.1836,2.0691,12.5258,2.3447,2.3385,2.0385,13.1737,1.9398,4.0435,1.0627,14.9598,5.0783,9.148,3.5679,10.3449,7.1884,8.0232,8.0032,3.9079,1.4281,4.3953,,,,0.070595,CN,,HC,0.36887,3.4925,3.5989,0.88805,11.5811,1.7248,0.37535,2.9405,3.0193,42.3452,13.332,225.5102,3.5444,4.4367,1.7717,1.549,3.7251,7.4768,2.0686,3.4143,0.44342,6.9591,12.0993,9.7234,7.6874,2.1812,4.5275,1.6387,17.7666,5.1265,3.8421,1.0196,2.5159,7.4385,14.9175,3.0237,4.3427,3.5442,1.3992,1.2804,3.9932,10.1836,3.0759,2.0862,10.6928,2.06,2.2192,1.8015,13.33,1.8595,3.9459,1.0447,15.1085,4.7723,8.7118,4.3212,10.5655,7.6801,7.8628,7.4222,3.2421,1.3168,4.1871,,,,,,,,,,,,,,,58,,,
-3154,1.4327,1.5395,,70-79y,Other,,,17.906,4.2911,2.4947,2.174,0.98163,ppmi,,,F,,0.45316,4.794,4.3275,0.90625,9.5313,1.5832,0.38141,3.4816,2.9893,44.2825,14.1056,215.4722,3.967,5.1837,1.7516,2.0118,3.4792,7.6885,2.1119,3.2982,0.51079,6.8682,11.8731,13.7176,8.1326,2.3601,4.6181,1.8767,19.9684,6.7936,4.0257,1.2369,2.9843,7.4101,14.1897,3.6084,4.4859,2.9253,1.5149,1.304,4.5707,11.3732,3.4325,2.3469,12.8196,2.6655,2.427,2.3011,13.2912,2.0084,3.8909,1.2089,14.6121,5.6495,9.8788,4.1118,13.285,7.2584,8.1531,7.9046,3.9471,1.6033,4.506,,,PD,0.078988,PD,,PD,0.408,4.4656,4.0812,0.89471,11.5342,1.7024,0.39142,3.8075,3.0043,45.1167,13.9888,217.7962,4.2319,5.6733,1.6729,1.9172,3.9502,7.7839,1.9672,3.4705,0.42057,7.5022,11.8287,12.5536,8.6397,2.1595,4.776,1.7618,18.8631,6.1648,3.7109,1.385,3.0048,8.1095,14.82,3.1898,4.7821,3.3865,1.5248,1.3159,4.0391,11.3464,2.9965,2.2141,11.9972,2.3361,2.3222,1.9881,12.7201,1.9119,3.6887,1.177,15.122,5.1029,8.6415,5.0499,11.7611,7.7612,8.0204,8.0108,3.286,1.5208,4.2555,,,,,,,,,,,,,,,73,,,
-3156,2.0259,1.9284,,70-79y,Other,,,17.8122,4.2917,2.6486,2.151,2.145,ppmi,,,M,,0.4241,4.6086,4.4251,0.86599,9.377,1.4131,0.38363,2.7773,3.235,43.6126,14.0185,196.0676,4.1945,4.0996,1.6877,1.8432,3.6024,6.9776,2.0118,2.9024,1.0378,6.1169,10.5039,39.136,6.8285,2.139,4.7337,1.74,18.3859,6.6928,3.7506,1.0754,2.6518,6.9863,12.7842,3.3134,3.8852,3.1012,1.4036,1.4475,4.2936,9.8174,3.0819,2.6143,10.6947,2.4014,2.2345,2.6496,12.689,2.1136,4.1609,1.2665,13.9979,4.8882,8.0562,3.8675,9.538,7.3971,7.6558,6.8575,3.5781,1.7022,4.6871,,,,0.073238,CN,,HC,0.35624,3.9659,4.2012,0.829,10.8329,1.4615,0.3871,2.8704,3.3678,43.3311,13.7912,204.9799,4.182,4.2014,1.5762,2.0513,3.8098,7.1024,2.1431,3.214,0.958,6.0722,11.251,28.251,7.7126,1.9926,4.2661,1.7595,17.285,5.0295,3.4734,0.98482,2.4848,7.6196,13.6268,2.875,3.8345,3.4791,1.5056,1.4066,3.9741,9.5595,2.7358,2.6498,10.3936,2.5432,1.996,2.3178,12.1785,2.231,4.1047,1.2043,14.5332,5.2203,8.3283,4.0556,10.3419,7.8247,7.5822,7.1166,3.3371,1.7959,4.328,,,,,,,,,,,,,,,70,,,
-3157,0.99654,1.5299,,60-69y,Other,,,14.76,4.4975,2.2866,2.1456,1.1895,ppmi,,,F,,0.37969,3.9796,4,0.76003,8.2411,1.3345,0.34957,2.7908,2.3724,42.0647,12.4414,170.075,3.561,3.8734,1.4733,2.0043,3.0063,6.9905,1.805,2.6207,0.36666,5.6264,10.4006,10.6284,6.7199,2.2279,3.7224,1.6037,16.6032,5.7356,3.47,1.1942,2.7583,6.1605,12.4403,2.7596,3.8715,3.2049,1.563,1.042,3.7349,9.5913,2.7234,1.9833,11.9373,1.7795,2.288,2.1879,13.0309,1.6018,3.9002,1.0738,13.0289,5.0016,7.48,3.3047,10.3562,6.7749,6.8513,7.7918,3.4145,1.3947,3.7498,,,,0.063483,CN,,HC,0.34479,3.8251,3.677,0.72494,9.3802,1.5896,0.34687,2.8538,2.456,42.0621,12.0017,174.3666,3.3372,4.1222,1.5293,1.8199,3.348,6.8228,1.9765,2.744,0.42537,6.0619,10.1541,7.825,7.2863,1.9958,3.9891,1.595,16.6049,4.6914,3.6031,0.97251,2.2452,6.8328,12.7152,2.6936,3.9868,3.322,1.4206,1.044,3.4468,9.3015,2.5916,1.816,10.6049,1.7121,2.0926,1.7204,11.1219,1.6733,3.7513,1.0549,12.7279,4.765,7.5651,4.0028,10.5998,7.2457,6.6567,7.3822,3.189,1.2073,3.6177,,,,,,,,,,,,,,,64,,,
-3160,2.9127,3.0515,,+80y,Other,,,19.2445,5.2125,2.6461,2.4108,2.732,ppmi,,,M,,0.43981,5.2804,4.5167,0.85274,9.3151,1.4869,0.39331,3.3228,3.1844,47.1547,15.4782,225.6543,4.0713,4.8883,1.5484,1.9906,3.5194,7.8527,2.0913,3.0237,1.3823,6.3908,11.4341,47.8738,8.321,2.3297,4.3501,1.9328,17.2535,6.8354,3.7218,1.1641,2.5095,7.436,12.7551,3.7791,4.327,3.2814,1.4554,1.6116,4.2228,10.2725,3.2405,2.6125,11.9765,2.3151,2.2958,2.5541,12.4812,2.2176,4.1786,1.397,13.859,5.309,8.0155,3.528,10.1031,7.0166,8.1317,7.4322,3.7431,1.714,5.0135,,,,0.064185,CN,,HC,0.38492,4.6436,4.1375,0.84744,10.5606,1.7509,0.4033,3.5622,3.3887,47.1233,15.336,232.4103,3.7087,5.1657,1.5887,1.79,3.8091,8.0911,2.0893,3.2161,1.2135,7.2212,11.3716,44.9136,8.7878,2.156,4.1877,1.9926,16.5204,5.6381,3.5897,1.2071,2.6349,7.8081,13.3617,3.4375,4.864,2.9078,1.3387,1.5863,3.8273,11.0534,2.858,2.6607,9.2811,2.2527,2.0379,2.3293,13.0665,1.9668,4.2493,1.2691,13.9909,5.3126,7.747,4.1368,10.1093,7.2476,8.2817,7.4894,3.3212,1.5466,4.8705,,,,,,,,,,,,,,,80,,,
-3161,1.1919,3.1583,,-50y,Other,,,20.011,5.0818,2.782,2.3801,1.6801,ppmi,,,M,,0.50996,5.3443,4.4239,0.9863,9.6448,1.6474,0.419,3.6403,3.8028,55.5255,17.7464,237.1598,4.4853,5.0663,1.8372,2.1395,3.8452,8.1427,2.2467,3.5901,0.62463,7.4176,11.8587,18.2726,8.3042,2.7614,5.2184,2.0324,20.0497,6.1759,4.2045,1.3458,2.9043,7.4737,14.5036,3.8111,5.2235,3.5553,1.7723,1.5532,4.8362,11.6278,3.4681,2.4814,12.0511,2.9234,2.8676,2.3361,12.9826,2.7938,4.3148,1.3259,15.1947,5.7969,9.5179,3.8771,11.1358,8.256,8.5898,7.9404,4.8831,2.0163,5.0695,,,,0.077655,CN,,HC,0.46374,4.3402,4.2953,0.96322,11.7986,1.8516,0.42114,3.7224,3.9294,57.3077,17.3123,240.1796,4.566,5.2812,1.8591,2.0952,4.1471,8.5205,2.1279,3.6436,0.57184,7.5877,12.1435,16.0717,9.0664,2.523,4.8906,1.9428,20.0422,5.89,3.9136,1.2755,2.9132,8.6351,15.2957,3.3564,4.8752,3.5913,1.6843,1.543,4.6616,11.8898,3.2481,2.2724,10.4188,2.679,2.5944,2.1063,13.6536,2.3634,4.2011,1.2511,16.0961,5.6376,8.7124,4.641,11.5275,8.1161,8.1097,8.0675,3.8071,1.7271,4.8177,,,,,,,,,,,,,,,45,,,
-3165,1.0807,1.2622,,50-59y,Other,,,17.6445,4.4689,2.439,2.0949,1.0446,ppmi,,,F,,0.44775,4.348,4.1532,0.8634,9.5278,1.6009,0.34732,3.3165,2.9945,43.0856,14.7351,225.9342,3.7364,4.6931,1.6769,1.9837,3.4644,7.4041,1.8123,3.0051,0.36033,6.2877,11.0047,9.5091,7.8301,2.5839,4.3447,1.7411,18.1184,6.3302,3.9146,1.2245,2.4065,6.5568,13.5452,3.4204,4.1942,3.8203,1.6632,1.4839,4.5416,11.0877,3.2729,2.302,12.4341,2.2369,2.6461,2.2432,12.7197,1.8087,4.2337,1.007,14.9752,4.9014,8.3063,3.8209,10.2949,7.1996,7.9649,7.8776,4.2717,1.471,4.5918,,,,0.071382,CN,,HC,0.40045,3.8894,3.7804,0.86373,10.0598,1.8317,0.36879,3.4245,3.1066,43.8051,14.6393,230.0943,3.8394,4.3157,1.7333,1.7703,3.7958,7.6575,2.0862,3.3125,0.44037,6.8742,11.5227,7.9437,7.9847,2.2795,4.4274,1.7153,18.3196,5.6796,3.8579,1.0085,2.4564,7.3216,14.1266,3.121,4.26,3.2485,1.5269,1.5245,3.9854,10.4012,2.9429,2.3865,11.62,1.9801,2.2613,2.1095,13.9021,1.646,4.1766,1.0567,14.6075,5.1205,7.7058,4.3611,10.4188,7.0178,7.7075,7.7103,3.5163,1.4631,4.3785,,,,,,,,,,,,,,,59,,,
-3166,1.0807,1.6578,,50-59y,Other,,,18.3694,5.6486,2.7201,2.3106,1.3517,ppmi,,,M,,0.45536,4.9427,4.6559,0.89637,9.1655,1.6719,0.37928,4.0148,2.7761,48.6678,15.9866,239.8249,5.2507,5.0566,1.6827,2.2151,3.9609,8.4548,2.1867,3.0958,0.44919,7.9195,12.7431,12.4486,8.7849,2.5625,4.8876,1.9925,20.0461,6.5503,4.127,1.5258,3.1632,7.2496,15.4644,4.7998,5.1084,3.1828,1.7097,1.3749,5.0473,12.0233,3.2591,2.6585,13.5876,3.1132,2.5285,2.3733,14.3854,2.8366,4.171,1.2206,15.2461,5.5922,11.1693,4.0807,11.3086,8.242,8.3107,8.1892,4.0731,2.032,4.5097,,,PD,0.070456,PD,,PD,0.38105,4.113,4.4231,0.90773,11.5108,1.9074,0.38381,4.3113,2.8049,48.6226,16.2085,241.9388,4.6108,5.9216,1.7626,2.1703,3.9433,8.1358,2.145,3.3272,0.6906,8.5192,13.5349,10.1212,9.3953,2.3449,4.7741,1.9089,18.4982,6.0819,3.846,1.1282,2.6829,8.4191,15.7412,4.4857,4.9706,3.8129,1.654,1.3417,4.6361,12.6758,3.0103,2.6022,11.4435,2.7983,2.3128,2.3243,13.0162,2.4736,4.1314,1.1643,15.4882,5.5747,9.192,4.8698,11.7503,8.0997,8.0623,8.7089,3.7812,1.8931,4.2501,,,,,,,,,,,,,,,59,,,
-3167,0.73397,1.7953,,50-59y,Other,,,19.402,4.5465,2.5742,2.149,0.90038,ppmi,,,F,,0.46835,4.9137,3.8275,0.89153,10.2307,1.6684,0.36899,3.2956,3.0852,48.9581,16.3048,215.2042,3.7842,4.795,1.7475,1.718,3.7508,7.7851,2.1836,3.1647,0.31942,7.0259,10.789,8.8777,7.5338,2.5162,4.9838,1.9835,21.0771,6.4724,4.1298,1.1864,2.6138,7.1801,13.4553,3.5848,4.6179,3.0852,1.473,1.4346,4.6073,11.1314,3.2999,2.1094,12.4446,2.4949,2.5893,2.1708,13.8444,2.1294,3.9914,1.1114,15.3697,5.3836,9.5095,4.1741,11.6357,7.2636,8.3918,7.6846,3.772,1.4436,4.7494,,,PD,0.065707,PD,,PD,0.42983,4.0654,3.6203,0.94607,11.6779,1.9776,0.38479,2.9739,3.2815,48.6564,15.6758,220.6834,4.102,4.7735,1.8792,1.9756,4.1276,7.7336,2.2848,3.455,0.51661,6.8629,11.3001,8.5865,8.0546,2.248,4.6855,2.002,20.9287,5.5523,4.1255,1.0147,2.4154,8.4934,14.2555,2.8697,4.2831,3.6395,1.4285,1.3909,4.2992,10.9202,3.0719,2.0496,11.2807,2.0316,2.1955,2.004,13.504,1.7863,3.9087,1.1249,15.2781,5.5559,8.3333,4.4505,12.0914,7.4326,8.2298,7.8126,3.8098,1.4014,4.5545,,,,,,,,,,,,,,,59,,,
-3168,1.0503,1.4827,,60-69y,Other,,,17.8069,4.4262,2.5403,2.1214,1.4331,ppmi,,,F,,0.44962,4.7522,4.1913,0.78875,10.6685,1.7387,0.39351,3.0393,2.7327,43.1859,15.6016,217.6146,4.0384,4.4511,1.5628,1.9738,3.905,7.4384,2.2323,2.9169,0.28501,7.0075,11.7219,16.0965,7.1187,2.7624,4.5702,2.0116,19.2922,7.0193,4.3879,1.0766,2.7166,7.1411,15.4167,3.3058,4.0421,3.2224,1.7654,1.411,4.136,10.5451,3.0834,2.4032,11.1519,2.5379,2.7347,2.2799,12.5987,2.2213,3.7572,1.3384,14.8138,5.1119,9.1722,3.723,10.6033,8.3681,8.104,7.53,3.9285,1.5934,4.6511,,,PD,0.081193,PD,,PD,0.39604,4.6529,3.8507,0.80705,11.5461,1.9935,0.39809,3.0864,2.8292,44.2981,15.0106,216.6179,4.1144,4.5995,1.7031,1.8765,3.9418,7.9627,2.2905,3.1109,0.31599,6.5238,11.9237,11.9945,7.4251,2.5798,4.5109,1.951,18.5462,5.2745,4.0607,1.1362,2.7646,7.5891,14.4199,2.8697,4.0861,3.3603,1.6822,1.4234,3.8384,10.5437,2.7411,2.3916,10.606,2.0948,2.4711,2.2242,13.1517,1.9377,3.8042,1.2275,13.4763,4.9706,7.7661,4.2111,11.2707,7.5743,7.803,7.7805,3.5795,1.6747,4.3943,,,,,,,,,,,,,,,63,,,
-3169,1.0463,2.1815,,50-59y,Other,,,20.0092,5.3388,2.9181,2.4294,1.1549,ppmi,,,M,,0.45083,4.6257,4.3335,0.90594,10.0147,1.7005,0.40198,3.7517,2.9033,50.2847,17.1633,230.5796,4.1707,5.2031,1.7605,2.086,3.9708,7.5433,2.272,3.2689,0.53194,7.5043,11.3633,11.7432,9.1515,2.6505,5.2035,1.9822,21.4747,7.0533,4.3005,1.2442,2.9479,7.7521,13.6093,4.5532,5.2208,3.6563,1.6698,1.5185,5.157,11.3207,3.5529,2.2956,11.8293,2.3051,2.6657,2.2361,14.4186,2.2697,4.1018,1.1969,16.987,6.0288,9.0887,4.194,10.3871,7.1114,8.694,7.8193,4.5386,1.7984,4.9078,,,,0.080858,CN,,HC,0.41113,4.0161,4.1938,0.87444,10.0918,1.7196,0.40502,3.8414,2.9756,51.556,16.7597,238.5174,3.7842,6.005,1.7813,2.2477,4.1668,7.637,2.2595,3.3199,0.4667,7.5713,11.462,8.2525,9.0221,2.3976,5.1216,1.9093,20.37,5.7898,3.8021,1.2183,2.7573,9.1004,14.5919,3.9159,5.1486,3.862,1.692,1.4504,4.5393,10.9757,3.1961,2.2889,11.731,1.9014,2.6044,2.0919,14.7009,1.9847,4.0662,1.1287,16.8253,6.116,8.263,5.7429,10.676,7.6252,8.3841,8.428,4.118,1.5877,4.6704,,,,,,,,,,,,,,,57,,,
-3171,1.2718,1.5713,,60-69y,Other,,,19.5901,5.3182,2.8109,2.395,0.99628,ppmi,,,M,,0.42584,4.5873,4.1517,0.95841,8.4368,1.4908,0.38261,3.0918,2.9452,50.3865,16.6657,226.7997,4.2021,4.9384,1.834,2.0508,3.5164,7.9214,1.8362,3.3563,0.60449,6.3698,12.5646,12.2234,7.5302,2.4916,4.9307,1.7713,19.5659,5.9804,3.8373,1.1222,2.5438,7.1695,15.225,3.2042,4.4023,3.6099,1.6035,1.4602,4.613,10.814,3.3828,2.1285,11.9067,2.719,2.7418,2.411,14.1188,2.2916,4.1466,1.1291,14.575,5.5213,8.7282,3.814,11.0761,7.0712,8.3269,7.9692,4.0008,1.8018,4.8254,,,,0.07739,CN,,HC,0.37688,4.4119,3.9462,0.94664,10.9557,1.7362,0.39811,3.1922,3.0771,50.5636,16.2007,231.0108,4.1679,4.6516,1.8125,2.1765,3.6159,8.2003,1.8471,3.6469,0.58998,7.3094,12.2296,11.3615,8.056,2.208,4.651,1.6824,18.8707,5.4983,3.6582,1.1078,2.5045,7.3361,14.8227,3.0845,4.4785,3.7789,1.494,1.3871,4.3111,11.2611,3.0686,2.0616,10.3393,2.1073,2.3926,1.9663,13.1773,1.8977,3.9989,1.1106,15.0722,5.6804,7.9871,4.1699,11.9162,6.9135,8.3559,7.9748,3.6226,1.467,4.552,,,,,,,,,,,,,,,61,,,
-3172,1.5883,1.7572,,70-79y,Other,,,18.7786,4.3379,2.4042,2.2804,1.4566,ppmi,,,M,,0.44476,4.7436,4.2206,0.83124,8.7226,1.5433,0.38158,3.0361,3.2891,44.4926,15.7568,227.2454,4.1119,4.3837,1.5382,1.9983,3.3043,7.0489,1.8198,3.1384,0.83698,6.5712,10.9879,20.2599,7.065,2.4193,4.7345,1.7707,18.0428,5.5627,3.7542,1.1542,2.7602,7.7401,13.5609,3.5269,4.2058,3.3431,1.6093,1.567,4.1851,9.7903,2.9799,2.369,11.266,2.236,2.5416,2.3189,13.7888,1.9713,4.4586,1.1651,14.1049,5.8373,8.5877,3.2825,10.2418,7.2966,8.447,7.4547,3.7743,1.7114,4.8383,,,,0.082486,CN,,HC,0.42111,4.4701,3.9943,0.79501,9.6891,1.727,0.3905,3.1621,3.4771,43.9072,15.3538,229.8773,3.6968,4.8175,1.5295,2.0009,3.7382,7.0952,1.8571,3.3121,0.77103,6.6551,11.841,16.2295,7.6292,2.3783,4.7044,1.7958,17.5747,4.9008,3.61,1.0437,2.6393,8.0497,14.9081,2.9019,4.2854,3.3924,1.639,1.5478,3.6859,9.8854,2.7889,2.1844,10.0853,2.2624,2.4109,1.8891,13.1753,1.9599,4.3911,1.1159,13.7493,5.6644,7.6196,4.1177,9.4498,7.4798,8.1427,7.3406,3.6685,1.4443,4.5532,,,,,,,,,,,,,,,70,,,
-3173,0.93957,2.0538,,60-69y,Other,,,20.7197,5.4595,3.0378,2.4092,1.1296,ppmi,,,F,,0.49965,4.5623,3.8508,0.87352,8.7932,1.5609,0.39137,2.9318,3.3784,50.5985,16.7708,213.2815,3.8981,4.2003,1.7279,1.7933,3.4947,6.9651,2.0855,3.2914,0.47427,5.4434,10.3817,8.033,7.1828,2.3264,4.5659,1.7937,18.2179,5.0262,3.8496,1.1149,2.5915,7.0138,12.6826,3.0666,4.2014,3.1811,1.4152,1.5593,4.5433,11.1661,3.1744,2.048,11.5636,2.4237,2.3747,1.9824,12.9682,2.0635,4.6972,1.0911,15.4149,5.2585,9.8192,3.3149,11.4637,7.5002,8.6445,7.8229,3.4611,1.523,5.0795,,,PD,0.075725,PD,,PD,0.43429,3.683,4.0399,0.83401,11.0876,1.7101,0.39277,3.0992,3.507,50.5661,16.477,220.1491,4.0541,3.9646,1.7274,1.858,3.5926,7.5174,2.0353,3.4987,0.42227,6.3731,10.652,7.2981,7.9705,2.0665,4.2723,1.7482,18.1144,5.7772,3.6917,1.0571,2.6061,7.9997,12.5017,2.706,4.3922,3.1305,1.3522,1.5478,4.2665,10.776,2.9615,2.2183,9.2409,2.2835,2.2211,1.9573,13.7435,2.1272,4.5698,1.0938,15.8312,5.4663,7.4575,4.0856,10.1338,6.9701,8.4852,7.5624,3.095,1.4968,4.9143,,,,,,,,,,,,,,,62,,,
-3174,0.9314,1.2954,,50-59y,Other,,,21.13,5.2853,2.8465,2.2977,1.1076,ppmi,,,M,,0.45201,4.3763,4.5114,0.89626,9.1897,1.5841,0.40519,3.7639,3.1965,50.2958,18.8432,244.4403,4.4208,4.9117,1.7174,2.1514,3.4731,7.4298,2.0836,3.3925,0.46053,6.6123,11.1034,13.9699,7.7906,2.5148,4.2928,1.8074,17.8418,6.1765,4.03,1.1688,2.6253,6.4512,13.621,3.7555,4.5589,3.3284,1.6881,1.6892,4.0738,11.0624,3.2231,2.4161,12.3099,2.3133,2.5287,2.3125,12.9988,2.1591,4.6342,1.2201,14.7824,5.153,8.8179,3.7917,10.4349,6.9548,9.2925,7.6964,3.9856,1.883,5.4505,,,PD,0.08154,PD,,PD,0.38943,4.1862,3.9929,0.90443,10.4895,1.709,0.40503,3.69,3.3359,50.5581,18.2333,249.877,3.8836,5.4653,1.7389,1.9635,3.8173,8.0142,2.2893,3.6981,1.0071,6.6375,11.0285,13.2065,8.3963,2.2359,4.393,1.7456,18.5517,4.8323,4.0432,0.89524,2.7065,7.1656,13.5949,3.4124,4.5059,3.3607,1.5992,1.6576,3.7473,11.0028,2.9488,2.3535,10.6266,2.3907,2.1993,1.9621,13.2702,1.9602,4.4892,1.1363,13.8346,4.9298,7.7375,4.8431,10.6783,7.2984,8.8694,7.566,3.8643,1.5455,5.2103,,,,,,,,,,,,,,,51,,,
-3175,0.95464,1.6171,,50-59y,Other,,,18.1469,5.0851,2.493,2.0817,0.92915,ppmi,,,F,,0.4711,4.8686,4.6843,0.88538,9.6155,1.7573,0.40429,3.1652,2.7158,47.0855,14.4292,201.5768,4.0421,5.0175,1.6386,2.2245,3.6146,7.5494,2.2189,3.0076,0.35098,6.6647,11.7136,5.9589,7.6235,2.536,5.0359,1.9905,19.4603,7.0162,4.2426,1.178,2.7847,7.2588,13.3866,3.5778,4.3849,4.038,1.6554,1.3026,4.5662,10.4782,3.1806,2.3698,11.9177,2.3661,2.6515,2.3686,13.009,2.0835,4.2847,1.245,14.8235,5.6165,9.748,3.9844,10.5757,7.2361,8.1427,7.6784,4.5381,1.5108,4.4867,,,PD,0.07453,PD,,PD,0.42523,4.4537,4.2433,0.85927,9.7156,1.9012,0.41688,3.2038,2.7885,47.7404,14.0516,204.5005,3.7777,5.1859,1.6472,2.1807,3.9202,8.0132,2.2499,3.2212,0.44412,7.1367,11.4418,5.3216,8.7765,2.4169,5.0818,2.0114,19.4545,6.0503,3.9363,1.354,3.0801,7.9407,13.271,3.198,4.4783,3.9587,1.6759,1.3384,4.0044,10.8857,2.9569,2.1472,10.9566,2.1071,2.3992,1.912,12.7217,1.7576,4.2518,1.192,15.1253,5.5359,7.7263,4.8343,10.7573,6.8258,7.813,7.365,3.6673,1.2957,4.3084,,,,,,,,,,,,,,,57,,,
-3176,1.4582,1.5309,,60-69y,Other,,,21.9775,5.9488,3.2539,2.7011,1.2631,ppmi,,,M,,0.58571,5.5278,5.0414,1.0744,10.9873,1.7932,0.45165,3.8408,3.9641,60.4682,19.1818,252.9815,4.2589,5.7889,2.0199,2.0891,4.1883,8.7718,2.3245,3.9304,0.51363,6.9991,13.113,13.0448,9.6533,2.7836,5.8144,2.1972,21.6572,6.7132,4.3595,1.6871,3.5576,8.1944,16.8337,4.0206,5.0127,3.6051,1.7315,1.7229,5.3292,12.174,3.9028,2.6441,14.6331,2.7732,2.8268,2.4932,16.4167,2.595,5.0722,1.335,18.1511,6.1059,9.7564,3.9127,12.6671,8.6924,9.7777,8.7129,4.2802,1.8148,5.5125,,,PD,0.08516,PD,,PD,0.55442,4.9192,4.9895,1.0596,12.217,1.8514,0.48846,3.8515,4.1006,60.5667,18.5156,258.8658,4.0634,6.1465,2.1044,2.0458,4.6569,9.1687,2.3702,4.2252,0.69348,7.7196,13.2427,11.7341,10.4317,2.4107,5.6807,2.1836,21.3766,6.1572,4.1421,1.5747,3.0194,9.0292,16.0974,3.5265,5.2328,3.337,1.8911,1.7457,4.9525,12.5649,3.636,2.7359,13.3114,2.4417,2.6407,2.4014,15.4887,2.3137,5.0876,1.2657,17.4696,6.2916,9.5405,4.8697,11.9839,8.9685,9.6357,9.0764,4.1139,1.7537,5.3265,,,,,,,,,,,,,,,62,,,
-3178,2.1291,2.3614,,70-79y,Other,,,16.3414,4.9442,2.4782,2.2076,1.6325,ppmi,,,M,,0.39187,4.3616,4.1503,0.80306,9.0572,1.3726,0.37119,2.5064,2.7733,44.5263,13.7342,183.202,4.1617,4.0875,1.4949,1.9265,3.0757,6.8202,1.9362,2.9972,1.07,6.2588,11.0453,17.4098,7.3493,2.1461,4.9423,1.5842,17.4906,5.4202,3.5484,1.0573,2.433,6.5584,13.7623,2.855,4.0313,2.915,1.3406,1.2324,4.399,10.6839,3.0905,2.403,11.2722,2.4493,2.3159,2.4901,12.8976,2.0794,3.9232,1.2453,12.7369,5.1921,9.3101,3.1855,10.5891,7.4178,7.0582,7.1069,3.5761,1.7324,4.0613,,,PD,0.080419,PD,,PD,0.35467,3.8814,4.31,0.84906,10.7179,1.6388,0.38931,2.8056,2.8878,44.9592,12.8854,186.1728,4.0153,4.9607,1.6141,2.0539,3.4008,7.5294,1.9145,3.2478,1.1338,6.2186,11.7684,15.1916,7.9287,2.1511,4.6711,1.5931,17.4967,4.7858,3.526,0.85659,2.1706,7.1777,13.8366,2.5228,3.9435,3.3586,1.5271,1.1812,3.9237,10.4197,3.0916,2.4846,10.6748,1.9306,2.2243,2.2803,11.9761,1.8835,3.95,1.1485,13.3162,5.3869,8.192,4.3294,11.1266,7.1764,6.8464,7.8963,3.8106,1.5193,3.8739,,,,,,,,,,,,,,,72,,,
-3179,0.86314,1.8771,,50-59y,Other,,,20.2801,5.1845,2.8487,2.2647,0.94583,ppmi,,,M,,0.53199,5.9192,5.1703,0.9532,11.1658,1.7976,0.48809,3.7625,3.2672,50.8786,18.3308,264.9907,5.2377,5.496,1.8287,2.6657,4.2602,8.479,2.5681,3.4772,0.44374,7.7247,12.7871,9.6646,8.5738,2.8874,5.5707,2.4413,21.7218,6.974,4.752,1.299,3.2651,8.737,16.4521,4.6059,5.021,4.4629,1.9092,1.7611,5.0308,13.0404,3.6238,2.7731,12.5168,3.2126,2.9473,2.5336,15.3209,3.0908,4.8217,1.6091,17.9661,7.0142,10.6887,4.0846,11.8923,8.9468,9.3818,8.4334,5.3928,2.1663,5.2748,,,PD,0.087546,PD,,PD,0.49498,4.5984,4.9237,0.98878,12.7955,2.0047,0.50306,3.7492,3.2922,51.598,17.3813,266.5132,5.1318,5.5825,1.965,2.4876,4.6596,9.0501,2.6534,3.6665,0.57213,8.16,12.8739,8.6872,8.961,2.5823,5.2197,2.4002,21.1396,6.3332,4.5454,1.1836,3.1995,9.6105,16.4433,3.9068,4.8243,4.5633,1.946,1.7203,4.8678,12.625,3.4094,2.8261,10.9577,2.8655,2.9185,2.3337,13.6418,2.4062,4.869,1.5217,16.7643,6.958,9.8098,5.1329,11.5269,9.1188,8.9318,8.8167,4.9885,1.85,4.9984,,,,,,,,,,,,,,,52,,,
-3181,1.3099,1.6371,,60-69y,Other,,,18.1638,4.4099,2.436,2.2223,1.4891,ppmi,,,F,,0.41339,4.0536,3.9817,0.81918,8.478,1.4262,0.34835,3.4205,2.9327,43.7876,14.7483,218.8174,4.1514,4.3749,1.5571,1.8669,3.2974,6.7314,1.8263,2.911,0.53165,5.8555,9.9362,19.5006,7.0388,2.203,3.9562,1.5641,17.5632,5.6593,3.6989,1.1397,2.5943,6.3148,11.9003,3.6897,3.9773,3.0417,1.5699,1.3484,3.8866,9.6847,2.8404,2.1721,11.0686,2.3687,2.3909,2.2744,12.3515,1.8921,3.708,1.1001,12.9424,4.8739,8.1877,3.3755,10.318,6.4983,7.6938,7.7268,3.5592,1.6813,4.5183,,,PD,0.075596,PD,,PD,0.37502,3.6187,3.8656,0.82004,9.4255,1.4872,0.36554,3.2139,2.9899,45.0953,14.508,223.6075,3.6437,5.2523,1.6211,2.0388,3.3987,6.8133,1.8271,3.234,0.68024,5.8754,10.6764,16.852,7.7093,2.0844,4.1228,1.5271,17.0066,4.3005,3.2729,1.0166,2.471,6.5889,13.1477,2.8765,4.0477,3.603,1.5026,1.3515,3.6498,10.6094,2.7462,2.1817,9.1452,2.2575,2.203,2.0072,11.8557,2.065,3.6047,1.0722,12.8943,4.6407,7.3571,4.4248,10.8978,6.9036,7.4984,8.0616,3.3026,1.6039,4.2987,,,,,,,,,,,,,,,68,,,
-3182,1.3509,2.642,,50-59y,Other,,,18.0796,4.8022,2.2977,2.4319,1.2189,ppmi,,,F,,0.44232,4.6161,3.7566,0.83814,9.0007,1.5736,0.38514,3.5513,3.2111,46.6953,14.9871,234.8201,3.547,5.384,1.6835,1.6353,3.6313,7.4582,2.1635,3.1398,0.54561,6.5574,11.1115,17.1619,8.3977,2.3441,4.9538,1.8121,19.3914,6.3949,4.0278,1.3511,3.2287,7.358,14.1753,3.9031,4.7623,3.4322,1.4056,1.4671,4.4177,10.9117,3.3278,2.143,12.687,2.4663,2.2806,2.0429,14.8794,1.898,4.2752,1.1345,16.7908,5.5697,8.7535,3.8728,10.7071,7.4716,8.6723,7.3334,3.4077,1.4205,4.792,,,PD,0.078376,PD,,PD,0.44726,3.6828,3.8646,0.88167,10.3602,1.7432,0.41837,3.8085,3.2087,47.044,14.6733,235.5536,3.6686,4.9226,1.7677,1.6429,3.8939,7.7159,2.2832,3.4873,0.54656,6.1535,11.857,11.2181,8.8682,2.2716,4.8491,1.9108,19.5594,4.5665,3.7566,1.0256,2.9762,8.684,14.4885,3.0583,4.3514,3.4345,1.4674,1.4389,4.223,11.1321,3.1775,2.1143,11.6874,2.0163,2.1434,1.9377,14.3011,1.7097,4.3633,1.1744,15.6941,5.5597,8.6106,4.3165,11.9689,7.4927,8.6323,7.8441,3.3485,1.3844,4.573,,,,,,,,,,,,,,,55,,,
-3184,0.81574,1.9695,,50-59y,Other,,,18.5577,4.7857,2.7013,2.2218,0.91719,ppmi,,,F,,0.4516,4.2627,4.0834,0.8162,8.3509,1.3995,0.35525,3.116,3.2023,47.8389,16.2558,191.8094,3.6926,4.0449,1.5573,1.8533,3.2561,6.766,1.9824,2.9302,0.51356,6.2298,9.841,12.8166,7.1529,2.2137,4.5893,1.7685,16.2595,6.076,3.7867,1.1492,2.5817,6.3592,12.2064,3.1548,4.1756,3.1147,1.4546,1.4684,3.8953,9.6407,3.0039,2.2531,11.66,2.2613,2.4848,2.2055,11.6296,1.8059,4.0604,1.0655,13.2908,4.7243,7.819,3.4105,9.6407,6.2471,7.9616,6.9105,3.6199,1.5532,4.5087,,,PD,0.071232,PD,,PD,0.40674,3.5166,3.9089,0.84103,9.6555,1.6494,0.37141,3.1279,3.3736,48.9497,16.4041,194.4059,3.7316,4.1658,1.6734,1.8647,3.4506,7.2857,2.052,3.224,0.59407,6.0356,10.3665,9.4932,7.4606,2.1368,4.3737,1.7522,17.0418,4.5035,3.7124,0.95444,2.3445,7.3758,12.6783,2.6126,4.2418,3.1906,1.5318,1.413,3.6414,8.8792,2.9116,2.2256,10.6277,2.1722,2.3465,1.9761,11.9374,1.7911,4.1074,1.0585,11.6507,4.7317,8.8763,3.9024,9.655,7.2466,7.8719,7.4745,3.2802,1.3883,4.284,,,,,,,,,,,,,,,59,,,
-3185,1.0111,1.725,,50-59y,Other,,,18.1618,4.7599,2.778,2.2171,1.0298,ppmi,,,F,,0.39672,4.3609,4.0992,0.8104,9.4167,1.5931,0.3765,2.8824,2.6801,50.659,15.5,205.4898,3.918,3.7204,1.6949,1.793,3.3629,7.1274,2.0958,2.8968,0.35051,5.4298,10.2829,9.997,6.6567,2.3161,4.5932,1.7549,17.2981,5.4938,4.0948,0.97615,2.2918,6.4844,13.1174,2.8997,3.9398,3.0244,1.3682,1.3974,4.2248,9.3469,3.1226,2.3612,11.1174,2.3636,2.2967,2.1239,12.2854,1.881,4.0325,1.1904,14.2871,4.8832,8.3859,2.9714,9.6,6.9951,8.0658,7.4289,3.3604,1.5384,4.615,,,PD,0.077014,PD,,PD,0.35492,3.9027,3.8914,0.80569,10.1489,1.6968,0.36854,2.8005,2.7534,49.596,14.8388,209.4826,3.6334,4.0401,1.5922,1.8168,3.7036,7.211,2.077,3.0317,0.4288,5.9816,11.1361,10.0388,7.1511,2.0888,4.4269,1.7747,16.5052,4.4628,3.6563,1.0416,2.3763,7.3863,13.51,2.2977,3.8624,3.24,1.4851,1.3977,3.818,9.3622,2.8405,2.2994,9.9739,2.2481,2.2459,1.9551,12.3673,1.8142,3.9125,1.1543,14.7038,5.3162,7.366,3.5099,9.7617,6.9803,7.7912,7.6704,3.4104,1.4724,4.4631,,,,,,,,,,,,,,,55,,,
-3186,0.78399,1.8496,,60-69y,Other,,,17.9783,4.9021,2.8243,2.211,1.0342,ppmi,,,F,,0.41433,4.4485,3.9258,0.79369,10.1168,1.5525,0.3944,2.7515,2.618,49.6345,14.69,197.912,3.8406,4.4208,1.4806,1.9476,2.9789,7.0895,2.0498,2.9567,0.37965,5.7749,10.8483,8.328,7.2145,2.4114,4.7871,1.7607,18.1895,5.5873,3.9166,1.1601,2.6293,6.2514,13.7798,2.6574,4.0346,3.5115,1.5522,1.2263,4.6976,11.4526,3.0419,2.0591,11.5631,2.2248,2.5424,2.0795,11.0976,1.8244,3.6399,1.2658,13.6032,4.8754,9.6436,3.4132,10.1265,7.3079,7.5234,6.902,3.929,1.3944,4.2124,,,PD,0.072216,PD,,PD,0.33252,3.8991,3.8553,0.76837,10.5417,1.6618,0.37525,2.8932,2.6117,49.6894,14.2274,200.8823,3.9136,4.7685,1.5176,1.8447,3.2111,7.1632,1.9939,3.1493,0.46381,6.1364,10.6058,8.141,7.6423,2.2594,4.6638,1.6658,17.7628,4.6809,3.7092,1.1777,2.5639,7.0107,14.1194,2.1673,4.0412,3.4578,1.6013,1.2419,4.0912,11.0445,2.7805,2.0707,10.602,1.8909,2.3812,1.8802,12.5213,1.7471,3.6243,1.183,14.0982,4.6818,8.7141,4.4438,10.6686,7.8854,7.5611,6.9581,3.5159,1.2929,4.0407,,,,,,,,,,,,,,,62,,,
-3188,0.97034,1.6493,,70-79y,Other,,,17.6433,4.2853,2.2973,2.0313,1.1163,ppmi,,,M,,0.40401,4.4203,3.7052,0.86397,8.6737,1.3216,0.37557,3.0167,2.5151,43.8398,14.6216,201.7009,3.7088,4.1799,1.6447,1.8052,2.9739,7.1935,1.7832,3.0821,0.38252,5.9777,10.5993,9.5958,7.3982,2.1203,4.5131,1.5919,16.4397,5.5931,3.5913,1.159,2.5372,6.3261,13.0665,3.2876,4.2431,2.9007,1.4031,1.1503,4.444,10.4647,3.251,2.1639,12.5105,2.5683,2.4145,2.187,12.3673,2.1998,4.3118,1.1323,13.4682,5.2778,9.1275,3.3554,10.2947,7.0867,7.5054,7.4069,3.5701,1.6887,4.1436,,,,0.072171,CN,,HC,0.38394,3.998,3.6454,0.84413,10.0274,1.5723,0.39071,2.9072,2.6777,43.564,14.3324,209.4632,3.839,4.4016,1.6192,1.7096,3.3127,7.506,1.9216,3.2842,0.44594,6.4042,11.112,9.2048,7.962,1.9829,4.6583,1.5267,15.2688,5.0575,3.6172,1.1646,2.552,6.8569,13.9805,2.7511,4.295,2.871,1.372,1.1629,4.0122,10.7751,3.0699,2.109,11.1788,2.356,2.2478,1.9222,12.5296,1.9239,4.1876,1.07,14.0938,5.1543,8.3278,4.0418,10.2619,7.475,7.3084,7.6021,2.8881,1.5021,3.986,,,,,,,,,,,,,,,71,,,
-3190,2.4533,2.0864,,+80y,Other,,,17.3465,4.8694,2.684,2.3649,2.2461,ppmi,,,M,,0.39615,4.6862,4.3217,0.88826,9.3616,1.5917,0.37531,3.1118,2.7603,45.1823,13.7457,187.7582,4.0561,4.2338,1.6529,1.8913,3.7148,8.0155,2.0749,3.2657,1.2298,5.9498,11.6839,28.474,7.8294,2.359,4.983,1.8818,18.4546,5.8094,4.0326,1.2219,2.5215,7.6321,14.2539,3.0135,4.4031,3.4398,1.4432,1.2429,4.25,10.526,3.6317,2.3792,12.9648,2.1878,2.6906,2.3772,12.8024,1.7949,3.7109,1.2383,15.5828,5.5051,8.3977,3.4186,10.8269,7.6737,7.5016,7.6005,3.6489,1.4828,4.5188,,,PD,0.076986,PD,,PD,0.34814,4.0055,4.1438,0.83719,10.7947,1.6553,0.37648,3.1373,2.929,45.0894,13.569,189.0786,3.8182,4.4905,1.5783,1.9498,3.9569,8.197,2.0777,3.4197,1.1751,6.4668,11.0676,20.6236,8.4481,2.1919,4.9497,1.8365,18.6231,5.198,3.6405,1.1703,3.0207,8.0319,14.0443,2.8536,4.3925,3.1673,1.5812,1.1902,4.0503,10.8333,3.2261,2.3283,10.1546,2.2515,2.5929,2.0246,13.469,1.9041,3.7264,1.2025,14.8563,5.3881,8.2777,4.1394,11.1332,7.9512,7.4298,7.5942,3.5489,1.4082,4.2048,,,,,,,,,,,,,,,82,,,
-3191,0.6577,1.3158,,60-69y,Other,,,15.9184,4.58,2.4554,2.172,1.1002,ppmi,,,F,,0.38559,3.9158,4.0778,0.79608,8.3817,1.4957,0.34813,3.458,2.4822,42.5724,13.1974,189.8674,4.2161,4.5614,1.5131,1.9055,3.1494,6.5984,1.9668,2.7603,0.28031,6.5519,10.3825,10.4997,7.1755,2.3655,4.0609,1.5611,17.0948,6.0465,3.7057,1.0512,2.282,6.0606,12.2383,3.7456,4.2752,2.9068,1.4304,1.1832,4.0371,9.8312,2.9583,2.2433,11.1635,2.2906,2.3788,2.0125,12.5294,1.8975,3.6448,1.0663,13.9154,4.2428,7.5923,3.7971,9.9206,5.7289,7.2203,6.4605,3.8011,1.583,4.0273,,,,0.065719,CN,,HC,0.37397,3.7736,3.6952,0.77403,9.4653,1.711,0.36686,3.3092,2.5521,41.8242,12.7793,191.4976,3.7363,4.7571,1.4978,1.8837,3.3775,6.6984,2.039,2.8493,0.30037,6.5296,10.2827,9.6723,7.6389,2.2103,3.9717,1.5506,16.4156,4.7072,3.7331,0.8474,2.1833,6.6979,12.546,2.8591,4.1591,3.3122,1.5076,1.1653,3.5914,9.6729,2.7568,2.0766,10.001,2.1509,2.2622,1.777,11.647,1.7337,3.4974,1.0637,13.4503,4.4027,7.5549,4.3642,10.2093,6.3574,6.9759,6.6209,3.5409,1.4005,3.8183,,,,,,,,,,,,,,,66,,,
-3200,0.75036,1.722,,50-59y,Other,,,19.4216,4.3143,2.8674,2.2239,0.84216,ppmi,,,M,,0.4626,4.6287,4.0303,0.91805,8.4034,1.5347,0.41169,3.0934,2.7311,47.5843,17.4439,229.533,4.3381,4.6714,1.6885,1.9892,3.4253,7.351,2.4038,3.5914,0.43595,5.4888,11.5303,9.3071,7.3226,2.2747,4.7544,1.8614,18.8629,5.4107,4.2391,1.0217,2.4153,6.7557,13.2582,2.538,4.0923,3.3859,1.5065,1.3982,4.4313,10.534,3.3302,2.2065,10.7894,2.7663,2.5225,2.1191,11.1923,2.4935,3.9918,1.2877,13.5698,5.0535,8.6621,3.2054,10.7369,6.8839,8.4863,8.0124,3.6966,1.8374,4.9046,,,,0.076435,CN,,HC,0.38975,4.0841,4.0081,0.90281,9.6588,1.6584,0.40779,3.259,2.6474,47.0114,17.0925,231.3512,4.0461,4.6147,1.7056,2.0396,3.5838,7.4111,2.1615,3.6894,0.51168,5.7273,11.6927,7.3944,8.1416,2.2737,4.8234,1.7362,18.8321,4.6248,3.8462,0.96573,2.4019,7.5309,13.9846,2.0106,4.0748,3.2671,1.6204,1.4199,4.1498,10.4047,2.9963,2.2853,9.7111,2.4277,2.4718,1.9853,11.3492,1.9653,3.8819,1.2272,13.953,4.7953,7.4519,3.4266,10.0015,7.256,8.0959,8.1326,3.352,1.5833,4.6668,,,,,,,,,,,,,,,56,,,
-3201,0.72335,1.7514,,60-69y,Other,,,17.0472,3.7758,2.4371,1.9908,0.7423,ppmi,,,F,,0.35722,4.0744,3.4518,0.7464,7.8995,1.314,0.33252,3.0644,2.4204,43.7585,14.6217,210.9734,3.1688,4.3071,1.4185,1.629,2.7548,6.2295,2.0951,2.827,0.40564,4.7527,9.3624,6.1633,6.6391,1.943,4.5067,1.5411,17.3778,4.5984,3.6412,0.87404,2.137,5.828,11.1203,2.3531,3.7594,2.7755,1.2956,1.244,3.9389,9.9437,2.6504,1.8388,9.8881,1.8293,2.0421,1.7883,10.4381,1.569,3.3942,1.0103,11.5017,4.601,7.2267,2.655,9.6869,5.9892,7.2687,6.5015,3.3358,1.2491,4.2794,,,,0.06051,CN,,HC,0.31925,3.5121,3.2417,0.73186,8.6039,1.6052,0.33818,3.2737,2.4363,41.5323,14.3086,208.1873,2.9732,4.1655,1.4463,1.6092,3.0496,6.1291,1.9676,2.957,0.42644,5.3087,9.2381,6.0422,7.1783,1.8599,4.4361,1.495,16.4443,4.5465,3.4912,0.78146,2.0176,6.4691,11.512,2.1467,3.8439,2.8009,1.2435,1.2374,3.5995,9.5178,2.4022,1.8385,9.135,1.7331,1.8507,1.5467,10.9832,1.4241,3.2515,0.97346,11.5226,4.4609,6.7111,3.3019,9.1929,5.8623,7.0485,6.2834,2.9784,1.1269,4.0489,,,,,,,,,,,,,,,65,,,
-3203,0.96311,2.1359,,50-59y,Other,,,20.1589,4.7222,2.6247,2.384,1.1626,ppmi,,,M,,0.56612,5.5921,4.2175,0.97143,10.4383,1.8761,0.46815,3.4395,3.1773,51.51,16.9748,283.8528,4.487,5.0357,1.7912,2.3238,3.4866,8.4327,2.5292,3.3253,0.40598,7.2114,13.6291,12.0343,8.545,2.8168,5.3677,2.2843,20.6588,7.2831,4.5859,0.96241,2.5437,7.5424,16.5014,3.4763,4.8712,4.3177,1.6098,1.5034,4.8388,12.0491,3.4227,2.3735,11.6661,3.3708,2.71,2.3936,13.3167,2.9363,4.6736,1.4837,14.7762,5.2902,11.4461,4.2413,11.4688,8.3279,9.5056,8.0037,4.3715,2.1449,5.1552,,,PD,0.087914,PD,,PD,0.48644,4.6757,4.4226,0.98439,13.0235,2.2798,0.44988,4.0638,3.2038,50.2285,17.4676,286.1885,4.9665,5.4376,1.817,2.3269,4.4276,8.0428,2.5348,3.7182,0.62792,7.5921,12.9083,9.4434,9.3773,2.6235,5.2269,2.2563,21.2041,6.6115,4.3977,1.028,2.4915,9.2519,17.3591,3.0565,4.9605,3.8,1.8242,1.5283,4.2591,11.7424,3.2188,2.4497,10.0661,2.6072,2.6533,2.11,12.8101,2.1891,4.7305,1.4287,15.4745,5.4325,9.7739,5.0271,10.6237,8.8137,9.2888,8.2134,4.186,1.7341,4.9833,,,,,,,,,,,,,,,57,,,
-3205,1.8085,1.7468,,70-79y,Other,,,19.4386,4.7323,3.3424,2.519,1.6924,ppmi,,,M,,0.47992,5.128,4.644,0.78517,8.9206,1.7574,0.40927,3.059,2.818,46.1527,17.2944,248.0307,4.074,4.7779,1.4024,2.0362,3.4964,6.9346,2.3037,2.9959,0.43273,6.6851,10.3279,24.1142,7.9326,2.5274,5.4211,2.019,18.5895,6.22,4.4073,0.96547,2.2873,7.4761,14.9519,2.9844,4.2481,3.4185,1.4926,1.3843,4.4213,10.8583,3.0068,2.4527,10.4404,2.4651,2.6319,2.2802,12.2444,2.095,4.2746,1.3176,12.6517,4.7576,9.1124,3.6239,9.9571,7.633,8.1753,6.5755,3.756,1.6862,4.9324,,,PD,0.080102,PD,,PD,0.41296,4.1035,4.4489,0.85217,9.7529,1.9283,0.42858,3.5879,2.8732,46.7666,16.947,251.4482,3.9229,5.229,1.6019,2.1284,3.464,7.2638,2.2353,3.2418,0.63699,7.2231,11.6253,21.5994,8.583,2.4904,4.9949,1.9368,18.7439,5.746,4.1911,1.1227,2.6909,8.7201,15.2312,2.8795,4.4833,3.5844,1.6129,1.3853,4.195,11.1414,2.9927,2.445,10.7529,2.5819,2.6765,2.1399,12.5301,2.0229,4.1714,1.2776,13.7668,5.5473,7.565,4.7313,9.1654,7.1714,7.8592,8.0767,3.7916,1.6268,4.6814,,,,,,,,,,,,,,,73,,,
-3206,0.50989,1.588,,-50y,Other,,,14.9825,3.832,2.422,2.1803,0.72766,ppmi,,,F,,0.46789,5.06,4.0076,0.831,9.5608,1.6763,0.37248,3.4098,2.9504,45.5274,12.6334,205.9931,3.8595,4.4763,1.5081,2.0499,3.1231,7.1633,2.2501,3.0734,0.28766,6.0372,10.5035,6.1367,7.2137,2.4442,4.8614,2.0801,19.2395,6.5363,4.0044,0.95626,2.399,7.0374,13.7628,3.0013,4.0875,3.4214,1.5225,1.2427,3.903,9.7946,2.9127,2.1933,10.5887,2.3268,2.4954,2.3332,13.0794,2.0026,3.9171,1.2076,14.4877,5.3915,8.5569,3.6653,9.9377,7.6652,7.5666,7.028,3.752,1.6493,4.2532,,,,0.069606,CN,,HC,0.44679,4.3599,3.8659,0.86628,10.4197,1.9006,0.41774,3.3625,2.9073,45.499,12.9461,208.0718,3.8214,4.7032,1.5683,1.9752,3.4917,7.3546,2.2396,3.3009,0.31548,5.4427,10.9658,4.2868,7.7504,2.4351,4.8181,1.9992,19.3544,5.2382,3.9399,0.97103,2.4002,8.0225,14.1473,1.9865,3.821,3.3966,1.6715,1.2159,3.6729,10.0025,2.8121,2.0968,9.6408,2.0801,2.552,2.0855,11.7946,1.9115,3.8924,1.1344,14.6844,5.1752,7.7627,3.899,9.3463,7.8497,7.4424,7.722,3.5445,1.5287,4.0106,,,,,,,,,,,,,,,31,,,
-3207,0.63867,1.4685,,50-59y,Other,,,19.0345,4.7634,3.1512,2.5045,0.86636,ppmi,,,F,,0.42831,4.2694,3.7666,0.81357,8.7685,1.5654,0.37036,3.2396,2.8952,53.6844,16.1707,228.1444,3.8099,4.0014,1.4726,1.8583,3.0435,7.3544,2.0362,2.8375,0.27595,5.8796,10.1678,6.7753,7.4098,2.387,4.3029,1.7457,16.4631,5.3409,3.9324,0.97447,2.0701,6.2358,12.2999,2.6929,4.4451,3.1274,1.4685,1.3269,3.6329,9.6422,2.9995,1.9942,11.31,2.2045,2.4438,2.2305,10.799,1.8912,3.5877,1.0911,14.3011,4.6831,7.6663,3.1851,8.9638,6.8626,8.3128,6.3477,3.3572,1.6181,4.7317,,,PD,0.066379,PD,,PD,0.36766,3.836,3.6408,0.8188,8.9353,1.6593,0.35544,3.5364,2.9086,52.8216,16.0564,225.7763,3.9007,4.5417,1.5148,1.944,3.4352,7.3667,2.0124,3.1754,0.55171,6.0459,10.3403,7.0601,8.1865,2.042,4.2285,1.7393,16.2346,4.7398,3.7589,0.95911,2.2398,6.7961,11.9982,2.3142,4.5603,3.5428,1.417,1.3765,3.3597,9.7168,2.7875,2.0308,9.6072,2.4368,2.3146,1.7965,11.0577,1.9279,3.4895,1.0486,14.0586,4.5029,7.7641,3.6267,9.4631,6.5811,8.0645,6.5284,3.2403,1.442,4.6079,,,,,,,,,,,,,,,58,,,
-3209,1.6897,2.5256,,60-69y,Other,,,18.6603,4.9006,2.8155,2.4661,1.5565,ppmi,,,M,,0.47837,5.3358,4.4307,0.94064,9.654,1.7717,0.42586,3.2839,3.1329,50.8262,16.0188,247.3376,5.0098,4.9707,1.84,2.1956,3.4005,8.3073,2.4384,3.3854,0.58598,6.7211,12.6255,21.0294,8.0223,2.5399,5.2597,2.1206,18.4731,6.0718,4.5891,1.4458,3.3801,7.8478,14.6449,3.4175,4.5875,3.4559,1.6711,1.4438,4.3707,12.2588,3.4633,2.5202,13.3074,3.0845,2.7188,2.2645,13.2579,2.4942,4.0979,1.3759,16.1668,6.7822,10.5536,3.1365,10.8724,7.3844,8.5893,8.1336,3.8911,1.9127,4.8837,,,PD,0.065438,PD,,PD,0.4315,4.3354,4.1977,0.94273,10.5724,2.2102,0.40372,3.7888,3.1748,49.5063,15.5367,251.3978,4.9917,5.937,1.8867,2.2278,3.9439,8.2328,2.3913,3.6675,1.0525,6.6151,12.2347,14.5906,8.9115,2.5706,5.0115,2.1543,18.7882,4.5686,4.3573,1.1768,2.8563,9.2562,14.6033,3.0105,4.5155,3.492,1.8374,1.5544,4.2071,12.3672,3.2993,2.3578,11.343,2.8129,2.7001,1.9357,13.1865,2.1376,3.8937,1.2741,16.4045,6.6564,8.9416,3.8507,10.322,7.6185,8.2707,8.7881,3.6638,1.705,4.7281,,,,,,,,,,,,,,,68,,,
-3211,1.7488,2.1258,,60-69y,Other,,,18.1287,4.2395,2.8101,2.1223,1.3967,ppmi,,,M,,0.52086,5.6003,4.5572,1.008,10.8758,1.9222,0.45418,3.4173,3.1292,49.0959,15.9308,278.2396,4.3411,5.0027,1.9308,2.0375,4.1378,8.2695,2.4935,3.4321,0.68708,7.1187,12.5668,26.8927,8.1967,2.64,5.6828,2.2323,23.0242,7.3691,4.6938,0.98733,2.7993,8.0501,16.3212,3.5279,4.7027,3.5995,1.6985,1.4669,5.1453,12.9418,3.4754,2.3863,11.9964,2.7434,2.6911,2.2677,12.9773,2.2147,4.2741,1.4696,15.9665,5.8809,10.5836,4.1881,12.173,8.266,8.4675,8.7863,4.2514,1.7555,4.9217,,,PD,0.091482,PD,,PD,0.48315,4.8437,4.3777,0.97723,12.1762,2.2052,0.46059,3.7594,2.918,49.3677,15.2855,274.6423,4.2983,5.0553,1.8742,2.3422,4.4507,8.0956,2.5405,3.8107,0.49013,7.3042,12.1043,16.1409,8.9482,2.8913,5.3173,2.2051,21.4277,6.3137,4.4622,1.0238,2.6517,9.0253,16.4999,2.6833,4.8896,4.2711,2.0623,1.457,4.834,12.7091,3.2226,2.3452,10.8959,2.5409,2.6459,2.0164,14.4098,2.054,4.2186,1.45,13.7045,5.4862,8.3372,4.3615,11.4484,8.5772,8.1856,8.6852,4.4647,1.5106,4.6553,,,,,,,,,,,,,,,62,,,
-3213,1.6044,1.9527,,60-69y,Other,,,20.9509,5.2089,2.8393,2.4417,1.6175,ppmi,,,M,,0.48473,6.2431,5.1862,0.95031,11.0544,1.8243,0.4544,3.9861,2.8516,55.862,17.5969,273.6981,4.696,5.437,1.827,2.4265,4.1207,8.2689,2.5488,3.4766,0.73638,7.0109,13.0396,30.6231,9.1283,2.8903,5.3787,2.3754,22.312,7.9644,4.5056,1.6672,3.5637,9.3328,16.4221,3.2541,5.6332,3.5653,1.8998,1.635,4.7713,12.6834,3.494,2.6879,12.2974,2.6451,2.8369,2.5603,13.1621,2.1596,4.3778,1.5399,16.5522,7.3561,9.8631,3.5844,11.8327,8.3281,9.018,8.4217,4.386,1.797,5.2781,,,,0.087648,CN,,HC,0.41215,5.109,5.0174,0.99832,10.7504,2.0417,0.42685,4.2799,2.8494,56.3096,16.7296,277.7651,4.8883,6.8064,1.921,2.604,4.5904,8.6405,2.6196,3.7082,0.73785,7.4197,13.3802,18.1064,10.1568,2.7271,5.0231,2.2605,19.6188,5.5149,4.3122,1.2345,3.4186,11.0331,16.5983,2.9896,5.407,3.7287,1.8952,1.6548,4.7613,13.605,3.4231,2.6914,11.2289,2.5283,2.5927,2.4516,13.5985,2.3461,4.2332,1.496,16.6168,7.1653,8.5853,4.3078,11.1455,8.8968,8.7248,9.0421,3.7568,1.8786,5.0767,,,,,,,,,,,,,,,63,,,
-3215,1.1278,1.7353,,70-79y,Other,,,15.8864,4.0169,2.4973,1.9792,1.0416,ppmi,,,F,,0.44427,4.3942,3.9978,0.88227,7.8824,1.5064,0.39027,3.31,2.2935,44.3115,13.2228,216.5969,4.0491,5.2614,1.6622,1.8599,3.1417,7.2115,2.0751,3.1132,0.62843,5.5429,10.8657,11.84,7.2087,2.1908,4.6276,1.7581,16.5482,5.7084,3.7792,0.93582,2.3112,6.0366,13.1123,2.7963,3.8395,3.1296,1.3829,1.2823,4.1888,11.0939,3.1101,2.0812,10.538,2.4392,2.2207,2.0013,11.5498,2.1728,3.4411,1.2753,11.6797,4.3384,8.2384,3.9923,10.1908,6.5193,7.5927,7.4243,3.4803,1.8111,4.4084,,,,0.082544,CN,,HC,0.40416,4.1894,3.9584,0.8456,9.0538,1.6621,0.39199,3.3298,2.3446,43.8343,12.9003,211.8262,3.9176,4.9768,1.5341,1.9362,3.1142,7.1029,1.9682,3.197,0.70719,6.5718,11.2473,10.241,7.954,1.9022,4.6351,1.6561,16.4029,5.2382,3.5931,0.88389,2.3739,6.5374,12.998,2.2867,4.2326,3.2465,1.3961,1.2692,3.8942,10.7138,2.7445,2.2226,9.8514,2.2408,2.1152,1.7865,10.5985,1.753,3.4652,1.2768,11.8099,4.3754,7.8564,3.9527,9.0342,5.9775,7.0913,7.4606,3.206,1.5049,4.1965,,,,,,,,,,,,,,,70,,,
-3216,0.77001,1.4113,,50-59y,Other,,,16.5761,4.3739,2.391,2.3575,1.1331,ppmi,,,F,,0.43835,4.7054,4.2809,0.9631,9.1415,1.4765,0.38393,3.2844,2.9419,47.5271,14.7726,222.0609,3.9697,4.4191,1.8091,2.0446,3.3149,7.8413,2.2645,3.2602,0.33839,5.6106,11.223,10.7032,7.6315,2.4166,4.7132,1.9723,19.1106,6.2546,3.9341,1.2567,2.8818,6.9271,13.4889,2.4651,4.3848,3.4555,1.6571,1.3728,4.3357,10.5498,3.1828,2.2395,12.5909,2.5065,2.5355,2.2284,12.7188,2.0882,3.7844,1.1839,15.2431,5.699,8.93,3.3157,9.8116,7.6057,8.289,8.0299,4.1469,1.5455,4.5423,,,,0.077509,CN,,HC,0.39878,4.1744,4.0025,0.88901,10.2995,1.8209,0.39111,3.4012,2.9139,47.329,14.4428,222.3089,3.8369,4.9465,1.6912,1.9969,3.7806,7.8627,2.2648,3.3394,0.43336,6.131,11.5636,11.0828,8.0301,2.2761,4.6784,1.8137,18.8342,5.292,4.0108,1.1639,2.8949,7.5133,13.9485,2.2177,4.4443,3.6607,1.5782,1.3684,3.9744,10.6229,2.8274,2.3949,10.7916,2.5253,2.2312,2.1388,13.1514,2.1513,3.6016,1.1381,14.7127,5.8203,8.1842,4.295,10.2781,7.9739,8.1061,7.9054,3.6643,1.7407,4.2806,,,,,,,,,,,,,,,52,,,
-3218,1.882,2.2691,,60-69y,Other,,,19.5689,4.6136,2.4626,2.138,1.9476,ppmi,,,M,,0.39993,4.9786,4.4357,0.87786,9.7187,1.6189,0.36212,3.3643,2.9203,45.3266,17.5238,263.6435,3.847,5.1812,1.6734,2.1284,3.3174,7.7199,2.2894,3.1507,0.5221,6.1031,11.7271,21.4082,7.4403,2.4966,4.986,1.984,18.6708,6.0317,4.1094,1.2727,2.6026,7.1347,14.1835,3.2241,4.2959,3.2315,1.5059,1.6729,4.693,12.1971,3.1688,2.458,11.8173,2.6457,2.3778,2.1264,11.1246,1.9864,3.6518,1.2434,13.8015,5.6765,9.4216,3.8715,10.2765,7.0729,8.2105,7.2777,3.9657,1.4066,4.9323,,,PD,0.066141,PD,,PD,0.37242,4.4515,4.0486,0.82064,10.4512,1.6914,0.37686,3.9801,3.1867,46.5511,16.1628,261.3202,3.8276,6.0009,1.5404,1.9739,3.346,7.8592,2.2566,3.2909,0.6251,6.8741,12.7411,19.3884,8.5323,2.2374,4.8878,1.9455,17.7387,5.7213,3.918,1.0904,2.6174,7.6108,14.8077,2.6763,4.3078,3.3167,1.5316,1.618,4.3166,12.2075,2.8758,2.3301,10.122,1.8402,2.2808,1.8767,11.5888,1.4923,3.4809,1.294,12.9978,4.9382,6.9574,4.0068,10.0853,6.4318,8.2614,7.6375,3.4885,1.3446,4.7022,,,,,,,,,,,,,,,64,,,
-3219,1.5687,1.9734,,70-79y,Other,,,20.3048,3.9684,2.8379,2.2563,1.5156,ppmi,,,M,,0.45686,5.1076,4.4418,0.91626,8.0184,1.7812,0.40054,4.1687,2.9404,43.1605,17.8262,296.5224,3.581,5.3761,1.5657,2.095,3.3101,7.2258,2.4357,3.3827,0.66571,5.7066,10.0443,21.2692,7.7797,2.5145,5.0003,2.1636,17.8865,5.7554,4.2245,1.0335,2.3353,7.213,12.6737,3.5937,4.2354,3.6866,1.541,1.5442,4.3429,10.5895,3.2006,2.3451,10.047,2.5361,2.4642,2.2022,10.6233,2.314,3.914,1.3662,13.1512,5.0715,7.8277,3.7663,8.4786,7.1881,8.3503,7.6442,4.2516,1.7072,5.1578,,,,0.076366,CN,,HC,0.42164,4.9924,4.3729,0.93273,8.8568,1.9359,0.42771,4.4212,2.6955,42.1086,19.188,300.3215,3.7832,6.0015,1.7266,2.1385,3.6037,7.2483,2.3193,3.6096,0.69761,6.363,11.1686,17.73,8.7183,2.3249,4.8582,2.1409,17.4516,5.2483,4.1454,0.89168,2.2848,7.8625,14.1623,3.0516,3.9274,3.5855,1.7124,1.5858,4.1501,10.8069,2.9976,2.2718,8.9382,1.9513,2.5035,1.9462,10.3094,1.5726,4.0114,1.3674,12.9638,5.0738,6.4812,4.9707,7.7247,7.1036,7.9383,8.23,3.5559,1.3821,4.898,,,,,,,,,,,,,,,70,,,
-3220,1.1246,2.7889,,70-79y,Other,,,17.9933,4.0487,2.8531,2.0144,1.3667,ppmi,,,F,,0.46578,5.3957,4.0287,0.92639,9.2738,1.6345,0.39109,3.0764,2.9397,47.3081,14.9137,238.6353,3.913,4.6121,1.768,1.9432,3.2847,7.3806,2.1732,3.376,0.4003,6.5812,10.5679,12.9235,7.1807,2.1915,5.6263,1.9835,17.3033,6.7054,3.8909,1.1678,2.8327,7.0814,13.2729,3.0394,4.271,3.3908,1.3141,1.3649,4.3335,10.9481,3.2708,2.3813,10.4331,2.7794,2.2359,2.316,12.0866,2.4045,3.5475,1.352,11.3492,5.5266,9.2867,3.356,9.259,7.2509,7.8193,7.5038,3.7172,1.7095,4.7515,,,PD,0.093941,PD,,PD,0.42992,4.7088,3.9277,0.91517,10.7328,1.8727,0.38931,3.4398,2.8839,47.4773,14.598,238.6647,4.1935,5.4106,1.7724,1.9225,3.7001,7.6659,2.0949,3.4564,0.68258,6.9926,12.0648,12.3867,8.0558,2.1591,5.3451,2.0249,18.0348,5.2229,3.6228,1.1649,2.6474,8.345,14.2526,2.5873,4.4059,3.7998,1.5137,1.4025,4.0128,10.7345,2.9164,2.3084,9.6493,2.3706,2.069,2.0318,10.4121,1.8893,3.5373,1.2641,12.2722,5.4262,8.6852,3.9625,8.6073,7.0307,7.5121,7.7151,3.5516,1.5574,4.5197,,,,,,,,,,,,,,,74,,,
-3221,2.5634,3.402,,60-69y,Other,,,19.9965,4.4664,2.4049,2.3797,2.5877,ppmi,,,M,,0.43078,5.2253,4.5596,0.88293,9.3739,1.5109,0.42643,3.8349,2.7504,43.9853,16.3486,229.2452,4.3546,4.6059,1.6581,2.1472,3.3556,7.7512,2.2275,3.383,1.3162,6.8051,12.4254,40.0285,7.8799,2.3164,5.2172,1.9565,18.4676,6.1933,4.0266,1.102,2.636,7.5869,15.0718,3.6864,4.5859,3.623,1.3843,1.4215,4.9302,11.9321,3.2234,2.6633,10.3552,2.6541,2.374,2.3639,12.179,1.9764,3.9467,1.4142,14.6539,5.9315,8.8039,3.5525,9.4745,7.0015,7.8205,7.6143,3.6389,1.7082,5.0078,,,,0.059723,CN,,HC,0.37709,4.762,4.3412,0.85292,10.9508,1.7222,0.42244,3.9019,2.3483,43.4826,15.8118,228.9571,4.2794,5.171,1.5868,1.9053,3.5741,7.7787,2.123,3.5467,1.2831,6.3915,12.3287,36.069,8.7507,2.1874,5.2714,1.8272,19.0862,5.3747,4.0078,1.0223,2.5377,8.3018,14.998,2.856,4.3312,3.4832,1.4927,1.3603,4.4112,11.9464,2.995,2.6213,9.1436,2.1361,2.3709,2.2469,12.2162,1.6504,3.8786,1.3615,14.8148,5.7701,7.9216,3.8525,9.7905,7.7675,7.4493,7.4571,3.3363,1.5515,4.728,,,,,,,,,,,,,,,68,,,
-3222,1.715,2.131,,50-59y,Other,,,20.1299,5.1975,3.2321,2.6514,1.8862,ppmi,,,M,,0.48346,5.02,4.4978,0.8787,9.5586,1.8837,0.42647,3.0171,3.2679,49.7776,20.2149,260.5869,4.0376,4.9448,1.6866,2.1949,3.316,7.9126,2.4558,3.0767,0.4169,5.9671,12.2832,21.1995,8.0382,2.71,4.5398,2.0075,19.458,6.3734,4.6955,0.9991,2.4137,7.8496,14.9926,2.6283,4.6461,3.577,1.7454,1.6111,4.0721,10.8852,3.1919,2.5042,11.4198,2.3291,2.8556,2.4819,13.7529,2.2204,4.5418,1.3679,16.8169,5.9846,8.101,3.2323,9.999,8.0032,8.6307,8.3709,4.4527,1.8116,5.2374,,,,0.0672,CN,,HC,0.42838,4.7101,4.2053,0.86423,10.2096,2.1124,0.42419,3.118,3.2085,48.5641,20.4218,257.5762,4.0828,5.5517,1.7197,2.1645,3.4066,7.4987,2.2555,3.2292,0.46528,6.5806,12.5141,17.7658,8.5606,2.6265,4.5131,2.0226,18.9836,4.912,4.4553,1.157,2.6807,7.995,15.559,2.5282,4.6948,3.8587,1.7683,1.59,3.5825,11.5647,2.8123,2.4367,9.9025,2.2864,2.706,2.2076,13.3032,2.0676,4.2128,1.2921,16.2611,5.8799,8.2286,3.761,9.5921,8.2234,8.6395,8.2729,3.7112,1.5575,4.9521,,,,,,,,,,,,,,,58,,,
-3223,1.8421,1.8384,,60-69y,Other,,,19.0569,4.6909,2.7873,2.2644,1.6627,ppmi,,,M,,0.44691,5.489,3.7844,0.93585,8.3485,1.4494,0.4238,2.9336,2.5582,42.1535,20.7795,286.7646,3.1393,4.5849,1.616,1.9546,3.6804,6.6092,2.6938,3.2649,0.32634,5.0527,9.0958,10.9941,8.1704,2.4296,6.2443,2.1526,17.0803,4.8174,3.5286,0.89804,2.3919,7.6707,14.8134,2.66,3.6163,3.7829,1.6114,1.7772,4.6094,11.3314,3.4969,1.92,10.1492,1.7906,2.2331,1.9178,9.7142,1.7612,3.6541,1.4249,11.5924,6.3216,8.3403,2.4147,8.6286,7.771,8.2308,8.3694,3.7558,1.1662,5.1129,,,PD,0.038146,PD,,PD,0.40628,4.6293,3.6489,0.86487,10.237,1.5196,0.32124,3.0689,2.1216,40.5549,21.6053,288.5989,3.2924,4.3677,1.5947,1.9217,4.0293,6.7217,2.4832,3.5845,0.45928,5.6828,9.8167,9.9681,8.4564,2.1312,5.7459,2.0273,16.6166,4.3364,3.104,1.0653,2.4774,8.5042,14.7722,2.2706,3.2325,3.4154,1.6125,1.7582,4.077,10.6361,3.2284,1.9515,8.7331,1.7076,1.9931,1.5373,9.2111,1.525,3.3425,1.2306,11.7158,5.7414,7.6766,3.018,8.7336,7.8416,7.4609,8.2393,3.9733,0.78519,5.0006,,,,,,,,,,,,,,,66,,,
-3224,2.0822,1.8144,,+80y,Other,,,20.6831,5.0123,2.8531,2.636,1.9177,ppmi,,,M,,0.51779,5.8249,5.0459,0.85652,11.4912,2.1409,0.4353,4.4743,2.9945,49.1177,17.858,277.0357,4.5638,6.3887,1.6598,2.2566,3.8046,8.5237,2.7895,3.1884,0.56954,7.106,14.0808,18.0021,9.0221,3.2344,5.3407,2.4454,25.0945,6.486,5.2275,1.11,2.4636,8.3632,18.2741,4.0811,4.7722,3.6045,1.9457,1.5815,5.296,12.595,3.4516,2.681,12.4092,2.8776,2.8655,2.7564,14.0135,2.3877,4.5622,1.5227,17.0371,5.5421,10.707,3.8578,11.953,9.0193,8.785,8.9494,4.7986,1.8772,4.9845,,,PD,0.063219,PD,,PD,0.47242,4.9072,4.4511,0.85398,13.6085,2.3749,0.47541,5.1527,3.396,48.4276,17.8888,277.3628,4.1774,6.5201,1.6351,2.0763,3.9414,8.7921,2.6977,3.4161,0.71063,8.0652,13.1571,21.3147,11.1264,2.9259,5.4492,2.2659,23.0962,7.2907,5.1887,1.3883,2.8883,9.1656,16.7171,3.4575,5.3299,4.0271,1.7321,1.5417,4.7246,13.7808,3.0215,2.6901,9.3975,2.185,2.8063,2.3428,13.6897,1.9131,4.8044,1.5339,16.809,5.6268,8.3801,4.7699,11.5765,8.7991,8.5624,8.6565,3.788,1.5033,4.6609,,,,,,,,,,,,,,,85,,,
-3225,2.1652,1.6842,,70-79y,Other,,,17.8449,4.9324,2.5017,2.3463,1.8746,ppmi,,,M,,0.46393,4.8281,4.3907,0.96545,8.6678,1.6595,0.4209,3.1974,2.8905,45.4728,15.9912,262.544,4.1989,5.0041,1.7237,1.9351,3.4431,8.1166,2.4823,3.6253,0.65726,6.6525,12.4645,19.3654,8.2397,2.4315,4.6707,2.0493,16.0564,6.7534,4.5081,1.064,2.4713,6.938,15.159,4.1648,4.8227,3.0612,1.3818,1.407,4.8946,11.3541,3.5066,2.4346,10.8111,2.6699,2.6124,2.1458,11.136,2.3704,4.0835,1.3881,12.8175,4.6255,8.4039,3.9242,11.3049,7.2751,8.5455,8.5114,3.5266,1.6652,4.8657,,,PD,0.069115,PD,,PD,0.41336,4.3854,4.4576,0.9632,10.7587,1.986,0.4245,3.9671,2.8835,43.8849,16.5565,257.8515,3.8236,5.0805,1.8045,1.9222,3.6808,8.178,2.349,3.6568,0.60545,7.5293,12.3836,19.0655,9.0201,2.3078,4.1812,1.941,17.9738,5.5369,4.1802,1.0322,2.443,7.5123,15.9858,3.4319,4.8095,3.3416,1.4865,1.4786,4.2958,11.4316,3.2225,2.3763,8.9005,2.0509,2.581,1.8645,10.5706,1.553,4.1997,1.2987,13.153,4.8713,7.3954,4.6634,10.4412,7.0011,7.3755,8.2953,3.5129,1.3188,4.5494,,,,,,,,,,,,,,,70,,,
-3226,0.67309,1.425,,-50y,Other,,,18.6333,4.0242,2.7896,2.164,0.84289,ppmi,,,F,,0.50952,5.0665,4.4296,0.97694,9.4783,1.9595,0.447,4.7222,3.2201,49.4402,14.9015,245.1546,4.0702,6.2239,1.7939,2.2613,4.0529,8.2641,2.508,3.3842,0.37862,7.4518,13.4074,7.5235,8.2217,2.8822,5.0567,2.1335,20.8933,6.9904,4.6297,0.88523,2.3609,7.5175,17.2248,3.3224,4.7351,4.2474,1.8587,1.5023,4.7939,12.376,3.4024,2.2982,11.8106,2.3864,2.8355,2.2803,12.6443,2.0454,4.2779,1.3135,14.1503,4.9559,10.4071,4.0994,10.6708,8.0155,8.7624,8.5358,5.2365,1.62,5.1933,,,PD,0.087242,PD,,PD,0.47168,4.2775,4.3247,0.97616,10.6695,2.3456,0.43482,5.12,3.345,49.0848,14.7838,250.8897,4.3465,6.6174,1.8469,2.0434,4.2925,8.3479,2.6165,3.6582,0.47222,7.678,12.9152,5.683,9.1458,2.7609,5.134,2.1008,22.2506,6.4656,4.7378,1.0488,2.4531,8.0719,16.8605,2.8304,4.5171,3.8653,1.8456,1.5387,4.5627,12.8361,3.3204,2.3837,10.6646,2.5184,2.7739,2.1225,13.86,2.0644,4.4401,1.3086,14.9608,4.9662,8.5514,4.9481,10.3266,7.9147,8.6079,8.6517,4.2508,1.6274,5.0327,,,,,,,,,,,,,,,34,,,
-3227,1.2558,1.6633,,50-59y,Other,,,17.9372,4.8022,2.5804,2.2978,1.2681,ppmi,,,F,,0.50286,4.9929,4.4164,0.87678,9.3476,1.762,0.41268,3.4286,3.362,46.748,14.9213,229.6283,4.2328,4.829,1.6394,2.269,3.6004,7.619,2.2847,3.2134,0.40091,5.6546,11.6046,13.1455,8.1778,2.6624,5.1407,1.9818,21.1168,5.4825,4.2651,1.118,2.7321,7.9045,14.3041,2.7795,4.062,4.0586,1.6877,1.3837,4.6466,10.7088,3.236,2.2669,12.361,2.2437,2.6912,2.2105,14.0435,2.0217,4.372,1.2459,17.8663,6.172,8.731,3.7244,11.7531,7.9543,8.2099,7.7718,4.0261,1.7546,4.7919,,,PD,0.082135,PD,,PD,0.44386,4.6627,4.35,0.85183,11.1121,1.9459,0.41717,3.7769,3.389,46.5541,13.944,228.1234,3.6199,5.1727,1.6092,2.1477,3.5746,7.6107,2.1669,3.4787,0.61239,6.1391,11.1591,11.5098,9.0586,2.4871,4.9947,2.0404,20.4575,5.2701,4.0379,1.1698,2.5384,8.5483,13.9481,2.286,4.3609,4.0911,1.699,1.3858,4.2553,11.4488,2.9842,2.2995,9.438,1.9774,2.3705,1.949,13.7403,2.0297,4.2141,1.2562,16.0085,5.7105,8.0231,4.3034,11.3228,7.4721,8.0962,7.4973,3.8332,1.4787,4.5079,,,,,,,,,,,,,,,51,,,
-3228,1.0189,2.442,,60-69y,Other,,,21.5439,4.0627,3.388,2.4486,1.2291,ppmi,,,M,,0.49566,4.979,4.5956,1.0158,9.9485,1.752,0.45029,3.9816,2.9136,50.0095,16.0639,279.9218,4.3446,5.7598,1.8379,2.1136,3.3035,7.6535,2.4146,3.7595,0.49325,6.9382,11.7088,9.3453,8.0723,2.5007,4.8895,2.0383,18.8645,6.9569,4.3827,0.8626,2.1208,7.6266,15.4735,3.9595,4.6587,3.4362,1.4028,1.5057,4.8239,11.5075,3.5325,2.5784,11.4832,2.3378,2.4336,2.4973,12.1208,2.1785,4.0339,1.3496,15.1798,5.2784,8.062,4.0944,11.1339,7.9342,9.5543,8.9235,3.6687,1.9753,5.2799,,,PD,0.10033,PD,,PD,0.44377,4.3979,4.3351,0.89947,10.7633,1.948,0.4248,4.0729,2.7818,49.5322,16.4884,276.1353,4.068,5.5108,1.662,2.1321,3.8708,8.1191,2.3126,3.8379,0.44718,8.0095,12.7493,8.2645,8.9936,2.2759,4.6195,1.98,18.3401,5.8908,4.1155,1.0071,2.3742,8.4717,15.4654,3.0204,4.8101,3.4889,1.5362,1.5147,4.4487,11.8179,3.0675,2.5568,10.2097,2.3604,2.4694,2.2092,11.8222,1.9503,4.1281,1.3073,15.8112,5.0844,7.4558,4.672,9.8191,7.1751,9.1813,8.6363,3.5512,1.7268,5.0263,,,,,,,,,,,,,,,67,,,
-3229,2.9281,3.9262,,70-79y,Other,,,18.8371,4.6973,2.6404,2.0624,2.6065,ppmi,,,M,,0.43364,5.0535,4.1145,0.98446,10.5011,1.5074,0.41994,4.3394,2.8203,52.3466,14.0996,214.6003,4.0438,5.9195,1.8754,1.8506,3.4455,8.4055,2.393,3.5504,1.5349,7.2211,12.9143,53.6971,8.8303,2.4233,5.0551,1.9862,20.3999,7.3061,4.1036,1.2146,3.0841,7.6569,16.8423,3.6345,4.7167,3.1708,1.5273,1.2156,4.9514,12.2739,3.5732,2.3242,10.9122,2.516,2.5092,2.2867,12.4549,2.1442,4.1319,1.3602,17.6763,5.9019,9.4995,3.9228,11.1699,8.2756,8.2223,8.6794,3.7729,1.564,4.7266,,,PD,0.065612,PD,,PD,0.36907,4.5806,4.1034,0.91002,11.6672,1.6708,0.40335,4.3709,2.7101,51.0648,13.6737,217.7418,4.1972,5.969,1.7298,1.9414,3.7119,8.1709,2.1755,3.6958,1.2718,6.9792,12.5266,49.9929,9.4254,2.293,4.7492,1.8453,20.3667,6.5705,3.7712,1.2666,3.1599,8.2597,15.728,2.8849,4.7211,3.5297,1.6677,1.248,4.3305,12.741,3.1404,2.5853,10.3166,2.2416,2.4614,2.0681,12.7446,2.1029,4.0567,1.3046,16.1759,6.3277,8.0519,4.8054,10.8215,7.9125,7.7786,8.348,3.8035,1.5573,4.5144,,,,,,,,,,,,,,,73,,,
-3230,1.8892,2.3849,,70-79y,Other,,,19.4762,5.3853,2.9112,2.6829,1.8658,ppmi,,,M,,0.47157,4.9802,4.9831,0.98187,9.7027,1.7248,0.44957,4.0329,3.3811,52.8514,15.9977,245.5194,4.0775,5.9211,1.9507,2.0286,3.551,8.2048,2.4442,3.4472,0.57139,6.5565,12.4522,19.357,9.5671,2.5311,5.1254,1.8895,19.4649,5.2158,4.5628,1.1256,3.0223,7.3443,14.8012,3.2116,5.68,2.8953,1.5476,1.6043,4.4909,11.7028,3.5516,2.6148,12.0556,2.5748,2.6734,2.5385,11.8965,1.9994,4.6428,1.4338,15.4737,6.0427,9.0502,3.2592,9.8827,7.6724,8.5939,8.6152,3.6472,1.6556,5.1647,,,PD,0.078733,PD,,PD,0.42198,4.179,4.5199,0.94636,10.4186,1.7312,0.43465,3.9453,3.3026,53.6673,15.2333,241.7873,4.1463,5.3334,1.8266,1.8153,3.0202,8.1934,2.1391,3.6563,0.69913,6.8219,12.7474,17.4773,9.3734,2.2946,5.0943,1.8094,18.8616,5.1999,3.928,1.3307,3.1624,7.9535,15.042,2.782,4.7036,3.1985,1.5751,1.5375,4.4933,12.3724,3.1476,2.5284,10.9593,2.123,2.4646,2.0604,13.748,1.8488,4.3154,1.397,16.7723,6.1682,7.4958,3.6727,10.2636,7.5241,8.5589,8.4129,3.153,1.474,4.8099,,,,,,,,,,,,,,,70,,,
-3231,0.5803,1.5056,,50-59y,Other,,,17.5687,4.0396,2.8028,2.0762,0.72642,ppmi,,,F,,0.45254,4.2198,3.4962,0.81825,7.6926,1.2983,0.35398,3.2458,2.6883,45.969,14.94,212.0682,3.174,4.6222,1.4656,1.7531,2.7276,6.5248,1.9543,2.9107,0.34349,5.9689,10.1604,6.8792,6.8402,1.8932,4.5187,1.5985,15.1936,5.2856,3.3838,0.78009,2.0402,5.7458,12.4425,2.8767,3.8155,2.828,1.2323,1.3388,3.5017,8.9062,2.917,1.8802,8.7791,2.0081,1.8046,1.8915,8.951,1.748,3.6804,1.1364,10.5383,4.476,7.7159,3.1544,8.1221,6.3621,7.6985,6.7837,3.2509,1.3729,4.6117,,,PD,0.070418,PD,,PD,0.40332,3.5286,3.578,0.76132,8.5285,1.4427,0.37114,3.585,2.6028,46.6262,14.0165,212.6686,3.4466,4.9486,1.439,1.6941,2.8893,6.4006,1.9446,3.0307,0.41514,6.1218,10.4214,8.1914,7.5881,1.8747,4.4565,1.6571,14.7409,4.6059,3.3861,0.80931,2.3031,6.5316,12.5269,2.5348,3.9475,3.2033,1.3794,1.356,3.3226,9.596,2.5917,2.0161,7.7155,1.879,2.0604,1.6905,9.384,1.5625,3.5712,1.1686,10.3624,4.3911,6.8081,3.9266,7.7547,6.1132,7.3971,6.5184,3.0894,1.2829,4.3831,,,,,,,,,,,,,,,56,,,
-3232,1.0838,2.0773,,60-69y,Other,,,16.8799,5.1188,2.5889,2.189,1.1562,ppmi,,,F,,0.46477,4.9122,4.4365,0.91081,9.8097,1.4698,0.41132,3.4203,3.2076,43.1906,13.9345,232.6785,4.3729,5.0705,1.8308,2.202,3.3129,7.5624,2.3392,3.3034,0.49917,6.4361,12.7243,12.5754,8.0961,2.1814,5.0659,1.8959,17.6391,5.854,4.0928,1.0274,2.5274,7.2138,16.0775,2.6162,4.6128,3.268,1.4675,1.2875,4.4836,11.4374,3.3713,2.5173,12.2888,2.9139,2.5094,2.3577,11.3379,2.5038,4.3889,1.3301,14.0032,4.8691,9.9128,3.0346,10.4739,8.6449,7.7147,8.7639,3.9501,1.8366,4.4046,,,PD,0.074204,PD,,PD,0.3952,4.0294,4.1512,0.88119,10.4808,1.6826,0.41422,3.6824,3.0762,47.2364,13.946,230.984,4.5687,5.3404,1.7537,2.0741,3.4182,8.2025,2.2082,3.5975,0.78374,5.8947,12.7912,9.5708,9.2159,2.0451,4.9702,1.7997,17.4857,4.9258,3.9805,1.1145,2.5461,7.7571,15.9717,2.2715,4.599,3.6895,1.562,1.3311,4.4407,12.2383,3.2921,2.5015,10.7571,2.3646,2.376,2.1641,11.4053,1.9317,4.1692,1.2546,14.4438,5.1074,7.4161,3.6411,10.0441,7.7842,7.3765,8.5139,3.645,1.8017,4.249,,,,,,,,,,,,,,,68,,,
-3233,0.81354,2.4523,,-50y,Other,,,17.6737,4.1728,2.894,2.1414,1.1734,ppmi,,,M,,0.49911,4.8193,4.0997,0.91918,9.101,1.6439,0.40115,3.6671,3.126,49.3381,15.2845,222.3133,4.3389,5.0511,1.6889,1.9122,3.501,7.1506,2.1431,3.2812,0.36152,5.5802,11.0662,8.2726,7.1914,2.3204,4.7061,1.9436,17.9326,5.3587,3.9774,0.9755,2.5094,7.1886,14.0367,2.7575,3.9608,3.2156,1.3879,1.3816,4.587,11.1229,3.1483,2.2587,9.9902,2.5487,2.3791,2.3381,11.81,2.2709,4.3589,1.167,14.6845,5.5102,9.4382,3.1527,8.9488,7.5019,8.2404,8.3686,3.6724,1.841,4.7142,,,PD,0.068018,PD,,PD,0.45196,4.1238,3.9912,0.86279,10.8025,1.8877,0.39492,3.8982,3.1429,49.1513,15.0768,227.5398,3.8594,5.6051,1.6064,1.8498,3.7677,7.2,2.2617,3.5279,0.39701,5.3118,11.4534,7.8478,8.3531,2.3239,4.7598,1.9652,18.3042,3.7838,3.994,0.93236,2.2623,7.8983,15.5594,2.3251,4.156,3.3019,1.6139,1.4152,3.9934,11.2635,2.9019,2.1755,9.4156,2.231,2.4484,1.9885,10.3818,1.8961,4.276,1.1205,14.7925,5.3798,8.7204,3.6244,10.2654,7.6767,8.1434,8.198,3.5752,1.5244,4.5291,,,,,,,,,,,,,,,37,,,
-3235,0.89436,1.5467,,60-69y,Other,,,18.006,5.0562,2.6813,2.2795,1.0124,ppmi,,,M,,0.41447,4.8724,4.5589,0.94062,8.6916,1.5324,0.39441,3.9994,2.5934,48.5532,14.7431,234.4632,4.4101,4.8694,1.6914,2.2169,2.9199,7.7248,2.1497,3.2807,0.34519,6.0181,11.2635,9.7449,8.4651,2.5542,4.8439,1.878,17.7369,5.7949,3.9865,0.88152,2.51,7.2988,13.5197,3.015,4.4201,3.314,1.7339,1.3578,4.8522,11.1644,3.2929,2.2648,11.2355,2.4183,2.5508,2.4654,12.3206,2.0642,3.7423,1.1879,13.3024,5.7563,7.4394,3.7297,10.0496,7.1658,8.2065,7.7761,3.7462,1.8944,4.6478,,,,0.057521,CN,,HC,0.36294,4.2476,4.1712,0.90226,9.0354,1.7073,0.38175,4.2187,2.4699,49.9179,14.1188,227.4092,3.7368,5.2516,1.6938,2.0745,3.0149,7.4897,2.0483,3.4776,0.43531,6.5373,12.0724,8.5647,9.255,2.3534,4.4536,1.8213,17.9416,5.121,3.631,0.99602,2.4963,8.2743,14.7176,2.5999,4.5217,3.7348,1.6476,1.3042,4.335,11.3994,3.0888,2.3744,9.2384,2.2497,2.4576,2.0846,12.7456,1.9508,3.5358,1.175,13.8456,5.4809,6.7709,4.3278,8.6627,7.1541,7.8314,8.4216,3.6268,1.5871,4.4426,,,,,,,,,,,,,,,62,,,
-3237,0.88205,2.1536,,70-79y,Other,,,16.5002,4.0921,2.7763,2.2397,1.319,ppmi,,,F,,0.46245,4.1201,3.7606,0.76517,8.0452,1.4443,0.38734,2.8912,2.3533,45.8527,13.4276,200.5474,3.5998,4.1481,1.4252,1.9546,2.81,6.9205,2.1637,2.7146,0.41489,5.1284,9.5821,18.3379,6.9682,2.1088,3.8454,1.6701,15.8101,5.1855,3.9148,0.90948,2.084,5.8574,12.3955,2.525,3.9114,2.745,1.3411,1.1282,3.9832,9.8295,2.8068,2.0961,9.6865,1.9717,2.1422,2.0492,11.2062,1.6229,3.9899,1.2731,13.282,4.6983,6.7788,2.9701,9.7178,6.3784,7.2638,6.7294,3.361,1.4165,4.1804,,,,0.072487,CN,,HC,0.38932,3.5157,3.7675,0.77275,8.9153,1.689,0.38582,3.2057,2.3862,45.1795,13.2399,194.7124,3.7273,4.0483,1.503,1.9302,2.9334,6.7065,1.9731,2.8339,0.4701,5.7959,9.1418,17.8039,7.2107,2.053,3.8555,1.59,15.0769,5.0896,3.6729,0.98576,2.2289,6.5933,11.9059,2.3485,3.7331,3.2649,1.3851,1.0656,3.5264,9.2096,2.4878,2.2372,8.9366,1.8494,2.0282,1.7775,11.4893,1.5725,3.9088,1.1581,14.1859,5.1003,6.493,3.5471,8.6219,6.2536,7.1458,6.7002,3.1622,1.3294,3.8882,,,,,,,,,,,,,,,70,,,
-3251,0.97905,1.7034,,50-59y,Other,,,17.1968,4.1432,2.526,2.2446,1.1307,ppmi,,,F,,0.39341,4.585,3.8961,0.85521,8.6643,1.5487,0.35247,2.8791,2.683,43.5931,15.4442,229.3759,3.5487,4.2257,1.6097,1.8412,3.0233,6.8691,1.9283,3.0004,0.45006,5.8074,10.3728,8.8742,6.6771,2.22,4.8547,1.7523,18.4961,6.4679,3.6376,0.91341,2.0822,6.3375,13.4566,2.5223,3.9186,3.2736,1.5012,1.3699,4.1082,9.4538,3.0005,2.1139,9.0032,1.9893,2.2428,2.0393,9.639,1.6547,3.8769,1.1259,12.589,4.7596,8.3824,3.4668,10.0394,7.0108,7.8712,6.4393,4.0655,1.3472,4.4138,,,PD,0.071518,PD,,PD,0.34898,4.158,3.7422,0.82606,8.8864,1.773,0.34639,3.322,2.5682,42.8435,15.5805,232.8474,3.7253,4.9228,1.565,1.9581,3.4892,7.1853,1.8907,3.1781,0.54364,5.6536,10.9575,7.822,7.5161,2.17,4.8138,1.7113,17.1105,4.9304,3.4278,0.90615,2.2688,7.1081,13.1041,2.2183,3.9976,3.3792,1.4703,1.3623,3.8079,9.61,2.8138,2.0493,8.4098,1.9592,2.1883,1.6564,10.201,1.5878,3.7863,1.0835,13.2003,4.7857,7.1004,3.6154,9.4183,6.3214,8.0146,6.8429,3.1556,1.1759,4.1543,,,,,,,,,,,,,,,59,,,
-3252,1.084,1.6593,,-50y,Other,,,18.9678,4.6931,2.3999,2.0923,1.071,ppmi,,,F,,0.45112,4.6315,3.8586,0.9302,8.7472,1.84,0.37705,2.9282,3.3037,45.4328,16.6766,269.2939,3.9983,4.0487,1.7247,1.764,3.5131,6.9165,2.0417,3.2996,0.53695,5.7413,10.2569,9.9141,6.7239,2.5108,4.9797,1.9039,19.5714,5.4519,4.0689,1.1395,2.6979,6.7249,13.463,2.8116,4.1486,3.6126,1.5225,1.533,4.552,10.5975,3.194,2.1748,10.4128,2.5473,2.6032,2.0937,11.2437,2.0327,4.073,1.0119,14.1015,5.1894,9.6712,2.9926,9.8895,7.8027,8.6291,7.6337,4.0356,1.5321,4.713,,,PD,0.071439,PD,,PD,0.3797,3.9345,3.801,0.91593,9.9595,2.0198,0.36207,2.9602,2.8971,45.612,16.5362,269.6472,3.7597,4.4381,1.774,1.7126,3.6981,7.3548,2.0147,3.6546,0.783,5.8572,11.0718,8.4901,7.673,2.3901,5.0381,1.7849,19.0603,4.248,3.8335,1.0584,2.729,7.5352,14.0235,2.5618,4.089,3.2834,1.4534,1.5158,4.4877,11.6424,3.1435,2.1192,8.9385,2.2123,2.4129,1.8476,11.8573,1.9156,3.7304,0.94946,14.1098,4.8904,7.8653,3.2981,9.9579,7.2835,8.4532,7.7282,3.5217,1.3319,4.6038,,,,,,,,,,,,,,,47,,,
-3253,0.61584,1.3263,,-50y,Other,,,16.4986,3.6113,2.1208,1.7504,0.69474,ppmi,,,F,,0.3173,3.3645,3.1347,0.71576,7.989,1.3591,0.26997,2.2437,2.3692,38.6661,15.0924,207.1884,3.1618,3.2559,1.3646,1.4477,2.7199,5.8572,1.5568,2.7994,0.45354,4.8662,8.4269,9.5421,5.6215,1.923,3.6892,1.4189,14.4015,5.12,3.0066,0.74055,1.7464,5.1493,10.6427,2.1477,3.3243,2.3638,1.1135,1.3277,3.3619,8.2073,2.528,1.8192,9.0518,1.7368,1.8658,1.7769,8.9769,1.5148,2.9852,0.77532,11.0066,3.739,7.4765,2.8412,8.4261,6.3185,7.9356,6.0155,2.6751,1.1767,4.3235,,,PD,0.057009,PD,,PD,0.29339,2.8417,3.1388,0.68623,8.3998,1.5208,0.26482,2.5153,2.3288,38.0404,14.3968,209.4129,2.9633,3.5969,1.3937,1.5548,2.9025,6.172,1.5508,2.9999,0.44406,4.7,8.8008,6.5116,6.1632,1.865,3.5214,1.3316,14.0672,4.1111,2.9102,0.95635,1.9121,5.5079,10.5452,1.9443,3.3072,2.6826,1.2026,1.3617,3.1232,8.0562,2.4476,1.687,8.0636,1.51,1.8699,1.5319,9.0823,1.3273,3.1336,0.73741,10.5019,3.6627,6.3715,3.4018,7.4723,5.9246,7.5274,6.0937,2.6518,1.0585,4.3343,,,,,,,,,,,,,,,43,,,
-3254,1.1356,1.8794,,50-59y,Other,,,15.5973,4.3723,2.5674,2.4051,1.7106,ppmi,,,M,,0.41609,4.8338,4.1778,0.85819,10.7607,1.749,0.35828,3.0521,2.9834,46.3162,16.3634,255.4506,3.7316,4.6408,1.7267,1.9633,3.7343,7.7356,2.16,3.1286,0.68592,6.2222,10.3784,17.1934,7.4542,2.3979,4.808,1.9794,19.5554,6.2284,3.9546,1.1976,2.7389,7.4363,12.9644,3.3657,4.2446,3.4733,1.4282,1.4778,3.9484,10.137,3.2329,2.3384,10.5913,2.5172,2.4389,2.2104,10.7429,2.0045,4.2294,1.0909,14.1742,5.1477,9.0667,3.3045,10.3645,6.9928,7.7588,6.949,3.8128,1.463,4.363,,,PD,0.060952,PD,,PD,0.35626,3.9983,4.1984,0.80785,11.1605,2.0042,0.3525,3.5167,2.6528,46.3067,15.0112,250.4401,3.5998,5.36,1.7157,1.9723,3.7184,7.7897,1.9363,3.1573,0.56839,6.3664,10.1123,13.8377,8.2027,2.0927,4.6024,1.8336,18.4368,5.4587,3.5547,1.2154,2.8263,8.5963,12.0677,2.7447,4.1952,3.2968,1.4386,1.4516,3.5442,10.2383,2.9748,2.3888,9.0337,2.0999,2.2675,1.8726,10.38,1.553,3.9023,1.0288,14.5841,5.2231,7.7829,4.9611,10.939,6.3471,7.8948,6.9769,3.1854,1.2915,4.0877,,,,,,,,,,,,,,,51,,,
-3257,1.2029,2.7424,,50-59y,Other,,,19.59,4.846,2.7425,2.4252,1.1583,ppmi,,,F,,0.46098,5.0025,4.1898,0.90464,9.4213,1.7326,0.38782,2.6619,3.0519,49.0829,18.5338,279.6457,4.0537,3.8038,1.7468,1.906,3.5778,7.5578,2.275,3.4036,0.59212,5.4305,11.0358,17.4266,7.2076,2.5289,5.3457,1.9939,19.7325,6.0562,4.2351,1.0451,2.4214,7.4279,14.4197,2.7635,4.1975,3.4534,1.5275,1.6178,4.2207,10.1027,3.3349,2.3862,10.6132,2.1231,2.5159,2.2316,11.2688,1.6591,4.1964,1.3196,15.481,5.3684,8.0036,3.276,11.394,7.2952,8.8599,8.1725,4.1937,1.3782,4.8598,,,,0.077769,CN,,HC,0.36884,4.2929,4.3199,0.85613,9.521,1.8443,0.40377,2.9066,2.4886,49.7111,17.3077,284.4999,3.8237,4.339,1.6442,2.0855,3.7447,7.8127,2.1405,3.6689,0.70648,6.4137,11.347,13.7311,7.7819,2.2517,4.8844,1.8074,19.2716,5.015,4.0672,0.95258,2.7216,7.8958,14.536,2.3152,4.2175,3.7918,1.3792,1.6857,4.0505,11.189,2.9844,2.304,9.78,2.0616,2.4757,1.9251,10.8568,1.6724,3.7932,1.3091,15.9679,5.4107,6.9649,3.506,10.1929,7.4502,8.8737,7.7874,3.6244,1.4121,4.6144,,,,,,,,,,,,,,,53,,,
-3260,1.2915,1.4818,,60-69y,Other,,,16.0388,4.8178,2.5919,2.2351,1.4627,ppmi,,,F,,0.39936,4.399,4.2062,0.78362,8.4845,1.652,0.37388,3.1068,3.0135,48.2669,14.7098,212.2144,4.0487,4.6687,1.5665,1.8214,3.4356,6.934,1.8862,2.8428,0.52678,6.3203,10.5401,16.5413,6.701,2.4079,4.6082,1.7376,17.777,6.065,3.8631,1.0883,2.279,6.5744,13.1133,3.1813,3.9689,3.3154,1.4615,1.2007,3.9428,10.6862,2.9955,2.1694,10.4681,2.6496,2.4421,2.06,11.3517,2.1541,3.9024,1.0236,15.3412,4.9527,8.6639,3.9272,11.2545,6.9935,7.4774,7.2882,3.5157,1.5406,3.8938,,,,0.061037,CN,,HC,0.28907,3.8708,3.7615,0.77687,9.3066,1.7358,0.34639,3.537,2.6038,46.3355,14.276,212.2033,3.6223,5.3265,1.5842,2.0648,3.466,7.0081,1.7862,3.0286,0.49201,6.0079,10.7826,14.7463,7.6658,2.1694,4.3441,1.6017,18.2065,4.8894,3.5058,1.0812,2.5803,7.6037,13.9037,2.7619,3.8991,3.4105,1.4415,1.16,3.6729,11.0505,2.7537,2.0159,9.7888,2.0924,2.2539,1.7026,10.4316,1.6303,3.6527,0.95665,15.5822,5.1819,7.8723,4.7175,10.004,7.1447,7.487,7.1323,3.2462,1.2433,3.7253,,,,,,,,,,,,,,,63,,,
-3264,0.94067,1.7765,,60-69y,Other,,,17.453,4.27,2.507,2.176,0.99576,ppmi,,,F,,0.34953,4.2645,3.8601,0.89026,8.1256,1.5833,0.33996,2.7495,2.599,44.1216,15.8509,227.622,3.3769,3.8126,1.8001,1.715,3.601,6.8067,2.0923,3.1558,0.39228,5.4653,9.9345,11.5458,6.4731,2.225,4.072,1.6996,16.4537,5.0483,3.6227,0.92914,2.0012,6.4973,12.3852,2.7818,3.6582,2.9769,1.221,1.4268,3.5549,9.2125,3.1505,2.2684,9.1941,2.5202,2.1272,2.1309,10.0057,2.0804,3.7207,0.94428,13.0797,4.5962,7.9807,2.7023,8.5263,7.2014,7.7626,6.8875,3.1353,1.4608,4.4007,,,,0.059723,CN,,HC,0.31732,3.6497,3.6779,0.90214,8.3823,1.641,0.34547,2.8299,2.4059,44.0648,14.963,230.855,3.4647,4.3567,1.7894,1.849,3.3174,6.8398,2.0535,3.48,0.50722,5.4677,10.0216,10.1051,7.6889,2.0551,4.1231,1.6974,16.2171,3.7559,3.584,0.86728,2.2323,7.1625,12.6101,2.596,4.1975,3.2919,1.4109,1.4614,3.4672,9.6914,3.0035,2.1217,7.9629,1.8885,2.245,1.9373,10.3946,1.5919,3.6033,0.96798,12.3324,4.5316,6.5307,3.5452,7.9759,6.7267,7.8772,7.6471,3.2516,1.3447,4.3042,,,,,,,,,,,,,,,60,,,
-3267,1.4274,1.9706,,70-79y,Other,,,18.6023,4.2359,2.5603,2.2292,1.323,ppmi,,,M,,0.37956,4.5725,4.4813,0.85128,8.4255,1.5758,0.3676,2.5297,2.8552,42.7358,19.5942,247.1889,4.207,4.1162,1.5583,2.0255,3.2837,6.896,2.039,3.0418,0.72754,5.8807,10.8157,11.7516,6.5801,2.3008,5.15,1.8191,16.6148,6.6008,3.9818,1.0634,2.5989,6.9553,13.6746,2.5687,3.8914,2.9731,1.3358,1.4268,3.9732,9.5927,2.956,2.3831,9.3986,2.6258,2.403,2.2021,10.9649,2.3282,3.6807,1.1378,14.9123,5.301,7.7613,3.1711,9.6517,7.1664,8.3894,6.5247,3.2205,1.8391,4.5455,,,PD,0.056823,PD,,PD,0.31614,4.2048,4.3913,0.7893,8.9094,1.7758,0.35347,2.9525,2.543,43.2694,16.1996,247.409,3.7818,4.9365,1.5488,2.2524,3.425,6.7083,1.9118,3.0415,0.61043,5.5196,10.7675,9.3157,7.1733,2.2637,4.931,1.6841,16.0624,4.3609,3.4373,1.15,2.4375,7.1528,12.9752,2.157,3.8066,3.1412,1.6721,1.399,3.782,10.2806,2.5527,2.3029,8.2485,2.2854,2.2049,2.1232,10.3399,2.1212,3.2553,1.0559,15.0958,4.9801,6.4859,3.5512,7.9746,7.1318,8.604,6.9038,3.378,1.5963,4.2846,,,,,,,,,,,,,,,71,,,
-3268,1.7693,2.0176,,60-69y,Other,,,19.8046,5.9176,2.75,2.5723,1.63,ppmi,,,M,,0.47577,4.8916,4.5224,0.93525,9.344,1.5891,0.43675,2.7153,2.874,50.6372,20.0079,258.3992,4.6773,4.4147,1.8592,1.9924,3.8994,8.1982,2.2183,3.3601,0.85776,8.2769,12.9426,17.2024,7.8709,2.3675,5.1554,1.8202,19.9804,6.9842,4.0496,1.2297,2.4221,7.5943,16.0903,3.7643,5.1978,3.1349,1.432,1.4421,4.3715,10.5644,3.5283,2.5918,11.9918,2.9076,2.5293,2.4766,13.0738,2.3943,3.9389,1.2293,16.4122,5.4871,10.2449,3.9648,10.9517,8.7147,8.5262,8.7561,3.6138,1.7067,5.1546,,,PD,0.064283,PD,,PD,0.40595,4.1542,4.2238,0.94121,10.5777,1.9807,0.39525,3.3764,2.9376,52.3843,18.3851,260.246,3.9728,5.5361,1.7877,2.0405,3.901,8.2402,1.8581,3.4363,0.86139,7.259,13.3408,16.3156,9.0436,2.2927,4.6192,1.6607,20.1311,6.0628,3.7181,1.138,2.7887,8.4207,15.2588,3.1582,4.6882,3.684,1.4656,1.4869,4.1578,11.1466,3.1158,2.3746,10.4649,2.1637,2.4653,2.1089,13.093,1.8846,4.0486,1.0265,15.9746,5.7739,7.6291,4.7907,10.3072,8.2079,8.4808,8.7635,3.1688,1.4959,4.8825,,,,,,,,,,,,,,,62,,,
-3269,1.3098,1.8208,,60-69y,Other,,,19.9144,4.9764,2.5089,2.2696,1.1963,ppmi,,,F,,0.48077,4.8735,4.2187,0.84707,8.8453,1.6868,0.40348,3.3413,3.0669,47.9127,16.8478,248.744,4.4961,4.3301,1.4939,2.0723,3.356,7.3359,2.0395,3.1347,0.42941,6.8956,11.1121,16.1304,7.0915,2.6659,4.7709,1.9703,19.6585,6.3817,4.0983,1.0951,2.5666,7.3001,13.611,2.8219,4.387,2.9497,1.6159,1.5165,4.0386,10.2163,3.1077,2.4857,10.363,2.8362,2.594,2.3115,10.5724,2.1986,4.1044,1.2656,14.4381,5.3761,7.8398,3.067,10.6569,7.1099,8.8779,7.6975,4.0644,1.863,5.0506,,,PD,0.07198,PD,,PD,0.39411,4.1164,4.3038,0.87552,8.5972,1.9395,0.3982,3.2045,2.4176,48.9623,15.6938,251.018,3.8452,5.3637,1.5879,2.115,3.8452,7.5965,1.9648,3.4004,0.4741,5.8235,11.6109,14.5333,7.9598,2.5518,4.7184,1.9185,19.0633,4.7595,3.8464,1.1744,2.6689,7.7422,13.4968,2.4785,4.2505,3.2041,1.8969,1.621,3.7537,10.6308,2.8785,2.3335,9.4728,2.2889,2.6933,1.9569,11.69,1.8994,3.9468,1.2504,15.8157,5.2731,7.5067,3.6288,9.8348,7.4793,8.9311,7.4344,3.709,1.4073,4.7747,,,,,,,,,,,,,,,61,,,
-3270,1.1729,1.9999,,50-59y,Other,,,16.5919,4.6486,2.4365,2.058,1.4198,ppmi,,,M,,0.43298,4.5785,3.8378,0.77334,8.0976,1.5203,0.37237,2.541,2.699,41.9349,15.9072,243.8455,3.7163,4.0669,1.4751,1.7984,3.1778,6.547,1.8733,2.8333,0.39857,5.3006,9.2708,13.605,6.6263,2.1216,4.2125,1.7898,16.68,5.2412,3.7063,0.82715,2.0142,6.5274,11.3961,2.8583,3.7572,2.8411,1.2735,1.4013,3.5446,8.9693,3.0206,1.9974,9.3651,2.2716,2.4356,1.9263,9.9583,2.2965,3.6748,1.0622,12.9402,4.4291,7.8458,3.2231,9.4832,6.6736,7.5221,6.57,3.3886,1.5133,4.4522,,,,0.065984,CN,,HC,0.3164,3.7416,3.8443,0.77367,8.3331,1.647,0.33328,3.2184,2.4786,42.61,15.2832,243.5112,3.3239,4.8545,1.4898,1.9508,3.1783,7.1586,1.756,2.9586,0.53015,5.9385,10.1112,12.2126,7.445,2.0603,4.0553,1.6694,16.2934,4.4796,3.3332,0.85789,2.2718,6.7643,11.8845,2.4523,3.9094,2.8903,1.3957,1.4988,3.3592,9.6056,2.693,2.0361,7.2107,1.8884,2.2987,1.7662,9.8246,1.6808,3.5003,0.97837,13.3753,4.1347,6.0085,3.7372,9.5254,6.3683,7.5242,6.6615,3.1317,1.2814,4.3176,,,,,,,,,,,,,,,55,,,
-3271,1.4504,3.326,,50-59y,Other,,,17.6786,5.3311,2.6461,2.3325,1.4384,ppmi,,,M,,0.4371,4.336,4.4399,0.90669,8.1833,1.6012,0.41157,2.2483,2.8181,45.0012,18.0323,271.0765,3.8615,3.5892,1.7528,1.9529,3.2542,7.4835,2.0839,3.0673,0.84153,5.6614,11.4293,17.2475,6.75,2.2777,4.7518,1.8014,18.2052,5.5578,3.8464,0.9112,2.0154,6.6383,13.7173,3.2711,3.7479,3.0359,1.3661,1.7251,4.285,9.9907,3.1083,2.6238,10.2522,2.265,2.3058,2.4195,10.0184,2.0457,4.9375,1.1121,12.6981,4.2667,8.2082,3.2923,9.2797,7.4432,7.9342,7.8201,3.4433,1.697,4.9403,,,,0.071182,CN,,HC,0.27437,3.8816,4.3189,0.88837,8.6572,1.6364,0.39689,2.5403,2.5225,45.3211,16.5235,274.4502,3.6593,3.9768,1.8253,2.1327,3.4764,7.7839,1.9593,3.3427,0.72234,6.0629,11.6669,15.0512,7.4627,2.0215,4.5142,1.6906,16.9928,4.7118,3.3392,1.0573,2.3184,6.9187,12.4973,2.6856,4.0417,3.237,1.5848,1.6057,3.8467,10.2676,3.0665,2.3927,8.6416,2.1359,2.2071,2.07,10.0476,1.8147,4.9613,1.0394,13.884,4.6885,6.9415,3.9589,9.0834,6.9593,8.1901,7.9574,2.9908,1.4825,4.6697,,,,,,,,,,,,,,,58,,,
-3272,0.86137,2.0055,,-50y,Other,,,22.5482,5.281,2.8605,2.3405,1.0399,ppmi,,,M,,0.48142,5.3021,4.737,0.99092,9.2624,1.6403,0.43856,2.3984,3.1416,52.8893,20.8225,299.234,4.3457,3.8773,2.0032,2.0471,3.3631,8.2329,2.4687,3.7038,0.54133,6.372,12.5132,7.708,6.9255,2.297,5.3254,2.0989,19.048,6.2567,4.4629,0.92399,2.5649,7.1824,15.406,3.1677,4.3326,3.1693,1.3879,1.7073,4.541,10.7127,3.7842,2.6317,9.9346,2.7211,2.4478,2.5949,11.6054,2.3991,4.6219,1.3536,15.6983,5.2579,8.9577,3.3891,11.2988,8.17,9.3267,9.2896,3.733,1.7283,5.5051,,,PD,0.079564,PD,,PD,0.45094,4.2325,4.7817,0.91543,10.5947,1.9838,0.44032,2.8222,2.8376,52.6964,19.6996,307.6202,4.1242,4.072,1.9535,2.0618,3.9553,8.5032,2.3629,3.7735,0.54464,6.7557,12.7277,7.0008,7.706,2.5244,4.8939,2.0312,19.432,4.9626,4.3044,1.1435,2.7616,8.1624,15.418,2.5072,4.3139,3.7652,1.7839,1.7346,4.2656,10.9031,3.473,2.3526,8.4213,2.4993,2.8855,2.1324,10.6729,1.9584,4.4383,1.2912,14.7005,4.7688,7.6968,3.9896,10.1785,7.7436,9.3059,8.623,3.1396,1.5197,5.0712,,,,,,,,,,,,,,,39,,,
-3274,2.7078,3.0835,,+80y,Other,,,19.1826,4.8347,2.0829,2.0966,2.2385,ppmi,,,M,,0.40793,4.3686,3.9667,0.75962,8.216,1.0734,0.36707,2.3958,2.4799,41.4225,21.9121,325.6604,3.662,3.7978,1.4268,1.4499,2.706,6.2289,1.8064,2.7963,1.2089,5.9125,10.1324,29.8956,6.5646,1.6182,4.0813,1.467,11.8207,5.6315,3.1055,1.1198,2.6469,6.2609,12.9616,3.5046,3.5368,1.7325,0.87005,1.7108,3.8788,9.8855,2.9638,2.676,8.7269,2.2056,1.7223,2.2932,7.9534,1.8006,4.0654,1.3183,10.1135,4.5891,7.5812,3.0248,9.0689,6.3144,7.9097,6.0901,2.2755,1.3967,5.3218,,,,0.085167,CN,,HC,0.3349,3.8851,3.9292,0.7776,8.7154,1.4046,0.37357,2.8772,2.4172,41.221,21.2066,339.0075,3.2387,4.4353,1.4547,1.7366,2.9186,6.4418,1.6385,2.7205,1.2778,5.9792,10.1309,29.5879,7.1979,1.8681,3.9177,1.4926,11.8486,4.589,3.0136,0.99535,2.5626,6.4935,11.8233,2.7909,3.7915,2.2225,1.2401,1.751,3.4094,9.7594,2.6309,2.4394,7.5581,1.9925,2.0545,2.0275,7.7632,1.4395,4.0416,1.1841,9.5582,4.3753,6.0474,3.3694,8.5014,5.3301,7.6381,6.4239,2.516,1.3436,4.995,,,,,,,,,,,,,,,81,,,
-3275,1.4152,2.9072,,60-69y,Other,,,20.6867,5.4008,2.7809,2.7435,1.5826,ppmi,,,M,,0.47551,5.1706,4.7777,0.92518,9.5785,1.7433,0.42542,2.4626,3.51,49.6414,17.3406,255.224,4.1147,4.4907,1.6889,2.053,3.544,8.2834,2.2849,3.3919,0.58683,7.8055,12.2907,20.1341,7.9744,2.4165,5.5394,1.9345,19.1754,7.0319,4.1816,1.0841,2.518,7.8871,15.9105,3.4558,4.9907,2.9751,1.6401,1.666,4.9279,11.9166,3.5502,2.6445,10.4305,2.298,2.5282,2.7845,11.2331,1.9914,5.0332,1.3296,15.0921,6.1074,8.447,3.6947,10.2669,7.6313,8.0074,8.9947,3.6562,1.7049,4.8417,,,PD,0.075281,PD,,PD,0.42048,4.2375,4.7331,0.90821,10.1645,1.8386,0.39991,3.1089,3.162,49.0031,16.8639,253.8868,3.7366,5.6976,1.6794,2.1583,3.8335,7.865,2.1881,3.6233,0.66203,7.3106,12.025,17.9222,9.0162,2.3893,5.2392,1.8592,19.6595,5.3479,3.8367,1.1783,2.8516,8.5879,14.6614,3.34,4.9883,3.4975,1.6216,1.5942,4.2506,12.181,3.1134,2.4241,8.9855,2.164,2.3676,2.1329,10.5287,2.078,4.5473,1.2586,15.2683,6.016,7.425,4.6227,10.6498,7.9077,8.4257,8.6942,3.6298,1.4358,4.3939,,,,,,,,,,,,,,,69,,,
-3276,0.93587,1.7915,,50-59y,Other,,,16.1015,4.4413,2.2928,1.9926,1.0071,ppmi,,,F,,0.45183,5.2055,4.2818,0.84329,9.898,1.61,0.37499,2.2336,2.713,44.0455,15.3371,228.5965,3.6832,3.9644,1.6117,2.1829,3.3501,7.3949,2.1783,3.1915,0.35373,6.1626,11.1094,6.3025,6.5907,2.3056,5.2835,1.9913,18.5547,6.7991,4.0249,0.9994,2.4237,7.3264,14.6906,2.5388,4.1445,3.3318,1.35,1.4063,4.3262,10.5203,3.1067,2.2881,10.7737,2.2304,2.3449,2.2785,11.4238,1.8941,3.6431,1.1815,14.8575,5.7057,9.4034,3.0816,10.6385,7.9066,7.737,7.3864,3.7938,1.4473,4.3447,,,,0.07527,CN,,HC,0.37274,4.1632,4.0338,0.88908,10.1613,1.8527,0.3881,2.6404,2.6658,44.8421,13.9512,232.9051,4.0827,4.5667,1.6781,2.2208,3.631,7.6035,2.1976,3.5186,0.44437,5.9217,11.6148,6.0314,7.7173,2.2115,4.9605,1.8364,18.5716,4.321,3.9216,1.1938,2.4639,7.7748,14.4315,2.2334,4.0618,3.7674,1.4861,1.4308,4.3077,11.2224,3.0442,2.2481,10.0504,2.1758,2.3674,1.9641,11.7524,1.9142,3.6051,1.1938,14.984,5.3404,8.4874,3.5752,9.368,8.1879,7.7178,7.4363,3.4993,1.4124,4.1048,,,,,,,,,,,,,,,55,,,
-3277,1.2942,2.5916,,60-69y,Other,,,19.1232,4.5821,2.5506,2.1933,1.1355,ppmi,,,M,,0.43953,4.7366,4.2923,0.862,8.7447,1.5436,0.37845,2.6085,3.4641,46.7681,18.5083,279.4438,3.8917,3.7757,1.6049,1.7964,3.6068,7.2043,2.1419,3.2365,0.69099,5.7786,10.8033,16.7063,7.4358,2.326,4.6766,1.9014,18.3782,5.6586,3.9283,0.93685,2.2522,7.0022,13.2712,3.0963,4.1557,3.2451,1.4331,1.8211,4.3193,10.2227,3.1959,2.3153,9.9347,2.4584,2.6026,2.153,10.9021,2.2716,4.3727,1.1614,14.5111,5.1529,9.0977,3.2081,10.9946,6.8703,8.3719,7.458,3.6497,1.5797,5.1024,,,,0.070778,CN,,HC,0.27002,3.8965,3.9356,0.86216,10.02,1.9235,0.36965,3.0211,3.3304,46.6365,17.312,278.871,3.5489,4.3185,1.5809,1.8261,3.8084,6.9506,1.9668,3.371,0.80413,6.9598,10.6292,17.4324,8.043,2.2286,4.4211,1.7284,17.7366,5.2872,3.8002,0.93732,2.4464,7.4959,13.2257,2.8142,4.4399,3.3771,1.457,1.7219,4.0029,10.9957,2.7899,2.3092,8.7785,2.0917,2.3901,2.0074,11.4382,1.6855,4.2043,1.1011,14.1247,4.8213,7.7148,3.9528,10.4492,6.9176,8.8638,7.4332,3.1716,1.3657,4.7408,,,,,,,,,,,,,,,66,,,
-3278,1.6975,2.1902,,60-69y,Other,,,21.0316,4.9822,2.8678,2.1698,1.15,ppmi,,,M,,0.4291,4.7204,4.4558,0.89081,10.1078,1.8235,0.40291,2.7547,2.6754,48.3133,19.1257,283.8437,4.3427,4.1508,1.679,1.9796,3.6992,7.8576,2.2105,3.1653,0.53202,6.7663,12.0449,12.6342,7.3542,2.3393,5.0071,1.9516,19.0175,6.7129,4.3278,1.3358,2.5734,7.2051,14.8418,3.4154,4.6498,3.0676,1.3698,1.5218,4.9297,11.9213,3.1776,2.554,12.3299,2.3672,2.551,2.3842,13.4388,2.5875,4.3817,1.271,15.1768,5.3429,9.4293,3.7694,11.6927,7.807,8.4016,8.0444,3.7326,1.8859,5.2858,,,PD,0.075408,PD,,PD,0.39536,4.2262,4.4882,0.8889,10.5389,2.0223,0.38512,3.3802,2.7112,48.1424,18.0911,283.3529,4.0279,4.8243,1.7421,1.989,4.1394,7.5905,2.1076,3.3728,0.46872,6.9399,12.0714,11.303,7.5994,2.3776,5.007,1.9528,19.4478,5.5058,3.8428,1.141,2.6164,7.5629,15.5397,3.0425,4.7181,3.4328,1.6108,1.6224,4.4153,12.3664,2.8721,2.4194,11.0184,2.2566,2.3059,1.9975,10.8748,1.7651,4.1716,1.2093,15.0144,5.0607,8.3727,4.315,11.1728,7.4557,8.5729,7.6114,3.5147,1.3644,5.0803,,,,,,,,,,,,,,,66,,,
-3279,1.3258,2.6576,,60-69y,Other,,,18.8254,5.0462,2.3189,2.3483,1.4844,ppmi,,,M,,0.47104,5.2202,4.8624,0.89327,9.2642,1.6978,0.38796,2.8965,2.9734,49.273,18.2017,277.4723,4.369,4.4451,1.8012,2.2361,3.4776,7.5308,2.3426,3.3118,0.46584,6.6496,11.118,10.0577,7.6714,2.6102,5.2279,2.017,18.3709,6.2251,4.3907,1.1819,2.8622,7.8249,14.0226,3.4406,4.56,3.3265,1.6505,1.6986,4.5217,10.5753,3.4137,2.6584,10.9359,2.5421,2.7791,2.5013,13.5767,2.1079,4.2014,1.3607,14.6474,5.7932,8.9916,3.5404,11.0379,7.5,9.296,7.7537,3.5931,1.714,5.1178,,,PD,0.084465,PD,,PD,0.41001,4.6013,4.8093,0.89292,9.8357,1.9208,0.39774,3.4974,2.8862,48.6635,17.3604,284.9911,4.1749,5.1557,1.8023,2.2525,3.6936,7.2991,2.2834,3.5384,0.64277,7.0564,11.1194,12.681,8.3073,2.509,5.0817,1.9421,18.3485,4.7747,4.1235,1.2537,3.0227,8.0818,14.6302,2.9929,4.4057,3.5446,1.9277,1.733,4.1437,11.5704,3.0646,2.6485,9.673,2.2851,2.6722,2.1373,12.0744,2.0353,4.7687,1.2605,13.3344,6.0173,8.1559,3.8575,9.1961,7.7368,8.8828,8.037,3.8097,1.5138,4.7708,,,,,,,,,,,,,,,63,,,
-3280,1.2543,2.8135,,-50y,Other,,,20.2014,6.1053,3.0412,2.5149,1.4784,ppmi,,,M,,0.49503,5.3132,4.4599,0.93389,10.9408,1.7482,0.44499,2.7241,3.0474,56.0814,18.5597,267.9373,5.0522,4.5724,1.9117,2.1455,3.5717,9.0133,2.3663,3.5106,0.51998,7.5599,12.9747,12.1677,8.2448,2.6522,5.26,2.0835,20.5422,7.0971,4.2785,1.2161,2.7043,7.7594,15.8811,3.6079,5.2845,3.6428,1.6968,1.4933,5.0901,12.2944,3.6184,2.6238,11.337,3.2085,2.8551,2.6198,12.2493,2.6392,4.6981,1.328,15.5864,5.4376,11.1912,4.3294,13.3895,7.9211,9.5025,9.0513,4.2682,2.1553,5.2036,,,PD,0.074963,PD,,PD,0.41996,4.6372,4.3112,0.91618,13.1258,2.0805,0.42558,3.33,2.8507,54.5817,16.8585,269.2503,4.5919,5.9831,1.8217,2.2205,3.7897,9.1347,2.2882,3.7183,0.65768,8.2892,13.659,12.588,9.9443,2.491,5.1909,2.0054,20.8552,6.2751,4.0419,1.0604,2.6918,8.9355,16.275,3.276,5.4147,3.6964,1.7754,1.6055,4.6033,13.1079,3.1459,2.6108,9.6849,2.5794,2.4824,2.2502,12.0782,2.2281,4.5496,1.2507,14.964,5.8281,9.7067,5.0717,12.4834,8.6173,9.4309,8.9667,3.8661,1.6147,4.8872,,,,,,,,,,,,,,,48,,,
-3281,1.0769,1.6969,,50-59y,Other,,,16.2435,5.0662,2.5375,2.3554,1.6118,ppmi,,,M,,0.44441,5.0031,4.2462,0.87627,10.4965,1.5589,0.36174,2.2574,2.8048,47.433,17.0438,239.5124,3.9854,3.7067,1.7033,1.987,3.3261,7.9814,2.0183,3.5139,0.59273,6.7208,11.8355,15.1335,7.0291,2.549,4.7839,1.813,18.1748,6.7088,3.8515,0.87326,2.1962,6.7214,15.3567,3.1527,4.8233,2.9725,1.58,1.441,4.288,10.5226,3.3845,2.322,10.8511,2.3202,2.7356,2.2878,11.1051,1.9187,3.7758,1.21,13.522,4.9839,8.7675,3.6509,11.3972,7.519,7.4543,7.7593,3.9187,1.4891,4.5433,,,PD,0.06199,PD,,PD,0.35582,4.5031,4.0714,0.84533,11.6387,1.7247,0.3621,2.5772,2.6565,45.9983,16.7768,237.5328,3.939,4.4553,1.6945,2.0939,3.4764,8.1658,1.9752,3.3347,0.56759,6.4183,12.0968,15.5951,7.55,2.3935,4.7649,1.7149,17.5451,5.2854,3.4619,0.76022,2.0899,7.1744,15.1194,2.4683,4.6946,3.7721,1.7029,1.4161,3.8944,10.5786,3.0119,2.2751,8.7206,2.3705,2.3049,1.9126,10.227,1.9196,3.7142,1.1438,14.389,4.8303,7.6479,4.0547,10.983,7.4812,7.2817,7.5587,3.8782,1.5231,4.3472,,,,,,,,,,,,,,,57,,,
-3282,1.469,1.8793,,60-69y,Other,,,17.7321,4.4769,2.7149,2.388,1.1522,ppmi,,,F,,0.44577,4.4292,4.3462,0.77743,8.2637,1.5459,0.3977,2.5002,3.0568,45.4342,16.7956,233.5247,3.3704,3.8898,1.5023,1.8091,2.7648,6.7078,1.9525,2.843,0.46461,4.8231,9.9483,10.5724,6.2441,2.2957,4.4462,1.6826,17.432,5.262,3.9331,0.8243,2.1104,6.6061,12.0586,2.3892,3.8048,3.0085,1.3798,1.4409,3.9817,9.729,2.735,2.3822,8.6318,2.2426,2.4662,2.075,9.9042,1.9711,4.2792,1.2094,11.8685,4.9447,7.8749,3.0483,9.3371,6.0747,7.9602,6.5714,3.646,1.6046,4.6895,,,PD,0.067343,PD,,PD,0.3704,3.3637,4.1403,0.71106,8.2073,1.7287,0.35442,2.9421,2.8768,45.125,16.1285,238.5327,3.5197,4.2823,1.4512,1.9684,3.1889,6.4507,1.7951,3.1813,0.535,4.7932,9.7583,9.8841,7.3684,2.0941,4.4528,1.5963,18.2722,3.9023,3.5717,0.81925,2.3155,7.5265,12.3038,2.0154,3.6893,3.3688,1.4216,1.495,3.9605,9.9583,2.7358,2.3218,7.0508,1.9518,2.3623,1.8329,10.1703,1.7987,3.968,1.0543,12.6867,4.7948,7.3255,3.3975,8.1141,6.938,8.0417,7.0997,3.1563,1.2243,4.3244,,,,,,,,,,,,,,,62,,,
-3284,1.2368,2.2893,,60-69y,Other,,,15.9045,3.4291,2.1905,1.9599,1.1814,ppmi,,,F,,0.38022,4.2907,3.3335,0.76903,8.0053,1.4596,0.33499,2.234,2.9118,39.6692,15.1666,235.1199,3.225,3.4505,1.556,1.6135,2.6869,6.9544,1.7342,2.6796,0.56485,5.6699,10.1227,19.0732,6.3688,1.9823,4.0781,1.6447,15.158,4.8409,3.3698,0.95526,2.2752,6.5353,12.7828,2.5103,3.6189,2.7265,1.1131,1.3064,3.9233,9.4327,2.9017,1.8087,9.5823,2.0827,1.9326,1.9499,9.3585,1.7947,3.4673,0.91116,11.7186,4.6417,8.4956,2.7664,9.4463,6.7045,7.5868,7.0139,2.913,1.1904,4.1074,,,PD,0.071264,PD,,PD,0.30548,3.4105,3.1023,0.7783,9.1173,1.6368,0.3497,2.5349,2.3706,38.9139,14.7337,239.1789,3.2308,3.9119,1.6016,1.6402,3.0764,6.7225,1.7256,2.8045,0.64983,5.3319,10.1265,14.2262,7.0266,1.8922,4.007,1.5772,15.7679,3.8352,3.3118,0.89847,2.2772,7.1481,11.8878,2.0663,3.8114,2.8022,1.2373,1.3101,3.643,10.0132,2.6152,2.0334,7.6101,2.0413,2.0431,1.7456,9.1246,1.648,3.5152,0.83302,11.5828,4.8844,6.9499,3.1899,8.7279,7.0349,6.7798,7.5505,2.8884,1.1463,4.112,,,,,,,,,,,,,,,64,,,
-3285,1.7564,1.8758,,60-69y,Other,,,19.3131,4.8515,2.6203,2.2931,1.3118,ppmi,,,M,,0.50464,6.2181,4.8784,0.95653,10.2068,1.9728,0.43788,3.8159,3.1527,49.9099,19.2655,303.3251,4.5039,5.2515,1.7092,2.101,4.2573,8.5514,2.4859,3.6717,0.59457,8.3078,13.3944,11.8223,8.7264,2.5081,5.77,2.4041,20.5742,7.8246,4.7659,1.2302,2.8907,9.1534,16.1466,3.7966,5.6301,3.503,1.4386,1.6491,5.9034,12.5649,3.693,2.8242,11.8438,3.2182,2.623,2.5948,14.2744,2.9283,4.5536,1.5529,16.9815,6.3066,10.1265,4.4423,12.6761,9.0318,9.0672,7.5224,4.0653,1.8319,5.2648,,,PD,0.09701,PD,,PD,0.43004,4.7178,4.7756,1.0239,11.4067,2.304,0.47766,4.1886,2.9044,50.1691,18.1147,308.866,4.7412,5.903,1.996,2.0706,4.705,8.5576,2.322,3.9922,0.5968,8.4242,13.2263,14.166,9.6414,2.6098,5.3389,2.2377,21.199,6.4066,4.5089,1.5196,3.473,9.8329,16.9772,3.2085,5.3122,3.6257,1.7618,1.5422,5.3571,13.7193,3.4591,2.7107,11.2959,2.7342,2.8711,2.4238,12.9175,2.1509,4.4468,1.542,17.3278,6.4526,8.0048,4.997,11.252,8.8343,8.9791,9.139,3.7769,1.7488,4.9966,,,,,,,,,,,,,,,68,,,
-3288,0.84702,1.4874,,-50y,Other,,,19.0911,4.5616,2.3036,2.1292,1.126,ppmi,,,F,,0.48641,5.7677,4.732,0.8751,11.0941,2.1556,0.39961,3.2652,3.3705,42.4068,16.7039,275.9573,4.6903,4.6765,1.6957,2.2004,4.0726,7.8997,2.4907,3.2394,0.36463,7.6169,12.0223,12.1315,8.2971,3.0202,5.2119,2.3656,22.2699,7.4973,4.6459,1.0969,2.4887,8.224,14.8208,3.74,5.1988,3.9873,1.7313,1.5942,4.8341,11.3124,3.1741,2.8311,12.3747,3.2164,2.9161,2.5882,13.1615,2.3519,4.3145,1.2592,15.2757,5.9223,10.2736,4.0793,11.7331,7.3768,9.7767,8.3718,4.5913,1.9698,5.1037,,,PD,0.072978,PD,,PD,0.38624,5.0831,4.4279,0.82769,11.3543,2.2376,0.40144,3.6494,2.8755,45.149,16.9333,280.112,4.4977,5.695,1.6212,2.2363,4.4003,7.9592,2.1915,3.3996,0.49162,7.5762,12.447,11.1032,9.2121,2.6964,5.5282,2.1501,21.6137,5.8705,4.0823,1.1147,2.7461,8.545,14.9101,3.3779,4.9543,3.6623,1.8584,1.6199,4.5895,12.287,2.8323,2.7635,10.7121,2.8322,2.7564,2.2673,12.5605,2.1939,4.0292,1.2197,15.7271,5.7501,9.0702,4.7709,11.6778,7.8328,9.9385,8.104,3.7468,1.6138,4.5343,,,,,,,,,,,,,,,47,,,
-3290,1.1756,2.9278,,60-69y,Other,,,19.8544,5.5392,2.8004,2.6683,1.0515,ppmi,,,M,,0.48486,4.8491,4.5603,0.84267,9.2606,1.6,0.4126,2.624,3.0099,53.821,19.4688,246.4777,4.0612,4.0664,1.6825,2.0445,3.2448,7.5874,2.1076,3.0463,0.4139,6.8784,10.9616,13.5758,7.0284,2.5297,4.4226,1.8001,17.3802,6.2806,4.1904,1.0181,2.5522,7.0845,14.3545,3.0621,4.3585,2.9865,1.626,1.5653,4.0009,10.0363,3.2295,2.3499,10.6658,2.4465,2.6701,2.2545,11.0967,1.8555,4.5331,1.3531,14.9722,5.1918,8.9258,3.1509,10.0886,7.504,8.1189,7.9234,4.0066,1.3682,4.6736,,,PD,0.079086,PD,,PD,0.39145,4.1215,4.3388,0.85154,10.7323,1.8619,0.37364,3.1184,2.6936,53.3924,18.6005,249.2599,4.0292,4.5356,1.6026,2.1952,3.5218,7.3721,1.9559,3.2945,0.4851,6.2306,10.939,12.216,8.2081,2.3171,4.7786,1.8288,17.1892,5.3406,3.6211,1.1327,2.6411,7.3916,14.3242,2.3375,4.509,3.4159,1.5702,1.5182,3.7654,10.8303,2.8978,2.1816,9.3636,2.0884,2.4645,2.0722,10.4812,1.8181,3.9348,1.2654,14.1911,4.9225,8.057,3.7915,9.1881,7.8183,8.3649,8.0063,3.4255,1.4498,4.4175,,,,,,,,,,,,,,,63,,,
-3300,0.9719,3.8781,,50-59y,Other,,,19.7201,4.9739,2.6969,2.1477,1.1568,ppmi,,,M,,0.45629,4.5029,4.1284,0.89804,8.1149,1.4225,0.38114,3.6038,3.3069,49.9037,16.64,214.1344,3.8912,4.9641,1.7115,1.7847,3.1225,8.0944,1.8761,2.9961,0.42045,7.3316,12.2439,12.0298,8.0815,2.3101,4.6513,1.5927,19.238,6.1321,3.6463,1.1897,2.6596,6.6635,13.8693,3.788,4.8502,3.3025,1.5015,1.4649,4.4871,10.87,3.4217,2.1653,11.981,2.104,2.4905,2.3134,13.9867,2.0969,4.4335,1.0589,15.0419,5.7188,8.1801,3.628,9.9267,7.2799,8.5335,7.7512,3.9942,1.7585,4.8206,,,,0.074677,CN,,HC,0.41702,3.8452,4.131,0.85103,10.8227,1.5607,0.40915,3.4552,3.4034,50.687,16.6359,217.223,3.6179,4.7559,1.7027,2.0654,3.4105,8.0656,2.0538,3.1245,0.4346,7.0516,12.0877,11.0611,8.9495,2.1215,4.6532,1.6444,17.9982,5.4741,3.5243,1.0455,2.5348,7.7687,14.1108,3.2679,4.4991,3.74,1.5447,1.4349,4.0835,10.349,3.0361,2.135,10.266,2.2131,2.2722,2.0494,13.8807,2.3486,4.4009,1.0633,13.3453,5.2494,8.3276,4.3767,10.1949,7.386,8.2607,7.5339,3.765,1.5916,4.5422,,,,,,,,,,,,,,,52,,,
-3301,0.86767,1.7852,,50-59y,Other,,,18.1822,4.2092,2.3691,2.0195,1.0988,ppmi,,,M,,0.45865,4.5897,4.0932,0.95569,10.3844,1.7877,0.38947,4.3444,3.2789,44.4643,16.1291,231.8096,4.081,5.671,1.8974,1.8345,3.65,8.1371,2.0819,3.2244,0.38171,7.8168,12.2442,13.602,8.5714,2.724,4.7114,1.774,20.7027,6.8038,4.1054,1.207,2.965,7.1643,15.5826,4.3853,4.7804,3.6569,1.5178,1.4337,4.6503,11.1067,3.4804,2.0765,12.4944,2.5384,2.672,2.3062,14.7808,2.0977,4.2151,1.181,14.9269,5.4466,9.3264,4.1442,10.991,7.9977,8.455,8.3989,3.9948,1.7011,4.6723,,,,0.071135,CN,,HC,0.41477,3.845,3.8549,0.88497,11.5937,1.9312,0.39725,4.4226,3.4559,45.8138,15.2504,238.4337,4.1339,5.8684,1.8546,1.8026,3.8999,8.6419,2.2028,3.3442,0.39896,7.1522,12.6191,13.3908,9.5617,2.4408,4.508,1.7259,20.3815,6.1129,3.9124,1.2423,2.7577,8.0627,14.9628,3.7727,4.8083,3.3967,1.506,1.4564,4.6442,11.0593,3.1243,2.3183,11.3083,2.4672,2.3898,2.0578,15.7382,2.1627,4.257,1.105,15.2272,5.3166,7.9233,5.1094,11.3863,7.3476,8.1887,8.414,3.5533,1.5987,4.482,,,,,,,,,,,,,,,52,,,
-3305,2.1814,2.4001,,60-69y,Other,,,23.0148,5.599,3.1873,2.3439,1.9268,ppmi,,,M,,0.57503,5.4621,4.5706,1.0125,11.8442,2.1004,0.46399,3.5372,3.8166,51.8702,20.0614,274.4101,5.0074,5.0876,1.9793,2.1808,4.449,8.0567,2.4167,3.524,0.51812,7.321,12.2958,17.1096,9.3491,3.1307,5.271,2.332,22.5314,7.3266,4.7608,1.4204,3.3204,9.2244,14.5125,3.8662,4.8711,3.8577,1.805,1.6602,4.985,12.9354,3.6856,2.5942,13.4934,3.0159,2.7495,2.7535,15.6034,2.5181,5.0305,1.4553,16.1346,6.4686,9.6316,4.0059,12.7153,7.9696,9.624,8.3623,4.8595,1.9745,5.5764,,,PD,0.082398,PD,,PD,0.50861,4.3925,4.5121,0.98738,12.3804,2.1665,0.46599,3.8363,4.041,52.8846,19.9198,279.2911,4.546,5.934,1.9087,2.0447,5.3398,8.3066,2.6124,3.7793,0.61047,8.7931,12.9804,16.5389,9.594,2.7468,4.8154,2.3711,21.5916,7.2014,4.6115,1.3189,3.0954,11.2163,14.5121,3.9462,5.2091,3.5081,1.8246,1.6107,4.6623,13.1906,3.2342,2.6773,11.3711,2.8013,2.6713,2.3659,14.9744,2.4537,4.926,1.3942,17.0098,6.5475,9.4035,5.1692,12.5255,7.1743,9.4806,7.9905,3.8564,1.7757,5.3414,,,,,,,,,,,,,,,65,,,
-3307,2.0706,2.4726,,60-69y,Other,,,21.8213,5.5438,2.871,2.5445,2.0971,ppmi,,,M,,0.48091,5.6416,4.6624,0.98268,11.0428,1.9719,0.4432,4.121,3.7921,51.1635,15.7324,252.5026,4.78,5.6726,1.8884,1.8883,3.951,8.1511,2.3207,3.6785,0.91598,7.6062,12.3176,29.3252,9.2385,2.8902,5.3602,2.0754,22.2208,6.7933,4.5389,1.3586,2.7348,8.9706,16.1155,4.399,5.1693,3.5163,1.589,1.6375,5.1761,14.6441,3.5933,2.7523,14.8984,2.7374,2.7005,2.7591,13.8652,2.1633,4.988,1.3229,16.0022,6.3566,9.6021,4.1205,12.2772,8.6931,9.6979,8.9919,4.2011,1.8386,5.7085,,,PD,0.093015,PD,,PD,0.50521,4.981,4.5467,0.9628,11.5529,1.9815,0.48247,4.5122,3.8799,52.6304,15.7969,261.0624,3.9128,6.4997,1.8851,1.9116,4.2923,8.6641,2.4448,4.0401,0.76239,7.9073,13.8018,16.2888,9.9374,2.3959,5.6893,2.0783,21.0796,5.9504,4.2848,1.293,2.6848,9.7885,16.9912,3.9482,5.2768,3.5006,1.5667,1.5661,4.9465,14.3266,3.3416,2.7178,11.7527,2.2614,2.6543,2.5145,13.1267,1.965,4.9918,1.3264,15.8097,6.0553,9.5222,5.1876,12.7321,8.3111,9.5171,8.9428,4.0101,1.5908,5.406,,,,,,,,,,,,,,,66,,,
-3308,2.2118,2.1088,,60-69y,Other,,,22.1209,5.052,2.8442,2.2666,1.6016,ppmi,,,M,,0.52062,4.7989,4.4625,0.99361,10.0979,1.6195,0.42172,3.9029,3.4158,52.8985,18.2255,255.7066,4.3615,5.6823,1.8108,2.1169,3.6791,8.4546,2.1703,3.4234,0.60396,7.3855,12.7837,19.7458,8.0422,2.5909,5.2454,2.0031,18.3997,6.8007,4.3138,1.3346,3.1223,7.2106,15.1225,3.897,4.6672,3.5062,1.6692,1.7783,5.1581,11.833,3.5499,2.4623,12.8527,2.645,2.5598,2.5527,15.1559,2.3993,4.8514,1.3741,15.5614,6.2858,8.8883,3.6461,10.5738,7.8118,9.4068,7.629,4.0789,1.8914,5.7021,,,PD,0.084834,PD,,PD,0.45298,4.4673,4.4797,1.0134,11.5114,1.824,0.42996,3.8309,3.5938,53.7725,17.9231,262.4409,4.4667,6.1002,1.8772,2.1461,3.7722,8.9922,2.1382,3.8496,0.68046,7.8891,13.2006,16.0075,9.1111,2.4283,5.0734,1.8017,17.726,6.3219,4.0115,0.98048,2.608,8.2148,15.4636,3.6305,4.9935,3.7165,1.5999,1.7347,4.5051,11.6864,3.4043,2.5597,12.4629,2.4766,2.4721,2.4697,16.0033,2.2265,4.635,1.2456,15.3826,6.0644,9.1117,4.8086,11.7774,9.1434,9.3725,7.8282,3.4601,1.8199,5.4729,,,,,,,,,,,,,,,67,,,
-3309,0.68133,1.4381,,50-59y,Other,,,16.6672,3.8912,2.374,1.8868,0.81529,ppmi,,,F,,0.41863,3.8229,3.7189,0.73656,9.1965,1.5265,0.36768,2.6964,2.9498,41.5119,13.9327,197.2092,3.4206,3.5408,1.4067,1.8632,3.4491,6.4589,1.8107,2.7741,0.29659,6.2035,9.8448,7.3783,6.056,2.334,4.0465,1.6609,16.8363,5.712,3.6236,0.98968,2.2201,5.7909,12.7825,2.9402,3.815,3.0456,1.4046,1.3025,3.9765,8.7323,2.7637,2.0029,10.5449,1.8659,2.3149,1.7841,11.5422,1.5574,3.8273,1.0476,12.6328,4.6456,8.2234,3.207,9.9044,6.7662,7.6111,5.7813,3.7415,1.1899,4.3637,,,PD,0.085323,PD,,PD,0.38136,3.4467,3.6085,0.71588,9.2576,1.6273,0.36522,2.7232,2.8789,41.7431,13.6337,201.3922,3.5617,3.954,1.4071,1.8478,3.8054,6.4046,2.004,2.8618,0.31249,6.2373,10.0245,7.8014,6.7485,2.1313,4.0282,1.7553,16.6447,5.3311,3.3953,1.0741,2.3636,6.576,11.9933,2.7559,3.838,3.3273,1.4849,1.3499,3.6314,8.815,2.4241,2.0485,10.2452,1.9978,2.1849,1.7387,10.8806,1.5969,3.6639,1.0392,12.189,4.1921,7.0267,4.0258,9.476,6.3168,7.4867,6.5407,3.5173,1.3436,4.1799,,,,,,,,,,,,,,,54,,,
-3310,0.95676,1.6833,,60-69y,Other,,,16.1123,3.7859,2.4244,1.9142,1.1266,ppmi,,,M,,0.40526,4.6316,3.4381,0.83788,6.9101,1.387,0.34262,2.2615,2.7447,40.9003,13.8237,191.1566,3.6771,3.9097,1.5945,1.6771,3.3003,6.4686,1.8057,3.0296,0.53465,5.1287,9.35,13.5699,5.9753,2.057,4.3596,1.7053,16.2246,4.7345,3.4441,1.1986,2.6846,6.4744,11.5873,2.6088,3.6309,3.3088,1.2735,1.2214,3.8271,9.9051,3.2073,2.0542,12.2312,2.3853,2.1459,1.9897,12.3157,1.8956,3.6951,1.0888,13.6569,4.8898,7.8314,3.0726,10.1575,6.1534,7.1831,6.7383,3.3924,1.489,4.1392,,,,0.066126,CN,,HC,0.36344,4.1381,3.2362,0.78638,8.6511,1.4834,0.34861,2.4496,2.9738,41.147,13.5204,193.3205,3.524,3.9241,1.5382,1.7369,3.3197,6.3497,1.7912,3.1083,0.58788,5.595,9.5686,14.2678,6.3851,2.0443,4.0758,1.6887,16.4509,4.8198,3.2439,1.0616,2.5529,7.3793,12.0609,2.5278,3.4842,3.2264,1.4515,1.1753,3.4558,9.5878,2.5799,1.9472,10.1247,2.0318,2.0455,1.8621,10.2219,1.7146,3.5774,1.0319,13.8249,5.5137,7.1437,3.9756,9.649,6.3478,7.1516,6.7208,3.4263,1.338,3.9581,,,,,,,,,,,,,,,65,,,
-3311,1.3921,1.7104,,70-79y,Other,,,20.725,4.7475,2.5315,2.1444,1.5213,ppmi,,,M,,0.50076,4.6824,4.826,0.799,8.6654,1.5544,0.4102,3.2512,4.0023,45.5823,17.8161,244.179,4.2079,3.8017,1.563,2.1774,3.7553,6.8077,2.1601,2.9751,0.53042,6.0909,10.4762,15.8431,6.7248,2.4759,4.3762,1.9132,18.2725,5.7165,4.2436,1.1291,2.5229,7.0109,11.8319,3.806,4.2242,3.5652,1.6848,1.6992,4.4727,10.1121,2.9922,2.6322,10.8292,2.4721,2.5119,2.2164,13.6946,2.2454,5.733,1.2878,15.2349,5.0679,8.2434,3.5113,10.9733,5.7927,8.6301,6.9098,4.1468,1.6966,5.0522,,,PD,0.077956,PD,,PD,0.50097,4.1458,5.3184,0.79005,9.4248,1.8094,0.4387,3.0814,4.5307,46.9372,17.4073,248.1568,3.6378,4.1937,1.6653,2.2276,4.3392,7.0964,2.1968,3.1623,0.50618,5.9132,11.1589,16.0972,7.6377,2.3485,4.1304,1.8443,19.291,4.7201,3.999,1.015,2.3705,7.9446,12.6418,3.2344,4.1073,3.713,1.7387,1.6808,4.1558,10.6143,2.8411,2.6068,9.6665,1.6875,2.3562,1.9204,11.4845,1.574,5.4506,1.2328,15.0056,5.2547,6.8626,3.926,11.0552,5.9991,8.4853,7.2365,4.1961,1.3345,4.8352,,,,,,,,,,,,,,,75,,,
-3314,1.3129,1.3764,,70-79y,Other,,,15.7165,4.2507,2.0482,2.0656,1.4786,ppmi,,,F,,0.40629,3.9614,4.1761,0.66622,7.975,1.2802,0.36262,2.41,2.8875,37.1637,12.2107,176.9253,3.424,4.1235,1.3775,1.7638,3.3973,5.8794,1.8152,2.4681,0.47656,5.2211,8.5402,14.5991,6.4713,1.8845,4.0388,1.5787,15.9652,5.6352,3.4778,0.95049,1.9258,6.2804,10.4678,3.1146,3.5912,3.2962,1.1956,1.3165,4.0396,9.5369,2.6886,2.3448,9.7725,2.0099,2.2052,1.9949,11.6974,2.004,4.152,1.167,12.8866,4.5034,7.1375,3.4811,9.4651,5.8801,6.8586,6.4452,3.3172,1.5411,3.9776,,,PD,0.072445,PD,,PD,0.36613,3.441,4.0178,0.71219,9.6673,1.4188,0.36317,2.2096,2.9849,37.9252,12.0079,169.7965,3.2229,3.6708,1.4428,1.7539,3.5867,6.2989,1.7866,2.7906,0.61774,4.9115,9.501,18.5014,6.4156,1.8187,3.6733,1.577,16.2327,4.475,3.2128,0.98668,2.1155,6.9946,11.9203,2.2385,3.1295,3.0777,1.2529,1.2949,3.5762,9.17,2.5257,2.1523,9.6993,1.8237,2.1013,1.7258,11.1572,1.4413,3.8737,1.0805,11.8306,4.7148,6.5024,3.7054,9.6227,5.8642,6.2548,6.5697,3.1376,1.1392,3.7727,,,,,,,,,,,,,,,77,,,
-3316,1.4221,1.9779,,70-79y,Other,,,19.1934,5.3911,2.9161,2.7176,1.668,ppmi,,,M,,0.46097,4.8609,4.6291,0.88993,9.5538,1.8722,0.38231,3.3339,3.2075,50.3589,17.5604,229.8261,3.7885,4.5475,1.7556,2.1799,4.074,7.7288,2.2205,3.0858,0.42238,7.1978,12.3119,15.6464,8.6892,2.8547,4.728,2.0495,20.2881,6.9227,4.4397,1.2867,3.0482,8.1096,15.0382,3.8771,4.7355,3.0274,1.7384,1.4644,4.7611,10.9929,3.3317,2.2027,12.4861,2.2194,2.758,2.1036,15.8158,1.9447,3.9967,1.2693,16.2478,5.3018,9.0073,3.8733,11.0227,7.2193,7.9835,8.567,4.1962,1.4855,4.7833,,,,0.075774,CN,,HC,0.44123,4.4815,4.6189,0.88059,11.3192,2.1021,0.41418,3.2777,3.6709,51.7894,17.1712,235.3941,4.0493,4.5043,1.7738,2.0537,4.4407,8.2924,2.277,3.2699,0.40662,7.6488,13.0084,14.4895,8.8342,2.6114,5.0364,2.044,20.4965,5.909,4.2874,1.2953,2.7947,8.5961,14.8559,3.3991,4.7506,3.3894,1.8279,1.4113,4.2263,10.7797,3.0417,2.3225,11.0905,2.101,2.6204,2.0027,13.4832,1.7061,4.0531,1.2549,16.682,5.6029,7.9642,4.401,12.3084,6.9683,7.8533,8.1253,3.7276,1.3415,4.4854,,,,,,,,,,,,,,,75,,,
-3318,1.9496,2.4874,,60-69y,Other,,,16.4522,4.6715,2.8618,2.4384,1.4038,ppmi,,,M,,0.41034,4.599,4.4172,0.84199,8.9704,1.4424,0.38519,2.7502,2.8107,48.3126,13.9654,186.5141,3.6449,4.0284,1.6424,1.9008,3.3443,7.21,2.1173,2.9814,0.45226,6.3629,10.5116,13.8939,7.5674,2.1887,4.6134,1.8334,16.1366,5.6599,3.8305,0.90361,2.1974,6.7755,13.0209,3.261,4.2617,3.1263,1.3848,1.2999,4.1856,9.6313,3.2299,2.4117,10.9586,2.1707,2.3065,2.3164,12.2133,1.9828,4.3819,1.1482,12.8979,5.2676,8.0004,3.4832,8.9111,6.988,8.4421,7.5903,3.4524,1.5981,4.3355,,,,0.072112,CN,,HC,0.36815,4.0454,4.2038,0.85475,9.8398,1.6413,0.37838,2.7131,2.8886,48.6541,13.6423,189.5102,3.4333,4.3149,1.7523,1.937,3.5195,7.4265,2.002,3.195,0.57888,6.4587,11.2305,12.6317,7.8157,2.0683,4.6229,1.86,14.635,4.705,3.5883,0.95547,2.235,7.8809,13.4391,2.8035,4.4877,3.1287,1.3565,1.2964,3.9176,10.2919,2.9544,2.2917,9.3573,1.901,2.2857,2.0417,11.5646,1.7178,4.1622,1.0293,13.6568,5.1142,7.5259,3.8996,9.134,7.2036,8.1706,7.9955,3.1458,1.3774,4.1543,,,,,,,,,,,,,,,65,,,
-3320,1.1404,2.0153,,50-59y,Other,,,19.2574,4.7809,2.4643,2.2702,1.1194,ppmi,,,M,,0.41206,3.746,4.1052,0.7922,8.6643,1.3937,0.36892,2.8349,2.6676,48.3091,16.9742,213.6238,4.0107,4.3734,1.6196,2.0031,3.0267,6.9991,1.78,2.8341,0.4146,5.6815,11.3156,11.0687,6.8813,2.2819,4.2194,1.5584,18.7051,5.8843,3.5393,1.0741,2.5584,5.8835,13.7622,2.7842,3.902,3.5542,1.5089,1.5089,4.0443,9.7691,3.1796,2.1078,11.6878,2.005,2.4301,2.2529,13.1932,1.8315,4.1854,1.1092,13.5801,4.8929,8.1829,3.5593,9.4209,6.417,8.1636,7.4644,3.8463,1.6725,4.8438,,,,0.087587,CN,,HC,0.35881,3.0577,3.6919,0.75173,9.4944,1.4991,0.37179,2.8972,2.8855,48.5217,16.667,216.0184,4.1353,4.0535,1.5482,1.7529,3.1845,7.0599,1.8423,3.0222,0.48276,6.4147,11.2314,11.6552,7.5953,1.9543,3.9089,1.4883,16.678,5.5646,3.4495,0.87908,2.1914,6.5357,14.4879,2.7634,4.1055,3.326,1.3587,1.4805,3.8348,9.8426,2.8278,2.2666,10.2838,2.1582,2.1822,1.9666,12.5947,1.8184,4.0193,1.0827,13.7754,4.7505,7.3448,4.3847,11.3376,7.2024,8.0504,7.2422,3.1286,1.4863,4.5718,,,,,,,,,,,,,,,56,,,
-3321,1.4005,1.9523,,70-79y,Other,,,15.9426,3.843,2.3311,1.9161,1.3695,ppmi,,,F,,0.33141,3.3801,3.5824,0.71796,7.8313,1.1117,0.31052,2.327,2.5332,37.8922,13.4697,164.5435,3.1997,3.6934,1.3295,1.6286,2.6654,5.3667,1.4814,2.6,0.69797,4.6428,8.1202,14.9726,5.3413,1.8859,4.3043,1.2971,14.0495,5.135,2.8359,1.0024,2.0195,5.2077,10.1697,2.8873,3.1176,2.6235,1.2216,1.2426,3.7434,8.7468,2.6047,2.1719,9.5511,1.8409,1.9473,2.0307,10.0406,1.4958,3.7635,0.9232,10.5262,4.2264,7.0201,3.1818,7.7491,6.0983,7.1104,5.9824,2.7271,1.2737,3.9618,,,PD,0.057455,PD,,PD,0.29164,3.1091,3.2843,0.70785,9.0194,1.2783,0.30184,2.3383,2.6416,38.6658,12.897,171.7594,3.1616,3.7503,1.3959,1.5797,2.872,5.7893,1.5503,2.8198,0.6662,5.0726,8.7126,12.0658,6.0731,1.7612,4.0847,1.3096,14.1559,4.0779,2.8027,0.89099,2.0826,5.9859,10.6074,2.2931,3.0645,2.405,1.1853,1.2717,3.4568,8.6035,2.5259,2.121,8.7672,1.7686,1.755,1.8797,10.0642,1.5287,3.6223,0.8406,10.8462,4.2617,6.0909,3.4808,7.8139,6.2209,6.989,6.4537,2.7716,1.3605,3.7966,,,,,,,,,,,,,,,71,,,
-3322,1.8221,2.0394,,60-69y,Other,,,17.1075,4.3328,2.5404,2.0895,1.5954,ppmi,,,F,,0.37669,4.1432,3.8,0.77073,9.8591,1.4488,0.35351,2.2825,3.0628,46.1231,13.9101,196.7901,3.6639,4.0855,1.6107,1.9744,3.1595,7.392,2.0282,3.0335,0.49163,6.3842,10.2503,18.6939,7.0083,2.3137,4.4002,1.5306,18.3093,6.7569,3.8688,1.1689,2.6096,6.6229,12.6858,3.3435,4.2243,3.3745,1.4666,1.2849,4.2687,10.619,3.2201,2.1889,12.1834,2.3022,2.3342,2.0938,13.4514,1.9592,3.9089,1.0826,13.5838,5.3885,9.4235,3.3995,9.7692,7.0647,7.6348,7.0531,3.8012,1.4522,4.3523,,,PD,0.070551,PD,,PD,0.34649,3.5859,3.7154,0.77406,10.703,1.6295,0.3608,2.4564,3.2588,45.9078,13.5202,199.675,3.8787,4.3395,1.5691,1.862,3.5503,7.323,1.9222,3.2008,0.57481,6.1267,10.9697,17.8991,7.3409,2.2187,4.2007,1.4893,18.9664,5.2934,3.7565,1.1891,2.6372,7.2992,13.8705,2.5239,4.1227,3.2243,1.5089,1.277,4.0339,10.6594,2.8661,2.1451,10.2749,2.2179,2.2499,1.86,12.6864,1.8518,3.8392,1.0151,13.7158,4.9872,8.2369,3.9195,9.6935,7.2228,7.4132,7.5005,3.2493,1.3437,4.1896,,,,,,,,,,,,,,,60,,,
-3323,1.4867,2.3162,,60-69y,Other,,,25.1793,6.1262,3.324,2.5349,1.4695,ppmi,,,M,,0.51504,5.3337,4.6736,0.99678,11.3937,1.6559,0.44153,3.476,3.6214,57.9174,21.8521,282.3767,5.0607,5.0153,1.9208,2.1756,4.3434,8.7833,2.2141,3.7253,0.62915,8.3286,13.5526,19.0451,8.4398,2.549,4.5596,2.0887,20.9119,7.2551,4.3272,1.0778,2.7689,8.1276,15.3745,4.1747,4.9683,3.8327,1.6721,1.8045,5.6269,13.6555,3.7997,2.5531,14.943,2.98,2.72,2.3098,15.1023,2.4366,4.8499,1.455,16.8691,6.0141,11.1502,4.5046,14.5093,7.1854,9.6122,8.429,4.2365,1.9387,5.9205,,,PD,0.085229,PD,,PD,0.49973,4.5628,4.5625,1.0282,11.8581,1.9869,0.47017,3.7353,3.8011,58.273,20.9338,288.8603,4.444,5.9491,2.019,2.1231,4.5137,9.0588,2.4345,4.0689,0.72884,8.2702,13.4853,15.0472,9.3992,2.445,4.622,2.0644,20.8728,6.1736,4.2243,1.0726,2.7745,9.1064,16.0317,3.5753,5.3605,4.1119,1.7449,1.7028,5.1444,13.8856,3.5888,2.6142,12.1933,2.5592,2.5448,2.1724,14.2236,2.251,4.8423,1.4317,16.1179,5.9011,10.2869,5.6019,13.8726,7.8882,9.5376,8.4203,4.1469,1.6081,5.7089,,,,,,,,,,,,,,,69,,,
-3325,1.4263,2.0325,,60-69y,Other,,,22.291,5.4401,3.1464,2.354,1.0478,ppmi,,,F,,0.44402,4.8828,4.2103,0.92908,8.9546,1.5852,0.39411,3.7017,3.278,52.2087,17.1471,235.6885,3.9566,4.6007,1.7581,2.1059,3.9175,7.3861,2.0807,3.4809,0.41495,7.1488,11.4535,13.965,7.9901,2.3709,4.9792,1.8621,19.2694,6.8429,3.9299,1.1898,2.7834,7.1681,14.3636,3.7277,4.6068,3.9447,1.4499,1.5451,4.4882,10.9043,3.3886,2.3005,12.138,2.4716,2.5392,2.296,13.3014,1.9911,4.4839,1.1789,17.1714,6.0829,9.079,3.9315,10.8847,7.8255,8.8761,7.7425,4.0834,1.5711,5.3067,,,PD,0.092904,PD,,PD,0.41253,4.3953,4.1223,0.95301,10.1118,1.7769,0.40596,3.5415,3.5084,52.1951,16.7879,236.4043,3.6412,4.786,1.7935,2.3192,3.9218,7.6874,2.1155,3.9394,0.85508,7.0998,11.8629,12.4607,8.3763,2.2711,5.1812,1.8825,18.47,5.8042,3.8104,1.3402,2.918,7.8606,15.304,2.8173,4.5536,3.8502,1.5304,1.5005,4.1495,11.3056,3.3158,2.2226,11.0242,2.4063,2.4075,1.9481,12.9214,2.0039,4.3725,1.1322,15.7726,6.273,7.7821,4.4517,10.9396,7.5488,8.6628,8.0312,3.554,1.4467,5.0538,,,,,,,,,,,,,,,67,,,
-3327,0.75404,1.8963,,50-59y,Other,,,21.5524,4.5386,2.8542,2.0357,0.82145,ppmi,,,F,,0.47317,4.1821,3.9922,0.86126,9.4145,1.4349,0.38745,3.3252,3.1656,48.2116,18.095,245.0631,3.7934,4.3464,1.6752,2.0091,3.3605,7.1216,2.0221,3.1557,0.3041,6.5054,10.9448,9.0466,7.0044,2.3059,4.7187,1.6706,17.356,6.4298,3.8276,1.1822,2.491,6.4218,13.0209,3.7432,4.065,3.205,1.6411,1.6316,4.227,10.4046,3.0247,2.1789,13.8277,2.2298,2.4731,2.1197,12.7153,1.7996,4.3213,1.1332,14.4905,4.9865,8.9642,4.058,10.9793,6.4997,8.7684,7.2622,3.7596,1.5089,5.2886,,,PD,0.081668,PD,,PD,0.42255,3.4603,3.773,0.88534,10.4658,1.6875,0.40835,3.3657,3.2244,48.6983,17.6988,251.1874,3.7485,4.6545,1.8481,1.9065,3.6889,7.5203,2.0944,3.4415,0.40727,6.2412,10.8589,6.3182,7.5096,2.2703,4.4532,1.6923,17.6012,5.2427,3.8915,1.0757,2.4356,7.3878,13.1542,2.8802,3.9554,3.4658,1.6804,1.5955,4.0161,10.2696,2.9158,2.2009,11.9521,2.2236,2.4696,1.8862,12.0513,1.8911,4.2236,1.1096,13.6016,5.4715,8.2422,4.3101,10.9359,6.7098,8.3773,7.8794,3.7564,1.4906,5.0502,,,,,,,,,,,,,,,54,,,
-3328,1.8302,1.7719,,60-69y,Other,,,16.7958,4.0742,2.3181,1.9763,1.4956,ppmi,,,M,,0.46695,4.5439,4.1895,0.84486,8.2929,1.357,0.39218,3.4905,2.8187,39.7042,14.5647,229.048,4.1323,5.0124,1.5797,1.9975,3.1471,6.6771,1.8516,2.96,0.51615,6.8834,10.7651,19.4254,7.391,2.1532,4.5386,1.6262,17.4493,6.1483,3.7013,1.1212,2.6166,6.8461,13.172,3.862,4.206,3.1222,1.4874,1.5633,4.2052,9.8325,3.0726,2.2093,10.8438,2.3508,2.5242,2.1969,11.9189,2.0101,4.3024,1.1954,12.5089,5.3344,8.3344,3.8768,10.8156,6.736,8.14,7.2217,3.6277,1.6601,4.8184,,,PD,0.072656,PD,,PD,0.41745,4.3971,3.7245,0.84279,10.5261,1.4768,0.38964,3.2974,2.8323,40.4861,14.6007,232.9993,3.694,5.0211,1.6458,1.8069,3.3766,6.9776,1.8771,3.1783,0.54209,7.0902,11.5522,16.7477,7.8562,1.9428,4.6858,1.5847,16.9407,5.1981,3.4683,1.0978,2.5934,7.4008,13.7192,3.2496,4.3012,2.8723,1.3054,1.5242,3.922,10.2225,2.9784,2.1788,8.8925,1.9979,2.169,2.0419,12.1283,1.7305,4.1404,1.1123,13.2281,5.3621,7.6788,4.4089,10.2901,7.1975,7.9071,7.7631,2.9011,1.4279,4.5119,,,,,,,,,,,,,,,63,,,
-3332,1.5785,1.7034,,70-79y,Other,,,19.1407,4.5521,2.3009,1.9334,1.3981,ppmi,,,M,,0.4374,4.5731,4.4769,0.82868,8.2464,1.3575,0.38138,2.9191,2.7691,42.1186,14.6437,232.7044,3.8846,4.2042,1.5214,2.0541,3.5519,7.1671,2.0591,2.9546,0.64464,6.473,11.0492,21.3242,6.6069,2.4864,4.8116,1.8163,19.141,5.6315,3.8671,1.19,2.8192,6.8799,12.8222,3.5724,3.8221,3.4722,1.6865,1.4641,4.4389,10.0803,2.9845,2.3059,11.6122,2.1912,2.6593,2.2775,13.7267,1.9744,4.3465,1.3054,14.4541,5.4127,8.1277,3.8239,10.3435,6.6551,8.3474,7.1536,4.0626,1.5979,4.7608,,,PD,0.074917,PD,,PD,0.41306,4.6016,4.0434,0.83747,9.664,1.5746,0.38031,3.0934,3.0148,43.8586,14.133,236.1145,3.8952,4.3941,1.6668,2.072,3.738,7.5972,1.9778,3.1584,0.6236,6.3701,11.922,18.3327,7.5329,2.0851,4.594,1.7127,17.881,4.8325,3.5219,1.2568,3.0733,7.5273,13.4879,2.9866,4.1581,3.4563,1.4853,1.4687,4.1188,10.3109,2.7836,2.3121,10.0265,2.1921,2.3158,2.1615,13.7657,1.908,4.0202,1.181,14.3093,5.3183,7.7124,4.5242,12.1789,7.2029,8.4697,7.4094,3.5171,1.5994,4.6784,,,,,,,,,,,,,,,74,,,
-3350,2.1186,1.9831,,70-79y,Other,,,19.1725,4.6994,2.7529,2.3447,1.7296,ppmi,,,M,,0.48685,5.3154,4.3409,0.89342,10.4159,1.7102,0.40477,3.5489,3.6595,48.3447,15.6962,220.3796,4.1178,4.9111,1.9103,1.9824,3.7475,7.8671,2.3389,3.22,0.61934,7.5701,12.223,22.7333,8.0554,2.4718,5.3743,1.9676,21.7861,7.046,4.2537,1.167,3.237,7.5464,15.5754,3.7422,4.7065,3.5609,1.4524,1.5024,4.6599,11.47,3.4812,2.5088,12.7248,2.4133,2.4599,2.3399,15.3463,1.9955,4.9895,1.3553,15.222,6.1944,9.345,4.018,10.762,8.0011,8.0348,8.5003,3.9141,1.4636,4.6471,,,,0.089306,CN,,HC,0.44311,4.5104,4.2433,0.87837,11.4552,1.7684,0.42244,3.3109,3.7769,48.3261,15.4518,223.2097,4.0431,5.0819,1.9139,2.1646,3.8885,8.3274,2.2873,3.405,0.87815,6.847,12.8009,18.5641,8.7741,2.2008,4.8308,1.8813,21.5798,5.7191,4.0215,1.2772,3.3568,9.021,15.7052,2.9207,4.6787,3.872,1.5833,1.4314,4.2681,11.5237,3.2355,2.329,11.1146,2.3098,2.2708,2.1801,13.9871,2.0836,4.5554,1.3171,15.6456,6.4564,7.7243,4.446,11.4274,7.7562,8.0062,8.5408,4.0429,1.5789,4.5189,,,,,,,,,,,,,,,79,,,
-3351,2.2027,2.6048,,70-79y,Other,,,15.2781,4.6579,2.4156,2.1874,2.3518,ppmi,,,M,,0.38256,4.4859,3.7295,0.7193,9.5867,1.3684,0.34906,3.1602,2.9229,40.2916,12.9311,179.6471,3.4967,4.3323,1.3683,1.6573,3.2655,6.5169,1.7059,2.9605,1.2465,6.1439,9.6454,34.9976,7.1427,2.0477,4.4977,1.6864,16.6023,6.3451,3.4177,0.99525,2.3485,6.9227,11.6233,3.23,3.9781,2.9037,1.2886,1.1608,3.9243,10.4675,2.8796,2.0107,12.2644,1.9689,2.3323,1.9303,10.4746,1.4263,3.5822,1.1512,11.9941,4.6406,9.1866,3.568,10.4148,5.2505,6.9582,5.9418,3.2195,1.2118,4.047,,,,0.064526,CN,,HC,0.32657,3.8546,3.6329,0.71997,9.5409,1.4915,0.33332,3.2113,3.1382,40.2683,12.6171,188.4283,3.2245,4.5308,1.3796,1.7646,3.4719,6.2254,1.6895,3.0541,1.3569,6.1097,9.3455,35.3162,8.046,1.9072,3.8451,1.5638,16.0678,5.5131,3.0881,1.0455,2.3581,8.0234,11.8748,2.9932,3.9741,2.7871,1.408,1.1601,3.4686,10.2299,2.6097,1.9775,9.7202,1.9596,2.1129,1.7377,10.1542,1.4518,3.57,1.093,11.8922,4.9919,6.8726,4.0461,9.7867,5.4739,6.9082,6.5716,3.1613,1.2066,3.9223,,,,,,,,,,,,,,,72,,,
-3352,1.054,1.7724,,50-59y,Other,,,21.9076,4.9572,2.8111,2.4003,1.1805,ppmi,,,M,,0.4457,4.9595,4.2453,0.8287,9.1178,1.5095,0.3614,3.3464,3.1477,49.7368,18.2038,252.6209,3.7882,4.714,1.6885,2.1164,3.7083,6.983,2.1006,3.0529,0.39954,6.8753,9.8987,13.1705,7.6446,2.3342,4.5418,1.9722,18.1891,6.5981,4.069,1.0144,2.5514,7.5579,12.8515,3.9561,4.7323,3.654,1.6021,1.736,4.438,11.1489,3.2067,2.1757,11.2911,2.2116,2.479,2.0812,13.7574,1.7123,4.3443,1.1933,13.9577,5.6044,8.2346,3.7535,10.0855,6.2781,9.3073,6.6935,3.7395,1.3937,5.459,,,PD,0.072759,PD,,PD,0.3977,4.7392,4.0101,0.82516,10.1234,1.7688,0.36976,3.6006,3.1607,50.2789,17.7435,252.3473,3.8891,5.2287,1.7245,1.9095,3.7338,7.2264,2.051,3.2964,0.60818,6.4692,10.3073,10.3951,8.079,2.2338,4.5835,1.8235,17.4243,5.2041,3.8423,1.1225,2.6312,8.2794,12.7001,3.2492,4.4109,3.0475,1.62,1.6587,4.1674,11.1061,2.9366,2.1388,10.2236,2.1939,2.3834,2.0103,12.9209,1.8009,4.2705,1.165,13.6522,5.7931,7.2133,4.3429,10.6149,7.0896,9.0171,7.1871,3.4482,1.4405,5.232,,,,,,,,,,,,,,,52,,,
-3353,0.64707,1.6469,,50-59y,Other,,,20.2092,4.9889,3.3261,2.5209,0.78802,ppmi,,,F,,0.45675,3.9296,4.0155,0.85287,9.1832,1.4272,0.35456,3.0089,3.2288,52.8219,18.5441,220.8301,3.5392,4.1018,1.6497,1.7412,3.5666,7.3496,1.9891,2.9608,0.33522,6.1833,10.9352,5.7378,7.2047,2.2388,3.871,1.6848,17.0545,6.1321,3.7528,1.1782,2.4044,6.3621,13.1839,3.1734,4.3481,2.999,1.475,1.6085,4.0069,9.512,3.0162,2.077,11.7524,1.9266,2.3759,2.0199,12.9366,1.6014,4.2113,1.0203,14.8457,4.9047,8.3846,3.4659,10.302,6.6481,8.5392,7.319,3.4023,1.2917,5.0194,,,,0.081951,CN,,HC,0.42021,3.9244,3.8535,0.84996,9.7255,1.4287,0.37756,3.0428,3.2466,52.4214,18.297,222.1029,3.3706,4.3303,1.645,1.8139,3.523,7.274,1.885,3.1996,0.57598,6.6758,11.3787,4.602,7.6127,1.9217,4.1591,1.6549,17.4639,5.2692,3.2898,0.90527,2.357,6.8564,13.3049,2.7268,4.211,3.2854,1.423,1.5393,3.7239,9.6677,2.7619,2.0815,9.6849,1.9631,1.9788,1.8942,11.6409,1.7384,4.1606,1.0156,13.7277,4.5874,7.402,4.2226,9.5548,6.9872,8.3278,7.9699,3.2661,1.3214,4.8719,,,,,,,,,,,,,,,56,,,
-3354,1.4262,1.8571,,60-69y,Other,,,18.6528,5.0728,2.4154,2.2853,1.3721,ppmi,,,M,,0.51308,5.4959,4.558,0.94286,10.5563,1.6952,0.42106,3.1445,3.6677,46.537,15.0466,246.3444,4.6791,4.9328,1.919,2.0878,3.9145,8.1067,2.3425,3.3242,0.63291,7.598,12.9865,18.2338,8.1105,2.5685,5.4536,2.2097,22.0323,6.6819,4.3067,1.3604,3.3702,8.2838,15.4455,3.7504,4.6113,3.7246,1.5639,1.4658,4.674,12.476,3.3395,2.5479,13.8558,2.5153,2.6735,2.5411,14.1582,2.1704,4.8515,1.3597,17.7155,7.2004,9.8286,3.4469,10.7421,8.1478,8.5686,8.4782,3.9525,1.7448,4.728,,,PD,0.088743,PD,,PD,0.47679,5.0814,4.4013,0.92885,12.1007,2.0701,0.43742,3.2838,3.4199,48.2228,14.6272,248.881,4.2976,5.1286,1.9009,2.0901,4.4655,8.8242,2.3923,3.5657,0.54676,7.5624,13.5074,10.9069,8.9756,2.4641,5.7307,2.1444,21.7982,5.2999,4.4093,1.4673,3.0414,8.9215,16.4369,3.0487,4.9167,3.4543,1.637,1.4071,4.0986,12.222,3.2642,2.5437,12.5825,2.1605,2.5638,2.4077,13.1726,1.8925,4.7931,1.323,17.9966,6.6898,8.9119,4.1536,11.4621,8.2416,8.3061,9.0141,3.9799,1.6171,4.4429,,,,,,,,,,,,,,,69,,,
-3355,1.0191,2.4554,,-50y,Other,,,19.4413,4.8071,2.6541,2.2874,0.85616,ppmi,,,M,,0.44222,4.0945,3.8884,0.89087,9.3743,1.4777,0.39683,3.3672,3.3654,47.6398,17.0485,224.6679,3.7032,4.4291,1.6898,2.0112,3.6171,7.4738,2.0613,3.2633,0.58031,6.82,11.7704,10.8633,7.0096,2.2471,4.4973,1.5825,18.7004,6.7985,3.8837,1.1041,2.6603,6.1342,13.9408,3.8714,4.0375,3.3628,1.4396,1.5356,4.2537,9.8859,3.057,2.1085,11.601,2.4492,2.2336,2.1935,13.4023,2.3774,4.6227,1.1031,14.6718,5.0654,9.2425,3.916,11.0553,7.4607,9.0602,7.6927,3.6691,1.5562,5.0131,,,,0.065881,CN,,HC,0.4115,3.7095,3.8205,0.89106,10.5974,1.7143,0.40237,3.55,3.4073,48.7459,16.3181,227.229,3.9975,5.0876,1.7569,1.9459,3.7016,7.9299,2.0218,3.4671,0.55279,7.2329,12.2213,8.8538,7.762,2.1419,4.5573,1.6263,17.9584,5.3982,3.6199,1.1341,2.7434,7.054,14.4404,3.5658,4.3906,3.522,1.4194,1.5072,3.8082,10.2912,2.8559,2.1655,10.0077,1.9628,2.0305,1.9911,12.3708,1.8422,4.5196,1.0419,14.5549,4.9872,8.3014,4.8295,10.6061,7.5952,8.6505,8.0229,3.3355,1.3802,4.7366,,,,,,,,,,,,,,,32,,,
-3357,1.2879,2.0439,,-50y,Other,,,21.6613,5.2395,2.7874,2.5747,1.7015,ppmi,,,M,,0.47436,3.8965,4.051,0.89154,9.5374,1.514,0.40959,3.0444,3.1215,48.8073,18.7842,231.7602,4.0255,4.0285,1.6658,1.9322,3.4023,7.285,2.2149,3.4142,0.51873,6.9074,11.1028,13.9626,7.5067,2.5674,4.5207,1.6426,19.7819,5.8543,4.0433,0.93891,2.5175,6.615,14.3861,3.5444,4.3648,3.0926,1.5467,1.7366,4.5271,10.5431,3.1312,2.1979,12.085,2.4081,2.4362,2.2727,13.8034,2.0203,4.2438,1.2995,17.3575,5.5321,9.2149,3.1117,9.8945,7.8468,9.356,7.4788,3.9607,1.6984,5.5137,,,,0.067357,CN,,HC,0.41789,3.3203,3.9126,0.89383,12.2737,1.7765,0.41849,3.1397,3.2493,48.5672,18.6004,236.4763,3.7991,4.4205,1.6939,1.9872,3.9246,7.7194,2.2041,3.6563,0.55697,6.3186,11.3747,13.8162,8.1455,2.4044,4.5451,1.6918,19.4895,5.3683,3.9199,1.1398,2.5974,7.3054,14.1147,2.9257,4.1418,3.7029,1.6215,1.6956,4.0557,10.2492,3.09,2.216,10.4182,2.0797,2.2411,2.0223,14.0891,1.8044,4.1834,1.1832,15.6137,5.354,8.2542,4.1259,11.0756,7.8309,9.0224,7.1985,3.8693,1.5213,5.3189,,,,,,,,,,,,,,,44,,,
-3358,0.97066,1.9402,,-50y,Other,,,21.9129,4.9995,2.9226,2.4358,1.0668,ppmi,,,M,,0.53627,5.5045,4.4459,1.0686,10.6117,1.7385,0.41887,3.3576,3.259,53.5751,18.1406,251.0497,4.5102,5.1492,1.9289,1.9522,4.0067,8.0635,2.2256,3.7781,0.4048,6.473,11.4821,17.2327,8.5144,2.6011,5.3409,2.1532,21.2225,6.9569,4.2512,1.3077,3.2549,7.9379,13.9806,3.7858,4.5096,3.3594,1.6383,1.6678,4.7394,11.8885,3.6351,2.521,13.3801,2.7141,2.6914,2.5029,15.4562,2.2146,4.724,1.3367,16.8494,6.7498,9.5973,3.8267,11.7949,7.875,9.7964,8.0504,4.2617,1.9103,5.4366,,,,0.077663,CN,,HC,0.47943,4.9371,4.1726,1.0238,11.3463,1.917,0.44018,3.4563,3.5265,53.2894,17.8612,255.8374,4.5122,5.864,1.9794,1.8332,4.3734,8.3471,2.2568,3.9177,0.47752,7.1219,12.3525,13.0241,9.1975,2.4542,5.479,2.108,20.4766,5.8837,4.0166,1.3851,3.4818,9.1452,14.5311,3.1525,4.6465,3.273,1.6161,1.6525,4.1543,12.156,3.221,2.4512,12.0915,2.1001,2.5017,2.1685,15.4505,2.0398,4.6209,1.3125,16.6047,6.4793,8.7896,4.8891,11.1655,7.8736,9.4228,8.3972,3.5032,1.5974,5.245,,,,,,,,,,,,,,,49,,,
-3359,1.8571,1.6234,,70-79y,Other,,,19.8477,4.9152,2.686,2.4304,1.7052,ppmi,,,M,,0.47122,4.3534,4.7496,0.95107,8.9156,1.3618,0.40755,2.8695,3.4255,44.5392,15.3576,216.1588,4.0515,3.8094,1.7627,2.0915,3.4912,6.6787,1.9924,3.4225,0.62783,5.8273,10.9779,18.9481,7.0942,2.217,4.5927,1.6816,17.9294,6.5654,3.7872,1.1099,2.566,7.0237,13.5286,3.1702,4.0964,3.6004,1.5735,1.428,4.9279,10.656,3.2276,2.3956,12.1844,2.0231,2.5882,2.2183,13.654,1.7542,4.626,1.2635,16.4628,5.6131,8.4113,3.3693,10.8332,6.1649,8.7197,7.7363,3.7803,1.6264,5.0061,,,PD,0.082548,PD,,PD,0.43138,4.0199,4.4092,0.93286,9.9978,1.6987,0.40907,2.9281,3.5833,46.0573,15.4225,221.9845,4.0934,4.1421,1.7721,1.9923,3.7703,7.409,2.0554,3.6081,0.60745,6.1322,11.8587,15.3024,7.4283,2.2228,5.0082,1.7785,19.0909,5.4244,3.7372,1.0974,2.7196,7.5321,14.6212,2.7477,3.969,3.2224,1.5323,1.4203,3.9982,10.5428,2.9585,2.279,11.3498,2.0555,2.4063,2.0699,13.4193,1.7228,4.434,1.1772,15.4814,5.8302,8.084,4.0003,10.8408,6.7925,8.7703,8.1023,3.4657,1.4493,4.7746,,,,,,,,,,,,,,,72,,,
-3360,1.2132,2.1861,,60-69y,Other,,,21.0619,4.8973,2.6128,2.1104,1.1191,ppmi,,,M,,0.47814,4.5999,4.7358,0.89781,9.1663,1.6832,0.38798,3.471,2.9703,48.2982,18.7327,267.5846,4.5317,4.6512,1.6574,2.2124,4.0283,7.2932,2.1745,3.2419,0.44459,6.6891,11.4304,11.1445,6.939,2.515,4.7511,1.801,19.2776,6.2419,4.0866,1.1049,2.287,7.1582,13.5585,3.9995,4.2419,3.5661,1.5589,1.7322,4.6232,11.5298,3.184,2.5786,12.3,2.3478,2.4211,2.5364,13.4259,2.0003,4.9164,1.2467,14.9361,5.2831,9.1245,3.4369,11.5001,6.865,9.1056,8.0565,4.0415,1.8131,5.2379,,,PD,0.078807,PD,,PD,0.43851,4.3526,4.2874,0.86473,10.9493,1.6656,0.40155,3.7806,3.1861,48.962,18.1633,275.1444,3.9824,5.2903,1.6171,2.0364,3.7677,6.9179,2.0331,3.3281,0.4819,7.1622,11.6067,11.7986,7.7921,2.3152,4.9026,1.6913,19.4726,6.0131,3.6853,1.0914,2.5623,7.6389,14.1412,3.5265,4.4073,3.2061,1.7013,1.6884,4.2602,12.0166,2.6814,2.4534,10.4078,2.5784,2.1921,2.1333,13.6068,2.2114,4.6669,1.1392,14.4365,5.6544,7.8359,4.8682,10.6842,6.9839,9.035,8.1745,3.7536,1.6594,5.035,,,,,,,,,,,,,,,67,,,
-3361,0.93269,1.8101,,50-59y,Other,,,16.785,4.8678,2.7924,2.3568,1.1946,ppmi,,,F,,0.45386,4.8811,4.3389,0.89537,10.6341,1.5014,0.37867,3.19,3.16,48.2874,14.5015,222.8818,4.4829,4.9083,1.8165,2.0954,3.845,7.5014,2.0541,3.2227,0.38969,6.8547,10.915,14.6835,7.8021,2.4684,5.2162,1.886,18.6353,7.1876,3.6746,1.0133,2.3737,7.4838,15.3593,3.6181,4.7118,3.3167,1.5905,1.4229,4.7305,11.852,3.3726,2.3965,13.2566,2.6506,2.4436,2.3493,13.4112,2.0892,4.0941,1.1519,13.8151,5.7373,10.6473,4.1042,10.7302,7.8289,8.1862,7.7667,3.8128,1.688,4.3689,,,,0.073627,CN,,HC,0.40294,4.3072,3.8814,0.89354,12.2808,1.6502,0.38323,3.2096,3.4881,49.3503,13.9651,226.3869,4.2435,5.1187,1.8741,1.934,3.9391,8.0573,2.0041,3.3675,0.50034,6.5722,11.5149,12.7353,8.64,2.1551,4.7355,1.7354,17.945,5.5471,3.5655,1.1715,2.7262,8.1239,14.4363,3.0365,4.5262,3.547,1.5034,1.3929,4.2808,11.5161,3.2187,2.3843,11.99,2.4669,2.1951,2.2756,13.077,2.0356,3.9564,1.0857,14.6022,5.8642,9.9547,4.6737,11.2565,7.941,8.0085,8.3509,3.3219,1.7066,4.2257,,,,,,,,,,,,,,,56,,,
-3362,0.62532,1.0385,,-50y,Other,,,19.6022,4.9925,2.593,2.3917,0.74199,ppmi,,,F,,0.41923,4.0989,4.2371,0.84579,9.1987,1.5322,0.38607,3.5881,2.8729,46.812,16.3262,205.5592,3.5565,4.8567,1.6593,2.0151,3.2905,6.598,2.0422,3.0341,0.27487,6.6135,10.1912,5.3086,7.4474,2.3925,4.5882,1.7124,18.1212,6.2375,3.804,1.2897,2.806,6.5364,13.4883,3.6174,4.3519,3.2742,1.7036,1.3527,4.3126,10.0249,2.9675,2.1941,12.5637,2.034,2.466,2.1055,14.5898,1.7532,4.0084,1.0785,13.9754,5.3176,8.5485,3.7738,10.1256,6.6877,8.2492,7.3415,4.2,1.369,4.6365,,,,0.068029,CN,,HC,0.4078,3.7381,4.05,0.80758,10.3726,1.7025,0.38996,3.583,2.9706,47.7393,15.5594,207.9647,3.6358,4.9242,1.5881,1.918,3.6981,7.1307,2.0437,3.2306,0.35118,6.4509,10.4555,4.1121,8.1896,2.1987,4.5084,1.6855,18.0272,5.5466,3.6803,1.0849,2.6465,6.9334,13.8512,3.2068,4.4419,3.6955,1.5726,1.3215,3.8143,10.1936,2.751,2.1135,10.9084,1.822,2.1914,1.8251,13.6492,1.5904,3.9215,1.0271,13.851,4.9822,8.1151,4.5204,9.6682,7.2292,7.9032,7.1593,3.899,1.2444,4.3984,,,,,,,,,,,,,,,42,,,
-3364,0.62296,1.3497,,-50y,Other,,,18.244,4.4925,2.5803,2.1401,0.76245,ppmi,,,F,,0.50019,4.9102,4.2308,0.96231,10.9356,1.8327,0.3991,2.8463,3.2704,46.4235,15.3923,232.5274,4.2409,5.1413,1.8699,2.1311,3.6947,7.6656,2.1682,3.4991,0.32806,6.6951,11.9154,5.8909,7.3762,2.9088,5.2033,1.8726,22.4311,6.5068,4.4453,1.2803,2.926,7.4035,15.244,3.0383,4.0154,3.906,1.7585,1.5138,4.7104,11.7847,3.3326,2.2602,12.9093,2.4677,2.7363,2.3734,13.9999,2.2961,4.1691,1.1491,15.387,6.0427,10.6606,3.923,11.2687,8.4364,8.8933,8.5813,4.8731,1.7493,4.7816,,,PD,0.068911,PD,,PD,0.44878,4.0091,4.1782,0.93574,12.021,1.8672,0.411,3.0148,3.3302,46.6537,14.8703,235.5212,4.3704,5.301,1.8787,2.223,4.02,7.7874,2.2924,3.5537,0.47934,6.6623,12.2256,5.0331,7.7215,2.3618,5.3939,1.918,20.833,5.2477,4.2796,1.1969,2.9182,8.3524,15.5865,2.7299,4.1276,3.9928,1.7216,1.4946,4.3353,11.9687,3.0807,2.3532,10.9378,2.3831,2.481,2.2072,13.8483,2.0916,4.2019,1.1,16.15,6.2194,9.8186,4.6463,11.7275,9.4001,8.5647,8.6079,4.1481,1.616,4.5681,,,,,,,,,,,,,,,39,,,
-3365,1.2289,1.9417,,-50y,Other,,,17.2271,4.3798,2.292,1.874,1.1604,ppmi,,,M,,0.45206,5.0663,4.5664,0.89341,9.0394,1.6339,0.41422,3.5891,3.0215,41.7166,13.9202,219.7141,3.7347,5.2323,1.8276,2.0821,3.2615,7.5982,2.1295,3.3343,0.44587,7.2658,11.2446,9.3831,8.4581,2.449,5.3445,1.8177,19.8177,6.7698,4.1533,1.3702,3.1259,7.4268,13.5803,4.13,4.529,3.6453,1.4586,1.3527,4.6125,11.2335,3.4176,2.3942,12.6554,2.3993,2.6222,2.4105,13.5831,2.2632,4.3841,1.2656,14.6142,6.5658,8.9997,4.3348,10.6463,7.4484,8.2477,7.5352,4.1502,1.6582,4.5506,,,PD,0.083102,PD,,PD,0.41877,4.7206,4.4146,0.90228,10.7992,1.7284,0.42057,3.4918,3.0357,42.3753,13.5596,224.8913,3.482,5.4938,1.8318,2.1478,3.4731,8.0272,2.1684,3.4797,0.54165,7.5929,11.6902,7.9759,8.9914,2.2115,5.4379,1.805,19.3072,5.5203,3.8411,1.2129,3.1558,8.0905,13.5043,3.1944,4.6451,3.8097,1.6283,1.3511,4.1634,10.9044,3.1003,2.2205,11.2116,1.998,2.4214,2.0755,13.2136,1.6768,4.2706,1.2384,14.1526,6.0614,8.7427,4.4723,10.8531,6.815,7.8505,7.7985,3.8418,1.3893,4.3761,,,,,,,,,,,,,,,49,,,
-3366,1.1341,1.9791,,60-69y,Other,,,21.8579,4.677,2.8193,2.4991,1.2374,ppmi,,,M,,0.47262,4.0875,4.3272,0.93941,9.4023,1.5212,0.39705,3.1975,2.932,49.3969,18.756,230.0633,3.9398,4.3396,1.8126,2.091,3.5713,7.5425,1.9656,3.4845,0.46217,6.4768,10.8487,9.9434,7.9698,2.6778,4.6502,1.52,18.3109,6.6061,3.8087,1.4578,2.8608,6.9159,13.4857,3.6219,4.803,3.9608,2.0093,1.5967,4.4078,11.6938,3.4394,2.356,11.841,2.2842,2.4914,2.2551,12.2004,1.9093,4.5812,1.1727,14.3941,5.9684,9.1176,3.5475,13.1146,7.1425,9.0798,7.6997,4.6259,1.5437,5.1499,,,PD,0.071139,PD,,PD,0.44262,3.7839,4.0063,0.91871,11.445,1.5138,0.42954,3.3381,3.0682,49.6349,18.8772,235.8782,3.7799,4.8256,1.8633,1.8501,3.3825,7.9927,1.9651,3.6873,0.56282,6.5381,11.8109,8.9402,8.2898,2.1243,4.6434,1.5041,17.1957,5.8328,3.4654,1.175,2.9166,7.3248,14.646,2.9094,4.6102,3.3749,1.454,1.5722,3.7914,10.8331,3.2181,2.2231,10.9294,2.128,2.3393,2.0118,12.87,1.8804,4.3762,1.126,13.7819,5.659,7.3592,4.3646,13.7819,6.8907,8.594,7.6566,3.3946,1.4064,4.9941,,,,,,,,,,,,,,,61,,,
-3367,0.91429,1.9932,,-50y,Other,,,19.0524,4.6888,2.6987,2.2006,1.0279,ppmi,,,M,,0.47479,4.2091,4.3658,0.91441,10.3715,1.4643,0.39697,3.4066,3.1129,48.1128,15.9312,219.5554,3.8089,4.6125,1.7907,1.9225,3.4705,7.4929,2.0746,3.3092,0.39889,6.8488,11.5757,8.4191,7.7293,2.3735,4.7501,1.7395,18.6074,6.2393,3.7382,1.1345,2.9014,6.6587,14.447,3.3671,4.5882,2.7226,1.5898,1.6125,4.3399,10.4952,3.2729,2.439,12.591,2.1962,2.4047,2.3805,13.2506,1.8927,4.8715,1.2146,15.1171,5.2597,9.3539,3.624,10.5715,7.1964,9.123,7.8226,3.289,1.5905,5.0469,,,PD,0.076934,PD,,PD,0.4513,3.8924,4.2722,0.9077,10.4034,1.7476,0.4136,3.5172,3.3451,49.4478,15.6,227.4773,3.9729,4.9752,1.7726,1.927,3.7,7.7368,2.091,3.397,0.53195,6.9583,11.3868,8.5301,8.3751,2.3069,4.4305,1.7471,17.3366,5.4619,3.9165,1.009,2.4822,7.4301,14.2267,3.1324,4.8082,3.1545,1.6532,1.5828,3.8935,10.7886,3.0122,2.4786,11.8129,2.2185,2.5128,2.1192,13.2614,1.8492,4.8154,1.1462,14.3632,5.3436,8.731,4.5664,11.3329,7.7589,8.6673,7.893,3.482,1.4792,4.8714,,,,,,,,,,,,,,,45,,,
-3368,0.89722,1.2432,,50-59y,Other,,,16.6545,4.8909,2.458,2.3135,1.0672,ppmi,,,F,,0.50742,4.9609,4.3358,1.0218,11.2698,1.7307,0.41693,3.8403,3.1259,45.6234,14.7484,223.3852,4.3477,5.1902,1.9677,1.9816,4.0636,7.7644,2.2356,3.5982,0.34941,8.1316,12.1983,10.5998,8.3667,2.6499,4.8497,2.0844,22.2161,7.1237,4.4317,1.1331,2.7574,7.3548,14.9329,3.8507,4.8684,3.4104,1.5415,1.3797,5.0601,12.8487,3.4437,2.3476,14.1345,2.864,2.6819,2.3379,14.345,2.3175,4.5474,1.2822,15.8034,5.7256,10.289,3.76,11.9126,7.577,8.1528,8.1634,3.9052,1.6768,4.5382,,,,0.078834,CN,,HC,0.46241,4.6781,4.0365,1.0058,12.5824,2.0075,0.42844,3.8218,3.3294,46.0996,13.8647,231.2482,4.0165,5.5235,1.9674,1.9964,4.202,7.9862,2.3127,3.8364,0.39849,7.9011,12.7309,11.1395,9.3525,2.3849,4.9951,1.9782,20.1261,6.3606,4.3067,1.1535,2.7609,7.8376,16.2278,3.7508,5.0445,3.6979,1.5868,1.3791,4.6405,13.1815,3.2884,2.3225,12.4789,2.3327,2.3529,1.9797,12.6374,1.8597,4.4634,1.2432,16.188,6.1442,8.6558,5.0687,12.188,7.7533,7.8867,8.6453,3.8215,1.4582,4.3308,,,,,,,,,,,,,,,53,,,
-3369,1.0495,1.9972,,-50y,Other,,,17.3654,4.5203,2.574,2.3105,1.5706,ppmi,,,M,,0.48838,4.351,4.7488,0.91854,8.7301,1.4403,0.40363,3.2239,3.304,43.778,14.8888,195.4119,4.055,4.0086,1.7317,2.2287,3.4692,7.2166,1.9804,3.3766,0.72053,6.8078,10.7871,14.1603,7.1925,2.41,4.45,1.6769,19.4134,5.821,3.8497,0.97652,2.1296,6.2249,13.067,3.4954,4.1205,3.557,1.5551,1.411,4.4372,10.2843,3.3217,2.4355,12.0002,2.5087,2.5396,2.3634,13.5535,2.1707,4.6752,1.1739,13.7568,4.8308,9.1064,3.6401,10.4681,7.2063,8.4119,7.6055,3.932,1.788,4.4879,,,,0.053807,CN,,HC,0.44058,3.8243,4.2841,0.89965,10.2951,1.7386,0.42792,3.3788,3.4082,44.699,14.8834,202.9529,3.8551,4.7096,1.7507,2.1429,3.7042,7.2854,2.0259,3.5373,0.6433,6.8838,11.1066,12.5085,7.8953,2.2097,4.3666,1.5592,18.5376,5.6448,3.8774,1.0115,2.3029,7.1043,13.1866,3.2505,4.2104,3.9135,1.5533,1.3688,4.0798,10.3582,3.0214,2.3522,10.914,2.0767,2.4021,2.096,13.6998,1.7337,4.6419,1.1176,14.1403,4.7749,7.7277,4.5312,10.7577,7.747,8.1361,7.6804,3.5869,1.4876,4.3151,,,,,,,,,,,,,,,44,,,
-3370,0.75886,1.8032,,-50y,Other,,,22.725,5.151,2.8172,2.4545,1.2177,ppmi,,,M,,0.5617,5.5916,4.7673,1.037,10.1225,1.956,0.44634,3.6981,3.5079,54.1382,18.5486,278.1248,4.4582,5.9337,1.9401,2.3661,4.0851,8.5597,2.4204,3.8291,0.4119,7.1206,12.0726,9.7436,8.4689,2.7774,5.9019,2.1918,21.4474,6.8522,4.6648,1.2618,3.1152,7.7725,13.9277,4.2199,4.7398,3.6411,1.6624,1.937,4.6766,11.9991,3.6464,2.4507,13.5207,2.6249,2.8063,2.5749,16.1537,2.0842,5.264,1.3615,16.5357,6.3796,9.6272,4.3348,12.608,7.5698,10.3299,8.6134,4.4544,1.6946,5.9283,,,,0.081255,CN,,HC,0.52159,4.466,4.563,1.0414,11.1197,1.944,0.46212,3.626,3.759,55.1002,18.4406,284.7104,4.3983,5.4774,1.9943,2.3368,4.2844,8.6015,2.4918,4.0263,0.4422,8.1483,12.6056,10.0789,8.4813,2.6231,5.3257,2.1773,21.9365,6.3561,4.3697,1.1874,3.0577,9.2333,14.3148,3.7128,4.9537,3.8079,1.8901,1.9258,4.0945,11.6485,3.1933,2.4555,12.6891,2.4608,2.6401,2.3506,15.153,2.1963,5.1535,1.3127,15.8833,6.5896,8.6921,5.1445,12.5228,7.8598,9.8833,8.7545,3.8098,1.6767,5.6899,,,,,,,,,,,,,,,40,,,
-3371,2.1889,2.3393,,60-69y,Other,,,19.0342,4.9734,2.795,2.3152,2.3408,ppmi,,,M,,0.55474,6.2263,5.5591,1.0312,11.6943,1.945,0.46728,3.7235,3.6914,52.6303,15.3199,225.1178,4.8752,6.0181,2.0358,2.3816,4.8011,8.5863,2.5388,3.7748,0.76915,8.2237,13.8668,36.2959,9.1618,2.9275,5.8281,2.3949,23.2985,7.2265,4.8034,1.5241,3.5779,9.6589,17.6315,4.5955,5.0687,4.0434,1.7997,1.4678,5.676,12.7844,3.698,2.9345,12.2795,2.8922,3.0534,2.7569,16.5683,2.3045,4.6028,1.6531,19.1146,6.9541,10.5838,4.1534,13.9708,9.4266,9.2267,9.2986,5.0126,1.9237,4.9859,,,PD,0.086748,PD,,PD,0.51596,6.1209,5.2904,1.0566,12.9927,2.0676,0.48913,3.9099,3.9509,54.9471,15.0176,231.2751,5.1379,6.1312,2.0054,2.1092,4.7456,8.995,2.4646,4.0945,0.94894,8.4015,13.5759,34.4735,10.5729,2.6555,6.2008,2.2555,23.6774,6.6442,4.4361,1.3588,3.221,10.5459,16.7154,3.8639,5.3537,4.6296,1.8301,1.4387,4.8709,11.8325,3.5185,3.0978,12.5274,2.9866,2.8747,2.4924,16.1416,2.2104,4.5824,1.6353,17.9608,6.3923,10.0137,5.269,12.2691,8.3916,8.9883,9.0972,4.9062,1.8956,4.7594,,,,,,,,,,,,,,,69,,,
-3372,2.7742,3.292,,70-79y,Other,,,21.3681,5.2222,2.6514,2.2884,2.5275,ppmi,,,M,,0.49128,5.9684,5.3661,0.92929,9.8886,1.7021,0.45858,3.8237,4.404,50.6941,16.2999,237.7769,4.7391,6.3992,1.8371,2.4534,4.4008,8.0762,2.4004,3.712,1.6211,7.5938,12.1843,46.8225,9.4264,2.7631,4.6026,2.2889,21.1171,7.2968,4.4133,1.355,3.0833,9.4844,15.0207,4.0009,4.9153,3.6348,1.859,1.6853,5.206,13.4451,3.556,3.0531,12.1897,2.7206,2.6946,2.8876,14.3734,2.3488,5.0416,1.6381,14.3276,6.4341,9.3875,4.3438,11.2422,8.0024,9.0577,8.8878,4.3697,1.9111,5.3327,,,PD,0.091813,PD,,PD,0.45052,4.6552,5.0169,0.91732,10.9504,1.7563,0.46335,4.1564,4.6757,51.6878,16.0429,242.3058,5.0085,6.334,1.8083,2.1676,4.6981,8.4935,2.4901,3.9758,1.6449,8.1747,12.6973,45.8395,9.8438,2.4494,4.878,2.2421,19.1884,6.0564,4.1476,1.081,3.0635,10.1921,15.4909,3.6555,4.9564,3.1842,1.7736,1.6958,4.9424,13.5678,3.2406,3.5259,10.8509,2.8879,2.5712,2.9748,13.9762,2.452,4.8732,1.5257,15.0419,6.4408,8.5164,4.6424,10.8925,7.949,8.9662,9.3686,3.6646,2.3079,5.1386,,,,,,,,,,,,,,,71,,,
-3373,1.6911,2.5249,,60-69y,Other,,,19.3738,4.916,2.7004,2.4161,2.1308,ppmi,,,M,,0.50759,4.4279,4.6355,0.90623,9.5227,1.829,0.42695,4.0573,3.4526,50.8898,16.0196,228.7105,4.4579,5.1873,1.7669,1.9786,4.4468,7.797,2.342,3.1231,0.69174,7.3914,12.1048,33.7596,8.581,2.6396,4.129,2.0117,23.6452,6.8482,4.4981,1.1871,2.8363,7.1674,15.118,4.4747,4.9593,3.8527,1.5821,1.5371,4.6045,11.3793,3.3292,2.4792,13.8044,2.8582,2.6869,2.4614,14.2265,2.5394,4.8045,1.3938,19.3429,5.2982,9.3708,3.919,10.9573,7.8967,8.9834,8.6439,4.4263,1.9651,5.0312,,,PD,0.071969,PD,,PD,0.45,3.627,4.5905,0.89568,12.6435,1.9277,0.43828,4.1525,3.8008,51.4238,15.7952,234.505,4.1626,5.3888,1.8621,1.9171,4.5409,8.0448,2.2594,3.258,0.71507,8.4726,13.0501,33.2144,9.2139,2.4224,4.114,1.9855,21.002,6.2247,4.0836,1.2877,2.8499,8.5036,15.7122,3.7881,5.2455,3.6879,1.6541,1.5144,4.1922,11.4344,3.113,2.684,11.7384,2.2332,2.4644,2.3086,14.7208,2.0429,4.7966,1.241,19.3962,5.591,8.5521,4.7685,11.4034,7.8909,8.6639,8.8035,3.9175,1.6208,4.7954,,,,,,,,,,,,,,,61,,,
-3374,1.4748,2.5294,,70-79y,Other,,,19.5145,4.8833,2.993,2.4474,1.5065,ppmi,,,M,,0.43779,4.7724,4.5264,0.9673,9.442,1.4568,0.39728,2.7533,3.0088,50.0851,15.2933,207.8511,4.1613,4.4682,1.8609,1.9452,3.5057,7.4128,2.1243,3.1201,0.55027,5.6431,11.2061,19.0725,7.4023,2.269,5.132,1.7405,19.0301,5.4295,4.1865,1.0779,2.4814,7.1276,13.8936,3.2799,3.912,3.3314,1.4827,1.3994,4.6796,10.6095,3.5145,2.4062,12.4741,2.2271,2.558,2.2871,13.6817,1.8622,4.3641,1.2584,14.6719,5.5108,9.2265,3.2236,10.5968,7.1834,8.1237,7.8494,4.1138,1.4114,4.7978,,,PD,0.083178,PD,,PD,0.40978,4.4627,3.9829,0.91561,10.4062,1.6581,0.42144,2.5748,3.2432,50.4236,15.2064,214.8521,3.802,4.6171,1.7287,1.8407,3.7781,7.5016,2.1436,3.1924,0.6399,6.6878,11.3217,18.9645,7.8904,2.1762,4.9955,1.7607,18.0851,5.1646,3.8445,1.3084,2.8166,7.9628,13.6165,2.9539,4.3126,2.9174,1.5404,1.3702,4.1801,10.9382,3.1052,2.3093,10.91,2.1568,2.4134,1.9528,13.4388,1.9091,4.2136,1.1456,16.3166,5.5604,8.4849,4.0817,9.7807,7.2267,7.9275,7.53,3.1399,1.4226,4.6246,,,,,,,,,,,,,,,71,,,
-3375,0.95131,1.6058,,50-59y,Other,,,18.8563,4.8708,2.9138,2.3101,1.0076,ppmi,,,M,,0.52191,5.0906,5.1837,1.0318,11.5491,1.7801,0.4783,3.3836,3.2754,49.3766,15.3542,218.8777,4.7165,5.1488,2.0603,2.4505,4.3648,8.5285,2.6084,3.6724,0.40983,8.0476,13.8081,9.2938,8.0277,2.7341,5.1761,2.0691,20.9977,7.9902,4.7463,1.1483,2.9088,8.359,16.9742,3.9969,4.8076,3.9511,1.8652,1.4743,5.1017,12.2174,3.5971,2.6096,13.2299,2.72,3.0002,2.6193,14.4852,2.2931,5.1366,1.5167,15.8253,6.3478,10.5673,4.3575,12.141,8.8408,8.61,9.9358,4.4903,1.8052,4.7207,,,PD,0.086883,PD,,PD,0.47729,4.2115,4.8215,1.0292,12.5281,2.0645,0.46775,3.4794,3.3503,50.3285,15.157,224.8704,4.3963,5.2683,2.1606,2.3312,4.6739,8.6727,2.6254,3.8233,0.49825,7.8762,13.6863,8.1578,8.7281,2.6625,5.2054,2.0955,20.6392,5.8624,4.4013,1.064,2.7773,9.3256,18.2295,3.3458,4.8194,4.1233,1.7128,1.4883,4.6259,11.3652,3.3886,2.611,11.9102,2.4226,2.5802,2.314,14.6373,2.1329,5.0686,1.3839,16.5033,6.1113,9.8239,4.9367,11.1598,9.4115,8.3268,10.1564,3.8316,1.6839,4.5744,,,,,,,,,,,,,,,50,,,
-3376,1.3713,1.3237,,70-79y,Other,,,18.2643,5.7671,2.8122,2.3825,1.2254,ppmi,,,F,,0.45277,4.9263,4.5198,0.87839,9.201,1.6986,0.42286,3.5041,2.9315,49.7734,14.7953,185.5829,4.124,4.8283,1.8042,2.2471,3.8147,7.6168,2.2508,3.3195,0.36812,6.1456,10.4997,13.9409,8.1506,2.6302,4.8752,1.9446,18.2851,6.197,4.3586,1.3544,2.8785,7.6058,12.687,3.6732,4.7099,3.838,1.7101,1.2526,4.6468,11.5311,3.4838,2.3229,12.214,2.4848,2.6966,2.4021,12.8089,2.294,4.1436,1.4042,15.353,6.0799,9.6534,3.9185,12.0705,7.6741,7.8262,8.4231,4.6059,1.6998,4.3248,,,PD,0.095106,PD,,PD,0.40721,3.9967,4.2552,0.89281,9.9502,1.8842,0.4057,3.8159,3.1589,49.8161,14.6413,193.7782,4.4092,5.1631,1.8102,2.0748,3.9855,7.7033,2.2399,3.4848,0.46859,6.9306,11.3931,13.8972,8.9369,2.3931,4.5817,1.9998,18.3637,5.1897,4.145,1.2405,3.0302,9.1397,13.3863,3.1447,4.6055,3.5755,1.6539,1.2821,4.1832,11.2997,3.2687,2.3727,10.5374,2.4489,2.4751,2.1955,13.9019,1.9063,4.0429,1.3408,15.755,6.3839,8.1388,4.443,11.1489,7.3438,7.498,8.8471,4.129,1.6745,4.18,,,,,,,,,,,,,,,70,,,
-3377,0.73161,1.9723,,50-59y,Other,,,15.8848,4.3206,2.301,2.0244,1.0009,ppmi,,,F,,0.39234,4.4646,3.7198,0.92571,9.2568,1.4313,0.36004,3.1518,2.5567,41.8949,13.6038,215.2613,3.8366,4.8423,1.7124,1.763,3.2461,6.8975,1.9222,3.1422,0.46582,6.1499,11.2252,7.0295,7.3003,2.3245,4.7608,1.6971,17.9039,6.4802,3.687,1.1006,2.5243,6.5817,14.5519,3.5895,4.1695,2.9938,1.4929,1.3046,4.6096,10.6902,3.0067,2.0408,13.1746,2.0928,2.4246,2.0167,13.0492,1.7857,4.0397,1.0317,14.7665,4.9775,9.0103,3.8894,12.0966,7.3684,7.9008,7.8147,3.5606,1.4398,4.2662,,,PD,0.068785,PD,,PD,0.35208,3.881,3.574,0.89191,10.5274,1.6462,0.36153,3.0957,2.8113,42.4858,13.3267,221.4533,3.9424,4.7081,1.6988,1.7976,3.695,7.5753,2.0885,3.4972,0.63671,6.8086,11.3917,6.7816,7.8658,2.0754,4.6865,1.6273,16.9646,5.4149,3.6922,0.98023,2.4412,7.5142,13.8893,3.0388,4.1939,3.2231,1.3695,1.2834,4.1309,10.854,2.8932,1.9639,10.7036,1.9582,2.1953,1.7823,11.8999,1.7674,4.072,1.0385,14.0765,5.2618,8.4629,4.6419,11.6941,7.4918,7.7065,7.9875,3.1305,1.3339,4.107,,,,,,,,,,,,,,,54,,,
-3378,1.6365,2.5448,,-50y,Other,,,21.6436,5.845,2.8987,2.6722,1.4691,ppmi,,,M,,0.52515,5.0587,4.6333,0.92992,9.8303,1.8777,0.42944,3.2973,3.8831,51.5945,19.1994,265.2472,4.616,4.1982,1.7169,1.978,4.4231,7.7557,2.373,3.6631,0.58048,7.0673,11.5277,20.9011,8.0697,2.8428,5.0731,1.969,22.3491,7.0866,4.6301,1.1319,2.7153,7.9323,14.6918,3.6338,4.3982,3.5381,1.7667,1.7993,5.4784,11.7585,3.4846,2.6796,13.4442,2.629,2.7531,2.5301,14.7844,2.1616,5.0376,1.4256,15.897,5.9747,9.7454,3.9382,10.8616,7.6459,9.5636,7.973,4.2607,1.8137,5.4803,,,PD,0.072184,PD,,PD,0.48299,4.8059,4.6105,0.93102,10.7115,1.9834,0.45358,3.5007,4.0264,52.8862,18.641,274.3285,4.5771,5.1664,1.8648,2.3099,4.5798,8.2115,2.4424,3.9342,0.69559,7.39,12.1241,19.1702,9.0616,2.4836,4.8749,2.0447,20.6624,5.7523,4.4251,1.1004,2.6962,8.7877,15.2324,3.4515,4.8228,3.9706,1.7803,1.8497,4.7497,11.6747,3.3131,2.699,11.9442,2.471,2.6056,2.1182,14.3528,2.0938,4.9422,1.3577,16.2976,6.2907,8.6153,4.8997,11.0341,7.3804,9.441,8.0176,4.1617,1.7224,5.2922,,,,,,,,,,,,,,,49,,,
-3380,1.0966,2.2294,,70-79y,Other,,,16.9095,4.0178,2.2868,1.8735,1.1095,ppmi,,,F,,0.44396,3.8322,3.9284,0.83549,9.1751,1.2749,0.35825,2.8975,2.9371,41.2997,12.9543,181.6615,3.2812,4.1265,1.5998,1.6628,2.9319,6.1038,1.7876,2.9142,0.49438,5.7795,9.8184,9.8888,6.8472,1.9132,4.0067,1.4975,15.9519,5.4586,3.4531,1.2624,2.408,6.2381,12.8929,3.0917,3.7687,2.652,1.2209,1.2345,3.8259,9.885,2.9339,2.2291,11.2982,2.135,2.1403,2.1103,10.539,1.5978,4.5204,1.0936,11.7969,4.929,8.939,3.1499,9.7839,6.2818,7.0685,6.9195,2.9708,1.2434,4.1942,,,PD,0.081356,PD,,PD,0.39834,3.8319,3.3633,0.79399,9.6755,1.4283,0.35815,2.9456,3.1497,41.5482,12.6366,182.967,3.4801,4.1684,1.5888,1.569,2.8986,6.3474,1.6847,3.1954,0.65773,5.6715,10.0785,9.7179,7.3525,1.8717,4.2016,1.3613,15.9128,4.5264,3.2217,0.93519,2.183,6.5394,12.2301,2.5927,3.64,2.6741,1.2938,1.2132,3.5071,9.8,2.6911,2.0445,9.1799,1.7721,1.9995,1.7504,10.3262,1.5501,4.4045,1.03,11.4415,4.9678,7.3559,3.8209,9.8904,6.4506,7.004,7.2314,2.6744,1.243,4.0159,,,,,,,,,,,,,,,71,,,
-3383,0.95244,2.0168,,-50y,Other,,,19.6671,5.0753,2.7612,2.2044,1.0605,ppmi,,,M,,0.50255,4.5708,5.1289,0.98205,9.9021,1.7344,0.42246,3.5797,3.6911,50.5402,17.9157,257.2282,4.6362,4.9526,1.857,2.342,3.916,7.8793,2.2664,3.2892,0.39177,7.9618,12.2627,8.7129,7.717,2.6444,5.0524,1.8618,20.0264,7.4913,4.247,1.1058,2.6262,7.0593,15.0148,3.8945,4.9313,3.768,1.7387,1.8427,4.9711,11.3299,3.4803,2.6232,12.8278,2.7148,2.606,2.6571,15.9964,2.4823,5.3682,1.2819,15.9322,5.343,9.1005,3.9918,10.9431,8.5517,9.1958,8.1033,4.2738,1.9208,5.308,,,PD,0.077639,PD,,PD,0.48935,4.1388,4.6228,0.98756,11.2272,1.8342,0.45864,3.6289,3.8232,49.9689,17.4765,259.6629,4.2328,5.2346,1.8843,2.1683,3.9519,7.8881,2.3321,3.5437,0.57137,7.5467,12.5913,7.9095,8.4123,2.4332,4.6437,1.9111,18.8318,5.8287,4.0651,1.1834,2.8155,7.8014,15.1259,3.2576,4.8376,3.7314,1.677,1.8183,4.7247,11.3434,3.1631,2.6006,10.8211,2.4985,2.4245,2.4,15.2771,2.237,5.2229,1.2187,16.0976,5.5305,8.6984,5.0913,11.985,8.4578,8.7632,8.2585,3.6852,1.7164,5.0982,,,,,,,,,,,,,,,48,,,
-3385,0.8372,1.3033,,50-59y,Other,,,18.1034,4.6248,2.6392,2.1324,1.2419,ppmi,,,M,,0.47376,4.4726,4.295,0.83575,9.2985,1.619,0.41631,3.2736,3.0945,42.9169,15.8053,219.9806,3.7986,4.9366,1.573,1.9864,3.5493,7.1648,2.1602,2.9046,0.60267,6.2246,11.293,15.9076,7.5038,2.5486,4.5306,1.8511,19.0755,6.2246,4.1067,1.0389,2.2923,6.8412,14.4074,3.4598,4.1965,3.1417,1.5897,1.5254,4.1807,11.0193,2.9531,2.188,12.3516,2.644,2.6655,2.1671,12.7672,2.1052,4.4903,1.2031,14.0122,5.0424,9.329,3.937,11.9208,7.3397,8.6007,7.6724,3.8352,1.6213,4.669,,,PD,0.073849,PD,,PD,0.40906,3.4971,4.2297,0.83451,10.7234,1.6915,0.41862,3.3016,3.1196,43.4773,15.4726,224.245,3.7222,5.2801,1.6175,2.1828,3.7848,7.2776,2.23,3.3027,0.51609,6.6845,11.5616,11.8735,8.0635,2.094,4.2626,1.846,18.1396,5.1281,3.7874,1.0229,2.4545,7.6808,14.591,3.2632,4.111,3.8381,1.4417,1.4856,3.9765,10.918,2.6784,2.3518,11.1792,1.9917,2.4653,2.0094,13.901,1.6442,4.4775,1.1399,13.5892,5.452,8.4605,4.2916,11.0785,7.2946,8.5993,7.6788,3.3738,1.335,4.4599,,,,,,,,,,,,,,,52,,,
-3386,1.2618,1.7244,,70-79y,Other,,,19.7535,4.85,2.633,2.1906,1.3048,ppmi,,,F,,0.39363,3.8739,4.0518,0.80598,8.8265,1.3425,0.34509,2.7004,2.975,45.061,16.5342,221.2186,3.6205,4.2915,1.5137,1.9041,3.3014,7.1411,1.7897,3.0831,0.48589,5.5735,10.3723,14.4908,6.9055,2.1123,4.3158,1.5151,17.81,5.5141,3.4997,1.0154,2.2844,6.3594,12.8357,3.1393,3.9623,2.9305,1.4096,1.4796,4.2286,11.2087,3.2716,2.266,11.2494,2.093,2.1298,2.0499,12.4501,1.6946,4.1967,1.1289,13.5344,4.9546,8.8055,2.9737,10.5507,6.8504,7.8414,6.8438,3.441,1.2264,4.6267,,,PD,0.071934,PD,,PD,0.34948,3.5428,3.7813,0.79593,10.3195,1.4091,0.36553,2.7788,3.1675,45.9191,15.9594,224.6876,3.5931,4.4092,1.5861,1.9012,3.3066,7.2031,1.8949,3.1201,0.50293,6.0107,10.2688,12.8917,7.4433,1.9797,4.1708,1.5022,16.3414,4.8108,3.4045,1.0492,2.5356,7.0583,12.4912,2.6182,3.8791,3.0529,1.4532,1.3884,3.9892,10.5608,2.858,2.0649,10.4934,1.7663,2.0299,1.7157,11.7157,1.6179,4.2949,1.1138,13.9426,5.0506,7.282,3.7562,10.9675,7.0605,7.4912,7.1089,3.2376,1.194,4.3357,,,,,,,,,,,,,,,72,,,
-3387,0.69166,1.4833,,50-59y,Other,,,18.8668,4.6373,2.6423,2.1245,0.81669,ppmi,,,F,,0.39079,4.1136,3.8063,0.88212,8.8355,1.5111,0.35015,2.8319,2.7966,46.4409,16.6716,216.3791,3.7428,4.4302,1.6639,1.9242,3.4053,6.8304,1.8946,3.2527,0.39697,6.1885,10.3894,6.0558,7.146,2.3396,4.5272,1.7287,17.0858,5.4154,3.7844,1.1301,2.5817,5.9592,12.5828,3.1297,4.0898,3.4181,1.5014,1.3958,4.3646,9.9241,3.079,2.2219,11.735,2.2137,2.5003,2.1184,13.8075,1.909,3.8894,1.0687,13.8644,4.8082,8.5811,3.2755,11.0491,6.75,8.2549,7.4129,3.4603,1.4583,4.6578,,,PD,0.069295,PD,,PD,0.37488,3.5202,3.879,0.89533,9.2114,1.697,0.36367,2.7929,2.8416,46.8464,16.1191,220.4503,3.8311,4.5321,1.7464,2.0774,3.525,6.9453,2.066,3.5366,0.49666,5.9293,10.4643,4.9732,7.8797,2.173,4.497,1.642,16.0642,4.4497,3.6514,1.0316,2.5182,7.1814,13.1039,2.7504,4.1904,3.6725,1.6342,1.3777,3.9999,10.3122,2.9321,2.1769,10.6771,1.9666,2.2277,1.9969,12.8056,1.8669,3.7626,1.0607,13.9877,4.8313,8.1356,3.8243,10.5057,7.501,7.945,7.9466,3.2145,1.4642,4.5126,,,,,,,,,,,,,,,56,,,
-3389,1.4884,1.8872,,70-79y,Other,,,20.1491,5.1552,2.4653,2.2657,1.3529,ppmi,,,M,,0.42329,4.3843,4.0872,0.86541,9.7365,1.3976,0.37705,2.7726,2.9383,48.3317,17.2111,212.9465,3.9363,4.2659,1.6873,1.8997,3.1532,7.5234,1.9769,3.0614,0.55464,5.645,11.3831,14.8274,7.2395,2.1361,4.5827,1.759,18.3762,5.7552,3.9145,1.1586,2.3719,7.1324,14.4246,3.1133,4.1472,3.1298,1.4178,1.3056,4.3499,10.2773,3.3954,2.2121,12.1445,2.1991,2.365,2.1915,12.2054,1.9985,3.9542,1.216,14.6843,5.7919,9.4264,3.9399,10.9018,7.3944,7.8398,7.4678,3.9209,1.5,4.6454,,,,0.086428,CN,,HC,0.37368,4.0003,3.8986,0.88542,9.7337,1.5748,0.38147,2.8762,2.8815,48.8352,16.8766,216.0145,3.7413,4.5231,1.7606,1.7856,3.4297,8.0433,1.8907,3.3003,0.54825,6.3636,12.1292,11.8936,8.0312,2.0237,4.7606,1.6929,17.2159,4.6827,3.6034,1.1209,2.2549,7.656,14.0326,2.5345,4.4153,3.4201,1.3842,1.2615,3.9952,10.5601,3.1761,2.2715,10.42,1.9472,2.3251,2.0987,13.2476,1.872,3.924,1.1765,14.8014,5.6545,8.6292,4.1272,11.3346,7.4316,7.4955,7.8386,3.4244,1.3252,4.4351,,,,,,,,,,,,,,,72,,,
-3390,0.89342,1.6925,,60-69y,Other,,,19.3401,4.8738,2.5245,2.1733,1.1599,ppmi,,,M,,0.45419,3.8303,3.9454,0.86403,8.6021,1.4086,0.38247,3.3185,3.0614,46.2904,16.0804,218.8547,3.8521,4.6938,1.645,1.9393,3.1382,7.0434,1.8704,3.0998,0.40039,6.4484,9.9104,12.0874,7.207,2.3505,4.3183,1.6079,16.0692,5.8215,3.6809,1.2038,2.564,5.9893,11.8531,3.5507,4.3739,3.1109,1.4847,1.4258,3.905,10.0875,3.1763,2.1353,11.2553,2.4637,2.4382,2.1354,12.7484,2.2336,4.3759,1.1218,14.5987,4.6888,7.8993,3.8406,11.5385,6.6283,7.9727,7.395,3.9046,1.6197,4.7283,,,,0.066921,CN,,HC,0.3987,3.2435,4.0282,0.83971,10.0721,1.5622,0.38031,3.3761,3.196,47.5386,15.3346,224.4324,3.4121,4.7269,1.7314,1.8217,3.3755,7.3874,1.8741,3.2202,0.46508,6.6126,10.3792,11.5449,8.2357,2.0716,4.0079,1.6016,16.7672,5.228,3.4401,1.1158,2.68,6.6567,12.6145,3.212,4.5098,3.1182,1.4472,1.4076,3.6757,10.1719,2.9386,2.2863,9.5317,2.5002,2.3143,1.9837,11.5601,1.9154,4.3741,1.0684,13.475,5.0834,7.857,4.7652,11.1568,6.9724,7.9741,7.3431,3.368,1.3963,4.5213,,,,,,,,,,,,,,,66,,,
-3392,0.79511,1.7646,,50-59y,Other,,,18.1859,4.7353,2.9072,2.2452,1.0003,ppmi,,,F,,0.47845,4.3915,4.2093,0.89419,9.5554,1.5994,0.39676,2.9035,3.2911,49.1582,15.4777,192.0601,4.0499,4.3867,1.7207,1.9401,3.7076,7.6061,2.0632,3.1483,0.38329,5.9955,11.513,14.4047,7.8771,2.6183,5.0256,1.7435,19.9905,5.8293,3.97,1.2499,2.7726,7.0285,13.2175,3.2113,4.1469,3.2184,1.6619,1.3736,4.5766,10.5767,3.3621,2.2995,13.0305,2.3773,2.5892,2.1792,15.2043,1.9877,4.4315,1.1274,15.5944,4.8947,10.2234,3.8984,12.1823,6.6481,7.5617,7.2565,4.0458,1.633,4.4705,,,PD,0.066611,PD,,PD,0.42019,3.5556,3.9964,0.87898,10.8617,1.7037,0.40151,2.9163,3.3497,49.3973,15.1203,194.9637,3.932,4.3971,1.7647,2.1071,3.6882,7.9184,2.0713,3.265,0.35882,6.8891,11.6046,10.614,8.1138,2.3429,4.8497,1.7576,19.0949,5.7456,3.7315,1.148,2.8117,7.6863,13.4367,3.1081,4.3047,3.9462,1.629,1.3102,4.191,10.6114,2.9725,2.2325,10.3401,2.1721,2.3519,2.0848,13.3188,1.9298,4.2991,1.0647,15.6971,5.3191,8.3841,4.517,11.871,7.1383,7.3508,7.54,4.0011,1.5215,4.1902,,,,,,,,,,,,,,,51,,,
-3400,1.046,2.274,,-50y,Other,,,17.2683,4.731,2.9481,2.3195,1.2734,ppmi,,,F,,0.48346,5.1042,4.3192,0.9725,10.3682,1.7495,0.42026,3.1431,2.8381,53.045,14.7202,239.1793,4.418,4.6341,1.9151,2.1134,3.5808,8.2763,2.2861,3.5616,0.42946,6.7622,12.2563,15.2669,7.7219,2.8029,5.2579,2.0382,19.4315,6.8662,4.3261,1.29,3.0447,7.3456,14.8406,3.2193,4.2746,3.4902,1.6999,1.4422,4.246,11.2544,3.5298,2.4246,13.2396,2.9774,2.9007,2.2899,13.9548,2.6587,4.0004,1.187,15.4712,5.721,11.0409,3.9458,11.3086,8.2692,8.8785,7.7792,4.1158,1.9591,4.7413,,,PD,0.051207,PD,,PD,0.42942,4.0626,4.2818,1,11.5745,1.7394,0.41,3.2144,2.9281,51.9217,14.305,240.1659,4.5798,4.8624,1.8914,2.1776,4.0813,8.1037,2.3665,3.7082,0.38321,7.1738,11.673,14.717,8.0976,2.327,5.0785,1.9625,18.8901,5.7061,4.0772,1.0479,2.6829,8.9605,15.0466,2.7098,4.39,4.1315,1.6909,1.4849,4.2272,11.1645,3.1389,2.3669,10.8233,2.7216,2.5316,2.0369,12.449,2.4455,3.9519,1.1726,15.5632,6.002,9.2514,4.6047,10.9386,8.0894,8.5009,8.0591,3.8802,1.7956,4.4138,,,,,,,,,,,,,,,39,,,
-3401,0.88853,1.8342,,50-59y,Other,,,16.3197,4.531,3.1335,2.403,1.3026,ppmi,,,F,,0.48011,5.1486,4.6365,0.95486,10.0046,1.8232,0.43029,3.1053,2.9249,54.0114,14.4945,206.3828,4.2941,4.5868,1.922,2.2833,4.0956,7.8135,2.3257,3.3652,0.35859,6.4812,11.4935,14.3245,8.1058,2.9539,5.5228,2.1371,20.0244,6.5248,4.2731,1.2171,2.9355,7.6011,14.6994,2.9312,4.4249,3.884,1.86,1.2884,4.926,11.4568,3.4018,2.3522,11.6122,2.6391,2.7748,2.338,12.898,2.2577,4.1777,1.3165,16.5554,5.382,9.0256,3.6069,11.0004,7.7754,8.1081,8.3138,4.5496,1.8273,4.2817,,,,0.057851,CN,,HC,0.42877,4.1474,4.4251,0.93549,12.269,1.9746,0.43048,3.389,3.0668,53.0181,13.7479,207.6806,4.7913,5.1586,1.8813,2.2971,4.0924,7.9682,2.1516,3.6495,0.65014,7.2008,11.4864,13.2486,8.4369,2.5368,5.0966,1.9302,18.8332,6.3032,4.1248,0.99815,2.735,8.5483,14.1919,2.8229,4.5809,3.7435,1.7079,1.299,4.5957,11.48,3.1361,2.4948,9.9921,2.8404,2.5384,2.1539,11.8153,2.2849,4.1726,1.2706,16.6349,5.7638,8.8003,4.5491,10.3939,8.1888,8.1127,8.0062,3.9158,1.878,4.0935,,,,,,,,,,,,,,,56,,,
-3403,3.4569,5.0006,,60-69y,Other,,,21.2648,5.755,3.5549,2.5255,3.6092,ppmi,,,M,,0.45635,5.6904,4.4319,0.94726,10.8335,1.7918,0.41934,4.0576,3.7309,56.659,17.6162,232.0721,4.317,4.3617,1.7725,2.1696,4.0757,8.0622,2.115,3.6032,2.5746,7.116,12.4929,70.464,8.3537,2.6539,9.832,1.7823,19.8366,6.6353,4.339,1.3157,4.5262,9.0271,15.7336,3.9648,4.7822,3.7612,1.7533,1.4363,5.1746,11.7335,3.3658,2.5337,11.3796,2.6311,2.7914,2.3996,11.7961,2.0718,4.4526,1.3924,17.6338,8.6787,10.1866,3.7202,12.1623,7.5826,8.0731,8.3512,4.4574,1.6929,5.0604,,,PD,0.070691,PD,,PD,0.43022,5.315,4.0705,0.94979,11.2957,1.9355,0.41632,4.5639,3.9713,57.0233,16.7298,233.989,4.401,5.5155,1.8018,1.9808,3.998,8.124,2.0761,3.8137,1.7163,7.2043,12.4059,59.1634,9.3996,2.4623,10.1014,1.9078,19.8398,5.5074,4.0589,1.4355,4.526,9.5864,15.9603,3.6152,4.8513,3.7594,1.7463,1.464,4.3206,12.0134,3.2137,2.284,11.3034,2.3156,2.5856,2.1354,13.5759,1.9425,4.074,1.3717,17.4445,8.2021,8.5247,4.3087,11.8212,8.3404,8.3824,8.6096,3.97,1.5464,4.9962,,,,,,,,,,,,,,,69,,,
-3404,0.71623,1.5642,,50-59y,Other,,,15.4057,4.4514,2.5286,1.9546,0.75487,ppmi,,,F,,0.41472,4.1427,3.9319,0.83656,9.3176,1.4918,0.36789,3.1477,2.6017,43.576,13.2473,195.7266,3.379,5.0151,1.6357,1.887,3.0776,7.1117,1.8697,3.1105,0.37537,5.83,10.7628,5.7466,7.0881,2.3252,4.5645,1.4898,17.3419,5.6106,3.5771,0.98692,2.5574,6.062,13.4494,2.982,3.7927,2.885,1.4906,1.2369,3.9728,10.021,2.9454,2.0271,10.1829,2.1803,2.2735,1.9264,11.0416,1.7948,3.9002,1.0887,13.0279,4.8861,8.3195,3.7312,10.0898,6.9984,7.9573,7.1784,3.5835,1.3443,4.0695,,,,0.066584,CN,,HC,0.36889,3.748,3.7784,0.85424,9.6337,1.6833,0.36857,3.5837,2.5953,43.3121,12.7202,196.1887,3.8099,4.7814,1.6009,1.909,3.3103,7.0036,1.8602,3.2368,0.45614,6.9699,10.6155,4.8105,7.2505,2.0547,4.3035,1.4727,16.5185,5.179,3.5339,0.87239,2.3639,6.4161,12.7596,2.5645,3.8133,3.1865,1.4928,1.2994,3.6355,9.9844,2.6001,2.0849,10.0897,2.1294,2.1417,1.7314,10.654,1.6661,3.8028,1.0579,13.0861,4.5861,8.1259,4.2822,9.8039,6.8669,7.6991,7.0764,3.2716,1.2427,3.8662,,,,,,,,,,,,,,,56,,,
-3405,1.3037,2.7431,,60-69y,Other,,,14.7594,3.9982,2.3913,1.9065,1.1627,ppmi,,,F,,0.35932,3.4601,3.5848,0.7526,7.1939,1.2968,0.33667,2.5123,2.6185,42.9771,12.616,181.9949,3.2471,3.3868,1.5333,1.7567,3.1162,6.3232,1.8098,2.6455,0.49705,5.0166,9.5716,12.3572,5.721,2.0561,3.7763,1.4191,15.799,4.6716,3.5363,1.1087,2.2493,5.4544,10.8796,2.1931,3.5178,3.2365,1.2638,1.1256,3.5569,8.343,2.8857,1.9712,9.2249,2.1816,2.3361,2.0225,10.1398,2.04,3.3621,0.97169,13.4854,4.2964,7.0926,2.425,7.5025,5.9506,6.8249,6.9429,3.3803,1.5716,3.9609,,,,0.078224,CN,,HC,0.33123,3.3942,3.6106,0.73501,8.9367,1.6915,0.33871,2.7273,2.6312,43.5369,12.086,182.0666,3.3474,3.6584,1.5017,1.6874,3.1604,6.3168,1.8188,2.8066,0.59323,5.5011,9.8813,12.9564,6.8091,1.8782,3.6987,1.4539,16.5676,4.3236,3.5877,1.0254,2.0134,6.1104,11.4605,2.0886,3.546,3.1214,1.2649,1.1398,3.1693,8.806,2.6019,2.044,7.3462,1.7386,1.962,1.9459,9.9232,1.712,3.3617,0.99377,11.415,4.1066,6.3897,3.1625,8.7684,5.9676,6.7547,6.7287,2.9961,1.4216,3.6838,,,,,,,,,,,,,,,64,,,
-3406,0.85362,1.8575,,-50y,Other,,,20.353,5.2495,3.2785,2.712,0.96605,ppmi,,,M,,0.54032,4.9288,4.2284,0.94752,10.5841,1.8392,0.43941,3.1397,3.6521,58.0525,17.7713,271.6487,4.7245,5.0547,1.8585,2.1875,4.0493,8.7276,2.7446,3.3737,0.37813,7.3369,13.2015,9.9128,8.0577,2.8567,5.3213,2.0758,20.1775,7.2876,4.8183,1.3225,2.9945,7.3914,15.3593,3.3239,4.7034,3.4683,1.8569,1.6797,4.7959,12.2186,3.5392,2.4349,11.7601,2.7782,2.843,2.4444,13.5919,2.2836,4.1343,1.3433,18.5458,5.6839,9.9821,4.5358,12.377,8.1185,9.4233,8.3037,4.4471,1.8405,5.419,,,PD,0.078986,PD,,PD,0.45356,4.3665,4.4582,0.95499,11.4014,2.1566,0.43501,3.2844,3.3678,57.8419,17.0813,268.8011,5.0196,5.2406,1.8894,2.3657,4.1271,9.0078,2.6558,3.5866,0.55142,7.5972,13.9327,7.2153,8.6646,2.8267,5.3186,2.0346,19.5618,6.3848,4.6025,1.082,3.0337,8.3779,15.8097,2.8918,4.8408,3.9187,1.9004,1.7459,4.5731,12.2773,3.0729,2.5821,11.8846,2.9195,2.6557,2.3145,13.9863,2.3806,4.0357,1.3366,17.4987,5.7731,9.0396,5.1037,11.7035,8.3358,9.1216,8.9944,3.6935,1.9946,5.1551,,,,,,,,,,,,,,,35,,,
-3407,1.1806,2.2069,,60-69y,Other,,,19.216,4.3995,2.9411,2.3176,1.543,ppmi,,,M,,0.40593,3.9026,4.006,0.83343,9.6202,1.4457,0.38941,3.2646,2.427,46.1204,20.2695,253.993,3.5573,4.338,1.6676,1.7512,3.0302,6.3009,1.8806,3.1812,0.46865,6.513,10.0936,12.5239,7.0345,2.0025,4.4571,1.4882,15.7425,6.5777,3.8466,0.97649,2.2223,6.4606,12.0992,3.3394,4.0074,2.482,1.2497,1.4564,4.2931,11.155,3.0964,2.3897,10.2119,1.98,2.1185,2.0116,9.4072,1.462,4.4738,1.1504,12.5248,4.7628,7.6019,3.711,10.277,5.9083,7.8122,6.8652,3.1468,1.3592,5.1184,,,PD,0.078059,PD,,PD,0.38226,3.2354,4.0235,0.79395,9.2576,1.4666,0.38623,3.6255,2.4737,47.1225,18.7506,258.9341,3.5056,5.1246,1.5805,1.7906,3.2602,6.6921,1.8212,3.2216,0.6281,6.0399,10.8299,9.1971,7.8449,1.8906,4.3445,1.5756,16.0375,4.6997,3.3681,1.0065,2.146,7.6803,11.6672,3.2753,4.1714,2.7107,1.3019,1.5343,3.9753,11.3127,2.7785,2.4037,9.1014,2.0088,1.88,1.962,10.1664,1.416,4.0539,1.0728,12.503,4.802,6.5726,4.0773,9.9521,5.6767,7.8047,6.9152,3.0071,1.3484,4.7783,,,,,,,,,,,,,,,65,,,
-3409,1.056,2.1353,,60-69y,Other,,,17.0865,4.0966,2.7387,2.1703,1.1561,ppmi,,,M,,0.45398,4.8659,3.8043,0.94806,9.1743,1.7237,0.4064,2.9945,2.5614,47.7701,14.0875,242.3463,4.4318,4.5538,1.8547,1.8819,3.5637,7.9083,2.373,3.4736,0.47948,6.0084,12.2066,10.7884,7.1361,2.6102,5.267,2.0144,19.538,5.6524,4.3243,1.0871,2.8387,6.9911,14.4347,2.8691,4.4332,3.4875,1.5288,1.3522,4.5183,11.1662,3.397,2.233,11.8198,2.6656,2.446,2.2683,12.5258,2.354,3.7047,1.2997,13.882,5.6323,10.2615,3.1893,11.0859,7.7962,8.4056,8.0487,4.2806,1.8208,4.5945,,,PD,0.076821,PD,,PD,0.40212,4.0407,3.9344,0.97011,10.5087,1.9051,0.42122,3.2023,2.6566,46.5757,13.0756,247.8287,4.5605,4.6916,1.922,2.2344,3.6996,7.5958,2.2642,3.761,0.42457,6.403,12.0549,8.7545,7.6266,2.3889,4.6608,1.8744,19.9,4.7005,4.0988,1.0895,2.9321,7.8873,14.0865,2.2944,4.2124,3.6787,1.6617,1.392,4.1619,10.9919,3.0211,2.2411,10.5533,2.4998,2.3172,2.1029,12.5261,1.9196,3.6584,1.2992,12.8721,5.3833,8.2776,3.4757,10.6638,7.1039,7.9311,8.4768,3.6568,1.7274,4.4094,,,,,,,,,,,,,,,64,,,
-3410,1.34,2.2068,,70-79y,Other,,,18.3792,4.9399,2.9314,2.2527,1.1986,ppmi,,,M,,0.42721,4.5493,3.9594,0.87293,9.3735,1.7311,0.41877,2.9974,2.814,52.1581,14.8505,207.3273,4.1626,4.6535,1.7826,1.9205,3.7147,7.5416,2.3169,2.9276,0.43095,6.1683,10.9947,12.7788,8.2146,2.8023,5.0383,1.8935,21.0921,6.2026,4.3646,1.1148,2.6017,6.8809,12.4297,3.0977,4.668,3.3303,1.7419,1.2265,4.6471,10.9745,3.2244,2.1185,9.9611,2.6637,2.6981,2.1057,11.5696,2.0598,3.6072,1.2946,15.4275,5.2879,7.8547,3.6975,12.4807,6.9775,7.9631,8.1226,4.0855,1.6636,4.5559,,,,0.070098,CN,,HC,0.38364,3.9875,3.7797,0.86619,11.2597,2.1071,0.41432,3.3393,2.7798,52.2636,13.9291,200.8781,4.0652,4.9318,1.731,1.8732,3.8041,7.9885,2.1542,2.9799,0.39495,6.886,11.601,14.0399,8.4241,2.736,4.5591,1.8098,20.6718,6.1765,4.1105,1.0272,2.7393,7.4079,12.8594,3.0776,4.579,3.5182,1.667,1.246,4.2672,11.1527,2.8812,2.1149,9.4611,2.2169,2.5542,1.8958,12.3361,1.8796,3.6748,1.2339,14.6258,5.004,7.6775,4.6296,10.324,6.6238,7.6219,7.8184,3.8764,1.4239,4.3423,,,,,,,,,,,,,,,74,,,
-3411,1.3202,1.547,,-50y,Other,,,20.0438,4.8492,3.0201,2.5176,1.2813,ppmi,,,M,,0.52379,6.1761,5.086,1.0202,11.5663,2.1017,0.44912,3.4941,3.1086,52.682,17.9414,264.7169,4.6125,4.5299,1.8585,2.3344,4.4352,8.5319,2.812,3.3357,0.44423,8.4351,14.7293,16.1738,8.208,3.0244,5.9138,2.3598,22.7375,7.3839,5.1709,1.2521,3.1128,9.4394,16.3148,3.6886,4.8081,4.0917,1.8887,1.5964,5.6428,12.043,3.1939,2.5957,13.5667,2.7249,2.7935,2.6405,15.2667,2.4726,4.5061,1.4699,18.5937,6.9511,9.4818,4.0679,13.2104,7.845,9.4425,9.1414,4.7857,2.2142,5.3079,,,,0.079397,CN,,HC,0.44409,5.1816,4.6724,0.94966,11.5688,2.2245,0.43701,3.4164,2.9535,52.7799,16.9265,261.3481,4.6414,5.0739,1.9114,2.1633,4.5087,8.887,2.6928,3.6239,0.44085,7.8805,14.2371,12.0879,8.8197,2.8254,5.5427,2.2562,22.895,6.246,4.6264,1.2074,3.0645,10.8059,15.9029,3.082,4.7784,4.4886,1.8892,1.6352,4.8975,12.5874,3.2177,2.5561,11.9997,2.6012,2.5537,2.3515,16.0777,2.1332,4.2939,1.4354,18.035,7.0135,8.1293,5.5163,13.3282,7.7537,9.3195,8.8813,4.3858,1.8496,5.0797,,,,,,,,,,,,,,,41,,,
-3413,1.1736,1.6822,,-50y,Other,,,23.169,5.3278,2.983,2.2908,1.3462,ppmi,,,M,,0.62896,6.2012,5.6656,1.1592,11.4692,2.2253,0.51791,4.1854,3.9144,57.0062,20.3609,300.9299,5.3913,5.681,2.2764,2.7266,4.9831,9.1231,3.2094,3.9529,0.66077,8.4342,14.0778,18.529,9.2525,3.2518,6.2334,2.7813,26.2932,7.3313,5.7151,1.506,3.3007,9.5171,17.2745,4.2628,5.6075,4.5609,1.9265,1.8196,5.4303,13.3908,3.9772,2.8489,14.1091,2.8098,3.1875,2.7631,15.3112,2.3755,5.3287,1.6902,20.0928,6.803,9.5814,4.3582,13.6408,8.8554,10.2533,9.5959,4.7876,2.0689,6.0099,,,PD,0.081648,PD,,PD,0.55349,4.7574,5.4055,1.152,13.2498,2.5534,0.51854,4.3796,3.8284,57.3781,19.1644,300.0183,5.2729,5.7547,2.3524,2.4378,5.6164,9.052,3.1352,4.1845,0.83656,8.1269,14.5323,13.7083,10.258,3.055,6.0106,2.6877,24.7102,5.8819,5.5534,1.1235,2.9726,10.77,16.5644,3.5084,5.4793,4.2308,2.0916,1.796,5.4286,13.5664,3.6448,2.8269,12.3007,2.7441,3.1438,2.432,16.3089,2.2253,5.0628,1.5986,21.2213,6.7156,10.3461,4.6565,12.4316,8.9238,10.1041,10.2187,4.64,1.8259,5.7136,,,,,,,,,,,,,,,43,,,
-3414,0.73665,1.755,,-50y,Other,,,21.5686,5.7333,3.251,2.5496,0.77029,ppmi,,,F,,0.53278,4.9891,3.9763,0.91451,9.4118,1.8548,0.4211,3.0871,2.8328,58.0557,18.1681,233.0232,3.9406,5.2739,1.8291,1.9269,3.8511,8.1423,2.5858,3.153,0.36013,7.2044,12.5921,5.6331,8.1793,2.6674,5.4421,2.0927,19.8703,6.6226,4.3796,0.87904,2.521,7.2875,15.6346,3.4511,4.6705,3.0258,1.4611,1.4795,4.3877,10.3203,3.3118,2.1692,11.8387,2.5859,2.4262,2.1103,13.5062,2.2776,4.1104,1.2393,15.2674,5.1681,9.2957,4.1634,10.5542,8.4085,8.9474,8.4273,3.7631,1.6299,5.2713,,,,0.078062,CN,,HC,0.47102,4.2364,4.0313,0.93915,10.8045,2.1103,0.44469,3.5301,2.9263,58.2375,17.557,238.0713,4.1601,5.051,1.9309,2.0283,4.1821,8.2473,2.5588,3.4334,0.40149,6.8755,12.6095,5.785,8.7474,2.4533,5.3606,2.1478,19.3252,5.3714,4.3032,0.95883,2.5646,8.3752,15.4123,2.5988,4.6748,3.3772,1.5988,1.5455,4.281,10.6937,3.1915,2.2968,10.3039,2.3782,2.3139,2.1156,13.0167,2.1906,4.2265,1.2466,15.4126,5.3551,9.2004,4.3493,10.0016,8.3043,8.4974,8.9715,3.3911,1.6526,5.1186,,,,,,,,,,,,,,,37,,,
-3415,1.7264,2.0089,,60-69y,Other,,,19.2835,5.8169,2.8741,2.5332,2.2118,ppmi,,,M,,0.47149,5.0555,5.4736,0.92569,11.0662,1.9098,0.45241,3.2282,3.2231,52.3815,15.8745,221.0771,4.8501,5.3178,1.7683,2.3517,4.2164,8.436,2.7197,3.4147,0.89845,7.7645,13.6551,31.7808,7.9016,2.8331,5.3169,2.1771,19.9774,7.3383,4.6926,1.2789,2.7589,7.8108,14.6152,3.9581,4.8294,3.6035,1.7721,1.4633,4.5545,11.9152,3.297,2.7193,12.0129,2.7167,3.023,2.5383,13.7425,2.6092,4.7225,1.4806,16.9478,5.6375,9.528,4.4673,12.3122,7.7776,8.8324,8.1093,4.1949,2.1308,4.8677,,,PD,0.081924,PD,,PD,0.42815,3.851,5.1456,0.91423,11.902,2.3396,0.46033,3.4418,3.3215,52.3841,15.0105,224.468,4.8596,5.3906,1.9025,2.4201,4.5998,8.5263,2.7447,3.471,0.75025,7.3519,14.0783,24.2171,9.1552,2.9113,5.219,2.2629,21.3685,5.2144,4.851,1.2929,2.8264,8.8984,16.554,2.9696,4.8758,3.8899,1.9694,1.4632,4.1774,11.7765,3.053,2.6056,11.6416,2.94,2.8349,2.3033,13.5338,2.3769,4.3528,1.4587,16.4467,6.0916,9.528,4.0498,11.1603,8.309,8.7716,8.3666,4.3118,1.9018,4.6694,,,,,,,,,,,,,,,61,,,
-3417,1.0499,2.3787,,50-59y,Other,,,19.5139,5.2603,2.9905,2.3999,1.1048,ppmi,,,M,,0.47401,4.8056,4.222,0.90433,9.3027,1.7359,0.42166,3.3742,2.8472,52.227,16.8639,226.204,3.921,4.9853,1.7483,1.9326,3.5542,7.6671,2.357,3.3795,0.37321,7.6769,12.2871,8.7407,8.9796,2.6239,4.7102,1.9018,19.9016,6.5465,4.2682,1.0503,2.4554,7.0884,14.0257,3.768,5.1208,3.3757,1.5986,1.4967,4.3157,10.5015,3.4896,2.2487,10.674,2.4903,2.3031,2.2771,12.1791,2.211,4.2507,1.2739,14.3098,4.8744,9.6277,3.5315,11.0363,7.5281,8.8461,7.8454,4.068,1.6176,5.0247,,,PD,0.070717,PD,,PD,0.41013,4.0709,4.1929,0.9098,11.18,2.0015,0.43369,3.5682,2.7426,52.1413,16.1954,231.7099,4.0144,5.4371,1.8983,1.9772,4.0231,7.821,2.3119,3.5823,0.66918,7.4566,12.8421,7.8815,9.5713,2.4644,4.6158,1.9433,20.1033,5.2619,4.0237,0.80194,2.2308,8.2506,15.4392,3.0634,4.9765,3.278,1.7192,1.5064,4.1504,10.4679,3.2612,2.3025,9.8982,2.2298,2.2131,2.0613,11.668,1.9759,4.3693,1.1764,13.6215,5.1452,7.5091,4.3549,10.1502,7.5294,8.7264,8.3053,4.0877,1.5123,4.836,,,,,,,,,,,,,,,57,,,
-3418,1.172,2.0223,,50-59y,Other,,,19.5576,5.7704,2.6723,2.5875,1.3005,ppmi,,,M,,0.48764,4.9105,4.866,0.92106,10.2441,1.815,0.4396,2.6499,3.1799,49.2709,15.1383,251.7422,4.7034,4.6108,1.8848,2.1982,3.808,7.8556,2.5243,3.2467,0.43058,6.6454,12.3358,12.4374,7.1598,2.9009,5.1404,2.0427,19.2044,6.0337,4.6997,1.1041,2.6561,7.4214,15.9437,3.0336,4.2483,3.2927,1.7813,1.4188,4.299,10.5966,3.4939,2.5395,12.5446,2.4066,2.8509,2.2584,12.3347,2.0833,4.2837,1.4935,16.2085,5.1182,9.656,3.1046,11.9205,8.0409,8.2259,8.7396,3.9149,1.6632,4.7788,,,PD,0.08693,PD,,PD,0.43277,4.1043,4.7421,0.91991,11.239,2.0736,0.42121,2.8048,3.3223,49.1133,14.4982,257.1672,4.2573,4.64,1.8808,2.0539,3.7042,8.4739,2.4056,3.4852,0.55632,6.5097,13.5118,12.7938,8.1864,2.6556,5.174,2.0907,19.352,5.0958,4.4515,1.1208,2.384,8.4443,15.7301,2.4924,4.4282,2.9988,1.8518,1.4528,4.1554,10.9524,3.2331,2.6449,11.1997,2.6668,2.731,2.1307,12.3329,2.1123,4.2359,1.3974,16.7462,5.4414,8.45,4.3307,10.3002,7.8968,7.9557,8.6127,3.7477,1.6918,4.5369,,,,,,,,,,,,,,,55,,,
-3419,1.2294,2.3867,,60-69y,Other,,,13.7754,3.6102,2.0369,1.8287,1.4802,ppmi,,,F,,0.41971,3.5161,3.6188,0.68151,6.681,1.1974,0.33761,2.4073,2.7966,38.1308,14.0574,193.0951,3.0557,3.125,1.2637,1.4543,2.5758,5.5468,1.7081,2.5581,0.37814,4.5309,7.772,20.1416,5.5629,1.9151,3.1782,1.4585,13.142,4.2953,3.1047,0.71055,1.7681,5.018,8.8172,2.7192,3.0193,2.195,1.2228,1.2517,2.7571,7.1042,2.3659,1.9641,8.2959,2.0751,1.9593,1.6444,8.8167,1.4202,3.7138,1.0001,10.8963,3.5573,6.4507,2.2722,7.7053,5.0235,6.4494,5.4171,2.7226,1.0571,3.9852,,,PD,0.0616,PD,,PD,0.37967,2.9304,3.2693,0.64074,7.4444,1.3766,0.34276,2.4152,2.8043,37.8013,13.6076,192.0712,3.1708,3.2533,1.2504,1.4187,2.8009,5.4376,1.73,2.7117,0.43851,4.4197,7.5613,15.9105,5.5527,1.7461,3.0638,1.4911,13.3748,3.7548,3.0669,0.75367,1.9082,5.7551,9.2195,2.0298,2.9714,2.4491,1.1201,1.2211,2.5717,7.213,2.1372,1.9074,7.5963,1.6437,1.9046,1.5985,8.5992,1.2584,3.5425,0.99869,11.187,3.8069,5.3285,2.9995,8.0443,5.2193,6.2147,6.1117,2.554,1.0718,3.7147,,,,,,,,,,,,,,,67,,,
-3420,1.1565,2.4421,,50-59y,Other,,,17.7154,5.1487,3.201,2.2651,1.205,ppmi,,,M,,0.49482,4.8555,4.5284,0.96834,8.6123,1.7393,0.46563,3.3093,2.9759,51.736,15.5546,238.3311,4.146,5.0631,1.8607,2.0087,3.5197,7.8082,2.3113,3.4128,0.33164,6.1517,11.2866,9.0429,8.4503,2.7964,5.0171,1.899,19.6972,5.4663,4.3062,1.1325,2.4671,7.1596,12.4297,3.4406,4.7654,3.0931,1.7386,1.4272,4.6379,10.8677,3.1563,2.4762,11.2579,2.4672,2.7478,2.3614,11.1221,1.9124,4.8169,1.296,14.5855,5.4385,9.2478,3.5086,10.8763,7.038,8.1308,8.3966,3.9538,1.7431,4.813,,,PD,0.072455,PD,,PD,0.42756,4.4846,4.4039,0.97244,8.4259,1.8589,0.46117,3.2821,3.0786,52.2027,14.8987,239.9378,3.9488,5.1701,2.0541,2.0821,3.8306,7.9881,2.2084,3.6305,0.39135,6.9925,10.2531,7.7089,8.9929,2.4697,5.3201,1.8505,20.6081,5.4611,3.8558,1.2121,2.6515,7.6642,8.6731,3.0958,4.7138,3.1973,1.6376,1.4633,4.3927,10.9954,3.0245,2.5502,9.8706,1.9619,2.4329,2.1107,11.5267,1.4748,4.6519,1.2744,13.484,5.2675,5.8691,5.1101,10.2689,5.1901,8.0204,8.4942,3.4851,1.5034,4.5624,,,,,,,,,,,,,,,50,,,
-3421,0.68242,1.5153,,-50y,Other,,,19.1225,5.113,2.3549,2.0547,0.85017,ppmi,,,M,,0.52973,5.3885,4.2244,1.0589,10.7713,1.7778,0.45097,3.4295,3.0715,42.9332,15.0132,276.8753,3.8038,5.1377,1.9813,2.0662,3.9283,8.4007,2.6052,3.516,0.38125,7.9013,13.3728,5.6727,8.3695,2.7105,5.3291,2.0576,20.2013,6.8839,4.5713,1.1656,2.823,7.8348,15.9336,4.0246,5.0665,3.3717,1.6743,1.7099,5.1139,12.5855,3.5285,2.2183,11.4885,2.2993,2.7993,2.3225,13.0537,2.0575,4.4331,1.2902,14.4437,5.702,10.5658,4.2867,12.3778,8.253,8.9528,8.6416,3.9437,1.6375,5.4386,,,PD,0.073449,PD,,PD,0.46006,4.9028,4.512,1.0175,11.6025,2.0043,0.4329,3.4957,3.2694,42.7694,14.6153,285.715,3.7061,5.0994,2.0582,2.192,4.384,8.4737,2.4636,3.6192,0.50907,8.9428,12.2494,6.1199,9.0801,2.3996,5.1235,1.9678,19.615,6.8972,4.4175,1.1141,3.298,8.5781,13.5621,3.3045,5.5644,3.2772,1.6063,1.7565,4.7177,12.9499,3.1621,2.4795,9.8306,2.1937,2.5097,2.2807,12.2846,1.7667,4.4157,1.2063,14.62,5.7893,8.4685,5.1146,10.406,7.3827,8.4282,9.2291,3.1668,1.6284,5.2558,,,,,,,,,,,,,,,40,,,
-3422,1.6917,2.4486,,50-59y,Other,,,16.3371,5.5604,3.0899,2.4593,2.2547,ppmi,,,M,,0.45456,4.7124,4.1768,0.90796,8.98,1.5385,0.41218,3.4515,3.3222,50.1537,15.146,212.6277,4.1027,4.6757,1.7558,1.8654,3.4972,8.1172,2.3461,3.2398,0.56016,6.8922,11.7532,22.341,8.2761,2.3018,4.4462,1.9052,17.7331,5.9984,3.978,0.95516,2.2439,7.2985,13.7623,3.3795,4.701,3.0286,1.4641,1.3844,4.383,10.9819,3.3857,2.3515,10.3275,2.6804,2.2335,2.3943,11.7982,1.9498,4.1544,1.2784,13.1216,5.0508,8.7852,3.565,10.0845,6.607,7.8206,7.4165,3.4658,1.7862,4.4541,,,PD,0.071563,PD,,PD,0.37518,4.2884,4.2631,0.93227,10.1507,1.7415,0.4014,3.7992,3.3703,50.7484,14.2831,211.7349,3.897,5.2973,1.867,2.1183,3.3771,8.0572,2.1729,3.5186,0.71841,7.2783,12.3637,21.1283,9.203,2.2499,4.4836,1.8822,17.6055,5.4528,3.7558,0.86038,2.1322,7.9459,13.8117,2.6419,4.7569,3.4769,1.6211,1.3971,3.9741,11.1509,3.0869,2.3551,9.3914,1.987,2.2834,2.2253,10.0712,1.6936,3.9658,1.1911,13.4927,4.9716,7.7059,4.8187,9.8569,6.7993,7.7986,8.4255,3.674,1.5951,4.2703,,,,,,,,,,,,,,,58,,,
-3423,2.3124,2.6539,,60-69y,Other,,,17.9412,4.9571,2.6717,2.2471,1.6256,ppmi,,,M,,0.41784,4.6575,4.2887,0.89543,9.4356,1.6081,0.40349,3.5751,3.2334,47.4604,14.5514,204.7278,4.0361,4.9716,1.7087,1.8988,3.8554,7.9034,2.3481,3.4688,1.0059,6.6685,12.2912,21.2234,8.0121,2.2725,4.8627,1.8664,19.3959,6.9624,4.0477,1.2606,2.78,7.0672,13.5637,3.1316,4.3294,3.0013,1.297,1.2543,4.6565,10.5154,3.2984,2.527,10.7273,2.1455,2.2794,2.5344,11.9873,2.0364,4.4757,1.2263,14.1457,5.4499,9.4079,3.9907,9.7894,7.2594,8.2426,7.9494,3.3381,1.8411,4.5721,,,PD,0.067976,PD,,PD,0.39708,4.4754,3.9806,0.92054,10.3375,1.8446,0.40045,3.9047,3.2685,46.6902,13.9135,204.9638,3.7353,5.2437,1.8542,1.9407,3.7521,8.1357,2.2451,3.6477,1.028,6.8772,12.7259,16.9774,8.7168,2.343,4.9589,1.7741,17.9826,5.6801,3.9814,1.0644,2.6158,7.6364,13.7903,2.5016,4.2833,3.2397,1.6403,1.3789,4.1277,10.3851,3.0673,2.431,9.7586,2.2041,2.3835,2.1111,11.3648,1.7409,4.1252,1.2158,14.4509,5.033,7.2816,3.8659,10.312,6.9412,7.8376,8.523,3.6799,1.7239,4.5125,,,,,,,,,,,,,,,69,,,
-3424,0.8842,2.084,,60-69y,Other,,,16.6159,4.4008,2.9455,2.4498,0.94413,ppmi,,,F,,0.4007,4.6041,3.7554,0.81237,9.483,1.5849,0.38081,3.4418,2.5266,48.5233,15.124,209.2963,3.847,4.622,1.5455,1.9307,3.5142,7.1953,2.1114,3.0924,0.42333,6.0193,10.5364,11.1658,7.192,2.4012,4.3944,1.7376,18.7871,5.8475,3.952,1.0944,2.5416,6.8868,12.5199,2.9549,4.2773,3.3163,1.5341,1.2528,3.932,10.0439,2.9611,2.1636,10.8429,2.6652,2.4316,2.2403,12.0949,2.2933,3.781,1.1634,13.7841,5.2403,7.7778,3.5398,9.849,6.9414,7.8128,7.3569,4.0321,1.9127,4.383,,,,0.065268,CN,,HC,0.3211,4.1247,3.8081,0.83691,10.2417,1.7741,0.37412,3.5937,2.5383,47.7027,14.316,212.0008,3.9969,4.725,1.7066,1.8633,3.5459,7.5783,2.1586,3.2997,0.42417,6.6262,10.9254,8.4719,8.0844,2.2565,4.6649,1.7092,18.6347,5.186,3.7917,0.9458,2.2873,7.6862,12.1099,2.3521,4.313,2.9544,1.6289,1.2973,3.9074,10.4428,2.7583,2.4023,9.4719,2.6166,2.3206,2.179,11.5103,1.9975,3.7607,1.1687,13.2546,5.0858,7.1848,4.1224,9.9459,6.8186,7.414,8.0043,3.6131,1.8187,4.1516,,,,,,,,,,,,,,,64,,,
-3428,0.97331,1.5501,,50-59y,Other,,,16.1198,4.9325,2.5506,2.4689,1.063,ppmi,,,F,,0.47299,5.5681,4.378,0.84724,9.7988,1.7965,0.3868,3.5438,2.5442,47.1507,14.3708,218.8203,4.2979,5.7759,1.6965,2.0559,3.6674,7.579,2.4955,2.9617,0.34095,6.9634,11.3451,10.0303,7.6496,2.5469,5.3915,2.0679,21.4751,6.6705,4.7068,0.99687,2.908,8.2264,14.2136,3.2449,4.387,3.5965,1.4681,1.2841,4.1853,11.8142,3.1004,2.4849,11.5668,2.5435,2.6153,2.2819,13.1009,1.9655,3.635,1.3351,15.0772,5.6816,9.1405,4.0563,10.8089,7.3519,8.1002,7.7893,3.7274,1.7468,4.2305,,,,0.067627,CN,,HC,0.3891,5.0865,4.3378,0.92086,10.0148,1.9564,0.40123,3.7011,2.5596,46.7939,13.6353,218.3966,4.3969,5.9446,1.9212,2.4537,4.0333,7.777,2.321,3.2808,0.51872,6.4131,11.9592,7.272,8.7718,2.2647,5.5704,1.9545,20.3911,5.266,4.2061,1.1096,2.9537,8.5076,14.5746,2.3218,4.1936,3.8643,1.5128,1.2952,4.065,11.6236,3.0563,2.4019,10.7184,2.3344,2.349,2.1084,12.3167,1.9177,3.5939,1.22,15.4757,5.9225,8.2233,4.397,10.8244,7.6574,8.0383,8.9504,3.9128,1.5854,4.0124,,,,,,,,,,,,,,,58,,,
-3429,2.2529,2.032,,60-69y,Other,,,18.0922,5.1375,2.725,2.4384,1.9295,ppmi,,,M,,0.48564,4.2369,4.6204,0.90444,8.9219,1.5004,0.42062,2.8781,3.5454,51.2501,14.0234,196.7746,4.1871,4.3111,1.6652,2.2056,3.1362,7.3937,2.0189,3.2039,0.86427,5.2201,11.0526,22.4229,7.443,2.3919,4.841,1.652,17.0316,5.4052,3.7648,1.1819,2.6029,6.5416,11.6632,2.3041,4.0264,3.5799,1.6256,1.3586,4.6801,10.5961,3.2949,2.4262,10.6163,2.8697,2.5468,2.3822,11.5702,2.3595,4.0507,1.2116,14.5773,5.2902,8.4791,3.1241,10.2556,6.7568,7.6446,7.2459,3.8583,1.9046,4.6829,,,PD,0.069171,PD,,PD,0.42214,3.7312,4.4428,0.84875,10.9503,1.6017,0.41773,3.264,3.7122,50.6154,13.726,200.404,4.2403,4.6516,1.6461,2.1091,3.6299,7.1797,2.0879,3.4894,0.93841,6.7778,11.8072,22.4973,7.9444,2.2814,4.5559,1.6465,17.994,4.7802,3.7717,1.0983,2.4922,7.1642,12.9536,1.9987,4.4695,3.1811,1.7412,1.3883,4.1471,10.886,2.9903,2.4533,9.0542,2.4995,2.3462,2.0375,11.5625,2.193,4.1048,1.1966,13.2434,5.3085,8.2681,3.8587,10.0525,6.667,7.5192,7.3168,3.5176,1.6629,4.4396,,,,,,,,,,,,,,,65,,,
-3430,0.95376,1.81,,50-59y,Other,,,22.6344,5.4124,2.951,2.3503,1.0334,ppmi,,,M,,0.51335,5.1713,4.8861,0.98778,9.737,1.7222,0.42598,3.7131,3.5215,50.2817,19.3305,312.6326,4.4803,5.6071,1.8648,2.0576,3.6585,8.6745,2.617,3.4755,0.55218,7.9628,13.2542,13.7512,8.5939,2.5483,5.5311,2.0347,19.2595,6.9758,4.5673,1.2953,2.9782,7.9046,14.8483,4.2316,5.1565,3.3692,1.5551,1.7479,5.1274,13.7052,3.5334,2.7211,12.1809,2.6344,2.4737,2.7223,13.2262,2.1247,4.4673,1.3813,16.4611,6.0922,9.4238,4.0171,12.5715,7.6702,9.6355,8.4735,4.0914,1.9148,5.7147,,,PD,0.086259,PD,,PD,0.47764,4.2381,4.7921,0.94258,12.0904,1.8867,0.44298,4.0316,3.3335,51.4187,19.138,313.9268,4.6546,5.7572,1.8261,2.0704,3.891,8.3363,2.3912,3.7582,0.64513,8.273,13.4195,8.7593,9.08,2.5713,5.1703,1.9768,21.003,6.3795,4.3981,1.3457,2.7741,8.9648,15.0993,3.2675,5.355,3.5489,1.8539,1.807,4.6762,13.2131,3.2703,2.6864,10.755,2.8038,2.5106,2.4749,12.2703,2.1517,4.4399,1.3834,15.5091,5.7248,9.0156,4.4048,10.9216,7.8464,9.1698,8.55,3.6586,1.9022,5.3687,,,,,,,,,,,,,,,53,,,
-3431,0.84993,2.0839,,60-69y,Other,,,18.2453,4.6678,2.6285,1.9985,0.82934,ppmi,,,F,,0.41016,3.6335,3.6513,0.78151,7.3356,1.3767,0.37161,2.8462,2.7335,47.9754,15.2443,201.5237,3.3927,3.8852,1.5544,1.7774,2.7365,6.8446,1.7208,3.1557,0.39528,5.1895,10.0605,7.5644,6.8783,2.0754,4.2071,1.4428,15.2913,5.1063,3.4958,1.0146,2.3158,5.8591,11.8429,2.667,3.7936,3.2291,1.2963,1.3662,3.9017,9.3546,3.0699,1.8538,9.9078,1.7234,2.2781,1.7969,9.8066,1.7969,3.8452,0.97963,12.5086,4.6578,7.4808,3.2736,9.1383,6.0411,7.5146,6.4201,3.1227,1.3398,4.5622,,,PD,0.07646,PD,,PD,0.33864,3.3697,3.7422,0.83784,9.0387,1.4089,0.35939,2.9912,2.7664,46.7941,14.5777,202.8269,2.9608,4.0928,1.5933,1.7801,3.0598,7.2598,1.767,3.4322,0.58949,5.2638,10.2522,6.8113,7.5327,1.9106,4.1592,1.4278,14.5315,4.4774,3.2956,0.89775,2.2787,6.3949,12.2653,2.3624,3.9628,3.3486,1.4015,1.3796,3.6517,9.3176,2.8807,1.8262,8.1316,1.664,2.1985,1.6167,10.3804,1.5918,3.8319,0.93977,12.3505,4.4457,7.4823,3.5701,9.6618,6.7355,7.5397,6.9233,2.9587,1.1167,4.3651,,,,,,,,,,,,,,,62,,,
-3432,1.1952,1.9916,,60-69y,Other,,,20.8573,4.4298,2.3781,1.9053,1.2339,ppmi,,,M,,0.40011,3.8197,3.6543,0.72202,6.1273,1.2569,0.34442,2.1566,2.5581,39.5517,21.5051,290.9177,2.7709,3.2309,1.3515,1.5403,2.9552,5.4421,1.6974,2.6247,0.44243,4.6988,8.1429,13.9045,5.359,1.9724,3.6309,1.5088,13.8232,4.2731,3.2924,0.82082,2.0027,5.5015,8.9791,3.2597,3.1412,2.1559,1.1547,1.6561,3.2963,7.6411,2.5078,1.9285,8.3495,2.0009,2.012,1.8335,8.9155,1.502,3.629,1.1179,10.6523,3.9632,5.8702,2.4371,7.4161,4.8783,8.1671,6.0266,2.8702,1.1863,5.1149,,,PD,0.057382,PD,,PD,0.31851,3.3696,3.4496,0.6399,6.906,1.2758,0.31849,2.4832,2.2481,40.9324,22.0746,294.8085,2.7207,3.7349,1.2683,1.5555,2.8964,5.4959,1.6451,2.6784,0.65187,5.5076,8.2918,12.7669,5.8907,1.8102,3.3216,1.3952,13.7317,4.0485,2.9822,0.78301,1.8651,5.4937,9.2695,3.2801,3.322,2.2353,1.3042,1.6362,2.9334,7.9665,2.3211,1.8365,7.0258,1.594,1.8231,1.4105,8.2215,1.1837,3.6116,1.0456,11.3431,3.7399,5.2243,3.3281,7.8859,4.8641,7.7214,5.9136,2.8738,0.93658,4.8607,,,,,,,,,,,,,,,64,,,
-3433,1.3934,1.346,,+80y,Other,,,14.9665,3.8505,2.322,1.9023,1.2438,ppmi,,,F,,0.43184,4.766,4.2299,0.78937,8.2636,1.6242,0.37471,2.7517,3.0088,41.0103,12.4975,208.4132,3.9342,4.0569,1.5762,1.8934,3.2152,6.7462,2.3131,2.9359,0.62428,5.7578,9.8358,12.7192,6.4102,2.401,4.4316,1.8302,17.9364,5.863,4.272,0.86504,2.3508,6.6484,10.6056,2.8002,3.7265,3.6377,1.526,1.3575,4.1504,10.4578,2.917,2.3144,10.745,2.2253,2.4104,2.3152,11.8656,1.7651,3.778,1.3341,14.3525,4.9274,6.8786,3.3748,9.6991,6.1676,7.3533,6.8051,3.8773,1.6201,4.1101,,,PD,0.05947,PD,,PD,0.34473,4.3142,4.0167,0.79264,9.4953,1.7284,0.36974,2.9001,2.7836,42.5677,12.2777,206.4478,3.4092,4.5037,1.639,2.0372,3.5599,6.9012,2.1715,3.0932,0.57627,5.5592,10.2721,9.817,7.4341,2.1634,4.5303,1.8261,16.9756,4.3884,3.8187,0.89862,2.235,7.4812,11.4009,2.3154,4.0931,4.3487,1.5461,1.3132,3.8389,10.2085,2.6892,2.1184,8.8463,1.7698,2.2109,2.0672,11.3333,1.5798,3.7315,1.2839,14.0706,5.0608,7.1379,3.4567,8.5983,6.219,7.0619,7.1786,4.0343,1.3498,3.9024,,,,,,,,,,,,,,,82,,,
-3434,1.2663,2.3421,,50-59y,Other,,,20.2168,5.3956,3.0818,2.4026,1.4813,ppmi,,,M,,0.51531,5.3365,4.8239,0.89608,9.9406,2.0432,0.4593,3.8712,3.1886,53.6989,17.8337,258.4217,4.4959,5.0586,1.8515,2.0613,4.1757,8.1464,2.7211,3.2387,0.49245,7.9693,11.8717,19.3992,8.749,2.955,5.1847,2.2814,20.7311,6.6111,4.9005,1.3482,2.7367,8.3852,14.0198,4.0454,5.5332,3.3391,1.7166,1.5439,5.2747,12.6723,3.288,2.5383,11.3396,2.6936,2.8968,2.5334,12.3896,2.0332,4.3464,1.4942,16.4637,6.813,9.3269,4.4826,12.0253,7.2264,9.3463,8.4619,4.0836,1.9384,4.9877,,,PD,0.074276,PD,,PD,0.44893,4.4579,4.7738,0.90457,11.4842,2.3292,0.4331,3.8947,2.909,53.332,17.0105,260.7809,4.1549,5.313,1.9115,2.1537,4.5202,7.9248,2.6995,3.6114,0.59301,7.7866,12.7273,13.1836,9.4058,2.8058,5.3276,2.3577,19.5853,5.8282,4.7524,1.2268,2.6326,9.4392,15.5512,3.2766,4.9443,3.6605,1.8593,1.5909,4.9174,12.3755,3.2106,2.6039,10.1428,2.3444,2.7498,2.2027,12.059,2.2062,4.0605,1.4146,15.7927,5.9949,8.7577,4.4775,11.3509,7.725,9.2533,8.8065,4.171,1.6504,4.9198,,,,,,,,,,,,,,,54,,,
-3435,1.7815,2.2241,,50-59y,Other,,,19.5556,5.606,3.14,2.8065,2.1776,ppmi,,,M,,0.51494,6.0046,5.4256,1.1959,11.7453,2.015,0.48941,4.0928,3.9339,57.5665,17.9317,260.2262,5.6602,6.2343,2.3952,2.4216,4.3725,9.3264,2.7878,4.0398,0.62867,8.7098,15.0041,26.3658,9.9416,3.0544,5.8936,2.4375,23.4491,8.1989,5.1251,1.3958,3.0271,8.9087,16.7585,4.607,5.681,3.4162,2.0544,1.6853,5.7865,13.3239,3.8593,3.0882,14.6055,3.5519,3.2383,2.7033,16.2366,2.6319,5.2601,1.5445,17.7538,6.4385,11.098,4.8663,12.2865,8.1767,9.9727,10.7787,4.8644,2.0648,5.3402,,,PD,0.088139,PD,,PD,0.47437,5.3255,5.0004,1.1586,13.8239,2.5026,0.55154,4.3517,3.9545,59.1505,17.5635,262.0118,5.4957,6.195,2.4849,2.3317,5.2166,9.0581,2.8984,3.91,0.81135,9.2806,15.2167,24.1666,10.6919,2.8953,5.7768,2.4954,22.2345,6.7424,5.1054,1.3694,2.957,10.1737,19.5311,4.1581,5.6613,3.3627,1.9581,1.6589,5.0566,13.3193,3.5678,3.2135,12.6554,3.1516,2.9452,2.5175,15.2928,2.5095,4.7718,1.5962,19.3437,6.4823,10.2487,5.2169,11.8772,9.5443,9.7898,10.3405,4.2813,2.0703,5.0916,,,,,,,,,,,,,,,55,,,
-3436,1.3278,2.2087,,50-59y,Other,,,19.7017,4.951,2.6893,2.3468,1.3062,ppmi,,,M,,0.49897,5.6844,5.1418,1.0191,11.7355,1.7992,0.44637,3.8061,3.7968,51.2353,15.5538,247.9424,5.5029,5.1088,2.1769,2.3783,3.8822,8.8105,2.5971,3.7178,0.41136,7.8702,13.6857,10.7259,8.7526,2.7903,5.866,2.2047,19.2437,7.8373,4.8046,1.1695,2.82,8.3705,15.3198,4.1507,5.24,3.7783,1.7166,1.4186,5.3001,12.1003,3.8507,2.7455,12.3225,3.2099,3.0048,3.0006,13.6662,2.4182,4.5213,1.3882,16.9226,6.3058,9.642,3.8132,11.1292,8.2039,8.6141,10.0639,4.187,2.2938,5.0099,,,PD,0.079095,PD,,PD,0.4679,4.9389,4.9592,0.98219,12.1859,2.3486,0.45132,4.0369,3.8316,49.8408,14.6542,248.2224,4.9356,5.7703,2.0766,2.3342,4.3538,8.5456,2.5118,4.0001,0.46978,7.307,14.3148,10.1473,9.5313,2.7463,5.6086,2.1985,21.2022,5.5506,4.819,1.3653,3.0894,9.6895,17.4964,3.3539,4.834,3.6302,1.7643,1.5017,4.7558,12.2288,3.4752,2.7594,11.8327,2.9738,2.8276,2.5228,12.8521,2.2716,4.3401,1.3309,15.8944,5.8494,9.8741,4.8669,11.2182,9.0342,8.1608,9.3794,3.957,1.856,4.6719,,,,,,,,,,,,,,,51,,,
-3439,1.4328,1.7982,,50-59y,Other,,,17.9011,4.883,2.9806,2.3658,1.3378,ppmi,,,M,,0.4947,4.9074,4.2671,0.97532,9.4592,1.6563,0.43863,2.7344,2.9704,50.6893,16.1196,223.2382,4.1775,4.3602,1.9433,1.9233,3.3918,7.8092,2.1484,3.6212,0.51891,6.6,12.4212,13.4442,6.5424,2.5336,5.636,1.799,19.3201,5.7448,4.1801,1.135,2.7148,7.2711,15.9637,3.1883,4.139,3.5223,1.6555,1.3016,4.7836,10.8547,3.4295,2.3959,12.5502,2.4722,2.7094,2.4021,12.286,2.0886,4.6079,1.2868,15.6079,5.7509,10.6352,3.4976,10.474,8.6154,8.2014,8.8359,3.8973,1.5891,4.7102,,,PD,0.095776,PD,,PD,0.44492,3.969,4.2105,0.94677,11.1416,1.7665,0.44044,3.1045,3.0821,51.1467,15.6108,224.0585,3.6325,5.18,1.9635,2.0532,3.6483,8.2915,2.1705,3.7983,0.66467,6.9008,13.4364,11.0839,7.8643,2.3039,5.5444,1.8872,19.4324,5.7713,3.9252,1.21,2.972,8.4095,16.6075,2.9059,4.333,4.0811,1.7004,1.3311,4.3477,11.3199,3.2758,2.4185,10.5623,2.0957,2.4647,2.0552,12.1206,1.7713,4.3276,1.3332,15.2579,6.1898,8.9044,4.2504,9.9477,7.4715,8.1326,8.4273,3.832,1.4512,4.504,,,,,,,,,,,,,,,57,,,
-3440,1.1776,1.5835,,60-69y,Other,,,15.9615,4.6245,2.4427,2.1565,1.5185,ppmi,,,M,,0.4451,4.9254,3.8996,0.80454,7.4892,1.4958,0.36716,3.4992,2.3104,44.4339,15.0585,205.1395,3.9789,4.809,1.5717,1.7842,3.5513,6.6529,2.0468,2.8044,0.31702,6.8455,9.9746,10.9509,7.7039,2.4471,4.7917,1.9285,18.2917,5.296,3.7816,0.92198,2.1557,7.055,12.0938,3.5649,4.4797,3.1554,1.4665,1.2396,4.0352,10.4836,2.8251,2.1739,10.1342,2.3422,2.3641,2.194,11.7394,2.1208,3.3794,1.2127,13.3095,4.8292,8.011,3.6653,9.5567,6.602,7.4443,7.3842,3.614,1.8054,4.1339,,,PD,0.065995,PD,,PD,0.36287,3.9745,3.7298,0.77056,9.4353,1.7652,0.35627,3.3909,2.4736,43.298,15.023,207.9673,3.7857,4.7759,1.6241,1.9321,3.7575,6.6572,2.1388,2.9608,0.41592,7.1859,10.7312,15.0711,8.4149,2.3492,4.4551,1.9724,18.178,4.8745,3.6278,0.89032,2.2243,7.8434,12.1083,3.09,4.7694,3.2456,1.5465,1.1761,3.678,9.9265,2.5857,2.117,8.6707,2.4122,2.1253,2.0817,9.4164,1.9364,3.1356,1.1422,13.5884,4.5674,6.7391,3.9147,8.6938,6.6049,6.9345,7.6397,3.483,1.6639,3.8808,,,,,,,,,,,,,,,60,,,
-3442,1.4275,2.3758,,60-69y,Other,,,22.2888,5.2852,3.3256,2.4547,1.3312,ppmi,,,M,,0.57252,5.0993,4.4584,1.0171,9.5853,1.5337,0.4322,2.6512,3.6907,59.1453,19.8385,262.9311,4.2218,4.3837,1.8664,2.0204,3.4299,7.9359,2.1463,3.4453,0.60748,6.4092,11.481,15.7544,7.3052,2.265,5.0052,1.9102,18.0183,6.0565,4.0298,1.0835,2.4312,7.8208,14.978,2.9362,4.1308,3.347,1.4585,1.8059,4.4565,9.676,3.5006,2.6799,11.8691,2.6503,2.5504,2.4647,11.8912,2.1216,4.7886,1.4399,13.7185,5.6754,9.6799,3.2898,9.2595,7.7947,9.2845,8.4534,3.7214,1.693,5.3606,,,PD,0.085402,PD,,PD,0.46635,4.5594,4.3893,0.9718,11.3046,1.6864,0.44462,2.819,3.6457,57.672,19.1852,264.0615,4.1464,4.6993,1.9446,2.0746,3.7206,8.5166,1.9688,3.6591,0.61205,7.0365,12.3727,13.1265,8.043,2.1679,5.0735,1.802,18.1861,5.7166,3.5458,1.0579,2.4249,8.4839,14.7841,2.9014,4.6888,3.4126,1.598,1.7242,4.3063,10.4989,3.1644,2.5966,10.5628,2.2195,2.2824,2.2609,11.3533,1.8533,4.8415,1.3053,13.9754,5.4894,7.8786,3.9895,10.0379,7.8887,9.2525,8.0239,3.6723,1.5636,5.2813,,,,,,,,,,,,,,,63,,,
-3443,1.187,2.0907,,50-59y,Other,,,19.052,4.7314,2.7578,2.2177,1.1423,ppmi,,,M,,0.56184,6.1069,4.8687,0.92963,10.181,2.1017,0.47988,3.4276,3.5126,50.5823,15.2138,245.7051,4.3464,4.7508,1.7977,2.1444,4.219,7.9338,2.9429,3.4588,0.38241,7.3881,12.1789,12.6624,8.2033,3.1105,5.676,2.4465,21.7005,6.7259,4.8918,1.1501,3.1583,9.2233,14.3118,3.6583,5.0733,3.3172,1.8725,1.5791,4.8596,11.3761,3.3948,2.5819,12.2273,2.7848,2.9446,2.3301,14.3105,2.1261,4.863,1.5034,18.171,6.285,8.9509,3.8086,12.6514,7.0147,8.968,8.28,4.0941,1.8331,4.9766,,,PD,0.080233,PD,,PD,0.50277,5.0903,4.9531,0.95443,11.3297,2.067,0.47199,3.3569,3.5091,50.2412,14.3764,246.7397,4.9659,5.6908,1.8981,2.2973,4.7763,7.9528,2.7703,3.7599,0.49924,7.3048,12.7876,11.1277,8.7204,2.7482,5.6565,2.4311,21.7868,5.7402,4.3792,1.3666,3.3296,10.755,15.2339,3.1174,4.6965,3.7878,1.9806,1.5834,4.4938,12.2384,3.2134,2.6753,10.9292,2.4872,2.8609,2.2435,12.6459,1.9521,4.7669,1.4411,18.6255,6.7671,7.6091,4.3863,11.5417,6.9663,8.5764,9.3311,4.0297,1.6641,4.7496,,,,,,,,,,,,,,,54,,,
-3444,2.0449,2.8014,,60-69y,Other,,,21.0514,5.229,3.11,2.6386,2.0608,ppmi,,,M,,0.47726,4.9097,4.9222,0.81009,9.5696,1.5559,0.49185,3.1793,3.1431,51.8731,16.7457,236.8206,4.5903,4.4065,1.7762,2.2467,3.6217,7.6512,2.3586,2.9029,0.88468,7.0097,12.7939,20.3636,7.6415,2.5407,4.934,1.9196,19.1699,6.2799,4.3681,1.0247,2.5695,7.6409,15.1464,3.4323,4.7043,3.3421,1.587,1.5087,4.7744,11.5827,3.1988,2.8338,11.5171,2.338,2.5678,2.9261,12.7836,1.8499,4.0563,1.602,15.3032,5.4138,9.2118,3.2404,11.6568,8.1911,8.4318,8.6936,3.7512,1.8183,5.0157,,,PD,0.099777,PD,,PD,0.39753,4.7747,4.8213,0.84269,11.3592,1.857,0.43831,3.5228,3.246,51.6945,16.7461,230.6355,4.2343,4.9134,1.7673,2.1754,4.2976,7.723,2.1016,3.179,1.1645,8.1253,13.2727,18.3331,8.5905,2.495,5.0663,1.7686,19.7088,5.8136,3.9789,1.2782,2.828,8.4004,15.7665,2.8288,4.8867,3.5594,1.7947,1.434,4.485,11.686,3.0346,2.9466,10.4279,2.2532,2.557,2.6441,12.6043,2.1222,4.0882,1.4395,15.5535,5.7058,7.8547,3.7435,10.9477,8.6262,8.3085,9.0191,3.625,1.8838,4.9699,,,,,,,,,,,,,,,69,,,
-3445,1.7173,1.6004,,-50y,Other,,,21.2511,5.5978,2.7625,2.4476,1.4531,ppmi,,,M,,0.5609,6.525,5.4539,1.019,11.3749,2.165,0.49857,3.8354,3.5234,50.624,17.994,291.734,5.5242,5.2653,1.9201,2.6606,4.0072,8.7176,2.8675,3.7991,0.44925,8.3674,14.4189,14.0288,9.086,3.3426,6.167,2.5872,24.904,8.2959,5.3345,1.1292,3.0341,8.9383,15.8706,3.9506,5.1426,4.6064,2.2023,1.6597,5.7333,13.1274,3.6871,2.9188,11.8833,3.9414,3.5686,2.9021,14.4474,3.4814,4.6797,1.6538,18.6925,6.7589,10.5689,4.4868,11.8551,8.3649,10.0379,9.3302,5.5032,2.9459,5.5466,,,PD,0.089087,PD,,PD,0.49535,5.5627,4.9444,1.01,12.6509,2.5816,0.48578,4.0991,3.5514,52.3924,17.1544,286.8313,5.0384,6.216,1.9802,2.6644,4.6008,9.0423,2.8266,3.6674,0.50405,7.941,14.8442,11.4513,9.2307,3.0483,6.3118,2.6048,22.5097,6.0533,5.4513,1.0205,2.8368,10.0821,17.4355,3.2303,5.0583,4.8229,1.9926,1.6736,5.1906,13.9857,3.3403,2.7513,9.7391,3.0788,3.1234,2.6245,15.1216,2.6765,4.6056,1.5552,19.0156,6.279,9.7253,5.5705,12.0091,8.93,9.3849,10.0221,4.6723,2.2894,5.1349,,,,,,,,,,,,,,,48,,,
-3446,1.3376,1.5999,,70-79y,Other,,,19.0148,4.4443,2.5701,2.2373,1.153,ppmi,,,M,,0.47832,4.7594,4.5524,0.9373,9.5636,1.5187,0.3724,2.8067,3.3118,46.3048,14.798,254.0111,4.2537,4.503,1.8189,1.8811,3.2206,7.7541,2.2911,3.2109,0.54082,5.703,12.1868,13.1763,6.958,2.368,5.1354,1.9545,17.1874,5.666,3.8224,1.0957,2.3342,6.7997,13.6407,2.9738,4.2175,3.6753,1.4615,1.4527,4.5822,10.8771,3.1941,2.5671,10.991,2.8112,2.2943,2.2389,12.1822,2.2211,4.577,1.1788,13.0476,5.0825,8.7397,3.1311,11.6224,6.9709,7.4321,8.4756,3.6912,1.5832,4.5973,,,PD,0.071387,PD,,PD,0.42878,3.9591,4.143,0.87567,10.3855,1.8404,0.3954,3.061,3.296,45.7581,14.1273,256.926,4.2739,4.6405,1.7967,1.9857,3.5183,7.7182,2.2578,3.2824,0.50092,6.7509,12.5374,11.4225,7.9285,2.2401,4.911,1.9737,17.3516,5.396,3.9657,1.285,2.5922,7.4861,14.0658,2.3887,4.3059,3.6335,1.623,1.5654,4.0482,11.1821,2.7874,2.5586,10.4087,2.6792,2.3052,2.105,11.8474,2.0475,4.3212,1.1937,13.7862,5.2501,8.018,3.679,9.3793,7.006,7.3429,8.2024,3.6469,1.5987,4.4799,,,,,,,,,,,,,,,76,,,
-3448,1.3244,2.3644,,50-59y,Other,,,23.878,4.9785,3.0414,2.377,1.5807,ppmi,,,M,,0.58501,6.4818,4.9614,1.1305,11.5438,2.1028,0.49203,3.9909,3.7133,54.0457,18.4926,304.9421,5.0443,5.1498,2.1909,2.4708,4.69,9.499,2.9555,4.0092,0.52987,7.9988,15.0815,20.9752,8.5943,3.0815,6.0143,2.5744,26.0236,8.3663,5.1608,1.3379,3.5704,8.9481,16.714,4.0271,5.1155,4.6183,1.8046,1.8736,5.1609,12.5716,3.7128,2.8623,13.154,3.401,2.8708,2.8783,15.6754,2.8931,4.9616,1.5698,17.8393,6.3065,9.9605,4.6798,12.5756,8.4386,11.2182,10.1839,4.9424,2.2923,6.1758,,,PD,0.086442,PD,,PD,0.51199,5.0731,4.8322,1.1659,13.3855,2.551,0.50027,3.831,3.7476,53.0657,17.5466,304.7427,4.9859,5.6361,2.3802,2.5077,5.0074,9.3897,2.8099,4.4035,0.72871,7.7595,15.883,18.3275,9.3575,2.9466,5.2128,2.457,25.4594,6.2026,5.0175,1.3743,3.3655,10.3228,16.9662,3.2084,5.1224,4.6496,1.8625,1.9197,5.0486,13.6445,3.6188,2.8622,11.5337,3.4457,2.9175,2.846,14.604,2.8503,4.8072,1.5277,18.1056,6.4813,8.9566,4.5021,14.2865,8.1222,11.077,10.5988,4.5819,2.4364,5.9704,,,,,,,,,,,,,,,57,,,
-3450,0.71509,1.672,,50-59y,Other,,,14.5882,3.8256,2.3747,1.9404,0.89429,ppmi,,,M,,0.42007,4.9253,3.8677,0.92318,8.566,1.5059,0.35941,3.0976,2.5316,40.2695,11.696,214.0694,3.7945,5.1795,1.7147,2.018,3.2901,6.698,2.0757,3.0726,0.37118,6.304,11.167,7.0461,7.0916,2.2958,4.9017,1.7133,18.0221,5.8146,3.9223,1.0659,2.6924,6.7643,12.8866,3.8435,4.1033,3.3123,1.4768,1.3159,4.2182,10.8348,2.8821,1.9251,11.1755,2.3156,2.3666,2.0656,12.6354,2.3518,3.6891,1.1197,14.9479,5.8639,9.6261,3.8526,10.2608,6.3391,7.4657,7.0837,3.4169,1.7015,4.2344,,,,0.064517,CN,,HC,0.36884,4.3362,3.4563,0.91568,9.65,1.8303,0.34504,3.3629,2.5759,40.5105,11.5899,218.8012,3.7784,5.4623,1.7189,1.7579,3.8846,7.123,2.2594,3.2467,0.35484,7.1514,11.3691,5.6921,7.49,2.2227,5.1609,1.7796,17.9498,5.4564,4.1189,1.1542,2.8445,7.6804,13.6742,2.9153,4.2554,3.3057,1.4501,1.3448,3.9016,10.3277,2.7675,2.0439,10.1648,1.7818,2.1792,1.9139,11.467,1.4769,3.5517,1.0851,14.9906,5.8178,7.7967,4.4913,9.8767,6.6167,7.0555,7.6647,3.2128,1.2925,4.1065,,,,,,,,,,,,,,,52,,,
-3451,1.2094,1.9432,,50-59y,Other,,,20.4353,5.075,2.9395,2.4301,1.4434,ppmi,,,M,,0.5408,5.4732,5.0317,0.97934,11.3078,1.8118,0.43144,2.9485,3.7442,49.8505,17.2526,257.6982,4.3177,5.4185,2.0126,2.4902,3.7847,7.8614,2.4174,3.7178,0.54451,7.4307,12.367,17.7302,8.0567,2.5519,5.7957,2.076,19.9802,7.6209,4.6167,1.2879,2.6133,7.3908,15.8602,3.9066,4.8353,3.582,1.5553,1.6184,5.3406,13.5686,3.4709,2.4538,12.5572,2.5736,2.668,2.5121,11.9317,2.0218,4.4999,1.447,13.9878,5.247,10.3362,4.5407,13.8694,8.1337,8.7302,8.6779,4.1553,1.6052,5.1493,,,PD,0.082102,PD,,PD,0.49766,5.0239,4.7083,0.97413,12.8956,2.0827,0.42901,3.1452,3.7325,50.7788,16.9904,260.0456,4.1797,5.2276,1.9821,2.201,4.1909,7.9715,2.2108,3.8155,0.49824,7.6335,12.2675,12.7298,8.4709,2.5071,5.0506,1.9249,19.8666,5.3588,4.1667,1.2818,2.9232,8.3598,16.3658,3.4052,4.8905,3.6607,1.6572,1.6391,4.8709,13.6257,3.1546,2.3988,11.4589,2.1634,2.4254,2.3585,13.2095,1.9659,4.3557,1.286,13.7496,5.6669,9.0298,4.5647,12.8505,8.759,8.3675,9.3506,3.4596,1.5027,4.9349,,,,,,,,,,,,,,,55,,,
-3452,1.2433,1.7094,,60-69y,Other,,,21.2851,5.0331,2.8899,2.4196,1.2617,ppmi,,,F,,0.50022,5.1297,4.3932,0.84552,10.2211,1.662,0.41736,3.4007,3.2101,52.6484,16.8911,239.1565,4.2696,5.1415,1.6238,1.8729,3.465,7.6735,2.117,2.9932,0.51624,7.2252,12.1359,16.6757,7.9102,2.3997,5.3414,1.9513,20.382,7.0532,4.3754,1.2208,2.8837,7.2543,15.1931,3.8052,4.5838,3.1546,1.5031,1.6055,4.6038,11.8281,3.2022,2.4905,12.4166,2.3887,2.7029,2.2931,12.5993,1.9652,4.3905,1.2384,15.6328,5.85,9.3793,3.882,11.8964,7.5255,8.6415,7.6465,4.1209,1.6727,5.0592,,,,0.073862,CN,,HC,0.44348,4.535,4.2096,0.8777,11.3015,1.7623,0.40579,3.385,3.2212,51.7598,16.5808,244.4882,3.878,5.2329,1.7217,1.89,4.0576,7.5579,2.1948,3.1709,0.49566,7.4717,12.3329,12.7933,8.101,2.3417,5.2818,1.9242,20.968,5.721,4.1198,1.1031,2.7568,8.7193,15.8543,3.1844,4.3947,3.4057,1.656,1.5835,4.3578,11.2008,3.0314,2.1995,10.9833,2.2253,2.5404,2.026,13.1811,2.0223,4.1954,1.1516,15.5204,5.2715,9.0937,4.6738,10.3517,7.7636,8.2243,7.4233,3.5912,1.4802,4.8925,,,,,,,,,,,,,,,64,,,
-3453,0.61973,1.4959,,60-69y,Other,,,14.9646,3.8204,2.3032,1.8456,0.78754,ppmi,,,F,,0.40371,3.7123,3.5992,0.75,7.344,1.3726,0.34115,2.377,2.5563,40.2554,12.2459,193.263,3.0191,3.857,1.4219,1.6339,3.0853,6.4208,1.8296,2.654,0.33157,4.8708,10.19,7.3486,6.1352,1.961,3.9424,1.4824,15.3893,4.8219,3.4962,1.0323,2.4684,5.6954,12.2216,2.5245,3.5111,3.0088,1.2389,1.2446,3.4999,9.0053,2.604,1.9906,10.5229,1.8934,2.1196,1.7986,10.7478,1.7135,3.9127,0.98073,14.7417,4.9561,7.8262,3.1623,9.0471,5.9873,7.2826,6.3596,3.1395,1.2765,4.0867,,,,0.057116,CN,,HC,0.37712,3.3224,3.7158,0.73257,8.2761,1.5985,0.34697,2.5115,2.5369,39.1787,11.5867,196.0195,3.348,3.969,1.4668,1.7313,3.2121,6.4658,1.8928,2.7336,0.44417,5.385,10.2015,6.6089,6.6783,1.8733,4.1058,1.54,15.3453,3.8423,3.6178,0.96245,2.2852,6.6767,12.1375,2.4203,3.4948,3.192,1.2536,1.2599,3.2088,8.7204,2.4134,2.0285,9.7679,2.139,2.1349,1.7233,10.2745,1.692,3.8264,0.94527,13.5709,4.5557,7.5315,3.5798,9.028,5.9577,6.9824,6.6099,2.799,1.3731,3.8739,,,,,,,,,,,,,,,60,,,
-3454,0.74791,1.6615,,50-59y,Other,,,18.5701,4.5817,2.6246,2.0906,1.036,ppmi,,,F,,0.49282,4.5441,4.1825,0.8765,9.2841,1.506,0.37939,3.392,3.0826,47.2892,15.2772,230.534,3.7158,4.8332,1.631,1.8151,3.3229,7.5793,2.0369,2.9817,0.30991,6.952,12.2431,9.3003,7.6108,2.1621,4.6166,1.7959,18.0741,6.5332,3.9845,1.1236,2.6303,6.4826,14.5988,3.3343,4.4504,3.1211,1.3396,1.5477,4.2919,10.6688,3.031,2.2495,11.1164,2.3096,2.5589,2.2527,12.7173,2.0252,4.6371,1.0531,14.6826,5.4368,9.1722,4.0398,10.7717,7.2401,8.4993,7.8884,3.5809,1.6417,4.8885,,,PD,0.065802,PD,,PD,0.45251,4.1019,3.8689,0.92224,11.0174,1.7485,0.38347,3.261,3.6748,48.2399,15.0204,237.8397,3.9225,4.6791,1.7815,1.8933,3.5063,8.0765,2.1268,3.5151,0.33487,6.9896,12.2445,11.1381,7.6478,2.0522,4.5766,1.6911,18.1809,5.4708,3.8866,0.97629,2.5868,7.6428,15.1102,2.8506,4.3804,3.4561,1.3848,1.5817,4.0414,10.8152,3.024,2.2193,11.0735,2.1719,2.3667,2.1117,13.2533,1.9782,4.3433,1.0554,15.3452,5.4349,8.6164,4.6639,11.2856,8.0848,8.0681,8.4698,3.4885,1.5393,4.7267,,,,,,,,,,,,,,,57,,,
-3455,2.6268,2.2262,,60-69y,Other,,,18.7045,4.9656,2.4081,2.1602,1.824,ppmi,,,M,,0.42679,5.0553,4.6728,0.90327,8.6609,1.5802,0.37956,3.442,3.4615,43.4965,14.4445,252.2229,3.9957,4.4723,1.6505,2.2134,3.6744,7.1167,1.9541,3.4149,0.91273,5.9673,10.6709,24.6804,7.5992,2.4256,5.4475,1.8773,18.9145,5.1058,3.9805,1.2015,2.538,7.3653,12.2106,3.4657,4.3636,4.3095,1.5428,1.5551,4.5892,11.1675,3.2449,2.3718,11.6578,2.1068,2.4153,2.3877,12.3902,1.9228,4.4092,1.2371,15.1405,5.477,8.6731,3.0009,11.0373,7.6593,8.4358,7.8573,4.4698,1.5814,5.047,,,PD,0.078865,PD,,PD,0.39439,5.0734,4.5333,0.88742,9.735,1.7061,0.38697,3.4077,3.7861,42.7302,14.2001,257.6909,3.6214,4.9157,1.6875,2.3088,3.8853,6.8881,1.9151,3.6122,1.098,6.7815,10.9212,24.5165,7.979,2.2095,5.2023,1.8676,17.4924,4.8396,3.7666,1.0268,2.4651,8.2172,13.2052,2.9286,4.1392,4.3812,1.576,1.5766,4.036,11.3142,2.9677,2.1761,9.8242,2.2803,2.4087,2.1113,12.2165,1.95,4.207,1.2202,14.3883,5.5061,7.7535,4.0517,11.3706,7.0338,7.8357,8.0852,4.286,1.4918,4.9084,,,,,,,,,,,,,,,67,,,
-3457,1.3073,3.6893,,60-69y,Other,,,19.7503,5.0915,2.4896,2.4104,1.1131,ppmi,,,F,,0.47183,4.5927,4.0748,0.87955,10.2871,1.8366,0.39897,3.412,3.2707,49.0689,14.9696,243.431,3.6109,4.4924,1.6003,1.9906,3.5049,8.0388,2.0065,3.0568,0.4377,7.5207,12.0681,11.5063,7.8874,2.7139,4.9345,1.8606,21.1289,6.8769,4.2054,1.1526,2.6066,7.2239,14.9264,3.7296,4.7166,3.3959,1.6356,1.5465,4.2562,9.5914,3.1575,2.035,11.0487,2.2878,2.7957,2.1657,13.059,2.1385,4.1464,1.1629,15.0078,5.4223,9.1855,3.4413,10.696,8.0006,8.4809,7.9116,4.485,1.6622,4.9952,,,,0.072953,CN,,HC,0.41888,3.8711,4.0947,0.90149,10.9123,2.003,0.39297,3.2921,3.2828,49.4802,15.1901,246.3431,3.6764,4.5226,1.7117,2.0656,3.821,8.1122,2.1049,3.314,0.44474,6.8501,12.8993,10.1462,8.0667,2.5791,4.5829,1.909,21.0122,5.1123,4.0976,0.98961,2.19,8.3261,15.4914,2.8478,4.5592,3.7025,1.7805,1.4642,4.0142,9.7091,2.9744,2.1807,11.3984,2.1725,2.5255,2.1681,12.4139,2.1088,3.9903,1.1642,15.1738,5.4553,9.0646,4.0336,10.1669,8.8101,8.2591,8.691,4.1709,1.5646,4.731,,,,,,,,,,,,,,,63,,,
-3459,1.2199,1.8939,,50-59y,Other,,,16.8987,5.2751,3.0349,2.3162,1.1065,ppmi,,,M,,0.48626,5.212,4.5369,0.94383,10.1365,1.7028,0.41265,3.2826,3.0695,51.1009,14.9053,248.011,4.009,5.7614,1.7969,2.0871,4.0574,8.2307,2.3772,3.3951,0.50141,8.0133,12.3447,14.5507,8.3987,2.5281,5.0818,2.1761,22.1109,7.1991,4.2629,1.2626,3.1725,8.3562,14.7301,3.9534,4.9614,3.1538,1.6826,1.4048,4.9654,12.3115,3.3774,2.4161,12.0678,2.6937,2.6701,2.3156,14.7608,2.111,4.2141,1.4,18.4119,6.2342,9.5002,4.2633,13.3132,7.5789,8.0481,8.4166,4.0725,1.556,4.5202,,,PD,0.077762,PD,,PD,0.42604,4.257,4.3484,0.9581,10.8092,2.1106,0.40745,3.9122,3.2407,50.5546,14.5762,248.8353,4.4343,5.8334,1.9306,2.083,4.6463,8.2256,2.4745,3.5391,0.50264,7.6738,12.3748,14.1399,9.0705,2.4874,5.3246,2.1965,20.5326,5.6984,4.31,1.1171,2.8378,9.4068,15.6061,3.6142,4.7638,3.6042,1.6922,1.3746,4.5113,11.9777,3.1212,2.522,11.5062,2.5047,2.428,2.3174,13.8143,1.9992,4.0959,1.2938,18.7463,5.6833,8.804,5.0999,11.8062,7.9404,7.6848,8.6337,4.0949,1.6641,4.3712,,,,,,,,,,,,,,,52,,,
-3461,2.0112,1.8764,,60-69y,Other,,,22.0114,6.0221,3.6445,2.7874,1.8949,ppmi,,,M,,0.52338,5.6195,5.1012,1.0875,11.2453,2.0351,0.46533,2.9134,3.6171,58.5294,18.7452,275.34,4.7491,4.9825,2.0085,2.3532,4.5721,9.1915,2.7937,3.9103,0.87625,7.8281,13.2523,30.512,8.3806,3.3205,5.8003,2.2865,24.2915,7.426,4.9962,1.0616,2.9334,8.8662,16.7615,3.8542,4.8546,4.054,1.9161,1.6287,5.5403,13.4587,3.8107,2.842,13.8169,3.1066,2.8144,2.6474,14.7846,2.3784,4.599,1.6747,19.0068,6.5686,11.1786,3.7388,12.7942,8.7479,9.1715,8.9077,4.6562,1.8171,5.4403,,,PD,0.080711,PD,,PD,0.47346,4.5542,5.1388,1.0422,11.9663,2.1377,0.45176,3.1919,3.5253,58.1326,18.1215,281.0562,4.9636,5.4147,2.0342,2.1776,4.8135,9.9064,2.763,3.8291,0.70697,8.8389,14.3256,25.5942,8.9071,2.8285,5.2495,2.4094,23.0387,7.4312,4.5447,1.0308,2.6862,10.2827,17.5468,3.8064,5.0179,3.8687,1.972,1.6645,5.0754,13.1709,3.3891,3.0758,11.7033,2.8852,2.654,2.6566,14.939,2.4097,4.5371,1.5449,19.1821,6.3737,9.9957,5.1372,11.8279,9.0497,8.8788,9.0131,4.1848,1.8818,5.2498,,,,,,,,,,,,,,,63,,,
-3462,0.81576,1.4076,,-50y,Other,,,19.522,4.9395,2.6935,2.4291,1.1203,ppmi,,,F,,0.54753,4.9928,4.7384,0.93061,10.7021,1.7013,0.44582,2.9571,3.0839,50.5278,16.6283,234.1304,3.9821,4.5615,1.6965,2.0464,3.6316,7.9572,2.2464,3.3743,0.33237,6.7751,11.9174,8.0477,7.7124,2.5928,4.9096,2.0074,18.9183,6.4914,4.3973,1.1015,2.6657,7.1882,14.7702,3.0539,4.3503,3.2068,1.5597,1.5983,4.5925,11.354,3.2811,2.3946,12.7747,2.2771,2.9343,2.3298,14.0489,1.833,4.8567,1.34,16.6342,5.3412,9.4389,3.4693,12.3258,7.5177,8.8481,8.1672,3.7826,1.5749,4.9544,,,PD,0.062878,PD,,PD,0.49964,4.2773,4.4923,0.95478,10.9842,1.9855,0.4453,3.2347,3.1212,50.2784,16.6739,239.804,4.0423,5.31,1.7379,2.0604,4.0152,7.7406,2.3203,3.575,0.47912,6.9146,12.187,7.9679,8.3197,2.4443,4.7861,1.9691,18.9488,5.4537,4.4071,1.0742,2.5012,8.9686,15.4605,2.5969,4.1611,3.5182,1.6518,1.6389,4.1831,10.9147,3.02,2.3759,11.7947,2.2249,2.8448,2.1582,12.6622,2.0473,4.6678,1.2523,15.9458,5.5401,8.8232,4.6391,10.6439,8.0746,8.247,8.46,3.5935,1.5262,4.7636,,,,,,,,,,,,,,,44,,,
-3464,0.83147,1.7694,,50-59y,Other,,,22.7815,5.8785,3.4469,2.5001,0.91373,ppmi,,,M,,0.5377,5.3689,5.2214,1.2018,11.7621,1.7096,0.45471,3.9934,3.2377,54.0238,18.6329,286.1379,5.1063,5.9968,2.1438,2.3559,4.0434,8.4125,2.6288,4.1781,0.41723,8.501,12.7816,9.0546,9.7256,2.6042,5.8661,2.1259,21.4664,8.0423,4.3887,1.3601,2.9809,8.1101,14.9794,5.0448,5.2555,3.8646,1.7094,1.8265,5.7244,13.1817,3.8362,2.9696,14.7829,3.5662,2.7289,2.9737,15.2235,2.8104,5.1552,1.331,16.306,6.5185,10.7032,4.4287,13.5105,8.8097,9.9298,9.579,4.3746,2.5728,5.7748,,,,0.076114,CN,,HC,0.51264,4.8785,5.2045,1.1192,11.8059,2.1168,0.44705,3.7032,3.3011,53.5628,18.4706,290.675,5.1156,6.4754,2.1072,2.4394,4.7331,9.1404,2.7028,4.3162,0.58392,8.9068,14.0409,7.5897,9.7291,2.7019,5.9382,2.2718,21.3722,6.4087,4.4831,1.398,3.1564,9.9944,15.818,4.0544,5.5901,4.1099,1.8771,1.8356,5.1031,13.1486,3.3022,2.7012,13.9214,2.8923,2.7426,2.6224,13.5247,2.6145,4.9587,1.3134,15.83,6.4421,9.0695,5.955,12.0617,8.515,9.2667,9.4101,3.8418,1.9957,5.5358,,,,,,,,,,,,,,,51,,,
-3466,0.60179,1.7038,,-50y,Other,,,19.3072,4.8024,2.893,2.2007,0.98909,ppmi,,,M,,0.41913,4.5229,4.2158,1.0025,9.9753,1.6112,0.37346,3.0385,2.8715,48.552,16.1005,276.0659,3.8964,4.0187,1.9392,1.8206,3.5017,8.1097,2.2274,3.4012,0.44218,7.0548,11.9114,8.1353,7.4759,2.3696,4.6476,1.9177,19.5923,6.0724,4.062,1.0899,2.4676,7.2576,14.2486,3.6325,4.362,2.9572,1.5912,1.6356,4.7206,10.0022,3.4553,2.2691,11.0352,2.2603,2.546,2.3624,12.0283,1.9981,4.2524,1.1755,14.5038,5.2573,9.2624,3.6122,11.345,7.6238,8.6546,7.9715,3.7384,1.7511,5.1772,,,,0.064177,CN,,HC,0.38454,3.667,3.6885,1.0099,10.512,1.873,0.36867,3.1715,2.8944,48.5745,16.0587,278.1383,3.5721,4.568,1.9517,1.7131,4.0296,7.863,2.1986,3.6485,0.55615,6.9845,11.7088,7.9731,7.9439,2.2859,4.4762,1.835,19.8852,5.5741,3.8955,0.91315,2.401,8.0054,14.4574,3.102,4.4423,3.2711,1.5172,1.649,4.2823,10.6606,3.1359,2.2602,10.5826,2.2538,2.2656,2.0981,11.845,1.9813,4.0745,1.1021,14.9059,5.2191,8.4321,4.3834,10.762,7.7559,8.1478,7.9802,3.6168,1.5138,4.9446,,,,,,,,,,,,,,,48,,,
-3467,1.841,1.8084,,60-69y,Other,,,22.2096,5.3985,2.9012,2.1588,1.3632,ppmi,,,M,,0.49126,4.9866,4.8562,0.95755,9.6931,1.601,0.42219,3.1866,3.2141,48.8854,17.8022,263.7367,4.1797,4.4094,1.7646,2.1954,3.7164,7.1826,2.3088,3.3987,0.62418,6.9717,11.0388,15.7086,7.5571,2.5415,4.8774,1.9482,20.0233,6.8959,4.3934,1.2257,2.7389,7.6203,14.2309,3.8492,4.2958,3.7614,1.64,1.7167,4.4237,10.4599,3.2971,2.5402,11.4032,2.3121,2.9107,2.6983,13.7064,2.4215,4.9148,1.3942,15.4262,6.241,9.0733,3.7785,10.6149,7.8863,9.2584,7.871,4.6457,2.078,5.5468,,,PD,0.08839,PD,,PD,0.42411,4.7114,4.4127,1.0027,10.6735,1.8373,0.43891,3.1977,3.5427,50.0919,17.8097,267.2717,3.7401,4.426,1.8187,2.004,3.7119,7.9125,2.2301,3.7813,0.68169,6.5112,12.7495,12.2406,8.1063,2.3329,5.1679,1.8398,20.5827,5.2324,4.3228,1.0576,2.5195,7.8861,15.6435,2.9084,4.3031,4.3024,1.6565,1.686,4.1888,10.3659,3.0383,2.5485,10.0708,2.0918,2.7126,2.1855,12.2197,1.9576,4.9165,1.2952,15.6789,5.581,8.217,3.9145,10.587,8.2674,8.8686,8.5718,4.0208,1.5611,5.3563,,,,,,,,,,,,,,,67,,,
-3468,1.027,1.8397,,50-59y,Other,,,18.836,4.9976,2.5236,2.2315,1.1894,ppmi,,,M,,0.47189,4.7337,4.9091,0.93896,11.1378,1.7438,0.41997,3.252,3.2561,46.806,15.8102,248.6035,4.2458,4.9612,1.7575,2.232,3.41,7.8692,2.32,3.4748,0.57596,6.5541,12.5304,14.9262,8.0102,2.6003,5.061,2.0584,19.5513,7.0148,4.4022,1.0837,2.6999,7.3065,14.9264,3.2493,4.3447,3.2411,1.6753,1.6492,5.0017,12.0424,3.4167,2.6299,12.22,2.6965,2.622,2.2869,12.6204,2.5543,5.0807,1.3735,15.4594,5.4605,9.6515,3.9808,12.3326,7.7992,8.8707,7.9027,4.2293,1.6926,5.136,,,,0.073986,CN,,HC,0.43699,4.436,4.4918,0.95127,11.7493,1.7187,0.42842,3.0383,3.2392,46.8899,15.4788,253.5026,4.6175,5.2146,1.835,1.996,4.1241,7.728,2.3152,3.6976,0.65649,8.2568,12.7322,12.4489,7.6756,2.4496,5.2549,1.9381,20.4056,6.3462,4.0717,0.97149,2.5695,8.4303,16.3442,3.4589,4.8153,3.3934,1.7599,1.6507,4.3068,11.1298,2.9826,2.6535,11.1241,2.3048,2.7684,2.287,12.9297,1.9427,4.8836,1.2983,15.2571,5.2579,8.6479,4.8634,10.2047,8.1799,8.5308,8.4234,3.6302,1.6675,4.8723,,,,,,,,,,,,,,,57,,,
-3469,1.0124,2.1202,,50-59y,Other,,,19.4864,4.8677,2.4266,2.0766,0.95212,ppmi,,,M,,0.50492,4.5435,4.1563,0.95439,9.4829,1.4149,0.40927,3.1294,3.2104,44.3655,14.8395,252.1317,4.026,3.869,1.7477,2.0678,3.2914,7.6178,1.9893,3.5064,0.51222,6.4493,11.7834,10.9472,7.4086,2.3413,4.814,1.7667,19.0608,5.4934,3.7446,1.0776,2.2785,6.5954,13.7666,2.9827,4.3228,3.2778,1.632,1.5457,4.5213,10.6051,3.2458,2.1066,11.6127,2.1602,2.4158,2.1335,11.6904,1.9055,4.9991,1.14,13.7559,5.2192,9.249,3.185,11.0197,6.6275,8.7634,7.361,3.8891,1.4688,5.0271,,,PD,0.071672,PD,,PD,0.4608,3.7583,3.8076,0.98066,10.1055,1.6721,0.41183,3.3592,3.4118,45.2074,15.105,258.6968,3.8548,4.7766,1.7084,1.9043,3.5869,7.6281,1.9125,3.7742,0.5368,6.4179,11.698,10.3922,8.2517,2.2216,4.8702,1.8018,18.7059,4.4898,3.5964,0.99824,2.3593,7.8331,14.6638,2.729,4.2007,3.2203,1.5524,1.5866,3.8704,10.1612,3.0499,2.1937,10.5861,2.5386,2.2574,1.985,12.9667,2.015,4.7788,1.0768,13.5497,5.2234,9.1597,4.1301,10.0093,6.8805,8.1753,7.4379,3.4976,1.5341,4.8143,,,,,,,,,,,,,,,57,,,
-3470,1.0934,1.5541,,50-59y,Other,,,19.4837,5.2986,2.7908,2.4326,0.99714,ppmi,,,M,,0.43575,5.1517,4.1191,0.8445,9.0145,1.8631,0.38382,3.3071,2.8888,49.7796,16.4999,257.6654,4.1964,4.8553,1.5731,2.0135,3.8533,7.454,2.2538,3.0231,0.48191,6.784,10.788,13.6047,7.6332,2.699,5.1631,2.1433,19.6222,6.3169,4.5237,1.1064,2.471,7.481,14.0813,3.7294,4.541,3.1041,1.5836,1.6293,4.3128,10.7131,3.0906,2.1501,11.4696,2.0577,2.7691,2.1818,12.1514,1.7949,4.1675,1.2519,13.9607,5.5321,9.0747,3.6115,11.0041,7.2818,8.1,6.859,3.5988,1.5582,4.9433,,,PD,0.073073,PD,,PD,0.37669,4.7337,3.6358,0.84618,9.2403,2.1058,0.3617,3.0678,3.0099,50.1557,16.3785,264.1083,3.959,5.0555,1.692,2.1161,4.1451,7.4657,2.1874,3.2409,0.48413,6.6181,11.1177,10.8282,7.6725,2.374,5.1888,2.0009,20.2708,4.7228,4.2948,1.0338,2.4524,8.0766,14.4307,2.8794,4.414,3.2939,1.5309,1.6103,3.8859,10.4914,2.8258,2.2663,10.9063,2.3579,2.3373,2.1013,11.554,1.7293,3.957,1.1429,14.9615,5.4344,8.5607,4.4551,10.2256,7.516,7.7238,7.5881,3.6878,1.5063,4.7542,,,,,,,,,,,,,,,57,,,
-3471,2.326,2.1429,,70-79y,Other,,,19.6069,4.8703,2.8225,2.3915,1.7795,ppmi,,,M,,0.45894,4.7832,4.3056,0.8538,9.9463,1.6703,0.39193,2.7859,3.3094,49.8636,15.0262,225.8306,4.1823,4.6661,1.6816,2.037,3.2781,7.7415,1.9722,3.159,0.92667,6.7624,11.9384,17.541,7.892,2.4929,5.0481,1.7516,19.2503,6.2217,3.9651,1.1407,2.9108,7.3673,14.6191,3.3326,4.7333,3.2396,1.4751,1.5009,4.2458,10.8243,3.5566,2.3583,12.3513,2.6005,2.6647,2.2315,12.9427,2.087,4.4841,1.176,13.9129,5.7222,9.2845,3.6965,10.0905,7.7445,8.2262,8.3251,3.8442,1.5125,5.0709,,,PD,0.077557,PD,,PD,0.40473,4.4363,4.032,0.87426,10.6962,1.8747,0.3935,2.8463,3.6542,50.7378,15.2688,232.243,4.0475,4.6845,1.7915,2.0972,3.689,8.1747,2.022,3.3599,0.98507,7.0776,12.6158,17.7231,8.5411,2.3018,4.6186,1.7964,18.38,5.2332,3.7312,1.1528,2.7063,8.4014,14.8737,3.1339,4.9641,3.262,1.4984,1.3965,3.9638,11.0905,3.2962,2.3383,10.6488,2.1753,2.2384,2.0016,12.2855,1.9543,4.6452,1.1638,15.3986,6.1816,8.6229,3.9822,9.8773,7.4638,7.8706,8.2124,3.465,1.3941,4.84,,,,,,,,,,,,,,,74,,,
-3472,0.90385,1.994,,60-69y,Other,,,18.6135,5.1409,2.7792,2.3133,1.3722,ppmi,,,M,,0.39045,4.2346,4.017,0.85167,8.7243,1.5162,0.36448,3.7792,2.657,49.2163,15.2896,221.0694,4.1961,4.6204,1.6163,2.0777,3.5273,7.4734,1.8964,3.1481,0.44451,6.9807,11.1117,10.7119,8.3645,2.3326,4.329,1.6787,18.3229,6.3415,3.6959,0.83,2.0998,6.5866,13.3987,3.7983,4.712,3.5403,1.626,1.3121,4.2741,9.6352,3.2573,2.1201,13.25,2.3624,2.3313,2.0293,12.7557,2.1053,4.067,1.0979,13.8775,4.9983,8.5774,3.8325,10.6576,7.0532,8.5323,7.4842,3.9422,1.6985,4.6545,,,PD,0.066503,PD,,PD,0.35886,3.99,3.911,0.82024,9.2981,1.7498,0.38256,3.9411,2.8977,48.8251,15.2938,224.8635,3.8659,5.0253,1.6566,1.9687,3.5991,7.408,1.8643,3.3294,0.53542,7.3796,11.1414,10.8821,8.9387,2.3448,4.1947,1.6276,17.1248,5.6715,3.6006,0.83196,2.1629,7.2909,13.0104,3.3249,4.4596,3.0822,1.7003,1.3062,3.6637,9.6024,2.9309,2.0196,10.8691,2.1257,2.4128,1.8457,12.8769,1.8138,3.8963,1.0949,14.1301,5.0107,7.6004,4.7324,9.8816,7.6889,8.204,8.1564,3.2426,1.503,4.4995,,,,,,,,,,,,,,,61,,,
-3473,1.0812,1.8139,,50-59y,Other,,,16.3884,4.6969,2.4277,2.3604,1.2586,ppmi,,,F,,0.48369,4.3504,4.2394,0.8834,10.6663,1.5753,0.38465,3.3705,3.092,47.8823,13.4414,217.227,3.8813,4.7582,1.7189,1.8091,3.4977,7.4301,1.9934,3.2412,0.40167,5.8919,10.5289,13.4912,7.7962,2.3172,4.9177,1.7522,17.5344,5.8315,3.8467,1.3644,2.7687,6.7467,13.0068,3.423,4.1818,3.0801,1.375,1.3388,5.1054,11.4821,3.2168,2.1632,11.3843,2.2041,2.6059,2.0798,11.9829,1.9073,3.9736,1.1011,14.7712,5.5401,9.3596,3.6309,10.2381,7.4188,8.0062,7.8675,3.1488,1.4409,4.4601,,,PD,0.068489,PD,,PD,0.40769,3.8785,3.9392,0.87621,10.6275,1.8791,0.3676,3.7192,3.3199,48.4192,13.5019,224.2044,3.4071,4.9349,1.6904,1.7069,3.8375,7.6354,2.0692,3.3488,0.54272,7.4224,10.6018,20.8081,8.3993,2.2231,4.5525,1.7199,17.8605,6.0034,3.7265,1.2651,3.0549,7.5027,13.4365,3.3191,4.5823,3.3565,1.4538,1.3533,4.1595,11.0222,2.9183,2.2305,9.7011,1.9781,2.3394,1.8968,11.8044,1.7642,3.803,1.0504,14.3228,5.7308,7.6455,4.8434,10.6243,7.2885,7.6915,7.6324,3.3432,1.3422,4.2042,,,,,,,,,,,,,,,55,,,
-3475,1.0184,2.1866,,-50y,Other,,,19.8632,5.7171,3.1169,2.7112,1.1338,ppmi,,,M,,0.52984,4.8013,4.8811,1.011,11.1041,1.861,0.43094,3.5845,3.4534,52.296,16.1429,240.5083,4.1435,5.5279,1.9675,2.2467,3.8409,8.3994,2.3514,3.4645,0.50016,7.3579,12.5125,11.5803,8.4157,2.7282,5.2722,1.9678,21.3168,7.6737,4.669,0.98635,2.8305,7.566,15.0046,4.0467,4.8082,3.4567,1.8346,1.4201,5.2762,12.7167,3.4877,2.5899,12.3416,2.9809,2.7378,2.4676,13.7559,2.4422,4.9486,1.2876,16.0498,5.7936,11.1994,4.2829,12.4661,8.47,8.9654,9.1334,4.5335,1.7618,4.9918,,,PD,0.074023,PD,,PD,0.49158,3.8463,4.5919,0.9852,12.0308,2.1165,0.43625,3.6634,3.7385,54.1801,16.1716,246.7567,4.2703,5.4789,2.0439,2.1525,4.5489,9.2023,2.3396,3.5997,0.47541,7.5418,13.484,16.783,9.3039,2.4235,5.1562,2.0546,20.442,6.0367,4.3427,1.3386,3.1297,9.4262,16.6281,3.3272,4.8348,3.8115,1.7279,1.4663,4.7209,12.7643,3.3193,2.5643,12.1673,2.3296,2.497,2.235,13.202,2.1243,4.8303,1.2152,16.5727,5.9265,10.5255,4.8623,12.202,9.0564,8.5053,9.1481,4.0659,1.6294,4.8293,,,,,,,,,,,,,,,48,,,
-3476,1.3159,2.1181,,60-69y,Other,,,19.8762,4.4924,2.8343,2.32,1.3296,ppmi,,,M,,0.46338,4.2274,4.9656,0.94944,10.284,1.59,0.41536,2.8761,3.1036,48.4161,16.3898,253.0002,3.7904,4.5599,1.7876,2.3845,3.5279,7.204,2.2156,3.3007,0.56284,6.1511,10.8167,14.3015,6.6517,2.4544,4.4653,1.7555,17.6382,6.3596,4.2825,1.0318,2.5964,6.8993,13.5747,3.2203,4.0135,3.8464,1.6618,1.6049,4.5609,11.1923,3.2523,2.4672,11.5968,2.6688,2.5044,2.3204,12.8613,2.0137,4.2356,1.2702,15.8546,5.2518,9.3341,3.8358,10.9627,7.3548,8.6159,7.6345,4.4656,1.5764,5.1861,,,PD,0.074771,PD,,PD,0.41839,3.2697,4.5757,0.94652,10.0779,1.9075,0.42926,2.9107,3.2989,49.567,16.5694,254.2805,3.9101,4.4686,1.8361,2.1724,4.0084,7.4771,2.2665,3.4229,0.67921,6.6939,10.5271,14.1798,7.2891,2.3918,4.2002,1.8786,18.9553,5.0739,4.0319,1.0234,2.287,8.4071,13.9844,3.0716,4.2357,3.6837,1.7302,1.523,4.2752,11.5156,2.9761,2.5201,11.0062,2.3296,2.2203,2.0782,11.7022,1.8828,3.5762,1.2145,15.4998,5.2159,7.9699,4.4356,10.435,7.3483,7.756,8.0895,4.184,1.5873,4.8214,,,,,,,,,,,,,,,66,,,
-3478,1.5231,2.0579,,70-79y,Other,,,19.0418,4.7038,2.9592,2.2267,1.8756,ppmi,,,M,,0.48887,5.5301,4.5756,0.87284,11.6557,1.8978,0.42394,2.9482,3.6758,47.4106,15.33,241.9674,4.4355,4.5964,1.6852,2.065,4.2351,7.7458,2.5241,3.2534,0.8079,7.8668,12.2458,33.2198,8.167,2.8396,5.0606,2.3834,20.5571,8.0661,4.5337,0.95731,2.5074,8.1773,15.6554,3.9225,4.9021,3.4204,1.7113,1.4918,5.1462,12.1963,3.3215,2.3855,12.2452,2.5735,2.9412,2.3775,13.6133,2.3156,4.0418,1.532,15.8084,5.3473,9.56,3.4919,11.5468,8.109,8.6518,8.5298,3.7852,1.7432,4.7582,,,,0.080634,CN,,HC,0.44656,4.3496,4.4005,0.89584,11.7594,1.9971,0.41246,3.3325,3.9716,48.5097,15.0135,248.4224,4.4017,5.5449,1.7951,2.319,4.6365,7.6886,2.517,3.4953,0.78968,7.8717,12.6357,24.2721,8.8039,2.6264,4.7893,2.3769,20.9151,5.7495,4.2893,1.2109,2.6895,9.7385,15.575,3.9293,4.9588,3.7469,1.8211,1.5485,4.838,11.7616,3.1078,2.5247,11.555,2.5163,2.5969,2.1455,12.831,1.9958,4.0932,1.5444,14.6668,5.6255,8.5303,5.5302,11.5078,7.4038,8.3368,8.9456,4.2803,1.5731,4.5662,,,,,,,,,,,,,,,77,,,
-3479,1.0294,1.9387,,50-59y,Other,,,17.4689,4.249,2.6019,2.171,1.5521,ppmi,,,M,,0.41376,4.4289,4.2644,0.89148,10.1022,1.7487,0.39274,2.9363,2.7269,48.9665,16.0264,229.022,4.282,4.4332,1.6853,2.0311,3.571,7.7988,2.1274,3.3002,0.41456,7.2401,12.1787,15.6424,7.404,2.6469,4.627,1.7941,18.7591,6.5535,4.2646,0.97007,2.305,6.464,15.1528,4.1295,4.5817,2.9055,1.719,1.4368,4.4158,11.3351,3.2208,2.3817,11.1511,2.6171,2.7614,2.4587,11.5935,2.2225,4.1589,1.1989,14.5436,4.6172,9.3443,3.3257,11.7148,7.9067,8.1189,8.417,4.1016,1.8305,4.6592,,,,0.068189,CN,,HC,0.38283,3.897,4.0911,0.90542,11.1386,1.9541,0.38437,2.9459,2.909,49.6917,15.8399,232.0312,4.1502,4.7311,1.7983,2.051,3.579,8.0931,2.0307,3.4795,0.53076,7.2958,13.1843,13.1562,7.9256,2.4815,4.5346,1.7267,18.1079,5.3905,4.0117,1.004,2.4454,7.7066,15.445,3.072,4.656,3.4158,1.7412,1.3953,4.1524,11.3133,3.1162,2.3112,9.7277,2.0682,2.4145,2.2079,11.7889,1.9543,3.9383,1.1621,14.3839,4.7468,8.6271,4.2217,10.7078,7.8915,7.765,8.3492,3.9097,1.5682,4.3962,,,,,,,,,,,,,,,58,,,
-3480,1.0881,2.1351,,70-79y,Other,,,18.9446,5.5236,3.0185,2.504,1.2833,ppmi,,,F,,0.51176,4.9201,4.5354,0.99945,10.9073,1.835,0.45059,3.5609,4.0663,51.5484,15.479,251.8359,4.3263,4.9198,1.8261,2.1078,3.8467,8.3375,2.335,3.6007,0.49256,6.8194,11.6998,21.4094,7.9256,2.7481,5.1242,1.9919,21.5872,7.1387,4.6466,1.3415,2.7386,7.7395,14.5548,3.8633,4.8855,4.0154,1.695,1.4981,4.9221,12.3479,3.4033,2.5605,13.3284,2.9203,2.84,2.3137,14.3438,2.3631,4.6063,1.3847,15.5365,5.4965,10.3272,3.9669,13.227,7.3763,8.8276,7.7171,4.2335,1.8266,4.8894,,,,0.072326,CN,,HC,0.44902,4.4434,4.3925,0.98281,12.1467,2.1715,0.44357,3.2935,3.9039,51.6019,15.189,256.1742,4.36,4.8642,1.8369,2.167,4.3273,8.5056,2.4061,3.79,0.4361,7.739,12.5609,17.3675,8.5156,2.6133,5.1519,2.1239,21.6261,6.0028,4.4772,1.0407,2.596,8.5721,15.2611,2.8392,4.6564,3.6086,1.6892,1.477,4.4487,11.8733,3.0689,2.6771,11.4622,2.6337,2.6321,2.3632,12.8524,2.2726,4.5131,1.3293,16.6361,5.4431,8.8137,4.9676,12.7649,8.3367,8.3151,7.7448,3.8033,1.8472,4.6275,,,,,,,,,,,,,,,72,,,
-3481,1.1795,1.6754,,60-69y,Other,,,17.601,4.5041,2.4198,2.1478,1.4779,ppmi,,,M,,0.49167,4.5536,4.4753,0.9331,8.2826,1.6005,0.39468,3.0383,2.9336,41.8097,14.5583,244.7031,4.1667,4.3969,1.6866,1.9683,3.5539,6.8478,2.1996,3.0341,0.53575,6.5138,10.6528,18.0589,7.2524,2.4213,5.0957,1.8336,18.6889,6.2824,3.8597,1.0698,2.5096,7.145,13.1459,3.4192,4.0349,3.4592,1.4741,1.5222,4.4369,9.8818,2.8115,2.5785,10.8873,2.1548,2.4062,2.3586,12.4527,1.928,4.4228,1.1277,15.7232,5.1443,7.3239,3.4119,9.9253,6.9661,8.6857,7.3498,4.2471,1.6416,4.8985,,,,0.074607,CN,,HC,0.38409,3.918,4.3834,0.89599,9.1302,1.7554,0.38898,3.4254,3.2563,41.6251,13.9371,248.6675,3.7727,5.1737,1.715,1.9913,3.7385,7.2352,2.1165,3.349,0.53549,6.9614,10.8595,17.0709,8.1008,2.3108,4.5971,1.7248,18.3217,4.7921,3.5834,1.0244,2.4594,7.4455,13.1854,2.9431,4.3102,3.3923,1.5122,1.594,4.0223,10.2384,2.6523,2.419,9.2978,2.019,2.1942,2.1668,12.4388,1.817,4.2873,1.0454,15.5052,5.3839,7.03,4.4845,9.5652,7.6236,8.2157,7.5346,3.255,1.5346,4.6329,,,,,,,,,,,,,,,63,,,
-3482,0.82188,1.6073,,50-59y,Other,,,22.1301,5.5822,3.0481,2.309,1.2673,ppmi,,,M,,0.55033,5.5871,4.8059,1.0777,11.0967,1.6458,0.45541,3.5221,3.4062,49.9217,17.7842,282.9259,4.1362,5.1833,1.9842,2.1147,4.1124,8.192,2.2523,3.7623,0.61024,7.1118,12.3004,12.7064,8.2957,2.5725,5.4105,2.2394,21.1571,7.5326,4.2094,1.1222,2.9046,8.4858,15.5996,4.1115,4.8248,3.0793,1.7211,1.9693,4.8057,11.7075,3.5137,2.5244,14.2458,2.8223,2.7947,2.3755,13.1273,2.202,5.0926,1.4215,16.8462,5.7987,10.8149,4.0349,11.6443,7.9999,9.806,8.7541,4.3444,1.7538,5.7978,,,PD,0.071995,PD,,PD,0.49538,4.7164,4.3801,1.0724,11.8809,2.1751,0.44111,3.4183,3.702,50.8037,17.5229,287.8544,4.3712,5.0907,2.1619,1.9783,4.8015,8.0733,2.4173,3.8723,0.45176,6.9576,12.7625,17.6825,8.5997,2.5703,4.7922,2.2184,21.474,6.214,4.3104,1.1055,2.5944,9.8955,15.8656,2.961,4.4549,3.5121,1.6361,2.0317,4.395,12.0272,3.3376,2.3537,12.4523,2.7615,2.6842,2.238,12.2153,2.2041,4.7967,1.3627,16.7173,5.9564,9.5924,4.3651,11.6683,8.5495,9.1302,9.6831,3.8869,1.5649,5.5936,,,,,,,,,,,,,,,54,,,
-3500,0.96151,1.9256,,-50y,Other,,,18.1223,4.6635,2.5901,2.2834,1.3385,ppmi,,,F,,0.54773,5.6278,4.4658,0.90889,10.1297,1.7992,0.41685,2.854,3.6544,47.5882,14.9319,222.9237,4.1535,4.1739,1.7692,2.0813,3.5184,7.8396,2.3367,2.993,0.44422,6.1605,11.7719,16.8563,7.5965,2.7509,5.7149,2.3703,20.2703,6.3529,4.4563,1.4337,3.1299,7.8475,14.6831,3.2475,4.1875,4.038,1.6601,1.5572,4.6762,10.4682,3.2477,2.3748,11.9029,2.2132,2.9878,2.3317,13.5478,1.9982,4.3412,1.3046,14.9987,6.1378,10.0424,3.609,11.9289,8.0716,8.4873,8.1863,4.4009,1.6967,4.9073,,,PD,0.077673,PD,,PD,0.51186,4.8782,4.097,0.88093,11.2786,2.0612,0.41641,2.8135,3.6347,46.2411,14.3773,225.832,4.5606,4.8177,1.7102,2.072,3.7423,7.4977,2.3107,3.1987,0.37279,6.8181,11.5576,12.9098,7.5824,2.4316,5.0522,2.1891,21.7627,6.1707,4.3779,1.1535,2.4634,8.9268,14.9823,3.0453,4.0083,3.934,1.6437,1.5965,4.5465,11.3239,2.8143,2.3338,11.2086,2.2485,2.4955,2.1512,13.6799,2.0295,4.2412,1.2909,15.2197,5.9084,8.7079,4.7409,10.8357,8.2649,8.0719,7.6797,4.1305,1.6286,4.7138,,,,,,,,,,,,,,,49,,,
-3501,1.1791,1.5692,,-50y,Other,,,20.0078,4.6042,2.6956,2.0924,0.93396,ppmi,,,M,,0.45607,4.2106,3.6901,0.86314,10.0305,1.4234,0.39664,2.7265,2.9445,48.9385,16.1305,204.7201,3.6263,4.1972,1.6282,1.8265,3.1172,7.7068,1.8662,3.2429,0.56082,6.3576,11.5559,9.5161,7.1927,2.2295,4.4212,1.6178,16.8064,5.9484,3.7791,1.0442,2.446,6.2026,13.8788,3.0194,4.1812,2.9207,1.4481,1.4087,4.4045,10.8552,3.1883,1.872,12.5209,2.2333,2.4992,1.8818,12.6879,1.9335,4.0634,1.149,13.1049,5.0589,9.1759,3.548,11.761,7.34,8.3439,7.2354,3.6362,1.4548,4.897,,,PD,0.07323,PD,,PD,0.41693,3.9213,3.5142,0.87787,11.2341,1.5438,0.39971,2.703,3.0173,48.0922,15.6137,207.6578,3.297,4.166,1.7789,1.7855,3.1407,7.6174,1.8707,3.3666,0.5362,6.3291,11.2888,8.5024,7.4831,2.046,4.524,1.5655,16.3414,5.6578,3.3633,1.2314,2.8171,7.3777,15.0612,2.6121,4.1131,3.4008,1.4664,1.4247,3.9451,9.7922,3.0281,1.8384,10.4664,2.0104,2.175,1.7595,12.9519,1.8455,3.9905,1.044,13.7541,5.1426,8.129,4.2869,10.6834,8.3382,7.8715,7.4971,3.3705,1.3014,4.7138,,,,,,,,,,,,,,,47,,,
-3502,1.5358,2.1481,,70-79y,Other,,,23.2241,4.4365,2.611,2.2036,1.6941,ppmi,,,M,,0.50506,3.6368,4.9584,0.96144,9.451,0.89933,0.46307,3.739,3.6956,47.8912,17.7549,251.4492,4.3428,4.6545,1.9156,2.2333,2.5555,7.567,1.534,3.5188,0.61186,7.023,11.0197,24.4768,8.0778,1.7033,4.9243,1.1814,17.4754,6.9546,2.959,1.054,2.509,5.7612,13.5472,4.1534,4.6596,3.3978,1.6951,1.7537,5.0866,11.5193,3.4503,2.4923,11.1881,2.6507,2.1819,2.2849,13.8124,2.2079,5.0955,1.0143,13.3003,5.1729,9.3069,3.9108,11.0436,7.7129,9.6744,8.3155,4.5919,1.7769,5.7312,,,PD,0.071033,PD,,PD,0.45848,3.1977,4.502,0.90897,11.2103,1.1076,0.44017,3.4534,4.0366,45.7208,16.8899,251.7169,4.5304,4.7739,1.7885,2.1757,2.7017,7.5284,1.5435,3.5758,0.67512,7.5463,11.6629,21.5465,8.4439,1.8438,4.3826,1.2945,18.1692,5.8937,2.8563,0.95537,2.168,7.5886,14.3167,3.3449,4.492,3.3277,1.8111,1.7794,4.4794,10.9751,3.0656,2.5133,11.2569,2.2207,1.9889,2.2235,13.5269,2.0305,4.724,0.97448,12.9311,5.323,8.048,4.8375,11.2597,7.9515,9.0071,8.7016,4.3277,1.5305,5.4867,,,,,,,,,,,,,,,70,,,
-3503,0.62388,1.2698,,-50y,Other,,,15.7063,3.8553,2.279,1.9523,0.907,ppmi,,,F,,0.38278,3.847,3.3774,0.77,8.3223,1.4993,0.32902,2.6386,2.6053,41.3192,12.385,166.8606,3.3403,3.8796,1.4749,1.6238,3.1152,6.9695,1.9163,2.6276,0.33767,5.6491,9.5379,11.6269,6.3751,2.1909,4.1583,1.5776,15.0773,5.5106,3.7357,1.0583,2.4767,5.7052,10.4849,3.0132,3.8828,2.9768,1.2752,1.2784,3.59,9.275,2.7455,1.7425,10.2066,2.2027,2.343,1.8643,11.3877,1.9628,3.3244,0.95888,11.1022,4.3221,7.8412,3.4134,9.3911,5.9872,7.1431,6.9732,2.9635,1.3395,4.1808,,,,0.05196,CN,,HC,0.35119,3.478,3.2256,0.7383,9.0394,1.6664,0.33859,2.6374,2.8241,41.6723,12.0562,168.3786,3.306,3.9255,1.5051,1.4685,3.2539,6.7697,1.7632,2.687,0.32948,6.2691,9.9342,10.8187,6.7394,1.9489,4.1999,1.5616,15.2662,4.7533,3.4462,0.89074,2.3175,6.6842,12.2686,2.5771,3.7043,3.0696,1.1932,1.242,3.3708,9.0049,2.4864,1.8255,9.2124,1.8235,2.1979,1.7958,11.2027,1.6397,3.2567,0.93827,11.8028,4.5961,7.5316,3.8606,8.8424,6.4575,6.8191,7.2911,2.7088,1.2429,3.951,,,,,,,,,,,,,,,32,,,
-3504,1.5124,2.5682,,60-69y,Other,,,19.5775,4.5357,2.5566,2.2361,0.98859,ppmi,,,M,,0.51592,4.2304,4.3515,0.91572,8.9571,1.5335,0.40606,3.0108,3.4077,46.8233,14.3542,233.5462,4.0461,4.0121,1.7168,1.8519,3.5847,7.6233,2.163,3.1744,0.623,6.5034,11.519,14.4674,7.4467,2.3452,4.6547,1.7568,18.1466,6.086,3.8816,0.97344,2.3366,6.6531,13.3921,3.4344,4.4624,2.988,1.5262,1.658,4.7332,10.3369,3.2429,2.3849,11.6584,2.3872,2.4287,2.3687,12.5231,1.9503,4.7236,1.135,14.7209,5.1252,8.3493,3.4625,10.9754,7.2056,8.4066,7.2846,3.6335,1.6071,5.1817,,,PD,0.073286,PD,,PD,0.48231,4.301,4.1367,0.89734,10.8231,1.7008,0.41087,3.2834,3.5034,47.4281,14.2159,238.0135,3.7837,4.3456,1.6336,1.892,3.9985,7.4738,2.1917,3.3862,0.56166,6.6927,10.6746,15.0263,8.2925,2.177,4.7987,1.8027,18.0435,5.1851,3.7183,0.87814,2.4225,7.6475,13.4573,3.0343,4.4104,3.0262,1.6035,1.647,4.3301,10.1989,2.9659,2.2389,9.2687,2.1309,2.1185,1.9877,13.4595,1.883,4.486,1.1144,14.7691,5.0758,7.6179,4.3501,10.5684,7.2166,8.0111,7.0774,3.6861,1.4788,4.8984,,,,,,,,,,,,,,,61,,,
-3505,1.4592,1.8213,,70-79y,Other,,,19.0132,4.6243,2.5185,2.0813,1.2563,ppmi,,,M,,0.41386,3.9742,4.1831,0.9118,9.2253,1.362,0.39839,2.6665,2.6895,45.1945,14.9196,192.0731,4.0084,4.0087,1.5879,2.0688,3.229,6.9726,1.9764,3.0409,0.79221,6.5557,10.7707,21.0868,7.6373,2.2578,4.7084,1.6188,16.259,6.0416,3.68,1.1275,2.6532,5.9277,12.6793,3.204,4.3787,3.2452,1.5513,1.3625,4.4512,10.7602,3.4258,2.1884,11.9536,2.2706,2.4868,2.0755,12.9128,2.0278,3.6749,1.1396,12.3484,4.815,8.3884,3.5015,10.1119,6.4502,7.6914,7.2082,3.88,1.6819,4.6063,,,PD,0.068926,PD,,PD,0.36216,3.6693,4.0238,0.82123,9.7527,1.6181,0.36134,2.9382,2.8198,45.2403,14.9207,192.9672,3.8153,4.4583,1.6174,1.8613,3.5495,7.2938,1.885,3.0989,0.68358,6.5168,10.3025,19.258,8.0978,2.1177,4.3662,1.5658,16.7702,5.2157,3.6034,1.0713,2.329,6.7564,13.2178,3.174,4.308,2.6874,1.4492,1.369,4.0391,10.2365,2.9865,2.2179,9.7502,1.9339,2.2059,1.9086,11.7461,1.6879,3.5973,1.1343,14.4426,4.5689,7.481,4.4122,9.8226,7.336,7.1729,7.3531,3.2387,1.4151,4.3636,,,,,,,,,,,,,,,73,,,
-3506,0.9081,1.2681,,60-69y,Other,,,17.6493,4.2217,2.4734,1.9916,1.0387,ppmi,,,F,,0.44279,4.8024,3.9921,0.92142,9.8437,1.7189,0.43188,3.0016,2.874,44.4612,13.4618,214.107,4.1082,4.8907,1.8234,1.8584,3.6445,7.3739,2.2383,3.0739,0.27954,6.847,11.5978,7.6499,7.0169,2.56,4.3456,1.98,18.6031,7.3018,4.3998,1.0292,2.5475,6.9273,14.299,4.103,4.2945,3.1404,1.4214,1.3771,4.4063,10.8888,3.2351,2.321,11.8227,2.1815,2.5479,2.1343,12.6463,1.5876,4.1622,1.3373,13.5169,5.5216,9.0252,4.154,10.5783,6.4406,7.6217,7.6334,3.4256,1.3534,4.4977,,,PD,0.077102,PD,,PD,0.40111,3.9619,4.0158,0.91162,9.8551,1.9406,0.42093,2.9867,2.9196,45.2344,13.3314,215.878,3.891,4.9065,1.7313,1.9415,3.6892,7.7439,2.1323,3.2274,0.32237,7.1973,11.8555,7.0174,7.4994,2.5435,4.6373,1.953,19.2597,5.6278,4.0809,0.99802,2.3454,7.9196,13.8265,3.491,4.1832,3.2124,1.6931,1.3793,4.0976,10.248,2.8775,2.2209,10.0741,2.4199,2.4327,2.0487,11.3939,1.9475,3.9959,1.2373,12.9484,5.0326,8.6633,4.814,10.2138,7.3534,7.1377,8.0038,3.746,1.4394,4.3169,,,,,,,,,,,,,,,67,,,
-3507,1.8282,2.5331,,60-69y,Other,,,19.3557,4.6247,2.9088,2.1049,1.5038,ppmi,,,M,,0.44324,5.1435,4.2888,0.99945,9.901,1.6689,0.42585,3.7778,3.112,50.7101,14.6696,244.0111,4.3836,5.5287,1.8667,1.9825,3.7137,7.3985,2.2632,3.3343,0.48513,6.4935,11.6472,17.5572,8.2689,2.5044,5.3368,1.8977,21.3446,6.5343,4.4092,0.9717,2.6439,7.6239,15.0222,3.8881,4.5486,3.6466,1.4891,1.5713,4.8964,12.0601,3.5492,2.2509,13.1874,2.436,2.6727,2.4564,15.1734,2.0904,4.4485,1.2664,14.3923,5.8071,10.3531,3.9678,12.1272,8.0702,8.4711,8.4466,3.9082,1.7875,5.0046,,,PD,0.070756,PD,,PD,0.37011,4.8798,4.1471,0.98773,10.7688,1.9068,0.41721,4.3097,3.0881,49.6807,14.2567,251.4659,3.8252,5.5694,1.8355,2.0678,4.1298,7.681,2.2364,3.5985,0.45247,8.4844,12.6853,13.2589,8.847,2.4344,5.231,1.8888,20.2556,6.6498,4.1836,1.1536,2.9593,8.6874,15.7842,3.84,4.8132,3.8239,1.6087,1.5547,4.555,11.726,3.1385,2.3237,11.1133,2.5214,2.5548,2.2273,14.3605,2.3443,4.3759,1.1726,15.8244,5.7004,7.9275,5.1928,10.6719,8.0021,8.0169,8.7687,3.5584,1.5925,4.8819,,,,,,,,,,,,,,,62,,,
-3510,1.8533,2.4765,,60-69y,Other,,,20.6831,5.6551,3.3244,2.7194,2.7769,ppmi,,,M,,0.54344,5.5049,5.3577,0.97264,10.1694,1.6901,0.48088,3.8431,3.5955,44.5394,18.2094,252.5884,4.6415,5.7172,1.8657,2.4927,3.543,7.7139,2.5356,3.3837,1.3703,6.9808,12.2977,34.5848,8.7138,2.9056,5.7316,2.176,23.9534,6.7353,4.4355,1.3748,2.9508,7.678,15.0753,3.7435,5.0603,4.0449,1.9854,1.6927,5.1912,12.764,3.4992,2.7814,12.0591,2.6569,3.2784,2.3968,12.3349,2.0107,4.7205,1.5065,13.8035,5.8311,9.489,3.9317,13.3525,7.5512,10.0426,8.0567,4.8804,1.8627,5.1301,,,PD,0.081814,PD,,PD,0.51297,4.5926,5.0507,0.94253,12.4711,2.1996,0.45977,3.5,3.8657,45.6997,17.229,261.8595,4.573,5.0678,1.8825,2.2506,4.1721,8.3985,2.5428,3.7243,1.2391,7.5412,13.512,27.0503,9.3774,2.5911,5.1323,2.3075,23.4439,6.6575,4.6265,1.2841,2.7438,9.4726,16.1925,3.1345,5.1623,3.2584,1.7206,1.5818,4.8142,11.8011,3.3457,2.9319,12.3579,2.7259,2.7552,2.5189,13.3743,2.4225,4.5431,1.461,15.3244,5.7917,10.558,5.0075,12.2533,9.2349,8.7542,8.898,4.2136,1.9099,4.9942,,,,,,,,,,,,,,,60,,,
-3514,1.1534,2.4362,,70-79y,Other,,,18.9401,4.9834,2.628,2.3496,1.2768,ppmi,,,M,,0.48717,4.0202,4.2096,0.87311,8.3425,1.604,0.38313,2.8823,3.7609,45.4954,14.5244,223.5223,3.8782,4.0305,1.7464,1.7407,3.6933,7.0305,1.9434,2.9471,0.56962,6.0459,10.4748,18.5099,7.2557,2.3028,4.052,1.6793,18.7031,6.4487,3.8689,1.0364,2.2966,6.7885,13.0648,3.1589,3.9804,2.9267,1.2307,1.5319,4.2401,9.7865,3.1366,2.4582,12.0436,2.3539,2.4217,2.301,12.1184,1.7819,4.634,1.1536,14.5427,5.1757,7.9713,3.3194,9.9758,6.7361,8.2493,8.0302,3.2863,1.4537,4.791,,,PD,0.072063,PD,,PD,0.44046,3.296,4.0119,0.84789,10.0222,1.6934,0.3914,2.7362,4.0174,44.2599,13.8223,225.956,3.632,3.8304,1.7057,1.8822,3.8862,6.9307,1.9346,3.0635,0.59248,6.2397,10.6862,17.1914,7.502,2.141,4.1769,1.7284,18.3892,5.4477,3.7246,1.0146,2.2161,7.8687,13.1102,2.826,3.8113,2.9949,1.4946,1.4854,3.8432,9.5393,2.7367,2.4523,10.2853,1.9979,2.3072,1.9991,11.8871,1.4593,4.6943,1.1739,14.7616,4.6065,7.3778,3.9844,9.8943,6.7636,7.6265,8.1364,3.2631,1.2342,4.5753,,,,,,,,,,,,,,,71,,,
-3515,1.2421,2.355,,70-79y,Other,,,16.8421,3.9323,2.3146,1.9731,1.0302,ppmi,,,F,,0.50347,4.4437,3.6985,0.88979,8.5837,1.477,0.38877,2.9065,3.5171,43.5447,12.9824,190.5461,3.3073,4.3479,1.6483,1.4788,3.1922,7.0742,1.7928,3.2714,0.50239,6.046,10.421,13.5882,6.8308,2.1911,4.7494,1.6576,16.8731,6.4146,3.5384,0.9818,2.4125,6.4947,12.7052,3.3857,4.0448,2.5987,1.1936,1.4453,3.8504,9.8777,2.9814,2.0244,11.0047,1.751,2.2048,2.0133,11.6783,1.469,4.1028,1.0645,12.2348,5.0964,7.8484,3.5453,9.9715,6.4321,7.4875,7.1594,3.0605,1.231,4.4896,,,,0.066916,CN,,HC,0.44569,4.1228,3.7005,0.90601,9.6202,1.5708,0.3953,3.1414,3.6547,43.0202,12.599,197.0221,3.3833,3.9784,1.7057,1.7365,3.3961,7.0079,1.8512,3.4163,0.50611,6.3658,10.4269,9.3655,7.511,2.02,4.9944,1.6238,18.0788,4.9742,3.4652,0.87166,2.163,7.3251,12.8905,2.8794,4.0045,3.0144,1.3287,1.5315,3.5455,9.3514,2.8129,2.0465,9.4147,1.7174,2.0563,1.7896,10.5896,1.4833,4.0367,1.0121,12.5574,4.8726,7.3354,3.3609,9.9535,6.8469,6.9885,7.9901,3.0629,1.1566,4.3175,,,,,,,,,,,,,,,74,,,
-3516,1.3102,2.4982,,70-79y,Other,,,20.6482,4.6337,2.8837,2.2947,1.5033,ppmi,,,M,,0.42953,5.1607,4.8093,0.78353,9.3305,1.5964,0.36094,3.3327,3.0958,49.776,15.0628,195.8296,4.1028,4.7641,1.2892,2.0077,3.8237,7.0998,2.1938,3.137,0.48226,6.8772,10.996,17.2821,8.7005,2.5082,5.0047,1.8405,17.3191,6.7981,4.1484,1.2983,2.7462,7.6237,14.2586,3.8423,4.7601,3.192,1.471,1.5133,4.2985,11.2983,3.137,2.5982,11.5947,2.3825,2.5075,2.4788,12.8571,2.0948,3.7853,1.1845,14.6006,5.9196,8.9243,3.539,9.8615,7.5594,8.2497,5.4238,4.1833,1.5627,5.0046,,,PD,0.080611,PD,,PD,0.40263,4.6327,4.1129,0.88046,10.3559,2.0278,0.37695,3.4243,3.291,50.4076,14.8835,202.6702,3.8569,5.7877,1.7212,1.988,4.328,7.833,2.2341,3.1187,0.95931,6.7909,11.8804,21.5064,8.401,2.6174,4.7002,1.8516,18.3394,5.1092,4.3198,1.0936,2.6998,8.7367,14.445,3.0472,4.6028,3.417,1.7947,1.5163,3.7594,11.2998,3.0461,2.2831,9.9348,2.0168,2.478,2.0574,11.8767,1.9351,3.7195,1.1425,15.0881,6.1071,8.0205,4.4369,9.8194,7.5652,7.8884,7.8837,3.6017,1.4833,4.885,,,,,,,,,,,,,,,78,,,
-3517,0.60148,1.9,,-50y,Other,,,20.1098,4.7273,2.8894,2.3917,0.80566,ppmi,,,M,,0.49701,4.3431,4.5874,0.97221,9.7276,1.6224,0.41807,3.2045,3.2565,50.5418,16.1413,214.1542,4.4191,4.6127,1.7926,2.0541,3.4156,8.2838,2.0144,3.2696,0.48721,6.7532,11.6701,6.9494,9.0064,2.4757,4.7164,1.8181,17.9496,6.631,4.2334,1.2278,2.8963,6.6795,13.3488,3.7516,4.9682,3.3555,1.5003,1.5518,4.7041,10.9779,3.3327,2.6392,12.5564,2.362,2.8316,2.5541,13.4204,2.0413,4.9865,1.1213,14.5791,5.236,8.5905,3.711,11.0525,7.7003,8.7648,8.0879,3.8074,1.8014,5.1393,,,,0.071991,CN,,HC,0.45214,3.9873,4.2589,0.95716,10.3187,1.6955,0.41256,3.2581,3.3155,49.9607,15.7649,218.2864,3.6768,5.7208,1.7394,2.1567,3.7102,8.116,2.1058,3.454,0.50693,7.6158,12.407,5.7873,8.7024,2.1751,4.8938,1.7412,17.3145,5.504,3.8058,1.309,2.881,7.5919,14.794,3.3067,4.9171,3.6417,1.4211,1.5165,4.1472,10.7057,2.9779,2.4891,11.0868,2.2722,2.4073,2.24,12.7419,2.037,4.6913,1.0324,14.5662,5.5759,8.9662,4.9257,11.0716,8.1726,8.4632,8.1785,3.6933,1.6124,4.8997,,,,,,,,,,,,,,,46,,,
-3518,1.5275,2.2785,,70-79y,Other,,,18.5404,4.895,2.4366,1.996,1.288,ppmi,,,M,,0.38971,4.4804,4.2031,0.91328,8.7,1.3691,0.34848,3.0864,2.8985,46.1608,14.2517,197.2031,3.9494,4.0586,1.6569,1.908,3.4195,7.7228,1.8643,3.3151,0.77588,7.0441,10.9044,24.151,7.4034,2.0646,4.782,1.5837,15.9867,6.2916,3.4417,1.3392,2.8069,6.7451,12.6766,3.8032,4.5715,3.0209,1.2911,1.4874,4.6176,11.7033,3.3349,2.3947,11.6913,2.5482,2.2663,2.261,12.2807,2.0054,3.7096,1.0709,13.1707,5.4196,8.1881,3.5494,9.6458,6.4851,8.0538,7.0233,3.6927,1.6413,4.7063,,,,0.072049,CN,,HC,0.38905,4.2361,3.9431,0.91967,10.1542,1.6761,0.37646,3.1831,3.1085,45.9677,13.7979,201.1609,4.3104,4.4936,1.7401,1.8468,3.8224,7.3233,1.9462,3.3912,0.666,6.4461,11.5439,20.096,7.866,2.2092,4.7058,1.7675,16.4187,5.3845,3.5424,1.0854,2.6605,7.5588,14.9038,3.1181,3.9294,3.1067,1.5697,1.4882,4.0431,11.1874,2.9861,2.406,10.6741,1.934,2.2857,2.1358,12.6885,1.7518,3.6456,1.1153,13.6788,5.3887,6.894,4.2345,9.6738,6.9341,7.5608,7.9566,3.2603,1.4873,4.5721,,,,,,,,,,,,,,,73,,,
-3519,2.0161,2.1343,,70-79y,Other,,,22.6542,5.5425,2.8669,2.2509,1.5393,ppmi,,,M,,0.49222,4.9525,4.4878,0.94697,8.996,1.9093,0.41011,3.1662,3.4954,51.9673,17.2705,243.2934,4.6667,4.7968,1.7737,1.9554,4.485,8.3522,2.4393,3.475,0.73481,7.568,12.171,23.6865,8.7276,2.7801,5.256,2.0959,20.3897,7.0913,4.5634,1.4329,3.0766,8.0322,13.3411,4.3706,4.864,3.3755,1.6897,1.5889,5.2411,12.8425,3.5134,2.6963,12.4487,2.7211,2.8144,2.4239,13.5322,2.2223,4.4971,1.3047,15.6667,5.3676,8.9025,3.6809,11.3402,7.213,8.9479,7.4687,4.2026,1.7724,5.3922,,,,0.085695,CN,,HC,0.43408,4.4505,4.4446,0.96996,11.6573,2.0968,0.40617,3.4679,3.4483,51.7088,17.312,247.2544,4.3801,5.1479,1.8311,2.0564,4.9373,8.719,2.5223,3.8763,0.83925,8.2141,12.9176,19.1588,8.9726,2.4753,4.9414,2.2683,18.9099,6.1128,4.3234,1.1561,2.7086,9.6723,15.4265,3.6619,4.9651,4.0222,1.4843,1.5531,4.6854,13.1007,3.3886,2.6035,10.6403,2.8035,2.388,2.2622,14.4915,2.1695,4.3146,1.2662,16.0916,6.1819,7.8497,4.3879,10.1696,7.8841,8.352,8.1749,3.8427,1.7774,5.0866,,,,,,,,,,,,,,,74,,,
-3521,1.7738,1.4835,,60-69y,Other,,,18.0096,4.516,2.8876,2.2799,1.3859,ppmi,,,M,,0.43732,4.7696,4.1954,0.9848,10.6465,1.6919,0.40073,3.3077,3.1075,45.9119,14.338,222.1092,3.8736,4.4086,1.8937,2.0402,3.3926,7.2516,2.0608,3.4876,0.60327,6.4906,11.505,12.9088,7.381,2.3877,5.1593,1.7407,19.6484,6.1898,4.1945,1.1683,2.8608,7.1956,14.8918,3.4007,4.1753,3.3975,1.3791,1.4154,4.6162,10.6866,3.4535,2.3651,11.2153,2.2875,2.5323,2.4673,12.8045,2.0224,4.3324,1.2381,13.6091,5.6711,9.2031,3.2938,11.1189,8.8738,8.372,8.8469,3.844,1.6784,4.8397,,,,0.078581,CN,,HC,0.38849,4.3899,4.0396,0.98461,10.0141,1.8557,0.39601,3.1645,3.3807,46.1984,14.1224,227.1361,3.9366,4.7808,1.9495,1.9265,3.8527,7.7458,1.9586,3.6508,0.57256,6.6967,11.4193,13.1198,8.0156,2.255,5.2027,1.7093,19.3314,5.3999,3.8043,1.1048,2.7608,8.3569,14.6638,2.8097,4.2835,3.6102,1.5163,1.4049,4.2231,10.8634,3.2055,2.4328,10.4605,2.3716,2.3831,2.5067,13.1241,2.1995,4.1847,1.133,14.4502,5.6117,9.2655,4.24,11.1371,9.3887,8.0111,9.0454,3.4843,1.8797,4.6139,,,,,,,,,,,,,,,65,,,
-3522,2.093,2.6268,,50-59y,Other,,,20.8339,5.483,2.7807,2.3704,2.7598,ppmi,,,M,,0.50004,4.9362,4.5403,0.99873,9.6413,1.7135,0.4147,3.8246,3.3178,50.4605,17.3301,233.2974,3.9011,5.1162,1.883,1.833,4.0465,8.2065,2.2489,3.6412,0.80136,7.2251,11.7675,40.4384,8.3197,2.6273,5.5968,1.8136,18.7877,7.614,4.0735,1.3488,3.0787,7.1137,13.9237,4.4267,4.6003,3.2746,1.5813,1.7761,4.5483,10.8636,3.5628,2.5361,11.4854,2.1223,2.547,2.3266,13.7862,1.8196,4.8393,1.2324,14.5868,5.5063,8.435,4.1188,9.8429,7.8981,9.3295,7.9935,4.0132,1.6094,5.5081,,,PD,0.066018,PD,,PD,0.46608,4.8343,4.2835,0.98283,10.2762,1.848,0.41581,4.0218,3.498,49.7952,17.0519,235.868,3.8435,4.9969,1.8791,1.9382,4.2362,8.3295,2.1282,3.5726,0.84855,7.9922,12.2141,40.5911,9.1783,2.3495,5.5899,1.8313,19.4807,6.0679,3.5704,1.1165,3.0015,8.4531,14.8958,3.5824,4.6156,3.2015,1.5989,1.777,4.1723,10.5045,3.2418,2.5776,9.6803,2.2207,2.0646,2.2085,12.7679,1.8514,4.7256,1.1434,13.5119,5.7706,8.1279,4.5019,10.1494,7.8342,8.7137,8.102,3.4854,1.5867,5.2466,,,,,,,,,,,,,,,54,,,
-3523,0.81163,1.5192,,60-69y,Other,,,19.081,5.0645,2.9992,2.5093,0.85477,ppmi,,,M,,0.48488,4.3544,4.1968,0.99551,9.5226,1.4417,0.40562,3.5102,2.8337,51.8801,15.4009,198.4709,3.5452,4.9629,1.8718,1.803,3.2321,7.9208,2.0358,3.3296,0.43582,6.6551,11.6648,7.2597,7.9421,2.3184,4.5276,1.7453,18.2004,6.4103,3.7394,1.2254,2.5056,6.3002,14.2535,3.3602,4.6842,3.0852,1.4136,1.4719,4.2467,9.8038,3.4155,2.2227,11.8118,2.3801,2.4338,2.1012,13.1791,2.1484,4.6061,1.1223,14.4425,5.234,8.8679,4.1358,10.0028,7.6443,8.0621,7.7117,3.5729,1.5382,4.8685,,,,0.072733,CN,,HC,0.4102,3.9086,3.9559,0.98699,10.0195,1.6613,0.40398,3.5018,2.8329,50.7574,14.7129,200.0742,3.5551,4.7083,1.9003,1.9724,3.5218,7.7809,2.0097,3.4044,0.42928,7.0437,11.3272,6.5495,8.3068,2.0801,4.5538,1.6966,18.1783,5.2434,3.823,0.95421,2.4678,7.084,14.0685,3.062,4.5012,3.41,1.5327,1.4344,4.0191,10.0641,3.0424,2.128,10.3647,1.9019,2.2694,1.9875,12.2166,1.7375,4.4469,1.0676,14.1345,5.2948,8.5256,4.6053,9.883,8.2695,7.5844,7.7611,3.9787,1.2772,4.6377,,,,,,,,,,,,,,,64,,,
-3525,0.80972,1.9438,,50-59y,Other,,,20.3061,4.5717,2.7777,2.2644,1.1986,ppmi,,,M,,0.42471,4.6126,4.2387,0.97004,8.8856,1.5293,0.38749,3.2898,2.6619,50.1682,17.3124,214.323,3.6595,4.1713,1.7785,1.7683,3.429,7.4983,2.0186,3.4539,0.41252,7.0752,10.7515,8.4991,7.1511,2.294,4.7724,1.8872,15.3433,7.0874,3.7647,1.1517,2.7,7.1745,13.2746,4.2284,4.6273,3.0157,1.3019,1.5346,4.2795,9.9065,3.4535,2.284,10.6553,2.1182,2.4769,2.1641,11.8065,2.0157,4.1361,1.0641,13.1302,5.4968,8.0142,3.6795,9.3517,7.0206,8.894,7.2272,3.2769,1.5896,5.1963,,,,0.058924,CN,,HC,0.36643,4.0056,3.9085,0.96378,10.1933,1.7466,0.38339,3.1099,2.65,49.1022,16.8215,220.0786,3.8295,4.5302,1.7393,1.8401,3.5502,7.7238,1.8985,3.6388,0.44137,6.6036,11.622,7.1169,8.2444,2.1436,4.672,1.7317,16.5169,4.974,3.5355,1.0332,2.7133,8.2853,13.9802,3.1149,4.0257,3.2344,1.3568,1.5722,3.7519,9.8764,3.1127,2.2322,9.8579,1.9774,2.2159,1.9801,11.991,1.7453,3.9756,0.97642,13.6097,5.1804,7.8896,4.0724,9.9479,7.4823,8.386,7.4183,2.9701,1.4069,5.0282,,,,,,,,,,,,,,,56,,,
-3526,1.9398,2.187,,60-69y,Other,,,19.9076,5.7141,2.8448,2.5693,1.878,ppmi,,,M,,0.44766,4.7375,4.8812,0.94215,8.9662,1.5812,0.42239,3.1295,3.4875,51.3065,16.3318,201.4213,3.976,5.1502,1.7854,2.4099,3.6317,7.429,2.3298,3.3697,0.60782,6.6467,11.2601,24.5627,7.9742,2.3869,5.2807,1.889,19.0754,6.4179,4.26,1.3849,2.6146,7.6073,12.4507,3.9701,4.4434,3.4197,1.6206,1.4618,5.104,11.1162,3.3787,2.7742,12.2192,2.3815,2.7637,2.4706,12.4869,2.0339,4.9153,1.2983,16.3143,5.7206,9.1611,4.2086,10.4409,7.0441,7.8726,7.7218,4.0699,1.6115,4.8222,,,,0.078795,CN,,HC,0.44431,4.2905,4.5756,0.98141,10.2703,2.1778,0.44893,3.2501,3.8632,50.3588,15.3767,220.3208,4.123,4.7387,1.9135,2.2977,4.2095,7.362,2.3037,3.535,0.59424,6.5422,11.2166,18.7772,8.2923,2.5894,5.1901,1.9912,20.0283,5.6089,4.3037,1.2611,2.808,8.6513,13.2631,3.3039,3.9997,3.9811,1.7861,1.523,4.6274,11.0866,3.1964,2.5681,10.4884,2.3166,2.4195,2.2526,13.2539,2.1136,5.0179,1.2753,14.5737,5.9236,8.2836,4.406,10.5342,7.7828,7.751,8.2813,4.439,1.7722,4.7611,,,,,,,,,,,,,,,61,,,
-3527,1.3298,1.7486,,60-69y,Other,,,19.6226,4.4708,2.6668,2.1875,1.2056,ppmi,,,M,,0.44092,4.4242,3.9005,0.92401,8.0415,1.5095,0.40153,3.0532,3.1165,42.4029,16.533,217.9644,3.2679,4.5203,1.6909,1.7084,3.2286,6.6068,1.9708,2.998,0.57938,5.7456,9.7003,14.4263,6.8244,2.2307,4.8306,1.7447,16.6401,5.5638,3.9791,1.2225,2.6195,6.5885,11.9549,3.4402,3.5386,3.189,1.299,1.5956,4.2053,9.5655,3.0577,2.0991,10.1987,1.874,2.4965,2.0987,10.3165,1.6028,4.0401,1.2541,13.5245,5.035,7.9753,3.3662,9.6386,6.4622,8.1702,7.4896,3.5378,1.1961,4.9268,,,,0.067301,CN,,HC,0.40059,3.8198,3.8559,0.95187,10.264,1.6401,0.39687,2.8928,3.2766,41.9914,15.9191,221.99,3.3571,4.2141,1.7925,1.6572,3.4902,6.8811,1.9202,3.1701,0.66013,5.8618,9.1945,15.6802,7.0039,2.1528,4.4459,1.7934,15.9311,5.2312,3.5892,1.1071,2.5703,7.6201,11.4083,3.3293,3.4317,2.3325,1.3966,1.648,3.6985,8.6781,2.8422,2.1342,11.1465,1.8575,2.274,2.0371,10.4487,1.8389,3.8937,1.1309,13.1308,4.8942,7.9962,4.7732,9.8558,7.0511,7.6354,7.1717,2.9208,1.4203,4.7314,,,,,,,,,,,,,,,62,,,
-3528,0.61919,1.5982,,50-59y,Other,,,17.4578,4.3556,2.3485,2.1059,0.73015,ppmi,,,F,,0.48802,5.0767,4.5623,0.92841,9.1273,1.7686,0.41378,2.8897,2.9876,43.8601,13.1116,221.8627,4.0212,4.9513,1.7347,2.0547,3.5982,7.5213,2.3451,3.3,0.45973,6.5597,11.2474,13.0669,7.4362,2.6275,5.2431,2.0358,19.8674,6.4638,4.3999,1.35,2.9285,7.319,13.3869,3.937,4.1965,3.6456,1.528,1.4885,4.4761,11.1529,3.0554,2.4673,12.2118,2.6328,2.6424,2.3804,14.0721,2.2815,4.4477,1.1998,15.2617,5.8946,9.1721,3.9068,10.9121,7.7628,8.7185,8.0753,4.0033,1.7482,4.6787,,,PD,0.068808,PD,,PD,0.45368,4.7016,4.3409,0.95003,11.7743,1.8965,0.41554,2.904,3.0895,43.5837,12.9143,223.4908,4.1091,4.5985,1.8098,2.1975,3.7381,7.3912,2.2572,3.4666,0.4237,6.5119,11.4832,8.9787,7.7953,2.422,5.2637,1.9879,20.0253,5.8322,4.109,1.0666,2.8508,8.2291,14.6121,3.0069,3.9172,3.8152,1.673,1.5046,4.275,11.233,2.9182,2.4837,10.5071,2.3142,2.3639,2.4598,12.9229,2.0278,4.2715,1.1712,15.5363,5.5638,8.5804,4.3733,10.6845,7.8384,8.5029,8.8301,3.9901,1.6484,4.5134,,,,,,,,,,,,,,,59,,,
-3530,1.0556,1.851,,60-69y,Other,,,19.0968,5.5032,2.7324,2.4981,1.107,ppmi,,,M,,0.54624,5.5507,4.1976,0.88177,10.8544,1.7537,0.45181,3.3652,3.0933,49.7641,16.017,220.4425,4.5396,4.777,1.8098,1.9479,3.5643,8.2956,2.0199,3.3475,0.44353,7.0304,11.8807,16.5331,8.2521,2.7242,5.8238,1.933,19.8383,6.4606,4.0355,1.3324,2.7598,8.0936,15.1665,3.6909,4.7057,3.4949,1.6755,1.5097,4.7298,11.4448,3.4232,2.3617,13.3929,2.5765,2.7958,2.3628,14.8953,2.299,4.2923,1.3568,16.231,6.0034,9.632,3.431,10.8467,8.245,8.7259,8.5747,3.8017,1.6908,4.9419,,,PD,0.098476,PD,,PD,0.49852,5.0106,4.0162,0.93783,11.5988,2.0299,0.44261,3.294,3.3146,50.0882,15.6444,228.6776,4.3957,5.1998,1.8682,2.0772,4.086,8.4039,2.2446,3.6774,0.68307,6.8993,12.5702,13.0616,8.4633,2.4311,5.5108,2.0244,21.7246,5.2928,4.1351,1.1535,2.7468,9.0638,15.0641,2.8083,4.4581,3.9424,1.6249,1.5245,4.3703,11.9797,3.2031,2.3331,12.4924,2.3234,2.4971,2.0655,15.3536,1.973,4.2313,1.3354,15.2992,6.1619,9.5786,4.2506,10.639,8.0701,8.3826,8.3008,3.6782,1.5487,4.8418,,,,,,,,,,,,,,,65,,,
-3532,1.2039,1.7268,,60-69y,Other,,,17.0084,4.2121,2.6856,2.1426,1.002,ppmi,,,M,,0.37312,4.7111,4.1526,0.9278,8.6059,1.5166,0.37969,3.444,2.6649,46.2479,14.2083,203.2427,3.9502,4.5087,1.8551,1.9191,3.5289,7.1725,2.2364,3.3608,0.37997,5.8997,10.8254,11.3099,7.4016,2.3243,4.3858,1.8627,18.1432,5.559,4.0441,1.2005,2.4609,6.8962,12.7416,3.2593,4.2175,3.0914,1.5567,1.3286,4.1863,10.06,3.3106,2.274,11.4557,2.4525,2.5542,2.2476,12.7635,2.0716,3.6927,1.1452,15.0596,5.6891,8.843,3.3741,9.9992,6.911,7.7302,7.6349,3.6341,1.5669,4.48,,,PD,0.069688,PD,,PD,0.33565,4.0665,3.9268,0.88188,10.4213,1.7684,0.37781,3.1259,2.9101,46.0022,13.9051,210.219,4.0227,4.3569,1.6735,1.8707,3.9008,7.1979,2.2017,3.4357,0.34756,6.3069,10.3678,10.3281,7.774,2.121,4.3899,1.9474,18.7542,5.1845,3.896,0.83678,2.4023,8.6452,13.2122,2.7776,4.2341,3.5817,1.485,1.3622,3.9387,10.1291,2.7162,2.3769,9.7116,2.7468,2.1534,2.2462,12.6841,2.2391,3.5798,1.1716,15.3414,5.8968,8.8374,4.063,10.0153,8.2088,7.3759,7.18,3.4699,1.7335,4.2373,,,,,,,,,,,,,,,62,,,
-3536,0.96039,2.2813,,60-69y,Other,,,19.6048,4.6495,2.5633,2.2427,1.1237,ppmi,,,M,,0.45623,4.6442,4.5057,0.96488,9.6112,1.4455,0.4009,2.7641,3.0751,46.9649,15.8679,217.1531,3.7339,4.6714,1.8422,1.943,3.2452,7.2446,2.0921,3.4022,0.41577,7.0603,11.0833,14.2452,7.3353,2.3311,5.121,1.684,17.4946,6.2311,3.8965,0.96104,2.7944,6.6453,13.6634,3.5265,4.4668,3.2327,1.6524,1.5182,4.3526,10.6178,3.3092,2.2644,11.4037,2.2018,2.5597,2.1606,12.75,1.8961,4.3426,1.1818,13.2957,5.2128,9.0075,4.0065,10.9281,7.3997,8.5121,7.8102,3.7845,1.4953,5.0324,,,PD,0.075212,PD,,PD,0.4014,4.25,4.2252,0.96176,10.4619,1.5813,0.38341,2.8749,3.3117,46.3833,15.3379,220.2352,3.8205,4.6921,1.8197,2.0012,3.5342,7.5376,2.1461,3.623,0.5372,6.4873,12.1433,13.4221,7.5911,2.1499,4.7741,1.6959,16.6214,5.0117,3.7144,0.97531,2.3525,7.8513,14.4716,3.1482,4.0288,3.2502,1.6245,1.5415,4.1156,10.3983,2.9709,2.2577,10.8332,1.9971,2.3624,1.9606,12.5039,1.6766,4.1865,1.0871,15.1723,5.5976,8.9046,4.5382,10.4615,7.4024,8.1274,8.0364,3.4018,1.4102,4.9502,,,,,,,,,,,,,,,60,,,
-3540,0.87336,1.3613,,60-69y,Other,,,19.5901,4.9262,2.9121,2.202,1.2683,ppmi,,,M,,0.42394,4.3965,4.4918,0.91503,8.3403,1.6749,0.37981,3.2325,2.8501,47.3053,14.8837,213.4314,4.1099,4.5785,1.8132,1.9479,3.5933,7.6418,2.2419,3.2309,0.55318,6.751,11.0297,17.7132,8.1928,2.5139,5.0003,1.7897,18.1506,6.3243,4.3221,1.2018,2.8321,6.8168,13.2867,3.7125,4.6535,3.1446,1.6224,1.3919,5.0573,11.3638,3.3422,2.3063,11.2016,2.698,2.774,2.2184,13.4865,2.3176,4.1407,1.1934,14.7364,5.4101,8.3518,3.6216,10.0499,7.2015,8.6124,7.6996,4.2136,1.6904,4.7449,,,PD,0.064116,PD,,PD,0.39918,4.2982,4.1028,0.9475,9.8208,1.9696,0.3733,3.5761,2.96,47.7574,14.588,218.6446,4.0293,4.9714,1.806,2.0788,3.9052,7.8283,2.2056,3.4453,0.3644,6.4822,11.1698,16.6122,8.1687,2.3835,4.6125,1.8404,17.6404,4.919,4.1923,0.94918,2.626,7.672,13.9264,2.9287,4.5337,3.7894,1.5306,1.3944,4.4046,11.0417,3.142,2.1985,10.5645,2.0905,2.5705,1.9926,13.1308,1.8993,3.9637,1.1141,14.2612,5.2342,8.1562,4.0765,10.8235,7.8779,8.2225,8.0395,3.9219,1.4948,4.624,,,,,,,,,,,,,,,64,,,
-3541,1.0814,2.0726,,60-69y,Other,,,21.0475,5.7043,3.0545,2.4515,1.1609,ppmi,,,M,,0.52885,6.371,5.1024,1.0598,12.0909,2.149,0.48885,5.5892,3.3994,54.2343,16.1197,271.4324,5.0646,6.1455,2.0408,2.569,4.7079,8.6749,2.6825,3.8009,0.43249,8.9474,13.3147,13.4483,10.1214,3.2383,6.0318,2.4552,23.7013,7.9356,5.0464,1.6832,4.3121,9.6282,17.2965,4.8046,5.7993,4.0612,2.0125,1.5771,6.2321,14.838,3.7511,2.7778,15.4631,2.9659,3.0822,2.733,16.8306,2.2424,4.6623,1.4967,17.9396,7.6643,10.4078,4.8137,13.6137,8.303,8.7945,9.4924,4.9556,1.9649,5.1737,,,,0.090264,CN,,HC,0.4617,5.0154,5.0423,1.0886,11.9367,2.4476,0.47035,5.5832,3.5946,53.1606,15.99,281.5274,5.4121,6.3711,2.2118,2.8541,5.0551,9.6025,2.7255,4.0192,0.54137,8.6277,13.9472,10.5845,10.4541,3.2875,5.5001,2.5617,24.65,6.1554,4.9423,1.4406,3.6767,12.0931,17.7329,4.1344,5.4089,4.8982,2.3272,1.6112,5.7327,14.4767,3.6964,2.6474,14.52,2.8563,3.1731,2.4927,15.0721,2.3034,4.4208,1.4549,16.9429,8.2411,10.2601,5.7349,13.2625,8.5857,8.3091,9.667,4.8843,1.7768,4.9793,,,,,,,,,,,,,,,66,,,
-3542,0.70574,1.0511,,60-69y,Other,,,15.6242,4.1246,2.2975,1.8889,0.88689,ppmi,,,F,,0.40205,4.3262,4.206,0.80008,8.9534,1.3906,0.37308,3.0714,2.3352,40.004,11.9013,179.5146,3.6322,5.0015,1.5396,1.7182,3.5934,6.5195,1.9189,2.9557,0.31865,5.4062,9.9633,8.8574,6.759,2.2213,4.5586,1.7496,17.1999,5.5912,3.7161,1.0905,2.6407,6.2854,12.2708,3.1167,3.5113,3.0709,1.4023,1.2377,3.9095,10.2063,2.8642,2.2401,10.5409,1.9988,2.5176,2.2266,12.5264,1.6688,4.1625,1.0814,14.3766,4.8144,7.6728,3.4176,9.758,6.8302,7.0947,7.9982,3.436,1.457,3.9623,,,PD,0.059568,PD,,PD,0.31545,3.8582,4.1535,0.82555,9.9558,1.5272,0.35202,2.9241,2.3172,40.021,12.3021,181.9477,3.646,4.2729,1.6113,1.8484,3.4258,6.7723,1.8,3.1293,0.38214,6.6731,10.3262,6.7993,7.3483,2.0143,4.5097,1.4839,16.5627,5.3641,3.4268,0.97487,2.7409,6.8347,13.2654,2.7636,3.7583,3.5441,1.3644,1.1594,3.8847,10.3409,2.6947,2.174,9.1753,2.1211,2.2641,2.0858,12.3367,1.728,3.9785,1.0025,14.0095,4.8396,7.0832,4.0505,9.5791,6.8393,6.8372,7.9546,3.2901,1.4777,3.8073,,,,,,,,,,,,,,,67,,,
-3544,1.3296,2.2486,,70-79y,Other,,,18.9543,4.432,2.511,2.2569,1.5413,ppmi,,,M,,0.42866,4.5804,4.4965,0.87603,9.0652,1.4572,0.3534,4.1914,2.9928,46.7065,14.0705,219.3113,4.1192,5.0751,1.6472,1.9916,3.3798,7.5781,2.1499,3.0969,0.51608,7.4718,11.4636,19.3905,7.8513,2.3222,4.5445,1.7837,18.2151,6.3923,3.8828,0.93472,2.637,6.4767,14.1071,4.2282,4.8776,2.7465,1.5232,1.4008,4.8413,11.4041,3.392,2.5296,10.6449,2.4527,2.3003,2.3976,13.823,2.1102,4.0013,1.2055,13.3548,5.0241,7.5846,3.8796,10.4945,6.8904,8.2285,6.9193,3.4331,1.9582,4.8901,,,,0.068971,CN,,HC,0.38261,4.5472,4.0562,0.86942,9.2531,1.6037,0.35126,3.9501,3.0036,46.0088,13.6208,222.6204,3.7464,5.187,1.7131,1.8175,3.8412,7.2914,2.1631,3.2709,0.64705,7.393,10.9151,17.6554,9.1769,2.0361,4.6985,1.8327,18.4726,5.1294,3.5649,0.98328,2.3965,7.7942,13.6775,3.8802,4.7136,3.1089,1.4119,1.4631,4.3114,11.1252,3.1962,2.4634,10.4112,2.1494,1.8888,2.1451,12.4215,1.9638,3.899,1.1418,14.2941,4.9826,8.1713,4.44,10.105,7.2896,7.6114,7.4445,3.178,1.6645,4.7042,,,,,,,,,,,,,,,70,,,
-3551,1.3934,1.704,,60-69y,Other,,,18.7615,5.2835,2.9892,2.3822,1.4081,ppmi,,,M,,0.45792,4.6983,4.626,0.87845,7.8555,1.6579,0.44703,2.9065,3.1829,48.4176,17.2623,226.5669,4.2591,4.5899,1.7805,2.0475,3.7027,7.5261,2.2153,3.1654,0.59496,6.7094,11.9351,18.3056,8.0077,2.4935,4.3885,1.8823,20.1372,5.7981,4.1956,1.3828,2.7861,7.4976,14.425,3.3396,4.5435,3.6138,1.5928,1.5315,4.3512,10.7114,3.4201,2.5484,12.7285,2.3603,2.5245,2.4331,14.949,2.207,4.6657,1.3319,14.9523,5.8756,8.5467,3.5135,9.5536,7.4823,8.7991,8.0728,4.2491,1.6797,4.8801,,,,0.078105,CN,,HC,0.42701,3.9649,4.5257,0.91765,10.4526,1.8286,0.4375,3.2022,3.2408,48.2207,16.8572,232.5632,4.1625,4.9737,1.9465,2.0737,3.82,7.9405,2.1629,3.4005,0.54101,6.8391,12.2981,16.0427,8.4346,2.3613,4.8684,1.9713,20.0424,5.2369,3.8391,1.075,2.7387,8.4836,14.3794,3.261,4.5906,3.6537,1.5827,1.5225,3.8281,10.2148,3.127,2.6844,11.1883,2.5453,2.3564,2.35,13.8573,2.025,4.565,1.222,15.745,5.6019,7.8975,4.2785,10.6103,7.4227,8.5821,8.3609,3.6723,1.6393,4.778,,,,,,,,,,,,,,,64,,,
-3552,1.8219,2.2223,,60-69y,Other,,,21.2522,5.5552,2.8469,2.5022,1.5773,ppmi,,,M,,0.44283,4.2934,4.2976,0.8256,10.1778,1.5644,0.3892,3.2736,3.1253,51.9033,18.9668,246.503,3.9012,3.9231,1.7188,1.9967,3.8528,6.8466,2.2212,3.1969,0.47882,6.4465,10.6638,20.39,7.73,2.3284,4.4777,1.8071,16.9874,6.1248,4.1696,1.2275,2.8181,7.669,14.0026,3.4502,4.244,3.1084,1.5104,1.5934,4.9199,11.3046,3.3841,2.4221,11.7401,2.0618,2.369,2.1818,12.3145,1.5128,4.5596,1.3848,15.3579,5.869,8.7362,3.1428,11.7288,6.717,8.9191,7.76,3.8864,1.296,5.4913,,,PD,0.089035,PD,,PD,0.37914,3.3929,4.1123,0.87042,9.4772,1.7378,0.40806,3.537,3.3108,53.4419,18.8218,251.7199,3.5122,4.722,1.8961,1.9218,4.0493,7.5739,2.1555,3.379,0.58081,6.9428,11.216,17.7287,8.8873,2.1586,4.4005,1.8042,18.1118,5.3663,4.0281,1.1383,2.6543,8.5197,13.5317,3.43,4.9183,3.3599,1.4193,1.5962,4.4593,11.4378,3.1675,2.3208,10.4641,1.8012,2.0889,2.0104,11.8178,1.5779,4.399,1.2878,14.4491,5.8367,7.4361,4.1366,11.3262,6.4799,8.6275,8.389,3.6783,1.2614,5.2737,,,,,,,,,,,,,,,61,,,
-3554,1.4645,2.3307,,70-79y,Other,,,18.1974,4.5811,2.6941,2.1373,1.3908,ppmi,,,M,,0.50178,4.6577,4.5014,0.94066,10.3508,1.5251,0.42134,2.4619,3.5142,47.3319,16.1438,224.9976,3.8067,3.8304,1.8014,1.9471,3.6131,7.7174,2.0038,3.1924,0.63261,6.3809,10.6581,16.2368,7.1295,2.3127,4.6997,1.7914,18.3948,6.1805,4.0769,1.0279,2.5559,7.1189,12.6064,3.031,4.1542,3.4581,1.3976,1.6046,4.3571,10.7274,3.4274,2.4454,12.2939,2.0849,2.5036,2.3237,12.7851,1.9243,4.7545,1.2736,15.1636,5.4111,9.0532,3.0603,11.1051,7.5718,8.2987,7.473,3.6862,1.612,4.8378,,,,0.075861,CN,,HC,0.4484,4.437,4.3275,0.93703,10.7456,1.7014,0.42041,2.7066,3.3685,48.4278,15.5829,229.4329,3.8383,4.5582,1.9049,1.8059,3.4856,7.7966,2.0175,3.5701,0.5599,7.0231,11.6157,13.1581,8.0191,2.2875,4.5743,1.6975,18.0452,6.2438,3.8476,1.3292,2.7103,7.6043,14.4773,3.0735,4.4661,3.1035,1.5876,1.5327,3.9021,11.0711,3.2915,2.4322,11.2582,2.1498,2.4866,2.0762,13.0261,1.7699,4.5149,1.1472,14.4252,5.3989,7.6261,4.1373,10.5329,7.0813,8.3292,8.0392,3.2485,1.3457,4.6216,,,,,,,,,,,,,,,75,,,
-3555,1.0032,2.6091,,-50y,Other,,,22.8601,5.597,3.0191,2.6147,1.1148,ppmi,,,M,,0.53285,5.1895,5.3758,1.052,10.7706,1.7898,0.45238,3.7856,3.2757,53.3483,19.5429,297.9824,4.5717,5.5824,2.0223,2.651,4.1634,8.3341,2.5634,3.6454,0.70886,8.083,13.599,12.374,8.7618,2.7223,5.3424,2.1538,23.4988,7.992,4.538,1.4303,2.9282,8.1043,16.567,4.6809,5.1823,3.8468,1.872,1.9387,4.8706,11.7491,3.6979,2.5723,13.7249,2.7398,2.717,2.5126,15.5459,2.4916,5.5703,1.4304,16.8962,6.1185,10.0054,4.375,11.6869,7.7537,9.7483,9.2009,4.4208,1.9363,5.9943,,,,0.061726,CN,,HC,0.4815,4.3759,5.1736,1.0114,11.3682,1.996,0.49302,3.9482,3.4813,53.474,18.8899,300.4381,4.6408,5.5028,2.1178,2.4167,4.4664,8.6306,2.6348,3.7992,0.75794,9.1625,14.2239,10.5729,9.3042,2.5429,5.0951,2.2452,21.2607,7.3045,4.4737,1.348,3.0018,9.5391,16.2276,3.8447,4.9659,3.8116,1.7672,1.8596,4.5095,11.8352,3.4743,2.7018,12.3081,2.4412,2.6824,2.4161,15.9888,2.2314,5.5729,1.3391,17.513,6.2049,8.8425,5.2054,11.81,8.4217,9.4387,9.5684,3.9184,1.8815,5.7718,,,,,,,,,,,,,,,40,,,
-3556,1.1789,1.9845,,60-69y,Other,,,19.3121,5.8292,2.6056,2.4488,1.1668,ppmi,,,M,,0.45482,4.4978,4.339,0.96831,9.955,1.4918,0.40339,3.8181,3.1663,47.7546,16.2902,220.5529,3.5707,4.5748,1.7814,2.0153,3.6342,7.1028,2.0834,3.3801,0.46076,6.7049,10.9179,11.6308,8.4577,2.4245,5.0587,1.7648,19.7777,7.115,3.887,1.2872,2.8133,6.9903,13.7936,3.8357,4.5228,3.252,1.4553,1.3694,4.8394,10.546,3.3541,2.2398,11.8435,2.2782,2.3947,2.1399,12.5509,1.8362,4.2901,1.2566,15.4684,5.4248,8.4045,3.9817,12.678,7.3656,8.2592,7.8582,3.9963,1.4741,4.7702,,,PD,0.070379,PD,,PD,0.43301,3.8343,4.3118,0.94369,10.0297,1.7118,0.42201,3.6662,3.2848,48.5992,15.6777,224.3173,3.5184,4.8925,1.7067,2.0992,3.6894,7.4901,2.0075,3.5062,0.50729,7.2332,12.1011,11.0245,8.776,2.1113,4.9453,1.7415,19.032,5.5749,3.8799,1.2877,2.7659,7.995,14.0306,3.3625,4.7577,3.2207,1.5884,1.3402,4.4166,10.9307,2.9831,2.1064,10.414,1.9581,2.3769,1.9345,12.0032,1.6746,4.212,1.1722,15.8228,5.8652,7.3861,5.3137,11.5786,7.5105,7.8955,7.8324,3.504,1.3226,4.5093,,,,,,,,,,,,,,,66,,,
-3557,1.3271,2.1396,,50-59y,Other,,,20.8932,5.0553,2.8661,2.391,1.6219,ppmi,,,M,,0.51426,5.1296,4.8895,0.85171,9.1817,1.6861,0.39942,3.8928,3.7091,49.2933,18.2459,252.1538,3.9644,5.3881,1.6221,2.2538,4.0461,7.6,2.2696,3.1473,0.50575,6.9096,10.8473,24.7859,8.4854,2.6547,5.007,2.0672,20.4859,6.8005,4.2725,1.2262,2.7863,7.9609,12.5706,4.2002,4.6458,3.7225,1.804,1.7901,4.4577,10.5102,3.3826,2.6042,11.43,2.4265,2.4981,2.4705,13.1385,2.0319,4.5576,1.384,14.5772,5.5231,8.4997,4.1598,10.3461,7.3033,9.493,7.625,4.9396,1.7808,5.3432,,,PD,0.07743,PD,,PD,0.49664,4.7604,4.6186,0.87128,10.9182,1.7276,0.42455,3.8602,3.8356,50.0954,18.043,257.4019,3.5573,5.581,1.6802,2.1559,4.4501,7.1932,2.2278,3.3449,0.48477,7.0872,11.2066,19.827,8.6847,2.473,5.0066,2.0214,20.1943,5.6697,3.8444,1.1292,2.9175,8.6554,13.4721,3.3055,4.5483,3.8772,1.7685,1.6942,4.0011,10.0952,2.9327,2.5449,10.6415,1.814,2.5948,2.0841,13.3144,1.9132,4.6866,1.3257,15.4765,5.572,7.5885,4.7989,9.8785,7.1491,8.9738,7.6769,3.6317,1.4213,4.987,,,,,,,,,,,,,,,59,,,
-3558,2.2084,2.0953,,60-69y,Other,,,19.5484,5.1957,2.8214,2.254,1.7119,ppmi,,,M,,0.47208,4.687,4.08,0.91977,9.5394,1.6394,0.42236,3.0441,3.3241,48.2514,16.555,243.4134,3.8492,4.4042,1.8186,1.7503,3.5649,7.3907,2.1227,3.3096,0.47238,6.7515,11.754,17.8429,8.1328,2.405,5.3264,1.8726,18.5004,6.8718,4.1206,1.1027,2.7119,7.4986,15.8244,3.8041,4.4043,2.8721,1.3418,1.6631,5.1837,11.746,3.5412,2.2512,12.4413,2.3826,2.4914,2.1021,12.6924,1.9242,4.6558,1.3007,15.6145,5.8673,9.596,3.492,11.5452,7.6821,8.6898,8.0662,3.824,1.4306,5.1384,,,PD,0.093999,PD,,PD,0.43164,4.111,3.9684,0.9415,11.1391,1.7773,0.43396,3.4082,3.3287,49.4765,16.1845,245.5952,4.0086,4.6249,1.8352,1.9337,3.9238,7.767,2.0855,3.6253,0.64264,6.9413,11.844,16.5057,8.7482,2.3067,4.9728,1.7954,18.6848,4.8456,3.8396,1.043,2.9714,8.195,15.3554,2.8443,4.591,3.4512,1.5148,1.6423,4.6658,11.9442,3.3765,2.2577,10.6771,2.1396,2.339,2.0269,12.9181,2,4.6877,1.2735,14.5847,5.7986,8.4776,4.187,11.8564,8.1575,8.5244,7.7984,3.5143,1.5516,4.8782,,,,,,,,,,,,,,,63,,,
-3559,1.3358,1.8989,,-50y,Other,,,20.9616,5.6922,3.1112,2.661,1.4891,ppmi,,,M,,0.41592,5.1244,5.0049,1.0091,9.6774,1.6022,0.41831,3.6019,2.4551,56.9408,18.1045,215.9299,4.4444,5.4946,1.9715,2.5978,3.9067,7.9162,2.2992,3.4607,0.50957,7.3022,12.9103,16.9679,8.2773,2.5785,5.4993,2.1235,21.9943,6.9934,4.2004,1.4633,3.0893,7.6196,16.4783,4.0458,4.8951,4.0518,1.8773,1.3443,5.7506,13.4269,3.5254,2.5466,12.1571,2.8707,2.592,2.6096,13.5381,2.2263,3.2661,1.3861,15.6304,5.8298,9.6146,4.1452,11.926,8.3185,8.4091,8.9384,4.9818,1.8406,5.1206,,,PD,0.08728,PD,,PD,0.46962,4.7912,4.6235,1.0128,11.9743,1.8988,0.4487,3.6681,3.9041,57.7783,18.1046,224.6397,4.474,5.2242,2.0324,2.3252,4.0913,8.3313,2.4366,3.5464,0.60047,7.239,13.1959,15.2813,8.6057,2.4298,5.4531,2.1154,21.9667,5.3421,4.1707,1.0771,2.6694,8.2796,16.3208,3.3892,4.753,3.628,1.8005,1.6305,4.9084,13.0923,3.1366,2.5445,11.2655,2.3681,2.444,2.2547,14.3807,1.9768,4.9356,1.3379,15.8701,5.9106,9.6819,4.6545,12.3069,8.1376,8.8363,8.8115,4.0107,1.6841,5.0657,,,,,,,,,,,,,,,38,,,
-3563,1.9383,1.7888,,60-69y,Other,,,17.1692,4.469,2.6963,2.3126,1.3372,ppmi,,,M,,0.47258,5.412,4.4508,0.91243,10.5331,1.7627,0.42454,3.376,3.6528,47.0894,14.8108,239.2055,4.3803,4.645,1.7471,2.0349,3.9847,8.2241,2.318,3.3418,0.52501,6.9593,12.0785,26.5474,7.6303,2.5288,5.2783,2.2511,22.3793,6.3263,4.3233,1.2207,2.7494,8.2499,14.9119,3.5691,4.7031,3.1846,1.5465,1.5105,4.3622,10.633,3.2193,2.271,12.1738,2.1601,2.6227,2.3841,14.8675,1.8421,4.3894,1.3571,18.0261,6.44,9.0467,3.5797,11.5779,7.9996,8.7962,8.3687,3.7692,1.4775,4.7923,,,,0.075456,CN,,HC,0.44431,5.378,4.4732,0.91015,11.1058,2.0306,0.42151,3.2732,3.6213,47.1373,14.3425,240.9659,4.0802,4.818,1.8242,2.1178,4.2544,8.737,2.2662,3.6158,0.65103,6.513,11.8025,20.6053,8.6884,2.5554,5.2447,2.1291,22.7969,5.2413,4.1672,1.077,2.7276,8.9388,14.0473,2.8028,4.2114,3.6764,1.8269,1.5279,4.3252,10.9491,3.2278,2.3679,10.7344,2.077,2.6895,2.0958,13.8172,1.8042,4.3026,1.2986,16.9114,6.0117,7.8757,4.1231,11.982,8.0658,8.6292,8.4903,4.2401,1.4458,4.6528,,,,,,,,,,,,,,,60,,,
-3564,1.93,2.2173,,60-69y,Other,,,20.4721,5.1448,2.9454,2.2423,1.6818,ppmi,,,M,,0.45877,5.1709,4.6954,0.90334,9.628,1.7867,0.4117,3.0709,3.3829,50.358,17.2106,241.4314,4.1756,4.7447,1.7909,1.8924,3.928,7.2066,2.1606,3.2148,0.56122,6.9887,10.0751,26.4689,7.6451,2.7698,5.0227,2.1276,20.2041,6.6212,4.2656,1.2626,2.9455,7.6579,12.7134,4.0272,4.4714,3.5634,1.6611,1.5872,4.9328,11.9653,3.4597,2.6649,12.2458,2.6601,2.9607,2.6214,14.6115,2.0239,4.4967,1.2819,14.4544,5.8706,8.1006,3.4764,11.6174,6.9606,9.0621,7.0291,4.1366,1.9135,5.0518,,,PD,0.083089,PD,,PD,0.40686,4.7816,4.3517,0.8957,10.0627,1.9725,0.41831,3.4827,3.7064,51.9118,16.8212,246.7655,3.7338,5.3942,1.7923,1.9004,4.1986,7.7363,2.2061,3.4701,0.9941,7.6416,11.2433,25.3762,8.1793,2.5527,5.0237,2.1439,19.6179,5.3223,3.9173,1.2422,2.9236,8.2052,13.1758,3.3996,4.5421,3.5719,1.5774,1.5589,4.4332,11.7763,3.125,2.5386,11.141,2.5047,2.6256,2.1108,13.5055,1.9353,4.5017,1.2589,15.1055,5.6938,7.7664,4.1959,11.9015,7.259,9.0693,7.5275,3.8869,1.5303,4.8521,,,,,,,,,,,,,,,69,,,
-3565,1.1896,1.9228,,50-59y,Other,,,19.9779,4.8726,2.8255,2.5185,1.4253,ppmi,,,M,,0.50075,5.3146,5.2477,0.9625,8.996,1.7466,0.43483,4.1448,3.3903,51.7186,18.4109,265.0178,4.9808,5.1984,1.8111,2.2981,4.7086,8.1593,2.3961,3.382,0.48608,7.6576,13.0454,15.5123,8.6504,2.738,5.2159,2.1577,21.4747,6.8456,4.5486,1.2732,2.9134,8.3753,16.9346,4.3501,4.8966,3.3654,1.9072,1.6736,4.9898,11.7228,3.5756,2.5972,13.3644,2.7841,2.8042,2.3306,14.3473,2.3327,5.1705,1.3982,16.8858,6.2769,9.658,4.2435,11.3614,8.2633,9.487,8.505,3.8984,1.7227,5.2332,,,,0.07846,CN,,HC,0.43335,4.3585,4.6929,0.94787,11.6857,1.933,0.42928,4.1733,3.6643,51.8517,17.6468,270.9517,4.4392,5.6516,1.8465,2.1447,4.629,8.1297,2.3573,3.6775,0.55314,8.1195,13.2756,14.6036,9.3616,2.5041,5.3325,2.0606,20.5369,6.3583,4.0758,1.295,2.9295,9.1687,17.2685,3.6557,4.7798,3.7358,1.7991,1.6342,4.5259,11.9114,3.37,2.6279,11.4723,2.9239,2.4572,2.1808,14.4195,2.3611,4.9046,1.2294,17.7705,6.2722,9.1818,4.6125,11.0285,8.4551,9.3315,8.8052,3.8583,1.6796,5.0159,,,,,,,,,,,,,,,54,,,
-3567,0.65342,1.3755,,60-69y,Other,,,19.2598,4.6953,2.7777,2.1871,0.76095,ppmi,,,F,,0.5252,4.6768,4.5575,0.94298,10.5756,1.7338,0.43436,3.4475,3.0362,47.4897,15.5054,231.7317,4.2885,5.3604,1.7161,2.0986,3.8257,7.5246,2.1905,3.3246,0.38818,7.2581,12.2891,6.5494,7.9622,2.6747,4.8423,1.9942,19.8664,6.7925,4.2495,1.2229,2.7439,7.0259,15.1466,3.7249,4.5738,3.4621,1.7803,1.4431,5.2703,13.2378,3.2545,2.5984,13.9291,2.4566,2.7619,2.3947,13.8792,2.2006,4.6777,1.3621,14.3631,5.9455,9.9653,4.3412,11.2459,7.5782,8.7204,8.2237,4.2043,1.8468,4.6733,,,PD,0.073816,PD,,PD,0.44607,4.0517,4.284,0.94348,12.6243,1.9905,0.44217,3.6402,3.2049,47.9889,15.2785,234.1433,4.0964,5.9973,1.8026,2.0084,3.6055,7.6271,2.2401,3.5818,0.43709,7.4472,12.5627,7.0764,9.1029,2.4844,4.8836,1.7972,19.4375,6.3247,4.1465,0.97753,2.4735,7.3112,16.1151,3.2255,4.7896,3.5573,1.6214,1.4018,4.8754,13.127,3.0303,2.4352,11.4894,2.4688,2.4073,2.224,13.8051,2.1098,4.4815,1.2701,14.9088,5.2295,8.4942,5.2626,10.9746,7.2768,8.7012,8.9967,3.8847,1.6892,4.5036,,,,,,,,,,,,,,,66,,,
-3569,0.89931,1.9658,,-50y,Other,,,17.6535,4.7137,2.263,2.2132,0.98679,ppmi,,,F,,0.43804,4.1123,3.7415,0.77414,9.0399,1.3752,0.37793,2.5858,2.866,39.9187,15.3096,218.7631,3.3436,4.2147,1.4366,1.7865,3.1002,6.7145,1.8328,2.7332,0.40775,5.6347,10.1474,8.2337,6.7574,2.1567,4.4246,1.6013,17.0792,5.7381,3.4019,0.95574,2.6998,5.9594,12.6147,2.6422,3.7299,3.0384,1.3492,1.432,4.0454,9.7285,2.6742,2.054,13.1258,1.9358,2.2221,2.0288,11.0168,1.5381,4.2615,1.0928,12.596,4.705,8.7339,3.4637,10.9303,6.4601,8.0047,6.7088,3.4803,1.2481,4.5939,,,,0.06711,CN,,HC,0.40562,3.3529,3.9058,0.771,10.3897,1.4859,0.39916,2.7952,2.9758,40.5856,14.3308,222.0041,3.269,4.1912,1.5362,1.8396,3.1275,6.8327,1.7587,2.9498,0.49108,6.0281,10.0983,7.8324,7.0106,2.0873,3.9284,1.4761,16.1745,5.1663,3.2191,1.0376,2.4339,6.5667,12.6124,2.7591,3.7001,3.1306,1.4505,1.4459,3.7261,9.653,2.5004,1.9664,11.7279,2.1591,2.2646,1.8004,11.8018,1.6666,4.3284,1.0112,12.2568,4.726,9.3024,4.1265,9.671,6.7383,7.6994,6.9612,3.0776,1.2449,4.3108,,,,,,,,,,,,,,,40,,,
-3570,1.9554,2.0406,,70-79y,Other,,,23.2875,5.7465,3.0137,2.5365,1.4296,ppmi,,,M,,0.50632,5.2873,4.8421,1.0338,10.8384,1.6934,0.44419,4.4256,3.9543,55.4584,19.7071,265.8252,5.2363,5.1557,1.9831,2.3102,3.9552,8.5177,2.3105,3.756,0.87769,7.5033,12.4747,24.9434,9.8279,2.6196,5.5864,2.1134,22.6021,7.49,4.4787,1.2572,3.2533,8.35,15.2499,4.4815,5.305,3.6173,1.6931,1.779,5.5558,13.073,4.0712,3.0092,13.1389,3.0907,2.7981,2.6692,15.0133,2.2297,4.9149,1.4143,16.3255,6.0593,10.1522,4.428,11.9509,7.7488,9.7018,8.226,4.1192,1.9397,5.7497,,,,0.099469,CN,,HC,0.47203,4.2283,4.6339,1.0375,11.3564,1.9797,0.4641,4.3288,4.1761,53.3894,18.7918,268.5552,4.8907,5.9402,2.0548,2.2204,4.4845,8.4074,2.3317,4.0431,0.91379,8.3253,12.8876,19.6195,9.7555,2.5658,5.298,2.1938,20.2779,6.2212,4.4183,1.3372,3.5955,9.7826,16.3314,4.086,5.0125,4.0918,1.6692,1.6997,4.8576,12.8166,3.7392,2.7181,11.2143,2.9451,2.7586,2.3211,14.5599,2.4157,4.6963,1.3741,16.2228,6.8009,9.2034,5.3196,12.2,8.1472,9.486,8.9974,3.9252,1.8557,5.5535,,,,,,,,,,,,,,,72,,,
-3571,1.0862,2.2628,,-50y,Other,,,21.5449,5.1828,2.9326,2.4405,1.4665,ppmi,,,M,,0.53197,5.1713,4.6472,1.047,10.6484,1.7007,0.42386,3.666,3.5741,55.6389,19.2225,253.6116,4.6281,5.1619,1.9546,2.1322,4.0071,8.0211,2.3305,3.6861,0.5267,8.0451,13.1493,12.3005,8.4579,2.5292,5.4544,2.1938,19.4359,7.1038,4.4439,1.2492,3.0703,8.0855,16.559,4.2038,4.991,4.0211,1.6251,1.7498,5.2885,12.2357,3.5568,2.919,12.33,3.1164,2.6373,2.8665,15.6269,2.6834,4.8518,1.3135,15.012,6.1401,10.4727,4.0837,11.7812,8.5931,9.843,8.7841,4.8188,2.1881,5.5457,,,,0.082048,CN,,HC,0.51046,4.4811,4.3134,1.0119,12.5285,1.7913,0.45584,3.7597,3.7377,56.521,18.9368,256.5773,4.6987,5.4735,1.9008,2.0773,4.3924,8.5935,2.3655,3.8951,0.56839,8.0589,12.9351,12.1357,9.3376,2.3414,5.2084,2.0448,20.6259,6.0797,4.0532,1.443,3.2686,9.1585,16.8491,3.7294,5.0622,3.6731,1.6779,1.7248,4.8342,12.2678,3.3767,2.7888,11.0327,2.8386,2.6355,2.4121,14.5334,2.2378,4.7439,1.2438,14.7948,6.4239,9.0858,5.0742,12.0784,8.3504,9.663,8.3919,3.5561,1.6549,5.2538,,,,,,,,,,,,,,,46,,,
-3572,0.75171,1.7224,,50-59y,Other,,,16.5764,4.5252,2.5668,2.0359,0.72326,ppmi,,,F,,0.40044,4.5609,4.2179,0.87701,8.1475,1.5147,0.36544,2.8114,2.6878,44.8512,14.8391,199.4962,4.1084,4.2716,1.7081,2.0992,3.2844,6.8221,1.9467,3.1351,0.39452,6.0295,9.5558,7.5044,7.1535,2.3397,4.8547,1.7689,17.3499,6.3242,3.7292,0.93246,2.3483,6.8186,11.6756,3.3014,4.0805,2.8965,1.5441,1.2059,3.9496,9.8844,3.0248,2.2291,10.7833,2.158,2.354,2.3473,12.5553,1.8483,4.2251,1.1173,13.9031,5.4287,8.1987,3.4484,9.273,6.9669,6.8686,7.6715,3.7411,1.6284,4.0902,,,,0.063056,CN,,HC,0.35627,3.8525,4.0004,0.87759,9.5355,1.6169,0.36631,3.0327,2.9851,44.1275,14.1117,206.1076,3.9599,4.5201,1.7836,2.0654,3.4138,7.3075,1.8916,3.3402,0.42479,6.1517,10.62,6.0275,7.6191,2.1296,4.3302,1.68,16.0961,4.6583,3.4264,0.95073,2.3104,7.7572,12.8082,2.8567,3.9995,3.117,1.6703,1.196,3.5955,10.059,2.9866,2.1896,9.6758,1.9816,2.2225,2.0427,12.3271,1.6721,4.1502,1.0414,14.4681,5.4258,7.5289,3.6829,9.4534,7.1262,6.7523,7.6141,3.3959,1.4554,3.9376,,,,,,,,,,,,,,,58,,,
-3574,1.4659,2.1454,,60-69y,Other,,,19.9744,4.8098,2.7403,2.2361,1.1638,ppmi,,,F,,0.41787,4.182,4.257,0.8922,9.181,1.3222,0.35938,3.553,3.0318,45.7079,16.0802,202.2714,4.0231,4.6323,1.7184,1.9452,3.3105,6.8614,2.0694,3.2573,0.58869,6.6045,10.4424,14.2178,7.6447,2.0457,4.4897,1.6103,18.837,6.2783,3.738,1.2439,2.7465,6.1694,13.2731,3.4469,4.3314,3.4295,1.3782,1.3923,3.8166,9.7427,3.1372,2.3774,11.9333,2.1513,2.3943,2.1567,13.4398,1.8406,3.7988,1.0756,14.6444,5.0003,9.17,3.6816,10.9704,7.1106,8.3538,7.271,3.2823,1.4017,4.7962,,,PD,0.075604,PD,,PD,0.39797,3.713,4.0242,0.92986,10.3638,1.54,0.38081,3.5148,3.1988,46.1646,15.6393,206.5786,3.7752,4.5808,1.775,2.0405,3.5448,7.1328,1.9949,3.4682,0.69817,6.7857,10.9921,12.188,8.1877,1.9677,4.2598,1.6327,17.1749,5.208,3.5755,0.99979,2.7622,6.5717,13.5869,3.1415,4.0832,3.8524,1.3344,1.3405,3.6909,10.0854,2.8756,2.2859,10.7738,1.9486,2.2679,1.9588,13.2659,1.5525,3.8783,1.0179,14.9619,5.1826,8.3158,4.4348,10.4828,6.9794,8.023,7.8011,3.2918,1.3163,4.5164,,,,,,,,,,,,,,,65,,,
-3575,1.5973,2.1674,,60-69y,Other,,,20.3173,5.5779,3.1536,2.5783,1.4178,ppmi,,,M,,0.51576,5.176,4.7176,0.90698,10.5721,1.7823,0.43396,3.3301,3.2403,54.8871,19.0966,248.9536,4.3765,4.5422,1.7313,2.3293,4.5204,7.8194,2.3654,3.4025,0.46192,7.1147,11.9059,12.1101,8.2531,2.7632,5.86,2.0346,19.8941,7.1936,4.4057,1.3635,3.3194,7.9569,15.1309,3.979,4.9013,4.1508,1.7899,1.6017,4.867,11.7648,3.5471,2.6441,13.396,2.7959,2.7326,2.5808,14.409,1.9906,4.7491,1.3593,15.9632,5.9386,10.2992,3.3869,11.4601,8.0002,8.8434,8.4407,4.1069,1.7082,4.9784,,,PD,0.072686,PD,,PD,0.4695,4.761,4.5174,0.88294,11.5222,1.9678,0.43845,3.413,3.2765,55.0204,19.0436,253.3648,4.3103,4.9397,1.8287,2.3016,4.754,7.8278,2.4842,3.5726,0.51126,7.6798,12.5761,8.1744,9.0262,2.4684,5.6965,2.0184,18.7228,6.3334,4.1121,1.1578,2.755,9.2764,15.9217,3.5076,4.9024,3.6722,1.6945,1.5485,4.5377,11.7154,3.197,2.6146,12.5635,2.4893,2.3998,2.3426,14.259,2.141,4.6472,1.2523,16.9654,6.2225,9.7742,4.3774,11.8575,8.3491,8.6776,8.1612,3.9854,1.6836,4.7738,,,,,,,,,,,,,,,61,,,
-3577,1.583,2.398,,60-69y,Other,,,22.8376,5.6803,2.9821,2.4778,1.7554,ppmi,,,M,,0.5524,5.1573,4.933,0.97117,9.7576,1.6266,0.46024,3.7785,3.6921,53.4181,18.8009,261.4251,4.4209,4.8419,1.7919,2.0828,4.5593,7.8994,2.3651,3.7088,0.47285,7.7132,11.9753,15.0974,8.7854,2.5582,5.3818,2.0804,21.3273,6.2471,4.8014,1.253,3.0005,7.9298,15.6913,4.3487,4.9824,3.4776,1.7327,1.7227,4.9551,10.8302,3.6046,2.6967,13.584,2.6335,2.9439,2.4085,14.7616,2.0794,5.0477,1.4662,17.7618,6.4449,9.5957,4.3252,10.8615,7.9503,9.4831,8.3102,3.9022,1.7752,5.7157,,,PD,0.094872,PD,,PD,0.46393,4.7868,4.9342,0.96124,11.3572,1.7668,0.48145,3.6436,3.6987,53.9873,18.702,266.0333,4.3724,5.25,1.9111,2.3247,4.2642,8.5129,2.3253,3.8767,0.61656,7.9658,12.9836,13.4563,9.2331,2.395,5.2162,1.9076,20.5383,6.0789,4.1744,1.2371,2.8597,8.4976,14.8737,3.7059,4.9016,3.8742,1.726,1.6843,4.5084,11.4475,3.3372,2.6792,10.7467,2.2317,2.6646,2.3495,15.2323,1.9513,4.9222,1.4026,15.7266,5.9992,7.9698,4.9937,12.5266,7.3678,9.1904,8.1541,4.0383,1.6996,5.4619,,,,,,,,,,,,,,,68,,,
-3584,0.87307,2.4595,,-50y,Other,,,21.3928,5.3608,3.0372,2.7648,0.98474,ppmi,,,M,,0.57052,6.2284,4.8996,1.0173,10.9196,1.9426,0.45716,4.1242,3.52,55.5116,18.7151,298.1655,4.7151,6.2085,2.0646,2.2349,4.6364,8.9966,2.5767,3.6024,0.33647,8.2942,13.8478,8.4832,9.8701,2.8461,5.4948,2.5888,25.2692,7.489,4.7911,1.7623,3.0846,9.4491,17.9073,4.4364,5.8895,3.8814,1.7079,1.7565,5.9069,13.8093,3.9388,2.5572,15.6123,2.6823,2.9721,2.3077,17.86,2.0154,5.2526,1.4466,19.7998,6.931,11.3945,4.888,13.2146,9.2452,9.8546,9.4555,4.363,1.6001,5.535,,,PD,0.081325,PD,,PD,0.52064,5.6436,4.6147,1.06,12.6794,2.2223,0.45487,4.2608,3.6656,56.8155,18.1689,302.1276,4.7291,5.9869,2.1457,2.1244,5.1014,8.9788,2.658,3.9355,0.45805,8.5357,13.0006,6.9981,10.7186,2.704,5.8855,2.5282,24.9668,6.9425,4.5055,1.2527,2.8016,10.2307,17.3496,4.3057,5.7771,3.7622,1.8385,1.6895,5.5567,13.1743,3.8095,2.4042,13.4046,2.396,2.7455,2.0838,15.263,2.1606,5.08,1.3454,19.7277,6.934,10.0917,6.2675,14.7662,9.2684,9.5935,9.3925,4.3138,1.5355,5.3396,,,,,,,,,,,,,,,43,,,
-3585,0.79824,1.7472,,-50y,Other,,,20.2298,4.8831,2.5812,2.192,0.93461,ppmi,,,M,,0.45128,4.9669,4.1893,0.89017,10.2191,1.7297,0.41387,3.3459,2.9002,49.7891,17.9786,236.9141,4.2397,5.5684,1.8159,2.0414,3.6843,7.6622,2.2028,3.2113,0.43067,6.3996,11.2572,10.8568,8.0653,2.4243,5.0107,1.8167,20.559,6.3095,4.3808,1.1762,3.0881,7.6676,13.8424,3.9236,4.5168,3.303,1.5175,1.5132,4.1148,11.8507,3.2684,2.3242,12.8509,2.8837,2.6812,2.4628,14.9105,2.5253,4.2471,1.2539,16.3832,5.9225,11.1854,4.1123,12.189,7.6819,8.6664,7.8885,3.7811,1.9606,5.0459,,,PD,0.07804,PD,,PD,0.41534,4.2236,3.9555,0.87965,10.9592,1.8317,0.40984,3.6475,2.8788,49.3873,17.4764,240.9522,4.703,5.5845,1.7122,2.3322,4.0887,7.8701,2.1978,3.5483,0.69638,6.857,11.7133,6.726,8.5713,2.3634,5.2819,1.8756,21.0619,4.9522,4.0235,0.99133,2.845,8.5533,14.4027,2.8934,4.46,3.9158,1.8263,1.4932,4.1517,11.7259,3.018,2.3598,11.3162,2.4097,2.2982,2.2303,14.0534,2.1172,4.1375,1.2087,14.8762,5.7397,9.2382,4.4725,11.1111,8.004,8.4451,8.2638,4.1229,1.8152,4.839,,,,,,,,,,,,,,,49,,,
-3586,1.3551,1.5215,,60-69y,Other,,,19.7833,5.3191,2.8242,2.4385,1.5233,ppmi,,,M,,0.44716,4.9183,4.1322,0.95321,8.0968,1.6408,0.41323,2.8429,2.8979,48.0434,17.0806,223.2009,3.9331,4.6022,1.8294,1.9361,3.6256,7.4304,1.9931,3.3824,0.54789,6.1693,12.2537,16.1031,7.6794,2.4976,5.1568,1.6796,20.4804,5.7018,4.0426,1.2305,2.769,7.2602,14.9639,3.3761,4.239,3.3464,1.5017,1.3748,4.4584,10.3809,3.4986,2.042,12.3059,2.2636,2.5471,2.1084,14.8507,1.8885,3.8433,1.3945,16.0011,5.6185,8.4796,3.5354,10.8354,7.3162,8.4983,8.1803,3.9112,1.4603,4.8205,,,PD,0.072211,PD,,PD,0.41476,4.9247,4.0036,0.94902,8.9955,1.7451,0.41398,3.2619,3.1667,48.8958,17.1712,229.5032,4.1375,4.9616,1.8249,1.9985,3.7372,7.8799,1.9456,3.4948,0.72261,6.8321,12.319,19.711,8.6324,2.2989,4.9847,1.7138,19.6977,4.9003,3.7417,1.2632,2.7983,7.9955,15.2418,3.2603,4.5882,3.4418,1.6996,1.3971,3.857,10.1832,3.0608,2.1702,10.9939,2.1968,2.422,2.022,12.9099,1.9846,3.8161,1.2495,16.1674,5.9248,7.8792,4.4852,9.2265,7.6717,8.185,8.101,3.8454,1.4734,4.6161,,,,,,,,,,,,,,,63,,,
-3587,1.2567,2.2051,,50-59y,Other,,,18.955,5.3507,2.6812,2.3499,1.5031,ppmi,,,M,,0.5469,5.1524,5.0519,0.93027,10.678,1.8989,0.44166,4.3623,3.8702,52.2302,16.7932,252.1121,4.6881,5.9674,1.8309,2.4282,4.2337,7.871,2.3767,3.4826,0.44725,7.9335,13.19,17.307,8.7612,2.8854,5.0876,2.189,23.3749,7.2167,4.5046,1.112,2.7557,8.2219,15.8988,4.9341,5.038,3.7427,1.719,1.5701,5.2285,12.6001,3.3333,2.5798,13.3029,2.9938,2.8458,2.4834,16.2281,2.4062,4.6647,1.4209,15.8328,5.8856,10.1177,4.548,12.0034,7.6809,8.9576,8.3505,4.2371,1.9848,4.9498,,,PD,0.089849,PD,,PD,0.51239,4.2218,5.0142,0.95077,12.1406,2.1483,0.4533,4.2306,4.143,53.3174,15.8426,256.3692,4.7249,6.4183,1.8845,2.329,4.6505,8.4206,2.4496,3.6066,0.46067,9.0255,13.398,21.2533,9.905,2.7413,4.8288,2.1093,21.5524,6.2969,4.6012,1.1533,2.9016,8.8051,16.3263,4.2029,5.4208,4.0648,1.9241,1.5536,4.5737,12.4398,3.1353,2.5252,12.2251,2.3482,2.7875,2.34,14.7779,2.1397,4.5356,1.3592,17.7594,6.2871,9.1036,5.4471,11.4167,8.2472,8.487,8.7128,4.169,1.6734,4.6768,,,,,,,,,,,,,,,53,,,
-3588,0.64174,1.5871,,-50y,Other,,,20.2359,4.7335,2.707,2.2691,0.80281,ppmi,,,F,,0.46439,4.5985,4.2697,0.85926,9.2874,1.5913,0.3889,3.591,2.8754,48.8264,17.2384,243.1283,4.0942,5.1237,1.6721,2.2869,3.4043,7.5209,2.1501,3.2321,0.31948,7.2397,11.0945,6.6914,7.8713,2.5937,4.8111,1.807,19.9984,6.7892,4.0103,1.0957,2.7411,6.988,12.7692,4.1982,4.5908,3.8974,1.7911,1.5188,4.7295,11.202,3.197,2.2529,13.1845,2.6344,2.5213,2.2475,13.2049,2.1439,4.3938,1.1368,14.79,5.4559,9.3452,3.952,11.1071,6.3884,9.056,7.2517,4.6731,1.7977,4.9927,,,PD,0.079924,PD,,PD,0.42202,4.2762,4.0004,0.84281,10.8497,1.8495,0.39043,3.6018,3.0851,49.4723,17.0519,246.7127,3.9356,4.7241,1.6725,2.1511,3.8974,7.8461,2.1625,3.4042,0.33134,7.5235,11.6596,7.1005,8.4347,2.4799,4.7479,1.8494,18.6225,5.6508,3.9208,1.1958,2.5996,7.5635,13.6512,3.496,4.7094,4.0007,1.8134,1.5258,4.4293,10.8251,2.9524,2.192,10.9448,2.2069,2.4256,2.0334,14.0022,1.8716,4.1299,1.1848,14.401,5.3393,8.1406,4.8152,11.4374,6.6969,8.849,7.6903,4.2391,1.5746,4.7667,,,,,,,,,,,,,,,49,,,
-3589,1.1785,1.3736,,70-79y,Other,,,17.3182,4.4382,2.2872,1.9814,1.4693,ppmi,,,F,,0.40981,3.9117,3.9101,0.60755,7.9922,1.378,0.34445,2.698,2.9348,42.0341,15.0454,219.1113,3.6827,4.4367,1.2759,1.9581,3.26,6.3105,1.951,2.5047,0.50146,5.5197,9.0781,20.4026,6.6709,2.0678,3.8816,1.6583,17.498,6.1567,3.6349,1.1798,2.34,6.4097,10.9278,3.2183,3.6783,3.0874,1.3317,1.2726,3.9948,9.4945,2.6215,2.1652,11.2089,2.5006,2.0582,2.0391,13.0434,2.0286,3.7265,1.1504,14.5351,4.9181,8.9418,3.688,10.0038,6.039,7.6278,6.3922,3.3299,1.5309,4.1907,,,PD,0.074349,PD,,PD,0.35377,3.4368,3.6952,0.59627,9.113,1.552,0.33056,2.9301,2.9928,41.8825,14.69,218.4423,3.9028,4.4093,1.2351,1.9403,3.6819,6.2381,2.0043,2.5877,0.58074,6.6275,9.9637,15.4822,6.9615,1.918,3.9973,1.7228,17.6918,4.8006,3.46,0.77639,2.1905,7.1874,12.4391,2.9219,3.9427,3.4331,1.447,1.3042,3.4898,9.3078,2.4627,2.0043,9.2089,1.7162,1.9764,1.7287,10.7467,1.5152,3.507,1.0712,13.7426,4.4697,7.1175,4.0547,9.4795,6.4509,7.3417,6.3525,3.6263,1.2562,4.0277,,,,,,,,,,,,,,,75,,,
-3591,1.7219,2.1342,,60-69y,Other,,,20.8589,5.6718,3.0767,2.5914,1.3944,ppmi,,,M,,0.46484,4.8944,4.8602,0.88763,10.2752,1.7657,0.40815,3.515,2.9542,51.6378,18.0192,230.9807,4.117,4.9795,1.7403,2.2682,3.6211,7.8298,2.4026,3.44,0.53577,7.6572,12.1245,9.8884,8.5413,2.5932,5.3091,1.9348,20.3115,7.0758,4.6186,1.2135,2.9286,7.5499,15.3739,4.1384,4.8021,3.6453,1.6812,1.4788,5.6119,13.4436,3.6615,2.3161,13.5476,2.4561,2.7122,2.2113,14.3736,2.2232,4.6246,1.3496,15.2964,5.6834,9.8397,4.0229,12.7652,8.0534,8.6187,7.4435,4.4472,1.6087,4.8645,,,PD,0.074848,PD,,PD,0.42766,4.4556,4.6172,0.92711,11.2836,1.8383,0.41849,3.5297,3.1647,51.9461,16.8885,234.9799,4.0807,5.4275,1.9015,2.3554,3.7373,8.3788,2.3147,3.7509,0.60121,6.6497,13.1474,10.153,9.2486,2.4207,5.325,1.8749,20.0219,5.2733,4.26,1.3224,2.9128,8.1748,15.8674,2.7972,4.5223,4.0209,1.876,1.4696,5.096,13.1311,3.5494,2.3685,11.7151,2.2328,2.6006,2.0959,12.8189,2.0467,4.4714,1.2829,15.1745,6.0636,9.6736,4.4435,13.6567,8.1312,8.2903,8.4526,4.4067,1.4694,4.807,,,,,,,,,,,,,,,63,,,
-3592,1.6161,2.1297,,60-69y,Other,,,21.4679,5.6692,2.6461,2.2601,2.1283,ppmi,,,M,,0.47318,4.4991,4.2331,0.89821,9.9782,1.5964,0.42821,3.0525,3.2017,51.1189,18.034,245.1422,4.3903,4.6635,1.7679,2.0636,3.4966,7.7905,2.0634,3.5815,0.62883,6.9001,11.8864,17.9203,8.0223,2.539,4.941,1.662,20.0821,6.9731,4.2674,1.4457,2.7223,6.7202,14.8803,3.8637,4.5441,3.8309,1.5532,1.7939,4.9278,10.1332,3.5305,2.5521,12.0537,2.77,2.7711,2.6495,12.8949,2.3546,4.6868,1.3087,15.3291,5.2668,9.9301,3.9023,10.7213,8.3772,9.1998,8.2661,4.0532,1.8642,5.3688,,,PD,0.0869,PD,,PD,0.42738,3.6993,4.2658,0.89702,11.3493,1.7553,0.42889,2.9401,3.4163,50.8439,17.5767,250.5021,4.6193,4.9636,1.8362,1.9145,3.6265,8.3854,2.1739,3.6702,0.87319,7.165,13.834,18.0066,8.3107,2.4792,4.6036,1.6684,20.1299,5.5939,4.1439,0.97005,2.3997,7.1145,16.4174,2.877,4.2473,3.3729,1.7284,1.7724,4.4511,10.8542,3.3518,2.6101,10.2057,2.3965,2.5777,2.6152,12.9286,2.612,4.6548,1.2603,14.8743,5.0312,9.1693,4.1898,11.6556,8.8844,8.9049,8.7264,3.8362,1.9446,5.0704,,,,,,,,,,,,,,,62,,,
-3593,0.79049,1.7399,,50-59y,Other,,,18.6023,5.0804,2.6757,2.1333,0.91844,ppmi,,,F,,0.46652,4.2884,4.2865,0.80998,9.7644,1.4672,0.39096,3.3959,3.068,45.3642,15.5013,219.9392,4.2467,4.7373,1.5412,1.97,3.4948,6.998,1.9795,2.9174,0.45622,6.5149,10.2195,11.4683,7.8677,2.3143,4.6394,1.7101,19.5664,6.1654,3.7362,1.3778,2.8255,6.353,12.9647,3.4159,4.4906,3.2495,1.5283,1.3981,4.1457,10.2468,3.0473,2.3812,13.5135,2.4743,2.3189,1.9752,14.0782,2.1439,4.4145,1.1968,15.0154,5.7593,10.1138,3.7645,10.718,7.0914,7.9599,7.0091,3.7293,1.6418,4.6307,,,PD,0.068079,PD,,PD,0.43001,3.8733,4.192,0.89029,10.9793,1.6763,0.41903,3.5977,3.0518,45.4614,15.1462,225.8391,3.7892,5.0982,1.6305,2.0332,3.5956,7.3224,2.0133,3.267,0.52298,6.6816,11.3644,8.361,8.2735,2.092,4.6794,1.7133,17.4058,5.3986,3.7051,1.1642,2.7494,7.5768,13.9171,2.8116,4.1521,3.2305,1.5635,1.3373,3.752,10.6307,2.85,2.1038,11.9118,2.0997,2.2914,1.6985,12.8744,1.6266,4.3832,1.1631,15.4509,5.5998,8.741,4.3724,12.3834,6.6187,7.7587,7.0329,3.5402,1.2524,4.3564,,,,,,,,,,,,,,,55,,,
-3600,1.3264,2.5892,,50-59y,Other,,,17.9104,5.2396,2.8243,2.3506,1.3062,ppmi,,,M,,0.42449,4.3228,4.3171,0.88362,9.148,1.3948,0.3654,3.2975,2.7135,52.0951,16.6372,212.2411,3.9518,4.7567,1.7219,1.9908,3.5146,7.9713,1.8711,3.1218,0.50459,6.4249,11.9058,11.5146,7.5828,2.3237,4.7945,1.7225,19.1978,6.0329,3.4957,1.1515,2.8003,7.0584,13.923,3.3111,4.0829,3.1468,1.4857,1.4293,4.2591,10.3285,3.3271,2.2854,11.057,2.2236,2.2128,2.3037,12.9019,1.9081,4.303,1.0747,15.9856,5.1603,8.8605,3.4315,9.5616,7.2278,8.1169,7.9955,3.785,1.5646,4.4575,,,,0.063917,CN,,HC,0.39228,3.8048,4.2603,0.84838,10.4951,1.6134,0.39283,3.6492,2.8034,52.1489,15.9468,216.5835,3.9374,4.8731,1.718,1.9197,3.5742,8.3136,1.8701,3.2754,0.55495,6.8972,12.3808,12.5583,8.1713,2.201,4.4251,1.6931,19.0977,5.8051,3.4974,1.255,3.291,8.0514,14.0026,3.3799,4.3849,2.9594,1.4763,1.358,3.7338,9.8548,2.9369,2.3133,10.1777,2.0807,2.1777,2.0803,13.3289,1.8924,4.1547,1.0809,15.634,5.485,8.1026,4.3965,9.568,7.8371,7.9934,7.6625,3.3303,1.5575,4.2086,,,,,,,,,,,,,,,55,,,
-3601,0.81451,1.5218,,60-69y,Other,,,17.948,4.5549,2.4589,2.0034,0.83956,ppmi,,,F,,0.39884,3.782,3.5782,0.80458,7.969,1.4668,0.35486,2.8761,2.7436,43.6276,13.7451,196.0118,3.6811,3.6145,1.6558,1.7178,3.0922,6.7121,1.7159,3.1054,0.43286,5.8637,9.9711,6.6989,6.7133,2.0812,4.0988,1.5217,15.2976,5.3924,3.5477,0.9699,2.2398,5.7628,12.5213,2.7288,3.7814,2.7851,1.2367,1.2491,4.083,8.8033,3.1094,2.0705,10.9957,1.8687,2.1622,2.0301,12.0139,1.5552,3.8288,0.95537,12.6751,4.1862,8.0812,2.984,9.3931,6.4185,7.5528,6.373,3.2481,1.3221,4.3178,,,PD,0.080742,PD,,PD,0.35865,3.4317,3.5487,0.79913,9.3524,1.5923,0.3543,2.6619,2.859,43.0168,13.4881,198.0931,3.5116,3.8996,1.5738,1.6443,3.2704,6.8827,1.8347,3.2747,0.42229,5.7897,10.4268,6.5352,7.1669,1.9777,3.9734,1.5344,15.9563,5.0895,3.3159,1.0647,2.4022,6.5268,12.8643,2.3637,3.6504,3.0049,1.358,1.2329,3.6446,8.8607,2.7975,1.9865,10.0896,1.7332,2.1066,1.7642,11.5802,1.4601,3.7463,0.94217,13.486,4.2028,6.8294,3.6896,9.248,6.3415,7.4788,6.7286,3.1481,1.1672,4.1619,,,,,,,,,,,,,,,63,,,
-3603,1.6842,2.5361,,50-59y,Other,,,22.8498,5.6626,3.0647,2.5482,1.4602,ppmi,,,M,,0.49027,5.143,4.5609,0.98799,11.1849,1.7616,0.42019,2.8544,3.9316,55.2978,19.3849,257.1668,4.7612,5.0193,1.8777,2.1377,3.8284,8.6376,2.2731,3.7499,0.52311,7.0722,13.1217,16.8602,7.5655,2.4469,4.8827,2.0817,20.8437,8.0138,4.4432,1.3465,2.9106,8.0233,15.9694,3.8261,4.5564,3.6277,1.4171,1.6199,5.3775,12.7325,3.8386,2.5119,13.8895,2.7272,2.6157,2.3442,14.9973,2.274,4.4032,1.3693,17.0019,6.2516,9.6123,4.922,12.6222,8.4048,9.987,8.5879,4.2085,1.6307,5.5611,,,PD,0.080495,PD,,PD,0.44995,4.8345,4.5074,0.98828,12.6583,2.0041,0.46145,2.7362,4.0542,55.1819,18.8897,259.1454,4.1231,5.3678,1.8769,2.2458,4.4669,8.5583,2.3351,3.9692,0.70153,7.3206,13.7167,10.5456,8.8566,2.4865,4.9548,2.118,19.8341,6.2092,4.2237,1.1508,2.6154,8.6336,16.8201,2.8389,4.425,4.1113,1.7735,1.6222,4.9962,12.6236,3.4238,2.4811,11.8792,2.3907,2.4905,2.1624,13.9022,2.1702,4.3592,1.4223,16.3591,5.529,10.092,4.6774,12.7989,9.1945,9.5307,9.0403,3.9562,1.4862,5.2849,,,,,,,,,,,,,,,58,,,
-3604,2.0412,2.2229,,60-69y,Other,,,18.6679,5.0481,2.4789,2.0902,1.9753,ppmi,,,F,,0.4084,4.9398,4.578,0.84503,8.3419,1.4471,0.37061,3.2818,3.1338,45.9483,15.346,213.4669,4.0043,4.8734,1.6033,2.0731,3.7356,6.7814,1.876,3.0826,0.63277,6.7023,10.4891,19.0273,7.5001,2.2816,4.7824,1.8307,18.484,6.241,3.7247,1.289,2.71,7.2866,13.1,3.8423,4.1477,3.6496,1.393,1.3726,4.151,10.0875,2.9831,2.4651,11.0658,2.2566,2.3451,2.2616,14.0566,1.9215,4.4977,1.1614,13.5654,5.4558,8.2934,3.7718,9.5213,6.8075,8.1963,7.423,3.7577,1.6162,4.6177,,,PD,0.079286,PD,,PD,0.3529,4.3216,4.3422,0.86457,9.9437,1.7494,0.38378,3.0631,3.1008,46.5614,14.8022,219.0245,3.8137,4.655,1.6494,1.9556,3.8004,7.2598,2.015,3.2834,0.68185,6.7293,11.2047,14.6928,7.4426,2.2222,4.3555,1.7794,18.6905,4.9702,3.8721,0.94864,2.4288,8.4293,12.8463,2.7435,4.0727,3.47,1.5611,1.3943,4.0231,10.2054,2.7572,2.4435,10.1494,1.9434,2.3423,2.147,12.8354,1.7545,4.501,1.2099,14.0419,5.6261,7.9265,3.6821,10.4307,7.1547,8.075,8.4627,3.55,1.5379,4.4013,,,,,,,,,,,,,,,69,,,
-3605,2.0061,1.593,,70-79y,Other,,,20.1921,5.1118,2.5668,2.2726,1.5883,ppmi,,,M,,0.46007,5.5916,4.8059,0.93033,9.7744,1.782,0.41446,3.0313,3.2959,48.7908,16.7694,243.3216,5.4694,4.5624,1.8417,2.2811,3.8203,7.9579,2.1638,3.3474,0.53887,6.9436,13.8268,15.5665,8.1121,2.7988,5.3322,1.977,20.882,6.376,4.4413,0.97374,2.8324,7.5829,16.6114,3.8025,4.7978,3.3887,1.8089,1.5631,5.2495,12.584,3.5509,2.9699,13.327,3.2167,2.6266,2.8219,14.7527,2.5763,4.5258,1.4698,16.2422,6.1293,10.3155,3.7711,11.6933,8.5824,8.8944,8.5411,4.4824,2.0454,5.1061,,,PD,0.089241,PD,,PD,0.41658,4.9454,4.6405,0.95318,10.7964,1.9164,0.43335,3.16,3.604,49.2735,15.617,246.3602,4.4172,4.8194,1.9021,2.1213,4.3452,9.1672,2.2125,3.5395,0.6317,6.7673,14.2779,18.1145,9.3753,2.5082,5.2549,1.9802,20.9412,5.2461,4.4332,1.4992,3.3174,9.4639,16.389,3.1417,4.8185,3.7194,1.7638,1.5764,4.6123,12.2,3.3766,2.7145,12.1069,2.4198,2.6939,2.5669,14.7545,2.0945,4.4091,1.4785,17.0719,6.3775,8.3655,4.0783,11.2001,8.3518,8.7126,8.5726,3.8964,1.6478,4.8309,,,,,,,,,,,,,,,75,,,
-3606,0.95086,2.3934,,50-59y,Other,,,19.9365,4.8322,2.5252,2.5551,1.266,ppmi,,,F,,0.48253,4.5507,4.1205,0.90627,9.847,1.5739,0.39411,3.2917,3.2557,52.3366,17.5356,243.5098,4.3472,4.3472,1.7604,1.992,3.2859,7.5769,2.0742,3.2905,0.41551,6.4828,10.961,9.719,7.6695,2.3147,4.8769,1.9005,17.3769,6.2926,3.8635,1.2776,2.6327,6.7509,13.0076,3.2773,4.5116,3.4921,1.366,1.6686,4.826,11.3548,3.2169,2.3541,12.4263,2.3597,2.3073,2.2702,13.0696,2.0965,4.5307,1.2068,13.3421,5.0621,9.0915,3.7093,11.7372,7.4671,8.9955,7.5292,3.613,1.7599,5.0551,,,PD,0.082222,PD,,PD,0.45496,3.8176,3.825,0.9273,10.4876,1.6955,0.40704,3.1658,3.3567,52.9404,16.6649,244.4743,3.8864,4.5303,1.8109,1.7215,3.5802,7.4589,2.0652,3.46,0.42818,6.6774,11.3257,8.6605,8.4037,2.1263,4.7188,1.818,17.5152,5.6442,3.7819,1.1632,2.6085,7.459,13.776,2.9569,4.5417,3.1681,1.3416,1.6541,4.3089,10.6637,2.9916,2.2868,12.0656,2.1094,2.2821,2.0642,12.253,1.7825,4.3248,1.144,13.647,5.3491,8.3611,4.4426,11.7481,7.2296,8.7456,7.4804,3.0574,1.5111,4.8661,,,,,,,,,,,,,,,50,,,
-3607,0.85807,1.3842,,50-59y,Other,,,16.5657,4.4992,2.4175,2.0378,0.93135,ppmi,,,F,,0.43352,4.7165,4.2135,0.89441,8.2893,1.6451,0.36562,2.9326,3.0426,43.4989,15.1875,221.0804,4.4617,4.6234,1.6388,2.0976,3.7324,7.6297,2.0868,3.0502,0.31403,6.445,10.6149,8.4646,7.4624,2.5904,5.3353,1.9116,19.7815,5.7636,4.0298,1.1497,2.7646,6.8997,12.8047,3.1331,4.2524,3.5283,1.7501,1.2828,4.4868,10.9176,3.2761,2.3851,11.7884,2.4275,2.5393,2.4661,13.5282,1.8576,3.9902,1.2223,15.6864,5.6944,8.2534,3.8793,12.0399,6.3918,7.2708,6.8603,3.9984,1.6985,4.1396,,,PD,0.072316,PD,,PD,0.40465,3.8147,3.8719,0.85769,10.1653,2.0356,0.40068,2.8619,3.0956,43.6633,14.4264,218.6547,3.9505,4.8846,1.6106,2.0235,3.9061,7.3849,2.1999,3.3973,0.6785,5.9263,10.5992,8.8715,7.7935,2.4643,5.466,1.9901,20.2046,4.9833,4.0939,1.1051,2.6991,8.7864,12.9995,2.8058,3.9909,3.5554,1.6056,1.2661,3.8994,10.7784,2.9936,2.1805,9.6146,2.2077,2.3231,2.034,12.6332,1.8512,3.9622,1.1929,15.2596,5.72,8.0272,4.3455,10.4407,7.6239,7.1268,7.3379,3.5604,1.5027,4.0039,,,,,,,,,,,,,,,55,,,
-3608,0.71125,2.0415,,-50y,Other,,,18.6768,4.7706,2.4025,2.0797,0.84816,ppmi,,,M,,0.48411,4.7265,4.3478,0.92327,9.7641,1.6994,0.41729,3.3058,3.0924,44.9752,16.6586,216.3904,3.9634,4.5286,1.8538,2.1242,3.5123,7.4009,2.1725,3.2729,0.35475,7.1562,10.8769,6.4262,7.4169,2.6011,4.799,1.8643,20.3829,6.0916,4.1265,1.2791,2.9387,7.351,14.5181,3.5414,4.7937,3.6067,1.7022,1.4459,4.1302,10.0603,3.3722,2.628,11.5217,2.331,2.6976,2.4614,13.8051,1.9656,4.3017,1.2045,14.9354,5.5325,9.333,3.3075,10.3389,7.952,8.4831,8.035,3.9795,1.6569,4.8535,,,PD,0.070575,PD,,PD,0.4348,4.2904,4.0865,0.98897,10.4846,1.9921,0.40869,3.1615,3.3776,45.6567,15.6148,220.6547,4.079,4.9741,1.9695,2.0041,3.7371,7.914,2.0549,3.5767,0.43325,7.1708,11.731,4.9477,8.582,2.3474,4.6392,1.8049,19.9786,5.5761,4.0087,1.1827,2.8121,7.4351,14.617,3.0818,4.5878,3.454,1.4225,1.4474,3.8113,10.3192,3.1814,2.2445,11.072,2.0827,2.5515,1.9541,14.7197,1.6043,4.5435,1.1744,15.1429,5.9211,7.4191,4.2447,10.4663,6.3897,8.127,8.222,3.5077,1.2884,4.5938,,,,,,,,,,,,,,,46,,,
-3609,2.9857,4.1037,,60-69y,Other,,,18.7229,4.9389,2.3725,2.1214,4.2014,ppmi,,,M,,0.4134,4.6968,4.5757,0.79174,9.295,1.4596,0.37755,3.0566,3.5288,44.3481,16.4748,230.2819,4.1611,4.3432,1.5556,1.9637,3.4408,6.9695,1.9276,2.7389,1.3407,6.4543,10.679,54.2439,7.6136,2.1782,5.0536,1.7809,17.8394,6.045,3.6633,0.99857,2.4727,7.8498,12.9084,4.0629,4.2338,3.3378,1.4458,1.6987,4.2245,9.6508,3.0603,2.6227,11.1693,2.5419,2.2313,2.2472,12.6966,2.0997,4.969,1.2566,14.0785,5.6489,8.4301,3.3584,9.2768,7.2297,8.6049,6.664,3.8883,1.5384,5.0865,,,PD,0.0604,PD,,PD,0.4004,4.1269,4.3932,0.83591,10.2936,1.6605,0.40242,3.3031,3.9328,46.0995,14.9377,235.6408,4.3517,4.7664,1.5713,1.9865,3.9418,7.1138,1.9084,3.2384,1.8147,7.0358,10.7683,52.5027,7.9917,1.9763,4.0799,1.7309,17.8753,5.0041,3.5016,0.97824,2.8331,8.7945,13.9026,3.3607,4.1849,3.214,1.3785,1.7014,3.494,9.9954,2.908,2.5821,11.8214,2.1507,2.0437,2.1601,12.6805,1.8131,4.6222,1.2085,14.5088,5.9649,7.7084,3.9812,10.1149,8.1489,8.6583,7.3614,3.3876,1.5865,4.8752,,,,,,,,,,,,,,,69,,,
-3610,0.86107,2.2596,,60-69y,Other,,,17.9968,4.5296,2.7976,2.165,0.85873,ppmi,,,F,,0.50371,5.2448,4.6238,0.99431,10.7076,1.8097,0.41445,3.0361,3.1729,48.3929,14.6854,228.1836,4.0694,4.9816,1.9039,2.2108,3.6844,8.046,2.1741,3.5113,0.44344,6.1708,12.723,8.0349,7.4702,2.7272,5.4103,1.9833,20.7447,6.23,4.3878,1.2452,2.8032,7.5369,16.0456,2.8514,4.436,4.0546,1.6646,1.3728,4.7507,11.2845,3.5417,2.4148,13.2383,2.484,2.9167,2.4824,13.5386,2.0994,4.3809,1.2663,15.9932,6.0202,9.9532,3.7759,11.1069,9.1516,8.2202,8.2165,4.493,1.8393,4.6264,,,,0.084534,CN,,HC,0.46386,4.2674,4.5874,0.98257,11.2015,2.1047,0.44991,3.2111,3.2444,48.026,14.3642,232.9119,4.6943,4.7666,1.936,2.1927,3.9092,8.312,2.2669,3.7687,0.3722,7.1709,13.2674,5.5459,8.2621,2.4866,5.1868,1.872,20.8256,5.6803,4.7129,1.228,2.657,9.0935,16.0113,2.7411,4.6859,3.8171,1.5907,1.3281,4.3531,11.1541,3.3086,2.5218,11.408,2.7429,2.7819,2.3885,14.5023,2.2045,4.4152,1.2794,15.9056,6.1828,8.831,4.5106,10.6284,8.3617,8.0586,8.6538,3.6007,1.7228,4.363,,,,,,,,,,,,,,,60,,,
-3611,0.82286,2.2505,,-50y,Other,,,18.7179,4.4139,2.4107,2.242,0.87648,ppmi,,,F,,0.48964,4.6993,4.6692,0.90896,10.7249,1.8577,0.44629,4.2226,2.8736,49.933,16.1252,231.2056,4.0474,5.234,1.7658,2.1593,3.7233,7.7137,2.273,3.5085,0.32952,6.9542,11.4565,13.2749,8.4628,2.7795,4.8571,2.0812,21.2924,7.2051,4.4164,1.1951,2.6673,7.3514,14.5537,4.1507,4.6507,3.8727,1.587,1.4772,4.5859,11.5837,3.2935,2.3172,12.6546,2.3163,2.8686,2.2202,14.1661,1.9451,4.8941,1.3461,15.3055,5.8436,10.0375,4.5432,12.4814,7.6175,8.4339,7.7159,4.3767,1.5582,4.9131,,,,0.076444,CN,,HC,0.42779,3.6917,4.3562,0.97497,11.011,1.9399,0.44062,4.1769,2.9492,49.9729,15.6791,234.3259,4.2178,5.5253,1.9059,2.1558,3.9369,7.9225,2.2866,3.6753,0.51156,6.5225,11.734,6.8851,9.1533,2.499,4.7391,2.0139,20.9413,5.2451,4.2499,0.95979,2.5462,8.5458,14.8211,3.2482,4.7483,4.0191,1.7824,1.3949,4.6826,12.0377,3.3642,2.3107,10.5585,2.4279,2.5891,1.9403,13.6406,1.9923,4.7804,1.2858,14.8966,5.525,9.8403,4.9616,12.5213,8.0168,8.3876,8.4675,4.5691,1.5102,4.6106,,,,,,,,,,,,,,,42,,,
-3612,1.1332,1.8922,,60-69y,Other,,,19.6134,4.6705,2.9091,2.2906,1.1789,ppmi,,,M,,0.45467,4.2913,4.4603,0.89286,9.6676,1.6167,0.38845,3.8124,3.2249,49.4516,17.4186,248.6059,3.8918,5.5899,1.7954,1.9188,3.611,7.6145,2.0775,3.2104,0.50478,7.2972,10.8697,11.7971,7.7098,2.31,4.3372,1.8106,17.3811,6.9978,3.9627,1.1023,2.6359,7.2212,13.5637,4.3828,4.6688,2.7136,1.5493,1.4849,4.5022,11.4722,3.2241,2.424,11.2319,2.1572,2.3641,2.1854,11.87,1.8311,4.5138,1.1775,14.9378,5.1763,8.9323,4.3116,11.1681,7.2537,8.79,7.5853,3.6257,1.5302,4.8578,,,PD,0.066364,PD,,PD,0.4142,3.6352,4.441,0.92922,10.759,1.6444,0.41794,4.1028,3.2029,49.4618,16.1746,249.9865,3.6605,5.8923,1.8089,1.9657,3.4549,7.6491,1.9211,3.4729,0.67164,7.2216,11.6196,9.4999,8.8289,2.0893,4.2055,1.7243,17.3038,5.3654,3.6196,1.0081,2.4918,8.0869,13.8619,3.2912,4.5548,2.9459,1.5316,1.5106,4.1385,11.8054,3.1993,2.4396,9.9011,1.9934,2.4425,1.9155,10.9762,1.5914,4.5544,1.1442,14.1667,4.9717,8.0163,4.7423,11.5553,7,8.415,8.147,3.2724,1.3784,4.7279,,,,,,,,,,,,,,,68,,,
-3613,0.62887,1.6762,,60-69y,Other,,,18.707,4.7082,2.7595,2.0345,0.90503,ppmi,,,M,,0.44916,4.4711,4.3582,0.95338,9.9148,1.5625,0.36255,3.3464,3.0548,46.5135,15.7778,240.3113,4.3787,4.899,1.7814,2.0574,3.61,7.5286,2.1632,3.3485,0.38112,6.191,10.799,8.2241,7.3106,2.3914,4.5591,1.817,19.2238,6.5713,3.995,1.099,2.4697,6.8985,13.2671,3.4844,4.2619,3.5488,1.6255,1.5851,4.2157,10.115,3.3628,2.2838,12.3795,2.6569,2.4902,2.2517,13.5613,2.094,4.4165,1.033,14.8595,4.8664,9.4947,3.6756,10.0899,7.623,8.5621,7.3634,4.1485,1.6516,4.7751,,,,0.068373,CN,,HC,0.41686,3.6908,4.3227,0.89993,11.2735,1.6945,0.386,3.4952,3.2431,46.3003,15.4866,241.6775,4.1845,4.7752,1.6821,1.9784,4.0199,6.9465,2.3259,3.4462,0.42352,6.6815,10.8433,6.8784,7.7309,2.3413,4.3273,1.9144,17.7644,4.8929,3.9898,0.92837,2.3496,7.9888,13.9228,2.9923,4.0217,3.1859,1.703,1.5228,3.9636,10.414,2.839,2.4248,10.3434,2.8124,2.4181,1.9812,13.6353,2.3094,4.3931,1.0628,15.2336,5.0176,8.4162,4.2017,10.5637,8.1746,8.3679,7.4154,3.5946,1.5888,4.5324,,,,,,,,,,,,,,,62,,,
-3614,1.1272,1.7829,,60-69y,Other,,,19.0098,4.7587,2.466,2.1058,1.295,ppmi,,,M,,0.43483,4.1135,3.9534,0.88614,8.2803,1.3837,0.35611,3.5436,2.9583,47.9688,16.8591,216.7895,3.6531,4.4223,1.5738,1.7934,3.3566,7.2148,1.8241,3.1057,0.48582,6.2196,10.9708,11.4239,7.8969,2.176,4.0084,1.7201,16.2149,5.8716,3.595,1.2248,2.5438,6.354,12.8716,3.4425,4.1832,3.0976,1.425,1.4766,4.4182,10.1325,3.1558,2.1683,10.8597,2.0663,2.3681,2.2238,11.9462,1.6968,3.9716,1.0551,12.1678,4.5184,7.6194,3.5498,9.7879,6.1703,7.8564,7.0855,3.5582,1.41,4.7088,,,,0.068098,CN,,HC,0.38935,3.582,3.6199,0.86916,9.3085,1.4335,0.37239,3.4706,2.9974,47.1985,16.5178,215.9423,3.6198,4.2918,1.6081,1.7947,3.4378,7.2154,1.8664,3.2394,0.69555,6.8098,10.9628,9.7085,8.1457,1.8345,3.9644,1.6818,15.4154,5.1486,3.3191,0.97786,2.3329,7.0612,13.2006,3.0199,4.185,2.7167,1.4321,1.4351,4.0459,9.9692,2.9047,2.0195,10.1569,2.2256,2.1505,1.8632,11.5426,1.8328,3.8824,1.0495,12.2954,4.5624,7.9135,3.6436,8.602,6.8688,7.6029,7.2685,3.214,1.3428,4.4429,,,,,,,,,,,,,,,66,,,
-3615,1.7456,2.2696,,70-79y,Other,,,19.2582,5.2608,2.5971,2.4182,1.5491,ppmi,,,M,,0.51472,6.2834,5.9416,1.0368,12.1053,1.9841,0.44749,4.099,3.2034,50.005,17.0025,257.7218,4.6956,5.8657,2.0478,2.9576,4.7753,8.6009,2.646,3.7319,0.51524,8.3121,12.7301,14.859,9.7447,3.2079,5.8368,2.3781,24.5721,7.5809,4.7785,1.5799,3.4906,9.2398,16.58,4.9989,5.3484,4.3126,2.1368,1.5964,6.2669,15.3204,3.8815,2.7371,13.5318,2.767,2.7021,2.7574,15.2711,2.6265,4.6451,1.5475,18.1916,7.5525,11.0277,4.3445,14.4495,8.988,9.2759,9.3465,5.3817,1.927,5.0399,,,PD,0.082674,PD,,PD,0.48041,5.7146,5.4263,0.98583,13.2961,2.1963,0.47991,4.3715,3.2436,50.6477,16.4046,258.928,4.5782,7.3727,2.0692,2.5727,4.8218,8.6445,2.61,3.8021,0.56506,8.6136,13.9753,11.7821,10.2546,2.7001,6.1804,2.4345,24.161,6.7536,4.7929,1.3771,3.5405,10.5253,17.1068,4.0927,5.379,4.2516,2.0458,1.5315,5.3816,16.1249,3.4826,2.8631,12.3377,2.193,2.7094,2.4743,15.6244,2.0444,4.8765,1.5535,16.2746,6.6993,9.0469,5.5286,13.2791,8.5877,9.0415,9.8836,4.4813,1.6978,4.7105,,,,,,,,,,,,,,,78,,,
-3616,1.8692,1.9062,,60-69y,Other,,,14.8044,4.58,2.5049,2.0974,1.5208,ppmi,,,M,,0.39948,5.0827,4.4927,0.84657,8.3922,1.4176,0.38949,2.6412,2.8193,41.8966,12.6871,192.0462,3.6672,3.8742,1.6125,1.8503,3.3886,6.9912,1.9131,3.0941,0.50745,5.8348,11.1514,19.4092,7.2716,2.2231,4.8626,1.789,17.6251,5.4821,4.0257,1.0459,2.6994,7.1556,13.0738,2.775,3.9131,3.1214,1.4089,1.1385,4.3741,10.3649,3.2765,2.2719,11.285,2.3886,2.6044,2.2137,13.1228,1.9712,3.8735,1.2973,14.0172,4.909,8.4173,3.3544,10.1854,6.584,6.4691,7.6211,3.3637,1.4639,3.839,,,PD,0.069475,PD,,PD,0.35536,4.2832,4.1429,0.85539,9.1844,1.6624,0.38084,2.7946,2.921,42.5985,12.5478,194.9345,3.5917,4.5679,1.6289,1.7042,3.4525,7.5996,1.8905,3.4145,0.62007,5.7922,11.2452,16.4881,7.7992,2.1445,4.1913,1.7547,18.7023,4.622,3.799,1.2634,2.7089,8.052,13.8388,2.339,4.058,2.8534,1.4318,1.1838,4.108,10.8158,3.1119,2.2678,10.5193,1.8085,2.2518,2.0397,12.7118,1.6161,3.7048,1.1718,14.7335,5.5023,7.4609,3.9065,9.7767,7.0325,6.4853,7.6421,3.0226,1.303,3.6685,,,,,,,,,,,,,,,63,,,
-3617,1.4796,2.1581,,-50y,Other,,,22.2396,5.192,2.7306,2.3502,1.1348,ppmi,,,F,,0.45214,4.9617,4.4819,0.99903,9.3516,1.5322,0.3704,3.1749,3.1599,50.0588,18.8807,254.293,4.3045,4.596,1.7168,2.2785,3.7416,7.3934,2.2927,3.7771,0.46858,6.3745,10.8396,9.8557,7.5653,2.4321,5.0797,1.9711,19.5809,5.7013,3.9342,1.2801,2.5667,7.3721,13.6393,3.4038,4.6865,3.385,1.5653,1.815,4.3144,10.3902,3.3636,2.1878,11.9196,2.468,2.3788,2.1074,13.1584,2.0567,4.5613,1.1629,16.5777,5.2061,9.1089,2.8864,10.8443,7.4988,8.451,7.4541,3.8877,1.5986,5.3527,,,,0.090042,CN,,HC,0.42007,4.5164,4.3168,0.94547,10.0812,1.7694,0.38281,3.5046,3.3975,50.7907,19.0466,261.2374,3.9366,5.3585,1.6656,1.9675,4.1642,7.26,1.9739,3.845,0.59308,7.0906,11.0843,12.3357,8.555,2.1365,4.7934,1.8494,19.143,5.6681,3.6596,0.9969,2.5403,8.1386,14.9194,3.8258,4.541,3.3766,1.4373,1.6465,3.7791,10.5543,2.79,2.2017,10.6461,2.1784,2.3124,1.9688,12.9478,2.0119,4.5687,1.0833,16.6417,5.5888,8.5337,4.8915,10.848,8.238,8.3289,7.4443,3.3223,1.3923,5.0012,,,,,,,,,,,,,,,32,,,
-3619,0.51431,1.7761,,60-69y,Other,,,20.0399,4.9374,3.2252,2.6506,0.87295,ppmi,,,M,,0.51465,4.5115,3.955,0.95576,9.2496,1.7581,0.40739,3.6173,3.1091,52.663,16.5894,231.5028,4.1697,4.9761,1.8771,1.8228,3.6654,7.7536,2.4311,3.3366,0.30492,6.4089,12.0355,5.1492,8.046,2.6441,4.7307,1.8597,20.6263,6.2002,4.4852,1.2266,2.9132,7.3341,15.171,3.7971,4.5042,3.5893,1.5897,1.6316,4.089,10.479,3.4823,2.1693,12.7473,2.2551,2.7702,2.2693,15.204,2.0595,4.5073,1.2057,16.2321,5.8763,10.1703,4.0178,10.1444,8.4228,9.1072,9.0464,3.9866,1.5834,5.2249,,,,0.078967,CN,,HC,0.47659,4.0395,3.8267,0.92217,10.5023,1.9821,0.41421,3.6339,3.3266,52.3878,15.7739,232.4386,3.8076,4.9352,1.8004,1.908,4.2648,7.8817,2.3074,3.3848,0.31378,7.7994,12.3481,6.2707,8.5959,2.591,4.6876,1.8649,20.0682,5.6263,4.203,1.1764,3.2199,8.1954,15.7359,3.4758,4.5703,3.8726,1.8201,1.6161,3.6256,10.0606,3.073,2.0924,10.8719,1.8538,2.4732,1.8886,13.5154,1.8197,4.5235,1.1194,15.7459,5.7696,8.1953,4.6288,11.3503,8.1586,8.4923,8.353,4.2487,1.3427,4.9378,,,,,,,,,,,,,,,69,,,
-3620,1.3254,1.7154,,50-59y,Other,,,20.3569,5.0043,2.9439,2.5308,1.481,ppmi,,,F,,0.41134,4.7521,4.1904,0.89346,9.6842,1.4621,0.37226,3.5405,2.9619,52.142,17.2993,210.2426,4.1671,4.9242,1.7403,1.9316,3.1821,7.8317,2.0796,3.1512,0.50049,6.6851,12.211,11.9412,8.1125,2.2998,4.524,1.8013,18.6334,6.3148,3.9931,0.99124,2.5456,6.9596,15.0511,3.1902,4.5715,3.2052,1.4458,1.4118,4.3914,11.6635,3.3838,2.2562,11.7227,2.2867,2.4868,2.3435,12.4489,1.9212,3.5741,1.1479,13.7264,5.3708,9.4441,4.2805,11.462,8.1583,8.0422,8.2987,3.2977,1.4844,5.002,,,PD,0.075521,PD,,PD,0.38566,4.2657,3.8322,0.88812,9.8014,1.6093,0.37346,3.6889,3.0874,52.8386,16.7402,212.7534,3.9217,4.8924,1.7417,1.8537,3.7231,7.8016,2.0116,3.3517,0.44298,6.8816,12.0569,10.376,8.7167,2.1155,4.7045,1.7802,17.678,4.9445,3.712,1.0701,2.6888,7.5154,15.2228,3.1725,4.4112,3.2786,1.483,1.4012,3.8857,11.3961,3.1538,2.19,11.4933,1.9883,2.2681,1.9667,12.3792,1.8563,3.5621,1.1341,12.9101,5.0719,8.6515,4.5628,12.6781,8.6795,7.9642,8.6637,3.2247,1.2499,4.6825,,,,,,,,,,,,,,,54,,,
-3621,1.0548,2.0387,,60-69y,Other,,,16.2906,4.1737,2.6199,1.9678,1.2588,ppmi,,,M,,0.40863,4.1479,4.0743,0.82499,8.1339,1.432,0.3618,3.1558,2.7898,43.5119,14.0914,206.452,3.3439,4.1629,1.5612,1.8427,2.9399,6.4555,1.7147,2.9251,0.44362,5.7849,9.653,14.4734,6.7935,2.2903,4.1353,1.5311,15.5561,5.6937,3.7671,1.1713,2.7106,6.3092,11.5046,3.3143,3.897,3.1899,1.5444,1.389,4.0808,10.1454,2.9572,2.0353,10.5216,2.1445,2.6112,1.961,11.7068,1.9892,3.8735,1.0937,13.3728,4.9831,7.2671,3.4452,9.051,6.0852,7.5509,6.4508,3.9533,1.5471,4.326,,,PD,0.069806,PD,,PD,0.36495,3.6581,3.5061,0.79603,8.7814,1.5853,0.35139,3.2227,3.0272,44.0031,13.8598,208.8971,3.4847,4.6008,1.5556,1.6753,3.2976,6.563,1.8047,3.0593,0.58038,5.7617,9.9073,13.5714,7.4543,2.1228,4.0793,1.5824,15.7287,4.4022,3.7198,1.0261,2.7581,6.8829,11.7233,2.7563,3.8598,3.0218,1.419,1.3426,3.8913,10.3366,2.6541,2.109,9.7151,2.0454,2.499,1.792,11.8067,1.8294,3.5995,1.0996,12.4046,4.9113,6.6073,3.8398,9.5781,6.5768,7.6041,6.795,3.25,1.4455,4.13,,,,,,,,,,,,,,,62,,,
-3622,1.6742,1.7518,,60-69y,Other,,,18.6153,4.7488,2.3681,2.0229,1.5382,ppmi,,,M,,0.5136,5.1521,4.9797,0.96702,9.7394,1.6642,0.42439,3.6393,3.3801,39.9124,13.5744,238.3874,4.615,4.9351,1.7909,2.1167,3.7627,7.8462,2.2812,3.4822,0.44842,7.2722,12.7951,13.3337,7.7642,2.5952,5.6167,1.8407,19.6045,7.02,4.2732,1.2557,2.8795,8.0248,14.8836,3.5857,4.8184,3.2809,1.7912,1.6281,5.0913,11.1534,3.5256,2.725,12.0383,2.6248,2.6489,2.3917,14.4993,2.2767,4.5842,1.3686,15.9832,6.1585,8.9009,3.4535,12.3054,7.6185,9.4211,7.7807,4.2046,1.6451,5.1086,,,,0.089844,CN,,HC,0.44484,4.034,4.5744,0.87831,10.0658,1.6765,0.43507,3.7317,3.5401,46.6131,15.1555,239.3395,4.241,5.2862,1.6799,1.9501,3.7181,7.7649,2.0818,3.6171,0.71182,7.1556,12.6414,12.0429,8.1911,2.3478,4.7552,1.785,20.022,5.9912,3.7783,1.2181,2.8958,9.329,15.8551,3.1702,4.3726,3.5938,1.6624,1.5957,4.7558,11.2256,3.2078,2.6357,10.5564,2.262,2.4086,2.1551,14.6345,1.8365,4.5542,1.3191,16.274,6.7675,7.4878,4.3314,9.9947,6.9939,9.0706,7.9151,3.6512,1.4473,4.7473,,,,,,,,,,,,,,,61,,,
-3624,1.6569,1.9026,,60-69y,Other,,,20.6552,5.4144,3.5495,2.5085,1.4447,ppmi,,,F,,0.46974,4.7892,4.3274,0.91264,9.5312,1.6076,0.39251,3.5699,3.2087,55.8758,19.4745,254.6288,4.355,5.0314,1.806,2.2353,4.0947,8.1874,2.1335,3.474,0.7188,7.5368,12.7036,12.4349,7.9988,2.2744,5.2024,1.9124,18.4631,7.2402,4.1812,1.2966,2.8655,7.4436,15.7793,3.9799,4.7873,3.5219,1.3649,1.6229,4.7721,10.8812,3.4973,2.4536,13.3431,2.3714,2.3719,2.4694,13.5236,2.0083,4.4836,1.2358,15.8641,5.5751,9.7408,3.8177,11.0567,7.6792,9.1984,8.0771,4.0266,1.8325,5.3867,,,PD,0.090737,PD,,PD,0.41802,4.1182,4.1515,0.89601,11.2461,1.8786,0.42621,3.8401,3.1925,56.3634,19.0472,258.727,3.8094,6.0411,1.7879,2.0876,3.8195,8.5853,2.1143,3.6247,0.83266,7.4821,13.2548,11.2948,8.7033,2.2096,5.0483,1.9049,18.64,5.816,3.8774,1.2227,2.5959,7.8932,16.145,3.495,5.0547,3.3041,1.5341,1.5609,4.4888,12.4844,3.068,2.4207,10.9956,2.3887,2.3645,2.2999,13.7043,2.2032,4.364,1.2153,14.8488,5.3967,8.5716,4.926,11.1182,8.2234,9.0129,8.5114,3.7973,1.6008,5.0462,,,,,,,,,,,,,,,67,,,
-3625,1.5246,3.0619,,50-59y,Other,,,17.7765,4.6445,2.511,2.117,1.7359,ppmi,,,M,,0.40226,4.397,4.3194,0.8943,9.2439,1.5245,0.35589,2.9245,2.6701,45.2038,14.8291,234.5796,4.2673,4.5092,1.6295,2.0497,3.6559,7.0043,2.1885,3.3214,0.81519,6.1004,9.9783,28.6365,6.8192,2.3195,4.551,1.8508,19.1814,6.1772,3.9113,1.1935,2.6577,6.7062,12.3115,3.6618,4.024,3.6709,1.3481,1.5017,4.3882,11.114,3.1386,2.2835,11.6074,2.3637,2.3429,2.3846,13.8217,2.1943,4.0517,1.0603,13.7279,5.395,8.7604,4.2288,11.8091,6.8753,8.1641,7.1211,3.8099,1.7546,4.7278,,,,0.078034,CN,,HC,0.36135,3.9383,3.9988,0.88941,8.6994,1.7509,0.36882,3.2185,2.8582,45.087,14.4512,234.3037,3.8538,4.7743,1.5834,2.0422,3.6946,6.9916,2.082,3.6976,0.86954,6.0949,10.6267,19.5848,7.8853,2.2993,4.5688,1.7412,18.0399,4.9743,3.5851,1.1394,2.594,7.2766,13.0525,2.7078,3.9955,3.2899,1.5944,1.44,4.2558,11.1702,2.8664,2.202,10.8273,2.5225,2.0849,2.0214,14.4603,2.0116,3.8153,1.0184,14.2045,5.1674,7.9293,4.7024,10.8436,7.2033,8.1609,7.6655,3.8329,1.587,4.417,,,,,,,,,,,,,,,59,,,
-3627,1.0765,1.7569,,70-79y,Other,,,21.9177,5.0877,2.7448,2.3304,1.0903,ppmi,,,M,,0.499,5.0525,4.9375,0.87305,10.9527,1.6703,0.42677,3.8522,3.0747,52.0256,18.4247,260.7113,4.4117,5.0962,1.7222,2.3117,4.0399,8.0009,2.3451,3.3231,0.3508,7.42,12.5469,11.0856,8.2355,2.6792,5.3251,2.0233,20.0273,7.26,4.6577,1.1451,2.3605,7.6618,15.5529,4.1411,4.9785,3.1556,1.8715,1.6481,5.1543,11.5964,3.4044,2.5954,12.5624,2.8248,3.0435,2.5097,13.2697,2.3246,4.2144,1.4741,17.3719,5.7775,9.6971,4.043,10.6981,8.4065,9.3829,8.1386,4.1522,1.8509,5.3831,,,PD,0.079807,PD,,PD,0.42962,4.839,4.5938,0.89741,10.8987,2.0239,0.43994,4.1173,3.2339,53.2,17.5583,263.2204,4.0575,5.7529,1.8596,2.0367,4.3507,8.2194,2.2709,3.5107,0.45112,7.6312,13.023,9.5619,9.0264,2.5145,5.1623,2.0095,20.1931,5.7047,4.3314,1.1675,2.7525,8.3552,14.5824,3.4568,4.7519,3.2051,1.6339,1.6205,4.7068,12.2517,3.2998,2.5959,11.2545,2.6278,2.8265,2.3113,13.3335,2.4626,4.2158,1.3647,15.0994,5.6672,8.833,5.2848,11.1094,7.9882,9.2844,8.2227,3.2856,1.9378,5.0982,,,,,,,,,,,,,,,72,,,
-3628,1.7838,1.6034,,50-59y,Other,,,15.7492,4.7452,2.5347,2.3721,1.6993,ppmi,,,M,,0.42859,4.4655,4.1272,0.83296,7.9674,1.5366,0.35863,2.6683,3.3526,43.9257,12.5989,186.2585,3.9345,4.2509,1.6462,1.7208,3.305,6.979,1.8788,3.0289,0.42177,5.5963,10.636,13.5419,6.796,2.2483,4.434,1.7442,17.5074,5.42,3.699,1.218,2.5861,7.0442,11.9755,3.0146,3.9231,2.9159,1.2391,1.3062,4.5069,10.4735,3.1731,2.3014,10.8665,2.2999,2.3731,2.3058,11.5846,1.7901,4.2295,1.1667,14.2425,4.8253,8.174,3.3047,9.9458,6.2463,7.5216,7.5317,3.5462,1.5706,3.9188,,,PD,0.070109,PD,,PD,0.40629,4.4873,4.0027,0.76405,8.8583,1.7103,0.37886,2.9186,3.4536,44.1121,12.0674,187.1205,3.7735,4.357,1.533,1.685,3.7933,6.5214,1.7901,3.0125,0.51996,6.5096,10.2505,12.7236,7.299,2.2673,4.3338,1.7146,16.4468,5.0316,3.5827,1.2009,2.4788,7.8064,12.8036,2.645,3.9516,2.9901,1.5355,1.2413,3.9162,10.8906,2.7097,2.3642,9.2157,2.0704,2.4866,1.9379,10.8045,1.5379,4.1618,1.1637,13.8009,5.0837,6.7461,3.8377,9.8623,5.7889,7.193,7.3241,3.3363,1.3079,3.7201,,,,,,,,,,,,,,,53,,,
-3629,1.0617,2.1805,,60-69y,Other,,,20.1269,5.2996,2.9255,2.5427,1.2382,ppmi,,,F,,0.49399,4.8336,4.698,1.0153,11.3317,1.9412,0.43768,3.8078,3.4404,54.1527,17.3766,231.9756,4.3332,5.5562,2.0182,2.084,3.7585,8.8621,2.1941,3.6743,0.52188,7.7878,13.3596,15.2486,8.8234,2.8303,4.805,2.0331,21.966,7.2611,4.4269,0.99954,2.5411,7.5813,15.6062,3.8458,5.3036,3.3646,1.6843,1.748,4.5368,11.4306,3.5693,2.4563,12.7212,2.3496,2.911,2.5804,13.8739,1.9571,4.9695,1.2778,16.9211,5.7691,9.4382,4.5347,12.1326,7.5311,9.433,9.7411,4.0829,1.7022,5.2685,,,PD,0.084439,PD,,PD,0.45197,4.1553,4.7788,1.0385,12.5169,1.9708,0.44998,3.8041,3.6855,54.6421,16.2935,236.338,4.2842,5.4219,2.2499,2.2671,4.0284,8.8747,2.1741,3.9644,0.72591,7.8491,13.5974,12.3123,9.7516,2.5091,5.1016,1.9301,20.7572,6.1453,4.1387,1.1174,2.8181,8.0262,16.2435,3.4823,5.2889,3.667,1.8302,1.7045,4.2036,11.297,3.5195,2.509,11.0773,1.982,2.7193,2.2972,13.1915,1.8754,4.902,1.2658,16.6242,5.538,8.9709,5.5785,11.0648,8.5046,9.1497,9.6714,4.2056,1.396,5.0014,,,,,,,,,,,,,,,61,,,
-3630,1.2522,2.0753,,60-69y,Other,,,17.012,3.9995,2.4885,2.0102,1.192,ppmi,,,F,,0.37623,4.2585,3.913,0.82395,9.2638,1.4136,0.3438,3.7982,2.813,45.5726,14.4996,213.0456,3.2988,4.8174,1.6587,1.7778,3.0519,6.9181,1.7659,3.0533,0.44668,6.3542,10.0019,12.8942,7.5517,2.162,4.5363,1.6269,17.5091,5.9354,3.5382,1.1355,2.5016,6.1944,12.7834,3.3592,4.4302,3.2358,1.3806,1.1466,4.1411,10.5437,3.1275,2.0972,12.2126,2.1921,2.5093,1.9995,11.9104,1.7091,2.756,1.0241,14.4578,5.0765,8.8202,3.9395,10.9039,6.6085,7.3477,7.475,3.6825,1.3443,4.3051,,,PD,0.073743,PD,,PD,0.35219,3.8516,4.1128,0.83373,9.0335,1.75,0.3803,3.8521,3.0938,45.5243,14.2039,218.991,3.4166,5.3836,1.7044,2.0137,3.6042,7.7661,1.8946,3.2812,0.61794,6.4036,11.2732,11.136,8.2669,2.1885,4.6622,1.7545,18.5134,5.2458,3.6655,0.97209,2.3111,7.2032,12.9752,2.91,4.2339,3.6094,1.4409,1.2093,3.9626,10.5165,2.9212,1.9677,10.0789,1.8206,2.4038,1.8305,12.2254,1.5715,3.1459,1.0622,13.6003,4.7372,7.3806,4.9144,10.4713,6.7683,7.4039,7.8391,3.709,1.2905,4.1362,,,,,,,,,,,,,,,68,,,
-3631,1.2133,1.5611,,50-59y,Other,,,17.0128,4.0835,2.271,1.9862,1.2138,ppmi,,,M,,0.40127,4.1823,3.9531,0.81518,8.226,1.3598,0.36305,3.082,2.8688,41.1853,13.6291,216.8851,3.3759,4.1963,1.5396,1.6826,3.051,6.6833,1.7605,2.9691,0.4533,5.9269,9.8388,12.1073,6.6233,2.2012,4.2871,1.5907,18.0385,5.3007,3.5194,1.028,2.4035,6.494,11.485,3.0349,3.9341,3.0053,1.3339,1.4701,3.7843,9.4495,2.8875,2.0559,10.8829,1.9474,2.4038,2.0425,11.4013,1.7909,3.8175,1.1206,12.8594,4.7997,8.4709,3.1077,9.9657,6.5001,8.0134,6.3657,3.1676,1.2689,4.4516,,,PD,0.078844,PD,,PD,0.34089,3.8418,3.7814,0.78479,9.1577,1.5689,0.36693,3.1417,2.9553,41.8074,13.1619,221.4453,3.1523,4.0636,1.5421,1.708,3.601,6.9103,1.7911,3.0986,0.44443,6.0956,9.9137,11.3679,7.3545,1.9677,4.1179,1.5542,16.5416,5.1596,3.3899,1.0681,2.7023,7.1179,11.3555,2.7271,3.8559,3.3889,1.4474,1.4011,3.3968,9.3191,2.6108,2.0478,8.8664,1.706,2.2006,1.7216,11.2959,1.3506,3.7216,1.0808,13.8329,4.7094,7.3527,3.9105,9.9277,6.1676,7.9176,6.8437,3.1183,1.1437,4.2491,,,,,,,,,,,,,,,55,,,
-3632,1.1619,1.8019,,60-69y,Other,,,21.374,4.683,2.7762,2.3014,1.2089,ppmi,,,F,,0.47543,5.0306,4.7911,1.0034,10.1167,1.7259,0.38796,3.4523,3.26,50.7848,17.863,269.4048,4.3527,5.0599,1.816,2.2523,3.9919,7.8655,2.3406,3.5759,0.49666,6.956,11.5717,17.5701,8.1398,2.6545,5.2845,2.0405,19.7544,6.877,4.3757,1.4109,3.0466,7.3993,13.5537,3.8361,4.6588,3.7571,1.6868,1.6657,4.9874,12.1059,3.3727,2.4838,12.6866,2.6665,2.6273,2.466,14.5229,2.2252,4.0816,1.271,16.9161,6.6977,8.7308,4.1388,12.4431,7.2765,8.965,7.936,4.0212,1.7808,5.1537,,,PD,0.07889,PD,,PD,0.43285,4.6442,4.5141,1.0006,10.0834,1.8625,0.40362,3.6893,3.4143,49.5113,16.861,273.8852,4.2497,5.3888,1.8716,2.2377,4.5666,7.9756,2.3348,3.8745,0.58628,7.3634,12.4472,14.3722,9.0272,2.3192,5.3487,2.0585,20.9444,5.4025,4.1773,1.3061,3.2353,8.3934,15.2107,3.3792,4.3766,3.5208,1.6163,1.6311,4.5657,11.2729,3.325,2.4009,10.9647,2.3958,2.349,2.1356,15.3658,2.074,4.053,1.2817,18.0162,6.2703,8.9269,4.7965,11.1525,8.2922,8.9945,8.565,3.6843,1.5018,5.0303,,,,,,,,,,,,,,,69,,,
-3633,1.2083,1.8111,,-50y,Other,,,16.5013,4.5077,2.0999,1.8972,1.0505,ppmi,,,M,,0.34401,4.2016,3.5616,0.78742,7.7359,1.3677,0.31567,3.0766,2.2547,40.1883,13.8741,195.542,3.4485,4.3074,1.587,1.5956,3.2087,6.3887,1.6996,2.8574,0.34281,5.5304,9.1968,8.5053,6.4286,2.0431,4.2722,1.6453,17.8291,4.7923,3.3023,0.94695,2.2977,6.5528,11.2158,3.0139,3.7539,2.9796,1.2448,1.2677,3.9414,9.2113,3.0184,1.9876,11.6038,1.9725,2.2101,1.9675,11.0975,1.6928,3.5996,0.92091,13.9955,4.8543,8.5832,3.0315,10.19,6.4783,7.413,6.9981,3.1501,1.3193,4.1197,,,PD,0.067383,PD,,PD,0.31767,3.5349,3.663,0.77366,8.9891,1.5543,0.32681,3.2237,2.3374,40.421,13.1819,200.7832,3.2055,4.4689,1.4946,1.7085,3.5573,6.4216,1.6685,3.1052,0.59211,5.8591,9.7229,7.7733,7.5073,1.9635,4.1461,1.5318,17.4773,4.3847,3.2944,0.94589,2.3072,7.1866,11.3925,2.7395,3.8378,3.0699,1.3017,1.3264,3.7011,9.6017,2.5686,2.0005,9.406,1.9859,2.1559,1.7613,11.1358,1.7331,3.6373,0.95807,13.0549,5.0131,7.436,4.0943,9.0462,6.3917,6.999,6.7743,3.0817,1.383,3.9416,,,,,,,,,,,,,,,43,,,
-3634,0.83462,1.9951,,50-59y,Other,,,19.5391,5.3565,3.1085,2.5099,1.1102,ppmi,,,M,,0.56476,5.7357,4.7512,1.0268,10.7776,1.9061,0.43074,3.108,3.7316,56.9266,17.5124,284.9081,5.021,4.83,1.9612,2.2173,4.1347,9.1757,2.3266,3.9829,0.56292,7.3832,13.5088,13.3284,8.4091,2.8777,5.6723,2.2757,23.0471,7.0703,4.4185,1.2653,3.0683,8.5578,16.0309,3.6439,4.9532,4.2198,1.788,1.8586,5.384,12.2681,3.809,2.7567,13.7626,3.3058,2.7996,2.5033,14.691,2.7166,4.9253,1.3483,17.9803,6.4902,10.9889,4.2404,12.3237,8.8125,9.5024,8.4865,4.5862,2.0535,5.3939,,,,0.081087,CN,,HC,0.53488,4.9561,4.4658,1.0166,12.9988,1.9688,0.43737,3.1292,3.8268,55.6111,17.2706,284.8769,4.5453,5.006,1.9752,2.2058,4.1298,9.1897,2.2498,3.9493,0.47463,8.1165,13.7391,10.279,9.697,2.5745,5.7687,2.0357,22.8102,6.4458,4.169,1.4933,3.4837,9.4395,16.9912,3.5071,5.2759,4.3625,1.747,1.8045,4.7577,11.9463,3.5154,2.6975,11.8299,2.5453,2.6896,2.2869,15.1623,2.2585,4.8507,1.2593,17.2959,6.6004,9.2501,4.5993,11.3451,8.7809,9.1825,9.1255,4.3934,1.7376,5.0567,,,,,,,,,,,,,,,57,,,
-3635,0.88757,2.1485,,60-69y,Other,,,23.0543,4.6271,2.942,2.3991,1.1239,ppmi,,,M,,0.53154,5.3189,5.0332,1.0249,12.2692,1.9161,0.43497,3.1712,3.604,54.3944,20.4606,290.5112,4.3154,5.2304,2.0328,2.2015,3.9799,8.8594,2.3005,3.5618,0.45138,7.5655,13.4082,13.0446,8.0363,2.7603,5.26,2.0985,19.7242,7.4918,4.5572,1.3251,2.8143,7.7394,16.0274,3.8123,4.8364,3.7928,1.6476,1.8367,5.2468,12.4655,3.5153,2.6314,13.8919,2.7887,2.8086,2.5112,14.0556,2.445,5.0638,1.316,15.6296,5.9111,11.1865,4.1618,12.3947,8.5781,10.0799,8.5065,3.9842,1.857,5.9301,,,,0.091632,CN,,HC,0.48558,4.5179,4.8977,1.0866,12.689,1.9636,0.46121,3.4714,3.8489,54.1904,19.5101,295.7018,4.4171,5.3157,2.1698,2.1731,4.2807,9.5919,2.2457,3.8464,0.53022,7.0298,13.9232,12.255,9.0667,2.5656,4.8552,1.9973,20.7875,6.4475,4.135,1.3159,2.8994,8.9752,17.1071,2.9802,4.7568,3.4112,1.7919,1.8055,4.8523,12.3803,3.5379,2.6224,13.1439,2.3764,2.6879,2.3839,14.7109,2.0056,5.1062,1.2427,15.8195,6.1835,9.463,4.4819,13.5312,8.6956,9.873,9.254,3.7396,1.6384,5.6623,,,,,,,,,,,,,,,64,,,
-3636,1.1335,1.8788,,50-59y,Other,,,19.3987,5.3567,2.6902,2.4778,1.1648,ppmi,,,M,,0.4224,4.1742,4.5387,0.97111,9.8583,1.6073,0.38993,3.5314,2.8664,49.5874,17.6577,241.1442,3.8079,4.5159,1.9392,2.2426,3.593,8.3646,1.9269,3.4446,0.4874,6.8987,12.5555,8.9579,8.1753,2.5394,4.8951,1.6829,16.1662,6.5445,3.9459,1.3055,2.6496,6.7706,15.0838,3.417,4.8465,3.5645,1.6012,1.5471,4.3274,10.2518,3.4833,2.2713,12.515,2.2359,2.8121,2.4461,12.9633,2.1349,4.3607,1.1268,15.984,5.1187,10.5965,3.6865,11.0786,8.0017,8.6831,8.7844,3.5563,1.6241,5.0075,,,,0.081332,CN,,HC,0.41113,3.4957,4.3289,0.92444,11.705,1.7556,0.41244,3.7646,3.0285,50.2957,16.9481,246.321,3.7671,4.7738,1.8193,2.02,3.8205,8.3092,2.127,3.7806,0.5875,6.9152,12.8751,10.6637,9.3618,2.2575,4.4736,1.7633,17.0935,5.7771,3.9928,0.92754,2.1406,7.6651,16.1088,2.924,4.7456,3.6274,1.5775,1.5459,4.1139,10.6082,3.2315,2.2946,11.0647,2.4346,2.6337,2.1646,12.214,2.3777,4.3732,1.1274,15.225,5.0436,9.9918,4.3051,11.39,8.8724,8.507,8.498,3.4205,1.6561,4.8558,,,,,,,,,,,,,,,57,,,
-3637,1.2208,2.2154,,60-69y,Other,,,17.0089,4.166,2.5062,2.0611,0.8819,ppmi,,,M,,0.41324,4.3599,3.9702,0.88482,8.394,1.4445,0.37031,2.8192,2.9099,45.7104,14.6698,206.6889,3.5396,3.8662,1.5817,1.9077,3.5098,6.6142,1.8874,3.3092,0.41,6.8456,10.3246,10.1058,6.7374,2.1098,4.7658,1.6761,18.1522,6.1031,3.5171,1.1229,2.5347,6.628,12.72,3.2893,4.0267,2.9345,1.2915,1.3666,4.2577,9.0966,2.9704,1.9776,11.4054,2.169,2.19,1.8056,12.5514,1.7292,4.2532,1.0761,14.9247,4.975,8.2749,3.4883,8.7763,6.4796,7.8767,6.5975,3.2759,1.2212,4.4931,,,PD,0.067203,PD,,PD,0.38574,4.3042,3.9674,0.88592,9.594,1.6181,0.3864,2.8,2.9653,46.6633,14.185,207.1414,3.4402,4.3043,1.6992,1.788,3.895,6.788,2.0006,3.6061,0.50556,6.0122,10.8222,7.4285,7.396,2.0257,4.7778,1.6334,18.489,4.6891,3.4692,1.0912,2.4102,7.272,12.4444,2.6473,4.0236,3.0012,1.2868,1.3234,3.8167,9.2362,2.9396,1.9179,10.5999,1.5916,2.2069,1.5561,11.3671,1.3207,4.2223,1.0234,14.2542,5.2123,7.0999,3.7568,9.1203,5.7383,7.7002,6.9401,3.1115,1.0248,4.2919,,,,,,,,,,,,,,,66,,,
-3638,1.8434,2.6092,,60-69y,Other,,,20.3211,5.4358,3.305,2.3951,1.7793,ppmi,,,F,,0.48962,5.4307,4.6347,1.0007,11.1488,1.8165,0.40671,3.5359,3.5888,54.1414,18.2333,288.481,4.8693,5.2877,2.0395,2.3884,4.2611,8.7702,2.3461,4.012,0.57872,7.2535,13.5805,20.4134,8.367,2.6264,5.6186,2.231,21.2277,6.9691,4.3399,1.3199,2.8183,8.2906,16.944,4.2032,5.083,4.112,1.6913,1.7585,5.5243,12.9831,3.8625,2.6522,13.5686,2.9703,2.6331,2.6821,13.6898,2.5457,4.7459,1.3982,16.6483,6.1905,11.6613,4.4249,13.9539,8.4879,9.3554,9.5826,4.4358,1.9445,5.3085,,,PD,0.096084,PD,,PD,0.46503,4.4248,4.643,0.93701,12.8167,2.1825,0.4302,3.4257,3.9199,53.0831,17.7118,290.1948,4.8297,5.2555,1.9153,2.1957,4.5976,9.1301,2.5615,3.7445,0.67499,8.391,13.9481,20.1027,8.69,2.7483,5.4872,2.3267,20.7425,6.7619,4.595,1.3904,3.0407,9.9785,16.6696,3.8302,5.0194,4.4223,1.9756,1.6864,5.0241,12.5277,3.3456,2.8439,12.2638,3.1798,2.5919,2.7318,13.6622,2.5788,4.8671,1.4026,16.9718,5.9906,9.7954,4.9666,12.5024,9.1071,9.3275,9.548,4.3187,2.138,5.0106,,,,,,,,,,,,,,,67,,,
-3650,2.6659,2.7975,,70-79y,Other,,,19.41,5.1728,2.8153,2.1349,2.5009,ppmi,,,M,,0.54917,4.9653,4.5661,0.90082,10.4236,1.6517,0.43893,3.2061,4.617,48.3595,14.9687,237.1674,4.5464,4.5,1.7448,2.0481,3.7763,7.7423,2.0795,3.4988,0.61733,5.9934,12.5972,31.2558,7.4008,2.5744,5.2563,1.9438,19.9537,6.5851,4.3167,1.1928,2.5894,7.2706,15.4459,3.0506,4.0062,3.7065,1.5665,1.6471,5.1939,10.9429,3.4514,2.5627,13.6576,2.3652,2.7735,2.7293,14.1565,2.2437,5.3546,1.2325,16.0843,5.7135,10.4164,3.3596,12.0866,9.2529,9.1416,8.3987,3.7647,1.7511,5.2095,,,,0.084716,CN,,HC,0.46207,3.9998,4.7382,0.86342,10.9299,1.8823,0.42091,3.2964,5.7645,49.0068,14.8389,245.1629,4.7149,5.225,1.76,2.0359,4.0758,8.07,2.0949,3.8476,1.0895,7.3831,12.7463,37.2662,8.3656,2.5172,4.9619,1.8435,19.2059,5.3615,4.0069,1.1415,2.8084,8.465,15.6495,3.2029,4.5278,3.5473,1.7519,1.7283,4.4387,11.3647,3.2206,2.8043,11.7998,2.3863,2.617,2.5596,13.7943,2.109,5,1.2419,16.297,5.7012,10.2314,4.4413,12.7046,9.3055,9.0597,8.479,3.6926,1.6554,5.029,,,,,,,,,,,,,,,77,,,
-3651,2.047,2.3842,,+80y,Other,,,22.9151,5.2141,3.0656,2.4309,1.4958,ppmi,,,F,,0.42631,4.9625,4.4708,1.0303,9.4834,1.4619,0.39672,2.9182,3.0016,53.1161,17.4776,238.4158,4.4416,4.4911,1.8603,2.0231,3.5557,7.3566,2.1609,3.678,1.0062,6.4639,11.7443,22.0969,7.559,2.3259,5.1709,1.8186,17.6103,5.5773,3.9463,1.2216,2.8897,7.4518,15.292,3.0856,4.3985,3.1386,1.5846,1.6089,4.5778,10.7996,3.6296,2.6977,11.6572,2.1908,2.4734,2.6507,13.2061,1.9747,4.285,1.3062,16.6512,5.9057,9.6821,3.2037,11.1104,7.9007,8.5932,8.2495,3.8025,1.6388,5.6366,,,PD,0.09018,PD,,PD,0.38789,4.0385,4.0788,0.88507,10.1445,1.6734,0.41508,3.0909,3.1387,54.0023,17.1839,242.9249,4.0396,4.7217,1.7046,1.8632,4.206,7.6575,2.3253,3.6058,1.0134,7.24,11.8192,22.8094,8.1051,2.1924,5.2082,1.9258,18.8492,5.2051,3.8026,1.1175,2.9883,8.4857,14.7339,2.7701,4.6612,3.2396,1.5289,1.5835,3.911,11.2906,3.1858,2.4764,9.5723,2.5513,2.2704,2.295,11.7389,2.179,4.1149,1.2377,15.7309,5.7818,8.7134,4.2067,10.3898,8.8232,8.3106,8.1396,3.4345,1.7556,5.4058,,,,,,,,,,,,,,,80,,,
-3653,1.1853,1.5172,,-50y,Other,,,17.3576,4.025,2.5215,1.9069,0.86631,ppmi,,,F,,0.37437,4.0028,3.9446,0.81287,8.0293,1.3847,0.3585,2.7646,2.6188,42.0121,13.3955,194.0659,3.7201,3.9885,1.5184,1.92,3.1437,6.0553,1.7356,2.971,0.55834,5.5089,9.4235,11.5078,6.2215,2.2485,4.5124,1.4949,18.016,5.2859,3.466,0.92892,2.2314,6.2934,11.4957,2.7525,3.6656,3.0103,1.3682,1.1754,3.9609,9.8163,2.7731,2.0458,10.9158,2.2037,2.1154,2.1717,11.5603,1.7618,3.8349,1.0684,13.7749,5.2458,7.5775,3.0183,9.9273,6.2065,7.1318,7.3865,3.7658,1.5061,4.1423,,,PD,0.071305,PD,,PD,0.33167,3.7162,3.6094,0.77865,8.5071,1.3572,0.3654,2.9416,2.7779,42.7743,13.3624,198.3735,3.6904,4.4839,1.4836,1.7713,3.4789,6.3104,1.7577,3.0686,0.50705,5.5736,9.647,10.1169,6.8417,1.816,4.5093,1.5597,16.5225,4.444,3.2096,0.8944,2.3393,7.4088,12.0392,2.3605,3.6889,2.877,1.3492,1.2006,3.6203,9.6126,2.5608,1.9791,9.3141,2.0794,2.0702,1.7432,12.1597,1.7962,3.8585,1.0089,13.7963,5.0384,6.5676,3.7233,9.0006,6.6572,6.9833,7.1543,3.1301,1.4074,3.9845,,,,,,,,,,,,,,,48,,,
-3654,0.74837,2.0591,,70-79y,Other,,,21.1968,5.1089,2.847,2.2352,0.89511,ppmi,,,M,,0.49533,4.4062,4.1872,0.90348,9.4563,1.615,0.40121,2.5379,3.3492,49.2022,17.5629,238.0449,3.7615,3.9778,1.6336,2.012,3.5993,7.5971,2.1813,3.4796,0.45172,5.754,11.7113,7.6548,7.1106,2.5615,5.1592,1.7697,18.7936,6.0269,4.1998,1.2014,2.7591,6.9257,15.0159,3.0664,3.9362,3.1206,1.759,1.5781,4.6615,10.1948,3.1864,2.1526,11.1695,2.2432,2.6212,2.0441,12.889,1.7266,4.2821,1.1685,16.0147,5.8606,9.0917,3.8675,10.7076,7.2913,8.4391,8.2197,4.0362,1.3954,5.2232,,,,0.085292,CN,,HC,0.45032,3.8757,3.9913,0.8847,10.2978,1.8568,0.41541,2.6353,3.5566,49.2138,17.2209,241.4136,4.0951,3.8058,1.6608,2.0726,3.8283,7.5879,2.3798,3.539,0.39465,6.5509,11.3216,7.7591,7.4892,2.2632,5.1114,1.9917,18.0196,5.1724,4.1987,1.2074,2.8444,8.3944,14.4602,2.7219,3.7536,3.9951,1.4797,1.6212,3.9926,9.5161,2.9287,2.0939,10.9701,2.0905,2.371,1.9171,13.0445,2.0461,4.2212,1.1584,15.0859,5.8712,8.8061,4.1775,10.6927,8.2262,8.0974,7.6249,3.6486,1.4548,4.9928,,,,,,,,,,,,,,,79,,,
-3656,1.3326,1.902,,70-79y,Other,,,19.9476,4.8092,2.9866,2.1756,1.424,ppmi,,,M,,0.51371,5.7902,4.8409,1.0691,10.9409,1.7148,0.41957,3.3863,3.1988,51.3039,15.2453,233.0082,4.6402,4.2864,2.076,2.2618,4.3166,8.3058,2.4519,3.5307,0.44977,6.4762,12.4161,16.9951,8.2159,2.5044,5.2438,2.2996,20.606,6.2046,4.4167,1.3918,3.2165,9.234,15.9745,3.5261,4.5304,3.6287,1.5581,1.5411,5.4026,12.8477,3.9262,2.7831,13.9244,2.7536,2.7485,2.6776,13.2845,2.1885,4.6823,1.3828,17.3331,6.7684,9.701,3.6661,12.1589,8.328,8.0037,9.7757,3.8912,1.7178,5.0094,,,PD,0.081187,PD,,PD,0.46317,4.8134,4.7482,1.0447,11.2006,1.967,0.43031,3.4709,3.5034,51.1156,14.9175,237.7175,4.559,4.7649,2.1685,2.178,4.8065,8.4229,2.3904,3.6951,0.52584,7.5455,12.6052,18.7318,8.7345,2.3843,4.9076,2.1589,21.4369,6.0307,4.2161,1.4101,3.3193,10.7729,15.4985,3.2791,4.7018,3.6689,1.642,1.5233,4.8661,12.4072,3.5554,2.829,13.4503,2.3777,2.4487,2.4746,14.2297,1.9317,4.6349,1.2678,17.9751,6.9892,8.5296,4.5866,11.9086,7.7458,7.4944,9.3816,3.845,1.583,4.903,,,,,,,,,,,,,,,70,,,
-3657,1.0628,1.7647,,50-59y,Other,,,21.8117,5.2516,2.9774,2.4597,1.1767,ppmi,,,M,,0.47762,5.185,4.5459,1.0346,10.1754,1.9611,0.391,3.3829,3.2749,49.755,17.8122,284.336,4.4031,5.1679,2.0155,2.3341,4.6805,8.0286,2.4453,3.4586,0.46476,7.009,12.8837,14.3769,7.7558,2.6579,5.5574,2.1496,24.2365,7.1718,4.6851,1.0564,2.5722,8.1718,15.6965,4.381,4.3929,3.6437,1.6583,1.638,4.749,11.2996,3.5205,2.5104,12.8917,2.5599,2.4268,2.4617,13.1532,2.2013,4.508,1.3038,18.2759,5.7601,9.3296,4.3102,10.882,8.3352,9.1439,9.0178,4.6305,1.7206,5.4806,,,,0.073893,CN,,HC,0.41747,4.4183,4.1732,1.0026,11.9788,2.3491,0.40129,3.3592,3.2635,50.1848,17.443,283.7447,4.1209,5.2976,2.0195,2.1143,5.2117,8.4146,2.5551,3.6249,0.49576,7.0373,13.1773,14.9477,8.4676,2.7042,5.2179,2.1796,23.1741,5.7639,4.7113,1.1309,2.4968,8.7776,16.5556,3.2487,4.3224,4,1.7613,1.6585,4.239,11.3238,3.2923,2.3843,10.9963,2.3868,2.5719,2.292,13.1245,2.0717,4.1769,1.2374,19.2195,5.9052,8.6676,4.6286,10.9091,8.6382,8.5399,9.2152,4.1212,1.6602,5.2301,,,,,,,,,,,,,,,58,,,
-3658,1.195,2.2118,,70-79y,Other,,,19.2801,4.7847,2.6432,2.0763,1.306,ppmi,,,M,,0.44458,5.5525,4.7997,0.96401,9.2047,1.7522,0.41182,3.7768,2.8129,48.2272,15.5097,241.563,4.2693,5.7701,1.8906,2.2439,3.8209,7.9364,2.2779,3.3755,0.38077,6.4865,11.6227,15.2,8.3183,2.6198,5.7698,2.0034,21.8975,6.0578,4.4378,1.2245,3.0126,8.6065,13.9408,4.1116,4.6478,3.7687,1.7731,1.3984,5.2153,11.6355,3.6023,2.4912,11.8826,2.9665,2.8279,2.4147,13.1526,2.6238,4.181,1.2666,16.527,6.6035,10.2779,4.5597,11.8497,7.9815,8.0101,9.3645,4.4997,1.8546,4.8688,,,PD,0.07383,PD,,PD,0.42186,4.7272,4.6381,0.94755,10.3915,1.9351,0.42087,3.8099,2.9866,47.5988,14.7029,243.5036,4.3921,5.5307,1.977,2.0864,4.0911,7.9755,2.2941,3.551,0.42633,6.9274,12.2672,14.7577,9.0435,2.5334,5.6872,2.1287,20.4031,5.5291,4.0726,1.3092,3.2529,9.8933,15.3186,3.4423,4.6076,3.7382,1.6868,1.3854,4.4969,11.2889,3.3642,2.574,11.3239,2.2898,2.5962,2.2339,14.2774,1.962,4.1019,1.2464,16.2535,6.8036,8.6002,4.7323,11.6164,8.0942,7.8583,9.6158,4.2089,1.6234,4.6861,,,,,,,,,,,,,,,71,,,
-3659,2.1006,1.9958,,70-79y,Other,,,20.9381,5.0647,3.0313,2.4179,1.8014,ppmi,,,F,,0.44452,4.7985,4.2484,0.89863,8.6771,1.5239,0.38927,3.7211,3.3496,51.1333,17.1396,251.3916,4.493,4.9046,1.6111,2.0079,3.8116,7.3721,2.1635,3.3437,0.7629,6.8299,12.0231,22.7234,7.4849,2.2803,5.1084,1.9271,19.6065,5.6806,4.1013,1.214,2.8243,7.275,14.6897,3.3735,4.5985,3.8646,1.4025,1.5093,4.5987,10.7996,3.1697,2.4243,12.0787,2.4641,2.5704,2.4282,13.0599,2.2491,4.2291,1.2867,15.4134,5.3807,9.9295,3.6412,10.1918,7.9722,8.8049,7.6055,3.858,1.8471,5.197,,,PD,0.09431,PD,,PD,0.38955,4.4183,4.0121,0.78674,10.8015,1.8673,0.38537,3.6785,3.7816,50.6811,16.6075,251.65,3.9416,5.0273,1.4415,1.8082,4.032,7.556,2.0954,3.2929,1.2913,7.0646,11.4416,20.9464,8.2725,2.3812,5.0034,1.896,19.0941,5.557,3.907,1.0996,2.7175,8.2356,14.3578,3.2575,4.3287,3.3827,1.6422,1.5411,4.0902,10.7597,2.811,2.2539,10.4359,2.2307,2.5661,2.1026,13.3842,2.0212,4.0167,1.179,14.6608,5.394,8.1901,4.3288,9.9716,8.3352,8.2112,8.0591,3.2891,1.5717,4.9895,,,,,,,,,,,,,,,76,,,
-3660,1.5014,2.0401,,60-69y,Other,,,16.8287,4.2161,2.4147,2.0154,1.3963,ppmi,,,F,,0.41711,4.6203,4.304,0.83163,9.4258,1.6345,0.39651,3.0971,2.7481,43.9109,13.2843,220.1,3.8981,4.4947,1.5854,1.8384,3.699,7.0898,2.0043,3.1598,0.46855,6.2172,10.5814,14.3427,6.9838,2.4573,4.7281,1.7992,18.5872,6.2851,4.0317,1.1391,2.9341,7.0986,13.3053,3.4776,3.9728,3.0629,1.4431,1.2689,4.6292,10.6155,3.0644,2.3607,12.2477,2.2247,2.5491,2.1884,12.9505,1.9926,4.3615,1.2417,14.3802,5.643,9.1518,3.6331,10.3142,7.6658,7.7305,7.5316,3.7883,1.5672,4.299,,,PD,0.076837,PD,,PD,0.36623,3.6844,4.0943,0.68476,10.0989,1.8357,0.37067,3.1584,2.8719,43.448,12.7784,219.8204,4.0171,4.7643,1.3599,1.9126,4.0273,6.8292,2.0484,3.0352,0.76253,6.5964,10.9911,14.259,7.3417,2.2394,4.24,1.7637,18.9101,5.6584,3.9988,1.0776,2.6172,8.614,13.796,2.8243,3.91,3.5964,1.5265,1.281,4.1759,11.092,2.5858,2.2619,10.5356,2.0515,2.3009,1.9899,11.956,1.6881,4.0128,1.1803,14.2785,5.4691,8.2236,4.3689,10.3336,6.8088,7.298,7.0898,3.7054,1.3941,4.0716,,,,,,,,,,,,,,,61,,,
-3661,1.344,1.8826,,50-59y,Other,,,18.7878,4.9229,2.862,2.3328,1.4401,ppmi,,,M,,0.45823,4.9508,3.9433,0.93579,9.603,1.8112,0.39586,3.3501,3.3324,49.6912,14.9165,232.9129,4.0336,4.9473,1.8305,1.8537,4.0103,7.6751,2.2492,3.2375,0.49291,7.2928,12.0897,25.4155,8.1467,2.5892,5.1062,2.0931,19.8356,6.0774,4.4054,1.2718,2.7945,7.3374,14.8879,3.9827,4.9137,3.3976,1.5481,1.4479,4.8133,11.2218,3.2784,2.0715,13.3492,2.0551,2.6541,2.0693,13.889,1.5459,4.2302,1.2017,14.8597,5.2784,9.388,3.7336,10.5518,7.2366,8.129,8.101,3.7957,1.2692,4.7299,,,,0.063302,CN,,HC,0.4077,4.3375,4.1498,0.89994,11.3965,1.9306,0.40581,3.4253,3.469,48.6345,14.0297,236.7858,3.8097,5.2848,1.7306,1.9342,4.0565,7.4442,2.2296,3.3759,0.44869,6.6722,11.0361,20.5171,9.5446,2.3359,4.9108,2.0593,19.7648,5.3105,4.1709,1.1424,2.7176,8.2777,13.8839,3.2619,4.6979,3.1078,1.6271,1.4747,4.3122,11.3599,3.1131,2.2639,11.3776,1.9238,2.5301,1.9791,12.8228,1.5494,4.0836,1.2094,16.3353,5.644,7.9633,4.9427,11.3549,7.6799,8.1074,8.2812,3.5589,1.3072,4.5445,,,,,,,,,,,,,,,58,,,
-3662,1.8633,1.8132,,60-69y,Other,,,21.2342,5.8449,3.0907,2.5602,1.4267,ppmi,,,F,,0.49258,4.777,4.579,0.8885,10.0655,1.7862,0.44467,3.2866,3.503,52.8378,17.9139,251.8286,4.2012,4.7825,1.7845,2.2884,4.0822,7.7526,2.457,3.5283,0.5385,6.529,12.1998,13.7461,7.4338,2.7053,5.2824,2.0521,18.8174,6.3442,4.6001,1.1106,2.5708,7.3771,14.9107,3.8472,4.283,3.5449,1.6413,1.7383,4.9514,11.3264,3.2698,2.4732,11.7632,2.4451,2.6191,2.4901,15.4035,2.2593,4.5622,1.4617,16.0158,5.4929,9.606,3.9615,11.36,7.9401,9.4129,8.8574,4.2868,1.7072,5.6421,,,PD,0.09033,PD,,PD,0.41957,4.3362,4.6571,0.90612,10.7998,1.9964,0.43277,3.3258,3.7048,53.0577,17.2837,257.5621,3.831,5.2109,1.8803,2.2682,4.2569,8.0991,2.3471,3.7897,0.62993,7.3376,12.9756,15.6094,8.0421,2.595,5.0143,2.0004,19.7076,5.8777,4.2642,1.2638,2.9766,8.4229,15.147,3.3323,4.4261,3.5639,1.7438,1.7461,4.5738,11.4173,3.1638,2.5024,10.4532,2.5727,2.6732,2.2989,15.8038,2.3832,4.3455,1.3136,15.3672,5.3314,8.5383,4.8398,11.1202,8.3261,8.9574,8.9788,3.9397,1.5971,5.4148,,,,,,,,,,,,,,,62,,,
-3664,0.82898,1.5321,,70-79y,Other,,,15.9399,4.9853,2.7899,2.1317,1.0136,ppmi,,,M,,0.39988,3.8248,3.6705,0.83669,9.0953,1.544,0.34711,3.1229,2.8881,45.3105,12.715,195.8748,3.3918,4.6282,1.6755,1.9398,2.922,7.2097,1.8725,3.01,0.31599,5.992,10.9532,11.0235,7.3593,2.3174,4.0996,1.5328,15.1889,6.0003,3.7826,0.94882,2.2026,5.7894,13.616,3.5696,4.1242,3.1342,1.4584,1.2418,4.0468,10.1499,3.1402,1.9767,10.4446,2.1212,2.3538,1.8345,10.8912,1.7707,3.5679,1.0824,13.6452,4.4402,8.041,3.804,10.0771,6.2288,7.1517,7.1173,3.8488,1.4226,4.136,,,PD,0.067366,PD,,PD,0.36169,3.1818,3.3653,0.83472,9.1469,1.8723,0.35994,3.1489,2.9056,45.1463,12.9565,200.6099,3.4838,4.7382,1.612,1.7193,3.333,7.2786,1.9812,3.2688,0.4819,5.934,11.2655,9.9484,7.8549,2.331,3.8225,1.5211,16.2537,4.5912,4.019,0.94387,2.2216,6.5851,14.1233,2.7199,3.9091,3.02,1.5605,1.2397,3.7402,10.4757,2.9861,1.9443,9.8598,1.9844,2.3389,1.6013,10.9729,1.7006,3.5629,1.0523,12.9146,4.1578,8.4417,4.2003,10.2457,6.8187,6.9013,7.5673,3.2684,1.282,4.013,,,,,,,,,,,,,,,77,,,
-3665,2.1161,2.4067,,50-59y,Other,,,19.123,5.5965,3.0707,2.3208,1.9828,ppmi,,,M,,0.44534,4.6365,4.4222,0.83545,9.0759,1.6152,0.4054,3.38,3.0917,50.9156,15.7664,231.6481,3.5737,4.2367,1.6145,1.639,3.7366,7.6286,2.0761,3.2265,1.117,6.811,10.8878,34.1944,7.3864,2.3367,4.451,1.7333,18.0093,6.6088,4.0971,1.0627,2.3064,6.8329,12.0654,3.9832,4.4173,2.8406,1.3752,1.4669,4.6639,10.5376,3.1874,2.5397,10.1085,2.0063,2.4153,2.2974,11.1733,1.8707,4.1688,1.3571,14.4047,5.0212,8.6809,3.4947,10.3489,7.12,8.4968,7.9246,3.4421,1.5091,4.9822,,,PD,0.087912,PD,,PD,0.43407,3.8499,4.235,0.86008,10.4129,1.7701,0.41294,3.4078,3.4492,49.1642,15.4206,236.0412,3.4942,4.3601,1.673,1.6987,3.9928,7.5382,1.9815,3.5544,1.1223,6.8049,11.2515,26.4763,7.9179,2.121,4.1696,1.8109,18.0315,6.1371,3.7777,1.0923,2.3437,8.0811,13.5984,3.3151,4.3163,3.5655,1.4232,1.4523,4.281,10.3147,2.9657,2.6027,9.2055,2.173,2.2464,2.331,10.3877,2.0513,4.1613,1.3859,14.3573,5.1188,7.9913,4.2039,10.0311,7.5339,8.4261,8.1081,3.3741,1.5633,4.9316,,,,,,,,,,,,,,,52,,,
-3666,1.1124,1.9398,,70-79y,Other,,,22.8592,5.2041,2.9585,2.1639,1.1266,ppmi,,,M,,0.46881,4.7316,4.6452,1.001,8.1453,1.7048,0.4136,3.3703,3.0696,50.0013,18.2154,271.1956,4.0791,4.9626,1.7404,2.0654,3.7365,8.1344,2.2179,3.5494,0.4994,6.6138,12.5288,8.5263,7.6484,2.6235,4.6264,1.8987,20.7834,5.7461,4.3402,1.0623,2.822,7.2861,13.9154,3.4961,4.5227,3.6961,1.666,1.7869,4.2127,10.4005,3.3972,2.3881,12.953,2.5178,2.7642,2.4697,14.5567,2.3098,4.3244,1.2763,15.9213,5.7389,8.4763,3.5365,10.4699,7.5489,9.3534,8.6863,4.2224,1.886,5.7664,,,,0.083756,CN,,HC,0.42916,4.2894,4.2279,0.99076,9.9749,2.0586,0.41131,3.1482,3.0074,49.504,17.8137,277.1395,3.778,4.7392,1.8712,2.1081,4.0406,7.8699,2.2283,3.7614,0.5479,6.6765,12.383,5.675,7.7683,2.6719,4.5847,1.9043,19.1634,5.307,4.0204,1.3097,3.0737,8.0396,15.2913,3.1312,4.2721,3.5133,1.8237,1.7947,4.1438,10.2445,3.2148,2.2682,11.6778,2.0204,2.6922,2.2233,14.5789,2.0318,4.193,1.2302,17.4846,5.5446,7.5864,4.7094,10.8518,7.9214,8.9507,8.6961,3.9174,1.5153,5.5018,,,,,,,,,,,,,,,76,,,
-3668,1.5363,1.9134,,60-69y,Other,,,20.8979,5.269,2.6111,2.2874,1.3725,ppmi,,,F,,0.47913,4.234,4.5475,0.8289,8.9251,1.6653,0.40083,2.979,3.3618,47.8211,17.2771,227.5582,3.7234,4.1893,1.6718,2.1717,3.5703,7.3215,2.0381,3.1672,0.44957,6.2055,11.4868,15.2921,7.4021,2.4926,4.5535,1.7155,18.8336,6.1819,4.1338,1.0842,2.484,6.7972,14.2019,3.3889,4.2491,3.1669,1.6489,1.5715,5.3651,12.5413,3.4135,2.3901,11.5362,2.4249,2.5893,2.3079,12.7171,2.1511,4.1921,1.2517,13.9022,5.0416,8.8981,3.8496,11.5841,7.4334,8.0775,8.003,4.3732,1.7023,5.1445,,,PD,0.083264,PD,,PD,0.4062,4.0744,4.4499,0.8683,9.8451,1.8802,0.38949,3.3083,3.4975,48.0288,16.8221,230.393,3.8784,4.4094,1.8472,2.1265,3.7719,7.6509,2.0847,3.4919,0.53825,7.2553,12.1534,11.9577,8.1637,2.2578,4.484,1.6883,17.5224,5.413,4.0218,0.95563,2.468,7.4065,14.5811,2.7548,4.5393,3.6118,1.5079,1.5297,4.6312,12.1194,3.1667,2.4107,9.8806,2.1502,2.3524,2.1781,12.4091,1.7143,4.099,1.1571,13.9505,5.1839,7.8514,4.0939,10.6912,6.7063,7.7291,8.2207,3.6724,1.4817,4.8645,,,,,,,,,,,,,,,62,,,
-3700,1.4092,1.8847,,70-79y,Other,,,17.2171,4.4101,2.356,2.05,1.2533,ppmi,,,M,,0.40681,4.3301,3.707,0.752,8.5327,1.4279,0.35485,2.4434,2.8297,45.3744,15.1712,220.0881,3.7111,3.8323,1.4472,1.6814,3.2714,6.7501,1.9542,2.745,0.38773,5.6068,9.7643,9.5366,6.7752,2.185,4.6999,1.68,18.5103,5.2638,3.9551,0.96293,2.4067,6.6053,13.0232,2.8382,3.8621,3.0243,1.3689,1.3192,4.0596,9.6259,2.8649,2.1919,11.1199,2.3082,2.3987,2.0194,11.4692,1.887,3.8736,1.0944,14.6713,5.4585,9.1213,3.3487,10.5919,7.1387,7.0604,6.8502,3.6907,1.3945,4.2474,,,PD,0.075583,PD,,PD,0.36519,3.937,3.504,0.76374,8.9715,1.7472,0.35197,2.4169,2.8922,44.9714,14.9038,221.5539,4.0361,4.1067,1.4343,1.6707,3.6206,6.7114,1.9559,2.8824,0.3908,6.1526,9.9867,8.1935,7.0228,2.0446,4.4807,1.6295,18.5695,5.0467,3.7356,0.984,2.2329,7.3998,13.1793,2.3615,3.6421,3.1602,1.2682,1.2887,3.5585,9.962,2.5927,2.2957,9.6087,2.0494,2.1226,1.9412,11.7115,1.6969,3.7587,1.0666,13.5138,5.2674,7.8089,3.8903,9.9567,7.054,6.8121,7.5181,3.1484,1.3936,4.103,,,,,,,,,,,,,,,73,,,
-3702,1.564,1.796,,60-69y,Other,,,17.5174,4.6562,2.9798,2.3338,1.2668,ppmi,,,M,,0.46384,4.1629,4.1921,0.85208,8.6438,1.4806,0.40382,2.964,3.004,46.667,14.2924,228.8359,3.7553,3.6838,1.567,1.9997,3.4142,6.5494,2.2203,3.0107,0.49209,6.3973,10.191,15.8306,7.1348,2.2974,4.5845,1.7024,17.4694,5.7269,4.1259,1.1423,2.6193,6.3043,11.5225,3.3573,3.9692,2.9171,1.452,1.415,4.6208,10.2371,2.9085,2.1459,10.8673,2.3506,2.492,1.8705,12.2197,2.0798,4.583,1.2327,13.3731,4.8669,8.3106,3.4069,10.3776,6.2521,7.7494,6.8406,3.4897,1.4146,4.5061,,,PD,0.077831,PD,,PD,0.39614,3.533,3.7617,0.8578,9.1834,1.7165,0.39651,2.799,3.1464,47.4305,13.739,228.8182,3.6202,4.1076,1.6043,2.0711,3.8349,7.2472,2.0623,3.221,0.62708,6.6779,10.353,13.2598,7.6341,2.0308,4.3476,1.6301,16.9826,4.9332,3.8418,1.182,2.775,7.2095,12.0863,3.0925,4.2795,3.2777,1.3569,1.3448,4.1162,9.9203,2.7531,2.0901,9.8685,1.9599,2.1704,1.9544,11.1921,1.7484,4.4253,1.1723,13.6392,4.6487,7.4363,4.2316,10.0904,6.4827,7.3558,7.0505,3.6242,1.3798,4.3199,,,,,,,,,,,,,,,63,,,
-3704,1.279,2.9649,,60-69y,Other,,,17.6482,4.3994,2.7707,2.2514,1.1094,ppmi,,,M,,0.52247,5.1996,4.345,0.9112,9.0972,1.7474,0.41107,3.1278,3.0516,32.9487,16.384,267.6802,4.1981,4.126,1.5562,2.1235,3.5555,7.6791,2.2289,3.4736,0.45759,6.9457,12.1668,9.9083,7.5427,2.6216,5.632,2.0688,21.6933,5.6732,4.1373,1.3874,3.2071,7.3172,14.9978,3.3296,4.8645,3.3374,1.5114,1.5505,4.7083,11.5064,3.1576,2.3223,12.3953,2.5148,2.6095,2.4318,14.9163,2.2182,4.6412,1.365,15.9755,5.6604,9.9957,3.2945,9.9185,8.1918,8.7806,8.7184,3.8422,1.7664,4.7554,,,PD,0.080812,PD,,PD,0.48411,4.7964,4.2922,0.86733,10.6003,2.0274,0.39795,3.007,3.3618,35.175,17.3127,273.7322,4.2955,4.1085,1.6656,2.1096,3.7966,8.1248,2.2005,3.6978,0.62106,7.3252,13.5345,10.0672,7.7456,2.5483,5.5009,2.0909,21.1668,5.0238,4.0896,0.8955,2.4127,8.8489,16.3777,2.6459,4.6915,3.4308,1.5932,1.5405,4.3281,10.8999,3.0266,2.4626,10.1601,2.5062,2.3306,2.2456,12.4661,1.969,4.7199,1.2458,15.5941,5.5371,7.9034,4.0702,11.3788,8.0251,8.236,9.0678,3.8766,1.6552,4.5803,,,,,,,,,,,,,,,69,,,
-3709,1.0206,1.4932,,50-59y,Other,,,18.937,4.6367,2.5524,2.0773,0.93917,ppmi,,,M,,0.44764,4.6054,4.1223,0.84428,10.5773,1.5953,0.38546,3.0509,2.7177,43.1324,15.9744,253.1811,4.1164,4.0146,1.6301,1.978,3.5711,7.1622,2.1679,3.1519,0.39765,6.3827,10.8745,6.6381,7.1379,2.466,5.5461,1.8971,18.7126,6.5914,4.0596,1.286,2.9376,6.2439,14.7682,3.159,4.2535,3.2714,1.4799,1.6003,4.8123,10.959,3.1041,2.2203,12.3197,2.2946,2.5573,2.2634,12.6852,2.1511,4.0571,1.2909,13.1402,5.1904,9.8311,3.3595,10.7917,8.6293,8.7664,7.5947,3.7769,1.4253,4.7683,,,PD,0.085469,PD,,PD,0.40402,4.1231,3.927,0.81279,11.8247,1.8501,0.40206,2.9722,2.9199,42.9688,15.8272,261.8239,3.7635,4.3219,1.6819,2.076,3.7032,7.7192,2.1338,3.2224,0.53724,6.5214,12.2901,6.0556,7.4165,2.3326,5.1237,1.8639,17.1633,5.3272,4.0433,1.2182,3.1507,7.433,15.9631,2.2665,4.2493,3.3888,1.5863,1.6212,3.9522,10.9515,2.9825,2.1689,10.3862,2.1117,2.2983,1.8349,12.8394,1.8763,3.877,1.2613,14.0909,5.4266,8.8731,3.9746,11.5074,8.2523,8.2455,8.0059,3.7578,1.2546,4.5696,,,,,,,,,,,,,,,56,,,
-3710,0.82583,1.5145,,-50y,Other,,,21.542,4.7809,3.0508,2.2599,1.0666,ppmi,,,M,,0.45421,3.9397,3.7463,0.85447,9.0358,1.5152,0.35614,2.6694,3.0199,50.7349,19.6272,246.4894,3.4161,4.1941,1.7112,1.8179,3.0205,6.8625,2.085,3.1816,0.49136,5.8119,9.9668,8.7692,6.6421,2.1951,4.4767,1.6145,17.5025,6.6945,3.9679,0.9868,2.4497,5.9474,12.2554,3.3466,3.9962,3.4396,1.2722,1.6258,3.8703,9.587,3.147,2.0354,10.139,2.0044,2.2553,1.9688,11.9099,1.6481,4.301,1.0773,13.7809,4.7179,7.7767,3.8976,10.3564,6.3191,8.2236,7.2522,3.5842,1.2124,5.1435,,,PD,0.077735,PD,,PD,0.43254,3.3626,3.6566,0.90197,10.334,1.7251,0.37633,2.7753,3.1876,50.9768,18.9028,248.0548,3.6196,4.0498,1.8359,1.7791,3.3635,6.8215,2.1132,3.4247,0.51131,5.7211,9.7843,9.2876,7.27,2.2198,4.1,1.7383,16.705,5.0792,3.7646,1.0167,2.3599,6.8732,13.1337,2.754,3.8192,3.3107,1.4259,1.6094,3.6086,9.3147,2.9418,2.0925,9.5736,1.872,2.1342,1.7298,12.1895,1.653,4.3726,1.0788,14.2175,4.9499,7.4044,3.9159,10.3965,7.0097,8.0793,7.4924,2.9809,1.2168,4.9288,,,,,,,,,,,,,,,37,,,
-3711,0.98244,2.2321,,50-59y,Other,,,22.4835,5.8462,2.814,2.4958,1.1793,ppmi,,,M,,0.49721,5.223,4.3548,0.929,10.4026,1.8705,0.42459,3.7345,3.4594,50.7736,19.4289,286.7288,3.6111,5.0304,1.8444,2.1531,4.0768,8.1825,2.451,3.5876,0.44267,7.3347,11.9997,13.1049,8.7334,2.8758,5.3288,2.1177,21.7773,7.4358,4.5898,1.2599,2.7737,7.5882,15.321,4.1521,4.9055,4.0974,1.7708,1.8346,4.9011,11.2299,3.7035,2.0954,13.0198,2.2354,2.9826,2.2536,14.5359,1.9042,5.0404,1.2886,16.3757,5.8585,9.3957,4.156,12.611,8.2308,10.0097,8.5938,4.7785,1.375,5.8802,,,,0.082674,CN,,HC,0.43932,4.4231,4.1972,0.91486,11.9269,2.2397,0.40975,3.8567,3.5658,50.6947,19.1455,288.3445,3.7732,4.9036,1.847,2.0746,4.7072,8.3209,2.4285,3.7342,0.45567,7.5253,12.2025,13.3657,9.2037,2.7206,4.571,2.0842,21.4176,6.0821,4.4741,0.99512,2.7283,8.7069,15.0731,3.6073,5.0079,3.8507,1.7686,1.825,4.4997,11.2112,3.3082,2.1801,11.346,2.1886,2.55,2.0611,13.7839,1.9716,5.0305,1.2568,17.5587,6.1435,9.1249,4.511,12.2229,8.1987,9.4165,8.3114,3.8996,1.3731,5.6179,,,,,,,,,,,,,,,53,,,
-3752,0.93321,2.3951,,50-59y,Other,,,21.0889,5.4131,3.4106,2.6478,0.90602,ppmi,,,M,,0.51393,4.4294,4.5222,0.90721,8.9246,1.6407,0.44446,3.7748,3.3442,53.6704,18.8267,227.8283,4.7856,4.7093,1.7701,2.2343,3.8558,8.1513,1.965,3.2754,0.42441,6.6368,11.6325,8.5231,7.9764,2.6726,4.8739,1.68,19.0219,6.6722,4.3295,1.2278,2.7302,7.0969,13.3271,3.805,4.5302,3.187,1.7322,1.5031,4.3432,10.0086,3.3709,2.402,12.5799,2.7721,2.8272,2.2652,14.813,2.4869,4.9565,1.1873,15.3575,5.365,8.5323,4.0586,10.7771,6.9658,8.6868,8.0096,3.6198,1.8284,5.0239,,,PD,0.079485,PD,,PD,0.46118,3.7803,4.4029,0.90488,10.5099,1.7474,0.43392,3.6646,3.392,54.6009,18.3036,234.7961,4.4432,5.3021,1.79,2.1056,3.9201,8.5371,2.0148,3.4552,0.47873,6.9337,12.7437,8.632,8.6924,2.291,4.2937,1.6645,20.3586,5.1326,3.8984,1.1353,2.5443,8.1674,14.9369,3.1975,4.6881,3.5494,1.6724,1.4584,4.287,10.3306,3.1791,2.4261,11.1877,2.1973,2.509,2.0839,14.2054,1.9804,5.0121,1.1297,14.5362,5.4208,8.7662,4.5281,11.1218,7.6283,8.4544,8.0446,3.6866,1.4685,4.7012,,,,,,,,,,,,,,,52,,,
-3753,1.2441,1.9429,,60-69y,Other,,,18.0178,4.8531,2.3933,2.1595,1.2608,ppmi,,,F,,0.46468,4.5551,4.1088,0.96274,8.9056,1.5757,0.41909,3.3529,3.0876,44.5264,14.0885,226.0806,3.981,4.9876,1.7493,1.855,3.3461,7.3178,2.1853,3.5703,0.4751,6.6701,10.8973,12.6439,7.9094,2.4161,4.6728,1.8295,20.1143,5.6541,4.1155,1.3785,2.8862,6.9356,13.482,3.378,4.4025,3.1674,1.5303,1.3531,4.3789,11.0121,3.3382,2.352,12.458,2.3521,2.4115,2.2885,14.725,2.2262,4.4177,1.254,14.6281,5.2001,9.3007,3.615,9.4878,7.9837,8.5642,7.5195,3.83,1.6745,4.6065,,,PD,0.075793,PD,,PD,0.42249,4.3262,3.8768,0.88061,10.2965,1.7449,0.41569,3.4437,3.1736,44.8859,14.1393,231.5835,4.049,4.9531,1.7249,1.9101,3.6331,7.5423,2.1654,3.6569,0.51045,7.2959,11.4272,10.4072,8.4984,2.1156,4.4506,1.7388,18.955,5.0526,3.9755,1.2145,3.002,7.7652,13.8024,3.0508,4.4897,3.6887,1.4916,1.3943,3.8815,10.7959,2.9508,2.2001,11.0391,2.0912,2.2205,1.9521,13.2575,1.8416,4.1915,1.2362,14.4289,5.5686,8.0796,4.0528,10.018,7.0947,8.4546,7.5205,3.644,1.4452,4.4221,,,,,,,,,,,,,,,69,,,
-3756,1.522,3.0616,,60-69y,Other,,,19.2966,4.5336,2.8312,2.1276,1.2812,ppmi,,,M,,0.50406,5.4271,4.6317,0.94689,10.1076,1.5415,0.43932,3.5719,3.5801,47.7597,16.2148,228.8475,4.3261,5.0679,1.8729,1.8359,3.7267,7.4136,2.1452,3.2585,0.72213,7.0221,11.7433,18.9402,7.5626,2.5726,5.2332,2.0151,21.419,6.3136,4.0907,1.1266,2.6012,8.0109,14.3726,3.973,4.3279,3.26,1.5566,1.562,4.7451,12.1355,3.4628,2.6976,11.7012,2.7519,2.64,2.3836,13.5006,2.4921,5.0247,1.3798,15.7323,5.6572,9.013,3.5495,11.4087,7.5105,9.3001,8.0849,4.241,1.856,4.9915,,,,0.07438,CN,,HC,0.44619,4.0698,4.3214,0.92291,11.0265,1.7259,0.44708,4.2791,3.6324,49.2261,15.7432,234.2482,4.2383,5.3833,1.866,1.9762,4.0797,7.8298,2.1499,3.2967,0.67257,7.198,11.8631,16.5131,8.5822,2.3477,4.5074,1.988,19.55,6.1385,3.8779,1.0856,2.8117,9.2178,14.232,3.346,4.7814,3.3039,1.578,1.5163,4.037,11.6414,3.1494,2.6341,9.9701,2.7023,2.4053,2.1257,14.5637,2.2923,4.8365,1.2855,15.7125,6.1947,8.1577,4.5057,11.2508,7.2709,9.1272,8.2681,3.511,1.6715,4.689,,,,,,,,,,,,,,,65,,,
-3757,1.579,1.3964,,70-79y,Other,,,16.7861,4.3493,2.264,2.0536,1.5701,ppmi,,,M,,0.48804,4.7884,4.3914,0.86998,8.6088,1.6025,0.4237,3.4838,3.3929,42.741,13.1601,207.2504,3.6927,5.0685,1.8415,1.9387,3.4881,7.1452,1.972,3.0313,0.40044,6.9752,11.0594,13.1824,7.7737,2.4089,4.6594,1.8436,17.1346,6.1413,4.009,1.1436,2.5157,7.0585,12.9846,3.9459,4.8031,3.6451,1.495,1.3316,4.2569,11.3045,3.1507,2.4239,11.9138,2.352,2.5694,2.4051,12.9415,1.9946,4.0079,1.379,13.9586,5.2904,8.1359,3.9239,11.2366,6.5245,7.8843,7.8513,3.8438,1.5662,4.4628,,,PD,0.084842,PD,,PD,0.41291,4.2876,4.0177,0.88282,9.5899,1.8736,0.40904,3.4178,3.3401,43.7096,12.7335,214.034,4.0091,5.2446,1.9154,1.8715,3.8117,7.2334,2.0006,3.2521,0.46344,7.3054,11.688,10.9391,8.042,2.3245,4.6002,1.8555,19.2877,5.0952,3.8357,1.0462,2.6826,7.5349,14.4262,3.2891,4.6308,2.9872,1.4725,1.3579,3.9174,10.6394,3.104,2.2145,10.7469,1.8304,2.3392,2.1706,12.4827,1.83,3.823,1.2983,13.8038,5.4902,7.5435,4.3867,11.639,7.3351,7.6622,8.1172,3.4305,1.4865,4.2606,,,,,,,,,,,,,,,70,,,
-3758,3.3207,2.3622,,70-79y,Other,,,18.8202,5.0381,2.9444,2.3756,2.9962,ppmi,,,M,,0.43178,4.1926,4.3399,0.90472,8.3573,1.4415,0.38916,3.375,4.1346,45.4803,14.445,214.5031,3.8351,5.017,1.5641,1.9182,3.8207,6.8118,2.0118,3.3841,1.771,7.0164,10.892,49.8544,7.5265,2.2309,5.0401,1.6812,18.1995,6.5408,3.685,1.084,2.5144,6.7854,14.3221,3.6097,4.3282,3.1829,1.3083,1.5508,4.788,11.3522,3.182,2.3986,11.1492,2.3111,2.2637,2.3294,13.1962,2.0286,4.6802,1.2484,14.8723,5.2848,7.3717,3.8632,11.3513,7.3235,8.511,7.0197,3.518,1.4906,4.9913,,,PD,0.06953,PD,,PD,0.41833,4.087,4.0423,0.86534,9.6804,1.5922,0.39595,3.4016,4.4184,48.8549,14.7699,218.7794,3.5817,5.0515,1.5397,1.8288,3.8047,7.1298,2.0176,3.7641,2.3673,6.7791,11.7861,42.3039,8.0481,2.0475,4.9066,1.608,17.8022,5.2212,3.5396,1.1252,2.67,7.7511,15.1915,2.9913,4.2274,2.9901,1.3743,1.4721,4.2661,11.001,3.0631,2.331,9.8533,2.0989,2.0572,2.0265,13.078,2.0201,4.5896,1.1674,15.4584,5.7484,7.3687,4.2211,9.8218,7.2475,8.4216,7.4452,3.1953,1.4387,4.7027,,,,,,,,,,,,,,,70,,,
-3759,0.63937,1.3382,,50-59y,Other,,,16.4614,4.1967,2.2784,2.0336,0.8026,ppmi,,,F,,0.41056,3.8317,3.688,0.80244,7.569,1.3496,0.34449,2.9568,2.8952,40.234,14.4858,204.847,3.722,4.0644,1.4891,1.8637,3.0849,6.2183,1.7707,3.1139,0.55892,5.0169,9.7212,6.7031,6.75,2.0805,3.9854,1.5306,16.0383,4.8481,3.5251,0.85475,2.1497,5.8135,11.3416,3.0043,3.7105,3.1637,1.2399,1.3531,3.8193,9.5744,2.8313,2.0259,10.3889,2.3502,2.1615,2.0159,12.1917,2.1134,3.8781,1.0358,14.1991,4.7564,8.7555,3.2898,11.1923,6.3397,7.9077,6.8214,3.3923,1.6713,4.2172,,,,0.073138,CN,,HC,0.36356,3.5475,3.5152,0.79272,8.9362,1.6586,0.3497,3.0951,2.8719,41.1346,14.2223,207.2172,3.0114,4.553,1.5096,1.7328,3.2658,6.6932,1.846,3.2171,0.55427,5.5937,10.1276,6.2785,7.3149,2.0056,3.9037,1.5648,16.5485,4.3515,3.5053,0.97769,2.418,6.6576,12.3545,2.339,3.7106,3.1159,1.2979,1.3474,3.4214,9.4127,2.616,1.9269,8.3431,1.7547,2.1193,1.7961,11.724,1.7373,3.6141,0.97937,13.8466,5.0942,6.5472,3.9698,8.9043,6.7803,7.5684,7.54,2.9591,1.2997,4.0287,,,,,,,,,,,,,,,54,,,
-3760,1.258,2.1795,,60-69y,Other,,,18.0462,4.6429,2.3051,2.1453,1.3539,ppmi,,,M,,0.51511,4.4348,4.3955,0.86673,9.9268,1.5031,0.41244,3.4062,3.483,46.1483,15.3337,237.8174,4.1342,4.8706,1.7067,1.8792,3.0611,7.6546,1.9975,3.1587,0.70448,6.1803,11.6793,17.9925,7.3857,2.2564,4.3916,1.7362,18.8007,6.2668,3.8347,0.90728,2.3612,6.8465,13.9499,3.4315,4.4722,3.2438,1.3429,1.584,4.4588,10.6609,3.1878,2.5754,11.7156,2.157,2.3782,2.5617,13.6139,2.0883,4.8343,1.2809,14.4255,5.3744,9.1063,3.6121,11.6537,7.7704,8.9453,7.844,3.6267,1.8531,4.8339,,,PD,0.087266,PD,,PD,0.44542,4.2359,4.244,0.81588,11.2565,1.5915,0.41852,3.2782,3.6978,46.5947,15.3311,240.6035,4.1585,5.1435,1.6877,2.0396,3.259,8.0526,1.8805,3.2944,0.65833,7.21,12.0708,15.6493,8.3541,2.0055,4.6949,1.7972,17.8899,5.645,3.5108,1.0449,2.2686,7.5634,13.7981,3.3749,4.2504,3.4823,1.3436,1.6028,3.8365,9.9366,3.0039,2.5853,10.679,2.2377,2.1322,2.2269,13.271,1.9335,4.7945,1.2736,13.8626,5.3816,8.54,4.7758,10.3892,7.7091,8.6153,7.2018,3.302,1.6414,4.6832,,,,,,,,,,,,,,,69,,,
-3762,1.6085,3.4749,,70-79y,Other,,,22.0245,4.3437,2.629,2.2175,1.3279,ppmi,,,F,,0.41564,4.1599,4.1798,0.78232,8.8626,1.4088,0.37054,3.3573,3.1428,46.295,16.5138,226.2376,3.5997,4.1528,1.5266,1.7106,3.2901,7.1364,1.7652,3.0181,0.58598,6.206,10.4368,29.5462,6.9975,2.1261,4.5405,1.5698,17.0375,5.7844,3.717,1.1122,2.6767,6.5733,12.7223,3.5819,4.3516,3.0441,1.4224,1.578,4.4147,10.3728,3.0743,2.2132,11.5948,2.2209,2.4119,1.9716,12.4769,1.7111,4.016,1.1193,13.7478,5.3809,8.8578,3.3442,11.1469,6.2751,8.3605,6.8953,3.7023,1.2195,5.1762,,,PD,0.083458,PD,,PD,0.38474,3.5697,3.9033,0.79745,9.4248,1.5833,0.37762,3.2241,3.5097,45.8719,16.6614,227.0502,3.6729,4.4313,1.513,1.7605,3.5977,6.9167,1.7904,3.2574,0.73319,5.976,10.4491,24.7291,7.7444,1.9732,4.3205,1.5545,16.5924,4.838,3.5152,1.1054,2.8483,7.4107,13.3632,2.8339,3.9644,2.9987,1.3239,1.5909,4.0038,10.5431,2.803,2.1024,10.4443,1.8655,2.1784,1.7733,12.8993,1.5675,4.0124,1.0355,13.5793,5.088,7.527,4.57,9.6396,6.8115,8.1517,7.1831,3.3581,1.1634,4.9713,,,,,,,,,,,,,,,70,,,
-3763,1.2286,1.8612,,50-59y,Other,,,22.208,4.7058,3.1224,2.3776,1.4065,ppmi,,,M,,0.47238,4.9956,4.6987,0.94909,10.0226,1.7307,0.40357,2.9559,3.1177,52.9574,19.1942,259.2485,4.0948,4.1942,1.8899,2.1618,3.8096,7.7287,2.2774,3.529,0.45514,6.7866,11.387,11.0569,7.8554,2.5376,4.6489,1.9196,19.0607,6.3888,4.5198,1.2304,2.9752,7.6628,13.7158,3.3824,4.771,3.5121,1.5907,1.6995,4.8813,11.8193,3.4277,2.6403,12.9884,2.4409,2.6104,2.5104,14.0483,1.8812,4.6644,1.3139,14.9944,5.7737,8.7257,3.3789,11.1343,7.0171,9.4352,7.4504,4.0406,1.5722,5.4139,,,PD,0.078611,PD,,PD,0.43504,3.9906,4.5881,0.96299,10.3826,1.8701,0.41558,3.4008,3.3032,52.1126,18.9154,264.2143,4.116,4.6166,1.99,2.214,4.1029,7.4373,2.4937,3.7135,0.65793,7.1214,11.1182,15.1968,8.0628,2.2694,4.8368,2.1432,19.7076,5.7811,4.1956,1.2454,3.0308,8.7465,14.4167,3.0098,4.5356,3.2891,1.5011,1.7037,4.4847,12.0444,3.1745,2.5663,10.3729,2.2745,2.3542,2.1947,13.3873,2.0209,4.5596,1.3013,14.9696,5.6732,8.0124,4.2641,10.9848,7.7312,9.2999,8.199,3.4531,1.5655,5.2583,,,,,,,,,,,,,,,59,,,
-3764,1.9054,2.1462,,50-59y,Other,,,22.4757,4.8373,2.708,2.2744,1.3194,ppmi,,,M,,0.49467,5.2989,4.9286,1.1797,10.3465,1.7786,0.46064,3.7514,3.592,50.5939,18.4893,275.1407,4.5059,5.8079,2.127,2.2084,3.9587,8.6943,2.2923,3.7479,0.6551,7.5029,13.5905,13.2123,8.278,2.8441,5.7674,2.0695,23.5256,7.071,4.4534,1.345,3.0884,8.6376,16.0945,4.1442,4.852,3.9492,1.8872,1.7028,5.3927,12.171,3.6192,2.632,14.5238,2.7524,2.8225,2.5228,16.3021,2.3285,4.9891,1.4301,16.9244,7.4644,9.684,3.7036,11.2385,8.2318,9.4722,8.7836,4.7437,1.8754,5.5265,,,PD,0.094886,PD,,PD,0.45292,4.7418,4.698,1.0863,11.463,1.9825,0.45305,4.0389,3.7076,49.4167,18.3811,279.6072,4.3816,5.399,2.0086,2.2075,4.3201,8.5424,2.4643,3.9108,0.66749,8.3401,13.1153,14.8174,9.0482,2.6091,5.6109,2.1455,22.6308,6.4176,4.5482,1.5788,3.6248,9.8765,16.5323,3.603,4.793,3.9824,1.8781,1.7258,4.6412,11.7694,3.2511,2.5711,12.3347,2.4982,2.735,2.3541,15.9826,2.1447,4.8687,1.3882,17.1996,7.1357,9.0854,4.2879,11.5467,8.8632,9.3152,8.8648,4.2507,1.7641,5.3385,,,,,,,,,,,,,,,53,,,
-3765,1.2672,1.8611,,60-69y,Other,,,16.3613,4.4683,2.3489,2.0295,1.0101,ppmi,,,F,,0.34209,3.9068,3.64,0.78759,8.4327,1.2559,0.33608,2.7253,2.5467,43.6021,13.6772,197.7393,3.5151,3.4627,1.5566,1.6688,3.064,6.5238,1.8955,2.9362,0.40633,5.2409,9.3704,9.0818,6.2886,1.9204,4.4068,1.4875,17.1944,5.082,3.4927,1.0711,2.4044,5.9779,12.3076,2.5194,3.8083,2.8027,1.2592,1.1765,3.7324,8.657,2.956,1.956,11.4969,1.8529,2.1476,1.9893,11.6022,1.6619,3.1808,1.0509,12.5304,4.811,8.5271,2.7817,9.2771,7.0751,7.3264,7.0266,3.0082,1.3306,4.1981,,,,0.080724,CN,,HC,0.3103,3.2778,3.4923,0.75561,9.2901,1.4546,0.33923,2.9,2.5319,44.429,13.4796,203.0239,3.3901,4.0019,1.4467,1.7075,3.314,6.7997,1.9575,3.0616,0.40498,5.485,9.5466,8.7868,7.2658,1.8793,4.1135,1.5592,15.7332,5.1958,3.5099,0.87369,2.3351,6.7932,11.8792,2.3655,3.7845,3.5572,1.2546,1.1784,3.4592,9.1984,2.6765,1.9714,10.2392,1.76,2.008,1.8317,11.6684,1.6036,3.0782,1.0633,12.9969,5.0062,7.1766,3.7107,8.5933,7.2607,7.1911,6.6794,2.9324,1.2153,4.0152,,,,,,,,,,,,,,,68,,,
-3767,0.76565,1.1671,,50-59y,Other,,,18.6804,4.1261,2.3368,1.9721,0.95678,ppmi,,,F,,0.44545,4.5073,4.4181,0.85671,9.5588,1.56,0.38626,4.0413,2.8378,43.5926,15.1396,234.6068,4.1838,4.788,1.6303,2.2307,3.5368,7.5032,2.1159,3.1396,0.36362,7.2716,10.8069,7.9512,7.5536,2.3681,4.1984,1.9672,19.3605,6.5001,4.1049,1.0327,2.4856,6.9443,12.8117,3.6803,4.6743,3.5259,1.5892,1.4786,4.3667,10.6235,3.0433,2.0561,11.7584,2.2441,2.5607,2.1317,13.1281,1.8393,4.3613,1.2419,13.9463,5.1091,8.7818,3.7915,10.6532,6.2377,8.0026,6.8818,3.7492,1.5802,4.7446,,,,0.078021,CN,,HC,0.40833,4.0299,4.0073,0.86101,10.1934,1.7565,0.40006,3.9713,2.9639,43.2962,14.8266,238.0345,3.8451,5.6686,1.715,1.8824,3.7158,7.3361,2.2502,3.3202,0.41452,6.3753,10.8222,7.7275,8.0832,2.3105,4.4476,1.9045,17.9521,4.938,4.0485,1.0687,2.5388,7.7705,13.3115,2.825,4.3852,3.2915,1.6113,1.4593,3.8049,11.1234,2.9205,2.0947,11.1744,2.1415,2.4225,1.8678,12.886,1.8892,4.1724,1.2225,13.8105,4.8826,8.3437,4.3446,11.2899,6.8813,7.7447,7.1951,3.463,1.4545,4.4793,,,,,,,,,,,,,,,53,,,
-3768,1.8814,2.6891,,50-59y,Other,,,21.2562,5.1914,2.3464,2.3065,1.6873,ppmi,,,M,,0.47075,4.6121,4.7026,0.90503,9.1144,1.6083,0.40641,4.8069,3.4438,47.6507,17.0644,245.2498,4.4175,4.6227,1.6601,2.2541,3.5439,7.2256,2.1071,3.1239,0.90348,7.1829,11.625,30.5043,8.426,2.5256,4.6383,1.8374,17.8265,6.8498,4.1646,1.1094,2.691,6.8316,13.8727,4.0406,4.7634,3.6926,1.6442,1.5712,4.9497,11.1206,3.005,2.4148,12.0981,2.4695,2.6565,2.3949,13.1222,2.043,4.4824,1.3237,14.6833,5.2964,8.648,4.1699,10.4217,7.0041,9.1592,7.3619,4.1865,1.916,5.2167,,,,0.081352,CN,,HC,0.40924,4.0873,4.3406,0.86907,10.263,1.7689,0.4004,3.7592,3.5288,47.2493,16.3373,246.0385,3.9458,4.9872,1.7556,2.0572,3.611,7.2197,2.1002,3.3014,0.84388,6.7193,11.5987,19.3555,8.5952,2.3596,4.6747,1.7796,17.0527,5.2269,3.6394,1.2131,3.0033,7.5712,14.7184,3.2004,4.3998,3.4066,1.5865,1.5519,4.4856,10.953,2.8888,2.3232,10.4323,2.1366,2.3768,2.0707,13.1899,1.7748,4.3011,1.1924,14.3672,5.3154,7.7341,4.7936,10.4578,7.0043,8.6685,8.3094,3.5626,1.5145,4.9709,,,,,,,,,,,,,,,59,,,
-3769,1.6862,2.8555,,70-79y,Other,,,14.9798,4.2404,2.3932,2.0654,1.5069,ppmi,,,M,,0.41085,4.428,4.298,0.85214,9.0563,1.5196,0.37866,3.2557,2.6032,41.7921,12.2592,206.2656,4.2391,4.8459,1.7001,1.9006,3.5839,7.2368,1.9712,2.957,0.54394,6.3575,11.1047,18.333,7.7012,2.4434,4.8466,1.7594,17.8192,6.7384,3.6829,1.0474,2.6526,6.8761,13.39,3.1626,4.2836,2.9403,1.5853,1.231,4.3963,10.98,3.3224,2.2827,12.399,2.9705,2.4449,2.2005,13.384,2.4918,4.0669,1.3027,14.1878,4.9626,8.7464,3.7557,11.6868,6.5793,7.2031,7.3925,3.494,1.7903,4.0687,,,,0.073774,CN,,HC,0.37043,3.9876,4.0957,0.81965,10.4445,1.5474,0.37866,3.5947,2.742,41.3472,11.6717,207.4112,4.0977,5.2539,1.642,2.0607,3.498,7.4354,1.8416,3.0951,0.68905,6.5564,11.3446,14.8923,8.202,1.9896,4.4814,1.587,17.411,5.4537,3.2706,1.3268,2.7765,7.2895,13.9913,3.2589,4.4943,3.3113,1.3621,1.1884,4.1034,11.3422,2.775,2.3135,11.1192,2.3329,2.0465,2.0445,14.2399,2.0746,3.9003,1.1579,14.8007,5.2109,7.8697,4.8402,10.5538,7.8328,7.0042,7.4977,3.1952,1.6778,3.8211,,,,,,,,,,,,,,,70,,,
-3770,0.99292,1.9503,,50-59y,Other,,,18.7845,4.7191,2.4756,2.2328,1.3633,ppmi,,,F,,0.48309,5.0548,4.3791,0.90808,10.7136,1.6426,0.38466,3.2622,3.2109,47.0287,15.9598,246.4768,4.2926,4.8924,1.822,2.0709,3.601,7.5848,2.0177,3.1987,0.45004,6.5226,12.1338,11.0088,7.6517,2.5417,5.2655,1.8449,18.4725,5.648,3.954,1.3754,2.9155,7.1852,15.0197,3.2088,4.1904,3.1393,1.6749,1.6082,4.6525,12.1197,3.3824,2.4642,11.7493,2.3025,2.3891,2.3821,13.1767,1.9995,4.1354,1.2708,15.2701,5.6642,9.6141,3.5855,11.7804,7.9239,8.6582,8.0402,4.0314,1.6362,5.0256,,,PD,0.077989,PD,,PD,0.42178,4.4718,4.0913,0.89986,11.9539,1.678,0.38552,3.5443,3.1375,47.282,15.6727,247.1526,4.1812,5.5014,1.8005,2.0146,3.6719,7.548,2.0517,3.3706,0.4839,7.0124,12.1689,8.9626,8.5396,2.037,5.1922,1.7845,18.3661,5.8989,3.6373,1.2263,2.8133,7.9881,15.5524,3.0571,4.3151,3.6518,1.4481,1.5358,4.2383,12.2376,3.0548,2.3252,10.9463,2.545,2.1129,2.0355,13.0138,2.1416,4.0644,1.1596,14.2099,5.5023,8.4916,4.8514,11.3341,7.8957,8.3252,8.1572,3.4266,1.6041,4.7047,,,,,,,,,,,,,,,55,,,
-3771,1.0995,1.6122,,70-79y,Other,,,15.7839,4.2184,2.102,1.9259,1.078,ppmi,,,F,,0.38463,4.4677,3.9552,0.75378,7.9483,1.3894,0.33636,2.9376,2.4921,40.0543,12.4973,175.9825,3.3778,4.0762,1.4796,1.7345,3.3509,6.2379,1.711,2.43,0.52941,5.0266,9.1586,10.8901,6.6677,2.0409,4.372,1.6108,16.206,5.2426,3.6296,1.0421,2.4769,6.9531,10.8883,2.9997,3.7557,3.2716,1.166,1.2237,3.7344,8.5564,2.8181,2.1406,11.2372,1.875,2.43,2.0012,12.2198,1.5226,3.562,1.0571,14.4451,5.2968,6.9044,3.3174,9.6078,5.7945,7.1654,7.0197,3.3026,1.3409,3.8969,,,PD,0.060968,PD,,PD,0.35972,3.5998,3.7645,0.74433,8.9302,1.5588,0.34823,3.072,2.7002,39.8626,12.3472,181.0566,3.4612,4.1701,1.4907,1.5511,3.2965,6.4969,1.7407,2.6282,0.45576,5.8436,10.159,8.3155,7.1291,1.9738,3.9958,1.6703,15.464,4.7293,3.3554,1.0373,2.5345,8.2236,12.0929,2.3887,3.7049,2.9531,1.2037,1.1705,3.3355,8.8656,2.538,2.2046,9.0963,1.9611,2.2198,1.9066,12.4106,1.6768,3.3735,0.9906,14.1901,5.6478,6.7087,3.9919,10.7479,6.1987,7.1447,7.252,2.7187,1.3013,3.7341,,,,,,,,,,,,,,,74,,,
-3775,1.2041,2.1677,,60-69y,Other,,,22.987,5.3868,2.9236,2.3858,1.1391,ppmi,,,M,,0.4845,4.9099,4.4103,1.0279,9.8505,1.5536,0.42681,4.5091,3.198,54.341,19.6508,256.1866,4.2757,5.5639,2.0322,2.1961,3.7575,8.0725,2.1718,3.7162,0.55061,7.7431,12.4078,9.3513,8.5265,2.4212,5.5916,1.9422,20.1735,6.9863,4.2341,1.2554,2.7158,7.3944,16.0621,4.3293,5.0942,3.8885,1.4679,1.6016,5.4847,12.698,3.7072,2.4831,12.6899,2.6425,2.6398,2.3648,13.326,2.0678,4.5879,1.3494,16.2645,5.6788,9.8719,3.9916,11.5101,7.5807,9.3864,8.1514,3.9782,1.7272,5.4372,,,PD,0.08518,PD,,PD,0.45477,4.3341,3.8047,0.93694,10.8694,1.8078,0.43686,4.2927,3.164,54.9149,19.1586,259.3021,3.8203,6.0802,1.8947,1.7082,3.747,8.1496,2.1812,3.7915,0.6933,7.7176,12.8712,8.4426,9.5395,2.3863,5.5472,1.9355,20.0539,5.6162,4.038,1.1529,2.8366,8.1887,15.8795,3.7107,4.9789,3.581,1.5247,1.5786,5.0237,12.7126,3.2445,2.4352,12.087,2.3454,2.6627,2.1559,13.9853,1.9321,4.4128,1.2924,15.8406,5.4968,8.7158,5.0735,11.6094,7.3608,9.0053,8.6631,3.4744,1.5826,5.1616,,,,,,,,,,,,,,,63,,,
-3776,1.7512,1.6264,,60-69y,Other,,,19.7029,4.559,2.4938,2.2491,1.6033,ppmi,,,M,,0.38039,3.9911,3.8247,0.84998,8.2418,1.3958,0.35135,3.3666,2.9036,44.0645,15.4457,212.5855,3.8583,4.4202,1.6295,1.9,3.0392,7.2673,1.8464,2.9945,0.63117,5.8599,11.0427,15.208,7.1488,2.1126,4.4486,1.6216,17.3714,5.8544,3.501,1.1059,2.5203,6.5,12.8272,3.2364,3.9065,3.2007,1.2671,1.3632,4.2743,9.8547,3.1519,2.2049,11.4703,2.5237,2.2594,2.209,12.8647,2.0934,3.6653,1.1424,13.0973,4.9308,8.4249,3.6398,10.4983,6.5905,7.6265,7.4236,3.6597,1.6671,4.623,,,PD,0.074907,PD,,PD,0.34787,3.2893,3.752,0.84025,9.8981,1.6455,0.36206,3.6277,3.0805,43.4585,15.197,216.5977,3.8342,4.2902,1.6102,1.7053,3.3241,7.7405,1.7811,2.9692,0.66545,6.4474,11.9039,16.3687,7.6717,2.0118,4.126,1.6596,17.0877,4.7611,3.3328,1.2287,2.7684,7.2354,13.1816,2.999,4.1337,2.9438,1.3264,1.2995,3.7186,10.0061,2.7454,2.0625,10.1955,2.3913,2.2282,2.0582,13.2081,2.0397,3.6578,1.0849,12.3296,4.876,7.9937,4.3226,10.1857,6.3552,7.4423,7.918,2.8098,1.6271,4.3164,,,,,,,,,,,,,,,63,,,
-3777,1.7211,2.4225,,60-69y,Other,,,18.782,4.8604,2.7094,2.2162,1.459,ppmi,,,M,,0.42457,3.9512,4.21,0.92257,8.9036,1.3862,0.366,2.9993,3.7283,47.4,15.3915,204.8832,4.2437,4.8373,1.6194,1.7304,2.8351,7.4453,1.7949,3.5943,1.077,5.8971,11.5137,23.1055,7.1558,2.121,3.9452,1.6275,15.3052,5.5914,3.4609,1.1417,2.7514,5.9774,13.7756,2.7705,4.269,2.7011,1.275,1.373,4.0744,10.7569,3.1986,2.5852,11.8913,2.3952,2.1902,2.503,12.4577,2.0869,4.0911,1.2164,12.7063,5.1193,7.7522,3.2604,9.5575,7.2731,7.9562,7.5018,3.0621,1.7168,4.8449,,,PD,0.073242,PD,,PD,0.38965,3.3969,3.8275,0.8746,8.8497,1.5583,0.38315,2.7912,3.7147,47.5727,14.7779,210.1995,3.7777,4.7334,1.6416,1.7458,2.9236,7.7557,1.788,3.6772,0.9424,6.2248,11.5885,19.3811,7.4117,1.92,3.7232,1.5832,15.3175,4.5806,3.2514,0.94931,2.4845,6.9469,14.0305,2.6301,4.0122,3.1145,1.3161,1.4746,3.783,10.8777,2.9399,2.4213,10.3172,2.1505,2.0408,2.0996,12.5547,1.9958,4.2639,1.0894,13.1682,5.1456,7.6151,3.9709,8.8742,7.1654,8.1023,7.6384,2.9017,1.5556,4.7292,,,,,,,,,,,,,,,62,,,
-3778,0.95051,2.1407,,50-59y,Other,,,17.2024,4.406,2.5169,2.2294,1.2063,ppmi,,,F,,0.38124,3.8456,3.7733,0.81962,8.319,1.3794,0.35918,2.5401,2.3839,46.1485,14.7398,176.8629,3.2127,3.5222,1.6179,1.9644,3.1072,6.9832,2.0239,2.9201,0.41109,4.9988,10.0014,9.6237,6.7957,2.3401,4.1594,1.5658,15.697,5.2616,3.6682,0.84625,2.2843,5.9146,12.9368,2.5934,3.8081,2.9922,1.6225,1.1296,3.7881,9.2228,3.2301,1.7923,11.0367,2.338,2.2715,1.8578,10.9067,2.0099,3.4343,1.1153,13.2483,4.9988,8.9338,3.1814,9.5334,6.9974,7.0988,7.1477,3.6394,1.3502,4.1191,,,PD,0.065569,PD,,PD,0.34042,3.0663,3.5352,0.82003,10.0189,1.5953,0.36658,2.6075,2.5112,48.2788,14.4361,187.5837,3.5994,3.9728,1.733,1.7016,3.078,7.9459,1.7779,3.1606,0.40662,6.2283,10.6764,10.5142,7.5478,2.1139,3.8886,1.5323,16.6613,5.4703,3.3979,0.96319,2.4804,6.4158,13.3786,2.6029,4.1616,2.8833,1.4422,1.1173,3.5173,9.5568,3.1207,1.9569,9.1777,2.1433,2.135,1.8492,11.2158,1.9497,3.2996,1.0174,14.5501,5.1844,7.6566,4.3178,9.2293,7.3219,6.993,7.1296,3.1734,1.4208,3.9675,,,,,,,,,,,,,,,52,,,
-3779,1.8277,1.9149,,50-59y,Other,,,21.6206,5.0461,2.9509,2.354,1.8,ppmi,,,M,,0.52677,5.7237,5.2549,0.99297,11.1273,1.6076,0.44629,2.9351,3.688,51.7661,17.9612,268.8892,4.9026,5.2304,1.852,2.4924,3.8345,9.2109,2.3888,3.7793,0.65024,7.5191,14.0595,20.8578,8.3303,2.6954,5.5331,2.257,20.1709,7.2403,4.302,1.2479,3.1935,8.1716,18.0995,3.8371,4.9307,4.0127,1.9306,1.7107,4.8776,12.3296,3.8962,2.7247,13.1127,2.6719,2.9276,2.6683,15.8329,2.5283,4.5431,1.5368,16.576,6.46,9.0753,4.7684,13.6137,9.3306,10.0034,8.6232,4.7949,2.0582,5.5991,,,,0.086404,CN,,HC,0.4867,5.1545,4.687,1.0006,11.8689,1.9138,0.44465,3.3944,4.0205,52.3529,17.3179,272.4241,4.6368,5.8648,1.9976,2.1776,4.3083,9.1334,2.3473,3.8998,0.56677,7.9464,15.3461,21.2676,8.955,2.6037,5.6048,2.1293,19.8723,6.3094,4.1091,1.5287,3.1383,8.6878,18.1631,3.6485,4.9454,3.8826,1.7423,1.6927,4.4333,12.7661,3.3224,2.611,11.8217,2.4958,2.6324,2.3321,15.7468,2.1615,4.4885,1.4346,15.9811,5.9492,8.8446,5.9201,13.6034,8.7155,9.7092,8.6452,4.0493,1.7678,5.3712,,,,,,,,,,,,,,,56,,,
-3780,1.4404,2.0948,,70-79y,Other,,,16.8336,4.0403,2.4048,2.0508,1.2502,ppmi,,,F,,0.41764,4.5352,3.6443,0.77623,8.0705,1.4614,0.34505,2.6409,3.1353,43.7404,14.094,197.9649,3.6389,4.0075,1.5603,1.5623,3.4676,6.596,1.8811,2.7653,0.47192,6.3366,10.34,15.3121,6.6479,2.2749,4.7592,1.7367,18.057,6.5567,3.6328,1.0812,2.3817,6.5956,13.0036,3.237,3.9197,3.022,1.4054,1.3434,4.0128,9.4195,2.9321,2.0228,10.7644,2.0141,2.3711,2.128,11.2013,1.6989,3.7796,1.0615,13.6457,4.6598,7.2402,3.4624,9.4297,6.788,7.5444,7.0016,3.385,1.3517,4.2229,,,PD,0.067109,PD,,PD,0.3549,3.4634,3.6714,0.76896,10.0852,1.5111,0.35113,2.8395,3.1245,44.6622,13.4733,203.7842,3.8025,4.1498,1.499,1.7204,3.4672,7.0596,1.8128,3.0762,0.56817,5.8776,11.3796,12.9242,7.3402,2.0756,3.9325,1.5766,17.3404,5.4098,3.4055,0.86694,2.16,6.9907,13.1262,2.4677,4.0021,3.4502,1.436,1.3185,3.6983,9.2957,2.8122,2.1967,10.1429,2.0054,2.1334,2.1287,11.7781,1.7453,3.7911,1.0451,13.9862,4.752,7.9076,3.9694,9.348,7.3112,7.2194,6.9689,3.4006,1.5415,3.9021,,,,,,,,,,,,,,,70,,,
-3781,1.7689,2.3145,,70-79y,Other,,,18.3009,5.0173,2.6489,2.3764,1.4244,ppmi,,,M,,0.43728,3.9451,4.1167,0.8205,8.5204,1.4147,0.38004,3.3161,2.8797,46.4178,17.1991,240.9613,3.6421,4.7678,1.6504,1.8904,3.3151,7.342,2.0148,2.9788,0.55608,6.1691,11.5317,16.3718,7.7266,2.3356,4.0413,1.6905,16.6054,5.3775,3.7136,1.2367,2.7166,6.5345,14.3089,3.48,4.1776,3.1065,1.4763,1.5134,4.0975,10.1788,3.2149,2.19,11.6948,2.2817,2.3578,2.1139,13.0085,1.9174,4.431,1.2599,14.7828,4.9775,9.1554,3.2583,9.834,6.9038,8.2844,7.8254,3.6129,1.5129,4.7992,,,PD,0.08472,PD,,PD,0.40277,3.0914,3.9315,0.87666,9.4099,1.5579,0.40344,3.4926,3.0423,48.1774,17.4382,250.0954,3.7727,4.7062,1.7876,1.6184,3.5009,7.5961,1.9689,3.344,0.56967,6.7333,12.7812,13.8202,8.6366,2.0822,3.895,1.6699,17.9823,5.1535,3.4406,1.0975,2.6186,7.6898,14.7951,3.2924,4.4636,3.0346,1.4735,1.4842,3.7791,9.9445,3.0649,2.2672,9.8746,2.1771,2.2519,1.8802,11.812,1.696,4.2874,1.2131,15.2468,4.8389,7.6245,4.476,9.8949,6.5895,8.1087,7.7992,3.072,1.4176,4.5532,,,,,,,,,,,,,,,72,,,
-3787,0.90173,2.2744,,-50y,Other,,,21.1152,4.295,2.6417,2.1786,0.90504,ppmi,,,M,,0.47054,4.2894,4.8283,0.96106,8.7663,1.5217,0.42377,3.1836,2.998,47.1875,17.2673,239.8277,3.955,5.1766,1.7965,2.1003,3.504,7.273,2.0112,3.376,0.46643,6.2974,11.4209,6.9187,8.1176,2.4051,5.0513,1.7646,18.0147,6.3472,3.9027,1.2476,3.0574,6.8277,14.0454,3.4688,4.6711,3.1316,1.6657,1.6781,4.8756,10.8397,3.4574,2.3915,11.9947,2.4903,2.6466,2.2776,13.8846,2.1979,5.0214,1.1599,16.272,5.2982,8.75,3.999,10.5097,8.1068,9.0021,7.8758,3.9998,1.5293,5.3667,,,PD,0.07598,PD,,PD,0.42547,3.9159,4.5027,0.95097,10.1935,1.6885,0.43303,3.0239,3.1817,47.8017,17.1886,242.8006,3.5866,5.1217,1.8237,2.2363,3.4504,7.6589,2.0129,3.6643,0.69321,6.8291,11.9385,6.1121,8.4574,2.3366,4.5995,1.6529,18.1332,5.2106,3.8785,1.2064,2.9561,7.3043,13.4831,2.8227,4.4697,3.6919,1.6168,1.6119,4.3937,11.2419,3.1514,2.2624,11.2564,2.0788,2.5567,2.0212,13.098,2.0434,4.8921,1.1362,13.6562,4.9323,8.4094,4.495,12.2607,8.0982,8.7365,8.1833,3.8797,1.4916,5.1458,,,,,,,,,,,,,,,49,,,
-3788,1.4256,2.3275,,60-69y,Other,,,18.8262,5.17,3.0233,2.63,1.3605,ppmi,,,M,,0.49031,4.5511,4.2803,0.92283,9.494,1.5267,0.38316,2.8529,3.5871,54.7294,16.4386,233.8136,3.7576,4.1127,1.8375,2.0354,3.5718,7.4804,2.1119,3.021,0.58173,6.3968,12.2509,16.2112,8.1326,2.3464,4.7529,1.7948,17.7535,5.9501,4.0053,1.1063,2.4524,6.7116,15.1098,3.2838,4.6274,3.1721,1.5604,1.5262,4.5445,10.1958,3.37,2.0985,12.2635,2.3833,2.4181,2.0339,13.0292,2.2407,4.6439,1.1967,15.5423,5.2965,8.5947,3.5961,11.3187,7.5068,8.2837,8.226,3.7865,1.6827,4.7492,,,PD,0.072485,PD,,PD,0.44992,4.2927,4.3067,0.92781,10.0058,1.7348,0.40656,3.1901,3.727,55.0078,16.4209,239.8994,3.9896,5.0027,1.7963,2.0749,3.952,8.0391,2.0984,3.2382,0.59243,6.8349,12.8877,15.0902,8.8843,2.1512,4.579,1.6712,19.1507,5.3718,3.7694,1.1554,2.6356,7.4825,15.7579,3.2533,5.0297,3.4855,1.6244,1.5457,3.9916,10.077,3.0799,2.2972,10.1463,1.9675,2.332,2.0274,12.961,1.8845,4.4209,1.1984,15.2643,5.0058,7.4304,4.6698,10.4603,7.8213,8.0865,8.4742,3.5374,1.5407,4.637,,,,,,,,,,,,,,,61,,,
-3789,1.2829,1.8274,,50-59y,Other,,,18.2048,4.8633,2.4674,2.138,1.3682,ppmi,,,F,,0.44491,4.0987,3.8802,0.89623,9.449,1.3564,0.3729,3.4756,2.8934,46.7264,15.803,200.3389,3.7511,4.1638,1.7004,1.9797,2.8658,6.9169,1.8674,3.2021,0.55971,5.5519,10.291,11.114,7.341,2.0801,4.7458,1.5732,16.977,5.6397,3.6172,1.0485,2.4415,6.0969,12.8155,3.4114,4.0788,3.1659,1.4137,1.3897,4.6272,11.0008,3.219,2.1982,11.4368,2.214,2.2866,2.3253,12.851,1.8698,4.2215,1.1641,12.9225,5.2035,9.5014,3.8057,10.0967,7.1057,8.1925,7.3984,3.4851,1.4524,4.6191,,,PD,0.076876,PD,,PD,0.40668,3.6849,3.7104,0.90267,10.0378,1.5758,0.38134,3.2743,3.0902,46.2985,15.317,207.6458,3.6463,4.5187,1.7622,1.7526,3.1717,7.32,1.8148,3.381,0.57712,6.4536,11.234,9.5152,8.3517,2.0436,4.429,1.5013,17.1342,4.9605,3.4303,1.2804,2.7964,6.8205,14.3654,2.7363,4.0892,2.9038,1.429,1.3887,4.37,11.6723,3.1827,2.2042,9.9513,1.9455,2.2276,1.9999,12.0286,1.6879,4.0463,1.112,13.1701,5.1316,8.4799,4.0074,10.3291,6.6666,7.9507,7.4347,3.2094,1.3288,4.4179,,,,,,,,,,,,,,,58,,,
-3800,1.2473,3.3121,,-50y,Other,,,21.5905,5.1098,2.84,2.5614,1.1818,ppmi,,,M,,0.53668,4.8128,4.595,1.0176,10.4002,1.7273,0.43181,3.3702,3.5931,54.3629,18.8112,261.9873,4.4117,5.4849,2.0572,2.1955,3.995,9.0426,2.3726,3.6126,0.52622,7.7266,13.3288,14.8063,8.8036,2.5192,5.1846,2.1355,20.8069,7.4867,4.1798,1.3442,3.0496,7.8048,16.5429,4.2991,5.3257,3.8371,1.688,1.6958,4.9057,12.1438,3.7077,2.5418,13.397,2.3593,2.6288,2.4919,15.5293,2.3121,5.2684,1.2665,16.4025,5.9174,10.0674,4.0206,11.7417,9.0867,8.9661,8.7037,4.1514,1.7134,5.4574,,,PD,0.087532,PD,,PD,0.51464,4.5376,4.372,1.0755,11.6366,2.0417,0.45675,3.9122,3.6577,55.2051,18.2152,264.2937,4.7091,5.7273,2.1337,2.154,4.1454,9.7531,2.3624,3.9992,0.57619,8.22,14.1555,10.8944,9.7973,2.5014,5.4531,2.0489,20.3293,6.0859,4.1016,1.4209,3.2581,8.1194,16.8186,3.4859,5.6286,3.8575,1.7142,1.6891,4.4612,11.9995,3.7753,2.4742,12.1869,2.418,2.5,2.1852,13.8184,2.1881,5.0549,1.2144,16.0548,5.7686,9.1705,4.832,12.265,8.7146,8.761,9.3039,3.8928,1.6828,5.3477,,,,,,,,,,,,,,,41,,,
-3802,2.7803,2.138,,70-79y,Other,,,18.1218,5.2488,2.6489,2.2755,2.8584,ppmi,,,M,,0.39926,4.4217,4.4199,0.86554,7.0462,1.2534,0.36303,2.7962,3.2768,45.6152,15.1088,192.679,4.0422,3.7708,1.568,1.9472,3.0361,6.0031,1.8123,3.2904,2.2243,5.32,9.5112,45.5069,6.8719,2.0073,4.1003,1.5704,15.2561,4.5883,3.3934,0.94914,2.2856,6.3889,11.3663,2.7446,3.4231,3.1995,1.3538,1.5224,4.1668,9.2925,3.2336,2.7603,9.9653,2.3754,2.1639,2.4875,10.4754,2.1419,4.0069,1.2514,11.9699,4.8981,7.6444,2.6193,8.3408,6.5021,7.8996,6.4709,3.7193,1.894,4.9637,,,PD,0.081137,PD,,PD,0.35442,4.1202,4.1164,0.84101,8.4615,1.3727,0.37472,3.0225,3.4995,45.9259,15.2982,199.4905,3.9166,4.1243,1.4843,1.9169,3.2081,6.1316,1.7933,3.4764,2.0739,5.4366,10.6751,44.0477,7.0925,1.8627,4.0661,1.5455,15.1063,4.3416,3.2519,0.9353,2.231,6.7481,14.0566,2.4385,3.5882,3.0615,1.4036,1.453,3.8161,9.6154,2.7479,2.6291,9.2487,2.3241,2.0688,2.1801,10.4213,1.986,3.8847,1.1656,11.8459,5.0306,6.7259,3.599,8.8964,6.9485,7.6559,7.1942,3.0707,1.6356,4.8224,,,,,,,,,,,,,,,70,,,
-3803,1.5087,2.315,,70-79y,Other,,,18.9184,4.3747,2.6465,2.0735,1.2253,ppmi,,,F,,0.3935,4.1508,4.2415,0.75882,8.7926,1.3948,0.33609,2.639,3.4379,45.5236,16.7656,231.3357,3.709,3.7276,1.5198,2.0352,3.4147,6.5936,1.9456,2.7018,0.57886,5.9599,10.0153,16.1228,6.2285,2.2347,4.0481,1.6126,18.3533,5.3681,3.6553,1.1262,2.5322,6.3078,12.8354,2.9912,3.7411,3.3253,1.4818,1.4804,3.8634,9.5238,3.0553,2.3235,11.2709,2.1985,2.1776,2.0976,14.323,1.657,4.2331,1.1229,13.6896,5.2665,8.7933,2.677,9.2929,6.3539,7.8783,6.7547,3.7929,1.3398,4.8351,,,,0.09175,CN,,HC,0.33602,3.9271,4.0323,0.77683,9.2538,1.515,0.33865,2.6518,3.0043,46.2524,16.4808,234.6324,3.4183,3.9495,1.5932,2.1376,3.6384,6.9805,1.9023,2.9869,0.83951,5.7211,10.5644,13.0982,6.6565,1.9561,4.4573,1.6855,16.8886,4.3269,3.3817,1.1445,2.5596,7.3162,13.2659,2.3469,3.6715,3.4311,1.4548,1.4246,3.5571,9.5306,2.7964,2.2846,10.0732,1.9143,1.933,1.8961,11.1705,1.6678,3.9484,1.0982,13.8928,5.1089,7.434,3.1735,9.9054,6.4827,7.6027,7.2903,3.5398,1.3527,4.5697,,,,,,,,,,,,,,,70,,,
-3804,1.5629,1.3143,,60-69y,Other,,,18.1221,4.8756,2.7525,2.4275,1.1927,ppmi,,,F,,0.40396,4.5179,4.0271,0.85815,8.2515,1.5993,0.39569,3.5443,2.9793,48.9262,15.7885,212.0898,4.0406,4.7221,1.791,1.7065,3.6311,7.4318,2.0958,3.2146,0.40559,7.0176,11.3991,10.8957,7.6198,2.3965,4.5739,2,18.5699,6.3956,4.0348,1.1123,2.5954,7.3296,14.5519,3.4648,4.6877,3.1268,1.4258,1.2987,4.4743,11.3937,3.2383,2.1732,11.9292,2.1907,2.5554,2.2604,13.1087,1.8577,3.7891,1.3007,12.9801,5.3652,8.8135,3.4644,9.4669,7.6646,7.5387,8.0948,3.3951,1.4287,4.5511,,,,0.08685,CN,,HC,0.33998,4.3094,3.6101,0.85726,10.3626,1.7797,0.3796,3.4974,3.0018,48.9327,15.0533,216.2029,3.7812,4.8241,1.7709,1.8654,3.8018,7.5478,2.0753,3.3666,0.40185,6.4333,10.954,8.8275,8.2824,2.2109,4.7135,1.9052,17.5409,4.7673,3.7926,1.0757,2.7292,8.0411,14.6655,2.9781,4.4129,3.5678,1.3649,1.2938,4.0031,10.543,3.0249,2.1555,9.9349,2.1673,2.2248,2.0807,12.7701,1.7905,3.646,1.2744,13.0374,5.4386,8.7739,4.1671,10.4432,7.9646,7.3549,7.8191,3.4546,1.4017,4.4175,,,,,,,,,,,,,,,60,,,
-3805,0.84051,1.4002,,50-59y,Other,,,17.2424,3.9415,2.4577,1.8843,0.85221,ppmi,,,F,,0.44865,3.9198,3.691,0.86679,8.4754,1.3166,0.38365,3.2005,2.807,43.6359,14.3661,203.1671,3.5964,4.5014,1.556,1.7233,2.9386,7.2798,1.7796,3.0571,0.47233,6.3838,10.6241,6.9975,7.1754,2.0759,4.185,1.551,16.1727,6.3789,3.5289,1.0297,2.3634,5.983,13.1833,3.3316,4.4222,3.2335,1.3039,1.343,3.9825,10.1076,3.0394,2.1725,11.3577,2.2119,2.213,2.2844,11.7617,1.8931,4.4941,1.0173,12.2054,4.9414,8.3802,3.3947,11.057,6.9751,7.7859,6.8976,3.5031,1.506,4.4893,,,,0.076933,CN,,HC,0.39584,3.5395,3.5964,0.87007,9.8893,1.465,0.38533,3.1594,2.8505,44.4632,14.2106,207.0527,3.7032,5.0655,1.681,1.7547,3.004,7.5878,1.8274,3.3385,0.43025,6.2238,11.1415,5.5673,7.5104,1.9187,4.2797,1.5013,16.2961,5.0535,3.3663,0.86819,2.2874,6.5368,13.0509,2.9026,4.4073,3.4206,1.2607,1.3557,3.7213,9.9101,2.8262,2.2432,9.8393,1.9914,2.0735,1.9663,12.1036,1.6826,4.4242,1.0271,12.6058,4.6283,7.1567,4.5605,10.2882,7.1194,7.6603,7.3946,3.072,1.3559,4.3687,,,,,,,,,,,,,,,56,,,
-3806,1.1541,1.3917,,50-59y,Other,,,18.4761,4.8862,2.6724,2.0714,1.0082,ppmi,,,F,,0.39549,4.4837,3.6953,0.76492,9.7818,1.5042,0.34279,3.2651,2.7402,45.982,16.4314,216.2176,3.4987,4.11,1.6568,1.6485,3.5092,7.1565,1.9725,2.818,0.3817,5.8538,11.0436,10.3454,7.1002,2.2198,4.618,1.7161,18.885,6.46,3.7802,1.1265,2.4157,6.9117,13.5519,3.098,3.978,2.8995,1.2368,1.3506,4.2159,9.7965,3.1282,1.9695,10.9672,2.3159,2.2762,2.0179,12.1166,1.8427,3.7719,1.1521,14.6126,5.0842,8.8808,3.1724,9.5491,7.3949,7.6634,7.8564,3.3959,1.3175,4.4616,,,,0.073576,CN,,HC,0.35233,4.176,3.9091,0.77572,9.6545,1.6424,0.35192,3.3012,2.926,46.1399,16.225,223.2811,3.4253,4.7965,1.7109,1.705,3.5018,7.2121,1.9928,2.9508,0.38117,6.069,11.4283,11.2233,8.0135,2.0002,4.6838,1.7196,18.343,4.8692,3.6248,0.94006,2.1608,7.9632,13.6898,2.52,4.1601,3.1147,1.3784,1.3582,3.8532,10.9236,2.9792,2.1134,9.8162,2.2176,2.1186,1.8742,11.1105,1.7469,3.7762,1.1274,14.538,5.0067,7.4649,4.1733,10.038,6.7979,7.3385,8.1194,3.274,1.3224,4.307,,,,,,,,,,,,,,,59,,,
-3807,1.1073,1.7682,,70-79y,Other,,,19.9187,3.9433,2.4072,2.1021,1.0894,ppmi,,,F,,0.40697,4.3667,4.1057,0.84783,8.6288,1.429,0.39221,2.8917,2.9048,44.2323,16.1485,254.1259,3.6179,4.9577,1.5376,1.7403,3.4961,6.5914,1.9158,3.0145,0.61311,5.6666,10.568,14.8332,6.7228,2.2153,4.5653,1.7969,17.7167,5.9251,3.8874,1.0136,2.6158,7.3198,13.8775,3.3759,4.1199,2.6171,1.4539,1.5551,4.1413,11.1947,2.9402,2.1818,10.7329,1.9396,2.5062,2.1613,11.9451,1.7229,4.1247,1.2036,14.6169,4.9049,8.2038,3.8289,11.7582,7.2096,8.327,7.8083,3.5121,1.4504,4.9902,,,,0.085389,CN,,HC,0.36953,4.0306,4.1157,0.82962,9.6608,1.7108,0.3939,3.1818,3.0786,44.0992,15.7263,261.6709,3.6342,4.8028,1.6458,1.9158,3.7942,7.1205,1.9307,3.2076,0.57522,6.7759,10.7691,10.2478,7.7902,2.056,4.3526,1.7031,18.3073,5.2773,3.7666,1.1348,2.7249,7.725,14.1221,3.0714,4.1736,3.3619,1.373,1.5399,3.938,10.8237,2.8314,2.3383,9.2691,1.9783,2.2204,2.1392,10.5585,1.7331,4.1724,1.1688,14.2109,5.1067,7.1005,3.9628,9.8039,7.1897,8.2179,7.7791,3.4759,1.566,4.7295,,,,,,,,,,,,,,,73,,,
-3808,1.7435,2.1639,,50-59y,Other,,,22.4549,5.9049,3.1456,2.6614,1.5615,ppmi,,,M,,0.45537,4.8356,4.4612,0.94177,10.2638,1.7374,0.42238,3.407,3.0045,55.1097,19.0558,256.5135,4.2499,5.3632,1.7646,2.092,3.9183,8.0601,2.2416,3.4596,0.54972,6.6784,12.105,16.5908,8.8115,2.6107,4.8169,1.9061,19.0823,6.8037,4.5311,1.3823,2.8658,7.8595,14.9086,3.7521,4.8652,3.51,1.6647,1.5449,4.9392,11.705,3.6826,2.4349,12.8501,2.9522,2.6558,2.4882,14.0341,2.5863,4.5197,1.3484,15.5278,5.7885,10.304,4.0314,11.7687,7.6865,9.1733,8.0889,4.1076,2.0258,5.4543,,,PD,0.095389,PD,,PD,0.392,4.0987,4.3223,0.883,10.9287,1.9218,0.42341,3.8682,3.0819,56.3664,18.6607,261.1617,4.3062,5.7047,1.648,2.0367,4.0854,8.5269,2.2184,3.5596,0.65158,7.4173,12.9205,15.4537,9.7476,2.4352,4.6527,1.8246,18.2813,5.8196,4.3461,1.4601,3.0112,8.5444,15.5013,3.6307,5.1091,3.7978,1.6184,1.5592,4.5341,11.5693,3.2503,2.5819,11.9763,2.3068,2.6528,2.2951,13.1563,2.1533,4.3928,1.3287,16.0986,5.882,7.9624,5.3708,11.5421,7.8725,8.9956,7.0852,3.9992,1.6402,5.2286,,,,,,,,,,,,,,,57,,,
-3809,1.192,1.6472,,50-59y,Other,,,18.8182,4.7344,2.4546,2.1861,1.3914,ppmi,,,F,,0.45375,4.3894,4.0647,0.90305,9.7898,1.3759,0.38256,3.9525,2.9519,45.4951,14.5758,217.0183,3.852,5.6229,1.7285,1.949,3.2545,7.6882,1.9301,3.2414,0.58009,7.0296,11.8195,15.2447,8.9564,2.177,4.451,1.7521,17.5404,6.0611,3.7359,1.3185,2.9252,6.275,14.4639,3.8376,4.8739,3.624,1.4146,1.3785,4.7239,12.1522,3.3367,2.2337,11.6867,2.3749,2.3591,2.0459,12.6086,2.2825,4.0028,1.1653,12.6267,4.833,9.432,4.2251,10.8449,7.2913,7.7706,7.0403,3.9524,1.816,4.572,,,,0.080315,CN,,HC,0.395,4.206,3.8331,0.90629,10.2954,1.6495,0.39583,4.0506,2.9933,45.1476,14.0016,218.0826,3.9066,5.4047,1.7734,2.0214,3.404,7.8669,2.0222,3.4784,0.74895,6.6266,11.9943,13.9808,9.0014,2.0382,4.7346,1.7405,16.5713,5.0873,3.6546,1.2128,2.7076,6.8562,15.2014,3.2595,4.4286,3.3961,1.4774,1.3519,4.2055,12.0651,3.1031,2.2924,10.2209,2.2148,2.0748,1.9497,12.3376,1.7355,3.9924,1.1557,12.1945,4.9233,8.5039,4.4324,11.2524,6.8669,7.6047,7.6909,3.6825,1.5067,4.4205,,,,,,,,,,,,,,,53,,,
-3811,2.9549,3.3899,,60-69y,Other,,,19.9731,4.9953,2.6708,2.2018,2.1203,ppmi,,,M,,0.44956,4.6858,4.5026,0.87018,8.4289,1.3494,0.40444,3.306,3.9105,46.8885,16.5697,225.0694,4.2943,4.714,1.5705,2.0622,3.6177,7.6124,2.0842,3.4904,1.6649,6.3988,11.0237,42.9749,7.7682,2.1665,5.1903,1.9543,17.2792,5.979,3.7933,1.0631,2.3633,7.0441,13.3267,3.7366,4.265,3.0235,1.2936,1.6284,4.688,10.175,3.3457,2.4469,11.6465,2.2481,2.3458,2.4664,12.7313,1.9802,4.4662,1.4095,13.2298,5.3023,8.1036,3.5653,9.6785,7.3302,9.0172,6.89,3.3891,1.6331,5.3027,,,,0.07995,CN,,HC,0.40716,4.1102,3.8082,0.85101,10.0374,1.6362,0.3953,3.799,4.2167,48.1208,16.6123,232.1667,3.992,5.1109,1.6048,1.8127,3.6286,7.6278,2.0099,3.5519,1.727,6.9134,11.0321,42.3838,8.4087,2.0047,4.7593,1.7894,16.7536,5.1901,3.7501,1.0491,2.4957,7.9721,13.3855,3.5084,4.3848,2.9135,1.3566,1.6382,3.9745,10.2962,2.9116,2.5706,10.597,2.2096,2.223,2.2378,13.3377,2.0479,4.4161,1.3088,13.1709,5.6535,7.9977,4.3828,9.5446,7.72,8.8193,6.9685,2.8584,1.7944,5.086,,,,,,,,,,,,,,,67,,,
-3812,1.0231,1.6738,,60-69y,Other,,,19.1536,4.3101,3.0423,2.2127,0.9419,ppmi,,,F,,0.36098,3.5788,3.3499,0.77413,7.9342,1.2022,0.33665,2.9691,2.6951,48.5784,16.259,189.0859,3.4668,4.0338,1.516,1.6267,2.6982,6.7569,1.7259,3.0443,0.55768,6.0944,10.1194,9.2062,6.7454,1.8979,4.0104,1.3201,15.2686,5.5523,3.3956,1.1224,2.4791,5.5332,12.6233,3.1264,3.9305,3.0658,1.2017,1.3949,3.7108,9.557,2.972,1.8521,11.5687,2.1632,2.1671,1.8558,12.861,1.7387,3.8739,0.98082,11.8527,4.4169,8.4732,3.6916,10.0172,6.3643,7.4507,6.0985,3.1307,1.2623,4.4731,,,,0.072362,CN,,HC,0.31542,3.216,3.2638,0.79788,9.4424,1.419,0.33667,2.8998,3.1142,48.5438,15.6682,195.7277,3.6493,4.0701,1.5846,1.5177,2.9251,7.2752,1.6949,3.3491,0.69417,5.6495,10.7288,10.5842,7.4602,1.8171,3.9982,1.286,15.0659,4.4442,3.1575,1.077,2.3471,5.5858,12.3149,2.6026,3.8957,2.5772,1.1473,1.4097,3.6966,10.1312,2.8181,1.8631,10.175,2.1674,1.9443,1.7086,12.0487,1.7201,3.8061,0.88853,12.8413,4.546,7.295,3.804,10.3254,6.1903,7.4454,6.6177,2.5412,1.2904,4.3373,,,,,,,,,,,,,,,64,,,
-3813,1.3615,1.7769,,60-69y,Other,,,18.4594,5.1235,2.8977,2.3403,1.1867,ppmi,,,M,,0.49677,4.6025,3.7886,0.86846,9.2394,1.4254,0.39379,3.2481,3.4685,48.6883,17.1423,222.105,3.9743,4.4883,1.6946,1.6773,3.4045,6.9901,2.1232,2.9357,0.53749,6.1583,11.0477,15.5576,7.5643,2.2539,4.8662,1.8948,19.4943,6.0831,3.8837,1.0699,2.5736,6.8402,14.416,3.0523,4.106,3.4005,1.3301,1.4357,3.974,10.2392,3.2713,2.3075,12.2477,2.1607,2.3251,2.1073,13.8702,1.6927,4.2689,1.2721,14.132,5.444,8.1978,3.3599,10.6258,7.1684,7.6729,7.739,4.1982,1.3529,4.554,,,,0.080163,CN,,HC,0.4392,3.8707,3.5893,0.86074,10.4473,1.5093,0.39744,3.4876,3.6053,49.404,16.6408,225.2743,3.7651,4.8565,1.7664,1.7066,3.5506,7.4494,1.992,3.237,0.56722,6.4109,11.4553,11.7712,8.4263,2.0149,4.2957,1.7483,19.7528,5.145,3.5518,0.99676,2.7181,7.5457,14.5714,2.5815,4.2456,3.5989,1.3788,1.3834,3.9312,10.6149,3.1591,2.3306,10.712,1.9536,2.2701,1.9342,13.1763,1.6169,4.081,1.2175,14.4552,5.4647,7.5551,4.2855,10.875,6.768,7.5205,7.8316,3.5271,1.3406,4.3321,,,,,,,,,,,,,,,65,,,
-3814,0.89143,1.5831,,60-69y,Other,,,20.4737,4.4371,3.0925,2.2181,1.0248,ppmi,,,M,,0.52161,5.3537,4.5408,0.81513,10.1289,1.8667,0.40594,3.9154,3.2628,49.1477,16.8042,242.9803,4.044,5.0228,1.5686,2.1423,4.0692,7.4132,2.4075,3.0076,0.31197,6.8072,11.3401,11.422,7.8297,2.7212,5.4048,2.1043,20.335,7.6694,4.7149,1.2952,2.8607,7.8401,13.9287,4.1361,4.575,3.5556,1.7415,1.4929,4.7901,11.4324,3.2395,2.3417,14.5974,2.6472,2.8339,2.2931,14.0072,2.3201,4.6477,1.4314,16.5268,5.7109,10.0883,4.3383,10.8332,7.8193,8.7751,8.0309,3.8364,1.6186,5.0888,,,PD,0.087173,PD,,PD,0.48238,4.7645,4.6005,0.86316,10.0493,2.0805,0.44286,3.7085,3.4899,49.8375,16.295,247.1375,4.5377,5.3614,1.7841,2.0546,4.2667,7.6836,2.4812,3.3247,0.5155,7.028,11.8874,10.4235,8.642,2.6549,5.3288,2.0509,20.9787,5.3432,4.5603,1.4116,2.8477,8.7287,15.0168,2.9881,4.7505,3.5262,1.8423,1.461,4.1998,12.3698,3.0134,2.4065,12.9811,2.4213,2.7406,2.1702,14.3813,2.1979,4.5762,1.3438,14.547,5.8541,8.8508,4.8354,10.5911,8.7396,8.6359,8.4427,3.9963,1.7038,4.8296,,,,,,,,,,,,,,,67,,,
-3815,1.8621,2.6057,,60-69y,Other,,,20.509,3.9336,2.3368,2.241,1.4748,ppmi,,,M,,0.48061,4.4829,4.8136,0.7994,9.5872,1.5517,0.42684,2.6359,2.9976,45.7066,16.3503,229.3445,4.2822,3.8147,1.6099,2.1431,3.565,7.4483,2.0913,3.0775,0.61973,6.0979,11.1792,13.874,6.9805,2.3363,5.0085,1.6989,19.7054,5.8732,4.1261,1.1182,2.835,6.9923,13.6806,3.1997,4.3922,3.6493,1.5915,1.6179,4.4728,10.2482,3.2529,2.5067,10.8501,2.4844,2.6391,2.2219,12.9452,2.2887,4.5584,1.3653,14.8316,5.6766,8.5674,3.6255,9.964,7.5524,8.6386,7.3217,4.1889,1.6913,5.3218,,,PD,0.082194,PD,,PD,0.42318,4.2417,4.5066,0.84434,9.6115,1.6419,0.40978,2.3124,3.0715,45.8931,15.6905,234.6072,4.258,4.1385,1.6856,2.2249,3.6594,7.7139,1.9357,3.4503,0.62659,6.367,11.5985,10.925,7.4172,2.1424,4.9935,1.6412,19.301,5.3798,3.5433,1.1318,3.0865,7.3115,14.3553,2.9679,4.4077,3.7773,1.4984,1.5466,4.1273,10.3693,3.051,2.4546,10.6672,2.2748,2.2409,2.0983,12.955,1.8553,4.3264,1.197,14.5794,5.7647,7.8841,3.9641,9.7302,7.4556,8.3131,7.9983,3.68,1.5046,5.0633,,,,,,,,,,,,,,,62,,,
-3816,1.9967,2.2553,,60-69y,Other,,,17.5242,4.2408,2.281,2.2602,1.3498,ppmi,,,M,,0.41782,4.4497,4.2645,0.88744,9.485,1.5162,0.37748,3.4384,3.347,42.3817,15.9373,225.8285,3.6958,4.4122,1.7368,2.0746,3.3529,7.5821,2.0281,3.145,0.7126,6.1993,11.8169,20.4546,7.1456,2.4176,4.9117,1.7134,18.2567,5.9787,4.1782,1.3422,2.9206,6.7209,14.9209,3.8529,4.1512,3.3928,1.5515,1.3805,4.7662,11.5013,3.3016,2.1777,11.4656,1.9637,2.6839,2.2049,12.4526,1.823,4.0557,1.2094,13.8674,5.3247,9.102,3.8022,11.1486,7.3868,8.038,7.6833,4.0253,1.3243,4.5449,,,,0.07591,CN,,HC,0.40428,3.91,4.1031,0.87974,9.9236,1.6046,0.38874,3.4644,3.7526,43.3764,16.0506,235.2758,3.9918,4.9694,1.8019,2.0571,3.6888,7.6035,1.9974,3.4492,0.69865,6.9157,12.3673,20.7884,7.8403,2.1047,4.2393,1.7535,18.6951,5.7697,3.7305,1.0928,2.731,8.025,15.2916,3.306,4.2684,3.809,1.5148,1.404,4.2411,11.3116,3.0213,2.1911,10.9163,2.2069,2.351,1.9602,12.6508,1.8248,3.9806,1.1188,13.3529,5.3784,7.4506,4.5996,11.0478,7.2931,7.9293,7.7406,3.6156,1.44,4.4104,,,,,,,,,,,,,,,65,,,
-3817,1.9834,1.9406,,70-79y,Other,,,20.3326,4.9059,2.6938,2.339,1.4718,ppmi,,,M,,0.44345,4.789,4.3643,1.0257,8.6325,1.567,0.40533,3.9197,2.9202,45.0572,16.0733,220.0864,3.7518,5.3028,1.9915,2.0686,3.6133,7.2301,2.1695,3.5119,0.5517,6.2255,11.6771,16.8783,8.3454,2.4418,4.923,1.7584,19.5607,6.4765,4.0761,1.1138,2.6153,7.617,14.029,3.6217,4.3406,3.3662,1.7073,1.4364,4.7538,11.5444,3.6173,2.1999,11.7428,2.3016,2.6039,2.0018,13.5397,1.9362,4.0277,1.3318,15.3063,5.6012,8.6651,4.1622,9.4467,6.7304,8.2533,7.504,3.9354,1.431,4.9685,,,,0.086351,CN,,HC,0.41984,4.3819,4.2499,0.93401,10.2352,1.908,0.4249,3.6369,3.1229,45.8001,15.6556,222.9559,3.8467,4.5554,1.8502,1.9618,3.8051,7.652,2.1321,3.6074,0.7085,6.731,11.9415,14.9382,8.3641,2.4089,4.4921,1.7572,18.4509,5.4274,3.9986,1.0952,2.4987,8.5386,13.7992,3.2376,4.6281,3.2328,1.5978,1.4213,4.3906,11.4139,3.1569,2.2433,9.266,2.114,2.4935,1.8048,13.3044,1.8426,3.9197,1.2658,15.4386,5.9342,7.1049,4.2936,11.7104,6.468,8.0079,7.546,3.3789,1.3966,4.7392,,,,,,,,,,,,,,,74,,,
-3818,0.94469,1.4035,,70-79y,Other,,,16.7303,4.1721,2.4055,2.0837,1.0359,ppmi,,,F,,0.3618,3.2577,3.5029,0.70966,7.8778,1.1396,0.30354,2.5589,2.6591,43.5325,13.6077,175.1912,3.066,3.6349,1.462,1.6463,2.7749,6.2962,1.639,2.6682,0.56678,5.598,9.4527,7.1586,6.4358,1.8456,3.8656,1.2847,13.8401,5.1491,3.0385,0.78404,2.094,5.3392,11.7514,2.7298,3.7054,2.5661,1.192,1.2056,3.302,8.2807,2.824,2.0599,9.4859,1.6732,1.9781,2.0343,10.8278,1.5007,3.8043,0.87605,11.9182,4.6291,7.2797,2.8804,8.7006,6.272,6.7451,6.1497,2.8858,1.3144,4.0129,,,PD,0.081849,PD,,PD,0.31124,3.0578,3.2018,0.67106,7.6278,1.3301,0.30878,2.6485,2.6439,43.7839,13.1665,174.2577,2.955,3.783,1.3725,1.5002,2.8894,6.3372,1.5693,2.7713,0.73557,5.3527,9.2839,7.6236,7.0511,1.6499,3.6809,1.2901,13.7694,3.6371,2.9629,0.96781,2.2989,5.5489,11.4498,2.2102,3.6485,2.724,1.0816,1.1161,3.0603,8.4479,2.6743,1.946,8.521,1.5713,1.8466,1.7451,9.9464,1.3942,3.6413,0.82972,11.908,4.3909,6.4216,3.4084,8.2845,6.1318,6.3983,5.8468,2.7449,1.1792,3.795,,,,,,,,,,,,,,,73,,,
-3819,1.2939,2.0734,,50-59y,Other,,,17.2171,5.0909,2.3454,2.3945,1.4847,ppmi,,,F,,0.42582,4.3411,4.6796,0.88312,9.5546,1.742,0.40107,3.4216,2.8342,46.3531,13.9892,197.5393,4.0726,4.8323,1.8997,1.9628,4.0647,8.0266,2.1726,3.2324,0.71187,6.417,12.6261,17.6283,8.2081,2.6168,4.509,1.8366,17.9346,5.7541,4.2668,1.1831,2.9129,6.5943,14.1413,3.5576,4.6803,3.147,1.5706,1.3526,4.2604,11.0206,3.4443,2.5037,11.7809,2.3915,2.6434,2.5393,13.2135,2.0673,4.0342,1.3514,16.738,5.2949,8.9627,3.7533,10.5243,7.6367,8.0658,8.6112,3.2608,1.9525,4.5985,,,PD,0.088696,PD,,PD,0.40243,4.333,4.3047,0.87817,10.2279,1.6329,0.40375,3.4831,2.9047,45.7353,13.6561,198.0878,4.3045,5.1953,1.8326,2.0638,4.0477,7.635,2.2007,3.3558,0.62534,6.1484,12.438,14.1406,8.5069,2.1473,4.7459,1.792,18.2957,5.4832,3.8979,1.17,2.7169,7.8791,14.9828,2.7156,4.117,3.4623,1.7014,1.3186,3.5641,10.6657,3.0477,2.5229,10.8168,2.5518,2.4113,2.2503,12.2576,2.1178,3.886,1.2668,15.4662,5.5471,7.9667,4.2072,9.7054,7.6777,8.0933,8.3563,3.8357,1.7521,4.335,,,,,,,,,,,,,,,53,,,
-3822,1.4751,1.899,,50-59y,Other,,,19.7521,5.1928,2.7145,2.4989,1.3263,ppmi,,,M,,0.43676,4.976,4.349,0.97759,9.5581,1.709,0.41032,3.7902,3.1153,53.5543,18.3895,240.4091,3.9565,5.2663,1.9802,2.0432,3.78,8.1939,2.2207,3.3003,0.4661,7.7831,12.383,16.098,8.369,2.7518,4.8696,1.9383,20.6694,8.0973,4.3664,1.3792,3.4963,7.5447,15.198,4.7238,5.0219,3.3711,1.7636,1.5006,4.9484,11.5852,3.5684,2.3249,12.7651,2.7547,2.7973,2.3115,14.3959,2.4185,4.3682,1.2512,15.2771,5.7009,9.133,5.0712,12.0871,7.9458,8.6893,7.9434,4.3293,1.6854,4.8013,,,PD,0.07575,PD,,PD,0.41542,4.4339,4.2383,0.96368,11.7382,1.8844,0.42389,4.1001,3.2114,54.129,17.8417,244.3542,3.9512,6.1629,1.9202,2.229,3.9176,8.702,2.1236,3.55,0.48901,8.208,12.7172,12.4631,9.8613,2.4699,4.6456,1.8305,19.436,6.2081,4.0493,1.2469,2.9647,7.9635,15.5155,4.274,5.2561,3.6573,1.6874,1.3983,4.5382,11.6634,3.3822,2.3831,11.6583,2.2371,2.4251,2.1762,14.0744,2.058,4.3206,1.1962,14.575,5.4233,8.5776,5.6011,10.7545,7.675,8.4802,8.3412,4.0235,1.5435,4.6236,,,,,,,,,,,,,,,56,,,
-3823,1.4694,2.2504,,50-59y,Other,,,17.0968,4.4118,2.2779,2.0702,1.5902,ppmi,,,M,,0.49028,4.7358,4.6614,0.88955,8.5084,1.7222,0.42316,3.5079,3.2908,43.3175,14.9303,230.2435,4.3094,4.7957,1.6704,2.0707,3.4827,7.3692,2.0569,3.2015,0.56961,6.7623,11.0418,15.0389,7.4752,2.5218,4.6682,1.9017,21.1211,6.1315,4.2296,1.1635,2.5181,7.1425,13.4476,3.9866,4.2319,3.09,1.7312,1.5541,4.2035,10.4867,3.2857,2.4729,10.676,2.5875,2.675,2.4292,13.7001,2.3194,4.7794,1.3027,13.6653,5.0296,7.6348,3.7792,9.8173,7.2906,8.3996,7.6826,4.3651,1.9672,4.6538,,,PD,0.064144,PD,,PD,0.42881,4.2557,4.1809,0.87472,9.2665,1.9062,0.43451,3.4708,3.3149,44.346,14.6324,232.5671,4.1327,5.2032,1.7618,1.9189,3.8937,7.3881,2.1028,3.3489,0.64377,6.8743,11.4605,14.8531,7.8968,2.3774,4.6119,1.9543,19.8867,5.0575,4.0036,1.0562,2.4095,8.3833,14.3163,3.3967,4.363,3.1236,1.5419,1.4847,4.008,10.1765,3.0166,2.4986,9.2664,2.4429,2.4081,2.3295,13.9819,2.096,4.6441,1.223,14.0147,5.263,6.6866,4.6507,9.5571,7.3372,8.1374,7.8703,3.6967,1.7128,4.3828,,,,,,,,,,,,,,,57,,,
-3824,1.3955,2.9582,,50-59y,Other,,,17.6496,4.6887,2.6022,2.0819,1.6771,ppmi,,,F,,0.43032,4.4653,4.0882,0.83431,9.8017,1.6577,0.37823,3.4182,2.9955,47.7348,15.7353,213.4052,4.102,4.5998,1.5689,1.9457,3.4152,7.2192,1.9382,3.2317,0.83782,6.9827,11.3311,31.3599,7.846,2.5568,4.9111,1.7404,19.7947,5.993,4.1053,1.1469,2.6897,6.6863,14.6343,3.8182,4.2185,3.4778,1.6737,1.4032,4.3832,11.156,3.1624,2.4061,13.0618,2.5585,2.6588,2.1475,12.9468,2.2085,3.8992,1.24,14.67,5.3149,9.9041,3.3803,10.9036,7.0278,7.9937,7.755,3.934,1.7264,4.5465,,,PD,0.079513,PD,,PD,0.37788,3.7619,3.7696,0.83418,10.9955,1.7898,0.38551,3.3589,3.1314,48.21,15.1084,219.1014,4.5057,5.5932,1.6689,1.9047,3.6851,7.6047,2.1042,3.4066,0.72202,6.6901,12.001,20.9182,8.4542,2.1754,4.7755,1.7933,17.6667,5.6984,3.8718,1.2026,2.7593,7.53,14.7081,3.0159,4.3607,3.2678,1.4335,1.3605,4.0872,11.5001,3.0388,2.267,11.1575,2.6861,2.303,2.0746,14.2977,2.2959,3.7265,1.2,15.8919,5.702,8.7358,4.6887,10.4394,7.503,7.717,8.1953,3.138,1.7472,4.3371,,,,,,,,,,,,,,,55,,,
-3825,1.3721,3.8591,,50-59y,Other,,,23.9813,5.9268,3.6294,2.8153,1.3674,ppmi,,,M,,0.59319,5.6675,5.0929,1.1357,11.2434,1.7471,0.47462,3.9079,3.6651,59.5871,20.0062,272.6341,4.9391,5.0998,2.1218,2.3908,4.4945,8.6573,2.5311,3.7276,0.39895,8.3893,14.2464,14.5306,8.6388,2.8209,6.014,2.6147,23.2566,8.3073,4.4401,1.174,2.737,8.9219,17.4638,4.4726,5.1037,3.9626,1.8564,1.8681,6.25,14.0621,3.8266,2.7946,14.587,3.498,2.6714,2.5585,17.1614,3.3831,5.1925,1.659,19.3515,6.3048,10.9189,4.5304,13.2391,8.8988,9.9809,9.0896,4.5443,2.1116,5.7389,,,PD,0.089097,PD,,PD,0.5316,4.8181,5.0963,1.1642,13.0777,2.1344,0.48835,4.1799,3.8226,60.8882,19.0911,284.0433,5.1636,5.3998,2.2151,2.5019,4.8542,9.3038,2.8031,3.9737,0.48683,8.4102,14.0817,12.105,10.1308,2.7497,6.3923,2.5636,23.9203,6.7709,4.6317,1.4401,3.119,10.4205,17.4399,3.9402,5.4927,4.2696,2.0581,1.8883,5.8455,13.5176,3.603,2.9681,12.4123,2.8748,2.6768,2.603,15.7294,2.4101,5.0961,1.556,18.824,6.9866,9.0228,5.1919,13.6957,8.9783,9.6039,9.8385,4.7188,1.9033,5.5781,,,,,,,,,,,,,,,58,,,
-3826,2.0029,2.1225,,70-79y,Other,,,18.0838,5.0939,2.4768,2.3454,1.256,ppmi,,,M,,0.42618,4.1976,4.107,0.82965,8.2029,1.3655,0.36878,2.9943,2.9178,47.1039,15.0701,218.1148,3.5905,3.8742,1.6029,1.8231,3.1667,6.5586,1.9191,3.2995,0.9293,6.1239,9.1743,17.6374,7.3479,2.0615,4.2372,1.6192,16.3704,5.3813,3.6401,1.0648,2.496,6.3925,12.1015,3.31,4.161,3.0583,1.3747,1.4885,4.448,10.5876,3.3136,2.2119,12.1144,2.388,2.3348,2.0699,12.5119,1.7306,4.4188,1.0582,13.2985,4.9907,8.7198,3.1303,10.2074,6.04,7.8175,6.8088,3.5939,1.3972,4.7419,,,PD,0.079443,PD,,PD,0.39757,4.0454,3.7509,0.83097,9.0063,1.5717,0.38246,3.3152,3.0748,46.7723,14.8011,223.8852,3.3162,4.6033,1.632,1.6365,3.2582,6.9196,1.8403,3.4172,1.0843,5.829,10.5289,15.6458,7.8469,1.9322,4.2598,1.6569,16.4212,4.2574,3.3773,1.1528,2.523,7.1666,13.006,2.5076,4.0847,2.8185,1.2675,1.3842,3.9483,11.1206,2.9488,2.3653,9.5585,1.9926,2.1031,2.0693,11.9471,1.6235,4.3927,0.98316,13.4843,5.1956,7.2049,4.0515,10.3935,5.6867,7.4626,6.9748,2.9548,1.3571,4.4874,,,,,,,,,,,,,,,77,,,
-3827,1.4158,1.8472,,70-79y,Other,,,18.4149,4.5921,2.4979,2.1904,1.6676,ppmi,,,F,,0.4395,4.3623,4.3311,0.78257,9.2154,1.4719,0.3876,2.9685,3.0195,43.7301,13.6501,206.5189,3.9973,3.817,1.5064,1.9775,3.6089,6.656,1.9577,2.8101,0.51413,5.913,9.6955,22.1552,7.1228,2.1743,4.3384,1.796,18.9679,6.2583,3.841,1.1833,2.5768,6.5902,12.8634,2.9718,4.007,3.4487,1.4591,1.2723,4.0484,10.3096,3.0517,2.2641,11.4986,2.0389,2.3151,2.1085,13.7061,1.6193,4.2764,1.248,13.6595,4.9871,9.3433,3.4383,11.4584,6.7417,7.7303,7.255,3.7458,1.3154,4.454,,,PD,0.072069,PD,,PD,0.37734,3.7948,3.9555,0.75247,10.5949,1.6441,0.37933,3.1181,3.248,43.2716,13.4719,208.8223,3.4223,4.4227,1.5931,2.0245,3.4892,6.6948,1.8828,3.0354,0.53615,6.2225,10.1604,15.6639,7.8421,2.1173,3.8058,1.6068,17.989,5.2767,3.5382,1.1641,3.1661,7.4525,13.3143,2.94,4.221,2.9685,1.4912,1.2918,3.9256,10.3913,2.8088,1.9873,10.0252,1.92,2.3088,1.7873,12.9853,1.6547,3.9853,1.1588,14.1418,5.3099,7.1728,3.9869,10.4899,6.8482,7.6864,6.8503,3.3641,1.2887,4.2836,,,,,,,,,,,,,,,75,,,
-3828,1.4646,2.855,,70-79y,Other,,,20.359,5.3493,2.5135,2.3722,1.7158,ppmi,,,M,,0.44202,4.4014,4.4627,0.8329,9.5482,1.6359,0.35048,2.8333,3.1144,46.3089,17.0928,220.0946,3.7849,3.7538,1.6499,2.1898,3.7048,7.1722,1.9672,2.9672,0.69718,6.4299,11.648,20.3228,7.45,2.3228,4.4187,1.7867,17.1651,6.6229,3.8438,0.91816,2.1481,6.8152,15.457,3.3343,4.0742,3.2151,1.445,1.4748,4.3236,9.6536,3.3487,2.3333,10.6428,2.0069,2.3846,2.247,11.9153,1.7832,4.2945,1.0757,14.5284,4.7539,8.731,3.1725,10.493,7.3468,8.173,7.5516,3.7048,1.3974,5.1034,,,PD,0.077508,PD,,PD,0.39848,3.6219,4.2956,0.83376,10.7136,1.5614,0.35836,2.9991,3.3548,46.8431,17.0131,227.6732,3.9771,4.2997,1.6733,1.8832,3.9724,7.6445,1.9419,3.1725,0.55881,6.7698,11.4143,15.4511,8.1726,2.0609,4.3367,1.7542,17.3514,5.4917,3.3813,0.94763,2.18,7.5722,14.1933,2.8382,4.2451,2.8355,1.5696,1.4602,4.0001,10.3134,3.2894,2.3161,8.9336,2.0505,2.1393,2.0307,11.7486,1.7704,4.3789,1.0532,14.4901,5.0378,8.6065,3.9229,10.3783,7.5918,8.0622,7.5048,3.3619,1.3977,4.8707,,,,,,,,,,,,,,,77,,,
-3829,1.4702,1.6125,,60-69y,Other,,,18.4491,4.6337,2.7597,2.2072,1.0858,ppmi,,,F,,0.45136,4.5502,3.982,0.81762,10.0397,1.5121,0.39473,2.942,3.187,46.0803,15.1758,228.6086,4.1239,4.0498,1.551,1.8674,3.4428,6.8563,1.8926,3.0244,0.71776,6.1559,10.3171,12.7067,6.7077,2.2809,4.8291,1.7294,19.2068,5.9589,3.6779,1.1379,2.5424,6.6732,13.3113,3.3284,4.131,3.0356,1.3425,1.3607,4.3567,10.5818,3.0331,2.3562,12.7415,2.4992,2.2915,2.252,12.643,2.2826,4.68,1.1799,14.0576,5.3191,9.4505,3.3529,10.8956,6.8217,8.0607,7.1106,3.3574,1.8994,4.6026,,,PD,0.081531,PD,,PD,0.38141,3.7028,3.926,0.82409,9.9438,1.7716,0.37519,3.1648,3.0927,46.0938,14.5536,235.6534,3.7096,4.5631,1.6022,1.8568,3.9055,7.0627,1.9734,3.2998,0.64612,6.1025,10.9705,11.0455,7.3845,2.2055,4.5395,1.7771,18.5887,4.7498,3.6386,1.1445,2.4019,7.8812,14.2276,2.6742,3.9836,3.2577,1.3899,1.386,4.0823,10.9922,2.9029,2.2261,10.8085,2.1263,2.1561,2.0021,12.5521,1.8481,4.454,1.1511,14.2554,4.9788,7.8236,4.2994,10.2915,7.404,7.8365,7.6639,3.284,1.5094,4.3807,,,,,,,,,,,,,,,67,,,
-3830,0.76472,1.4539,,50-59y,Other,,,14.9272,4.3374,2.2956,2.0786,0.89363,ppmi,,,F,,0.36125,3.5639,3.8298,0.80237,8.9615,1.3014,0.3343,2.8079,2.78,42.5241,13.0193,196.8224,3.8154,4.0853,1.6117,1.8213,3.0572,6.8666,1.7623,2.9749,0.32923,5.8454,10.3278,7.3403,7.0997,2.2297,4.0546,1.4511,15.7329,5.6448,3.4002,1.2272,2.5987,5.7825,11.8974,2.9405,3.8708,3.0249,1.4405,1.2351,4.0401,10.3768,3.0097,2.1534,10.8425,2.2104,2.1534,2.0281,11.0057,1.7341,3.5389,0.93295,13.1011,4.6453,8.4441,3.2188,10.3271,6.1631,6.8742,6.6759,3.3432,1.6167,4.0657,,,PD,0.075166,PD,,PD,0.31313,2.8397,3.5233,0.8255,9.564,1.5179,0.32632,3.2355,2.8614,42.7434,12.8862,199.514,3.6725,4.4478,1.7428,1.6277,3.2738,7.0436,1.863,2.9633,0.30766,5.7608,10.2199,8.0966,7.5818,1.9594,3.9251,1.4884,15.1297,4.468,3.3868,1.2671,2.78,6.6597,12.3902,2.7087,4.0212,2.9974,1.3566,1.2393,3.7202,10.0857,2.8277,2.0741,9.4009,1.9308,2.0193,1.9137,10.642,1.7091,3.4173,0.90842,12.3408,4.7457,7.5243,3.8806,10.1858,6.4111,6.6355,6.9178,3.0256,1.4444,3.894,,,,,,,,,,,,,,,52,,,
-3831,1.2111,2.0922,,70-79y,Other,,,18.6537,4.8304,2.7769,2.2424,0.91815,ppmi,,,M,,0.39484,3.9791,3.9583,0.84578,8.667,1.5066,0.36652,3.0504,2.7461,48.1855,16.3641,203.9542,3.9138,4.7317,1.6575,1.7855,3.191,7.4185,1.9325,3.0442,0.56563,5.9543,10.7914,14.2856,7.3339,2.3277,4.3547,1.5646,16.7159,5.7411,3.8187,1.1653,2.3997,6.4374,12.7209,3.4318,4.274,2.8142,1.4449,1.2164,4.1655,10.145,3.2298,2.15,11.3812,2.0613,2.6027,2.1084,11.8313,1.7038,4.2891,1.1184,13.5007,4.6456,7.7683,3.7349,10.2431,6.8433,7.7915,7.6371,3.3985,1.4402,4.3114,,,PD,0.065592,PD,,PD,0.34011,3.5427,3.6261,0.84056,9.6905,1.6709,0.36461,3.4554,2.8024,48.6127,15.9908,208.4893,3.4014,4.8608,1.6783,1.8761,3.5857,7.3534,1.9386,3.2654,0.64213,6.2599,10.6154,10.2964,7.8337,2.0059,4.3001,1.6025,15.4116,5.5486,3.5436,1.1594,2.5426,7.071,12.3558,3.2005,4.3097,3.3401,1.3321,1.1905,3.8374,10.0299,3.0089,2.0809,8.9603,2.1279,2.1242,1.9489,11.5395,1.801,4.0391,1.0136,12.8751,5.1207,7.588,4.282,9.5572,7.0342,7.5836,7.7981,3.1267,1.2937,4.1803,,,,,,,,,,,,,,,76,,,
-3832,1.6981,1.7595,,60-69y,Other,,,21.1109,5.1046,2.6756,2.1782,1.2704,ppmi,,,M,,0.49611,4.296,4.3607,0.90936,9.514,1.5436,0.40023,3.3674,3.2294,47.0428,18.1174,241.6336,3.9624,4.4595,1.7728,1.9587,3.2946,7.7371,2.0097,3.2009,0.54013,6.6694,12.1805,11.0558,7.8853,2.2666,4.7123,1.6802,19.2611,6.3779,3.9969,1.3022,2.7984,6.7768,15.0379,3.5542,4.1723,3.2004,1.3796,1.5324,4.8558,11.4072,3.3712,2.3908,12.9502,2.5548,2.4642,2.3371,13.7344,2.1539,4.6127,1.2255,13.7358,5.5318,9.9233,4.2688,11.4052,7.8883,9.054,8.2734,3.8576,1.6068,5.1768,,,PD,0.081782,PD,,PD,0.43147,3.8381,4.2825,0.89561,9.8063,1.6593,0.40869,3.5256,3.4491,48.1866,17.4472,247.8279,4.1029,4.9825,1.7662,2.1921,3.5861,8.2502,2.0343,3.4766,0.55633,6.3747,12.3267,10.0423,8.8109,2.0862,4.6192,1.7537,18.5818,5.259,3.7031,1.0922,2.86,7.4179,14.947,2.9996,4.2169,3.9979,1.488,1.514,4.3107,10.7463,3.2078,2.4467,11.5953,2.4417,2.2275,1.9879,13.0218,2.1577,4.4805,1.1508,14.4717,5.7265,8.5535,4.4554,12.255,8.0453,8.9276,7.8926,3.6981,1.4549,4.9934,,,,,,,,,,,,,,,65,,,
-3833,2.303,1.9825,,70-79y,Other,,,17.2057,4.4402,2.264,2.2499,2.6704,ppmi,,,F,,0.42348,3.9691,3.9543,0.79756,8.4064,1.1709,0.36608,3.1148,3.5608,41.9118,13.3569,198.9312,3.2249,3.9866,1.4449,1.7341,3.0322,6.4955,1.7483,2.9845,1.2076,6.0883,9.9652,31.4837,7.099,2.0271,3.9806,1.5281,15.8734,5.7735,3.3261,1.1133,2.4498,6.4145,11.8975,3.5044,4.151,2.9115,1.3397,1.4018,3.9507,9.9573,3.0028,2.1956,11.2072,1.7134,2.1794,2.0495,12.1635,1.3796,3.9593,1.1959,14.2116,4.7183,8.0811,3.2596,10.2235,6.3852,7.9224,6.6883,3.4882,1.1788,4.6973,,,PD,0.090087,PD,,PD,0.37498,3.4513,3.8713,0.81552,9.3977,1.3614,0.3827,3.3621,3.6834,43.1501,13.0754,202.4949,3.4882,4.4778,1.5507,1.6748,3.2192,6.7588,1.7748,3.2114,1.5448,6.5989,10.2992,30.2063,7.9625,1.9275,3.7927,1.4956,16.6664,4.7598,3.1538,0.9744,2.4195,6.8831,12.1454,2.8494,4.2322,3.3153,1.3519,1.4315,3.6475,9.7008,2.883,2.2532,9.3401,1.5763,2.0347,1.9801,11.2399,1.323,3.9828,1.1201,13.124,4.458,7.14,4.0175,9.1055,6.389,7.8305,7.1471,3.3735,1.2432,4.5184,,,,,,,,,,,,,,,74,,,
-3834,1.9833,1.6269,,60-69y,Other,,,23.2889,5.731,3.0964,2.5849,2.1978,ppmi,,,M,,0.55211,5.5687,4.3866,0.9201,10.5458,1.7155,0.4375,3.4455,3.8217,52.6166,18.743,258.7697,4.5463,5.0216,1.6393,1.9022,4.0665,7.8794,2.2528,3.3146,0.56487,6.681,12.4326,17.4278,7.7352,2.5454,5.8291,2.1979,19.98,6.6369,4.4524,1.3148,3.4453,8.8045,15.0601,3.6252,4.8195,3.0855,1.5566,1.6496,5.3463,13.2159,3.37,2.4543,12.1738,2.7629,2.6631,2.5718,14.7572,1.974,4.9961,1.4501,17.2146,6.8026,10.9845,3.8888,13.0555,7.5208,8.9241,8.0422,3.7274,1.5551,5.581,,,PD,0.097157,PD,,PD,0.4791,5.3729,4.2792,0.92227,11.2436,1.8887,0.45448,3.5951,4.1075,53.0058,18.2108,266.585,4.3057,5.3964,1.7423,1.854,4.2662,8.4122,2.122,3.639,0.63012,7.2182,12.9077,17.7803,9.1623,2.5261,5.888,2.0308,20.7786,5.7568,4.0261,1.3735,3.3979,9.4297,16.4308,3.4381,5.006,3.5183,1.572,1.6136,5.0821,13.6273,3.3745,2.5953,12.5786,2.4401,2.8554,2.263,14.6128,1.9911,4.7688,1.379,16.6881,6.7091,9.2456,4.8088,11.7565,7.9586,8.7059,8.1811,3.3984,1.5371,5.3136,,,,,,,,,,,,,,,69,,,
-3835,1.819,1.5839,,70-79y,Other,,,19.2471,4.8853,2.6958,2.3468,1.6524,ppmi,,,M,,0.4707,5.1007,4.6369,0.83002,8.8606,1.5452,0.41352,3.3866,2.9391,44.1074,14.9679,235.0615,4.2551,4.4235,1.6598,2.1142,3.7504,7.2562,2.2515,3.2103,0.62995,6.7774,11.5367,19.5265,7.2212,2.5348,5.1553,2.022,20.2886,6.4581,4.1112,1.2573,3.1372,7.8469,13.7328,4.08,4.1416,3.4107,1.6711,1.3589,4.6169,11.2872,3.3234,2.359,13.4574,2.9068,2.5619,2.3614,15.236,2.5219,4.0303,1.4623,16.9683,6.0215,9.4338,3.752,12.2748,6.7832,8.3285,8.1633,4.0038,1.8788,4.8907,,,PD,0.076025,PD,,PD,0.38976,4.2012,4.0979,0.8337,10.9712,1.8136,0.40266,3.318,3.0393,44.7502,14.7497,242.7321,4.5209,4.4816,1.7948,2.3183,4.1375,7.5309,2.3376,3.3846,0.53137,6.6039,12.1173,14.1891,7.6213,2.3534,4.8476,2.0208,20.4948,5.7628,4.0992,1.0277,3.0978,9.0185,14.9718,3.224,3.9277,3.9784,1.761,1.3517,4.4421,11.6766,3.146,2.2822,10.9773,2.2089,2.4394,2.2876,14.8273,2.0922,3.9758,1.3415,16.0513,6.2881,7.9071,4.4777,12.1957,7.7329,8.104,8.4261,4.0836,1.6514,4.6942,,,,,,,,,,,,,,,72,,,
-3837,1.0492,1.6189,,60-69y,Other,,,20.5482,4.8849,3.0484,2.1918,1.0535,ppmi,,,M,,0.50578,4.3204,4.08,0.92265,10.2728,1.54,0.39778,3.4392,3.5824,48.8363,17.6478,260.19,4.1901,5.0267,1.6597,1.9579,3.1111,8.0692,2.0038,3.1861,0.35518,6.9996,12.5155,11.9786,7.4249,2.3067,4.949,1.7284,19.8842,7.136,3.9822,1.1639,3.0215,6.7351,15.4242,3.4005,4.3356,3.3619,1.4408,1.5959,4.7207,11.5713,3.3152,2.309,13.8191,2.5126,2.4999,2.227,13.7274,2.249,4.3604,1.2148,15.583,5.4156,8.6515,4.0077,12.1027,8.1899,9.1644,7.5366,3.8971,1.6724,5.1862,,,PD,0.08748,PD,,PD,0.44117,4.0729,3.8769,0.89549,10.9189,1.6894,0.39902,3.6596,3.6934,48.5176,17.093,263.9668,4.0598,4.8213,1.7663,2.0091,3.2032,8.4708,1.9693,3.3683,0.45342,7.4632,12.7956,11.171,8.3513,2.1338,4.9205,1.6539,19.0979,5.7138,3.6971,1.1252,2.884,7.2214,16.0495,3.1041,4.4605,3.857,1.441,1.6296,4.3791,11.376,3.1769,2.3158,11.3503,2.3677,2.344,2.0018,14.4817,2.1343,4.3065,1.1259,15.5836,5.4341,8.7957,4.4916,11.1519,8.0899,8.7975,8.2269,3.6451,1.5398,4.8485,,,,,,,,,,,,,,,64,,,
-3838,1.1484,1.7431,,60-69y,Other,,,19.337,4.3381,2.5623,2.0846,1.1671,ppmi,,,F,,0.59862,5.6426,5.2123,0.98843,10.6564,1.9892,0.4644,3.6919,3.4116,46.1198,15.4863,243.4901,4.8211,5.0098,1.9397,2.3768,4.0614,8.2,2.5497,3.4593,0.42347,7.5249,12.0948,9.5515,8.2654,2.8874,5.242,2.198,22.97,7.281,5.0522,1.3228,3.3094,8.4698,15.0692,3.914,4.6011,4.1171,1.8321,1.5201,5.0945,12.6595,3.6663,2.659,15.6518,2.613,3.163,2.5417,16.4542,2.2241,5.5281,1.4327,15.9608,6.7238,10.4373,4.3999,11.1058,7.8988,9.7614,8.4698,5.1842,1.795,5.1843,,,PD,0.086938,PD,,PD,0.53222,4.5967,4.7465,0.97075,11.4086,2.15,0.46672,3.5454,3.5175,45.3166,15.1651,247.853,4.5979,5.1584,2.0267,2.4428,4.6953,8.294,2.5605,3.7652,0.62624,7.7506,12.2628,8.5612,8.8049,2.5114,4.7466,2.2794,22.538,6.3365,4.8306,1.5228,3.6204,10.0803,15.536,3.6952,4.5316,3.9564,1.6218,1.5075,4.536,11.8199,3.3613,2.5666,12.5801,2.6097,2.6849,2.1686,15.852,2.2879,4.9683,1.4127,17.7915,7.1762,9.6027,4.9627,11.215,8.6898,9.55,8.6879,3.7644,1.6736,4.959,,,,,,,,,,,,,,,61,,,
-3850,0.84764,2.0058,,50-59y,Other,,,17.2869,4.4005,2.442,2.0523,0.92987,ppmi,,,F,,0.45829,3.8896,3.4763,0.78982,8.9791,1.4763,0.35589,3.2366,3.0981,43.4286,13.6152,208.4647,3.1336,4.6207,1.4514,1.6731,3.4164,6.9405,1.7362,3.0483,0.48487,5.8161,9.9517,14.6786,7.6003,2.2625,4.1268,1.5883,16.8508,6.362,3.6636,0.96773,2.2338,6.1993,12.1118,3.3298,4.1659,3.5487,1.2592,1.4315,3.854,9.8619,2.9681,1.9254,12.1844,1.697,2.3534,1.9312,13.1283,1.4025,4.1164,0.98966,13.6106,4.6609,7.7324,3.6918,10.2125,6.0482,7.8714,6.3426,3.6451,1.1859,4.5634,,,,0.06678,CN,,HC,0.42529,3.3363,3.4297,0.78464,9.6538,1.5704,0.36069,3.4467,3.1987,44.3724,13.488,210.555,3.1186,4.7285,1.5463,1.5748,3.1985,7.2648,1.6862,3.2161,0.44864,6.2563,10.711,11.6003,7.8426,2.0304,4.2024,1.477,16.4888,5.1536,3.3178,1.1114,2.2949,7.1906,12.4416,2.7773,3.8925,2.9858,1.1986,1.3923,3.5491,9.5949,2.6488,1.8537,11.0453,1.7065,2.2566,1.6993,13.3237,1.5036,4.1118,0.92888,13.5611,5.1048,7.9548,4.5349,9.9425,6.1468,7.6988,6.8096,2.9632,1.2031,4.3492,,,,,,,,,,,,,,,50,,,
-3851,0.72613,1.5082,,50-59y,Other,,,18.185,4.3585,2.8184,2.3099,0.76111,ppmi,,,F,,0.43494,4.0668,3.7097,0.87539,7.8121,1.455,0.36496,2.8475,2.8533,46.5355,15.0439,192.9599,4.0358,3.8458,1.611,1.8433,3.2143,6.8057,1.89,3.1359,0.43188,5.0452,10.7286,7.5023,7.0909,2.2608,4.7512,1.6117,17.9444,5.1656,3.6894,1.1894,2.3521,6.1847,12.8078,2.4186,3.6307,3.4428,1.3941,1.3281,3.8448,9.0437,3.1718,2.1532,11.8465,2.1506,2.2291,2.0122,13.6154,1.7811,4.2395,1.0222,14.4197,4.8707,8.4299,3.0405,9.5584,6.5592,7.9527,7.3231,3.5895,1.5763,4.5628,,,,0.081396,CN,,HC,0.39661,3.552,3.8037,0.86859,9.313,1.6369,0.3924,3.2427,2.9992,47.6073,14.8882,200.6336,3.9442,4.0655,1.6549,2.0197,3.6599,6.7668,1.9967,3.368,0.40671,6.5662,10.4315,7.4624,8.0945,2.1688,4.1402,1.5924,18.5589,5.2428,3.5415,1.2085,2.7351,6.9757,12.8248,2.7783,4.1982,3.4289,1.7063,1.3269,3.4931,8.7489,2.9012,2.1232,10.3377,1.9707,2.1769,1.7325,13.4904,1.6263,4.1442,1.0357,14.4182,4.9805,6.9647,3.8473,9.8215,6.5859,7.788,7.6014,3.9255,1.3222,4.4521,,,,,,,,,,,,,,,55,,,
-3852,2.11,3.1896,,70-79y,Other,,,17.8912,4.4158,2.6842,2.149,2.0484,ppmi,,,M,,0.48397,5.1415,4.648,0.87934,8.4057,1.5437,0.41385,2.5084,3.3492,46.775,15.5578,223.592,4.7099,4.3789,1.7162,2.0797,3.7292,7.3831,2.4466,3.4255,1.2481,6.5616,11.0612,31.7775,7.618,2.4309,4.7347,1.9966,18.8278,5.6841,4.2593,1.149,2.8174,7.4743,13.5154,3.1285,4.3167,3.751,1.6537,1.4747,4.3212,10.5442,3.4584,2.6447,11.5362,2.5914,2.5061,2.325,13.8552,2.1216,4.5033,1.4368,15.1509,5.2229,8.9773,3.1019,11.1448,7.2004,8.5567,7.8636,4.1141,1.8349,4.8103,,,,0.073283,CN,,HC,0.45158,4.1698,4.5975,0.9054,9.7457,1.6999,0.42647,3.3123,3.4878,46.0963,14.8246,226.8037,4.4039,4.6802,1.7067,2.3286,3.8448,7.6447,2.2378,3.7358,1.5195,6.9491,11.6697,29.3181,8.2929,2.2173,4.1385,1.8743,18.6511,5.0733,3.9072,1.2685,2.7548,8.4089,13.9357,3.49,4.6189,3.4313,1.7164,1.4728,3.7904,10.3468,3.0988,2.5924,9.8895,2.4468,2.3108,2.1328,13.2357,1.9604,4.449,1.3334,14.885,5.4439,7.5245,4.0564,10.5456,7.5418,8.5829,7.8341,4.043,1.654,4.6086,,,,,,,,,,,,,,,77,,,
-3853,1.0517,1.7623,,-50y,Other,,,20.2202,5.8854,2.8828,2.5827,1.0258,ppmi,,,M,,0.47953,4.5058,4.5907,0.9214,10.4076,1.6064,0.4131,3.1371,3.3138,54.9976,17.2679,215.2838,3.7856,4.6048,1.7649,2.0298,3.6268,7.9854,2.1721,3.4284,0.51225,6.568,12.3778,8.9618,8.0702,2.4145,4.7305,1.851,20.8822,6.2429,4.2047,1.3955,3.1079,6.6835,15.9845,3.0113,4.7859,2.8138,1.5371,1.5202,4.7362,11.1806,3.4397,2.2561,12.0912,2.4274,2.6683,2.1073,13.344,1.858,4.5053,1.2578,14.5263,5.3604,9.7332,3.2335,11.5974,7.8944,8.5157,7.6753,3.6779,1.4409,4.9594,,,,0.08078,CN,,HC,0.44266,4.0954,4.3983,0.94285,10.4736,1.7494,0.4233,3.1836,3.293,53.6387,16.6074,217.7477,4.1596,5.2491,1.9238,2.294,3.7893,8.4301,2.226,3.6547,0.54425,6.326,12.725,6.4629,8.8684,2.2441,4.9243,1.871,19.2473,4.892,3.847,1.1778,2.7807,7.6361,16.0666,2.5711,4.6459,3.6984,1.6326,1.5297,4.5561,10.9828,3.3568,2.344,11.767,2.1292,2.2492,1.9779,13.4269,1.8441,4.4362,1.2687,14.854,5.5015,8.4653,4.2169,11.3736,7.5359,8.0978,8.1992,4.0032,1.4418,4.7478,,,,,,,,,,,,,,,47,,,
-3854,0.71774,1.5833,,-50y,Other,,,21.101,5.1038,3.0082,2.557,1.0355,ppmi,,,M,,0.50208,4.9048,4.5093,0.97309,9.9036,1.608,0.42126,4.0258,3.3765,51.887,18.4684,252.0797,4.3973,4.9429,1.9347,2.1187,3.9355,7.9006,2.3634,3.293,0.42295,7.0054,12.7175,6.2431,8.0947,2.4796,5.0275,1.9571,19.3638,6.5012,4.252,1.1091,3.0237,7.2457,14.2706,4.2916,4.7767,3.0287,1.5782,1.713,4.7186,11.5959,3.2224,2.5512,13.0139,3.0057,2.5145,2.5502,13.7167,2.692,4.9885,1.1797,15.513,5.3934,9.5819,4.2256,12.2632,7.2771,9.644,8.3737,4.0981,2.0428,5.4662,,,,0.078781,CN,,HC,0.45888,3.991,4.3457,0.97987,10.4719,1.9753,0.45331,4.1124,3.526,53.2261,17.7076,258.0396,4.6901,5.5987,2.0851,2.2392,4.3313,8.0688,2.519,3.6422,0.62099,7.592,11.8741,5.9495,9.1277,2.4123,4.7018,1.9088,20.0945,5.5003,4.3097,1.0927,3.0668,7.9984,14.1972,3.7462,5.0921,3.7496,1.5735,1.7076,4.1381,11.9347,3.2158,2.5874,10.89,2.8018,2.2313,2.3735,13.6883,2.2293,4.9256,1.1369,15.2512,5.8695,8.8206,4.6129,12.2976,7.8092,9.2799,9.4196,3.7724,1.8741,5.3595,,,,,,,,,,,,,,,31,,,
-3855,0.95676,1.8851,,-50y,Other,,,17.5693,4.5942,2.3483,2.051,0.88252,ppmi,,,F,,0.45149,4.357,4.2626,0.86543,8.6159,1.4316,0.39269,3.2364,2.981,44.2426,14.5688,218.3593,4.3268,4.3731,1.6856,2.0957,3.0661,7.2831,1.9673,3.0498,0.37659,5.9733,11.035,9.4054,7.271,2.2864,4.7015,1.6737,17.8579,5.9968,3.8729,1.0866,2.4781,6.3676,13.9587,3.4091,4.1022,3.2803,1.5302,1.4006,4.4621,10.8851,3.1336,2.33,10.9751,2.6658,2.5376,2.2596,11.6769,2.2046,4.1497,1.1981,13.8677,5.6462,8.6989,3.8168,11.0291,7.2712,8.8465,7.4548,3.7379,1.8104,4.6604,,,,0.078572,CN,,HC,0.42917,3.5045,4.0797,0.89881,9.9354,1.5776,0.40912,3.2346,3.0301,43.6202,14.0524,222.9098,4.1824,4.9165,1.8125,1.8812,3.4051,7.3092,2.032,3.3606,0.39401,6.085,11.7782,6.8812,7.3032,2.0656,4.2759,1.694,16.7539,4.8257,3.755,1.1243,2.7197,7.1299,14.5252,2.7925,4.018,3.2402,1.4793,1.3821,4.1645,11.7048,2.9301,2.3848,10.2288,2.523,2.3995,2.129,11.9621,2.1437,4.0076,1.1509,14.7737,5.1892,8.7622,4.2485,10.0294,7.9464,8.6732,8.215,3.2049,1.7446,4.5027,,,,,,,,,,,,,,,49,,,
-3856,1.6112,2.0194,,60-69y,Other,,,17.1959,4.9116,3.0882,2.3399,1.3863,ppmi,,,M,,0.40733,4.7807,4.3932,0.80448,7.3713,1.4865,0.39583,2.8366,2.5945,50.0252,15.6097,230.0773,3.9307,4.0172,1.6145,2.2397,3.4209,7.0757,2.1832,2.8795,0.44325,6.6459,11.2434,14.8273,7.1218,2.3423,4.6601,1.829,18.945,5.3254,3.9586,0.91556,2.5012,6.7999,14.0581,3.9825,4.3927,3.2409,1.5314,1.4049,4.2764,9.5017,3.076,2.2516,11.4058,2.0737,2.3677,2.1318,12.6021,1.7452,3.9535,1.2945,14.7127,5.0953,8.7245,3.4448,9.2783,6.4789,7.7924,7.7239,3.6162,1.4254,4.5674,,,PD,0.072913,PD,,PD,0.3552,4.1792,4.2601,0.79215,8.864,1.708,0.38716,3.1671,2.6244,50.7884,15.3156,234.1595,3.6906,4.6569,1.6598,2.2941,3.6215,7.3561,2.0467,3.0769,0.55909,6.3857,11.1403,13.608,7.8926,2.1917,4.6127,1.8431,17.4146,4.7117,3.7533,1.1102,2.7296,7.8452,12.8726,3.1807,4.5257,3.3935,1.4448,1.4212,3.8415,9.501,2.9799,2.2048,9.3938,2.0326,2.4404,1.8314,12.84,1.9079,3.6764,1.2636,15.9159,5.3225,7.6237,4.2613,9.5723,6.6764,7.4898,8.0585,3.4407,1.3007,4.2897,,,,,,,,,,,,,,,68,,,
-3857,0.46137,1.2602,,-50y,Other,,,15.5491,4.2498,2.6045,2.1462,0.65669,ppmi,,,F,,0.38245,3.8058,3.8128,0.78761,9.142,1.345,0.34196,3.0407,2.4172,45.1223,13.4781,175.1487,3.5186,3.9805,1.5234,1.7356,2.9595,6.6639,1.8988,2.628,0.37432,5.732,9.9795,4.9352,6.9818,2.1232,4.2092,1.5385,15.978,5.9016,3.6333,1.0189,2.4508,5.8902,12.4294,3.0842,4.2582,2.5388,1.4197,1.1782,3.8434,9.3732,2.7963,2.0147,9.832,2.3384,2.2806,1.9838,10.5944,2.0764,3.7477,0.97397,13.0233,4.859,8.7805,3.6048,9.1527,7.0024,7.1361,7.2224,3.2325,1.4875,4.0435,,,,0.057443,CN,,HC,0.32525,3.2017,3.6769,0.8183,9.3534,1.4742,0.34161,3.1575,2.5318,44.7632,12.9697,177.8803,3.0665,4.7637,1.6231,1.7792,3.2766,7.0724,2.0359,2.9181,0.49564,6.2922,10.6837,5.0461,7.8008,1.9578,4.2456,1.626,16.0692,4.6968,3.4193,0.92213,2.4402,6.6454,12.1323,2.8262,4.2421,2.9371,1.4436,1.1861,3.3193,9.3475,2.744,2.0257,8.8326,2.058,2.1115,1.8821,10.5781,1.8189,3.5991,0.91189,12.6927,4.7659,6.8204,3.5886,9.0291,6.8198,6.939,8.0602,3.1939,1.4539,3.9356,,,,,,,,,,,,,,,41,,,
-3858,1.6612,1.6093,,60-69y,Other,,,19.4764,4.5083,2.4183,2.0345,1.3242,ppmi,,,F,,0.44275,4.201,4.2902,0.79926,8.6964,1.5696,0.38771,3.4408,3.6598,47.0713,15.1054,226.9634,4.064,4.1941,1.5602,2.1554,3.3251,7.1989,2.1007,3.0251,0.52871,6.6782,10.7906,13.4645,7.5694,2.4891,4.5522,1.6933,18.1937,6.1352,4.1976,1.2653,2.5633,6.647,13.3194,3.3643,4.4074,3.9098,1.5543,1.466,4.4883,10.4309,3.1656,2.2513,12.0445,2.3057,2.7018,2.2966,13.8031,1.9574,4.485,1.1909,14.4331,5.3699,8.9619,3.3706,10.4719,7.1546,8.2316,7.4212,4.0345,1.6146,4.9086,,,PD,0.07754,PD,,PD,0.40168,3.5836,4.1269,0.83062,9.9532,1.7565,0.39879,3.5879,3.5407,46.6087,14.5231,231.1133,3.7896,4.4826,1.6766,2.2871,3.936,7.1086,2.0184,3.2926,0.64132,6.2939,11.7105,11.9113,8.1301,2.3646,4.1215,1.6874,19.9517,4.9508,3.8299,1.1536,2.5751,7.9248,14.0551,2.5839,4.3864,3.7282,1.5954,1.4712,4.0212,10.1303,3.0761,2.1084,9.3995,2.2456,2.5673,1.9216,13.0872,1.9971,4.2142,1.1471,14.8928,5.6141,8.4988,3.9474,10.975,7.2165,7.968,7.5901,3.7482,1.3776,4.705,,,,,,,,,,,,,,,67,,,
-3859,1.0999,1.7458,,60-69y,Other,,,16.4853,4.0856,2.4827,2.2258,1.1015,ppmi,,,M,,0.43414,4.384,4.3561,0.87232,9.8602,1.4555,0.38348,2.9721,2.7144,45.5581,13.5798,219.1211,4.0893,4.7352,1.7742,2.0105,3.1252,7.526,1.9313,2.9709,0.41876,6.9102,11.9884,10.0598,7.7489,2.4134,4.7933,1.7661,17.9688,6.5801,3.6288,1.0134,2.3417,6.9406,14.875,3.4077,4.4517,3.2473,1.5147,1.2844,4.7068,11.7551,3.2354,2.4494,13.0035,2.4564,2.7631,2.3106,13.0334,2.0648,4.3459,1.1524,13.0427,5.3684,9.0997,3.7315,10.3022,7.6617,7.7543,8.1173,3.585,1.6097,4.3856,,,,0.078543,CN,,HC,0.39602,3.8415,4.0386,0.87319,11.1677,1.7441,0.40812,3.1704,2.8316,46.1778,13.6869,223.6283,3.9989,5.1343,1.805,1.9825,3.8216,7.7053,2.0674,3.1918,0.48187,7.227,12.307,10.7579,8.4412,2.2063,4.8866,1.759,16.872,5.4353,3.708,1.2035,2.6834,7.4509,15.1838,3.1935,4.4331,3.2465,1.5524,1.296,4.0874,11.0742,3.0649,2.3144,11.2514,2.0775,2.5049,2.0202,12.4869,1.8064,4.2708,1.1021,13.371,5.352,8.6412,4.5365,11.0477,7.5141,7.6195,8.1138,3.4583,1.5266,4.1919,,,,,,,,,,,,,,,60,,,
-3863,1.3586,1.8276,,60-69y,Other,,,15.9799,4.441,2.5478,2.0051,1.1588,ppmi,,,F,,0.42112,4.3335,3.8933,0.82096,8.6168,1.5215,0.37662,2.715,2.8283,42.8135,13.6846,200.2865,3.7578,3.7347,1.5315,1.5532,3.1489,6.7489,1.8458,3.0879,0.43233,5.71,10.0093,11.8389,6.425,2.2563,4.7852,1.6682,17.9586,5.5029,3.8023,1.2189,2.6059,6.4012,12.8987,2.8531,3.6845,2.9039,1.2325,1.1402,4.1223,10.1992,2.9882,2.1872,12.4416,1.9665,2.5355,2.0188,12.6444,1.6354,3.7724,1.184,13.4163,5.1988,7.4177,3.2882,12.0658,6.4216,7.1701,7.0412,3.3885,1.2248,4.0676,,,PD,0.066394,PD,,PD,0.37543,3.6766,3.5662,0.80577,9.8912,1.7161,0.39558,2.6635,2.8031,42.0461,13.9779,202.9639,3.3072,4.1789,1.6388,1.5165,3.4062,6.6585,1.939,3.2852,0.43635,5.8888,10.1036,9.1957,6.8779,2.0819,4.8408,1.675,18.5687,4.8935,3.7457,1.0304,2.5442,7.1102,13.7831,2.3065,3.7427,3.2468,1.334,1.09,3.612,9.5967,2.8306,1.9364,9.0637,1.7723,2.3694,1.7424,11.9827,1.4836,3.7748,1.1561,14.1297,4.9493,6.929,4.0676,9.1827,6.838,7.0403,7.3624,2.9428,1.1532,3.8384,,,,,,,,,,,,,,,65,,,
-3866,1.0307,1.302,,50-59y,Other,,,16.4465,4.3569,2.4971,2.0997,1.005,ppmi,,,F,,0.39659,3.8799,3.8437,0.76073,8.0896,1.3121,0.35313,3.0262,2.5837,42.9953,14.2293,175.7214,3.2762,4.1364,1.4852,1.82,3.0566,6.3267,1.7899,2.8706,0.46115,6.0232,9.983,8.2834,6.7152,2.1112,4.1451,1.4894,15.8686,5.3322,3.3951,0.97181,2.0141,5.6057,12.7606,3.2071,3.7913,3.4281,1.3634,1.1957,3.936,9.2427,2.9414,1.8794,10.348,1.8521,2.0773,1.8106,10.5327,1.628,2.8238,1.1138,12.0922,4.1392,7.1245,3.258,9.1917,6.5443,7.3782,6.9002,3.5948,1.2164,4.2469,,,PD,0.073268,PD,,PD,0.36402,3.5031,3.7147,0.74923,8.5426,1.4758,0.35867,3.0292,2.9385,44.4439,14.1107,179.6738,3.3619,4.1135,1.5255,1.8208,3.1203,6.6406,1.7689,3.0972,0.48318,6.4315,10.172,8.124,7.8726,2.0207,3.9661,1.4175,15.2948,4.7686,3.2192,0.88028,2.0612,5.9674,12.7675,2.8321,3.981,3.3581,1.4479,1.2745,3.6448,9.5201,2.7308,1.9832,9.2839,1.8379,2.1913,1.7016,10.4671,1.4874,3.1967,1.0509,12.0038,4.2463,6.5396,4.041,9.8086,6.254,7.4232,6.8346,3.2522,1.2388,4.08,,,,,,,,,,,,,,,53,,,
-3867,0.76716,1.2958,,70-79y,Other,,,18.4166,4.2995,2.1359,2.0928,0.74164,ppmi,,,F,,0.4347,3.9769,4.2128,0.79592,8.3682,1.4608,0.36826,2.2662,2.9603,42.1698,14.9372,212.4792,3.9386,3.8835,1.6155,1.7448,3.3309,6.8609,1.8724,2.9252,0.40363,6.3447,10.9655,7.1984,6.4308,2.2537,4.0155,1.6473,17.8366,5.8534,3.6644,1.0489,2.2198,6.1798,12.8765,2.9298,3.7636,2.8982,1.3456,1.4067,3.5564,8.6657,2.9155,2.3419,11.4208,2.1286,2.3749,2.1899,12.0421,1.8814,4.4637,1.0656,13.3445,4.6194,8.3637,3.0623,9.2223,6.2514,7.8848,7.1413,3.3093,1.4481,4.4528,,,PD,0.07559,PD,,PD,0.37664,3.3513,4.0192,0.77745,8.7478,1.596,0.37855,2.5938,2.8758,42.5269,14.333,215.3937,3.6235,4.4537,1.6207,1.7691,3.458,6.9476,1.7578,3.091,0.39751,5.8444,10.5262,6.3116,7.2698,2.0747,3.8214,1.5751,17.0194,4.6651,3.5107,0.96968,2.1662,6.7243,12.5388,2.4597,3.7889,3.2945,1.4048,1.3725,3.3333,9.4706,2.6865,2.407,9.7147,2.1505,2.3069,2.0154,12.2799,1.7667,4.3434,1.0865,13.5549,4.4373,6.7981,3.8857,9.1343,6.9914,7.5239,7.4776,3.1449,1.4713,4.2361,,,,,,,,,,,,,,,72,,,
-3868,2.6851,2.8673,,60-69y,Other,,,17.0067,4.7398,2.5887,2.1463,2.4139,ppmi,,,M,,0.42725,5.3891,4.9692,0.81374,9.7115,1.6622,0.37444,3.2628,2.9912,46.4959,14.5078,193.7164,4.6254,4.6732,1.6627,1.9152,3.7333,7.5454,1.9978,2.9734,0.86665,6.8323,11.6722,29.5984,7.5188,2.2948,5.2376,1.8325,19.2092,6.1097,4.0475,1.1777,2.5535,7.6655,14.0839,3.4058,4.3765,3.4921,1.3027,1.2028,5.1345,12.5792,3.3148,2.7829,12.04,2.6236,2.3367,2.5868,12.4683,2.0289,4.0307,1.3416,15.2949,5.7803,9.3583,3.4439,11.8876,7.3435,7.6149,8.0879,3.7591,1.6695,4.2599,,,PD,0.070796,PD,,PD,0.3742,4.4765,4.0607,0.81631,11.3268,1.7262,0.37401,3.2094,3.1007,47.589,14.1958,198.0424,4.0026,4.6495,1.676,1.6689,3.9991,7.8022,2.0017,3.1614,0.83207,7.376,12.6963,27.0585,8.0582,2.1658,4.89,1.901,19.1698,5.1351,3.6748,1.1869,2.7517,8.51,15.2044,3.2625,4.3348,3.551,1.4458,1.1641,4.7237,12.0033,3.0703,2.6576,10.7033,2.1835,2.2406,2.2164,11.7215,1.7454,3.6614,1.2716,15.0157,5.7635,8.5864,4.1907,11.9215,7.2389,7.0523,8.3793,3.491,1.4723,3.8416,,,,,,,,,,,,,,,69,,,
-3869,1.3923,1.8709,,-50y,Other,,,22.0959,5.5015,2.9131,2.27,1.0666,ppmi,,,M,,0.47587,5.2412,4.6964,0.9846,11.1365,1.8,0.44851,3.861,3.086,51.1657,19.0843,272.6204,5.1169,4.9384,1.8155,2.3018,3.7758,8.1069,2.3774,3.5148,0.5517,7.8436,12.5597,7.8976,8.0478,2.598,5.2783,2.0244,20.8138,6.7782,4.568,1.2521,3.0111,7.798,15.1386,3.9307,4.6234,3.9322,1.6441,1.6371,5.5051,11.0468,3.7471,2.5774,12.4825,2.8564,2.6983,2.7558,15.3837,2.6965,4.8065,1.3875,15.0984,6.3467,9.978,3.7751,10.9533,8.6028,9.3868,8.2218,4.474,2.069,5.366,,,PD,0.072947,PD,,PD,0.40853,4.4346,4.3778,0.9692,12.135,1.9561,0.45169,4.1862,3.169,52.2565,18.4331,274.5009,4.2345,5.4231,1.8914,2.1671,3.927,8.1796,2.2997,3.6943,0.70556,7.9095,12.9612,6.5802,9.2095,2.4704,5.0573,2.0598,20.8277,6.4283,4.2037,1.2157,2.9636,9.0168,15.8216,3.5008,4.7878,3.7758,1.7154,1.5982,4.706,10.9613,3.3658,2.5037,11.2963,2.1789,2.6868,2.2873,15.559,2.1912,4.6396,1.2688,16.5819,6.2643,8.743,4.7482,11.0568,8.5303,9.1869,8.7784,3.4247,1.7361,5.1553,,,,,,,,,,,,,,,40,,,
-3870,0.83514,1.7058,,-50y,Other,,,21.1298,4.8051,2.574,2.2809,0.90065,ppmi,,,F,,0.47404,5.1368,3.8935,0.92606,9.6326,1.6086,0.40927,4.0444,3.0089,49.9174,17.9473,249.9511,3.9322,5.3793,1.7433,1.869,3.4932,7.8083,2.0424,3.3314,0.45946,6.7706,11.996,9.298,8.3657,2.5015,5.4179,1.9475,20.3781,6.4521,4.054,0.98781,2.3601,6.9,14.3402,3.4988,4.4271,3.3182,1.49,1.6865,4.8697,11.7405,3.2933,2.1442,12.6041,2.1407,2.6211,2.1493,13.1482,1.7643,4.6273,1.2095,13.6989,5.5906,9.3072,3.9835,11.5726,7.4808,8.8397,7.9534,4.0714,1.4095,5.28,,,PD,0.07796,PD,,PD,0.42472,4.3276,3.6236,0.89798,11.5064,1.868,0.41436,4.0714,3.0347,50.1025,18.1407,256.1623,3.8459,5.3048,1.7514,1.7555,3.5719,7.9373,2.0787,3.4583,0.35138,7.4261,12.1157,7.7466,8.697,2.2706,5.0405,1.8927,19.4621,6.0626,3.9143,1.0147,2.6231,8.3068,14.4564,3.3998,4.5871,3.4768,1.4144,1.6679,4.2092,11.4939,2.8387,2.0674,10.6825,2.3588,2.3666,1.9293,13.0389,1.8839,4.6328,1.1593,13.9183,5.4936,8.7887,4.7056,12.2444,7.0634,8.4881,7.7929,3.5645,1.4374,4.9747,,,,,,,,,,,,,,,42,,,
-3900,2.1074,2.0803,,70-79y,Other,,,17.5651,4.6757,2.2609,2.1383,2.0803,ppmi,,,M,,0.40803,4.0142,3.9607,0.74853,8.4849,1.1689,0.35413,2.7874,3.0127,41.1957,14.0974,185.2061,3.4203,4.0139,1.4289,1.7196,3.1723,6.1493,1.7585,3.0509,0.71518,6.1515,9.6725,23.2827,6.9495,1.9674,4.0043,1.4629,15.519,6.052,3.1691,1.0332,2.1936,6.1618,12.3867,3.3462,3.8726,2.9531,1.2671,1.3508,4.0692,9.8599,2.8958,2.3613,9.7334,2.0009,2.0956,2.263,10.272,1.4671,3.8083,1.1907,12.2494,4.4487,7.382,3.4759,9.3355,5.8789,7.5594,6.7729,3.433,1.405,4.5026,,,PD,0.065421,PD,,PD,0.37198,3.8706,3.9803,0.75629,9.3373,1.4086,0.3676,3.0209,3.4229,41.3707,13.5962,189.986,3.8914,4.4079,1.4525,1.6277,3.1827,6.1315,1.7519,3.2296,0.99355,6.5199,9.8473,22.8651,7.434,1.8766,4.1485,1.4117,15.9456,5.1226,3.1007,1.0759,2.2161,6.6387,12.7989,2.814,3.8453,3.1039,1.3525,1.3989,3.5768,9.6218,2.6619,2.3894,9.7341,1.8661,1.936,2.1843,10.5306,1.4801,3.8742,1.09,12.1613,4.2364,6.7252,4.0151,9.7155,6.0135,7.1982,7.0226,3.0535,1.4072,4.4393,,,,,,,,,,,,,,,72,,,
-3901,1.801,1.8775,,60-69y,Other,,,15.0261,4.0751,2.2641,2.1749,1.4709,ppmi,,,F,,0.38495,3.9588,3.9092,0.80195,7.9404,1.3421,0.34104,2.7994,2.6322,41.4165,13.2059,203.2414,3.6067,3.288,1.5144,1.6979,2.8406,6.1928,1.6729,2.8951,0.60498,5.2167,9.4552,14.6991,6.4955,2.0582,4.3468,1.5012,15.788,5.2336,3.2635,1.1083,2.2683,5.9903,11.2828,2.6125,3.7051,3.149,1.2575,1.2892,3.7407,8.9823,2.9225,2.0162,12.2727,2.0295,2.234,2.1248,11.9432,1.7932,3.5286,0.98395,12.8763,4.6475,7.7773,3.3433,9.8924,5.778,7.2499,6.933,3.3693,1.6068,4.138,,,,0.068396,CN,,HC,0.36504,3.0052,3.6364,0.80114,8.8545,1.4877,0.35248,2.8931,2.6552,42.106,12.9406,207.4076,3.0578,3.9388,1.6151,1.7994,3.1825,6.7177,1.6476,3.0178,0.6181,6.2291,10.6172,12.7331,7.3897,1.8622,3.8253,1.6191,16.8354,4.4501,3.1645,0.78719,1.9568,7.1617,11.7261,2.409,3.8881,3.2585,1.2526,1.3242,3.2614,8.6323,2.6032,2.0352,9.8163,1.8462,1.998,1.9093,11.0056,1.6582,3.5154,0.95173,11.9765,4.7356,7.2883,3.5235,10.0961,6.5816,6.7908,7.2914,3.503,1.2855,3.9399,,,,,,,,,,,,,,,69,,,
-3903,1.1681,2.3343,,70-79y,Other,,,18.518,4.8177,2.6287,2.0976,1.2298,ppmi,,,M,,0.43174,4.4747,4.1287,0.98095,10.0427,1.5714,0.40267,2.6701,2.8899,45.1761,16.3344,271.8954,4.4684,4.5245,1.7876,2.0023,3.3833,7.7704,2.1605,3.6569,0.57529,6.5165,12.3105,9.1318,7.2033,2.342,4.9634,1.7729,19.3049,7.0362,4.1437,1.118,2.4973,6.7739,14.0161,3.3591,4.423,3.1786,1.4138,1.4638,4.9822,11.4082,3.2236,2.3189,13.4632,3.1578,2.4147,2.223,12.5878,2.5619,4.1023,1.3284,14.3268,4.9575,10.9278,3.6676,11.835,7.4519,8.7161,7.7896,3.66,1.8423,4.7496,,,PD,0.087458,PD,,PD,0.41522,3.4574,4.0001,0.94004,11.4585,2.013,0.395,2.8159,2.9239,46.2089,15.9061,277.7885,4.3008,4.8518,1.8507,1.862,3.9355,8.1113,2.24,3.8234,0.55762,6.7489,12.5783,8.2135,8.0517,2.3416,4.4426,1.9142,19.5842,5.6858,4.0984,0.90164,2.2306,8.1534,15.869,2.8497,4.5696,3.3289,1.5808,1.475,4.3514,11.2038,2.9976,2.2665,11.0845,2.2916,2.3837,1.9696,10.4372,1.9545,4.189,1.1707,14.2829,5.4718,9.5128,4.3456,12.1905,7.9578,8.709,8.0815,3.6412,1.4154,4.4857,,,,,,,,,,,,,,,71,,,
-3904,2.1057,2.3097,,70-79y,Other,,,17.7576,5.4613,2.5438,2.3893,1.6978,ppmi,,,M,,0.42822,4.5077,4.4203,0.85128,8.7168,1.5377,0.34273,3.4206,3.647,45.2841,18.0355,225.4236,4.3455,4.3332,1.6707,2.1274,3.5153,6.8183,1.9482,3.1782,0.67547,6.6823,10.904,19.7113,7.6675,2.3523,4.5918,1.7581,16.8235,6.3898,3.7217,1.1172,2.6093,6.8852,13.8357,3.8635,4.3186,3.4375,1.39,1.4464,4.6671,11.3049,3.1639,2.4171,12.2629,2.8579,2.3516,2.2698,12.0263,1.9136,4.1489,1.2051,13.4922,5.279,8.9694,3.4159,9.5673,6.6508,7.4921,7.6781,3.4875,1.6754,4.5408,,,PD,0.066222,PD,,PD,0.40606,3.7853,4.1569,0.82963,9.8789,1.6567,0.37846,3.6883,3.8134,46.2358,17.8599,231.8302,4.3265,4.5668,1.6182,1.9503,3.7612,7.1461,1.9693,3.2731,0.72055,7.4502,10.9075,20.6822,8.5841,2.0632,4.4004,1.7955,18.0433,5.9199,3.6291,0.96795,2.5641,8.0239,13.828,3.69,4.4451,3.1746,1.4229,1.4698,4.1309,11.2986,2.896,2.5034,10.5897,2.8533,2.2949,2.1026,11.5396,1.8978,4.0813,1.1319,13.1048,5.6137,8.6762,4.2024,10.3018,6.7124,7.4909,7.3032,3.1027,1.5856,4.4117,,,,,,,,,,,,,,,71,,,
-3905,1.0515,1.3489,,70-79y,Other,,,18.4681,5.3307,2.6544,2.3595,1.21,ppmi,,,F,,0.475,4.5181,4.6699,0.94415,9.7368,1.4441,0.39717,3.5936,3.0279,48.5621,16.0664,233.0575,4.1825,5.4294,1.9162,2.0733,3.3771,7.889,1.9304,3.3657,0.42719,7.0862,12.5338,9.7068,8.0384,2.4498,4.6927,1.6965,18.0916,7.0582,3.6926,1.2536,2.7576,6.7049,14.2424,3.3863,4.7447,2.9693,1.6903,1.4267,4.1346,10.4591,3.4155,2.4646,12.325,2.3145,2.5212,2.3658,12.6794,1.8856,4.0147,1.1474,13.4205,5.3366,9.0836,4.0074,10.7632,7.5316,8.8571,8.5596,3.8383,1.5879,4.543,,,PD,0.079426,PD,,PD,0.43349,4.2058,4.3176,0.92418,10.8056,1.7099,0.39607,4.0448,3.1662,47.8125,15.0205,235.0871,3.9678,5.199,1.8095,1.9217,3.5809,8.1291,1.931,3.4903,0.42111,7.4429,11.6747,8.9696,8.6547,2.2391,4.7556,1.6616,17.7021,5.1571,3.6401,1.3017,2.8699,7.1631,14.0638,3.1486,4.6923,3.2371,1.5239,1.3926,3.7517,10.4694,2.994,2.4646,11.4266,2.2819,2.2947,2.1761,12.84,1.9073,4.1601,1.1239,14.3481,5.0607,9.0252,4.2477,11.0148,8.3122,8.7658,7.9651,3.1131,1.5161,4.1958,,,,,,,,,,,,,,,72,,,
-3907,0.98148,1.3663,,60-69y,Other,,,16.6284,4.4511,2.0841,2.0858,1.0976,ppmi,,,F,,0.34804,3.6776,3.5616,0.69125,8.0815,1.2963,0.33075,2.8913,2.2809,39.0435,14.7183,167.3763,2.934,4.1383,1.2476,1.4542,3.056,5.6722,1.4595,2.5782,0.49736,5.4667,8.7531,7.3865,6.7217,1.9795,4.002,1.292,14.3642,5.4409,3.1386,0.99078,2.3564,5.5741,11.2572,2.6297,3.8096,2.5841,1.2156,1.0236,3.4879,9.4844,2.4518,1.8315,10.485,1.6508,1.9698,1.8074,10.7294,1.4536,3.699,0.94978,12.116,4.4286,7.8517,3.0988,9.4825,6.2568,6.7312,6.3395,2.9227,1.043,3.7639,,,,0.06557,CN,,HC,0.29452,3.4391,3.4328,0.66191,9.1318,1.3862,0.31117,2.978,2.3105,40.1377,14.0311,178.4578,3.1095,4.7128,1.3326,1.7357,2.9827,6.2163,1.5466,2.6527,0.46935,4.8705,9.9202,7.172,7.251,1.7961,3.9091,1.3229,14.8903,3.8154,2.9608,0.96421,2.2703,6.2207,12.0922,2.0624,3.41,3.2408,1.2522,1.1276,3.2271,9.5862,2.4212,1.8555,9.0343,1.5479,1.8496,1.8405,10.4153,1.5665,3.3688,0.8644,11.5728,4.4354,7.0831,3.4477,9.166,6.2658,6.4431,6.8895,3.0717,1.1658,3.8857,,,,,,,,,,,,,,,69,,,
-3908,1.2756,2.0524,,60-69y,Other,,,17.5119,4.3631,2.7304,2.0536,1.1256,ppmi,,,M,,0.48476,4.2778,4.2932,0.85059,10.2202,1.6973,0.3813,3.0798,3.5719,46.3343,15.7022,230.4512,3.9552,4.5453,1.647,2.101,3.4381,7.3856,2.1827,3.4063,0.56643,6.3598,11.206,17.4579,7.5154,2.5377,4.7859,1.7943,20.0388,5.8416,4.0459,1.36,2.6494,6.444,15.1443,3.841,4.5669,3.3899,1.6405,1.5785,4.3987,10.8977,3.3025,2.2149,12.2573,2.4434,2.3822,2.2242,13.6777,2.11,3.8924,1.2855,13.9281,5.0702,8.6966,3.8566,10.8363,7.5479,8.2097,7.5155,3.9237,1.533,4.3964,,,,0.071407,CN,,HC,0.45868,3.8631,4.067,0.88567,11.0846,1.7579,0.4159,2.8896,3.8602,46.9058,14.7721,234.4419,4.2145,4.7283,1.677,1.945,3.9449,7.3848,2.1717,3.5929,0.63417,6.4036,11.4108,14.7447,7.5929,2.3464,4.9363,1.9139,19.4568,5.0772,3.7947,1.1805,2.6322,7.5833,15.1456,2.8726,4.2022,3.3817,1.7248,1.5754,4.1089,11.2197,3.0447,2.3621,11.9373,2.4882,2.2774,2.1946,13.2939,2.0873,4.0067,1.2584,14.269,4.9647,8.6173,3.8629,10.8099,7.955,7.8789,8.5728,3.5236,1.6331,4.2167,,,,,,,,,,,,,,,65,,,
-3910,1.9565,2.6297,,50-59y,Other,,,23.603,5.9881,3.1377,2.6091,1.7812,ppmi,,,M,,0.56766,5.216,5.0748,0.97456,10.8263,1.5744,0.42331,3.496,4.0614,54.7469,20.7089,283.7417,5.2006,5.1818,1.8415,2.4903,3.5062,8.5003,2.0754,3.5488,0.7595,7.9388,13.8633,19.5717,8.5706,2.5685,5.6487,1.9745,20.3772,7.0705,4.0884,1.3838,3.5149,7.6288,17.1979,3.6433,4.9317,3.7925,1.918,1.8835,5.5597,12.6922,3.5059,2.6404,14.2556,2.6441,3.0077,2.3902,15.0769,2.4345,4.8569,1.4539,15.6768,6.0311,10.3069,4.4048,12.5349,9.1757,10.0222,8.5952,4.3394,1.9018,5.798,,,PD,0.090239,PD,,PD,0.49532,4.6056,4.7497,0.97215,11.3306,1.9568,0.44671,3.7166,4.1164,55.8907,19.8068,285.3511,4.5492,5.2961,1.9049,2.232,3.9426,8.6701,2.1006,3.6745,0.68361,8.1031,14.0091,20.0741,9.0955,2.4982,5.3278,2.0307,20.9739,6.0967,3.9885,1.2413,3.4682,8.5277,17.8943,3.3714,5.0225,3.6976,1.7985,1.8734,4.7541,11.9323,3.2622,2.5556,11.0744,2.4435,2.7558,2.2457,14.4759,2.1428,4.8152,1.3815,16.1754,6.1455,8.9975,4.8884,13.4422,8.145,9.7997,8.7964,3.8173,1.6443,5.5234,,,,,,,,,,,,,,,59,,,
-3911,1.4802,2.0503,,50-59y,Other,,,16.986,5.0944,2.6913,2.5644,1.8184,ppmi,,,M,,0.41241,5.1105,4.793,0.90181,9.5834,1.6352,0.37122,3.9088,3.0092,48.0652,15.3534,226.6232,4.7292,6.1582,1.7855,2.1925,3.4241,7.0625,2.0964,3.284,0.50383,7.7663,11.4659,20.0784,8.33,2.3933,4.8285,2.0252,18.3382,6.8448,4.1182,0.96792,2.4661,7.2698,13.9357,4.7914,4.7707,3.1108,1.631,1.4037,4.5029,11.5114,3.1966,2.477,11.2256,2.4368,2.5882,2.3755,12.6704,2.3075,4.014,1.3013,13.0427,5.2769,8.5655,4.9156,10.6264,7.361,8.6991,8.2038,3.6911,1.9731,4.2459,,,PD,0.076355,PD,,PD,0.3794,4.6344,4.5352,0.89115,10.6236,1.8383,0.39192,3.9793,3.2018,50.974,14.7195,234.2591,4.0742,5.7353,1.7063,2.3188,3.8551,7.8597,2.0585,3.4465,0.66034,8.2783,12.4063,17.8732,9.1473,2.2373,4.4319,1.9702,18.2779,6.1404,4.0637,1.2166,2.6262,8.0735,15.6474,4.2735,5.0298,3.4055,1.6102,1.3791,3.8738,10.6888,2.8907,2.4202,10.0438,2.553,2.5392,2.2358,11.59,2.0438,4.1407,1.2353,13.3843,5.313,7.9461,5.1315,10.0686,7.5335,8.5164,8.2992,3.4805,1.6949,3.9887,,,,,,,,,,,,,,,52,,,
-3914,1.01,1.7811,,50-59y,Other,,,16.7953,5.3481,2.7278,2.3906,1.2326,ppmi,,,M,,0.47671,5.2659,3.9494,0.90969,10.3773,1.6302,0.37352,3.9919,3.2659,47.7166,14.6138,231.5204,3.9407,5.5243,1.7523,1.8581,3.5949,7.6303,2.2151,3.0277,0.29182,7.2322,11.516,9.6454,8.6694,2.593,5.4619,1.9371,20.8487,6.6762,4.1059,1.2385,2.8646,7.305,14.5638,4.3214,4.7172,3.5676,1.4481,1.4426,4.5959,10.9205,3.2317,2.1606,13.7576,2.2758,2.5807,2.1628,14.5155,1.7753,4.0448,1.0699,16.2376,6.2548,9.9351,4.5817,11.8544,7.4774,8.1998,8.1808,4.0461,1.4313,4.4124,,,PD,0.065296,PD,,PD,0.42481,4.7729,4.1727,0.92635,12.2317,1.8283,0.40921,4.0728,3.2515,49.5751,14.4416,237.9147,4.238,5.6777,1.8566,1.907,3.7408,7.922,2.0936,3.2745,0.46381,7.6298,12.2976,8.2286,9.4056,2.4302,5.141,1.9304,21.1473,5.811,3.9043,1.3431,2.939,8.1312,15.264,3.4693,4.8966,3.3209,1.6928,1.3894,4.3507,11.3722,3.0396,2.3197,11.7431,2.2355,2.5269,2.0655,13.6472,1.8976,4.2532,1.1611,15.4714,6.0256,9.216,5.251,11.8247,8.1131,8.0598,8.8071,3.8029,1.4369,4.1613,,,,,,,,,,,,,,,58,,,
-3916,1.3085,2.3492,,70-79y,Other,,,15.2604,3.9391,2.09,1.8119,1.2635,ppmi,,,F,,0.42615,4.6455,4.7213,0.75757,9.4996,1.5152,0.37681,3.4946,3.1388,41.2397,12.1607,199.0779,4.0648,5.1072,1.4641,2.1339,3.3185,7.0311,1.9228,2.7579,0.58193,6.4204,10.2875,16.0136,7.2728,2.4545,4.8171,1.7508,19.1807,6.0353,3.8104,1.1582,2.5348,6.7244,12.2842,3.7161,4.157,3.2693,1.611,1.3621,4.3976,11.4148,2.8487,2.4691,10.5044,2.6048,2.6022,2.4136,12.2789,2.224,4.3151,1.2848,13.6986,5.409,9.0025,3.5425,10.9822,6.4794,7.8324,7.0127,4.0886,1.7451,3.7874,,,PD,0.078006,PD,,PD,0.39271,4.0356,4.4877,0.86666,9.7355,1.7244,0.39308,3.4126,3.3799,40.8732,11.4406,201.4191,4.2874,4.9277,1.6676,2.0083,3.8704,7.6808,2.069,3.1397,0.61043,6.7799,10.8833,13.5339,8.0969,2.1824,4.2634,1.8044,18.338,5.3068,3.8472,1.0776,2.7338,7.7873,12.6291,2.874,4.0277,3.4127,1.5303,1.2409,4.0943,11.4369,2.8495,2.4229,10.1636,2.3881,2.3737,2.1983,11.8379,1.9243,4.3659,1.2179,14.5995,5.5779,7.4905,3.9825,10.7043,6.5685,7.7994,7.2266,3.6185,1.5693,3.67,,,,,,,,,,,,,,,70,,,
-3917,1.7383,1.4783,,70-79y,Other,,,20.1342,5.9448,3.4056,2.5087,1.5009,ppmi,,,M,,0.48943,5.3664,4.6957,1.004,10.0474,1.7151,0.43107,3.68,3.2957,53.98,17.7297,249.5852,5.0203,5.749,1.8856,2.2806,3.8536,8.0704,2.4846,3.6233,0.51623,7.7702,13.0157,17.0893,8.4888,2.603,5.0549,2.322,18.9243,6.4798,4.5927,1.1478,2.8401,7.9616,15.5287,4.3842,4.7976,3.6582,1.7782,1.5917,5.6083,12.4213,3.3995,2.6991,13.107,3.0994,2.9479,2.8801,13.0687,2.5234,4.4839,1.3858,15.7119,5.8577,10.7377,4.2684,11.6021,7.9856,9.1634,9.1475,3.9201,2.1801,5.0353,,,,0.085276,CN,,HC,0.45387,4.4971,4.4752,0.97691,11.345,2.01,0.44817,3.6503,3.5396,54.5568,16.6306,253.2822,4.9075,5.9266,1.7895,2.151,4.1565,8.1774,2.3982,3.9305,0.77958,7.7514,13.0709,15.6619,9.0157,2.5394,5.0693,2.2262,19.3997,5.8088,4.3503,1.1912,2.7024,8.8807,16.0619,3.6719,4.9758,3.4705,1.6668,1.5716,5.0899,13.0716,3.1101,2.6167,12.017,2.8153,2.5363,2.3485,14.2615,2.4551,4.5607,1.4134,16.9212,5.8458,9.2914,4.9702,11.8636,8.5243,9.1353,8.6221,3.4568,1.7651,4.6717,,,,,,,,,,,,,,,70,,,
-3950,0.7255,1.6896,,-50y,Other,,,16.6338,3.913,2.3807,1.974,0.9151,ppmi,,,F,,0.47049,4.791,4.437,1.0007,10.7283,1.6083,0.42826,3.2055,2.93,42.9407,12.5873,221.6495,3.9659,4.2921,2.0112,2.0754,3.6872,7.3109,2.3297,3.3138,0.40356,6.9838,12.1366,7.9846,7.4095,2.5641,4.8334,2.0073,19.7585,7.0445,4.3389,1.1886,2.6695,7.2039,16.5429,3.2792,4.0864,3.6256,1.6222,1.3485,4.233,11.0687,3.2132,2.2735,12.665,2.0205,2.7987,2.1788,13.1347,1.7097,4.7613,1.2362,14.7574,5.1475,9.6227,3.6878,11.9445,8.2015,8.3419,8.745,4.2324,1.3868,4.5199,,,,0.062964,CN,,HC,0.44019,4.2904,3.9856,0.95611,11.5593,1.8467,0.42555,2.8422,2.9519,42.5759,12.0092,227.1296,3.6362,4.6501,1.9976,1.9702,4.1365,7.7219,2.3571,3.5098,0.50206,6.8381,11.8771,4.9127,7.6616,2.2533,4.6516,2.0328,20.2238,5.6157,4.2874,0.93211,2.4748,8.4238,15.3874,2.6788,4.3865,3.5239,1.5754,1.3033,3.9599,10.5792,3.0228,2.2283,11.5027,1.9856,2.4783,2.0361,13.7342,1.942,4.6314,1.1685,15.1159,5.1829,8.7867,4.1666,12.2034,8.4556,8.0346,8.4716,3.8151,1.3105,4.3282,,,,,,,,,,,,,,,43,,,
-3951,1.3659,2.3381,,50-59y,Other,,,20.2389,4.96,2.955,2.3898,1.4037,ppmi,,,M,,0.49901,5.4496,5.1203,0.92123,10.0274,1.6595,0.47424,3.5448,3.3605,50.8609,14.739,238.0465,4.5605,4.8973,1.7346,2.439,3.9717,8.0351,2.4946,3.4306,0.70859,7.8902,12.8933,16.762,8.1108,2.5928,5.4217,1.9675,21.6151,7.6988,4.4748,1.0296,2.7936,8.0701,15.6404,3.8451,4.925,4.0814,1.8757,1.4612,4.5829,11.1101,3.1881,2.8156,11.5211,2.9723,2.6019,2.7306,12.3747,2.904,4.6032,1.4455,16.2639,6.2669,8.7668,3.8039,10.9282,8.6208,8.8402,8.5915,4.6297,1.9931,5.0636,,,PD,0.080533,PD,,PD,0.45328,5.2076,4.5724,0.90614,12.2836,1.8748,0.4682,3.8417,3.527,50.3144,14.3445,242.7719,4.1186,5.3351,1.7314,2.1388,4.197,8.0514,2.4,3.4718,0.72172,7.8509,12.89,15.9816,9.0593,2.3331,5.2595,1.9906,22.1726,6.6091,4.286,1.1763,2.8293,9.2896,16.2334,3.1176,4.6552,3.6919,1.7246,1.42,3.8851,11.0537,2.9294,2.6532,11.3677,2.343,2.49,2.3217,13.3282,2.0413,4.5448,1.3491,15.1918,5.6704,8.2598,4.6907,11.5632,8.3292,8.6181,8.4682,3.8957,1.6531,4.8477,,,,,,,,,,,,,,,58,,,
-3952,1.6722,2.6506,,60-69y,Other,,,19.8969,5.1158,3.0256,2.414,1.4644,ppmi,,,F,,0.48939,4.7473,4.3336,0.87013,10.9576,1.7152,0.4446,3.4035,3.588,51.4364,14.6477,252.0614,4.083,4.8379,1.5996,2.0044,3.8744,7.6926,2.6282,3.1397,0.57847,6.9992,12.356,15.2013,7.8623,2.5842,5.392,1.8828,22.7782,6.4925,4.6737,1.2999,2.7077,7.5098,15.391,3.3232,4.622,3.5503,1.5724,1.4017,4.7614,12.3576,3.1868,2.2242,12.8633,2.2698,2.722,2.1498,13.1464,1.961,4.6273,1.3847,15.1646,5.3457,9.4603,3.9639,13.4662,7.5681,8.5588,7.4416,3.9963,1.4674,4.9572,,,,0.093105,CN,,HC,0.43459,4.2879,4.0325,0.87247,10.7611,1.8213,0.43425,3.4971,4.0035,50.9323,14.534,257.8386,3.9498,5.0709,1.6836,2.0034,4.2186,7.9492,2.3082,3.2792,0.77941,6.939,12.3928,15.0038,8.6438,2.2594,5.3631,1.7712,22.0711,5.4012,4.3251,1.3825,2.8924,8.3807,15.4272,2.9973,4.3718,3.4965,1.5374,1.4533,4.3124,12.8925,3.0054,2.3034,11.8303,2.2913,2.325,1.9932,13.675,2.079,4.4967,1.2593,16.413,5.7538,8.6639,5.3353,13.907,8.2591,8.1363,7.5445,3.7882,1.5621,4.893,,,,,,,,,,,,,,,69,,,
-3953,1.3918,1.9096,,50-59y,Other,,,19.6049,4.8045,2.879,2.3008,1.5801,ppmi,,,M,,0.56748,5.6314,4.9605,1.0425,10.7395,1.577,0.50972,3.3854,3.8284,51.5195,15.0601,256.6819,4.8658,5.0674,2.0264,2.2188,3.9038,8.4604,2.5447,3.714,0.6039,8.0122,13.887,18.7846,8.7127,2.5248,5.4418,1.9021,23.1865,7.8001,4.7134,1.1209,2.8836,8.1746,18.0267,4.1258,4.9005,3.185,1.7756,1.4588,4.9745,12.3398,3.6259,2.773,12.4847,2.9515,2.8201,2.7534,13.8126,2.4818,5.2618,1.5473,15.7926,6.0123,10.3558,3.9751,12.3075,9.0886,8.8993,9.1189,4.5936,1.963,4.9417,,,PD,0.088854,PD,,PD,0.50694,5.0439,4.8985,1.0582,12.4763,1.7753,0.53533,3.6349,3.9457,51.1729,14.5532,253.3025,4.1292,5.1925,2.1233,2.2188,4.157,8.9094,2.5306,3.9212,0.86695,7.9141,13.4527,16.1635,9.5374,2.5393,4.6532,1.9009,21.844,6.4198,4.4634,1.2404,3.0411,8.8802,17.7627,3.5831,5.2122,3.7458,1.895,1.4556,4.3544,11.3833,3.3519,2.7435,11.0252,2.2819,2.6754,2.5183,13.3322,2.1366,5.1282,1.5176,15.9106,6.0079,9.2115,5.0984,11.639,9.3566,8.5486,9.4968,3.6896,1.8311,4.7949,,,,,,,,,,,,,,,54,,,
-3954,1.6273,2.2243,,60-69y,Other,,,15.996,4.4102,2.2663,1.995,1.3131,ppmi,,,F,,0.43918,4.229,3.9944,0.75681,9.0789,1.4846,0.41698,2.789,2.9085,46.8459,12.3005,185.3198,3.5905,3.8249,1.5406,1.8943,3.4225,7.9656,2.0788,2.8286,0.60643,6.2308,12.0016,16.9743,7.2375,2.4351,4.245,1.8325,18.9514,6.1578,3.9939,1.0695,2.3142,6.6832,13.796,3.268,4.3278,3.3794,1.4969,1.1891,4.0755,9.4257,3.0213,2.211,10.7883,2.438,2.6406,2.3355,11.8573,2.0186,3.9026,1.2317,13.716,4.5428,9.0736,3.437,9.9106,6.9168,7.3138,7.4322,4.0164,1.5424,4.046,,,PD,0.062949,PD,,PD,0.39685,3.5921,3.6786,0.77401,11.1336,1.7691,0.39763,3.0559,3.1448,47.5236,12.2575,185.0401,3.349,4.0846,1.5879,1.7594,3.5462,7.777,1.9889,3.0445,0.70733,6.7214,11.8008,15.3663,7.6801,2.3531,3.9468,1.7805,18.0046,5.513,3.765,1.1641,2.4966,7.1537,13.5238,2.9399,4.2268,3.2175,1.5228,1.1471,3.8265,9.3471,2.5914,2.2522,9.0872,2.2977,2.3085,2.0452,11.9039,1.9662,3.7523,1.1828,14.2009,4.8069,8.3088,4.3018,9.565,7.1452,7.0339,7.2166,3.282,1.5469,3.8383,,,,,,,,,,,,,,,64,,,
-3955,1.2229,2.0592,,50-59y,Other,,,25.3579,5.7414,3.4756,2.68,1.0566,ppmi,,,M,,0.552,5.2599,4.6337,1.0924,11.8318,1.8036,0.50061,3.3166,3.1748,64.1316,20.7921,280.3205,4.3514,4.9748,2.0579,2.1412,4.075,8.9112,2.6646,3.6725,0.52977,7.1067,14.0223,12.0043,8.175,2.7636,4.9159,1.9789,22.532,7.5533,4.8527,1.13,2.8138,8.0309,17.126,3.732,5.0337,3.4365,1.6817,1.6722,5.0436,11.9418,3.7219,2.69,13.9539,2.58,2.828,2.7305,15.2429,2.3167,5.4621,1.4249,16.863,5.4846,9.305,3.7851,11.4551,8.6077,10.1992,8.6882,4.2739,1.816,6.2094,,,,0.086424,CN,,HC,0.46296,4.7453,4.4543,1.0311,12.5847,1.9954,0.50302,3.5357,3.4457,62.0487,19.3713,285.5193,4.8018,5.524,2.0896,2.1025,4.5293,9.1557,2.5187,3.7766,0.57103,8.4681,13.6179,10.3564,8.6521,2.6409,4.5945,1.9104,21.2922,6.6348,4.6028,1.1284,3.1348,8.5915,17.6595,3.481,5.2806,4.0761,1.7444,1.6567,4.5805,12.5975,3.4811,2.7475,11.9772,2.2349,2.5761,2.4296,15.9296,1.8779,5.3823,1.3133,15.9674,5.6599,8.0355,4.9081,11.0931,7.6612,9.9142,9.2031,4.1831,1.7988,5.9699,,,,,,,,,,,,,,,54,,,
-3957,1.5947,1.6662,,60-69y,Other,,,20.544,4.9271,2.9654,2.3601,1.7121,ppmi,,,M,,0.43841,4.8127,4.7456,0.85258,11.1556,1.4981,0.45113,3.2353,2.9343,49.1081,15.6076,223.6829,4.2444,5.1211,1.7024,2.2027,4.0102,7.5401,2.2826,3.2171,0.65947,6.4398,12.0409,16.7921,8.2545,2.5433,5.2277,1.8604,20.2236,6.3289,4.3049,1.2082,3.0884,7.279,16.7555,3.7803,4.459,3.4213,1.7183,1.3851,4.9261,11.6796,3.4292,2.7454,14.3061,2.7769,2.6668,2.5342,13.0631,2.0808,4.7712,1.3834,14.9561,6.0576,10.604,4.0348,11.599,7.7702,8.4889,7.4501,4.476,1.6778,4.7663,,,PD,0.081087,PD,,PD,0.42744,4.5662,4.2534,0.81226,11.8774,1.7691,0.47228,3.3548,3.1273,48.6693,15.1438,225.9944,4.2563,5.0872,1.6404,2.0354,4.1793,7.7121,2.321,3.233,0.67338,7.9384,12.7335,15.0425,8.8046,2.3231,5.1829,1.9468,20.0467,6.435,4.306,1.1519,2.8748,8.0504,15.9821,3.3978,4.8522,3.1857,1.4784,1.3205,4.4762,11.7047,3.0106,2.6165,12.0543,2.6637,2.4225,2.3196,13.0242,2.2273,4.4921,1.393,15.1064,5.9955,9.7349,4.6463,10.7402,7.6741,8.3087,7.3146,3.5311,1.7905,4.5494,,,,,,,,,,,,,,,69,,,
-3958,2.5172,2.7977,,70-79y,Other,,,17.862,5.101,3.0727,2.4331,2.5036,ppmi,,,M,,0.45477,4.7536,4.5236,0.84796,9.3888,1.5601,0.4284,3.0568,3.6645,50.916,14.4295,260.8325,4.3197,4.125,1.5029,2.0845,3.9446,7.4493,2.2631,3.0216,1.001,7.1888,12.097,35.8266,7.4058,2.3472,4.9787,1.9833,20.4097,5.8318,4.2524,1.2352,2.7031,7.8043,14.9611,3.6295,4.7241,3.2255,1.5407,1.4403,4.5721,11.1763,3.1499,2.3907,11.8985,2.7255,2.6144,2.2248,11.3565,2.3719,4.0466,1.3896,15.7152,6.0134,9.3111,3.3873,10.8411,8.1818,7.7344,7.0919,3.6412,1.639,4.6507,,,PD,0.081755,PD,,PD,0.40192,4.0005,4.2644,0.86269,11.1752,1.8191,0.41785,3.0442,3.6654,51.0785,13.6527,267.908,4.5278,4.2453,1.5646,2.1568,4.3105,7.6786,2.1807,3.3114,0.95862,7.1195,12.8211,32.493,8.3095,2.299,4.4278,1.8498,20.4535,5.3916,4.008,1.0268,2.5848,8.8661,15.8326,2.7024,4.4491,3.6789,1.5092,1.4121,4.3393,11.5605,2.9714,2.5593,10.1901,2.3048,2.2365,2.1235,11.2144,1.9684,4.0447,1.2531,15.6717,5.7536,8.5161,4.0361,11.3511,8.0972,7.451,7.8978,3.5767,1.6541,4.5282,,,,,,,,,,,,,,,76,,,
-3959,1.5978,1.5023,,70-79y,Other,,,19.605,6.0174,3.159,2.7434,1.4039,ppmi,,,M,,0.47996,5.506,4.6812,0.91321,9.3228,1.739,0.44143,3.3752,3.1374,53.0797,13.9239,229.8157,4.4737,4.6299,1.9719,2.1081,3.7038,8.0083,2.3138,3.279,0.63617,6.0458,12.2721,15.2559,8.0241,2.4332,5.5911,1.8259,21.5042,6.1033,4.569,1.4873,3.3663,8.4489,14.6434,3.4124,4.3373,3.5531,1.5518,1.2631,4.9664,11.7271,3.8983,2.6365,12.686,2.5734,2.6458,2.502,13.7601,2.499,4.395,1.4236,15.9335,7.1623,9.4975,3.7478,11.7298,7.835,8.5171,8.7241,3.9222,1.8749,4.78,,,,0.094509,CN,,HC,0.42046,4.643,4.3912,0.91548,10.0271,1.8674,0.43653,3.5017,3.2712,52.2052,13.2341,233.1115,4.3512,4.9524,1.9097,2.0108,4.2728,7.9757,2.2866,3.5297,0.74012,6.3537,12.9781,12.5199,8.5389,2.3798,5.2747,1.9255,20.7932,5.2916,4.214,1.3236,3.2583,10.0696,15.958,2.7827,4.2883,3.6209,1.7532,1.2717,4.3347,11.1238,3.3986,2.6267,10.7821,2.6045,2.4978,2.3309,13.7479,2.1032,4.2206,1.2956,16.8228,6.9102,7.9276,4.8275,10.9946,7.844,8.2103,8.687,4.0112,1.8339,4.5751,,,,,,,,,,,,,,,73,,,
-3960,0.84202,1.6874,,50-59y,Other,,,19.3843,5.0351,2.7495,2.4136,1.0922,ppmi,,,M,,0.46598,5.0802,4.4309,0.90542,9.3569,1.7219,0.45474,4.3005,2.9482,49.9998,16.0407,236.5634,4.023,5.7131,1.8515,2.1425,4.1125,7.6326,2.5211,3.243,0.55918,7.9329,11.9583,9.1579,8.7842,2.6688,5.0315,2.1596,19.7418,6.8486,4.566,1.0958,2.7346,7.9879,15.0222,4.4704,5.0967,4.0368,1.7238,1.3996,4.6607,11.6111,3.1842,2.193,12.8707,2.3827,2.6947,2.1935,15.2791,2.3215,4.4455,1.2914,16.0226,5.9109,9.4404,4.3692,11.0991,7.7444,8.4111,8.4635,4.4855,1.6692,4.8217,,,PD,0.072752,PD,,PD,0.39853,4.1151,4.1815,0.94467,11.141,1.9036,0.43973,4.0407,3.124,49.7616,15.806,238.0402,3.6939,5.8189,1.8985,1.9849,4.3556,7.8277,2.4474,3.5097,0.67364,8.1588,12.5932,7.8115,9.1863,2.6348,4.8283,2.1367,20.37,5.9623,4.2841,1.1434,2.9734,8.834,15.8231,3.8091,5.0435,3.7042,1.7562,1.3949,4.3245,11.7781,2.9759,2.4218,10.7804,2.3827,2.6164,2.1384,14.084,2.0548,4.3829,1.2198,15.6399,5.572,8.7657,5.5499,10.6361,8.0258,7.9162,8.6849,3.9689,1.5387,4.5458,,,,,,,,,,,,,,,53,,,
-3961,1.1688,2.1568,,-50y,Other,,,20.7361,4.715,2.9246,2.3485,1.2081,ppmi,,,M,,0.51767,4.5917,4.1964,0.82813,9.5411,1.4206,0.4686,3.6233,3.6211,53.7653,15.9323,249.8019,4.0898,4.4728,1.6376,1.8765,3.3707,8.0998,2.2318,3.15,0.61632,7.3688,12.6302,14.3064,7.7833,2.4186,4.4768,1.701,19.3971,7.1542,4.1865,1.1616,2.7603,7.156,16.007,4.3149,4.868,3.2086,1.5398,1.6364,4.3782,10.2589,3.2355,2.4348,12.0822,2.4882,2.4672,2.5039,14.37,2.1217,5.0311,1.348,14.7676,5.7147,10.33,3.8449,10.9194,8.6763,9.4757,8.1637,3.8952,1.6857,5.4018,,,PD,0.088166,PD,,PD,0.48146,4.1246,4.0771,0.79386,11.8743,1.6595,0.49579,3.4313,3.7776,53.8392,15.1811,252.9499,3.6816,4.887,1.6104,2.0122,3.782,8.3709,2.1236,3.2894,0.65865,7.7085,13.1345,13.0508,8.513,2.2458,4.6039,1.7081,19.7679,6.3256,3.9609,1.1301,2.6045,7.699,16.3218,3.4403,4.8468,3.4816,1.8545,1.6305,3.9981,10.2007,2.9551,2.3688,10.4316,2.5591,2.4149,2.1468,12.745,2.1707,4.8989,1.2746,15.5011,5.3742,9.1441,4.6926,11.2645,8.5399,9.1226,8.0924,4.1007,1.5393,5.2001,,,,,,,,,,,,,,,37,,,
-3962,0.88266,1.2752,,60-69y,Other,,,16.7966,4.4049,2.6959,2.1154,1.2689,ppmi,,,M,,0.47679,4.4505,4.4502,0.90989,9.2497,1.6758,0.42384,3.3039,2.7877,46.4519,12.3241,194.9601,4.2439,4.4302,1.841,1.9062,3.5177,7.6892,2.2205,3.4644,0.52182,6.7212,12.2262,14.5511,7.3823,2.511,4.1414,1.8142,18.1513,6.0295,4.2491,1.1531,2.7104,6.728,14.2822,3.2738,4.3467,3.6006,1.5451,1.0193,4.0812,10.6381,3.3427,2.4748,9.7921,2.5799,2.6955,2.3984,12.3369,2.2196,4.5542,1.1254,13.7152,5.2285,8.842,3.5301,10.8209,7.5584,7.2658,7.6234,3.9345,1.7362,4.1141,,,PD,0.073703,PD,,PD,0.42673,4.2652,4.1703,0.88641,9.778,1.8841,0.41962,3.2575,3.0088,47.7409,11.8667,197.2463,3.8599,4.7296,1.8104,2.1114,3.4469,7.6798,2.0692,3.4316,0.52324,6.7939,11.9718,13.9517,8.2789,2.3379,4.3889,1.6807,17.2768,4.7722,3.9684,1.0441,2.4294,7.5511,15.0369,2.715,4.3773,3.8685,1.5768,1.01,3.775,10.5411,3.0176,2.3174,10.3093,2.1953,2.3599,2.1587,12.9101,2.01,4.4192,1.0783,13.6861,5.0639,7.5816,3.7083,10.6796,7.5631,6.9725,8.0081,3.7416,1.5232,3.943,,,,,,,,,,,,,,,69,,,
-3965,2.9466,2.1821,,-50y,Other,,,18.64,4.4834,2.3062,1.9394,2.3256,ppmi,,,M,,0.4012,3.9664,4.2591,0.75887,8.9708,1.2747,0.38173,2.849,3.1919,43.6037,12.9028,199.0584,3.4646,3.2803,1.4155,1.8786,2.8411,6.8461,1.8916,3.0422,1.3212,6.4842,11.031,38.4766,6.9552,2.0531,3.9951,1.4919,15.1748,6.2307,3.6625,0.91777,2.4369,5.8216,14.0069,3.0233,4.0653,3.0685,1.2965,1.2707,3.883,8.6375,2.9974,2.3185,9.1108,1.9276,2.3193,2.1773,11.214,1.6867,3.6797,1.1535,11.1347,4.4044,8.2123,2.7976,9.3417,7.3832,8.1917,6.5248,3.3702,1.3405,4.7218,,,PD,0.076963,PD,,PD,0.36488,3.5526,3.8625,0.7881,9.4736,1.4992,0.38417,2.9543,3.6185,43.0057,12.644,201.6588,3.6156,3.9234,1.4307,1.6806,3.2308,6.9458,1.8667,3.4176,1.706,6.1838,11.2917,37.8211,7.2841,1.9774,3.7661,1.5057,13.7205,4.4467,3.5348,1.0825,2.4566,6.491,13.38,2.5857,3.7102,2.4641,1.3196,1.3008,3.5049,9.1498,2.7733,2.4623,8.8675,1.997,2.2446,2.0969,11.1599,1.7287,3.8127,1.0977,12.5783,4.7488,7.4723,3.4637,8.1859,6.8543,7.9165,6.7049,2.6039,1.4982,4.6257,,,,,,,,,,,,,,,39,,,
-3966,1.2386,1.9628,,+80y,Other,,,23.4905,5.4538,3.1194,2.4614,1.0673,ppmi,,,M,,0.52668,4.3464,4.8945,0.99512,11.3161,1.7815,0.46843,4.1447,3.7187,55.8572,17.6947,272.5443,4.3211,5.7534,1.847,2.3479,3.5928,8.8365,2.5427,3.5496,0.58003,8.3854,14.7152,12.2097,9.2799,2.7553,4.714,1.8049,22.2109,7.786,4.803,1.2833,2.9426,7.0424,18.9684,4.0782,5.3518,4.2741,1.7951,1.7461,5.0611,12.0594,3.5853,2.481,12.3923,2.3406,2.9664,2.3658,15.2478,2.031,5.6128,1.2774,16.5105,6.4186,9.5845,4.4423,10.9365,9.2561,10.4956,9.0857,4.4647,1.6432,5.882,,,,0.095102,CN,,HC,0.51131,4.0638,4.7114,1.0168,11.5279,1.819,0.47943,4.1063,3.8926,54.3899,16.6122,278.2566,4.7381,5.4581,2.0154,2.3398,3.8226,8.7272,2.5041,3.6788,0.65806,8.3709,14.1445,11.3823,9.3444,2.3956,4.9532,1.9143,22.9133,6.1752,4.4229,1.0785,2.8952,8.7538,18.645,3.5253,4.9972,3.7874,1.8335,1.7177,4.4909,12.005,3.4668,2.5309,11.9809,2.4042,2.4746,2.3643,14.8051,2.1114,5.5324,1.287,15.7382,6.0823,9.2914,5.0846,11.6322,9.474,10.2123,9.3778,4.2772,1.6035,5.8019,,,,,,,,,,,,,,,83,,,
-3967,1.1057,1.9724,,50-59y,Other,,,20.0435,5.352,3.0071,2.4972,1.0778,ppmi,,,M,,0.4794,4.9584,4.2098,0.93424,9.8668,1.6122,0.4735,3.4364,3.0324,55.8961,16.0828,231.9413,4.284,4.6496,1.9311,2.048,3.4923,8.3722,2.5931,3.2828,0.61992,7.2187,13.4538,11.7679,7.9386,2.6011,5.3779,1.872,19.0098,6.9277,4.8312,1.3189,3.1797,7.4967,16.6412,3.6328,4.845,3.7301,1.6172,1.4884,4.8751,11.5042,3.2886,2.3518,12.6643,2.5856,2.7719,2.2039,13.8412,2.2685,4.8339,1.4448,15.7105,6.1575,10.5265,4.0368,11.9681,8.6224,8.2907,8.6857,4.1276,1.6122,4.9424,,,,0.080169,CN,,HC,0.45738,4.2421,3.9009,0.93194,12.6159,1.9682,0.47096,3.6823,3.1918,55.3418,15.766,235.0364,4.1353,4.9479,1.9396,1.8234,4.2248,8.4516,2.4976,3.4859,0.63282,8.3477,12.9948,8.9328,8.7422,2.4626,4.996,1.8828,20.1458,6.3757,4.7056,1.2982,3.0345,8.5951,16.2489,3.4707,4.8502,3.2858,1.5729,1.4731,4.466,11.2052,3.1737,2.3002,11.4371,2.2658,2.5333,1.9691,13.2952,1.9646,4.8137,1.3587,15.8873,5.7689,8.9569,4.9458,11.0975,8.1551,8.1136,8.3805,3.723,1.4275,4.7331,,,,,,,,,,,,,,,59,,,
-3968,1.3319,1.9861,,50-59y,Other,,,18.7559,4.9572,2.9435,2.4966,1.4067,ppmi,,,M,,0.41046,4.3337,4.2282,0.84383,8.9656,1.4927,0.39744,2.3671,2.7568,52.4585,15.3304,205.2064,3.7849,4.3933,1.7011,2.119,3.4072,7.2844,2.0075,3.2438,0.62116,6.376,12.2018,13.0961,7.5091,2.2175,4.4091,1.6088,18.0044,5.7826,3.9482,0.92507,2.1662,6.3456,15.0009,3.3059,4.3508,3.2331,1.3883,1.3185,4.3951,10.3569,3.0962,2.1099,10.7225,2.1407,2.4126,2.0422,12.0886,2.08,4.5774,1.1712,13.0798,4.6728,8.2318,3.3638,10.078,8.0539,7.9908,7.3881,3.5171,1.3747,4.6283,,,,0.063615,CN,,HC,0.38273,3.9838,3.8909,0.86121,10.9679,1.6402,0.4081,2.4598,3.0599,51.9309,14.6471,206.9911,3.5052,4.6561,1.6848,2.0278,3.7238,7.4655,2.0881,3.4272,0.78994,7.1663,11.6922,12.8617,8.2099,2.129,4.2821,1.6208,16.9613,5.3759,3.8838,1.0162,2.3398,7.0912,14.6573,2.9211,4.4628,3.2088,1.5196,1.309,3.8123,10.0618,2.8266,2.1261,9.1741,1.9993,2.1001,1.9289,11.9361,1.8931,4.5194,1.1436,12.7841,4.8472,7.2455,4.1744,9.1343,7.9056,7.4872,7.323,3.326,1.4642,4.463,,,,,,,,,,,,,,,57,,,
-3969,2.0559,3.1115,,50-59y,Other,,,17.7611,4.1642,2.4039,2.1672,1.8332,ppmi,,,M,,0.40757,3.6527,4.3842,0.89839,8.1232,1.3892,0.39261,3.3907,3.6732,43.9172,12.6156,179.9275,3.6914,4.4497,1.6572,1.6937,3.2794,6.884,2.009,3.1017,1.3353,6.0678,10.2421,34.1526,7.1012,2.1915,3.4056,1.4887,16.6339,5.5984,3.7308,0.92406,2.0963,5.878,12.9084,2.9976,4.1754,2.9595,1.4596,1.324,3.7655,10.0996,3.129,2.3454,9.5846,2.0918,2.4093,2.0528,9.785,1.7195,4.3971,1.1436,12.2859,4.3794,7.227,3.2866,10.4552,6.0413,7.3014,6.7954,3.3574,1.2847,4.445,,,,0.068265,CN,,HC,0.34644,3.3062,4.3306,0.88564,8.9944,1.5543,0.37276,3.1435,3.3199,44.2517,12.4674,181.5362,3.4982,3.8252,1.692,2.098,3.3427,6.995,1.8579,3.24,1.3292,6.6735,9.9717,24.2644,7.4503,1.9087,3.7087,1.4812,14.8663,5.1043,3.4077,0.99077,2.0873,6.5233,12.8733,2.5386,4.0773,3.0829,1.3176,1.2848,3.5462,9.1325,2.7846,2.2552,9.2589,2.1835,2.1005,1.9424,10.289,1.706,4.275,1.055,11.9023,4.1952,6.8384,3.8223,8.7956,5.8954,6.9533,7.245,3.0501,1.4198,4.2084,,,,,,,,,,,,,,,57,,,
-3970,1.5071,2.7207,,+80y,Other,,,18.7056,4.5467,2.661,2.1989,1.2339,ppmi,,,F,,0.40044,4.3158,4.1719,0.89606,10.1621,1.6323,0.42129,2.8236,2.634,49.3202,13.3999,219.7905,4.3588,4.3724,1.7579,1.9359,3.4072,7.8835,2.2543,3.0957,0.76228,6.3738,12.1294,15.0396,7.209,2.4002,4.386,1.725,19.4481,6.1778,4.4135,0.98192,2.586,7.0173,15.0608,3.1229,4.5852,3.4786,1.4819,1.2074,4.1566,10.5932,3.1564,2.3817,11.7176,2.3657,2.5794,2.2957,13.104,2.0039,4.3158,1.3624,15.8223,5.519,9.6128,3.3091,10.841,8.0297,7.7711,8.0824,3.9131,1.6779,4.5885,,,,0.081913,CN,,HC,0.38698,3.8542,3.8576,0.87399,10.5443,1.7655,0.43991,2.8052,2.7846,47.6952,13.0388,225.7354,4.1068,4.1273,1.7497,1.8659,3.902,7.6443,2.4545,3.1887,0.79782,6.6773,11.9812,13.2137,7.4827,2.2275,4.6524,1.838,19.0779,5.2877,4.3445,0.96995,2.3448,7.9451,15.0331,2.8254,4.2879,3.2263,1.6221,1.191,3.8552,10.353,2.8468,2.3013,9.7593,2.6526,2.3539,2.0874,12.2924,2.1008,4.131,1.2619,15.9571,5.3975,8.5128,4.227,11.5928,7.7237,7.5279,8.0427,3.6808,1.6101,4.4405,,,,,,,,,,,,,,,81,,,
-3972,1.3708,1.9104,,60-69y,Other,,,18.2063,4.5286,3.0346,2.2295,1.2378,ppmi,,,M,,0.3906,4.1402,4.1749,0.70468,8.4733,1.4801,0.37111,2.9708,3.103,50.2631,14.6791,218.2137,3.9047,4.0195,1.5071,1.9543,3.2141,7.3659,1.9243,2.8672,0.42732,6.708,11.0348,10.7032,7.4634,2.2818,4.405,1.6632,17.9349,6.0183,3.7488,1.0378,2.7402,6.5212,13.3472,3.2173,4.3449,3.3285,1.4009,1.1491,3.6943,9.0137,2.9402,2.1871,10.398,2.0607,2.3579,2.1957,10.9477,1.8552,3.9207,1.1548,13.4817,5.0705,8.6074,3.4694,10.1633,6.8887,7.5886,7.1294,3.4077,1.486,4.3847,,,PD,0.077553,PD,,PD,0.33641,3.2674,4.0412,0.75485,9.2747,1.643,0.37154,3.0748,2.9865,50.6613,13.9918,210.7553,3.5712,4.3645,1.6431,1.9861,3.4539,7.342,1.8736,2.9146,0.79959,7.0291,11.3677,10.551,7.3657,2.0856,4.0307,1.5563,16.306,5.1147,3.515,0.8308,2.2113,7.3992,13.5714,2.8074,4.1976,3.7161,1.3901,1.0747,3.2648,8.696,2.7223,2.2574,8.8366,1.9346,2.1479,1.8321,11.0611,1.7671,3.4369,1.0581,12.8319,5.0333,6.9176,3.929,9.1043,6.6646,6.9794,7.4648,3.4436,1.411,4.0931,,,,,,,,,,,,,,,67,,,
-4001,1.5249,2.3633,,60-69y,Other,,,20.7583,5.3956,2.8742,2.6025,1.9111,ppmi,,,F,,0.4934,4.8886,4.4895,0.95475,10.1446,1.7709,0.40748,3.7261,3.6399,52.0617,16.6951,238.0883,4.3614,5.0334,1.8849,2.321,3.735,8.6712,2.2225,3.3521,0.61006,7.1744,12.9128,25.7248,9.1392,2.6562,4.9554,1.9698,19.631,6.9079,4.3102,1.1823,2.6877,7.4644,15.4781,4.3791,5.2081,3.9249,1.5155,1.5941,5.1821,12.2956,3.5146,2.3837,13.8354,2.7773,2.8452,2.4743,15.1307,2.3322,5.0669,1.2688,16.0456,5.8127,10.5654,4.4448,12.2454,7.4438,9.213,8.1309,3.8878,1.9291,5.2878,,,PD,0.076191,PD,,PD,0.44675,4.2726,4.1664,0.91931,11.8978,1.9156,0.41036,4.1701,3.7011,52.2728,16.8422,243.8321,3.995,6.0334,1.7845,2.1102,3.9971,8.8679,2.2026,3.4813,0.6133,8.1149,13.8337,21.2058,10.1714,2.3576,5.0159,1.9797,19.784,6.3178,4.0865,1.271,2.9164,8.3302,16.6049,3.9375,4.9673,3.6771,1.5866,1.5425,4.5781,11.6882,3.1487,2.2844,11.4556,2.3455,2.6358,2.2566,13.4409,2.2922,4.7378,1.1802,16.6012,5.8858,9.4318,5.7157,12.3881,8.03,8.9296,8.2161,3.5483,1.6934,5.1051,,,,,,,,,,,,,,,65,,,
-40012,1.2333,2.2664,,60-69y,Other,,,17.7568,5.0852,2.6984,2.3039,1.4522,ppmi,,,M,,0.39985,4.3087,4.4304,0.87863,9.402,1.5988,0.38319,3.16,2.3919,49.0496,14.4041,198.066,4.2119,4.9362,1.7804,2.2055,3.4837,7.6141,2.1963,3.2866,0.39385,7.0318,11.41,10.2033,8.172,2.4175,5.0698,1.6529,18.861,7.2063,4.2541,1.1312,2.701,6.8452,14.105,3.6798,4.9994,3.5646,1.6027,1.1765,4.4351,10.8862,3.4885,2.3754,12.4822,2.1003,2.5524,2.4942,13.8897,2.0519,4.002,1.1554,14.5981,5.6147,8.826,3.9534,10.7246,6.8494,7.7036,7.7666,4.1273,1.9425,4.1465,,,,0.073629,Other,,PRODROMA,0.35946,4.1432,4.188,0.86346,10.786,1.7941,0.36197,3.2195,2.3388,49.0991,14.0291,196.5235,4.0111,4.8564,1.7234,2.0728,3.6919,7.6053,2.158,3.3769,0.41942,7.4495,11.5058,9.769,8.1148,2.3391,4.9233,1.6165,18.3134,5.4997,3.884,1.0386,2.6583,7.7998,13.5554,2.8722,4.6112,3.5598,1.5697,1.1722,4.1182,10.5592,3.0459,2.392,10.5604,2.2056,2.3976,2.1915,13.5745,2.0072,3.7261,1.1096,15.5489,5.7922,8.7813,4.5811,10.4087,7.4346,7.4886,8.0073,3.7136,1.6081,3.8764,,,,,,,,,,,,,,,61,,,
-4004,1.3865,2.4788,,50-59y,Other,,,16.2691,4.1461,2.394,2.0811,1.5893,ppmi,,,M,,0.40672,4.2233,3.8499,0.81705,8.515,1.3097,0.36089,3.2401,2.6259,40.89,13.6211,194.2764,3.8746,4.425,1.61,1.7961,3.0094,6.8519,1.9075,2.8752,0.6672,5.6793,9.7393,20.5151,6.9211,1.992,4.3341,1.6205,15.4811,5.7001,3.4932,1.0017,2.2872,6.2745,12.4801,3.2632,3.9783,3.0618,1.242,1.3204,3.6548,9.6138,3.131,2.1763,10.3769,1.8681,2.0199,2.0799,12.0134,1.5365,4.1649,1.1685,12.3542,4.8421,7.491,3.2639,9.446,6.4591,7.6902,7.2136,3.1914,1.3795,4.3344,,,PD,0.07282,PD,,PD,0.36567,3.555,3.7174,0.82777,9.1191,1.3674,0.36728,3.3939,3.0316,40.2802,13.1424,200.9263,3.5756,5.026,1.5912,1.7696,3.0734,6.7442,1.9595,3.1858,0.8371,5.9009,10.0404,18.3682,7.4123,1.7862,3.8477,1.512,16.1292,4.9014,3.2652,1.0182,2.4169,6.9854,12.7438,2.9553,3.7993,2.8751,1.2787,1.2944,3.4727,10.1013,2.8097,2.1548,9.1078,1.9345,1.8036,1.8726,12.1912,1.7104,4.1302,1.122,12.7168,4.9591,7.0137,4.4726,9.4168,6.677,7.711,6.9619,3.0584,1.4107,4.1348,,,,,,,,,,,,,,,54,,,
-4005,1.0067,2.0462,,60-69y,Other,,,16.8632,4.8256,2.7179,2.3375,1.2316,ppmi,,,F,,0.37323,3.4946,3.5615,0.74117,7.5506,1.3699,0.3519,2.6357,2.7148,47.7514,14.6984,190.2952,3.6244,3.8684,1.4626,1.6332,3.0706,6.6019,1.603,2.6488,0.58126,5.5627,9.3186,16.1659,6.5918,2.0666,3.818,1.3827,16.4097,5.16,3.4147,0.87958,2.2093,5.8498,11.4165,3.0935,3.9366,2.9357,1.3153,1.2162,3.4953,8.85,2.8344,1.9851,10.4334,2.214,2.258,1.8259,11.8974,1.872,3.7713,1.0263,12.9731,4.5345,7.4664,3.1269,8.8621,6.7903,7.3103,6.7464,3.1583,1.4173,4.164,,,,0.068136,CN,,HC,0.35343,3.0148,3.5151,0.76037,8.5925,1.3867,0.36662,2.8072,2.8802,48.1534,14.3312,195.1202,3.5761,4.221,1.4982,1.7322,3.417,6.9223,1.6408,2.9033,0.48897,5.9191,10.047,12.5502,7.0672,1.823,3.7825,1.3414,15.1296,4.0223,3.229,0.91952,2.2349,6.3347,11.9327,2.7615,3.9626,3.2959,1.4075,1.1776,3.2548,8.8233,2.6716,1.9539,9.0559,1.8619,2.0762,1.7725,11.4848,1.5372,3.6997,0.99426,14.1172,4.3905,7.5154,3.6638,9.9218,6.0527,7.2354,6.9893,2.9129,1.272,4.0214,,,,,,,,,,,,,,,66,,,
-4010,0.81708,1.5987,,70-79y,Other,,,20.3907,5.0868,3.0177,2.3689,0.86151,ppmi,,,M,,0.42779,4.7716,4.0818,0.86991,8.7361,1.6202,0.37121,2.9262,2.8762,54.1784,18.4783,211.1124,3.8625,4.394,1.7483,1.8424,3.6369,7.4987,2.1471,3.0327,0.33248,5.8286,10.6121,7.6388,7.5029,2.4737,4.8156,1.8866,18.8944,5.1697,3.9415,1.1384,2.5548,7.2091,12.4629,2.9949,4.8621,3.4987,1.3766,1.5136,3.992,9.2358,3.2357,2.1161,11.8244,2.0679,2.6001,2.186,13.1993,1.9261,3.9463,1.0249,14.4523,5.3265,9.0036,3.1422,10.6307,7.0108,8.9232,7.5559,3.6173,1.6051,5.1732,,,PD,0.084305,PD,,PD,0.39727,4.0584,3.6166,0.88394,9.8339,1.8159,0.37888,2.8144,2.93,54.5146,17.6634,216.1603,3.4545,4.5448,1.8036,1.7082,3.8584,7.5459,2.0565,3.328,0.42395,6.4533,10.8572,7.5794,7.9916,2.2048,4.6398,1.7673,19.5154,4.7573,3.5913,1.0941,2.6892,7.9828,12.6186,2.9821,4.5616,3.2546,1.4237,1.4675,3.8583,9.8738,2.9955,2.0142,9.9576,1.9594,2.1094,1.8863,13.3109,1.6639,3.8313,0.96976,14.8814,5.3021,6.9306,4.1911,10.1557,6.7344,8.6994,7.8124,3.2835,1.4256,4.9895,,,,,,,,,,,,,,,77,,,
-4011,0.61663,1.4404,,-50y,Other,,,17.2738,4.7104,2.2629,2.005,0.81473,ppmi,,,M,,0.44808,4.1769,4.331,0.87273,8.6727,1.3969,0.39741,2.5722,2.8676,44.4357,14.8274,189.3263,4.131,4.2829,1.5549,2.1026,3.2175,6.9831,2.0077,3.196,0.39255,6.2971,10.86,7.1684,6.1386,2.1893,4.68,1.7358,16.2164,6.2938,3.7261,0.88461,2.3746,6.1202,13.7509,3.0329,3.6952,3.5207,1.5052,1.2979,3.9341,10.1598,2.9557,2.3603,10.8532,2.246,2.3304,2.316,12.4405,1.9866,4.3674,1.1726,14.2753,4.7524,7.9769,3.3298,10.1723,7.1877,7.9917,6.867,3.8599,1.6755,4.3506,,,,0.079751,CN,,HC,0.40881,3.8736,4.3259,0.85955,9.3682,1.5132,0.40949,2.5527,3.0316,44.0179,14.2105,195.4712,4.0397,4.3376,1.6167,2.1535,3.288,7.1494,2.0663,3.3862,0.39315,6.0406,11.3411,6.1997,6.7385,2.0125,4.5883,1.6291,16.326,4.6167,3.6225,0.96394,2.3072,7.1221,14.0072,2.3731,3.9212,3.614,1.5422,1.3365,3.6584,10.3279,2.6665,2.3429,10.3737,2.2413,2.2364,2.0725,11.4259,2.0399,4.2459,1.1719,14.3369,4.9145,8.4974,3.9735,9.787,7.1268,7.9261,7.2772,3.7674,1.6159,4.2936,,,,,,,,,,,,,,,43,,,
-4012,0.63618,1.6305,,50-59y,Other,,,21.0185,4.8989,3.247,2.5757,0.88015,ppmi,,,F,,0.41216,4.3565,3.989,0.89603,8.6721,1.5672,0.34481,2.9321,2.925,51.2937,18.8111,212.1402,3.6532,4.3471,1.6045,1.8952,3.4885,7.4614,1.932,3.1144,0.45637,5.8105,10.6192,8.7282,7.3172,2.4252,4.2432,1.6593,18.0808,5.4957,3.8885,1.2862,2.7327,7.0035,12.3742,3.002,4.1829,3.486,1.5938,1.4547,3.7682,9.6866,3.1267,1.999,11.8033,2.2166,2.5206,1.9963,13.7258,1.8852,3.754,1.013,15.0283,5.3084,8.3776,3.2915,10.5713,6.6139,8.2759,7.3713,3.7396,1.4385,5.0618,,,PD,0.06976,PD,,PD,0.3951,4.0375,3.8884,0.85729,9.9534,1.6367,0.36729,2.8843,2.9428,51.2314,18.9124,217.2579,3.7409,4.4213,1.6831,2.0079,3.9722,7.3365,2.0834,3.2243,0.47093,6.3252,10.6056,7.4632,7.5756,2.3608,4.3784,1.7415,18.7908,4.999,3.6597,1.2292,2.7295,7.8876,12.9294,2.5572,4.0034,3.8679,1.6936,1.4756,3.3703,9.9888,2.8958,1.9008,9.891,1.983,2.398,1.8785,12.9364,1.7962,3.8074,1.0035,13.8491,5.056,6.9742,3.9278,10.3792,7.3563,7.9817,7.5235,3.5069,1.3319,4.7683,,,,,,,,,,,,,,,56,,,
-4013,2.0704,1.7954,,50-59y,Other,,,24.8967,6.0888,3.2007,2.7897,1.6499,ppmi,,,F,,0.53946,5.4042,4.2013,1.0367,12.0616,1.8864,0.46278,3.919,3.6212,58.3506,21.5641,264.8117,4.4058,5.1458,1.9269,1.9637,4.0889,8.6374,2.412,3.6999,0.69377,8.2096,13.7197,30.4405,9.2433,2.821,5.1782,2.2049,21.0723,7.7,4.6015,1.1475,2.7506,8.1121,16.8232,4.5952,5.0836,3.15,1.778,1.8757,5.3264,12.1581,3.7068,2.4751,12.6035,2.9157,2.7082,2.6265,14.5088,2.4692,4.7976,1.4592,16.4654,5.8766,9.8746,4.2226,11.7387,8.352,10.3366,9.5193,4.226,1.8899,6.0134,,,PD,0.089427,PD,,PD,0.50444,4.6824,4.1747,1.0449,12.7101,2.0846,0.47708,4.2497,3.9292,56.4658,20.5569,265.9409,3.8897,6.0715,2.0793,2.012,4.6362,9.2135,2.4365,3.8637,0.75055,7.9072,13.7772,27.2216,10.3041,2.5453,4.8663,2.1445,20.74,5.8998,4.3435,1.1724,2.9972,9.328,16.5982,4.4535,5.1101,3.8057,1.7077,1.8988,4.6028,11.7985,3.5511,2.2678,11.3777,2.5638,2.6352,2.2264,13.6322,2.1314,4.7473,1.3364,16.5467,5.9219,9.4896,4.7347,11.2907,9.3114,10.0794,9.8582,3.9608,1.5958,5.7061,,,,,,,,,,,,,,,55,,,
-4018,1.6172,2.5704,,60-69y,Other,,,15.7508,3.6647,2.1612,1.962,1.3066,ppmi,,,M,,0.39966,3.7975,4.1145,0.77847,7.691,1.2762,0.35459,2.5208,3.371,39.3078,13.4486,233.3099,3.737,3.9235,1.5763,1.9731,2.9845,6.5504,1.6865,2.573,0.52012,5.4748,10.1962,15.7921,6.0733,1.9418,4.0271,1.4991,15.5843,5.3217,3.4782,0.88269,1.9806,5.7381,11.5672,3.0858,3.5155,2.9553,1.3529,1.5395,3.7548,9.2849,2.7866,2.238,10.5885,2.2444,2.1224,2.2493,11.7089,2.0796,4.0321,1.127,12.8078,4.1722,7.6996,3.0297,9.0648,6.1225,7.848,6.6245,3.0917,1.5663,4.4529,,,PD,0.069522,PD,,PD,0.37154,3.2711,3.7619,0.7885,8.7701,1.4478,0.37208,2.4122,3.3616,40.221,13.708,231.797,3.3534,4.1425,1.5843,1.9892,3.1976,6.7746,1.7784,2.871,0.81539,5.5155,10.2854,14.4612,6.5649,1.8873,3.5321,1.449,15.6429,4.3604,3.4369,0.72321,1.9916,6.5745,11.3974,2.7049,3.4639,3.1307,1.4315,1.4564,3.4179,9,2.6853,2.1799,8.4833,2.196,2.0044,2.0182,10.1143,1.9859,3.8846,1.0839,12.6395,4.3193,7.1985,3.796,8.9897,6.4655,6.9446,6.9393,3.2433,1.5701,4.0681,,,,,,,,,,,,,,,67,,,
-4019,0.6976,1.6743,,60-69y,Other,,,18.7422,4.4611,2.4967,2.2238,0.60997,ppmi,,,M,,0.45495,4.6764,4.1085,0.92276,11.0879,1.5924,0.3972,4.0588,2.9924,46.2863,14.8217,221.9259,4.3525,5.9318,1.7641,1.8264,3.4531,8.0328,2.0304,3.1592,0.3027,8.1724,12.1758,6.7672,8.2665,2.3679,4.8551,1.7452,20.9961,8.1268,4.0469,1.023,2.4382,7.1043,14.7918,4.0019,5.0003,3.4417,1.4978,1.3972,4.649,11.671,3.3479,2.3955,12.9905,2.4039,2.4772,2.3201,14.1209,1.9196,4.3871,1.0721,15.6371,5.3526,10.5123,4.4431,11.3579,8.049,8.3285,7.8946,3.9009,1.4943,4.6832,,,,0.080892,CN,,HC,0.42479,4.2332,4.3155,0.92323,12.9486,1.7396,0.39875,4.2277,3.0353,47.3631,14.7805,229.6022,4.1505,6.3138,1.9229,1.9772,3.8584,8.1882,2.1224,3.3683,0.40417,8.4561,13.2641,4.8378,9.0386,2.2282,4.7851,1.7678,20.2757,5.9113,3.8583,0.98977,2.5102,7.8613,16.0619,3.2852,5.0315,3.97,1.7042,1.3839,4.1761,12.0798,3.1161,2.3168,10.7382,2.1689,2.4003,2.0998,12.894,1.823,4.4492,1.0899,14.7681,5.1971,9.011,4.771,12.5587,8.0096,8.1951,9.4253,3.8074,1.4244,4.5154,,,,,,,,,,,,,,,65,,,
-4020,1.2558,1.9274,,50-59y,Other,,,19.9936,4.8698,2.7532,2.183,1.821,ppmi,,,F,,0.53067,5.1314,4.6136,0.97643,8.2599,1.6475,0.4023,3.4571,3.7598,48.2529,16.5285,244.1161,4.3276,4.9609,1.8846,2.1348,3.9414,7.412,2.2561,3.5801,0.64218,5.968,10.8001,17.9222,7.729,2.3605,4.6958,2.0933,18.273,5.8449,4.055,0.99828,2.8029,8.401,13.5175,3.5737,4.2296,3.2557,1.6537,1.6236,4.4639,10.7707,3.6142,2.7232,10.8521,2.5061,2.4176,2.563,12.7668,2.3465,4.6548,1.3664,14.9967,6.1424,7.6658,4.0253,9.8493,6.9149,8.5404,8.1749,3.7553,2.0797,4.9301,,,PD,0.074076,PD,,PD,0.48271,4.6343,4.2304,0.91243,11.0383,1.7835,0.42362,3.7223,4.0636,48.6814,16.3479,251.6094,4.0109,4.8368,1.8008,1.9953,4.1624,7.7131,2.2848,3.3534,0.77339,6.9683,10.9645,25.8339,8.4547,2.1958,4.7865,2.0185,18.0838,5.5603,3.9836,1.183,3.0111,9.2877,13.664,3.4128,4.2467,3.12,1.493,1.5239,4.1537,10.9696,3.1502,2.4933,9.2455,2.4738,2.339,2.2901,12.4486,2.3206,4.5325,1.2814,15.3824,6.3835,7.7033,4.5744,10.8059,7.5952,8.3233,8.1062,3.2156,1.7972,4.6974,,,,,,,,,,,,,,,59,,,
-4021,1.5018,1.9643,,60-69y,Other,,,20.4594,4.8869,2.5908,2.2655,1.5211,ppmi,,,M,,0.43861,4.6915,4.0869,0.80247,8.5391,1.4727,0.3552,3.2838,2.8613,45.4655,16.1237,199.9947,3.9149,4.4249,1.5252,1.6993,3.6136,7.3381,1.9469,3.0797,0.47539,6.4232,10.8067,15.198,7.7163,2.3617,4.3349,1.8358,17.2043,6.0513,3.6141,1.2315,2.6025,6.9274,13.268,3.5626,4.2967,2.9376,1.4612,1.3591,4.5387,10.8872,3.2499,2.4511,11.6807,1.9955,2.3858,2.0855,11.9518,1.6747,3.9464,1.2187,14.5929,4.8631,7.6221,3.7111,10.4101,6.5758,8.023,7.2285,3.6385,1.4412,4.6406,,,PD,0.079323,PD,,PD,0.39275,4.2981,3.9037,0.80976,9.7961,1.6651,0.38232,3.2211,3.1435,43.6123,15.2497,206.1497,3.8539,4.8916,1.6779,1.9006,4.2016,7.4639,2.0951,3.1708,0.52547,5.9268,10.5728,14.1021,7.8519,2.1938,4.5433,1.9011,17.2427,4.7964,3.5627,1.2019,2.6369,7.9223,13.4669,2.7012,4.0723,3.2791,1.3581,1.3451,4.1056,11.3847,3.0739,2.5137,10.2312,2.317,2.1305,1.9092,12.4261,1.8099,3.7818,1.2869,14.0205,4.9108,7.6292,4.2708,9.7701,6.8053,7.8986,7.6534,3.2912,1.4261,4.5142,,,,,,,,,,,,,,,65,,,
-4022,0.84155,1.5153,,70-79y,Other,,,21.9637,4.5948,2.8656,2.2172,0.83955,ppmi,,,F,,0.50712,5.2462,4.2352,0.99748,10.9376,1.7565,0.38943,3.8333,3.1313,51.5669,18.3869,241.5657,4.1083,5.3562,1.8177,2.1679,3.8235,7.8465,2.2897,3.6245,0.59929,8.4799,12.827,13.8402,8.6519,2.5944,4.972,2.0539,19.3396,7.6942,4.2537,1.2089,2.792,7.6759,16.4303,4.2203,5.331,3.516,1.5084,1.654,4.91,11.9929,3.4351,2.3695,12.9308,2.8615,2.6395,2.4587,13.2675,2.3541,4.4201,1.2229,14.5392,5.8302,9.7346,4.072,11.6497,8.3717,9.6119,8.2967,3.9093,1.6286,5.639,,,PD,0.07779,PD,,PD,0.46883,4.9023,4.0497,1.0176,12.5501,1.968,0.41721,3.9975,3.3534,49.8565,17.7697,249.2177,4.0415,5.9976,1.9449,2.1255,4.0516,7.7953,2.257,3.7995,0.61587,8.5193,12.2022,13.3326,8.8825,2.3735,4.9921,1.9904,18.4133,7.0184,4.1006,1.1838,2.9407,8.069,16.1053,3.7386,5.028,3.6656,1.7864,1.6671,4.2928,11.6431,3.0515,2.3873,10.8285,2.8064,2.4108,2.1969,12.0503,2.3101,4.5138,1.1702,15.0241,5.6175,9.881,5.1028,12.5425,8.6986,9.1686,8.6334,4.0618,1.6218,5.2957,,,,,,,,,,,,,,,77,,,
-4024,1.3685,1.7093,,50-59y,Other,,,16.7578,4.506,2.5614,1.9559,1.5293,ppmi,,,M,,0.39994,4.3735,4.1468,0.90245,9.6484,1.4974,0.35191,3.515,2.6433,43.8879,13.7009,212.3237,3.8469,5.0646,1.8136,1.8598,3.3007,7.402,2.0967,3.2265,0.43202,6.6687,11.8859,12.7278,7.4713,2.266,4.6672,1.7815,17.1797,6.7169,3.897,1.064,2.4691,6.3097,14.0196,3.7068,4.2694,3.21,1.3713,1.3091,4.676,11.4864,3.2755,2.4104,11.1886,2.7874,2.3647,2.3801,11.3268,2.278,4.1398,1.1953,13.4243,5.1458,9.9634,3.8936,9.726,7.4378,7.8454,8.145,3.359,1.5851,4.3828,,,PD,0.071151,PD,,PD,0.34748,3.6533,3.7559,0.9357,9.9276,1.7617,0.35543,3.4255,2.7523,43.786,13.8003,214.6274,3.6984,5.0642,1.8915,1.9203,3.6088,7.9434,2.1239,3.6024,0.59831,7.0383,12.8157,9.996,8.052,2.1864,4.4918,1.7185,16.7404,5.262,3.8219,0.89232,2.4719,7.4805,15.6788,3.0171,4.1047,3.2535,1.5037,1.3022,4.404,11.5667,3.2019,2.3715,10.0457,2.486,2.1314,2.0869,11.0476,1.9075,3.8707,1.1341,13.2105,5.0017,8.6968,4.1892,9.8306,7.3932,7.6751,8.4541,3.2753,1.4532,4.2898,,,,,,,,,,,,,,,52,,,
-4025,0.66446,1.829,,70-79y,Other,,,19.7649,4.0854,2.7388,2.1809,0.68438,ppmi,,,M,,0.40297,4.0881,3.7204,0.83254,8.2021,1.3259,0.36155,2.5823,2.5298,47.9589,17.585,204.6735,3.322,3.1477,1.5713,1.8755,2.7473,6.6318,1.7177,2.8759,0.33434,5.5202,9.5885,6.1386,6.4429,1.9906,4.5387,1.4909,16.3819,5.6527,3.4048,1.0892,2.489,5.9579,12.304,2.6474,3.7387,3.4356,1.3272,1.4144,3.5686,8.2655,2.9268,1.8156,11.6479,1.8341,2.1637,1.7949,12.898,1.6298,3.7941,0.99584,12.6454,4.7978,8.2563,2.9731,9.2158,6.729,7.7265,6.7438,3.552,1.1593,4.7975,,,PD,0.081889,PD,,PD,0.36885,3.5677,3.6078,0.81764,9.1791,1.4645,0.36187,2.615,2.536,47.4665,17.0034,205.8725,3.0039,3.6672,1.5595,1.8238,3.1627,6.8716,1.7911,3.0971,0.42523,5.5271,10.0647,4.9912,7.1351,1.967,4.2362,1.478,14.6328,4.2371,3.1919,1.0621,2.7472,6.7564,12.6123,2.2954,3.9437,3.4791,1.3447,1.4259,3.2536,8.4377,2.7055,1.727,9.9166,1.4579,2.108,1.5934,12.2697,1.5525,3.5112,0.9326,12.9377,4.8667,7.3105,3.1646,10.0379,7.2265,7.4489,6.771,3.2477,1.0523,4.5921,,,,,,,,,,,,,,,76,,,
-4026,2.2934,2.1233,,50-59y,Other,,,19.3429,4.9484,2.9228,2.2112,1.792,ppmi,,,F,,0.54261,5.662,5.183,0.86934,10.7878,1.7046,0.46308,4.206,3.5851,47.1322,15.2952,224.4511,4.1484,5.1314,1.8197,2.2428,4.5609,7.4021,2.5698,3.3174,0.64121,6.9695,11.1637,24.3946,8.127,2.6386,5.2427,2.2374,21.9866,7.7934,4.6072,1.1709,3.0804,8.3008,15.2826,4.8172,4.7373,3.5713,1.6614,1.48,5.3268,13.3554,3.4436,2.6381,12.1014,2.7401,2.7405,2.4194,14.7657,2.0277,4.8152,1.7445,17.2037,6.1104,10.0211,4.7605,12.2498,7.8795,8.6158,8.5449,4.2949,1.5398,4.9287,,,PD,0.10021,PD,,PD,0.47289,5.3034,4.9161,0.86837,11.2476,2.0924,0.47644,4.184,3.9022,48.0581,15.3301,227.7731,4.505,5.6796,1.6977,2.3617,4.6379,7.558,2.6228,3.4657,0.60736,7.5179,11.3823,24.7049,8.783,2.5575,5.4154,2.3128,21.2754,6.2639,4.6918,1.318,3.1429,8.6191,15.4966,3.8753,4.827,3.8144,1.7181,1.4877,4.6955,13.2574,2.9695,2.6218,11.0669,2.7312,2.7107,2.1747,15.1496,2.1116,4.627,1.6,16.6072,5.9574,8.7045,5.3487,11.2254,7.7417,8.5304,8.6116,4.2252,1.6134,4.6989,,,,,,,,,,,,,,,51,,,
-4027,1.0459,1.7842,,70-79y,Other,,,19.277,5.0792,2.9188,2.4486,1.0587,ppmi,,,M,,0.39501,4.4067,4.4728,0.86248,8.255,1.5252,0.36044,3.3181,2.3867,50.2539,18.2207,207.7644,4.3812,5.4488,1.7166,1.9305,3.2881,7.4952,2.0993,3.0258,0.51805,6.2733,10.9196,9.4676,8.5951,2.3052,4.6223,1.7575,17.9837,5.5718,4.0225,1.0305,2.2015,7.1211,12.8192,4.145,4.7191,3.3224,1.4849,1.3752,4.3857,10.7564,3.5127,2.4864,11.4932,2.8134,2.3959,2.4071,11.4592,2.3786,3.7043,1.2474,13.8694,5.352,8.672,3.8006,10.4047,7.7257,7.4906,7.6647,3.9067,1.8889,4.5183,,,PD,0.075601,PD,,PD,0.34876,3.8586,4.1818,0.83186,10.331,1.5765,0.37077,2.8019,2.4709,49.9699,18.0432,214.5323,3.791,4.9215,1.6298,1.98,3.5049,7.5036,2.0486,3.1435,0.47478,6.646,11.325,8.4235,8.756,1.9938,4.2053,1.6831,17.4863,5.732,3.6505,0.95188,2.4432,7.6819,13.5384,3.0102,4.5094,3.3347,1.4844,1.4043,4.0784,11.1642,2.9801,2.4115,9.6078,2.3095,2.1982,2.0619,11.7023,2.1387,3.7997,1.2289,14.0966,5.6387,7.5207,4.2886,10.4568,7.6838,7.5016,7.5805,3.4349,1.5889,4.3658,,,,,,,,,,,,,,,79,,,
-40273,1.2663,1.8496,,60-69y,Other,,,18.7516,4.9965,2.3188,2.3033,1.9008,ppmi,,,M,,0.37672,3.9225,3.6169,0.81341,9.6651,1.3141,0.33694,3.3854,2.8564,46.3768,15.3143,219.1999,3.5535,4.6576,1.5125,1.8216,3.2377,7.0311,1.77,3.2109,0.89526,5.9884,10.9227,32.9616,7.8384,2.1278,4.2577,1.6045,16.6967,5.7249,3.2178,1.1161,2.0823,5.9239,13.6883,3.6409,4.2817,3.3247,1.3332,1.4486,4.0689,9.6945,3.0392,2.1223,10.9006,2.3422,2.0079,2.0655,10.9728,2.0003,3.538,1.0191,11.2857,4.2518,9.4558,3.7782,10.332,7.1077,7.9933,7.1038,3.7915,1.4018,4.7961,,,,0.064451,Other,,GENPD,0.34185,3.5118,3.538,0.81982,10.2654,1.4913,0.34106,3.3062,3.004,46.0987,15.1762,223.5131,3.6572,4.9443,1.709,1.7236,3.4845,7.1171,1.752,3.4234,0.81378,6.6735,11.1134,22.7225,7.8276,1.9232,4.3872,1.6068,17.3625,5.2139,3.1826,0.96078,2.2262,6.5568,13.1955,2.9799,4.15,3.4708,1.3341,1.4257,3.6981,9.9553,2.7769,2.121,9.2775,2.1199,2.0258,1.9024,11.8856,1.7273,3.5805,0.96111,12.1421,4.475,7.7652,4.549,9.1713,6.7109,7.5807,7.4866,3.6375,1.6175,4.5688,,,,,,,,,,,,,,,62,,,
-4029,1.0888,2.5417,,70-79y,Other,,,22.0446,6.0323,3.0417,2.7516,1.667,ppmi,,,M,,0.56643,6.7107,5.3985,1.0444,13.5823,2.1537,0.50465,4.8294,3.9661,58.4394,19.2654,287.6142,4.8917,7.0398,2.1057,2.4604,4.8837,9.9427,2.9275,3.7955,0.47598,9.3496,14.8115,15.8677,10.315,3.3605,7.1124,2.7724,25.4532,8.8571,5.3712,1.6264,3.2519,10.2854,20.5341,5.8216,6.3604,4.0338,2.0784,1.7322,6.5672,15.3203,4.1332,2.885,14.2718,3.1127,3.3652,2.9335,16.3251,2.533,5.0271,1.6262,20.2672,7.1274,12.1149,4.908,12.7688,9.9243,10.4866,10.5494,5.1545,2.0436,5.6908,,,PD,0.098649,PD,,PD,0.50602,5.9645,5.4013,1.0366,14.9805,2.3802,0.49336,4.7788,4.1591,58.9797,19.2139,287.6614,5.8724,8.0425,2.1975,2.8656,5.4088,10.3175,2.9086,4.1538,0.7245,9.1193,14.6978,13.2304,11.3397,3.0228,6.8426,2.6651,23.9488,6.482,5.1568,1.5598,3.2474,11.1087,18.947,4.8403,6.6355,4.3155,2.134,1.7498,5.8708,16.2714,3.9314,2.9271,12.8077,3.1537,3.0722,2.8855,16.2265,2.5672,5.0034,1.5251,18.3573,7.1569,10.7466,6.0959,13.7659,10.3533,10.3122,10.7546,4.7108,2.0131,5.5149,,,,,,,,,,,,,,,70,,,
-4030,1.7495,2.1754,,50-59y,Other,,,21.5047,5.1809,2.7237,2.2997,1.6327,ppmi,,,M,,0.47388,5.3249,4.5608,0.91543,8.8663,1.7651,0.41699,3.2533,3.2411,49.2651,18.4087,241.1823,4.5095,4.4612,1.8689,2.0394,4.33,7.494,2.4338,3.4112,0.77683,6.5912,11.1706,23.2126,7.7527,2.5633,5.3668,2.091,21.9993,6.2991,4.5621,1.1344,2.7789,8.2218,13.6648,4.2866,4.3366,3.6848,1.5188,1.6905,5.0343,12.2806,3.286,2.6987,12.8132,2.74,2.7087,2.4226,14.7621,2.0507,4.6058,1.4513,16.7209,6.2014,9.4353,3.8218,13.025,7.2564,9.0745,8.2894,3.8731,1.7575,5.369,,,PD,0.082235,PD,,PD,0.41785,4.6034,3.984,0.83449,10.6871,1.9364,0.42328,3.2826,3.5701,50.1196,17.7996,245.1527,4.1174,5.5812,1.7679,2.0146,4.1696,7.8891,2.2968,3.4786,0.99922,6.6808,11.9713,22.0115,8.3642,2.4013,5.7187,2.1295,21.2473,5.6965,4.0898,1.3498,2.5893,9.4526,15.2729,3.1874,4.194,3.8745,1.5522,1.6651,4.3634,12.1081,3.0984,2.5125,11.0856,3.0388,2.4073,2.1893,13.9319,2.3403,4.3943,1.3294,16.5861,6.1773,8.8584,5.4263,11.57,7.9305,8.7132,8.2681,3.8206,1.8326,5.0488,,,,,,,,,,,,,,,51,,,
-4032,1.1705,1.5127,,70-79y,Other,,,20.0377,5.2969,2.8552,2.3376,1.1616,ppmi,,,M,,0.38638,3.9838,3.7669,0.84329,8.1261,1.3109,0.36275,3.2785,3.1204,48.441,16.6766,189.1826,3.7546,4.1341,1.6201,1.8385,2.9658,7.2965,1.7275,3.0109,0.55315,6.0741,10.417,14.6552,7.5224,2.0947,4.1621,1.614,16.3629,5.4748,3.4446,1.176,2.2368,6.112,12.3622,3.4598,4.3119,3.0049,1.2985,1.3241,4.2778,10.2926,3.1791,2.1985,11.1842,2.4595,2.2708,2.1565,12.5524,2.0407,4.2291,1.0697,12.9564,4.8519,8.3949,3.2941,9.445,7.015,7.9865,7.1083,3.2418,1.5295,4.7384,,,PD,0.071664,PD,,PD,0.37852,3.1577,3.4748,0.79123,10.006,1.6417,0.37143,3.6896,3.3448,49.402,16.1875,190.8688,3.6558,4.7907,1.5339,1.7477,3.4475,7.5699,1.825,3.1155,0.49318,6.5438,11.1525,12.7748,8.2303,2.0053,3.7878,1.6641,15.8583,4.8932,3.4886,0.85434,2.2676,6.9996,13.1967,2.8817,4.3748,3.2798,1.3824,1.3257,3.7655,10.3741,2.887,2.1745,8.943,2.1795,2.1663,1.9148,11.0897,1.9905,4.1485,1.0502,12.3805,4.8404,6.987,3.928,9.8451,6.7253,7.6664,7.54,3.2775,1.498,4.4299,,,,,,,,,,,,,,,77,,,
-4033,0.97045,1.667,,60-69y,Other,,,19.1235,3.9806,2.41,2.0553,0.95093,ppmi,,,M,,0.46985,4.1933,4.2585,0.94487,9.6816,1.4552,0.39252,3.2422,3.3248,44.5822,15.0609,223.3911,3.9346,4.4532,1.7007,1.8383,3.2862,7.1806,1.984,3.305,0.38251,6.3131,10.5694,12.8656,7.2119,2.3486,4.684,1.738,16.8413,5.8049,3.8223,1.2428,3.0431,6.1483,12.9547,3.1217,4.1732,2.7367,1.419,1.6157,4.1371,9.8701,3.2427,2.2416,12.0472,2.5876,2.4948,2.2143,13.1074,2.2016,4.2834,1.1007,13.9298,4.8269,9.7856,3.2453,9.6379,7.6491,8.8067,7.3789,3.0529,1.7481,5.1236,,,,0.0726,CN,,HC,0.40647,3.5041,3.88,0.92835,9.9245,1.8223,0.3979,3.3344,3.3489,45.2643,15.1259,226.1791,3.8832,4.8248,1.7556,1.895,3.5424,6.8272,2.0539,3.5186,0.44381,5.967,10.7329,11.7571,7.8914,2.2612,4.2774,1.7566,16.839,5.1368,3.8366,0.95114,2.6876,7.3475,13.6151,2.8518,4.2094,3.1818,1.4775,1.6134,3.8753,10.0651,2.8395,2.2639,10.382,2.6114,2.3552,2.0271,12.3415,2.1299,4.1557,1.0177,14.1775,5.2234,8.4848,3.8751,9.8426,7.3343,8.5233,7.7085,3.1273,1.6369,4.8688,,,,,,,,,,,,,,,69,,,
-40338,1.7777,2.2144,,60-69y,Other,,,21.2108,5.1122,2.6572,2.2658,1.9468,ppmi,,,M,,0.4094,4.201,4.3653,0.72401,9.2128,1.1933,0.36743,2.6413,3.1023,46.8247,19.4249,231.4674,3.823,3.5831,1.4497,1.8677,3.4208,6.4165,1.8332,3.1458,0.75025,6.2025,8.8072,23.759,7.0766,1.9636,4.2026,1.5912,16.3506,5.8221,3.3784,1.1077,2.3894,6.6651,11.0899,3.5764,4.1289,2.9434,1.2599,1.5229,4.099,10.1562,2.9449,2.5362,11.3485,2.1821,2.2661,2.2311,12.1284,1.7654,4.3854,1.1735,13.3763,5.0231,7.5056,2.7282,10.0976,5.9493,8.6024,6.2965,2.9207,1.4986,5.1266,,,,0.079965,Other,,GENPD,0.35069,3.8367,4.108,0.7703,10.3181,1.5784,0.38808,2.9981,3.1109,48.0573,18.6042,243.3992,3.7283,4.319,1.5043,1.8587,3.6693,6.6207,1.9464,3.4509,1.0137,6.5801,9.3221,22.1696,7.9262,2.0094,4.1538,1.5865,16.941,5.5559,3.498,1.027,2.2131,7.2376,12.0257,3.003,4.2812,3.0505,1.3535,1.5108,3.7437,10.3993,2.8146,2.3168,9.6606,1.9481,1.9961,1.8068,11.8425,1.6048,4.3062,1.1051,12.8603,4.6923,7.2422,3.5966,10.1331,6.4643,8.3073,6.6485,3.2766,1.3896,5.0943,,,,,,,,,,,,,,,67,,,
-4034,1.7073,2.7815,,50-59y,Other,,,21.2315,4.9799,2.79,2.4106,2.3767,ppmi,,,F,,0.51253,4.9998,4.9149,0.87427,9.3919,1.5709,0.39289,4.0568,3.6456,49.0227,17.0324,255.4571,4.2295,5.4621,1.7541,2.1708,3.9678,7.6285,2.0947,3.2165,0.66016,7.0906,11.4708,38.4376,8.3833,2.4859,5.0701,2.1566,18.8307,6.9338,4.0114,1.2199,2.7871,7.5466,13.7345,4.2782,4.8068,3.9843,1.5997,1.6415,4.7036,11.8521,3.2695,2.7313,13.2208,2.2536,2.7474,2.556,14.0548,1.9555,4.5548,1.288,13.8219,5.0523,9.2421,4.1162,10.9244,7.0411,9.1508,7.386,4.3675,1.9096,5.2957,,,PD,0.080342,PD,,PD,0.4614,4.2774,4.5371,0.87138,10.4122,1.7918,0.40046,4.1602,3.9858,49.0974,16.7131,259.8597,3.9515,5.7063,1.7793,2.1659,4.1855,7.636,2.2047,3.59,0.67154,7.9141,11.6028,29.2979,8.6294,2.3508,4.4602,2.0165,18.7288,5.6652,3.7889,1.0734,2.6064,8.3011,13.9173,3.6656,4.7635,3.818,1.6647,1.6082,4.1849,11.5803,3.0932,2.4537,11.0935,2.1829,2.3922,2.1455,13.1727,2.0612,4.5152,1.2482,15.2863,5.5794,8.8139,5.1931,11.2243,7.8829,9.0284,8.1309,4.0139,1.5887,5.107,,,,,,,,,,,,,,,50,,,
-4035,2.8795,4.01,,50-59y,Other,,,17.8306,4.9238,3.0377,2.2373,2.3163,ppmi,,,F,,0.44432,4.0455,4.413,0.83704,9.8711,1.3268,0.40124,3.493,3.1833,49.1253,14.4213,189.2744,3.7307,4.3724,1.6167,1.905,3.2438,7.3107,1.7748,3.1308,1.4313,5.9839,10.4936,38.6741,7.8918,2.0765,4.3386,1.5028,17.2461,5.7975,3.5279,1.1471,2.4217,6.6331,12.0432,3.0966,4.5329,3.0718,1.4356,1.3219,4.1464,9.8417,3.2254,2.4901,11.0429,2.0188,2.3625,2.3969,12.687,1.9438,4.6364,1.1885,13.5084,4.905,9.3391,3.8042,10.3867,7.4377,8.2217,7.0678,3.6907,1.6015,4.496,,,PD,0.066325,PD,,PD,0.38747,3.6478,4.1323,0.84913,10.5871,1.5477,0.40184,3.8433,3.4024,49.3307,13.4299,197.8332,3.5977,4.4751,1.5758,1.9618,3.2801,7.6377,1.8804,3.3512,1.3159,6.565,10.5369,35.336,8.9798,2.0446,4.1454,1.4492,17.3806,5.7356,3.5186,1.1147,2.3195,6.7272,13.2803,2.9112,4.6335,3.8267,1.3717,1.2492,3.8513,10.1716,2.9469,2.4207,9.6349,2.0649,2.2727,2.0798,12.0843,2.0074,4.5356,1.1079,13.9373,4.7983,8.0289,4.0157,10.2679,7.8659,7.9873,7.497,3.6604,1.3898,4.2601,,,,,,,,,,,,,,,57,,,
-40366,1.2269,2.0037,,60-69y,Other,,,19.8336,5.0606,2.5089,2.3289,1.4451,ppmi,,,M,,0.46951,4.9918,4.5327,0.88754,8.7703,1.4897,0.38616,2.5923,3.4547,47.6376,16.9383,245.6694,4.0789,3.6345,1.764,2.3374,3.8798,7.5376,2.0683,3.2648,0.39874,6.364,11.8594,13.8279,7.3692,2.37,4.9055,1.9735,19.1432,5.7484,4.0151,1.3063,2.8423,7.6773,14.412,3.3864,4.1466,3.8433,1.5561,1.5112,4.5039,10.2263,3.5363,2.4603,11.9526,2.0773,2.4247,2.2267,12.0467,1.6589,4.3949,1.2886,15.2133,5.8201,8.2996,3.3976,10.3969,7.1543,8.7037,7.5298,3.86,1.3441,4.9374,,,,0.076959,Other,,GENPD,0.45883,4.4371,4.1808,0.88979,9.2231,1.7558,0.41235,2.6575,3.5972,47.6619,16.8229,250.5091,3.9014,4.4667,1.7312,1.9395,4.2462,8.1165,2.1769,3.4428,0.49675,6.3632,12.2654,13.1582,8.0145,2.2015,4.8904,2.0651,18.4234,4.7164,3.7681,1.1709,2.8777,8.7708,14.2562,2.7369,4.2316,3.0444,1.4066,1.5125,3.7742,9.5891,3.3941,2.3083,9.6117,2.1334,2.2206,2.0698,11.6647,1.8461,4.2484,1.2777,15.1276,5.3714,7.5587,3.7427,9.4736,8.1527,8.3947,7.9546,3.2196,1.4967,4.7047,,,,,,,,,,,,,,,69,,,
-4037,0.85606,1.5993,,60-69y,Other,,,23.2228,5.2597,2.6924,2.4958,1.0622,ppmi,,,M,,0.45897,4.854,4.1748,0.90172,9.9846,1.5507,0.37947,3.341,3.2136,51.0988,20.2543,262.0413,4.0812,4.2677,1.6475,2.1362,3.7387,7.3172,2.2206,3.4628,0.53262,6.5559,10.8537,8.7945,7.6094,2.4616,4.8552,1.9953,19.0557,7.2748,4.0055,1.131,2.6678,7.5517,14.2171,3.8661,4.373,3.0797,1.535,1.7781,4.6484,10.7938,3.1201,2.1657,12.9866,2.0833,2.5224,2.2578,13.9422,1.8303,4.6032,1.1923,15.6011,5.7439,8.6358,3.8658,11.251,7.5343,9.8807,7.7202,3.9329,1.4489,5.5288,,,PD,0.072636,PD,,PD,0.43326,4.626,3.8418,0.92945,10.9837,1.9088,0.40489,3.4466,3.39,52.1501,19.7339,267.3254,3.6244,4.5793,1.7511,1.8704,3.9262,7.7447,2.1324,3.671,0.49474,7.3042,11.7434,8.644,8.7735,2.2697,5.0286,1.8862,17.8886,5.912,4.0606,1.1242,2.8216,7.89,14.6645,3.3638,4.6114,3.2595,1.4352,1.7243,4.0961,10.5487,2.9919,2.1114,9.9757,1.895,2.501,1.8912,13.8595,1.7555,4.3683,1.1421,15.4239,5.6394,7.7282,4.379,10.8468,7.5088,9.4117,7.6717,3.4542,1.306,5.2942,,,,,,,,,,,,,,,62,,,
-4038,1.1219,1.7101,,50-59y,Other,,,18.8062,4.8886,2.6706,2.3166,1.1878,ppmi,,,M,,0.39502,4.1393,4.1445,0.85955,8.9297,1.476,0.36193,2.9149,2.9961,47.2247,15.9125,225.7204,4.2379,4.2116,1.5708,2.0448,3.073,7.0543,1.7722,3.0124,0.37863,5.7594,10.894,10.7563,7.2027,2.3805,4.5033,1.5993,17.2555,5.7497,3.6562,1.1072,2.4861,6.3558,13.0259,3.1622,3.9161,3.3467,1.5598,1.3808,4.3684,10.8096,3.087,2.3746,10.0705,2.3983,2.3554,2.2932,11.2307,2.0905,3.4525,1.1484,12.7356,4.7774,8.4777,3.1537,9.397,7.1845,7.9364,7.4015,3.7076,1.717,4.6419,,,PD,0.082967,PD,,PD,0.36109,3.464,4.0198,0.81347,10.452,1.5155,0.36018,3.2388,3.3929,47.57,15.7557,228.1867,3.9426,4.3481,1.5799,1.8371,3.4225,7.2444,1.8094,3.0434,0.50852,6.4913,11.653,10.4431,7.8262,2.1143,4.2836,1.6178,17.4613,5.1987,3.562,1.1001,2.586,7.0778,13.6408,2.6988,4.0538,3.0558,1.5781,1.3599,4.0936,10.9157,2.6928,2.3558,8.5054,2.3913,2.3484,2.0002,12.2858,2.0366,3.5641,1.0733,13.2622,5.006,7.9952,4.0257,10.4678,6.9336,7.6331,7.6225,3.4298,1.4866,4.3186,,,,,,,,,,,,,,,54,,,
-4051,0.7038,1.7626,,70-79y,Other,,,15.2416,3.9538,2.3125,1.7905,0.72225,ppmi,,,F,,0.43657,4.0679,3.6757,0.87771,9.1027,1.5384,0.38559,2.9011,2.8385,42.1313,13.1826,204.7469,3.7175,3.9792,1.6345,1.6986,3.2872,6.4416,2.1651,2.8545,0.31302,5.7882,10.2659,6.6579,6.4917,2.2144,4.3662,1.7455,15.6865,5.4983,3.8063,0.8999,2.1278,6.0493,12.1,2.3441,4.0853,3.1303,1.3868,1.2619,3.9883,10.3205,2.7476,2.157,10.0727,2.3503,2.2334,2.0437,10.2701,1.8984,4.0479,1.0936,13.4063,4.4068,8.8674,3.0259,10.996,6.4344,7.2866,6.4356,3.3257,1.4906,4.0859,,,PD,0.062979,PD,,PD,0.40299,3.5766,3.747,0.85902,10.0764,1.6899,0.38665,2.8881,2.8169,41.9468,12.221,210.2746,3.607,4.2735,1.61,1.6414,3.369,6.3509,2.0265,3.0281,0.30403,5.7546,10.3365,5.9959,6.7317,2.1507,4.2285,1.741,15.5414,4.6262,3.5285,0.86009,2.0904,6.5892,13.092,1.9063,3.6428,2.78,1.4043,1.2693,3.6767,9.831,2.4607,2.131,8.8984,2.1251,2.1676,1.8393,10.3252,1.6622,3.9491,1.0102,12.7047,4.3372,8.0917,3.5436,10.5271,6.3418,6.9499,7.0681,3.0217,1.4032,3.8905,,,,,,,,,,,,,,,73,,,
-4052,2.2228,2.4532,,50-59y,Other,,,17.4229,4.4584,2.3438,2.0124,1.9958,ppmi,,,F,,0.39439,4.607,4.419,0.85231,8.4102,1.4507,0.37908,3.3005,3.1654,42.6031,12.6321,203.2929,4.0587,4.8081,1.698,1.9738,3.1313,7.2604,2.0111,3.1766,0.71112,6.0989,11.7959,22.6594,7.4164,2.2648,4.8656,1.6732,18.0471,5.8751,3.8809,1.2885,2.7029,6.647,13.7909,2.9504,4.1709,3.8598,1.4463,1.4864,4.2598,11.4049,3.278,2.3386,11.2318,2.0658,2.4354,2.3613,12.6489,1.6241,4.0704,1.2161,13.3088,5.1731,6.9066,3.5445,10.1456,6.9522,7.4661,8.0574,3.9771,1.6435,4.6,,,PD,0.081457,PD,,PD,0.35187,3.7625,4.3376,0.83926,9.5826,1.6867,0.38473,3.5791,3.1155,42.6158,12.263,205.6426,3.6751,5.2882,1.6388,2.0567,3.3597,7.4285,2.054,3.3699,0.88574,6.5418,12.2286,18.6169,8.0878,2.217,4.5154,1.6714,17.7576,5.1078,3.8783,1.0087,2.4348,7.6411,13.2615,2.2201,4.055,3.0534,1.4891,1.4952,3.7854,10.4827,2.8985,2.5976,8.5958,1.8923,2.3689,2.2366,11.394,1.6189,4.0931,1.2054,14.1131,5.527,7.1852,3.9144,10.174,6.3637,7.2526,7.896,3.3222,1.6028,4.4224,,,,,,,,,,,,,,,53,,,
-4054,0.80728,1.9444,,60-69y,Other,,,14.0833,3.8744,2.1477,1.8959,0.83677,ppmi,,,F,,0.33185,3.2881,3.3202,0.74961,8.2118,1.1616,0.33361,2.389,2.1389,39.5952,12.6299,155.2237,2.8145,3.6991,1.4606,1.4719,2.6723,6.4044,1.8244,2.7045,0.39867,5.3735,9.5465,7.1231,6.3673,1.7817,3.6778,1.2814,13.7844,5.3839,3.1574,0.94695,2.091,4.9588,11.8162,2.6592,3.4485,2.5167,1.1259,1.0638,3.5674,8.5729,2.8781,1.9161,9.3937,1.7281,1.7797,2.0007,9.4738,1.4761,3.4386,1.0252,11.6469,4.1071,7.8105,3.2802,8.196,6.618,6.5914,6.5368,3.1446,1.2076,3.5549,,,PD,0.060084,PD,,PD,0.31134,3.0041,3.5179,0.7839,8.7594,1.6337,0.3531,2.5801,2.1779,40.2191,12.3652,165.1467,3.1514,3.9423,1.5144,1.5173,3.1102,6.4405,1.8173,2.8595,0.38752,6.0917,9.9273,6.7202,7.0324,1.9527,3.6895,1.4046,15.4892,4.5114,3.4159,0.89941,2.2552,5.6854,12.596,2.33,3.587,2.7082,1.1885,1.0838,3.3186,8.6042,2.6401,2.0038,8.1748,1.7436,1.9929,1.9013,10.1067,1.6744,3.614,0.96242,12.0164,4.2273,6.8635,3.6882,8.3751,6.9494,6.5335,7.0179,2.6432,1.2456,3.3513,,,,,,,,,,,,,,,67,,,
-4055,2.1117,2.9541,,60-69y,Other,,,19.7459,4.6216,2.5508,2.0611,3.1313,ppmi,,,F,,0.5674,6.1513,5.1162,1.0402,13.2772,2.0776,0.45839,3.3298,3.8226,48.4705,16.2958,286.3765,4.5864,4.8828,1.8382,2.0648,4.4229,8.2837,2.4487,3.6757,0.87304,8.1683,12.8007,36.9981,8.489,3.1206,5.9872,2.3089,22.6343,8.6712,4.5634,1.263,3.0335,8.8176,16.2872,4.3549,4.9634,3.9175,1.8177,1.7752,5.4578,12.5147,3.4891,2.8759,14.1106,2.9968,3.1144,2.7437,14.6302,2.8672,5.2496,1.419,18.317,6.7767,10.9428,4.4276,12.5209,8.9894,9.7608,8.537,4.427,2.2656,5.5516,,,PD,0.083664,PD,,PD,0.48377,5.1816,4.9121,1.0636,13.4434,2.2018,0.46001,3.3282,3.9264,48.3947,16.0659,288.5688,4.2511,5.1088,1.9834,2.3056,5.5147,8.7525,2.5587,3.848,1.3705,8.5192,13.4413,43.8028,8.7696,2.6449,5.5311,2.4498,22.0135,6.4947,4.5878,1.2868,2.9298,10.3582,16.1482,3.6306,5.0462,3.9689,1.7641,1.7816,4.6838,12.0612,3.1831,3.019,12.8855,2.7777,2.7697,2.5748,15.182,2.5177,5.1352,1.3474,18.35,6.3596,10.5813,5.1641,12.5912,8.8714,9.5353,8.7504,4.257,1.9576,5.2336,,,,,,,,,,,,,,,62,,,
-40558,1.1789,1.4405,,60-69y,Other,,,16.9614,4.3828,2.2771,2.1259,1.1165,ppmi,,,M,,0.45249,4.1848,3.8364,0.78306,8.7906,1.4816,0.38231,3.3214,2.8888,42.8379,14.6859,189.0149,3.6659,4.5647,1.5334,1.727,3.3597,6.8788,2.0436,2.8446,0.39948,5.9994,10.2448,11.8824,7.2199,2.3025,4.5114,1.5198,15.9584,5.9233,3.8523,1.0357,2.3402,6.5014,12.7153,3.2689,3.8692,3.162,1.3824,1.2551,4.1824,9.792,2.9937,2.0815,10.9824,1.8339,2.331,2.096,12.9437,1.5178,4.0667,1.1629,14.3685,4.8872,7.8783,3.525,10.0481,6.8229,7.6325,6.9802,3.3666,1.2432,4.2457,,,,0.070883,Other,,GENPD,0.38896,3.7466,3.778,0.76711,10.5524,1.5118,0.36918,3.324,2.9222,43.1661,13.755,194.8752,3.4064,5.1142,1.4709,1.8832,3.6704,6.8156,1.8675,3.0095,0.42101,6.3437,10.5759,10.9594,7.6487,2.0171,4.0573,1.5489,16.3073,5.4392,3.3944,0.98716,2.5277,6.9581,12.9932,2.8547,3.8983,3.2206,1.3568,1.2976,3.6105,9.508,2.7944,2.1047,8.6053,1.9586,2.1673,1.9462,12.4341,1.6792,3.8359,1.0592,14.5776,4.9395,7.7376,4.9023,10.4288,7.3393,7.4936,7.261,3.3,1.3314,4.1322,,,,,,,,,,,,,,,63,,,
-4056,1.6884,2.2441,,70-79y,Other,,,23.1621,7.4442,3.596,2.8424,1.8857,ppmi,,,M,,0.47447,4.527,4.71,0.9001,10.0273,1.755,0.44349,2.8923,3.1592,58.2988,21.0493,257.9553,4.4485,4.1138,1.8001,2.196,3.92,8.2427,2.3638,3.2335,0.45534,7.336,11.6458,20.6312,8.5871,2.8253,4.5211,1.9496,20.294,7.9894,4.4355,1.395,2.8776,6.6836,14.4376,4.3553,4.8715,3.4769,1.7347,1.5902,4.6601,10.5959,3.3821,2.4312,12.0048,2.4512,2.7897,2.6681,13.6014,2.4421,4.3396,1.4177,15.7641,5.3276,10.4142,3.738,11.7295,8.6473,9.0683,8.9118,4.3048,1.9632,5.2351,,,PD,0.084692,PD,,PD,0.43226,4.3092,4.4712,0.86909,11.8171,1.9642,0.42899,2.9821,3.2128,59.7895,20.6728,261.2541,4.2181,4.6633,1.6971,2.2166,4.4455,8.0896,2.3449,3.2942,0.54444,7.6174,11.4662,23.3635,9.2527,2.6613,4.6318,1.9365,19.4769,6.2973,4.3909,1.1966,2.7449,7.8841,15.4031,3.4771,4.9993,3.7404,1.8316,1.5936,4.1605,10.862,2.9659,2.4252,11.4626,2.4192,2.8462,2.2098,13.6144,2.0155,4.3162,1.2981,15.9002,5.3313,9.2312,4.7787,11.7153,8.7959,8.8318,8.2691,3.7471,1.5567,5.0038,,,,,,,,,,,,,,,70,,,
-4057,1.5381,2.2206,,60-69y,Other,,,16.9466,4.688,2.6827,2.2887,1.1855,ppmi,,,M,,0.36094,4.2527,4.2163,0.76625,8.7595,1.5046,0.37041,3.0721,2.6425,48.9907,15.173,207.9366,3.8996,4.7982,1.5179,2.1128,3.4138,7.3411,2.08,2.9986,0.59727,6.9042,10.7443,10.5406,7.4498,2.2129,4.3061,1.7699,18.3017,6.0061,4.0474,1.019,2.5135,6.1207,13.704,3.7465,4.4489,3.1574,1.4269,1.1723,4.227,9.8308,2.9656,2.1431,10.9539,2.5667,2.3367,2.2728,11.6066,2.0376,3.8692,1.11,13.7248,4.5965,9.0598,3.6181,8.766,7.4339,7.5424,7.1824,3.9667,1.6677,4.038,,,PD,0.063515,PD,,PD,0.32809,3.6785,4.0916,0.77445,10.1979,1.7027,0.38024,3.7425,2.7731,49.9399,14.962,212.7476,4.0049,4.9379,1.5344,1.9026,3.7327,7.7185,2.0182,3.1952,0.71748,7.1183,10.9948,8.7659,8.5248,2.2274,4.1295,1.6563,16.8505,6.6403,3.7469,1.0569,2.3426,7.2608,13.3776,3.3996,4.4398,3.1102,1.509,1.1557,3.7679,9.8903,2.8022,2.1678,9.8884,2.4655,2.3603,1.9753,12.6538,2.0697,3.7637,1.0855,14.7589,4.9869,8.1738,4.4815,9.6969,7.3252,7.4169,7.0354,3.305,1.6326,3.9324,,,,,,,,,,,,,,,64,,,
-40578,0.88623,1.3894,,60-69y,Other,,,20.1514,5.3041,2.5187,2.1833,0.97927,ppmi,,,M,,0.53803,5.062,5.1474,0.94334,11.0109,1.7165,0.4422,3.7231,3.8691,47.4452,17.0577,232.5862,4.3679,5.0258,1.8795,2.3921,3.9078,7.595,2.3143,3.4282,0.41354,7.1643,11.8107,11.9402,8.1266,2.7614,4.9041,1.9594,20.8113,7.2032,4.398,1.2881,2.8516,7.2652,15.2241,4.0839,4.8409,3.7767,1.8441,1.5704,4.2722,10.7113,3.3685,2.6347,12.0621,2.5615,2.7593,2.6252,13.5619,2.0355,4.4847,1.4223,15.1313,5.4018,10.057,4.561,11.5916,8.1269,8.9855,8.9738,4.8165,1.8241,5.0455,,,,0.0689,Other,,GENPD,0.51637,4.4482,4.9566,0.92246,11.6901,1.8431,0.45983,3.716,4.0656,47.1965,17.2242,237.4518,4.4709,5.149,1.8499,2.3518,4.0475,8.2193,2.3163,3.6279,0.77663,7.7412,12.7164,9.4965,8.5631,2.4739,4.9638,1.9085,20.0556,6.1958,3.9655,0.91974,2.522,8.3073,15.881,3.3539,4.8769,3.4267,1.8027,1.5804,4.1601,11.1775,3.1913,2.5399,10.5163,2.475,2.4737,2.1519,12.2556,2.0647,4.3271,1.3702,15.0472,5.3512,9.4555,4.8743,10.3145,8.5169,8.8168,8.8209,3.7891,1.6726,4.8221,,,,,,,,,,,,,,,69,,,
-4058,1.3343,2.1493,,60-69y,Other,,,22.795,4.9943,2.7484,2.5022,2.4073,ppmi,,,M,,0.50303,4.8189,4.7246,0.92787,10.7891,1.8587,0.46946,3.2404,3.7852,52.113,19.1739,266.8554,4.5224,5.1095,1.7529,2.0528,4.2988,8.1131,2.3755,3.669,0.66992,7.4347,12.6339,25.8199,7.8116,2.8379,5.3507,1.9252,20.7016,6.6798,4.5321,1.4032,3.1272,7.5023,16.4339,4.1969,4.6579,3.5824,1.5629,1.7867,5.2076,12.6631,3.3819,2.7597,13.2527,2.6953,2.8368,2.5151,14.035,2.3294,3.9734,1.4759,17.2626,5.9297,10.2928,4.4392,12.178,8.7951,10.2454,7.8497,3.9331,1.714,5.5865,,,PD,0.090248,PD,,PD,0.45041,4.296,4.7864,0.87832,12.4014,2.1715,0.45283,3.3468,3.8251,53.3024,18.5315,272.4003,4.1802,5.6735,1.6759,2.0576,5.019,8.1534,2.3941,3.7317,0.61074,8.4753,12.7859,24.541,8.4138,2.6209,5.277,2.0516,21.4804,7.1926,4.3718,1.4233,3.3903,8.472,16.7198,4.1736,4.8118,3.3497,1.6462,1.8078,4.6021,12.6909,2.959,2.9105,12.3138,2.7963,2.7398,2.4202,14.2802,2.2363,3.9405,1.4574,16.9732,5.6019,8.852,5.5964,12.3706,8.0803,10.1593,7.4208,3.3771,1.7392,5.2393,,,,,,,,,,,,,,,61,,,
-4059,0.71166,1.5311,,60-69y,Other,,,18.2659,4.9407,2.8706,2.3248,0.74008,ppmi,,,M,,0.4531,4.2163,4.2447,0.97131,9.6554,1.5859,0.38652,2.9654,2.7597,53.528,16.8317,209.3265,3.6042,4.3483,1.79,1.9393,3.3459,7.4046,2.0953,3.3694,0.54346,6.8204,10.8348,5.3777,7.4736,2.325,4.4398,1.7647,17.2285,6.495,3.9995,1.191,2.5179,6.4493,14.0786,3.2147,4.5131,2.9808,1.4691,1.4209,4.2778,10.692,3.3697,2.0389,10.2019,2.1613,2.4941,2.1758,11.4102,1.8863,3.9842,1.0602,14.0972,4.9923,8.4708,3.798,10.4896,7.0123,8.2882,7.8136,3.5922,1.5302,4.6415,,,PD,0.07402,PD,,PD,0.41319,3.9594,4.0884,0.96616,11.0706,1.9712,0.39463,3.3502,2.8723,54.5914,16.2776,214.0385,3.8665,4.8278,1.8546,1.7452,3.6277,7.6607,2.0803,3.6209,0.49547,7.1809,11.4948,6.0486,8.2386,2.2861,4.369,1.7326,16.4627,5.487,4.0638,0.9627,2.3865,7.2667,13.8178,2.6597,4.5228,2.961,1.4343,1.4358,3.9776,10.9683,3.1255,2.2505,9.5104,2.2376,2.4648,2.1409,11.4564,2.1837,3.9669,1.0015,13.8325,4.7066,8.0389,4.1268,10.185,7.4069,8.0462,8.1798,2.9925,1.6344,4.3485,,,,,,,,,,,,,,,62,,,
-4061,0.89419,2.249,,-50y,Other,,,21.5063,4.6111,3.0577,2.2955,0.84551,ppmi,,,F,,0.47025,4.9699,4.4432,0.9843,8.7652,1.6318,0.40274,2.7509,3.2959,53.0334,19.0494,256.4588,4.1066,4.7135,1.8626,2.1405,3.702,7.118,2.2159,3.3224,0.4099,6.2173,10.4036,6.9879,7.6366,2.3274,5.1595,1.8781,19.0246,5.9652,4.1936,1.4052,3.0851,6.8187,13.5586,3.6918,4.462,3.2709,1.5296,1.7521,4.5064,11.738,3.3631,2.2587,12.8142,2.268,2.4428,2.1359,13.3103,1.9559,5.4323,1.1807,14.503,5.5116,8.5805,3.3568,11.6667,7.3713,8.8762,7.5833,3.7292,1.467,5.1313,,,PD,0.085804,PD,,PD,0.43997,4.4524,4.1565,0.97726,10.4831,1.6483,0.42218,2.9064,3.2201,53.0294,18.4869,256.6564,4.0565,5.3454,1.8595,2.1705,3.7888,7.109,2.2357,3.5598,0.46691,6.0315,10.6594,6.1455,8.2984,2.1127,4.895,1.9042,19.4932,4.6903,3.7463,1.1632,2.911,7.8768,13.6892,2.7718,4.2684,3.6676,1.5861,1.6556,4.1283,11.4161,3.0616,2.2911,10.3296,2.2724,2.1483,1.888,12.5318,2.0118,5.0324,1.0919,14.7648,5.3507,8.1343,4.3427,11.0266,7.9039,8.6913,7.8284,3.803,1.3777,4.9389,,,,,,,,,,,,,,,47,,,
-4065,0.82334,2.0401,,50-59y,Other,,,20.7146,4.907,2.6943,2.3509,1.1621,ppmi,,,M,,0.40038,4.5229,4.014,0.76302,9.1904,1.434,0.35797,2.7078,2.7453,45.7208,17.356,200.2098,3.5536,4.0157,1.5279,1.9181,3.1442,7.0673,1.8644,3.0034,0.50106,5.825,10.29,9.5048,6.9349,2.1678,4.2783,1.7007,16.6695,5.8352,3.5252,0.98991,2.2988,6.7036,11.6352,3.4516,3.8134,3.0735,1.3521,1.4351,4.0935,10.2647,2.8694,2.1583,11.3072,2.111,2.23,2.0592,12.4191,1.7022,4.0787,1.1307,13.0729,5.3866,8.281,3.7464,10.0408,6.3515,8.2686,7.3615,3.6943,1.4484,4.7636,,,PD,0.067898,PD,,PD,0.37355,4.3804,3.7476,0.80933,10.1628,1.5768,0.36878,2.617,2.7489,45.4556,16.8812,204.821,3.8884,4.455,1.6508,1.691,3.5224,7.3658,1.8244,3.2815,0.5539,5.9856,10.7418,7.0063,7.2475,2.0019,4.1531,1.6319,16.0366,5.027,3.4282,0.87684,2.1631,7.3894,12.5166,2.5333,3.7206,2.7635,1.3895,1.3871,3.7659,10.7303,2.8038,2.1654,9.707,1.9906,2.1428,1.9403,11.8641,1.7294,3.918,1.1062,13.0158,5.2693,7.7305,4.1795,10.1691,6.9634,8.1178,7.3317,2.9677,1.3964,4.5887,,,,,,,,,,,,,,,57,,,
-4067,1.3871,2.0291,,60-69y,Other,,,18.1372,4.488,2.7372,2.1195,1.135,ppmi,,,F,,0.49439,5.1982,4.4254,0.87497,9.7641,1.5731,0.42611,2.9674,3.3867,45.294,14.6318,220.9049,3.6354,4.3698,1.6582,2.1274,3.5232,6.839,2.1514,3.1077,0.50787,6.2869,10.0503,13.3263,7.2872,2.3361,4.8472,2.0065,17.69,6.6458,4.1317,1.2535,3.007,7.2707,13.8018,3.4018,4.1216,3.6226,1.4862,1.4148,4.7072,11.2578,3.0208,2.3269,11.7582,2.7324,2.4324,2.1163,13.5871,2.1496,4.9337,1.3819,14.7055,5.8385,9.2318,3.4058,9.4701,7.3761,8.1853,7.1075,4.1372,1.5484,4.6363,,,PD,0.063156,PD,,PD,0.41811,4.5371,4.2933,0.86057,9.5273,1.6404,0.41564,3.2641,3.3754,46.0281,14.4011,226.139,4.1989,5.0092,1.7666,2.0492,3.8542,7.4462,2.098,3.2917,0.57798,6.9204,11.1711,10.102,7.8394,2.0378,4.5156,1.8964,18.6722,5.1946,3.7452,1.1023,2.79,8.4396,13.5598,2.8392,4.3173,3.4092,1.3713,1.3839,4.3098,11.5977,2.9883,2.4213,10.6016,2.4599,2.2886,2.0039,13.6932,2.0942,4.8173,1.2277,14.5093,5.5955,8.6678,4.2707,10.5367,7.2305,8.102,7.4867,3.4433,1.5701,4.439,,,,,,,,,,,,,,,63,,,
-40671,1.0644,2.3302,,50-59y,Other,,,20.637,5.095,2.8915,2.3896,1.1605,ppmi,,,M,,0.39594,4.5126,4.0434,0.91907,9.3702,1.4909,0.35779,4.5052,2.7925,47.5658,17.5614,255.4813,3.8847,5.2887,1.7624,2.0142,3.3452,6.8028,1.923,3.4769,0.58741,7.0868,10.5817,10.6844,8.2108,2.1383,4.5144,1.7573,16.5833,6.2597,3.6138,1.2808,2.9923,6.634,12.9611,4.9605,4.6866,3.4094,1.3203,1.606,5.2437,11.7741,3.4096,2.0787,11.8994,2.2945,2.3382,2.1344,11.3883,1.8571,3.7121,1.1604,13.8722,5.257,9.1625,4.2523,11.0148,7.061,8.5612,7.7804,3.4286,1.4243,5.2085,,,,0.081594,Other,,GENPD,0.38017,3.9874,3.9409,0.91279,10.8828,1.7756,0.37766,3.8637,2.9558,49.2621,17.1548,259.0671,3.8652,5.5168,1.7908,1.7734,3.6668,7.3976,1.9462,3.7199,0.67549,7.0455,11.1105,9.4935,8.6283,2.0957,4.3804,1.6913,16.05,5.4755,3.6755,1.1056,2.754,7.3297,13.3649,3.5316,4.6023,3.1124,1.4088,1.5976,4.639,11.7591,3.1754,2.1688,11.0365,2.0508,2.3228,1.9733,11.9774,1.8491,3.8715,1.1286,13.8203,5.2217,8.0517,5.2392,11.5852,6.9694,8.6024,7.776,3.0304,1.4249,4.7885,,,,,,,,,,,,,,,51,,,
-4069,1.296,1.6116,,60-69y,Other,,,21.1837,5.2431,2.8141,2.4219,1.3277,ppmi,,,M,,0.51083,5.0273,4.5692,0.98878,8.9755,1.7077,0.41137,3.3676,3.5457,50.6845,17.6624,272.2462,3.9745,4.931,1.8507,2.1892,4.2114,8.0823,2.1984,3.3786,0.63656,6.9411,11.1649,18.2163,7.4305,2.366,5.06,2.1463,21.266,6.2346,4.0815,1.2319,2.8234,7.601,13.7523,3.8264,4.5892,3.7362,1.4825,1.8604,4.8716,11.441,3.4149,2.42,12.7029,2.7189,2.2784,2.4766,14.8852,2.2308,5.009,1.2047,17.4589,5.6509,8.9564,3.4898,11.0503,7.6394,9.4352,8.373,4.2403,1.691,5.7424,,,,0.082425,CN,,HC,0.46905,4.0141,4.3938,1.0122,10.4911,2.0445,0.42239,3.5428,3.5973,51.8708,17.4653,272.9388,4.102,5.0388,1.9583,2.124,4.6908,8.1209,2.2963,3.8105,0.84218,7.3232,11.682,14.462,8.3721,2.4165,4.7546,1.9214,20.0325,5.9811,4.3233,1.1857,2.9047,8.3653,14.5184,3.6078,4.5209,3.7165,1.6543,1.7812,4.4186,11.6407,3.3221,2.3831,10.6863,2.2926,2.4714,2.2522,15.0591,1.8783,4.7998,1.1088,16.4375,5.5188,8.0832,4.993,10.7317,7.6312,9.2463,8.602,4.0109,1.6324,5.4311,,,,,,,,,,,,,,,62,,,
-4070,1.2823,1.4891,,50-59y,Other,,,16.5124,4.3274,2.4631,2.2511,1.2383,ppmi,,,M,,0.4186,4.5518,3.9032,0.7441,8.8601,1.4984,0.36469,3.1364,2.8915,42.8555,13.5834,193.3699,4.1565,4.1179,1.4131,1.8517,3.5529,6.4309,2.2452,2.8645,0.69456,5.8174,10.9938,16.1472,6.9625,2.2954,4.3491,1.8657,17.6137,6.1228,3.789,1.3063,2.4368,7.1924,13.8868,3.0939,3.9486,3.7111,1.5025,1.0624,4.3777,10.3959,2.831,2.2132,12.4724,2.6204,2.2652,2.2862,12.1729,2.1726,3.7612,1.2435,15.4594,5.2667,9.172,3.2182,9.7219,6.5771,7.0229,7.1544,3.6667,1.8032,3.9618,,,PD,0.077559,PD,,PD,0.38046,3.8545,3.7737,0.66272,10.0335,1.552,0.35834,3.2898,3.0459,43.0761,13.4341,197.6452,3.7937,4.3077,1.3034,1.8905,3.8481,6.4952,2.2286,2.8531,1.0534,6.3682,10.9189,21.5702,7.7207,1.9642,4.1433,1.8334,18.0608,5.1808,3.6252,1.1375,2.6462,8.1019,14.3887,2.7809,3.902,3.9667,1.4376,1.0289,3.8374,10.6764,2.4584,2.2347,11.2782,2.3216,2.0893,1.9628,11.6968,1.9777,3.7304,1.1413,15.6796,5.5448,8.1628,3.9871,9.3902,7.3576,6.6909,7.032,3.5663,1.5867,3.7149,,,,,,,,,,,,,,,59,,,
-40702,1.0282,1.6035,,60-69y,Other,,,15.1013,4.0947,2.3094,1.7736,1.0616,ppmi,,,M,,0.4865,4.5175,3.9212,0.82296,9.2402,1.5014,0.39439,3.1222,3.7397,38.7105,11.492,206.3689,3.588,4.3453,1.5541,1.7894,3.1397,7.2078,2.0695,3.1793,0.57351,6.0641,11.0273,16.0064,7.136,2.2303,4.6869,1.7431,17.744,6.5033,4.0083,1.0444,2.5325,6.3534,13.2062,3.1023,4.041,3.2265,1.3962,1.2229,4.4396,10.6294,2.9581,2.2327,12.011,2.3185,2.493,2.2218,12.3462,1.9358,4.3677,1.1745,13.7677,5.0857,8.4859,3.1784,9.7975,6.9446,7.7149,7.7071,3.546,1.4789,4.0859,,,,0.068647,Other,,GENPD,0.43269,4.1346,3.8352,0.83418,11.7412,1.824,0.39453,3.2156,3.8987,38.6737,11.2333,212.573,3.5631,4.4818,1.6713,1.8087,3.203,7.4953,1.997,3.3916,0.50884,6.0951,11.143,12.9433,7.8169,2.1158,4.7976,1.6769,17.8325,5.4133,3.9125,0.96903,2.3893,7.2749,13.399,2.6686,3.863,3.056,1.3853,1.2481,3.9917,10.5238,2.9387,2.3097,9.9611,2.2508,2.1867,2.0652,12.8484,2.0058,4.4678,1.1356,13.8467,4.9195,7.8036,3.7425,9.9819,7.192,7.5229,7.7302,3.1887,1.4701,3.8941,,,,,,,,,,,,,,,60,,,
-40703,1.0737,1.4945,,70-79y,Other,,,18.6095,5.1376,2.8124,2.3719,1.2597,ppmi,,,F,,0.48951,4.4905,4.1699,0.82671,9.1773,1.6207,0.39997,3.192,2.9931,48.8143,16.5718,226.3185,4.1346,4.5373,1.6169,1.887,3.2534,7.3429,2.2175,3.1216,0.34795,6.162,11.0146,10.608,7.4136,2.3839,4.9964,1.7708,19.6979,5.5863,4.2585,1.0557,2.5109,6.7763,14.0208,3.4887,4.3203,3.0326,1.6361,1.3629,4.6766,9.948,3.2531,2.2322,11.2246,2.0358,2.6015,2.1655,12.6095,1.7549,4.126,1.2727,15.7586,5.1781,9.4696,3.6684,9.993,7.3572,7.9808,7.8508,3.8486,1.4418,4.6239,,,,0.081443,Other,,GENPD,0.39909,4.0498,4.1002,0.83638,10.0704,1.7429,0.41084,3.2665,3.0738,49.0879,16.3122,231.7361,4.1311,4.0527,1.7184,1.8223,3.4024,7.2339,2.0227,3.3751,0.56974,6.886,11.1699,9.4999,8.3835,2.2077,4.6735,1.7135,19.7827,4.8702,3.805,0.97797,2.7688,7.617,13.4816,3.2187,4.5078,3.1185,1.4771,1.3742,4.3277,9.7389,3.0334,2.2923,10.2145,1.8022,2.3942,2.0191,13.7332,1.7777,4.276,1.1749,15.0536,5.4271,8.1783,3.9104,9.4769,7.9252,7.7999,8.3877,3.4546,1.3237,4.3815,,,,,,,,,,,,,,,71,,,
-40704,1.5028,2.1112,,50-59y,Other,,,18.2414,4.2472,2.3548,1.9965,1.2857,ppmi,,,M,,0.41937,4.6825,4.2377,0.89877,8.2666,1.4694,0.3838,2.7067,2.9356,42.3289,14.8259,214.6717,4.1065,4.2912,1.5963,2.0758,3.4735,7.2335,2.0645,3.2372,0.53254,5.4416,10.6902,11.8916,7.1278,2.2616,5.0913,1.8247,19.2932,4.9916,3.915,1.1421,2.5261,6.9372,12.5301,2.9571,4.0323,3.4347,1.3471,1.3675,3.8734,9.8409,3.1953,2.4021,11.5921,2.5768,2.4745,2.4351,13.3662,2.1822,3.8924,1.1686,13.7023,5.3812,8.689,2.9658,9.0524,7.085,7.955,7.8169,3.4337,1.8536,4.7154,,,,0.080165,Other,,GENPD,0.39253,4.021,3.9038,0.88852,11.2371,1.7832,0.39249,2.4808,3.0405,42.2756,14.7819,218.4652,4.068,4.0981,1.6519,1.8994,3.8725,7.3853,2.0781,3.4408,0.49219,5.9221,10.3551,11.7258,7.5721,2.1728,4.5831,1.8412,18.026,4.903,3.9238,1.0156,2.4309,7.8024,13.3158,2.6167,3.997,3.3254,1.4565,1.3628,3.5601,9.5982,2.8911,2.2515,9.6152,2.4592,2.414,2.1466,12.8304,2.0172,3.8947,1.1733,14.1244,5.5145,7.8114,3.8313,9.3526,7.211,7.6114,7.6212,3.2493,1.6352,4.4869,,,,,,,,,,,,,,,56,,,
-40707,1.4713,1.9959,,50-59y,Other,,,18.8513,4.8729,2.3373,2.1791,1.8123,ppmi,,,F,,0.41129,3.16,3.5885,0.6685,7.3085,1.1422,0.32849,2.7054,3.2411,42.1198,15.7871,211.7775,3.0476,3.3769,1.2384,1.3643,2.5587,6.0919,1.6322,2.5897,0.57412,5.3755,8.9526,25.4668,6.6036,1.7107,3.2653,1.1906,13.7473,4.9454,3.1791,0.74141,1.7498,4.7405,10.9287,3.0154,3.6051,2.4156,0.98707,1.3534,3.5423,8.0426,2.6297,2.145,8.584,2.0022,1.9819,2.0352,9.7528,1.6424,4.5576,0.9863,10.4805,3.7045,6.8013,2.6807,8.0981,5.5748,7.5439,5.8594,2.4931,1.2647,4.4158,,,,0.063398,Other,,GENPD,0.34379,2.4783,3.1093,0.66998,7.9462,1.3221,0.32906,2.7885,3.4616,41.2787,15.5184,216.7525,2.6944,3.8496,1.2062,1.3945,2.6682,5.9806,1.6794,2.7935,0.67977,5.2722,9.2274,20.9249,6.712,1.6956,3.0425,1.2672,13.6065,4.202,3.0451,0.75001,1.8046,5.5725,10.8986,2.6972,3.6129,2.5197,1.1094,1.4038,2.9749,8.3188,2.3055,1.7263,7.4495,1.7724,1.7784,1.6526,9.0746,1.4745,4.4137,0.93634,10.2773,3.5954,6.1437,3.6778,7.7526,5.6316,7.2731,5.893,2.4561,1.1712,4.3584,,,,,,,,,,,,,,,54,,,
-40709,1.6129,1.6696,,60-69y,Other,,,19.7743,4.7134,2.6715,2.2244,1.7289,ppmi,,,F,,0.47187,4.4743,4.2464,0.79229,9.2651,1.6938,0.37958,2.672,3.6441,49.3019,16.6602,234.4425,4.0861,4.2248,1.4355,1.8942,3.5784,7.5867,2.1615,3.1038,0.5571,6.2838,10.8401,21.8358,7.388,2.5643,4.6249,1.8595,18.7197,6.2959,4.2727,1.0219,2.5278,6.4142,13.2356,3.3885,4.5459,3.5521,1.5362,1.6098,4.1149,10.4573,3.0657,2.4498,11.9991,2.3792,2.5332,2.3445,13.5677,2.007,4.487,1.1435,13.6968,4.8156,8.0112,3.5614,11.0691,7.0788,9.0898,6.5017,3.9628,1.728,5.016,,,,0.077531,Other,,GENPD,0.41038,3.9076,3.8622,0.83286,10.4529,1.7747,0.38613,2.7762,3.8277,48.2297,16.1385,238.0488,3.7495,4.3935,1.5269,1.9048,3.8999,7.22,2.0942,3.3223,0.65358,6.419,11.1238,18.9487,7.9966,2.0697,4.7297,1.8513,17.6745,5.2892,3.8064,1.1017,2.5095,7.4713,13.8537,2.9648,4.289,3.8846,1.2994,1.5829,3.9427,10.3911,2.8201,2.3541,9.1939,2.1523,2.1858,2.0869,12.6528,2.0384,4.4437,1.1117,14.9907,4.8783,7.6948,4.1832,10.6591,7.3703,8.6385,7.0051,3.2777,1.4873,4.808,,,,,,,,,,,,,,,68,,,
-4071,0.74781,1.5839,,+80y,Other,,,19.5845,4.7624,2.6897,2.2217,0.97221,ppmi,,,F,,0.55331,4.8836,4.585,0.99142,10.4241,1.6236,0.43991,4.0588,3.2278,49.2152,15.7337,263.0333,4.5102,5.3398,1.8217,2.198,3.9234,7.6031,2.5512,3.3028,0.40726,8.044,13.1147,6.3789,8.23,2.6188,4.7232,2.1104,19.9882,7.2895,4.299,1.0801,2.7834,7.5365,16.9234,4.7724,5.1937,3.5048,1.8743,1.481,4.6985,11.1905,3.2402,2.3613,12.888,2.9853,2.7852,2.3892,14.159,2.3111,4.7956,1.378,16.8267,5.3408,10.5012,4.4907,11.455,8.228,9.0721,8.5578,4.3313,1.8673,4.8666,,,PD,0.074642,PD,,PD,0.48919,4.1984,4.1694,0.93426,11.7974,1.8548,0.43859,4.135,3.6758,48.6756,15.6628,266.0311,4.3648,5.5822,1.7083,2.3099,3.968,7.7459,2.4883,3.4874,0.54333,7.9576,12.8955,6.975,9.1799,2.5402,4.5547,2.1056,19.9609,6.2397,4.2449,1.0889,2.6987,8.6989,16.1442,3.967,4.9787,4.0103,1.8421,1.3971,4.6643,12.2116,3.0262,2.315,10.8891,2.723,2.4906,2.362,13.3495,2.3318,4.552,1.327,16.8819,5.7336,9.3235,5.5111,11.7691,8.5258,8.8818,9.4188,4.0174,1.8779,4.6383,,,,,,,,,,,,,,,80,,,
-40713,0.65074,1.6082,,60-69y,Other,,,17.6877,4.5921,2.609,2.1027,0.73632,ppmi,,,F,,0.47234,4.5319,4.2947,0.97054,8.9762,1.5367,0.42304,2.6851,2.8885,44.3619,14.902,259.4175,3.5186,4.379,1.9459,1.9924,3.2332,7.5797,2.2197,3.1152,0.3838,6.1822,11.9346,4.7233,7.406,2.3768,4.7041,1.6682,19.2058,5.6101,4.2609,0.97861,2.6399,6.4973,14.9838,3.0483,4.2605,3.2365,1.6441,1.5805,4.1598,10.3157,3.2313,2.2495,11.256,2.2718,2.5856,2.1067,13.4257,1.9716,4.4652,1.1687,14.1657,5.1598,8.9465,3.2354,10.4318,7.88,8.2143,8.0968,3.9479,1.4636,4.7971,,,,0.079994,Other,,GENPD,0.43842,4.1061,4.1866,0.93496,10.7307,1.7747,0.41645,2.908,2.9565,44.7609,14.7564,262.2193,3.9303,4.2835,1.8426,2.0072,3.4727,7.4308,2.0761,3.4693,0.55184,6.6835,11.5297,4.6296,7.957,2.2543,4.7173,1.6865,18.1653,5.7155,4.0812,1.0271,2.7737,7.5586,14.138,2.8106,4.2936,3.3712,1.4073,1.5572,3.8993,9.9637,2.9944,2.2999,10.4264,2.0048,2.4463,2.0653,13.9073,1.7892,4.5113,1.126,14.6617,5.0629,7.8942,4.3061,10.1315,7.2046,8.0456,7.9306,3.2708,1.4512,4.6018,,,,,,,,,,,,,,,64,,,
-40714,1.5276,2.206,,50-59y,Other,,,15.7501,4.521,2.4271,2.021,1.1119,ppmi,,,F,,0.4126,4.4414,3.9395,0.81677,8.86,1.6595,0.38929,3.1485,2.6975,43.7447,13.8347,195.841,3.9365,4.7483,1.6123,1.6784,3.4084,7.3567,2.0496,2.8867,0.46296,5.7994,11.0306,15.4102,7.179,2.3588,4.3443,1.8605,17.375,5.5072,4.1404,0.99666,2.5696,6.7273,13.1073,3.1442,3.9892,2.7488,1.2835,1.1641,3.9677,10.0826,3.0723,2.1868,10.1619,2.1151,2.4975,2.3385,12.5371,1.9014,3.5694,1.3129,15.9941,5.3702,7.8962,3.5707,9.6357,7.1405,7.1081,7.8334,3.2081,1.6671,4.0285,,,,0.07475,Other,,GENPD,0.35636,4.222,3.673,0.81051,9.3321,1.7469,0.37971,3.3623,2.8751,44.5073,13.5454,200.2361,3.616,4.5265,1.5995,1.8504,3.6483,7.5199,2.0733,3.0315,0.56577,6.2042,10.6683,13.9026,8.2748,2.0846,4.2488,1.8365,18.371,4.568,3.8431,1.0764,2.486,7.7225,12.9556,2.8067,4.2349,3.1048,1.382,1.1396,3.7242,10.2435,2.8957,2.1287,9.507,2.3164,2.196,1.9911,12.1149,1.9119,3.4307,1.3066,14.9848,5.2774,7.1457,4.0067,9.2974,7.1475,6.8479,7.8789,3.2885,1.4816,3.831,,,,,,,,,,,,,,,53,,,
-4072,0.8671,2.1009,,50-59y,Other,,,18.2978,4.9134,2.3904,1.9554,1.0088,ppmi,,,M,,0.45908,4.1326,3.9535,0.82126,9.1579,1.5573,0.37931,3.3415,3.1649,44.5304,13.8238,205.0186,3.9441,4.7291,1.5671,1.8539,3.429,7.0729,2.2147,3.0287,0.32346,6.0814,10.7694,12.273,7.456,2.3405,4.6445,1.6804,18.6376,6.0233,4.0044,1.106,2.6132,6.0927,13.5309,3.5059,4.3465,3.1511,1.324,1.2611,4.3672,10.1416,3.0969,2.1796,12.6967,2.2697,2.4303,2.3853,12.968,1.938,4.1833,1.1866,15.8917,4.9724,9.412,3.9204,10.7539,7.1227,8.0365,7.5662,3.4479,1.755,4.4268,,,PD,0.083957,PD,,PD,0.44024,3.736,3.6285,0.77132,10.7165,1.7568,0.39489,3.416,3.3143,44.7667,13.9761,209.6772,3.7455,4.8159,1.507,1.8388,3.939,7.0969,2.182,3.0867,0.33897,6.1843,10.7126,11.051,8.349,2.2549,4.3274,1.6945,18.8066,5.2593,3.9232,1.1134,2.4269,6.8767,13.7007,2.7631,4.2218,3.5579,1.4221,1.208,3.9934,9.7755,2.7213,2.0504,10.3981,2.2111,2.292,1.9385,11.9393,1.9945,4.0804,1.183,15.6137,4.5139,8.6046,4.5806,11.0885,7.4697,7.6391,7.221,3.4573,1.5544,4.1858,,,,,,,,,,,,,,,58,,,
-4073,1.249,1.5186,,50-59y,Other,,,18.3244,5.0302,2.5736,2.3854,0.99781,ppmi,,,F,,0.49608,4.5776,4.3162,0.80186,9.1059,1.4801,0.41438,3.2376,3.1761,47.5287,13.5372,199.2294,3.586,4.6714,1.5539,1.9235,3.0987,7.331,2.2815,3.0018,0.37256,6.6077,12.0095,15.2036,7.2213,2.4303,4.8133,1.7325,19.5145,6.1449,4.0774,1.2619,2.5642,6.6601,14.1634,3.4238,4.4268,3.7258,1.6075,1.3147,4.4464,11.1133,3.11,2.3306,12.2176,2.1922,2.5403,2.2763,12.4517,2.0171,4.3079,1.2718,15.5828,5.6847,8.5499,3.99,11.2598,7.0024,8.2959,8.239,4.173,1.7055,4.6817,,,PD,0.083637,PD,,PD,0.43033,3.881,4.0625,0.79285,10.2142,1.7299,0.41682,3.2622,3.1633,47.4885,13.3607,198.9243,3.4699,4.6366,1.6008,1.9563,3.594,6.9394,2.3562,3.1422,0.40016,6.8043,11.3396,13.083,8.0531,2.2007,4.4991,1.7671,19.0027,5.5929,4.0803,1.0458,2.549,7.6836,14.6566,2.7977,4.331,3.5945,1.4021,1.3391,4.1613,10.843,2.8536,2.2933,10.7346,2.0809,2.3245,2.0539,12.4647,1.7831,4.2435,1.2385,15.1578,5.7059,8.0523,4.6959,10.9396,7.5034,7.7907,8.3282,3.4105,1.4538,4.4905,,,,,,,,,,,,,,,57,,,
-40730,1.055,1.5419,,+80y,Other,,,18.0121,4.6583,2.6104,2.2112,1.248,ppmi,,,F,,0.42929,4.5137,4.1635,0.81454,9.1596,1.7005,0.37892,2.6664,2.5757,45.1202,15.95,242.5257,4.145,4.3627,1.5136,2.03,3.3984,7.234,2.1166,3.127,0.38384,6.0538,11.1401,10.2573,7.1349,2.5742,4.4533,1.8918,18.26,5.7011,4.2169,1.1877,2.698,6.8982,13.9181,2.9702,4.0975,3.5416,1.5644,1.3683,4.3025,10.742,3.0483,2.2556,12.2441,2.2557,2.8074,2.2124,12.7375,1.7507,3.946,1.2332,14.4255,5.2952,9.9603,3.0999,10.9957,7.7399,7.9284,7.5902,3.6597,1.3468,4.5343,,,,0.067826,Other,,GENPD,0.37857,4.1643,4.0602,0.81883,10.7928,1.9423,0.37856,2.685,2.8505,45.2274,15.8402,245.3329,3.6918,4.2869,1.6144,2.0962,3.7982,7.8116,2.2261,3.2645,0.38685,6.6016,11.3807,10.4375,7.58,2.4011,4.7251,1.8241,19.2485,5.2477,4.0195,0.98393,2.3287,7.6079,14.587,2.8581,4.1623,3.4902,1.5448,1.3441,3.8611,10.9099,2.8911,2.3056,10.3986,2.0549,2.4525,2.0608,10.3536,1.7612,3.8698,1.2078,14.0338,5.3616,8.6433,3.8936,10.7691,7.3738,7.6092,7.4968,3.5314,1.3833,4.3115,,,,,,,,,,,,,,,81,,,
-40731,0.92273,1.8491,,50-59y,Other,,,19.8222,5.1432,3.0159,2.3262,1.3733,ppmi,,,F,,0.56133,6.3978,5.1591,0.97044,11.5981,2.1471,0.49777,3.2277,3.3907,52.8587,17.4588,277.9313,4.8972,5.5693,1.6776,2.3462,4.3157,8.4824,2.6263,3.4943,0.39624,8.8442,13.0227,11.6637,8.1931,3.3451,5.526,2.5237,24.7728,9.0994,5.1122,1.4503,3.4668,9.6105,16.5058,4.4156,5.1234,4.4373,1.9312,1.5816,4.9737,12.9637,3.2844,2.6375,14.7323,2.9137,3.6873,2.6146,15.8351,2.2711,4.7453,1.5663,18.3395,7.2031,10.7742,3.8288,13.3558,8.9849,9.9174,8.8626,4.8887,1.8766,5.1992,,,,0.074405,Other,,GENPD,0.51717,5.8197,4.8153,1.0057,13.8503,2.303,0.48597,3.061,3.5223,52.2668,16.8252,279.6159,4.4749,5.355,1.8501,2.3583,5.0038,8.9486,2.7186,3.7509,0.53457,7.1094,14.3018,9.1811,8.8207,3.0049,5.9034,2.5814,23.978,7.1247,4.8907,1.1724,3.0048,10.4165,18.1189,2.8961,4.5875,4.6448,2.2051,1.6184,5.0132,13.1342,3.2562,2.7,12.502,2.5355,3.2702,2.3119,14.0819,2.1553,4.6491,1.4746,18.4039,6.7425,10.4475,4.5926,12.8934,9.6621,9.2631,9.4644,4.5649,1.6707,4.9872,,,,,,,,,,,,,,,53,,,
-40733,0.80898,1.35,,-50y,Other,,,15.6007,3.7712,2.4331,1.8536,0.87212,ppmi,,,M,,0.41938,3.7545,3.4852,0.72945,7.3882,1.2974,0.34625,2.2875,2.5668,39.1713,13.7873,201.3611,3.194,3.5365,1.3413,1.637,2.787,5.7229,1.8041,2.6926,0.33594,4.6639,8.4042,8.5032,5.5499,2.1085,3.7768,1.5411,16.0271,5.019,3.4503,0.83527,2.0302,5.8096,10.518,2.5684,3.1316,2.924,1.3921,1.3001,3.5954,9.1928,2.4719,1.871,10.6515,1.7927,2.253,1.7697,11.2248,1.484,3.6528,1.0093,12.5346,4.5834,6.9031,3.1201,9.6285,5.8154,7.5384,5.9392,3.3043,1.2286,4.1582,,,,0.063383,Other,,GENPD,0.37192,3.4359,3.2727,0.72956,7.8562,1.4493,0.34487,2.4484,2.7736,39.6093,13.7403,205.1178,3.0157,3.7104,1.391,1.5582,3.0559,6.1641,1.6015,2.9181,0.3831,5.1971,8.9782,7.6792,5.9042,2.03,3.8984,1.4058,15.8152,4.1393,3.0507,0.88245,2.3385,6.2573,10.8573,2.3204,3.282,2.8879,1.3534,1.3274,3.3306,8.8289,2.2501,1.857,9.0581,1.7733,2.0811,1.603,11.056,1.4033,3.7636,0.95114,12.077,4.6244,6.7959,3.5723,9.0539,5.6822,7.093,5.9819,2.9395,1.1105,4.0177,,,,,,,,,,,,,,,32,,,
-4074,1.3015,1.8794,,-50y,Other,,,19.3006,5.5108,2.8033,2.6309,1.8051,ppmi,,,F,,0.5588,5.2519,5.146,1.059,10.0427,1.6827,0.47905,4.4356,3.623,52.6493,15.2617,245.7607,4.5771,6.0572,2.0425,2.4736,4.2672,8.4773,2.7196,3.893,0.61957,8.1516,13.7287,21.5854,9.1176,2.6741,4.9797,2.2499,23.5877,7.6079,4.8289,1.223,2.5129,8.2644,17.4378,4.5891,5.0683,3.5145,1.8926,1.5061,5.7603,13.4749,3.5923,2.6795,13.1007,2.539,2.8406,2.6525,14.2601,2.2345,4.9861,1.5208,16.2568,6.0495,9.9926,4.6341,12.9207,8.3313,9.5838,9.4244,4.6688,1.9097,5.1384,,,PD,0.093875,PD,,PD,0.49372,4.722,4.8087,1.0429,12.8192,2.0379,0.46856,4.4218,3.9588,51.5407,15.0595,247.1331,4.2888,6.2281,1.9153,2.2646,4.325,8.8666,2.6281,4.0944,0.80449,8.8032,13.491,23.9529,9.9124,2.6736,4.932,2.1771,22.6169,6.7929,4.573,1.1205,2.4855,9.1284,17.0738,3.7799,5.4274,3.8281,1.9051,1.465,5.1282,13.4143,3.343,2.7263,10.6343,2.403,2.8473,2.4059,13.7884,2.3343,4.8929,1.3936,16.3933,5.542,8.6695,6.0699,12.2455,8.4631,9.3262,9.2918,4.4931,1.6995,4.9092,,,,,,,,,,,,,,,47,,,
-4075,1.0034,1.8496,,60-69y,Other,,,20.7026,5.5735,2.8359,2.4854,1.1242,ppmi,,,M,,0.51813,4.856,4.527,0.84302,9.3644,1.4028,0.44245,2.9828,3.1139,52.2313,15.7956,239.2743,4.0588,4.3433,1.6893,1.9551,3.5253,7.4224,2.2583,3.1222,0.34734,6.3664,11.09,12.1156,7.2218,2.3997,4.4375,1.9025,19.4729,6.2707,3.9828,1.2039,2.6546,7.1449,14.0469,3.3404,4.4218,3.4145,1.6197,1.5384,4.0576,10.356,3.2227,2.343,12.2709,2.0514,2.687,2.3923,14.4259,2.1705,4.6658,1.3411,15.9677,5.4817,9.9595,3.4144,11.8499,8.4141,8.6291,8.4152,3.9816,1.6548,5.0951,,,PD,0.096807,PD,,PD,0.47543,4.3215,3.9667,0.80197,10.8731,1.5915,0.43961,2.8082,3.1925,51.7264,15.8455,240.9316,3.6542,4.6546,1.5524,1.8615,3.7787,7.3634,2.1949,3.2882,0.43536,6.6795,11.6358,12.7438,7.7984,2.2214,4.2232,1.8025,20.1348,5.6003,3.879,1.0872,2.4482,8.1872,15.0227,2.808,4.2641,3.2356,1.4154,1.4843,3.6087,10.1056,2.8672,2.2256,11.5784,1.8551,2.4668,1.9996,13.7134,1.7982,4.5041,1.3156,16.1732,5.3884,8.4489,4.4575,10.814,7.4243,8.4286,7.163,3.6349,1.4392,4.8089,,,,,,,,,,,,,,,60,,,
-4076,1.6362,2.1174,,60-69y,Other,,,17.4018,5.1278,2.7462,2.3014,2.0843,ppmi,,,F,,0.47855,4.5745,4.247,0.77818,9.045,1.399,0.40474,2.6205,3.0391,46.973,14.3155,227.325,4.4764,3.9629,1.5507,1.9117,3.3279,6.8413,2.2484,2.5743,0.58937,6.0904,11.0748,21.6755,7.3851,2.2724,3.8961,1.7831,17.0423,5.8389,3.8667,1.046,2.5365,7.0838,12.5988,3.5789,4.0059,3.3314,1.6362,1.2584,4.5844,10.636,2.8829,2.3326,10.7039,2.545,2.4085,2.2691,12.9936,1.9063,4.1961,1.4549,12.7948,5.1958,9.2735,3.1605,10.6335,6.2356,7.282,7.6866,3.7658,1.8123,4.231,,,PD,0.07919,PD,,PD,0.42629,3.7354,4.1607,0.78391,9.5397,1.5851,0.42341,2.961,3.1683,45.6406,14.1009,232.5592,4.2525,4.1365,1.4991,2.0524,3.5995,7.0064,2.1944,3.2447,0.70018,6.4621,10.8292,15.6321,7.8211,2.2226,3.7656,1.8692,16.2139,5.2065,3.6385,1.1413,2.4381,8.28,13.5646,3.0055,4.0266,3.1892,1.6713,1.2002,4.264,10.8745,2.7469,2.3744,9.8571,2.425,2.2018,2.0522,12.0439,1.9559,4.2002,1.3885,13.3456,5.3103,7.7478,3.9539,9.3336,6.9437,7.5251,7.4781,3.5187,1.6478,4.0908,,,,,,,,,,,,,,,60,,,
-4077,0.82905,2.0183,,70-79y,Other,,,18.3151,4.7954,2.2135,2.1192,0.89337,ppmi,,,M,,0.47912,4.755,4.1298,0.88611,10.9084,1.6782,0.42621,3.9526,2.7421,45.8452,15.2079,231.0384,3.8364,5.3808,1.7091,1.9668,3.6452,6.9455,2.3218,3.3238,0.55113,7.2511,11.2367,8.5905,8.2883,2.4684,4.4543,1.9548,17.9947,7.3147,4.1621,1.1166,2.6136,7.2971,15.0845,4.3563,4.6924,2.9508,1.3956,1.3685,5.0782,11.5826,3.2072,2.0956,12.4227,2.2066,2.5178,2.0971,13.9633,1.7829,4.465,1.2682,17.1117,5.5975,9.4925,4.7722,12.1914,7.536,8.1953,8.524,3.5641,1.4015,4.7872,,,PD,0.077181,PD,,PD,0.42849,4.0883,3.8477,0.90446,10.7765,1.9029,0.42902,3.551,3.0167,46.0069,14.8341,228.2444,3.4037,4.8383,1.8809,1.7885,3.8499,7.492,2.4501,3.4778,0.56813,7.7892,11.6581,11.0032,8.7489,2.2701,4.6508,2.0081,19.7779,6.1005,4.1382,1.1695,2.7579,8.51,14.228,3.5908,4.8478,3.2723,1.4251,1.3622,4.5679,11.6455,2.9579,1.9453,11.0259,1.81,2.3389,1.8565,13.2375,1.7403,4.3831,1.2182,14.8095,5.536,8.6574,4.9652,12.7013,7.4717,7.8831,8.2032,3.2728,1.391,4.5125,,,,,,,,,,,,,,,74,,,
-4078,1.3724,2.2925,,-50y,Other,,,21.1186,5.8336,2.7061,2.67,1.855,ppmi,,,M,,0.51222,5.0545,4.3856,0.88708,10.122,1.6441,0.42814,3.3026,3.4535,52.2803,16.7362,227.5543,4.2116,4.4974,1.7101,2.2771,3.5909,7.4855,2.4455,3.2452,0.49297,7.6027,11.7972,18.4702,8.7176,2.6207,4.7617,2.0171,20.3281,6.8908,4.4607,1.2597,2.7209,7.4267,15.7006,4.39,5.1947,3.6098,1.6538,1.3053,4.6851,11.0641,3.2684,2.2657,13.0574,2.3909,2.7783,2.2924,13.084,2.1187,4.5746,1.4309,14.4692,5.0156,9.7929,3.8509,12.0061,8.092,8.0529,8.6514,3.9929,1.7264,4.6334,,,PD,0.083311,PD,,PD,0.45009,4.5011,4.1658,0.86279,11.2337,1.8664,0.43069,3.3247,3.3466,50.9079,16.2558,232.5782,3.9367,4.9842,1.6776,2.1833,4.4849,7.4581,2.5317,3.2229,0.63101,7.6231,12.0284,19.9707,9.6919,2.3768,4.8674,2.076,19.2481,5.924,4.2859,1.0438,2.578,8.675,16.2549,3.584,5.0056,3.2794,1.6059,1.3689,4.142,11.4326,2.9554,2.2761,11.8376,2.2789,2.3149,2.0885,13.679,2.1089,4.3988,1.3818,14.8598,5.1405,8.5316,5.0086,11.8341,8.5311,7.6978,8.5341,3.9168,1.566,4.5714,,,,,,,,,,,,,,,48,,,
-40781,1.1916,1.8921,,60-69y,Other,,,19.4002,5.0171,2.621,2.1832,1.0855,ppmi,,,F,,0.50358,5.143,4.9585,0.92977,10.7656,1.6765,0.43734,3.712,3.2517,49.2894,16.9457,250.5652,4.313,5.5576,1.7976,2.1639,3.9845,7.7051,2.3919,3.2935,0.40624,7.1223,12.5187,10.7332,8.3268,2.6473,5.4635,2.0005,20.9458,6.8087,4.5372,1.4211,2.7255,8.0237,15.8756,4.1053,4.3412,3.2024,1.6838,1.7134,5.4809,12.8425,3.4474,2.6641,13.3041,2.4006,2.75,2.4151,14.9445,2.1458,5.2778,1.3024,14.9852,6.1781,9.138,4.0896,12.3165,8.4533,9.5193,7.8332,4.1117,1.7023,5.2422,,,,0.074237,Other,,GENPD,0.45534,4.1183,4.8355,0.94532,11.3944,1.8543,0.44487,4.0552,3.5024,49.9588,16.1751,256.2334,4.2816,6.3347,1.8692,2.2231,4.4109,7.9223,2.2982,3.5151,0.47985,8.1356,12.0613,9.8543,9.4663,2.4264,5.3791,1.9991,19.3358,6.2247,4.1325,1.2653,3.0851,8.7483,15.3127,4.4941,4.9515,3.3213,1.6541,1.7368,4.9366,13.0437,3.1757,2.6509,12.0182,2.3349,2.6635,2.1946,13.7471,2.0836,5.0924,1.2,16.1804,6.4036,8.5233,5.8982,11.4281,8.2076,9.385,8.2625,3.5617,1.5716,5.0188,,,,,,,,,,,,,,,61,,,
-4079,0.79298,1.6148,,70-79y,Other,,,16.5952,5.0076,2.6247,2.348,0.99269,ppmi,,,M,,0.46725,4.5314,4.3908,0.78051,10.9369,1.5556,0.43324,3.6327,2.9682,45.8795,12.5905,201.0965,4.1012,5.2733,1.5396,2.0407,3.6605,7.2883,2.4991,2.7214,0.30866,7.7342,12.3528,7.7754,8.3655,2.5241,5.136,1.8931,17.8952,7.3871,4.3444,1.2704,2.8518,6.8863,16.2418,4.5806,4.9439,3.3645,1.7015,1.1555,4.7071,12.8048,2.8474,2.235,12.1703,2.7117,2.6814,2.1818,12.8636,2.1784,4.5123,1.3399,15.289,5.3708,11.1178,4.0452,11.4202,8.0843,7.7829,8.054,3.8411,1.6998,4.0635,,,PD,0.074588,PD,,PD,0.40141,4.1259,4.1824,0.82649,11.785,1.6319,0.41722,3.7058,2.9024,46.592,12.7274,201.6574,4.1511,5.6155,1.6918,2.0872,4.0388,7.444,2.4195,2.9891,0.40014,7.8056,12.1468,7.174,8.7847,2.1595,5.2179,1.9543,18.1191,6.2762,3.927,1.0792,2.3983,7.9631,15.5599,3.2554,4.7818,3.6291,1.5438,1.1706,4.5615,13.0084,2.868,2.3344,10.1647,2.5503,2.2858,2.103,12.5534,2.2694,4.2853,1.2558,15.7285,5.1693,9.5784,4.8193,11.3597,8.6074,7.514,8.6362,3.7876,1.7297,3.9318,,,,,,,,,,,,,,,70,,,
-4080,1.3606,2.1587,,60-69y,Other,,,18.0665,4.294,2.3483,1.8835,1.23,ppmi,,,M,,0.46873,4.7038,4.3465,0.86764,10.381,1.603,0.40675,3.8423,3.2391,44.3663,15.1786,243.4422,4.1524,5.4468,1.6629,2.0707,3.4976,7.417,2.042,3.1639,0.81682,7.0255,12.0308,21.998,7.7796,2.3525,4.7632,1.8755,19.4524,6.5413,4.0272,1.2232,2.9225,7.4018,14.7624,4.0686,4.4555,3.4292,1.4054,1.4914,4.8712,11.8067,3.1649,2.5697,13.7831,2.6669,2.5373,2.3716,14.7161,2.4934,4.6025,1.2991,15.8716,5.8078,10.9254,4.2352,12.042,8.1538,8.3961,7.6555,3.9961,1.9713,4.6953,,,,0.076775,CN,,HC,0.40183,4.05,4.0232,0.81192,11.2681,1.9002,0.39724,3.8964,3.2695,44.7902,14.5018,247.529,4.097,5.4679,1.6907,1.9603,3.6651,7.6082,2.0977,3.2272,0.68512,7.1833,11.571,15.9903,8.7682,2.325,4.6943,1.9369,19.1424,5.5947,4.1106,1.1847,3.0203,7.8475,14.4719,3.627,4.4364,3.5988,1.4654,1.4701,4.4902,12.3784,2.9842,2.4264,11.984,2.8215,2.5549,2.0908,14.0583,2.3031,4.4265,1.2558,15.6604,5.9466,9.5513,4.6567,12.9281,8.0431,8.1415,8.165,3.4699,1.6797,4.4558,,,,,,,,,,,,,,,63,,,
-40800,1.8407,2.8696,,50-59y,Other,,,19.6272,5.1306,2.8631,2.4918,1.6882,ppmi,,,M,,0.43006,4.3503,4.3288,0.88855,10.1185,1.5738,0.38353,3.0605,3.0107,49.1482,15.5077,206.5866,4.0674,4.864,1.6981,2.1275,3.6237,7.437,2.0482,3.1491,0.83106,7.0534,11.4099,21.2953,7.8311,2.4516,4.7034,1.7253,17.2913,6.7784,4.0803,1.1453,2.4833,6.9588,14.065,3.8811,4.6602,3.4155,1.6004,1.16,4.7607,11.5009,3.1838,2.5446,10.8204,2.698,2.3838,2.3768,11.9267,1.9256,4.1729,1.271,14.515,5.1893,8.8867,3.4063,10.6271,7.4551,8.0157,7.7747,4.3999,1.6806,4.5394,,,,0.070736,Other,,GENPD,0.41602,3.9855,4.07,1.0615,11.8996,1.8729,0.4318,3.1008,3.2035,51.4785,16.001,214.2743,3.7992,5.2304,2.0445,2.0438,3.7681,8.038,2.1017,3.6058,0.85134,6.5082,11.9452,17.8464,8.1659,2.4176,4.5935,1.7873,16.9024,5.3116,3.8614,0.97615,2.2079,7.3148,13.0738,2.96,4.2782,3.4297,1.6284,1.2291,4.2015,11.2859,3.1627,2.5233,9.3524,2.5464,2.2705,2.1222,11.3974,1.8626,4.1036,1.2476,14.5471,5.0989,8.1528,4.2919,10.836,7.284,7.8595,8.4713,3.8074,1.5191,4.494,,,,,,,,,,,,,,,50,,,
-40806,1.7357,2.1942,,70-79y,Other,,,19.8605,5.2454,2.7505,2.2381,1.5938,ppmi,,,M,,0.50019,4.9229,4.5897,0.93065,9.8106,1.6836,0.4069,3.4433,3.4314,46.0366,15.3575,221.6991,4.4168,4.8283,1.8145,2.2144,4.2327,7.4633,2.2201,3.4473,0.75486,6.923,11.2468,23.3742,7.9644,2.493,4.9732,2.0467,20.0936,6.8696,4.1069,1.3137,3.1064,8.0454,13.7359,3.9038,4.3573,3.5511,1.68,1.5616,5.0339,12.5059,3.3195,2.4187,12.772,2.3358,2.5023,2.2605,13.613,1.9503,4.709,1.3308,15.4668,6.1848,8.9152,4.0358,12.1581,7.7037,9.0755,7.2338,4.4013,1.5121,4.9698,,,,0.081501,Other,,GENPD,0.46084,4.64,4.2844,0.95853,11.6328,2.0488,0.42495,3.7012,3.7654,49.8287,15.3174,224.8602,3.8756,5.6338,1.9284,2.1608,4.5744,7.7852,2.2645,3.5434,0.8923,6.8241,12.059,18.054,9.0424,2.5423,5.153,1.9769,19.9962,4.9597,4.1229,1.2472,3.0029,8.5393,14.3888,3.5668,4.6212,3.6454,1.8118,1.6065,4.59,12.6234,3.3263,2.4408,10.9283,2.294,2.4026,2.0882,11.9741,1.9459,4.4989,1.1771,16.191,6.2834,8.3975,4.6103,11.3083,8.0529,9.0644,8.2263,4.0126,1.452,4.8369,,,,,,,,,,,,,,,79,,,
-4081,1.7648,2.4192,,70-79y,Other,,,20.5896,4.7945,2.5957,2.1001,1.7,ppmi,,,M,,0.43139,4.8444,4.6938,0.93916,9.2108,1.6982,0.39811,3.4385,3.3138,46.0822,16.8201,249.5805,4.36,4.6823,1.6871,2.0178,3.7559,7.6452,2.1805,3.4355,0.65868,6.8429,11.584,23.1995,8.5739,2.7048,4.4017,1.8822,19.9321,6.6041,4.1023,1.1478,2.7342,7.7678,13.3039,3.7545,4.6596,3.3026,1.6767,1.4485,4.9116,10.9171,3.2516,2.6322,11.7536,2.4063,2.6605,2.5833,12.036,2.2505,4.2158,1.2719,15.2764,6.1974,8.6724,3.6521,10.8549,7.3547,7.9941,7.8521,4.1559,1.5096,4.7233,,,PD,0.074073,PD,,PD,0.39601,4.4665,4.4756,0.84958,9.558,1.85,0.39724,3.8441,3.6095,46.0744,16.5037,266.3748,3.9753,5.1463,1.6674,2.0835,4.1903,8.1315,2.1107,3.4272,0.67422,7.0589,12.0098,19.3403,8.99,2.3061,4.2963,1.8309,18.0799,5.3637,3.9519,1.27,2.5556,8.6362,13.5543,3.1415,4.307,3.5502,1.595,1.5809,4.4913,11.2296,3.022,2.3962,10.2333,2.0982,2.4105,2.2946,13.496,1.8891,4.3651,1.2178,16.6013,6.0294,7.6382,4.5918,9.495,7.3278,8.1761,7.951,3.5053,1.4583,4.7849,,,,,,,,,,,,,,,72,,,
-4082,1.4582,2.2021,,70-79y,Other,,,16.7256,4.7303,2.3789,2.0415,1.5696,ppmi,,,M,,0.40362,4.0591,4.1188,0.84434,8.3494,1.2332,0.36812,2.7145,2.77,43.1116,14.3831,199.5239,3.7333,4.0168,1.5576,1.9101,3.0195,7.0797,1.8948,2.9618,0.66077,6.3568,10.9733,15.584,6.5364,2.0434,4.2655,1.5303,16.7745,5.8627,3.4945,0.91429,2.0264,6.1927,12.9221,3.5936,3.8552,3.133,1.5175,1.3537,3.8744,9.4986,3.0054,2.2297,10.2713,2.4968,2.2164,2.1768,11.443,2.0249,4.0383,1.151,12.9847,4.9118,8.5161,3.3892,8.8569,6.8376,7.3964,7.1236,3.7741,1.6046,4.3767,,,PD,0.070464,PD,,PD,0.3551,3.9034,4.0598,0.84569,9.3827,1.426,0.37374,2.7214,2.9183,43.2412,14.2029,201.4885,3.6336,4.0357,1.6917,1.924,3.1856,7.3355,1.7764,3.187,0.83343,6.5153,11.7249,13.2142,7.0323,1.8922,3.8745,1.5236,16.5082,5.161,3.1673,1.0444,2.3391,6.5025,14.0482,2.9613,3.7318,3.2747,1.3828,1.3801,3.5913,9.2017,2.922,2.2176,8.7563,1.8228,2.1424,2.0399,11.1386,1.6879,3.9604,1.0749,12.6946,5.1891,7.3503,3.77,8.4933,6.7164,7.2539,7.7251,3.1775,1.348,4.225,,,,,,,,,,,,,,,74,,,
-4083,0.95228,1.9637,,60-69y,Other,,,21.5939,4.7453,2.8982,2.1764,1.0738,ppmi,,,M,,0.556,5.6669,4.8131,0.99116,10.7012,1.7743,0.45231,3.4928,3.2585,51.9914,18.7065,240.816,4.2088,5.8149,1.8334,2.1702,4.1842,8.0523,2.3981,3.3883,0.63073,6.8946,11.6108,10.8661,8.8834,2.7243,6.0347,2.1728,22.7323,6.6894,4.4749,1.0894,3.1106,7.8492,15.0009,3.6928,4.5621,3.4466,1.7406,1.6543,4.7921,12.5808,3.5867,2.4706,13.9091,2.7334,2.6408,2.4297,15.2379,2.4686,5.0522,1.3713,17.3102,6.6884,10.4054,4.1556,12.52,8.7362,9.0097,8.0705,4.1627,1.751,5.4977,,,PD,0.082518,PD,,PD,0.47811,4.999,4.5927,0.94918,11.0248,2.0258,0.45162,3.7429,3.3299,52.8831,18.1406,245.6413,4.4737,6.3386,1.7591,2.0495,4.5616,8.4736,2.3316,3.5676,0.62596,7.9282,11.3255,9.7476,9.3896,2.3587,6.2092,2.1468,21.8769,6.1113,4.2217,1.2056,3.0629,9.196,14.3203,3.8739,4.9679,3.646,1.6056,1.628,4.5885,12.4301,3.1999,2.4926,12.7638,2.6975,2.4963,2.1804,15.5994,2.1883,4.9072,1.3432,18.1901,6.5073,9.1968,5.3555,11.686,8.4704,8.8462,8.0711,3.8914,1.7191,5.1796,,,,,,,,,,,,,,,68,,,
-4085,1.4996,1.6222,,-50y,Other,,,17.1998,4.562,2.3753,2.1369,1.2229,ppmi,,,M,,0.40165,4.2437,3.9702,0.78507,7.9453,1.2067,0.35137,2.8433,2.7559,42.5472,16.0613,205.5924,3.8036,4.4187,1.5183,1.8473,3.2139,6.6307,1.8888,2.7465,0.48143,6.206,10.5283,12.0905,7.0369,1.997,4.457,1.6739,15.9559,5.5496,3.4643,1.0078,2.4006,6.3405,11.9119,3.2622,3.8394,3.1851,1.2836,1.333,3.7444,9.196,2.9754,2.2168,10.7263,2.1475,2.1587,2.1844,12.5842,1.9539,3.6419,1.206,12.9038,5.1891,7.6006,3.3715,9.2538,6.1159,7.3013,6.6702,3.808,1.6774,4.428,,,PD,0.073218,PD,,PD,0.37618,3.6201,3.7636,0.79364,8.0662,1.4619,0.37667,2.9864,2.7444,42.8573,15.4502,210.9841,3.4483,4.7726,1.5763,1.7215,3.5205,6.8933,1.9412,2.953,0.52051,6.1256,10.8776,8.7635,7.1821,1.9128,4.068,1.6643,16.0766,4.7765,3.1937,1.0297,2.5616,7.6097,12.106,2.8849,3.8712,2.85,1.3227,1.302,3.684,9.523,2.5628,2.1524,9.7923,2.5585,1.9982,1.9951,12.6998,2.1114,3.5722,1.1306,13.2828,5.2307,7.153,4.1942,8.1525,6.5466,7.3652,7.1961,3.1186,1.6462,4.2431,,,,,,,,,,,,,,,48,,,
-40882,0.62228,1.7652,,70-79y,Other,,,17.4854,4.2072,2.3694,1.9514,0.76979,ppmi,,,M,,0.42953,4.144,3.7467,0.76975,8.3843,1.4098,0.36792,2.5804,2.7104,40.2692,13.7524,215.2123,3.0674,3.7181,1.4283,1.7851,3.194,6.6152,1.8851,2.9248,0.36275,5.4064,9.8575,8.5157,6.7399,2.2567,4.3741,1.6583,17.0402,5.6456,3.6505,0.98945,2.3254,6.1704,11.9058,2.6778,3.8903,3.2755,1.4196,1.4022,3.7898,8.6919,2.8838,1.8108,10.1522,1.7024,2.3851,1.8353,12.3078,1.4806,3.9,1.1111,13.5111,4.5468,7.7323,3.4814,11.1139,6.2037,7.9674,6.9564,3.7439,1.1368,4.481,,,,0.071771,Other,,GENPD,0.38629,3.0342,3.5206,0.77719,9.4455,1.6674,0.38336,2.6683,2.7683,41.2043,13.6893,216.0645,2.7928,3.7796,1.533,1.784,3.4741,6.7097,1.8923,3.0965,0.45143,5.5971,9.6925,8.0118,7.1526,2.1007,3.9862,1.5885,15.5727,4.9247,3.3591,1.1139,2.6239,7.193,12.3418,2.397,3.7419,2.9847,1.4693,1.34,3.4842,8.5744,2.6708,1.8367,9.4779,1.4465,2.0837,1.6193,12.8462,1.415,4.0124,1.0106,14.7393,4.8042,6.5155,3.781,9.4833,6.2493,7.6504,7.0818,3.6074,1.0553,4.1601,,,,,,,,,,,,,,,77,,,
-4090,1.1716,1.9446,,60-69y,Other,,,19.3223,5.0685,2.5796,2.2553,1.1262,ppmi,,,M,,0.45357,3.9875,4.5102,0.83846,10.1372,1.5485,0.39381,3.3711,2.9194,46.3087,17.46,232.1591,3.4589,4.6293,1.577,1.9513,3.2941,6.9224,1.9184,3.1304,0.4903,7.0755,10.0378,8.8706,8.2722,2.2369,4.262,1.6485,16.8793,6.6559,3.7271,1.1934,2.4582,6.6576,14.0711,4.0716,4.4703,3.0919,1.4182,1.5725,4.5402,10.6113,3.1217,2.3164,11.6671,2.2021,2.2125,2.0862,12.412,1.9795,4.1852,1.1193,14.7109,5.1668,9.443,3.7715,10.3884,7.9253,9.1025,6.9604,3.5774,1.4857,5.0024,,,,0.072253,CN,,HC,0.39019,3.6102,4.396,0.8335,10.2895,1.5697,0.40294,3.8573,2.8192,47.1306,16.8925,232.8419,3.4456,5.2605,1.653,1.9811,3.7486,7.2581,2.0009,3.3758,0.45754,7.0395,11.209,7.4981,8.6294,2.1366,4.2579,1.578,17.0777,5.3395,3.496,1.0364,2.4035,6.9517,14.6118,3.0763,4.3805,3.2252,1.5635,1.5717,4.2388,10.9918,2.8832,2.3508,10.0425,2.0068,2.2091,2.0126,11.9485,1.8538,4.2556,1.0363,13.9328,4.88,7.8584,4.5584,10.5562,7.9019,8.6574,7.5386,3.3295,1.4497,4.8365,,,,,,,,,,,,,,,69,,,
-4091,1.313,2.4307,,50-59y,Other,,,20.7941,5.472,2.8218,2.743,1.3391,ppmi,,,M,,0.45737,4.5435,4.1414,0.8649,9.713,1.6664,0.38479,3.4785,2.8229,53.0027,19.2879,248.2346,4.4088,4.8184,1.6714,1.8539,3.3634,8.3102,2.0823,3.1814,0.51066,7.3827,12.8937,16.4141,8.7494,2.5245,4.5818,1.8857,18.7734,7.1153,4.0089,1.0653,2.4013,6.9593,15.6894,3.9352,4.9313,3.3522,1.4759,1.4339,4.6959,11.3166,3.3879,2.4119,13.0085,2.4285,2.5971,2.6091,11.8449,2.0467,4.0268,1.1645,14.2646,5.294,9.6604,4.7168,12.4797,7.7068,8.3389,8.8049,3.6058,1.7142,4.9,,,,0.078985,CN,,HC,0.42442,4.0758,4.0511,0.85453,10.476,2.0858,0.392,3.4255,2.8591,51.4553,18.5506,249.8489,4.3189,5.2711,1.6502,2.0095,3.9206,8.5616,2.0691,3.3307,0.52295,7.8671,12.6057,17.5816,9.6647,2.4131,4.8491,1.9975,19.2372,5.646,4.1401,1.089,2.6496,7.9372,14.949,3.7074,4.9867,3.802,1.5782,1.4006,4.2001,11.5221,3.1045,2.4275,11.6175,2.1892,2.5245,2.1601,12.0519,2.0111,4.0665,1.1416,14.2544,5.3785,8.7276,4.7346,12.7101,8.0236,8.1206,7.9279,3.5034,1.6438,4.5988,,,,,,,,,,,,,,,57,,,
-40916,1.5954,1.7656,,60-69y,Other,,,18.0165,4.6531,2.3361,2.1804,1.2814,ppmi,,,F,,0.35877,3.7612,3.6627,0.68181,7.2015,1.3575,0.32217,2.8352,2.4602,41.92,14.341,182.2309,3.5982,3.8884,1.33,1.8032,3.2358,6.0985,1.6832,2.581,0.42337,5.1781,9.3158,10.7845,6.7858,2.3609,3.9477,1.4321,16.9187,4.953,3.2105,1.0105,2.3515,5.9212,11.8597,2.7275,3.5811,3.1737,1.4499,1.0535,3.6067,8.6126,2.7047,1.9869,10.9308,2.1712,1.9755,2.2711,11.0385,1.8489,3.8658,0.92972,13.2846,4.7859,8.4425,2.8554,8.5868,7.1088,7.1558,7.4749,4.3574,1.2924,4.1078,,,,0.062847,Other,,GENPD,0.31463,3.6007,3.5262,0.65484,8.5412,1.512,0.34066,2.8302,2.5987,42.965,13.8704,187.7439,2.9293,4.2325,1.399,1.6138,3.4234,6.8202,1.6857,2.792,0.51552,5.7309,10.1795,10.0687,7.3029,2.0871,4.2639,1.4803,16.5735,4.3017,3.2743,0.99027,2.283,6.333,12.1174,2.4608,3.6449,2.8131,1.464,1.0718,3.4821,9.3723,2.616,1.9983,8.1817,1.5088,1.9465,1.8279,11.3214,1.5508,3.655,0.9096,13.3723,4.5479,6.8951,4.0108,9.0727,7.2941,6.9909,7.3893,3.4783,1.1164,3.9673,,,,,,,,,,,,,,,62,,,
-4092,1.5925,1.9801,,60-69y,Other,,,20.7368,5.1537,3.0015,2.314,2.0337,ppmi,,,F,,0.42233,4.0997,4.1323,0.78244,9.6404,1.438,0.37459,2.0136,3.1605,49.6561,18.6725,255.7168,3.7711,3.5172,1.3825,1.7724,3.1016,6.592,1.9087,3.0968,0.54139,6.1268,10.2636,23.2335,6.1724,2.2981,4.1997,1.6008,16.6866,6.2338,3.7982,0.82364,2.1123,6.0465,13.8401,2.9181,3.8308,2.9432,1.3788,1.5489,3.8831,9.2233,2.8224,2.2211,10.0609,1.9822,2.2965,2.1208,11.2832,1.5876,3.9809,1.1643,12.8242,4.5234,8.334,3.0671,9.4314,6.7551,8.4274,6.2612,3.2472,1.2997,5.052,,,PD,0.072961,PD,,PD,0.38849,3.8235,4.1548,0.78309,10.5888,1.6784,0.37556,2.3782,3.4804,51.2224,18.7277,268.5256,3.9032,3.9136,1.3206,1.8656,3.8205,6.6392,1.9723,3.4556,0.61107,6.2973,10.6172,25.6896,7.1254,2.1636,3.8817,1.6496,16.7873,5.2858,3.773,0.88672,2.2993,6.532,13.9189,2.4768,4.1482,3.2242,1.5032,1.6067,3.6438,9.9247,2.5865,2.1692,9.7326,2.0872,2.1849,1.9799,11.4238,1.8135,4.1153,1.1348,14.5975,4.462,8.5235,3.8489,10.2175,8.1541,8.1885,6.2071,3.2581,1.3669,4.7967,,,,,,,,,,,,,,,68,,,
-4093,1.3756,1.4776,,70-79y,Other,,,19.841,5.2645,2.7012,2.3806,1.5111,ppmi,,,F,,0.44436,5.1098,4.3993,0.8902,12.0353,1.9647,0.43781,4.1633,3.0909,48.551,16.7667,262.3008,4.7776,5.5547,1.7874,2.1035,3.9238,8.1035,2.3645,3.483,0.42014,7.573,12.6933,15.1124,8.6678,2.8944,5.2367,2.2291,21.1188,7.9045,4.7034,1.3488,2.5716,7.4169,16.3046,4.1668,5.0608,3.6572,1.7172,1.7098,5.0841,12.9099,3.4654,2.6551,14.2953,2.7572,2.7821,2.6143,12.8688,2.2813,4.2666,1.3763,15.1532,5.4944,11.152,4.5742,11.4596,8.386,9.4887,8.8778,4.469,1.998,5.2008,,,PD,0.096414,PD,,PD,0.40872,4.5179,4.2759,0.86608,13.1524,2.2275,0.4454,4.1515,3.066,48.7629,16.7565,266.7862,4.7447,6.2948,1.6832,2.2483,4.0963,8.1768,2.2906,3.6021,0.46025,7.6964,13.5451,11.6286,9.1818,2.6721,5.0362,2.1214,21.0647,6.5564,4.4946,1.2005,3.2109,8.5754,17.3402,3.2042,4.7403,4.2648,1.8228,1.7005,4.385,12.7601,3.1051,2.6603,11.7656,2.6033,2.7659,2.379,12.9795,2.3068,4.2939,1.3452,14.2434,5.8847,9.4711,5.3838,13.0609,9.0288,9.2299,8.5132,4.1176,1.854,4.8393,,,,,,,,,,,,,,,77,,,
-4094,2.1658,2.1717,,50-59y,Other,,,18.7996,4.6731,2.8428,2.1876,2.0323,ppmi,,,F,,0.32377,3.5246,3.4863,0.58602,8.7429,1.2376,0.32537,2.6659,2.9716,46.7214,14.946,189.3491,3.601,3.8257,1.0429,1.7238,2.8389,6.098,1.6463,2.5767,1.1497,5.9773,9.0791,29.5997,6.621,1.9812,3.899,1.3579,14.9561,6.0083,3.1748,0.96712,2.3754,5.5965,11.601,3.1678,3.8185,2.7027,1.2821,1.2528,3.7765,9.2475,2.438,1.8676,8.7952,1.861,1.9919,1.9342,10.7279,1.552,3.3805,0.97408,13.0712,4.8319,7.7114,3.39,8.5832,6.1787,7.1776,5.8966,3.0296,1.1582,4.5357,,,PD,0.071338,PD,,PD,0.31487,3.1548,3.6882,0.67832,9.1939,1.4031,0.33878,2.434,3.2654,48.5798,14.4198,193.7392,3.4644,4.4372,1.1737,1.509,2.8506,6.2812,1.5184,2.9628,1.6273,6.2791,9.2989,29.5824,6.8649,1.8101,3.7563,1.2622,14.8518,5.3146,3.1342,0.88898,2.2245,6.1719,11.9323,2.7348,3.7961,2.3801,1.2266,1.2751,3.2021,8.8297,2.3163,2.0149,8.1571,1.7824,2.0161,1.8398,11.3324,1.6701,3.4736,0.94945,12.5235,4.5307,7.1527,4.087,9.4643,6.4651,6.9362,6.9859,2.6983,1.3411,4.4393,,,,,,,,,,,,,,,51,,,
-4096,0.68193,1.8596,,70-79y,Other,,,17.1588,4.9218,2.4814,2.1886,0.82965,ppmi,,,F,,0.4124,4.8735,4.0104,0.83865,9.8856,1.6958,0.37979,3.1875,2.6352,52.3553,15.8284,215.3403,4.0058,4.1684,1.6011,1.8888,3.7718,7.5241,2.1905,3.0929,0.38206,6.929,10.9434,7.1621,7.4963,2.4937,4.7285,1.8941,18.6762,6.7155,4.1736,0.99474,2.4393,6.9316,13.4486,3.4944,4.6094,3.3477,1.4759,1.2485,3.6479,10.1897,3.1314,2.0759,11.2608,2.4097,2.5143,2.1977,12.1016,1.9803,3.7364,1.1695,14.4485,5.2691,8.9311,4.069,10.8084,6.6776,8.2415,6.853,3.7161,1.6659,4.3949,,,PD,0.066364,PD,,PD,0.35884,4.3648,3.9732,0.84727,9.5464,1.844,0.37163,3.202,2.4685,50.9917,15.4342,219.5491,3.5854,4.8975,1.6764,2.0647,3.8952,7.2,2.2524,3.3188,0.50022,6.99,11.0563,4.8348,8.1024,2.2961,4.5675,1.9063,18.4132,5.6031,4.0647,1.0157,2.3539,8.3839,14.0018,3.1362,4.3671,3.6066,1.5946,1.2853,3.7216,10.2259,2.8897,2.0752,9.7178,2.248,2.2965,1.9213,11.987,1.8321,3.7061,1.1075,13.8624,5.0152,7.6495,4.6861,9.1291,6.2833,8.0306,7.6563,3.7705,1.4262,4.2403,,,,,,,,,,,,,,,77,,,
-4098,1.0892,2.3101,,50-59y,Other,,,22.4251,5.7724,3.1048,2.4992,1.2721,ppmi,,,F,,0.48608,5.1376,4.7127,1.0292,10.5548,1.83,0.43668,3.1633,3.3017,53.5528,19.9551,261.3462,4.9461,5.9732,2.0402,2.3938,3.886,8.2725,2.4932,3.7302,0.36855,6.8674,12.4621,9.731,7.9675,3.0032,5.2861,2.1311,20.3626,6.7337,4.8382,1.2282,2.9342,7.7009,15.5937,3.5599,4.4439,3.8232,1.929,1.6152,4.7267,11.8617,3.764,2.7141,12.0857,2.9328,3.0295,2.7202,12.0959,2.5134,4.4807,1.2874,15.0718,5.7382,10.3634,3.7632,12.8067,9.3383,9.0934,8.9212,4.2694,1.8339,5.1734,,,PD,0.080974,PD,,PD,0.43976,4.008,4.5563,1.0117,11.7045,1.9679,0.4439,3.3559,3.3027,55.4412,19.9377,262.6682,4.5367,5.6743,1.9965,2.2173,3.9217,8.9138,2.4822,3.9972,0.46668,7.482,13.2171,7.8745,9.2419,2.5025,4.9516,2.119,21.0586,5.837,4.5567,1.402,3.1916,8.6773,15.674,3.0137,4.9708,3.625,1.8731,1.6225,4.4819,12.4853,3.6334,2.5467,9.2816,2.8295,2.7072,2.461,12.5864,2.6388,4.2466,1.3512,14.7082,5.557,9.1861,4.9833,11.648,9.0729,9.0212,9.1904,4.2338,1.7741,4.9948,,,,,,,,,,,,,,,50,,,
-4099,1.0294,1.8474,,50-59y,Other,,,19.0638,4.5058,2.3783,2.043,1.0332,ppmi,,,M,,0.44033,4.2468,4.062,0.88854,10.3092,1.604,0.37608,3.5808,2.9636,42.5915,15.4447,243.5344,3.9529,4.8409,1.6857,2.0063,3.4304,6.6146,2.021,3.2252,0.31364,6.8531,10.4613,9.0746,7.0875,2.3393,4.7231,1.7887,18.8949,7.1103,4.0296,1.1366,2.9373,6.126,13.8852,3.7509,4.1371,3.3788,1.5218,1.5228,4.6722,11.5773,2.9661,2.1732,10.7778,2.3967,2.4712,2.1669,12.2996,1.9818,4.368,1.1089,14.2908,5.1044,9.3421,4.6296,12.3506,7.1862,8.6941,7.0848,3.8851,1.5507,4.8232,,,PD,0.066383,PD,,PD,0.40855,3.656,4.0414,0.86075,11.5361,1.9362,0.38727,3.5897,2.8961,42.2339,15.8442,244.6565,4.0721,5.0228,1.651,2.051,3.9913,7.019,2.1291,3.4423,0.3465,6.683,10.7146,7.7086,7.8661,2.5423,4.9078,1.8698,19.6972,5.7097,3.9369,1.1375,2.5512,7.1556,13.774,3.0222,4.0833,3.4822,1.7264,1.5366,4.501,11.4232,2.8924,2.2819,10.7885,2.1079,2.3912,2.1225,11.5656,1.9807,4.3783,1.0907,14.0859,4.7853,8.5493,4.7334,11.134,7.7399,8.4238,7.2747,4.0413,1.498,4.6459,,,,,,,,,,,,,,,59,,,
-4100,1.6463,2.257,,60-69y,Other,,,19.9327,5.6439,2.7522,2.3347,1.4732,ppmi,,,F,,0.47557,5.6075,4.7232,0.92392,10.3471,1.971,0.43699,3.6708,2.9762,48.8087,18.3488,291.5326,4.7158,5.1701,1.8892,2.1937,4.4739,8.3986,2.5605,3.3315,0.48631,7.0039,13.1284,10.2771,7.922,2.8884,5.5036,2.3518,20.6806,6.8107,4.7199,1.2017,3.0166,8.9948,16.095,3.7132,4.427,3.7657,1.7343,1.7031,5.1988,11.6576,3.6406,2.6784,11.6296,3.0243,2.7705,2.5155,12.7864,2.2588,4.9206,1.4325,19.063,6.387,10.6276,4.3678,12.3874,8.08,9.0689,8.6997,4.4167,1.8295,5.203,,,PD,0.081714,PD,,PD,0.42971,4.6057,4.7532,0.95551,11.6387,2.1595,0.43617,3.5917,3.0075,51.9369,17.9681,299.4634,4.6798,5.7842,1.9643,2.2091,4.7952,9.0582,2.4889,3.7424,0.61829,7.357,14.0032,9.0711,8.7396,2.7549,5.341,2.3744,23.2798,6.0645,4.4267,1.2449,3.1801,10.1538,16.4462,3.376,4.768,3.8748,1.8836,1.7538,4.8913,12.3485,3.5408,2.8864,10.7518,2.4582,2.4758,2.3759,13.1638,2.2322,4.8509,1.3611,17.1159,6.0413,9.6419,5.4429,11.5494,8.6811,8.8288,9.0485,4.2498,1.7285,5.0828,,,,,,,,,,,,,,,60,,,
-4101,1.0949,1.6972,,50-59y,Other,,,17.383,5.3879,2.7399,2.6483,1.1282,ppmi,,,M,,0.41347,4.0287,3.7814,0.7835,10.1123,1.5128,0.38252,2.3075,2.7435,50.1022,15.3643,196.2224,3.8056,3.9286,1.4875,1.831,3.1702,7.4205,1.7509,2.959,0.40064,5.9844,10.7355,13.2252,7.0799,2.162,4.424,1.5886,16.1366,5.6979,3.6497,1.2958,2.9425,6.2803,13.5794,2.9048,4.1877,3.293,1.3282,1.2479,4.568,10.7635,3.0453,2.107,12.4295,2.55,2.3494,2.0677,12.2206,2.0755,4.1611,1.1052,14.043,5.3863,10.7507,3.0603,11.2516,7.671,7.286,7.5274,3.3017,1.5478,3.9823,,,,0.073678,CN,,HC,0.38765,3.5123,3.7827,0.81002,10.9981,1.7919,0.39606,2.74,2.7905,50.3335,14.8383,202.3121,3.9868,4.4111,1.5642,1.9811,3.322,7.7366,1.8374,3.1952,0.42994,6.6595,11.4481,12.1601,7.9902,2.2418,4.5701,1.5661,16.8351,5.3284,3.7046,1.4661,2.8876,7.0103,14.1887,2.4476,4.3589,3.6535,1.5414,1.2406,4.3107,10.9942,2.8027,2.1953,10.8283,2.0565,2.3084,1.9816,10.3582,1.7106,4.1772,1.04,13.9815,4.9574,8.6295,4.1611,10.9378,7.2233,7.045,8.1446,3.6355,1.3594,3.9396,,,,,,,,,,,,,,,58,,,
-4102,1.7893,1.7777,,60-69y,Other,,,20.6787,5.4545,2.6247,2.3921,1.4735,ppmi,,,F,,0.47032,5.0206,4.4934,0.8826,11.239,1.8033,0.40162,3.1252,3.1098,49.1507,16.9051,264.555,4.4255,4.7659,1.7381,1.9774,3.7541,7.6208,2.0479,3.3143,0.59944,7.6068,12.1902,13.6128,7.4605,2.6347,4.8247,1.82,20.0824,7.0835,4.1384,1.723,3.3061,7.7424,14.7987,4.5581,4.5826,3.2802,1.46,1.7,5.0871,12.6914,3.2368,2.5971,12.5036,2.7656,2.5064,2.5673,13.2637,2.3318,4.6756,1.2631,15.4007,5.9078,9.99,3.8603,13.4337,8.5012,8.6761,8.0797,3.7754,1.8482,5.2003,,,PD,0.079439,PD,,PD,0.44329,4.7985,4.2669,0.89466,12.4919,1.9922,0.42863,3.4851,3.0626,50.2103,16.8436,268.5933,4.3848,5.326,1.7267,2.1288,3.7369,8.0458,2.1381,3.5855,0.64575,7.7238,12.9577,9.7613,8.4342,2.6634,4.7696,1.8523,19.0419,5.7161,4.051,1.345,3.2718,7.9342,15.8672,2.988,5.0672,4.0192,1.6759,1.6086,4.7918,13.3775,2.9858,2.5887,11.8705,2.4789,2.6017,2.4401,13.2184,2.2286,4.607,1.233,14.1063,6.059,10.0434,4.6859,12.5876,8.0863,8.6146,8.2322,3.7263,1.7116,5.0067,,,,,,,,,,,,,,,67,,,
-4103,1.2625,1.7136,,60-69y,Other,,,20.5115,4.8492,2.7897,2.1716,1.1398,ppmi,,,M,,0.52681,5.4731,4.4455,0.93326,11.6355,1.7719,0.44761,2.8824,3.3923,47.245,17.1741,275.5847,4.5931,4.5917,1.9211,1.9288,3.7272,7.9695,2.1866,3.7089,0.48153,6.3217,12.6914,12.4987,7.3772,2.5562,5.6434,2.0934,21.443,7.266,4.2859,1.1919,2.6166,7.9839,17.3612,3.0249,4.0844,3.3252,1.5321,1.6328,4.6781,10.4892,3.6455,2.7666,13.0979,2.8134,2.6771,2.7254,13.233,2.2885,4.6976,1.3358,16.4589,6.1261,11.1473,3.5675,12.3206,9.4095,9.7701,8.6354,4.0069,1.927,5.4674,,,PD,0.08212,PD,,PD,0.4418,4.8232,4.4233,0.94604,12.8265,1.9103,0.45728,3.2314,3.5942,49.2698,18.0723,281.1839,4.3987,4.9509,1.9493,2.1782,3.6492,8.3934,2.2066,3.9439,0.6278,7.3013,12.8668,10.3644,8.5776,2.3527,4.8597,1.8977,20.6429,6.0772,4.0382,1.172,2.6466,8.2381,17.1007,2.7071,4.6447,3.7925,1.6041,1.6367,4.3491,11.4876,3.4266,2.5917,11.7756,2.4927,2.4605,2.3924,13.949,2.0784,4.4487,1.2561,15.5292,6.7886,9.6843,4.1447,12.6053,8.6461,9.225,8.5582,3.583,1.6948,5.0469,,,,,,,,,,,,,,,69,,,
-4104,1.4278,1.5149,,50-59y,Other,,,18.6282,5.093,2.5791,2.3617,1.2584,ppmi,,,M,,0.46107,5.0923,4.5685,0.8054,12.2606,1.8803,0.42214,3.434,3.1244,47.8132,16.7469,242.7331,4.6694,5.7025,1.6165,2.056,3.9132,7.8619,2.2874,3.0907,0.40408,7.954,12.3802,16.3959,8.539,2.6657,4.8944,2.0705,20.9814,8.4102,4.558,1.2616,2.7121,7.6407,16.141,4.2824,4.9185,3.2779,1.583,1.3697,4.8943,12.4918,3.1233,2.5942,13.0678,3.05,2.6161,2.6134,14.8071,3.0554,4.114,1.3046,15.6591,6.0166,10.4684,4.5905,12.3556,9.3661,8.1129,8.6777,4.2068,1.995,4.4327,,,PD,0.073812,PD,,PD,0.41766,4.3605,4.4235,0.86136,12.7459,1.9889,0.41972,3.8699,3.1722,46.6202,16.6292,247.361,4.7153,6.4043,1.6791,2.2431,4.1002,7.7644,2.2519,3.3196,0.52408,8.0831,13.0107,10.5853,9.0716,2.6003,4.9797,2.1305,20.6997,6.1792,4.1982,1.1048,2.4551,8.7331,17.2548,3.1884,4.9803,3.7792,1.8983,1.3484,4.4204,12.4846,2.9223,2.6132,13.2635,3.1709,2.5191,2.2944,14.0491,2.5986,3.9823,1.2752,15.5769,6.0441,9.2278,5.2867,12.1249,8.8921,8.1712,8.3795,4.0411,1.8738,4.3239,,,,,,,,,,,,,,,59,,,
-4105,1.2835,1.8827,,60-69y,Other,,,16.7765,4.7423,2.5398,2.3152,1.5229,ppmi,,,M,,0.48258,4.8962,4.3409,0.95495,11.6927,1.8153,0.41747,3.6205,3.1785,45.7992,15.5323,242.1517,4.4177,5.4959,1.8004,1.9432,3.6326,8.2055,2.1575,3.5214,0.54168,7.9962,12.3891,17.5355,8.9736,2.631,4.9162,2.0432,20.1465,8.0118,4.307,1.532,3.399,7.7689,16.0851,4.5098,5.0787,3.7166,1.5271,1.3782,4.8233,11.168,3.514,2.5306,13.4265,2.9916,2.7405,2.5947,14.3017,2.5301,4.5707,1.2567,16.3009,6.6732,11.5371,4.9987,13.0807,8.8387,8.5308,8.237,4.1146,2.009,4.4925,,,,0.075731,CN,,HC,0.42672,4.6491,4.3722,0.95789,14.1218,1.9545,0.42477,3.9925,3.0918,47.1554,14.2794,240.7271,4.3704,5.3372,1.8641,2.2851,3.881,8.7168,2.1681,3.5466,0.5006,8.1068,12.88,12.9365,9.7674,2.4144,5.449,1.8597,19.3671,6.4022,4.1824,1.402,2.7804,7.9625,16.7115,3.7348,5.0006,3.7826,1.7244,1.3818,4.3685,10.8321,3.1774,2.5386,11.5698,2.5418,2.6104,2.3661,13.0681,2.2593,4.4865,1.2097,16.3795,6.0389,9.416,5.5736,12.2878,9.6697,8.3273,8.7492,3.9481,1.7313,4.3265,,,,,,,,,,,,,,,66,,,
-4106,1.3738,2.0268,,60-69y,Other,,,20.0869,4.4427,2.312,1.8907,1.2982,ppmi,,,M,,0.49933,4.2864,5.0729,0.85648,10.8916,1.5865,0.39943,3.3734,3.7659,42.1592,16.9667,280.5766,4.4987,5.5491,1.6497,2.3033,4.03,7.4888,2.0549,3.2378,0.62237,7.7507,11.6482,21.1391,7.466,2.4532,4.4842,1.7679,19.7057,7.7346,4.0073,1.3306,2.8319,7.2092,14.2491,4.5181,4.6726,3.7668,1.5848,1.8215,4.8564,12.1955,3.1916,2.7229,13.6997,2.7083,2.6147,2.6229,13.9143,2.3969,5.0459,1.1902,15.9804,5.7035,9.0518,4.1504,12.0473,7.4677,9.7621,7.4171,3.9677,2.0117,5.3988,,,,0.082528,CN,,HC,0.44517,3.575,4.5049,0.85101,12.3221,1.9008,0.39687,3.5825,3.8157,44.5581,15.9581,286.2928,4.2273,6.107,1.6179,2.0723,4.1928,7.5057,2.0668,3.4545,0.62409,7.8293,10.9635,15.9689,8.4958,2.3666,4.1317,1.737,19.3327,6.8522,3.8832,1.326,2.8552,8.1203,14.4601,3.8248,4.7783,3.2093,1.6262,1.7812,4.4202,12.4296,2.9718,2.6187,12.3257,2.3414,2.264,2.2081,14.1171,2.1488,4.7871,1.1384,15.9951,5.4602,9.4889,5.2943,11.7418,8.3933,9.549,7.9121,3.7731,1.6545,5.1039,,,,,,,,,,,,,,,67,,,
-4107,2.1139,2.0984,,70-79y,Other,,,16.508,4.4779,2.2754,2.1626,2.0783,ppmi,,,M,,0.32099,4.0014,4.1465,0.72066,8.9959,1.3594,0.33356,2.4944,2.7421,43.1906,14.4485,229.6837,3.9819,4.4705,1.392,1.8684,3.386,6.112,1.8972,2.9098,0.80397,6.3696,9.6281,21.9216,6.9915,2.2309,3.8614,1.6144,17.5723,5.9128,3.5977,0.95017,2.5286,6.4155,12.6919,3.32,4.1261,3.0796,1.4958,1.2235,4.5428,10.9505,2.9552,2.4104,10.8033,2.0583,2.272,2.2979,11.7474,1.9519,3.3367,1.1663,12.9705,4.9159,8.4235,3.0319,10.3615,7.2808,7.0877,6.9535,3.4427,1.4608,4.2429,,,PD,0.083951,PD,,PD,0.28704,3.7911,3.8627,0.72598,10.5006,1.4841,0.33746,2.818,2.7904,43.6754,14.8167,228.9751,3.8916,5.0315,1.4318,1.7199,3.5755,6.8971,1.8984,3.1717,0.97058,6.4418,10.3891,19.1081,7.6735,1.9791,4.2762,1.5466,16.723,5.5707,3.4222,1.0199,2.2947,7.1601,12.6458,2.8334,4.327,3.116,1.3624,1.2024,4.1726,11.3508,2.8296,2.4745,9.0873,1.9449,2.1729,2.2781,11.0602,1.7246,3.1423,1.1209,13.4066,4.5573,7.6516,4.4365,10.2911,6.5246,6.9677,7.1211,3.0172,1.5352,4.002,,,,,,,,,,,,,,,72,,,
-4108,1.2466,1.9463,,70-79y,Other,,,19.3251,5.2799,2.8107,2.3328,1.2659,ppmi,,,M,,0.4689,4.8461,4.8183,0.91582,11.0148,1.5842,0.41532,2.7711,2.753,48.2965,17.0252,278.1796,4.1017,4.4728,1.7889,2.0956,3.654,7.9265,2.0512,3.3181,0.38606,7.4339,11.5324,11.4357,7.747,2.3648,5.6677,1.8325,18.376,7.9409,4.0272,1.3425,2.5927,7.186,14.8648,3.9404,4.7699,3.1923,1.5835,1.5424,5.1584,12.4907,3.4146,2.6342,14.232,2.8702,2.6099,2.4461,12.7693,2.2398,4.6083,1.2249,16.123,5.2613,10.256,4.3262,13.6129,7.5213,8.4366,7.9547,3.8596,1.8301,4.9987,,,PD,0.079953,PD,,PD,0.4331,4.3177,4.7555,0.90504,12.0925,1.9807,0.42795,3.0909,3.0369,48.4666,17.1447,278.6873,4.2826,5.3668,1.7905,2.3899,4.2334,7.7231,2.0143,3.4783,0.39582,7.4298,12.2915,11.4276,8.171,2.4828,5.466,1.7249,18.6711,6.4996,4.1789,1.1814,2.4707,7.8572,14.9737,3.3795,4.5158,3.7431,1.5711,1.543,4.7806,12.542,3.0834,2.4828,13.0077,2.4627,2.4554,2.0677,12.1895,2.1414,4.5617,1.2853,15.3782,5.4372,9.7185,5.0743,12.4735,8.4854,8.5514,8.5128,3.7462,1.5745,4.7457,,,,,,,,,,,,,,,71,,,
-4109,1.7256,2.061,,60-69y,Other,,,16.8358,5.0937,2.6476,2.2311,1.4356,ppmi,,,M,,0.40561,4.7716,4.1573,0.8325,10.0477,1.6805,0.40051,3.0178,2.4562,43.8048,14.8136,232.2895,4.4659,5.0751,1.7438,1.6692,3.5965,7.4989,2.0433,3.1813,0.48424,6.8646,12.1286,14.5943,7.3248,2.4458,5.2334,1.7391,19.6813,6.3126,3.9716,1.1535,2.8931,6.9931,14.0955,3.4278,4.1693,3.3091,1.3702,1.2878,4.5455,11.413,3.1954,2.4915,11.9654,2.4656,2.4594,2.3992,13.7677,2.0851,4.3289,1.1472,14.6403,6.0533,9.552,3.566,11.0161,7.2662,7.6334,7.9693,3.3855,1.8014,4.4355,,,PD,0.06927,PD,,PD,0.36712,4.3029,4.294,0.86463,10.8722,1.7458,0.41847,3.1673,2.5653,44.7059,14.2715,234.8108,4.2859,5.2694,1.8092,1.9285,3.6585,7.4191,1.9914,3.3691,0.5798,6.878,11.6862,15.121,8.0524,2.3413,4.7811,1.6718,18.9625,5.4125,3.6995,1.0761,2.7132,8.063,14.0388,2.9343,4.2465,3.8529,1.685,1.2262,4.1379,12.1022,2.9599,2.4727,10.6972,2.1878,2.5396,2.1244,13.2458,1.8276,4.3504,1.1126,14.8618,5.6413,8.7611,4.1771,11.2595,7.2128,7.3699,7.9433,3.7678,1.5087,4.2164,,,,,,,,,,,,,,,65,,,
-4110,1.6212,2.1651,,60-69y,Other,,,21.4125,5.1944,3.1147,2.4876,1.6409,ppmi,,,M,,0.43734,4.9131,4.4419,0.87935,9.5336,1.4923,0.4233,3.3889,2.7669,51.4516,19.1663,266.6236,5.1543,4.5605,1.7463,2.232,3.6942,8.1286,2.1371,3.2695,0.7303,7.2114,12.3142,15.7511,7.4631,2.3572,5.0497,2.0292,18.1353,6.3754,4.0092,1.2573,2.8438,7.5534,14.5674,4.4958,4.6293,3.4893,1.6259,1.5656,4.3559,10.4625,3.2488,2.8828,12.7798,2.9823,2.6322,2.9484,11.4987,2.3977,4.4653,1.3699,13.2303,5.5876,9.2986,4.1527,11.6673,7.3507,8.2833,7.8235,4.0416,2.2986,5.0132,,,PD,0.091682,PD,,PD,0.36326,4.6796,4.3942,0.86109,10.2155,1.8104,0.43182,3.6793,2.7515,50.3592,17.9799,272.5089,4.7544,5.2728,1.6883,2.2032,3.974,8.2274,2.0989,3.2518,0.85375,7.2361,12.6884,18.7034,8.6159,2.3802,5.1085,1.9292,18.0012,5.0727,3.9487,1.1941,2.7019,8.4335,15.4742,3.7467,4.4555,3.7596,1.7224,1.6127,3.9285,10.758,2.8042,2.8189,11.2351,2.5011,2.5321,2.6481,12.5667,2.0533,4.3754,1.3346,14.0719,5.6662,8.1764,4.808,10.7658,7.7515,7.8488,8.2906,3.8892,1.6993,4.8809,,,,,,,,,,,,,,,67,,,
-4111,2.1769,2.0903,,70-79y,Other,,,16.9672,4.5769,2.0973,2.1025,1.8477,ppmi,,,M,,0.45461,4.7782,4.3939,0.91015,11.13,1.7379,0.41952,2.6891,3.4462,40.5705,14.5607,238.9056,4.0122,4.4913,1.7122,2.0972,3.7158,7.6959,2.2171,3.3017,0.78555,7.9447,12.3414,23.5112,8.146,2.5533,5.1187,1.9169,19.5953,7.3852,4.2968,1.1882,2.8088,7.177,16.3684,3.6999,4.94,3.5649,1.469,1.3799,5.0482,12.3865,3.3144,2.5759,10.3174,2.5661,2.4153,2.6789,11.4498,2.2132,4.1878,1.3217,15.1084,5.9139,10.0362,4.1156,12.0455,8.7266,7.578,7.9643,4.0809,1.749,4.5921,,,PD,0.086008,PD,,PD,0.38153,4.5249,4.2866,0.91626,11.858,2.0498,0.41865,3.2538,3.4123,38.6641,14.2181,238.3503,4.0135,5.4125,1.8316,2.1424,3.8523,7.8525,2.1192,3.6204,0.83493,7.3834,13.154,19.3575,8.7238,2.5035,4.9546,1.8452,18.848,5.9064,4.0218,1.0739,2.669,8.179,16.5258,3.3899,4.5628,3.5184,1.6172,1.442,4.6384,12.1397,3.0432,2.5385,9.3818,2.3094,2.3991,2.2808,11.3399,2.0974,4.0138,1.2051,14.2366,5.8165,8.6774,5.1549,11.9225,8.0344,8.0791,8.4918,3.9321,1.5999,4.6039,,,,,,,,,,,,,,,71,,,
-4112,1.3745,2.7433,,70-79y,Other,,,20.2887,5.6622,3.2056,2.6349,1.5389,ppmi,,,M,,0.45831,5.6254,4.6646,0.93776,12.6653,1.8222,0.43187,3.7833,3.2127,56.9222,18.878,256.6576,4.5338,5.2186,1.8638,2.2398,4.2708,8.8001,2.3633,3.6903,0.43166,8.9651,13.1669,17.8111,9.3009,2.7226,5.375,2.2728,20.5432,7.9989,4.3552,1.2119,2.7665,7.8404,16.88,4.9479,5.5527,3.5019,1.6167,1.5271,5.4064,12.1757,3.6776,2.4281,14.0416,2.9131,2.6339,2.4526,13.0024,2.4735,4.2599,1.3632,14.5961,5.6891,11.9629,4.1597,13.5833,9.5768,9.179,8.8706,4.0173,1.9003,5.1763,,,PD,0.080298,PD,,PD,0.42153,4.5696,4.6682,0.97438,11.7816,2.2442,0.43747,3.8777,3.3678,59.1386,18.8195,261.2964,4.7158,6.3982,2.001,2.189,4.7031,9.6762,2.2961,3.8613,0.50628,9.2201,14.1565,17.406,10.5015,2.6617,5.347,2.1565,19.8144,7.0186,4.3218,1.2989,3.2081,9.3672,16.5694,3.5308,5.5412,3.5609,1.6905,1.5668,4.6433,12.5834,3.5998,2.6959,13.1377,2.6272,2.7972,2.5141,15.4553,2.1572,4.235,1.2678,18.4883,6.405,9.647,5.4061,11.4326,8.7148,9.0364,8.937,3.632,1.9608,4.9488,,,,,,,,,,,,,,,74,,,
-4113,0.6971,1.3129,,50-59y,Other,,,16.8998,4.6355,2.5835,2.2647,0.94615,ppmi,,,M,,0.47411,4.9928,4.4125,0.96211,10.7182,1.7874,0.43903,3.7217,3.2406,49.7894,14.3856,239.4942,4.533,5.7453,1.7886,2.1148,3.6217,8.7174,2.3225,3.3529,0.38438,8.4447,13.5784,5.828,8.8837,2.6546,5.3843,2.1212,20.8396,7.0768,4.5269,1.5686,3.0308,7.1151,16.5069,4.0429,5.7199,3.547,1.7868,1.4181,5.1321,13.0568,3.4884,2.4881,13.2797,2.8689,2.9255,2.3426,14.1381,2.361,4.5841,1.2597,15.6474,5.6757,11.2318,4.0958,12.8267,8.1789,9.0563,8.294,4.6734,2.0162,4.504,,,PD,0.068963,PD,,PD,0.45149,4.4761,4.3102,0.95373,13.2014,2.1439,0.44399,3.7373,3.3572,47.4359,14.1279,240.2862,4.0947,5.8357,1.8043,2.0107,3.8313,9.0241,2.3089,3.5822,0.42835,7.6553,14.7254,5.2932,8.474,2.6248,5.0876,1.9736,20.5406,6.5726,4.4317,1.1441,2.7647,8.6485,18.3574,3.0196,5.0694,3.7876,1.7758,1.3777,4.5173,13.3819,3.047,2.3816,12.6886,2.3738,2.7668,1.9947,13.9073,2.1928,4.551,1.2381,14.8433,5.8199,10.2074,5.0529,12.6171,9.2958,8.8697,8.4221,4.0316,1.4704,4.2222,,,,,,,,,,,,,,,53,,,
-4114,1.343,2.3877,,-50y,Other,,,17.2485,4.861,2.4968,2.3284,1.1278,ppmi,,,F,,0.39815,4.294,4.1019,0.79288,9.5401,1.6391,0.36123,3.3302,2.683,47.5934,15.2566,234.211,4.0335,4.5048,1.5106,1.8405,3.5835,6.9237,2.1755,3.0553,0.75248,7.2282,10.8522,17.4264,7.4047,2.5247,4.7776,1.6126,18.162,6.8469,4.0397,1.0851,2.3255,6.2118,14.0258,4.1201,4.2903,2.8277,1.5951,1.42,4.2155,10.2198,2.939,2.2299,11.4747,2.1897,2.4159,2.1689,11.4565,1.989,4.0953,1.1613,14.4844,4.6291,8.1801,3.6097,10.8425,7.4794,7.8403,7.7292,3.7524,1.6149,4.3547,,,PD,0.066003,PD,,PD,0.34613,3.9243,4.2145,0.77249,10.705,1.6789,0.35728,3.5924,2.7449,48.273,15.3087,244.7994,3.9479,5.0787,1.4944,2.126,3.7974,7.7912,2.009,3.2468,0.79941,7.7483,11.4846,14.9458,8.037,2.2534,4.3937,1.6574,18.3127,5.9784,3.7533,0.89149,2.0656,6.6338,14.0084,3.1234,4.5672,3.5465,1.6061,1.3996,3.9395,10.5682,2.6125,2.2476,10.2264,2.2259,2.2913,1.9404,12.2555,2.1116,4.0003,1.1595,14.0946,4.6668,8.4403,4.5137,10.2707,7.3867,7.961,7.4283,3.3944,1.5494,4.2214,,,,,,,,,,,,,,,34,,,
-4115,1.8263,2.0633,,60-69y,Other,,,19.2317,5.5146,2.676,2.224,1.6083,ppmi,,,M,,0.3889,4.2713,4.0709,0.84993,9.3503,1.4105,0.39121,3.3134,2.7957,48.8742,17.0542,219.0578,3.7367,4.3225,1.5287,1.7528,2.9822,7.6122,1.9471,3.2792,0.71753,7.1064,11.8211,17.1045,7.3516,2.1567,4.6519,1.64,15.79,5.9094,3.5765,1.0417,2.4428,6.2842,13.9189,3.7476,4.4159,3.1174,1.2903,1.3758,4.7535,10.9414,3.2245,2.2781,11.2654,2.3887,2.2053,2.4091,12.3778,2.2503,3.8696,1.2314,12.6597,4.9602,8.7324,3.3874,12.4677,7.6851,8.2422,7.3812,3.4841,1.7704,4.8058,,,PD,0.078369,PD,,PD,0.33541,3.7408,3.8529,0.83952,10.3479,1.4786,0.38614,3.8191,2.8979,48.6547,16.4517,222.3029,3.482,5.1389,1.6689,1.8569,3.047,7.8655,1.8449,3.5033,0.70529,6.6124,12.5597,13.4125,8.6272,1.9616,4.1814,1.5235,16.7187,4.6742,3.3075,0.85603,2.3063,7.1705,15.2615,3.0417,4.2861,3.4641,1.4368,1.4204,4.3179,11.2906,3.0038,2.2738,9.6723,1.9967,2.1248,2.0508,11.5117,1.8301,3.8483,1.089,12.6338,5.1473,8.8813,4.4218,11.3044,7.6764,7.9687,7.6559,3.6233,1.4512,4.6564,,,,,,,,,,,,,,,67,,,
-4116,1.2625,1.6909,,60-69y,Other,,,21.1296,5.3655,3.0155,2.5297,1.43,ppmi,,,M,,0.50934,4.9407,4.7735,0.88602,10.9906,1.5782,0.43686,3.2696,2.9213,53.1481,16.8368,259.7593,4.8517,4.5594,1.8016,2.1638,4.1925,7.8455,2.4788,3.6756,0.48261,6.765,12.5308,9.9126,7.9559,2.4155,5.1099,2.1481,17.5786,6.4529,4.4306,1.44,2.653,7.179,15.7829,3.9565,4.8497,3.1314,1.4993,1.5587,5.6557,12.3929,3.5951,2.655,13.454,2.9235,2.6301,2.6838,12.3553,2.3327,4.3419,1.4709,16.0283,5.2498,11.2739,3.8405,12.2396,8.3506,8.4968,8.2767,3.7462,1.9374,5.1416,,,PD,0.08822,PD,,PD,0.47201,4.209,4.392,0.9049,12.7573,1.8419,0.44796,3.3455,2.9182,52.9354,16.7902,262.2729,4.1501,5.1716,1.7826,1.9383,4.2608,7.9965,2.5045,3.7531,0.61614,8.6624,12.3422,8.6852,8.3834,2.262,5.0344,2.2388,17.8606,6.9834,4.317,1.3849,2.7946,8.7756,15.5703,3.5042,4.9673,3.0287,1.5297,1.5513,5.0538,12.3134,3.2136,2.5738,11.4305,2.7397,2.5462,2.2629,12.585,2.5641,4.2583,1.369,15.9514,5.392,9.5194,4.7734,11.9114,7.9949,8.3035,7.6933,3.3376,1.8305,5.0142,,,,,,,,,,,,,,,67,,,
-4117,1.1778,1.9466,,60-69y,Other,,,20.8272,5.2958,2.732,2.4997,1.3644,ppmi,,,M,,0.44437,4.5866,4.5954,0.93707,11.3299,1.6229,0.39826,3.628,2.9722,51.5934,17.5792,240.1588,4.7896,4.9614,1.8131,2.1435,3.6327,8.7834,2.2667,3.4042,0.38152,7.5358,13.2655,14.4727,8.6998,2.5382,4.6079,1.8229,19.0602,8.2696,4.1995,1.1361,2.6123,7.0982,15.6905,3.9053,5.0952,3.4438,1.7182,1.5452,4.5676,11.3293,3.4748,2.5896,12.3503,2.6557,2.4538,2.6945,12.7273,2.0958,4.1473,1.311,13.8146,5.074,9.4853,4.286,12.1102,8.0362,8.7079,8.129,4.0616,1.9668,4.8453,,,,0.083327,CN,,HC,0.43807,4.4714,4.5083,0.92342,13.9537,1.9506,0.41862,3.61,3.194,51.7856,17.479,245.0356,4.9093,5.0813,1.7841,2.3262,4.054,8.7976,2.1229,3.6129,0.43744,7.908,13.1294,12.6038,9.1127,2.5041,4.6689,1.8982,18.4117,6.1277,4.0795,0.99874,2.4103,7.9718,15.8663,3.3023,5.293,3.8755,1.75,1.4954,4.4202,11.3454,3.2331,2.6892,10.8611,2.5252,2.4128,2.5384,12.1539,2.0758,4.1579,1.2581,14.0931,5.145,9.52,5.0389,12.1238,9.1019,8.6015,8.531,3.8092,1.7972,4.6247,,,,,,,,,,,,,,,65,,,
-4118,1.2919,2.0084,,60-69y,Other,,,16.9012,5.112,2.8303,2.3921,1.4451,ppmi,,,F,,0.41635,4.7688,4.022,0.806,9.8886,1.6264,0.40011,3.2825,2.9912,49.949,13.7032,193.3195,3.8864,5.1949,1.6309,1.9423,3.7272,7.5021,2.3181,3.0234,0.46305,6.6765,11.0503,13.6535,7.8684,2.4529,4.6545,1.9278,18.3627,6.5931,4.3262,0.98264,2.3029,7.3059,13.235,3.5097,4.6179,2.994,1.5537,1.1944,4.1605,11.0736,3.2253,2.2361,12.5755,2.0914,2.4838,2.2821,11.3154,1.8279,3.727,1.2872,13.156,5.1845,9.8997,4.0007,11.3362,7.4706,7.972,7.8515,3.519,1.4077,4.1341,,,PD,0.078176,PD,,PD,0.38465,4.3075,3.9161,0.7945,10.9074,1.8981,0.41439,3.4078,2.984,49.2147,13.2587,195.364,3.8835,5.2321,1.6016,1.7677,4.0551,7.5829,2.1909,3.2646,0.46944,7.0191,11.3444,13.0281,8.5216,2.263,4.6307,1.8954,17.4597,5.8334,4.0698,0.96523,2.2323,7.825,13.3835,3.0762,4.5359,3.1734,1.5171,1.2224,4.1126,11.0995,2.8738,2.2924,9.8552,2.193,2.4003,2.1145,12.2585,2.0089,3.8353,1.2279,13.6273,5.2404,8.971,4.3412,11.5556,7.3821,7.7337,7.2742,3.3292,1.4987,3.9133,,,,,,,,,,,,,,,60,,,
-41184,1.7331,2.5484,,70-79y,Other,,,18.3319,4.3593,2.4795,2.0635,1.7782,ppmi,,,F,,0.40848,4.247,4.0762,0.7399,9.3159,1.3785,0.3825,3.1786,3.0166,45.8524,14.2273,200.8542,4.209,5.1023,1.4899,2.1164,3.4969,6.9498,2.0523,2.8002,0.59186,6.1128,11.0025,22.7404,7.3071,2.3361,4.5478,1.6991,17.1034,6.2734,3.8188,0.88688,2.5703,7.0423,13.0547,3.4084,3.8296,3.5294,1.5428,1.2632,4.3118,10.1414,3.1777,2.3807,10.6433,2.3839,2.3023,2.4878,13.0686,2.1244,4.05,1.2406,14.4838,5.2692,8.0366,3.5477,10.3773,7.2584,7.7794,7.5301,4.0599,1.847,4.5125,,,,0.080071,Other,,GENPD,0.3271,3.9378,4.0771,0.77506,9.9809,1.5876,0.36999,3.9753,3.2042,46.2142,13.6015,206.035,3.9996,5.5156,1.5523,1.9607,3.5374,7.5535,2.0168,3.0934,0.71641,7.6533,11.052,22.5065,8.4608,2.0832,4.3951,1.6707,17.4152,6.1946,3.6661,1.0713,2.8114,7.8753,13.2588,3.5631,4.2321,3.4372,1.5034,1.245,3.788,10.1199,2.9626,2.4216,9.4816,2.0398,2.2137,2.1978,12.8864,1.9702,3.9312,1.1182,12.7568,5.2845,7.4749,4.8488,10.517,7.5366,7.6852,7.3277,3.4813,1.5637,4.3089,,,,,,,,,,,,,,,77,,,
-4121,1.6922,2.7635,,60-69y,Other,,,17.5801,4.9284,2.3121,2.2469,2.3097,ppmi,,,F,,0.44223,4.1809,3.8662,0.78064,8.6618,1.2576,0.37752,3.2326,3.2724,45.3976,12.9744,206.3737,3.8521,4.0629,1.5035,1.8046,3.5317,6.5745,2.1517,3.1197,0.51824,6.528,10.768,20.4307,8.1049,2.0691,4.2302,1.7977,18.4386,5.9651,3.7715,1.224,2.5613,6.1601,12.8813,3.6827,4.6751,3.2644,1.5091,1.2488,4.3254,10.1962,3.1109,1.9589,11.033,2.4674,2.2825,2.031,11.5639,1.8775,3.8139,1.2651,13.7791,4.4788,9.1864,3.657,12.0691,5.8079,7.9046,6.4723,3.8582,1.5018,4.3827,,,,0.080267,CN,,HC,0.39784,3.9726,3.8478,0.79442,9.6549,1.4581,0.39068,3.317,3.4681,44.8083,13.3034,206.8652,3.6367,4.5025,1.5573,1.8411,3.3567,6.7459,2.0309,3.3535,0.62612,6.3967,10.7934,22.4877,8.6696,1.8704,4.3022,1.6825,17.9015,4.8192,3.5566,1.2424,2.7481,6.863,13.6596,2.975,4.3351,3.1721,1.3226,1.151,3.7666,9.6904,2.7067,2.0082,9.9224,1.7467,1.9705,1.8846,12.4246,1.6162,3.894,1.2285,13.2048,4.4117,7.2914,4.6518,10.8067,6.9474,7.3665,6.7961,3.3554,1.2649,4.156,,,,,,,,,,,,,,,68,,,
-4122,1.3388,2.3881,,60-69y,Other,,,15.4793,4.7861,2.4775,2.2728,1.2561,ppmi,,,F,,0.45214,4.9602,5.1185,0.98396,10.7352,1.8217,0.46612,4.1771,2.9642,52.8341,13.161,199.7723,5.0275,6.47,1.9109,2.7489,3.732,8.5778,2.6035,3.5656,0.52822,7.3574,13.6019,13.7664,9.3136,2.7746,5.638,2.0236,23.8407,7.2872,4.7694,1.4391,3.1374,7.5619,15.7683,5.586,5.4177,4.6716,1.925,1.3155,5.009,12.9337,3.5932,2.6458,14.7641,2.919,2.8405,2.6131,15.8979,2.5366,4.597,1.4197,17.1883,5.939,10.5858,5.2064,13.4937,8.2471,7.9586,9.4725,5.7613,2.1437,4.2029,,,PD,0.062044,PD,,PD,0.40324,4.4348,4.9478,0.91545,11.449,1.9961,0.4419,3.8293,3.2008,50.2163,12.4986,204.6311,4.6914,6.1679,1.8126,2.3865,4.2005,8.5279,2.4764,3.6525,0.68013,7.3225,13.4611,12.6093,9.2965,2.7854,5.452,1.9672,23.5065,6.1947,4.6092,1.1401,2.8034,8.7735,15.4171,3.8587,4.9811,4.178,2.102,1.32,4.5605,12.4641,3.1028,2.5866,12.7413,2.6639,2.8524,2.3638,16.1214,2.4844,4.3356,1.3742,17.5524,6.005,9.4452,6.3012,12.9842,8.2912,7.6804,9.7778,4.7886,1.9369,4.0584,,,,,,,,,,,,,,,65,,,
-4123,0.74877,1.6812,,60-69y,Other,,,18.397,5.0628,2.7782,2.3105,0.83876,ppmi,,,M,,0.43005,4.2297,3.9377,0.86466,9.1646,1.4325,0.40367,3.0124,2.5724,46.8198,14.5851,197.622,3.5347,4.3857,1.6211,1.8301,3.0797,6.7072,2.0953,2.9535,0.29937,6.2991,10.9913,6.0034,6.8312,2.3443,4.5214,1.7152,17.5622,6.034,3.8362,1.0001,2.473,6.0733,13.4287,3.1033,3.8676,3.1429,1.5641,1.0791,4.1932,10.3477,2.9317,2.113,11.7255,2.043,2.5469,2.1545,12.9251,1.8591,4.2721,1.221,14.8191,5.0475,8.4332,3.4202,11.0247,6.6114,7.9149,7.1063,3.6339,1.5589,4.4126,,,PD,0.079205,PD,,PD,0.3847,3.5713,3.8102,0.84275,9.8499,1.6275,0.4141,2.9511,2.5502,47.2304,14.9144,198.8066,3.2497,4.5283,1.6684,1.786,3.4576,6.9607,2.2354,3.287,0.51528,6.5582,11.1239,6.4913,7.5155,2.1805,4.3125,1.7542,16.8154,5.6943,3.9253,0.97182,2.54,7.1857,13.4537,2.6157,3.8991,3.1279,1.5086,1.0917,3.7824,10.2644,2.7301,2.0446,9.3165,1.8968,2.3065,1.8007,11.6139,1.5831,4.031,1.206,14.5493,5.324,8.015,4.5404,11.5,6.3934,7.6341,7.3517,3.0549,1.325,4.1756,,,,,,,,,,,,,,,64,,,
-4124,1.7856,1.8635,,60-69y,Other,,,20.5301,5.7293,2.9187,2.4408,2.014,ppmi,,,F,,0.48897,5.0772,4.6446,0.92996,9.9804,1.6806,0.45199,2.8796,2.9274,47.9007,16.766,257.4131,3.733,4.4025,1.6032,2.1237,3.9514,7.9047,2.4318,3.3802,0.96763,7.5613,11.3449,26.3975,7.962,2.9689,4.7258,2.1922,19.6231,7.1149,4.3365,1.0335,2.5647,6.9955,14.9772,4.3697,4.5439,3.3208,2.0611,1.7395,4.3628,11.3148,3.2634,2.3176,10.1587,2.2775,2.8811,2.2909,9.6844,2.2576,3.5266,1.449,12.3321,5.314,9.4774,3.9411,10.7036,8.3254,8.7477,8.1728,4.5086,1.4107,5.5832,,,PD,0.058239,PD,,PD,0.45889,4.5685,4.3301,0.94632,12.3829,1.8331,0.40803,3.2122,2.9642,48.5882,16.3956,264.6674,3.9057,5.0758,1.7812,2.0095,3.8047,7.557,2.363,3.6892,0.47634,7.5344,11.9593,22.0065,8.9292,2.7723,4.7056,2.1585,19.9533,5.7793,3.8891,1.1704,2.8535,7.6947,15.892,3.1095,4.5334,3.6362,1.9536,1.77,4.2286,11.4805,3.1046,2.3484,9.206,1.9066,2.507,2.2337,9.6416,1.9639,3.0124,1.3104,13.5843,5.3178,8.9458,4.1792,9.8771,8.8208,8.5251,9.605,4.5042,1.5045,5.1872,,,,,,,,,,,,,,,60,,,
-4126,1.2418,2.0882,,70-79y,Other,,,20.1907,5.4865,3.0874,2.5637,1.2013,ppmi,,,M,,0.53397,5.2656,4.5569,0.91909,10.6892,1.704,0.42647,3.1375,3.2965,53.2176,18.1195,264.3217,4.4806,5.0363,1.8514,2.1455,4.142,8.0999,2.5142,3.7677,0.59207,6.7183,13.2754,17.2515,8.5576,2.5651,5.2396,2.0519,21.4928,6.4824,4.4029,1.282,2.9869,7.9107,16.414,3.0571,4.4686,3.4635,1.5393,1.5908,5.1147,12.8774,3.6715,2.6671,12.6965,2.8862,2.5643,2.5052,13.1121,2.4835,4.8375,1.4188,16.5003,6.0736,10.6136,3.5651,11.8687,8.7042,9.1762,8.6642,4.0684,2.0837,5.2394,,,PD,0.087758,PD,,PD,0.46035,4.5498,4.1462,0.90426,11.37,2.0122,0.43771,3.1961,3.4626,54.7629,18.3773,261.1217,4.7434,5.5643,1.813,2.0017,4.4861,8.3071,2.43,3.6829,0.5611,7.4356,12.145,13.9845,8.7094,2.4102,4.9468,1.9805,20.1251,6.1502,4.207,1.1919,2.6905,8.6293,16.624,3.0341,4.8754,3.8844,1.5366,1.4884,4.6845,12.6299,3.2546,2.8166,10.1722,2.5956,2.4692,2.456,12.3782,2.0624,4.6227,1.3597,17.2389,5.7899,8.8899,4.5322,10.7424,8.3025,9.1223,8.3729,3.8245,1.84,4.8668,,,,,,,,,,,,,,,71,,,
-41282,0.62126,1.62,,70-79y,Other,,,20.0972,5.0112,2.8629,2.244,0.77582,ppmi,,,M,,0.45315,4.2715,3.9072,0.95118,9.1925,1.5686,0.3676,3.9185,3.0764,49.4772,17.3618,217.4629,3.6528,5.3952,1.8093,1.7571,3.3761,6.9634,1.9701,3.1674,0.31817,6.8285,9.9962,8.3693,7.6467,2.3576,5.0225,1.6803,19.4255,6.8792,3.7682,1.1977,2.7998,6.7102,13.4106,3.723,4.4054,3.0364,1.4583,1.4978,4.0969,10.3305,3.2084,2.2338,12.4078,2.1888,2.3306,2.2245,13.2543,1.9802,4.448,1.0526,13.9711,5.3992,9.2415,3.9704,9.2656,7.5258,8.8245,7.1545,3.4325,1.544,4.9337,,,,0.070696,Other,,GENPD,0.39981,3.6074,3.9883,0.94992,9.4732,1.725,0.39038,4.0826,3.1275,50.7754,17.4147,224.5871,4.0672,5.9317,1.792,1.8764,3.7528,7.4527,2.129,3.4717,0.46228,6.7081,10.5547,6.6823,8.3756,2.1668,4.7053,1.6723,17.1216,5.108,3.6544,1.0711,2.8516,7.1531,13.6216,3.1308,4.4998,3.6107,1.4155,1.5031,3.6258,10.3375,3.0461,2.3014,11.9464,2.2969,2.1573,2.0782,12.5039,1.9991,4.3907,1.0283,15.4791,5.5936,8.9998,4.8728,10.1279,7.8136,8.4229,7.8046,3.068,1.5295,4.7879,,,,,,,,,,,,,,,73,,,
-41289,1.2489,1.6334,,50-59y,Other,,,16.7668,4.5922,2.3078,1.9644,1.66,ppmi,,,F,,0.36818,4.3797,4.0916,0.86776,9.5841,1.6068,0.37522,3.371,2.7066,42.9802,13.6632,210.7389,3.8737,4.8212,1.6543,2.0517,3.3665,7.039,2.1381,3.1089,0.41986,6.9706,12.1959,11.366,7.888,2.5204,4.6004,1.7533,19.7827,6.6149,4.1552,1.114,2.794,6.693,15.4546,3.1875,4.3011,3.6303,1.5142,1.2513,4.4016,11.0823,3.0483,2.0565,11.9457,2.407,2.4762,2.2265,14.1338,2.7014,3.6726,1.1967,14.8033,5.4341,8.2512,3.5423,10.2248,7.2562,7.9639,7.8196,4.4502,1.9637,4.2427,,,,0.068553,Other,,GENPD,0.34755,3.572,3.9515,0.83858,9.8675,1.8325,0.38047,3.3159,2.8195,42.4732,13.046,215.3501,3.6758,5.1863,1.6421,1.9544,3.8815,7.208,2.1807,3.3252,0.4737,7.1175,11.5963,11.0656,8.44,2.4888,4.4363,1.8244,19.2102,5.0127,4.1451,1.016,2.7244,7.5493,15.2979,3.2219,4.2003,3.6353,1.727,1.1276,4.0046,11.1778,2.9331,2.0708,11.3802,2.0674,2.403,1.9437,13.5169,1.8567,3.726,1.1731,14.6802,5.3737,7.3748,4.7441,10.338,7.5664,7.7968,7.6948,4.142,1.4271,3.9978,,,,,,,,,,,,,,,57,,,
-41293,1.7609,3.2318,,60-69y,Other,,,16.7415,4.1792,2.2727,1.9964,1.5023,ppmi,,,M,,0.39868,3.8634,3.8387,0.79254,7.9876,1.1974,0.35047,3.0535,3.0333,44.9998,14.0829,201.2251,3.6302,4.0717,1.5492,1.8719,2.989,6.8327,1.6206,2.7386,0.89163,5.8456,10.7828,19.431,6.9442,1.9385,4.1784,1.3961,16.1259,5.2334,3.337,0.98825,2.5044,5.9083,12.6094,3.1632,4.0511,3.1843,1.3777,1.4029,3.6394,9.0155,2.8843,2.2541,10.5995,2.11,2.1277,2.0908,12.074,1.765,3.8511,1.0047,12.7252,4.7545,9.0098,3.3574,9.4934,6.7795,7.9647,7.0442,3.5836,1.4421,4.4789,,,,0.062971,Other,,GENPD,0.353,3.572,3.8073,0.79486,9.5237,1.2766,0.36827,2.9892,3.1739,45.815,14.0283,206.156,3.4253,4.1575,1.6368,1.9681,3.0738,7.0396,1.8416,3.1046,0.6944,6.6831,10.6704,13.6982,7.5374,1.7699,4.1154,1.5266,15.6082,4.7622,3.1584,1.1008,2.5353,6.4786,13.3212,2.9894,4.0917,3.3513,1.4121,1.3864,3.4869,9.4785,2.9021,2.2404,9.5924,2.175,1.9506,1.873,11.5796,1.8436,4.0258,1.02,11.9164,4.6776,7.8764,3.9112,9.216,7.0923,7.6298,7.1578,3.3142,1.4396,4.3379,,,,,,,,,,,,,,,68,,,
-4135,1.8092,3.1957,,50-59y,Other,,,18.9162,4.8338,2.9183,2.3596,1.3516,ppmi,,,M,,0.47045,5.5627,4.5971,0.83553,10.0914,1.6823,0.40371,3.2649,3.1952,48.2593,17.3381,279.0317,4.3575,4.6381,1.6584,2.0221,3.914,7.5048,2.2197,2.8831,0.56134,6.849,11.0493,21.8747,7.5269,2.4579,5.1286,2.1451,19.5576,6.1752,4.1268,1.2197,3.3212,8.6683,13.1174,3.8604,4.3415,3.1469,1.5888,1.5696,4.4772,11.054,3.0772,2.6784,11.9128,2.4472,2.3104,2.6,14.2606,1.9903,4.7051,1.3664,16.1112,6.5913,8.5399,3.7687,10.496,6.7544,8.4004,7.2421,3.9248,1.8838,4.8412,,,PD,0.077655,PD,,PD,0.43285,5.1043,4.1705,0.84368,10.4186,1.7766,0.42555,3.5126,3.5261,48.9348,16.7276,279.0882,3.6777,4.9122,1.6499,1.9998,4.1664,7.6088,2.0949,3.069,0.67875,7.0216,10.9742,18.1354,8.5334,2.2309,5.0737,1.8933,19.6254,5.3281,3.7184,1.2405,2.8936,9.2258,12.8018,3.403,4.2811,2.8475,1.659,1.541,4.0785,10.3807,2.7451,2.4314,11.5275,2.0239,2.2077,2.1193,12.703,1.6654,4.634,1.2952,15.2264,6.3531,8.0559,3.9346,10.0515,6.8795,8.3188,7.3192,4.1284,1.4245,4.5532,,,,,,,,,,,,,,,56,,,
-4136,1.4175,2.0768,,60-69y,Other,,,18.747,5.7217,2.6362,2.6044,1.3449,ppmi,,,M,,0.44887,4.8921,4.8171,0.99489,10.3399,1.5375,0.40923,3.9516,3.3316,53.679,16.6247,234.0622,4.3168,5.3238,1.9068,2.1304,3.7554,8.4047,2.1137,3.4857,0.59114,7.5938,12.0961,13.2727,8.5863,2.308,4.6735,1.9065,18.467,7.4031,4.1639,1.264,2.8166,7.9741,15.2781,4.1889,5.1491,3.3346,1.4588,1.2357,5.1628,12.2975,3.7022,2.8488,13.7914,2.7118,2.5043,2.4929,13.6372,2.4063,4.7913,1.2678,15.3032,5.7878,9.3001,4.0844,10.9395,8.409,8.1775,8.6182,4.1356,1.9734,4.5837,,,PD,0.082726,PD,,PD,0.41711,4.3595,4.2455,0.96137,11.4042,1.8662,0.41596,3.846,3.591,53.8025,16.2317,232.8353,4.1831,5.4441,1.8802,1.8858,4.0894,8.3289,2.0788,3.6183,0.58128,8.2066,12.7101,12.5179,8.9361,2.3061,4.5347,1.7994,18.3356,5.7969,3.943,0.99143,2.7431,8.5278,15.8051,3.4741,5.1926,3.342,1.4958,1.2403,4.5308,11.9881,3.393,2.5609,12.1589,2.1008,2.4073,2.2801,14.2916,1.8711,4.5985,1.2463,15.1815,5.932,9.102,5.0014,11.5496,7.8692,7.9795,8.5993,3.6776,1.6622,4.481,,,,,,,,,,,,,,,67,,,
-41380,0.91971,1.7484,,60-69y,Other,,,15.774,3.8145,2.2452,1.9529,0.96132,ppmi,,,F,,0.40141,3.7557,3.7557,0.8155,8.9205,1.4463,0.34735,2.7783,2.8068,38.7231,13.3066,207.0904,3.4197,3.9036,1.6146,1.6914,3.1479,6.3263,1.7623,2.8607,0.32597,5.9736,9.745,11.2577,6.2473,2.2648,4.1267,1.546,17.708,5.6429,3.4029,1.1069,2.3566,5.7034,12.4487,2.9515,3.7343,3.1432,1.3746,1.3662,4.1441,10.6474,2.7453,1.9634,11.3662,2.2225,2.2499,2.0689,13.3313,1.9865,4.0471,0.91472,12.5672,4.857,8.2283,2.9091,10.7554,7.0778,7.7281,7.3789,3.7554,1.4048,4.2939,,,,0.065225,Other,,GENPD,0.35997,3.3196,3.5198,0.80312,9.4715,1.5682,0.36335,2.7172,2.8429,37.9335,12.6657,211.6301,3.2087,4.0682,1.5949,1.6953,3.5501,6.4038,1.9028,3.1781,0.47645,5.7497,10.1249,9.0411,6.9687,2.0312,4.0179,1.6008,17.6861,4.7403,3.3246,1.0005,2.3401,6.6081,12.4402,2.4813,3.566,3.1011,1.3571,1.3876,3.8002,10.1985,2.6629,1.9689,10.003,1.7959,2.1156,1.8448,12.5302,1.8753,4.1173,0.9142,12.9553,4.5396,7.3945,3.7959,10.8205,6.4754,7.5265,7.63,3.1025,1.3527,4.096,,,,,,,,,,,,,,,60,,,
-41382,0.80739,1.446,,50-59y,Other,,,18.2595,4.5898,2.5383,2.2026,0.94396,ppmi,,,M,,0.43604,4.0105,4.0754,0.83315,9.1346,1.3643,0.36655,2.7128,3.0465,47.0988,15.4559,227.0712,3.964,4.3957,1.5979,2.0082,3.2519,6.8986,1.9941,2.9322,0.33386,5.9827,11.7414,8.4962,6.6619,2.1129,4.1784,1.7642,17.4999,5.9733,3.7377,1.113,2.6834,6.7257,14.2465,3.1611,3.9467,3.0961,1.3742,1.4912,4.0899,9.8408,2.9548,2.1845,10.0457,2.5225,2.3622,2.1585,12.1136,1.969,4.2081,1.1143,13.5262,5.0785,8.7248,3.6852,9.3112,6.4455,8.0234,7.8521,3.4944,1.6177,4.5964,,,,0.081207,Other,,GENPD,0.40493,3.8236,4.0144,0.81787,9.4873,1.7299,0.37339,2.9833,3.1405,47.0799,15.153,229.818,3.7488,4.7251,1.6489,2.0959,3.4473,7.3311,2.0224,3.1706,0.51138,5.9228,11.4444,8.4782,7.3419,2.2034,4.3263,1.629,16.6383,5.3228,3.7279,0.94548,2.4395,6.8674,12.8772,2.7672,3.9039,3.668,1.5835,1.4943,3.7459,9.8304,2.7133,2.1752,9.9479,2.3104,2.1923,2.0061,11.9871,1.9523,4.0604,1.1256,14.0818,4.9558,7.6831,4.63,9.6497,6.9578,7.774,7.8139,3.7082,1.4797,4.4172,,,,,,,,,,,,,,,59,,,
-41384,0.96422,1.335,,60-69y,Other,,,16.2808,3.8379,2.0328,1.8722,0.89682,ppmi,,,F,,0.37295,3.8632,3.4071,0.68783,7.7848,1.3732,0.33231,2.856,2.3177,37.0179,12.9019,192.0613,3.2231,4.3111,1.3107,1.518,3.0441,6.0529,1.7291,2.7034,0.42416,5.1534,9.0345,6.841,6.2062,2.0608,4.1536,1.5159,15.9102,4.682,3.4967,1.0808,2.2434,5.8457,11.4022,2.7996,3.6353,2.5672,1.2199,1.3143,3.8072,10.0999,2.5322,1.8287,10.8018,1.8406,2.1882,1.7271,11.3005,1.5626,3.4564,1.0502,12.7269,4.5579,8.0484,3.4276,10.7315,6.0992,7.5995,6.228,3.0295,1.1268,4.2048,,,,0.067623,Other,,GENPD,0.34695,3.4922,3.3267,0.69264,8.8471,1.4838,0.33833,2.9619,2.3926,37.5834,12.7694,197.9279,3.3013,4.0432,1.4116,1.5116,3.2378,6.215,1.7755,2.8521,0.45579,6.0915,9.6084,6.1816,6.6964,1.9009,4.0861,1.5046,15.1877,4.6661,3.317,0.92606,2.1845,6.0452,11.2283,2.726,3.57,2.9086,1.253,1.3143,3.5271,9.7613,2.3868,1.8464,9.4202,1.9263,2.0009,1.6486,11.2437,1.6433,3.4118,1.0105,12.9473,4.5751,7.702,4.222,9.735,6.3835,7.5975,6.619,2.9376,1.176,4.0055,,,,,,,,,,,,,,,62,,,
-4139,1.7417,2.5211,,50-59y,Other,,,19.3329,4.8361,2.625,2.3625,1.4993,ppmi,,,M,,0.41642,4.8709,4.2088,0.87979,10.0668,1.5648,0.39236,2.956,2.8494,47.27,14.1858,193.1072,4.3889,3.8722,1.8643,1.9057,3.7742,7.434,2.157,3.062,0.61114,6.3596,11.4916,17.5637,7.5943,2.3818,4.6077,1.9446,20.517,6.1944,3.8189,1.085,2.2914,7.3346,13.6902,2.9864,4.4831,2.9215,1.4206,1.1936,4.828,11.8729,3.4695,2.2471,13.1169,2.341,2.3184,2.0726,12.9259,1.7418,4.2627,1.313,13.7594,5.0045,9.8709,3.2287,11.9793,6.8039,7.9004,7.8068,3.6226,1.3593,4.6912,,,PD,0.09852,PD,,PD,0.36999,4.5428,4.1439,0.84215,10.7287,1.7335,0.40442,3.117,2.8922,46.9091,13.8143,198.1396,4.6238,4.2662,1.725,2.1156,3.8187,7.82,1.9543,3.1344,1.1237,7.0559,11.2995,18.6153,8.356,2.2702,4.5809,1.7876,19.5583,5.6878,3.5864,0.91543,2.1385,7.9645,13.7306,2.9702,4.4321,3.5918,1.517,1.1831,4.367,12.0942,3.1595,2.4185,11.4971,2.2897,2.2239,2.0433,12.4516,1.7239,4.1147,1.2371,14.13,4.9347,7.796,3.9078,12.6145,6.9666,7.7955,7.8783,3.4572,1.4823,4.4982,,,,,,,,,,,,,,,57,,,
-41399,0.80312,1.1682,,-50y,Other,,,20.5299,4.3124,2.6153,2.1803,1.1144,ppmi,,,F,,0.45407,4.7303,3.8673,0.86945,9.6593,1.6643,0.38544,3.1973,3.2422,47.2756,17.5979,235.1538,3.6963,5.0785,1.6757,1.9082,3.6883,7.1636,2.0713,3.0778,0.43337,6.8084,10.4652,15.351,7.7102,2.5845,4.7517,1.9444,20.5914,7.1275,4.0245,1.1297,2.5799,6.9898,13.1007,3.5754,4.3619,3.5119,1.5747,1.5734,3.8275,10.4121,3.149,2.0582,12.0414,2.3386,2.4985,2.0408,14.3376,2.0765,4.0994,1.1281,14.1548,5.0217,9.0374,4.314,10.6471,7.304,8.7476,7.5043,3.9576,1.4929,5.0026,,,,0.076672,Other,,GENPD,0.39223,3.6221,3.6986,0.84326,10.4344,1.8048,0.38266,3.3365,3.2364,47.7519,16.9043,238.747,4.0303,5.4929,1.7443,1.8908,3.9062,7.5501,2.2291,3.2706,0.48089,7.2623,11.5501,11.4683,8.3275,2.4274,4.3346,1.9027,19.6444,5.6965,4.0113,1.0047,2.5791,8.3077,13.8816,3.5527,4.714,3.2553,1.7151,1.5463,3.6124,10.867,2.8652,2.1768,10.1793,2.2756,2.2119,1.8637,13.4381,1.9093,4.058,1.1181,14.2679,5.6361,8.2985,4.8236,11.3407,7.332,8.6113,7.9147,3.8598,1.44,4.7511,,,,,,,,,,,,,,,49,,,
-41401,0.59938,1.1598,,-50y,Other,,,19.1923,4.9443,2.8027,2.1873,0.7455,ppmi,,,F,,0.5406,4.3472,4.1669,0.8693,9.3244,1.5602,0.4049,3.3217,3.3174,49.4049,16.1611,227.6573,3.8835,4.8489,1.615,1.9494,3.2767,7.0215,2.1011,3.2573,0.34638,6.5679,11.0005,5.9027,7.3108,2.4829,4.757,1.7565,19.0728,6.6962,3.9632,1.2874,2.8092,6.3461,13.8771,3.2101,4.2586,3.5737,1.5782,1.5291,4.2385,10.9705,2.983,2.0851,12.1022,2.0948,2.5038,1.9928,13.3531,1.8316,4.3123,1.1935,14.5088,5.2549,8.7534,4.1229,12.2698,7.4099,8.6283,7.318,4.1769,1.3739,4.8429,,,,0.076414,Other,,GENPD,0.50035,3.9073,3.7984,0.84442,10.6293,1.7561,0.41192,3.2156,3.4699,48.8638,15.7361,229.5184,4.0294,4.6749,1.5823,1.8581,3.7102,7.1092,2.1146,3.3433,0.48657,6.4506,11.4357,7.1992,7.7467,2.3052,4.7403,1.7596,18.9105,5.0345,3.7613,1.1752,2.6909,7.421,13.7467,2.5621,3.8872,3.7321,1.5572,1.5519,3.8338,10.4051,2.7599,2.0363,11.7906,2.0483,2.2893,1.8271,13.9209,1.7528,4.1595,1.1653,13.6017,5.3728,9.0056,4.4368,11.4088,7.5456,8.4103,7.2812,3.6926,1.3637,4.6368,,,,,,,,,,,,,,,38,,,
-41405,1.084,1.9437,,60-69y,Other,,,17.6978,4.4211,2.3009,2.0623,0.96439,ppmi,,,M,,0.43688,4.1304,4.3144,0.90158,8.4824,1.5537,0.41325,2.8621,2.6134,41.7925,14.0537,210.1568,3.3106,4.6558,1.8152,1.9856,3.4379,7.2943,2.0441,3.0869,0.45417,6.1798,10.9825,10.8718,7.3031,2.3935,4.572,1.6571,17.3057,5.6212,3.9356,0.9955,2.4053,6.9522,13.5249,3.1066,4.0019,3.0455,1.485,1.4388,4.3569,10.737,3.3965,2.1615,11.9809,2.2682,2.5454,2.0565,12.2147,2.1566,4.7106,1.2354,15.2765,5.1868,8.9277,3.2016,9.0003,7.1026,8.0864,7.4515,3.6709,1.4768,4.6494,,,,0.073024,Other,,GENPD,0.39659,3.3389,4.0369,0.85994,10.2776,1.4877,0.41871,3.1175,2.6655,42.1327,13.8742,216.4793,3.8277,4.2927,1.759,1.9327,3.6298,7.4,2.0224,3.2626,0.43054,7.1166,11.1126,7.9485,7.7796,2.1695,4.2927,1.7924,17.2244,5.7315,3.5737,1.1903,2.1793,7.8923,13.3897,3.1472,4.3228,3.2671,1.6939,1.4459,4.0958,10.0864,3.1795,2.4837,9.8145,2.4817,2.4363,1.9243,12.2233,2.0032,4.6878,1.1999,14.459,5.2086,7.9474,3.7516,10.0759,6.6672,8.0505,7.2124,3.5698,1.5885,4.5003,,,,,,,,,,,,,,,63,,,
-41410,1.3225,2.0157,,-50y,Other,,,19.2441,4.9706,2.6768,2.2157,0.96963,ppmi,,,F,,0.47053,4.9441,4.383,0.86687,9.9222,1.8357,0.391,3.481,3.231,50.1614,16.9363,238.9893,4.0685,4.6597,1.7322,1.8992,3.7899,7.9361,1.9759,3.1123,0.46788,6.8998,11.284,14.8539,7.4969,2.7066,5.1853,1.9387,20.7068,6.7315,4.1581,1.0946,2.2491,7.5323,14.0122,3.5099,4.6176,3.8466,1.5619,1.5749,4.7651,10.6939,3.1935,2.2716,14.0923,1.9802,2.7949,2.2968,14.5602,1.8296,4.5164,1.1701,15.4884,5.3512,8.7284,3.6623,11.324,7.4529,8.7472,7.8254,4.0811,1.5696,4.8773,,,,0.062467,Other,,GENPD,0.44701,4.4,4.1854,0.82138,10.4249,1.8293,0.40274,3.3168,3.3229,49.0805,16.7254,240.0912,3.7203,4.9315,1.7161,1.9991,3.9617,7.8863,2.159,3.3212,0.39094,7.1903,11.842,13.2531,8.0935,2.3585,5.1009,1.9442,20.4038,5.7804,3.7285,0.91346,2.1728,8.3225,14.5696,3.0265,4.5803,3.6476,1.6852,1.5242,4.3805,10.9667,2.9485,2.0794,11.1629,1.8374,2.6286,1.9763,14.3478,1.7494,4.2954,1.1745,14.6865,5.4307,8.1106,4.2922,11.1734,7.5359,8.577,7.9359,3.8143,1.2717,4.6257,,,,,,,,,,,,,,,45,,,
-41411,1.0875,2.1965,,-50y,Other,,,17.0911,4.221,2.2613,1.8593,1.239,ppmi,,,M,,0.45851,4.3328,4.3316,0.79047,10.2685,1.3908,0.38775,2.6547,3.1532,42.6005,14.2273,213.2751,4.1449,4.4393,1.4844,1.9297,3.3887,7.1918,2.0478,2.9029,0.52824,6.8648,10.3763,12.774,7.1676,2.3223,4.6672,1.6858,18.3048,6.4527,3.9054,1.3921,2.787,6.6856,12.9626,3.4212,4.4837,3.4193,1.524,1.4387,4.5749,11.206,2.9571,2.3387,13.1286,2.5323,2.5696,2.2232,12.6834,1.9842,4.1411,1.2485,13.5333,4.8428,9.6322,3.6,11.8214,7.1062,8.5254,7.0474,4.2328,1.6194,4.6035,,,,0.075293,Other,,GENPD,0.44299,3.7694,4.1287,0.81732,10.7452,1.7369,0.39223,2.8485,3.1878,42.3965,13.7542,212.3182,3.7167,4.8128,1.5452,1.7558,4.0968,6.9675,1.987,3.0794,0.68122,6.846,11.4409,11.5679,7.3929,2.2588,4.4606,1.6395,17.3588,5.0324,3.7116,1.1367,2.48,7.3052,13.9201,3.3204,3.9485,2.9679,1.5314,1.4515,4.1745,11.2229,2.6642,2.2182,10.6035,2.5373,2.3641,1.8431,12.4666,2.2219,4.0827,1.0931,14.2377,4.8698,8.4008,4.0492,11.4947,7.2768,8.1832,6.9625,3.2709,1.341,4.3797,,,,,,,,,,,,,,,42,,,
-41412,1.0503,2.48,,-50y,Other,,,18.3157,4.7486,2.8067,2.3773,1.3443,ppmi,,,F,,0.47525,4.1925,3.2595,0.82702,8.9721,1.421,0.37551,3.2017,3.3025,51.8723,16.7769,217.3161,3.6694,4.4007,1.5737,1.6342,3.1066,7.458,1.8547,3.0825,0.36841,6.3375,11.5265,10.8587,7.5815,2.1727,4.5327,1.6425,18.0217,6.0073,3.6331,0.92413,2.4968,6.2198,14.1226,3.3091,4.3562,3.3039,1.1933,1.3953,4.0188,9.5781,3.0907,1.9272,11.6839,2.1416,2.3142,2.0199,12.698,1.8284,4.0351,1.0218,13.4855,4.7814,9.0036,4.1122,9.5206,7.1601,8.1298,7.2377,3.3833,1.3997,4.6075,,,,0.078847,Other,,GENPD,0.4144,3.6898,3.1882,0.82843,10.4243,1.5793,0.37769,3.3261,3.3526,51.4377,16.0925,219.2291,3.2883,5.0634,1.6359,1.6292,3.2508,7.52,1.8292,3.3138,0.33263,6.3658,11.2177,9.7237,8.5168,2.1214,4.5317,1.5594,17.1496,4.6995,3.389,1.1678,2.7132,7.0287,14.0449,2.574,4.1256,3.4046,1.3315,1.3925,3.5916,9.8817,2.9149,1.8245,10.6238,2.0815,2.1723,1.8075,11.8408,1.8636,3.9696,0.98812,12.991,5.0762,8.0689,4.2706,10.2672,7.0532,7.863,7.4855,3.2673,1.3503,4.4322,,,,,,,,,,,,,,,45,,,
-41420,0.93373,1.8086,,60-69y,Other,,,18.5941,4.4196,2.6051,2.2386,1.0292,ppmi,,,M,,0.41784,3.984,3.7098,0.80423,7.9589,1.4132,0.36625,3.2104,2.8597,44.8043,15.9877,219.7994,3.4925,4.7324,1.5375,1.7074,3.1355,6.5175,1.8317,2.9487,0.37873,6.4944,9.8322,9.1261,7.3011,2.1653,4.2738,1.6455,17.904,6.0359,3.5642,1.0212,2.5859,6.1759,12.0341,3.3222,4.4443,3.2214,1.3427,1.341,4.2178,9.9632,2.9024,1.982,10.0663,2.2556,2.3551,1.9957,12.7238,2.0666,3.9564,1.0998,14.0502,5.0586,7.7476,4.2432,9.924,6.6404,7.7234,7.0923,3.5053,1.412,4.6123,,,,0.071051,Other,,GENPD,0.3809,3.1348,3.6136,0.80366,9.0962,1.6018,0.37591,3.3271,2.883,44.0062,15.2336,221.4399,3.5427,4.7844,1.6083,1.7479,3.4287,6.7304,1.8775,3.1497,0.45566,6.5831,10.5239,7.5824,7.9491,2.0765,4.15,1.7187,17.71,4.8541,3.4271,1.0112,2.2127,7.2001,12.9844,2.8685,4.3275,3.6963,1.4215,1.3142,3.8033,9.708,2.8035,2.064,9.6151,1.9124,2.1531,1.8163,12.3941,1.7665,3.9312,1.0515,13.1108,5.0596,7.631,4.4561,10.428,6.2785,7.5442,7.0675,3.205,1.2821,4.4327,,,,,,,,,,,,,,,65,,,
-41486,1.3652,1.7235,,60-69y,Other,,,21.5692,5.4842,3.0407,2.4606,1.3383,ppmi,,,M,,0.48479,4.9071,4.2295,0.84299,9.0157,1.5589,0.38884,3.2478,2.9644,49.9439,19.7129,253.4404,3.6537,4.937,1.5043,2.1284,4.0789,7.157,2.0766,2.9895,0.38644,6.5456,10.8928,12.2955,7.7675,2.5588,4.699,1.909,17.6187,5.7013,3.9521,1.0072,2.4886,7.545,13.1039,3.7582,4.5397,3.2442,1.7163,1.6304,4.3733,11.4167,3.0837,2.2155,11.5901,2.3336,2.5501,2.2023,12.4537,1.9702,4.5652,1.2257,14.6546,5.5506,7.9622,4.3504,11.3434,6.6821,8.6692,7.0693,4.1141,1.6069,5.3089,,,,0.074835,Other,,GENPD,0.45738,4.1839,3.8631,0.81519,9.7701,1.7955,0.39995,3.1465,3.1416,49.6578,19.7889,261.2931,4.049,5.3664,1.511,1.9772,4.235,6.9483,2.1541,3.1133,0.36885,6.6826,10.4959,12.633,8.35,2.2999,4.5821,1.9964,17.9084,5.0064,3.8361,1.2241,2.6227,8.6469,12.9084,3.5914,4.2741,3.0368,1.6641,1.6132,3.7685,11.4581,2.7269,2.283,10.5867,2.3817,2.3432,2.0813,12.1837,2.064,4.5014,1.1699,15.3159,5.6438,7.5559,4.8822,10.2411,7.1085,8.4129,7.1996,3.489,1.6301,5.1589,,,,,,,,,,,,,,,64,,,
-41488,1.5964,2.3636,,70-79y,Other,,,16.349,4.9728,2.5791,2.2494,1.5972,ppmi,,,M,,0.45844,4.9567,4.7595,0.9932,9.1324,1.6677,0.41276,3.3692,3.0187,45.3761,14.378,232.7779,4.3729,5.2381,1.8263,2.1642,3.9585,7.149,2.2415,3.1592,0.63642,6.75,10.6684,17.0112,7.8343,2.5278,5.3062,1.9576,21.52,6.8651,4.0158,1.3311,3.1801,7.5971,14.3975,4.0899,4.3245,3.4525,1.6527,1.2929,4.5054,11.274,3.3173,2.7933,12.0952,2.9687,2.3906,2.7527,14.8493,2.2726,4.4509,1.2747,17.7328,5.9915,9.1869,4.5372,10.8308,7.2793,8.0055,7.8575,4.5997,1.9142,4.332,,,,0.078794,Other,,GENPD,0.43111,4.4148,4.5255,0.92532,11.3237,1.9124,0.42426,3.5385,3.0615,45.7831,13.8938,231.0506,4.4088,5.2414,1.8233,2.0219,4.4282,7.4933,2.1702,3.3857,0.76072,7.266,10.9855,19.0505,8.0861,2.3896,5.2177,1.9652,21.8323,5.7541,3.866,1.338,3.0298,8.3862,14.3005,3.3579,4.4076,3.6829,1.5444,1.296,4.0715,11.0137,2.9606,2.7023,11.014,2.565,2.3408,2.5118,13.9247,2.1707,4.3051,1.1722,16.0185,5.8299,7.9708,4.8242,10.3717,7.8091,7.7255,7.9647,4.0314,1.8776,4.0638,,,,,,,,,,,,,,,71,,,
-41508,1.6424,1.6127,,70-79y,Other,,,17.2178,4.1647,2.404,2.1187,1.5211,ppmi,,,F,,0.40086,4.026,3.8449,0.75826,8.0015,1.4093,0.39343,1.8119,2.2917,41.5077,12.841,175.6702,3.7393,3.6839,1.5021,1.8049,3.0536,6.7372,1.8027,2.8015,0.61746,5.3261,10.5478,17.3883,6.3469,2.2779,4.0765,1.6015,16.9986,5.2651,3.6153,1.2076,2.5697,5.9885,13.0836,2.4675,3.4213,3.0813,1.4676,1.0589,4.0957,10.0976,2.934,2.214,10.9682,2.3405,2.3498,2.1134,11.1871,1.957,3.8091,1.1842,13.1855,4.5081,8.3872,3.16,9.8883,6.7793,7.0335,7.2162,3.8042,1.6402,4.206,,,,0.080125,Other,,GENPD,0.35905,3.5642,3.624,0.75975,9.3828,1.6521,0.38316,2.1455,2.5283,42.2647,12.3644,177.4697,3.7181,3.738,1.5781,1.742,3.4208,7.3056,1.8054,2.9542,0.65208,5.4922,11.1615,15.9298,7.0378,2.1348,4.2045,1.5851,16.3881,4.3405,3.496,1.0259,2.4403,6.3687,13.2045,2.1209,3.6092,2.8566,1.3873,1.0756,3.5609,10.3897,2.776,2.3468,9.801,2.1634,2.2352,1.9772,11.085,1.8205,3.6523,1.0942,13.6929,4.5463,7.4926,3.2248,9.6203,6.5298,6.9863,7.2141,3.0336,1.4053,4.0024,,,,,,,,,,,,,,,75,,,
-41521,1.1482,1.4484,,70-79y,Other,,,17.6704,4.2605,2.6796,2.1685,1.2256,ppmi,,,F,,0.37866,4.5312,3.7802,0.76048,8.2639,1.6216,0.3529,2.6541,2.7081,43.0713,14.7573,204.5858,3.6095,4.0242,1.4854,1.6978,3.1846,6.6356,1.9868,2.8435,0.41651,5.4442,9.7365,15.1583,6.6364,2.3382,4.7817,1.683,19.0685,5.2401,4.0161,1.2259,2.3191,6.2451,11.796,3.0324,3.7661,3.0304,1.4438,1.3212,4.0383,10.0699,2.8156,2.0512,12.1878,2.3355,2.5455,1.9636,12.3405,1.8947,3.3651,1.1088,12.6879,4.9251,8.3064,3.3915,9.8598,6.375,7.6051,7.1371,3.5567,1.3811,4.1729,,,,0.07434,Other,,GENPD,0.33144,3.8629,3.6891,0.77654,9.2328,1.7174,0.36118,2.7818,2.8313,42.7144,14.3525,208.7494,3.8598,4.2903,1.607,2.0047,3.6289,6.7274,2.026,3.0943,0.43834,6.0639,10.1908,11.6912,7.0049,2.1326,4.5161,1.7134,18.097,4.8492,3.8431,1.032,2.3502,7.254,12.2931,2.5459,3.8319,3.3635,1.6273,1.3226,3.7569,9.9632,2.589,2.0482,9.2764,2.1728,2.2438,1.8487,12.0359,1.7953,3.5873,1.061,12.7601,4.9817,7.4914,4.0687,10.36,6.4559,7.1812,7.5688,3.8117,1.3432,4.0435,,,,,,,,,,,,,,,71,,,
-41568,1.0515,1.3886,,60-69y,Other,,,21.3057,4.7346,2.429,2.21,1.133,ppmi,,,M,,0.45805,4.8797,4.6448,0.93746,11.3244,1.6971,0.41511,3.3168,2.7472,47.2568,17.3557,237.55,3.9623,4.8647,1.7604,2.1501,3.7623,7.6538,2.272,3.2779,0.45755,6.675,11.1616,12.8587,7.3167,2.6704,4.8538,1.9684,20.726,6.5177,4.2641,1.0132,2.6502,7.7174,13.5123,3.7474,4.3386,3.3727,1.6483,1.495,4.8875,12.2264,3.2331,2.3389,12.3867,2.5503,2.6588,2.3208,14.7086,2.3913,4.5592,1.2733,15.3334,5.4068,10.0096,3.7316,11.3543,7.1262,9.1779,8.4687,4.2674,1.7178,4.9884,,,,0.079092,Other,,GENPD,0.40647,4.1214,4.2471,0.88144,10.7592,1.958,0.41543,3.349,2.6796,47.4531,16.8839,240.752,4.1058,4.8846,1.7649,2.0215,4.0617,7.8616,2.2573,3.4893,0.42541,7.738,11.7887,10.055,8.3407,2.4549,4.7882,1.9872,19.3606,5.7929,4.0323,0.99418,2.7464,8.2482,13.6106,3.1231,4.6139,3.3522,1.6752,1.4681,4.6182,11.7939,2.9214,2.2486,11.2852,2.3719,2.6177,2.0771,14.1087,2.0753,4.2583,1.1907,15.1799,5.3991,8.458,4.3008,10.8122,7.1908,8.9821,8.483,3.5731,1.5543,4.7695,,,,,,,,,,,,,,,64,,,
-41578,1.4711,2.1227,,60-69y,Other,,,16.1952,3.985,2.5281,2.0428,1.3787,ppmi,,,F,,0.40417,4.5049,4.1541,0.7934,7.9217,1.4402,0.35432,2.5873,2.9925,43.9518,13.1144,187.2947,3.7284,4.1584,1.5829,1.899,3.1684,6.8323,1.7696,3.0297,0.55134,5.3927,10.2183,16.8808,6.4439,2.2088,4.4598,1.5857,17.693,4.952,3.5998,1.1118,2.3823,6.3989,13.202,2.7213,3.9669,3.1732,1.3815,1.2509,3.9819,10.4644,3.1308,2.1317,11.6565,2.0116,2.3361,2.2371,13.3117,1.9056,4.0737,1.0831,13.1432,5.2771,8.6731,2.8703,9.0313,7.1731,7.9583,7.5636,3.6215,1.4991,4.2954,,,,0.068128,Other,,GENPD,0.38562,3.8628,3.858,0.79159,9.8356,1.5906,0.38156,2.6864,3.2854,43.1394,12.9082,193.661,3.6437,4.0693,1.602,1.8493,3.523,6.7599,1.8594,3.1821,0.52518,5.8359,10.8729,14.9296,7.2496,1.9948,4.5554,1.5776,16.8174,4.3612,3.5055,1.2289,2.5498,7.2596,13.7063,2.3524,3.9226,2.9457,1.3847,1.2467,3.7259,10.1216,2.8019,2.0809,9.5528,2.5499,2.1403,1.8678,12.6621,2.0742,3.9857,1.1122,14.682,5.3277,8.0239,3.4099,9.7506,7.407,7.8598,7.8358,3.0727,1.4026,4.0006,,,,,,,,,,,,,,,69,,,
-41664,1.089,1.8787,,70-79y,Other,,,15.8726,4.5161,2.3598,1.9305,1.3282,ppmi,,,F,,0.52929,4.6782,4.1198,0.83043,8.4487,1.3809,0.39323,2.6189,3.6855,41.084,13.4319,193.7959,3.9022,3.5485,1.5383,1.8464,3.2804,6.8425,1.8766,3.0079,0.44215,5.5147,9.7069,18.2555,6.8524,2.1164,5.0352,1.7125,17.4939,5.1891,3.6212,1.0735,2.5774,6.9483,12.5049,2.5944,3.9519,3.0066,1.2543,1.376,4.0951,9.6898,2.9932,2.4029,10.3695,2.0724,2.133,2.1065,10.8166,1.611,4.4089,1.171,13.4946,5.1415,8.5084,2.6117,9.6933,6.6912,7.0792,7.0384,3.2644,1.3627,4.1144,,,,0.068634,Other,,GENPD,0.44604,4.1934,3.9631,0.78985,9.98,1.5167,0.3905,2.5996,3.8064,41.7353,13.5245,197.7696,3.7577,3.6591,1.5149,1.7294,3.7664,7.1115,1.9465,3.1356,0.48527,6.1323,10.4608,18.1952,7.2431,1.9068,4.6228,1.7912,17.5033,5.046,3.4047,0.94917,2.3362,7.5703,12.8926,2.5251,3.7746,3.2128,1.265,1.3778,3.5899,9.66,2.4833,2.2056,8.9317,2.0392,2.1982,1.8459,11.4749,1.6272,4.3259,1.117,13.8747,4.9157,7.2678,3.4612,9.3213,6.645,6.8133,7.3139,3.3072,1.2471,3.9611,,,,,,,,,,,,,,,72,,,
-41967,0.66871,1.54,,50-59y,Other,,,19.5281,4.7688,2.5054,2.1007,1.0307,ppmi,,,M,,0.46942,4.8875,4.6074,0.9534,10.4716,1.6756,0.42152,3.3816,2.8593,48.5641,17.152,240.7266,4.6489,4.523,1.857,2.248,3.7682,7.6638,2.0785,3.1277,0.32537,7.0257,12.2892,7.9049,7.6851,2.5597,4.7447,1.937,20.3134,7.1932,4.1092,1.1269,2.9929,7.4431,14.9201,3.8495,4.723,3.6335,1.6506,1.5593,4.6005,10.7819,3.3059,2.3485,11.2582,2.3106,2.6582,2.4051,13.3683,1.9602,4.4755,1.2496,15.0138,5.7057,9.2434,3.5852,10.5374,8.1416,8.5903,8.9324,4.1268,1.6708,4.8701,,,,0.071193,Other,,GENPD,0.4099,4.5238,4.2506,0.95065,11.5958,1.8601,0.41742,3.4692,3.0049,47.6816,17.0191,244.3878,4.4375,4.9819,1.9393,2.1876,3.874,7.8171,2.2248,3.2882,0.37807,7.1717,12.6117,7.0115,8.233,2.3771,4.4333,1.8714,20.2158,6.1954,3.9302,1.1404,2.9951,8.2512,15.7751,3.0754,4.5794,3.8623,1.6306,1.5493,4.2404,10.9904,3.0921,2.3666,10.0318,2.1699,2.4413,2.02,14.1414,1.9974,4.3256,1.2079,13.7782,5.82,8.3931,4.4629,10.3353,8.0604,8.3263,8.4989,3.7886,1.5776,4.7044,,,,,,,,,,,,,,,51,,,
-42171,1.5758,2.195,,-50y,Other,,,21.4885,5.9328,2.7864,2.4901,1.4076,ppmi,,,M,,0.59371,5.7732,5.0471,1.0477,11.0823,1.9,0.47314,3.5651,3.585,52.9992,17.7389,254.4529,5.1605,5.767,2.0754,2.3751,4.5565,9.2672,2.5906,3.722,0.59053,8.3875,13.3552,12.7602,9.7713,2.8784,5.9887,2.3601,23.9499,7.3313,4.4897,1.3329,3.0622,8.6052,16.3328,4.487,5.505,3.5006,1.7062,1.6434,5.8989,14.5189,4.0283,2.6716,14.7705,3.0768,2.634,2.8234,15.5549,2.5375,5.1781,1.5277,18.0591,6.5861,11.7905,4.1843,14.4157,8.851,9.2403,8.5622,4.4266,2.1341,5.3908,,,,0.082866,Other,,GENPD,0.54312,4.7689,4.6753,1.0679,12.0349,2.0328,0.50911,3.7818,3.7123,54.4278,17.3539,255.7958,4.8888,6.2804,2.1749,2.4204,4.9005,9.0946,2.7106,4.0562,0.78214,8.2691,13.1685,9.7875,10.5655,2.7274,5.5573,2.2253,23.0682,5.8445,4.5039,1.2335,2.9814,10.1949,17.4521,3.8108,5.0771,3.9158,1.9336,1.5149,5.0692,13.6215,3.5594,2.7061,13.5256,3.0867,2.4939,2.5276,14.9155,2.8099,5.3078,1.4836,18.0484,7.0906,10.0295,5.1493,12.9692,10.3197,9.0919,9.0833,4.7577,2.0502,5.1294,,,,,,,,,,,,,,,46,,,
-50028,1.4266,2.1489,,60-69y,Other,,,18.8371,4.4211,2.2874,2.173,1.1793,ppmi,,,F,,0.49374,4.4024,4.1988,0.88005,9.5258,1.4787,0.39531,3.7608,3.3481,44.9374,15.5676,220.1485,3.6708,4.9702,1.8054,1.957,3.3994,6.7831,2.1241,3.07,0.68261,6.2821,10.1687,16.8356,7.8476,2.263,4.8829,1.7663,18.6536,5.9094,3.8834,1.1132,2.5807,6.943,12.4701,3.6656,4.2312,3.3683,1.4728,1.4396,3.9338,10.2924,3.0733,2.3707,11.6677,2.1339,2.3434,2.419,14.3791,2.1101,4.5626,1.1955,15.2976,5.2363,9.0916,3.9875,9.4491,7.6375,7.9999,7.8437,3.8023,1.7485,4.7832,,,,0.07556,Other,,GENPD,0.45322,4.3006,3.909,0.89795,10.1407,1.7697,0.40508,3.6279,3.6859,44.6442,15.1869,226.5515,3.6334,5.2607,1.8031,1.8529,3.961,7.1226,2.1469,3.2767,0.60723,6.7734,10.9347,13.0799,8.1511,2.2343,4.7795,1.8751,19.8045,5.1032,3.8104,0.96104,2.5709,7.9279,13.8582,2.7857,4.1494,3.4755,1.4923,1.4262,3.6929,10.5409,2.8919,2.3194,9.6081,2.1956,2.2599,2.2534,13.0915,2.2172,4.3974,1.1186,14.7012,5.3022,7.7562,4.4408,9.6399,8.0895,7.6705,8.3297,3.6419,1.5395,4.5676,,,,,,,,,,,,,,,63,,,
-50044,0.75581,1.5301,,50-59y,Other,,,17.8739,4.2528,2.3237,2.138,1.0024,ppmi,,,F,,0.40412,3.7892,3.8781,0.78738,9.6956,1.4584,0.33564,2.9367,2.4269,41.6583,15.3014,228.9635,3.4561,3.9786,1.4198,1.9457,3.3587,5.9536,1.7559,3.1371,0.43392,6.2167,9.2277,7.8971,6.4255,2.0458,4.1674,1.5942,15.2834,6.243,3.4962,1.0066,2.5199,6.0582,12.0425,3.8249,3.7589,3.0732,1.268,1.5387,4.1132,9.4592,2.7189,1.96,11.0235,2.437,2.0625,1.9344,11.1093,2.0267,3.5609,1.0379,12.7461,4.5546,8.8656,3.5611,9.9952,7.1286,8.0826,6.4342,3.6572,1.478,4.6889,,,,0.06306,Other,,GENPD,0.36566,3.0885,3.5935,0.76993,10.1262,1.5478,0.32894,3.0417,2.518,40.973,14.4105,224.7565,3.3512,4.7294,1.3513,1.7499,3.5397,6.2836,1.85,3.2105,0.44265,5.997,9.7345,7.5686,6.7992,1.9427,4.0261,1.6646,14.4097,5.4672,3.2478,0.80159,2.1223,7.0768,12.1834,3.0405,3.7156,3.0048,1.3664,1.5104,3.7215,10.1092,2.5431,1.8431,10.0792,1.8709,2.0218,1.7508,11.4209,1.7845,3.3985,0.93806,12.9871,4.5417,7.5373,4.1562,9.6296,6.9703,7.5839,6.4687,3.1186,1.2548,4.5118,,,,,,,,,,,,,,,58,,,
-50086,2.2327,2.4717,,70-79y,Other,,,19.9242,4.5258,2.7749,2.3398,2.006,ppmi,,,F,,0.45008,4.7388,4.0972,0.74226,9.0031,1.6656,0.40006,3.1275,3.6137,49.9274,15.6379,211.9318,3.2941,4.3895,1.4685,1.6772,3.7394,6.9363,2.2368,2.9673,1.0896,6.0615,11.6206,32.3568,7.0704,2.4022,3.8272,1.8618,17.8672,5.5301,4.3464,1.0882,2.3992,7.0376,13.2331,3.5024,4.0604,3.0933,1.3024,1.3651,3.8292,9.9623,2.904,2.2808,11.0082,1.9531,2.4505,2.0511,10.8486,1.5611,4.3464,1.2585,13.6111,5.3932,7.7503,3.619,9.8247,6.0658,8.0671,7.4402,3.5172,1.3725,4.7318,,,,0.07753,Other,,GENPD,0.40501,4.1926,3.9387,0.71701,9.6602,1.8423,0.40263,3.0962,3.7239,49.0059,15.1755,221.0976,3.4612,4.5722,1.4755,1.7591,3.5984,7.4238,2.1314,3.171,0.86955,6.1903,11.4786,22.81,7.7315,2.2618,3.848,1.7235,16.4542,4.8775,4.1353,1.1478,2.6507,7.8214,12.8556,2.7915,4.1125,2.9641,1.4708,1.2507,3.5772,9.6207,2.6857,2.3288,9.1517,1.6948,2.3719,2.0195,10.9655,1.558,4.3008,1.1928,12.4628,5.0716,7.0248,4.1653,9.9849,6.7958,7.9546,7.7827,2.9469,1.4013,4.434,,,,,,,,,,,,,,,74,,,
-50319,0.99276,1.8624,,50-59y,Other,,,17.1117,4.7781,2.5851,2.311,1.2772,ppmi,,,M,,0.44269,4.9193,4.4971,0.90565,9.965,1.5155,0.39561,3.4254,3.063,46.9152,14.5488,203.7135,3.8197,5.208,1.6621,2.0773,3.4376,7.2596,1.9813,3.2195,0.47658,6.9975,11.069,10.4382,8.4257,2.3124,4.8199,1.7559,17.2293,6.523,3.8167,1.1568,2.6914,7.0947,13.5291,3.9634,4.965,3.197,1.4796,1.4098,4.8014,11.847,3.2361,2.2753,12.2938,2.0748,2.4724,2.1687,12.7829,1.6671,4.254,1.1856,14.8833,5.731,9.0823,4.4569,11.9947,7.196,8.4017,7.1797,3.7013,1.4569,4.5379,,,,0.052742,Other,,GENPD,0.42129,4.4236,4.3552,0.90013,10.2767,1.734,0.41175,4.0406,3.1549,45.3007,13.5079,208.6394,3.9847,4.7754,1.7239,2.1763,3.8327,7.2579,2.0447,3.3975,0.55464,7.5091,10.8826,9.5228,8.9739,2.1488,5.0281,1.83,17.6487,5.7188,3.6511,1.0423,2.5176,8.0127,13.4971,3.4629,4.6563,3.4232,1.4766,1.4031,4.6741,11.3496,3.1068,2.3262,11.1833,2.0161,2.2459,1.9795,11.9611,1.6245,4.2304,1.1082,15.708,5.6016,7.9402,4.6848,11.1883,7.1233,8.3394,7.5342,3.6248,1.3375,4.402,,,,,,,,,,,,,,,53,,,
-50485,0.95466,1.5334,,60-69y,Other,,,16.973,3.9566,2.0859,1.7046,1.1327,ppmi,,,F,,0.38528,4.3176,4.1136,0.83209,8.999,1.5486,0.34927,2.6302,2.6084,39.4403,14.173,203.898,4.0038,4.0855,1.6452,1.8216,3.8269,6.441,1.9944,2.7871,0.35769,5.8749,10.4946,15.1311,5.8501,2.3759,4.4807,1.794,19.1271,5.9251,3.7944,1.0261,2.0921,6.3446,13.6386,3.7895,3.8428,2.8045,1.4851,1.3495,3.9813,9.7247,2.8348,2.1321,10.8368,2.1684,2.3165,2.1607,12.017,1.7953,3.8426,1.168,14.7344,4.858,8.1329,3.6292,9.3833,6.9703,7.4867,8.2475,3.2419,1.3638,4.3968,,,,0.073866,Other,,GENPD,0.34329,3.6088,3.885,0.85383,9.5067,1.6283,0.3641,2.7837,2.7291,39.9723,13.8214,210.7352,3.8139,4.1055,1.751,1.8419,3.8504,6.7207,1.9824,3.0251,0.46798,6.0351,10.367,13.9126,6.694,1.9774,4.482,1.6892,18.3882,5.1748,3.5574,0.98387,2.2873,7.1363,13.7123,3.0749,3.9893,3.0518,1.4621,1.3318,3.5604,9.5265,2.651,2.2246,9.3726,2.0087,2.0613,2.0005,11.6677,1.6734,3.7164,1.1035,13.886,4.57,7.5464,4.1032,9.6367,6.9145,7.3158,8.7927,3.2821,1.4119,4.2483,,,,,,,,,,,,,,,64,,,
-50621,1.4311,1.4856,,60-69y,Other,,,18.0872,4.5975,2.5315,1.9095,1.4287,ppmi,,,M,,0.44045,4.7241,3.9447,0.81722,9.2974,1.5169,0.3883,3.1015,2.8973,44.0793,14.4829,207.1909,3.2751,4.7515,1.6068,1.6514,3.3174,6.8305,1.7762,2.9131,0.47981,5.7365,10.8154,15.2135,7.3397,2.3799,4.4017,1.684,18.9264,5.9719,3.7684,0.97676,2.3333,7.1485,13.2959,3.1835,3.9495,3.0545,1.4242,1.2902,3.9563,10.3418,2.936,2.1072,11.169,1.8742,2.6392,1.915,11.2564,1.7103,4.1056,1.1904,14.2788,5.3574,7.7205,3.4042,10.0296,7.5357,7.745,7.7264,3.5145,1.3314,4.3686,,,,0.066552,Other,,GENPD,0.38808,4.2358,3.8925,0.80712,9.972,1.7491,0.38467,2.9559,2.9372,43.2513,14.6603,210.1147,3.5351,4.7681,1.6072,1.7761,3.6758,7.0878,1.8819,3.1055,0.6764,6.4238,11.1197,13.5491,7.2289,2.2667,4.4554,1.6389,18.3711,4.9934,3.7027,0.91514,2.4063,7.9538,13.65,2.5449,4.286,3.0246,1.5289,1.3068,3.6599,10.2734,2.6516,2.1733,9.309,1.9085,2.3584,1.9092,11.139,1.6114,4.0191,1.1325,14.163,4.9414,8.1655,4.3736,9.872,7.0401,7.445,7.3775,3.2074,1.3806,4.2078,,,,,,,,,,,,,,,60,,,
-50829,2.0057,2.4177,,70-79y,Other,,,17.6032,4.8146,2.3143,2.0104,2.5971,ppmi,,,F,,0.36676,4.0489,3.8503,0.67079,9.9582,1.3882,0.30686,3.5543,2.9997,44.6586,15.8607,199.2254,3.7027,4.6062,1.2478,1.7281,3.2194,6.446,1.6326,2.884,1.3501,6.4775,9.9431,41.2986,7.4342,2.0826,4.2845,1.5674,16.3605,6.6085,3.2115,1.3527,2.7665,6.3162,13.5408,3.4998,4.4808,2.718,1.1781,1.3652,4.0182,10.4618,2.932,2.0773,11.7472,2.4602,2.1372,2.0541,11.9706,2.0731,3.3434,1.0664,11.5973,4.917,9.4807,3.4752,10.1862,7.4105,7.5183,6.033,3.1213,1.3966,4.1445,,,,0.064017,Other,,GENPD,0.3392,3.5276,3.5314,0.62602,9.9595,1.5752,0.30285,3.8292,3.2815,45.4107,15.5053,204.2422,3.6945,4.65,1.1524,1.6536,3.2557,6.3247,1.6561,3.0536,1.9361,7.4451,9.775,33.2486,8.326,2.0833,4.1311,1.5204,16.3459,5.3297,3.205,1.2485,2.638,7.0796,13.3506,3.1857,4.6229,2.9821,1.2466,1.291,3.901,10.5742,2.618,2.081,11.1214,2.0796,2.0576,1.8606,11.2811,1.6746,3.5656,1.0184,11.8147,5.0954,8.4468,4.3154,10.1043,6.689,7.0764,5.9458,2.8944,1.3705,3.9674,,,,,,,,,,,,,,,73,,,
-50860,1.5575,2.1133,,60-69y,Other,,,18.9206,5.154,2.5955,2.3066,1.9506,ppmi,,,M,,0.39311,4.707,4.3898,0.92679,9.2498,1.6207,0.36491,3.1326,2.8112,49.2311,15.2077,230.2909,3.497,4.7052,1.8048,1.8226,3.5139,7.7127,2.012,3.1583,0.6435,6.6338,11.1308,28.311,8.1298,2.3314,4.6658,1.7813,18.9909,6.1903,3.9752,1.0346,2.3899,7.0733,13.1945,3.9969,4.7314,3.0887,1.3291,1.3928,3.9895,10.0086,3.2233,2.4915,10.8929,1.9261,2.3747,2.4539,11.4732,1.7613,4.2046,1.0739,14.171,5.4747,8.4055,3.4179,9.8747,7.6964,8.5811,8.0793,3.8193,1.4274,4.8162,,,,0.069655,Other,,GENPD,0.35352,4.0589,3.6249,0.8991,10.6012,1.8538,0.36775,3.258,3.028,49.6775,15.1528,233.7355,3.4579,4.4635,1.7736,1.6247,3.8685,7.4614,1.9319,3.4289,0.60041,6.5873,10.399,24.4644,8.0656,2.0645,4.5831,1.7693,19.4412,5.4479,3.7845,1.0058,2.4325,8.082,13.2719,3.1428,4.306,3.2102,1.2133,1.3786,3.9378,10.7255,2.9904,2.1602,9.0358,1.8595,2.3122,1.9963,11.8317,1.7796,4.1212,1.0795,13.7393,5.2421,8.0022,4.6709,9.9514,8.0348,8.0916,7.904,3.1527,1.4454,4.598,,,,,,,,,,,,,,,69,,,
-50901,0.90643,1.8509,,50-59y,Other,,,21.7461,5.2404,3.0904,2.4119,1.0845,ppmi,,,M,,0.51495,5.1007,5.08,0.99535,10.2821,1.7637,0.44727,4.1742,3.0583,51.3584,18.4128,241.7407,4.9277,5.7784,1.9021,2.3415,3.6631,7.5469,2.2216,3.4403,0.38435,7.6238,11.9229,10.4022,8.6374,2.7038,4.8631,2.0344,19.3026,7.0239,4.3039,1.3398,3.4844,7.6689,15.8137,3.6832,5.0104,3.5874,1.7861,1.6371,5.5032,13.7651,3.4705,2.6784,13.5321,2.8864,2.6089,2.4162,14.8299,2.3837,4.68,1.4276,14.5169,6.2512,9.4872,4.1889,11.619,7.8956,9.1928,9.2031,4.1827,2.0063,5.4333,,,,0.07111,Other,,GENPD,0.47777,4.9056,4.9717,1.0199,10.7232,1.9067,0.47851,4.656,3.206,53.5691,17.964,247.8889,4.1498,6.3031,1.9655,2.1983,4.0538,8.2244,2.0769,3.7773,0.50706,7.7286,12.1687,9.5206,10.195,2.7026,5.3172,1.9318,18.8559,5.8729,3.8393,1.1456,3.2351,8.3756,15.3104,3.7525,5.2033,3.8876,1.8928,1.6252,4.9027,13.4083,3.4626,2.4546,11.4762,2.4711,2.825,2.0705,12.6791,2.1419,4.4669,1.3556,15.062,5.8943,9.2204,5.5821,12.043,7.6544,8.811,8.6506,4.221,1.6638,5.2464,,,,,,,,,,,,,,,52,,,
-50983,2.1129,1.8265,,70-79y,Other,,,18.4536,5.0504,2.6978,1.9843,1.5464,ppmi,,,M,,0.45228,5.3304,4.5565,0.96495,9.1723,1.6274,0.41084,3.6525,3.1596,47.2019,15.1838,220.5575,4.4666,5.4499,1.9571,2.0868,3.8333,7.7777,2.0941,3.3356,0.51072,6.8661,11.1925,16.5434,8.1368,2.4457,5.3659,1.9645,19.3307,5.9932,3.9738,1.288,2.7805,8.0862,13.0627,3.8051,4.6353,3.4439,1.4514,1.3299,4.7326,11.0389,3.7148,2.6233,12.7351,2.6555,2.5908,2.6778,13.1963,2.0761,4.1951,1.2528,15.4546,5.884,9.239,3.6485,10.5027,7.7601,7.9795,8.4555,3.7923,1.8376,4.5447,,,,0.085669,Other,,GENPD,0.39683,4.3273,4.3935,0.92835,10.5186,1.8613,0.41171,3.9391,3.3334,46.2392,15.2702,228.44,4.0104,5.8343,1.8396,1.8478,4.2865,8.2282,2.1574,3.4882,0.45225,7.4289,11.9112,13.3797,9.1685,2.4544,4.773,1.9267,19.1209,6.2743,3.966,1.0259,2.2381,9.4181,13.9375,3.3831,4.7263,3.5651,1.7309,1.3051,4.4506,11.6897,3.3332,2.6097,11.3437,2.1728,2.6313,2.3952,13.2476,1.9605,4.143,1.2175,15.4564,5.931,7.3217,5.0312,10.2429,7.9847,7.8008,8.4102,3.965,1.5012,4.3703,,,,,,,,,,,,,,,74,,,
-51186,1.1898,2.3573,,60-69y,Other,,,17.6739,4.096,2.3856,2.0155,1.1945,ppmi,,,F,,0.42024,4.3863,4.2233,0.92086,9.1866,1.5807,0.39123,2.9563,2.5602,44.2434,13.8748,193.4167,3.9832,4.0727,1.8813,2.0626,3.394,7.2579,2.1936,3.3241,0.40694,6.0301,10.8874,11.2243,6.7504,2.4142,4.2635,1.7856,19.3022,6.5991,4.097,1.1638,2.628,6.6508,13.346,2.7874,3.8478,3.4562,1.5375,1.369,4.054,9.4154,3.2645,2.1121,11.6233,2.1776,2.5313,2.1141,13.9892,1.7238,3.8983,1.1717,14.821,5.464,9.0774,3.3807,10.5009,7.185,8.1139,8.1477,3.9647,1.4655,4.5229,,,,0.077537,Other,,GENPD,0.3884,3.9032,4.0496,0.84931,11.4586,1.7407,0.38562,3.0155,2.6844,44.3648,13.3099,190.0872,3.7257,4.219,1.6154,1.9416,3.9494,7.2162,2.0668,3.4402,0.49601,6.3358,10.5496,10.5122,7.3643,2.2864,4.5298,1.775,18.4023,5.436,3.7635,1.1387,2.4491,7.4032,12.6065,2.7743,3.9548,3.2464,1.5191,1.3243,3.5659,9.5922,2.8438,2.0553,10.4048,1.8146,2.2039,1.8629,13.1988,1.7269,3.8838,1.134,14.0392,5.0369,7.6212,4.0861,10.5819,7.0534,7.8504,7.7117,3.3907,1.2673,4.309,,,,,,,,,,,,,,,66,,,
-51252,0.7728,1.988,,60-69y,Other,,,17.741,4.9103,2.7005,2.1763,0.8549,ppmi,,,F,,0.41113,4.1173,3.5326,0.8208,7.436,1.5506,0.35085,3.3431,2.4312,45.8056,15.5253,214.2563,3.1534,4.4607,1.5112,1.6416,3.0614,6.9876,2.0599,2.8944,0.32476,5.6988,9.8667,9.6976,7.4913,2.054,4.178,1.5985,15.0941,5.0258,3.7914,0.79257,1.7797,5.7517,11.1322,2.6216,3.9275,2.9066,1.1218,1.2799,3.9134,8.8733,2.7632,1.935,9.2834,1.9371,2.1155,1.7689,9.608,1.7475,3.4776,1.1263,10.088,3.8368,7.7977,2.6188,8.3967,6.1521,7.2902,7.026,3.1913,1.2533,4.4976,,,,0.065832,Other,,GENPD,0.36964,3.6777,3.639,0.79361,8.9881,1.6644,0.35357,3.7463,2.4105,45.6267,15.2147,217.215,2.8283,4.6895,1.5267,1.7543,3.3809,7.0431,1.9691,2.8985,0.37149,6.5094,10.1786,9.0868,7.5865,2.0458,4.2085,1.6215,14.4104,5.007,3.5605,0.91473,2.0535,6.4652,12.1747,2.4032,4.0343,2.7973,1.3288,1.3008,3.2936,8.8603,2.467,2.0121,7.6023,1.5542,2.0499,1.5809,8.5839,1.3287,3.6396,1.0821,11.0921,3.9993,7.012,4.0072,9.0947,6.2521,6.9445,7.1101,2.9963,1.0234,4.2932,,,,,,,,,,,,,,,65,,,
-51440,1.0293,1.4106,,70-79y,Other,,,17.8701,5.5142,2.953,2.3827,1.1125,ppmi,,,M,,0.41355,4.3027,3.8921,0.83047,9.4123,1.3294,0.36794,2.7352,2.6029,52.6342,16.553,211.0171,3.849,4.2955,1.6472,1.7569,3.3152,7.5589,1.8481,3.1784,0.42456,6.9657,10.8317,13.1732,7.3895,2.0995,4.3213,1.5926,15.9014,6.3706,3.5373,1.046,2.3204,6.0792,14.0525,3.4449,4.4077,2.9951,1.4214,1.3069,4.3169,9.8677,3.3064,2.092,11.0965,2.2893,2.3187,2.3911,11.0768,2.008,3.9062,1.0727,13.0099,4.3433,8.8499,3.5141,8.9533,7.9243,7.4862,7.3156,3.1521,1.6148,4.2948,,,,0.048032,Other,,GENPD,0.36998,4.0541,3.9806,0.81255,11.5827,1.5775,0.36024,2.5141,2.8896,52.9567,16.3178,221.8829,3.685,4.3138,1.7343,1.7959,3.8606,7.7519,1.9402,3.3649,0.4781,6.7971,11.0249,11.5208,7.6334,1.9385,4.462,1.6358,15.6991,6.1656,3.5829,1.169,2.4242,6.8173,13.6096,2.8001,4.4895,3.1928,1.3401,1.3632,3.8053,9.9492,2.9941,2.2696,9.6705,2.3982,2.2338,2.1691,11.3675,2.134,3.9089,1.0197,13.4331,4.7275,8.8343,4.2109,10.4225,8.218,7.3418,7.449,2.9625,1.6109,4.1855,,,,,,,,,,,,,,,70,,,
-51625,1.1022,1.4819,,50-59y,Other,,,16.7232,4.4788,3.0961,2.5728,1.6561,ppmi,,,F,,0.50795,4.9603,3.6391,0.87928,9.3095,1.5741,0.4504,2.2232,3.57,42.2267,17.3377,237.2094,3.262,3.5372,1.7024,1.7148,3.9125,6.2824,2.0851,2.37,0.25951,5.8496,9.8043,10.0603,6.9728,2.5359,5.4247,1.9851,17.5209,5.306,3.0516,1.0978,2.3361,7.2946,13.7834,2.0227,3.6682,3.3386,1.6082,1.0822,4.0649,10.7808,2.9664,1.7073,11.1492,2.0449,2.2804,1.837,11.2302,1.8689,4.08,1.1901,11.6519,5.5352,9.5146,2.1463,9.4922,7.2593,8.3497,7.3174,4.0643,1.1215,4.8077,,,,0.094604,Other,,GENPD,0.4222,3.9312,3.4993,0.90879,9.4925,1.4595,0.41142,2.9798,2.8627,44.1628,14.4097,239.1435,3.3093,4.4667,1.6994,1.8282,3.791,5.9444,2.1008,2.581,0.30811,6.1512,9.7099,9.2809,8.6878,1.938,4.8684,1.799,17.0107,5.0214,2.3589,1.2093,2.4017,7.6948,14.4406,1.9364,4.0196,3.2856,1.4472,1.2438,3.8556,10.99,2.7333,1.736,10.1405,1.7825,1.9762,1.6952,11.643,1.7409,3.6788,1.1813,12.796,4.9843,7.9896,3.1274,8.4168,7.4596,7.8178,6.9734,3.3812,1.0029,4.6687,,,,,,,,,,,,,,,54,,,
-51632,1.4575,2.4019,,60-69y,Other,,,16.6886,4.4789,2.7284,2.3065,1.2712,ppmi,,,F,,0.43264,3.8811,3.7651,0.76811,8.4321,1.2535,0.35975,2.8244,3.0758,48.1339,14.2836,183.9574,3.3695,3.4798,1.4053,1.7512,2.6961,6.4276,1.6694,2.8187,0.57631,5.5664,8.987,13.6068,6.8774,1.9852,4.1945,1.403,16.0269,5.5116,3.4183,1.0719,2.3367,5.8592,11.3108,2.8593,3.6545,2.9235,1.2971,1.3259,3.7793,8.6816,2.9647,1.8799,10.6614,1.6214,2.0449,2.0017,12.2746,1.6621,3.9474,1.0735,12.5636,4.8122,7.3024,3.1857,9.1654,5.7215,7.357,6.2614,3.6814,1.5031,4.288,,,,0.063068,Other,,GENPD,0.39333,3.4858,3.5455,0.7588,8.7377,1.4341,0.35698,2.67,3.2731,49.0073,13.6574,188.544,3.1086,3.9928,1.4696,1.7353,3.3657,6.7813,1.6875,3.001,0.61026,5.4799,10.1215,12.149,7.5704,1.8737,3.729,1.3529,16.0079,4.1909,3.1869,0.81983,2.0498,6.5832,12.3117,2.2903,3.9578,3.2025,1.2759,1.2868,3.4559,8.9296,2.6444,2.0266,8.6446,1.7063,1.9647,1.7092,11.2036,1.47,4.0002,0.95276,12.1145,4.7292,6.6287,3.5196,9.9033,6.0529,7.1952,6.8141,3.2351,1.1898,4.1148,,,,,,,,,,,,,,,63,,,
-51731,1.3554,2.6504,,70-79y,Other,,,19.8709,4.717,2.7736,2.2086,1.1945,ppmi,,,F,,0.45703,4.307,4.3034,0.81417,8.2387,1.2744,0.38613,2.8094,3.2177,46.7549,16.6541,212.9814,3.622,3.8022,1.579,1.8646,3.2365,6.6248,1.9572,3.0576,0.56887,5.6192,9.1205,13.3315,6.9153,2.0921,4.3039,1.697,16.8794,5.3419,3.5468,1.0199,2.4141,6.6539,12.1186,2.8907,3.9521,3.2208,1.3163,1.4948,4.0189,9.3767,3.2079,2.2978,10.5981,1.9734,2.3365,2.0169,11.3709,1.6193,4.6423,1.222,13.2342,5.3623,7.7587,2.9399,9.6252,6.461,8.0657,6.8814,3.7965,1.3324,4.8341,,,,0.065151,Other,,GENPD,0.41266,3.4089,4.0425,0.82905,9.0609,1.4857,0.38038,3.0281,3.4374,46.0284,16.5983,219.2273,3.384,4.227,1.5572,1.9816,3.4465,6.6828,1.9515,3.1503,0.7693,5.9758,9.8555,14.6391,7.5667,1.9972,3.7762,1.5956,16.2567,4.3893,3.2984,0.8895,2.3507,7.175,13.0249,2.8184,3.9506,3.4615,1.5531,1.4619,3.558,9.2938,2.8876,2.1549,8.9766,1.843,2.1419,1.7718,11.0503,1.5068,4.2309,1.0953,13.6266,5.5056,6.7817,3.9403,9.5875,6.4844,7.8866,7.1599,3.6847,1.3118,4.5724,,,,,,,,,,,,,,,71,,,
-51800,1.365,1.8592,,70-79y,Other,,,17.6116,4.439,2.0752,2.0888,1.6021,ppmi,,,F,,0.3835,3.879,3.7859,0.81022,8.1556,1.374,0.35581,2.15,2.5449,38.7275,14.747,205.1866,3.4831,3.5001,1.508,1.6397,3.0078,5.7629,1.8523,3.0293,0.55404,5.2075,9.1557,19.6352,6.0773,2.0118,4.0435,1.6093,15.2365,5.773,3.4111,0.82791,1.9147,6.021,11.9583,2.6475,3.2086,2.8023,1.2177,1.3379,3.9037,9.4977,2.7774,2.249,8.7409,2.004,1.9575,2.1737,8.7876,1.5271,3.4704,1.1424,11.7108,4.3108,7.8801,2.6486,8.9549,6.0863,7.2299,6.5856,3.0674,1.2313,4.2705,,,,0.064422,Other,,GENPD,0.3728,3.2803,3.8977,0.79084,9.712,1.4224,0.38002,2.2608,2.84,38.4848,14.5824,212.5692,3.6563,3.8191,1.5491,1.8471,3.2909,6.106,1.9163,3.3671,0.81207,5.3445,9.7805,13.7776,6.5164,1.8757,4.0315,1.6168,15.5376,4.0034,3.291,0.86594,2.1408,7.1757,11.9658,2.1156,3.3689,2.773,1.3177,1.4203,3.4197,9.0073,2.7063,2.2314,7.2276,1.7527,1.9334,2.0214,8.3253,1.5961,3.5636,1.1085,11.7035,4.6539,7.533,2.9723,9.0078,6.6435,7.139,6.9503,2.9986,1.3641,4.2305,,,,,,,,,,,,,,,72,,,
-51844,1.2265,1.9756,,+80y,Other,,,17.2157,4.0185,2.5643,2.1407,1.1113,ppmi,,,F,,0.42861,3.9941,3.5154,0.7097,6.4672,1.3283,0.35112,2.6602,2.5528,41.9185,13.1473,196.9126,3.7501,3.9155,1.3629,1.6919,2.833,7.0892,1.9856,2.6681,0.48753,4.7192,9.9398,15.3144,6.7382,1.9167,4.2175,1.6457,17.6541,4.13,3.6189,1.1943,2.5397,5.8635,11.5005,2.5875,3.7046,2.8214,1.1991,1.1104,3.9489,9.9468,2.8746,2.0732,9.694,1.8591,2.1052,1.9233,10.5975,1.419,3.8641,1.232,12.9794,5.0505,6.4885,2.6823,9.7717,5.4242,7.2502,6.5689,3.1993,1.2688,4.121,,,,0.08305,Other,,GENPD,0.39614,3.463,3.2874,0.73153,7.2183,1.6177,0.37368,2.8321,2.7496,41.3397,12.8592,192.3816,3.1808,4.2469,1.4035,1.5359,3.1984,6.8114,1.9529,2.9415,0.57541,4.8929,10.1398,14.7913,7.5055,2.0114,4.1763,1.7124,16.947,4.028,3.5546,1.2788,2.6565,6.8225,12.1252,1.8019,3.629,2.8133,1.2664,1.0629,3.5981,10.0464,2.7273,2.0081,9.0268,1.5942,2.1311,1.6586,11.1511,1.2235,3.8676,1.2164,13.3174,4.9892,6.0384,3.1453,9.4079,5.3273,7.0392,6.6715,2.7866,1.1794,3.882,,,,,,,,,,,,,,,81,,,
-51971,1.0967,1.807,,60-69y,Other,,,16.8601,4.4836,2.3052,2.0392,1.6626,ppmi,,,M,,0.41985,4.1965,4.4045,0.85738,10.4383,1.478,0.37947,3.8285,2.8965,44.0518,13.9184,222.8277,3.8547,5.3431,1.5739,1.9318,3.5905,6.851,2.0988,3.1284,0.43515,7.3362,10.7425,21.5073,7.9493,2.2766,4.12,1.8355,18.0237,7.7137,3.9657,1.0945,2.5265,7.0236,13.4054,4.2423,4.6756,2.6668,1.5771,1.4044,4.8921,11.3465,3.0151,2.5107,10.8624,2.5092,2.5802,2.5099,11.2846,2.3143,3.6625,1.2464,14.044,4.9729,8.7031,4.5965,11.806,7.2435,8.0527,7.3547,3.4712,1.8127,4.608,,,,0.067638,Other,,GENPD,0.39319,4.1526,4.0224,0.88667,10.5012,1.7944,0.38335,3.898,3.3297,43.8998,13.8269,225.2962,3.9387,6.004,1.7279,2.0838,4.0808,7.1175,2.0675,3.2389,0.5947,7.0645,11.0748,16.4179,8.818,2.3202,4.2068,1.9247,16.7787,5.5553,3.6078,0.93915,2.2629,7.517,13.8175,3.0826,4.1241,3.4934,1.5996,1.4236,4.582,11.6111,2.9341,2.374,9.231,2.1715,2.2989,2.2271,11.3055,2.1112,3.6917,1.1359,13.1271,5.04,8.313,4.7612,11.3888,7.7141,7.6973,7.6879,3.5112,1.5482,4.4423,,,,,,,,,,,,,,,67,,,
-52062,1.1169,2.1978,,-50y,Other,,,17.5562,5.5358,2.5221,2.5316,1.2795,ppmi,,,M,,0.51579,4.6874,4.1904,0.90084,10.5559,1.6978,0.41975,4.1437,3.2998,50.4132,15.4229,260.9629,4.2225,5.3363,1.8048,2.0084,3.7127,8.3751,2.2883,3.1984,0.40065,8.8037,12.3773,11.9516,8.8739,2.5952,5.0375,1.8385,19.3325,7.6148,4.42,1.0633,2.9423,7.7014,16.315,4.6306,5.064,3.7492,1.515,1.6162,4.9422,13.1733,3.554,2.3743,12.4286,2.6939,2.6046,2.554,13.7877,2.404,4.5942,1.2931,15.4636,6.1677,9.4631,4.183,12.2654,9.3337,8.6037,8.523,4.2033,1.8295,5.0557,,,,0.082415,Other,,GENPD,0.44384,3.6775,4.1317,0.91824,11.9296,1.9282,0.41915,3.8205,3.3571,51.8067,14.9443,266.5688,4.2541,5.9435,1.9006,2.034,4.2679,9.058,2.2851,3.4994,0.50612,8.6137,13.7676,10.2252,9.5141,2.5578,5.0294,1.9428,19.3651,6.5055,4.0047,1.0377,2.7454,9.0162,16.9287,4.0453,5.097,3.5579,1.7336,1.5981,4.3386,12.3591,3.3609,2.4973,9.736,2.4201,2.4048,2.2087,13.0459,2.1343,4.4799,1.1781,16.5393,5.819,9.087,5.2257,12.0202,9.0964,8.341,8.8096,3.7968,1.7059,4.8558,,,,,,,,,,,,,,,49,,,
-52128,1.5852,2.3819,,70-79y,Other,,,17.7583,4.681,2.6683,2.1648,1.5859,ppmi,,,M,,0.45426,5.0475,4.0795,0.91768,9.04,1.5062,0.3905,3.956,3.7564,46.8986,14.6735,210.8692,3.7166,5.2113,1.7509,1.8049,3.6737,6.9085,1.9582,3.2513,0.76335,7.3236,10.8937,27.3017,8.2754,2.3192,4.7249,1.7704,19.6316,6.7626,3.669,1.3539,2.8554,7.9045,13.4084,4.6394,4.6935,3.0265,1.5057,1.3788,5.0902,11.4625,3.4861,2.2998,12.1667,2.1379,2.3217,2.3707,13.2248,1.9385,4.2304,1.1708,15.2361,5.5385,8.6919,3.9203,11.234,7.4325,7.9355,7.7593,3.809,1.5795,4.6337,,,,0.075306,Other,,GENPD,0.40181,4.6242,3.7407,0.89425,10.5447,1.7451,0.38655,4.0006,3.81,46.0129,14.1453,215.4867,3.8191,6.0081,1.6495,1.9378,4.2367,7.4203,2.0342,3.4711,0.85325,7.3965,11.4981,25.2997,8.9796,2.3115,4.8644,1.7629,18.3286,5.7382,3.6018,1.2553,3.0162,8.8309,13.6927,3.4277,4.6251,3.4806,1.5319,1.354,4.3366,11.3437,3.1999,2.37,11.8184,2.2424,2.0987,2.2294,12.9625,1.7977,3.972,1.108,14.4819,5.7667,7.5274,4.8578,10.2364,6.8315,7.7104,8.1606,3.4915,1.5734,4.4008,,,,,,,,,,,,,,,73,,,
-52146,1.6447,2.613,,60-69y,Other,,,20.2865,4.7465,2.6795,2.1938,1.125,ppmi,,,M,,0.45729,5.2449,4.0269,0.86331,8.596,1.6248,0.40677,3.0907,3.1552,48.0481,16.0277,242.298,3.6668,4.912,1.7173,1.9888,3.9083,7.0028,2.3561,3.0814,0.72422,5.8137,10.0858,21.9114,7.9477,2.521,5.2126,1.956,19.6155,5.8554,4.237,1.1159,2.9681,8.0682,12.4745,3.4214,4.6101,3.1424,1.552,1.4575,4.351,10.8423,3.3848,2.0948,11.0885,2.5987,2.406,1.9095,12.1657,1.9047,3.795,1.3508,15.9463,6.5072,9.4146,3.7552,10.7701,6.5987,8.2952,7.4292,4.0623,1.4585,5.0005,,,,0.074587,Other,,GENPD,0.40022,4.8686,3.9354,0.92618,9.6195,1.8734,0.39074,3.0655,3.3592,48.2206,15.8635,249.6095,3.6339,4.8782,1.8338,1.8795,4.1959,7.4121,2.2567,3.3402,0.76903,6.2392,10.3123,19.657,8.0902,2.2603,4.9123,1.827,18.4019,5.0332,4.0119,1.1523,2.7726,8.8662,12.7209,3.0697,4.2998,3.204,1.6133,1.51,3.9522,11.2542,3.1521,2.211,10.7059,2.1501,2.2985,1.9812,12.6073,1.8193,3.7314,1.2633,16.2736,6.5208,7.77,4.3271,10.8519,7.3035,7.7812,8.5108,3.4725,1.4043,4.8253,,,,,,,,,,,,,,,60,,,
-52530,1.2761,2.2812,,60-69y,Other,,,21.6474,5.5072,2.9891,2.3727,1.1497,ppmi,,,M,,0.40453,4.2273,3.7688,0.8254,9.2527,1.5037,0.36398,3.1942,2.7397,52.9255,17.4442,235.6248,3.7578,4.6198,1.5489,1.892,3.3294,7.4382,1.8914,2.9189,0.47328,6.5456,10.5168,11.9199,7.7602,2.2764,4.8579,1.6263,17.1889,6.5709,3.7716,1.1365,2.497,6.3865,12.801,3.9673,4.5018,3.0044,1.4227,1.5161,4.3896,10.0785,2.9918,1.9541,10.7217,2.5205,2.2977,2.1338,11.3565,2.4937,3.7031,1.1271,12.5279,4.675,8.7298,4.0314,10.7378,7.3738,8.3427,7.1495,3.6632,1.5823,5.3097,,,,0.065851,Other,,GENPD,0.37398,3.8684,3.5298,0.83305,9.8457,1.8347,0.36976,3.4276,2.8789,54.0502,17.057,239.7823,3.3725,4.8922,1.6588,1.8835,3.7707,7.4884,1.8915,3.1146,0.56186,7.1067,11.2786,11.6275,8.5696,2.2346,4.4073,1.6675,16.2436,5.2016,3.5566,1,2.5654,6.9952,13.204,3.7638,4.7629,3.1891,1.4653,1.524,3.9776,10.2916,2.7662,1.925,9.3351,2.097,2.3106,1.926,11.444,2.0082,3.6416,1.0447,13.2416,4.9119,7.6033,4.7789,10.5714,7.1947,7.986,7.4768,3.2779,1.424,5.1484,,,,,,,,,,,,,,,68,,,
-52678,1.4665,2.0256,,60-69y,Other,,,23.0028,5.8343,3.3085,2.8118,1.7135,ppmi,,,M,,0.5539,5.4101,5.118,0.90496,9.9313,1.8347,0.45314,3.9081,3.2404,56.3653,19.0604,254.4181,5.1728,5.3413,1.7276,2.4071,3.6558,8.4008,2.5355,3.2621,0.43277,7.3361,13.0835,14.2154,9.1062,2.914,5.2567,2.2919,22.3526,5.9728,4.7882,1.399,3.2298,8.3553,15.6972,3.6088,4.902,4.3335,1.8057,1.6611,4.6723,11.4574,3.4826,2.7677,13.3362,2.9997,3.0095,2.8668,15.9385,2.5574,4.9598,1.477,17.2928,6.2601,9.5026,3.4165,10.9724,8.311,9.6544,8.8679,5.1118,2.0585,5.496,,,,0.082035,Other,,GENPD,0.49318,4.7941,4.7036,0.91638,9.7821,2.085,0.45155,4.0699,3.3107,56.6523,18.5431,258.9239,4.9478,5.1639,1.8406,2.2964,4.1614,8.3134,2.6131,3.4533,0.60366,6.7108,12.4906,12.8868,9.5346,2.6966,5.3599,2.2487,21.7014,5.1865,4.7775,0.97852,2.8194,9.1583,15.6145,3.0764,4.7346,3.9654,1.9127,1.6764,4.4362,11.7598,3.1694,2.5102,11.3117,2.4343,2.8187,2.3588,16.3324,2.0766,4.8217,1.4086,16.1423,6.1833,8.2935,4.5684,10.9215,8.5386,9.2409,8.7794,4.3614,1.7808,5.2554,,,,,,,,,,,,,,,69,,,
-53595,0.80224,1.9891,,60-69y,Other,,,15.668,3.8176,2.0046,1.7254,0.91718,ppmi,,,F,,0.38706,3.7782,3.2567,0.7282,8.2437,1.2742,0.31174,3.045,2.3332,35.5973,12.2794,195.1414,3.0554,4.302,1.3665,1.737,2.7128,5.9079,1.5179,2.6612,0.50148,4.9685,9.498,11.0247,6.5643,1.9388,3.7007,1.3967,14.5562,5.0609,3.0669,0.99607,2.2008,5.5257,11.8673,2.6575,3.5058,2.8131,1.2122,1.2305,3.2822,8.5366,2.5782,1.7927,10.0207,2.076,1.9877,1.828,10.8292,1.7332,3.4482,0.92474,11.3367,4.4696,7.7561,3.0743,8.4865,6.1422,7.0453,6.3101,3.4121,1.171,4.0082,,,,0.064548,Other,,GENPD,0.33578,3.2897,3.1656,0.72455,8.9279,1.4174,0.31531,2.8308,2.5394,36.1754,11.8643,197.6147,3.1161,4.171,1.4155,1.5634,2.7239,6.0923,1.5802,2.9155,0.52421,5.5505,9.9636,12.0446,6.6526,1.8289,3.5378,1.3229,13.6372,4.747,2.9095,0.97171,2.4421,6.0502,12.5244,1.9633,3.4992,2.7559,1.2534,1.2386,3.0737,8.7008,2.4759,1.6347,9.2586,1.8983,1.8596,1.5218,10.7283,1.5092,3.3998,0.89769,11.9548,4.3637,6.3704,3.3141,9.2241,5.7515,6.8925,6.4757,2.7312,1.0725,3.7752,,,,,,,,,,,,,,,65,,,
-53600,1.5273,2.3504,,60-69y,Other,,,18.0899,4.9028,2.5726,2.2545,1.6636,ppmi,,,M,,0.37302,4.542,4.2884,0.79968,9.3874,1.5437,0.33037,3.4151,2.4891,46.4814,15.3047,230.5699,4.2029,4.8726,1.5802,1.9435,3.474,7.3127,2.0714,3.008,0.51523,7.6737,11.9468,14.234,7.1317,2.2588,5.165,1.7546,19.1939,7.5813,3.604,1.1298,2.6431,6.7714,13.635,4.448,4.3273,3.6111,1.4844,1.5841,4.6047,10.9685,2.9189,2.4282,12.3789,2.0522,2.2274,2.1977,14.0224,1.6147,3.6839,1.1208,14.8813,5.3105,8.2235,4.2378,11.7499,6.3786,8.515,7.3047,4.0572,1.4596,4.66,,,,0.068146,Other,,GENPD,0.35639,3.7641,4.242,0.80963,10.4364,1.6539,0.38507,3.5254,2.5734,47.3707,15.3097,231.6104,3.9324,5.2477,1.5966,2.0817,3.6318,7.8633,2.0198,3.2535,0.62746,7.2517,11.8785,11.3491,7.7192,2.16,4.8673,1.6997,18.1987,5.6941,3.46,1.3662,3.0826,7.6153,14.0279,3.6776,4.2156,3.5375,1.4638,1.4931,4.1855,10.3609,2.8276,2.2119,12.0331,1.7791,2.1213,2.0066,14.2695,1.5432,3.6824,1.0836,14.5222,5.4944,7.7101,4.899,10.5663,6.7028,8.1906,7.387,3.4886,1.3013,4.4513,,,,,,,,,,,,,,,63,,,
-53988,1.4206,1.8092,,50-59y,Other,,,17.5424,4.9137,2.7589,2.2073,1.0805,ppmi,,,M,,0.40373,4.5237,3.6826,0.87018,10.1275,1.6281,0.37714,3.5894,2.7265,49.1992,14.9321,218.0762,3.6174,4.9661,1.5769,1.8685,3.2995,7.6556,1.9402,3.1409,0.37201,7.3364,10.7286,9.6135,7.9733,2.3755,4.7179,1.6452,18.0671,7.0261,3.876,1.0986,2.6843,6.4348,13.1245,4.0167,4.8228,3.6453,1.4219,1.4,4.458,11.0686,2.9994,2.0121,10.1298,2.0603,2.3134,2.2162,12.4736,2.2202,4.1194,1.05,12.2289,5.0783,9.6368,3.8222,9.7757,7.2051,7.9711,6.9361,3.7856,1.4639,4.5069,,,,0.060332,Other,,GENPD,0.39245,4.2805,3.5526,0.85963,9.8429,1.696,0.3718,3.5383,2.781,49.3354,14.7015,217.7002,3.4261,4.935,1.6696,1.773,3.8651,7.8924,1.9811,3.4907,0.49644,6.1829,11.2033,6.5431,9.1364,2.2348,4.6897,1.8076,17.726,5.0468,3.4868,0.83711,2.3168,7.5149,14.3699,3.1038,4.8226,2.879,1.613,1.3484,4.1949,10.9528,3.0955,1.93,9.7026,1.9047,2.105,1.9164,11.2607,1.7837,3.8951,0.96963,12.5954,4.7007,8.4448,4.5432,9.5669,7.8039,7.7842,7.6968,3.5543,1.3281,4.4065,,,,,,,,,,,,,,,56,,,
-54144,1.0812,1.5459,,60-69y,Other,,,17.2851,4.8759,2.3488,2.0968,1.2376,ppmi,,,M,,0.46667,5.0399,3.7879,0.847,12.0037,1.7308,0.3908,3.7711,3.3195,43.4474,13.4073,260.7992,3.9302,5.9286,1.5894,1.7796,3.5067,7.7412,2.103,3.1153,0.46996,7.7349,12.4031,18.2897,8.3485,2.5483,5.3474,1.9251,19.7203,7.3059,4.1955,1.0996,2.7708,7.426,15.751,4.0372,4.5519,3.4224,1.3934,1.4471,4.8352,12.5183,3.2446,2.2578,13.5175,2.5824,2.6559,2.3227,12.7478,2.1084,4.0696,1.3158,15.8779,5.5806,11.679,4.3878,12.4493,8.0266,8.2459,7.7704,3.8344,1.6599,4.7649,,,,0.071083,Other,,GENPD,0.41418,4.6058,3.8375,0.93302,12.0838,2.0111,0.40061,4.0272,3.4915,45.2981,13.5397,265.2032,3.7809,6.3958,1.7191,1.7864,4.0626,7.7808,2.1545,3.45,0.54161,7.3906,12.1668,17.1247,8.9867,2.4639,5.3284,1.8913,19.7495,6.6006,3.9895,1.1184,2.5103,8.4755,15.3772,3.5795,4.7786,3.2827,1.454,1.4901,4.5261,13.5209,3.0301,2.3183,11.5247,2.6221,2.4037,2.2544,13.0596,2.1519,3.9968,1.2069,15.471,5.4557,9.3628,5.6621,13.1614,7.662,7.7766,8.0705,3.3949,1.6592,4.6325,,,,,,,,,,,,,,,65,,,
-54197,0.91168,1.5339,,60-69y,Other,,,19.1207,4.7711,2.6946,2.2884,1.1591,ppmi,,,M,,0.51613,5.1229,4.8841,1.0023,10.7179,1.8233,0.44588,4.2031,3.1178,49.5874,15.0159,264.0478,4.0492,4.7893,1.9211,2.0859,3.8954,8.5096,2.1536,3.1898,0.38345,7.9432,12.85,8.6996,9.2731,2.8619,5.2735,1.9951,21.1553,7.9397,4.365,1.3363,3.3469,7.6122,15.7323,4.1479,5.2791,3.5979,1.8069,1.4381,5.4019,11.6368,3.4742,2.4469,13.4839,2.523,2.9963,2.5358,15.2214,2.293,4.7468,1.2962,16.1328,5.9736,9.114,4.2741,13.3905,8.8105,8.6541,8.0666,4.2086,1.6912,4.6431,,,,0.071039,Other,,GENPD,0.45245,4.784,4.5605,0.9874,12.2049,2.2108,0.43239,4.6289,3.2079,50.0977,14.6732,268.0482,4.1487,5.8304,1.9133,2.0767,4.4457,8.7197,2.3453,3.4013,0.43483,8.3141,13.0265,8.2525,10.2271,2.6481,5.2352,2.0533,20.3111,6.2589,4.2299,1.3728,3.287,8.6827,15.6907,3.9172,5.3654,3.3754,1.6666,1.4572,4.5531,11.2712,3.1915,2.5824,12.5172,2.7052,2.5562,2.2169,15.1042,2.0599,4.6944,1.2037,16.4842,6.0166,9.3505,5.4551,12.1735,7.9159,8.5489,8.2481,3.659,1.5285,4.4515,,,,,,,,,,,,,,,68,,,
-54265,1.9285,2.3227,,70-79y,Other,,,18.8628,4.8217,2.7142,2.2488,1.9871,ppmi,,,M,,0.47625,4.7426,5.4403,0.95359,12.1561,1.757,0.47983,3.7985,3.1754,45.8468,14.6046,208.2635,5.0354,5.1074,1.858,2.572,4.4411,8.2462,2.3482,3.3254,0.45277,7.6794,14.4114,24.7923,8.3112,2.9803,5.2487,1.9692,24.4961,7.9641,4.6837,1.6746,3.5044,8.0268,19.3738,4.2927,4.7478,4.5211,2.1082,1.1838,4.9322,12.1811,3.6212,2.8239,15.5631,3.2703,2.9807,2.7697,17.4795,2.6838,4.7514,1.3896,16.95,6.3918,11.5069,4.0261,13.3246,9.4036,8.7714,9.7429,5.02,2.0339,4.5029,,,,0.086859,Other,,GENPD,0.46661,3.9617,5.0613,0.94061,15.1495,2.2516,0.49384,3.531,3.3579,46.6823,14.8611,211.4973,4.8776,5.4257,1.9831,2.5252,4.6677,8.8314,2.4207,3.5101,0.62631,7.376,15.883,22.8561,9.0873,2.9371,4.9692,1.8965,23.7287,6.829,4.648,1.4117,3.1806,9.4883,20.7703,3.2215,4.8467,4.4993,2.043,1.1589,4.4327,12.9706,3.3426,2.6607,13.7312,2.901,2.7693,2.3959,17.7626,2.67,4.6607,1.321,17.8111,6.5721,10.5698,5.3118,14.1734,10.461,8.4397,9.858,4.617,1.9713,4.2369,,,,,,,,,,,,,,,75,,,
-55124,0.89215,1.741,,50-59y,Other,,,17.6948,4.6838,2.3297,2.296,1.1683,ppmi,,,F,,0.43948,4.4526,3.9801,0.86496,8.3367,1.5807,0.37214,3.1423,2.7424,45.6156,13.672,188.9499,3.7079,4.8631,1.678,2.1075,4.0548,6.4725,2.2844,3.0888,0.4212,6.0465,10.137,10.9127,7.3231,2.553,4.5675,1.8114,18.9159,6.3008,4.222,1.0602,2.7451,7.052,13.2117,2.8,4.1832,3.5682,1.6081,1.2793,4.3608,10.3446,2.9381,2.0366,12.9325,2.0237,2.7348,2.0414,13.154,1.695,3.8297,1.1701,15.2155,5.6684,7.9882,4.0406,10.0911,6.9137,8.4369,7.2955,4.2925,1.5271,4.2681,,,,0.077369,Other,,GENPD,0.38555,4.0964,4.0293,0.86965,10.1974,1.8364,0.3782,3.3409,2.7517,45.7107,13.2977,192.6574,3.5605,4.6586,1.6649,1.9697,4.125,6.6291,2.2333,3.3919,0.60298,6.6674,10.6274,8.5854,7.6509,2.3951,4.5145,1.8407,18.4216,5.0931,4.1108,1.1059,2.7187,7.4743,13.8355,2.7771,4.2895,3.1847,1.774,1.2737,4.0112,10.5383,2.6634,2.1941,10.1114,1.8251,2.5857,1.7533,12.6715,1.5705,3.7923,1.0885,15.2869,5.1932,7.0341,4.0548,10.8592,6.5748,8.0729,7.0855,3.8449,1.2535,4.0992,,,,,,,,,,,,,,,59,,,
-55251,0.90286,1.9645,,50-59y,Other,,,22.1514,5.598,2.9143,2.5864,1.3011,ppmi,,,M,,0.56988,5.4033,5.3816,1.0006,10.3359,1.909,0.45522,3.4213,3.458,51.4367,19.4002,281.9769,5.023,4.7668,1.8401,2.5023,4.2405,8.1133,2.387,3.6264,0.47615,7.4096,12.9087,10.785,8.0417,2.8085,5.9002,2.0883,21.4429,6.5615,4.6363,1.3727,2.9797,7.7919,15.5089,4.1179,4.4829,3.6001,1.9628,1.8773,5.3641,12.279,3.3989,2.8101,12.0844,2.4794,2.7494,2.7774,13.0989,2.0859,5.078,1.3372,16.7454,5.9918,10.2353,4.1003,12.6727,8.5277,9.4462,8.25,4.3491,1.6503,5.5138,,,,0.072484,Other,,GENPD,0.50551,4.8976,4.8957,0.99133,11.1697,2.2182,0.46732,3.6311,3.3794,51.891,19.1004,282.0108,4.5864,5.4429,1.9588,2.4868,4.2387,8.2237,2.2965,3.8646,0.57978,6.9423,13.3361,7.9961,8.5125,2.8021,5.0623,1.9163,18.7278,5.4564,4.3677,1.1288,2.7808,8.5334,16.2957,2.8314,4.3491,4.5411,2.1438,1.789,4.8538,12.6093,3.101,2.852,11.0286,2.309,2.5648,2.3789,12.692,2.0825,5.1034,1.2375,15.4977,6.6432,8.531,4.8568,11.294,8.5615,8.9672,8.7801,4.5099,1.7197,5.2999,,,,,,,,,,,,,,,59,,,
-55441,2.5943,2.1743,,60-69y,Other,,,20.0645,5.3461,2.7145,2.3838,2.4344,ppmi,,,M,,0.5278,5.7445,4.9782,1.0493,10.5583,1.8894,0.45369,3.4616,3.9362,50.2056,15.4927,230.1025,4.5804,5.2712,2.01,2.2836,4.958,8.4525,2.5757,3.6176,0.68382,7.0579,13.1557,47.942,8.4974,3.0011,5.4858,2.4223,23.1378,6.6015,4.6679,1.3719,3.4187,9.2344,15.1307,4.0495,4.462,3.5815,1.9096,1.5704,5.3531,13.6248,3.6495,2.6781,13.1059,2.9161,2.6709,2.54,15.77,2.3536,4.7865,1.4591,17.1005,6.6008,9.9465,4.8035,13.5023,8.0311,9.4504,8.0414,4.8096,1.843,5.0529,,,,0.073621,Other,,GENPD,0.50703,4.5051,4.8292,1.0266,11.5461,2.1336,0.47528,3.4576,4.267,51.104,15.4914,235.49,4.6189,5.8264,2.0488,2.2437,4.8448,8.63,2.5992,3.9497,0.68467,7.7015,12.9937,36.031,8.8154,2.6494,4.7381,2.3435,20.5539,6.081,4.4496,1.804,4.0096,10.5197,15.8411,3.2525,4.9549,4.1113,1.695,1.5631,4.7472,13.252,3.4674,2.6841,11.8477,2.8566,2.7856,2.2263,15.5192,2.373,4.7948,1.4264,16.3575,6.9473,8.8435,4.9407,12.5353,8.5102,9.2657,8.098,3.8547,1.7874,4.7968,,,,,,,,,,,,,,,68,,,
-55615,0.86024,2.05,,50-59y,Other,,,17.3082,4.7046,2.8397,2.1633,0.92404,ppmi,,,F,,0.41013,4.2886,3.8623,0.85129,9.3965,1.3372,0.40392,3.3522,2.351,50.876,14.9389,197.9069,3.7005,4.7683,1.6343,1.8961,3.3556,7.1823,1.982,2.9852,0.31114,6.5643,10.7413,9.9687,7.7943,2.1367,4.2932,1.6687,17.5417,6.5637,3.7403,1.2046,2.6348,6.1794,13.5283,3.9384,4.507,3.4053,1.4245,1.3004,3.8315,9.5238,3.0835,2.0803,10.3452,2.2565,2.3398,2.1041,11.7649,2.0374,4.0274,1.2504,13.1633,4.7984,8.5263,4.1115,10.8399,7.4358,6.8195,7.3334,4.0308,1.4023,4.1836,,,,0.07139,Other,,GENPD,0.37988,3.9315,3.8415,0.85696,10.8412,1.6803,0.39948,3.454,2.4779,51.1832,14.6451,202.1841,3.8341,5.0177,1.6623,2.0657,3.5828,7.6902,2.0802,3.1628,0.3581,7.372,10.9987,8.2452,8.265,2.0842,4.526,1.7412,17.2614,5.4463,3.713,0.98415,2.1722,6.7075,14.1825,3.3145,4.339,3.3778,1.4627,1.2774,3.7987,9.9521,2.8209,2.078,9.4685,2.0734,2.2057,1.9008,11.3967,1.9418,3.9581,1.2181,13.1408,4.4886,7.3658,4.9537,10.5181,7.378,6.7689,7.5476,3.3065,1.4781,4.0192,,,,,,,,,,,,,,,55,,,
-55875,1.4171,2.3704,,50-59y,Other,,,20.0608,4.8368,2.4587,2.2022,1.6692,ppmi,,,M,,0.50579,4.8648,4.4043,0.9678,10.2171,1.9098,0.41201,3.601,3.1372,47.5699,16.1653,281.5302,4.2661,5.5994,1.799,2.1295,3.9313,8.0201,2.1704,3.6363,0.56577,6.861,11.7544,14.3933,8.1706,2.9699,4.8205,2.1028,21.0707,6.8667,4.5649,1.187,3.0188,7.7039,13.9518,3.4078,4.3366,3.7223,1.727,1.6369,4.9166,12.3277,3.4685,2.3126,11.8798,2.9174,2.8987,2.7807,12.7463,2.718,4.4044,1.3093,15.8037,5.5635,9.4861,3.8252,13.0838,8.2852,9.3188,8.6669,4.4609,2.0008,4.9991,,,,0.079922,Other,,GENPD,0.4533,4.2273,4.3101,0.96622,10.7813,2.2138,0.42449,3.7791,3.2695,48.0259,15.5186,280.3959,3.7203,6.179,1.9418,2.0354,4.1468,8.3447,2.1718,3.8685,0.7421,8.126,13.3294,13.2757,8.9549,2.7904,4.9263,1.9582,18.7668,5.2892,4.2111,1.2347,3.1258,8.4682,14.9953,3.1104,4.5823,3.7465,1.8249,1.5962,4.7699,12.8754,3.2054,2.4575,10.1792,2.3559,2.8731,2.3729,12.668,2.118,4.3723,1.2754,16.561,5.6457,8.5113,4.8985,12.2185,7.4603,9.2982,8.5475,4.0299,1.6611,4.6872,,,,,,,,,,,,,,,59,,,
-56744,1.7462,2.4955,,50-59y,Other,,,18.0761,4.7592,2.4698,2.1272,1.462,ppmi,,,M,,0.5044,4.7386,4.4174,0.89367,11.4068,1.885,0.41923,3.4984,3.3583,44.5555,13.9501,240.9112,4.1654,5.6659,1.6553,1.959,4.0573,7.3886,2.4076,3.0923,0.48967,6.8146,11.2103,22.1608,7.9586,2.7626,4.7427,1.9841,20.359,7.1972,4.5268,1.163,2.7907,7.2281,14.3716,3.6424,4.4114,3.6827,1.5741,1.5241,4.82,12.5568,3.279,2.2497,13.432,2.34,2.5985,2.1416,13.642,2.2523,4.7012,1.3773,16.2869,5.6,10.2236,4.3435,12.3814,7.3622,8.4848,7.2708,4.0238,1.5337,4.9629,,,,0.085957,Other,,GENPD,0.45543,4.2142,4.2764,0.90963,11.9229,2.0584,0.43247,3.8863,3.4745,45.3296,14.0446,240.8055,4.2851,5.4241,1.7736,2.0414,4.4766,7.38,2.389,3.4553,0.59647,7.7737,11.93,18.3374,8.7471,2.4651,4.5236,1.9774,20.0872,6.5249,4.1708,1.3026,3.0977,8.4267,14.9874,3.597,4.6885,3.2503,1.5756,1.5228,4.568,12.3788,2.9808,2.4014,11.803,2.5075,2.5352,2.0592,14.0921,2.0679,4.4354,1.2807,15.6411,5.7039,9.0222,4.8642,12.1039,7.9578,8.3743,7.7364,3.6809,1.6621,4.7428,,,,,,,,,,,,,,,56,,,
-56761,1.2013,1.9605,,60-69y,Other,,,22.3263,5.2478,2.6717,2.4712,1.7697,ppmi,,,M,,0.46039,4.5421,4.809,0.90554,10.7216,1.591,0.41941,3.4781,3.0119,48.6556,17.1682,263.1753,4.7748,4.8538,1.7983,2.3935,3.8609,7.6254,2.1357,3.0967,0.65336,7.1427,11.4198,19.2641,8.019,2.5482,4.9613,1.8299,19.8594,7.0837,4.1063,1.1615,2.7759,7.0862,14.3257,3.9913,4.3227,3.8494,1.7581,1.5385,4.6578,11.4109,3.3606,2.5905,12.7623,2.7137,2.6664,2.6022,12.7064,2.3416,4.5023,1.2928,15.2681,5.3466,9.8118,4.7241,12.985,8.3024,8.568,7.9668,4.4304,2.0249,5.2974,,,,0.074634,Other,,GENPD,0.40243,4.3551,4.274,0.85515,11.1306,1.8631,0.41879,3.228,3.0782,50.3014,17.8664,261.2505,4.3711,4.7963,1.7361,2.1634,3.934,7.7646,2.2523,3.3549,0.79327,6.8099,11.241,16.164,8.027,2.3474,5.0854,1.804,19.2377,6.1972,4.0059,1.1534,2.6937,7.7821,14.0778,3.4261,4.4539,3.7322,1.6869,1.5846,4.2896,11.1729,2.9317,2.5406,10.9949,2.659,2.4261,2.3622,12.5866,2.263,4.5164,1.2271,15.3143,5.1748,8.8608,4.9727,11.9383,8.5787,8.1832,8.4465,3.8036,1.8026,5.0175,,,,,,,,,,,,,,,66,,,
-60006,1.9388,1.6613,,+80y,Other,,,19.1515,5.6042,2.6261,2.2795,2.1645,ppmi,,,M,,0.42082,4.3737,4.5465,0.82297,9.6309,1.3821,0.36872,3.0384,3.0794,46.5508,17.3205,193.592,4.1054,4.6086,1.6771,1.7997,3.065,7.7058,1.8429,3.0991,0.99368,6.2007,11.4004,25.2751,7.5973,2.1609,4.4083,1.5591,17.0769,5.9827,3.6095,0.90428,2.2848,6.6871,13.2273,3.4624,4.1496,2.4636,1.4599,1.3847,4.4393,10.9103,3.4488,2.3859,10.8215,2.3482,2.417,2.1287,11.4059,1.9696,3.916,1.2742,14.7498,4.7937,8.6449,3.2961,10.0273,6.265,7.8644,7.5021,3.4043,1.6681,4.5466,,,,0.069897,Other,,PRODROMA,0.37594,3.4752,4.0665,0.81525,10.2078,1.6353,0.37411,3.1816,3.4014,46.7026,16.8381,197.998,3.7549,4.6126,1.6778,1.775,3.3051,7.7643,1.8193,3.2865,1.2125,6.7241,11.4201,28.8742,8.1714,2.0817,4.1213,1.5272,16.9942,5.4147,3.5572,1.0581,2.2735,7.4523,14.009,2.7507,4.0533,3.0966,1.3196,1.3563,4.0946,10.629,3.0979,2.2064,9.4722,2.3024,2.1709,1.9153,11.0765,1.9016,4.0604,1.1688,14.5046,4.7287,8.3265,4.1852,10.8649,7.1064,7.4489,7.8425,3.1725,1.5592,4.2177,,,,,,,,,,,,,,,82,,,
-60013,1.19,1.7256,,60-69y,Other,,,22.1689,5.1598,2.8856,2.3682,1.1186,ppmi,,,M,,0.51726,5.2283,4.6727,1.0098,10.192,1.9432,0.43259,3.7566,3.293,51.2522,17.7549,284.3293,4.4996,5.5588,1.9098,2.1553,4.2244,8.2044,2.333,3.6725,0.43814,7.1525,12.4633,10.6235,8.0405,2.9274,5.4945,2.2288,22.1508,7.5298,4.7099,1.2401,2.6549,8.401,15.665,3.9539,4.8304,4.4518,1.8983,1.6046,5.5442,13.9904,3.6303,2.4376,12.2679,2.8286,3.0024,2.2226,14.0278,2.5843,4.3663,1.3321,18.1176,6.2428,10.1922,4.5608,12.5325,8.8017,9.425,8.0282,4.8665,1.8359,5.4045,,,,0.084837,Other,,PRODROMA,0.44779,4.7386,4.515,1.0558,11.025,2.1794,0.42541,3.9018,3.2594,51.1522,17.3882,284.1241,4.4851,6.0597,2.0299,2.2016,4.3596,8.6004,2.4023,3.9065,0.48736,7.0751,13.2149,6.9626,9.018,2.8788,5.1112,2.2869,22.677,5.5238,4.5434,1.2557,2.6686,9.4356,16.3644,3.1768,4.828,4.0431,1.8701,1.6005,4.9977,13.2698,3.3863,2.4218,11.7723,2.1201,2.7582,2.069,14.9269,1.9834,4.2407,1.3638,16.1318,5.9507,9.1459,4.7793,11.8108,8.0929,8.9304,8.7738,4.1297,1.4528,5.215,,,,,,,,,,,,,,,62,,,
-60023,1.0957,1.5972,,60-69y,Other,,,20.6733,5.2599,2.7093,2.2648,1.119,ppmi,,,M,,0.46025,4.9777,4.1334,0.8821,9.4946,1.5771,0.40736,3.0703,2.745,46.8344,17.5185,229.463,4.1633,5.134,1.6175,2.0275,3.9695,7.3574,2.2399,3.1592,0.43086,6.6468,10.5602,7.3883,7.659,2.3821,5.4163,1.9399,19.3927,6.661,3.968,1.0295,2.6677,7.7039,12.9929,3.7455,4.3744,3.494,1.4337,1.4673,4.7889,11.5128,3.1843,2.3666,12.3763,2.5127,2.3447,2.3757,12.3882,1.8854,4.4875,1.2671,14.1787,5.7392,8.88,4.1236,12.2959,7.0592,8.2139,7.5915,3.9578,1.5666,4.7929,,,,0.065829,Other,,PRODROMA,0.4213,4.3731,3.7922,0.85955,10.7077,1.8911,0.42433,3.2799,2.9794,47.5219,16.9794,235.7102,4.1426,5.059,1.6174,2.0848,4.1212,8.0536,2.1933,3.3643,0.52173,7.1946,11.3084,10.0487,8.491,2.2557,4.9843,1.8619,18.4923,5.6748,3.9325,1.0491,2.645,8.2923,12.768,3.1072,4.4465,3.6329,1.5621,1.4241,4.3167,11.7242,2.9406,2.3225,10.662,2.3802,2.19,2.1394,12.7345,2.0564,4.3394,1.1953,14.5847,5.9895,8.4311,4.9014,12.113,6.9434,8.1697,7.3897,3.4701,1.7122,4.6007,,,,,,,,,,,,,,,63,,,
-60024,2.2851,2.4996,,60-69y,Other,,,18.8146,4.4724,2.9385,2.3473,1.6285,ppmi,,,M,,0.34571,4.2949,3.6423,0.81026,8.183,1.4258,0.3793,2.763,2.7947,47.0874,16.3979,212.2056,3.3875,3.8103,1.548,1.7602,3.5384,6.7667,1.8785,2.8624,0.69168,5.6864,10.0885,21.8522,6.6555,2.2458,4.7132,1.6722,17.4467,5.6884,4.118,1.172,2.8696,6.9731,12.0306,2.7377,3.9513,3.257,1.3046,1.3308,4.2647,10.0241,3.0667,1.9485,10.7712,2.0048,2.6159,2.0453,12.8263,1.7712,3.2724,1.1638,14.933,5.2315,8.0395,3.6485,10.2999,5.9201,7.8519,6.202,3.4152,1.4639,4.6097,,,,0.073545,Other,,PRODROMA,0.33942,3.9016,3.2421,0.80493,8.987,1.6435,0.37433,2.8942,2.9022,46.3853,15.9933,217.5875,3.62,4.0017,1.5377,1.8072,3.5942,7.1623,1.8589,3.0257,0.46648,6.1627,10.9906,15.3625,7.2955,2.15,4.4665,1.6186,18.2446,4.5588,3.7416,1.1251,2.5223,7.6739,13.0128,2.4832,4.0453,3.1526,1.5053,1.2877,4.0408,9.6956,2.7283,1.7576,9.0627,1.874,2.4617,1.7575,12.0293,1.556,3.3127,1.1544,14.7957,5.2926,7.5937,3.894,10.4157,6.1555,7.7471,6.6032,3.443,1.2369,4.3984,,,,,,,,,,,,,,,66,,,
-60033,1.9,2.4993,,60-69y,Other,,,17.7694,4.3209,2.5885,2.1017,1.7758,ppmi,,,F,,0.36631,4.1362,4.0372,0.73745,8.8725,1.3736,0.3356,2.6024,2.7853,43.0822,14.4138,209.0683,3.9892,3.9532,1.3865,1.9178,3.2414,6.5517,1.9849,2.8254,0.68086,5.7528,9.691,24.7107,6.8217,2.2039,4.4587,1.6607,16.6289,5.47,3.6729,1.0333,2.3084,6.3956,12.082,3.3271,3.8983,2.932,1.4213,1.3513,4.4493,10.5553,2.8612,2.2072,11.1744,2.2042,2.1143,2.1845,11.8188,1.7639,3.5765,1.1794,12.691,4.8323,9.1226,3.0601,11.2343,6.8565,7.7567,6.6887,3.3446,1.2897,4.4575,,,,0.070013,Other,,PRODROMA,0.36499,3.5792,4.0082,0.74695,9.5746,1.4324,0.35822,2.9212,3.3537,44.0687,14.3747,213.8891,3.7586,4.9484,1.4736,1.901,3.4212,6.7004,2.0378,3.125,0.72283,6.2162,10.2921,23.3958,7.6078,1.973,4.4313,1.7674,16.2684,4.6069,3.3577,1.2342,2.5623,7.0108,12.578,2.7768,3.8865,2.9482,1.564,1.3098,3.9455,10.6893,2.8411,2.1619,9.4676,1.8796,1.9264,2.0207,11.4362,1.6728,3.5836,1.1067,12.8564,5.2655,7.5197,3.7696,9.9673,6.664,7.5766,7.0194,3.1722,1.3489,4.2126,,,,,,,,,,,,,,,68,,,
-60035,1.4813,1.8692,,60-69y,Other,,,19.0897,4.5129,2.5932,2.134,1.3226,ppmi,,,M,,0.4335,4.3386,4.027,0.83016,7.7442,1.3629,0.37132,2.9872,3.3203,45.0216,15.8779,212.6614,3.8405,4.2802,1.702,1.7845,3.1917,7.1927,1.961,3.0988,0.55542,5.8463,10.9686,15.3346,6.5921,2.1011,4.8845,1.6627,16.949,5.6435,3.7225,1.2584,2.7966,6.9955,12.4792,3.2106,3.6138,3.0591,1.29,1.4253,3.9831,10.2695,3.1198,2.3109,10.488,2.0134,2.3011,2.2512,13.2276,1.7891,4.3293,1.1213,14.2819,5.406,8.0825,3.3124,8.7096,6.7337,7.7137,7.5662,3.0367,1.4221,4.5217,,,,0.071198,Other,,PRODROMA,0.39398,4.1223,3.7753,0.81288,9.3381,1.5488,0.37573,3.1113,3.4403,45.4964,15.4342,220.39,3.5885,4.5145,1.6563,1.6721,3.518,7.623,1.9604,3.2241,0.6692,6.804,12.0877,12.7721,7.3742,1.9587,4.7097,1.6513,16.7432,4.8509,3.62,1.2543,3.0498,7.556,13.7073,2.8917,4.0536,3.0875,1.3509,1.4335,3.5922,10.0224,2.8747,2.2034,9.5847,1.7985,2.17,1.9807,12.0076,1.6577,4.1914,1.0896,14.121,5.5927,6.7157,3.7779,8.3139,6.5275,7.5163,7.505,2.9432,1.322,4.411,,,,,,,,,,,,,,,67,,,
-60036,1.3443,1.9247,,70-79y,Other,,,16.0018,4.3896,2.2851,2.0068,1.3981,ppmi,,,F,,0.42638,4.1601,4.3541,0.80036,9.1985,1.4792,0.37736,3.0753,2.9435,41.9413,12.2098,190.5402,4.077,4.3705,1.5369,1.8789,3.3612,7.5168,1.9922,2.9647,0.72722,6.306,11.0774,23.6071,7.3944,2.2954,4.6111,1.6514,18.1523,5.9474,4.0495,1.1045,2.4662,7.0043,13.2183,3.4754,4.1216,2.8919,1.5278,1.26,4.6418,11.5587,3.0409,2.3969,11.9945,2.2375,2.4873,2.1824,12.0375,2.0963,4.4553,1.2455,13.7333,5.1336,8.8105,3.3492,11.7512,6.8208,7.3595,7.0597,3.8019,1.746,4.0497,,,,0.080845,Other,,PRODROMA,0.38567,3.6449,3.8707,0.79468,10.307,1.6388,0.38929,3.2425,3.1042,42.086,11.7926,194.7824,3.9647,5.0466,1.6112,1.9452,3.5947,7.417,2.1354,3.0905,0.63899,6.809,11.8439,19.9415,7.6925,2.0918,4.3676,1.6983,17.571,5.0574,3.7642,1.1396,2.7414,7.5453,13.8984,2.9228,4.0588,3.237,1.5124,1.2456,4.1832,11.5406,2.7353,2.2922,10.4312,1.9939,2.0402,1.9586,11.9905,1.6678,4.2488,1.1265,13.8367,5.0811,8.2775,4.3191,12.4203,6.7755,7.2925,7.3222,3.7934,1.4409,3.924,,,,,,,,,,,,,,,71,,,
-60040,2.0741,2.159,,70-79y,Other,,,19.8001,4.8601,2.5484,2.3209,2.6299,ppmi,,,F,,0.4737,4.2763,4.2639,0.76343,7.9591,1.3927,0.3743,2.6252,3.422,44.3878,15.7814,192.6267,4.0234,4.3492,1.4066,1.7586,3.2804,7.1522,1.8671,3.0658,0.99483,6.4283,10.0092,32.048,7.7605,2.087,3.9035,1.6634,16.1017,5.836,3.5974,0.90917,2.2479,6.2796,11.3157,3.5604,4.3961,2.9166,1.2278,1.4207,3.9263,10.068,3.1465,2.606,10.7601,2.5502,2.227,2.4546,11.2581,2.1701,3.8769,1.2762,13.0927,4.6753,8.1895,3.3727,10.0709,5.9122,7.7762,6.1656,3.319,1.8961,4.7898,,,,0.071354,Other,,PRODROMA,0.39795,3.4315,3.945,0.8,9.1539,1.6025,0.36726,2.8517,3.489,43.4127,14.9912,197.5897,4.0197,4.8591,1.5899,1.9444,3.4874,7.2395,1.9439,3.329,0.96683,5.9598,10.9216,24.8043,8.2157,2.041,3.8857,1.7037,15.974,4.8769,3.3454,0.96199,2.1746,7.4282,12.2023,2.8219,3.9669,3.0458,1.3047,1.4355,3.582,9.1756,3.061,2.4416,9.7409,2.1806,2.0143,2.0429,11.1697,1.6923,3.8921,1.136,12.5285,4.5172,7.8189,4.3394,10.0266,6.0971,7.4422,6.4507,3.3651,1.4998,4.6311,,,,,,,,,,,,,,,79,,,
-60041,1.692,2.4618,,70-79y,Other,,,18.4431,4.5159,2.5531,2.1108,1.4545,ppmi,,,F,,0.41908,4.3581,4.0937,0.72686,8.9148,1.3999,0.38833,2.9849,3.0392,46.1434,15.8612,185.7022,3.5557,3.8985,1.4395,1.7372,2.9656,6.989,1.7961,2.7819,0.74325,6.1516,10.0127,15.61,6.7576,2.2016,4.309,1.6893,16.1421,5.6043,3.5335,1.1283,2.3195,6.3736,12.5582,3.0304,4.1735,2.8983,1.378,1.1805,4.1248,9.9694,3.0599,2.2111,9.9702,1.927,2.3526,2.1485,10.9858,1.563,4.1267,1.2783,11.601,4.8893,7.4739,2.8322,9.84,6.6037,7.4113,6.7351,3.2163,1.3219,4.4165,,,,0.077012,Other,,PRODROMA,0.38462,4.0104,3.7122,0.72475,9.731,1.4575,0.381,3.3916,3.2704,47.5852,15.1185,192.3913,3.3164,4.2361,1.4041,1.696,3.3091,7.0387,1.7706,2.9492,0.63529,6.4595,10.4233,15.2579,7.5624,1.888,4.0872,1.6909,15.8199,4.7589,3.2243,0.99674,2.3402,7.2564,12.5892,3.0179,4.4416,2.6821,1.3364,1.1868,3.8229,10.4215,2.7164,2.1376,7.5592,1.9058,1.9829,1.9645,9.8785,1.4544,4.0694,1.2174,12.5522,4.9441,6.6702,3.6978,10.0806,5.9107,7.3904,6.105,2.9362,1.338,4.2401,,,,,,,,,,,,,,,74,,,
-60043,2.0868,2.2414,,60-69y,Other,,,22.9423,5.4485,3.1087,2.4707,1.8097,ppmi,,,M,,0.53427,4.4744,5.2873,0.97803,9.713,1.5334,0.43908,2.8694,4.7487,52.3608,19.3504,269.6657,4.5219,4.5867,1.7945,2.1819,3.4518,8.0634,2.2594,3.5853,1.3791,7.2638,12.7735,30.6911,7.4745,2.441,4.9846,1.8479,18.6287,6.7317,4.1959,1.2274,2.8252,6.6028,15.0906,4.0065,4.3968,4.0176,1.4832,1.9621,5.0764,11.2455,3.562,3.0069,11.9025,2.6778,2.583,2.8435,12.803,2.4141,5.8814,1.4499,14.4081,5.3453,9.8098,3.909,11.1992,8.0237,9.7802,8.2556,4.0837,1.9087,5.9406,,,,0.092071,Other,,PRODROMA,0.44291,3.9529,4.5643,0.99484,11.1557,1.7695,0.44338,3.3671,4.2729,52.8547,19.1905,271.8891,4.1763,5.0585,1.9007,1.8699,3.4673,8.3969,2.2301,3.9231,1.2424,7.0964,13.553,23.4157,8.1976,2.3052,4.7065,1.8226,18.0494,5.4328,3.9515,1.2005,3.084,7.6145,16.5134,3.0234,4.4844,3.124,1.5883,1.8996,4.3002,11.3159,3.325,2.7028,9.7664,2.2782,2.4692,2.4522,13.214,2.0945,5.2601,1.3286,14.2883,5.8273,8.1556,4.4958,11.2328,8.3501,9.3959,9.0679,3.4738,1.6973,5.7302,,,,,,,,,,,,,,,68,,,
-60044,1.6629,2.2688,,70-79y,Other,,,15.6211,3.9009,2.3132,1.9668,1.5642,ppmi,,,M,,0.42601,4.7103,4.4339,0.88469,9.0706,1.566,0.36307,3.462,3.3537,44.1225,14.1361,216.9882,4.1038,4.7871,1.8303,2.0857,3.4337,7.3471,1.9541,3.0078,0.6127,6.8029,11.6682,15.6307,7.8191,2.3639,4.4736,1.7558,17.8814,6.3118,3.9078,1.1452,2.2976,7.2335,13.868,3.6444,4.6981,3.515,1.5345,1.3116,4.3121,11.2814,3.3326,2.4875,11.3127,2.3725,2.5416,2.4304,12.0069,1.9097,4.8027,1.1451,14.276,5.1987,8.4318,3.4508,10.209,6.617,7.786,8.039,3.7519,1.7332,4.2078,,,,0.076138,Other,,PRODROMA,0.37794,4.0025,4.184,0.88083,9.2879,1.7805,0.37923,3.4152,3.234,44.6161,13.0309,217.8871,4.0464,4.6083,1.869,1.9806,3.7803,7.6322,1.9503,3.1046,0.75044,6.8871,11.4516,15.9856,8.4079,2.2233,4.4935,1.8373,17.81,5.3364,3.8429,1.0138,2.3429,7.9502,13.8374,3.138,4.4233,3.4375,1.4882,1.2413,3.8901,10.467,3.0043,2.3306,10.1599,2.1515,2.3347,2.196,11.8928,1.7887,4.3484,1.1159,13.5096,4.8563,7.7267,3.9791,9.9966,7.0719,7.1799,8.2678,3.4034,1.5221,3.906,,,,,,,,,,,,,,,73,,,
-60046,1.4081,1.6341,,70-79y,Other,,,17.7317,4.4813,2.5742,2.2044,1.6861,ppmi,,,M,,0.34747,3.7635,3.894,0.76211,8.6437,1.294,0.35347,2.937,2.3873,43.5164,14.7824,193.9812,3.5481,3.6191,1.4896,1.9024,3.0299,6.3833,1.8577,2.7289,0.38515,5.5704,9.5104,14.7015,6.7458,2.0438,4.0636,1.4015,15.6201,5.5387,3.4506,1.0407,2.1922,5.8622,11.508,3.2149,3.9089,3.2393,1.2242,1.2686,3.9881,9.6216,2.9335,2.0914,11.1532,2.2113,2.0782,2.0519,12.1179,1.7786,3.697,1.1405,13.3124,4.6462,7.7622,3.0882,10.1258,6.6688,7.2926,6.7969,3.4378,1.3942,4.3902,,,,0.076463,Other,,PRODROMA,0.32138,3.3242,3.5665,0.75612,9.2599,1.563,0.34425,2.9603,2.4045,44.1063,14.189,195.6274,3.3246,4.3537,1.5104,1.6551,3.3133,6.4342,1.7658,2.8763,0.41295,5.9499,10.3538,13.0472,7.3147,1.8873,3.7735,1.4356,15.7742,4.9701,3.3566,0.8267,2.1723,6.4851,12.624,2.7114,3.7915,2.5969,1.2486,1.2642,3.5079,9.893,2.7022,2.0401,9.3693,1.8269,2.037,1.8673,11.6293,1.5951,3.4595,1.073,12.956,4.7047,6.9996,4.1371,10.4669,6.577,7.2005,7.1035,2.7481,1.2686,4.228,,,,,,,,,,,,,,,73,,,
-60048,1.1331,1.6648,,70-79y,Other,,,18.3358,4.3823,2.4177,2.1226,1.2556,ppmi,,,F,,0.38539,4.1668,4.1186,0.75753,8.6657,1.3995,0.35879,3.1155,2.6851,39.1226,13.7072,181.5808,3.4181,4.27,1.5188,1.7185,3.3206,6.2846,1.9141,2.9588,0.53832,5.4417,10.1627,12.9319,6.9201,2.0779,4.3683,1.6833,18.1468,5.7276,3.6119,0.90175,2.3227,6.7739,12.0923,2.7188,3.8525,3.2748,1.1467,1.2377,3.9877,9.9128,2.9083,2.1076,10.5792,2.1225,2.2618,2.1451,12.3732,1.8014,3.8218,1.1092,13.9701,4.814,7.7,3.2113,8.9245,6.5866,7.6307,7.2061,3.1353,1.303,4.1799,,,,0.0773,Other,,PRODROMA,0.34941,3.9374,3.8908,0.73454,9.4909,1.5613,0.3515,3.1674,2.7352,38.4954,12.987,181.138,3.2491,4.6551,1.4678,1.9698,3.5088,6.384,1.8683,3.1057,0.49667,6.0813,10.5054,10.205,7.6768,1.898,4.2187,1.6355,17.5651,4.8877,3.4135,1.0069,2.385,7.1246,12.7461,2.7486,3.9661,3.2404,1.3278,1.1643,3.6028,10.0733,2.6703,2.1137,8.0598,1.806,2.0463,1.9529,10.8071,1.6617,3.7654,1.0572,12.9452,5.0088,6.9607,3.7089,8.9927,6.842,7.5373,7.3725,3.3974,1.1976,4.0216,,,,,,,,,,,,,,,75,,,
-60056,1.8015,2.2978,,70-79y,Other,,,16.5029,4.3179,2.4495,2.0617,1.5036,ppmi,,,M,,0.44367,5.23,4.5082,0.88752,9.3216,1.5143,0.40076,3.5931,2.7115,42.7269,14.1739,211.0063,4.2338,4.4092,1.7037,2.2542,3.7763,7.3206,2.0284,3.251,0.50696,6.6517,11.1795,20.0028,7.5418,2.4252,4.8695,1.8535,19.4269,6.4286,3.7762,1.1263,2.4095,7.0386,13.9868,3.6909,4.504,4.062,1.7598,1.3187,4.7927,11.059,3.3638,2.2031,11.3429,2.1526,2.4485,2.1593,11.5896,1.6936,4.0853,1.3181,13.9233,4.9364,8.7641,3.7606,11.9487,7.1476,7.7467,7.3518,4.5468,1.3768,4.2705,,,,0.084918,Other,,PRODROMA,0.37149,4.4833,4.1166,0.8351,10.8758,1.703,0.3847,3.6787,2.981,42.6221,13.7246,214.6045,3.9582,4.5533,1.7282,2.3053,3.8378,7.1979,2.0218,3.2336,0.67641,6.8669,10.9168,18.2223,8.1967,2.2282,4.0792,1.7169,19.4927,5.2757,3.6271,1.2259,2.7786,7.9926,13.8978,3.4656,4.6021,3.845,1.6591,1.3823,4.3318,11.5663,2.9767,2.0133,9.3017,2.0983,2.3022,1.8205,11.981,1.6123,3.7687,1.2102,13.8035,5.7975,8.2863,4.4655,12.8152,6.6947,7.5029,7.4854,3.7662,1.2765,4.187,,,,,,,,,,,,,,,70,,,
-60057,1.2454,1.5549,,60-69y,Other,,,17.4138,5.171,2.6971,2.3781,1.3554,ppmi,,,M,,0.54359,4.8461,4.9501,0.85295,9.367,1.678,0.44098,3.143,3.152,49.4909,16.5234,230.0088,4.2031,4.601,1.7071,2.0675,3.6735,7.4227,2.3034,2.9942,0.51495,6.7162,11.3974,11.9038,6.9666,2.4677,4.758,2.1189,18.9614,6.5493,4.2631,1.149,2.3839,7.5995,13.4235,3.6746,4.1953,3.1484,1.5583,1.5424,4.2102,10.2575,2.9582,2.6518,11.8783,2.1673,2.6052,2.38,12.1985,2.0046,4.9517,1.4095,15.2529,5.2211,8.874,3.6487,11.1572,6.3793,8.7703,7.323,3.7886,1.618,4.4898,,,,0.073807,Other,,PRODROMA,0.46662,3.9835,4.7004,0.87433,10.0574,1.7867,0.43498,3.2033,3.2211,49.8125,15.7512,233.9289,4.1517,4.6516,1.6652,2.0614,4.0498,7.4767,2.2155,3.1504,0.57436,6.7553,11.343,10.9598,7.615,2.2511,4.7593,2.0908,18.299,5.465,3.9542,0.9009,2.5025,8.537,12.7479,3.0861,4.2019,3.4597,1.5898,1.5692,3.8287,11.0044,2.7075,2.6897,10.4864,2.2012,2.6033,2.2322,13.1486,1.9123,4.8485,1.3086,15.5389,5.6115,8.208,4.2487,10.7705,6.7749,8.5223,7.8631,3.527,1.5428,4.3698,,,,,,,,,,,,,,,61,,,
-60070,1.1153,1.6519,,60-69y,Other,,,16.957,4.1964,2.5329,2.0479,0.98858,ppmi,,,F,,0.41036,3.8053,3.6,0.82815,8.2107,1.351,0.34024,3.0381,2.8446,44.472,14.1265,192.8593,3.1091,3.9953,1.5501,1.7628,2.9978,6.3623,1.7793,2.9749,0.37055,5.9438,9.714,8.4526,6.6317,2.0868,4.4547,1.4577,16.2585,5.3046,3.5197,1.2557,2.7634,5.655,12.626,3.1388,3.8612,3.5352,1.2664,1.2827,4.0713,9.6026,2.9469,1.8247,11.1042,1.832,2.1023,1.8189,11.6455,1.51,3.9306,1.0167,12.6567,4.9586,8.3395,3.1009,8.7419,6.7065,7.0616,6.8993,3.4235,1.1227,4.1791,,,,0.069641,Other,,PRODROMA,0.38354,3.4472,3.3886,0.81075,9.4766,1.4492,0.36139,3.0672,2.8851,45.0322,13.9693,194.9931,3.0851,4.3424,1.5723,1.6657,3.0703,6.9028,1.8244,3.1999,0.56877,5.8919,10.4525,6.8137,7.2145,1.9377,4.3125,1.4463,14.7862,4.6434,3.4572,0.94539,2.319,6.5659,13.352,2.7087,4.0879,3.4302,1.4062,1.1951,3.7247,9.6156,2.7123,1.9078,9.1252,1.5815,2.0337,1.6354,11.3784,1.3861,3.8891,1.0223,12.1793,4.695,6.6192,3.976,9.15,6.3207,6.769,6.9554,3.2061,1.104,3.9627,,,,,,,,,,,,,,,63,,,
-60073,2.4138,2.3286,,60-69y,Other,,,19.1667,5.204,2.8104,2.4104,1.6673,ppmi,,,M,,0.41748,4.7892,4.394,0.81176,10.9183,1.4967,0.3938,3.4594,3.2597,52.5107,17.5346,231.781,4.7267,4.8,1.6814,2.0838,3.7098,7.9798,2.2358,3.132,0.70244,6.8859,13.1527,15.1682,8.3243,2.3339,5.1213,1.992,20.1857,6.5267,4.0811,1.3186,2.9872,7.6191,15.7327,4.052,4.5912,4.1826,1.5547,1.4269,4.8791,11.6792,3.4908,2.6221,13.0645,2.5423,2.4739,2.5843,14.7455,2.1136,4.2456,1.2911,14.8809,6.142,9.728,3.6154,12.0779,7.2674,8.1829,8.2045,4.0724,1.9087,4.6765,,,,0.076121,Other,,PRODROMA,0.39084,3.9774,4.3369,0.88329,11.8671,1.8173,0.41912,3.3121,3.5865,52.3691,17.3271,238.1499,4.3991,5.2161,1.8951,2.1248,4.1541,8.525,2.3082,3.56,0.71013,6.9282,13.8157,13.43,9.1302,2.3095,5.1008,1.9305,18.6423,5.5751,3.9888,1.2591,2.9404,8.613,17.1456,3.4864,4.8108,3.6322,1.6455,1.3694,4.4461,12.2404,3.3468,2.5027,12.0634,2.6445,2.2605,2.1721,14.1646,2.2295,4.2433,1.2731,14.9522,6.1071,9.2994,4.453,11.2118,7.7899,8.0271,8.682,3.7589,1.679,4.5297,,,,,,,,,,,,,,,65,,,
-60074,1.9308,2.2357,,70-79y,Other,,,20.8254,5.0008,2.6511,2.3212,1.6366,ppmi,,,M,,0.41869,5.0504,4.9676,0.85767,9.3262,1.5263,0.39765,2.9319,3.313,47.1353,16.821,234.4403,4.1529,4.4473,1.6593,2.2122,3.7659,7.4341,2.2689,3.1264,1.0835,5.986,11.153,29.7647,7.1203,2.3884,4.6306,2.0064,17.7578,5.5483,4.0332,1.0612,2.5771,8.0039,11.5288,3.4582,4.0606,3.8061,1.4208,1.6269,4.5209,11.5072,3.1314,2.7547,10.9553,2.6309,2.7499,2.2485,13.2519,2.2378,4.5023,1.4132,14.7599,5.7984,8.3458,3.3311,11.2408,6.4624,8.2649,6.5709,3.8105,1.7847,5.1272,,,,0.086049,Other,,PRODROMA,0.39969,4.3136,4.6387,0.85866,10.1423,1.7513,0.3929,3.117,3.5024,46.8104,16.4306,240.6982,4.2348,4.5216,1.689,2.0964,4.0229,7.6212,2.2811,3.3538,1.2202,6.6689,11.464,25.6208,7.6095,2.2875,4.6368,1.9994,18.7702,4.7565,4.0369,1.0138,2.4671,9.0726,12.3372,3.3829,4.0096,3.3142,1.6774,1.639,4.0331,10.7635,2.7358,2.7799,9.9564,2.3436,2.4569,2.1921,12.8092,1.9649,4.3646,1.357,13.7711,5.3846,7.7117,3.8789,10.8002,6.7663,8.1952,7.5356,3.737,1.6894,4.9193,,,,,,,,,,,,,,,74,,,
-60075,1.373,1.879,,60-69y,Other,,,20.5296,5.6086,3.2328,2.5519,1.7744,ppmi,,,M,,0.48439,4.6683,4.5439,0.94927,9.7805,1.6425,0.41717,2.7135,3.6433,54.1315,16.9783,225.1818,4.5001,4.2262,1.9009,2.1054,3.9818,8.7913,2.2786,3.6014,0.41796,6.9651,12.5472,18.6163,8.4335,2.5457,4.7459,1.8608,20.099,6.7238,4.2699,1.1139,2.7756,7.382,14.867,3.5508,4.9817,3.3476,1.6858,1.4532,4.7366,10.7011,3.7622,2.5168,12.2272,2.6332,2.6065,2.4404,13.5999,2.2165,4.4901,1.2757,15.758,5.2439,9.788,3.6144,12.3045,8.1735,9.1045,8.9939,4.1896,1.7055,5.1271,,,,0.085638,Other,,PRODROMA,0.45624,3.7792,4.5445,1.0096,10.8431,1.8506,0.44391,3.0279,3.8842,54.166,16.6326,230.1593,4.2275,4.4458,2.0135,2.1985,4.1016,8.8168,2.2186,3.8568,0.47369,6.8643,12.8692,17.0368,9.017,2.3111,4.5018,1.8225,18.8581,5.2739,4.0838,1.276,2.9483,8.377,15.1776,3.0661,4.7723,3.3856,1.6539,1.4784,4.2601,10.8189,3.5684,2.5702,11.3451,2.2911,2.364,2.3279,13.283,1.9636,4.6386,1.2549,15.8185,5.5268,7.858,4.3034,13.0519,8.2752,8.9647,8.9305,3.9126,1.6133,4.9893,,,,,,,,,,,,,,,66,,,
-60091,1.5477,3.5646,,60-69y,Other,,,21.3576,5.9907,3.3781,2.7096,1.5233,ppmi,,,M,,0.56238,5.1182,5.004,0.96159,10.6763,1.8197,0.42953,3.5316,3.7417,56.7074,18.0638,258.0974,4.6642,5.2503,1.8734,2.5882,4.148,8.6111,2.4907,3.5437,0.52276,7.8763,13.0243,17.3314,9.1588,3.0306,5.5465,2.3827,21.1959,8.5839,4.4973,1.3131,2.9161,8.3543,15.7169,4.2741,5.2464,4.0674,2.0985,1.6857,5.0872,12.2255,3.73,2.5505,13.9353,2.6835,2.9844,2.6896,12.9619,2.1658,5.1942,1.3477,15.7666,5.9939,9.7631,4.1791,12.2946,8.1247,9.5252,8.6056,4.9536,1.8963,5.4606,,,,0.082682,Other,,PRODROMA,0.49723,4.6266,4.714,1.0013,12.9267,1.9517,0.45254,3.8588,3.6046,57.3157,17.718,262.8054,4.4744,5.5918,2.0055,2.2773,4.5875,8.4766,2.3705,3.7391,0.5807,7.9856,13.3209,17.5135,10.1621,2.5944,5.2702,2.1789,21.3761,6.7653,4.2351,1.247,2.9702,8.932,17.0069,3.7913,5.2758,3.7932,1.9162,1.6018,4.4847,12.6944,3.4273,2.6273,12.3572,2.3179,2.8301,2.4489,14.7682,2.3018,4.9644,1.2474,15.6065,6.1431,9.4753,5.3043,13.5393,8.8328,9.4459,8.7534,4.2982,1.8057,5.2396,,,,,,,,,,,,,,,62,,,
-60096,1.5789,2.249,,+80y,Other,,,19.8963,5.7335,3.1769,2.552,1.9034,ppmi,,,M,,0.44394,4.7675,4.5464,0.92068,10.3866,1.782,0.41913,3.2248,3.3238,50.9405,17.1212,221.1293,4.5829,4.3719,1.9104,2.1254,4.3638,8.2138,2.257,3.4897,0.66743,7.6639,12.7608,25.1864,8.4167,2.7119,5.2214,2.037,19.2588,6.9787,4.2253,1.3585,2.8543,7.6422,16.337,3.5343,5.1066,3.1527,1.7824,1.4794,4.9648,11.7119,3.6344,2.445,12.9184,2.6709,2.8214,2.4586,12.7942,1.9853,4.4072,1.5038,14.6555,5.0787,9.7122,3.6464,11.7929,7.5492,8.7361,8.3716,4.015,1.7298,5.0446,,,,0.085787,Other,,PRODROMA,0.39547,4.1003,4.5222,0.95956,10.7773,1.7384,0.42685,3.5188,3.2705,51.5282,15.6028,227.7446,4.3955,5.0681,2.0111,2.3128,3.9712,8.7162,2.0236,3.8442,0.83996,7.5915,13.5672,23.6155,9.3514,2.2719,4.769,1.9161,19.8142,6.0554,3.7327,1.2816,2.8928,8.2372,15.9248,3.4875,5.2705,3.8204,1.6059,1.4653,4.7022,12.7531,3.4756,2.6589,10.6437,2.4715,2.5425,2.4808,12.6955,2.0069,4.2232,1.404,16.6258,5.6114,8.6716,4.955,12.0419,7.9146,8.8019,9.2976,3.7881,1.7361,4.9371,,,,,,,,,,,,,,,81,,,
-60101,1.1008,1.6619,,60-69y,Other,,,17.3012,4.7831,2.749,2.3158,1.3289,ppmi,,,M,,0.44373,3.8288,3.9644,0.73995,8.3635,1.5318,0.36139,3.1949,3.1993,45.1549,14.4153,198.5471,3.2781,3.9338,1.4639,1.7559,3.2913,6.9035,1.8001,2.7301,0.37964,6.5442,10.4463,14.1539,6.9393,2.3383,3.988,1.5425,16.9481,6.41,3.7773,1.0015,2.303,6.0716,12.5372,3.3295,3.9546,2.5602,1.4492,1.3418,4.0032,10.0613,2.8449,2.08,10.5984,2.1022,2.4476,1.841,10.942,1.7193,4.0507,1.1217,12.1461,4.7281,7.9808,3.2759,9.2505,6.4683,7.6991,7.1026,3.284,1.2403,4.2892,,,,0.062103,Other,,PRODROMA,0.39989,3.535,3.7791,0.78762,9.1955,1.6097,0.36285,2.9803,3.3673,45.3059,15.6445,199.2944,3.4154,4.4001,1.6259,1.7115,3.2708,7.418,1.8047,2.9509,0.50199,6.1876,10.9666,12.4617,7.2918,2.0278,3.7601,1.4618,16.1302,4.9185,3.6915,0.82723,2.1174,6.6582,12.1349,2.7529,3.8848,3.1104,1.3923,1.3074,3.7676,9.4022,2.6767,2.1127,9.3958,2.0221,2.3185,1.8166,11.0031,1.666,3.7836,1.0634,12.4884,4.6344,7.1928,4.1208,9.3205,6.3744,7.5372,7.6159,2.9804,1.2479,4.1374,,,,,,,,,,,,,,,67,,,
-60107,1.5105,2.1938,,60-69y,Other,,,19.9938,4.4896,2.0626,2.133,1.5352,ppmi,,,M,,0.47561,4.9208,4.4625,0.86646,9.9707,1.5575,0.39638,3.2059,2.7712,42.6822,16.962,244.6629,4.4031,4.9797,1.6845,1.9736,3.3928,8.0037,1.9738,3.1601,0.50333,6.5475,11.8096,22.3803,7.8289,2.2568,5.0061,1.8713,19.9747,6.4911,3.9649,1.2415,2.5767,7.0849,13.9674,3.3461,4.2803,3.5009,1.3304,1.5952,4.8155,12.4052,3.2671,2.596,11.5123,2.4204,2.4741,2.3692,12.4073,1.9904,4.3509,1.2093,13.8396,5.4317,9.2626,3.9935,11.8183,6.9655,8.9544,7.4742,4.075,1.5119,5.1241,,,,0.078,Other,,PRODROMA,0.40697,4.4868,4.1831,0.88238,11.4255,1.7485,0.39327,3.3257,2.9549,43.6274,16.7207,245.5359,4.249,5.0189,1.7834,1.9828,3.6075,8.3793,1.9638,3.3953,0.55956,7.1218,12.3274,20.2493,8.0345,2.1229,4.8696,1.824,17.7507,5.3886,3.7511,1.053,2.5233,7.8512,14.5972,2.9501,4.3584,3.7969,1.3331,1.5688,4.4655,13.0734,3.1321,2.6751,10.2249,2.5059,2.3555,2.2853,12.4306,1.9542,4.1329,1.1048,13.6788,5.5641,8.4765,3.9652,12.0477,7.3615,8.7036,7.6716,3.4143,1.6177,4.8837,,,,,,,,,,,,,,,67,,,
-60108,2.5117,2.2558,,70-79y,Other,,,14.8395,4.4712,2.303,1.9519,2.06,ppmi,,,M,,0.41236,4.6621,4.1985,0.63239,8.7096,1.4478,0.35375,2.6322,2.9031,38.7135,12.1833,161.6878,4.2542,4.2243,1.2804,1.7702,3.802,6.1412,1.9954,2.4734,0.90829,5.77,9.665,24.9003,6.7445,2.1108,4.4103,1.803,17.1297,5.6762,3.7087,1.0986,2.3321,7.0085,11.2292,2.8825,3.5177,3.2851,1.3558,0.9819,3.9984,9.9921,2.8224,2.7048,12.017,2.4011,2.2393,2.3792,12.7429,2.03,3.5486,1.3118,13.037,4.4742,8.9078,3.0408,10.0958,6.5729,6.5086,7.0931,3.5205,1.6122,3.6756,,,,0.059865,Other,,PRODROMA,0.37116,4.0771,3.9968,0.68025,9.6027,1.6646,0.35938,2.6142,3.2354,39.7539,11.9779,165.5307,4.1533,4.2665,1.4082,1.9373,3.7834,6.3735,1.9119,2.6613,0.88245,6.4927,10.7901,22.9385,6.8456,1.9905,3.7225,1.6793,17.1849,5.4472,3.619,1.1572,2.4358,8.092,12.947,2.6255,3.656,3.6273,1.2761,0.95909,3.8704,10.1825,2.5187,2.5889,10.011,2.2286,1.9957,2.0212,11.1269,1.8543,3.4914,1.208,13.8386,5.3624,8.3446,3.854,9.1349,7.0835,6.5321,7.1131,3.369,1.5037,3.5075,,,,,,,,,,,,,,,77,,,
-60109,1.282,1.9718,,70-79y,Other,,,18.3872,4.5497,2.7369,2.3432,1.2356,ppmi,,,M,,0.40567,4.4824,4.7053,0.81265,9.8767,1.5678,0.3697,2.4001,2.8621,47.6767,16.6911,225.1877,4.0845,4.7126,1.6121,2.1881,3.7754,7.5858,1.9961,3.0406,0.43823,6.6576,11.2725,10.6713,7.4961,2.48,4.7359,1.7857,17.6349,6.2588,3.9881,1.1585,2.3121,7.2666,13.0933,3.8167,4.5944,3.3207,1.6245,1.3589,4.8412,11.0259,3.2505,2.4993,11.5259,2.6312,2.4029,2.2834,11.3525,2.0422,4.0936,1.189,13.7497,5.236,9.4756,3.7447,10.509,7.0522,7.8457,6.8547,4.1413,1.6214,4.5047,,,,0.076895,Other,,PRODROMA,0.3785,3.748,3.9934,0.78857,10.2205,1.91,0.36835,2.7407,2.9855,50.2395,16.0233,225.147,3.8129,4.8742,1.6398,2.0236,3.9524,7.857,2.0992,3.1423,0.48462,7.076,11.8948,8.526,8.1348,2.3308,4.6619,1.7994,16.8746,5.4843,3.9696,1.045,2.2496,8.0985,13.9941,3.0016,4.3262,3.2467,1.5577,1.3779,4.2422,10.8009,3.0668,2.3509,10.6693,2.4645,2.3529,2.0106,11.0964,1.965,4.0118,1.1183,13.1202,4.8939,8.0517,4.4786,10.7573,6.7724,7.6159,7.5658,3.5615,1.533,4.374,,,,,,,,,,,,,,,72,,,
-60148,1.4525,2.2166,,60-69y,Other,,,18.8894,4.6415,2.6737,2.181,1.6287,ppmi,,,M,,0.49287,4.5254,4.6119,0.85467,8.3423,1.438,0.43283,3.7298,3.0181,46.136,16.3209,217.8667,4.049,4.9042,1.7216,2.0308,3.5409,6.6149,2.0393,3.0803,0.72534,6.2559,9.5208,20.1409,7.5654,2.3228,4.6877,1.8483,19.1879,5.3599,4.0726,1.2952,2.6824,6.9908,12.0641,4.0241,4.4039,3.3577,1.5475,1.5962,4.0781,10.7934,3.1763,2.4414,11.7875,2.7358,2.7454,2.5178,13.3111,2.3168,4.3675,1.3322,14.2953,5.2905,9.289,3.8539,10.9069,7.585,8.5346,7.7672,4.0216,1.7514,4.8223,,,,0.075395,Other,,PRODROMA,0.43368,3.6316,4.2214,0.85652,8.9093,1.7555,0.4354,3.6816,3.3386,47.0621,15.782,223.0582,4.0841,4.6367,1.7733,1.9537,3.7875,7.3846,2.0404,3.4191,0.66232,6.5722,11.0098,20.5264,8.4858,2.1921,4.3538,1.8549,18.2919,5.1479,3.696,1.0738,2.6191,8.0814,12.8873,3.3371,4.2978,3.7741,1.4653,1.5772,3.9941,11.1572,3.1183,2.5312,11.1942,2.596,2.4043,2.1025,12.7423,2.109,4.1935,1.2787,15.1993,5.4213,8.071,4.2969,11.7134,6.7133,8.4444,7.5296,3.5659,1.6484,4.6649,,,,,,,,,,,,,,,67,,,
-60170,2.057,2.0648,,60-69y,Other,,,17.9153,4.2211,2.7435,2.1639,1.8094,ppmi,,,M,,0.37023,4.4942,3.7148,0.81616,7.7286,1.4054,0.3479,3.3521,2.4486,43.1683,17.4733,265.0377,3.8286,4.8132,1.3841,1.6669,2.8406,6.5562,1.8279,3.0287,0.58917,4.7836,9.693,24.45,7.4073,2.1361,4.5039,1.6038,14.77,4.2632,3.4545,1.0315,2.3819,6.1644,11.4732,3.2322,3.938,2.3945,1.2561,1.5551,3.5938,9.3549,2.793,2.202,8.9218,2.4554,2.171,2.2537,10.2727,1.8069,3.1155,1.1613,11.5578,4.5803,7.1027,2.649,7.5946,6.0416,7.7856,6.4952,2.9668,1.4823,4.8929,,,,0.052396,Other,,PRODROMA,0.30787,4.1382,3.6768,0.80267,8.4274,1.4589,0.35451,3.3148,2.169,42.0257,16.7777,254.2431,3.3186,4.4949,1.3991,1.8252,3.2313,6.5499,1.9178,3.2956,0.67981,5.0489,9.3389,20.6573,7.8557,1.926,4.3817,1.7268,15.6276,4.3878,3.1783,1.0262,2.1847,6.7845,11.3559,2.647,3.9509,2.8825,1.2639,1.4425,3.3493,8.9247,2.5962,2.1183,7.8938,1.8622,2.0293,1.867,10.0331,1.5098,3.1638,1.0415,10.8342,4.5052,6.4432,3.6585,7.9599,6.7797,6.7238,6.769,3.2498,1.2589,4.4741,,,,,,,,,,,,,,,62,,,
-85062,1.3949,2.3699,,60-69y,Other,,,20.8126,4.339,2.7597,2.2329,1.3861,ppmi,,,M,,0.48992,5.1635,4.6127,0.99987,9.5729,1.7381,0.42422,3.2379,3.5389,47.3853,17.8635,259.7477,4.3517,5.0744,1.811,1.9772,3.7509,7.9806,2.1884,3.5448,0.56907,6.3251,11.9599,15.663,7.8034,2.6628,5.1858,2.0848,19.423,5.85,4.282,1.1065,2.3353,7.3284,13.7798,3.6336,4.432,3.0069,1.6505,1.7654,4.7225,11.3912,3.4483,2.7894,12.6095,2.6839,2.8713,2.8344,12.5746,2.0066,5.3226,1.2865,14.8981,5.3424,9.6032,4.0657,11.5193,6.973,8.7512,8.2746,3.8116,1.8995,5.2029,,,,0.080044,Other,,PRODROMA,0.42486,4.7347,4.7772,0.99474,10.7032,1.9761,0.43063,2.9493,3.6729,45.9814,16.7974,262.3804,4.4038,4.678,1.8596,2.0933,4.041,7.8021,2.0815,3.6573,0.55531,7.5778,11.776,15.3007,7.8806,2.4135,5.455,2.0344,19.9133,6.3052,4.1168,1.0627,2.6724,8.5699,13.5433,3.5005,4.3937,3.0844,1.615,1.7197,4.3742,11.4681,3.0926,2.732,10.2707,2.4513,2.7252,2.569,12.622,2.0428,5.4054,1.1478,14.2387,5.5989,7.8017,4.5987,10.2388,6.6699,8.168,8.5389,3.3332,1.8466,4.9582,,,,,,,,,,,,,,,67,,,
-85236,2.1579,2.9593,,60-69y,Other,,,18.6689,6.3636,3.0382,2.682,2.4934,ppmi,,,M,,0.5097,4.8368,4.7132,0.93301,9.2036,1.612,0.4179,3.7104,3.6138,56.5915,16.392,234.5728,4.4456,4.4732,1.7867,2.0109,3.7254,8.2294,2.1202,3.1564,0.67563,7.5755,13.3497,27.5634,8.3789,2.5845,5.1574,1.7203,20.909,6.6095,4.3098,1.4025,3.1086,7.8915,15.6271,3.4646,4.7414,3.5099,1.4584,1.441,5.4791,11.9504,3.688,2.4077,14.9085,2.495,2.6945,2.4551,15.3571,2.3148,4.4087,1.3166,16.6729,5.8644,9.3077,4.1839,13.5055,8.0727,8.4523,8.3831,3.8831,1.9195,4.8111,,,,0.0837,Other,,PRODROMA,0.48929,4.405,4.2681,0.86752,10.8142,1.9208,0.43805,3.6016,3.878,56.0054,15.7162,238.6566,3.7348,5.0223,1.7906,2.0048,3.6873,9.1184,2.1064,3.2349,0.59971,7.5782,13.9077,21.9502,9.7776,2.3447,4.9417,1.6628,20.3274,5.3785,4.3203,1.4935,3.4126,8.6053,15.9397,3.3722,5.0093,3.8119,1.5654,1.4117,5.046,12.0505,3.4443,2.4633,11.781,2.2856,2.5899,2.2877,15.0744,2.1228,4.3153,1.2782,16.7064,6.1177,8.0752,4.7815,12.0964,8.5803,8.1503,8.3218,3.7298,1.6767,4.585,,,,,,,,,,,,,,,67,,,
-85242,2.0442,2.1468,,60-69y,Other,,,24.4819,5.0229,3.121,2.3922,1.5905,ppmi,,,M,,0.4718,5.4123,4.6496,0.91686,9.7745,1.6921,0.43376,3.4753,3.2352,56.9446,20.0996,235.9792,3.8534,4.9623,1.7168,2.2764,4.0524,7.7219,2.1798,3.3731,0.40702,7.0127,11.5428,18.0168,7.8664,2.5976,4.9962,2.1447,20.6792,7.216,4.2737,0.99735,2.7922,8.428,14.5756,3.5066,4.5076,3.5187,1.7133,1.6047,4.9824,11.7031,3.3399,2.3359,13.014,2.7018,2.5259,2.1323,15.0241,2.7027,4.4747,1.4232,16.8867,6.9735,8.6015,3.7009,12.0004,7.2454,9.2622,7.4756,4.5143,1.8292,5.6494,,,,0.084632,Other,,PRODROMA,0.44489,4.663,4.6211,0.88759,10.8289,1.9789,0.43714,3.4843,3.5464,56.768,19.5796,243.7826,3.9399,5.1494,1.6839,2.14,4.4839,8.2187,2.4429,3.5432,0.43792,7.3712,12.187,14.7869,8.3232,2.5212,4.8662,2.1145,21.1968,6.0633,4.2282,1.096,2.7375,9.653,14.2937,3.0519,4.5714,3.3542,1.7388,1.6536,4.5573,11.5248,3.2078,2.4472,11.0947,2.4586,2.4816,2.1907,13.9428,2.1233,4.3885,1.3975,16.3698,6.6502,7.8651,4.5186,10.9337,7.2724,8.9002,7.4039,4.0269,1.6858,5.5145,,,,,,,,,,,,,,,63,,,
-90456,2.3533,2.914,,+80y,Other,,,19.2148,4.8691,2.3371,1.9826,3.2047,ppmi,,,M,,0.38839,4.1829,4.4093,0.70253,10.3046,1.4497,0.35611,3.1063,3.1281,44.2487,15.7656,213.9909,4.5157,4.5016,1.2667,2.072,3.4484,6.945,1.8872,2.8431,2.0441,6.5434,10.6803,47.2973,6.7072,2.1864,4.495,1.7272,18.1492,6.7237,3.4696,0.97859,2.2637,6.9949,13.3494,3.4427,4.2307,3.4374,1.3893,1.4587,4.5251,11.1059,2.7311,2.5417,11.0464,2.4787,2.216,2.4518,12.545,2.1556,3.8012,1.1671,14.4397,5.4269,9.4749,4.1344,11.1532,7.0867,7.3854,7.0079,3.7619,1.7044,4.6982,,,,0.085737,Other,,PRODROMA,0.37762,4.0527,3.988,0.77685,11.8726,1.5629,0.39007,3.4494,3.5735,44.1597,15.8898,219.3935,4.0273,5.099,1.4767,1.9226,3.7068,7.0883,1.8615,3.106,1.5929,6.5202,10.7758,40.8927,7.7026,2.0503,4.5098,1.6912,17.3798,5.671,3.4952,1.097,2.3034,7.6404,14.3712,2.9465,4.1521,3.0809,1.4739,1.4377,4.1525,11.2059,2.6592,2.5614,9.9503,2.1266,2.1901,2.22,11.6411,1.9418,3.8008,1.1737,13.5851,5.0169,8.3952,4.1587,11.5235,8.0811,7.2314,7.3008,3.1067,1.6121,4.4718,,,,,,,,,,,,,,,83,,,
-91097,1.0716,2.0715,,60-69y,Other,,,19.425,5.1121,2.7693,2.2914,1.1738,ppmi,,,M,,0.36297,3.8786,4.2548,0.83464,8.7812,1.2994,0.37144,3.1103,2.4517,49.4701,14.8358,202.1026,3.3119,5.1074,1.6366,1.8221,3.1827,7.6904,2.2041,3.2142,0.5597,6.546,12.2237,8.5858,7.5143,2.1639,3.9692,1.4297,16.5142,6.2692,3.9802,1.0984,2.5366,6.0322,14.7854,3.7351,4.2661,3.0424,1.483,1.1939,3.9806,9.6757,3.3629,2.0863,11.6886,1.9665,2.3221,2.1048,12.8591,2.0136,3.6067,1.1876,14.4864,5.2268,9.0154,3.9482,9.2525,7.1946,7.777,7.6228,3.5335,1.4539,4.4854,,,,0.078388,Other,,PRODROMA,0.34502,3.423,3.9548,0.82398,10.2697,1.5815,0.37992,3.3148,2.5746,49.7218,14.4313,214.092,3.5836,5.2113,1.6859,1.8094,3.7427,7.8562,2.2064,3.3032,0.52521,7.1586,12.1651,7.155,8.2849,2.1648,3.6971,1.5546,16.3377,5.6801,3.8149,0.81277,2.4272,6.6577,14.4342,3.4197,4.3852,3.1629,1.5452,1.2488,3.5537,9.794,3.0228,2.1781,9.894,1.7973,2.2396,1.9917,12.7675,1.683,3.7873,1.1018,13.9824,5.0839,7.2648,4.6917,9.7952,7.5001,7.8493,7.2593,3.3085,1.3176,4.3916,,,,,,,,,,,,,,,67,,,
-91837,1.7868,2.2404,,70-79y,Other,,,19.2403,5.0164,3.1227,2.481,1.9671,ppmi,,,M,,0.4812,4.8829,4.208,0.89299,9.0968,1.9189,0.43194,3.5557,3.3434,50.8369,14.5977,226.0847,4.2836,5.2024,1.7855,1.9724,4.0001,7.8974,2.3277,3.1797,0.99063,6.8592,12.0361,27.7698,8.039,2.7332,5.6453,1.9932,21.4726,6.7532,4.6852,1.0775,2.7362,7.6154,14.184,3.8873,4.5156,3.5066,1.6191,1.4397,4.5845,11.6027,3.3509,2.4506,12.5884,2.7089,2.937,2.3645,16.8939,2.4805,4.4473,1.4102,17.1039,5.9237,9.1415,4.1614,10.8366,7.6556,8.3643,8.3847,3.8498,1.8735,4.8562,,,,0.075051,Other,,PRODROMA,0.43849,4.3025,4.2774,0.87268,11.4897,2.0796,0.424,3.4232,3.5178,51.3744,14.5879,231.019,4.2873,5.2206,1.7848,2.2733,5.183,7.9878,2.3835,3.2536,0.83612,7.6908,12.2764,24.9765,8.3623,2.5643,5.256,1.9234,26.1728,6.0739,4.3836,1.2997,2.9277,8.8686,14.6834,3.7888,5.0008,4.2168,1.6219,1.4308,4.4339,11.6337,3.0285,2.4159,9.6777,2.6255,2.5553,2.1956,13.7782,2.1458,4.3458,1.3728,21.7697,6.6797,7.9309,4.9526,10.5438,7.3874,8.0937,8.3278,3.8828,1.62,4.6014,,,,,,,,,,,,,,,74,,,
-92834,1.3937,1.8242,,60-69y,Other,,,19.8569,5.3482,2.8874,2.4106,1.63,ppmi,,,M,,0.4337,4.7365,4.7435,0.88354,9.7784,1.6781,0.37625,3.282,3.0956,48.5228,16.6909,215.7053,4.2386,4.7931,1.6995,2.3861,3.5382,7.7598,2.113,3.4138,0.56889,7.3867,11.3706,18.4751,8.63,2.7178,4.7633,1.8339,21.2469,7.1324,4.1879,1.1501,2.6293,7.2556,14.567,3.896,5.1847,4.1662,1.7935,1.4142,5,12.5462,3.3403,2.5192,11.7522,2.5488,2.7354,2.5432,14.1818,2.0777,3.997,1.3665,15.6852,5.1323,9.048,4.0847,11.6338,7.3593,8.5599,8.2054,4.5721,1.5994,4.811,,,,0.084018,Other,,PRODROMA,0.39437,3.9917,4.4732,0.87525,10.5073,1.8066,0.40207,3.2597,3.0635,48.4949,16.6514,222.4208,4.3113,4.9918,1.7318,2.3833,4.2118,8.2003,2.1094,3.5464,0.50826,7.1636,12.8367,16.1845,8.6193,2.4871,4.8258,1.8557,20.4352,5.4651,3.8434,1.0735,2.4049,8.482,15.6788,3.0736,4.8162,3.9975,1.8015,1.38,4.5598,11.8965,3.0859,2.3082,11.7839,2.2189,2.6168,2.1399,13.4335,1.8554,4.0096,1.2644,15.8492,5.1277,8.4699,4.5372,12.3055,7.3951,8.4213,8.4716,4.1932,1.4931,4.6736,,,,,,,,,,,,,,,66,,,
+subjectcode,_3rdventricle,_4thventricle,adnicategory,agegroup,alzheimerbroadcategory,apoe4,av45,brainstem,cerebellarvermallobulesiv,cerebellarvermallobulesviiix,cerebellarvermallobulesvivii,csfglobal,dataset,edsdcategory,fdg,gender,handedness,leftaccumbensarea,leftacgganteriorcingulategyrus,leftainsanteriorinsula,leftamygdala,leftangangulargyrus,leftaorganteriororbitalgyrus,leftbasalforebrain,leftcalccalcarinecortex,leftcaudate,leftcerebellumexterior,leftcerebellumwhitematter,leftcerebralwhitematter,leftcocentraloperculum,leftcuncuneus,leftententorhinalarea,leftfofrontaloperculum,leftfrpfrontalpole,leftfugfusiformgyrus,leftgregyrusrectus,lefthippocampus,leftinflatvent,leftioginferioroccipitalgyrus,leftitginferiortemporalgyrus,leftlateralventricle,leftliglingualgyrus,leftlorglateralorbitalgyrus,leftmcggmiddlecingulategyrus,leftmfcmedialfrontalcortex,leftmfgmiddlefrontalgyrus,leftmogmiddleoccipitalgyrus,leftmorgmedialorbitalgyrus,leftmpogpostcentralgyrusmedialsegment,leftmprgprecentralgyrusmedialsegment,leftmsfgsuperiorfrontalgyrusmedialsegment,leftmtgmiddletemporalgyrus,leftocpoccipitalpole,leftofugoccipitalfusiformgyrus,leftopifgopercularpartoftheinferiorfrontalgyrus,leftorifgorbitalpartoftheinferiorfrontalgyrus,leftpallidum,leftpcggposteriorcingulategyrus,leftpcuprecuneus,leftphgparahippocampalgyrus,leftpinsposteriorinsula,leftpogpostcentralgyrus,leftpoparietaloperculum,leftporgposteriororbitalgyrus,leftppplanumpolare,leftprgprecentralgyrus,leftptplanumtemporale,leftputamen,leftscasubcallosalarea,leftsfgsuperiorfrontalgyrus,leftsmcsupplementarymotorcortex,leftsmgsupramarginalgyrus,leftsogsuperioroccipitalgyrus,leftsplsuperiorparietallobule,leftstgsuperiortemporalgyrus,leftthalamusproper,lefttmptemporalpole,lefttrifgtriangularpartoftheinferiorfrontalgyrus,leftttgtransversetemporalgyrus,leftventraldc,minimentalstate,montrealcognitiveassessment,neurodegenerativescategories,opticchiasm,parkinsonbroadcategory,pib,ppmicategory,rightaccumbensarea,rightacgganteriorcingulategyrus,rightainsanteriorinsula,rightamygdala,rightangangulargyrus,rightaorganteriororbitalgyrus,rightbasalforebrain,rightcalccalcarinecortex,rightcaudate,rightcerebellumexterior,rightcerebellumwhitematter,rightcerebralwhitematter,rightcocentraloperculum,rightcuncuneus,rightententorhinalarea,rightfofrontaloperculum,rightfrpfrontalpole,rightfugfusiformgyrus,rightgregyrusrectus,righthippocampus,rightinflatvent,rightioginferioroccipitalgyrus,rightitginferiortemporalgyrus,rightlateralventricle,rightliglingualgyrus,rightlorglateralorbitalgyrus,rightmcggmiddlecingulategyrus,rightmfcmedialfrontalcortex,rightmfgmiddlefrontalgyrus,rightmogmiddleoccipitalgyrus,rightmorgmedialorbitalgyrus,rightmpogpostcentralgyrusmedialsegment,rightmprgprecentralgyrusmedialsegment,rightmsfgsuperiorfrontalgyrusmedialsegment,rightmtgmiddletemporalgyrus,rightocpoccipitalpole,rightofugoccipitalfusiformgyrus,rightopifgopercularpartoftheinferiorfrontalgyrus,rightorifgorbitalpartoftheinferiorfrontalgyrus,rightpallidum,rightpcggposteriorcingulategyrus,rightpcuprecuneus,rightphgparahippocampalgyrus,rightpinsposteriorinsula,rightpogpostcentralgyrus,rightpoparietaloperculum,rightporgposteriororbitalgyrus,rightppplanumpolare,rightprgprecentralgyrus,rightptplanumtemporale,rightputamen,rightscasubcallosalarea,rightsfgsuperiorfrontalgyrus,rightsmcsupplementarymotorcortex,rightsmgsupramarginalgyrus,rightsogsuperioroccipitalgyrus,rightsplsuperiorparietallobule,rightstgsuperiortemporalgyrus,rightthalamusproper,righttmptemporalpole,righttrifgtriangularpartoftheinferiorfrontalgyrus,rightttgtransversetemporalgyrus,rightventraldc,rs10498633_t,rs11136000_t,rs11767557_c,rs1476679_c,rs17125944_c,rs190982_g,rs2718058_g,rs3764650_g,rs3818361_t,rs3851179_a,rs3865444_t,rs610932_a,rs744373_c,subjectage,subjectageyears,tiv,updrshy,updrstotal,row_id
+10874,1.1415,1.6535,,+80y,Other,,,17.2739,4.4087,2.8506,2.139,1.6134,ppmi,,,M,,0.37839,4.6365,4.0826,0.7836,8.1697,1.4866,0.35685,2.965,2.6017,39.3162,15.6097,213.2275,3.5657,4.1198,1.4567,1.8009,3.0559,6.9941,1.988,2.9081,0.44071,5.3806,10.0948,14.7868,7.1313,2.1976,4.6585,1.8706,16.6176,4.9504,3.7317,0.87314,2.1327,6.6488,12.6916,2.9047,3.8236,3.0183,1.4212,1.2707,4.0385,10.1086,2.8549,2.1749,9.8497,2.1241,2.3787,2.18,10.3712,1.6861,3.7382,1.1467,12.8927,4.6258,7.6945,2.5894,9.3174,6.4591,7.3853,6.9925,3.1808,1.4172,4.3382,,,,0.064615,CN,,HC,0.3427,3.9221,3.7656,0.79705,9.1327,1.6363,0.36071,3.1226,2.4231,38.4905,15.5323,214.3219,3.4815,5.2159,1.5052,1.8064,3.2526,7.312,1.849,3.1977,0.61126,5.7887,11.2193,14.1772,7.9715,2.0465,4.6533,1.782,16.8703,4.2505,3.6111,0.93032,2.1443,7.6814,13.057,2.7722,4.1488,3.0716,1.4294,1.2902,3.5782,9.838,2.7835,1.9904,8.3748,1.8338,2.3241,1.8295,10.6331,1.4368,3.5363,1.1097,13.5021,4.6806,7.3448,3.7443,9.2087,6.3495,6.9842,7.1818,2.9965,1.2412,4.1799,,,,,,,,,,,,,,,81,,,,0
+12593,1.7878,1.8564,,70-79y,Other,,,18.4783,4.2011,2.5299,2.2275,1.2854,ppmi,,,F,,0.41975,4.4359,3.906,0.89107,8.1653,1.4275,0.36862,3.1117,2.9238,42.0294,16.2344,221.3416,3.8735,4.2143,1.6027,1.9513,3.1144,7.4331,2.0801,3.3278,0.57301,5.0502,11.2238,15.8171,7.672,2.1579,4.4477,1.8465,16.3701,4.9989,3.7285,1.0277,2.246,6.5017,13.1102,2.7393,3.7581,3.1336,1.4268,1.3046,4.6073,10.9352,3.3254,2.0095,10.5437,2.2137,2.2861,2.0474,10.6999,1.8242,3.8852,1.2199,12.0352,4.5695,8.2203,3.1912,9.4383,6.8743,7.6848,7.4064,3.5948,1.3541,4.7021,,,,0.060294,Other,,PRODROMA,0.37649,3.8923,3.637,0.85433,8.2179,1.617,0.36424,3.4192,2.838,42.2264,15.3736,223.2151,3.536,4.7484,1.6042,1.8229,3.3247,7.1498,1.9927,3.4133,0.67653,5.0552,11.0697,13.0143,8.2636,2.0566,4.2937,1.7001,16.2388,3.8524,3.6011,1.0841,2.1509,7.3556,12.5733,2.1516,3.7829,3.4869,1.4027,1.2468,4.2648,11.2041,2.9961,2.1175,9.0803,2.1371,2.1568,1.87,10.6505,1.7478,3.6869,1.1302,12.6136,4.6371,7.3008,3.1861,9.2906,6.6113,7.3591,7.6143,3.3949,1.3573,4.3352,,,,,,,,,,,,,,,73,,,,1
+14281,1.2311,1.8894,,60-69y,Other,,,18.1855,4.9224,2.5258,2.4021,1.1653,ppmi,,,F,,0.47446,4.4177,3.8699,0.90749,9.2398,1.4222,0.39033,3.2647,3.3609,48.3231,14.5485,200.5693,3.2813,4.2474,1.7458,1.8604,3.4657,7.526,2.0973,3.202,0.31495,6.0225,10.5854,12.8598,7.9772,2.2286,4.7772,1.7675,17.6128,6.1449,3.796,1.2098,2.7115,6.476,12.6514,3.2877,4.2394,2.8409,1.396,1.3861,4.41,10.408,3.3362,2.2283,12.375,2.4609,2.2377,2.0327,13.0907,1.9528,4.4344,1.181,14.8274,4.9978,9.6993,3.4229,11.0433,6.7305,8.0944,7.3196,3.5495,1.3968,4.6606,,,,0.082518,Other,,PRODROMA,0.43563,4.0725,3.6611,0.9116,9.532,1.8643,0.38962,3.4124,3.518,48.5227,14.5798,207.0603,3.6874,4.4497,1.8405,1.6708,3.7517,7.9474,2.1424,3.3881,0.4263,5.9706,10.8422,12.3332,8.4909,2.069,4.8307,1.8156,18.1828,5.2866,4.0418,1.2439,2.7842,7.7587,13.4892,2.8624,4.2606,3.061,1.2186,1.4214,3.9334,9.47,3.166,2.2112,10.7831,2.0508,2.209,1.9085,11.7465,1.7982,4.2872,1.0989,15.0771,5.3286,8.1732,4.1122,10.9238,7.5535,7.6431,7.2719,2.9771,1.3419,4.5234,,,,,,,,,,,,,,,67,,,,2
+14426,1.6064,1.7958,,60-69y,Other,,,18.8707,5.0379,2.5161,2.1601,1.5173,ppmi,,,F,,0.50756,4.8718,4.3814,0.95697,8.7353,1.724,0.39562,3.2756,3.3199,45.4045,16.3485,260.2538,4.1547,5.2462,1.8635,1.9406,3.8021,7.4972,2.2131,3.1212,0.55225,6.7608,11.5087,28.4254,8.1487,2.5575,4.7325,1.859,20.1547,6.6835,4.2269,1.5053,3.1174,7.2992,14.3746,3.9073,4.3503,3.2393,1.501,1.6078,4.387,11.178,3.2561,2.4507,12.8909,2.5029,2.5446,2.4891,14.452,2.1416,4.5103,1.3711,16.5679,5.9373,8.3941,4.1241,9.8426,7.277,8.4833,7.8607,4.0902,1.6936,4.9006,,,,0.075733,Other,,PRODROMA,0.44217,4.5099,4.0469,0.93179,10.3595,1.7256,0.42421,3.4032,3.5567,44.9371,16.2403,265.7188,4.1635,5.1091,1.8239,1.968,3.8132,8.1589,2.035,3.3783,0.54228,6.6136,12.5277,22.173,8.5954,2.2735,4.6856,1.8597,19.1971,5.5363,3.7351,1.223,3.057,8.1522,14.4866,3.1664,4.3981,3.6297,1.5631,1.5477,4.1952,11.6762,3.1362,2.6315,10.9509,2.7772,2.3308,2.5156,13.6379,2.2053,4.496,1.3352,16.3192,6.0685,8.6027,4.1354,10.5975,7.1734,8.2288,8.0805,4.0911,1.8579,4.7266,,,,,,,,,,,,,,,63,,,,3
+15761,1.138,1.8477,,60-69y,Other,,,16.4242,4.5665,2.3042,2.1539,1.3233,ppmi,,,M,,0.38639,4.0975,3.886,0.74328,8.7976,1.5456,0.33568,3.5985,2.9168,44.3303,13.3366,177.8244,4.0773,4.8129,1.5163,1.8487,3.523,6.4002,1.9309,2.6275,0.43675,6.5933,10.1069,14.2007,7.4469,2.3848,4.5731,1.6524,17.0073,6.5806,3.6977,1.0685,2.5521,6.3783,12.5871,3.5038,4.2297,3.241,1.4097,1.1498,3.9519,9.772,2.9928,2.2366,10.8402,2.5643,2.2775,2.0105,11.2276,1.9735,3.9316,1.1042,12.567,4.6833,8.6023,4.0737,9.4233,6.462,7.2603,6.6955,3.5839,1.6138,3.9487,,,,0.079754,Other,,PRODROMA,0.34301,3.6981,3.7036,0.7401,10.0125,1.6322,0.34986,3.3986,2.8048,43.8482,13.0148,180.1012,4.0237,4.95,1.5386,1.7268,3.6283,6.9749,1.8913,2.778,0.45608,6.4485,10.8246,11.6967,7.4002,2.0428,4.4401,1.6382,15.626,5.4283,3.389,1.1343,2.4064,7.5664,13.798,2.8438,4.0862,3.0095,1.4368,1.1146,3.6923,9.7918,2.7718,2.2562,10.1905,2.1284,2.0894,1.8091,11.7167,1.6271,3.8497,1.0709,12.8801,4.793,8.2938,4.0786,9.1346,6.5146,6.9192,7.2562,3.2502,1.2571,3.8417,,,,,,,,,,,,,,,63,,,,4
+16644,1.6911,2.2142,,70-79y,Other,,,20.2818,4.8645,2.8599,2.1833,1.3755,ppmi,,,F,,0.45238,5.8766,5.1666,0.92011,11.7514,1.9622,0.43583,4.1571,3.1598,48.9516,17.1838,248.6812,4.4342,4.833,1.7166,2.4801,4.4647,7.4288,2.5525,3.3948,0.54148,8.2471,11.5045,19.1367,8.3658,3.0115,5.6374,2.2604,21.8955,8.2928,5.0693,1.0546,2.8591,9.103,14.5738,4.2529,4.977,4.1259,1.8367,1.534,5.0398,11.6945,3.4307,2.8471,11.6012,2.7227,3.1996,2.6726,14.3561,2.1185,4.4661,1.5581,17.4537,6.3092,8.9814,3.9546,10.895,7.0347,8.5959,8.0905,5.2781,2.0265,4.9062,,,,0.083381,Other,,PRODROMA,0.4078,5.6438,5.1698,0.89935,11.1304,2.1489,0.44541,3.8619,3.2705,50.1653,16.9708,250.3761,4.395,5.9253,1.7189,2.2811,4.3694,7.7827,2.5757,3.5933,0.4962,7.4889,11.9497,17.1231,8.7033,2.7135,5.4682,2.1851,19.4915,5.8143,4.6636,1.1868,3.0015,9.2072,14.4051,3.493,4.4988,3.9277,1.8462,1.4751,4.5549,12.5133,3.0349,2.5854,10.4654,2.6475,2.8523,2.0058,13.8867,2.0622,4.3965,1.4374,17.052,6.6364,8.0149,5.0567,11.2337,7.2826,8.3159,8.0853,4.1205,1.5389,4.6149,,,,,,,,,,,,,,,70,,,,5
+17608,2.1349,2.7486,,60-69y,Other,,,21.0443,4.7347,2.8952,2.1981,2.224,ppmi,,,M,,0.43471,5.4059,4.6861,0.90022,10.656,1.5578,0.40521,3.5952,3.2069,47.2681,16.5297,252.2348,4.0767,4.9892,1.8636,2.1113,4.2611,7.4787,2.1654,3.3648,1.0477,6.4007,11.2388,32.1863,8.4,2.4701,5.008,1.9355,19.1569,6.1475,4.1798,1.2713,3.062,8.4011,14.646,4.0942,4.542,3.2252,1.4926,1.6586,4.7549,12.465,3.5655,2.6225,13.2998,2.2666,2.7016,2.3908,12.433,1.744,4.3432,1.4071,15.4831,6.3292,9.7555,3.836,12.4723,7.5282,9.1144,7.7626,3.8616,1.4078,5.4512,,,,0.089555,Other,,PRODROMA,0.42505,4.492,4.4405,0.86999,11.6674,1.7779,0.41109,3.5861,3.4994,46.916,15.951,254.0413,3.974,4.7928,1.6548,1.97,4.2722,7.6542,2.2121,3.7364,0.71139,6.8691,11.8371,24.4349,8.5439,2.2798,5.3904,2.0585,18.5962,5.6814,3.9518,1.4256,3.2022,9.3285,14.853,3.2901,4.5612,3.1254,1.6093,1.6765,4.3236,11.87,3.1133,2.6005,11.4478,2.158,2.3879,2.1857,12.8779,1.9619,4.3681,1.3101,14.2318,5.7259,8.0795,4.5531,12.6019,7.3708,9.0942,7.8973,3.4298,1.4762,5.1801,,,,,,,,,,,,,,,65,,,,6
+18026,2.6961,3.2097,,60-69y,Other,,,19.6726,5.1126,2.0114,2.1293,3.1001,ppmi,,,M,,0.23604,3.4488,3.3041,0.78064,8.5854,0.97462,0.33302,1.9826,1.9841,43.7714,19.6012,267.7566,2.6704,3.1186,1.4073,1.0498,3.2298,5.7967,1.9094,2.8166,0.54601,6.2637,7.6335,36.564,8.3999,1.2581,4.4456,1.6227,10.689,6.2998,3.9222,1.1204,3.5963,5.7433,11.4275,2.7996,4.397,1.8765,0.73418,1.2791,3.8253,7.2652,2.926,2.0208,6.5366,1.6538,1.8562,1.916,6.6789,1.7387,3.0586,1.1985,7.5144,4.6119,7.2658,3.0529,6.546,5.7402,8.2406,5.8926,1.8985,1.1872,5.1601,,,,0.094683,Other,,PRODROMA,0.19576,3.0781,2.8196,0.716,9.3054,0.7806,0.29396,2.1649,2.0379,44.0443,16.7295,265.1049,2.4939,3.3431,1.3806,1.005,3.2425,6.107,1.7064,3.041,0.42433,7.002,8.1349,33.4046,8.7428,1.2786,4.0588,1.2751,10.7621,5.8583,2.7128,1.0086,3.0794,5.4889,10.6989,2.3911,4.2964,1.8793,0.91935,1.3948,3.4729,7.3089,2.8357,1.901,6.3771,1.3588,1.369,1.5172,7.3367,1.2834,2.6452,1.0213,7.2783,3.8828,6.1989,3.7611,6.013,4.9735,7.5406,6.0421,1.9661,1.1317,4.671,,,,,,,,,,,,,,,61,,,,7
+18491,1.1717,1.6511,,60-69y,Other,,,18.6711,4.762,2.3442,2.1407,1.0092,ppmi,,,M,,0.51286,5.0112,4.3533,0.89533,10.262,1.5224,0.4281,2.7053,3.3592,45.6626,13.8367,218.5761,4.3667,4.5175,1.7027,1.8992,3.4514,7.7874,2.3114,3.0515,0.39001,6.8513,11.8613,12.1458,7.6331,2.5298,4.7885,1.8551,18.8732,6.5626,4.3109,1.1528,2.9877,7.4199,14.4248,3.5379,4.2422,3.095,1.5026,1.4295,4.5395,11.451,3.2896,2.5903,12.818,2.747,2.7717,2.2059,12.658,2.1817,4.4184,1.442,15.898,5.721,10.3576,4.0216,13.0665,7.8828,8.7024,7.2771,3.7674,1.5823,4.7418,,,,0.080068,Other,,PRODROMA,0.4691,4.7478,4.1515,0.87858,11.9145,1.8538,0.43188,2.9278,3.3705,45.3276,13.2492,221.8025,4.1697,4.622,1.6706,1.768,4.1515,8.439,2.3721,3.2886,0.38706,7.5596,12.6902,8.4883,8.1668,2.3264,4.9316,1.9557,19.0636,5.8944,4.1847,1.177,3.1747,7.9472,14.6818,3.1058,4.6918,3.1743,1.5441,1.39,4.0813,11.1119,2.9438,2.5404,11.0498,2.2541,2.4237,2.1212,12.569,1.8082,4.3198,1.39,15.4383,5.6773,9.2441,4.7232,12.3636,7.2019,8.4143,7.6686,3.2947,1.4811,4.4868,,,,,,,,,,,,,,,66,,,,8
+18502,1.5841,2.455,,60-69y,Other,,,21.8077,5.8785,3.3459,2.5897,1.4134,ppmi,,,F,,0.5247,5.5651,5.0974,0.94178,10.1455,1.9192,0.48329,2.7383,3.2602,58.9379,21.1386,284.006,4.7843,4.3317,1.8361,2.2999,4.028,9.0512,2.6236,3.3131,0.55515,6.9952,13.8558,12.9767,7.5904,2.6585,5.1504,2.3377,21.3672,6.2264,4.6728,1.1886,3.1562,8.798,17.0026,3.3385,4.7879,3.6567,1.5841,1.7083,4.8552,11.9446,3.3521,2.846,11.7578,3.3011,2.8514,2.7992,13.3519,2.8625,4.4153,1.6499,16.6257,6.4701,10.1825,3.4392,12.3812,8.7439,10.5102,8.6141,4.5604,2.1603,5.7002,,,,0.078746,Other,,PRODROMA,0.43653,4.4221,4.7461,1.0416,12.0911,2.052,0.47348,2.935,3.024,57.4498,19.4165,291.5372,4.486,4.7884,2.0061,2.0946,4.3615,9.1089,2.3241,3.6325,0.60232,7.0473,13.0386,14.3042,8.5794,2.8105,4.9173,2.1503,22.5373,5.271,4.191,1.344,3.307,10.0869,16.6039,3.0676,4.5251,3.6863,1.92,1.8311,4.5388,11.831,3.2382,2.7971,10.288,2.799,2.9567,2.3996,13.5482,2.4431,4.4973,1.4686,18.0699,7.2903,9.2134,3.9698,11.2769,8.6602,9.939,7.8788,4.0823,1.6547,5.3992,,,,,,,,,,,,,,,66,,,,9
+18567,1.271,2.5647,,60-69y,Other,,,17.7049,4.8959,2.9289,2.5043,1.3396,ppmi,,,M,,0.48657,4.7944,4.5691,0.92704,10.9143,1.9269,0.46899,3.2679,3.2549,56.2637,12.7525,214.2604,4.3735,5.4956,1.815,2.1948,4.0581,8.5802,2.8367,3.0725,0.80569,8.1886,13.9512,24.2641,8.3513,2.6561,4.9511,1.9904,21.1682,7.8523,5.0893,1.3608,2.8158,7.4715,17.8181,4.2714,5.2576,3.8204,1.5358,1.1903,4.6135,11.6829,3.3698,2.4059,12.7277,2.5144,2.6106,2.4208,14.6658,2.087,4.2225,1.5113,15.3083,5.306,10.3444,4.3919,11.7564,8.5688,8.4159,8.5653,4.1397,1.8693,4.5101,,,,0.073115,Other,,PRODROMA,0.43851,4.3417,4.2726,0.909,11.7064,2.1888,0.45846,3.1687,3.4863,54.3794,12.4142,217.8298,4.2285,5.2923,1.8345,2.1171,4.0629,8.9369,2.5709,3.2477,0.80153,8.7396,14.3145,18.7777,8.2917,2.643,4.4196,1.8874,21.3293,6.9759,4.5925,1.1775,2.621,8.4483,17.418,3.4038,5.2076,3.841,1.7237,1.1997,4.2928,11.8476,3.0221,2.4544,11.8435,2.3811,2.6059,2.0759,14.334,2.1604,4.1204,1.3591,17.3144,5.3392,9.4251,5.1093,10.5666,8.9334,8.0616,8.6648,3.672,1.6662,4.2719,,,,,,,,,,,,,,,62,,,,10
+3000,1.5408,2.1073,,60-69y,Other,,,17.0275,4.3623,2.5513,2.0792,1.0531,ppmi,,,F,,0.42295,4.7818,4.3755,0.72961,9.0991,1.7231,0.36447,3.8574,2.9553,46.326,15.1477,217.8273,3.9289,4.9268,1.4697,1.9251,3.5624,7.1659,2.2454,2.8577,0.47686,6.5718,10.4832,12.8863,7.6066,2.5401,4.7447,1.9757,17.27,6.9347,4.0345,1.1313,2.8536,6.7974,13.2697,3.8009,4.4925,3.4429,1.602,1.3898,3.856,10.524,3.1148,2.2019,11.7897,2.0935,2.5472,2.3841,13.1285,1.9667,4.2663,1.1302,14.7688,5.5124,8.7953,4.2917,10.9083,7.4066,8.1938,6.6028,3.613,1.5249,4.6107,,,,0.075815,CN,,HC,0.39315,4.2525,4.4301,0.87853,9.4215,1.8398,0.39227,3.8864,3.1561,47.2827,13.5896,228.7397,3.9163,5.1056,1.702,2.2204,4.03,7.8255,2.2215,3.4384,0.49847,6.1253,11.2199,11.2383,8.4326,2.3592,4.5245,1.9808,18.5349,5.287,3.6738,1.0658,2.6571,7.842,13.3511,2.8568,4.5935,3.4801,1.6973,1.4925,3.8036,10.8601,3.1312,2.5707,10.2395,2.3977,2.3724,2.1441,12.1233,2.2582,4.4527,1.1,14.6958,5.2549,8.6937,4.9389,11.1772,7.4694,7.6877,7.4092,3.6246,1.7507,4.5081,,,,,,,,,,,,,,,69,,,,11
+3001,1.4938,1.9605,,60-69y,Other,,,21.0665,5.1653,2.7919,2.4048,1.5815,ppmi,,,M,,0.50905,5.4294,4.6346,1.0377,9.5962,1.8973,0.43264,3.8467,4.067,52.0689,17.996,254.2344,4.8657,4.5172,1.9332,2.1824,3.8094,7.9588,2.3351,3.5409,0.64321,6.6531,12.1938,22.3958,8.2036,2.6357,4.891,2.0825,19.7857,6.4299,4.586,1.0978,2.9658,7.2623,15.5101,3.2886,4.7494,3.8081,1.5869,1.7398,4.4254,10.6937,3.4621,2.4859,12.0421,2.7528,2.8652,2.6985,12.1886,2.1848,4.8694,1.2698,15.5085,5.7984,9.311,3.6604,9.6644,7.7152,8.703,9.0256,4.0352,1.757,5.2421,,,PD,0.083964,PD,,PD,0.41894,4.2764,4.5973,1.0346,11.1721,2.1164,0.40797,3.5284,4.1857,52.9336,17.8708,263.9553,4.5395,5.3381,1.9505,2.2553,4.0578,8.1426,2.2304,3.7999,0.6443,7.3812,13.0836,18.7379,8.6023,2.5679,4.6312,2.0798,19.6387,6.2608,4.2975,1.2428,3.0402,8.1988,16.3845,2.7467,4.9618,4.1247,1.7172,1.8185,3.8489,10.6681,3.1983,2.6547,9.9122,2.3122,2.5479,2.3355,13.2461,1.938,4.7528,1.2141,16.1117,5.9345,7.9723,4.5562,11.2211,7.7792,8.0379,9.0019,3.747,1.5773,5.1748,,,,,,,,,,,,,,,65,,,,12
+3002,0.78566,1.9478,,60-69y,Other,,,16.7977,5.0939,2.5279,2.1937,0.97229,ppmi,,,F,,0.46891,3.9426,4.1199,0.74512,8.1877,1.3769,0.37959,2.7419,3.1572,45.0208,13.8492,205.8855,3.7015,3.8155,1.5019,1.817,3.1658,7.0922,1.8926,2.7112,0.29354,5.9914,10.4297,10.0331,6.8603,2.1743,4.0499,1.5535,17.2116,6.2901,3.8216,1.0567,2.4909,5.7521,13.0711,2.9726,4.2783,3.5933,1.3817,1.2961,3.6547,8.4431,2.9357,2.2902,10.9701,2.058,2.6024,2.1217,11.5609,1.7442,4.4966,1.0554,14.7205,4.6399,8.4316,4.0416,9.934,6.7656,7.2936,7.2938,4.0363,1.556,4.1078,,,PD,0.06991,PD,,PD,0.40065,3.4293,4.2676,0.81422,9.5353,1.8214,0.36516,2.2261,3.2016,46.4781,13.1547,207.5885,3.0843,4.5686,1.6417,1.9189,3.1807,7.5087,1.8479,2.9453,0.37972,5.4833,11.0018,9.969,7.3979,2.2638,3.785,1.468,17.6043,4.5637,3.7742,1.1012,2.365,6.3276,13.4596,2.2143,3.9344,3.7198,1.4784,1.4238,3.232,9.4682,2.9324,2.2213,9.1324,1.5971,2.5092,1.8896,11.5443,1.5911,4.1502,0.96041,13.4548,4.3556,7.2331,4.3,11.0538,6.6384,6.9832,7.3991,3.653,1.2384,4.0861,,,,,,,,,,,,,,,68,,,,13
+3003,0.70634,1.4149,,50-59y,Other,,,18.8144,4.8504,2.7963,2.4718,1.0551,ppmi,,,F,,0.42414,4.7592,4.6446,0.88374,8.8094,1.7739,0.3608,3.4575,2.8888,49.8007,17.0369,237.1451,4.1169,5.7165,1.7771,1.9599,3.6868,7.2091,2.1963,3.262,0.41392,6.8988,11.7381,10.5334,7.3989,2.5098,4.3592,2.0105,17.9218,5.7124,4.1338,1.0796,2.6269,7.5057,13.6705,3.3304,4.311,2.973,1.4906,1.6895,3.8676,10.649,3.3572,2.3948,10.5754,2.5932,2.6007,2.2229,11.2236,2.1353,4.2143,1.1897,15.715,5.5834,8.7208,3.8509,10.5386,6.9638,8.2213,8.8323,3.4585,1.7541,4.9323,,,PD,0.07112,PD,,PD,0.41496,4.1622,4.3754,0.93435,10.6909,1.9488,0.38948,3.4218,3.1286,49.391,16.4465,245.1252,4.04,4.9005,1.8555,2.0653,3.9736,7.3204,2.1516,3.6861,0.687,5.8623,11.8012,9.4373,7.9883,2.3501,4.1112,2.0056,17.4786,5.2543,4.0317,1.1209,2.9608,8.3898,14.2303,2.7282,4.0478,3.0733,1.7293,1.676,3.8888,10.6686,3.2946,2.4348,9.4945,2.2886,2.3251,2.1188,11.5155,1.9195,4.2584,1.1261,17.1819,6.0782,7.3319,4.5152,10.3048,6.8112,8.0186,9.2169,3.9163,1.6133,4.8219,,,,,,,,,,,,,,,57,,,,14
+3004,0.78028,2.2172,,50-59y,Other,,,19.9529,4.4344,2.3932,2.028,0.84713,ppmi,,,M,,0.49037,5.1422,4.4927,0.91956,9.4924,1.7842,0.41248,3.2864,2.8477,46.6203,16.8698,245.4973,3.9031,4.8035,1.7668,1.9554,3.3876,7.5607,2.2443,3.0953,0.51287,6.5423,11.5408,8.7818,7.2092,2.5456,5.0694,1.9201,17.5227,6.1384,4.3197,1.1419,2.7274,7.1946,14.4446,3.4075,4.3349,3.214,1.4943,1.5028,4.3516,11.3416,3.0868,2.1904,13.4506,2.3456,2.754,2.1927,13.8948,1.9646,4.8357,1.117,15.4257,5.4653,10.4508,3.4262,12.0258,7.3729,8.1529,8.2254,3.6043,1.4081,4.8534,,,,0.067785,CN,,HC,0.4101,4.4275,4.5781,0.92446,11.0487,1.9266,0.38701,3.0077,3.1071,47.2527,16.0287,250.2958,4.3329,4.5921,1.8495,2.1474,3.6326,7.9543,2.0322,3.3378,0.56437,6.2556,12.1681,10.084,7.9226,2.4608,4.519,1.7466,17.8538,4.9627,3.8419,0.97003,2.5738,8.5072,15.093,2.5223,4.6741,3.9432,1.733,1.5108,4.2235,11.1836,2.9971,2.3686,10.839,2.6362,2.5906,2.0153,13.1054,2.124,4.5396,1.0136,15.199,5.8855,10.1937,4.0256,12.978,7.6767,7.9172,8.471,3.6931,1.6209,4.5902,,,,,,,,,,,,,,,59,,,,15
+3006,1.6978,2.6503,,50-59y,Other,,,19.5934,5.1491,2.9064,2.2324,1.4589,ppmi,,,F,,0.50842,4.9931,5.2245,1.0426,10.8393,1.7158,0.41953,3.7442,3.882,50.2635,17.3102,252.035,5.1058,4.7973,1.9843,2.2612,3.6727,8.8097,2.2764,3.8074,0.46859,6.8876,13.2179,14.8598,8.5114,2.4871,4.7589,1.8205,19.5254,6.8585,4.4324,1.1978,2.8388,7.2565,16.1338,2.8931,4.4697,3.8513,1.6679,1.7575,4.9592,12.3662,3.9478,2.9032,12.7062,3.2408,2.9087,2.8266,12.5679,2.6846,4.9915,1.2353,16.8389,5.5119,10.1432,3.3122,12.1795,7.8187,9.2073,8.3527,3.8347,2.0306,5.5158,,,PD,0.094512,PD,,PD,0.46467,4.7222,4.4755,1.0481,12.2653,1.9469,0.41912,3.7034,4.1978,50.7144,15.3622,255.5652,4.6666,5.1258,2.0063,2.0253,4.0182,8.979,2.0536,4.0418,0.47667,6.6365,14.1972,14.5174,8.5762,2.4649,4.9885,1.7502,20.9483,6.2086,4.1142,0.89265,2.5665,7.5858,17.2811,2.2601,4.5426,4.204,1.5467,1.744,4.6461,12.0287,3.4757,2.7328,11.1438,2.898,2.559,2.3333,12.9004,2.3028,4.8593,1.1875,15.1022,5.2112,9.154,4.3286,11.826,7.8976,8.74,8.6202,4.0094,1.8391,5.0274,,,,,,,,,,,,,,,58,,,,16
+3008,1.0525,2.0744,,+80y,Other,,,15.372,4.125,2.0127,2.143,1.31,ppmi,,,F,,0.39859,3.6124,4.2347,0.78341,8.3391,1.4789,0.34437,2.815,3.1231,43.1852,13.1095,165.3161,4.1141,4.5687,1.5938,1.9097,2.9552,6.7951,1.7801,2.8247,0.57953,6.1222,9.9317,17.3659,7.5639,2.103,3.7983,1.4502,15.2861,5.1882,3.5706,0.94952,1.9479,5.3863,11.2602,2.7992,4.313,3.2637,1.3251,1.0344,3.7495,9.4736,2.9509,2.2176,9.1164,2.2624,2.4788,2.2452,8.894,1.763,4.1048,0.98504,13.5215,4.0906,8.4279,3.0045,8.4077,6.072,6.2642,7.2087,3.1337,1.5076,3.7067,,,,0.059932,CN,,HC,0.35958,3.1506,3.8089,0.72432,9.3616,1.5266,0.33696,3.1764,3.315,44.664,12.9228,165.273,4.1243,4.9872,1.4465,2.0035,3.0834,7.1634,1.6389,2.9296,0.74663,6.0328,10.3459,17.696,7.7244,1.8827,3.7637,1.4091,14.8053,4.9179,3.3216,0.835,2.0828,5.8903,11.9352,2.3108,4.2622,3.092,1.4989,1.0464,3.3391,9.4201,2.6811,2.4394,8.2528,2.1589,2.1159,1.8901,9.5159,1.9284,4.0676,0.95185,12.8344,4.3159,8.2321,3.9963,7.5743,6.6097,5.8133,7.048,3.158,1.418,3.5722,,,,,,,,,,,,,,,82,,,,17
+3010,1.1631,3.2283,,-50y,Other,,,21.8966,5.8173,3.5113,2.6962,0.86965,ppmi,,,M,,0.54918,5.9127,5.429,1.2276,12.5715,2.0765,0.47299,3.6362,3.4117,64.8844,19.9506,269.6659,5.0349,5.8376,2.3462,2.4536,4.5689,9.4796,2.5871,4.0526,0.44339,7.5331,13.681,10.9408,8.9474,3.1766,5.7512,2.2885,23.1164,8.5086,4.8851,1.1222,3.0155,9.3701,16.2422,3.8163,5.5587,3.9889,1.933,1.7259,5.6089,13.3717,4.0402,2.742,14.0143,3.1786,2.8936,2.658,14.6189,2.92,5.7811,1.5045,17.2036,6.5322,10.909,4.4339,13.9575,9.8794,9.8338,10.1401,5.2264,2.2219,5.7318,,,PD,0.086514,PD,,PD,0.52319,4.6852,4.8631,1.1759,13.1092,2.1265,0.47444,4.0351,3.5588,64.6082,18.4275,269.7744,4.7286,6.675,2.2552,2.2014,4.9537,9.2883,2.4884,4.1565,0.55856,8.0831,14.0469,10.715,9.725,2.7632,5.4853,2.2549,21.7646,6.9704,4.3785,1.2481,3.3688,10.3226,17.7432,3.4019,5.3234,3.8831,1.9836,1.7214,4.8379,14.0082,3.7069,2.7284,13.1819,2.7288,2.801,2.3508,15.0312,2.4548,5.5096,1.4029,18.7379,6.2147,9.8111,5.7452,11.9943,9.822,9.5161,10.7881,4.9714,1.8584,5.4931,,,,,,,,,,,,,,,47,,,,18
+3011,0.90359,2.0293,,-50y,Other,,,19.0746,5.0769,3.2155,2.4167,0.97802,ppmi,,,M,,0.60143,5.8239,5.5466,0.96591,9.7962,2.1516,0.47749,3.5113,3.9408,55.5577,17.2516,238.6963,4.5024,4.6177,1.787,2.4325,3.9363,8.2008,2.4487,3.6157,0.39009,7.4684,12.2951,12.3156,8.0448,3.0849,5.1992,2.4548,21.2241,6.9136,4.5606,1.1532,2.7815,7.9784,14.7614,3.7116,4.7572,4.3595,1.9191,1.7539,4.5538,11.5527,3.4736,2.8921,12.552,2.6552,2.9891,2.741,14.2442,2.0966,5.6493,1.3108,15.6079,5.5491,9.5611,3.9188,11.1705,7.5713,8.9189,7.9491,5.247,1.8125,5.363,,,,0.066501,CN,,HC,0.52124,4.8743,4.9292,0.93124,11.7129,2.1961,0.46117,3.5286,3.9837,56.8859,17.7058,245.8464,4.3187,5.0175,1.771,2.0884,4.8267,8.2835,2.6567,3.496,0.39139,6.8191,12.307,9.2822,8.5089,2.7113,5.2559,2.3623,22.0913,6.0344,4.6342,1.1869,3.0372,9.1192,15.2528,2.4183,4.8411,3.8156,1.7069,1.7104,4.1709,11.4607,3.1322,2.8512,13.2975,2.5719,2.5893,2.3877,14.9035,2.0832,5.3428,1.2443,16.6747,5.9035,9.5123,4.8242,10.1691,8.1328,8.6845,8.7191,4.0101,1.7321,5.0926,,,,,,,,,,,,,,,32,,,,19
+3012,1.513,2.7912,,50-59y,Other,,,18.0099,5.4806,2.969,2.543,1.5119,ppmi,,,M,,0.4796,5.9637,4.9949,1.0629,10.9682,1.9343,0.4166,4.4044,3.559,53.9612,15.1934,265.0425,4.6987,6.092,2.0932,2.3903,4.0827,8.6016,2.3601,3.5986,0.43556,7.0165,13.0326,16.3293,9.0999,2.8032,6.0791,2.1519,23.6773,6.9989,4.4554,1.4547,3.1051,7.9739,15.9552,3.5092,4.8801,4.0314,1.6766,1.4181,5.7595,14.4253,3.7763,2.9552,13.7485,3.3041,2.7359,2.7583,16.9217,2.711,5.2532,1.3135,19.001,5.8491,11.3984,4.4468,14.0336,8.7051,8.3176,9.1528,4.6942,2.238,4.8249,,,PD,0.090736,PD,,PD,0.45382,5.1561,4.7482,1.0426,12.8141,2.1888,0.42683,3.8453,3.5801,56.2671,15.2069,270.1043,4.8458,6.1161,2.214,2.1706,4.7861,9.2858,2.5406,3.7444,0.535,7.2332,14.1687,13.3062,9.4182,2.8322,5.739,2.253,23.6114,5.9776,4.6305,1.2495,3.0169,9.7444,17.7369,2.6657,4.9049,4.0607,1.6998,1.4267,5.3521,13.8241,3.5588,2.7584,11.8066,3.0291,2.7405,2.5196,15.8683,2.6866,4.9174,1.2701,18.7371,6.2129,10.2798,4.7935,13.5725,9.627,8.2611,9.8891,4.1926,2.0217,4.5701,,,,,,,,,,,,,,,59,,,,20
+3013,1.5712,2.294,,70-79y,Other,,,21.031,5.3384,2.6647,2.653,1.239,ppmi,,,F,,0.43149,4.6651,3.9753,0.90523,9.7223,1.6622,0.36199,3.0996,3.0697,48.9035,17.9465,277.1282,4.057,4.3213,1.653,1.8522,3.2801,6.8303,2.2665,3.3268,0.4378,6.0063,10.9434,11.6774,7.1131,2.4058,4.7829,1.8114,20.2973,6.5482,4.2407,1.1109,2.7252,6.9992,14.5352,3.1403,4.055,3.2028,1.3891,1.6629,4.586,11.2994,3.126,2.178,10.0252,2.5856,2.6423,2.2812,10.9342,2.1214,4.0386,1.1776,14.2796,5.9897,8.5291,2.9796,10.2452,7.3004,8.1648,7.3132,3.21,1.6535,5.1545,,,,0.071791,CN,,HC,0.40954,4.2656,3.7528,0.90469,10.4957,1.8817,0.38147,3.0492,3.428,49.3611,17.5275,282.4774,4.1581,4.962,1.6526,1.8832,3.8219,6.9291,2.2045,3.5089,0.58962,5.5375,11.4703,10.2758,7.3,2.297,4.6693,1.7185,18.8735,4.9148,4.0056,1.064,2.624,7.9861,13.7713,2.108,3.7834,3.5652,1.4096,1.6983,4.127,10.9641,2.8966,2.2934,9.3078,2.6721,2.3267,2.1508,11.6766,2.3132,3.8,1.1758,14.8219,5.702,7.9216,3.5275,9.9651,7.7418,7.753,7.6174,3.1704,1.5713,4.823,,,,,,,,,,,,,,,79,,,,21
+3014,2.272,1.7575,,60-69y,Other,,,18.8698,4.4552,2.5023,2.0577,1.5623,ppmi,,,M,,0.48611,4.9419,4.8161,0.88998,8.9313,1.6353,0.42986,3.2845,4.0019,47.421,17.058,246.3078,4.4024,4.9054,1.6674,2.2205,3.4887,7.5548,2.1526,3.331,0.82581,6.9731,11.6664,24.982,7.4104,2.7383,4.8085,1.7818,18.8967,5.9536,4.1158,1.0842,2.606,7.1271,13.6165,3.2635,4.4668,3.4533,1.776,1.7681,4.4963,11.7868,3.2913,2.4095,11.3023,2.9379,2.811,2.3512,12.2753,2.4372,5.0922,1.2951,15.188,5.6418,9.1108,3.2712,10.8352,7.152,8.389,7.5351,4.1858,2.0982,5.3015,,,PD,0.075864,PD,,PD,0.45267,4.5167,4.5334,0.89152,10.2423,1.8574,0.44872,3.2584,4.05,47.1998,17.7573,241.9878,4.3014,5.0818,1.7309,2.1672,4.0582,7.7894,2.3553,3.5128,0.90356,5.8587,12.2844,17.521,7.984,2.5461,4.6228,2.0189,19.0146,4.4219,4.0713,0.96055,2.7328,8.6859,13.8249,2.2415,4.0098,3.4162,1.9675,1.7389,4.321,11.9684,3.0557,2.3968,8.8154,2.6745,2.6076,2.2245,11.6644,2.097,4.5473,1.2599,14.4608,5.3892,8.1044,3.9457,10.0598,7.4365,7.9657,8.0291,4.5033,1.6248,5.0853,,,,,,,,,,,,,,,68,,,,22
+3016,0.83838,1.7328,,50-59y,Other,,,17.3605,5.1052,2.6336,2.2396,1.3382,ppmi,,,M,,0.46675,4.852,4.6461,0.95581,9.6285,1.8145,0.42065,3.7735,3.3903,45.8946,15.9847,222.1883,4.5167,4.9241,1.8112,2.2196,3.7508,8.0795,2.2098,3.2937,0.59623,7.4733,12.3197,17.9206,8.1965,2.601,5.1396,2.0615,19.42,7.2973,4.328,1.1425,2.8288,7.3768,15.5869,3.6059,4.4932,3.7871,1.5782,1.4628,4.8442,11.8042,3.3362,2.4442,13.0858,3.3682,2.8452,2.4216,13.2261,2.5752,4.8432,1.1562,15.3037,5.2376,10.7737,4.2218,11.4879,7.8347,8.2204,8.3508,4.2032,1.9908,4.7151,,,,0.075511,CN,,HC,0.4318,4.6629,4.5423,0.9582,12.0832,2.1974,0.41905,3.8464,3.4878,46.7869,15.4976,219.6882,4.2006,5.9545,1.8845,2.2767,4.0644,8.4799,2.2916,3.5531,0.56175,7.4712,12.9407,9.8247,8.6972,2.6515,5.1442,1.8714,19.9599,5.7462,4.3666,0.90009,2.2876,7.8418,15.6683,2.9542,4.4711,3.8576,1.8196,1.3799,4.6132,12.3726,3.0685,2.3338,10.5677,2.5671,2.6277,2.0965,12.6178,2.3146,4.8314,1.1214,14.5499,4.9442,9.1055,4.8781,11.395,7.4577,7.8836,8.2111,4.0856,1.7583,4.3781,,,,,,,,,,,,,,,57,,,,23
+3018,1.3365,1.763,,60-69y,Other,,,17.9565,5.1811,2.6952,2.3814,1.0074,ppmi,,,F,,0.42856,4.3695,4.2657,0.90251,9.3416,1.4317,0.39612,3.2926,3.3127,47.3415,16.131,213.4359,3.648,4.1662,1.7135,1.898,3.4051,7.1955,1.8246,3.3297,0.47491,5.5818,10.1056,19.4145,7.629,2.3811,4.3276,1.7932,16.9974,5.7115,3.4928,0.93544,2.3648,6.5882,13.0013,2.9332,4.0194,3.3376,1.4949,1.4384,4.7382,11.2103,3.2882,2.37,9.7578,2.1755,2.3408,2.1524,10.2955,1.7857,4.2608,1.132,14.7124,4.5159,8.2818,3.7043,10.2349,6.593,7.1046,7.0806,3.9554,1.4416,4.6913,,,PD,0.077424,PD,,PD,0.3679,3.8135,3.7995,0.90413,10.4941,1.5837,0.37927,3.0391,3.2689,47.8663,16.7403,219.7398,3.6453,4.4754,1.8324,1.8684,4.0099,7.4332,2.0812,3.5263,0.65311,6.3767,10.9302,14.3156,7.9163,2.0369,4.1621,1.8545,17.1139,4.8194,3.501,1.0795,2.2746,7.6155,13.5332,2.0808,4.0724,3.3771,1.3059,1.4144,4.2886,10.5281,2.9704,2.0827,9.7463,2.074,2.0621,1.9104,10.5008,1.6909,3.8014,1.1065,13.767,4.8761,7.5907,3.2519,9.3398,6.7452,7.0127,7.2853,3.637,1.4418,4.3755,,,,,,,,,,,,,,,61,,,,24
+3020,1.347,2.0197,,70-79y,Other,,,18.863,4.8498,2.4644,2.2237,1.0837,ppmi,,,F,,0.43502,4.11,4.651,0.64553,9.5352,1.4581,0.35504,2.9426,3.0823,46.4212,16.3355,214.5128,4.429,4.8445,1.3246,2.0386,3.218,7.5493,1.918,2.7265,0.48311,6.3844,11.7299,11.0642,7.1588,2.2456,3.9978,1.6809,17.4732,6.6001,3.619,0.90853,2.2895,6.0401,13.5091,3.1547,4.4342,3.5025,1.5064,1.3291,4.0022,10.2527,2.8297,2.555,10.3387,2.7215,2.5803,2.4031,11.2138,2.3156,4.1779,1.0568,13.6517,4.7705,9.4471,4.1527,10.5305,6.6794,7.4296,7.2005,3.6481,2.1935,4.326,,,PD,0.073969,PD,,PD,0.42294,3.5392,4.2816,0.7325,10.1844,1.6139,0.35946,2.5477,3.5602,47.0554,16.8263,218.5406,4.111,4.1828,1.5023,1.9608,3.4421,7.937,1.7641,3.2135,0.5486,5.8914,12.217,9.8061,7.4076,2.0736,3.9409,1.6283,17.3039,4.8744,3.3695,1.2688,2.3944,6.6704,14.0775,2.5546,3.9497,3.2309,1.4381,1.33,3.8699,10.106,2.835,2.5121,10.3564,2.4893,2.2097,2.2151,11.6489,2.2506,4.3232,0.9772,13.6925,4.5611,9.1318,4.1564,9.8433,6.679,7.1778,7.7831,2.9409,1.8952,4.3186,,,,,,,,,,,,,,,74,,,,25
+3021,1.1005,1.5468,,60-69y,Other,,,19.6255,5.425,2.941,2.6239,1.2672,ppmi,,,F,,0.49632,5.1418,4.5987,0.90906,10.9945,1.8965,0.4252,3.7668,3.2585,54.2977,18.5387,265.2231,4.1079,4.8365,1.7197,2.0496,3.788,8.3205,2.2949,3.6913,0.38852,6.7941,12.09,14.7158,8.3618,2.8286,4.7806,2.1186,19.56,6.7081,4.8346,0.95465,2.5047,7.62,14.5789,3.2639,4.6102,3.323,1.7389,1.6897,4.7661,12.2473,3.3167,2.4417,11.3656,2.5347,2.9168,2.3848,11.9695,1.8964,4.7061,1.2642,15.118,5.0335,9.0351,3.8901,12.3028,7.4879,8.8205,7.9211,3.9745,1.6915,5.1742,,,PD,0.085419,PD,,PD,0.44285,4.3666,4.1995,0.96636,10.5612,2.1822,0.40724,4.2519,3.6986,52.7111,17.4776,269.1825,4.4049,5.4409,1.8291,2.0319,4.1679,7.9721,2.2785,3.9878,0.57868,6.4511,11.6967,14.641,8.7498,2.821,4.586,2.1512,20.9201,5.849,4.4708,0.95905,2.5677,8.0565,14.6947,2.5721,4.5214,3.8237,1.6794,1.8132,4.4214,12.5726,3.0194,2.3776,9.9608,2.3465,2.6935,2.0629,11.7994,1.9508,4.5008,1.2188,15.3423,5.0583,8.9476,4.3798,11.2655,7.6647,8.1095,7.7184,4.0946,1.5773,4.9077,,,,,,,,,,,,,,,64,,,,26
+3023,1.0681,2.1588,,70-79y,Other,,,17.6117,4.5033,2.5653,2.1788,1.7072,ppmi,,,F,,0.41455,4.1528,4.8155,0.79078,9.6073,1.3886,0.38089,3.0309,2.8821,49.0304,16.7067,223.2084,4.1027,3.9307,1.6024,2.1164,3.1976,7.4678,1.9821,3.0217,0.41871,6.3077,11.3421,18.419,7.352,2.4102,4.0779,1.622,17.8559,6.7203,3.7405,0.94758,2.239,6.4765,14.1912,2.9236,4.3911,2.9792,1.552,1.4772,4.0161,9.8845,3.1199,2.5227,9.494,2.4819,2.4903,2.3721,10.5112,1.9736,4.4735,1.2314,13.2078,5.2197,8.7635,3.309,9.3332,7.3501,7.5489,7.1102,3.1277,1.5977,4.6629,,,PD,0.065208,PD,,PD,0.39448,4.0703,4.4325,0.73566,11.5917,1.6254,0.39636,3.3928,3.225,48.2486,15.6525,224.7542,4.1377,4.6236,1.5,1.9046,3.7061,7.5507,1.9973,3.1656,0.51008,6.4552,12.0842,18.3887,7.7283,2.409,4.2346,1.6503,17.4918,5.9467,3.7593,0.98358,2.1873,6.61,13.7469,2.639,4.0378,3.3024,1.6077,1.5283,3.7608,9.9879,2.8222,2.4459,8.5794,2.2057,2.3368,2.1677,10.2877,1.7806,4.3479,1.2304,12.5382,4.9143,8.3118,4.0466,9.3138,6.8565,6.8892,7.0203,3.2595,1.6676,4.2708,,,,,,,,,,,,,,,71,,,,27
+3024,0.69327,1.7029,,50-59y,Other,,,19.8736,4.6072,2.6113,2.2589,0.89092,ppmi,,,M,,0.4366,4.9287,4.6527,0.93203,8.7586,1.8131,0.37408,3.7765,2.95,49.4755,16.1148,237.3029,3.7578,4.953,1.8097,2.2265,3.9173,7.5715,2.3013,3.3048,0.3755,6.3587,10.5076,8.227,7.8216,2.5471,4.8184,2.0626,18.3087,6.1425,4.1317,1.206,2.8232,7.5847,12.5933,3.47,4.6544,3.3718,1.5177,1.572,4.5772,11.1709,3.3406,2.2829,11.4519,2.5358,2.604,2.245,12.7358,2.0425,4.393,1.0086,16.8824,5.5164,8.6081,3.244,9.8626,7.2872,9.0261,8.1202,3.6676,1.6422,5.0806,,,PD,0.066076,PD,,PD,0.41877,4.1884,4.3798,0.91292,10.9026,2.0647,0.3769,3.1664,3.2391,50.4994,17.8479,249.1425,3.855,4.2826,1.7599,2.1639,4.1192,8.1209,2.0886,3.4294,0.38033,6.8135,11.5272,7.753,8.1085,2.3193,4.8307,1.9931,18.0777,5.1835,3.8694,0.89258,2.6831,8.5164,13.2718,2.7975,4.6841,3.6339,1.4987,1.6626,4.2346,10.8017,3.0108,2.2723,9.2657,2.3778,2.3001,2.1587,12.3347,2.0075,4.0773,0.95871,17.2392,5.7882,8.2484,4.1378,10.9706,7.3759,8.7866,7.7416,3.8332,1.5415,5.1347,,,,,,,,,,,,,,,53,,,,28
+3026,1.1633,1.8678,,50-59y,Other,,,26.1547,6.402,3.5765,2.8564,1.3101,ppmi,,,M,,0.58532,6.0271,5.0044,1.1064,12.4273,2.4559,0.46144,5.2084,3.2409,66.8592,21.6961,309.3383,5.2939,6.696,1.9165,2.3658,4.9224,8.6606,2.8721,4.0887,0.80978,8.6511,13.1275,9.1765,9.4445,3.4108,6.1243,2.3515,26.6336,8.0437,5.139,1.3612,2.8695,8.8299,17.7957,4.6913,5.4355,3.7073,1.9908,2.06,5.5496,13.6563,3.757,2.477,13.5195,3.2737,3.059,2.5758,15.8521,2.6503,4.9399,1.4321,20.3791,6.8922,12.9766,5.0589,12.3708,9.6725,11.1897,8.9882,4.758,2.0279,6.5984,,,PD,0.08424,PD,,PD,0.51057,5.3835,4.7692,1.0846,13.9879,2.5555,0.44722,4.5934,3.3054,67.8142,21.2183,300.5507,4.7881,6.252,2.1023,2.3354,5.2805,9.1014,2.6668,4.1322,0.80036,8.8804,13.933,8.5455,10.5755,3.0691,5.9442,2.3704,24.7778,7.4124,4.6061,1.3248,3.2386,10.2831,17.9458,4.2338,5.8894,4.0777,2.0625,1.9962,4.8321,13.4793,3.4995,2.52,12.3637,2.6127,2.6995,2.2729,15.3214,2.3253,4.9642,1.3281,19.6307,7.1243,9.4981,5.6122,13.8504,9.2782,10.6392,9.115,4.5473,1.7145,6.134,,,,,,,,,,,,,,,56,,,,29
+3027,1.0627,1.7968,,70-79y,Other,,,18.6154,5.1223,2.7368,2.5533,1.4749,ppmi,,,M,,0.50974,5.278,4.7909,0.87725,8.8441,1.6844,0.4317,3.7453,2.8371,48.5592,15.0035,215.1667,4.7596,5.0003,1.778,2.3026,3.8206,8.0511,2.2731,3.0759,0.47462,6.4417,12.609,15.8562,8.8326,2.5342,5.1197,2.0213,21.3596,6.2218,4.2913,1.3079,3.0979,7.7913,14.9239,3.7646,4.5698,3.54,1.6358,1.3125,4.3361,10.4854,3.3449,2.483,11.5916,2.6838,2.644,2.467,14.1262,2.3659,4.3318,1.269,17.2747,6.1365,9.6906,3.8936,10.4157,8.0019,8.0044,8.9788,4.2604,1.8362,4.5932,,,PD,0.083173,PD,,PD,0.47498,5.2901,4.4562,0.88385,10.8108,1.983,0.42311,3.6101,2.9883,48.9911,14.8745,216.6926,4.3488,4.9978,1.8151,2.069,4.1463,8.2303,2.3417,3.4152,0.49268,6.9177,12.8899,11.0622,8.6267,2.611,5.1803,2.0605,20.4987,5.8672,4.2748,1.115,2.6837,8.6792,15.6504,3.0886,4.4659,3.5534,1.7021,1.2649,4.0964,9.8084,3.2139,2.4239,11.1733,2.5823,2.606,2.2791,14.4133,2.385,4.1361,1.225,15.8775,5.8829,8.4563,4.8663,10.0324,8.1335,7.7788,8.8364,3.3792,1.8171,4.353,,,,,,,,,,,,,,,70,,,,30
+3028,2.141,1.8001,,70-79y,Other,,,19.8849,4.1867,2.9308,2.456,1.9656,ppmi,,,M,,0.47042,5.4275,4.2978,0.94531,10.6983,1.8322,0.43169,3.3322,2.9606,42.7594,24.0135,251.8342,3.8759,4.838,1.7113,2.0012,4.047,7.364,2.7309,3.7129,0.97898,6.7182,12.4484,31.9719,8.3632,2.5398,5.9664,2.2056,21.7427,6.9287,3.9351,1.515,2.9261,8.1078,17.2244,3.74,3.8429,3.988,1.6541,1.435,4.5444,12.3701,3.5316,2.22,12.7459,2.5404,2.4323,2.4253,11.8783,2.5077,3.9618,1.717,13.9717,6.4214,10.2924,3.6139,11.9397,8.9495,7.169,9.5245,4.777,1.8301,5.3722,,,PD,0.081895,PD,,PD,0.38584,4.5479,3.7628,1.0776,12.6206,2.0282,0.37748,3.0985,3.3185,42.2651,23.5979,254.6813,3.3393,5.1715,1.8723,1.7878,4.4239,7.7843,2.7028,4.2521,0.81556,7.0826,12.5669,22.6553,8.4287,2.4274,5.8862,2.2334,20.9362,6.1319,3.8375,1.2198,2.8173,9.158,18.232,3.2264,3.7032,3.743,1.6351,1.4754,4.3872,12.5869,3.3569,2.3578,10.0244,2.1824,1.8309,2.3953,10.9818,2.0834,4.072,1.4855,15.0478,6.2905,9.4804,4.3737,11.5375,8.7793,6.7497,9.7522,4.3403,1.6306,5.093,,,,,,,,,,,,,,,76,,,,31
+3029,1.726,1.6579,,60-69y,Other,,,17.8238,5.0851,3.0529,2.3906,1.6563,ppmi,,,M,,0.47804,4.4014,3.5426,1.0941,10.4381,1.4627,0.39766,2.759,3.2797,42.9119,23.4458,242.8902,3.4596,4.7795,1.9562,1.5031,3.5629,7.6452,1.9645,3.7555,0.5322,6.8612,11.0529,16.6384,8.1685,2.184,5.3783,1.6703,18.7718,6.4114,2.8641,1.1766,2.5459,6.6176,15.1712,3.0283,4.6056,2.8544,1.2696,1.2955,4.1238,11.3684,3.4092,1.811,10.8166,2.3609,1.8929,1.8507,10.9892,2.2011,4.3095,1.2715,14.4347,5.8632,10.5071,3.8943,11.2331,7.9726,5.8644,8.8288,3.5643,1.3058,5.0266,,,,0.044979,CN,,HC,0.47039,3.8445,3.6633,1.195,11.2514,1.2727,0.47075,2.9366,3.37,42.1856,23.8222,251.9781,3.106,4.7372,2.0146,1.749,3.3964,6.8701,1.9111,4.0175,0.52148,7.1687,11.1157,15.6519,8.1423,2.0571,4.3752,1.6883,17.7065,5.6837,2.6767,1.0644,2.2826,7.509,15.569,2.433,3.9934,3.1587,1.4635,1.3786,3.6177,11.3361,3.221,2.1196,10.1996,2.1083,1.8375,1.6207,10.9996,1.9755,4.544,1.1963,13.1842,4.8008,8.3495,3.7159,10.7125,7.7667,6.0445,7.8072,3.3324,1.3016,4.8778,,,,,,,,,,,,,,,66,,,,32
+3051,1.6028,1.958,,70-79y,Other,,,19.9749,4.947,2.6758,2.2749,1.1634,ppmi,,,M,,0.54092,5.3024,4.8929,0.97722,11.0079,2.0178,0.44119,4.1508,3.5008,47.577,15.048,258.1643,4.0006,5.0943,1.9476,2.189,4.3359,8.7851,2.6703,3.3872,0.51685,7.904,13.6154,19.6375,9.5801,2.881,5.2881,2.2719,22.1829,7.2159,5.0083,1.2664,2.743,8.5354,16.5236,4.5479,5.408,3.38,1.686,1.5946,5.2203,12.37,3.6344,2.5879,14.5706,2.8503,3.0299,2.5951,13.4001,2.4783,4.6855,1.4402,17.3628,6.1608,11.0811,3.8898,11.9265,8.4299,9.624,9.3705,4.3485,1.8528,5.2818,,,PD,0.095251,PD,,PD,0.48538,4.8981,4.6162,0.97418,13.0812,2.15,0.43414,4.3283,3.5117,47.8923,15.2242,262.7234,4.2756,5.7839,1.9661,2.107,4.5231,8.8047,2.5931,3.5924,0.46125,7.9766,13.6704,14.4016,10.3369,2.598,5.2638,2.2451,20.5525,6.2002,4.872,1.2421,2.7897,9.6899,16.5037,3.9478,5.0666,3.5647,1.6935,1.6185,4.5016,12.5313,3.3308,2.5915,12.3329,2.5181,2.8043,2.2435,14.7977,2.171,4.4301,1.3489,16.5697,6.1074,9.9903,4.5471,12.5844,8.7421,8.8589,9.1496,4.0829,1.7802,4.973,,,,,,,,,,,,,,,72,,,,33
+3052,0.73075,1.279,,60-69y,Other,,,18.8601,4.8243,2.4967,2.2808,1.1252,ppmi,,,F,,0.42995,4.3445,3.7787,0.82905,9.1026,1.344,0.3735,2.3858,3.1204,44.9819,15.3929,192.5099,3.4937,3.9575,1.627,1.7738,3.268,7.0444,2.0003,2.9071,0.26716,5.5101,10.3419,12.0475,7.1305,2.1631,4.465,1.6503,18.1849,5.9709,3.7968,0.98734,2.4841,6.647,13.2641,2.8823,3.8348,3.057,1.4422,1.2553,3.9911,9.2875,3.1623,1.8816,11.1468,1.8484,2.5433,1.9837,12.6689,1.5277,3.8318,1.0755,14.1518,5.0176,8.0187,2.9966,9.802,6.5555,7.0796,7.248,3.3773,1.2616,4.429,,,PD,0.074183,PD,,PD,0.3809,3.6234,3.595,0.8481,9.5213,1.7089,0.36323,2.5297,3.3256,44.8726,14.8629,196.3582,3.4613,4.1738,1.6828,1.8267,3.5462,7.256,2.0158,3.1334,0.38319,5.9083,10.6763,11.2779,7.6574,2.2145,4.457,1.6579,18.0872,4.8154,3.7324,1.1104,2.375,7.6585,13.3831,2.551,3.9642,3.291,1.4963,1.2831,3.5984,9.0825,2.9831,1.9082,10.525,1.7284,2.2783,1.9513,12.6096,1.5962,3.6502,1.0032,14.4193,4.7334,7.0383,3.9971,9.5111,6.8703,6.75,7.8791,3.3922,1.2515,4.2708,,,,,,,,,,,,,,,66,,,,34
+3053,1.0652,1.8505,,60-69y,Other,,,18.3244,4.5258,2.4085,2.3038,1.1102,ppmi,,,M,,0.45027,4.5102,4.7538,0.89216,9.4759,1.6142,0.3709,2.7501,3.1477,45.5448,14.85,204.5036,4.0684,4.1175,1.7713,1.9874,3.7507,7.7109,2.1513,3.0578,0.49335,6.8198,12.0833,14.3529,6.9737,2.6139,4.579,1.9259,19.8864,6.5777,4.2056,0.9427,2.4186,7.0804,14.9813,3.2224,4.1655,2.9739,1.7838,1.3541,4.4673,10.3369,3.1977,2.676,11.2264,2.2488,2.8628,2.1721,12.8275,1.772,3.9897,1.1628,14.3066,4.8795,8.9738,3.2301,10.5564,7.107,7.658,8.1604,3.9979,1.4028,4.5019,,,,0.073838,CN,,HC,0.38992,4.2065,4.3543,0.89441,10.2725,2.0207,0.36465,2.8527,3.2836,46.5061,14.6957,209.7857,3.9591,4.6143,1.7653,1.9335,4.0072,7.5989,2.1931,3.1847,0.53609,6.3795,12.6526,12.5844,7.9848,2.2498,4.7815,1.9491,19.6966,5.3565,4.1932,0.88688,2.3266,7.6996,15.3928,2.9153,4.1975,3.1784,1.4189,1.3635,4.1347,10.454,2.9965,2.5242,9.8307,1.8475,2.4156,2.2216,12.6049,1.5246,3.9631,1.1154,14.7908,5.2869,7.4484,3.9886,10.3442,7.3325,7.2875,8.5825,3.3763,1.4018,4.3886,,,,,,,,,,,,,,,69,,,,35
+3054,1.5791,1.6861,,70-79y,Other,,,18.8638,5.1636,2.8777,2.2844,1.3068,ppmi,,,M,,0.53158,5.0403,4.9518,1.0156,9.8131,1.7763,0.44386,3.4242,3.4995,50.6961,15.5854,245.2133,4.4557,4.6406,1.7895,2.2049,3.8655,7.9647,2.2105,3.6183,0.5108,7.3565,12.1851,15.9715,7.7363,2.6498,5.2101,1.9456,20.4511,7.2177,4.3824,1.1509,2.8509,8.1022,15.2778,4.1826,4.5203,3.7333,1.7011,1.5066,5.3608,11.7212,3.5095,2.5596,12.4601,2.8605,2.7168,2.4842,13.8563,2.2983,4.7619,1.4025,16.4208,5.6509,9.3941,3.956,10.5792,7.8369,8.2851,8.3936,4.3461,1.9363,4.8949,,,PD,0.081582,PD,,PD,0.47235,4.0517,4.6944,0.99554,10.3618,2.0218,0.43228,3.6977,3.4378,50.986,15.3952,249.5724,4.3639,5.1977,1.8559,2.0845,4.1722,7.8497,2.3105,3.7834,0.44435,7.5573,12.4285,13.7362,8.9967,2.3417,5.2352,2.0467,20.0506,5.5069,4.486,1.2185,2.7628,9.1836,15.0113,3.6186,4.5763,3.6962,1.5665,1.5009,4.8182,12.2642,3.3213,2.5415,10.6843,2.2619,2.7278,2.2531,12.6335,1.9739,4.4664,1.3574,17.3006,5.6452,7.9118,4.5486,10.9557,8.3767,7.8321,8.9529,3.6121,1.6035,4.7193,,,,,,,,,,,,,,,74,,,,36
+3055,1.7473,2.3332,,60-69y,Other,,,19.1162,4.7662,2.5786,2.2001,1.8641,ppmi,,,F,,0.48624,4.8267,4.6913,0.89635,9.5567,1.6028,0.40184,2.7918,3.4636,45.4426,15.0976,211.4001,3.9666,4.5618,1.6885,2.1034,3.2161,7.1695,2.1999,3.1303,0.56695,6.188,10.9375,21.6352,7.3609,2.5408,4.5334,1.8773,16.9978,6.4051,4.2982,1.2685,2.5322,7.2411,13.0726,3.6959,4.4558,3.2442,1.6945,1.4725,4.3758,10.4198,3.1336,2.4062,12.0379,2.616,2.7427,2.1348,12.0856,2.1527,4.4506,1.2287,15.0512,5.6812,9.5802,3.8597,9.7886,6.7082,8.2941,7.5676,3.7412,1.6844,4.8055,,,,0.073016,CN,,HC,0.43491,4.4779,4.5092,0.89813,9.7653,1.9257,0.40878,3.2484,3.6931,45.8653,14.9676,214.9631,3.9679,4.9657,1.7379,2.0762,3.7031,7.4239,2.1604,3.451,0.61029,7.1255,11.3589,19.3431,8.4032,2.452,4.8977,1.8326,17.5148,5.2174,4.1855,1.0644,2.5386,7.8825,13.6557,3.0369,4.3211,3.6125,1.6647,1.4747,3.9091,10.409,3.0158,2.4872,10.8656,2.1105,2.4938,2.1689,11.7952,1.6977,4.3386,1.1863,14.6428,5.4423,8.1441,4.1873,10.2074,7.0194,8.1396,8.2192,3.4151,1.463,4.7108,,,,,,,,,,,,,,,69,,,,37
+3056,1.0746,2.0967,,50-59y,Other,,,21.5176,4.893,3.0434,2.3051,1.1649,ppmi,,,M,,0.47053,5.4661,5.0478,0.91297,10.6485,1.8893,0.40725,3.784,3.1149,51.5975,18.0103,270.646,4.3536,5.4105,1.8028,2.2713,4.2053,7.9756,2.5035,3.4055,0.37646,8.0947,12.5154,12.9746,8.4108,2.726,6.1243,2.2647,22.2537,7.506,4.5283,1.3705,3.191,8.5903,15.0545,4.5681,4.9258,3.9004,1.6865,1.6768,5.2702,12.5471,3.462,2.3523,12.9788,2.57,2.8415,2.3621,15.962,2.1353,4.7345,1.3412,19.7292,6.4092,9.1913,4.5987,11.5501,6.8594,9.3784,8.2255,3.841,1.7852,5.3995,,,PD,0.09385,PD,,PD,0.45569,4.7963,4.4574,0.95321,11.1886,2.1435,0.41205,3.7112,3.0564,51.2628,17.5741,274.6319,4.7927,5.5495,1.9289,2.1932,4.662,8.1348,2.6362,3.7832,0.72627,6.6013,12.2339,8.4007,9.3821,2.5616,5.7412,2.4144,21.8147,5.1308,4.6287,1.1901,2.9594,9.9076,15.2265,3.3606,4.5456,3.7886,1.7347,1.6515,5.0929,12.5715,3.3541,2.2903,11.1015,2.2614,2.6028,2.2155,14.0876,1.9118,4.5051,1.2583,19.6482,7.025,9.6504,4.7691,11.0409,7.8888,8.9601,8.3868,4.0949,1.6991,5.2245,,,,,,,,,,,,,,,56,,,,38
+3057,0.94135,1.829,,60-69y,Other,,,16.8718,4.3736,2.6107,2.1723,1.0286,ppmi,,,F,,0.37676,4.2964,3.9474,0.79996,9.6773,1.6754,0.35035,3.6816,2.8183,45.5575,14.7401,237.4726,4.0666,4.8336,1.5706,2.0268,3.6597,7.3212,2.1501,3.0053,0.39566,7.2637,10.9902,17.2053,8.1499,2.4726,4.5161,1.8065,19.7156,7.5626,4.206,0.98938,2.2118,7.1001,13.8638,4.1513,4.6521,3.9168,1.4849,1.3822,4.408,10.9704,3.2225,2.0649,11.8218,2.5385,2.592,2.0778,13.2422,2.0813,3.7525,1.1345,14.5541,5.0362,9.0908,4.0279,11.6204,7.2623,7.9781,7.1473,3.7614,1.4754,4.548,,,,0.080509,CN,,HC,0.3405,3.4328,3.5718,0.80849,11.3148,1.9623,0.36297,3.4052,3.0707,45.3743,14.3291,242.3204,4.142,4.6786,1.6403,1.7691,4.2116,7.5341,2.2124,3.1965,0.39841,7.3655,12.2884,14.68,8.2474,2.4762,4.5037,1.887,20.4681,5.2819,4.1167,1.0754,2.227,8.144,15.1053,3.2473,4.5677,3.2122,1.6091,1.4073,4.1679,10.8469,2.9355,2.1605,11.9827,2.323,2.3284,2.0201,12.622,1.873,3.5816,1.1264,14.7634,5.1794,8.77,4.1322,10.644,7.5833,7.7065,7.3011,3.3526,1.4763,4.368,,,,,,,,,,,,,,,60,,,,39
+3059,1.7402,2.0216,,+80y,Other,,,18.5019,4.982,2.703,2.2392,1.5737,ppmi,,,M,,0.48681,4.3211,4.545,0.85506,9.6523,1.4593,0.4184,3.4104,3.7116,50.3462,15.3524,212.3847,4.0244,4.6022,1.6105,2.1343,3.2903,8.0305,2.1957,2.9853,1.1026,6.3227,11.6815,31.3785,7.5508,2.4451,4.357,1.7817,18.9249,5.6175,4.072,1.3077,2.7849,6.6056,13.9056,3.4066,4.4094,3.2773,1.4794,1.3381,4.6577,11.8488,3.3129,2.4021,13.8061,2.9489,2.6508,2.0769,13.3567,2.5754,4.1771,1.4824,15.536,5.0217,10.8673,3.6575,10.9821,8.3618,7.8319,7.6831,4.0177,1.5807,4.574,,,PD,0.086107,PD,,PD,0.44215,3.6301,4.2061,0.85367,11.1327,1.8297,0.43848,3.006,3.9926,51.0827,15.3183,214.9532,3.8811,4.7781,1.6685,1.9746,3.7994,7.5791,2.2914,3.2244,0.95665,6.5782,12.5247,26.4286,7.9462,2.4417,4.1354,1.8985,19.2969,4.9225,4.2594,1.155,2.571,8.3602,15.574,2.719,4.4687,3.3667,1.7507,1.3281,4.3191,12.4326,3.0034,2.3886,11.1386,2.5,2.6622,2.1024,12.0761,2.0401,4.1121,1.4148,15.5573,5.3708,9.156,4.2476,12.3102,8.0366,7.3926,8.5141,3.8613,1.6121,4.3672,,,,,,,,,,,,,,,83,,,,40
+3060,1.5663,1.8021,,70-79y,Other,,,20.3853,5.0521,2.7086,2.3494,1.2259,ppmi,,,M,,0.47054,4.7415,4.2999,0.93616,8.9558,1.739,0.4176,3.6695,3.3748,47.3648,16.6569,251.9383,4.1381,4.9669,1.6737,2.184,3.6915,6.9377,2.1166,3.1392,0.51814,6.2078,10.6168,17.5449,8.1763,2.6045,4.6697,1.8971,20.4325,6.1908,4.2171,1.0767,2.6652,6.8061,13.7214,3.8748,4.4851,3.3912,1.6192,1.5716,4.2855,10.5541,3.1263,2.1795,11.7364,2.1438,2.7309,2.3898,12.433,2.182,4.7283,1.2842,15.2429,5.2539,8.1373,4.1131,11.2651,6.5987,8.5687,7.779,4.0818,1.6593,5.1408,,,PD,0.08404,PD,,PD,0.4203,4.1465,4.1175,0.91435,9.1484,1.8937,0.42278,3.6879,3.863,47.3564,16.0151,255.6614,4.1086,5.1333,1.724,2.2226,3.9577,7.389,2.1349,3.2832,0.59593,7.5628,11.1186,16.2443,8.4266,2.4411,4.3849,1.793,19.5858,5.4562,4.0916,1.0613,2.5818,8.0655,14.3289,3.6336,4.6496,4.0045,1.6263,1.5064,3.7962,10.3864,2.7989,2.1611,10.0894,2.3299,2.5974,2.2202,12.7458,2.0204,4.8097,1.2267,15.0844,5.0697,7.796,5.2478,10.5724,6.7448,8.126,7.7776,3.691,1.6087,4.8842,,,,,,,,,,,,,,,75,,,,41
+3061,1.2946,1.5678,,50-59y,Other,,,21.5247,5.693,3.2139,2.6343,1.2197,ppmi,,,F,,0.53998,5.0276,4.6274,0.81987,9.1347,1.7596,0.42409,3.3931,3.5388,53.8485,19.0209,238.8828,4.1908,4.8162,1.5006,2.3549,3.4246,7.864,2.1788,3.1913,0.47615,7.1485,12.0377,14.2834,7.893,2.6521,5.4407,1.9219,20.776,6.6387,4.3309,1.1695,2.8759,7.1021,14.1034,4.0071,4.7224,3.8916,1.6155,1.599,4.727,11.1594,3.0165,2.3909,13.1676,2.4374,2.7409,2.203,14.7121,2.4136,4.4587,1.2972,16.4471,5.8784,9.2425,4.1056,11.4906,7.0062,9.2632,7.1588,4.4488,1.8889,5.1716,,,PD,0.082005,PD,,PD,0.48492,3.9414,4.297,0.86228,10.7142,1.9866,0.427,3.3289,3.7574,53.7282,18.1636,242.1879,3.9704,5.2875,1.6493,2.3201,4.1387,7.9611,2.2571,3.403,0.47022,7.2919,12.0481,14.2777,8.4077,2.6223,4.6948,2.1093,20.5641,5.7154,4.0698,1.1269,2.6286,8.6321,14.8504,3.035,4.4007,3.9849,1.813,1.6064,4.5378,11.6777,2.8976,2.3639,10.8906,2.5913,2.5307,2.1238,15.0221,2.2865,4.2999,1.2328,16.3218,5.6251,8.5318,4.9164,11.179,7.5972,8.6507,7.7888,4.0685,1.7216,4.9549,,,,,,,,,,,,,,,53,,,,42
+3062,0.87543,2.7481,,60-69y,Other,,,17.2932,3.9149,2.4123,1.8865,0.83349,ppmi,,,F,,0.44012,3.7265,3.9037,0.87219,8.276,1.3595,0.37828,2.7515,3.0023,40.7187,14.4591,220.8636,3.6486,3.7003,1.5956,1.8758,3.0961,6.3478,1.8937,3.0497,0.45272,5.6908,9.618,7.4665,6.6294,2.0957,4.1123,1.5914,15.3777,5.214,3.5786,1.0594,2.6153,6.1246,12.2536,2.5856,3.7174,3.1757,1.3686,1.5108,4.1448,9.6763,2.9563,2.2091,10.1693,2.2908,2.2413,2.2067,12.1485,1.9736,4.3044,1.0683,13.8529,4.9724,8.0808,2.7172,9.4352,6.6435,8.3011,7.0538,3.4899,1.5937,4.69,,,PD,0.075407,PD,,PD,0.4001,3.462,3.7616,0.85496,9.2372,1.6299,0.38878,2.8706,3.0236,40.4494,14.1567,223.5222,3.4177,4.152,1.5732,1.9472,3.1553,6.6669,1.8844,3.2528,0.45494,5.5625,10.0904,5.9145,7.0314,2.0883,4.2669,1.5312,15.229,4.3855,3.7613,0.96708,2.4103,6.8258,12.2893,2.3461,3.8489,3.1943,1.4719,1.5134,3.5842,9.5057,2.7962,2.2109,9.1826,1.9703,2.1889,2.0409,11.6371,1.6516,4.3157,1.0502,12.1301,4.788,7.3226,3.8628,9.2679,6.2221,7.9072,6.908,3.4616,1.3871,4.4601,,,,,,,,,,,,,,,61,,,,43
+3063,0.76208,1.5409,,-50y,Other,,,17.7179,4.4735,2.7163,2.0755,0.95371,ppmi,,,F,,0.44589,4.7137,3.8791,0.82102,9.5503,1.5464,0.38626,2.8171,2.9315,43.6048,15.8702,205.9904,3.7806,4.8077,1.5906,2.0901,3.0424,6.9916,2.0997,2.933,0.47989,5.9556,10.6597,7.6414,6.6858,2.451,4.8492,1.7818,17.7235,5.7623,4.1338,1.0404,2.7952,6.7081,13.2164,3.0114,4.0632,3.5966,1.5453,1.377,4.4353,11.4385,2.9804,1.9807,11.4922,2.1154,2.6879,2.017,11.7697,1.726,3.8656,1.1625,14.5979,5.2229,9.0169,3.641,10.2174,7.021,7.716,7.7487,4.1905,1.3498,4.4736,,,,0.066168,CN,,HC,0.38164,4.0749,3.6741,0.8204,9.3859,1.8094,0.37069,2.8232,2.8992,44.5042,15.5266,207.8724,3.5858,4.7751,1.6415,1.8946,3.3742,7.4365,2.1182,3.0748,0.50913,6.469,11.0119,5.7945,7.3228,2.3838,4.6889,1.6998,17.6637,5.0694,3.9812,0.95853,2.6991,7.5136,13.5672,2.8036,4.1006,3.6951,1.6736,1.3505,4.0199,11.2399,2.7447,2.061,10.3871,2.18,2.3634,1.9631,12.3358,1.8677,3.7402,1.1001,14.0858,5.273,7.423,3.837,10.2972,6.706,7.3523,7.7473,3.9044,1.4627,4.2289,,,,,,,,,,,,,,,40,,,,44
+3064,0.84082,1.8555,,60-69y,Other,,,18.6105,4.8076,2.7008,2.2292,1.0048,ppmi,,,F,,0.40756,4.34,3.8656,0.93462,8.9922,1.4343,0.38782,3.2125,2.5415,47.3243,15.9975,213.1355,3.6524,4.5331,1.6468,1.7569,3.1454,6.7885,2.1043,3.1571,0.45038,5.9014,11.0062,9.6707,7.2849,2.2489,4.5294,1.809,15.4765,5.9798,3.9052,1.0454,2.4423,6.2156,14.0714,2.997,3.8281,2.8231,1.4558,1.3711,3.8757,9.972,3.0246,2.1128,11.251,2.2299,2.4771,2.1333,12.3876,1.759,3.9012,1.1961,13.5133,5.0696,8.5223,3.1338,9.1516,6.9447,7.9256,7.7984,3.5807,1.372,4.671,,,,0.084895,CN,,HC,0.3719,4.0735,3.9032,0.94565,9.4686,1.6066,0.39377,3.2204,2.656,46.0144,15.2242,215.4425,3.7325,4.6392,1.6881,1.8118,3.4576,7.2951,1.9681,3.3179,0.48055,6.5956,11.3177,9.2997,7.4559,2.1554,4.4362,1.6583,16.2104,4.6151,3.6548,1.0068,2.3997,6.706,13.6967,2.6987,3.9045,3.5764,1.5763,1.3858,3.581,9.4614,2.9184,2.0549,9.2552,2.2795,2.3741,1.9135,11.2942,1.9195,3.9002,1.1167,13.4568,4.7833,8.3098,3.8649,9.6151,7.2652,7.5865,7.9405,3.71,1.4357,4.3955,,,,,,,,,,,,,,,60,,,,45
+3066,0.93254,1.5215,,60-69y,Other,,,17.28,4.1048,2.4105,2.1028,1.1469,ppmi,,,F,,0.4589,4.4096,3.7933,0.83939,8.7485,1.5944,0.39591,3.3713,3.1508,42.6185,13.8642,224.2485,3.7715,5.0894,1.5845,1.96,3.1866,7.2189,2.1,3.0116,0.60734,6.004,11.3267,12.8995,7.402,2.4969,4.8732,1.6916,18.5671,6.0131,4.2178,1.1338,2.4337,6.3752,12.9263,3.5609,4.1482,3.6545,1.524,1.3775,4.3479,10.5467,3.0205,2.0678,13.1887,2.4625,2.5526,2.2346,12.6997,2.1058,4.3512,1.1832,16.0388,4.9457,9.2306,3.9392,11.0549,7.007,7.7774,7.5217,4.2533,1.4876,4.4441,,,PD,0.074695,PD,,PD,0.45451,3.6902,3.8574,0.86368,10.1773,1.8612,0.39995,3.3597,3.6363,42.9133,13.8404,231.7315,3.7002,5.3051,1.6362,1.9846,3.5761,7.4256,2.0505,3.2791,0.40392,6.4877,11.6078,11.1886,8.1439,2.331,4.525,1.6075,19.9399,5.055,3.982,1.084,2.5326,7.2237,13.9427,3.0459,4.3085,3.4837,1.5697,1.4099,4.0136,10.8923,2.7409,2.0706,10.1761,2.1389,2.4192,2.2614,14.1217,2.0502,4.1917,1.1201,14.3966,5.2092,8.3368,4.5808,10.9959,7.0505,7.4737,8.0724,3.9808,1.6157,4.3292,,,,,,,,,,,,,,,64,,,,46
+3067,2.2837,2.2434,,70-79y,Other,,,20.8591,5.1555,3.0707,2.5806,1.4126,ppmi,,,M,,0.48311,5.0156,4.3492,0.95249,10.1983,1.7976,0.41177,3.1643,3.4282,54.4898,18.0165,268.9083,4.2133,4.1147,1.7758,2.0018,3.9673,7.5477,2.4332,3.2029,0.86867,6.8728,11.5784,18.1012,7.0613,2.7651,5.7117,2.0239,20.8638,7.0828,4.5411,1.1047,2.673,6.9458,14.4363,3.5314,4.3283,3.559,1.7341,1.6508,5.1648,10.9103,3.3851,2.4496,12.5392,2.7773,2.6582,2.3551,14.7867,2.3101,4.3385,1.3076,16.6218,5.7733,9.2818,3.6927,10.9377,7.5314,8.8376,7.4505,4.2535,1.8768,5.3131,,,PD,0.089812,PD,,PD,0.44652,4.6909,4.1496,0.93215,11.0807,1.8332,0.39813,3.173,3.6996,53.9097,17.637,273.353,4.0047,4.5682,1.6826,1.938,4.4568,7.8952,2.2582,3.361,0.90852,7.02,11.7054,17.1839,8.427,2.5068,5.6885,1.8956,21.1662,5.4613,4.1056,1.1378,2.9108,8.3899,14.033,2.8515,4.4156,3.6916,1.785,1.6425,4.6233,11.2845,3.1604,2.3387,11.1597,2.4581,2.4517,2.1267,13.034,2.0228,4.0867,1.2264,18.2006,6.2165,8.5678,4.0282,11.3717,7.5153,8.3597,7.4489,3.8596,1.5246,5.0889,,,,,,,,,,,,,,,74,,,,47
+3068,2.306,2.0169,,70-79y,Other,,,19.1129,5.0203,2.6789,2.6097,2.2977,ppmi,,,M,,0.4718,5.0759,4.4226,0.94914,8.8314,1.6442,0.41721,4.1541,3.732,50.8412,15.7388,243.5902,4.5184,5.259,1.8389,2.0556,4.0067,7.8215,2.3398,3.4909,1.2231,7.5926,12.6534,27.239,8.5911,2.37,5.0958,2.0756,19.1382,6.7801,4.3263,1.1391,2.6299,7.6285,15.1095,4.8106,4.9461,3.2672,1.4979,1.4855,4.5263,10.7924,3.4708,2.5793,11.1455,2.566,2.5122,2.5186,12.5832,2.1614,4.5476,1.3162,15.8371,5.5386,9.2777,4.1701,10.8508,7.9442,8.2432,8.4227,4.3692,1.7402,4.9858,,,PD,0.085368,PD,,PD,0.41764,4.3989,4.153,0.9798,10.9117,2.0382,0.39442,4.058,3.7605,51.2863,15.8175,244.6561,4.1481,5.3794,1.9322,2.0323,4.437,7.6982,2.366,3.7123,1.0619,7.4357,11.5736,28.2412,9.3887,2.4545,4.7476,2.152,20.1373,5.9704,4.1811,0.95508,2.4931,8.811,14.5143,3.6878,4.9556,3.4897,1.5968,1.4536,4.3051,11.8059,3.3325,2.7264,10.3217,2.1745,2.4295,2.3903,11.6386,2.0975,4.1664,1.2102,14.7926,5.6506,8.7471,4.8414,10.2868,8.038,8.0041,8.8301,3.7894,1.6185,4.6903,,,,,,,,,,,,,,,71,,,,48
+3069,1.0216,1.9511,,50-59y,Other,,,16.8428,4.7427,2.7284,2.1612,1.2564,ppmi,,,F,,0.50566,5.603,4.5208,0.9015,10.0957,1.7794,0.42478,3.1068,3.1872,47.057,14.0043,227.8112,4.3247,4.8193,1.7336,1.9305,4.1676,8.0795,2.7005,3.2415,0.50178,7.0672,12.1457,15.2417,7.7589,2.5851,5.115,2.4058,21.0707,7.3213,4.7736,1.2964,2.7439,8.2091,14.4191,3.5464,4.2434,2.7257,1.7244,1.326,4.8048,12.2311,3.3349,2.4678,12.7104,2.5221,2.6601,2.3108,12.3336,2.2857,4.045,1.4209,15.6805,5.8726,9.8622,4.122,11.5304,7.7019,8.1063,8.0867,4.0985,1.8415,4.3103,,,,0.074601,CN,,HC,0.45179,4.9647,4.4438,0.90122,11.4236,2.0632,0.41724,3.2366,3.4601,46.4627,14.0047,234.9026,3.9966,4.8067,1.7957,2.0508,4.5017,8.6251,2.5938,3.4247,0.47945,7.4875,12.5378,12.196,8.5322,2.4643,4.9895,2.2388,20.0217,6.1386,4.4188,1.2359,2.5434,8.9313,14.836,3.5541,4.6857,3.5172,1.6888,1.3259,4.5316,12.1738,3.1141,2.6371,10.3766,2.451,2.5169,2.2492,13.4836,2.1054,4.0005,1.3734,16.0227,5.6493,8.7002,4.7886,11.5197,7.1464,7.7279,8.1104,3.9419,1.7658,4.1165,,,,,,,,,,,,,,,54,,,,49
+3071,1.3015,1.7011,,70-79y,Other,,,18.2638,4.7427,2.747,2.166,0.94733,ppmi,,,M,,0.42667,4.5615,4.0089,0.85231,7.5792,1.4896,0.39187,3.3691,2.9672,46.1739,14.3771,218.4629,4.029,4.773,1.5488,2.0406,3.2879,6.9208,2.0543,2.9606,0.53166,6.6378,10.7408,10.2701,7.7943,2.357,4.4777,1.7742,19.0858,5.5857,3.9062,1.0584,2.2212,6.5552,12.2726,3.6781,4.2949,3.5204,1.5474,1.4472,4.2208,10.0731,3.1254,2.1062,10.7548,2.087,2.5121,2.1429,12.2024,1.924,4.1139,1.2267,13.9127,4.8787,7.9057,3.5099,10.3865,5.79,7.3835,6.9093,3.9946,1.6954,4.6017,,,,0.075857,CN,,HC,0.40403,3.9595,3.7681,0.84982,10.0229,1.7937,0.39301,3.6407,3.0156,46.456,14.6516,222.3891,3.6644,4.718,1.5873,1.971,3.7441,6.5878,2.1249,3.1865,0.49976,6.5933,10.4567,9.0865,8.4232,2.233,4.2684,1.8306,18.1551,5.2643,3.825,0.87972,2.0677,7.7677,12.9282,3.068,4.1885,3.4447,1.4935,1.3743,3.9411,9.4392,2.8997,2.0653,9.8965,1.9735,2.3903,1.9989,11.6045,1.7214,3.9579,1.1939,13.6722,4.828,7.7687,4.327,9.959,6.1432,7.2049,7.0089,3.5989,1.4437,4.4192,,,,,,,,,,,,,,,72,,,,50
+3072,0.61557,1.7055,,-50y,Other,,,16.0615,4.2355,2.4621,2.1695,0.73383,ppmi,,,F,,0.3919,3.7189,3.4099,0.77908,8.5108,1.391,0.35622,3.3185,2.5391,44.1001,12.8641,170.4913,3.3419,4.9174,1.5159,1.7839,2.9422,6.9944,2.0237,2.776,0.29083,6.3258,10.2483,6.0984,7.7454,2.0959,4.0651,1.5017,15.439,5.9454,3.8753,1.0687,2.2901,5.5805,12.4054,3.5781,4.2237,2.8969,1.2869,1.1587,3.5149,8.627,3.031,1.86,10.6374,1.925,2.252,1.9175,12.065,1.8286,3.7246,1.017,12.1607,4.6589,7.9235,3.5649,9.0393,6.3816,6.9327,6.8536,3.321,1.4057,4.0225,,,,0.069372,CN,,HC,0.35547,3.28,3.309,0.7651,9.4756,1.664,0.35235,3.3975,2.7999,44.8266,12.7376,176.5582,3.1247,4.797,1.5068,1.5277,3.1984,6.9807,1.9385,2.9312,0.35693,6.7193,10.0968,7.8217,8.5972,2.0268,3.722,1.538,15.6278,4.9737,3.7469,0.88073,2.3242,6.4472,12.1818,3.118,4.445,2.7754,1.2965,1.186,3.4773,9.0642,2.7589,1.7519,9.5844,1.7739,2.2929,1.7274,11.5806,1.7062,3.5571,0.97249,12.9307,4.5534,7.1852,4.2492,9.561,6.3919,6.6844,7.0989,2.9092,1.2594,3.9098,,,,,,,,,,,,,,,47,,,,51
+3073,0.73001,1.6414,,-50y,Other,,,18.2006,4.6252,2.4627,2.2972,1.033,ppmi,,,M,,0.38285,3.8681,3.803,0.81607,8.8283,1.4247,0.37034,2.5814,2.4575,44.7388,15.8689,212.9155,3.8069,4.2508,1.4925,1.8093,3.2272,6.7836,1.8838,2.8675,0.36574,5.6728,10.369,6.8137,7.0961,2.1876,3.841,1.6181,17.1684,5.4126,3.79,1.0976,2.327,5.9477,12.3151,3.0434,3.9302,3.0038,1.2954,1.3939,3.5348,9.997,2.8279,1.984,11.1294,2.1922,2.4647,2.1154,11.3733,1.9359,3.8395,1.0706,13.718,4.5761,8.0251,3.3568,12.0034,6.4131,7.1221,7.2228,3.2413,1.6126,4.545,,,,0.071518,CN,,HC,0.33835,3.4931,3.4951,0.81103,9.5637,1.5327,0.36796,2.927,2.4585,44.9229,15.5792,217.8738,3.7795,4.4776,1.4729,1.809,3.2912,6.7326,1.8691,2.9835,0.43453,6.2247,10.0475,5.112,7.6841,1.8997,4.1335,1.5787,16.5309,5.5723,3.6422,1.0813,2.6671,6.9377,12.8418,3.3537,3.866,3.3938,1.2555,1.3978,3.2448,9.1055,2.5357,1.9771,9.1084,2.1253,2.125,1.877,11.8174,1.8633,3.6849,1.0256,13.0967,4.7805,7.2942,5.1344,10.7965,6.3832,6.8467,6.4261,2.8981,1.5802,4.3687,,,,,,,,,,,,,,,48,,,,52
+3074,0.76943,1.9564,,-50y,Other,,,19.7932,5.1001,3.043,2.3793,0.91323,ppmi,,,M,,0.52744,5.2063,4.3046,0.95558,10.271,1.8711,0.43289,3.999,3.424,51.9039,16.5315,269.6401,4.286,5.6745,1.8472,2.1342,3.9574,8.2107,2.4482,3.4711,0.37451,7.8791,12.5676,9.5699,8.72,2.8958,5.4129,2.1629,21.4909,7.323,4.5743,1.4192,3.0454,7.6968,15.9005,4.6571,5.1242,3.7782,1.855,1.6541,4.5982,11.5208,3.3751,2.24,12.5738,2.711,2.7724,2.4345,14.8516,2.2524,4.9679,1.31,16.5056,5.7659,10.8192,4.4024,12.139,7.9782,9.2264,7.9783,4.7577,1.7162,5.4936,,,,0.083792,CN,,HC,0.47453,4.6619,4.1117,0.99048,11.3317,2.2165,0.43416,4.2752,3.6079,52.0527,16.3972,275.171,4.0026,6.0646,1.8972,2.1407,4.3121,8.2802,2.4332,3.7354,0.41684,8.2369,13.3332,9.9643,9.3976,2.6416,5.159,2.1677,21.5556,5.9778,4.5284,1.1659,3.2073,8.7452,16.4478,4.1108,5.0344,3.7539,1.77,1.7062,4.1682,11.9105,3.0556,2.2204,11.8918,2.3351,2.6153,2.1196,15.5578,2.1949,4.7976,1.2232,16.095,5.8341,9.4899,5.1471,10.7397,8.5177,8.7981,8.4394,4.2441,1.5057,5.2765,,,,,,,,,,,,,,,31,,,,53
+3075,1.6379,3.5415,,70-79y,Other,,,19.1695,4.3439,2.609,2.0711,1.7537,ppmi,,,M,,0.52822,5.9053,5.1861,1.0013,12.1104,1.8074,0.45568,3.7095,3.5199,46.7531,15.0843,272.0147,4.7333,5.11,1.9065,2.2997,4.3023,8.9126,2.5614,3.6208,0.75052,7.472,13.4224,28.3491,8.1429,2.8123,5.7653,2.2889,23.2086,8.0818,4.6608,1.4097,3.1266,8.8802,15.8922,4.1487,4.8585,3.666,1.8596,1.6655,5.4619,13.0707,3.6029,3.0571,13.1578,3.244,2.8296,2.7302,14.3029,2.5258,4.6624,1.5376,16.8166,6.4128,10.338,4.6637,12.1555,8.3295,9.6256,8.3515,4.9137,2.0296,5.3774,,,,0.087138,CN,,HC,0.47281,4.7687,4.8104,1.0155,12.5014,2.0346,0.46053,3.3515,3.6008,45.8452,14.9313,274.642,5.2684,5.1474,1.9272,2.3547,4.901,8.9156,2.5891,3.7285,0.8108,7.8192,12.8545,25.0857,8.6741,2.4494,5.2162,2.2864,22.7563,6.1979,4.4954,1.2937,3.209,11.0336,15.6894,3.6833,4.6898,4.2945,1.6668,1.6847,4.9728,13.3179,3.3391,3.1697,12.1062,2.8438,2.4587,2.6819,14.4484,2.4752,4.4793,1.533,17.1976,6.7439,8.592,5.0087,12.545,8.4294,9.1175,8.357,4.1942,2.1047,5.1654,,,,,,,,,,,,,,,76,,,,54
+3076,1.8133,1.6153,,70-79y,Other,,,20.4281,5.091,2.8417,2.4837,3.2605,ppmi,,,F,,0.50008,4.9682,4.7904,0.71334,10.4087,1.7275,0.40208,2.8232,3.8351,47.5536,15.0056,220.5682,4.5705,4.7271,1.4142,2.0974,3.5559,7.5906,2.2894,2.8957,0.92297,6.3365,11.5288,46.6861,7.2528,2.5103,5.1517,1.9644,19.5246,6.7294,4.319,1.2954,2.9489,7.258,14.4334,3.8419,4.1562,3.2781,1.6587,1.657,5.0449,11.8365,3.0983,2.8067,13.4702,2.4194,2.6958,2.5157,14.2289,2.1213,4.7129,1.4144,14.6502,5.9235,9.7745,3.847,10.3967,7.8592,8.7029,7.7341,4.1935,1.6455,5.0897,,,PD,0.082497,PD,,PD,0.46455,4.0935,4.3185,0.7076,10.3133,1.8529,0.39859,3.0676,4.0238,48.0245,14.9857,219.4732,4.0717,5.2035,1.5144,2.0331,4.2264,7.2181,2.3287,2.9373,1.3219,5.7278,11.1054,45.8363,7.1851,2.3451,5.1717,2.0367,19.4737,4.91,3.9643,1.0215,2.5734,8.7677,14.0258,2.5551,3.6758,3.1768,1.6678,1.5995,4.3458,11.4317,2.7601,2.6701,11.1093,2.1786,2.4871,2.4094,13.0006,2.0636,4.3801,1.3877,15.1326,5.8022,8.9079,4.0038,10.5645,8.6479,8.3437,8.3167,3.9823,1.7626,4.9557,,,,,,,,,,,,,,,76,,,,55
+3077,2.2312,2.56,,60-69y,Other,,,18.9955,5.3965,2.5302,2.4252,1.7421,ppmi,,,M,,0.42711,4.9827,4.5044,0.90154,9.6707,1.61,0.40203,3.0472,3.3716,47.7341,15.0763,225.1684,4.3339,4.8994,1.6906,2.0907,3.5931,8.0142,2.2406,3.3995,1.5741,7.0788,12.2832,36.9001,7.8839,2.5177,5.3546,1.8736,21.6384,6.7088,4.2983,1.2894,3.3631,7.2654,14.7966,3.6272,4.4483,3.5386,1.5589,1.4461,5.1735,11.7358,3.5005,2.6395,12.8086,2.6825,2.4579,2.6241,13.3513,2.5517,4.2431,1.3672,15.2795,6.7022,10.5667,3.9379,11.6571,8.4605,8.1201,8.7066,4.2717,1.787,4.8952,,,PD,0.091077,PD,,PD,0.37635,4.585,4.4625,0.88687,11.1163,1.79,0.40922,3.2449,3.7005,47.8429,14.987,228.3638,4.1523,4.9294,1.8159,2.2505,3.7756,8.5315,2.2451,3.6124,1.1716,7.3658,13.3797,27.8067,8.3115,2.3493,4.7828,1.8123,19.7358,5.0468,4.0658,1.2779,2.8988,8.5509,16.286,3.2821,4.6316,3.4934,1.7567,1.427,4.8859,12.2064,3.2639,2.5225,11.2428,2.353,2.4425,2.4364,12.5403,2.1648,4.1987,1.3879,16.0411,6.4709,8.6193,4.2874,11.3216,8.434,7.6295,8.9169,3.9891,1.7776,4.713,,,,,,,,,,,,,,,63,,,,56
+3078,0.79109,1.6694,,60-69y,Other,,,18.9539,4.7933,2.8629,1.9347,0.94067,ppmi,,,M,,0.48839,5.4352,4.77,0.99661,10.3392,1.8276,0.41844,3.5686,3.1763,49.6461,16.7659,277.7141,4.731,5.1211,1.8784,2.1858,4.592,8.1781,2.7286,3.575,0.46912,7.4143,12.4276,7.4205,8.594,2.786,5.5952,2.233,22.45,7.4259,4.8324,1.1211,2.8293,7.9433,14.8859,4.5429,4.8866,3.329,1.8124,1.6161,5.0219,11.2166,3.5331,2.4325,13.1643,3.0281,2.7065,2.4709,15.5721,2.5382,4.7241,1.3186,16.8477,5.9441,10.1708,4.3969,11.6547,7.5735,9.0817,8.3897,4.342,2.0387,5.0043,,,PD,0.079836,PD,,PD,0.45889,5.0843,4.6231,1.0135,12.026,2.4084,0.43214,3.7394,3.4601,50.4477,16.6176,285.1117,4.8934,5.5078,1.988,2.215,4.2922,8.3337,2.592,3.8293,0.61923,7.874,13.4558,6.6225,9.268,2.7657,5.3835,2.1819,22.0536,6.2129,4.7755,1.3144,3.0791,8.7461,16.2705,3.8095,4.9252,3.5448,1.7714,1.6591,4.6808,11.469,3.3011,2.5032,12.4141,2.7016,2.6547,2.2426,15.6345,2.3824,4.697,1.2626,16.7125,5.9452,9.0752,5.3531,11.0095,7.9494,8.8484,8.8599,3.7454,1.7816,4.8731,,,,,,,,,,,,,,,61,,,,57
+3080,1.5203,1.9212,,+80y,Other,,,19.3124,5.2418,3.0515,2.542,1.4777,ppmi,,,M,,0.51093,4.9299,4.4785,0.96807,9.8406,1.7133,0.43416,3.9767,2.937,53.3239,16.5937,256.9178,4.0165,5.189,1.9459,2.0122,3.6,7.9965,2.4829,3.2913,0.51855,7.6262,11.7112,12.1587,8.6762,2.6653,4.9101,2.0786,20.9435,7.362,4.432,1.0142,2.5333,7.4979,14.5785,4.438,5.0741,3.2349,1.5026,1.5804,4.5244,11.467,3.7817,2.5107,10.7287,2.6092,2.6998,2.3515,12.5742,2.2888,4.5048,1.3632,14.4735,5.7158,8.5164,4.1744,10.4552,6.9657,8.3643,8.4954,3.787,1.7154,5.0168,,,PD,0.089333,PD,,PD,0.43548,4.1603,4.4331,1.0084,10.0164,1.9416,0.41537,4.0457,3.0335,52.9305,16.9711,264.5061,4.0187,5.5692,2.0081,2.1359,3.8176,8.3622,2.4145,3.5197,0.58608,7.4068,13.3488,11.0906,8.6744,2.3763,4.873,2.071,20.1091,5.1243,4.2054,1.0087,2.4573,8.8822,15.5926,3.6283,4.8628,3.7945,1.495,1.5909,4.0554,11.3679,3.2404,2.5615,10.1211,2.6056,2.4055,2.3526,12.7066,2.2278,4.4666,1.2969,15.0205,5.3038,8.4287,4.7191,10.4503,8.2602,7.9652,8.745,3.8117,1.7377,4.7977,,,,,,,,,,,,,,,80,,,,58
+3081,1.7052,2.0263,,+80y,Other,,,17.5134,4.2882,2.5856,1.9018,1.7608,ppmi,,,F,,0.40279,4.3636,3.565,0.80937,8.592,1.3967,0.3569,2.4447,3.0181,43.3979,13.1127,183.063,3.928,3.9882,1.5745,1.588,3.2787,6.4695,1.9823,3.0386,0.58497,5.4494,9.7473,23.2464,6.7517,2.2826,4.8077,1.6065,17.4918,5.7901,3.5941,0.94797,2.1347,6.7145,11.9837,3.0594,3.847,3.03,1.3792,1.1985,4.1233,10.0403,3.114,2.221,10.963,2.1934,2.2238,2.198,11.3215,1.9312,3.4921,1.1713,14.4898,4.7291,8.3799,3.6187,9.6873,6.6481,7.2828,6.5832,3.5378,1.4617,4.3141,,,PD,0.076732,PD,,PD,0.34728,4.1478,3.4257,0.7972,9.749,1.5396,0.36223,2.4732,3.013,42.7756,12.7754,184.9392,3.6535,3.901,1.6105,1.7045,3.4144,6.6102,2.0206,3.213,0.5824,5.6134,10.1191,15.6721,7.2355,1.951,4.5523,1.5666,18.0229,4.719,3.5804,0.96977,2.0968,7.2625,12.2336,2.3628,3.8457,3.1274,1.3605,1.1968,3.9217,10.1618,2.8795,2.1452,10.1216,2.4761,1.9958,2.0027,11.1568,1.8874,3.5418,1.1875,12.9843,5.0493,7.3709,3.4323,9.3446,7.1569,6.8903,7.0952,3.0733,1.4314,4.1111,,,,,,,,,,,,,,,81,,,,59
+3083,1.5919,1.9303,,60-69y,Other,,,18.0984,4.4558,2.6109,2.1359,1.5588,ppmi,,,F,,0.42105,4.307,3.8761,0.83458,9.0152,1.5369,0.38121,2.786,2.746,46.8836,14.8391,222.7643,3.8622,4.5809,1.6276,1.7591,3.0532,7.5947,2.0104,3.0944,0.54226,6.2169,10.92,17.895,7.0669,2.2888,4.3858,1.586,17.5017,5.8157,4.0689,1.0724,2.2825,6.1923,12.8269,3.1631,4.2973,3.3271,1.353,1.3968,4.449,10.4959,3.1581,2.2651,11.5329,2.2584,2.4473,2.2369,12.8165,1.9524,4.417,1.2249,13.586,4.8781,9.1333,3.6975,10.7312,7.0564,7.3674,7.3646,3.5727,1.5494,4.573,,,PD,0.072581,PD,,PD,0.40106,3.5856,3.7618,0.83826,9.49,1.66,0.39385,2.936,2.8462,48.1547,14.7776,225.879,3.915,4.4878,1.6125,1.69,3.1969,7.7244,1.9927,3.3686,0.74786,6.1652,11.2073,16.8692,7.8803,2.099,4.3344,1.7552,16.3114,4.7761,3.8114,1.2189,2.5545,7.2671,13.1879,2.8813,4.5887,3.2259,1.423,1.4338,4.1504,10.7913,2.9135,2.2835,10.9285,2.1539,2.2736,2.0214,12.889,1.8627,4.2804,1.1503,13.2629,5.3118,7.9709,3.9818,9.7766,7.0194,7.0014,7.5415,3.5524,1.5323,4.4106,,,,,,,,,,,,,,,66,,,,60
+3086,1.1711,1.7681,,50-59y,Other,,,19.6247,4.8254,2.7233,2.2215,1.1623,ppmi,,,F,,0.44816,5.1152,4.2883,0.92129,9.8365,1.9169,0.43063,3.8096,3.2423,52.1935,16.4436,250.1178,4.1257,5.1964,1.633,1.9389,3.743,7.8751,2.4779,3.2162,0.39001,7.7734,12.314,13.2264,8.3949,2.7113,4.9456,2.0226,21.0011,7.7192,5.0334,1.293,2.8519,7.1288,15.4142,4.5433,4.9032,3.262,1.5035,1.5692,4.6985,11.6846,3.2248,2.3174,13.6838,3.1998,2.751,2.1566,13.7537,2.5346,4.213,1.4291,15.5132,5.8273,10.7813,4.7594,12.7758,7.5745,8.9576,7.4686,4.2073,1.6984,5.0472,,,PD,0.097903,PD,,PD,0.42523,4.6414,4.3217,0.95566,10.9776,2.1796,0.41745,3.9059,3.5206,51.4027,15.824,251.948,4.173,5.6697,1.7999,2.1423,4.2686,7.9057,2.6225,3.4458,0.4067,7.741,12.6422,14.2809,8.7018,2.8178,5.0137,2.1604,19.9682,6.0286,4.8309,1.3,2.6543,8.6714,15.2703,3.811,4.5507,3.923,1.9154,1.5839,4.0906,11.1409,3.0812,2.4167,12.0171,3.0193,2.6643,2.1935,11.9634,2.4023,4.1741,1.4072,16.3809,5.9212,9.3483,5.6354,11.6034,7.4536,8.6899,7.9662,4.4352,1.863,4.8717,,,,,,,,,,,,,,,56,,,,61
+3088,0.86862,1.2774,,50-59y,Other,,,20.0061,4.4335,2.6266,2.2397,0.79722,ppmi,,,F,,0.43461,5.0517,3.9141,0.84909,9.5933,1.7389,0.38688,3.1597,2.6825,47.1791,16.4444,255.4911,3.8974,4.4719,1.6436,1.9354,3.3664,7.0383,2.2725,3.1372,0.36071,6.4059,11.1621,5.9845,6.8781,2.6463,4.8691,1.9545,19.9872,6.9743,4.3596,1.2091,3.1064,7.5904,14.2082,3.5768,4.1481,3.3365,1.6379,1.4102,4.3048,10.4079,2.9335,2.1186,11.8383,2.0756,2.5701,2.3071,14.3996,1.8317,3.7993,1.2192,15.2074,6.1954,8.1512,3.7413,11.1141,7.6662,8.5169,7.9751,4.0758,1.4784,4.9787,,,PD,0.08476,PD,,PD,0.39393,4.9372,3.8293,0.84108,9.8338,2.0173,0.38607,3.4637,2.755,48.9542,16.694,261.171,3.6634,4.5583,1.7211,2.0126,3.8476,7.2569,2.1645,3.277,0.37253,7.4873,11.6617,5.6863,7.9895,2.4443,5.1986,2.0284,20.58,6.0466,4.067,1.1509,2.9974,8.4711,14.5194,3.3957,4.5152,3.5603,1.6415,1.4649,4.2699,10.5123,2.9641,2.1854,10.8708,2.0053,2.3579,2.188,13.713,1.7587,3.7585,1.21,14.5784,5.7758,7.6563,4.2839,9.6605,7.1687,8.1466,7.8688,3.866,1.4811,4.7253,,,,,,,,,,,,,,,55,,,,62
+3089,0.9969,2.1057,,50-59y,Other,,,19.2256,4.8949,2.6326,2.5489,1.0754,ppmi,,,F,,0.449,4.3938,3.8122,0.84095,8.5417,1.4543,0.38769,2.835,2.8475,47.3177,16.0513,203.0713,3.8669,4.5447,1.6405,1.9242,3.3581,7.5087,2.3152,3.1648,0.57272,6.0947,11.1977,11.5021,7.3395,2.222,4.9891,1.93,19.307,6.1265,3.8563,1.0692,2.474,6.8802,13.0286,3.5801,4.0115,3.1867,1.3748,1.3486,4.3802,10.4508,3.2896,2.104,11.812,2.3638,2.2085,2.1177,13.001,1.885,4.1956,1.2227,14.6977,5.5326,8.9731,3.9599,10.2029,6.9585,7.7353,7.5636,3.7723,1.5584,4.7699,,,PD,0.089112,PD,,PD,0.40541,4.2312,3.682,0.88046,10.6105,1.716,0.38495,2.806,2.9654,48.6498,15.7402,207.9989,3.7604,4.3238,1.6472,2.0658,3.5872,7.1113,2.1783,3.3389,0.57226,6.1405,11.7764,12.0029,8.0863,2.0926,5.0754,1.8637,19.0339,5.0918,3.7229,1.025,2.5617,7.6396,14.1526,2.8737,4.1311,3.7731,1.3984,1.3809,3.968,9.9771,2.9252,2.2233,10.4682,2.147,2.1208,1.9224,13.6526,1.6952,4.0397,1.158,13.9534,5.5768,7.5759,4.7316,11.2707,6.5876,7.2596,7.5983,3.5262,1.3966,4.5491,,,,,,,,,,,,,,,56,,,,63
+3102,1.5581,1.8037,,60-69y,Other,,,19.69,4.1919,2.5028,2.079,1.3479,ppmi,,,M,,0.45109,4.5349,4.4911,0.81629,10.2926,1.5183,0.3663,3.1825,3.5075,43.0802,16.7801,242.3501,4.1759,4.466,1.5778,2.048,3.6042,7.3176,2.0088,2.9459,0.66798,6.1034,11.3137,16.9883,7.2773,2.406,5.0302,1.8047,19.1476,6.0736,3.7691,1.0372,2.7892,6.9701,13.5608,3.7227,4.0931,3.163,1.4761,1.7187,4.8068,10.8387,3.036,2.5707,11.9569,2.5818,2.2941,2.3219,12.5921,2.1102,4.6958,1.2501,14.0798,5.2777,8.5425,3.434,10.6017,7.3549,8.5472,7.1405,3.9714,1.6958,5.1782,,,PD,0.064957,PD,,PD,0.40752,4.2693,3.951,0.82296,9.9588,1.6843,0.37908,3.4337,3.7347,43.2286,16.1761,245.8614,3.8458,5.1986,1.6293,1.9152,3.7285,7.362,2.0269,3.2886,0.60714,7.6298,11.0012,16.3899,7.8126,2.2053,4.8832,1.6582,17.6998,5.6452,3.7214,1.0851,2.6987,7.3101,13.8826,3.7364,4.2951,3.3531,1.5408,1.6614,4.3038,11.0155,2.8378,2.4904,9.9787,2.3642,2.0952,1.9478,12.4599,1.882,4.4812,1.1569,13.9506,5.63,7.8508,4.5869,9.8739,6.1918,8.3529,7.1395,3.5391,1.4624,4.8553,,,,,,,,,,,,,,,64,,,,64
+3104,1.7738,1.8381,,70-79y,Other,,,18.1729,4.8523,2.6162,2.2884,1.2278,ppmi,,,M,,0.44451,4.7252,4.4869,0.84206,9.4885,1.4461,0.39632,3.004,2.7615,47.8017,15.9597,198.3982,4.0028,4.7015,1.6484,1.8661,3.5451,7.8019,2.1288,2.9589,0.58878,6.1782,11.1027,18.2621,8.1706,2.4263,4.6044,1.888,17.5371,6.5929,3.7983,1.2354,2.5968,6.9505,12.8211,3.9067,4.4419,3.6271,1.4854,1.2851,4.4657,10.8298,3.2268,2.4432,11.3843,2.3659,2.4993,2.2168,12.9598,2.0905,3.9974,1.4171,13.2507,4.6533,8.3934,3.6903,10.5224,6.7383,7.9408,7.4357,3.7897,1.759,4.4855,,,,0.080241,CN,,HC,0.38799,4.1388,4.2561,0.90413,9.9406,1.5786,0.41352,3.4429,3.022,49.546,15.7973,203.5945,3.797,5.2844,1.8515,1.9583,3.7842,7.7229,2.0386,3.2085,0.71092,6.7129,11.3094,18.2911,8.7562,2.1345,4.178,1.8026,17.7961,5.4475,3.5441,1.2078,2.6472,7.804,13.5842,3.4106,4.5844,3.4516,1.4468,1.2596,4.0237,10.9726,3.107,2.4364,10.1082,2.2256,2.3209,2.101,12.7219,1.9062,3.8712,1.2749,14.8375,5.2599,7.8094,4.7521,10.8266,7.2815,7.8293,8.4073,3.3787,1.4947,4.3778,,,,,,,,,,,,,,,72,,,,65
+3105,1.8023,2.5253,,60-69y,Other,,,18.2092,5.2438,2.7748,2.3497,2.1312,ppmi,,,M,,0.40918,4.4275,4.457,0.83352,7.8177,1.4698,0.38893,3.3531,3.1741,49.2397,16.697,222.2521,3.9,4.922,1.5953,2.0652,3.5207,7.9092,2.144,2.8598,1.2839,7.2079,11.1926,45.524,7.4135,2.4463,4.4121,1.7128,18.4805,6.6342,4.0157,1.076,2.3436,6.1804,13.195,4.1765,4.3271,3.4979,1.6983,1.3071,4.7595,11.3557,3.1797,2.5444,11.223,2.2676,2.5174,2.3557,12.9652,2.0071,3.6022,1.3781,14.382,4.9807,7.6841,4.0664,9.3613,6.0747,7.801,7.1286,4.0505,1.6995,4.6151,,,PD,0.074162,PD,,PD,0.40761,4.1469,4.4173,0.81691,10.1003,1.5732,0.40714,3.1546,3.5271,49.2799,16.7636,225.5783,4.1476,4.9273,1.7188,2.0843,3.8282,7.8038,2.0912,3.306,0.93732,6.7961,11.4392,29.5849,8.111,2.3682,4.2667,1.671,17.2372,5.1014,3.6619,0.98502,2.3667,6.8689,13.6114,2.8452,4.0681,3.5606,1.801,1.4085,4.2326,10.9988,2.9632,2.7261,9.7543,2.1069,2.3421,2.2564,12.3387,1.8666,4.058,1.271,13.5002,4.9107,7.965,3.8473,9.6899,7.136,8.029,7.902,3.3558,1.694,4.497,,,,,,,,,,,,,,,69,,,,66
+3106,1.2101,1.6089,,70-79y,Other,,,18.273,3.8243,2.327,1.9316,1.3292,ppmi,,,F,,0.36996,4.0028,4.0127,0.77904,7.9323,1.4947,0.34532,2.8725,3.0196,39.2802,15.2939,234.1296,3.815,4.2171,1.5461,1.9103,3.1771,6.6393,1.9737,3.1454,0.58836,5.946,10.4438,17.8297,6.4766,2.2499,4.1804,1.5927,17.8388,6.1556,3.8237,1.1158,2.5765,6.5525,13.1147,3.7208,3.7618,3.8079,1.4363,1.616,4.0072,10.3749,3.0287,2.2409,12.286,2.0303,2.4418,2.1166,12.6848,1.6963,4.2531,1.1138,14.0245,5.4179,8.1931,3.5198,10.3687,6.1383,8.4591,7.4118,4.0202,1.5064,4.908,,,,0.070403,CN,,HC,0.35092,3.6867,3.5019,0.63252,9.6895,1.5542,0.33583,3.0458,3.0603,39.9226,15.2197,234.6455,3.6333,4.6534,1.2254,1.805,3.2742,6.6334,1.8893,2.8973,0.91532,6.189,9.6969,14.932,7.0443,2.0524,4.2848,1.529,17.262,5.0126,3.5374,1.0918,2.667,6.8683,12.5764,2.9351,3.7453,3.5915,1.4193,1.4979,3.5487,10.108,2.4394,1.9972,10.4677,2.0405,2.1555,1.8792,12.4132,1.7439,4.0058,0.99754,14.0565,5.2637,7.4845,4.2111,9.9715,6.7409,8.1919,6.3444,3.2856,1.4027,4.6256,,,,,,,,,,,,,,,70,,,,67
+3107,1.4825,1.63,,70-79y,Other,,,20.4465,5.6496,2.7642,2.5431,1.6722,ppmi,,,M,,0.46597,5.2934,4.5159,0.88298,10.7481,1.7704,0.41752,3.7985,3.079,49.0868,17.3946,239.419,4.1924,5.7048,1.777,2.0627,3.8236,7.8219,2.3353,3.2767,0.66631,6.9501,12.0365,23.1381,8.6958,2.639,5.0236,1.9882,20.2249,6.3929,4.3878,1.3155,2.864,8.1423,14.3789,3.9748,4.6477,3.3067,1.6562,1.6021,4.8281,12.2694,3.4105,2.4222,12.9061,2.683,2.6615,2.3611,12.2752,2.3925,4.3882,1.4886,14.0172,5.8898,9.8468,4.0992,12.1849,8.1675,8.734,8.2049,4.1242,1.8316,5.1265,,,PD,0.086986,PD,,PD,0.42064,4.2405,4.5265,0.89382,10.7915,1.7842,0.42146,4.0359,3.201,49.3343,17.2553,242.2809,4.4204,5.7641,1.777,2.1307,4.0845,7.9881,2.3682,3.5983,0.78317,7.433,12.5172,16.3663,9.0089,2.3995,4.7656,2.0323,18.6375,5.539,3.9093,1.1726,2.9445,9.4417,15.4447,3.5751,4.9598,3.3007,1.7839,1.5407,4.9424,12.5912,3.061,2.6141,11.2635,2.4629,2.4819,2.3696,13.484,2.1006,4.3371,1.3802,14.8129,5.3216,8.9219,4.8075,11.2064,7.8508,8.5666,8.5481,3.8376,1.753,4.9232,,,,,,,,,,,,,,,70,,,,68
+3108,0.69511,1.4022,,50-59y,Other,,,17.1174,4.53,2.6723,2.1668,0.864,ppmi,,,F,,0.43355,4.16,4.1217,0.86812,9.9142,1.6958,0.36747,3.3938,3.0355,46.2315,14.3046,200.2576,3.9031,4.378,1.6658,1.8535,3.2655,7.4731,2.0771,3.0857,0.35593,6.2182,10.6253,8.1254,7.8863,2.3536,4.7339,1.7258,18.4459,6.0505,4.1058,1.082,2.4951,6.418,13.9492,3.3836,4.444,3.3277,1.3835,1.3333,4.2663,9.6295,3.3093,2.1325,11.8466,2.4032,2.4852,2.0167,12.6982,1.9804,4.0521,1.0797,14.5494,4.5352,10.2675,3.7092,11.0067,7.8948,7.9006,7.7029,3.5565,1.4105,4.4989,,,PD,0.072358,PD,,PD,0.38539,3.2902,3.8804,0.83979,10.3192,1.6761,0.37946,3.5634,3.1221,46.2042,13.9887,203.8786,3.7891,4.5771,1.5963,1.8728,3.4625,7.3577,2.0388,3.3379,0.38794,6.884,11.598,7.5198,8.492,2.0844,4.238,1.6448,17.4011,5.7173,3.925,1.0151,2.5565,7.1783,15.0025,3.1707,4.3339,3.5471,1.4045,1.3625,3.9177,9.6555,2.9745,2.1115,11.2874,2.21,2.3344,1.9234,12.6208,1.87,3.9504,1.0463,15.2713,4.9311,9.1434,4.5938,10.4405,7.7367,7.7532,8.117,3.4746,1.3843,4.3139,,,,,,,,,,,,,,,50,,,,69
+3111,1.8406,2.0856,,60-69y,Other,,,19.8741,4.9239,2.3718,2.2239,1.9304,ppmi,,,M,,0.39756,4.0602,4.3736,0.84844,8.9969,1.2203,0.35992,2.708,3.1998,41.288,17.5352,228.7865,3.7913,4.3052,1.6237,1.7886,2.9892,6.5566,1.781,3.3024,1.0888,5.3877,10.0389,26.7825,7.3002,2.1291,4.2722,1.4142,16.9723,5.6973,3.4654,1.2207,2.8451,6.3069,13.5831,3.1306,3.9576,2.488,1.4121,1.4652,4.7604,11.3157,3.2416,2.4869,11.5846,2.2771,2.2894,2.3512,11.1987,1.8656,3.8756,1.1749,12.5519,5.4268,8.8009,3.6421,11.6694,7.206,8.3063,7.0436,3.2357,1.4311,4.7987,,,PD,0.065669,PD,,PD,0.35007,3.4847,4.0648,0.78272,10.4692,1.3136,0.37154,2.8862,3.3473,41.4769,17.4814,234.5161,3.4805,4.5241,1.5381,1.71,3.0772,6.7658,1.8159,3.4211,0.91849,7.1653,10.4543,23.5172,7.381,2.0633,4.4859,1.4411,14.7358,5.8629,3.2904,1.2524,2.965,6.6824,12.8265,3.2253,4.0755,2.3968,1.677,1.4022,4.4406,11.374,2.8532,2.4413,10.9162,2.27,2.1844,1.9983,9.5871,1.8787,3.7289,1.152,13.4285,5.0607,7.5833,4.7231,11.3523,6.9995,8.2684,6.7708,3.0994,1.5485,4.6031,,,,,,,,,,,,,,,65,,,,70
+3112,0.65532,1.6575,,60-69y,Other,,,16.5532,3.8452,2.0472,1.6801,0.82614,ppmi,,,F,,0.3914,3.4303,3.5956,0.81173,7.2566,1.2588,0.34787,2.5228,2.8859,35.7044,12.5142,194.6642,3.6023,4.0086,1.522,1.7704,2.7695,5.7704,1.7807,2.8269,0.41811,4.9148,9.379,8.7248,6.1027,2.0404,3.5523,1.425,15.452,5.0305,3.2881,1.0267,2.3584,5.5529,11.5153,2.7746,3.3513,3.0184,1.28,1.321,3.4511,8.9823,2.7844,1.8524,10.7358,2.0247,2.1494,1.7171,11.2233,1.7442,3.9907,1.0085,13.2394,4.6509,7.8372,3.0358,9.2509,5.7748,7.4592,6.9698,3.276,1.3584,4.2834,,,,0.069385,CN,,HC,0.36197,3.1627,3.4078,0.77809,8.7907,1.3946,0.35477,2.4965,2.8628,35.8716,13.0473,196.4646,3.4589,3.957,1.4737,1.6243,3.166,6.1584,1.8109,2.9572,0.42871,5.1044,9.9842,7.371,6.1834,1.8377,3.7468,1.4928,15.9779,4.2831,3.086,1.0012,2.3509,5.9724,11.7195,2.4713,3.4097,2.8584,1.3201,1.2707,3.0876,8.4715,2.5876,1.8974,9.049,1.8312,1.8894,1.5952,11.5364,1.639,4.02,0.96895,12.7407,4.36,7.0714,3.5495,8.7085,5.9082,7.3037,6.5547,2.7424,1.2977,3.9787,,,,,,,,,,,,,,,63,,,,71
+3113,0.87996,1.3998,,50-59y,Other,,,18.9429,4.374,2.6592,2.0505,1.5397,ppmi,,,F,,0.41716,4.3054,3.8434,0.80481,9.8529,1.5518,0.36361,2.8219,2.7608,44.4322,15.8427,216.505,3.9992,3.9849,1.5348,1.7687,3.2925,6.1721,2.023,3.1588,0.33691,5.7214,9.6067,10.8101,6.904,2.3916,4.256,1.7082,17.8285,5.9279,3.9952,1.2044,2.5225,6.6288,12.6076,3.2088,3.941,3.163,1.4404,1.3164,4.3563,10.3605,2.9483,2.2264,11.4601,2.3822,2.4964,2.3113,12.6336,1.852,3.2591,1.1775,13.4732,5.0928,9.0805,3.4064,10.6596,6.6374,7.6668,7.3063,3.5779,1.5585,4.6143,,,PD,0.072028,PD,,PD,0.39054,4.1012,3.3851,0.79527,9.2944,1.6842,0.37623,2.8393,2.9576,43.809,14.8695,223.0518,3.9699,4.7547,1.5295,1.6336,3.5325,6.4092,2.0387,3.3002,0.38659,6.308,9.7575,9.7852,7.154,2.1323,4.395,1.6562,18.1618,4.9281,3.7955,1.0379,2.5793,7.4763,12.6617,2.6799,3.7904,3.0659,1.3692,1.4192,3.973,10.2662,2.691,2.0364,10.2933,2.2164,2.3528,1.9225,12.8752,1.8254,3.5799,1.0963,14.3524,5.0876,7.85,4.1078,9.7188,6.6541,7.8691,7.3568,3.1689,1.5484,4.4831,,,,,,,,,,,,,,,59,,,,72
+3114,1.3931,2.0803,,60-69y,Other,,,16.5827,4.2673,2.2017,1.9732,1.0463,ppmi,,,F,,0.41389,3.9169,3.9407,0.84222,8.3608,1.4291,0.36406,3.1684,2.9722,41.6833,13.1067,189.0501,3.2988,4.432,1.6149,1.7132,3.1072,6.6574,1.6528,2.9292,0.40153,5.6306,10.3447,9.9253,7.1037,2.237,4.2237,1.5298,16.6263,4.9064,3.5174,1.0486,2.4199,6.1375,12.4727,3.0235,4.2074,2.8598,1.3856,1.2612,4.1036,9.5994,3.1083,1.9508,11.5025,1.6595,2.4233,2.1018,11.2414,1.5968,3.928,0.98508,14.5026,5.0048,8.4897,3.2036,10.146,6.8695,7.781,7.4266,3.2869,1.2289,4.3593,,,,0.076316,CN,,HC,0.36854,3.4136,3.5244,0.80343,9.0493,1.5269,0.37742,3.2619,3.1688,41.3335,12.8202,194.1754,3.0733,4.3215,1.6347,1.6595,3.1906,6.9434,1.8251,3.1295,0.44265,6.3913,10.17,9.863,7.6383,1.915,4.1339,1.5038,16.3446,4.9672,3.3579,1.1325,2.5972,6.9275,12.6411,2.9927,4.1607,3.4083,1.2268,1.2496,3.7036,9.9266,2.8164,1.8872,9.5586,1.7284,2.0853,1.7622,12.0328,1.6594,3.7591,0.99372,13.3821,4.9474,7.3737,4.2125,9.5081,6.8272,7.5991,6.9828,3.1529,1.1782,4.2179,,,,,,,,,,,,,,,64,,,,73
+3115,0.82153,1.3097,,60-69y,Other,,,19.8381,5.7175,2.5382,2.4366,0.95054,ppmi,,,M,,0.48924,5.1676,4.4022,0.91808,10.4234,1.6522,0.41651,3.1163,3.0175,48.6197,17.4945,250.0254,4.9358,4.9416,1.8295,2.1482,3.9447,8.1615,2.1477,3.0843,0.41699,6.9688,12.5456,11.9121,8.1763,2.5421,5.0759,2.0179,21.0262,6.4256,4.2722,1.2737,2.7684,8.0761,14.8449,4.0028,4.6633,3.6343,1.6299,1.5345,4.8604,11.9057,3.3084,2.5399,14.7903,2.7603,2.672,2.3696,14.5453,2.5811,4.5174,1.3424,16.9279,6.2392,9.9226,4.5025,14.0208,7.7984,8.6795,8.9743,4.2296,1.9765,4.7468,,,,0.075768,CN,,HC,0.42743,4.3567,4.2694,0.9367,11.2418,2.1976,0.4187,3.2297,3.165,49.373,17.1466,254.8805,4.5951,5.1831,1.9628,2.1244,4.6393,8.5825,2.3173,3.3587,0.42921,7.1066,13.1018,8.991,8.9967,2.5137,4.979,2.1727,20.3749,5.7867,4.2841,1.1926,3.0263,9.0499,16.898,3.2674,4.6784,3.822,1.7117,1.4543,4.5385,12.1088,3.2333,2.3234,12.3136,2.5591,2.465,1.9262,13.711,2.1295,4.4199,1.306,17.3525,5.8816,9.1342,4.9353,11.8819,8.3776,8.4728,8.6775,3.7087,1.5328,4.6485,,,,,,,,,,,,,,,61,,,,74
+3116,1.7438,2.9234,,60-69y,Other,,,16.4287,4.7869,2.5498,2.1237,1.9404,ppmi,,,M,,0.37556,3.7508,3.9329,0.8209,8.973,1.3112,0.31889,2.8071,2.8516,42.9209,14.9655,206.6022,3.8585,3.7871,1.5617,1.7597,3.2315,6.2596,1.7236,3.1349,1.029,5.4781,9.6555,23.5223,7.0229,1.9757,3.7519,1.3981,15.6807,6.0488,3.1841,0.92909,2.0477,5.8503,11.6985,3.2693,3.7996,2.9572,1.2807,1.5477,3.8101,9.1119,3.0915,2.261,10.2679,2.1748,1.9785,2.2846,11.402,1.8523,3.7906,1.0534,11.9487,4.324,8.1291,3.2948,8.6392,6.2745,7.6839,6.5271,3.1453,1.6161,4.4528,,,PD,0.066848,PD,,PD,0.3508,3.3027,3.8426,0.8056,9.1598,1.314,0.33778,3.1073,3.0778,44.1906,14.9709,214.5052,3.261,4.13,1.5996,1.7893,3.342,6.9368,1.793,3.2891,1.1683,5.9645,10.0403,26.3462,7.9039,1.8348,3.7437,1.4282,15.3241,4.413,3.032,0.9681,2.1378,6.5908,12.3337,2.8649,3.9868,2.8796,1.3465,1.528,3.4013,9.0343,2.9014,2.1723,8.8931,2.0384,1.793,1.8632,9.8815,1.6795,3.8305,1.0075,12.4761,4.3627,7.2286,3.669,9.3872,6.4323,7.3141,6.8992,3.2601,1.4343,4.3002,,,,,,,,,,,,,,,65,,,,75
+3118,1.7445,1.5142,,60-69y,Other,,,18.8433,4.824,2.8453,2.4792,1.3368,ppmi,,,M,,0.45492,4.6962,4.4006,0.91858,8.7548,1.3775,0.41657,3.04,2.8418,50.6227,16.8769,194.6954,4.3005,4.4508,1.79,1.9427,3.3907,7.5036,2.2125,3.4015,0.51004,6.8799,12.3179,12.9029,7.2653,2.2961,4.9463,1.9163,17.2899,6.0022,4.0445,1.2967,2.7929,7.2386,15.1343,3.4452,4.2042,3.2278,1.6169,1.2133,4.3411,10.2354,3.4111,2.4041,11.9404,2.4451,2.6779,2.1879,13.4518,1.9591,4.464,1.3197,15.3942,5.629,9.0341,3.7154,9.508,7.3468,7.9552,7.8511,3.6261,1.608,4.5349,,,PD,0.082464,PD,,PD,0.37259,3.5969,3.9902,0.90835,10.0974,1.5392,0.4039,2.9337,2.955,51.8282,16.4401,200.8583,3.9431,4.3694,1.8827,2.0144,3.914,8.2826,2.1321,3.5663,0.60306,6.7388,12.6789,15.111,7.902,2.2049,4.4117,1.9852,16.8627,5.235,3.5838,1.0278,2.535,8.5576,15.2169,2.6892,4.3794,3.7502,1.6204,1.2761,4.1385,11.006,3.2396,2.2728,11.6286,2.4746,2.4144,1.9329,13.0812,2.0759,4.2185,1.2941,14.1342,6.041,7.8728,3.7722,9.6902,7.1921,7.6634,8.2104,3.5695,1.4814,4.4356,,,,,,,,,,,,,,,60,,,,76
+3119,1.8875,2.4412,,60-69y,Other,,,18.4809,4.9369,2.7189,2.237,1.3107,ppmi,,,M,,0.52643,5.1478,4.921,0.96084,9.8902,1.761,0.42781,3.4481,3.0971,49.4687,16.6046,231.5694,4.4344,4.7482,1.9734,2.0475,3.6309,8.4811,2.2152,3.4513,0.60693,6.8159,12.9263,17.4559,7.9746,2.5178,5.2019,1.9496,21.8087,6.3502,4.2154,1.0548,2.7703,7.7546,14.3614,4.0312,4.9009,3.0725,1.5532,1.5628,4.9303,12.6591,3.6848,2.7491,12.2317,2.501,2.5847,2.6411,13.9538,2.442,5.1217,1.3367,14.2829,5.9972,9.9574,3.776,12.9913,7.8767,9.2882,8.3694,3.776,1.9511,4.9043,,,PD,0.09198,PD,,PD,0.49395,4.4402,4.3621,0.93129,10.1642,1.9574,0.46159,3.6926,3.2483,48.0581,15.9817,235.9989,4.0001,5.4285,2.0821,1.7936,4.026,8.3642,2.2911,3.5656,0.66434,7.1901,12.9704,15.5257,8.8843,2.2689,5.4693,2.1432,19.8734,5.249,4.1051,1.1349,2.6781,8.9824,15.2937,3.2818,4.7019,2.9925,1.4474,1.5431,4.5085,12.5871,3.3245,2.6,10.7229,2.6305,2.4748,2.3554,13.2733,2.267,4.8371,1.2879,15.0061,6.3006,9.0091,4.878,11.0818,8.0391,9.0269,9.0407,3.1111,1.7375,4.7043,,,,,,,,,,,,,,,64,,,,77
+3120,0.67058,1.642,,50-59y,Other,,,17.5787,4.2583,2.4945,2.0968,0.79881,ppmi,,,F,,0.41014,3.952,3.7444,0.80558,8.2381,1.3728,0.35861,3.5075,2.8264,45.0181,15.4153,214.6363,3.679,4.7088,1.5306,2.0223,3.472,6.6893,1.9171,2.7899,0.30358,5.8035,9.4219,6.6663,7.396,2.271,4.4203,1.6372,16.8077,5.5934,3.544,1.1308,2.492,6.3007,11.8856,3.4969,3.8851,3.0298,1.5713,1.4178,4.0633,9.9293,2.8691,1.9558,11.5243,2.2183,2.102,1.8573,12.3292,1.9299,4.0122,1.0612,14.161,4.9672,7.8124,4.0994,9.8882,6.4742,7.7303,6.5241,3.984,1.632,4.6053,,,PD,0.074321,PD,,PD,0.36991,3.5462,3.5347,0.81193,8.2139,1.492,0.36653,3.532,2.867,45.7917,15.2342,217.0027,3.5057,5.3143,1.5896,1.7711,3.5707,7.2256,2.0012,2.9775,0.33701,6.2354,10.5079,6.1097,7.6587,2.0332,4.3277,1.5421,16.2748,5.0738,3.3944,1.0159,2.4695,6.7721,11.4314,2.9004,4.0888,2.915,1.4647,1.3972,3.6676,10.6159,2.6274,1.9508,10.458,2.3258,1.9989,1.7059,13.069,1.8533,3.8771,0.98215,12.5062,4.5743,7.4413,4.71,9.3159,6.1776,7.2638,6.8822,3.11,1.4372,4.3879,,,,,,,,,,,,,,,50,,,,78
+3122,1.9132,1.6613,,60-69y,Other,,,19.6257,4.8433,2.5366,2.3404,1.4009,ppmi,,,M,,0.43002,4.3522,4.4608,0.84057,8.7644,1.5267,0.41261,3.0523,3.2267,48.0129,17.079,215.8341,3.9361,4.603,1.6177,2.0019,3.4497,7.4805,1.9981,3.174,0.55921,6.1803,11.6854,13.2259,7.628,2.4002,4.532,1.6551,18.8263,6.2438,3.9894,1.2345,2.5356,7.0455,13.7589,3.0892,4.3923,3.8332,1.5989,1.369,4.3926,10.2298,3.2706,2.2841,11.9435,2.0589,2.6147,2.1846,13.1935,1.7479,4.1838,1.3288,14.803,5.5208,8.995,3.3561,10.8925,6.9147,7.967,7.3417,3.8246,1.4955,4.7922,,,PD,0.073865,PD,,PD,0.39557,3.6335,4.4577,0.84862,10.4969,1.6027,0.42085,3.1572,3.5103,48.648,17.5749,223.4708,3.6025,4.6276,1.6896,1.9011,3.7402,7.4883,2.0164,3.3964,0.55865,6.9341,11.3882,12.266,8.0405,2.2364,4.4825,1.6843,19.797,5.6869,3.7287,1.0227,2.6246,8.008,14.3084,2.891,4.6216,3.3805,1.6833,1.3424,3.9737,10.3755,2.9919,2.3361,10.9624,2.0003,2.4553,2.0369,13.0686,1.9034,4.1783,1.2636,14.6412,5.5636,7.902,4.1661,9.784,7.0207,7.9412,7.7896,3.5404,1.4371,4.5909,,,,,,,,,,,,,,,62,,,,79
+3123,1.7381,2.2503,,60-69y,Other,,,19.0551,5.4321,2.9724,2.4558,1.5733,ppmi,,,M,,0.47885,4.2647,4.7819,0.91441,9.7399,1.5505,0.43502,3.0608,3.3788,52.7102,17.2639,231.3049,4.8278,4.8525,1.8465,2.3221,4.2907,7.8939,2.4093,3.227,0.89502,6.5872,11.4283,25.8664,7.7531,2.5588,4.6671,2.091,20.2859,6.4112,4.2769,1.3822,3.3525,7.0907,14.4132,3.304,4.5404,3.5629,1.7014,1.3389,4.465,11.7876,3.2999,2.6837,14.8165,2.9611,2.6223,2.4611,14.5535,2.4129,4.6442,1.3906,15.0311,5.665,9.9944,3.563,11.3516,8.0976,7.9954,8.1852,4.235,1.9355,4.7723,,,PD,0.074011,PD,,PD,0.42639,3.7156,4.3447,0.89957,12.0879,1.5505,0.43159,3.3431,3.4087,54.153,16.6984,231.4459,4.6634,5.2784,1.8249,2.0775,4.3978,8.5198,2.268,3.4747,0.93875,6.8065,11.0701,24.4469,8.9125,2.2155,4.5325,1.9376,17.6624,5.834,3.7895,1.4968,3.3063,8.2897,14.4417,3.3777,4.9193,3.2319,1.6249,1.3761,4.0506,11.6846,3.0991,2.6135,12.0054,2.9716,2.5812,2.3438,13.8576,2.5361,4.3832,1.2842,15.462,5.5457,9.3911,4.7086,12.4481,8.9077,7.9717,8.4852,3.4354,1.752,4.5825,,,,,,,,,,,,,,,69,,,,80
+3124,0.95822,1.6699,,50-59y,Other,,,21.707,4.8513,2.8117,2.3768,0.98707,ppmi,,,M,,0.53319,4.6078,4.1326,0.88436,8.9449,1.77,0.42871,3.713,3.1983,50.0655,19.1113,273.9907,3.9467,5.2859,1.6559,1.9546,4.0992,7.4974,2.1355,3.2708,0.45117,6.2562,10.894,7.6123,7.8954,2.6551,4.3482,1.8906,21.329,5.9304,4.3362,1.213,3.2309,7.392,13.77,3.5114,4.6539,3.5355,1.5472,1.6314,4.3425,11.5911,3.2967,2.3175,12.0207,2.3397,2.6205,2.3386,15.5645,2.1497,4.9012,1.3257,16.0191,5.8725,8.4833,3.7222,11.9773,7.2985,9.4611,7.3217,3.7516,1.702,5.3206,,,PD,0.075799,PD,,PD,0.46779,4.167,3.9475,0.90714,10.473,1.7632,0.43586,3.6445,3.2448,49.7158,19.1388,275.3125,3.5583,5.1751,1.7141,1.9104,4.2,7.5033,2.2298,3.5633,0.67101,6.447,11.1654,7.1857,8.2317,2.3333,4.5411,1.824,19.0813,5.1751,3.9177,1.0824,2.9225,8.2498,14.2078,2.9402,4.6135,3.2867,1.6076,1.6558,3.9729,11.2768,2.9867,2.2987,10.4403,2.4755,2.1293,2.0768,12.2193,2.0495,4.5622,1.2678,15.9939,5.5502,7.831,4.6515,12.0183,7.5276,8.9333,7.5412,3.6688,1.5513,5.1217,,,,,,,,,,,,,,,57,,,,81
+3125,1.1526,2.4799,,-50y,Other,,,19.4166,4.7363,2.3941,2.4962,1.1794,ppmi,,,M,,0.45843,4.2019,4.2713,0.8386,9.5244,1.6788,0.40844,3.8733,3.0751,51.3603,17.5547,238.061,4.1496,4.9541,1.6768,2.0315,3.8271,8.1112,1.9175,2.9871,0.54037,7.6825,11.3366,19.2373,8.1457,2.6009,4.7647,1.7204,19.9952,6.8569,3.8247,1.2485,2.8588,6.8606,13.3974,4.482,5.1239,3.765,1.7168,1.5814,4.2693,10.7773,3.1813,2.2963,12.5177,2.613,2.6244,2.2928,14.416,2.0951,4.8141,1.2247,16.3686,5.495,9.7435,4.158,11.2441,7.5363,8.5816,8.1279,4.6113,1.7651,5.099,,,PD,0.073932,PD,,PD,0.42823,3.6644,3.9863,0.85064,11.1244,1.5997,0.417,3.5953,3.1266,52.6598,17.2323,244.8658,4.1895,5.3589,1.8135,2.1154,3.9477,8.1585,1.8658,3.0542,0.49304,6.9186,12.1246,16.535,8.7301,2.1648,4.3678,1.6599,19.3091,5.3911,3.5732,1.1194,2.5977,8.2144,14.5965,3.0981,4.9421,4.1839,1.6756,1.5718,3.9513,11.4857,2.9762,2.2833,11.3056,2.4559,2.4024,2.0124,14.0301,2.0618,4.6472,1.1277,14.9893,5.953,8.872,4.8399,11.448,7.4026,8.2907,8.4012,3.9138,1.5212,4.8995,,,,,,,,,,,,,,,46,,,,82
+3126,2.2181,3.3313,,60-69y,Other,,,20.5656,4.7042,2.9486,2.3212,1.6742,ppmi,,,M,,0.4605,4.3376,4.5454,0.9233,9.7386,1.5382,0.41047,3.761,3.2515,51.2819,17.1783,232.9752,4.0326,5.2293,1.8233,2.0395,3.9655,7.1177,2.2284,3.2446,0.75455,7.1935,10.9736,23.1778,7.9562,2.2971,4.596,1.7872,19.7575,6.6895,4.0672,1.0646,2.5209,7.2692,13.2063,4.0121,4.4769,3.7406,1.4214,1.322,5.0948,12.1229,3.2834,2.3962,11.8826,2.556,2.3438,2.1789,13.5765,2.335,4.6638,1.2044,15.7336,5.2068,9.8444,3.791,12.484,6.5463,8.4383,7.7401,3.9951,1.7635,4.9351,,,PD,0.08109,PD,,PD,0.42553,4.0557,4.5992,0.9449,10.6138,1.7588,0.42167,3.965,3.4808,52.6894,17.1596,238.0025,3.7939,5.4495,1.847,2.1136,4.3619,7.8656,2.2835,3.5371,0.8375,7.0872,11.7595,20.2811,8.7812,2.1462,4.4221,1.7977,19.3877,5.3689,3.8427,1.0317,2.5114,7.8021,14.0971,3.2793,4.5677,4.0484,1.4939,1.3398,4.5256,12.1109,3.1665,2.3262,10.0459,2.5789,2.3237,1.9872,12.0056,2.0461,4.4847,1.1385,15.0877,5.2172,8.291,4.3866,11.7827,7.2348,8.1237,8.0384,3.4489,1.5233,4.7456,,,,,,,,,,,,,,,64,,,,83
+3127,1.019,1.239,,-50y,Other,,,20.1067,4.5883,2.6052,2.1744,0.91298,ppmi,,,F,,0.48653,4.824,4.685,0.8522,10.582,1.6505,0.43806,4.1936,3.0771,49.2801,17.4949,239.9988,4.1771,5.8447,1.6407,2.2031,3.6931,7.9289,2.289,3.33,0.49833,7.5066,12.7686,10.3527,8.3215,2.7889,4.8068,1.9859,18.6533,7.6108,4.3085,1.1281,2.783,7.0611,15.3698,3.8337,4.7611,3.5697,1.8363,1.5167,4.9159,11.8504,3.3072,2.4502,12.535,2.4857,2.754,2.4796,13.4414,1.9678,4.9023,1.2859,14.1507,5.3306,9.8402,4.8732,11.9,7.2567,8.4736,7.7862,4.0486,1.7294,4.8792,,,PD,0.085161,PD,,PD,0.4309,4.1026,4.2134,0.89386,11.0393,1.8636,0.44848,4.6201,3.134,49.6465,16.6663,244.7413,3.8637,5.7771,1.7958,1.9889,4.2771,8.3479,2.4196,3.5512,0.48503,8.1048,12.6605,9.05,9.2543,2.5103,4.5845,1.9714,17.8574,5.9672,4.2652,1.229,2.9412,8.0366,15.3021,3.7546,5.0152,3.5863,1.7317,1.4758,4.4604,11.8086,3.0082,2.478,10.4094,2.3946,2.6141,2.2439,13.0784,2.1757,4.6827,1.2534,14.2675,5.2989,8.6033,4.8544,11.6411,8.2325,8.2047,7.8079,3.7149,1.6998,4.6702,,,,,,,,,,,,,,,49,,,,84
+3128,0.8689,1.6593,,60-69y,Other,,,20.9996,4.6971,2.7764,2.6304,1.1381,ppmi,,,F,,0.39032,3.7697,3.843,0.79322,8.8353,1.4154,0.36921,3.2023,2.6502,48.5099,16.6899,192.3652,3.7609,4.5365,1.6226,1.8301,3.2018,7.0553,1.8297,2.8098,0.3683,6.2933,10.5083,10.3407,7.2683,2.1566,3.8146,1.5613,17.8766,6.3994,3.5695,0.9102,2.1209,5.7918,12.6909,3.3239,4.2591,3.1642,1.3098,1.2984,3.9127,9.823,3.1068,2.1369,11.206,2.4438,2.1467,2.0641,11.4935,2.0257,4.1113,1.1239,12.8358,4.8154,9.2184,3.9742,10.3354,7.0374,8.0981,7.3195,3.7367,1.5085,4.5823,,,PD,0.077314,PD,,PD,0.36973,3.4641,3.6973,0.79559,10.0916,1.4984,0.393,3.2811,2.7159,48.4447,16.0499,197.0715,3.4217,4.8493,1.6886,1.7084,3.4432,7.1883,1.8017,2.9033,0.4612,6.6782,10.2749,8.3217,7.753,1.9965,3.8961,1.4621,16.6189,5.315,3.3838,1.0802,2.2934,6.3109,12.4556,2.8402,4.3242,2.9283,1.3324,1.2225,3.5505,9.9158,2.9094,2.0594,9.364,1.8612,2.0807,1.83,11.6464,1.8702,3.9566,1.0862,12.4788,4.7446,7.8878,4.3596,10.0586,6.9149,7.8505,7.5408,3.1554,1.4184,4.3749,,,,,,,,,,,,,,,60,,,,85
+3129,1.281,1.8713,,50-59y,Other,,,22.6476,5.3342,3.0605,2.4583,0.98863,ppmi,,,M,,0.50497,5.5908,4.6535,0.96454,8.9866,1.8195,0.44174,4.0806,3.0051,49.9473,20.3164,283.046,4.4461,5.0607,1.8329,2.0646,4.3429,7.471,2.1841,3.6517,0.5632,6.8072,11.9169,9.6564,7.9514,2.7724,5.3055,2.0492,21.4723,6.2469,4.2462,1.4046,3.2357,8.2653,14.925,4.3042,4.6162,3.3253,1.6312,1.7183,4.9266,11.7111,3.3659,2.6917,12.7725,2.6061,2.754,2.5523,14.6711,2.146,5.2239,1.3753,15.948,6.1708,10.1087,3.9487,10.6991,7.3845,9.5949,8.2654,3.9517,1.6831,5.7222,,,PD,0.088469,PD,,PD,0.42138,5.0737,4.4098,1.01,9.5308,1.8968,0.43938,3.949,3.0801,50.7608,19.2596,286.6676,4.271,5.286,1.9558,1.9764,4.806,7.5715,2.2672,4.0822,0.56907,6.8585,12.1216,8.9253,8.5906,2.481,5.2566,2.0391,20.9952,5.6472,3.9649,1.1095,3.1646,8.7542,14.2668,3.6713,4.5414,3.2865,1.6075,1.8021,4.5942,12.117,3.342,2.5304,10.1528,2.7132,2.4694,2.237,12.9037,2.2109,5.0191,1.2232,14.8503,5.8225,7.7621,5.0957,10.1256,7.4721,9.2825,8.8211,3.4285,1.6634,5.5089,,,,,,,,,,,,,,,56,,,,86
+3130,0.8984,1.9141,,-50y,Other,,,21.021,4.8496,3.0958,2.5353,1.0582,ppmi,,,M,,0.47167,4.7765,4.5442,1.0716,11.321,1.6279,0.4492,4.4783,3.1967,52.7958,17.3614,245.5342,4.9785,6.1114,1.9619,2.2042,3.8469,8.4449,2.3271,3.4313,0.54228,7.9945,13.5897,7.461,9.6713,2.6269,5.4692,2.0091,20.4432,8.3624,4.2957,1.3182,2.7791,7.4851,16.3978,4.1668,5.3903,3.3595,1.6505,1.4541,5.5628,14.3571,3.7643,2.5683,15.8343,3.2452,2.6934,2.5079,13.7512,2.7108,4.9886,1.371,15.1539,5.7574,11.1768,4.8813,14.3212,8.2076,9.1936,8.3377,4.2081,1.9669,5.2745,,,PD,0.089589,PD,,PD,0.42681,4.368,4.4065,1.0636,11.9208,1.7527,0.46066,4.475,3.2716,54.0578,17.174,253.4855,4.6681,6.3736,2.037,2.0945,4.0809,9.4521,2.334,3.6953,0.43357,8.5921,14.3643,6.56,10.3504,2.4009,5.249,1.9521,18.8721,6.4472,4.0549,1.2562,2.7401,8.3174,16.4942,3.3506,5.4918,3.6618,1.6161,1.4904,5.292,14.3918,3.6927,2.5812,14.4812,3.0586,2.5564,2.3482,14.4958,2.3968,4.7848,1.3233,15.4696,5.9637,9.8,5.2695,13.9509,8.3852,9.1006,8.8817,3.4525,1.8001,5.1414,,,,,,,,,,,,,,,44,,,,87
+3131,1.6729,2.4157,,70-79y,Other,,,23.7805,5.0355,2.6659,2.4311,1.7072,ppmi,,,M,,0.48977,4.0219,4.4521,0.78959,8.7621,1.4418,0.39678,3.8962,3.4975,49.6354,20.4238,257.6211,4.0221,4.8054,1.5218,2.0322,3.7762,7.0601,2.1932,2.9275,0.63807,6.9247,10.4145,28.99,8.1417,2.2218,4.0838,1.7679,18.2191,6.2381,4.1012,1.0693,2.5966,6.5637,12.2638,4.3349,4.8829,3.2864,1.352,1.7328,4.3633,11.0538,3.1304,2.3969,10.3251,2.3197,2.4216,2.1843,11.5781,1.8305,4.3528,1.3737,13.8109,5.0364,7.9541,3.7132,11.3205,6.0493,9.1297,7.295,3.7642,1.704,5.6328,,,PD,0.090388,PD,,PD,0.45392,3.3501,4.2201,0.81938,8.9941,1.4831,0.40182,3.8351,3.6427,50.857,19.8766,262.6667,3.8838,5.0787,1.5645,1.8675,3.9204,7.6091,2.0387,3.2193,0.67826,6.893,11.0137,24.6826,9.2525,2.0298,4.1277,1.7619,16.761,4.9348,3.5866,1.1348,2.4766,7.6888,12.7086,3.3259,4.6264,3.3354,1.4276,1.7592,4.1428,10.7968,3.0624,2.3586,9.236,2.2402,2.3473,1.8936,11.1142,1.6874,4.1226,1.2162,12.8955,5.0551,6.67,4.5734,9.5303,5.9947,8.8242,7.5109,3.2114,1.4403,5.4525,,,,,,,,,,,,,,,71,,,,88
+3132,0.95694,1.8165,,50-59y,Other,,,19.5542,4.2205,2.5161,2.0401,0.8883,ppmi,,,M,,0.47423,4.3282,4.1705,0.90417,9.2299,1.6087,0.40892,3.0762,2.875,45.2878,16.772,239.5827,3.8781,4.6663,1.803,2.1792,3.6665,7.215,1.9046,3.2743,0.50144,6.0335,10.864,7.3917,7.6988,2.633,4.7329,1.769,18.5205,6.4451,3.8359,1.4065,2.7594,6.5228,13.6868,3.294,4.3561,3.5958,1.6601,1.4057,4.7795,11.5019,3.3074,2.1843,12.7986,2.4329,2.5482,2.1838,13.5971,1.8555,4.8146,1.2474,14.5025,4.8553,9.3334,3.8007,11.4878,7.0877,8.0335,7.9043,4.4585,1.6305,4.8787,,,PD,0.07934,PD,,PD,0.40922,3.7831,3.8173,0.89906,10.5124,1.5839,0.41037,3.0582,2.9827,44.7649,16.226,245.9409,4.1276,5.232,1.7867,1.8909,3.6164,7.0983,2.0265,3.518,0.61039,7.0351,10.7983,6.8096,8.0419,2.1806,4.5204,1.7083,17.5534,5.948,3.7906,1.1373,2.7483,7.6344,13.8147,3.3155,4.5415,3.3072,1.535,1.4397,4.1676,11.016,2.9455,2.1684,11.096,2.3217,2.4223,1.9136,13.591,1.8965,4.5128,1.2027,14.2955,5.2806,8.272,4.8341,11.7461,7.0576,7.9048,8.1194,3.3207,1.5022,4.7389,,,,,,,,,,,,,,,50,,,,89
+3134,0.81405,1.343,,-50y,Other,,,21.5,4.9743,2.9134,2.331,0.89701,ppmi,,,M,,0.55068,4.8181,4.5222,0.98711,9.4609,1.6322,0.4385,4.0437,3.4903,49.5937,19.071,265.2521,3.8121,4.8579,1.8607,1.8766,3.8831,7.3199,2.3308,3.3072,0.35135,7.1949,10.7264,5.7813,8.2659,2.5346,4.9599,2.034,20.0801,6.5999,4.355,1.015,2.3993,7.4693,14.385,3.8296,4.738,3.0785,1.5853,1.6906,4.7934,11.6061,3.3327,2.3224,12.2086,2.4684,2.5946,2.4698,13.3591,2.1639,5.0355,1.2474,13.9623,5.0977,9.4562,3.584,10.7044,7.9101,9.5914,8.0078,4.2219,1.7319,5.5263,,,PD,0.077519,PD,,PD,0.48198,3.8285,4.0939,1.0376,11.131,1.7404,0.44791,3.7558,3.5338,51.1741,18.7457,267.1616,3.8027,5.2665,2.021,1.9882,4.3021,7.7212,2.1711,3.7053,0.56804,6.8092,10.7999,5.2919,8.744,2.211,4.656,1.8383,18.3121,5.2582,3.9113,0.9958,2.485,8.4415,14.3514,3.1482,4.8494,3.4811,1.5996,1.6335,4.63,11.3193,3.2576,2.4618,10.0952,2.4141,2.2907,2.345,13.2814,2.1222,4.7087,1.0929,14.2039,5.4602,8.2395,4.0683,11.3295,8.4475,9.185,8.7786,3.8565,1.7118,5.3389,,,,,,,,,,,,,,,39,,,,90
+3150,0.80039,1.519,,50-59y,Other,,,16.962,4.4792,2.6889,2.2883,1.032,ppmi,,,F,,0.40361,4.3598,3.9255,0.84087,9.5388,1.5541,0.3686,2.8818,2.5849,45.8861,13.9401,188.5181,3.8027,4.936,1.712,1.8664,3.4394,6.8757,2.0747,2.9848,0.36325,6.4515,10.9143,7.6994,7.7046,2.3359,5.041,1.7781,17.666,6.6143,3.933,0.91013,2.4085,6.635,13.5708,3.3033,4.1416,3.4237,1.4503,1.353,4.2506,10.9438,3.1997,2.2303,10.585,2.1641,2.4275,2.158,10.4417,1.8017,3.8682,1.0919,13.4008,4.8812,9.0557,3.8031,11.1752,6.9037,7.7019,7.4578,3.7828,1.5512,4.3491,,,PD,0.077945,PD,,PD,0.35721,3.6591,3.7112,0.87256,11.1374,1.5943,0.37783,2.8945,2.7319,46.0877,13.4954,190.8785,3.768,5.4704,1.8361,2.0545,3.4285,7.1833,2.0269,3.2093,0.46052,6.5496,10.5813,6.406,7.986,2.0786,4.7486,1.6236,17.5376,5.2354,3.6292,0.89075,2.253,7.2921,13.2783,2.9653,4.1531,3.9122,1.4051,1.297,3.9605,11.0405,3.0025,2.3427,10.0313,2.2542,2.0206,2.0808,11.0104,1.9596,3.6866,1.0633,13.4714,5.3045,8.6017,4.5094,11.1289,7.3817,7.511,7.5109,3.5892,1.6041,4.1723,,,,,,,,,,,,,,,57,,,,91
+3151,0.85079,1.4167,,50-59y,Other,,,16.5866,3.9696,2.2482,1.8874,0.95114,ppmi,,,M,,0.42506,4.2647,3.893,0.88779,9.1434,1.4374,0.36608,2.7921,2.9328,42.4224,13.7245,223.998,3.6812,4.1895,1.6796,1.8964,3.563,6.8759,2.0315,3.1908,0.39535,6.1343,10.9881,10.5702,7.1504,2.4353,4.5412,1.6997,18.9989,6.3505,3.8485,1.0415,2.7587,6.6747,14.1278,3.2649,4.063,3.6703,1.478,1.321,4.4168,10.5386,3.1836,2.0691,12.5258,2.3447,2.3385,2.0385,13.1737,1.9398,4.0435,1.0627,14.9598,5.0783,9.148,3.5679,10.3449,7.1884,8.0232,8.0032,3.9079,1.4281,4.3953,,,,0.070595,CN,,HC,0.36887,3.4925,3.5989,0.88805,11.5811,1.7248,0.37535,2.9405,3.0193,42.3452,13.332,225.5102,3.5444,4.4367,1.7717,1.549,3.7251,7.4768,2.0686,3.4143,0.44342,6.9591,12.0993,9.7234,7.6874,2.1812,4.5275,1.6387,17.7666,5.1265,3.8421,1.0196,2.5159,7.4385,14.9175,3.0237,4.3427,3.5442,1.3992,1.2804,3.9932,10.1836,3.0759,2.0862,10.6928,2.06,2.2192,1.8015,13.33,1.8595,3.9459,1.0447,15.1085,4.7723,8.7118,4.3212,10.5655,7.6801,7.8628,7.4222,3.2421,1.3168,4.1871,,,,,,,,,,,,,,,58,,,,92
+3154,1.4327,1.5395,,70-79y,Other,,,17.906,4.2911,2.4947,2.174,0.98163,ppmi,,,F,,0.45316,4.794,4.3275,0.90625,9.5313,1.5832,0.38141,3.4816,2.9893,44.2825,14.1056,215.4722,3.967,5.1837,1.7516,2.0118,3.4792,7.6885,2.1119,3.2982,0.51079,6.8682,11.8731,13.7176,8.1326,2.3601,4.6181,1.8767,19.9684,6.7936,4.0257,1.2369,2.9843,7.4101,14.1897,3.6084,4.4859,2.9253,1.5149,1.304,4.5707,11.3732,3.4325,2.3469,12.8196,2.6655,2.427,2.3011,13.2912,2.0084,3.8909,1.2089,14.6121,5.6495,9.8788,4.1118,13.285,7.2584,8.1531,7.9046,3.9471,1.6033,4.506,,,PD,0.078988,PD,,PD,0.408,4.4656,4.0812,0.89471,11.5342,1.7024,0.39142,3.8075,3.0043,45.1167,13.9888,217.7962,4.2319,5.6733,1.6729,1.9172,3.9502,7.7839,1.9672,3.4705,0.42057,7.5022,11.8287,12.5536,8.6397,2.1595,4.776,1.7618,18.8631,6.1648,3.7109,1.385,3.0048,8.1095,14.82,3.1898,4.7821,3.3865,1.5248,1.3159,4.0391,11.3464,2.9965,2.2141,11.9972,2.3361,2.3222,1.9881,12.7201,1.9119,3.6887,1.177,15.122,5.1029,8.6415,5.0499,11.7611,7.7612,8.0204,8.0108,3.286,1.5208,4.2555,,,,,,,,,,,,,,,73,,,,93
+3156,2.0259,1.9284,,70-79y,Other,,,17.8122,4.2917,2.6486,2.151,2.145,ppmi,,,M,,0.4241,4.6086,4.4251,0.86599,9.377,1.4131,0.38363,2.7773,3.235,43.6126,14.0185,196.0676,4.1945,4.0996,1.6877,1.8432,3.6024,6.9776,2.0118,2.9024,1.0378,6.1169,10.5039,39.136,6.8285,2.139,4.7337,1.74,18.3859,6.6928,3.7506,1.0754,2.6518,6.9863,12.7842,3.3134,3.8852,3.1012,1.4036,1.4475,4.2936,9.8174,3.0819,2.6143,10.6947,2.4014,2.2345,2.6496,12.689,2.1136,4.1609,1.2665,13.9979,4.8882,8.0562,3.8675,9.538,7.3971,7.6558,6.8575,3.5781,1.7022,4.6871,,,,0.073238,CN,,HC,0.35624,3.9659,4.2012,0.829,10.8329,1.4615,0.3871,2.8704,3.3678,43.3311,13.7912,204.9799,4.182,4.2014,1.5762,2.0513,3.8098,7.1024,2.1431,3.214,0.958,6.0722,11.251,28.251,7.7126,1.9926,4.2661,1.7595,17.285,5.0295,3.4734,0.98482,2.4848,7.6196,13.6268,2.875,3.8345,3.4791,1.5056,1.4066,3.9741,9.5595,2.7358,2.6498,10.3936,2.5432,1.996,2.3178,12.1785,2.231,4.1047,1.2043,14.5332,5.2203,8.3283,4.0556,10.3419,7.8247,7.5822,7.1166,3.3371,1.7959,4.328,,,,,,,,,,,,,,,70,,,,94
+3157,0.99654,1.5299,,60-69y,Other,,,14.76,4.4975,2.2866,2.1456,1.1895,ppmi,,,F,,0.37969,3.9796,4,0.76003,8.2411,1.3345,0.34957,2.7908,2.3724,42.0647,12.4414,170.075,3.561,3.8734,1.4733,2.0043,3.0063,6.9905,1.805,2.6207,0.36666,5.6264,10.4006,10.6284,6.7199,2.2279,3.7224,1.6037,16.6032,5.7356,3.47,1.1942,2.7583,6.1605,12.4403,2.7596,3.8715,3.2049,1.563,1.042,3.7349,9.5913,2.7234,1.9833,11.9373,1.7795,2.288,2.1879,13.0309,1.6018,3.9002,1.0738,13.0289,5.0016,7.48,3.3047,10.3562,6.7749,6.8513,7.7918,3.4145,1.3947,3.7498,,,,0.063483,CN,,HC,0.34479,3.8251,3.677,0.72494,9.3802,1.5896,0.34687,2.8538,2.456,42.0621,12.0017,174.3666,3.3372,4.1222,1.5293,1.8199,3.348,6.8228,1.9765,2.744,0.42537,6.0619,10.1541,7.825,7.2863,1.9958,3.9891,1.595,16.6049,4.6914,3.6031,0.97251,2.2452,6.8328,12.7152,2.6936,3.9868,3.322,1.4206,1.044,3.4468,9.3015,2.5916,1.816,10.6049,1.7121,2.0926,1.7204,11.1219,1.6733,3.7513,1.0549,12.7279,4.765,7.5651,4.0028,10.5998,7.2457,6.6567,7.3822,3.189,1.2073,3.6177,,,,,,,,,,,,,,,64,,,,95
+3160,2.9127,3.0515,,+80y,Other,,,19.2445,5.2125,2.6461,2.4108,2.732,ppmi,,,M,,0.43981,5.2804,4.5167,0.85274,9.3151,1.4869,0.39331,3.3228,3.1844,47.1547,15.4782,225.6543,4.0713,4.8883,1.5484,1.9906,3.5194,7.8527,2.0913,3.0237,1.3823,6.3908,11.4341,47.8738,8.321,2.3297,4.3501,1.9328,17.2535,6.8354,3.7218,1.1641,2.5095,7.436,12.7551,3.7791,4.327,3.2814,1.4554,1.6116,4.2228,10.2725,3.2405,2.6125,11.9765,2.3151,2.2958,2.5541,12.4812,2.2176,4.1786,1.397,13.859,5.309,8.0155,3.528,10.1031,7.0166,8.1317,7.4322,3.7431,1.714,5.0135,,,,0.064185,CN,,HC,0.38492,4.6436,4.1375,0.84744,10.5606,1.7509,0.4033,3.5622,3.3887,47.1233,15.336,232.4103,3.7087,5.1657,1.5887,1.79,3.8091,8.0911,2.0893,3.2161,1.2135,7.2212,11.3716,44.9136,8.7878,2.156,4.1877,1.9926,16.5204,5.6381,3.5897,1.2071,2.6349,7.8081,13.3617,3.4375,4.864,2.9078,1.3387,1.5863,3.8273,11.0534,2.858,2.6607,9.2811,2.2527,2.0379,2.3293,13.0665,1.9668,4.2493,1.2691,13.9909,5.3126,7.747,4.1368,10.1093,7.2476,8.2817,7.4894,3.3212,1.5466,4.8705,,,,,,,,,,,,,,,80,,,,96
+3161,1.1919,3.1583,,-50y,Other,,,20.011,5.0818,2.782,2.3801,1.6801,ppmi,,,M,,0.50996,5.3443,4.4239,0.9863,9.6448,1.6474,0.419,3.6403,3.8028,55.5255,17.7464,237.1598,4.4853,5.0663,1.8372,2.1395,3.8452,8.1427,2.2467,3.5901,0.62463,7.4176,11.8587,18.2726,8.3042,2.7614,5.2184,2.0324,20.0497,6.1759,4.2045,1.3458,2.9043,7.4737,14.5036,3.8111,5.2235,3.5553,1.7723,1.5532,4.8362,11.6278,3.4681,2.4814,12.0511,2.9234,2.8676,2.3361,12.9826,2.7938,4.3148,1.3259,15.1947,5.7969,9.5179,3.8771,11.1358,8.256,8.5898,7.9404,4.8831,2.0163,5.0695,,,,0.077655,CN,,HC,0.46374,4.3402,4.2953,0.96322,11.7986,1.8516,0.42114,3.7224,3.9294,57.3077,17.3123,240.1796,4.566,5.2812,1.8591,2.0952,4.1471,8.5205,2.1279,3.6436,0.57184,7.5877,12.1435,16.0717,9.0664,2.523,4.8906,1.9428,20.0422,5.89,3.9136,1.2755,2.9132,8.6351,15.2957,3.3564,4.8752,3.5913,1.6843,1.543,4.6616,11.8898,3.2481,2.2724,10.4188,2.679,2.5944,2.1063,13.6536,2.3634,4.2011,1.2511,16.0961,5.6376,8.7124,4.641,11.5275,8.1161,8.1097,8.0675,3.8071,1.7271,4.8177,,,,,,,,,,,,,,,45,,,,97
+3165,1.0807,1.2622,,50-59y,Other,,,17.6445,4.4689,2.439,2.0949,1.0446,ppmi,,,F,,0.44775,4.348,4.1532,0.8634,9.5278,1.6009,0.34732,3.3165,2.9945,43.0856,14.7351,225.9342,3.7364,4.6931,1.6769,1.9837,3.4644,7.4041,1.8123,3.0051,0.36033,6.2877,11.0047,9.5091,7.8301,2.5839,4.3447,1.7411,18.1184,6.3302,3.9146,1.2245,2.4065,6.5568,13.5452,3.4204,4.1942,3.8203,1.6632,1.4839,4.5416,11.0877,3.2729,2.302,12.4341,2.2369,2.6461,2.2432,12.7197,1.8087,4.2337,1.007,14.9752,4.9014,8.3063,3.8209,10.2949,7.1996,7.9649,7.8776,4.2717,1.471,4.5918,,,,0.071382,CN,,HC,0.40045,3.8894,3.7804,0.86373,10.0598,1.8317,0.36879,3.4245,3.1066,43.8051,14.6393,230.0943,3.8394,4.3157,1.7333,1.7703,3.7958,7.6575,2.0862,3.3125,0.44037,6.8742,11.5227,7.9437,7.9847,2.2795,4.4274,1.7153,18.3196,5.6796,3.8579,1.0085,2.4564,7.3216,14.1266,3.121,4.26,3.2485,1.5269,1.5245,3.9854,10.4012,2.9429,2.3865,11.62,1.9801,2.2613,2.1095,13.9021,1.646,4.1766,1.0567,14.6075,5.1205,7.7058,4.3611,10.4188,7.0178,7.7075,7.7103,3.5163,1.4631,4.3785,,,,,,,,,,,,,,,59,,,,98
+3166,1.0807,1.6578,,50-59y,Other,,,18.3694,5.6486,2.7201,2.3106,1.3517,ppmi,,,M,,0.45536,4.9427,4.6559,0.89637,9.1655,1.6719,0.37928,4.0148,2.7761,48.6678,15.9866,239.8249,5.2507,5.0566,1.6827,2.2151,3.9609,8.4548,2.1867,3.0958,0.44919,7.9195,12.7431,12.4486,8.7849,2.5625,4.8876,1.9925,20.0461,6.5503,4.127,1.5258,3.1632,7.2496,15.4644,4.7998,5.1084,3.1828,1.7097,1.3749,5.0473,12.0233,3.2591,2.6585,13.5876,3.1132,2.5285,2.3733,14.3854,2.8366,4.171,1.2206,15.2461,5.5922,11.1693,4.0807,11.3086,8.242,8.3107,8.1892,4.0731,2.032,4.5097,,,PD,0.070456,PD,,PD,0.38105,4.113,4.4231,0.90773,11.5108,1.9074,0.38381,4.3113,2.8049,48.6226,16.2085,241.9388,4.6108,5.9216,1.7626,2.1703,3.9433,8.1358,2.145,3.3272,0.6906,8.5192,13.5349,10.1212,9.3953,2.3449,4.7741,1.9089,18.4982,6.0819,3.846,1.1282,2.6829,8.4191,15.7412,4.4857,4.9706,3.8129,1.654,1.3417,4.6361,12.6758,3.0103,2.6022,11.4435,2.7983,2.3128,2.3243,13.0162,2.4736,4.1314,1.1643,15.4882,5.5747,9.192,4.8698,11.7503,8.0997,8.0623,8.7089,3.7812,1.8931,4.2501,,,,,,,,,,,,,,,59,,,,99
+3167,0.73397,1.7953,,50-59y,Other,,,19.402,4.5465,2.5742,2.149,0.90038,ppmi,,,F,,0.46835,4.9137,3.8275,0.89153,10.2307,1.6684,0.36899,3.2956,3.0852,48.9581,16.3048,215.2042,3.7842,4.795,1.7475,1.718,3.7508,7.7851,2.1836,3.1647,0.31942,7.0259,10.789,8.8777,7.5338,2.5162,4.9838,1.9835,21.0771,6.4724,4.1298,1.1864,2.6138,7.1801,13.4553,3.5848,4.6179,3.0852,1.473,1.4346,4.6073,11.1314,3.2999,2.1094,12.4446,2.4949,2.5893,2.1708,13.8444,2.1294,3.9914,1.1114,15.3697,5.3836,9.5095,4.1741,11.6357,7.2636,8.3918,7.6846,3.772,1.4436,4.7494,,,PD,0.065707,PD,,PD,0.42983,4.0654,3.6203,0.94607,11.6779,1.9776,0.38479,2.9739,3.2815,48.6564,15.6758,220.6834,4.102,4.7735,1.8792,1.9756,4.1276,7.7336,2.2848,3.455,0.51661,6.8629,11.3001,8.5865,8.0546,2.248,4.6855,2.002,20.9287,5.5523,4.1255,1.0147,2.4154,8.4934,14.2555,2.8697,4.2831,3.6395,1.4285,1.3909,4.2992,10.9202,3.0719,2.0496,11.2807,2.0316,2.1955,2.004,13.504,1.7863,3.9087,1.1249,15.2781,5.5559,8.3333,4.4505,12.0914,7.4326,8.2298,7.8126,3.8098,1.4014,4.5545,,,,,,,,,,,,,,,59,,,,100
+3168,1.0503,1.4827,,60-69y,Other,,,17.8069,4.4262,2.5403,2.1214,1.4331,ppmi,,,F,,0.44962,4.7522,4.1913,0.78875,10.6685,1.7387,0.39351,3.0393,2.7327,43.1859,15.6016,217.6146,4.0384,4.4511,1.5628,1.9738,3.905,7.4384,2.2323,2.9169,0.28501,7.0075,11.7219,16.0965,7.1187,2.7624,4.5702,2.0116,19.2922,7.0193,4.3879,1.0766,2.7166,7.1411,15.4167,3.3058,4.0421,3.2224,1.7654,1.411,4.136,10.5451,3.0834,2.4032,11.1519,2.5379,2.7347,2.2799,12.5987,2.2213,3.7572,1.3384,14.8138,5.1119,9.1722,3.723,10.6033,8.3681,8.104,7.53,3.9285,1.5934,4.6511,,,PD,0.081193,PD,,PD,0.39604,4.6529,3.8507,0.80705,11.5461,1.9935,0.39809,3.0864,2.8292,44.2981,15.0106,216.6179,4.1144,4.5995,1.7031,1.8765,3.9418,7.9627,2.2905,3.1109,0.31599,6.5238,11.9237,11.9945,7.4251,2.5798,4.5109,1.951,18.5462,5.2745,4.0607,1.1362,2.7646,7.5891,14.4199,2.8697,4.0861,3.3603,1.6822,1.4234,3.8384,10.5437,2.7411,2.3916,10.606,2.0948,2.4711,2.2242,13.1517,1.9377,3.8042,1.2275,13.4763,4.9706,7.7661,4.2111,11.2707,7.5743,7.803,7.7805,3.5795,1.6747,4.3943,,,,,,,,,,,,,,,63,,,,101
+3169,1.0463,2.1815,,50-59y,Other,,,20.0092,5.3388,2.9181,2.4294,1.1549,ppmi,,,M,,0.45083,4.6257,4.3335,0.90594,10.0147,1.7005,0.40198,3.7517,2.9033,50.2847,17.1633,230.5796,4.1707,5.2031,1.7605,2.086,3.9708,7.5433,2.272,3.2689,0.53194,7.5043,11.3633,11.7432,9.1515,2.6505,5.2035,1.9822,21.4747,7.0533,4.3005,1.2442,2.9479,7.7521,13.6093,4.5532,5.2208,3.6563,1.6698,1.5185,5.157,11.3207,3.5529,2.2956,11.8293,2.3051,2.6657,2.2361,14.4186,2.2697,4.1018,1.1969,16.987,6.0288,9.0887,4.194,10.3871,7.1114,8.694,7.8193,4.5386,1.7984,4.9078,,,,0.080858,CN,,HC,0.41113,4.0161,4.1938,0.87444,10.0918,1.7196,0.40502,3.8414,2.9756,51.556,16.7597,238.5174,3.7842,6.005,1.7813,2.2477,4.1668,7.637,2.2595,3.3199,0.4667,7.5713,11.462,8.2525,9.0221,2.3976,5.1216,1.9093,20.37,5.7898,3.8021,1.2183,2.7573,9.1004,14.5919,3.9159,5.1486,3.862,1.692,1.4504,4.5393,10.9757,3.1961,2.2889,11.731,1.9014,2.6044,2.0919,14.7009,1.9847,4.0662,1.1287,16.8253,6.116,8.263,5.7429,10.676,7.6252,8.3841,8.428,4.118,1.5877,4.6704,,,,,,,,,,,,,,,57,,,,102
+3171,1.2718,1.5713,,60-69y,Other,,,19.5901,5.3182,2.8109,2.395,0.99628,ppmi,,,M,,0.42584,4.5873,4.1517,0.95841,8.4368,1.4908,0.38261,3.0918,2.9452,50.3865,16.6657,226.7997,4.2021,4.9384,1.834,2.0508,3.5164,7.9214,1.8362,3.3563,0.60449,6.3698,12.5646,12.2234,7.5302,2.4916,4.9307,1.7713,19.5659,5.9804,3.8373,1.1222,2.5438,7.1695,15.225,3.2042,4.4023,3.6099,1.6035,1.4602,4.613,10.814,3.3828,2.1285,11.9067,2.719,2.7418,2.411,14.1188,2.2916,4.1466,1.1291,14.575,5.5213,8.7282,3.814,11.0761,7.0712,8.3269,7.9692,4.0008,1.8018,4.8254,,,,0.07739,CN,,HC,0.37688,4.4119,3.9462,0.94664,10.9557,1.7362,0.39811,3.1922,3.0771,50.5636,16.2007,231.0108,4.1679,4.6516,1.8125,2.1765,3.6159,8.2003,1.8471,3.6469,0.58998,7.3094,12.2296,11.3615,8.056,2.208,4.651,1.6824,18.8707,5.4983,3.6582,1.1078,2.5045,7.3361,14.8227,3.0845,4.4785,3.7789,1.494,1.3871,4.3111,11.2611,3.0686,2.0616,10.3393,2.1073,2.3926,1.9663,13.1773,1.8977,3.9989,1.1106,15.0722,5.6804,7.9871,4.1699,11.9162,6.9135,8.3559,7.9748,3.6226,1.467,4.552,,,,,,,,,,,,,,,61,,,,103
+3172,1.5883,1.7572,,70-79y,Other,,,18.7786,4.3379,2.4042,2.2804,1.4566,ppmi,,,M,,0.44476,4.7436,4.2206,0.83124,8.7226,1.5433,0.38158,3.0361,3.2891,44.4926,15.7568,227.2454,4.1119,4.3837,1.5382,1.9983,3.3043,7.0489,1.8198,3.1384,0.83698,6.5712,10.9879,20.2599,7.065,2.4193,4.7345,1.7707,18.0428,5.5627,3.7542,1.1542,2.7602,7.7401,13.5609,3.5269,4.2058,3.3431,1.6093,1.567,4.1851,9.7903,2.9799,2.369,11.266,2.236,2.5416,2.3189,13.7888,1.9713,4.4586,1.1651,14.1049,5.8373,8.5877,3.2825,10.2418,7.2966,8.447,7.4547,3.7743,1.7114,4.8383,,,,0.082486,CN,,HC,0.42111,4.4701,3.9943,0.79501,9.6891,1.727,0.3905,3.1621,3.4771,43.9072,15.3538,229.8773,3.6968,4.8175,1.5295,2.0009,3.7382,7.0952,1.8571,3.3121,0.77103,6.6551,11.841,16.2295,7.6292,2.3783,4.7044,1.7958,17.5747,4.9008,3.61,1.0437,2.6393,8.0497,14.9081,2.9019,4.2854,3.3924,1.639,1.5478,3.6859,9.8854,2.7889,2.1844,10.0853,2.2624,2.4109,1.8891,13.1753,1.9599,4.3911,1.1159,13.7493,5.6644,7.6196,4.1177,9.4498,7.4798,8.1427,7.3406,3.6685,1.4443,4.5532,,,,,,,,,,,,,,,70,,,,104
+3173,0.93957,2.0538,,60-69y,Other,,,20.7197,5.4595,3.0378,2.4092,1.1296,ppmi,,,F,,0.49965,4.5623,3.8508,0.87352,8.7932,1.5609,0.39137,2.9318,3.3784,50.5985,16.7708,213.2815,3.8981,4.2003,1.7279,1.7933,3.4947,6.9651,2.0855,3.2914,0.47427,5.4434,10.3817,8.033,7.1828,2.3264,4.5659,1.7937,18.2179,5.0262,3.8496,1.1149,2.5915,7.0138,12.6826,3.0666,4.2014,3.1811,1.4152,1.5593,4.5433,11.1661,3.1744,2.048,11.5636,2.4237,2.3747,1.9824,12.9682,2.0635,4.6972,1.0911,15.4149,5.2585,9.8192,3.3149,11.4637,7.5002,8.6445,7.8229,3.4611,1.523,5.0795,,,PD,0.075725,PD,,PD,0.43429,3.683,4.0399,0.83401,11.0876,1.7101,0.39277,3.0992,3.507,50.5661,16.477,220.1491,4.0541,3.9646,1.7274,1.858,3.5926,7.5174,2.0353,3.4987,0.42227,6.3731,10.652,7.2981,7.9705,2.0665,4.2723,1.7482,18.1144,5.7772,3.6917,1.0571,2.6061,7.9997,12.5017,2.706,4.3922,3.1305,1.3522,1.5478,4.2665,10.776,2.9615,2.2183,9.2409,2.2835,2.2211,1.9573,13.7435,2.1272,4.5698,1.0938,15.8312,5.4663,7.4575,4.0856,10.1338,6.9701,8.4852,7.5624,3.095,1.4968,4.9143,,,,,,,,,,,,,,,62,,,,105
+3174,0.9314,1.2954,,50-59y,Other,,,21.13,5.2853,2.8465,2.2977,1.1076,ppmi,,,M,,0.45201,4.3763,4.5114,0.89626,9.1897,1.5841,0.40519,3.7639,3.1965,50.2958,18.8432,244.4403,4.4208,4.9117,1.7174,2.1514,3.4731,7.4298,2.0836,3.3925,0.46053,6.6123,11.1034,13.9699,7.7906,2.5148,4.2928,1.8074,17.8418,6.1765,4.03,1.1688,2.6253,6.4512,13.621,3.7555,4.5589,3.3284,1.6881,1.6892,4.0738,11.0624,3.2231,2.4161,12.3099,2.3133,2.5287,2.3125,12.9988,2.1591,4.6342,1.2201,14.7824,5.153,8.8179,3.7917,10.4349,6.9548,9.2925,7.6964,3.9856,1.883,5.4505,,,PD,0.08154,PD,,PD,0.38943,4.1862,3.9929,0.90443,10.4895,1.709,0.40503,3.69,3.3359,50.5581,18.2333,249.877,3.8836,5.4653,1.7389,1.9635,3.8173,8.0142,2.2893,3.6981,1.0071,6.6375,11.0285,13.2065,8.3963,2.2359,4.393,1.7456,18.5517,4.8323,4.0432,0.89524,2.7065,7.1656,13.5949,3.4124,4.5059,3.3607,1.5992,1.6576,3.7473,11.0028,2.9488,2.3535,10.6266,2.3907,2.1993,1.9621,13.2702,1.9602,4.4892,1.1363,13.8346,4.9298,7.7375,4.8431,10.6783,7.2984,8.8694,7.566,3.8643,1.5455,5.2103,,,,,,,,,,,,,,,51,,,,106
+3175,0.95464,1.6171,,50-59y,Other,,,18.1469,5.0851,2.493,2.0817,0.92915,ppmi,,,F,,0.4711,4.8686,4.6843,0.88538,9.6155,1.7573,0.40429,3.1652,2.7158,47.0855,14.4292,201.5768,4.0421,5.0175,1.6386,2.2245,3.6146,7.5494,2.2189,3.0076,0.35098,6.6647,11.7136,5.9589,7.6235,2.536,5.0359,1.9905,19.4603,7.0162,4.2426,1.178,2.7847,7.2588,13.3866,3.5778,4.3849,4.038,1.6554,1.3026,4.5662,10.4782,3.1806,2.3698,11.9177,2.3661,2.6515,2.3686,13.009,2.0835,4.2847,1.245,14.8235,5.6165,9.748,3.9844,10.5757,7.2361,8.1427,7.6784,4.5381,1.5108,4.4867,,,PD,0.07453,PD,,PD,0.42523,4.4537,4.2433,0.85927,9.7156,1.9012,0.41688,3.2038,2.7885,47.7404,14.0516,204.5005,3.7777,5.1859,1.6472,2.1807,3.9202,8.0132,2.2499,3.2212,0.44412,7.1367,11.4418,5.3216,8.7765,2.4169,5.0818,2.0114,19.4545,6.0503,3.9363,1.354,3.0801,7.9407,13.271,3.198,4.4783,3.9587,1.6759,1.3384,4.0044,10.8857,2.9569,2.1472,10.9566,2.1071,2.3992,1.912,12.7217,1.7576,4.2518,1.192,15.1253,5.5359,7.7263,4.8343,10.7573,6.8258,7.813,7.365,3.6673,1.2957,4.3084,,,,,,,,,,,,,,,57,,,,107
+3176,1.4582,1.5309,,60-69y,Other,,,21.9775,5.9488,3.2539,2.7011,1.2631,ppmi,,,M,,0.58571,5.5278,5.0414,1.0744,10.9873,1.7932,0.45165,3.8408,3.9641,60.4682,19.1818,252.9815,4.2589,5.7889,2.0199,2.0891,4.1883,8.7718,2.3245,3.9304,0.51363,6.9991,13.113,13.0448,9.6533,2.7836,5.8144,2.1972,21.6572,6.7132,4.3595,1.6871,3.5576,8.1944,16.8337,4.0206,5.0127,3.6051,1.7315,1.7229,5.3292,12.174,3.9028,2.6441,14.6331,2.7732,2.8268,2.4932,16.4167,2.595,5.0722,1.335,18.1511,6.1059,9.7564,3.9127,12.6671,8.6924,9.7777,8.7129,4.2802,1.8148,5.5125,,,PD,0.08516,PD,,PD,0.55442,4.9192,4.9895,1.0596,12.217,1.8514,0.48846,3.8515,4.1006,60.5667,18.5156,258.8658,4.0634,6.1465,2.1044,2.0458,4.6569,9.1687,2.3702,4.2252,0.69348,7.7196,13.2427,11.7341,10.4317,2.4107,5.6807,2.1836,21.3766,6.1572,4.1421,1.5747,3.0194,9.0292,16.0974,3.5265,5.2328,3.337,1.8911,1.7457,4.9525,12.5649,3.636,2.7359,13.3114,2.4417,2.6407,2.4014,15.4887,2.3137,5.0876,1.2657,17.4696,6.2916,9.5405,4.8697,11.9839,8.9685,9.6357,9.0764,4.1139,1.7537,5.3265,,,,,,,,,,,,,,,62,,,,108
+3178,2.1291,2.3614,,70-79y,Other,,,16.3414,4.9442,2.4782,2.2076,1.6325,ppmi,,,M,,0.39187,4.3616,4.1503,0.80306,9.0572,1.3726,0.37119,2.5064,2.7733,44.5263,13.7342,183.202,4.1617,4.0875,1.4949,1.9265,3.0757,6.8202,1.9362,2.9972,1.07,6.2588,11.0453,17.4098,7.3493,2.1461,4.9423,1.5842,17.4906,5.4202,3.5484,1.0573,2.433,6.5584,13.7623,2.855,4.0313,2.915,1.3406,1.2324,4.399,10.6839,3.0905,2.403,11.2722,2.4493,2.3159,2.4901,12.8976,2.0794,3.9232,1.2453,12.7369,5.1921,9.3101,3.1855,10.5891,7.4178,7.0582,7.1069,3.5761,1.7324,4.0613,,,PD,0.080419,PD,,PD,0.35467,3.8814,4.31,0.84906,10.7179,1.6388,0.38931,2.8056,2.8878,44.9592,12.8854,186.1728,4.0153,4.9607,1.6141,2.0539,3.4008,7.5294,1.9145,3.2478,1.1338,6.2186,11.7684,15.1916,7.9287,2.1511,4.6711,1.5931,17.4967,4.7858,3.526,0.85659,2.1706,7.1777,13.8366,2.5228,3.9435,3.3586,1.5271,1.1812,3.9237,10.4197,3.0916,2.4846,10.6748,1.9306,2.2243,2.2803,11.9761,1.8835,3.95,1.1485,13.3162,5.3869,8.192,4.3294,11.1266,7.1764,6.8464,7.8963,3.8106,1.5193,3.8739,,,,,,,,,,,,,,,72,,,,109
+3179,0.86314,1.8771,,50-59y,Other,,,20.2801,5.1845,2.8487,2.2647,0.94583,ppmi,,,M,,0.53199,5.9192,5.1703,0.9532,11.1658,1.7976,0.48809,3.7625,3.2672,50.8786,18.3308,264.9907,5.2377,5.496,1.8287,2.6657,4.2602,8.479,2.5681,3.4772,0.44374,7.7247,12.7871,9.6646,8.5738,2.8874,5.5707,2.4413,21.7218,6.974,4.752,1.299,3.2651,8.737,16.4521,4.6059,5.021,4.4629,1.9092,1.7611,5.0308,13.0404,3.6238,2.7731,12.5168,3.2126,2.9473,2.5336,15.3209,3.0908,4.8217,1.6091,17.9661,7.0142,10.6887,4.0846,11.8923,8.9468,9.3818,8.4334,5.3928,2.1663,5.2748,,,PD,0.087546,PD,,PD,0.49498,4.5984,4.9237,0.98878,12.7955,2.0047,0.50306,3.7492,3.2922,51.598,17.3813,266.5132,5.1318,5.5825,1.965,2.4876,4.6596,9.0501,2.6534,3.6665,0.57213,8.16,12.8739,8.6872,8.961,2.5823,5.2197,2.4002,21.1396,6.3332,4.5454,1.1836,3.1995,9.6105,16.4433,3.9068,4.8243,4.5633,1.946,1.7203,4.8678,12.625,3.4094,2.8261,10.9577,2.8655,2.9185,2.3337,13.6418,2.4062,4.869,1.5217,16.7643,6.958,9.8098,5.1329,11.5269,9.1188,8.9318,8.8167,4.9885,1.85,4.9984,,,,,,,,,,,,,,,52,,,,110
+3181,1.3099,1.6371,,60-69y,Other,,,18.1638,4.4099,2.436,2.2223,1.4891,ppmi,,,F,,0.41339,4.0536,3.9817,0.81918,8.478,1.4262,0.34835,3.4205,2.9327,43.7876,14.7483,218.8174,4.1514,4.3749,1.5571,1.8669,3.2974,6.7314,1.8263,2.911,0.53165,5.8555,9.9362,19.5006,7.0388,2.203,3.9562,1.5641,17.5632,5.6593,3.6989,1.1397,2.5943,6.3148,11.9003,3.6897,3.9773,3.0417,1.5699,1.3484,3.8866,9.6847,2.8404,2.1721,11.0686,2.3687,2.3909,2.2744,12.3515,1.8921,3.708,1.1001,12.9424,4.8739,8.1877,3.3755,10.318,6.4983,7.6938,7.7268,3.5592,1.6813,4.5183,,,PD,0.075596,PD,,PD,0.37502,3.6187,3.8656,0.82004,9.4255,1.4872,0.36554,3.2139,2.9899,45.0953,14.508,223.6075,3.6437,5.2523,1.6211,2.0388,3.3987,6.8133,1.8271,3.234,0.68024,5.8754,10.6764,16.852,7.7093,2.0844,4.1228,1.5271,17.0066,4.3005,3.2729,1.0166,2.471,6.5889,13.1477,2.8765,4.0477,3.603,1.5026,1.3515,3.6498,10.6094,2.7462,2.1817,9.1452,2.2575,2.203,2.0072,11.8557,2.065,3.6047,1.0722,12.8943,4.6407,7.3571,4.4248,10.8978,6.9036,7.4984,8.0616,3.3026,1.6039,4.2987,,,,,,,,,,,,,,,68,,,,111
+3182,1.3509,2.642,,50-59y,Other,,,18.0796,4.8022,2.2977,2.4319,1.2189,ppmi,,,F,,0.44232,4.6161,3.7566,0.83814,9.0007,1.5736,0.38514,3.5513,3.2111,46.6953,14.9871,234.8201,3.547,5.384,1.6835,1.6353,3.6313,7.4582,2.1635,3.1398,0.54561,6.5574,11.1115,17.1619,8.3977,2.3441,4.9538,1.8121,19.3914,6.3949,4.0278,1.3511,3.2287,7.358,14.1753,3.9031,4.7623,3.4322,1.4056,1.4671,4.4177,10.9117,3.3278,2.143,12.687,2.4663,2.2806,2.0429,14.8794,1.898,4.2752,1.1345,16.7908,5.5697,8.7535,3.8728,10.7071,7.4716,8.6723,7.3334,3.4077,1.4205,4.792,,,PD,0.078376,PD,,PD,0.44726,3.6828,3.8646,0.88167,10.3602,1.7432,0.41837,3.8085,3.2087,47.044,14.6733,235.5536,3.6686,4.9226,1.7677,1.6429,3.8939,7.7159,2.2832,3.4873,0.54656,6.1535,11.857,11.2181,8.8682,2.2716,4.8491,1.9108,19.5594,4.5665,3.7566,1.0256,2.9762,8.684,14.4885,3.0583,4.3514,3.4345,1.4674,1.4389,4.223,11.1321,3.1775,2.1143,11.6874,2.0163,2.1434,1.9377,14.3011,1.7097,4.3633,1.1744,15.6941,5.5597,8.6106,4.3165,11.9689,7.4927,8.6323,7.8441,3.3485,1.3844,4.573,,,,,,,,,,,,,,,55,,,,112
+3184,0.81574,1.9695,,50-59y,Other,,,18.5577,4.7857,2.7013,2.2218,0.91719,ppmi,,,F,,0.4516,4.2627,4.0834,0.8162,8.3509,1.3995,0.35525,3.116,3.2023,47.8389,16.2558,191.8094,3.6926,4.0449,1.5573,1.8533,3.2561,6.766,1.9824,2.9302,0.51356,6.2298,9.841,12.8166,7.1529,2.2137,4.5893,1.7685,16.2595,6.076,3.7867,1.1492,2.5817,6.3592,12.2064,3.1548,4.1756,3.1147,1.4546,1.4684,3.8953,9.6407,3.0039,2.2531,11.66,2.2613,2.4848,2.2055,11.6296,1.8059,4.0604,1.0655,13.2908,4.7243,7.819,3.4105,9.6407,6.2471,7.9616,6.9105,3.6199,1.5532,4.5087,,,PD,0.071232,PD,,PD,0.40674,3.5166,3.9089,0.84103,9.6555,1.6494,0.37141,3.1279,3.3736,48.9497,16.4041,194.4059,3.7316,4.1658,1.6734,1.8647,3.4506,7.2857,2.052,3.224,0.59407,6.0356,10.3665,9.4932,7.4606,2.1368,4.3737,1.7522,17.0418,4.5035,3.7124,0.95444,2.3445,7.3758,12.6783,2.6126,4.2418,3.1906,1.5318,1.413,3.6414,8.8792,2.9116,2.2256,10.6277,2.1722,2.3465,1.9761,11.9374,1.7911,4.1074,1.0585,11.6507,4.7317,8.8763,3.9024,9.655,7.2466,7.8719,7.4745,3.2802,1.3883,4.284,,,,,,,,,,,,,,,59,,,,113
+3185,1.0111,1.725,,50-59y,Other,,,18.1618,4.7599,2.778,2.2171,1.0298,ppmi,,,F,,0.39672,4.3609,4.0992,0.8104,9.4167,1.5931,0.3765,2.8824,2.6801,50.659,15.5,205.4898,3.918,3.7204,1.6949,1.793,3.3629,7.1274,2.0958,2.8968,0.35051,5.4298,10.2829,9.997,6.6567,2.3161,4.5932,1.7549,17.2981,5.4938,4.0948,0.97615,2.2918,6.4844,13.1174,2.8997,3.9398,3.0244,1.3682,1.3974,4.2248,9.3469,3.1226,2.3612,11.1174,2.3636,2.2967,2.1239,12.2854,1.881,4.0325,1.1904,14.2871,4.8832,8.3859,2.9714,9.6,6.9951,8.0658,7.4289,3.3604,1.5384,4.615,,,PD,0.077014,PD,,PD,0.35492,3.9027,3.8914,0.80569,10.1489,1.6968,0.36854,2.8005,2.7534,49.596,14.8388,209.4826,3.6334,4.0401,1.5922,1.8168,3.7036,7.211,2.077,3.0317,0.4288,5.9816,11.1361,10.0388,7.1511,2.0888,4.4269,1.7747,16.5052,4.4628,3.6563,1.0416,2.3763,7.3863,13.51,2.2977,3.8624,3.24,1.4851,1.3977,3.818,9.3622,2.8405,2.2994,9.9739,2.2481,2.2459,1.9551,12.3673,1.8142,3.9125,1.1543,14.7038,5.3162,7.366,3.5099,9.7617,6.9803,7.7912,7.6704,3.4104,1.4724,4.4631,,,,,,,,,,,,,,,55,,,,114
+3186,0.78399,1.8496,,60-69y,Other,,,17.9783,4.9021,2.8243,2.211,1.0342,ppmi,,,F,,0.41433,4.4485,3.9258,0.79369,10.1168,1.5525,0.3944,2.7515,2.618,49.6345,14.69,197.912,3.8406,4.4208,1.4806,1.9476,2.9789,7.0895,2.0498,2.9567,0.37965,5.7749,10.8483,8.328,7.2145,2.4114,4.7871,1.7607,18.1895,5.5873,3.9166,1.1601,2.6293,6.2514,13.7798,2.6574,4.0346,3.5115,1.5522,1.2263,4.6976,11.4526,3.0419,2.0591,11.5631,2.2248,2.5424,2.0795,11.0976,1.8244,3.6399,1.2658,13.6032,4.8754,9.6436,3.4132,10.1265,7.3079,7.5234,6.902,3.929,1.3944,4.2124,,,PD,0.072216,PD,,PD,0.33252,3.8991,3.8553,0.76837,10.5417,1.6618,0.37525,2.8932,2.6117,49.6894,14.2274,200.8823,3.9136,4.7685,1.5176,1.8447,3.2111,7.1632,1.9939,3.1493,0.46381,6.1364,10.6058,8.141,7.6423,2.2594,4.6638,1.6658,17.7628,4.6809,3.7092,1.1777,2.5639,7.0107,14.1194,2.1673,4.0412,3.4578,1.6013,1.2419,4.0912,11.0445,2.7805,2.0707,10.602,1.8909,2.3812,1.8802,12.5213,1.7471,3.6243,1.183,14.0982,4.6818,8.7141,4.4438,10.6686,7.8854,7.5611,6.9581,3.5159,1.2929,4.0407,,,,,,,,,,,,,,,62,,,,115
+3188,0.97034,1.6493,,70-79y,Other,,,17.6433,4.2853,2.2973,2.0313,1.1163,ppmi,,,M,,0.40401,4.4203,3.7052,0.86397,8.6737,1.3216,0.37557,3.0167,2.5151,43.8398,14.6216,201.7009,3.7088,4.1799,1.6447,1.8052,2.9739,7.1935,1.7832,3.0821,0.38252,5.9777,10.5993,9.5958,7.3982,2.1203,4.5131,1.5919,16.4397,5.5931,3.5913,1.159,2.5372,6.3261,13.0665,3.2876,4.2431,2.9007,1.4031,1.1503,4.444,10.4647,3.251,2.1639,12.5105,2.5683,2.4145,2.187,12.3673,2.1998,4.3118,1.1323,13.4682,5.2778,9.1275,3.3554,10.2947,7.0867,7.5054,7.4069,3.5701,1.6887,4.1436,,,,0.072171,CN,,HC,0.38394,3.998,3.6454,0.84413,10.0274,1.5723,0.39071,2.9072,2.6777,43.564,14.3324,209.4632,3.839,4.4016,1.6192,1.7096,3.3127,7.506,1.9216,3.2842,0.44594,6.4042,11.112,9.2048,7.962,1.9829,4.6583,1.5267,15.2688,5.0575,3.6172,1.1646,2.552,6.8569,13.9805,2.7511,4.295,2.871,1.372,1.1629,4.0122,10.7751,3.0699,2.109,11.1788,2.356,2.2478,1.9222,12.5296,1.9239,4.1876,1.07,14.0938,5.1543,8.3278,4.0418,10.2619,7.475,7.3084,7.6021,2.8881,1.5021,3.986,,,,,,,,,,,,,,,71,,,,116
+3190,2.4533,2.0864,,+80y,Other,,,17.3465,4.8694,2.684,2.3649,2.2461,ppmi,,,M,,0.39615,4.6862,4.3217,0.88826,9.3616,1.5917,0.37531,3.1118,2.7603,45.1823,13.7457,187.7582,4.0561,4.2338,1.6529,1.8913,3.7148,8.0155,2.0749,3.2657,1.2298,5.9498,11.6839,28.474,7.8294,2.359,4.983,1.8818,18.4546,5.8094,4.0326,1.2219,2.5215,7.6321,14.2539,3.0135,4.4031,3.4398,1.4432,1.2429,4.25,10.526,3.6317,2.3792,12.9648,2.1878,2.6906,2.3772,12.8024,1.7949,3.7109,1.2383,15.5828,5.5051,8.3977,3.4186,10.8269,7.6737,7.5016,7.6005,3.6489,1.4828,4.5188,,,PD,0.076986,PD,,PD,0.34814,4.0055,4.1438,0.83719,10.7947,1.6553,0.37648,3.1373,2.929,45.0894,13.569,189.0786,3.8182,4.4905,1.5783,1.9498,3.9569,8.197,2.0777,3.4197,1.1751,6.4668,11.0676,20.6236,8.4481,2.1919,4.9497,1.8365,18.6231,5.198,3.6405,1.1703,3.0207,8.0319,14.0443,2.8536,4.3925,3.1673,1.5812,1.1902,4.0503,10.8333,3.2261,2.3283,10.1546,2.2515,2.5929,2.0246,13.469,1.9041,3.7264,1.2025,14.8563,5.3881,8.2777,4.1394,11.1332,7.9512,7.4298,7.5942,3.5489,1.4082,4.2048,,,,,,,,,,,,,,,82,,,,117
+3191,0.6577,1.3158,,60-69y,Other,,,15.9184,4.58,2.4554,2.172,1.1002,ppmi,,,F,,0.38559,3.9158,4.0778,0.79608,8.3817,1.4957,0.34813,3.458,2.4822,42.5724,13.1974,189.8674,4.2161,4.5614,1.5131,1.9055,3.1494,6.5984,1.9668,2.7603,0.28031,6.5519,10.3825,10.4997,7.1755,2.3655,4.0609,1.5611,17.0948,6.0465,3.7057,1.0512,2.282,6.0606,12.2383,3.7456,4.2752,2.9068,1.4304,1.1832,4.0371,9.8312,2.9583,2.2433,11.1635,2.2906,2.3788,2.0125,12.5294,1.8975,3.6448,1.0663,13.9154,4.2428,7.5923,3.7971,9.9206,5.7289,7.2203,6.4605,3.8011,1.583,4.0273,,,,0.065719,CN,,HC,0.37397,3.7736,3.6952,0.77403,9.4653,1.711,0.36686,3.3092,2.5521,41.8242,12.7793,191.4976,3.7363,4.7571,1.4978,1.8837,3.3775,6.6984,2.039,2.8493,0.30037,6.5296,10.2827,9.6723,7.6389,2.2103,3.9717,1.5506,16.4156,4.7072,3.7331,0.8474,2.1833,6.6979,12.546,2.8591,4.1591,3.3122,1.5076,1.1653,3.5914,9.6729,2.7568,2.0766,10.001,2.1509,2.2622,1.777,11.647,1.7337,3.4974,1.0637,13.4503,4.4027,7.5549,4.3642,10.2093,6.3574,6.9759,6.6209,3.5409,1.4005,3.8183,,,,,,,,,,,,,,,66,,,,118
+3200,0.75036,1.722,,50-59y,Other,,,19.4216,4.3143,2.8674,2.2239,0.84216,ppmi,,,M,,0.4626,4.6287,4.0303,0.91805,8.4034,1.5347,0.41169,3.0934,2.7311,47.5843,17.4439,229.533,4.3381,4.6714,1.6885,1.9892,3.4253,7.351,2.4038,3.5914,0.43595,5.4888,11.5303,9.3071,7.3226,2.2747,4.7544,1.8614,18.8629,5.4107,4.2391,1.0217,2.4153,6.7557,13.2582,2.538,4.0923,3.3859,1.5065,1.3982,4.4313,10.534,3.3302,2.2065,10.7894,2.7663,2.5225,2.1191,11.1923,2.4935,3.9918,1.2877,13.5698,5.0535,8.6621,3.2054,10.7369,6.8839,8.4863,8.0124,3.6966,1.8374,4.9046,,,,0.076435,CN,,HC,0.38975,4.0841,4.0081,0.90281,9.6588,1.6584,0.40779,3.259,2.6474,47.0114,17.0925,231.3512,4.0461,4.6147,1.7056,2.0396,3.5838,7.4111,2.1615,3.6894,0.51168,5.7273,11.6927,7.3944,8.1416,2.2737,4.8234,1.7362,18.8321,4.6248,3.8462,0.96573,2.4019,7.5309,13.9846,2.0106,4.0748,3.2671,1.6204,1.4199,4.1498,10.4047,2.9963,2.2853,9.7111,2.4277,2.4718,1.9853,11.3492,1.9653,3.8819,1.2272,13.953,4.7953,7.4519,3.4266,10.0015,7.256,8.0959,8.1326,3.352,1.5833,4.6668,,,,,,,,,,,,,,,56,,,,119
+3201,0.72335,1.7514,,60-69y,Other,,,17.0472,3.7758,2.4371,1.9908,0.7423,ppmi,,,F,,0.35722,4.0744,3.4518,0.7464,7.8995,1.314,0.33252,3.0644,2.4204,43.7585,14.6217,210.9734,3.1688,4.3071,1.4185,1.629,2.7548,6.2295,2.0951,2.827,0.40564,4.7527,9.3624,6.1633,6.6391,1.943,4.5067,1.5411,17.3778,4.5984,3.6412,0.87404,2.137,5.828,11.1203,2.3531,3.7594,2.7755,1.2956,1.244,3.9389,9.9437,2.6504,1.8388,9.8881,1.8293,2.0421,1.7883,10.4381,1.569,3.3942,1.0103,11.5017,4.601,7.2267,2.655,9.6869,5.9892,7.2687,6.5015,3.3358,1.2491,4.2794,,,,0.06051,CN,,HC,0.31925,3.5121,3.2417,0.73186,8.6039,1.6052,0.33818,3.2737,2.4363,41.5323,14.3086,208.1873,2.9732,4.1655,1.4463,1.6092,3.0496,6.1291,1.9676,2.957,0.42644,5.3087,9.2381,6.0422,7.1783,1.8599,4.4361,1.495,16.4443,4.5465,3.4912,0.78146,2.0176,6.4691,11.512,2.1467,3.8439,2.8009,1.2435,1.2374,3.5995,9.5178,2.4022,1.8385,9.135,1.7331,1.8507,1.5467,10.9832,1.4241,3.2515,0.97346,11.5226,4.4609,6.7111,3.3019,9.1929,5.8623,7.0485,6.2834,2.9784,1.1269,4.0489,,,,,,,,,,,,,,,65,,,,120
+3203,0.96311,2.1359,,50-59y,Other,,,20.1589,4.7222,2.6247,2.384,1.1626,ppmi,,,M,,0.56612,5.5921,4.2175,0.97143,10.4383,1.8761,0.46815,3.4395,3.1773,51.51,16.9748,283.8528,4.487,5.0357,1.7912,2.3238,3.4866,8.4327,2.5292,3.3253,0.40598,7.2114,13.6291,12.0343,8.545,2.8168,5.3677,2.2843,20.6588,7.2831,4.5859,0.96241,2.5437,7.5424,16.5014,3.4763,4.8712,4.3177,1.6098,1.5034,4.8388,12.0491,3.4227,2.3735,11.6661,3.3708,2.71,2.3936,13.3167,2.9363,4.6736,1.4837,14.7762,5.2902,11.4461,4.2413,11.4688,8.3279,9.5056,8.0037,4.3715,2.1449,5.1552,,,PD,0.087914,PD,,PD,0.48644,4.6757,4.4226,0.98439,13.0235,2.2798,0.44988,4.0638,3.2038,50.2285,17.4676,286.1885,4.9665,5.4376,1.817,2.3269,4.4276,8.0428,2.5348,3.7182,0.62792,7.5921,12.9083,9.4434,9.3773,2.6235,5.2269,2.2563,21.2041,6.6115,4.3977,1.028,2.4915,9.2519,17.3591,3.0565,4.9605,3.8,1.8242,1.5283,4.2591,11.7424,3.2188,2.4497,10.0661,2.6072,2.6533,2.11,12.8101,2.1891,4.7305,1.4287,15.4745,5.4325,9.7739,5.0271,10.6237,8.8137,9.2888,8.2134,4.186,1.7341,4.9833,,,,,,,,,,,,,,,57,,,,121
+3205,1.8085,1.7468,,70-79y,Other,,,19.4386,4.7323,3.3424,2.519,1.6924,ppmi,,,M,,0.47992,5.128,4.644,0.78517,8.9206,1.7574,0.40927,3.059,2.818,46.1527,17.2944,248.0307,4.074,4.7779,1.4024,2.0362,3.4964,6.9346,2.3037,2.9959,0.43273,6.6851,10.3279,24.1142,7.9326,2.5274,5.4211,2.019,18.5895,6.22,4.4073,0.96547,2.2873,7.4761,14.9519,2.9844,4.2481,3.4185,1.4926,1.3843,4.4213,10.8583,3.0068,2.4527,10.4404,2.4651,2.6319,2.2802,12.2444,2.095,4.2746,1.3176,12.6517,4.7576,9.1124,3.6239,9.9571,7.633,8.1753,6.5755,3.756,1.6862,4.9324,,,PD,0.080102,PD,,PD,0.41296,4.1035,4.4489,0.85217,9.7529,1.9283,0.42858,3.5879,2.8732,46.7666,16.947,251.4482,3.9229,5.229,1.6019,2.1284,3.464,7.2638,2.2353,3.2418,0.63699,7.2231,11.6253,21.5994,8.583,2.4904,4.9949,1.9368,18.7439,5.746,4.1911,1.1227,2.6909,8.7201,15.2312,2.8795,4.4833,3.5844,1.6129,1.3853,4.195,11.1414,2.9927,2.445,10.7529,2.5819,2.6765,2.1399,12.5301,2.0229,4.1714,1.2776,13.7668,5.5473,7.565,4.7313,9.1654,7.1714,7.8592,8.0767,3.7916,1.6268,4.6814,,,,,,,,,,,,,,,73,,,,122
+3206,0.50989,1.588,,-50y,Other,,,14.9825,3.832,2.422,2.1803,0.72766,ppmi,,,F,,0.46789,5.06,4.0076,0.831,9.5608,1.6763,0.37248,3.4098,2.9504,45.5274,12.6334,205.9931,3.8595,4.4763,1.5081,2.0499,3.1231,7.1633,2.2501,3.0734,0.28766,6.0372,10.5035,6.1367,7.2137,2.4442,4.8614,2.0801,19.2395,6.5363,4.0044,0.95626,2.399,7.0374,13.7628,3.0013,4.0875,3.4214,1.5225,1.2427,3.903,9.7946,2.9127,2.1933,10.5887,2.3268,2.4954,2.3332,13.0794,2.0026,3.9171,1.2076,14.4877,5.3915,8.5569,3.6653,9.9377,7.6652,7.5666,7.028,3.752,1.6493,4.2532,,,,0.069606,CN,,HC,0.44679,4.3599,3.8659,0.86628,10.4197,1.9006,0.41774,3.3625,2.9073,45.499,12.9461,208.0718,3.8214,4.7032,1.5683,1.9752,3.4917,7.3546,2.2396,3.3009,0.31548,5.4427,10.9658,4.2868,7.7504,2.4351,4.8181,1.9992,19.3544,5.2382,3.9399,0.97103,2.4002,8.0225,14.1473,1.9865,3.821,3.3966,1.6715,1.2159,3.6729,10.0025,2.8121,2.0968,9.6408,2.0801,2.552,2.0855,11.7946,1.9115,3.8924,1.1344,14.6844,5.1752,7.7627,3.899,9.3463,7.8497,7.4424,7.722,3.5445,1.5287,4.0106,,,,,,,,,,,,,,,31,,,,123
+3207,0.63867,1.4685,,50-59y,Other,,,19.0345,4.7634,3.1512,2.5045,0.86636,ppmi,,,F,,0.42831,4.2694,3.7666,0.81357,8.7685,1.5654,0.37036,3.2396,2.8952,53.6844,16.1707,228.1444,3.8099,4.0014,1.4726,1.8583,3.0435,7.3544,2.0362,2.8375,0.27595,5.8796,10.1678,6.7753,7.4098,2.387,4.3029,1.7457,16.4631,5.3409,3.9324,0.97447,2.0701,6.2358,12.2999,2.6929,4.4451,3.1274,1.4685,1.3269,3.6329,9.6422,2.9995,1.9942,11.31,2.2045,2.4438,2.2305,10.799,1.8912,3.5877,1.0911,14.3011,4.6831,7.6663,3.1851,8.9638,6.8626,8.3128,6.3477,3.3572,1.6181,4.7317,,,PD,0.066379,PD,,PD,0.36766,3.836,3.6408,0.8188,8.9353,1.6593,0.35544,3.5364,2.9086,52.8216,16.0564,225.7763,3.9007,4.5417,1.5148,1.944,3.4352,7.3667,2.0124,3.1754,0.55171,6.0459,10.3403,7.0601,8.1865,2.042,4.2285,1.7393,16.2346,4.7398,3.7589,0.95911,2.2398,6.7961,11.9982,2.3142,4.5603,3.5428,1.417,1.3765,3.3597,9.7168,2.7875,2.0308,9.6072,2.4368,2.3146,1.7965,11.0577,1.9279,3.4895,1.0486,14.0586,4.5029,7.7641,3.6267,9.4631,6.5811,8.0645,6.5284,3.2403,1.442,4.6079,,,,,,,,,,,,,,,58,,,,124
+3209,1.6897,2.5256,,60-69y,Other,,,18.6603,4.9006,2.8155,2.4661,1.5565,ppmi,,,M,,0.47837,5.3358,4.4307,0.94064,9.654,1.7717,0.42586,3.2839,3.1329,50.8262,16.0188,247.3376,5.0098,4.9707,1.84,2.1956,3.4005,8.3073,2.4384,3.3854,0.58598,6.7211,12.6255,21.0294,8.0223,2.5399,5.2597,2.1206,18.4731,6.0718,4.5891,1.4458,3.3801,7.8478,14.6449,3.4175,4.5875,3.4559,1.6711,1.4438,4.3707,12.2588,3.4633,2.5202,13.3074,3.0845,2.7188,2.2645,13.2579,2.4942,4.0979,1.3759,16.1668,6.7822,10.5536,3.1365,10.8724,7.3844,8.5893,8.1336,3.8911,1.9127,4.8837,,,PD,0.065438,PD,,PD,0.4315,4.3354,4.1977,0.94273,10.5724,2.2102,0.40372,3.7888,3.1748,49.5063,15.5367,251.3978,4.9917,5.937,1.8867,2.2278,3.9439,8.2328,2.3913,3.6675,1.0525,6.6151,12.2347,14.5906,8.9115,2.5706,5.0115,2.1543,18.7882,4.5686,4.3573,1.1768,2.8563,9.2562,14.6033,3.0105,4.5155,3.492,1.8374,1.5544,4.2071,12.3672,3.2993,2.3578,11.343,2.8129,2.7001,1.9357,13.1865,2.1376,3.8937,1.2741,16.4045,6.6564,8.9416,3.8507,10.322,7.6185,8.2707,8.7881,3.6638,1.705,4.7281,,,,,,,,,,,,,,,68,,,,125
+3211,1.7488,2.1258,,60-69y,Other,,,18.1287,4.2395,2.8101,2.1223,1.3967,ppmi,,,M,,0.52086,5.6003,4.5572,1.008,10.8758,1.9222,0.45418,3.4173,3.1292,49.0959,15.9308,278.2396,4.3411,5.0027,1.9308,2.0375,4.1378,8.2695,2.4935,3.4321,0.68708,7.1187,12.5668,26.8927,8.1967,2.64,5.6828,2.2323,23.0242,7.3691,4.6938,0.98733,2.7993,8.0501,16.3212,3.5279,4.7027,3.5995,1.6985,1.4669,5.1453,12.9418,3.4754,2.3863,11.9964,2.7434,2.6911,2.2677,12.9773,2.2147,4.2741,1.4696,15.9665,5.8809,10.5836,4.1881,12.173,8.266,8.4675,8.7863,4.2514,1.7555,4.9217,,,PD,0.091482,PD,,PD,0.48315,4.8437,4.3777,0.97723,12.1762,2.2052,0.46059,3.7594,2.918,49.3677,15.2855,274.6423,4.2983,5.0553,1.8742,2.3422,4.4507,8.0956,2.5405,3.8107,0.49013,7.3042,12.1043,16.1409,8.9482,2.8913,5.3173,2.2051,21.4277,6.3137,4.4622,1.0238,2.6517,9.0253,16.4999,2.6833,4.8896,4.2711,2.0623,1.457,4.834,12.7091,3.2226,2.3452,10.8959,2.5409,2.6459,2.0164,14.4098,2.054,4.2186,1.45,13.7045,5.4862,8.3372,4.3615,11.4484,8.5772,8.1856,8.6852,4.4647,1.5106,4.6553,,,,,,,,,,,,,,,62,,,,126
+3213,1.6044,1.9527,,60-69y,Other,,,20.9509,5.2089,2.8393,2.4417,1.6175,ppmi,,,M,,0.48473,6.2431,5.1862,0.95031,11.0544,1.8243,0.4544,3.9861,2.8516,55.862,17.5969,273.6981,4.696,5.437,1.827,2.4265,4.1207,8.2689,2.5488,3.4766,0.73638,7.0109,13.0396,30.6231,9.1283,2.8903,5.3787,2.3754,22.312,7.9644,4.5056,1.6672,3.5637,9.3328,16.4221,3.2541,5.6332,3.5653,1.8998,1.635,4.7713,12.6834,3.494,2.6879,12.2974,2.6451,2.8369,2.5603,13.1621,2.1596,4.3778,1.5399,16.5522,7.3561,9.8631,3.5844,11.8327,8.3281,9.018,8.4217,4.386,1.797,5.2781,,,,0.087648,CN,,HC,0.41215,5.109,5.0174,0.99832,10.7504,2.0417,0.42685,4.2799,2.8494,56.3096,16.7296,277.7651,4.8883,6.8064,1.921,2.604,4.5904,8.6405,2.6196,3.7082,0.73785,7.4197,13.3802,18.1064,10.1568,2.7271,5.0231,2.2605,19.6188,5.5149,4.3122,1.2345,3.4186,11.0331,16.5983,2.9896,5.407,3.7287,1.8952,1.6548,4.7613,13.605,3.4231,2.6914,11.2289,2.5283,2.5927,2.4516,13.5985,2.3461,4.2332,1.496,16.6168,7.1653,8.5853,4.3078,11.1455,8.8968,8.7248,9.0421,3.7568,1.8786,5.0767,,,,,,,,,,,,,,,63,,,,127
+3215,1.1278,1.7353,,70-79y,Other,,,15.8864,4.0169,2.4973,1.9792,1.0416,ppmi,,,F,,0.44427,4.3942,3.9978,0.88227,7.8824,1.5064,0.39027,3.31,2.2935,44.3115,13.2228,216.5969,4.0491,5.2614,1.6622,1.8599,3.1417,7.2115,2.0751,3.1132,0.62843,5.5429,10.8657,11.84,7.2087,2.1908,4.6276,1.7581,16.5482,5.7084,3.7792,0.93582,2.3112,6.0366,13.1123,2.7963,3.8395,3.1296,1.3829,1.2823,4.1888,11.0939,3.1101,2.0812,10.538,2.4392,2.2207,2.0013,11.5498,2.1728,3.4411,1.2753,11.6797,4.3384,8.2384,3.9923,10.1908,6.5193,7.5927,7.4243,3.4803,1.8111,4.4084,,,,0.082544,CN,,HC,0.40416,4.1894,3.9584,0.8456,9.0538,1.6621,0.39199,3.3298,2.3446,43.8343,12.9003,211.8262,3.9176,4.9768,1.5341,1.9362,3.1142,7.1029,1.9682,3.197,0.70719,6.5718,11.2473,10.241,7.954,1.9022,4.6351,1.6561,16.4029,5.2382,3.5931,0.88389,2.3739,6.5374,12.998,2.2867,4.2326,3.2465,1.3961,1.2692,3.8942,10.7138,2.7445,2.2226,9.8514,2.2408,2.1152,1.7865,10.5985,1.753,3.4652,1.2768,11.8099,4.3754,7.8564,3.9527,9.0342,5.9775,7.0913,7.4606,3.206,1.5049,4.1965,,,,,,,,,,,,,,,70,,,,128
+3216,0.77001,1.4113,,50-59y,Other,,,16.5761,4.3739,2.391,2.3575,1.1331,ppmi,,,F,,0.43835,4.7054,4.2809,0.9631,9.1415,1.4765,0.38393,3.2844,2.9419,47.5271,14.7726,222.0609,3.9697,4.4191,1.8091,2.0446,3.3149,7.8413,2.2645,3.2602,0.33839,5.6106,11.223,10.7032,7.6315,2.4166,4.7132,1.9723,19.1106,6.2546,3.9341,1.2567,2.8818,6.9271,13.4889,2.4651,4.3848,3.4555,1.6571,1.3728,4.3357,10.5498,3.1828,2.2395,12.5909,2.5065,2.5355,2.2284,12.7188,2.0882,3.7844,1.1839,15.2431,5.699,8.93,3.3157,9.8116,7.6057,8.289,8.0299,4.1469,1.5455,4.5423,,,,0.077509,CN,,HC,0.39878,4.1744,4.0025,0.88901,10.2995,1.8209,0.39111,3.4012,2.9139,47.329,14.4428,222.3089,3.8369,4.9465,1.6912,1.9969,3.7806,7.8627,2.2648,3.3394,0.43336,6.131,11.5636,11.0828,8.0301,2.2761,4.6784,1.8137,18.8342,5.292,4.0108,1.1639,2.8949,7.5133,13.9485,2.2177,4.4443,3.6607,1.5782,1.3684,3.9744,10.6229,2.8274,2.3949,10.7916,2.5253,2.2312,2.1388,13.1514,2.1513,3.6016,1.1381,14.7127,5.8203,8.1842,4.295,10.2781,7.9739,8.1061,7.9054,3.6643,1.7407,4.2806,,,,,,,,,,,,,,,52,,,,129
+3218,1.882,2.2691,,60-69y,Other,,,19.5689,4.6136,2.4626,2.138,1.9476,ppmi,,,M,,0.39993,4.9786,4.4357,0.87786,9.7187,1.6189,0.36212,3.3643,2.9203,45.3266,17.5238,263.6435,3.847,5.1812,1.6734,2.1284,3.3174,7.7199,2.2894,3.1507,0.5221,6.1031,11.7271,21.4082,7.4403,2.4966,4.986,1.984,18.6708,6.0317,4.1094,1.2727,2.6026,7.1347,14.1835,3.2241,4.2959,3.2315,1.5059,1.6729,4.693,12.1971,3.1688,2.458,11.8173,2.6457,2.3778,2.1264,11.1246,1.9864,3.6518,1.2434,13.8015,5.6765,9.4216,3.8715,10.2765,7.0729,8.2105,7.2777,3.9657,1.4066,4.9323,,,PD,0.066141,PD,,PD,0.37242,4.4515,4.0486,0.82064,10.4512,1.6914,0.37686,3.9801,3.1867,46.5511,16.1628,261.3202,3.8276,6.0009,1.5404,1.9739,3.346,7.8592,2.2566,3.2909,0.6251,6.8741,12.7411,19.3884,8.5323,2.2374,4.8878,1.9455,17.7387,5.7213,3.918,1.0904,2.6174,7.6108,14.8077,2.6763,4.3078,3.3167,1.5316,1.618,4.3166,12.2075,2.8758,2.3301,10.122,1.8402,2.2808,1.8767,11.5888,1.4923,3.4809,1.294,12.9978,4.9382,6.9574,4.0068,10.0853,6.4318,8.2614,7.6375,3.4885,1.3446,4.7022,,,,,,,,,,,,,,,64,,,,130
+3219,1.5687,1.9734,,70-79y,Other,,,20.3048,3.9684,2.8379,2.2563,1.5156,ppmi,,,M,,0.45686,5.1076,4.4418,0.91626,8.0184,1.7812,0.40054,4.1687,2.9404,43.1605,17.8262,296.5224,3.581,5.3761,1.5657,2.095,3.3101,7.2258,2.4357,3.3827,0.66571,5.7066,10.0443,21.2692,7.7797,2.5145,5.0003,2.1636,17.8865,5.7554,4.2245,1.0335,2.3353,7.213,12.6737,3.5937,4.2354,3.6866,1.541,1.5442,4.3429,10.5895,3.2006,2.3451,10.047,2.5361,2.4642,2.2022,10.6233,2.314,3.914,1.3662,13.1512,5.0715,7.8277,3.7663,8.4786,7.1881,8.3503,7.6442,4.2516,1.7072,5.1578,,,,0.076366,CN,,HC,0.42164,4.9924,4.3729,0.93273,8.8568,1.9359,0.42771,4.4212,2.6955,42.1086,19.188,300.3215,3.7832,6.0015,1.7266,2.1385,3.6037,7.2483,2.3193,3.6096,0.69761,6.363,11.1686,17.73,8.7183,2.3249,4.8582,2.1409,17.4516,5.2483,4.1454,0.89168,2.2848,7.8625,14.1623,3.0516,3.9274,3.5855,1.7124,1.5858,4.1501,10.8069,2.9976,2.2718,8.9382,1.9513,2.5035,1.9462,10.3094,1.5726,4.0114,1.3674,12.9638,5.0738,6.4812,4.9707,7.7247,7.1036,7.9383,8.23,3.5559,1.3821,4.898,,,,,,,,,,,,,,,70,,,,131
+3220,1.1246,2.7889,,70-79y,Other,,,17.9933,4.0487,2.8531,2.0144,1.3667,ppmi,,,F,,0.46578,5.3957,4.0287,0.92639,9.2738,1.6345,0.39109,3.0764,2.9397,47.3081,14.9137,238.6353,3.913,4.6121,1.768,1.9432,3.2847,7.3806,2.1732,3.376,0.4003,6.5812,10.5679,12.9235,7.1807,2.1915,5.6263,1.9835,17.3033,6.7054,3.8909,1.1678,2.8327,7.0814,13.2729,3.0394,4.271,3.3908,1.3141,1.3649,4.3335,10.9481,3.2708,2.3813,10.4331,2.7794,2.2359,2.316,12.0866,2.4045,3.5475,1.352,11.3492,5.5266,9.2867,3.356,9.259,7.2509,7.8193,7.5038,3.7172,1.7095,4.7515,,,PD,0.093941,PD,,PD,0.42992,4.7088,3.9277,0.91517,10.7328,1.8727,0.38931,3.4398,2.8839,47.4773,14.598,238.6647,4.1935,5.4106,1.7724,1.9225,3.7001,7.6659,2.0949,3.4564,0.68258,6.9926,12.0648,12.3867,8.0558,2.1591,5.3451,2.0249,18.0348,5.2229,3.6228,1.1649,2.6474,8.345,14.2526,2.5873,4.4059,3.7998,1.5137,1.4025,4.0128,10.7345,2.9164,2.3084,9.6493,2.3706,2.069,2.0318,10.4121,1.8893,3.5373,1.2641,12.2722,5.4262,8.6852,3.9625,8.6073,7.0307,7.5121,7.7151,3.5516,1.5574,4.5197,,,,,,,,,,,,,,,74,,,,132
+3221,2.5634,3.402,,60-69y,Other,,,19.9965,4.4664,2.4049,2.3797,2.5877,ppmi,,,M,,0.43078,5.2253,4.5596,0.88293,9.3739,1.5109,0.42643,3.8349,2.7504,43.9853,16.3486,229.2452,4.3546,4.6059,1.6581,2.1472,3.3556,7.7512,2.2275,3.383,1.3162,6.8051,12.4254,40.0285,7.8799,2.3164,5.2172,1.9565,18.4676,6.1933,4.0266,1.102,2.636,7.5869,15.0718,3.6864,4.5859,3.623,1.3843,1.4215,4.9302,11.9321,3.2234,2.6633,10.3552,2.6541,2.374,2.3639,12.179,1.9764,3.9467,1.4142,14.6539,5.9315,8.8039,3.5525,9.4745,7.0015,7.8205,7.6143,3.6389,1.7082,5.0078,,,,0.059723,CN,,HC,0.37709,4.762,4.3412,0.85292,10.9508,1.7222,0.42244,3.9019,2.3483,43.4826,15.8118,228.9571,4.2794,5.171,1.5868,1.9053,3.5741,7.7787,2.123,3.5467,1.2831,6.3915,12.3287,36.069,8.7507,2.1874,5.2714,1.8272,19.0862,5.3747,4.0078,1.0223,2.5377,8.3018,14.998,2.856,4.3312,3.4832,1.4927,1.3603,4.4112,11.9464,2.995,2.6213,9.1436,2.1361,2.3709,2.2469,12.2162,1.6504,3.8786,1.3615,14.8148,5.7701,7.9216,3.8525,9.7905,7.7675,7.4493,7.4571,3.3363,1.5515,4.728,,,,,,,,,,,,,,,68,,,,133
+3222,1.715,2.131,,50-59y,Other,,,20.1299,5.1975,3.2321,2.6514,1.8862,ppmi,,,M,,0.48346,5.02,4.4978,0.8787,9.5586,1.8837,0.42647,3.0171,3.2679,49.7776,20.2149,260.5869,4.0376,4.9448,1.6866,2.1949,3.316,7.9126,2.4558,3.0767,0.4169,5.9671,12.2832,21.1995,8.0382,2.71,4.5398,2.0075,19.458,6.3734,4.6955,0.9991,2.4137,7.8496,14.9926,2.6283,4.6461,3.577,1.7454,1.6111,4.0721,10.8852,3.1919,2.5042,11.4198,2.3291,2.8556,2.4819,13.7529,2.2204,4.5418,1.3679,16.8169,5.9846,8.101,3.2323,9.999,8.0032,8.6307,8.3709,4.4527,1.8116,5.2374,,,,0.0672,CN,,HC,0.42838,4.7101,4.2053,0.86423,10.2096,2.1124,0.42419,3.118,3.2085,48.5641,20.4218,257.5762,4.0828,5.5517,1.7197,2.1645,3.4066,7.4987,2.2555,3.2292,0.46528,6.5806,12.5141,17.7658,8.5606,2.6265,4.5131,2.0226,18.9836,4.912,4.4553,1.157,2.6807,7.995,15.559,2.5282,4.6948,3.8587,1.7683,1.59,3.5825,11.5647,2.8123,2.4367,9.9025,2.2864,2.706,2.2076,13.3032,2.0676,4.2128,1.2921,16.2611,5.8799,8.2286,3.761,9.5921,8.2234,8.6395,8.2729,3.7112,1.5575,4.9521,,,,,,,,,,,,,,,58,,,,134
+3223,1.8421,1.8384,,60-69y,Other,,,19.0569,4.6909,2.7873,2.2644,1.6627,ppmi,,,M,,0.44691,5.489,3.7844,0.93585,8.3485,1.4494,0.4238,2.9336,2.5582,42.1535,20.7795,286.7646,3.1393,4.5849,1.616,1.9546,3.6804,6.6092,2.6938,3.2649,0.32634,5.0527,9.0958,10.9941,8.1704,2.4296,6.2443,2.1526,17.0803,4.8174,3.5286,0.89804,2.3919,7.6707,14.8134,2.66,3.6163,3.7829,1.6114,1.7772,4.6094,11.3314,3.4969,1.92,10.1492,1.7906,2.2331,1.9178,9.7142,1.7612,3.6541,1.4249,11.5924,6.3216,8.3403,2.4147,8.6286,7.771,8.2308,8.3694,3.7558,1.1662,5.1129,,,PD,0.038146,PD,,PD,0.40628,4.6293,3.6489,0.86487,10.237,1.5196,0.32124,3.0689,2.1216,40.5549,21.6053,288.5989,3.2924,4.3677,1.5947,1.9217,4.0293,6.7217,2.4832,3.5845,0.45928,5.6828,9.8167,9.9681,8.4564,2.1312,5.7459,2.0273,16.6166,4.3364,3.104,1.0653,2.4774,8.5042,14.7722,2.2706,3.2325,3.4154,1.6125,1.7582,4.077,10.6361,3.2284,1.9515,8.7331,1.7076,1.9931,1.5373,9.2111,1.525,3.3425,1.2306,11.7158,5.7414,7.6766,3.018,8.7336,7.8416,7.4609,8.2393,3.9733,0.78519,5.0006,,,,,,,,,,,,,,,66,,,,135
+3224,2.0822,1.8144,,+80y,Other,,,20.6831,5.0123,2.8531,2.636,1.9177,ppmi,,,M,,0.51779,5.8249,5.0459,0.85652,11.4912,2.1409,0.4353,4.4743,2.9945,49.1177,17.858,277.0357,4.5638,6.3887,1.6598,2.2566,3.8046,8.5237,2.7895,3.1884,0.56954,7.106,14.0808,18.0021,9.0221,3.2344,5.3407,2.4454,25.0945,6.486,5.2275,1.11,2.4636,8.3632,18.2741,4.0811,4.7722,3.6045,1.9457,1.5815,5.296,12.595,3.4516,2.681,12.4092,2.8776,2.8655,2.7564,14.0135,2.3877,4.5622,1.5227,17.0371,5.5421,10.707,3.8578,11.953,9.0193,8.785,8.9494,4.7986,1.8772,4.9845,,,PD,0.063219,PD,,PD,0.47242,4.9072,4.4511,0.85398,13.6085,2.3749,0.47541,5.1527,3.396,48.4276,17.8888,277.3628,4.1774,6.5201,1.6351,2.0763,3.9414,8.7921,2.6977,3.4161,0.71063,8.0652,13.1571,21.3147,11.1264,2.9259,5.4492,2.2659,23.0962,7.2907,5.1887,1.3883,2.8883,9.1656,16.7171,3.4575,5.3299,4.0271,1.7321,1.5417,4.7246,13.7808,3.0215,2.6901,9.3975,2.185,2.8063,2.3428,13.6897,1.9131,4.8044,1.5339,16.809,5.6268,8.3801,4.7699,11.5765,8.7991,8.5624,8.6565,3.788,1.5033,4.6609,,,,,,,,,,,,,,,85,,,,136
+3225,2.1652,1.6842,,70-79y,Other,,,17.8449,4.9324,2.5017,2.3463,1.8746,ppmi,,,M,,0.46393,4.8281,4.3907,0.96545,8.6678,1.6595,0.4209,3.1974,2.8905,45.4728,15.9912,262.544,4.1989,5.0041,1.7237,1.9351,3.4431,8.1166,2.4823,3.6253,0.65726,6.6525,12.4645,19.3654,8.2397,2.4315,4.6707,2.0493,16.0564,6.7534,4.5081,1.064,2.4713,6.938,15.159,4.1648,4.8227,3.0612,1.3818,1.407,4.8946,11.3541,3.5066,2.4346,10.8111,2.6699,2.6124,2.1458,11.136,2.3704,4.0835,1.3881,12.8175,4.6255,8.4039,3.9242,11.3049,7.2751,8.5455,8.5114,3.5266,1.6652,4.8657,,,PD,0.069115,PD,,PD,0.41336,4.3854,4.4576,0.9632,10.7587,1.986,0.4245,3.9671,2.8835,43.8849,16.5565,257.8515,3.8236,5.0805,1.8045,1.9222,3.6808,8.178,2.349,3.6568,0.60545,7.5293,12.3836,19.0655,9.0201,2.3078,4.1812,1.941,17.9738,5.5369,4.1802,1.0322,2.443,7.5123,15.9858,3.4319,4.8095,3.3416,1.4865,1.4786,4.2958,11.4316,3.2225,2.3763,8.9005,2.0509,2.581,1.8645,10.5706,1.553,4.1997,1.2987,13.153,4.8713,7.3954,4.6634,10.4412,7.0011,7.3755,8.2953,3.5129,1.3188,4.5494,,,,,,,,,,,,,,,70,,,,137
+3226,0.67309,1.425,,-50y,Other,,,18.6333,4.0242,2.7896,2.164,0.84289,ppmi,,,F,,0.50952,5.0665,4.4296,0.97694,9.4783,1.9595,0.447,4.7222,3.2201,49.4402,14.9015,245.1546,4.0702,6.2239,1.7939,2.2613,4.0529,8.2641,2.508,3.3842,0.37862,7.4518,13.4074,7.5235,8.2217,2.8822,5.0567,2.1335,20.8933,6.9904,4.6297,0.88523,2.3609,7.5175,17.2248,3.3224,4.7351,4.2474,1.8587,1.5023,4.7939,12.376,3.4024,2.2982,11.8106,2.3864,2.8355,2.2803,12.6443,2.0454,4.2779,1.3135,14.1503,4.9559,10.4071,4.0994,10.6708,8.0155,8.7624,8.5358,5.2365,1.62,5.1933,,,PD,0.087242,PD,,PD,0.47168,4.2775,4.3247,0.97616,10.6695,2.3456,0.43482,5.12,3.345,49.0848,14.7838,250.8897,4.3465,6.6174,1.8469,2.0434,4.2925,8.3479,2.6165,3.6582,0.47222,7.678,12.9152,5.683,9.1458,2.7609,5.134,2.1008,22.2506,6.4656,4.7378,1.0488,2.4531,8.0719,16.8605,2.8304,4.5171,3.8653,1.8456,1.5387,4.5627,12.8361,3.3204,2.3837,10.6646,2.5184,2.7739,2.1225,13.86,2.0644,4.4401,1.3086,14.9608,4.9662,8.5514,4.9481,10.3266,7.9147,8.6079,8.6517,4.2508,1.6274,5.0327,,,,,,,,,,,,,,,34,,,,138
+3227,1.2558,1.6633,,50-59y,Other,,,17.9372,4.8022,2.5804,2.2978,1.2681,ppmi,,,F,,0.50286,4.9929,4.4164,0.87678,9.3476,1.762,0.41268,3.4286,3.362,46.748,14.9213,229.6283,4.2328,4.829,1.6394,2.269,3.6004,7.619,2.2847,3.2134,0.40091,5.6546,11.6046,13.1455,8.1778,2.6624,5.1407,1.9818,21.1168,5.4825,4.2651,1.118,2.7321,7.9045,14.3041,2.7795,4.062,4.0586,1.6877,1.3837,4.6466,10.7088,3.236,2.2669,12.361,2.2437,2.6912,2.2105,14.0435,2.0217,4.372,1.2459,17.8663,6.172,8.731,3.7244,11.7531,7.9543,8.2099,7.7718,4.0261,1.7546,4.7919,,,PD,0.082135,PD,,PD,0.44386,4.6627,4.35,0.85183,11.1121,1.9459,0.41717,3.7769,3.389,46.5541,13.944,228.1234,3.6199,5.1727,1.6092,2.1477,3.5746,7.6107,2.1669,3.4787,0.61239,6.1391,11.1591,11.5098,9.0586,2.4871,4.9947,2.0404,20.4575,5.2701,4.0379,1.1698,2.5384,8.5483,13.9481,2.286,4.3609,4.0911,1.699,1.3858,4.2553,11.4488,2.9842,2.2995,9.438,1.9774,2.3705,1.949,13.7403,2.0297,4.2141,1.2562,16.0085,5.7105,8.0231,4.3034,11.3228,7.4721,8.0962,7.4973,3.8332,1.4787,4.5079,,,,,,,,,,,,,,,51,,,,139
+3228,1.0189,2.442,,60-69y,Other,,,21.5439,4.0627,3.388,2.4486,1.2291,ppmi,,,M,,0.49566,4.979,4.5956,1.0158,9.9485,1.752,0.45029,3.9816,2.9136,50.0095,16.0639,279.9218,4.3446,5.7598,1.8379,2.1136,3.3035,7.6535,2.4146,3.7595,0.49325,6.9382,11.7088,9.3453,8.0723,2.5007,4.8895,2.0383,18.8645,6.9569,4.3827,0.8626,2.1208,7.6266,15.4735,3.9595,4.6587,3.4362,1.4028,1.5057,4.8239,11.5075,3.5325,2.5784,11.4832,2.3378,2.4336,2.4973,12.1208,2.1785,4.0339,1.3496,15.1798,5.2784,8.062,4.0944,11.1339,7.9342,9.5543,8.9235,3.6687,1.9753,5.2799,,,PD,0.10033,PD,,PD,0.44377,4.3979,4.3351,0.89947,10.7633,1.948,0.4248,4.0729,2.7818,49.5322,16.4884,276.1353,4.068,5.5108,1.662,2.1321,3.8708,8.1191,2.3126,3.8379,0.44718,8.0095,12.7493,8.2645,8.9936,2.2759,4.6195,1.98,18.3401,5.8908,4.1155,1.0071,2.3742,8.4717,15.4654,3.0204,4.8101,3.4889,1.5362,1.5147,4.4487,11.8179,3.0675,2.5568,10.2097,2.3604,2.4694,2.2092,11.8222,1.9503,4.1281,1.3073,15.8112,5.0844,7.4558,4.672,9.8191,7.1751,9.1813,8.6363,3.5512,1.7268,5.0263,,,,,,,,,,,,,,,67,,,,140
+3229,2.9281,3.9262,,70-79y,Other,,,18.8371,4.6973,2.6404,2.0624,2.6065,ppmi,,,M,,0.43364,5.0535,4.1145,0.98446,10.5011,1.5074,0.41994,4.3394,2.8203,52.3466,14.0996,214.6003,4.0438,5.9195,1.8754,1.8506,3.4455,8.4055,2.393,3.5504,1.5349,7.2211,12.9143,53.6971,8.8303,2.4233,5.0551,1.9862,20.3999,7.3061,4.1036,1.2146,3.0841,7.6569,16.8423,3.6345,4.7167,3.1708,1.5273,1.2156,4.9514,12.2739,3.5732,2.3242,10.9122,2.516,2.5092,2.2867,12.4549,2.1442,4.1319,1.3602,17.6763,5.9019,9.4995,3.9228,11.1699,8.2756,8.2223,8.6794,3.7729,1.564,4.7266,,,PD,0.065612,PD,,PD,0.36907,4.5806,4.1034,0.91002,11.6672,1.6708,0.40335,4.3709,2.7101,51.0648,13.6737,217.7418,4.1972,5.969,1.7298,1.9414,3.7119,8.1709,2.1755,3.6958,1.2718,6.9792,12.5266,49.9929,9.4254,2.293,4.7492,1.8453,20.3667,6.5705,3.7712,1.2666,3.1599,8.2597,15.728,2.8849,4.7211,3.5297,1.6677,1.248,4.3305,12.741,3.1404,2.5853,10.3166,2.2416,2.4614,2.0681,12.7446,2.1029,4.0567,1.3046,16.1759,6.3277,8.0519,4.8054,10.8215,7.9125,7.7786,8.348,3.8035,1.5573,4.5144,,,,,,,,,,,,,,,73,,,,141
+3230,1.8892,2.3849,,70-79y,Other,,,19.4762,5.3853,2.9112,2.6829,1.8658,ppmi,,,M,,0.47157,4.9802,4.9831,0.98187,9.7027,1.7248,0.44957,4.0329,3.3811,52.8514,15.9977,245.5194,4.0775,5.9211,1.9507,2.0286,3.551,8.2048,2.4442,3.4472,0.57139,6.5565,12.4522,19.357,9.5671,2.5311,5.1254,1.8895,19.4649,5.2158,4.5628,1.1256,3.0223,7.3443,14.8012,3.2116,5.68,2.8953,1.5476,1.6043,4.4909,11.7028,3.5516,2.6148,12.0556,2.5748,2.6734,2.5385,11.8965,1.9994,4.6428,1.4338,15.4737,6.0427,9.0502,3.2592,9.8827,7.6724,8.5939,8.6152,3.6472,1.6556,5.1647,,,PD,0.078733,PD,,PD,0.42198,4.179,4.5199,0.94636,10.4186,1.7312,0.43465,3.9453,3.3026,53.6673,15.2333,241.7873,4.1463,5.3334,1.8266,1.8153,3.0202,8.1934,2.1391,3.6563,0.69913,6.8219,12.7474,17.4773,9.3734,2.2946,5.0943,1.8094,18.8616,5.1999,3.928,1.3307,3.1624,7.9535,15.042,2.782,4.7036,3.1985,1.5751,1.5375,4.4933,12.3724,3.1476,2.5284,10.9593,2.123,2.4646,2.0604,13.748,1.8488,4.3154,1.397,16.7723,6.1682,7.4958,3.6727,10.2636,7.5241,8.5589,8.4129,3.153,1.474,4.8099,,,,,,,,,,,,,,,70,,,,142
+3231,0.5803,1.5056,,50-59y,Other,,,17.5687,4.0396,2.8028,2.0762,0.72642,ppmi,,,F,,0.45254,4.2198,3.4962,0.81825,7.6926,1.2983,0.35398,3.2458,2.6883,45.969,14.94,212.0682,3.174,4.6222,1.4656,1.7531,2.7276,6.5248,1.9543,2.9107,0.34349,5.9689,10.1604,6.8792,6.8402,1.8932,4.5187,1.5985,15.1936,5.2856,3.3838,0.78009,2.0402,5.7458,12.4425,2.8767,3.8155,2.828,1.2323,1.3388,3.5017,8.9062,2.917,1.8802,8.7791,2.0081,1.8046,1.8915,8.951,1.748,3.6804,1.1364,10.5383,4.476,7.7159,3.1544,8.1221,6.3621,7.6985,6.7837,3.2509,1.3729,4.6117,,,PD,0.070418,PD,,PD,0.40332,3.5286,3.578,0.76132,8.5285,1.4427,0.37114,3.585,2.6028,46.6262,14.0165,212.6686,3.4466,4.9486,1.439,1.6941,2.8893,6.4006,1.9446,3.0307,0.41514,6.1218,10.4214,8.1914,7.5881,1.8747,4.4565,1.6571,14.7409,4.6059,3.3861,0.80931,2.3031,6.5316,12.5269,2.5348,3.9475,3.2033,1.3794,1.356,3.3226,9.596,2.5917,2.0161,7.7155,1.879,2.0604,1.6905,9.384,1.5625,3.5712,1.1686,10.3624,4.3911,6.8081,3.9266,7.7547,6.1132,7.3971,6.5184,3.0894,1.2829,4.3831,,,,,,,,,,,,,,,56,,,,143
+3232,1.0838,2.0773,,60-69y,Other,,,16.8799,5.1188,2.5889,2.189,1.1562,ppmi,,,F,,0.46477,4.9122,4.4365,0.91081,9.8097,1.4698,0.41132,3.4203,3.2076,43.1906,13.9345,232.6785,4.3729,5.0705,1.8308,2.202,3.3129,7.5624,2.3392,3.3034,0.49917,6.4361,12.7243,12.5754,8.0961,2.1814,5.0659,1.8959,17.6391,5.854,4.0928,1.0274,2.5274,7.2138,16.0775,2.6162,4.6128,3.268,1.4675,1.2875,4.4836,11.4374,3.3713,2.5173,12.2888,2.9139,2.5094,2.3577,11.3379,2.5038,4.3889,1.3301,14.0032,4.8691,9.9128,3.0346,10.4739,8.6449,7.7147,8.7639,3.9501,1.8366,4.4046,,,PD,0.074204,PD,,PD,0.3952,4.0294,4.1512,0.88119,10.4808,1.6826,0.41422,3.6824,3.0762,47.2364,13.946,230.984,4.5687,5.3404,1.7537,2.0741,3.4182,8.2025,2.2082,3.5975,0.78374,5.8947,12.7912,9.5708,9.2159,2.0451,4.9702,1.7997,17.4857,4.9258,3.9805,1.1145,2.5461,7.7571,15.9717,2.2715,4.599,3.6895,1.562,1.3311,4.4407,12.2383,3.2921,2.5015,10.7571,2.3646,2.376,2.1641,11.4053,1.9317,4.1692,1.2546,14.4438,5.1074,7.4161,3.6411,10.0441,7.7842,7.3765,8.5139,3.645,1.8017,4.249,,,,,,,,,,,,,,,68,,,,144
+3233,0.81354,2.4523,,-50y,Other,,,17.6737,4.1728,2.894,2.1414,1.1734,ppmi,,,M,,0.49911,4.8193,4.0997,0.91918,9.101,1.6439,0.40115,3.6671,3.126,49.3381,15.2845,222.3133,4.3389,5.0511,1.6889,1.9122,3.501,7.1506,2.1431,3.2812,0.36152,5.5802,11.0662,8.2726,7.1914,2.3204,4.7061,1.9436,17.9326,5.3587,3.9774,0.9755,2.5094,7.1886,14.0367,2.7575,3.9608,3.2156,1.3879,1.3816,4.587,11.1229,3.1483,2.2587,9.9902,2.5487,2.3791,2.3381,11.81,2.2709,4.3589,1.167,14.6845,5.5102,9.4382,3.1527,8.9488,7.5019,8.2404,8.3686,3.6724,1.841,4.7142,,,PD,0.068018,PD,,PD,0.45196,4.1238,3.9912,0.86279,10.8025,1.8877,0.39492,3.8982,3.1429,49.1513,15.0768,227.5398,3.8594,5.6051,1.6064,1.8498,3.7677,7.2,2.2617,3.5279,0.39701,5.3118,11.4534,7.8478,8.3531,2.3239,4.7598,1.9652,18.3042,3.7838,3.994,0.93236,2.2623,7.8983,15.5594,2.3251,4.156,3.3019,1.6139,1.4152,3.9934,11.2635,2.9019,2.1755,9.4156,2.231,2.4484,1.9885,10.3818,1.8961,4.276,1.1205,14.7925,5.3798,8.7204,3.6244,10.2654,7.6767,8.1434,8.198,3.5752,1.5244,4.5291,,,,,,,,,,,,,,,37,,,,145
+3235,0.89436,1.5467,,60-69y,Other,,,18.006,5.0562,2.6813,2.2795,1.0124,ppmi,,,M,,0.41447,4.8724,4.5589,0.94062,8.6916,1.5324,0.39441,3.9994,2.5934,48.5532,14.7431,234.4632,4.4101,4.8694,1.6914,2.2169,2.9199,7.7248,2.1497,3.2807,0.34519,6.0181,11.2635,9.7449,8.4651,2.5542,4.8439,1.878,17.7369,5.7949,3.9865,0.88152,2.51,7.2988,13.5197,3.015,4.4201,3.314,1.7339,1.3578,4.8522,11.1644,3.2929,2.2648,11.2355,2.4183,2.5508,2.4654,12.3206,2.0642,3.7423,1.1879,13.3024,5.7563,7.4394,3.7297,10.0496,7.1658,8.2065,7.7761,3.7462,1.8944,4.6478,,,,0.057521,CN,,HC,0.36294,4.2476,4.1712,0.90226,9.0354,1.7073,0.38175,4.2187,2.4699,49.9179,14.1188,227.4092,3.7368,5.2516,1.6938,2.0745,3.0149,7.4897,2.0483,3.4776,0.43531,6.5373,12.0724,8.5647,9.255,2.3534,4.4536,1.8213,17.9416,5.121,3.631,0.99602,2.4963,8.2743,14.7176,2.5999,4.5217,3.7348,1.6476,1.3042,4.335,11.3994,3.0888,2.3744,9.2384,2.2497,2.4576,2.0846,12.7456,1.9508,3.5358,1.175,13.8456,5.4809,6.7709,4.3278,8.6627,7.1541,7.8314,8.4216,3.6268,1.5871,4.4426,,,,,,,,,,,,,,,62,,,,146
+3237,0.88205,2.1536,,70-79y,Other,,,16.5002,4.0921,2.7763,2.2397,1.319,ppmi,,,F,,0.46245,4.1201,3.7606,0.76517,8.0452,1.4443,0.38734,2.8912,2.3533,45.8527,13.4276,200.5474,3.5998,4.1481,1.4252,1.9546,2.81,6.9205,2.1637,2.7146,0.41489,5.1284,9.5821,18.3379,6.9682,2.1088,3.8454,1.6701,15.8101,5.1855,3.9148,0.90948,2.084,5.8574,12.3955,2.525,3.9114,2.745,1.3411,1.1282,3.9832,9.8295,2.8068,2.0961,9.6865,1.9717,2.1422,2.0492,11.2062,1.6229,3.9899,1.2731,13.282,4.6983,6.7788,2.9701,9.7178,6.3784,7.2638,6.7294,3.361,1.4165,4.1804,,,,0.072487,CN,,HC,0.38932,3.5157,3.7675,0.77275,8.9153,1.689,0.38582,3.2057,2.3862,45.1795,13.2399,194.7124,3.7273,4.0483,1.503,1.9302,2.9334,6.7065,1.9731,2.8339,0.4701,5.7959,9.1418,17.8039,7.2107,2.053,3.8555,1.59,15.0769,5.0896,3.6729,0.98576,2.2289,6.5933,11.9059,2.3485,3.7331,3.2649,1.3851,1.0656,3.5264,9.2096,2.4878,2.2372,8.9366,1.8494,2.0282,1.7775,11.4893,1.5725,3.9088,1.1581,14.1859,5.1003,6.493,3.5471,8.6219,6.2536,7.1458,6.7002,3.1622,1.3294,3.8882,,,,,,,,,,,,,,,70,,,,147
+3251,0.97905,1.7034,,50-59y,Other,,,17.1968,4.1432,2.526,2.2446,1.1307,ppmi,,,F,,0.39341,4.585,3.8961,0.85521,8.6643,1.5487,0.35247,2.8791,2.683,43.5931,15.4442,229.3759,3.5487,4.2257,1.6097,1.8412,3.0233,6.8691,1.9283,3.0004,0.45006,5.8074,10.3728,8.8742,6.6771,2.22,4.8547,1.7523,18.4961,6.4679,3.6376,0.91341,2.0822,6.3375,13.4566,2.5223,3.9186,3.2736,1.5012,1.3699,4.1082,9.4538,3.0005,2.1139,9.0032,1.9893,2.2428,2.0393,9.639,1.6547,3.8769,1.1259,12.589,4.7596,8.3824,3.4668,10.0394,7.0108,7.8712,6.4393,4.0655,1.3472,4.4138,,,PD,0.071518,PD,,PD,0.34898,4.158,3.7422,0.82606,8.8864,1.773,0.34639,3.322,2.5682,42.8435,15.5805,232.8474,3.7253,4.9228,1.565,1.9581,3.4892,7.1853,1.8907,3.1781,0.54364,5.6536,10.9575,7.822,7.5161,2.17,4.8138,1.7113,17.1105,4.9304,3.4278,0.90615,2.2688,7.1081,13.1041,2.2183,3.9976,3.3792,1.4703,1.3623,3.8079,9.61,2.8138,2.0493,8.4098,1.9592,2.1883,1.6564,10.201,1.5878,3.7863,1.0835,13.2003,4.7857,7.1004,3.6154,9.4183,6.3214,8.0146,6.8429,3.1556,1.1759,4.1543,,,,,,,,,,,,,,,59,,,,148
+3252,1.084,1.6593,,-50y,Other,,,18.9678,4.6931,2.3999,2.0923,1.071,ppmi,,,F,,0.45112,4.6315,3.8586,0.9302,8.7472,1.84,0.37705,2.9282,3.3037,45.4328,16.6766,269.2939,3.9983,4.0487,1.7247,1.764,3.5131,6.9165,2.0417,3.2996,0.53695,5.7413,10.2569,9.9141,6.7239,2.5108,4.9797,1.9039,19.5714,5.4519,4.0689,1.1395,2.6979,6.7249,13.463,2.8116,4.1486,3.6126,1.5225,1.533,4.552,10.5975,3.194,2.1748,10.4128,2.5473,2.6032,2.0937,11.2437,2.0327,4.073,1.0119,14.1015,5.1894,9.6712,2.9926,9.8895,7.8027,8.6291,7.6337,4.0356,1.5321,4.713,,,PD,0.071439,PD,,PD,0.3797,3.9345,3.801,0.91593,9.9595,2.0198,0.36207,2.9602,2.8971,45.612,16.5362,269.6472,3.7597,4.4381,1.774,1.7126,3.6981,7.3548,2.0147,3.6546,0.783,5.8572,11.0718,8.4901,7.673,2.3901,5.0381,1.7849,19.0603,4.248,3.8335,1.0584,2.729,7.5352,14.0235,2.5618,4.089,3.2834,1.4534,1.5158,4.4877,11.6424,3.1435,2.1192,8.9385,2.2123,2.4129,1.8476,11.8573,1.9156,3.7304,0.94946,14.1098,4.8904,7.8653,3.2981,9.9579,7.2835,8.4532,7.7282,3.5217,1.3319,4.6038,,,,,,,,,,,,,,,47,,,,149
+3253,0.61584,1.3263,,-50y,Other,,,16.4986,3.6113,2.1208,1.7504,0.69474,ppmi,,,F,,0.3173,3.3645,3.1347,0.71576,7.989,1.3591,0.26997,2.2437,2.3692,38.6661,15.0924,207.1884,3.1618,3.2559,1.3646,1.4477,2.7199,5.8572,1.5568,2.7994,0.45354,4.8662,8.4269,9.5421,5.6215,1.923,3.6892,1.4189,14.4015,5.12,3.0066,0.74055,1.7464,5.1493,10.6427,2.1477,3.3243,2.3638,1.1135,1.3277,3.3619,8.2073,2.528,1.8192,9.0518,1.7368,1.8658,1.7769,8.9769,1.5148,2.9852,0.77532,11.0066,3.739,7.4765,2.8412,8.4261,6.3185,7.9356,6.0155,2.6751,1.1767,4.3235,,,PD,0.057009,PD,,PD,0.29339,2.8417,3.1388,0.68623,8.3998,1.5208,0.26482,2.5153,2.3288,38.0404,14.3968,209.4129,2.9633,3.5969,1.3937,1.5548,2.9025,6.172,1.5508,2.9999,0.44406,4.7,8.8008,6.5116,6.1632,1.865,3.5214,1.3316,14.0672,4.1111,2.9102,0.95635,1.9121,5.5079,10.5452,1.9443,3.3072,2.6826,1.2026,1.3617,3.1232,8.0562,2.4476,1.687,8.0636,1.51,1.8699,1.5319,9.0823,1.3273,3.1336,0.73741,10.5019,3.6627,6.3715,3.4018,7.4723,5.9246,7.5274,6.0937,2.6518,1.0585,4.3343,,,,,,,,,,,,,,,43,,,,150
+3254,1.1356,1.8794,,50-59y,Other,,,15.5973,4.3723,2.5674,2.4051,1.7106,ppmi,,,M,,0.41609,4.8338,4.1778,0.85819,10.7607,1.749,0.35828,3.0521,2.9834,46.3162,16.3634,255.4506,3.7316,4.6408,1.7267,1.9633,3.7343,7.7356,2.16,3.1286,0.68592,6.2222,10.3784,17.1934,7.4542,2.3979,4.808,1.9794,19.5554,6.2284,3.9546,1.1976,2.7389,7.4363,12.9644,3.3657,4.2446,3.4733,1.4282,1.4778,3.9484,10.137,3.2329,2.3384,10.5913,2.5172,2.4389,2.2104,10.7429,2.0045,4.2294,1.0909,14.1742,5.1477,9.0667,3.3045,10.3645,6.9928,7.7588,6.949,3.8128,1.463,4.363,,,PD,0.060952,PD,,PD,0.35626,3.9983,4.1984,0.80785,11.1605,2.0042,0.3525,3.5167,2.6528,46.3067,15.0112,250.4401,3.5998,5.36,1.7157,1.9723,3.7184,7.7897,1.9363,3.1573,0.56839,6.3664,10.1123,13.8377,8.2027,2.0927,4.6024,1.8336,18.4368,5.4587,3.5547,1.2154,2.8263,8.5963,12.0677,2.7447,4.1952,3.2968,1.4386,1.4516,3.5442,10.2383,2.9748,2.3888,9.0337,2.0999,2.2675,1.8726,10.38,1.553,3.9023,1.0288,14.5841,5.2231,7.7829,4.9611,10.939,6.3471,7.8948,6.9769,3.1854,1.2915,4.0877,,,,,,,,,,,,,,,51,,,,151
+3257,1.2029,2.7424,,50-59y,Other,,,19.59,4.846,2.7425,2.4252,1.1583,ppmi,,,F,,0.46098,5.0025,4.1898,0.90464,9.4213,1.7326,0.38782,2.6619,3.0519,49.0829,18.5338,279.6457,4.0537,3.8038,1.7468,1.906,3.5778,7.5578,2.275,3.4036,0.59212,5.4305,11.0358,17.4266,7.2076,2.5289,5.3457,1.9939,19.7325,6.0562,4.2351,1.0451,2.4214,7.4279,14.4197,2.7635,4.1975,3.4534,1.5275,1.6178,4.2207,10.1027,3.3349,2.3862,10.6132,2.1231,2.5159,2.2316,11.2688,1.6591,4.1964,1.3196,15.481,5.3684,8.0036,3.276,11.394,7.2952,8.8599,8.1725,4.1937,1.3782,4.8598,,,,0.077769,CN,,HC,0.36884,4.2929,4.3199,0.85613,9.521,1.8443,0.40377,2.9066,2.4886,49.7111,17.3077,284.4999,3.8237,4.339,1.6442,2.0855,3.7447,7.8127,2.1405,3.6689,0.70648,6.4137,11.347,13.7311,7.7819,2.2517,4.8844,1.8074,19.2716,5.015,4.0672,0.95258,2.7216,7.8958,14.536,2.3152,4.2175,3.7918,1.3792,1.6857,4.0505,11.189,2.9844,2.304,9.78,2.0616,2.4757,1.9251,10.8568,1.6724,3.7932,1.3091,15.9679,5.4107,6.9649,3.506,10.1929,7.4502,8.8737,7.7874,3.6244,1.4121,4.6144,,,,,,,,,,,,,,,53,,,,152
+3260,1.2915,1.4818,,60-69y,Other,,,16.0388,4.8178,2.5919,2.2351,1.4627,ppmi,,,F,,0.39936,4.399,4.2062,0.78362,8.4845,1.652,0.37388,3.1068,3.0135,48.2669,14.7098,212.2144,4.0487,4.6687,1.5665,1.8214,3.4356,6.934,1.8862,2.8428,0.52678,6.3203,10.5401,16.5413,6.701,2.4079,4.6082,1.7376,17.777,6.065,3.8631,1.0883,2.279,6.5744,13.1133,3.1813,3.9689,3.3154,1.4615,1.2007,3.9428,10.6862,2.9955,2.1694,10.4681,2.6496,2.4421,2.06,11.3517,2.1541,3.9024,1.0236,15.3412,4.9527,8.6639,3.9272,11.2545,6.9935,7.4774,7.2882,3.5157,1.5406,3.8938,,,,0.061037,CN,,HC,0.28907,3.8708,3.7615,0.77687,9.3066,1.7358,0.34639,3.537,2.6038,46.3355,14.276,212.2033,3.6223,5.3265,1.5842,2.0648,3.466,7.0081,1.7862,3.0286,0.49201,6.0079,10.7826,14.7463,7.6658,2.1694,4.3441,1.6017,18.2065,4.8894,3.5058,1.0812,2.5803,7.6037,13.9037,2.7619,3.8991,3.4105,1.4415,1.16,3.6729,11.0505,2.7537,2.0159,9.7888,2.0924,2.2539,1.7026,10.4316,1.6303,3.6527,0.95665,15.5822,5.1819,7.8723,4.7175,10.004,7.1447,7.487,7.1323,3.2462,1.2433,3.7253,,,,,,,,,,,,,,,63,,,,153
+3264,0.94067,1.7765,,60-69y,Other,,,17.453,4.27,2.507,2.176,0.99576,ppmi,,,F,,0.34953,4.2645,3.8601,0.89026,8.1256,1.5833,0.33996,2.7495,2.599,44.1216,15.8509,227.622,3.3769,3.8126,1.8001,1.715,3.601,6.8067,2.0923,3.1558,0.39228,5.4653,9.9345,11.5458,6.4731,2.225,4.072,1.6996,16.4537,5.0483,3.6227,0.92914,2.0012,6.4973,12.3852,2.7818,3.6582,2.9769,1.221,1.4268,3.5549,9.2125,3.1505,2.2684,9.1941,2.5202,2.1272,2.1309,10.0057,2.0804,3.7207,0.94428,13.0797,4.5962,7.9807,2.7023,8.5263,7.2014,7.7626,6.8875,3.1353,1.4608,4.4007,,,,0.059723,CN,,HC,0.31732,3.6497,3.6779,0.90214,8.3823,1.641,0.34547,2.8299,2.4059,44.0648,14.963,230.855,3.4647,4.3567,1.7894,1.849,3.3174,6.8398,2.0535,3.48,0.50722,5.4677,10.0216,10.1051,7.6889,2.0551,4.1231,1.6974,16.2171,3.7559,3.584,0.86728,2.2323,7.1625,12.6101,2.596,4.1975,3.2919,1.4109,1.4614,3.4672,9.6914,3.0035,2.1217,7.9629,1.8885,2.245,1.9373,10.3946,1.5919,3.6033,0.96798,12.3324,4.5316,6.5307,3.5452,7.9759,6.7267,7.8772,7.6471,3.2516,1.3447,4.3042,,,,,,,,,,,,,,,60,,,,154
+3267,1.4274,1.9706,,70-79y,Other,,,18.6023,4.2359,2.5603,2.2292,1.323,ppmi,,,M,,0.37956,4.5725,4.4813,0.85128,8.4255,1.5758,0.3676,2.5297,2.8552,42.7358,19.5942,247.1889,4.207,4.1162,1.5583,2.0255,3.2837,6.896,2.039,3.0418,0.72754,5.8807,10.8157,11.7516,6.5801,2.3008,5.15,1.8191,16.6148,6.6008,3.9818,1.0634,2.5989,6.9553,13.6746,2.5687,3.8914,2.9731,1.3358,1.4268,3.9732,9.5927,2.956,2.3831,9.3986,2.6258,2.403,2.2021,10.9649,2.3282,3.6807,1.1378,14.9123,5.301,7.7613,3.1711,9.6517,7.1664,8.3894,6.5247,3.2205,1.8391,4.5455,,,PD,0.056823,PD,,PD,0.31614,4.2048,4.3913,0.7893,8.9094,1.7758,0.35347,2.9525,2.543,43.2694,16.1996,247.409,3.7818,4.9365,1.5488,2.2524,3.425,6.7083,1.9118,3.0415,0.61043,5.5196,10.7675,9.3157,7.1733,2.2637,4.931,1.6841,16.0624,4.3609,3.4373,1.15,2.4375,7.1528,12.9752,2.157,3.8066,3.1412,1.6721,1.399,3.782,10.2806,2.5527,2.3029,8.2485,2.2854,2.2049,2.1232,10.3399,2.1212,3.2553,1.0559,15.0958,4.9801,6.4859,3.5512,7.9746,7.1318,8.604,6.9038,3.378,1.5963,4.2846,,,,,,,,,,,,,,,71,,,,155
+3268,1.7693,2.0176,,60-69y,Other,,,19.8046,5.9176,2.75,2.5723,1.63,ppmi,,,M,,0.47577,4.8916,4.5224,0.93525,9.344,1.5891,0.43675,2.7153,2.874,50.6372,20.0079,258.3992,4.6773,4.4147,1.8592,1.9924,3.8994,8.1982,2.2183,3.3601,0.85776,8.2769,12.9426,17.2024,7.8709,2.3675,5.1554,1.8202,19.9804,6.9842,4.0496,1.2297,2.4221,7.5943,16.0903,3.7643,5.1978,3.1349,1.432,1.4421,4.3715,10.5644,3.5283,2.5918,11.9918,2.9076,2.5293,2.4766,13.0738,2.3943,3.9389,1.2293,16.4122,5.4871,10.2449,3.9648,10.9517,8.7147,8.5262,8.7561,3.6138,1.7067,5.1546,,,PD,0.064283,PD,,PD,0.40595,4.1542,4.2238,0.94121,10.5777,1.9807,0.39525,3.3764,2.9376,52.3843,18.3851,260.246,3.9728,5.5361,1.7877,2.0405,3.901,8.2402,1.8581,3.4363,0.86139,7.259,13.3408,16.3156,9.0436,2.2927,4.6192,1.6607,20.1311,6.0628,3.7181,1.138,2.7887,8.4207,15.2588,3.1582,4.6882,3.684,1.4656,1.4869,4.1578,11.1466,3.1158,2.3746,10.4649,2.1637,2.4653,2.1089,13.093,1.8846,4.0486,1.0265,15.9746,5.7739,7.6291,4.7907,10.3072,8.2079,8.4808,8.7635,3.1688,1.4959,4.8825,,,,,,,,,,,,,,,62,,,,156
+3269,1.3098,1.8208,,60-69y,Other,,,19.9144,4.9764,2.5089,2.2696,1.1963,ppmi,,,F,,0.48077,4.8735,4.2187,0.84707,8.8453,1.6868,0.40348,3.3413,3.0669,47.9127,16.8478,248.744,4.4961,4.3301,1.4939,2.0723,3.356,7.3359,2.0395,3.1347,0.42941,6.8956,11.1121,16.1304,7.0915,2.6659,4.7709,1.9703,19.6585,6.3817,4.0983,1.0951,2.5666,7.3001,13.611,2.8219,4.387,2.9497,1.6159,1.5165,4.0386,10.2163,3.1077,2.4857,10.363,2.8362,2.594,2.3115,10.5724,2.1986,4.1044,1.2656,14.4381,5.3761,7.8398,3.067,10.6569,7.1099,8.8779,7.6975,4.0644,1.863,5.0506,,,PD,0.07198,PD,,PD,0.39411,4.1164,4.3038,0.87552,8.5972,1.9395,0.3982,3.2045,2.4176,48.9623,15.6938,251.018,3.8452,5.3637,1.5879,2.115,3.8452,7.5965,1.9648,3.4004,0.4741,5.8235,11.6109,14.5333,7.9598,2.5518,4.7184,1.9185,19.0633,4.7595,3.8464,1.1744,2.6689,7.7422,13.4968,2.4785,4.2505,3.2041,1.8969,1.621,3.7537,10.6308,2.8785,2.3335,9.4728,2.2889,2.6933,1.9569,11.69,1.8994,3.9468,1.2504,15.8157,5.2731,7.5067,3.6288,9.8348,7.4793,8.9311,7.4344,3.709,1.4073,4.7747,,,,,,,,,,,,,,,61,,,,157
+3270,1.1729,1.9999,,50-59y,Other,,,16.5919,4.6486,2.4365,2.058,1.4198,ppmi,,,M,,0.43298,4.5785,3.8378,0.77334,8.0976,1.5203,0.37237,2.541,2.699,41.9349,15.9072,243.8455,3.7163,4.0669,1.4751,1.7984,3.1778,6.547,1.8733,2.8333,0.39857,5.3006,9.2708,13.605,6.6263,2.1216,4.2125,1.7898,16.68,5.2412,3.7063,0.82715,2.0142,6.5274,11.3961,2.8583,3.7572,2.8411,1.2735,1.4013,3.5446,8.9693,3.0206,1.9974,9.3651,2.2716,2.4356,1.9263,9.9583,2.2965,3.6748,1.0622,12.9402,4.4291,7.8458,3.2231,9.4832,6.6736,7.5221,6.57,3.3886,1.5133,4.4522,,,,0.065984,CN,,HC,0.3164,3.7416,3.8443,0.77367,8.3331,1.647,0.33328,3.2184,2.4786,42.61,15.2832,243.5112,3.3239,4.8545,1.4898,1.9508,3.1783,7.1586,1.756,2.9586,0.53015,5.9385,10.1112,12.2126,7.445,2.0603,4.0553,1.6694,16.2934,4.4796,3.3332,0.85789,2.2718,6.7643,11.8845,2.4523,3.9094,2.8903,1.3957,1.4988,3.3592,9.6056,2.693,2.0361,7.2107,1.8884,2.2987,1.7662,9.8246,1.6808,3.5003,0.97837,13.3753,4.1347,6.0085,3.7372,9.5254,6.3683,7.5242,6.6615,3.1317,1.2814,4.3176,,,,,,,,,,,,,,,55,,,,158
+3271,1.4504,3.326,,50-59y,Other,,,17.6786,5.3311,2.6461,2.3325,1.4384,ppmi,,,M,,0.4371,4.336,4.4399,0.90669,8.1833,1.6012,0.41157,2.2483,2.8181,45.0012,18.0323,271.0765,3.8615,3.5892,1.7528,1.9529,3.2542,7.4835,2.0839,3.0673,0.84153,5.6614,11.4293,17.2475,6.75,2.2777,4.7518,1.8014,18.2052,5.5578,3.8464,0.9112,2.0154,6.6383,13.7173,3.2711,3.7479,3.0359,1.3661,1.7251,4.285,9.9907,3.1083,2.6238,10.2522,2.265,2.3058,2.4195,10.0184,2.0457,4.9375,1.1121,12.6981,4.2667,8.2082,3.2923,9.2797,7.4432,7.9342,7.8201,3.4433,1.697,4.9403,,,,0.071182,CN,,HC,0.27437,3.8816,4.3189,0.88837,8.6572,1.6364,0.39689,2.5403,2.5225,45.3211,16.5235,274.4502,3.6593,3.9768,1.8253,2.1327,3.4764,7.7839,1.9593,3.3427,0.72234,6.0629,11.6669,15.0512,7.4627,2.0215,4.5142,1.6906,16.9928,4.7118,3.3392,1.0573,2.3184,6.9187,12.4973,2.6856,4.0417,3.237,1.5848,1.6057,3.8467,10.2676,3.0665,2.3927,8.6416,2.1359,2.2071,2.07,10.0476,1.8147,4.9613,1.0394,13.884,4.6885,6.9415,3.9589,9.0834,6.9593,8.1901,7.9574,2.9908,1.4825,4.6697,,,,,,,,,,,,,,,58,,,,159
+3272,0.86137,2.0055,,-50y,Other,,,22.5482,5.281,2.8605,2.3405,1.0399,ppmi,,,M,,0.48142,5.3021,4.737,0.99092,9.2624,1.6403,0.43856,2.3984,3.1416,52.8893,20.8225,299.234,4.3457,3.8773,2.0032,2.0471,3.3631,8.2329,2.4687,3.7038,0.54133,6.372,12.5132,7.708,6.9255,2.297,5.3254,2.0989,19.048,6.2567,4.4629,0.92399,2.5649,7.1824,15.406,3.1677,4.3326,3.1693,1.3879,1.7073,4.541,10.7127,3.7842,2.6317,9.9346,2.7211,2.4478,2.5949,11.6054,2.3991,4.6219,1.3536,15.6983,5.2579,8.9577,3.3891,11.2988,8.17,9.3267,9.2896,3.733,1.7283,5.5051,,,PD,0.079564,PD,,PD,0.45094,4.2325,4.7817,0.91543,10.5947,1.9838,0.44032,2.8222,2.8376,52.6964,19.6996,307.6202,4.1242,4.072,1.9535,2.0618,3.9553,8.5032,2.3629,3.7735,0.54464,6.7557,12.7277,7.0008,7.706,2.5244,4.8939,2.0312,19.432,4.9626,4.3044,1.1435,2.7616,8.1624,15.418,2.5072,4.3139,3.7652,1.7839,1.7346,4.2656,10.9031,3.473,2.3526,8.4213,2.4993,2.8855,2.1324,10.6729,1.9584,4.4383,1.2912,14.7005,4.7688,7.6968,3.9896,10.1785,7.7436,9.3059,8.623,3.1396,1.5197,5.0712,,,,,,,,,,,,,,,39,,,,160
+3274,2.7078,3.0835,,+80y,Other,,,19.1826,4.8347,2.0829,2.0966,2.2385,ppmi,,,M,,0.40793,4.3686,3.9667,0.75962,8.216,1.0734,0.36707,2.3958,2.4799,41.4225,21.9121,325.6604,3.662,3.7978,1.4268,1.4499,2.706,6.2289,1.8064,2.7963,1.2089,5.9125,10.1324,29.8956,6.5646,1.6182,4.0813,1.467,11.8207,5.6315,3.1055,1.1198,2.6469,6.2609,12.9616,3.5046,3.5368,1.7325,0.87005,1.7108,3.8788,9.8855,2.9638,2.676,8.7269,2.2056,1.7223,2.2932,7.9534,1.8006,4.0654,1.3183,10.1135,4.5891,7.5812,3.0248,9.0689,6.3144,7.9097,6.0901,2.2755,1.3967,5.3218,,,,0.085167,CN,,HC,0.3349,3.8851,3.9292,0.7776,8.7154,1.4046,0.37357,2.8772,2.4172,41.221,21.2066,339.0075,3.2387,4.4353,1.4547,1.7366,2.9186,6.4418,1.6385,2.7205,1.2778,5.9792,10.1309,29.5879,7.1979,1.8681,3.9177,1.4926,11.8486,4.589,3.0136,0.99535,2.5626,6.4935,11.8233,2.7909,3.7915,2.2225,1.2401,1.751,3.4094,9.7594,2.6309,2.4394,7.5581,1.9925,2.0545,2.0275,7.7632,1.4395,4.0416,1.1841,9.5582,4.3753,6.0474,3.3694,8.5014,5.3301,7.6381,6.4239,2.516,1.3436,4.995,,,,,,,,,,,,,,,81,,,,161
+3275,1.4152,2.9072,,60-69y,Other,,,20.6867,5.4008,2.7809,2.7435,1.5826,ppmi,,,M,,0.47551,5.1706,4.7777,0.92518,9.5785,1.7433,0.42542,2.4626,3.51,49.6414,17.3406,255.224,4.1147,4.4907,1.6889,2.053,3.544,8.2834,2.2849,3.3919,0.58683,7.8055,12.2907,20.1341,7.9744,2.4165,5.5394,1.9345,19.1754,7.0319,4.1816,1.0841,2.518,7.8871,15.9105,3.4558,4.9907,2.9751,1.6401,1.666,4.9279,11.9166,3.5502,2.6445,10.4305,2.298,2.5282,2.7845,11.2331,1.9914,5.0332,1.3296,15.0921,6.1074,8.447,3.6947,10.2669,7.6313,8.0074,8.9947,3.6562,1.7049,4.8417,,,PD,0.075281,PD,,PD,0.42048,4.2375,4.7331,0.90821,10.1645,1.8386,0.39991,3.1089,3.162,49.0031,16.8639,253.8868,3.7366,5.6976,1.6794,2.1583,3.8335,7.865,2.1881,3.6233,0.66203,7.3106,12.025,17.9222,9.0162,2.3893,5.2392,1.8592,19.6595,5.3479,3.8367,1.1783,2.8516,8.5879,14.6614,3.34,4.9883,3.4975,1.6216,1.5942,4.2506,12.181,3.1134,2.4241,8.9855,2.164,2.3676,2.1329,10.5287,2.078,4.5473,1.2586,15.2683,6.016,7.425,4.6227,10.6498,7.9077,8.4257,8.6942,3.6298,1.4358,4.3939,,,,,,,,,,,,,,,69,,,,162
+3276,0.93587,1.7915,,50-59y,Other,,,16.1015,4.4413,2.2928,1.9926,1.0071,ppmi,,,F,,0.45183,5.2055,4.2818,0.84329,9.898,1.61,0.37499,2.2336,2.713,44.0455,15.3371,228.5965,3.6832,3.9644,1.6117,2.1829,3.3501,7.3949,2.1783,3.1915,0.35373,6.1626,11.1094,6.3025,6.5907,2.3056,5.2835,1.9913,18.5547,6.7991,4.0249,0.9994,2.4237,7.3264,14.6906,2.5388,4.1445,3.3318,1.35,1.4063,4.3262,10.5203,3.1067,2.2881,10.7737,2.2304,2.3449,2.2785,11.4238,1.8941,3.6431,1.1815,14.8575,5.7057,9.4034,3.0816,10.6385,7.9066,7.737,7.3864,3.7938,1.4473,4.3447,,,,0.07527,CN,,HC,0.37274,4.1632,4.0338,0.88908,10.1613,1.8527,0.3881,2.6404,2.6658,44.8421,13.9512,232.9051,4.0827,4.5667,1.6781,2.2208,3.631,7.6035,2.1976,3.5186,0.44437,5.9217,11.6148,6.0314,7.7173,2.2115,4.9605,1.8364,18.5716,4.321,3.9216,1.1938,2.4639,7.7748,14.4315,2.2334,4.0618,3.7674,1.4861,1.4308,4.3077,11.2224,3.0442,2.2481,10.0504,2.1758,2.3674,1.9641,11.7524,1.9142,3.6051,1.1938,14.984,5.3404,8.4874,3.5752,9.368,8.1879,7.7178,7.4363,3.4993,1.4124,4.1048,,,,,,,,,,,,,,,55,,,,163
+3277,1.2942,2.5916,,60-69y,Other,,,19.1232,4.5821,2.5506,2.1933,1.1355,ppmi,,,M,,0.43953,4.7366,4.2923,0.862,8.7447,1.5436,0.37845,2.6085,3.4641,46.7681,18.5083,279.4438,3.8917,3.7757,1.6049,1.7964,3.6068,7.2043,2.1419,3.2365,0.69099,5.7786,10.8033,16.7063,7.4358,2.326,4.6766,1.9014,18.3782,5.6586,3.9283,0.93685,2.2522,7.0022,13.2712,3.0963,4.1557,3.2451,1.4331,1.8211,4.3193,10.2227,3.1959,2.3153,9.9347,2.4584,2.6026,2.153,10.9021,2.2716,4.3727,1.1614,14.5111,5.1529,9.0977,3.2081,10.9946,6.8703,8.3719,7.458,3.6497,1.5797,5.1024,,,,0.070778,CN,,HC,0.27002,3.8965,3.9356,0.86216,10.02,1.9235,0.36965,3.0211,3.3304,46.6365,17.312,278.871,3.5489,4.3185,1.5809,1.8261,3.8084,6.9506,1.9668,3.371,0.80413,6.9598,10.6292,17.4324,8.043,2.2286,4.4211,1.7284,17.7366,5.2872,3.8002,0.93732,2.4464,7.4959,13.2257,2.8142,4.4399,3.3771,1.457,1.7219,4.0029,10.9957,2.7899,2.3092,8.7785,2.0917,2.3901,2.0074,11.4382,1.6855,4.2043,1.1011,14.1247,4.8213,7.7148,3.9528,10.4492,6.9176,8.8638,7.4332,3.1716,1.3657,4.7408,,,,,,,,,,,,,,,66,,,,164
+3278,1.6975,2.1902,,60-69y,Other,,,21.0316,4.9822,2.8678,2.1698,1.15,ppmi,,,M,,0.4291,4.7204,4.4558,0.89081,10.1078,1.8235,0.40291,2.7547,2.6754,48.3133,19.1257,283.8437,4.3427,4.1508,1.679,1.9796,3.6992,7.8576,2.2105,3.1653,0.53202,6.7663,12.0449,12.6342,7.3542,2.3393,5.0071,1.9516,19.0175,6.7129,4.3278,1.3358,2.5734,7.2051,14.8418,3.4154,4.6498,3.0676,1.3698,1.5218,4.9297,11.9213,3.1776,2.554,12.3299,2.3672,2.551,2.3842,13.4388,2.5875,4.3817,1.271,15.1768,5.3429,9.4293,3.7694,11.6927,7.807,8.4016,8.0444,3.7326,1.8859,5.2858,,,PD,0.075408,PD,,PD,0.39536,4.2262,4.4882,0.8889,10.5389,2.0223,0.38512,3.3802,2.7112,48.1424,18.0911,283.3529,4.0279,4.8243,1.7421,1.989,4.1394,7.5905,2.1076,3.3728,0.46872,6.9399,12.0714,11.303,7.5994,2.3776,5.007,1.9528,19.4478,5.5058,3.8428,1.141,2.6164,7.5629,15.5397,3.0425,4.7181,3.4328,1.6108,1.6224,4.4153,12.3664,2.8721,2.4194,11.0184,2.2566,2.3059,1.9975,10.8748,1.7651,4.1716,1.2093,15.0144,5.0607,8.3727,4.315,11.1728,7.4557,8.5729,7.6114,3.5147,1.3644,5.0803,,,,,,,,,,,,,,,66,,,,165
+3279,1.3258,2.6576,,60-69y,Other,,,18.8254,5.0462,2.3189,2.3483,1.4844,ppmi,,,M,,0.47104,5.2202,4.8624,0.89327,9.2642,1.6978,0.38796,2.8965,2.9734,49.273,18.2017,277.4723,4.369,4.4451,1.8012,2.2361,3.4776,7.5308,2.3426,3.3118,0.46584,6.6496,11.118,10.0577,7.6714,2.6102,5.2279,2.017,18.3709,6.2251,4.3907,1.1819,2.8622,7.8249,14.0226,3.4406,4.56,3.3265,1.6505,1.6986,4.5217,10.5753,3.4137,2.6584,10.9359,2.5421,2.7791,2.5013,13.5767,2.1079,4.2014,1.3607,14.6474,5.7932,8.9916,3.5404,11.0379,7.5,9.296,7.7537,3.5931,1.714,5.1178,,,PD,0.084465,PD,,PD,0.41001,4.6013,4.8093,0.89292,9.8357,1.9208,0.39774,3.4974,2.8862,48.6635,17.3604,284.9911,4.1749,5.1557,1.8023,2.2525,3.6936,7.2991,2.2834,3.5384,0.64277,7.0564,11.1194,12.681,8.3073,2.509,5.0817,1.9421,18.3485,4.7747,4.1235,1.2537,3.0227,8.0818,14.6302,2.9929,4.4057,3.5446,1.9277,1.733,4.1437,11.5704,3.0646,2.6485,9.673,2.2851,2.6722,2.1373,12.0744,2.0353,4.7687,1.2605,13.3344,6.0173,8.1559,3.8575,9.1961,7.7368,8.8828,8.037,3.8097,1.5138,4.7708,,,,,,,,,,,,,,,63,,,,166
+3280,1.2543,2.8135,,-50y,Other,,,20.2014,6.1053,3.0412,2.5149,1.4784,ppmi,,,M,,0.49503,5.3132,4.4599,0.93389,10.9408,1.7482,0.44499,2.7241,3.0474,56.0814,18.5597,267.9373,5.0522,4.5724,1.9117,2.1455,3.5717,9.0133,2.3663,3.5106,0.51998,7.5599,12.9747,12.1677,8.2448,2.6522,5.26,2.0835,20.5422,7.0971,4.2785,1.2161,2.7043,7.7594,15.8811,3.6079,5.2845,3.6428,1.6968,1.4933,5.0901,12.2944,3.6184,2.6238,11.337,3.2085,2.8551,2.6198,12.2493,2.6392,4.6981,1.328,15.5864,5.4376,11.1912,4.3294,13.3895,7.9211,9.5025,9.0513,4.2682,2.1553,5.2036,,,PD,0.074963,PD,,PD,0.41996,4.6372,4.3112,0.91618,13.1258,2.0805,0.42558,3.33,2.8507,54.5817,16.8585,269.2503,4.5919,5.9831,1.8217,2.2205,3.7897,9.1347,2.2882,3.7183,0.65768,8.2892,13.659,12.588,9.9443,2.491,5.1909,2.0054,20.8552,6.2751,4.0419,1.0604,2.6918,8.9355,16.275,3.276,5.4147,3.6964,1.7754,1.6055,4.6033,13.1079,3.1459,2.6108,9.6849,2.5794,2.4824,2.2502,12.0782,2.2281,4.5496,1.2507,14.964,5.8281,9.7067,5.0717,12.4834,8.6173,9.4309,8.9667,3.8661,1.6147,4.8872,,,,,,,,,,,,,,,48,,,,167
+3281,1.0769,1.6969,,50-59y,Other,,,16.2435,5.0662,2.5375,2.3554,1.6118,ppmi,,,M,,0.44441,5.0031,4.2462,0.87627,10.4965,1.5589,0.36174,2.2574,2.8048,47.433,17.0438,239.5124,3.9854,3.7067,1.7033,1.987,3.3261,7.9814,2.0183,3.5139,0.59273,6.7208,11.8355,15.1335,7.0291,2.549,4.7839,1.813,18.1748,6.7088,3.8515,0.87326,2.1962,6.7214,15.3567,3.1527,4.8233,2.9725,1.58,1.441,4.288,10.5226,3.3845,2.322,10.8511,2.3202,2.7356,2.2878,11.1051,1.9187,3.7758,1.21,13.522,4.9839,8.7675,3.6509,11.3972,7.519,7.4543,7.7593,3.9187,1.4891,4.5433,,,PD,0.06199,PD,,PD,0.35582,4.5031,4.0714,0.84533,11.6387,1.7247,0.3621,2.5772,2.6565,45.9983,16.7768,237.5328,3.939,4.4553,1.6945,2.0939,3.4764,8.1658,1.9752,3.3347,0.56759,6.4183,12.0968,15.5951,7.55,2.3935,4.7649,1.7149,17.5451,5.2854,3.4619,0.76022,2.0899,7.1744,15.1194,2.4683,4.6946,3.7721,1.7029,1.4161,3.8944,10.5786,3.0119,2.2751,8.7206,2.3705,2.3049,1.9126,10.227,1.9196,3.7142,1.1438,14.389,4.8303,7.6479,4.0547,10.983,7.4812,7.2817,7.5587,3.8782,1.5231,4.3472,,,,,,,,,,,,,,,57,,,,168
+3282,1.469,1.8793,,60-69y,Other,,,17.7321,4.4769,2.7149,2.388,1.1522,ppmi,,,F,,0.44577,4.4292,4.3462,0.77743,8.2637,1.5459,0.3977,2.5002,3.0568,45.4342,16.7956,233.5247,3.3704,3.8898,1.5023,1.8091,2.7648,6.7078,1.9525,2.843,0.46461,4.8231,9.9483,10.5724,6.2441,2.2957,4.4462,1.6826,17.432,5.262,3.9331,0.8243,2.1104,6.6061,12.0586,2.3892,3.8048,3.0085,1.3798,1.4409,3.9817,9.729,2.735,2.3822,8.6318,2.2426,2.4662,2.075,9.9042,1.9711,4.2792,1.2094,11.8685,4.9447,7.8749,3.0483,9.3371,6.0747,7.9602,6.5714,3.646,1.6046,4.6895,,,PD,0.067343,PD,,PD,0.3704,3.3637,4.1403,0.71106,8.2073,1.7287,0.35442,2.9421,2.8768,45.125,16.1285,238.5327,3.5197,4.2823,1.4512,1.9684,3.1889,6.4507,1.7951,3.1813,0.535,4.7932,9.7583,9.8841,7.3684,2.0941,4.4528,1.5963,18.2722,3.9023,3.5717,0.81925,2.3155,7.5265,12.3038,2.0154,3.6893,3.3688,1.4216,1.495,3.9605,9.9583,2.7358,2.3218,7.0508,1.9518,2.3623,1.8329,10.1703,1.7987,3.968,1.0543,12.6867,4.7948,7.3255,3.3975,8.1141,6.938,8.0417,7.0997,3.1563,1.2243,4.3244,,,,,,,,,,,,,,,62,,,,169
+3284,1.2368,2.2893,,60-69y,Other,,,15.9045,3.4291,2.1905,1.9599,1.1814,ppmi,,,F,,0.38022,4.2907,3.3335,0.76903,8.0053,1.4596,0.33499,2.234,2.9118,39.6692,15.1666,235.1199,3.225,3.4505,1.556,1.6135,2.6869,6.9544,1.7342,2.6796,0.56485,5.6699,10.1227,19.0732,6.3688,1.9823,4.0781,1.6447,15.158,4.8409,3.3698,0.95526,2.2752,6.5353,12.7828,2.5103,3.6189,2.7265,1.1131,1.3064,3.9233,9.4327,2.9017,1.8087,9.5823,2.0827,1.9326,1.9499,9.3585,1.7947,3.4673,0.91116,11.7186,4.6417,8.4956,2.7664,9.4463,6.7045,7.5868,7.0139,2.913,1.1904,4.1074,,,PD,0.071264,PD,,PD,0.30548,3.4105,3.1023,0.7783,9.1173,1.6368,0.3497,2.5349,2.3706,38.9139,14.7337,239.1789,3.2308,3.9119,1.6016,1.6402,3.0764,6.7225,1.7256,2.8045,0.64983,5.3319,10.1265,14.2262,7.0266,1.8922,4.007,1.5772,15.7679,3.8352,3.3118,0.89847,2.2772,7.1481,11.8878,2.0663,3.8114,2.8022,1.2373,1.3101,3.643,10.0132,2.6152,2.0334,7.6101,2.0413,2.0431,1.7456,9.1246,1.648,3.5152,0.83302,11.5828,4.8844,6.9499,3.1899,8.7279,7.0349,6.7798,7.5505,2.8884,1.1463,4.112,,,,,,,,,,,,,,,64,,,,170
+3285,1.7564,1.8758,,60-69y,Other,,,19.3131,4.8515,2.6203,2.2931,1.3118,ppmi,,,M,,0.50464,6.2181,4.8784,0.95653,10.2068,1.9728,0.43788,3.8159,3.1527,49.9099,19.2655,303.3251,4.5039,5.2515,1.7092,2.101,4.2573,8.5514,2.4859,3.6717,0.59457,8.3078,13.3944,11.8223,8.7264,2.5081,5.77,2.4041,20.5742,7.8246,4.7659,1.2302,2.8907,9.1534,16.1466,3.7966,5.6301,3.503,1.4386,1.6491,5.9034,12.5649,3.693,2.8242,11.8438,3.2182,2.623,2.5948,14.2744,2.9283,4.5536,1.5529,16.9815,6.3066,10.1265,4.4423,12.6761,9.0318,9.0672,7.5224,4.0653,1.8319,5.2648,,,PD,0.09701,PD,,PD,0.43004,4.7178,4.7756,1.0239,11.4067,2.304,0.47766,4.1886,2.9044,50.1691,18.1147,308.866,4.7412,5.903,1.996,2.0706,4.705,8.5576,2.322,3.9922,0.5968,8.4242,13.2263,14.166,9.6414,2.6098,5.3389,2.2377,21.199,6.4066,4.5089,1.5196,3.473,9.8329,16.9772,3.2085,5.3122,3.6257,1.7618,1.5422,5.3571,13.7193,3.4591,2.7107,11.2959,2.7342,2.8711,2.4238,12.9175,2.1509,4.4468,1.542,17.3278,6.4526,8.0048,4.997,11.252,8.8343,8.9791,9.139,3.7769,1.7488,4.9966,,,,,,,,,,,,,,,68,,,,171
+3288,0.84702,1.4874,,-50y,Other,,,19.0911,4.5616,2.3036,2.1292,1.126,ppmi,,,F,,0.48641,5.7677,4.732,0.8751,11.0941,2.1556,0.39961,3.2652,3.3705,42.4068,16.7039,275.9573,4.6903,4.6765,1.6957,2.2004,4.0726,7.8997,2.4907,3.2394,0.36463,7.6169,12.0223,12.1315,8.2971,3.0202,5.2119,2.3656,22.2699,7.4973,4.6459,1.0969,2.4887,8.224,14.8208,3.74,5.1988,3.9873,1.7313,1.5942,4.8341,11.3124,3.1741,2.8311,12.3747,3.2164,2.9161,2.5882,13.1615,2.3519,4.3145,1.2592,15.2757,5.9223,10.2736,4.0793,11.7331,7.3768,9.7767,8.3718,4.5913,1.9698,5.1037,,,PD,0.072978,PD,,PD,0.38624,5.0831,4.4279,0.82769,11.3543,2.2376,0.40144,3.6494,2.8755,45.149,16.9333,280.112,4.4977,5.695,1.6212,2.2363,4.4003,7.9592,2.1915,3.3996,0.49162,7.5762,12.447,11.1032,9.2121,2.6964,5.5282,2.1501,21.6137,5.8705,4.0823,1.1147,2.7461,8.545,14.9101,3.3779,4.9543,3.6623,1.8584,1.6199,4.5895,12.287,2.8323,2.7635,10.7121,2.8322,2.7564,2.2673,12.5605,2.1939,4.0292,1.2197,15.7271,5.7501,9.0702,4.7709,11.6778,7.8328,9.9385,8.104,3.7468,1.6138,4.5343,,,,,,,,,,,,,,,47,,,,172
+3290,1.1756,2.9278,,60-69y,Other,,,19.8544,5.5392,2.8004,2.6683,1.0515,ppmi,,,M,,0.48486,4.8491,4.5603,0.84267,9.2606,1.6,0.4126,2.624,3.0099,53.821,19.4688,246.4777,4.0612,4.0664,1.6825,2.0445,3.2448,7.5874,2.1076,3.0463,0.4139,6.8784,10.9616,13.5758,7.0284,2.5297,4.4226,1.8001,17.3802,6.2806,4.1904,1.0181,2.5522,7.0845,14.3545,3.0621,4.3585,2.9865,1.626,1.5653,4.0009,10.0363,3.2295,2.3499,10.6658,2.4465,2.6701,2.2545,11.0967,1.8555,4.5331,1.3531,14.9722,5.1918,8.9258,3.1509,10.0886,7.504,8.1189,7.9234,4.0066,1.3682,4.6736,,,PD,0.079086,PD,,PD,0.39145,4.1215,4.3388,0.85154,10.7323,1.8619,0.37364,3.1184,2.6936,53.3924,18.6005,249.2599,4.0292,4.5356,1.6026,2.1952,3.5218,7.3721,1.9559,3.2945,0.4851,6.2306,10.939,12.216,8.2081,2.3171,4.7786,1.8288,17.1892,5.3406,3.6211,1.1327,2.6411,7.3916,14.3242,2.3375,4.509,3.4159,1.5702,1.5182,3.7654,10.8303,2.8978,2.1816,9.3636,2.0884,2.4645,2.0722,10.4812,1.8181,3.9348,1.2654,14.1911,4.9225,8.057,3.7915,9.1881,7.8183,8.3649,8.0063,3.4255,1.4498,4.4175,,,,,,,,,,,,,,,63,,,,173
+3300,0.9719,3.8781,,50-59y,Other,,,19.7201,4.9739,2.6969,2.1477,1.1568,ppmi,,,M,,0.45629,4.5029,4.1284,0.89804,8.1149,1.4225,0.38114,3.6038,3.3069,49.9037,16.64,214.1344,3.8912,4.9641,1.7115,1.7847,3.1225,8.0944,1.8761,2.9961,0.42045,7.3316,12.2439,12.0298,8.0815,2.3101,4.6513,1.5927,19.238,6.1321,3.6463,1.1897,2.6596,6.6635,13.8693,3.788,4.8502,3.3025,1.5015,1.4649,4.4871,10.87,3.4217,2.1653,11.981,2.104,2.4905,2.3134,13.9867,2.0969,4.4335,1.0589,15.0419,5.7188,8.1801,3.628,9.9267,7.2799,8.5335,7.7512,3.9942,1.7585,4.8206,,,,0.074677,CN,,HC,0.41702,3.8452,4.131,0.85103,10.8227,1.5607,0.40915,3.4552,3.4034,50.687,16.6359,217.223,3.6179,4.7559,1.7027,2.0654,3.4105,8.0656,2.0538,3.1245,0.4346,7.0516,12.0877,11.0611,8.9495,2.1215,4.6532,1.6444,17.9982,5.4741,3.5243,1.0455,2.5348,7.7687,14.1108,3.2679,4.4991,3.74,1.5447,1.4349,4.0835,10.349,3.0361,2.135,10.266,2.2131,2.2722,2.0494,13.8807,2.3486,4.4009,1.0633,13.3453,5.2494,8.3276,4.3767,10.1949,7.386,8.2607,7.5339,3.765,1.5916,4.5422,,,,,,,,,,,,,,,52,,,,174
+3301,0.86767,1.7852,,50-59y,Other,,,18.1822,4.2092,2.3691,2.0195,1.0988,ppmi,,,M,,0.45865,4.5897,4.0932,0.95569,10.3844,1.7877,0.38947,4.3444,3.2789,44.4643,16.1291,231.8096,4.081,5.671,1.8974,1.8345,3.65,8.1371,2.0819,3.2244,0.38171,7.8168,12.2442,13.602,8.5714,2.724,4.7114,1.774,20.7027,6.8038,4.1054,1.207,2.965,7.1643,15.5826,4.3853,4.7804,3.6569,1.5178,1.4337,4.6503,11.1067,3.4804,2.0765,12.4944,2.5384,2.672,2.3062,14.7808,2.0977,4.2151,1.181,14.9269,5.4466,9.3264,4.1442,10.991,7.9977,8.455,8.3989,3.9948,1.7011,4.6723,,,,0.071135,CN,,HC,0.41477,3.845,3.8549,0.88497,11.5937,1.9312,0.39725,4.4226,3.4559,45.8138,15.2504,238.4337,4.1339,5.8684,1.8546,1.8026,3.8999,8.6419,2.2028,3.3442,0.39896,7.1522,12.6191,13.3908,9.5617,2.4408,4.508,1.7259,20.3815,6.1129,3.9124,1.2423,2.7577,8.0627,14.9628,3.7727,4.8083,3.3967,1.506,1.4564,4.6442,11.0593,3.1243,2.3183,11.3083,2.4672,2.3898,2.0578,15.7382,2.1627,4.257,1.105,15.2272,5.3166,7.9233,5.1094,11.3863,7.3476,8.1887,8.414,3.5533,1.5987,4.482,,,,,,,,,,,,,,,52,,,,175
+3305,2.1814,2.4001,,60-69y,Other,,,23.0148,5.599,3.1873,2.3439,1.9268,ppmi,,,M,,0.57503,5.4621,4.5706,1.0125,11.8442,2.1004,0.46399,3.5372,3.8166,51.8702,20.0614,274.4101,5.0074,5.0876,1.9793,2.1808,4.449,8.0567,2.4167,3.524,0.51812,7.321,12.2958,17.1096,9.3491,3.1307,5.271,2.332,22.5314,7.3266,4.7608,1.4204,3.3204,9.2244,14.5125,3.8662,4.8711,3.8577,1.805,1.6602,4.985,12.9354,3.6856,2.5942,13.4934,3.0159,2.7495,2.7535,15.6034,2.5181,5.0305,1.4553,16.1346,6.4686,9.6316,4.0059,12.7153,7.9696,9.624,8.3623,4.8595,1.9745,5.5764,,,PD,0.082398,PD,,PD,0.50861,4.3925,4.5121,0.98738,12.3804,2.1665,0.46599,3.8363,4.041,52.8846,19.9198,279.2911,4.546,5.934,1.9087,2.0447,5.3398,8.3066,2.6124,3.7793,0.61047,8.7931,12.9804,16.5389,9.594,2.7468,4.8154,2.3711,21.5916,7.2014,4.6115,1.3189,3.0954,11.2163,14.5121,3.9462,5.2091,3.5081,1.8246,1.6107,4.6623,13.1906,3.2342,2.6773,11.3711,2.8013,2.6713,2.3659,14.9744,2.4537,4.926,1.3942,17.0098,6.5475,9.4035,5.1692,12.5255,7.1743,9.4806,7.9905,3.8564,1.7757,5.3414,,,,,,,,,,,,,,,65,,,,176
+3307,2.0706,2.4726,,60-69y,Other,,,21.8213,5.5438,2.871,2.5445,2.0971,ppmi,,,M,,0.48091,5.6416,4.6624,0.98268,11.0428,1.9719,0.4432,4.121,3.7921,51.1635,15.7324,252.5026,4.78,5.6726,1.8884,1.8883,3.951,8.1511,2.3207,3.6785,0.91598,7.6062,12.3176,29.3252,9.2385,2.8902,5.3602,2.0754,22.2208,6.7933,4.5389,1.3586,2.7348,8.9706,16.1155,4.399,5.1693,3.5163,1.589,1.6375,5.1761,14.6441,3.5933,2.7523,14.8984,2.7374,2.7005,2.7591,13.8652,2.1633,4.988,1.3229,16.0022,6.3566,9.6021,4.1205,12.2772,8.6931,9.6979,8.9919,4.2011,1.8386,5.7085,,,PD,0.093015,PD,,PD,0.50521,4.981,4.5467,0.9628,11.5529,1.9815,0.48247,4.5122,3.8799,52.6304,15.7969,261.0624,3.9128,6.4997,1.8851,1.9116,4.2923,8.6641,2.4448,4.0401,0.76239,7.9073,13.8018,16.2888,9.9374,2.3959,5.6893,2.0783,21.0796,5.9504,4.2848,1.293,2.6848,9.7885,16.9912,3.9482,5.2768,3.5006,1.5667,1.5661,4.9465,14.3266,3.3416,2.7178,11.7527,2.2614,2.6543,2.5145,13.1267,1.965,4.9918,1.3264,15.8097,6.0553,9.5222,5.1876,12.7321,8.3111,9.5171,8.9428,4.0101,1.5908,5.406,,,,,,,,,,,,,,,66,,,,177
+3308,2.2118,2.1088,,60-69y,Other,,,22.1209,5.052,2.8442,2.2666,1.6016,ppmi,,,M,,0.52062,4.7989,4.4625,0.99361,10.0979,1.6195,0.42172,3.9029,3.4158,52.8985,18.2255,255.7066,4.3615,5.6823,1.8108,2.1169,3.6791,8.4546,2.1703,3.4234,0.60396,7.3855,12.7837,19.7458,8.0422,2.5909,5.2454,2.0031,18.3997,6.8007,4.3138,1.3346,3.1223,7.2106,15.1225,3.897,4.6672,3.5062,1.6692,1.7783,5.1581,11.833,3.5499,2.4623,12.8527,2.645,2.5598,2.5527,15.1559,2.3993,4.8514,1.3741,15.5614,6.2858,8.8883,3.6461,10.5738,7.8118,9.4068,7.629,4.0789,1.8914,5.7021,,,PD,0.084834,PD,,PD,0.45298,4.4673,4.4797,1.0134,11.5114,1.824,0.42996,3.8309,3.5938,53.7725,17.9231,262.4409,4.4667,6.1002,1.8772,2.1461,3.7722,8.9922,2.1382,3.8496,0.68046,7.8891,13.2006,16.0075,9.1111,2.4283,5.0734,1.8017,17.726,6.3219,4.0115,0.98048,2.608,8.2148,15.4636,3.6305,4.9935,3.7165,1.5999,1.7347,4.5051,11.6864,3.4043,2.5597,12.4629,2.4766,2.4721,2.4697,16.0033,2.2265,4.635,1.2456,15.3826,6.0644,9.1117,4.8086,11.7774,9.1434,9.3725,7.8282,3.4601,1.8199,5.4729,,,,,,,,,,,,,,,67,,,,178
+3309,0.68133,1.4381,,50-59y,Other,,,16.6672,3.8912,2.374,1.8868,0.81529,ppmi,,,F,,0.41863,3.8229,3.7189,0.73656,9.1965,1.5265,0.36768,2.6964,2.9498,41.5119,13.9327,197.2092,3.4206,3.5408,1.4067,1.8632,3.4491,6.4589,1.8107,2.7741,0.29659,6.2035,9.8448,7.3783,6.056,2.334,4.0465,1.6609,16.8363,5.712,3.6236,0.98968,2.2201,5.7909,12.7825,2.9402,3.815,3.0456,1.4046,1.3025,3.9765,8.7323,2.7637,2.0029,10.5449,1.8659,2.3149,1.7841,11.5422,1.5574,3.8273,1.0476,12.6328,4.6456,8.2234,3.207,9.9044,6.7662,7.6111,5.7813,3.7415,1.1899,4.3637,,,PD,0.085323,PD,,PD,0.38136,3.4467,3.6085,0.71588,9.2576,1.6273,0.36522,2.7232,2.8789,41.7431,13.6337,201.3922,3.5617,3.954,1.4071,1.8478,3.8054,6.4046,2.004,2.8618,0.31249,6.2373,10.0245,7.8014,6.7485,2.1313,4.0282,1.7553,16.6447,5.3311,3.3953,1.0741,2.3636,6.576,11.9933,2.7559,3.838,3.3273,1.4849,1.3499,3.6314,8.815,2.4241,2.0485,10.2452,1.9978,2.1849,1.7387,10.8806,1.5969,3.6639,1.0392,12.189,4.1921,7.0267,4.0258,9.476,6.3168,7.4867,6.5407,3.5173,1.3436,4.1799,,,,,,,,,,,,,,,54,,,,179
+3310,0.95676,1.6833,,60-69y,Other,,,16.1123,3.7859,2.4244,1.9142,1.1266,ppmi,,,M,,0.40526,4.6316,3.4381,0.83788,6.9101,1.387,0.34262,2.2615,2.7447,40.9003,13.8237,191.1566,3.6771,3.9097,1.5945,1.6771,3.3003,6.4686,1.8057,3.0296,0.53465,5.1287,9.35,13.5699,5.9753,2.057,4.3596,1.7053,16.2246,4.7345,3.4441,1.1986,2.6846,6.4744,11.5873,2.6088,3.6309,3.3088,1.2735,1.2214,3.8271,9.9051,3.2073,2.0542,12.2312,2.3853,2.1459,1.9897,12.3157,1.8956,3.6951,1.0888,13.6569,4.8898,7.8314,3.0726,10.1575,6.1534,7.1831,6.7383,3.3924,1.489,4.1392,,,,0.066126,CN,,HC,0.36344,4.1381,3.2362,0.78638,8.6511,1.4834,0.34861,2.4496,2.9738,41.147,13.5204,193.3205,3.524,3.9241,1.5382,1.7369,3.3197,6.3497,1.7912,3.1083,0.58788,5.595,9.5686,14.2678,6.3851,2.0443,4.0758,1.6887,16.4509,4.8198,3.2439,1.0616,2.5529,7.3793,12.0609,2.5278,3.4842,3.2264,1.4515,1.1753,3.4558,9.5878,2.5799,1.9472,10.1247,2.0318,2.0455,1.8621,10.2219,1.7146,3.5774,1.0319,13.8249,5.5137,7.1437,3.9756,9.649,6.3478,7.1516,6.7208,3.4263,1.338,3.9581,,,,,,,,,,,,,,,65,,,,180
+3311,1.3921,1.7104,,70-79y,Other,,,20.725,4.7475,2.5315,2.1444,1.5213,ppmi,,,M,,0.50076,4.6824,4.826,0.799,8.6654,1.5544,0.4102,3.2512,4.0023,45.5823,17.8161,244.179,4.2079,3.8017,1.563,2.1774,3.7553,6.8077,2.1601,2.9751,0.53042,6.0909,10.4762,15.8431,6.7248,2.4759,4.3762,1.9132,18.2725,5.7165,4.2436,1.1291,2.5229,7.0109,11.8319,3.806,4.2242,3.5652,1.6848,1.6992,4.4727,10.1121,2.9922,2.6322,10.8292,2.4721,2.5119,2.2164,13.6946,2.2454,5.733,1.2878,15.2349,5.0679,8.2434,3.5113,10.9733,5.7927,8.6301,6.9098,4.1468,1.6966,5.0522,,,PD,0.077956,PD,,PD,0.50097,4.1458,5.3184,0.79005,9.4248,1.8094,0.4387,3.0814,4.5307,46.9372,17.4073,248.1568,3.6378,4.1937,1.6653,2.2276,4.3392,7.0964,2.1968,3.1623,0.50618,5.9132,11.1589,16.0972,7.6377,2.3485,4.1304,1.8443,19.291,4.7201,3.999,1.015,2.3705,7.9446,12.6418,3.2344,4.1073,3.713,1.7387,1.6808,4.1558,10.6143,2.8411,2.6068,9.6665,1.6875,2.3562,1.9204,11.4845,1.574,5.4506,1.2328,15.0056,5.2547,6.8626,3.926,11.0552,5.9991,8.4853,7.2365,4.1961,1.3345,4.8352,,,,,,,,,,,,,,,75,,,,181
+3314,1.3129,1.3764,,70-79y,Other,,,15.7165,4.2507,2.0482,2.0656,1.4786,ppmi,,,F,,0.40629,3.9614,4.1761,0.66622,7.975,1.2802,0.36262,2.41,2.8875,37.1637,12.2107,176.9253,3.424,4.1235,1.3775,1.7638,3.3973,5.8794,1.8152,2.4681,0.47656,5.2211,8.5402,14.5991,6.4713,1.8845,4.0388,1.5787,15.9652,5.6352,3.4778,0.95049,1.9258,6.2804,10.4678,3.1146,3.5912,3.2962,1.1956,1.3165,4.0396,9.5369,2.6886,2.3448,9.7725,2.0099,2.2052,1.9949,11.6974,2.004,4.152,1.167,12.8866,4.5034,7.1375,3.4811,9.4651,5.8801,6.8586,6.4452,3.3172,1.5411,3.9776,,,PD,0.072445,PD,,PD,0.36613,3.441,4.0178,0.71219,9.6673,1.4188,0.36317,2.2096,2.9849,37.9252,12.0079,169.7965,3.2229,3.6708,1.4428,1.7539,3.5867,6.2989,1.7866,2.7906,0.61774,4.9115,9.501,18.5014,6.4156,1.8187,3.6733,1.577,16.2327,4.475,3.2128,0.98668,2.1155,6.9946,11.9203,2.2385,3.1295,3.0777,1.2529,1.2949,3.5762,9.17,2.5257,2.1523,9.6993,1.8237,2.1013,1.7258,11.1572,1.4413,3.8737,1.0805,11.8306,4.7148,6.5024,3.7054,9.6227,5.8642,6.2548,6.5697,3.1376,1.1392,3.7727,,,,,,,,,,,,,,,77,,,,182
+3316,1.4221,1.9779,,70-79y,Other,,,19.1934,5.3911,2.9161,2.7176,1.668,ppmi,,,M,,0.46097,4.8609,4.6291,0.88993,9.5538,1.8722,0.38231,3.3339,3.2075,50.3589,17.5604,229.8261,3.7885,4.5475,1.7556,2.1799,4.074,7.7288,2.2205,3.0858,0.42238,7.1978,12.3119,15.6464,8.6892,2.8547,4.728,2.0495,20.2881,6.9227,4.4397,1.2867,3.0482,8.1096,15.0382,3.8771,4.7355,3.0274,1.7384,1.4644,4.7611,10.9929,3.3317,2.2027,12.4861,2.2194,2.758,2.1036,15.8158,1.9447,3.9967,1.2693,16.2478,5.3018,9.0073,3.8733,11.0227,7.2193,7.9835,8.567,4.1962,1.4855,4.7833,,,,0.075774,CN,,HC,0.44123,4.4815,4.6189,0.88059,11.3192,2.1021,0.41418,3.2777,3.6709,51.7894,17.1712,235.3941,4.0493,4.5043,1.7738,2.0537,4.4407,8.2924,2.277,3.2699,0.40662,7.6488,13.0084,14.4895,8.8342,2.6114,5.0364,2.044,20.4965,5.909,4.2874,1.2953,2.7947,8.5961,14.8559,3.3991,4.7506,3.3894,1.8279,1.4113,4.2263,10.7797,3.0417,2.3225,11.0905,2.101,2.6204,2.0027,13.4832,1.7061,4.0531,1.2549,16.682,5.6029,7.9642,4.401,12.3084,6.9683,7.8533,8.1253,3.7276,1.3415,4.4854,,,,,,,,,,,,,,,75,,,,183
+3318,1.9496,2.4874,,60-69y,Other,,,16.4522,4.6715,2.8618,2.4384,1.4038,ppmi,,,M,,0.41034,4.599,4.4172,0.84199,8.9704,1.4424,0.38519,2.7502,2.8107,48.3126,13.9654,186.5141,3.6449,4.0284,1.6424,1.9008,3.3443,7.21,2.1173,2.9814,0.45226,6.3629,10.5116,13.8939,7.5674,2.1887,4.6134,1.8334,16.1366,5.6599,3.8305,0.90361,2.1974,6.7755,13.0209,3.261,4.2617,3.1263,1.3848,1.2999,4.1856,9.6313,3.2299,2.4117,10.9586,2.1707,2.3065,2.3164,12.2133,1.9828,4.3819,1.1482,12.8979,5.2676,8.0004,3.4832,8.9111,6.988,8.4421,7.5903,3.4524,1.5981,4.3355,,,,0.072112,CN,,HC,0.36815,4.0454,4.2038,0.85475,9.8398,1.6413,0.37838,2.7131,2.8886,48.6541,13.6423,189.5102,3.4333,4.3149,1.7523,1.937,3.5195,7.4265,2.002,3.195,0.57888,6.4587,11.2305,12.6317,7.8157,2.0683,4.6229,1.86,14.635,4.705,3.5883,0.95547,2.235,7.8809,13.4391,2.8035,4.4877,3.1287,1.3565,1.2964,3.9176,10.2919,2.9544,2.2917,9.3573,1.901,2.2857,2.0417,11.5646,1.7178,4.1622,1.0293,13.6568,5.1142,7.5259,3.8996,9.134,7.2036,8.1706,7.9955,3.1458,1.3774,4.1543,,,,,,,,,,,,,,,65,,,,184
+3320,1.1404,2.0153,,50-59y,Other,,,19.2574,4.7809,2.4643,2.2702,1.1194,ppmi,,,M,,0.41206,3.746,4.1052,0.7922,8.6643,1.3937,0.36892,2.8349,2.6676,48.3091,16.9742,213.6238,4.0107,4.3734,1.6196,2.0031,3.0267,6.9991,1.78,2.8341,0.4146,5.6815,11.3156,11.0687,6.8813,2.2819,4.2194,1.5584,18.7051,5.8843,3.5393,1.0741,2.5584,5.8835,13.7622,2.7842,3.902,3.5542,1.5089,1.5089,4.0443,9.7691,3.1796,2.1078,11.6878,2.005,2.4301,2.2529,13.1932,1.8315,4.1854,1.1092,13.5801,4.8929,8.1829,3.5593,9.4209,6.417,8.1636,7.4644,3.8463,1.6725,4.8438,,,,0.087587,CN,,HC,0.35881,3.0577,3.6919,0.75173,9.4944,1.4991,0.37179,2.8972,2.8855,48.5217,16.667,216.0184,4.1353,4.0535,1.5482,1.7529,3.1845,7.0599,1.8423,3.0222,0.48276,6.4147,11.2314,11.6552,7.5953,1.9543,3.9089,1.4883,16.678,5.5646,3.4495,0.87908,2.1914,6.5357,14.4879,2.7634,4.1055,3.326,1.3587,1.4805,3.8348,9.8426,2.8278,2.2666,10.2838,2.1582,2.1822,1.9666,12.5947,1.8184,4.0193,1.0827,13.7754,4.7505,7.3448,4.3847,11.3376,7.2024,8.0504,7.2422,3.1286,1.4863,4.5718,,,,,,,,,,,,,,,56,,,,185
+3321,1.4005,1.9523,,70-79y,Other,,,15.9426,3.843,2.3311,1.9161,1.3695,ppmi,,,F,,0.33141,3.3801,3.5824,0.71796,7.8313,1.1117,0.31052,2.327,2.5332,37.8922,13.4697,164.5435,3.1997,3.6934,1.3295,1.6286,2.6654,5.3667,1.4814,2.6,0.69797,4.6428,8.1202,14.9726,5.3413,1.8859,4.3043,1.2971,14.0495,5.135,2.8359,1.0024,2.0195,5.2077,10.1697,2.8873,3.1176,2.6235,1.2216,1.2426,3.7434,8.7468,2.6047,2.1719,9.5511,1.8409,1.9473,2.0307,10.0406,1.4958,3.7635,0.9232,10.5262,4.2264,7.0201,3.1818,7.7491,6.0983,7.1104,5.9824,2.7271,1.2737,3.9618,,,PD,0.057455,PD,,PD,0.29164,3.1091,3.2843,0.70785,9.0194,1.2783,0.30184,2.3383,2.6416,38.6658,12.897,171.7594,3.1616,3.7503,1.3959,1.5797,2.872,5.7893,1.5503,2.8198,0.6662,5.0726,8.7126,12.0658,6.0731,1.7612,4.0847,1.3096,14.1559,4.0779,2.8027,0.89099,2.0826,5.9859,10.6074,2.2931,3.0645,2.405,1.1853,1.2717,3.4568,8.6035,2.5259,2.121,8.7672,1.7686,1.755,1.8797,10.0642,1.5287,3.6223,0.8406,10.8462,4.2617,6.0909,3.4808,7.8139,6.2209,6.989,6.4537,2.7716,1.3605,3.7966,,,,,,,,,,,,,,,71,,,,186
+3322,1.8221,2.0394,,60-69y,Other,,,17.1075,4.3328,2.5404,2.0895,1.5954,ppmi,,,F,,0.37669,4.1432,3.8,0.77073,9.8591,1.4488,0.35351,2.2825,3.0628,46.1231,13.9101,196.7901,3.6639,4.0855,1.6107,1.9744,3.1595,7.392,2.0282,3.0335,0.49163,6.3842,10.2503,18.6939,7.0083,2.3137,4.4002,1.5306,18.3093,6.7569,3.8688,1.1689,2.6096,6.6229,12.6858,3.3435,4.2243,3.3745,1.4666,1.2849,4.2687,10.619,3.2201,2.1889,12.1834,2.3022,2.3342,2.0938,13.4514,1.9592,3.9089,1.0826,13.5838,5.3885,9.4235,3.3995,9.7692,7.0647,7.6348,7.0531,3.8012,1.4522,4.3523,,,PD,0.070551,PD,,PD,0.34649,3.5859,3.7154,0.77406,10.703,1.6295,0.3608,2.4564,3.2588,45.9078,13.5202,199.675,3.8787,4.3395,1.5691,1.862,3.5503,7.323,1.9222,3.2008,0.57481,6.1267,10.9697,17.8991,7.3409,2.2187,4.2007,1.4893,18.9664,5.2934,3.7565,1.1891,2.6372,7.2992,13.8705,2.5239,4.1227,3.2243,1.5089,1.277,4.0339,10.6594,2.8661,2.1451,10.2749,2.2179,2.2499,1.86,12.6864,1.8518,3.8392,1.0151,13.7158,4.9872,8.2369,3.9195,9.6935,7.2228,7.4132,7.5005,3.2493,1.3437,4.1896,,,,,,,,,,,,,,,60,,,,187
+3323,1.4867,2.3162,,60-69y,Other,,,25.1793,6.1262,3.324,2.5349,1.4695,ppmi,,,M,,0.51504,5.3337,4.6736,0.99678,11.3937,1.6559,0.44153,3.476,3.6214,57.9174,21.8521,282.3767,5.0607,5.0153,1.9208,2.1756,4.3434,8.7833,2.2141,3.7253,0.62915,8.3286,13.5526,19.0451,8.4398,2.549,4.5596,2.0887,20.9119,7.2551,4.3272,1.0778,2.7689,8.1276,15.3745,4.1747,4.9683,3.8327,1.6721,1.8045,5.6269,13.6555,3.7997,2.5531,14.943,2.98,2.72,2.3098,15.1023,2.4366,4.8499,1.455,16.8691,6.0141,11.1502,4.5046,14.5093,7.1854,9.6122,8.429,4.2365,1.9387,5.9205,,,PD,0.085229,PD,,PD,0.49973,4.5628,4.5625,1.0282,11.8581,1.9869,0.47017,3.7353,3.8011,58.273,20.9338,288.8603,4.444,5.9491,2.019,2.1231,4.5137,9.0588,2.4345,4.0689,0.72884,8.2702,13.4853,15.0472,9.3992,2.445,4.622,2.0644,20.8728,6.1736,4.2243,1.0726,2.7745,9.1064,16.0317,3.5753,5.3605,4.1119,1.7449,1.7028,5.1444,13.8856,3.5888,2.6142,12.1933,2.5592,2.5448,2.1724,14.2236,2.251,4.8423,1.4317,16.1179,5.9011,10.2869,5.6019,13.8726,7.8882,9.5376,8.4203,4.1469,1.6081,5.7089,,,,,,,,,,,,,,,69,,,,188
+3325,1.4263,2.0325,,60-69y,Other,,,22.291,5.4401,3.1464,2.354,1.0478,ppmi,,,F,,0.44402,4.8828,4.2103,0.92908,8.9546,1.5852,0.39411,3.7017,3.278,52.2087,17.1471,235.6885,3.9566,4.6007,1.7581,2.1059,3.9175,7.3861,2.0807,3.4809,0.41495,7.1488,11.4535,13.965,7.9901,2.3709,4.9792,1.8621,19.2694,6.8429,3.9299,1.1898,2.7834,7.1681,14.3636,3.7277,4.6068,3.9447,1.4499,1.5451,4.4882,10.9043,3.3886,2.3005,12.138,2.4716,2.5392,2.296,13.3014,1.9911,4.4839,1.1789,17.1714,6.0829,9.079,3.9315,10.8847,7.8255,8.8761,7.7425,4.0834,1.5711,5.3067,,,PD,0.092904,PD,,PD,0.41253,4.3953,4.1223,0.95301,10.1118,1.7769,0.40596,3.5415,3.5084,52.1951,16.7879,236.4043,3.6412,4.786,1.7935,2.3192,3.9218,7.6874,2.1155,3.9394,0.85508,7.0998,11.8629,12.4607,8.3763,2.2711,5.1812,1.8825,18.47,5.8042,3.8104,1.3402,2.918,7.8606,15.304,2.8173,4.5536,3.8502,1.5304,1.5005,4.1495,11.3056,3.3158,2.2226,11.0242,2.4063,2.4075,1.9481,12.9214,2.0039,4.3725,1.1322,15.7726,6.273,7.7821,4.4517,10.9396,7.5488,8.6628,8.0312,3.554,1.4467,5.0538,,,,,,,,,,,,,,,67,,,,189
+3327,0.75404,1.8963,,50-59y,Other,,,21.5524,4.5386,2.8542,2.0357,0.82145,ppmi,,,F,,0.47317,4.1821,3.9922,0.86126,9.4145,1.4349,0.38745,3.3252,3.1656,48.2116,18.095,245.0631,3.7934,4.3464,1.6752,2.0091,3.3605,7.1216,2.0221,3.1557,0.3041,6.5054,10.9448,9.0466,7.0044,2.3059,4.7187,1.6706,17.356,6.4298,3.8276,1.1822,2.491,6.4218,13.0209,3.7432,4.065,3.205,1.6411,1.6316,4.227,10.4046,3.0247,2.1789,13.8277,2.2298,2.4731,2.1197,12.7153,1.7996,4.3213,1.1332,14.4905,4.9865,8.9642,4.058,10.9793,6.4997,8.7684,7.2622,3.7596,1.5089,5.2886,,,PD,0.081668,PD,,PD,0.42255,3.4603,3.773,0.88534,10.4658,1.6875,0.40835,3.3657,3.2244,48.6983,17.6988,251.1874,3.7485,4.6545,1.8481,1.9065,3.6889,7.5203,2.0944,3.4415,0.40727,6.2412,10.8589,6.3182,7.5096,2.2703,4.4532,1.6923,17.6012,5.2427,3.8915,1.0757,2.4356,7.3878,13.1542,2.8802,3.9554,3.4658,1.6804,1.5955,4.0161,10.2696,2.9158,2.2009,11.9521,2.2236,2.4696,1.8862,12.0513,1.8911,4.2236,1.1096,13.6016,5.4715,8.2422,4.3101,10.9359,6.7098,8.3773,7.8794,3.7564,1.4906,5.0502,,,,,,,,,,,,,,,54,,,,190
+3328,1.8302,1.7719,,60-69y,Other,,,16.7958,4.0742,2.3181,1.9763,1.4956,ppmi,,,M,,0.46695,4.5439,4.1895,0.84486,8.2929,1.357,0.39218,3.4905,2.8187,39.7042,14.5647,229.048,4.1323,5.0124,1.5797,1.9975,3.1471,6.6771,1.8516,2.96,0.51615,6.8834,10.7651,19.4254,7.391,2.1532,4.5386,1.6262,17.4493,6.1483,3.7013,1.1212,2.6166,6.8461,13.172,3.862,4.206,3.1222,1.4874,1.5633,4.2052,9.8325,3.0726,2.2093,10.8438,2.3508,2.5242,2.1969,11.9189,2.0101,4.3024,1.1954,12.5089,5.3344,8.3344,3.8768,10.8156,6.736,8.14,7.2217,3.6277,1.6601,4.8184,,,PD,0.072656,PD,,PD,0.41745,4.3971,3.7245,0.84279,10.5261,1.4768,0.38964,3.2974,2.8323,40.4861,14.6007,232.9993,3.694,5.0211,1.6458,1.8069,3.3766,6.9776,1.8771,3.1783,0.54209,7.0902,11.5522,16.7477,7.8562,1.9428,4.6858,1.5847,16.9407,5.1981,3.4683,1.0978,2.5934,7.4008,13.7192,3.2496,4.3012,2.8723,1.3054,1.5242,3.922,10.2225,2.9784,2.1788,8.8925,1.9979,2.169,2.0419,12.1283,1.7305,4.1404,1.1123,13.2281,5.3621,7.6788,4.4089,10.2901,7.1975,7.9071,7.7631,2.9011,1.4279,4.5119,,,,,,,,,,,,,,,63,,,,191
+3332,1.5785,1.7034,,70-79y,Other,,,19.1407,4.5521,2.3009,1.9334,1.3981,ppmi,,,M,,0.4374,4.5731,4.4769,0.82868,8.2464,1.3575,0.38138,2.9191,2.7691,42.1186,14.6437,232.7044,3.8846,4.2042,1.5214,2.0541,3.5519,7.1671,2.0591,2.9546,0.64464,6.473,11.0492,21.3242,6.6069,2.4864,4.8116,1.8163,19.141,5.6315,3.8671,1.19,2.8192,6.8799,12.8222,3.5724,3.8221,3.4722,1.6865,1.4641,4.4389,10.0803,2.9845,2.3059,11.6122,2.1912,2.6593,2.2775,13.7267,1.9744,4.3465,1.3054,14.4541,5.4127,8.1277,3.8239,10.3435,6.6551,8.3474,7.1536,4.0626,1.5979,4.7608,,,PD,0.074917,PD,,PD,0.41306,4.6016,4.0434,0.83747,9.664,1.5746,0.38031,3.0934,3.0148,43.8586,14.133,236.1145,3.8952,4.3941,1.6668,2.072,3.738,7.5972,1.9778,3.1584,0.6236,6.3701,11.922,18.3327,7.5329,2.0851,4.594,1.7127,17.881,4.8325,3.5219,1.2568,3.0733,7.5273,13.4879,2.9866,4.1581,3.4563,1.4853,1.4687,4.1188,10.3109,2.7836,2.3121,10.0265,2.1921,2.3158,2.1615,13.7657,1.908,4.0202,1.181,14.3093,5.3183,7.7124,4.5242,12.1789,7.2029,8.4697,7.4094,3.5171,1.5994,4.6784,,,,,,,,,,,,,,,74,,,,192
+3350,2.1186,1.9831,,70-79y,Other,,,19.1725,4.6994,2.7529,2.3447,1.7296,ppmi,,,M,,0.48685,5.3154,4.3409,0.89342,10.4159,1.7102,0.40477,3.5489,3.6595,48.3447,15.6962,220.3796,4.1178,4.9111,1.9103,1.9824,3.7475,7.8671,2.3389,3.22,0.61934,7.5701,12.223,22.7333,8.0554,2.4718,5.3743,1.9676,21.7861,7.046,4.2537,1.167,3.237,7.5464,15.5754,3.7422,4.7065,3.5609,1.4524,1.5024,4.6599,11.47,3.4812,2.5088,12.7248,2.4133,2.4599,2.3399,15.3463,1.9955,4.9895,1.3553,15.222,6.1944,9.345,4.018,10.762,8.0011,8.0348,8.5003,3.9141,1.4636,4.6471,,,,0.089306,CN,,HC,0.44311,4.5104,4.2433,0.87837,11.4552,1.7684,0.42244,3.3109,3.7769,48.3261,15.4518,223.2097,4.0431,5.0819,1.9139,2.1646,3.8885,8.3274,2.2873,3.405,0.87815,6.847,12.8009,18.5641,8.7741,2.2008,4.8308,1.8813,21.5798,5.7191,4.0215,1.2772,3.3568,9.021,15.7052,2.9207,4.6787,3.872,1.5833,1.4314,4.2681,11.5237,3.2355,2.329,11.1146,2.3098,2.2708,2.1801,13.9871,2.0836,4.5554,1.3171,15.6456,6.4564,7.7243,4.446,11.4274,7.7562,8.0062,8.5408,4.0429,1.5789,4.5189,,,,,,,,,,,,,,,79,,,,193
+3351,2.2027,2.6048,,70-79y,Other,,,15.2781,4.6579,2.4156,2.1874,2.3518,ppmi,,,M,,0.38256,4.4859,3.7295,0.7193,9.5867,1.3684,0.34906,3.1602,2.9229,40.2916,12.9311,179.6471,3.4967,4.3323,1.3683,1.6573,3.2655,6.5169,1.7059,2.9605,1.2465,6.1439,9.6454,34.9976,7.1427,2.0477,4.4977,1.6864,16.6023,6.3451,3.4177,0.99525,2.3485,6.9227,11.6233,3.23,3.9781,2.9037,1.2886,1.1608,3.9243,10.4675,2.8796,2.0107,12.2644,1.9689,2.3323,1.9303,10.4746,1.4263,3.5822,1.1512,11.9941,4.6406,9.1866,3.568,10.4148,5.2505,6.9582,5.9418,3.2195,1.2118,4.047,,,,0.064526,CN,,HC,0.32657,3.8546,3.6329,0.71997,9.5409,1.4915,0.33332,3.2113,3.1382,40.2683,12.6171,188.4283,3.2245,4.5308,1.3796,1.7646,3.4719,6.2254,1.6895,3.0541,1.3569,6.1097,9.3455,35.3162,8.046,1.9072,3.8451,1.5638,16.0678,5.5131,3.0881,1.0455,2.3581,8.0234,11.8748,2.9932,3.9741,2.7871,1.408,1.1601,3.4686,10.2299,2.6097,1.9775,9.7202,1.9596,2.1129,1.7377,10.1542,1.4518,3.57,1.093,11.8922,4.9919,6.8726,4.0461,9.7867,5.4739,6.9082,6.5716,3.1613,1.2066,3.9223,,,,,,,,,,,,,,,72,,,,194
+3352,1.054,1.7724,,50-59y,Other,,,21.9076,4.9572,2.8111,2.4003,1.1805,ppmi,,,M,,0.4457,4.9595,4.2453,0.8287,9.1178,1.5095,0.3614,3.3464,3.1477,49.7368,18.2038,252.6209,3.7882,4.714,1.6885,2.1164,3.7083,6.983,2.1006,3.0529,0.39954,6.8753,9.8987,13.1705,7.6446,2.3342,4.5418,1.9722,18.1891,6.5981,4.069,1.0144,2.5514,7.5579,12.8515,3.9561,4.7323,3.654,1.6021,1.736,4.438,11.1489,3.2067,2.1757,11.2911,2.2116,2.479,2.0812,13.7574,1.7123,4.3443,1.1933,13.9577,5.6044,8.2346,3.7535,10.0855,6.2781,9.3073,6.6935,3.7395,1.3937,5.459,,,PD,0.072759,PD,,PD,0.3977,4.7392,4.0101,0.82516,10.1234,1.7688,0.36976,3.6006,3.1607,50.2789,17.7435,252.3473,3.8891,5.2287,1.7245,1.9095,3.7338,7.2264,2.051,3.2964,0.60818,6.4692,10.3073,10.3951,8.079,2.2338,4.5835,1.8235,17.4243,5.2041,3.8423,1.1225,2.6312,8.2794,12.7001,3.2492,4.4109,3.0475,1.62,1.6587,4.1674,11.1061,2.9366,2.1388,10.2236,2.1939,2.3834,2.0103,12.9209,1.8009,4.2705,1.165,13.6522,5.7931,7.2133,4.3429,10.6149,7.0896,9.0171,7.1871,3.4482,1.4405,5.232,,,,,,,,,,,,,,,52,,,,195
+3353,0.64707,1.6469,,50-59y,Other,,,20.2092,4.9889,3.3261,2.5209,0.78802,ppmi,,,F,,0.45675,3.9296,4.0155,0.85287,9.1832,1.4272,0.35456,3.0089,3.2288,52.8219,18.5441,220.8301,3.5392,4.1018,1.6497,1.7412,3.5666,7.3496,1.9891,2.9608,0.33522,6.1833,10.9352,5.7378,7.2047,2.2388,3.871,1.6848,17.0545,6.1321,3.7528,1.1782,2.4044,6.3621,13.1839,3.1734,4.3481,2.999,1.475,1.6085,4.0069,9.512,3.0162,2.077,11.7524,1.9266,2.3759,2.0199,12.9366,1.6014,4.2113,1.0203,14.8457,4.9047,8.3846,3.4659,10.302,6.6481,8.5392,7.319,3.4023,1.2917,5.0194,,,,0.081951,CN,,HC,0.42021,3.9244,3.8535,0.84996,9.7255,1.4287,0.37756,3.0428,3.2466,52.4214,18.297,222.1029,3.3706,4.3303,1.645,1.8139,3.523,7.274,1.885,3.1996,0.57598,6.6758,11.3787,4.602,7.6127,1.9217,4.1591,1.6549,17.4639,5.2692,3.2898,0.90527,2.357,6.8564,13.3049,2.7268,4.211,3.2854,1.423,1.5393,3.7239,9.6677,2.7619,2.0815,9.6849,1.9631,1.9788,1.8942,11.6409,1.7384,4.1606,1.0156,13.7277,4.5874,7.402,4.2226,9.5548,6.9872,8.3278,7.9699,3.2661,1.3214,4.8719,,,,,,,,,,,,,,,56,,,,196
+3354,1.4262,1.8571,,60-69y,Other,,,18.6528,5.0728,2.4154,2.2853,1.3721,ppmi,,,M,,0.51308,5.4959,4.558,0.94286,10.5563,1.6952,0.42106,3.1445,3.6677,46.537,15.0466,246.3444,4.6791,4.9328,1.919,2.0878,3.9145,8.1067,2.3425,3.3242,0.63291,7.598,12.9865,18.2338,8.1105,2.5685,5.4536,2.2097,22.0323,6.6819,4.3067,1.3604,3.3702,8.2838,15.4455,3.7504,4.6113,3.7246,1.5639,1.4658,4.674,12.476,3.3395,2.5479,13.8558,2.5153,2.6735,2.5411,14.1582,2.1704,4.8515,1.3597,17.7155,7.2004,9.8286,3.4469,10.7421,8.1478,8.5686,8.4782,3.9525,1.7448,4.728,,,PD,0.088743,PD,,PD,0.47679,5.0814,4.4013,0.92885,12.1007,2.0701,0.43742,3.2838,3.4199,48.2228,14.6272,248.881,4.2976,5.1286,1.9009,2.0901,4.4655,8.8242,2.3923,3.5657,0.54676,7.5624,13.5074,10.9069,8.9756,2.4641,5.7307,2.1444,21.7982,5.2999,4.4093,1.4673,3.0414,8.9215,16.4369,3.0487,4.9167,3.4543,1.637,1.4071,4.0986,12.222,3.2642,2.5437,12.5825,2.1605,2.5638,2.4077,13.1726,1.8925,4.7931,1.323,17.9966,6.6898,8.9119,4.1536,11.4621,8.2416,8.3061,9.0141,3.9799,1.6171,4.4429,,,,,,,,,,,,,,,69,,,,197
+3355,1.0191,2.4554,,-50y,Other,,,19.4413,4.8071,2.6541,2.2874,0.85616,ppmi,,,M,,0.44222,4.0945,3.8884,0.89087,9.3743,1.4777,0.39683,3.3672,3.3654,47.6398,17.0485,224.6679,3.7032,4.4291,1.6898,2.0112,3.6171,7.4738,2.0613,3.2633,0.58031,6.82,11.7704,10.8633,7.0096,2.2471,4.4973,1.5825,18.7004,6.7985,3.8837,1.1041,2.6603,6.1342,13.9408,3.8714,4.0375,3.3628,1.4396,1.5356,4.2537,9.8859,3.057,2.1085,11.601,2.4492,2.2336,2.1935,13.4023,2.3774,4.6227,1.1031,14.6718,5.0654,9.2425,3.916,11.0553,7.4607,9.0602,7.6927,3.6691,1.5562,5.0131,,,,0.065881,CN,,HC,0.4115,3.7095,3.8205,0.89106,10.5974,1.7143,0.40237,3.55,3.4073,48.7459,16.3181,227.229,3.9975,5.0876,1.7569,1.9459,3.7016,7.9299,2.0218,3.4671,0.55279,7.2329,12.2213,8.8538,7.762,2.1419,4.5573,1.6263,17.9584,5.3982,3.6199,1.1341,2.7434,7.054,14.4404,3.5658,4.3906,3.522,1.4194,1.5072,3.8082,10.2912,2.8559,2.1655,10.0077,1.9628,2.0305,1.9911,12.3708,1.8422,4.5196,1.0419,14.5549,4.9872,8.3014,4.8295,10.6061,7.5952,8.6505,8.0229,3.3355,1.3802,4.7366,,,,,,,,,,,,,,,32,,,,198
+3357,1.2879,2.0439,,-50y,Other,,,21.6613,5.2395,2.7874,2.5747,1.7015,ppmi,,,M,,0.47436,3.8965,4.051,0.89154,9.5374,1.514,0.40959,3.0444,3.1215,48.8073,18.7842,231.7602,4.0255,4.0285,1.6658,1.9322,3.4023,7.285,2.2149,3.4142,0.51873,6.9074,11.1028,13.9626,7.5067,2.5674,4.5207,1.6426,19.7819,5.8543,4.0433,0.93891,2.5175,6.615,14.3861,3.5444,4.3648,3.0926,1.5467,1.7366,4.5271,10.5431,3.1312,2.1979,12.085,2.4081,2.4362,2.2727,13.8034,2.0203,4.2438,1.2995,17.3575,5.5321,9.2149,3.1117,9.8945,7.8468,9.356,7.4788,3.9607,1.6984,5.5137,,,,0.067357,CN,,HC,0.41789,3.3203,3.9126,0.89383,12.2737,1.7765,0.41849,3.1397,3.2493,48.5672,18.6004,236.4763,3.7991,4.4205,1.6939,1.9872,3.9246,7.7194,2.2041,3.6563,0.55697,6.3186,11.3747,13.8162,8.1455,2.4044,4.5451,1.6918,19.4895,5.3683,3.9199,1.1398,2.5974,7.3054,14.1147,2.9257,4.1418,3.7029,1.6215,1.6956,4.0557,10.2492,3.09,2.216,10.4182,2.0797,2.2411,2.0223,14.0891,1.8044,4.1834,1.1832,15.6137,5.354,8.2542,4.1259,11.0756,7.8309,9.0224,7.1985,3.8693,1.5213,5.3189,,,,,,,,,,,,,,,44,,,,199
+3358,0.97066,1.9402,,-50y,Other,,,21.9129,4.9995,2.9226,2.4358,1.0668,ppmi,,,M,,0.53627,5.5045,4.4459,1.0686,10.6117,1.7385,0.41887,3.3576,3.259,53.5751,18.1406,251.0497,4.5102,5.1492,1.9289,1.9522,4.0067,8.0635,2.2256,3.7781,0.4048,6.473,11.4821,17.2327,8.5144,2.6011,5.3409,2.1532,21.2225,6.9569,4.2512,1.3077,3.2549,7.9379,13.9806,3.7858,4.5096,3.3594,1.6383,1.6678,4.7394,11.8885,3.6351,2.521,13.3801,2.7141,2.6914,2.5029,15.4562,2.2146,4.724,1.3367,16.8494,6.7498,9.5973,3.8267,11.7949,7.875,9.7964,8.0504,4.2617,1.9103,5.4366,,,,0.077663,CN,,HC,0.47943,4.9371,4.1726,1.0238,11.3463,1.917,0.44018,3.4563,3.5265,53.2894,17.8612,255.8374,4.5122,5.864,1.9794,1.8332,4.3734,8.3471,2.2568,3.9177,0.47752,7.1219,12.3525,13.0241,9.1975,2.4542,5.479,2.108,20.4766,5.8837,4.0166,1.3851,3.4818,9.1452,14.5311,3.1525,4.6465,3.273,1.6161,1.6525,4.1543,12.156,3.221,2.4512,12.0915,2.1001,2.5017,2.1685,15.4505,2.0398,4.6209,1.3125,16.6047,6.4793,8.7896,4.8891,11.1655,7.8736,9.4228,8.3972,3.5032,1.5974,5.245,,,,,,,,,,,,,,,49,,,,200
+3359,1.8571,1.6234,,70-79y,Other,,,19.8477,4.9152,2.686,2.4304,1.7052,ppmi,,,M,,0.47122,4.3534,4.7496,0.95107,8.9156,1.3618,0.40755,2.8695,3.4255,44.5392,15.3576,216.1588,4.0515,3.8094,1.7627,2.0915,3.4912,6.6787,1.9924,3.4225,0.62783,5.8273,10.9779,18.9481,7.0942,2.217,4.5927,1.6816,17.9294,6.5654,3.7872,1.1099,2.566,7.0237,13.5286,3.1702,4.0964,3.6004,1.5735,1.428,4.9279,10.656,3.2276,2.3956,12.1844,2.0231,2.5882,2.2183,13.654,1.7542,4.626,1.2635,16.4628,5.6131,8.4113,3.3693,10.8332,6.1649,8.7197,7.7363,3.7803,1.6264,5.0061,,,PD,0.082548,PD,,PD,0.43138,4.0199,4.4092,0.93286,9.9978,1.6987,0.40907,2.9281,3.5833,46.0573,15.4225,221.9845,4.0934,4.1421,1.7721,1.9923,3.7703,7.409,2.0554,3.6081,0.60745,6.1322,11.8587,15.3024,7.4283,2.2228,5.0082,1.7785,19.0909,5.4244,3.7372,1.0974,2.7196,7.5321,14.6212,2.7477,3.969,3.2224,1.5323,1.4203,3.9982,10.5428,2.9585,2.279,11.3498,2.0555,2.4063,2.0699,13.4193,1.7228,4.434,1.1772,15.4814,5.8302,8.084,4.0003,10.8408,6.7925,8.7703,8.1023,3.4657,1.4493,4.7746,,,,,,,,,,,,,,,72,,,,201
+3360,1.2132,2.1861,,60-69y,Other,,,21.0619,4.8973,2.6128,2.1104,1.1191,ppmi,,,M,,0.47814,4.5999,4.7358,0.89781,9.1663,1.6832,0.38798,3.471,2.9703,48.2982,18.7327,267.5846,4.5317,4.6512,1.6574,2.2124,4.0283,7.2932,2.1745,3.2419,0.44459,6.6891,11.4304,11.1445,6.939,2.515,4.7511,1.801,19.2776,6.2419,4.0866,1.1049,2.287,7.1582,13.5585,3.9995,4.2419,3.5661,1.5589,1.7322,4.6232,11.5298,3.184,2.5786,12.3,2.3478,2.4211,2.5364,13.4259,2.0003,4.9164,1.2467,14.9361,5.2831,9.1245,3.4369,11.5001,6.865,9.1056,8.0565,4.0415,1.8131,5.2379,,,PD,0.078807,PD,,PD,0.43851,4.3526,4.2874,0.86473,10.9493,1.6656,0.40155,3.7806,3.1861,48.962,18.1633,275.1444,3.9824,5.2903,1.6171,2.0364,3.7677,6.9179,2.0331,3.3281,0.4819,7.1622,11.6067,11.7986,7.7921,2.3152,4.9026,1.6913,19.4726,6.0131,3.6853,1.0914,2.5623,7.6389,14.1412,3.5265,4.4073,3.2061,1.7013,1.6884,4.2602,12.0166,2.6814,2.4534,10.4078,2.5784,2.1921,2.1333,13.6068,2.2114,4.6669,1.1392,14.4365,5.6544,7.8359,4.8682,10.6842,6.9839,9.035,8.1745,3.7536,1.6594,5.035,,,,,,,,,,,,,,,67,,,,202
+3361,0.93269,1.8101,,50-59y,Other,,,16.785,4.8678,2.7924,2.3568,1.1946,ppmi,,,F,,0.45386,4.8811,4.3389,0.89537,10.6341,1.5014,0.37867,3.19,3.16,48.2874,14.5015,222.8818,4.4829,4.9083,1.8165,2.0954,3.845,7.5014,2.0541,3.2227,0.38969,6.8547,10.915,14.6835,7.8021,2.4684,5.2162,1.886,18.6353,7.1876,3.6746,1.0133,2.3737,7.4838,15.3593,3.6181,4.7118,3.3167,1.5905,1.4229,4.7305,11.852,3.3726,2.3965,13.2566,2.6506,2.4436,2.3493,13.4112,2.0892,4.0941,1.1519,13.8151,5.7373,10.6473,4.1042,10.7302,7.8289,8.1862,7.7667,3.8128,1.688,4.3689,,,,0.073627,CN,,HC,0.40294,4.3072,3.8814,0.89354,12.2808,1.6502,0.38323,3.2096,3.4881,49.3503,13.9651,226.3869,4.2435,5.1187,1.8741,1.934,3.9391,8.0573,2.0041,3.3675,0.50034,6.5722,11.5149,12.7353,8.64,2.1551,4.7355,1.7354,17.945,5.5471,3.5655,1.1715,2.7262,8.1239,14.4363,3.0365,4.5262,3.547,1.5034,1.3929,4.2808,11.5161,3.2187,2.3843,11.99,2.4669,2.1951,2.2756,13.077,2.0356,3.9564,1.0857,14.6022,5.8642,9.9547,4.6737,11.2565,7.941,8.0085,8.3509,3.3219,1.7066,4.2257,,,,,,,,,,,,,,,56,,,,203
+3362,0.62532,1.0385,,-50y,Other,,,19.6022,4.9925,2.593,2.3917,0.74199,ppmi,,,F,,0.41923,4.0989,4.2371,0.84579,9.1987,1.5322,0.38607,3.5881,2.8729,46.812,16.3262,205.5592,3.5565,4.8567,1.6593,2.0151,3.2905,6.598,2.0422,3.0341,0.27487,6.6135,10.1912,5.3086,7.4474,2.3925,4.5882,1.7124,18.1212,6.2375,3.804,1.2897,2.806,6.5364,13.4883,3.6174,4.3519,3.2742,1.7036,1.3527,4.3126,10.0249,2.9675,2.1941,12.5637,2.034,2.466,2.1055,14.5898,1.7532,4.0084,1.0785,13.9754,5.3176,8.5485,3.7738,10.1256,6.6877,8.2492,7.3415,4.2,1.369,4.6365,,,,0.068029,CN,,HC,0.4078,3.7381,4.05,0.80758,10.3726,1.7025,0.38996,3.583,2.9706,47.7393,15.5594,207.9647,3.6358,4.9242,1.5881,1.918,3.6981,7.1307,2.0437,3.2306,0.35118,6.4509,10.4555,4.1121,8.1896,2.1987,4.5084,1.6855,18.0272,5.5466,3.6803,1.0849,2.6465,6.9334,13.8512,3.2068,4.4419,3.6955,1.5726,1.3215,3.8143,10.1936,2.751,2.1135,10.9084,1.822,2.1914,1.8251,13.6492,1.5904,3.9215,1.0271,13.851,4.9822,8.1151,4.5204,9.6682,7.2292,7.9032,7.1593,3.899,1.2444,4.3984,,,,,,,,,,,,,,,42,,,,204
+3364,0.62296,1.3497,,-50y,Other,,,18.244,4.4925,2.5803,2.1401,0.76245,ppmi,,,F,,0.50019,4.9102,4.2308,0.96231,10.9356,1.8327,0.3991,2.8463,3.2704,46.4235,15.3923,232.5274,4.2409,5.1413,1.8699,2.1311,3.6947,7.6656,2.1682,3.4991,0.32806,6.6951,11.9154,5.8909,7.3762,2.9088,5.2033,1.8726,22.4311,6.5068,4.4453,1.2803,2.926,7.4035,15.244,3.0383,4.0154,3.906,1.7585,1.5138,4.7104,11.7847,3.3326,2.2602,12.9093,2.4677,2.7363,2.3734,13.9999,2.2961,4.1691,1.1491,15.387,6.0427,10.6606,3.923,11.2687,8.4364,8.8933,8.5813,4.8731,1.7493,4.7816,,,PD,0.068911,PD,,PD,0.44878,4.0091,4.1782,0.93574,12.021,1.8672,0.411,3.0148,3.3302,46.6537,14.8703,235.5212,4.3704,5.301,1.8787,2.223,4.02,7.7874,2.2924,3.5537,0.47934,6.6623,12.2256,5.0331,7.7215,2.3618,5.3939,1.918,20.833,5.2477,4.2796,1.1969,2.9182,8.3524,15.5865,2.7299,4.1276,3.9928,1.7216,1.4946,4.3353,11.9687,3.0807,2.3532,10.9378,2.3831,2.481,2.2072,13.8483,2.0916,4.2019,1.1,16.15,6.2194,9.8186,4.6463,11.7275,9.4001,8.5647,8.6079,4.1481,1.616,4.5681,,,,,,,,,,,,,,,39,,,,205
+3365,1.2289,1.9417,,-50y,Other,,,17.2271,4.3798,2.292,1.874,1.1604,ppmi,,,M,,0.45206,5.0663,4.5664,0.89341,9.0394,1.6339,0.41422,3.5891,3.0215,41.7166,13.9202,219.7141,3.7347,5.2323,1.8276,2.0821,3.2615,7.5982,2.1295,3.3343,0.44587,7.2658,11.2446,9.3831,8.4581,2.449,5.3445,1.8177,19.8177,6.7698,4.1533,1.3702,3.1259,7.4268,13.5803,4.13,4.529,3.6453,1.4586,1.3527,4.6125,11.2335,3.4176,2.3942,12.6554,2.3993,2.6222,2.4105,13.5831,2.2632,4.3841,1.2656,14.6142,6.5658,8.9997,4.3348,10.6463,7.4484,8.2477,7.5352,4.1502,1.6582,4.5506,,,PD,0.083102,PD,,PD,0.41877,4.7206,4.4146,0.90228,10.7992,1.7284,0.42057,3.4918,3.0357,42.3753,13.5596,224.8913,3.482,5.4938,1.8318,2.1478,3.4731,8.0272,2.1684,3.4797,0.54165,7.5929,11.6902,7.9759,8.9914,2.2115,5.4379,1.805,19.3072,5.5203,3.8411,1.2129,3.1558,8.0905,13.5043,3.1944,4.6451,3.8097,1.6283,1.3511,4.1634,10.9044,3.1003,2.2205,11.2116,1.998,2.4214,2.0755,13.2136,1.6768,4.2706,1.2384,14.1526,6.0614,8.7427,4.4723,10.8531,6.815,7.8505,7.7985,3.8418,1.3893,4.3761,,,,,,,,,,,,,,,49,,,,206
+3366,1.1341,1.9791,,60-69y,Other,,,21.8579,4.677,2.8193,2.4991,1.2374,ppmi,,,M,,0.47262,4.0875,4.3272,0.93941,9.4023,1.5212,0.39705,3.1975,2.932,49.3969,18.756,230.0633,3.9398,4.3396,1.8126,2.091,3.5713,7.5425,1.9656,3.4845,0.46217,6.4768,10.8487,9.9434,7.9698,2.6778,4.6502,1.52,18.3109,6.6061,3.8087,1.4578,2.8608,6.9159,13.4857,3.6219,4.803,3.9608,2.0093,1.5967,4.4078,11.6938,3.4394,2.356,11.841,2.2842,2.4914,2.2551,12.2004,1.9093,4.5812,1.1727,14.3941,5.9684,9.1176,3.5475,13.1146,7.1425,9.0798,7.6997,4.6259,1.5437,5.1499,,,PD,0.071139,PD,,PD,0.44262,3.7839,4.0063,0.91871,11.445,1.5138,0.42954,3.3381,3.0682,49.6349,18.8772,235.8782,3.7799,4.8256,1.8633,1.8501,3.3825,7.9927,1.9651,3.6873,0.56282,6.5381,11.8109,8.9402,8.2898,2.1243,4.6434,1.5041,17.1957,5.8328,3.4654,1.175,2.9166,7.3248,14.646,2.9094,4.6102,3.3749,1.454,1.5722,3.7914,10.8331,3.2181,2.2231,10.9294,2.128,2.3393,2.0118,12.87,1.8804,4.3762,1.126,13.7819,5.659,7.3592,4.3646,13.7819,6.8907,8.594,7.6566,3.3946,1.4064,4.9941,,,,,,,,,,,,,,,61,,,,207
+3367,0.91429,1.9932,,-50y,Other,,,19.0524,4.6888,2.6987,2.2006,1.0279,ppmi,,,M,,0.47479,4.2091,4.3658,0.91441,10.3715,1.4643,0.39697,3.4066,3.1129,48.1128,15.9312,219.5554,3.8089,4.6125,1.7907,1.9225,3.4705,7.4929,2.0746,3.3092,0.39889,6.8488,11.5757,8.4191,7.7293,2.3735,4.7501,1.7395,18.6074,6.2393,3.7382,1.1345,2.9014,6.6587,14.447,3.3671,4.5882,2.7226,1.5898,1.6125,4.3399,10.4952,3.2729,2.439,12.591,2.1962,2.4047,2.3805,13.2506,1.8927,4.8715,1.2146,15.1171,5.2597,9.3539,3.624,10.5715,7.1964,9.123,7.8226,3.289,1.5905,5.0469,,,PD,0.076934,PD,,PD,0.4513,3.8924,4.2722,0.9077,10.4034,1.7476,0.4136,3.5172,3.3451,49.4478,15.6,227.4773,3.9729,4.9752,1.7726,1.927,3.7,7.7368,2.091,3.397,0.53195,6.9583,11.3868,8.5301,8.3751,2.3069,4.4305,1.7471,17.3366,5.4619,3.9165,1.009,2.4822,7.4301,14.2267,3.1324,4.8082,3.1545,1.6532,1.5828,3.8935,10.7886,3.0122,2.4786,11.8129,2.2185,2.5128,2.1192,13.2614,1.8492,4.8154,1.1462,14.3632,5.3436,8.731,4.5664,11.3329,7.7589,8.6673,7.893,3.482,1.4792,4.8714,,,,,,,,,,,,,,,45,,,,208
+3368,0.89722,1.2432,,50-59y,Other,,,16.6545,4.8909,2.458,2.3135,1.0672,ppmi,,,F,,0.50742,4.9609,4.3358,1.0218,11.2698,1.7307,0.41693,3.8403,3.1259,45.6234,14.7484,223.3852,4.3477,5.1902,1.9677,1.9816,4.0636,7.7644,2.2356,3.5982,0.34941,8.1316,12.1983,10.5998,8.3667,2.6499,4.8497,2.0844,22.2161,7.1237,4.4317,1.1331,2.7574,7.3548,14.9329,3.8507,4.8684,3.4104,1.5415,1.3797,5.0601,12.8487,3.4437,2.3476,14.1345,2.864,2.6819,2.3379,14.345,2.3175,4.5474,1.2822,15.8034,5.7256,10.289,3.76,11.9126,7.577,8.1528,8.1634,3.9052,1.6768,4.5382,,,,0.078834,CN,,HC,0.46241,4.6781,4.0365,1.0058,12.5824,2.0075,0.42844,3.8218,3.3294,46.0996,13.8647,231.2482,4.0165,5.5235,1.9674,1.9964,4.202,7.9862,2.3127,3.8364,0.39849,7.9011,12.7309,11.1395,9.3525,2.3849,4.9951,1.9782,20.1261,6.3606,4.3067,1.1535,2.7609,7.8376,16.2278,3.7508,5.0445,3.6979,1.5868,1.3791,4.6405,13.1815,3.2884,2.3225,12.4789,2.3327,2.3529,1.9797,12.6374,1.8597,4.4634,1.2432,16.188,6.1442,8.6558,5.0687,12.188,7.7533,7.8867,8.6453,3.8215,1.4582,4.3308,,,,,,,,,,,,,,,53,,,,209
+3369,1.0495,1.9972,,-50y,Other,,,17.3654,4.5203,2.574,2.3105,1.5706,ppmi,,,M,,0.48838,4.351,4.7488,0.91854,8.7301,1.4403,0.40363,3.2239,3.304,43.778,14.8888,195.4119,4.055,4.0086,1.7317,2.2287,3.4692,7.2166,1.9804,3.3766,0.72053,6.8078,10.7871,14.1603,7.1925,2.41,4.45,1.6769,19.4134,5.821,3.8497,0.97652,2.1296,6.2249,13.067,3.4954,4.1205,3.557,1.5551,1.411,4.4372,10.2843,3.3217,2.4355,12.0002,2.5087,2.5396,2.3634,13.5535,2.1707,4.6752,1.1739,13.7568,4.8308,9.1064,3.6401,10.4681,7.2063,8.4119,7.6055,3.932,1.788,4.4879,,,,0.053807,CN,,HC,0.44058,3.8243,4.2841,0.89965,10.2951,1.7386,0.42792,3.3788,3.4082,44.699,14.8834,202.9529,3.8551,4.7096,1.7507,2.1429,3.7042,7.2854,2.0259,3.5373,0.6433,6.8838,11.1066,12.5085,7.8953,2.2097,4.3666,1.5592,18.5376,5.6448,3.8774,1.0115,2.3029,7.1043,13.1866,3.2505,4.2104,3.9135,1.5533,1.3688,4.0798,10.3582,3.0214,2.3522,10.914,2.0767,2.4021,2.096,13.6998,1.7337,4.6419,1.1176,14.1403,4.7749,7.7277,4.5312,10.7577,7.747,8.1361,7.6804,3.5869,1.4876,4.3151,,,,,,,,,,,,,,,44,,,,210
+3370,0.75886,1.8032,,-50y,Other,,,22.725,5.151,2.8172,2.4545,1.2177,ppmi,,,M,,0.5617,5.5916,4.7673,1.037,10.1225,1.956,0.44634,3.6981,3.5079,54.1382,18.5486,278.1248,4.4582,5.9337,1.9401,2.3661,4.0851,8.5597,2.4204,3.8291,0.4119,7.1206,12.0726,9.7436,8.4689,2.7774,5.9019,2.1918,21.4474,6.8522,4.6648,1.2618,3.1152,7.7725,13.9277,4.2199,4.7398,3.6411,1.6624,1.937,4.6766,11.9991,3.6464,2.4507,13.5207,2.6249,2.8063,2.5749,16.1537,2.0842,5.264,1.3615,16.5357,6.3796,9.6272,4.3348,12.608,7.5698,10.3299,8.6134,4.4544,1.6946,5.9283,,,,0.081255,CN,,HC,0.52159,4.466,4.563,1.0414,11.1197,1.944,0.46212,3.626,3.759,55.1002,18.4406,284.7104,4.3983,5.4774,1.9943,2.3368,4.2844,8.6015,2.4918,4.0263,0.4422,8.1483,12.6056,10.0789,8.4813,2.6231,5.3257,2.1773,21.9365,6.3561,4.3697,1.1874,3.0577,9.2333,14.3148,3.7128,4.9537,3.8079,1.8901,1.9258,4.0945,11.6485,3.1933,2.4555,12.6891,2.4608,2.6401,2.3506,15.153,2.1963,5.1535,1.3127,15.8833,6.5896,8.6921,5.1445,12.5228,7.8598,9.8833,8.7545,3.8098,1.6767,5.6899,,,,,,,,,,,,,,,40,,,,211
+3371,2.1889,2.3393,,60-69y,Other,,,19.0342,4.9734,2.795,2.3152,2.3408,ppmi,,,M,,0.55474,6.2263,5.5591,1.0312,11.6943,1.945,0.46728,3.7235,3.6914,52.6303,15.3199,225.1178,4.8752,6.0181,2.0358,2.3816,4.8011,8.5863,2.5388,3.7748,0.76915,8.2237,13.8668,36.2959,9.1618,2.9275,5.8281,2.3949,23.2985,7.2265,4.8034,1.5241,3.5779,9.6589,17.6315,4.5955,5.0687,4.0434,1.7997,1.4678,5.676,12.7844,3.698,2.9345,12.2795,2.8922,3.0534,2.7569,16.5683,2.3045,4.6028,1.6531,19.1146,6.9541,10.5838,4.1534,13.9708,9.4266,9.2267,9.2986,5.0126,1.9237,4.9859,,,PD,0.086748,PD,,PD,0.51596,6.1209,5.2904,1.0566,12.9927,2.0676,0.48913,3.9099,3.9509,54.9471,15.0176,231.2751,5.1379,6.1312,2.0054,2.1092,4.7456,8.995,2.4646,4.0945,0.94894,8.4015,13.5759,34.4735,10.5729,2.6555,6.2008,2.2555,23.6774,6.6442,4.4361,1.3588,3.221,10.5459,16.7154,3.8639,5.3537,4.6296,1.8301,1.4387,4.8709,11.8325,3.5185,3.0978,12.5274,2.9866,2.8747,2.4924,16.1416,2.2104,4.5824,1.6353,17.9608,6.3923,10.0137,5.269,12.2691,8.3916,8.9883,9.0972,4.9062,1.8956,4.7594,,,,,,,,,,,,,,,69,,,,212
+3372,2.7742,3.292,,70-79y,Other,,,21.3681,5.2222,2.6514,2.2884,2.5275,ppmi,,,M,,0.49128,5.9684,5.3661,0.92929,9.8886,1.7021,0.45858,3.8237,4.404,50.6941,16.2999,237.7769,4.7391,6.3992,1.8371,2.4534,4.4008,8.0762,2.4004,3.712,1.6211,7.5938,12.1843,46.8225,9.4264,2.7631,4.6026,2.2889,21.1171,7.2968,4.4133,1.355,3.0833,9.4844,15.0207,4.0009,4.9153,3.6348,1.859,1.6853,5.206,13.4451,3.556,3.0531,12.1897,2.7206,2.6946,2.8876,14.3734,2.3488,5.0416,1.6381,14.3276,6.4341,9.3875,4.3438,11.2422,8.0024,9.0577,8.8878,4.3697,1.9111,5.3327,,,PD,0.091813,PD,,PD,0.45052,4.6552,5.0169,0.91732,10.9504,1.7563,0.46335,4.1564,4.6757,51.6878,16.0429,242.3058,5.0085,6.334,1.8083,2.1676,4.6981,8.4935,2.4901,3.9758,1.6449,8.1747,12.6973,45.8395,9.8438,2.4494,4.878,2.2421,19.1884,6.0564,4.1476,1.081,3.0635,10.1921,15.4909,3.6555,4.9564,3.1842,1.7736,1.6958,4.9424,13.5678,3.2406,3.5259,10.8509,2.8879,2.5712,2.9748,13.9762,2.452,4.8732,1.5257,15.0419,6.4408,8.5164,4.6424,10.8925,7.949,8.9662,9.3686,3.6646,2.3079,5.1386,,,,,,,,,,,,,,,71,,,,213
+3373,1.6911,2.5249,,60-69y,Other,,,19.3738,4.916,2.7004,2.4161,2.1308,ppmi,,,M,,0.50759,4.4279,4.6355,0.90623,9.5227,1.829,0.42695,4.0573,3.4526,50.8898,16.0196,228.7105,4.4579,5.1873,1.7669,1.9786,4.4468,7.797,2.342,3.1231,0.69174,7.3914,12.1048,33.7596,8.581,2.6396,4.129,2.0117,23.6452,6.8482,4.4981,1.1871,2.8363,7.1674,15.118,4.4747,4.9593,3.8527,1.5821,1.5371,4.6045,11.3793,3.3292,2.4792,13.8044,2.8582,2.6869,2.4614,14.2265,2.5394,4.8045,1.3938,19.3429,5.2982,9.3708,3.919,10.9573,7.8967,8.9834,8.6439,4.4263,1.9651,5.0312,,,PD,0.071969,PD,,PD,0.45,3.627,4.5905,0.89568,12.6435,1.9277,0.43828,4.1525,3.8008,51.4238,15.7952,234.505,4.1626,5.3888,1.8621,1.9171,4.5409,8.0448,2.2594,3.258,0.71507,8.4726,13.0501,33.2144,9.2139,2.4224,4.114,1.9855,21.002,6.2247,4.0836,1.2877,2.8499,8.5036,15.7122,3.7881,5.2455,3.6879,1.6541,1.5144,4.1922,11.4344,3.113,2.684,11.7384,2.2332,2.4644,2.3086,14.7208,2.0429,4.7966,1.241,19.3962,5.591,8.5521,4.7685,11.4034,7.8909,8.6639,8.8035,3.9175,1.6208,4.7954,,,,,,,,,,,,,,,61,,,,214
+3374,1.4748,2.5294,,70-79y,Other,,,19.5145,4.8833,2.993,2.4474,1.5065,ppmi,,,M,,0.43779,4.7724,4.5264,0.9673,9.442,1.4568,0.39728,2.7533,3.0088,50.0851,15.2933,207.8511,4.1613,4.4682,1.8609,1.9452,3.5057,7.4128,2.1243,3.1201,0.55027,5.6431,11.2061,19.0725,7.4023,2.269,5.132,1.7405,19.0301,5.4295,4.1865,1.0779,2.4814,7.1276,13.8936,3.2799,3.912,3.3314,1.4827,1.3994,4.6796,10.6095,3.5145,2.4062,12.4741,2.2271,2.558,2.2871,13.6817,1.8622,4.3641,1.2584,14.6719,5.5108,9.2265,3.2236,10.5968,7.1834,8.1237,7.8494,4.1138,1.4114,4.7978,,,PD,0.083178,PD,,PD,0.40978,4.4627,3.9829,0.91561,10.4062,1.6581,0.42144,2.5748,3.2432,50.4236,15.2064,214.8521,3.802,4.6171,1.7287,1.8407,3.7781,7.5016,2.1436,3.1924,0.6399,6.6878,11.3217,18.9645,7.8904,2.1762,4.9955,1.7607,18.0851,5.1646,3.8445,1.3084,2.8166,7.9628,13.6165,2.9539,4.3126,2.9174,1.5404,1.3702,4.1801,10.9382,3.1052,2.3093,10.91,2.1568,2.4134,1.9528,13.4388,1.9091,4.2136,1.1456,16.3166,5.5604,8.4849,4.0817,9.7807,7.2267,7.9275,7.53,3.1399,1.4226,4.6246,,,,,,,,,,,,,,,71,,,,215
+3375,0.95131,1.6058,,50-59y,Other,,,18.8563,4.8708,2.9138,2.3101,1.0076,ppmi,,,M,,0.52191,5.0906,5.1837,1.0318,11.5491,1.7801,0.4783,3.3836,3.2754,49.3766,15.3542,218.8777,4.7165,5.1488,2.0603,2.4505,4.3648,8.5285,2.6084,3.6724,0.40983,8.0476,13.8081,9.2938,8.0277,2.7341,5.1761,2.0691,20.9977,7.9902,4.7463,1.1483,2.9088,8.359,16.9742,3.9969,4.8076,3.9511,1.8652,1.4743,5.1017,12.2174,3.5971,2.6096,13.2299,2.72,3.0002,2.6193,14.4852,2.2931,5.1366,1.5167,15.8253,6.3478,10.5673,4.3575,12.141,8.8408,8.61,9.9358,4.4903,1.8052,4.7207,,,PD,0.086883,PD,,PD,0.47729,4.2115,4.8215,1.0292,12.5281,2.0645,0.46775,3.4794,3.3503,50.3285,15.157,224.8704,4.3963,5.2683,2.1606,2.3312,4.6739,8.6727,2.6254,3.8233,0.49825,7.8762,13.6863,8.1578,8.7281,2.6625,5.2054,2.0955,20.6392,5.8624,4.4013,1.064,2.7773,9.3256,18.2295,3.3458,4.8194,4.1233,1.7128,1.4883,4.6259,11.3652,3.3886,2.611,11.9102,2.4226,2.5802,2.314,14.6373,2.1329,5.0686,1.3839,16.5033,6.1113,9.8239,4.9367,11.1598,9.4115,8.3268,10.1564,3.8316,1.6839,4.5744,,,,,,,,,,,,,,,50,,,,216
+3376,1.3713,1.3237,,70-79y,Other,,,18.2643,5.7671,2.8122,2.3825,1.2254,ppmi,,,F,,0.45277,4.9263,4.5198,0.87839,9.201,1.6986,0.42286,3.5041,2.9315,49.7734,14.7953,185.5829,4.124,4.8283,1.8042,2.2471,3.8147,7.6168,2.2508,3.3195,0.36812,6.1456,10.4997,13.9409,8.1506,2.6302,4.8752,1.9446,18.2851,6.197,4.3586,1.3544,2.8785,7.6058,12.687,3.6732,4.7099,3.838,1.7101,1.2526,4.6468,11.5311,3.4838,2.3229,12.214,2.4848,2.6966,2.4021,12.8089,2.294,4.1436,1.4042,15.353,6.0799,9.6534,3.9185,12.0705,7.6741,7.8262,8.4231,4.6059,1.6998,4.3248,,,PD,0.095106,PD,,PD,0.40721,3.9967,4.2552,0.89281,9.9502,1.8842,0.4057,3.8159,3.1589,49.8161,14.6413,193.7782,4.4092,5.1631,1.8102,2.0748,3.9855,7.7033,2.2399,3.4848,0.46859,6.9306,11.3931,13.8972,8.9369,2.3931,4.5817,1.9998,18.3637,5.1897,4.145,1.2405,3.0302,9.1397,13.3863,3.1447,4.6055,3.5755,1.6539,1.2821,4.1832,11.2997,3.2687,2.3727,10.5374,2.4489,2.4751,2.1955,13.9019,1.9063,4.0429,1.3408,15.755,6.3839,8.1388,4.443,11.1489,7.3438,7.498,8.8471,4.129,1.6745,4.18,,,,,,,,,,,,,,,70,,,,217
+3377,0.73161,1.9723,,50-59y,Other,,,15.8848,4.3206,2.301,2.0244,1.0009,ppmi,,,F,,0.39234,4.4646,3.7198,0.92571,9.2568,1.4313,0.36004,3.1518,2.5567,41.8949,13.6038,215.2613,3.8366,4.8423,1.7124,1.763,3.2461,6.8975,1.9222,3.1422,0.46582,6.1499,11.2252,7.0295,7.3003,2.3245,4.7608,1.6971,17.9039,6.4802,3.687,1.1006,2.5243,6.5817,14.5519,3.5895,4.1695,2.9938,1.4929,1.3046,4.6096,10.6902,3.0067,2.0408,13.1746,2.0928,2.4246,2.0167,13.0492,1.7857,4.0397,1.0317,14.7665,4.9775,9.0103,3.8894,12.0966,7.3684,7.9008,7.8147,3.5606,1.4398,4.2662,,,PD,0.068785,PD,,PD,0.35208,3.881,3.574,0.89191,10.5274,1.6462,0.36153,3.0957,2.8113,42.4858,13.3267,221.4533,3.9424,4.7081,1.6988,1.7976,3.695,7.5753,2.0885,3.4972,0.63671,6.8086,11.3917,6.7816,7.8658,2.0754,4.6865,1.6273,16.9646,5.4149,3.6922,0.98023,2.4412,7.5142,13.8893,3.0388,4.1939,3.2231,1.3695,1.2834,4.1309,10.854,2.8932,1.9639,10.7036,1.9582,2.1953,1.7823,11.8999,1.7674,4.072,1.0385,14.0765,5.2618,8.4629,4.6419,11.6941,7.4918,7.7065,7.9875,3.1305,1.3339,4.107,,,,,,,,,,,,,,,54,,,,218
+3378,1.6365,2.5448,,-50y,Other,,,21.6436,5.845,2.8987,2.6722,1.4691,ppmi,,,M,,0.52515,5.0587,4.6333,0.92992,9.8303,1.8777,0.42944,3.2973,3.8831,51.5945,19.1994,265.2472,4.616,4.1982,1.7169,1.978,4.4231,7.7557,2.373,3.6631,0.58048,7.0673,11.5277,20.9011,8.0697,2.8428,5.0731,1.969,22.3491,7.0866,4.6301,1.1319,2.7153,7.9323,14.6918,3.6338,4.3982,3.5381,1.7667,1.7993,5.4784,11.7585,3.4846,2.6796,13.4442,2.629,2.7531,2.5301,14.7844,2.1616,5.0376,1.4256,15.897,5.9747,9.7454,3.9382,10.8616,7.6459,9.5636,7.973,4.2607,1.8137,5.4803,,,PD,0.072184,PD,,PD,0.48299,4.8059,4.6105,0.93102,10.7115,1.9834,0.45358,3.5007,4.0264,52.8862,18.641,274.3285,4.5771,5.1664,1.8648,2.3099,4.5798,8.2115,2.4424,3.9342,0.69559,7.39,12.1241,19.1702,9.0616,2.4836,4.8749,2.0447,20.6624,5.7523,4.4251,1.1004,2.6962,8.7877,15.2324,3.4515,4.8228,3.9706,1.7803,1.8497,4.7497,11.6747,3.3131,2.699,11.9442,2.471,2.6056,2.1182,14.3528,2.0938,4.9422,1.3577,16.2976,6.2907,8.6153,4.8997,11.0341,7.3804,9.441,8.0176,4.1617,1.7224,5.2922,,,,,,,,,,,,,,,49,,,,219
+3380,1.0966,2.2294,,70-79y,Other,,,16.9095,4.0178,2.2868,1.8735,1.1095,ppmi,,,F,,0.44396,3.8322,3.9284,0.83549,9.1751,1.2749,0.35825,2.8975,2.9371,41.2997,12.9543,181.6615,3.2812,4.1265,1.5998,1.6628,2.9319,6.1038,1.7876,2.9142,0.49438,5.7795,9.8184,9.8888,6.8472,1.9132,4.0067,1.4975,15.9519,5.4586,3.4531,1.2624,2.408,6.2381,12.8929,3.0917,3.7687,2.652,1.2209,1.2345,3.8259,9.885,2.9339,2.2291,11.2982,2.135,2.1403,2.1103,10.539,1.5978,4.5204,1.0936,11.7969,4.929,8.939,3.1499,9.7839,6.2818,7.0685,6.9195,2.9708,1.2434,4.1942,,,PD,0.081356,PD,,PD,0.39834,3.8319,3.3633,0.79399,9.6755,1.4283,0.35815,2.9456,3.1497,41.5482,12.6366,182.967,3.4801,4.1684,1.5888,1.569,2.8986,6.3474,1.6847,3.1954,0.65773,5.6715,10.0785,9.7179,7.3525,1.8717,4.2016,1.3613,15.9128,4.5264,3.2217,0.93519,2.183,6.5394,12.2301,2.5927,3.64,2.6741,1.2938,1.2132,3.5071,9.8,2.6911,2.0445,9.1799,1.7721,1.9995,1.7504,10.3262,1.5501,4.4045,1.03,11.4415,4.9678,7.3559,3.8209,9.8904,6.4506,7.004,7.2314,2.6744,1.243,4.0159,,,,,,,,,,,,,,,71,,,,220
+3383,0.95244,2.0168,,-50y,Other,,,19.6671,5.0753,2.7612,2.2044,1.0605,ppmi,,,M,,0.50255,4.5708,5.1289,0.98205,9.9021,1.7344,0.42246,3.5797,3.6911,50.5402,17.9157,257.2282,4.6362,4.9526,1.857,2.342,3.916,7.8793,2.2664,3.2892,0.39177,7.9618,12.2627,8.7129,7.717,2.6444,5.0524,1.8618,20.0264,7.4913,4.247,1.1058,2.6262,7.0593,15.0148,3.8945,4.9313,3.768,1.7387,1.8427,4.9711,11.3299,3.4803,2.6232,12.8278,2.7148,2.606,2.6571,15.9964,2.4823,5.3682,1.2819,15.9322,5.343,9.1005,3.9918,10.9431,8.5517,9.1958,8.1033,4.2738,1.9208,5.308,,,PD,0.077639,PD,,PD,0.48935,4.1388,4.6228,0.98756,11.2272,1.8342,0.45864,3.6289,3.8232,49.9689,17.4765,259.6629,4.2328,5.2346,1.8843,2.1683,3.9519,7.8881,2.3321,3.5437,0.57137,7.5467,12.5913,7.9095,8.4123,2.4332,4.6437,1.9111,18.8318,5.8287,4.0651,1.1834,2.8155,7.8014,15.1259,3.2576,4.8376,3.7314,1.677,1.8183,4.7247,11.3434,3.1631,2.6006,10.8211,2.4985,2.4245,2.4,15.2771,2.237,5.2229,1.2187,16.0976,5.5305,8.6984,5.0913,11.985,8.4578,8.7632,8.2585,3.6852,1.7164,5.0982,,,,,,,,,,,,,,,48,,,,221
+3385,0.8372,1.3033,,50-59y,Other,,,18.1034,4.6248,2.6392,2.1324,1.2419,ppmi,,,M,,0.47376,4.4726,4.295,0.83575,9.2985,1.619,0.41631,3.2736,3.0945,42.9169,15.8053,219.9806,3.7986,4.9366,1.573,1.9864,3.5493,7.1648,2.1602,2.9046,0.60267,6.2246,11.293,15.9076,7.5038,2.5486,4.5306,1.8511,19.0755,6.2246,4.1067,1.0389,2.2923,6.8412,14.4074,3.4598,4.1965,3.1417,1.5897,1.5254,4.1807,11.0193,2.9531,2.188,12.3516,2.644,2.6655,2.1671,12.7672,2.1052,4.4903,1.2031,14.0122,5.0424,9.329,3.937,11.9208,7.3397,8.6007,7.6724,3.8352,1.6213,4.669,,,PD,0.073849,PD,,PD,0.40906,3.4971,4.2297,0.83451,10.7234,1.6915,0.41862,3.3016,3.1196,43.4773,15.4726,224.245,3.7222,5.2801,1.6175,2.1828,3.7848,7.2776,2.23,3.3027,0.51609,6.6845,11.5616,11.8735,8.0635,2.094,4.2626,1.846,18.1396,5.1281,3.7874,1.0229,2.4545,7.6808,14.591,3.2632,4.111,3.8381,1.4417,1.4856,3.9765,10.918,2.6784,2.3518,11.1792,1.9917,2.4653,2.0094,13.901,1.6442,4.4775,1.1399,13.5892,5.452,8.4605,4.2916,11.0785,7.2946,8.5993,7.6788,3.3738,1.335,4.4599,,,,,,,,,,,,,,,52,,,,222
+3386,1.2618,1.7244,,70-79y,Other,,,19.7535,4.85,2.633,2.1906,1.3048,ppmi,,,F,,0.39363,3.8739,4.0518,0.80598,8.8265,1.3425,0.34509,2.7004,2.975,45.061,16.5342,221.2186,3.6205,4.2915,1.5137,1.9041,3.3014,7.1411,1.7897,3.0831,0.48589,5.5735,10.3723,14.4908,6.9055,2.1123,4.3158,1.5151,17.81,5.5141,3.4997,1.0154,2.2844,6.3594,12.8357,3.1393,3.9623,2.9305,1.4096,1.4796,4.2286,11.2087,3.2716,2.266,11.2494,2.093,2.1298,2.0499,12.4501,1.6946,4.1967,1.1289,13.5344,4.9546,8.8055,2.9737,10.5507,6.8504,7.8414,6.8438,3.441,1.2264,4.6267,,,PD,0.071934,PD,,PD,0.34948,3.5428,3.7813,0.79593,10.3195,1.4091,0.36553,2.7788,3.1675,45.9191,15.9594,224.6876,3.5931,4.4092,1.5861,1.9012,3.3066,7.2031,1.8949,3.1201,0.50293,6.0107,10.2688,12.8917,7.4433,1.9797,4.1708,1.5022,16.3414,4.8108,3.4045,1.0492,2.5356,7.0583,12.4912,2.6182,3.8791,3.0529,1.4532,1.3884,3.9892,10.5608,2.858,2.0649,10.4934,1.7663,2.0299,1.7157,11.7157,1.6179,4.2949,1.1138,13.9426,5.0506,7.282,3.7562,10.9675,7.0605,7.4912,7.1089,3.2376,1.194,4.3357,,,,,,,,,,,,,,,72,,,,223
+3387,0.69166,1.4833,,50-59y,Other,,,18.8668,4.6373,2.6423,2.1245,0.81669,ppmi,,,F,,0.39079,4.1136,3.8063,0.88212,8.8355,1.5111,0.35015,2.8319,2.7966,46.4409,16.6716,216.3791,3.7428,4.4302,1.6639,1.9242,3.4053,6.8304,1.8946,3.2527,0.39697,6.1885,10.3894,6.0558,7.146,2.3396,4.5272,1.7287,17.0858,5.4154,3.7844,1.1301,2.5817,5.9592,12.5828,3.1297,4.0898,3.4181,1.5014,1.3958,4.3646,9.9241,3.079,2.2219,11.735,2.2137,2.5003,2.1184,13.8075,1.909,3.8894,1.0687,13.8644,4.8082,8.5811,3.2755,11.0491,6.75,8.2549,7.4129,3.4603,1.4583,4.6578,,,PD,0.069295,PD,,PD,0.37488,3.5202,3.879,0.89533,9.2114,1.697,0.36367,2.7929,2.8416,46.8464,16.1191,220.4503,3.8311,4.5321,1.7464,2.0774,3.525,6.9453,2.066,3.5366,0.49666,5.9293,10.4643,4.9732,7.8797,2.173,4.497,1.642,16.0642,4.4497,3.6514,1.0316,2.5182,7.1814,13.1039,2.7504,4.1904,3.6725,1.6342,1.3777,3.9999,10.3122,2.9321,2.1769,10.6771,1.9666,2.2277,1.9969,12.8056,1.8669,3.7626,1.0607,13.9877,4.8313,8.1356,3.8243,10.5057,7.501,7.945,7.9466,3.2145,1.4642,4.5126,,,,,,,,,,,,,,,56,,,,224
+3389,1.4884,1.8872,,70-79y,Other,,,20.1491,5.1552,2.4653,2.2657,1.3529,ppmi,,,M,,0.42329,4.3843,4.0872,0.86541,9.7365,1.3976,0.37705,2.7726,2.9383,48.3317,17.2111,212.9465,3.9363,4.2659,1.6873,1.8997,3.1532,7.5234,1.9769,3.0614,0.55464,5.645,11.3831,14.8274,7.2395,2.1361,4.5827,1.759,18.3762,5.7552,3.9145,1.1586,2.3719,7.1324,14.4246,3.1133,4.1472,3.1298,1.4178,1.3056,4.3499,10.2773,3.3954,2.2121,12.1445,2.1991,2.365,2.1915,12.2054,1.9985,3.9542,1.216,14.6843,5.7919,9.4264,3.9399,10.9018,7.3944,7.8398,7.4678,3.9209,1.5,4.6454,,,,0.086428,CN,,HC,0.37368,4.0003,3.8986,0.88542,9.7337,1.5748,0.38147,2.8762,2.8815,48.8352,16.8766,216.0145,3.7413,4.5231,1.7606,1.7856,3.4297,8.0433,1.8907,3.3003,0.54825,6.3636,12.1292,11.8936,8.0312,2.0237,4.7606,1.6929,17.2159,4.6827,3.6034,1.1209,2.2549,7.656,14.0326,2.5345,4.4153,3.4201,1.3842,1.2615,3.9952,10.5601,3.1761,2.2715,10.42,1.9472,2.3251,2.0987,13.2476,1.872,3.924,1.1765,14.8014,5.6545,8.6292,4.1272,11.3346,7.4316,7.4955,7.8386,3.4244,1.3252,4.4351,,,,,,,,,,,,,,,72,,,,225
+3390,0.89342,1.6925,,60-69y,Other,,,19.3401,4.8738,2.5245,2.1733,1.1599,ppmi,,,M,,0.45419,3.8303,3.9454,0.86403,8.6021,1.4086,0.38247,3.3185,3.0614,46.2904,16.0804,218.8547,3.8521,4.6938,1.645,1.9393,3.1382,7.0434,1.8704,3.0998,0.40039,6.4484,9.9104,12.0874,7.207,2.3505,4.3183,1.6079,16.0692,5.8215,3.6809,1.2038,2.564,5.9893,11.8531,3.5507,4.3739,3.1109,1.4847,1.4258,3.905,10.0875,3.1763,2.1353,11.2553,2.4637,2.4382,2.1354,12.7484,2.2336,4.3759,1.1218,14.5987,4.6888,7.8993,3.8406,11.5385,6.6283,7.9727,7.395,3.9046,1.6197,4.7283,,,,0.066921,CN,,HC,0.3987,3.2435,4.0282,0.83971,10.0721,1.5622,0.38031,3.3761,3.196,47.5386,15.3346,224.4324,3.4121,4.7269,1.7314,1.8217,3.3755,7.3874,1.8741,3.2202,0.46508,6.6126,10.3792,11.5449,8.2357,2.0716,4.0079,1.6016,16.7672,5.228,3.4401,1.1158,2.68,6.6567,12.6145,3.212,4.5098,3.1182,1.4472,1.4076,3.6757,10.1719,2.9386,2.2863,9.5317,2.5002,2.3143,1.9837,11.5601,1.9154,4.3741,1.0684,13.475,5.0834,7.857,4.7652,11.1568,6.9724,7.9741,7.3431,3.368,1.3963,4.5213,,,,,,,,,,,,,,,66,,,,226
+3392,0.79511,1.7646,,50-59y,Other,,,18.1859,4.7353,2.9072,2.2452,1.0003,ppmi,,,F,,0.47845,4.3915,4.2093,0.89419,9.5554,1.5994,0.39676,2.9035,3.2911,49.1582,15.4777,192.0601,4.0499,4.3867,1.7207,1.9401,3.7076,7.6061,2.0632,3.1483,0.38329,5.9955,11.513,14.4047,7.8771,2.6183,5.0256,1.7435,19.9905,5.8293,3.97,1.2499,2.7726,7.0285,13.2175,3.2113,4.1469,3.2184,1.6619,1.3736,4.5766,10.5767,3.3621,2.2995,13.0305,2.3773,2.5892,2.1792,15.2043,1.9877,4.4315,1.1274,15.5944,4.8947,10.2234,3.8984,12.1823,6.6481,7.5617,7.2565,4.0458,1.633,4.4705,,,PD,0.066611,PD,,PD,0.42019,3.5556,3.9964,0.87898,10.8617,1.7037,0.40151,2.9163,3.3497,49.3973,15.1203,194.9637,3.932,4.3971,1.7647,2.1071,3.6882,7.9184,2.0713,3.265,0.35882,6.8891,11.6046,10.614,8.1138,2.3429,4.8497,1.7576,19.0949,5.7456,3.7315,1.148,2.8117,7.6863,13.4367,3.1081,4.3047,3.9462,1.629,1.3102,4.191,10.6114,2.9725,2.2325,10.3401,2.1721,2.3519,2.0848,13.3188,1.9298,4.2991,1.0647,15.6971,5.3191,8.3841,4.517,11.871,7.1383,7.3508,7.54,4.0011,1.5215,4.1902,,,,,,,,,,,,,,,51,,,,227
+3400,1.046,2.274,,-50y,Other,,,17.2683,4.731,2.9481,2.3195,1.2734,ppmi,,,F,,0.48346,5.1042,4.3192,0.9725,10.3682,1.7495,0.42026,3.1431,2.8381,53.045,14.7202,239.1793,4.418,4.6341,1.9151,2.1134,3.5808,8.2763,2.2861,3.5616,0.42946,6.7622,12.2563,15.2669,7.7219,2.8029,5.2579,2.0382,19.4315,6.8662,4.3261,1.29,3.0447,7.3456,14.8406,3.2193,4.2746,3.4902,1.6999,1.4422,4.246,11.2544,3.5298,2.4246,13.2396,2.9774,2.9007,2.2899,13.9548,2.6587,4.0004,1.187,15.4712,5.721,11.0409,3.9458,11.3086,8.2692,8.8785,7.7792,4.1158,1.9591,4.7413,,,PD,0.051207,PD,,PD,0.42942,4.0626,4.2818,1,11.5745,1.7394,0.41,3.2144,2.9281,51.9217,14.305,240.1659,4.5798,4.8624,1.8914,2.1776,4.0813,8.1037,2.3665,3.7082,0.38321,7.1738,11.673,14.717,8.0976,2.327,5.0785,1.9625,18.8901,5.7061,4.0772,1.0479,2.6829,8.9605,15.0466,2.7098,4.39,4.1315,1.6909,1.4849,4.2272,11.1645,3.1389,2.3669,10.8233,2.7216,2.5316,2.0369,12.449,2.4455,3.9519,1.1726,15.5632,6.002,9.2514,4.6047,10.9386,8.0894,8.5009,8.0591,3.8802,1.7956,4.4138,,,,,,,,,,,,,,,39,,,,228
+3401,0.88853,1.8342,,50-59y,Other,,,16.3197,4.531,3.1335,2.403,1.3026,ppmi,,,F,,0.48011,5.1486,4.6365,0.95486,10.0046,1.8232,0.43029,3.1053,2.9249,54.0114,14.4945,206.3828,4.2941,4.5868,1.922,2.2833,4.0956,7.8135,2.3257,3.3652,0.35859,6.4812,11.4935,14.3245,8.1058,2.9539,5.5228,2.1371,20.0244,6.5248,4.2731,1.2171,2.9355,7.6011,14.6994,2.9312,4.4249,3.884,1.86,1.2884,4.926,11.4568,3.4018,2.3522,11.6122,2.6391,2.7748,2.338,12.898,2.2577,4.1777,1.3165,16.5554,5.382,9.0256,3.6069,11.0004,7.7754,8.1081,8.3138,4.5496,1.8273,4.2817,,,,0.057851,CN,,HC,0.42877,4.1474,4.4251,0.93549,12.269,1.9746,0.43048,3.389,3.0668,53.0181,13.7479,207.6806,4.7913,5.1586,1.8813,2.2971,4.0924,7.9682,2.1516,3.6495,0.65014,7.2008,11.4864,13.2486,8.4369,2.5368,5.0966,1.9302,18.8332,6.3032,4.1248,0.99815,2.735,8.5483,14.1919,2.8229,4.5809,3.7435,1.7079,1.299,4.5957,11.48,3.1361,2.4948,9.9921,2.8404,2.5384,2.1539,11.8153,2.2849,4.1726,1.2706,16.6349,5.7638,8.8003,4.5491,10.3939,8.1888,8.1127,8.0062,3.9158,1.878,4.0935,,,,,,,,,,,,,,,56,,,,229
+3403,3.4569,5.0006,,60-69y,Other,,,21.2648,5.755,3.5549,2.5255,3.6092,ppmi,,,M,,0.45635,5.6904,4.4319,0.94726,10.8335,1.7918,0.41934,4.0576,3.7309,56.659,17.6162,232.0721,4.317,4.3617,1.7725,2.1696,4.0757,8.0622,2.115,3.6032,2.5746,7.116,12.4929,70.464,8.3537,2.6539,9.832,1.7823,19.8366,6.6353,4.339,1.3157,4.5262,9.0271,15.7336,3.9648,4.7822,3.7612,1.7533,1.4363,5.1746,11.7335,3.3658,2.5337,11.3796,2.6311,2.7914,2.3996,11.7961,2.0718,4.4526,1.3924,17.6338,8.6787,10.1866,3.7202,12.1623,7.5826,8.0731,8.3512,4.4574,1.6929,5.0604,,,PD,0.070691,PD,,PD,0.43022,5.315,4.0705,0.94979,11.2957,1.9355,0.41632,4.5639,3.9713,57.0233,16.7298,233.989,4.401,5.5155,1.8018,1.9808,3.998,8.124,2.0761,3.8137,1.7163,7.2043,12.4059,59.1634,9.3996,2.4623,10.1014,1.9078,19.8398,5.5074,4.0589,1.4355,4.526,9.5864,15.9603,3.6152,4.8513,3.7594,1.7463,1.464,4.3206,12.0134,3.2137,2.284,11.3034,2.3156,2.5856,2.1354,13.5759,1.9425,4.074,1.3717,17.4445,8.2021,8.5247,4.3087,11.8212,8.3404,8.3824,8.6096,3.97,1.5464,4.9962,,,,,,,,,,,,,,,69,,,,230
+3404,0.71623,1.5642,,50-59y,Other,,,15.4057,4.4514,2.5286,1.9546,0.75487,ppmi,,,F,,0.41472,4.1427,3.9319,0.83656,9.3176,1.4918,0.36789,3.1477,2.6017,43.576,13.2473,195.7266,3.379,5.0151,1.6357,1.887,3.0776,7.1117,1.8697,3.1105,0.37537,5.83,10.7628,5.7466,7.0881,2.3252,4.5645,1.4898,17.3419,5.6106,3.5771,0.98692,2.5574,6.062,13.4494,2.982,3.7927,2.885,1.4906,1.2369,3.9728,10.021,2.9454,2.0271,10.1829,2.1803,2.2735,1.9264,11.0416,1.7948,3.9002,1.0887,13.0279,4.8861,8.3195,3.7312,10.0898,6.9984,7.9573,7.1784,3.5835,1.3443,4.0695,,,,0.066584,CN,,HC,0.36889,3.748,3.7784,0.85424,9.6337,1.6833,0.36857,3.5837,2.5953,43.3121,12.7202,196.1887,3.8099,4.7814,1.6009,1.909,3.3103,7.0036,1.8602,3.2368,0.45614,6.9699,10.6155,4.8105,7.2505,2.0547,4.3035,1.4727,16.5185,5.179,3.5339,0.87239,2.3639,6.4161,12.7596,2.5645,3.8133,3.1865,1.4928,1.2994,3.6355,9.9844,2.6001,2.0849,10.0897,2.1294,2.1417,1.7314,10.654,1.6661,3.8028,1.0579,13.0861,4.5861,8.1259,4.2822,9.8039,6.8669,7.6991,7.0764,3.2716,1.2427,3.8662,,,,,,,,,,,,,,,56,,,,231
+3405,1.3037,2.7431,,60-69y,Other,,,14.7594,3.9982,2.3913,1.9065,1.1627,ppmi,,,F,,0.35932,3.4601,3.5848,0.7526,7.1939,1.2968,0.33667,2.5123,2.6185,42.9771,12.616,181.9949,3.2471,3.3868,1.5333,1.7567,3.1162,6.3232,1.8098,2.6455,0.49705,5.0166,9.5716,12.3572,5.721,2.0561,3.7763,1.4191,15.799,4.6716,3.5363,1.1087,2.2493,5.4544,10.8796,2.1931,3.5178,3.2365,1.2638,1.1256,3.5569,8.343,2.8857,1.9712,9.2249,2.1816,2.3361,2.0225,10.1398,2.04,3.3621,0.97169,13.4854,4.2964,7.0926,2.425,7.5025,5.9506,6.8249,6.9429,3.3803,1.5716,3.9609,,,,0.078224,CN,,HC,0.33123,3.3942,3.6106,0.73501,8.9367,1.6915,0.33871,2.7273,2.6312,43.5369,12.086,182.0666,3.3474,3.6584,1.5017,1.6874,3.1604,6.3168,1.8188,2.8066,0.59323,5.5011,9.8813,12.9564,6.8091,1.8782,3.6987,1.4539,16.5676,4.3236,3.5877,1.0254,2.0134,6.1104,11.4605,2.0886,3.546,3.1214,1.2649,1.1398,3.1693,8.806,2.6019,2.044,7.3462,1.7386,1.962,1.9459,9.9232,1.712,3.3617,0.99377,11.415,4.1066,6.3897,3.1625,8.7684,5.9676,6.7547,6.7287,2.9961,1.4216,3.6838,,,,,,,,,,,,,,,64,,,,232
+3406,0.85362,1.8575,,-50y,Other,,,20.353,5.2495,3.2785,2.712,0.96605,ppmi,,,M,,0.54032,4.9288,4.2284,0.94752,10.5841,1.8392,0.43941,3.1397,3.6521,58.0525,17.7713,271.6487,4.7245,5.0547,1.8585,2.1875,4.0493,8.7276,2.7446,3.3737,0.37813,7.3369,13.2015,9.9128,8.0577,2.8567,5.3213,2.0758,20.1775,7.2876,4.8183,1.3225,2.9945,7.3914,15.3593,3.3239,4.7034,3.4683,1.8569,1.6797,4.7959,12.2186,3.5392,2.4349,11.7601,2.7782,2.843,2.4444,13.5919,2.2836,4.1343,1.3433,18.5458,5.6839,9.9821,4.5358,12.377,8.1185,9.4233,8.3037,4.4471,1.8405,5.419,,,PD,0.078986,PD,,PD,0.45356,4.3665,4.4582,0.95499,11.4014,2.1566,0.43501,3.2844,3.3678,57.8419,17.0813,268.8011,5.0196,5.2406,1.8894,2.3657,4.1271,9.0078,2.6558,3.5866,0.55142,7.5972,13.9327,7.2153,8.6646,2.8267,5.3186,2.0346,19.5618,6.3848,4.6025,1.082,3.0337,8.3779,15.8097,2.8918,4.8408,3.9187,1.9004,1.7459,4.5731,12.2773,3.0729,2.5821,11.8846,2.9195,2.6557,2.3145,13.9863,2.3806,4.0357,1.3366,17.4987,5.7731,9.0396,5.1037,11.7035,8.3358,9.1216,8.9944,3.6935,1.9946,5.1551,,,,,,,,,,,,,,,35,,,,233
+3407,1.1806,2.2069,,60-69y,Other,,,19.216,4.3995,2.9411,2.3176,1.543,ppmi,,,M,,0.40593,3.9026,4.006,0.83343,9.6202,1.4457,0.38941,3.2646,2.427,46.1204,20.2695,253.993,3.5573,4.338,1.6676,1.7512,3.0302,6.3009,1.8806,3.1812,0.46865,6.513,10.0936,12.5239,7.0345,2.0025,4.4571,1.4882,15.7425,6.5777,3.8466,0.97649,2.2223,6.4606,12.0992,3.3394,4.0074,2.482,1.2497,1.4564,4.2931,11.155,3.0964,2.3897,10.2119,1.98,2.1185,2.0116,9.4072,1.462,4.4738,1.1504,12.5248,4.7628,7.6019,3.711,10.277,5.9083,7.8122,6.8652,3.1468,1.3592,5.1184,,,PD,0.078059,PD,,PD,0.38226,3.2354,4.0235,0.79395,9.2576,1.4666,0.38623,3.6255,2.4737,47.1225,18.7506,258.9341,3.5056,5.1246,1.5805,1.7906,3.2602,6.6921,1.8212,3.2216,0.6281,6.0399,10.8299,9.1971,7.8449,1.8906,4.3445,1.5756,16.0375,4.6997,3.3681,1.0065,2.146,7.6803,11.6672,3.2753,4.1714,2.7107,1.3019,1.5343,3.9753,11.3127,2.7785,2.4037,9.1014,2.0088,1.88,1.962,10.1664,1.416,4.0539,1.0728,12.503,4.802,6.5726,4.0773,9.9521,5.6767,7.8047,6.9152,3.0071,1.3484,4.7783,,,,,,,,,,,,,,,65,,,,234
+3409,1.056,2.1353,,60-69y,Other,,,17.0865,4.0966,2.7387,2.1703,1.1561,ppmi,,,M,,0.45398,4.8659,3.8043,0.94806,9.1743,1.7237,0.4064,2.9945,2.5614,47.7701,14.0875,242.3463,4.4318,4.5538,1.8547,1.8819,3.5637,7.9083,2.373,3.4736,0.47948,6.0084,12.2066,10.7884,7.1361,2.6102,5.267,2.0144,19.538,5.6524,4.3243,1.0871,2.8387,6.9911,14.4347,2.8691,4.4332,3.4875,1.5288,1.3522,4.5183,11.1662,3.397,2.233,11.8198,2.6656,2.446,2.2683,12.5258,2.354,3.7047,1.2997,13.882,5.6323,10.2615,3.1893,11.0859,7.7962,8.4056,8.0487,4.2806,1.8208,4.5945,,,PD,0.076821,PD,,PD,0.40212,4.0407,3.9344,0.97011,10.5087,1.9051,0.42122,3.2023,2.6566,46.5757,13.0756,247.8287,4.5605,4.6916,1.922,2.2344,3.6996,7.5958,2.2642,3.761,0.42457,6.403,12.0549,8.7545,7.6266,2.3889,4.6608,1.8744,19.9,4.7005,4.0988,1.0895,2.9321,7.8873,14.0865,2.2944,4.2124,3.6787,1.6617,1.392,4.1619,10.9919,3.0211,2.2411,10.5533,2.4998,2.3172,2.1029,12.5261,1.9196,3.6584,1.2992,12.8721,5.3833,8.2776,3.4757,10.6638,7.1039,7.9311,8.4768,3.6568,1.7274,4.4094,,,,,,,,,,,,,,,64,,,,235
+3410,1.34,2.2068,,70-79y,Other,,,18.3792,4.9399,2.9314,2.2527,1.1986,ppmi,,,M,,0.42721,4.5493,3.9594,0.87293,9.3735,1.7311,0.41877,2.9974,2.814,52.1581,14.8505,207.3273,4.1626,4.6535,1.7826,1.9205,3.7147,7.5416,2.3169,2.9276,0.43095,6.1683,10.9947,12.7788,8.2146,2.8023,5.0383,1.8935,21.0921,6.2026,4.3646,1.1148,2.6017,6.8809,12.4297,3.0977,4.668,3.3303,1.7419,1.2265,4.6471,10.9745,3.2244,2.1185,9.9611,2.6637,2.6981,2.1057,11.5696,2.0598,3.6072,1.2946,15.4275,5.2879,7.8547,3.6975,12.4807,6.9775,7.9631,8.1226,4.0855,1.6636,4.5559,,,,0.070098,CN,,HC,0.38364,3.9875,3.7797,0.86619,11.2597,2.1071,0.41432,3.3393,2.7798,52.2636,13.9291,200.8781,4.0652,4.9318,1.731,1.8732,3.8041,7.9885,2.1542,2.9799,0.39495,6.886,11.601,14.0399,8.4241,2.736,4.5591,1.8098,20.6718,6.1765,4.1105,1.0272,2.7393,7.4079,12.8594,3.0776,4.579,3.5182,1.667,1.246,4.2672,11.1527,2.8812,2.1149,9.4611,2.2169,2.5542,1.8958,12.3361,1.8796,3.6748,1.2339,14.6258,5.004,7.6775,4.6296,10.324,6.6238,7.6219,7.8184,3.8764,1.4239,4.3423,,,,,,,,,,,,,,,74,,,,236
+3411,1.3202,1.547,,-50y,Other,,,20.0438,4.8492,3.0201,2.5176,1.2813,ppmi,,,M,,0.52379,6.1761,5.086,1.0202,11.5663,2.1017,0.44912,3.4941,3.1086,52.682,17.9414,264.7169,4.6125,4.5299,1.8585,2.3344,4.4352,8.5319,2.812,3.3357,0.44423,8.4351,14.7293,16.1738,8.208,3.0244,5.9138,2.3598,22.7375,7.3839,5.1709,1.2521,3.1128,9.4394,16.3148,3.6886,4.8081,4.0917,1.8887,1.5964,5.6428,12.043,3.1939,2.5957,13.5667,2.7249,2.7935,2.6405,15.2667,2.4726,4.5061,1.4699,18.5937,6.9511,9.4818,4.0679,13.2104,7.845,9.4425,9.1414,4.7857,2.2142,5.3079,,,,0.079397,CN,,HC,0.44409,5.1816,4.6724,0.94966,11.5688,2.2245,0.43701,3.4164,2.9535,52.7799,16.9265,261.3481,4.6414,5.0739,1.9114,2.1633,4.5087,8.887,2.6928,3.6239,0.44085,7.8805,14.2371,12.0879,8.8197,2.8254,5.5427,2.2562,22.895,6.246,4.6264,1.2074,3.0645,10.8059,15.9029,3.082,4.7784,4.4886,1.8892,1.6352,4.8975,12.5874,3.2177,2.5561,11.9997,2.6012,2.5537,2.3515,16.0777,2.1332,4.2939,1.4354,18.035,7.0135,8.1293,5.5163,13.3282,7.7537,9.3195,8.8813,4.3858,1.8496,5.0797,,,,,,,,,,,,,,,41,,,,237
+3413,1.1736,1.6822,,-50y,Other,,,23.169,5.3278,2.983,2.2908,1.3462,ppmi,,,M,,0.62896,6.2012,5.6656,1.1592,11.4692,2.2253,0.51791,4.1854,3.9144,57.0062,20.3609,300.9299,5.3913,5.681,2.2764,2.7266,4.9831,9.1231,3.2094,3.9529,0.66077,8.4342,14.0778,18.529,9.2525,3.2518,6.2334,2.7813,26.2932,7.3313,5.7151,1.506,3.3007,9.5171,17.2745,4.2628,5.6075,4.5609,1.9265,1.8196,5.4303,13.3908,3.9772,2.8489,14.1091,2.8098,3.1875,2.7631,15.3112,2.3755,5.3287,1.6902,20.0928,6.803,9.5814,4.3582,13.6408,8.8554,10.2533,9.5959,4.7876,2.0689,6.0099,,,PD,0.081648,PD,,PD,0.55349,4.7574,5.4055,1.152,13.2498,2.5534,0.51854,4.3796,3.8284,57.3781,19.1644,300.0183,5.2729,5.7547,2.3524,2.4378,5.6164,9.052,3.1352,4.1845,0.83656,8.1269,14.5323,13.7083,10.258,3.055,6.0106,2.6877,24.7102,5.8819,5.5534,1.1235,2.9726,10.77,16.5644,3.5084,5.4793,4.2308,2.0916,1.796,5.4286,13.5664,3.6448,2.8269,12.3007,2.7441,3.1438,2.432,16.3089,2.2253,5.0628,1.5986,21.2213,6.7156,10.3461,4.6565,12.4316,8.9238,10.1041,10.2187,4.64,1.8259,5.7136,,,,,,,,,,,,,,,43,,,,238
+3414,0.73665,1.755,,-50y,Other,,,21.5686,5.7333,3.251,2.5496,0.77029,ppmi,,,F,,0.53278,4.9891,3.9763,0.91451,9.4118,1.8548,0.4211,3.0871,2.8328,58.0557,18.1681,233.0232,3.9406,5.2739,1.8291,1.9269,3.8511,8.1423,2.5858,3.153,0.36013,7.2044,12.5921,5.6331,8.1793,2.6674,5.4421,2.0927,19.8703,6.6226,4.3796,0.87904,2.521,7.2875,15.6346,3.4511,4.6705,3.0258,1.4611,1.4795,4.3877,10.3203,3.3118,2.1692,11.8387,2.5859,2.4262,2.1103,13.5062,2.2776,4.1104,1.2393,15.2674,5.1681,9.2957,4.1634,10.5542,8.4085,8.9474,8.4273,3.7631,1.6299,5.2713,,,,0.078062,CN,,HC,0.47102,4.2364,4.0313,0.93915,10.8045,2.1103,0.44469,3.5301,2.9263,58.2375,17.557,238.0713,4.1601,5.051,1.9309,2.0283,4.1821,8.2473,2.5588,3.4334,0.40149,6.8755,12.6095,5.785,8.7474,2.4533,5.3606,2.1478,19.3252,5.3714,4.3032,0.95883,2.5646,8.3752,15.4123,2.5988,4.6748,3.3772,1.5988,1.5455,4.281,10.6937,3.1915,2.2968,10.3039,2.3782,2.3139,2.1156,13.0167,2.1906,4.2265,1.2466,15.4126,5.3551,9.2004,4.3493,10.0016,8.3043,8.4974,8.9715,3.3911,1.6526,5.1186,,,,,,,,,,,,,,,37,,,,239
+3415,1.7264,2.0089,,60-69y,Other,,,19.2835,5.8169,2.8741,2.5332,2.2118,ppmi,,,M,,0.47149,5.0555,5.4736,0.92569,11.0662,1.9098,0.45241,3.2282,3.2231,52.3815,15.8745,221.0771,4.8501,5.3178,1.7683,2.3517,4.2164,8.436,2.7197,3.4147,0.89845,7.7645,13.6551,31.7808,7.9016,2.8331,5.3169,2.1771,19.9774,7.3383,4.6926,1.2789,2.7589,7.8108,14.6152,3.9581,4.8294,3.6035,1.7721,1.4633,4.5545,11.9152,3.297,2.7193,12.0129,2.7167,3.023,2.5383,13.7425,2.6092,4.7225,1.4806,16.9478,5.6375,9.528,4.4673,12.3122,7.7776,8.8324,8.1093,4.1949,2.1308,4.8677,,,PD,0.081924,PD,,PD,0.42815,3.851,5.1456,0.91423,11.902,2.3396,0.46033,3.4418,3.3215,52.3841,15.0105,224.468,4.8596,5.3906,1.9025,2.4201,4.5998,8.5263,2.7447,3.471,0.75025,7.3519,14.0783,24.2171,9.1552,2.9113,5.219,2.2629,21.3685,5.2144,4.851,1.2929,2.8264,8.8984,16.554,2.9696,4.8758,3.8899,1.9694,1.4632,4.1774,11.7765,3.053,2.6056,11.6416,2.94,2.8349,2.3033,13.5338,2.3769,4.3528,1.4587,16.4467,6.0916,9.528,4.0498,11.1603,8.309,8.7716,8.3666,4.3118,1.9018,4.6694,,,,,,,,,,,,,,,61,,,,240
+3417,1.0499,2.3787,,50-59y,Other,,,19.5139,5.2603,2.9905,2.3999,1.1048,ppmi,,,M,,0.47401,4.8056,4.222,0.90433,9.3027,1.7359,0.42166,3.3742,2.8472,52.227,16.8639,226.204,3.921,4.9853,1.7483,1.9326,3.5542,7.6671,2.357,3.3795,0.37321,7.6769,12.2871,8.7407,8.9796,2.6239,4.7102,1.9018,19.9016,6.5465,4.2682,1.0503,2.4554,7.0884,14.0257,3.768,5.1208,3.3757,1.5986,1.4967,4.3157,10.5015,3.4896,2.2487,10.674,2.4903,2.3031,2.2771,12.1791,2.211,4.2507,1.2739,14.3098,4.8744,9.6277,3.5315,11.0363,7.5281,8.8461,7.8454,4.068,1.6176,5.0247,,,PD,0.070717,PD,,PD,0.41013,4.0709,4.1929,0.9098,11.18,2.0015,0.43369,3.5682,2.7426,52.1413,16.1954,231.7099,4.0144,5.4371,1.8983,1.9772,4.0231,7.821,2.3119,3.5823,0.66918,7.4566,12.8421,7.8815,9.5713,2.4644,4.6158,1.9433,20.1033,5.2619,4.0237,0.80194,2.2308,8.2506,15.4392,3.0634,4.9765,3.278,1.7192,1.5064,4.1504,10.4679,3.2612,2.3025,9.8982,2.2298,2.2131,2.0613,11.668,1.9759,4.3693,1.1764,13.6215,5.1452,7.5091,4.3549,10.1502,7.5294,8.7264,8.3053,4.0877,1.5123,4.836,,,,,,,,,,,,,,,57,,,,241
+3418,1.172,2.0223,,50-59y,Other,,,19.5576,5.7704,2.6723,2.5875,1.3005,ppmi,,,M,,0.48764,4.9105,4.866,0.92106,10.2441,1.815,0.4396,2.6499,3.1799,49.2709,15.1383,251.7422,4.7034,4.6108,1.8848,2.1982,3.808,7.8556,2.5243,3.2467,0.43058,6.6454,12.3358,12.4374,7.1598,2.9009,5.1404,2.0427,19.2044,6.0337,4.6997,1.1041,2.6561,7.4214,15.9437,3.0336,4.2483,3.2927,1.7813,1.4188,4.299,10.5966,3.4939,2.5395,12.5446,2.4066,2.8509,2.2584,12.3347,2.0833,4.2837,1.4935,16.2085,5.1182,9.656,3.1046,11.9205,8.0409,8.2259,8.7396,3.9149,1.6632,4.7788,,,PD,0.08693,PD,,PD,0.43277,4.1043,4.7421,0.91991,11.239,2.0736,0.42121,2.8048,3.3223,49.1133,14.4982,257.1672,4.2573,4.64,1.8808,2.0539,3.7042,8.4739,2.4056,3.4852,0.55632,6.5097,13.5118,12.7938,8.1864,2.6556,5.174,2.0907,19.352,5.0958,4.4515,1.1208,2.384,8.4443,15.7301,2.4924,4.4282,2.9988,1.8518,1.4528,4.1554,10.9524,3.2331,2.6449,11.1997,2.6668,2.731,2.1307,12.3329,2.1123,4.2359,1.3974,16.7462,5.4414,8.45,4.3307,10.3002,7.8968,7.9557,8.6127,3.7477,1.6918,4.5369,,,,,,,,,,,,,,,55,,,,242
+3419,1.2294,2.3867,,60-69y,Other,,,13.7754,3.6102,2.0369,1.8287,1.4802,ppmi,,,F,,0.41971,3.5161,3.6188,0.68151,6.681,1.1974,0.33761,2.4073,2.7966,38.1308,14.0574,193.0951,3.0557,3.125,1.2637,1.4543,2.5758,5.5468,1.7081,2.5581,0.37814,4.5309,7.772,20.1416,5.5629,1.9151,3.1782,1.4585,13.142,4.2953,3.1047,0.71055,1.7681,5.018,8.8172,2.7192,3.0193,2.195,1.2228,1.2517,2.7571,7.1042,2.3659,1.9641,8.2959,2.0751,1.9593,1.6444,8.8167,1.4202,3.7138,1.0001,10.8963,3.5573,6.4507,2.2722,7.7053,5.0235,6.4494,5.4171,2.7226,1.0571,3.9852,,,PD,0.0616,PD,,PD,0.37967,2.9304,3.2693,0.64074,7.4444,1.3766,0.34276,2.4152,2.8043,37.8013,13.6076,192.0712,3.1708,3.2533,1.2504,1.4187,2.8009,5.4376,1.73,2.7117,0.43851,4.4197,7.5613,15.9105,5.5527,1.7461,3.0638,1.4911,13.3748,3.7548,3.0669,0.75367,1.9082,5.7551,9.2195,2.0298,2.9714,2.4491,1.1201,1.2211,2.5717,7.213,2.1372,1.9074,7.5963,1.6437,1.9046,1.5985,8.5992,1.2584,3.5425,0.99869,11.187,3.8069,5.3285,2.9995,8.0443,5.2193,6.2147,6.1117,2.554,1.0718,3.7147,,,,,,,,,,,,,,,67,,,,243
+3420,1.1565,2.4421,,50-59y,Other,,,17.7154,5.1487,3.201,2.2651,1.205,ppmi,,,M,,0.49482,4.8555,4.5284,0.96834,8.6123,1.7393,0.46563,3.3093,2.9759,51.736,15.5546,238.3311,4.146,5.0631,1.8607,2.0087,3.5197,7.8082,2.3113,3.4128,0.33164,6.1517,11.2866,9.0429,8.4503,2.7964,5.0171,1.899,19.6972,5.4663,4.3062,1.1325,2.4671,7.1596,12.4297,3.4406,4.7654,3.0931,1.7386,1.4272,4.6379,10.8677,3.1563,2.4762,11.2579,2.4672,2.7478,2.3614,11.1221,1.9124,4.8169,1.296,14.5855,5.4385,9.2478,3.5086,10.8763,7.038,8.1308,8.3966,3.9538,1.7431,4.813,,,PD,0.072455,PD,,PD,0.42756,4.4846,4.4039,0.97244,8.4259,1.8589,0.46117,3.2821,3.0786,52.2027,14.8987,239.9378,3.9488,5.1701,2.0541,2.0821,3.8306,7.9881,2.2084,3.6305,0.39135,6.9925,10.2531,7.7089,8.9929,2.4697,5.3201,1.8505,20.6081,5.4611,3.8558,1.2121,2.6515,7.6642,8.6731,3.0958,4.7138,3.1973,1.6376,1.4633,4.3927,10.9954,3.0245,2.5502,9.8706,1.9619,2.4329,2.1107,11.5267,1.4748,4.6519,1.2744,13.484,5.2675,5.8691,5.1101,10.2689,5.1901,8.0204,8.4942,3.4851,1.5034,4.5624,,,,,,,,,,,,,,,50,,,,244
+3421,0.68242,1.5153,,-50y,Other,,,19.1225,5.113,2.3549,2.0547,0.85017,ppmi,,,M,,0.52973,5.3885,4.2244,1.0589,10.7713,1.7778,0.45097,3.4295,3.0715,42.9332,15.0132,276.8753,3.8038,5.1377,1.9813,2.0662,3.9283,8.4007,2.6052,3.516,0.38125,7.9013,13.3728,5.6727,8.3695,2.7105,5.3291,2.0576,20.2013,6.8839,4.5713,1.1656,2.823,7.8348,15.9336,4.0246,5.0665,3.3717,1.6743,1.7099,5.1139,12.5855,3.5285,2.2183,11.4885,2.2993,2.7993,2.3225,13.0537,2.0575,4.4331,1.2902,14.4437,5.702,10.5658,4.2867,12.3778,8.253,8.9528,8.6416,3.9437,1.6375,5.4386,,,PD,0.073449,PD,,PD,0.46006,4.9028,4.512,1.0175,11.6025,2.0043,0.4329,3.4957,3.2694,42.7694,14.6153,285.715,3.7061,5.0994,2.0582,2.192,4.384,8.4737,2.4636,3.6192,0.50907,8.9428,12.2494,6.1199,9.0801,2.3996,5.1235,1.9678,19.615,6.8972,4.4175,1.1141,3.298,8.5781,13.5621,3.3045,5.5644,3.2772,1.6063,1.7565,4.7177,12.9499,3.1621,2.4795,9.8306,2.1937,2.5097,2.2807,12.2846,1.7667,4.4157,1.2063,14.62,5.7893,8.4685,5.1146,10.406,7.3827,8.4282,9.2291,3.1668,1.6284,5.2558,,,,,,,,,,,,,,,40,,,,245
+3422,1.6917,2.4486,,50-59y,Other,,,16.3371,5.5604,3.0899,2.4593,2.2547,ppmi,,,M,,0.45456,4.7124,4.1768,0.90796,8.98,1.5385,0.41218,3.4515,3.3222,50.1537,15.146,212.6277,4.1027,4.6757,1.7558,1.8654,3.4972,8.1172,2.3461,3.2398,0.56016,6.8922,11.7532,22.341,8.2761,2.3018,4.4462,1.9052,17.7331,5.9984,3.978,0.95516,2.2439,7.2985,13.7623,3.3795,4.701,3.0286,1.4641,1.3844,4.383,10.9819,3.3857,2.3515,10.3275,2.6804,2.2335,2.3943,11.7982,1.9498,4.1544,1.2784,13.1216,5.0508,8.7852,3.565,10.0845,6.607,7.8206,7.4165,3.4658,1.7862,4.4541,,,PD,0.071563,PD,,PD,0.37518,4.2884,4.2631,0.93227,10.1507,1.7415,0.4014,3.7992,3.3703,50.7484,14.2831,211.7349,3.897,5.2973,1.867,2.1183,3.3771,8.0572,2.1729,3.5186,0.71841,7.2783,12.3637,21.1283,9.203,2.2499,4.4836,1.8822,17.6055,5.4528,3.7558,0.86038,2.1322,7.9459,13.8117,2.6419,4.7569,3.4769,1.6211,1.3971,3.9741,11.1509,3.0869,2.3551,9.3914,1.987,2.2834,2.2253,10.0712,1.6936,3.9658,1.1911,13.4927,4.9716,7.7059,4.8187,9.8569,6.7993,7.7986,8.4255,3.674,1.5951,4.2703,,,,,,,,,,,,,,,58,,,,246
+3423,2.3124,2.6539,,60-69y,Other,,,17.9412,4.9571,2.6717,2.2471,1.6256,ppmi,,,M,,0.41784,4.6575,4.2887,0.89543,9.4356,1.6081,0.40349,3.5751,3.2334,47.4604,14.5514,204.7278,4.0361,4.9716,1.7087,1.8988,3.8554,7.9034,2.3481,3.4688,1.0059,6.6685,12.2912,21.2234,8.0121,2.2725,4.8627,1.8664,19.3959,6.9624,4.0477,1.2606,2.78,7.0672,13.5637,3.1316,4.3294,3.0013,1.297,1.2543,4.6565,10.5154,3.2984,2.527,10.7273,2.1455,2.2794,2.5344,11.9873,2.0364,4.4757,1.2263,14.1457,5.4499,9.4079,3.9907,9.7894,7.2594,8.2426,7.9494,3.3381,1.8411,4.5721,,,PD,0.067976,PD,,PD,0.39708,4.4754,3.9806,0.92054,10.3375,1.8446,0.40045,3.9047,3.2685,46.6902,13.9135,204.9638,3.7353,5.2437,1.8542,1.9407,3.7521,8.1357,2.2451,3.6477,1.028,6.8772,12.7259,16.9774,8.7168,2.343,4.9589,1.7741,17.9826,5.6801,3.9814,1.0644,2.6158,7.6364,13.7903,2.5016,4.2833,3.2397,1.6403,1.3789,4.1277,10.3851,3.0673,2.431,9.7586,2.2041,2.3835,2.1111,11.3648,1.7409,4.1252,1.2158,14.4509,5.033,7.2816,3.8659,10.312,6.9412,7.8376,8.523,3.6799,1.7239,4.5125,,,,,,,,,,,,,,,69,,,,247
+3424,0.8842,2.084,,60-69y,Other,,,16.6159,4.4008,2.9455,2.4498,0.94413,ppmi,,,F,,0.4007,4.6041,3.7554,0.81237,9.483,1.5849,0.38081,3.4418,2.5266,48.5233,15.124,209.2963,3.847,4.622,1.5455,1.9307,3.5142,7.1953,2.1114,3.0924,0.42333,6.0193,10.5364,11.1658,7.192,2.4012,4.3944,1.7376,18.7871,5.8475,3.952,1.0944,2.5416,6.8868,12.5199,2.9549,4.2773,3.3163,1.5341,1.2528,3.932,10.0439,2.9611,2.1636,10.8429,2.6652,2.4316,2.2403,12.0949,2.2933,3.781,1.1634,13.7841,5.2403,7.7778,3.5398,9.849,6.9414,7.8128,7.3569,4.0321,1.9127,4.383,,,,0.065268,CN,,HC,0.3211,4.1247,3.8081,0.83691,10.2417,1.7741,0.37412,3.5937,2.5383,47.7027,14.316,212.0008,3.9969,4.725,1.7066,1.8633,3.5459,7.5783,2.1586,3.2997,0.42417,6.6262,10.9254,8.4719,8.0844,2.2565,4.6649,1.7092,18.6347,5.186,3.7917,0.9458,2.2873,7.6862,12.1099,2.3521,4.313,2.9544,1.6289,1.2973,3.9074,10.4428,2.7583,2.4023,9.4719,2.6166,2.3206,2.179,11.5103,1.9975,3.7607,1.1687,13.2546,5.0858,7.1848,4.1224,9.9459,6.8186,7.414,8.0043,3.6131,1.8187,4.1516,,,,,,,,,,,,,,,64,,,,248
+3428,0.97331,1.5501,,50-59y,Other,,,16.1198,4.9325,2.5506,2.4689,1.063,ppmi,,,F,,0.47299,5.5681,4.378,0.84724,9.7988,1.7965,0.3868,3.5438,2.5442,47.1507,14.3708,218.8203,4.2979,5.7759,1.6965,2.0559,3.6674,7.579,2.4955,2.9617,0.34095,6.9634,11.3451,10.0303,7.6496,2.5469,5.3915,2.0679,21.4751,6.6705,4.7068,0.99687,2.908,8.2264,14.2136,3.2449,4.387,3.5965,1.4681,1.2841,4.1853,11.8142,3.1004,2.4849,11.5668,2.5435,2.6153,2.2819,13.1009,1.9655,3.635,1.3351,15.0772,5.6816,9.1405,4.0563,10.8089,7.3519,8.1002,7.7893,3.7274,1.7468,4.2305,,,,0.067627,CN,,HC,0.3891,5.0865,4.3378,0.92086,10.0148,1.9564,0.40123,3.7011,2.5596,46.7939,13.6353,218.3966,4.3969,5.9446,1.9212,2.4537,4.0333,7.777,2.321,3.2808,0.51872,6.4131,11.9592,7.272,8.7718,2.2647,5.5704,1.9545,20.3911,5.266,4.2061,1.1096,2.9537,8.5076,14.5746,2.3218,4.1936,3.8643,1.5128,1.2952,4.065,11.6236,3.0563,2.4019,10.7184,2.3344,2.349,2.1084,12.3167,1.9177,3.5939,1.22,15.4757,5.9225,8.2233,4.397,10.8244,7.6574,8.0383,8.9504,3.9128,1.5854,4.0124,,,,,,,,,,,,,,,58,,,,249
+3429,2.2529,2.032,,60-69y,Other,,,18.0922,5.1375,2.725,2.4384,1.9295,ppmi,,,M,,0.48564,4.2369,4.6204,0.90444,8.9219,1.5004,0.42062,2.8781,3.5454,51.2501,14.0234,196.7746,4.1871,4.3111,1.6652,2.2056,3.1362,7.3937,2.0189,3.2039,0.86427,5.2201,11.0526,22.4229,7.443,2.3919,4.841,1.652,17.0316,5.4052,3.7648,1.1819,2.6029,6.5416,11.6632,2.3041,4.0264,3.5799,1.6256,1.3586,4.6801,10.5961,3.2949,2.4262,10.6163,2.8697,2.5468,2.3822,11.5702,2.3595,4.0507,1.2116,14.5773,5.2902,8.4791,3.1241,10.2556,6.7568,7.6446,7.2459,3.8583,1.9046,4.6829,,,PD,0.069171,PD,,PD,0.42214,3.7312,4.4428,0.84875,10.9503,1.6017,0.41773,3.264,3.7122,50.6154,13.726,200.404,4.2403,4.6516,1.6461,2.1091,3.6299,7.1797,2.0879,3.4894,0.93841,6.7778,11.8072,22.4973,7.9444,2.2814,4.5559,1.6465,17.994,4.7802,3.7717,1.0983,2.4922,7.1642,12.9536,1.9987,4.4695,3.1811,1.7412,1.3883,4.1471,10.886,2.9903,2.4533,9.0542,2.4995,2.3462,2.0375,11.5625,2.193,4.1048,1.1966,13.2434,5.3085,8.2681,3.8587,10.0525,6.667,7.5192,7.3168,3.5176,1.6629,4.4396,,,,,,,,,,,,,,,65,,,,250
+3430,0.95376,1.81,,50-59y,Other,,,22.6344,5.4124,2.951,2.3503,1.0334,ppmi,,,M,,0.51335,5.1713,4.8861,0.98778,9.737,1.7222,0.42598,3.7131,3.5215,50.2817,19.3305,312.6326,4.4803,5.6071,1.8648,2.0576,3.6585,8.6745,2.617,3.4755,0.55218,7.9628,13.2542,13.7512,8.5939,2.5483,5.5311,2.0347,19.2595,6.9758,4.5673,1.2953,2.9782,7.9046,14.8483,4.2316,5.1565,3.3692,1.5551,1.7479,5.1274,13.7052,3.5334,2.7211,12.1809,2.6344,2.4737,2.7223,13.2262,2.1247,4.4673,1.3813,16.4611,6.0922,9.4238,4.0171,12.5715,7.6702,9.6355,8.4735,4.0914,1.9148,5.7147,,,PD,0.086259,PD,,PD,0.47764,4.2381,4.7921,0.94258,12.0904,1.8867,0.44298,4.0316,3.3335,51.4187,19.138,313.9268,4.6546,5.7572,1.8261,2.0704,3.891,8.3363,2.3912,3.7582,0.64513,8.273,13.4195,8.7593,9.08,2.5713,5.1703,1.9768,21.003,6.3795,4.3981,1.3457,2.7741,8.9648,15.0993,3.2675,5.355,3.5489,1.8539,1.807,4.6762,13.2131,3.2703,2.6864,10.755,2.8038,2.5106,2.4749,12.2703,2.1517,4.4399,1.3834,15.5091,5.7248,9.0156,4.4048,10.9216,7.8464,9.1698,8.55,3.6586,1.9022,5.3687,,,,,,,,,,,,,,,53,,,,251
+3431,0.84993,2.0839,,60-69y,Other,,,18.2453,4.6678,2.6285,1.9985,0.82934,ppmi,,,F,,0.41016,3.6335,3.6513,0.78151,7.3356,1.3767,0.37161,2.8462,2.7335,47.9754,15.2443,201.5237,3.3927,3.8852,1.5544,1.7774,2.7365,6.8446,1.7208,3.1557,0.39528,5.1895,10.0605,7.5644,6.8783,2.0754,4.2071,1.4428,15.2913,5.1063,3.4958,1.0146,2.3158,5.8591,11.8429,2.667,3.7936,3.2291,1.2963,1.3662,3.9017,9.3546,3.0699,1.8538,9.9078,1.7234,2.2781,1.7969,9.8066,1.7969,3.8452,0.97963,12.5086,4.6578,7.4808,3.2736,9.1383,6.0411,7.5146,6.4201,3.1227,1.3398,4.5622,,,PD,0.07646,PD,,PD,0.33864,3.3697,3.7422,0.83784,9.0387,1.4089,0.35939,2.9912,2.7664,46.7941,14.5777,202.8269,2.9608,4.0928,1.5933,1.7801,3.0598,7.2598,1.767,3.4322,0.58949,5.2638,10.2522,6.8113,7.5327,1.9106,4.1592,1.4278,14.5315,4.4774,3.2956,0.89775,2.2787,6.3949,12.2653,2.3624,3.9628,3.3486,1.4015,1.3796,3.6517,9.3176,2.8807,1.8262,8.1316,1.664,2.1985,1.6167,10.3804,1.5918,3.8319,0.93977,12.3505,4.4457,7.4823,3.5701,9.6618,6.7355,7.5397,6.9233,2.9587,1.1167,4.3651,,,,,,,,,,,,,,,62,,,,252
+3432,1.1952,1.9916,,60-69y,Other,,,20.8573,4.4298,2.3781,1.9053,1.2339,ppmi,,,M,,0.40011,3.8197,3.6543,0.72202,6.1273,1.2569,0.34442,2.1566,2.5581,39.5517,21.5051,290.9177,2.7709,3.2309,1.3515,1.5403,2.9552,5.4421,1.6974,2.6247,0.44243,4.6988,8.1429,13.9045,5.359,1.9724,3.6309,1.5088,13.8232,4.2731,3.2924,0.82082,2.0027,5.5015,8.9791,3.2597,3.1412,2.1559,1.1547,1.6561,3.2963,7.6411,2.5078,1.9285,8.3495,2.0009,2.012,1.8335,8.9155,1.502,3.629,1.1179,10.6523,3.9632,5.8702,2.4371,7.4161,4.8783,8.1671,6.0266,2.8702,1.1863,5.1149,,,PD,0.057382,PD,,PD,0.31851,3.3696,3.4496,0.6399,6.906,1.2758,0.31849,2.4832,2.2481,40.9324,22.0746,294.8085,2.7207,3.7349,1.2683,1.5555,2.8964,5.4959,1.6451,2.6784,0.65187,5.5076,8.2918,12.7669,5.8907,1.8102,3.3216,1.3952,13.7317,4.0485,2.9822,0.78301,1.8651,5.4937,9.2695,3.2801,3.322,2.2353,1.3042,1.6362,2.9334,7.9665,2.3211,1.8365,7.0258,1.594,1.8231,1.4105,8.2215,1.1837,3.6116,1.0456,11.3431,3.7399,5.2243,3.3281,7.8859,4.8641,7.7214,5.9136,2.8738,0.93658,4.8607,,,,,,,,,,,,,,,64,,,,253
+3433,1.3934,1.346,,+80y,Other,,,14.9665,3.8505,2.322,1.9023,1.2438,ppmi,,,F,,0.43184,4.766,4.2299,0.78937,8.2636,1.6242,0.37471,2.7517,3.0088,41.0103,12.4975,208.4132,3.9342,4.0569,1.5762,1.8934,3.2152,6.7462,2.3131,2.9359,0.62428,5.7578,9.8358,12.7192,6.4102,2.401,4.4316,1.8302,17.9364,5.863,4.272,0.86504,2.3508,6.6484,10.6056,2.8002,3.7265,3.6377,1.526,1.3575,4.1504,10.4578,2.917,2.3144,10.745,2.2253,2.4104,2.3152,11.8656,1.7651,3.778,1.3341,14.3525,4.9274,6.8786,3.3748,9.6991,6.1676,7.3533,6.8051,3.8773,1.6201,4.1101,,,PD,0.05947,PD,,PD,0.34473,4.3142,4.0167,0.79264,9.4953,1.7284,0.36974,2.9001,2.7836,42.5677,12.2777,206.4478,3.4092,4.5037,1.639,2.0372,3.5599,6.9012,2.1715,3.0932,0.57627,5.5592,10.2721,9.817,7.4341,2.1634,4.5303,1.8261,16.9756,4.3884,3.8187,0.89862,2.235,7.4812,11.4009,2.3154,4.0931,4.3487,1.5461,1.3132,3.8389,10.2085,2.6892,2.1184,8.8463,1.7698,2.2109,2.0672,11.3333,1.5798,3.7315,1.2839,14.0706,5.0608,7.1379,3.4567,8.5983,6.219,7.0619,7.1786,4.0343,1.3498,3.9024,,,,,,,,,,,,,,,82,,,,254
+3434,1.2663,2.3421,,50-59y,Other,,,20.2168,5.3956,3.0818,2.4026,1.4813,ppmi,,,M,,0.51531,5.3365,4.8239,0.89608,9.9406,2.0432,0.4593,3.8712,3.1886,53.6989,17.8337,258.4217,4.4959,5.0586,1.8515,2.0613,4.1757,8.1464,2.7211,3.2387,0.49245,7.9693,11.8717,19.3992,8.749,2.955,5.1847,2.2814,20.7311,6.6111,4.9005,1.3482,2.7367,8.3852,14.0198,4.0454,5.5332,3.3391,1.7166,1.5439,5.2747,12.6723,3.288,2.5383,11.3396,2.6936,2.8968,2.5334,12.3896,2.0332,4.3464,1.4942,16.4637,6.813,9.3269,4.4826,12.0253,7.2264,9.3463,8.4619,4.0836,1.9384,4.9877,,,PD,0.074276,PD,,PD,0.44893,4.4579,4.7738,0.90457,11.4842,2.3292,0.4331,3.8947,2.909,53.332,17.0105,260.7809,4.1549,5.313,1.9115,2.1537,4.5202,7.9248,2.6995,3.6114,0.59301,7.7866,12.7273,13.1836,9.4058,2.8058,5.3276,2.3577,19.5853,5.8282,4.7524,1.2268,2.6326,9.4392,15.5512,3.2766,4.9443,3.6605,1.8593,1.5909,4.9174,12.3755,3.2106,2.6039,10.1428,2.3444,2.7498,2.2027,12.059,2.2062,4.0605,1.4146,15.7927,5.9949,8.7577,4.4775,11.3509,7.725,9.2533,8.8065,4.171,1.6504,4.9198,,,,,,,,,,,,,,,54,,,,255
+3435,1.7815,2.2241,,50-59y,Other,,,19.5556,5.606,3.14,2.8065,2.1776,ppmi,,,M,,0.51494,6.0046,5.4256,1.1959,11.7453,2.015,0.48941,4.0928,3.9339,57.5665,17.9317,260.2262,5.6602,6.2343,2.3952,2.4216,4.3725,9.3264,2.7878,4.0398,0.62867,8.7098,15.0041,26.3658,9.9416,3.0544,5.8936,2.4375,23.4491,8.1989,5.1251,1.3958,3.0271,8.9087,16.7585,4.607,5.681,3.4162,2.0544,1.6853,5.7865,13.3239,3.8593,3.0882,14.6055,3.5519,3.2383,2.7033,16.2366,2.6319,5.2601,1.5445,17.7538,6.4385,11.098,4.8663,12.2865,8.1767,9.9727,10.7787,4.8644,2.0648,5.3402,,,PD,0.088139,PD,,PD,0.47437,5.3255,5.0004,1.1586,13.8239,2.5026,0.55154,4.3517,3.9545,59.1505,17.5635,262.0118,5.4957,6.195,2.4849,2.3317,5.2166,9.0581,2.8984,3.91,0.81135,9.2806,15.2167,24.1666,10.6919,2.8953,5.7768,2.4954,22.2345,6.7424,5.1054,1.3694,2.957,10.1737,19.5311,4.1581,5.6613,3.3627,1.9581,1.6589,5.0566,13.3193,3.5678,3.2135,12.6554,3.1516,2.9452,2.5175,15.2928,2.5095,4.7718,1.5962,19.3437,6.4823,10.2487,5.2169,11.8772,9.5443,9.7898,10.3405,4.2813,2.0703,5.0916,,,,,,,,,,,,,,,55,,,,256
+3436,1.3278,2.2087,,50-59y,Other,,,19.7017,4.951,2.6893,2.3468,1.3062,ppmi,,,M,,0.49897,5.6844,5.1418,1.0191,11.7355,1.7992,0.44637,3.8061,3.7968,51.2353,15.5538,247.9424,5.5029,5.1088,2.1769,2.3783,3.8822,8.8105,2.5971,3.7178,0.41136,7.8702,13.6857,10.7259,8.7526,2.7903,5.866,2.2047,19.2437,7.8373,4.8046,1.1695,2.82,8.3705,15.3198,4.1507,5.24,3.7783,1.7166,1.4186,5.3001,12.1003,3.8507,2.7455,12.3225,3.2099,3.0048,3.0006,13.6662,2.4182,4.5213,1.3882,16.9226,6.3058,9.642,3.8132,11.1292,8.2039,8.6141,10.0639,4.187,2.2938,5.0099,,,PD,0.079095,PD,,PD,0.4679,4.9389,4.9592,0.98219,12.1859,2.3486,0.45132,4.0369,3.8316,49.8408,14.6542,248.2224,4.9356,5.7703,2.0766,2.3342,4.3538,8.5456,2.5118,4.0001,0.46978,7.307,14.3148,10.1473,9.5313,2.7463,5.6086,2.1985,21.2022,5.5506,4.819,1.3653,3.0894,9.6895,17.4964,3.3539,4.834,3.6302,1.7643,1.5017,4.7558,12.2288,3.4752,2.7594,11.8327,2.9738,2.8276,2.5228,12.8521,2.2716,4.3401,1.3309,15.8944,5.8494,9.8741,4.8669,11.2182,9.0342,8.1608,9.3794,3.957,1.856,4.6719,,,,,,,,,,,,,,,51,,,,257
+3439,1.4328,1.7982,,50-59y,Other,,,17.9011,4.883,2.9806,2.3658,1.3378,ppmi,,,M,,0.4947,4.9074,4.2671,0.97532,9.4592,1.6563,0.43863,2.7344,2.9704,50.6893,16.1196,223.2382,4.1775,4.3602,1.9433,1.9233,3.3918,7.8092,2.1484,3.6212,0.51891,6.6,12.4212,13.4442,6.5424,2.5336,5.636,1.799,19.3201,5.7448,4.1801,1.135,2.7148,7.2711,15.9637,3.1883,4.139,3.5223,1.6555,1.3016,4.7836,10.8547,3.4295,2.3959,12.5502,2.4722,2.7094,2.4021,12.286,2.0886,4.6079,1.2868,15.6079,5.7509,10.6352,3.4976,10.474,8.6154,8.2014,8.8359,3.8973,1.5891,4.7102,,,PD,0.095776,PD,,PD,0.44492,3.969,4.2105,0.94677,11.1416,1.7665,0.44044,3.1045,3.0821,51.1467,15.6108,224.0585,3.6325,5.18,1.9635,2.0532,3.6483,8.2915,2.1705,3.7983,0.66467,6.9008,13.4364,11.0839,7.8643,2.3039,5.5444,1.8872,19.4324,5.7713,3.9252,1.21,2.972,8.4095,16.6075,2.9059,4.333,4.0811,1.7004,1.3311,4.3477,11.3199,3.2758,2.4185,10.5623,2.0957,2.4647,2.0552,12.1206,1.7713,4.3276,1.3332,15.2579,6.1898,8.9044,4.2504,9.9477,7.4715,8.1326,8.4273,3.832,1.4512,4.504,,,,,,,,,,,,,,,57,,,,258
+3440,1.1776,1.5835,,60-69y,Other,,,15.9615,4.6245,2.4427,2.1565,1.5185,ppmi,,,M,,0.4451,4.9254,3.8996,0.80454,7.4892,1.4958,0.36716,3.4992,2.3104,44.4339,15.0585,205.1395,3.9789,4.809,1.5717,1.7842,3.5513,6.6529,2.0468,2.8044,0.31702,6.8455,9.9746,10.9509,7.7039,2.4471,4.7917,1.9285,18.2917,5.296,3.7816,0.92198,2.1557,7.055,12.0938,3.5649,4.4797,3.1554,1.4665,1.2396,4.0352,10.4836,2.8251,2.1739,10.1342,2.3422,2.3641,2.194,11.7394,2.1208,3.3794,1.2127,13.3095,4.8292,8.011,3.6653,9.5567,6.602,7.4443,7.3842,3.614,1.8054,4.1339,,,PD,0.065995,PD,,PD,0.36287,3.9745,3.7298,0.77056,9.4353,1.7652,0.35627,3.3909,2.4736,43.298,15.023,207.9673,3.7857,4.7759,1.6241,1.9321,3.7575,6.6572,2.1388,2.9608,0.41592,7.1859,10.7312,15.0711,8.4149,2.3492,4.4551,1.9724,18.178,4.8745,3.6278,0.89032,2.2243,7.8434,12.1083,3.09,4.7694,3.2456,1.5465,1.1761,3.678,9.9265,2.5857,2.117,8.6707,2.4122,2.1253,2.0817,9.4164,1.9364,3.1356,1.1422,13.5884,4.5674,6.7391,3.9147,8.6938,6.6049,6.9345,7.6397,3.483,1.6639,3.8808,,,,,,,,,,,,,,,60,,,,259
+3442,1.4275,2.3758,,60-69y,Other,,,22.2888,5.2852,3.3256,2.4547,1.3312,ppmi,,,M,,0.57252,5.0993,4.4584,1.0171,9.5853,1.5337,0.4322,2.6512,3.6907,59.1453,19.8385,262.9311,4.2218,4.3837,1.8664,2.0204,3.4299,7.9359,2.1463,3.4453,0.60748,6.4092,11.481,15.7544,7.3052,2.265,5.0052,1.9102,18.0183,6.0565,4.0298,1.0835,2.4312,7.8208,14.978,2.9362,4.1308,3.347,1.4585,1.8059,4.4565,9.676,3.5006,2.6799,11.8691,2.6503,2.5504,2.4647,11.8912,2.1216,4.7886,1.4399,13.7185,5.6754,9.6799,3.2898,9.2595,7.7947,9.2845,8.4534,3.7214,1.693,5.3606,,,PD,0.085402,PD,,PD,0.46635,4.5594,4.3893,0.9718,11.3046,1.6864,0.44462,2.819,3.6457,57.672,19.1852,264.0615,4.1464,4.6993,1.9446,2.0746,3.7206,8.5166,1.9688,3.6591,0.61205,7.0365,12.3727,13.1265,8.043,2.1679,5.0735,1.802,18.1861,5.7166,3.5458,1.0579,2.4249,8.4839,14.7841,2.9014,4.6888,3.4126,1.598,1.7242,4.3063,10.4989,3.1644,2.5966,10.5628,2.2195,2.2824,2.2609,11.3533,1.8533,4.8415,1.3053,13.9754,5.4894,7.8786,3.9895,10.0379,7.8887,9.2525,8.0239,3.6723,1.5636,5.2813,,,,,,,,,,,,,,,63,,,,260
+3443,1.187,2.0907,,50-59y,Other,,,19.052,4.7314,2.7578,2.2177,1.1423,ppmi,,,M,,0.56184,6.1069,4.8687,0.92963,10.181,2.1017,0.47988,3.4276,3.5126,50.5823,15.2138,245.7051,4.3464,4.7508,1.7977,2.1444,4.219,7.9338,2.9429,3.4588,0.38241,7.3881,12.1789,12.6624,8.2033,3.1105,5.676,2.4465,21.7005,6.7259,4.8918,1.1501,3.1583,9.2233,14.3118,3.6583,5.0733,3.3172,1.8725,1.5791,4.8596,11.3761,3.3948,2.5819,12.2273,2.7848,2.9446,2.3301,14.3105,2.1261,4.863,1.5034,18.171,6.285,8.9509,3.8086,12.6514,7.0147,8.968,8.28,4.0941,1.8331,4.9766,,,PD,0.080233,PD,,PD,0.50277,5.0903,4.9531,0.95443,11.3297,2.067,0.47199,3.3569,3.5091,50.2412,14.3764,246.7397,4.9659,5.6908,1.8981,2.2973,4.7763,7.9528,2.7703,3.7599,0.49924,7.3048,12.7876,11.1277,8.7204,2.7482,5.6565,2.4311,21.7868,5.7402,4.3792,1.3666,3.3296,10.755,15.2339,3.1174,4.6965,3.7878,1.9806,1.5834,4.4938,12.2384,3.2134,2.6753,10.9292,2.4872,2.8609,2.2435,12.6459,1.9521,4.7669,1.4411,18.6255,6.7671,7.6091,4.3863,11.5417,6.9663,8.5764,9.3311,4.0297,1.6641,4.7496,,,,,,,,,,,,,,,54,,,,261
+3444,2.0449,2.8014,,60-69y,Other,,,21.0514,5.229,3.11,2.6386,2.0608,ppmi,,,M,,0.47726,4.9097,4.9222,0.81009,9.5696,1.5559,0.49185,3.1793,3.1431,51.8731,16.7457,236.8206,4.5903,4.4065,1.7762,2.2467,3.6217,7.6512,2.3586,2.9029,0.88468,7.0097,12.7939,20.3636,7.6415,2.5407,4.934,1.9196,19.1699,6.2799,4.3681,1.0247,2.5695,7.6409,15.1464,3.4323,4.7043,3.3421,1.587,1.5087,4.7744,11.5827,3.1988,2.8338,11.5171,2.338,2.5678,2.9261,12.7836,1.8499,4.0563,1.602,15.3032,5.4138,9.2118,3.2404,11.6568,8.1911,8.4318,8.6936,3.7512,1.8183,5.0157,,,PD,0.099777,PD,,PD,0.39753,4.7747,4.8213,0.84269,11.3592,1.857,0.43831,3.5228,3.246,51.6945,16.7461,230.6355,4.2343,4.9134,1.7673,2.1754,4.2976,7.723,2.1016,3.179,1.1645,8.1253,13.2727,18.3331,8.5905,2.495,5.0663,1.7686,19.7088,5.8136,3.9789,1.2782,2.828,8.4004,15.7665,2.8288,4.8867,3.5594,1.7947,1.434,4.485,11.686,3.0346,2.9466,10.4279,2.2532,2.557,2.6441,12.6043,2.1222,4.0882,1.4395,15.5535,5.7058,7.8547,3.7435,10.9477,8.6262,8.3085,9.0191,3.625,1.8838,4.9699,,,,,,,,,,,,,,,69,,,,262
+3445,1.7173,1.6004,,-50y,Other,,,21.2511,5.5978,2.7625,2.4476,1.4531,ppmi,,,M,,0.5609,6.525,5.4539,1.019,11.3749,2.165,0.49857,3.8354,3.5234,50.624,17.994,291.734,5.5242,5.2653,1.9201,2.6606,4.0072,8.7176,2.8675,3.7991,0.44925,8.3674,14.4189,14.0288,9.086,3.3426,6.167,2.5872,24.904,8.2959,5.3345,1.1292,3.0341,8.9383,15.8706,3.9506,5.1426,4.6064,2.2023,1.6597,5.7333,13.1274,3.6871,2.9188,11.8833,3.9414,3.5686,2.9021,14.4474,3.4814,4.6797,1.6538,18.6925,6.7589,10.5689,4.4868,11.8551,8.3649,10.0379,9.3302,5.5032,2.9459,5.5466,,,PD,0.089087,PD,,PD,0.49535,5.5627,4.9444,1.01,12.6509,2.5816,0.48578,4.0991,3.5514,52.3924,17.1544,286.8313,5.0384,6.216,1.9802,2.6644,4.6008,9.0423,2.8266,3.6674,0.50405,7.941,14.8442,11.4513,9.2307,3.0483,6.3118,2.6048,22.5097,6.0533,5.4513,1.0205,2.8368,10.0821,17.4355,3.2303,5.0583,4.8229,1.9926,1.6736,5.1906,13.9857,3.3403,2.7513,9.7391,3.0788,3.1234,2.6245,15.1216,2.6765,4.6056,1.5552,19.0156,6.279,9.7253,5.5705,12.0091,8.93,9.3849,10.0221,4.6723,2.2894,5.1349,,,,,,,,,,,,,,,48,,,,263
+3446,1.3376,1.5999,,70-79y,Other,,,19.0148,4.4443,2.5701,2.2373,1.153,ppmi,,,M,,0.47832,4.7594,4.5524,0.9373,9.5636,1.5187,0.3724,2.8067,3.3118,46.3048,14.798,254.0111,4.2537,4.503,1.8189,1.8811,3.2206,7.7541,2.2911,3.2109,0.54082,5.703,12.1868,13.1763,6.958,2.368,5.1354,1.9545,17.1874,5.666,3.8224,1.0957,2.3342,6.7997,13.6407,2.9738,4.2175,3.6753,1.4615,1.4527,4.5822,10.8771,3.1941,2.5671,10.991,2.8112,2.2943,2.2389,12.1822,2.2211,4.577,1.1788,13.0476,5.0825,8.7397,3.1311,11.6224,6.9709,7.4321,8.4756,3.6912,1.5832,4.5973,,,PD,0.071387,PD,,PD,0.42878,3.9591,4.143,0.87567,10.3855,1.8404,0.3954,3.061,3.296,45.7581,14.1273,256.926,4.2739,4.6405,1.7967,1.9857,3.5183,7.7182,2.2578,3.2824,0.50092,6.7509,12.5374,11.4225,7.9285,2.2401,4.911,1.9737,17.3516,5.396,3.9657,1.285,2.5922,7.4861,14.0658,2.3887,4.3059,3.6335,1.623,1.5654,4.0482,11.1821,2.7874,2.5586,10.4087,2.6792,2.3052,2.105,11.8474,2.0475,4.3212,1.1937,13.7862,5.2501,8.018,3.679,9.3793,7.006,7.3429,8.2024,3.6469,1.5987,4.4799,,,,,,,,,,,,,,,76,,,,264
+3448,1.3244,2.3644,,50-59y,Other,,,23.878,4.9785,3.0414,2.377,1.5807,ppmi,,,M,,0.58501,6.4818,4.9614,1.1305,11.5438,2.1028,0.49203,3.9909,3.7133,54.0457,18.4926,304.9421,5.0443,5.1498,2.1909,2.4708,4.69,9.499,2.9555,4.0092,0.52987,7.9988,15.0815,20.9752,8.5943,3.0815,6.0143,2.5744,26.0236,8.3663,5.1608,1.3379,3.5704,8.9481,16.714,4.0271,5.1155,4.6183,1.8046,1.8736,5.1609,12.5716,3.7128,2.8623,13.154,3.401,2.8708,2.8783,15.6754,2.8931,4.9616,1.5698,17.8393,6.3065,9.9605,4.6798,12.5756,8.4386,11.2182,10.1839,4.9424,2.2923,6.1758,,,PD,0.086442,PD,,PD,0.51199,5.0731,4.8322,1.1659,13.3855,2.551,0.50027,3.831,3.7476,53.0657,17.5466,304.7427,4.9859,5.6361,2.3802,2.5077,5.0074,9.3897,2.8099,4.4035,0.72871,7.7595,15.883,18.3275,9.3575,2.9466,5.2128,2.457,25.4594,6.2026,5.0175,1.3743,3.3655,10.3228,16.9662,3.2084,5.1224,4.6496,1.8625,1.9197,5.0486,13.6445,3.6188,2.8622,11.5337,3.4457,2.9175,2.846,14.604,2.8503,4.8072,1.5277,18.1056,6.4813,8.9566,4.5021,14.2865,8.1222,11.077,10.5988,4.5819,2.4364,5.9704,,,,,,,,,,,,,,,57,,,,265
+3450,0.71509,1.672,,50-59y,Other,,,14.5882,3.8256,2.3747,1.9404,0.89429,ppmi,,,M,,0.42007,4.9253,3.8677,0.92318,8.566,1.5059,0.35941,3.0976,2.5316,40.2695,11.696,214.0694,3.7945,5.1795,1.7147,2.018,3.2901,6.698,2.0757,3.0726,0.37118,6.304,11.167,7.0461,7.0916,2.2958,4.9017,1.7133,18.0221,5.8146,3.9223,1.0659,2.6924,6.7643,12.8866,3.8435,4.1033,3.3123,1.4768,1.3159,4.2182,10.8348,2.8821,1.9251,11.1755,2.3156,2.3666,2.0656,12.6354,2.3518,3.6891,1.1197,14.9479,5.8639,9.6261,3.8526,10.2608,6.3391,7.4657,7.0837,3.4169,1.7015,4.2344,,,,0.064517,CN,,HC,0.36884,4.3362,3.4563,0.91568,9.65,1.8303,0.34504,3.3629,2.5759,40.5105,11.5899,218.8012,3.7784,5.4623,1.7189,1.7579,3.8846,7.123,2.2594,3.2467,0.35484,7.1514,11.3691,5.6921,7.49,2.2227,5.1609,1.7796,17.9498,5.4564,4.1189,1.1542,2.8445,7.6804,13.6742,2.9153,4.2554,3.3057,1.4501,1.3448,3.9016,10.3277,2.7675,2.0439,10.1648,1.7818,2.1792,1.9139,11.467,1.4769,3.5517,1.0851,14.9906,5.8178,7.7967,4.4913,9.8767,6.6167,7.0555,7.6647,3.2128,1.2925,4.1065,,,,,,,,,,,,,,,52,,,,266
+3451,1.2094,1.9432,,50-59y,Other,,,20.4353,5.075,2.9395,2.4301,1.4434,ppmi,,,M,,0.5408,5.4732,5.0317,0.97934,11.3078,1.8118,0.43144,2.9485,3.7442,49.8505,17.2526,257.6982,4.3177,5.4185,2.0126,2.4902,3.7847,7.8614,2.4174,3.7178,0.54451,7.4307,12.367,17.7302,8.0567,2.5519,5.7957,2.076,19.9802,7.6209,4.6167,1.2879,2.6133,7.3908,15.8602,3.9066,4.8353,3.582,1.5553,1.6184,5.3406,13.5686,3.4709,2.4538,12.5572,2.5736,2.668,2.5121,11.9317,2.0218,4.4999,1.447,13.9878,5.247,10.3362,4.5407,13.8694,8.1337,8.7302,8.6779,4.1553,1.6052,5.1493,,,PD,0.082102,PD,,PD,0.49766,5.0239,4.7083,0.97413,12.8956,2.0827,0.42901,3.1452,3.7325,50.7788,16.9904,260.0456,4.1797,5.2276,1.9821,2.201,4.1909,7.9715,2.2108,3.8155,0.49824,7.6335,12.2675,12.7298,8.4709,2.5071,5.0506,1.9249,19.8666,5.3588,4.1667,1.2818,2.9232,8.3598,16.3658,3.4052,4.8905,3.6607,1.6572,1.6391,4.8709,13.6257,3.1546,2.3988,11.4589,2.1634,2.4254,2.3585,13.2095,1.9659,4.3557,1.286,13.7496,5.6669,9.0298,4.5647,12.8505,8.759,8.3675,9.3506,3.4596,1.5027,4.9349,,,,,,,,,,,,,,,55,,,,267
+3452,1.2433,1.7094,,60-69y,Other,,,21.2851,5.0331,2.8899,2.4196,1.2617,ppmi,,,F,,0.50022,5.1297,4.3932,0.84552,10.2211,1.662,0.41736,3.4007,3.2101,52.6484,16.8911,239.1565,4.2696,5.1415,1.6238,1.8729,3.465,7.6735,2.117,2.9932,0.51624,7.2252,12.1359,16.6757,7.9102,2.3997,5.3414,1.9513,20.382,7.0532,4.3754,1.2208,2.8837,7.2543,15.1931,3.8052,4.5838,3.1546,1.5031,1.6055,4.6038,11.8281,3.2022,2.4905,12.4166,2.3887,2.7029,2.2931,12.5993,1.9652,4.3905,1.2384,15.6328,5.85,9.3793,3.882,11.8964,7.5255,8.6415,7.6465,4.1209,1.6727,5.0592,,,,0.073862,CN,,HC,0.44348,4.535,4.2096,0.8777,11.3015,1.7623,0.40579,3.385,3.2212,51.7598,16.5808,244.4882,3.878,5.2329,1.7217,1.89,4.0576,7.5579,2.1948,3.1709,0.49566,7.4717,12.3329,12.7933,8.101,2.3417,5.2818,1.9242,20.968,5.721,4.1198,1.1031,2.7568,8.7193,15.8543,3.1844,4.3947,3.4057,1.656,1.5835,4.3578,11.2008,3.0314,2.1995,10.9833,2.2253,2.5404,2.026,13.1811,2.0223,4.1954,1.1516,15.5204,5.2715,9.0937,4.6738,10.3517,7.7636,8.2243,7.4233,3.5912,1.4802,4.8925,,,,,,,,,,,,,,,64,,,,268
+3453,0.61973,1.4959,,60-69y,Other,,,14.9646,3.8204,2.3032,1.8456,0.78754,ppmi,,,F,,0.40371,3.7123,3.5992,0.75,7.344,1.3726,0.34115,2.377,2.5563,40.2554,12.2459,193.263,3.0191,3.857,1.4219,1.6339,3.0853,6.4208,1.8296,2.654,0.33157,4.8708,10.19,7.3486,6.1352,1.961,3.9424,1.4824,15.3893,4.8219,3.4962,1.0323,2.4684,5.6954,12.2216,2.5245,3.5111,3.0088,1.2389,1.2446,3.4999,9.0053,2.604,1.9906,10.5229,1.8934,2.1196,1.7986,10.7478,1.7135,3.9127,0.98073,14.7417,4.9561,7.8262,3.1623,9.0471,5.9873,7.2826,6.3596,3.1395,1.2765,4.0867,,,,0.057116,CN,,HC,0.37712,3.3224,3.7158,0.73257,8.2761,1.5985,0.34697,2.5115,2.5369,39.1787,11.5867,196.0195,3.348,3.969,1.4668,1.7313,3.2121,6.4658,1.8928,2.7336,0.44417,5.385,10.2015,6.6089,6.6783,1.8733,4.1058,1.54,15.3453,3.8423,3.6178,0.96245,2.2852,6.6767,12.1375,2.4203,3.4948,3.192,1.2536,1.2599,3.2088,8.7204,2.4134,2.0285,9.7679,2.139,2.1349,1.7233,10.2745,1.692,3.8264,0.94527,13.5709,4.5557,7.5315,3.5798,9.028,5.9577,6.9824,6.6099,2.799,1.3731,3.8739,,,,,,,,,,,,,,,60,,,,269
+3454,0.74791,1.6615,,50-59y,Other,,,18.5701,4.5817,2.6246,2.0906,1.036,ppmi,,,F,,0.49282,4.5441,4.1825,0.8765,9.2841,1.506,0.37939,3.392,3.0826,47.2892,15.2772,230.534,3.7158,4.8332,1.631,1.8151,3.3229,7.5793,2.0369,2.9817,0.30991,6.952,12.2431,9.3003,7.6108,2.1621,4.6166,1.7959,18.0741,6.5332,3.9845,1.1236,2.6303,6.4826,14.5988,3.3343,4.4504,3.1211,1.3396,1.5477,4.2919,10.6688,3.031,2.2495,11.1164,2.3096,2.5589,2.2527,12.7173,2.0252,4.6371,1.0531,14.6826,5.4368,9.1722,4.0398,10.7717,7.2401,8.4993,7.8884,3.5809,1.6417,4.8885,,,PD,0.065802,PD,,PD,0.45251,4.1019,3.8689,0.92224,11.0174,1.7485,0.38347,3.261,3.6748,48.2399,15.0204,237.8397,3.9225,4.6791,1.7815,1.8933,3.5063,8.0765,2.1268,3.5151,0.33487,6.9896,12.2445,11.1381,7.6478,2.0522,4.5766,1.6911,18.1809,5.4708,3.8866,0.97629,2.5868,7.6428,15.1102,2.8506,4.3804,3.4561,1.3848,1.5817,4.0414,10.8152,3.024,2.2193,11.0735,2.1719,2.3667,2.1117,13.2533,1.9782,4.3433,1.0554,15.3452,5.4349,8.6164,4.6639,11.2856,8.0848,8.0681,8.4698,3.4885,1.5393,4.7267,,,,,,,,,,,,,,,57,,,,270
+3455,2.6268,2.2262,,60-69y,Other,,,18.7045,4.9656,2.4081,2.1602,1.824,ppmi,,,M,,0.42679,5.0553,4.6728,0.90327,8.6609,1.5802,0.37956,3.442,3.4615,43.4965,14.4445,252.2229,3.9957,4.4723,1.6505,2.2134,3.6744,7.1167,1.9541,3.4149,0.91273,5.9673,10.6709,24.6804,7.5992,2.4256,5.4475,1.8773,18.9145,5.1058,3.9805,1.2015,2.538,7.3653,12.2106,3.4657,4.3636,4.3095,1.5428,1.5551,4.5892,11.1675,3.2449,2.3718,11.6578,2.1068,2.4153,2.3877,12.3902,1.9228,4.4092,1.2371,15.1405,5.477,8.6731,3.0009,11.0373,7.6593,8.4358,7.8573,4.4698,1.5814,5.047,,,PD,0.078865,PD,,PD,0.39439,5.0734,4.5333,0.88742,9.735,1.7061,0.38697,3.4077,3.7861,42.7302,14.2001,257.6909,3.6214,4.9157,1.6875,2.3088,3.8853,6.8881,1.9151,3.6122,1.098,6.7815,10.9212,24.5165,7.979,2.2095,5.2023,1.8676,17.4924,4.8396,3.7666,1.0268,2.4651,8.2172,13.2052,2.9286,4.1392,4.3812,1.576,1.5766,4.036,11.3142,2.9677,2.1761,9.8242,2.2803,2.4087,2.1113,12.2165,1.95,4.207,1.2202,14.3883,5.5061,7.7535,4.0517,11.3706,7.0338,7.8357,8.0852,4.286,1.4918,4.9084,,,,,,,,,,,,,,,67,,,,271
+3457,1.3073,3.6893,,60-69y,Other,,,19.7503,5.0915,2.4896,2.4104,1.1131,ppmi,,,F,,0.47183,4.5927,4.0748,0.87955,10.2871,1.8366,0.39897,3.412,3.2707,49.0689,14.9696,243.431,3.6109,4.4924,1.6003,1.9906,3.5049,8.0388,2.0065,3.0568,0.4377,7.5207,12.0681,11.5063,7.8874,2.7139,4.9345,1.8606,21.1289,6.8769,4.2054,1.1526,2.6066,7.2239,14.9264,3.7296,4.7166,3.3959,1.6356,1.5465,4.2562,9.5914,3.1575,2.035,11.0487,2.2878,2.7957,2.1657,13.059,2.1385,4.1464,1.1629,15.0078,5.4223,9.1855,3.4413,10.696,8.0006,8.4809,7.9116,4.485,1.6622,4.9952,,,,0.072953,CN,,HC,0.41888,3.8711,4.0947,0.90149,10.9123,2.003,0.39297,3.2921,3.2828,49.4802,15.1901,246.3431,3.6764,4.5226,1.7117,2.0656,3.821,8.1122,2.1049,3.314,0.44474,6.8501,12.8993,10.1462,8.0667,2.5791,4.5829,1.909,21.0122,5.1123,4.0976,0.98961,2.19,8.3261,15.4914,2.8478,4.5592,3.7025,1.7805,1.4642,4.0142,9.7091,2.9744,2.1807,11.3984,2.1725,2.5255,2.1681,12.4139,2.1088,3.9903,1.1642,15.1738,5.4553,9.0646,4.0336,10.1669,8.8101,8.2591,8.691,4.1709,1.5646,4.731,,,,,,,,,,,,,,,63,,,,272
+3459,1.2199,1.8939,,50-59y,Other,,,16.8987,5.2751,3.0349,2.3162,1.1065,ppmi,,,M,,0.48626,5.212,4.5369,0.94383,10.1365,1.7028,0.41265,3.2826,3.0695,51.1009,14.9053,248.011,4.009,5.7614,1.7969,2.0871,4.0574,8.2307,2.3772,3.3951,0.50141,8.0133,12.3447,14.5507,8.3987,2.5281,5.0818,2.1761,22.1109,7.1991,4.2629,1.2626,3.1725,8.3562,14.7301,3.9534,4.9614,3.1538,1.6826,1.4048,4.9654,12.3115,3.3774,2.4161,12.0678,2.6937,2.6701,2.3156,14.7608,2.111,4.2141,1.4,18.4119,6.2342,9.5002,4.2633,13.3132,7.5789,8.0481,8.4166,4.0725,1.556,4.5202,,,PD,0.077762,PD,,PD,0.42604,4.257,4.3484,0.9581,10.8092,2.1106,0.40745,3.9122,3.2407,50.5546,14.5762,248.8353,4.4343,5.8334,1.9306,2.083,4.6463,8.2256,2.4745,3.5391,0.50264,7.6738,12.3748,14.1399,9.0705,2.4874,5.3246,2.1965,20.5326,5.6984,4.31,1.1171,2.8378,9.4068,15.6061,3.6142,4.7638,3.6042,1.6922,1.3746,4.5113,11.9777,3.1212,2.522,11.5062,2.5047,2.428,2.3174,13.8143,1.9992,4.0959,1.2938,18.7463,5.6833,8.804,5.0999,11.8062,7.9404,7.6848,8.6337,4.0949,1.6641,4.3712,,,,,,,,,,,,,,,52,,,,273
+3461,2.0112,1.8764,,60-69y,Other,,,22.0114,6.0221,3.6445,2.7874,1.8949,ppmi,,,M,,0.52338,5.6195,5.1012,1.0875,11.2453,2.0351,0.46533,2.9134,3.6171,58.5294,18.7452,275.34,4.7491,4.9825,2.0085,2.3532,4.5721,9.1915,2.7937,3.9103,0.87625,7.8281,13.2523,30.512,8.3806,3.3205,5.8003,2.2865,24.2915,7.426,4.9962,1.0616,2.9334,8.8662,16.7615,3.8542,4.8546,4.054,1.9161,1.6287,5.5403,13.4587,3.8107,2.842,13.8169,3.1066,2.8144,2.6474,14.7846,2.3784,4.599,1.6747,19.0068,6.5686,11.1786,3.7388,12.7942,8.7479,9.1715,8.9077,4.6562,1.8171,5.4403,,,PD,0.080711,PD,,PD,0.47346,4.5542,5.1388,1.0422,11.9663,2.1377,0.45176,3.1919,3.5253,58.1326,18.1215,281.0562,4.9636,5.4147,2.0342,2.1776,4.8135,9.9064,2.763,3.8291,0.70697,8.8389,14.3256,25.5942,8.9071,2.8285,5.2495,2.4094,23.0387,7.4312,4.5447,1.0308,2.6862,10.2827,17.5468,3.8064,5.0179,3.8687,1.972,1.6645,5.0754,13.1709,3.3891,3.0758,11.7033,2.8852,2.654,2.6566,14.939,2.4097,4.5371,1.5449,19.1821,6.3737,9.9957,5.1372,11.8279,9.0497,8.8788,9.0131,4.1848,1.8818,5.2498,,,,,,,,,,,,,,,63,,,,274
+3462,0.81576,1.4076,,-50y,Other,,,19.522,4.9395,2.6935,2.4291,1.1203,ppmi,,,F,,0.54753,4.9928,4.7384,0.93061,10.7021,1.7013,0.44582,2.9571,3.0839,50.5278,16.6283,234.1304,3.9821,4.5615,1.6965,2.0464,3.6316,7.9572,2.2464,3.3743,0.33237,6.7751,11.9174,8.0477,7.7124,2.5928,4.9096,2.0074,18.9183,6.4914,4.3973,1.1015,2.6657,7.1882,14.7702,3.0539,4.3503,3.2068,1.5597,1.5983,4.5925,11.354,3.2811,2.3946,12.7747,2.2771,2.9343,2.3298,14.0489,1.833,4.8567,1.34,16.6342,5.3412,9.4389,3.4693,12.3258,7.5177,8.8481,8.1672,3.7826,1.5749,4.9544,,,PD,0.062878,PD,,PD,0.49964,4.2773,4.4923,0.95478,10.9842,1.9855,0.4453,3.2347,3.1212,50.2784,16.6739,239.804,4.0423,5.31,1.7379,2.0604,4.0152,7.7406,2.3203,3.575,0.47912,6.9146,12.187,7.9679,8.3197,2.4443,4.7861,1.9691,18.9488,5.4537,4.4071,1.0742,2.5012,8.9686,15.4605,2.5969,4.1611,3.5182,1.6518,1.6389,4.1831,10.9147,3.02,2.3759,11.7947,2.2249,2.8448,2.1582,12.6622,2.0473,4.6678,1.2523,15.9458,5.5401,8.8232,4.6391,10.6439,8.0746,8.247,8.46,3.5935,1.5262,4.7636,,,,,,,,,,,,,,,44,,,,275
+3464,0.83147,1.7694,,50-59y,Other,,,22.7815,5.8785,3.4469,2.5001,0.91373,ppmi,,,M,,0.5377,5.3689,5.2214,1.2018,11.7621,1.7096,0.45471,3.9934,3.2377,54.0238,18.6329,286.1379,5.1063,5.9968,2.1438,2.3559,4.0434,8.4125,2.6288,4.1781,0.41723,8.501,12.7816,9.0546,9.7256,2.6042,5.8661,2.1259,21.4664,8.0423,4.3887,1.3601,2.9809,8.1101,14.9794,5.0448,5.2555,3.8646,1.7094,1.8265,5.7244,13.1817,3.8362,2.9696,14.7829,3.5662,2.7289,2.9737,15.2235,2.8104,5.1552,1.331,16.306,6.5185,10.7032,4.4287,13.5105,8.8097,9.9298,9.579,4.3746,2.5728,5.7748,,,,0.076114,CN,,HC,0.51264,4.8785,5.2045,1.1192,11.8059,2.1168,0.44705,3.7032,3.3011,53.5628,18.4706,290.675,5.1156,6.4754,2.1072,2.4394,4.7331,9.1404,2.7028,4.3162,0.58392,8.9068,14.0409,7.5897,9.7291,2.7019,5.9382,2.2718,21.3722,6.4087,4.4831,1.398,3.1564,9.9944,15.818,4.0544,5.5901,4.1099,1.8771,1.8356,5.1031,13.1486,3.3022,2.7012,13.9214,2.8923,2.7426,2.6224,13.5247,2.6145,4.9587,1.3134,15.83,6.4421,9.0695,5.955,12.0617,8.515,9.2667,9.4101,3.8418,1.9957,5.5358,,,,,,,,,,,,,,,51,,,,276
+3466,0.60179,1.7038,,-50y,Other,,,19.3072,4.8024,2.893,2.2007,0.98909,ppmi,,,M,,0.41913,4.5229,4.2158,1.0025,9.9753,1.6112,0.37346,3.0385,2.8715,48.552,16.1005,276.0659,3.8964,4.0187,1.9392,1.8206,3.5017,8.1097,2.2274,3.4012,0.44218,7.0548,11.9114,8.1353,7.4759,2.3696,4.6476,1.9177,19.5923,6.0724,4.062,1.0899,2.4676,7.2576,14.2486,3.6325,4.362,2.9572,1.5912,1.6356,4.7206,10.0022,3.4553,2.2691,11.0352,2.2603,2.546,2.3624,12.0283,1.9981,4.2524,1.1755,14.5038,5.2573,9.2624,3.6122,11.345,7.6238,8.6546,7.9715,3.7384,1.7511,5.1772,,,,0.064177,CN,,HC,0.38454,3.667,3.6885,1.0099,10.512,1.873,0.36867,3.1715,2.8944,48.5745,16.0587,278.1383,3.5721,4.568,1.9517,1.7131,4.0296,7.863,2.1986,3.6485,0.55615,6.9845,11.7088,7.9731,7.9439,2.2859,4.4762,1.835,19.8852,5.5741,3.8955,0.91315,2.401,8.0054,14.4574,3.102,4.4423,3.2711,1.5172,1.649,4.2823,10.6606,3.1359,2.2602,10.5826,2.2538,2.2656,2.0981,11.845,1.9813,4.0745,1.1021,14.9059,5.2191,8.4321,4.3834,10.762,7.7559,8.1478,7.9802,3.6168,1.5138,4.9446,,,,,,,,,,,,,,,48,,,,277
+3467,1.841,1.8084,,60-69y,Other,,,22.2096,5.3985,2.9012,2.1588,1.3632,ppmi,,,M,,0.49126,4.9866,4.8562,0.95755,9.6931,1.601,0.42219,3.1866,3.2141,48.8854,17.8022,263.7367,4.1797,4.4094,1.7646,2.1954,3.7164,7.1826,2.3088,3.3987,0.62418,6.9717,11.0388,15.7086,7.5571,2.5415,4.8774,1.9482,20.0233,6.8959,4.3934,1.2257,2.7389,7.6203,14.2309,3.8492,4.2958,3.7614,1.64,1.7167,4.4237,10.4599,3.2971,2.5402,11.4032,2.3121,2.9107,2.6983,13.7064,2.4215,4.9148,1.3942,15.4262,6.241,9.0733,3.7785,10.6149,7.8863,9.2584,7.871,4.6457,2.078,5.5468,,,PD,0.08839,PD,,PD,0.42411,4.7114,4.4127,1.0027,10.6735,1.8373,0.43891,3.1977,3.5427,50.0919,17.8097,267.2717,3.7401,4.426,1.8187,2.004,3.7119,7.9125,2.2301,3.7813,0.68169,6.5112,12.7495,12.2406,8.1063,2.3329,5.1679,1.8398,20.5827,5.2324,4.3228,1.0576,2.5195,7.8861,15.6435,2.9084,4.3031,4.3024,1.6565,1.686,4.1888,10.3659,3.0383,2.5485,10.0708,2.0918,2.7126,2.1855,12.2197,1.9576,4.9165,1.2952,15.6789,5.581,8.217,3.9145,10.587,8.2674,8.8686,8.5718,4.0208,1.5611,5.3563,,,,,,,,,,,,,,,67,,,,278
+3468,1.027,1.8397,,50-59y,Other,,,18.836,4.9976,2.5236,2.2315,1.1894,ppmi,,,M,,0.47189,4.7337,4.9091,0.93896,11.1378,1.7438,0.41997,3.252,3.2561,46.806,15.8102,248.6035,4.2458,4.9612,1.7575,2.232,3.41,7.8692,2.32,3.4748,0.57596,6.5541,12.5304,14.9262,8.0102,2.6003,5.061,2.0584,19.5513,7.0148,4.4022,1.0837,2.6999,7.3065,14.9264,3.2493,4.3447,3.2411,1.6753,1.6492,5.0017,12.0424,3.4167,2.6299,12.22,2.6965,2.622,2.2869,12.6204,2.5543,5.0807,1.3735,15.4594,5.4605,9.6515,3.9808,12.3326,7.7992,8.8707,7.9027,4.2293,1.6926,5.136,,,,0.073986,CN,,HC,0.43699,4.436,4.4918,0.95127,11.7493,1.7187,0.42842,3.0383,3.2392,46.8899,15.4788,253.5026,4.6175,5.2146,1.835,1.996,4.1241,7.728,2.3152,3.6976,0.65649,8.2568,12.7322,12.4489,7.6756,2.4496,5.2549,1.9381,20.4056,6.3462,4.0717,0.97149,2.5695,8.4303,16.3442,3.4589,4.8153,3.3934,1.7599,1.6507,4.3068,11.1298,2.9826,2.6535,11.1241,2.3048,2.7684,2.287,12.9297,1.9427,4.8836,1.2983,15.2571,5.2579,8.6479,4.8634,10.2047,8.1799,8.5308,8.4234,3.6302,1.6675,4.8723,,,,,,,,,,,,,,,57,,,,279
+3469,1.0124,2.1202,,50-59y,Other,,,19.4864,4.8677,2.4266,2.0766,0.95212,ppmi,,,M,,0.50492,4.5435,4.1563,0.95439,9.4829,1.4149,0.40927,3.1294,3.2104,44.3655,14.8395,252.1317,4.026,3.869,1.7477,2.0678,3.2914,7.6178,1.9893,3.5064,0.51222,6.4493,11.7834,10.9472,7.4086,2.3413,4.814,1.7667,19.0608,5.4934,3.7446,1.0776,2.2785,6.5954,13.7666,2.9827,4.3228,3.2778,1.632,1.5457,4.5213,10.6051,3.2458,2.1066,11.6127,2.1602,2.4158,2.1335,11.6904,1.9055,4.9991,1.14,13.7559,5.2192,9.249,3.185,11.0197,6.6275,8.7634,7.361,3.8891,1.4688,5.0271,,,PD,0.071672,PD,,PD,0.4608,3.7583,3.8076,0.98066,10.1055,1.6721,0.41183,3.3592,3.4118,45.2074,15.105,258.6968,3.8548,4.7766,1.7084,1.9043,3.5869,7.6281,1.9125,3.7742,0.5368,6.4179,11.698,10.3922,8.2517,2.2216,4.8702,1.8018,18.7059,4.4898,3.5964,0.99824,2.3593,7.8331,14.6638,2.729,4.2007,3.2203,1.5524,1.5866,3.8704,10.1612,3.0499,2.1937,10.5861,2.5386,2.2574,1.985,12.9667,2.015,4.7788,1.0768,13.5497,5.2234,9.1597,4.1301,10.0093,6.8805,8.1753,7.4379,3.4976,1.5341,4.8143,,,,,,,,,,,,,,,57,,,,280
+3470,1.0934,1.5541,,50-59y,Other,,,19.4837,5.2986,2.7908,2.4326,0.99714,ppmi,,,M,,0.43575,5.1517,4.1191,0.8445,9.0145,1.8631,0.38382,3.3071,2.8888,49.7796,16.4999,257.6654,4.1964,4.8553,1.5731,2.0135,3.8533,7.454,2.2538,3.0231,0.48191,6.784,10.788,13.6047,7.6332,2.699,5.1631,2.1433,19.6222,6.3169,4.5237,1.1064,2.471,7.481,14.0813,3.7294,4.541,3.1041,1.5836,1.6293,4.3128,10.7131,3.0906,2.1501,11.4696,2.0577,2.7691,2.1818,12.1514,1.7949,4.1675,1.2519,13.9607,5.5321,9.0747,3.6115,11.0041,7.2818,8.1,6.859,3.5988,1.5582,4.9433,,,PD,0.073073,PD,,PD,0.37669,4.7337,3.6358,0.84618,9.2403,2.1058,0.3617,3.0678,3.0099,50.1557,16.3785,264.1083,3.959,5.0555,1.692,2.1161,4.1451,7.4657,2.1874,3.2409,0.48413,6.6181,11.1177,10.8282,7.6725,2.374,5.1888,2.0009,20.2708,4.7228,4.2948,1.0338,2.4524,8.0766,14.4307,2.8794,4.414,3.2939,1.5309,1.6103,3.8859,10.4914,2.8258,2.2663,10.9063,2.3579,2.3373,2.1013,11.554,1.7293,3.957,1.1429,14.9615,5.4344,8.5607,4.4551,10.2256,7.516,7.7238,7.5881,3.6878,1.5063,4.7542,,,,,,,,,,,,,,,57,,,,281
+3471,2.326,2.1429,,70-79y,Other,,,19.6069,4.8703,2.8225,2.3915,1.7795,ppmi,,,M,,0.45894,4.7832,4.3056,0.8538,9.9463,1.6703,0.39193,2.7859,3.3094,49.8636,15.0262,225.8306,4.1823,4.6661,1.6816,2.037,3.2781,7.7415,1.9722,3.159,0.92667,6.7624,11.9384,17.541,7.892,2.4929,5.0481,1.7516,19.2503,6.2217,3.9651,1.1407,2.9108,7.3673,14.6191,3.3326,4.7333,3.2396,1.4751,1.5009,4.2458,10.8243,3.5566,2.3583,12.3513,2.6005,2.6647,2.2315,12.9427,2.087,4.4841,1.176,13.9129,5.7222,9.2845,3.6965,10.0905,7.7445,8.2262,8.3251,3.8442,1.5125,5.0709,,,PD,0.077557,PD,,PD,0.40473,4.4363,4.032,0.87426,10.6962,1.8747,0.3935,2.8463,3.6542,50.7378,15.2688,232.243,4.0475,4.6845,1.7915,2.0972,3.689,8.1747,2.022,3.3599,0.98507,7.0776,12.6158,17.7231,8.5411,2.3018,4.6186,1.7964,18.38,5.2332,3.7312,1.1528,2.7063,8.4014,14.8737,3.1339,4.9641,3.262,1.4984,1.3965,3.9638,11.0905,3.2962,2.3383,10.6488,2.1753,2.2384,2.0016,12.2855,1.9543,4.6452,1.1638,15.3986,6.1816,8.6229,3.9822,9.8773,7.4638,7.8706,8.2124,3.465,1.3941,4.84,,,,,,,,,,,,,,,74,,,,282
+3472,0.90385,1.994,,60-69y,Other,,,18.6135,5.1409,2.7792,2.3133,1.3722,ppmi,,,M,,0.39045,4.2346,4.017,0.85167,8.7243,1.5162,0.36448,3.7792,2.657,49.2163,15.2896,221.0694,4.1961,4.6204,1.6163,2.0777,3.5273,7.4734,1.8964,3.1481,0.44451,6.9807,11.1117,10.7119,8.3645,2.3326,4.329,1.6787,18.3229,6.3415,3.6959,0.83,2.0998,6.5866,13.3987,3.7983,4.712,3.5403,1.626,1.3121,4.2741,9.6352,3.2573,2.1201,13.25,2.3624,2.3313,2.0293,12.7557,2.1053,4.067,1.0979,13.8775,4.9983,8.5774,3.8325,10.6576,7.0532,8.5323,7.4842,3.9422,1.6985,4.6545,,,PD,0.066503,PD,,PD,0.35886,3.99,3.911,0.82024,9.2981,1.7498,0.38256,3.9411,2.8977,48.8251,15.2938,224.8635,3.8659,5.0253,1.6566,1.9687,3.5991,7.408,1.8643,3.3294,0.53542,7.3796,11.1414,10.8821,8.9387,2.3448,4.1947,1.6276,17.1248,5.6715,3.6006,0.83196,2.1629,7.2909,13.0104,3.3249,4.4596,3.0822,1.7003,1.3062,3.6637,9.6024,2.9309,2.0196,10.8691,2.1257,2.4128,1.8457,12.8769,1.8138,3.8963,1.0949,14.1301,5.0107,7.6004,4.7324,9.8816,7.6889,8.204,8.1564,3.2426,1.503,4.4995,,,,,,,,,,,,,,,61,,,,283
+3473,1.0812,1.8139,,50-59y,Other,,,16.3884,4.6969,2.4277,2.3604,1.2586,ppmi,,,F,,0.48369,4.3504,4.2394,0.8834,10.6663,1.5753,0.38465,3.3705,3.092,47.8823,13.4414,217.227,3.8813,4.7582,1.7189,1.8091,3.4977,7.4301,1.9934,3.2412,0.40167,5.8919,10.5289,13.4912,7.7962,2.3172,4.9177,1.7522,17.5344,5.8315,3.8467,1.3644,2.7687,6.7467,13.0068,3.423,4.1818,3.0801,1.375,1.3388,5.1054,11.4821,3.2168,2.1632,11.3843,2.2041,2.6059,2.0798,11.9829,1.9073,3.9736,1.1011,14.7712,5.5401,9.3596,3.6309,10.2381,7.4188,8.0062,7.8675,3.1488,1.4409,4.4601,,,PD,0.068489,PD,,PD,0.40769,3.8785,3.9392,0.87621,10.6275,1.8791,0.3676,3.7192,3.3199,48.4192,13.5019,224.2044,3.4071,4.9349,1.6904,1.7069,3.8375,7.6354,2.0692,3.3488,0.54272,7.4224,10.6018,20.8081,8.3993,2.2231,4.5525,1.7199,17.8605,6.0034,3.7265,1.2651,3.0549,7.5027,13.4365,3.3191,4.5823,3.3565,1.4538,1.3533,4.1595,11.0222,2.9183,2.2305,9.7011,1.9781,2.3394,1.8968,11.8044,1.7642,3.803,1.0504,14.3228,5.7308,7.6455,4.8434,10.6243,7.2885,7.6915,7.6324,3.3432,1.3422,4.2042,,,,,,,,,,,,,,,55,,,,284
+3475,1.0184,2.1866,,-50y,Other,,,19.8632,5.7171,3.1169,2.7112,1.1338,ppmi,,,M,,0.52984,4.8013,4.8811,1.011,11.1041,1.861,0.43094,3.5845,3.4534,52.296,16.1429,240.5083,4.1435,5.5279,1.9675,2.2467,3.8409,8.3994,2.3514,3.4645,0.50016,7.3579,12.5125,11.5803,8.4157,2.7282,5.2722,1.9678,21.3168,7.6737,4.669,0.98635,2.8305,7.566,15.0046,4.0467,4.8082,3.4567,1.8346,1.4201,5.2762,12.7167,3.4877,2.5899,12.3416,2.9809,2.7378,2.4676,13.7559,2.4422,4.9486,1.2876,16.0498,5.7936,11.1994,4.2829,12.4661,8.47,8.9654,9.1334,4.5335,1.7618,4.9918,,,PD,0.074023,PD,,PD,0.49158,3.8463,4.5919,0.9852,12.0308,2.1165,0.43625,3.6634,3.7385,54.1801,16.1716,246.7567,4.2703,5.4789,2.0439,2.1525,4.5489,9.2023,2.3396,3.5997,0.47541,7.5418,13.484,16.783,9.3039,2.4235,5.1562,2.0546,20.442,6.0367,4.3427,1.3386,3.1297,9.4262,16.6281,3.3272,4.8348,3.8115,1.7279,1.4663,4.7209,12.7643,3.3193,2.5643,12.1673,2.3296,2.497,2.235,13.202,2.1243,4.8303,1.2152,16.5727,5.9265,10.5255,4.8623,12.202,9.0564,8.5053,9.1481,4.0659,1.6294,4.8293,,,,,,,,,,,,,,,48,,,,285
+3476,1.3159,2.1181,,60-69y,Other,,,19.8762,4.4924,2.8343,2.32,1.3296,ppmi,,,M,,0.46338,4.2274,4.9656,0.94944,10.284,1.59,0.41536,2.8761,3.1036,48.4161,16.3898,253.0002,3.7904,4.5599,1.7876,2.3845,3.5279,7.204,2.2156,3.3007,0.56284,6.1511,10.8167,14.3015,6.6517,2.4544,4.4653,1.7555,17.6382,6.3596,4.2825,1.0318,2.5964,6.8993,13.5747,3.2203,4.0135,3.8464,1.6618,1.6049,4.5609,11.1923,3.2523,2.4672,11.5968,2.6688,2.5044,2.3204,12.8613,2.0137,4.2356,1.2702,15.8546,5.2518,9.3341,3.8358,10.9627,7.3548,8.6159,7.6345,4.4656,1.5764,5.1861,,,PD,0.074771,PD,,PD,0.41839,3.2697,4.5757,0.94652,10.0779,1.9075,0.42926,2.9107,3.2989,49.567,16.5694,254.2805,3.9101,4.4686,1.8361,2.1724,4.0084,7.4771,2.2665,3.4229,0.67921,6.6939,10.5271,14.1798,7.2891,2.3918,4.2002,1.8786,18.9553,5.0739,4.0319,1.0234,2.287,8.4071,13.9844,3.0716,4.2357,3.6837,1.7302,1.523,4.2752,11.5156,2.9761,2.5201,11.0062,2.3296,2.2203,2.0782,11.7022,1.8828,3.5762,1.2145,15.4998,5.2159,7.9699,4.4356,10.435,7.3483,7.756,8.0895,4.184,1.5873,4.8214,,,,,,,,,,,,,,,66,,,,286
+3478,1.5231,2.0579,,70-79y,Other,,,19.0418,4.7038,2.9592,2.2267,1.8756,ppmi,,,M,,0.48887,5.5301,4.5756,0.87284,11.6557,1.8978,0.42394,2.9482,3.6758,47.4106,15.33,241.9674,4.4355,4.5964,1.6852,2.065,4.2351,7.7458,2.5241,3.2534,0.8079,7.8668,12.2458,33.2198,8.167,2.8396,5.0606,2.3834,20.5571,8.0661,4.5337,0.95731,2.5074,8.1773,15.6554,3.9225,4.9021,3.4204,1.7113,1.4918,5.1462,12.1963,3.3215,2.3855,12.2452,2.5735,2.9412,2.3775,13.6133,2.3156,4.0418,1.532,15.8084,5.3473,9.56,3.4919,11.5468,8.109,8.6518,8.5298,3.7852,1.7432,4.7582,,,,0.080634,CN,,HC,0.44656,4.3496,4.4005,0.89584,11.7594,1.9971,0.41246,3.3325,3.9716,48.5097,15.0135,248.4224,4.4017,5.5449,1.7951,2.319,4.6365,7.6886,2.517,3.4953,0.78968,7.8717,12.6357,24.2721,8.8039,2.6264,4.7893,2.3769,20.9151,5.7495,4.2893,1.2109,2.6895,9.7385,15.575,3.9293,4.9588,3.7469,1.8211,1.5485,4.838,11.7616,3.1078,2.5247,11.555,2.5163,2.5969,2.1455,12.831,1.9958,4.0932,1.5444,14.6668,5.6255,8.5303,5.5302,11.5078,7.4038,8.3368,8.9456,4.2803,1.5731,4.5662,,,,,,,,,,,,,,,77,,,,287
+3479,1.0294,1.9387,,50-59y,Other,,,17.4689,4.249,2.6019,2.171,1.5521,ppmi,,,M,,0.41376,4.4289,4.2644,0.89148,10.1022,1.7487,0.39274,2.9363,2.7269,48.9665,16.0264,229.022,4.282,4.4332,1.6853,2.0311,3.571,7.7988,2.1274,3.3002,0.41456,7.2401,12.1787,15.6424,7.404,2.6469,4.627,1.7941,18.7591,6.5535,4.2646,0.97007,2.305,6.464,15.1528,4.1295,4.5817,2.9055,1.719,1.4368,4.4158,11.3351,3.2208,2.3817,11.1511,2.6171,2.7614,2.4587,11.5935,2.2225,4.1589,1.1989,14.5436,4.6172,9.3443,3.3257,11.7148,7.9067,8.1189,8.417,4.1016,1.8305,4.6592,,,,0.068189,CN,,HC,0.38283,3.897,4.0911,0.90542,11.1386,1.9541,0.38437,2.9459,2.909,49.6917,15.8399,232.0312,4.1502,4.7311,1.7983,2.051,3.579,8.0931,2.0307,3.4795,0.53076,7.2958,13.1843,13.1562,7.9256,2.4815,4.5346,1.7267,18.1079,5.3905,4.0117,1.004,2.4454,7.7066,15.445,3.072,4.656,3.4158,1.7412,1.3953,4.1524,11.3133,3.1162,2.3112,9.7277,2.0682,2.4145,2.2079,11.7889,1.9543,3.9383,1.1621,14.3839,4.7468,8.6271,4.2217,10.7078,7.8915,7.765,8.3492,3.9097,1.5682,4.3962,,,,,,,,,,,,,,,58,,,,288
+3480,1.0881,2.1351,,70-79y,Other,,,18.9446,5.5236,3.0185,2.504,1.2833,ppmi,,,F,,0.51176,4.9201,4.5354,0.99945,10.9073,1.835,0.45059,3.5609,4.0663,51.5484,15.479,251.8359,4.3263,4.9198,1.8261,2.1078,3.8467,8.3375,2.335,3.6007,0.49256,6.8194,11.6998,21.4094,7.9256,2.7481,5.1242,1.9919,21.5872,7.1387,4.6466,1.3415,2.7386,7.7395,14.5548,3.8633,4.8855,4.0154,1.695,1.4981,4.9221,12.3479,3.4033,2.5605,13.3284,2.9203,2.84,2.3137,14.3438,2.3631,4.6063,1.3847,15.5365,5.4965,10.3272,3.9669,13.227,7.3763,8.8276,7.7171,4.2335,1.8266,4.8894,,,,0.072326,CN,,HC,0.44902,4.4434,4.3925,0.98281,12.1467,2.1715,0.44357,3.2935,3.9039,51.6019,15.189,256.1742,4.36,4.8642,1.8369,2.167,4.3273,8.5056,2.4061,3.79,0.4361,7.739,12.5609,17.3675,8.5156,2.6133,5.1519,2.1239,21.6261,6.0028,4.4772,1.0407,2.596,8.5721,15.2611,2.8392,4.6564,3.6086,1.6892,1.477,4.4487,11.8733,3.0689,2.6771,11.4622,2.6337,2.6321,2.3632,12.8524,2.2726,4.5131,1.3293,16.6361,5.4431,8.8137,4.9676,12.7649,8.3367,8.3151,7.7448,3.8033,1.8472,4.6275,,,,,,,,,,,,,,,72,,,,289
+3481,1.1795,1.6754,,60-69y,Other,,,17.601,4.5041,2.4198,2.1478,1.4779,ppmi,,,M,,0.49167,4.5536,4.4753,0.9331,8.2826,1.6005,0.39468,3.0383,2.9336,41.8097,14.5583,244.7031,4.1667,4.3969,1.6866,1.9683,3.5539,6.8478,2.1996,3.0341,0.53575,6.5138,10.6528,18.0589,7.2524,2.4213,5.0957,1.8336,18.6889,6.2824,3.8597,1.0698,2.5096,7.145,13.1459,3.4192,4.0349,3.4592,1.4741,1.5222,4.4369,9.8818,2.8115,2.5785,10.8873,2.1548,2.4062,2.3586,12.4527,1.928,4.4228,1.1277,15.7232,5.1443,7.3239,3.4119,9.9253,6.9661,8.6857,7.3498,4.2471,1.6416,4.8985,,,,0.074607,CN,,HC,0.38409,3.918,4.3834,0.89599,9.1302,1.7554,0.38898,3.4254,3.2563,41.6251,13.9371,248.6675,3.7727,5.1737,1.715,1.9913,3.7385,7.2352,2.1165,3.349,0.53549,6.9614,10.8595,17.0709,8.1008,2.3108,4.5971,1.7248,18.3217,4.7921,3.5834,1.0244,2.4594,7.4455,13.1854,2.9431,4.3102,3.3923,1.5122,1.594,4.0223,10.2384,2.6523,2.419,9.2978,2.019,2.1942,2.1668,12.4388,1.817,4.2873,1.0454,15.5052,5.3839,7.03,4.4845,9.5652,7.6236,8.2157,7.5346,3.255,1.5346,4.6329,,,,,,,,,,,,,,,63,,,,290
+3482,0.82188,1.6073,,50-59y,Other,,,22.1301,5.5822,3.0481,2.309,1.2673,ppmi,,,M,,0.55033,5.5871,4.8059,1.0777,11.0967,1.6458,0.45541,3.5221,3.4062,49.9217,17.7842,282.9259,4.1362,5.1833,1.9842,2.1147,4.1124,8.192,2.2523,3.7623,0.61024,7.1118,12.3004,12.7064,8.2957,2.5725,5.4105,2.2394,21.1571,7.5326,4.2094,1.1222,2.9046,8.4858,15.5996,4.1115,4.8248,3.0793,1.7211,1.9693,4.8057,11.7075,3.5137,2.5244,14.2458,2.8223,2.7947,2.3755,13.1273,2.202,5.0926,1.4215,16.8462,5.7987,10.8149,4.0349,11.6443,7.9999,9.806,8.7541,4.3444,1.7538,5.7978,,,PD,0.071995,PD,,PD,0.49538,4.7164,4.3801,1.0724,11.8809,2.1751,0.44111,3.4183,3.702,50.8037,17.5229,287.8544,4.3712,5.0907,2.1619,1.9783,4.8015,8.0733,2.4173,3.8723,0.45176,6.9576,12.7625,17.6825,8.5997,2.5703,4.7922,2.2184,21.474,6.214,4.3104,1.1055,2.5944,9.8955,15.8656,2.961,4.4549,3.5121,1.6361,2.0317,4.395,12.0272,3.3376,2.3537,12.4523,2.7615,2.6842,2.238,12.2153,2.2041,4.7967,1.3627,16.7173,5.9564,9.5924,4.3651,11.6683,8.5495,9.1302,9.6831,3.8869,1.5649,5.5936,,,,,,,,,,,,,,,54,,,,291
+3500,0.96151,1.9256,,-50y,Other,,,18.1223,4.6635,2.5901,2.2834,1.3385,ppmi,,,F,,0.54773,5.6278,4.4658,0.90889,10.1297,1.7992,0.41685,2.854,3.6544,47.5882,14.9319,222.9237,4.1535,4.1739,1.7692,2.0813,3.5184,7.8396,2.3367,2.993,0.44422,6.1605,11.7719,16.8563,7.5965,2.7509,5.7149,2.3703,20.2703,6.3529,4.4563,1.4337,3.1299,7.8475,14.6831,3.2475,4.1875,4.038,1.6601,1.5572,4.6762,10.4682,3.2477,2.3748,11.9029,2.2132,2.9878,2.3317,13.5478,1.9982,4.3412,1.3046,14.9987,6.1378,10.0424,3.609,11.9289,8.0716,8.4873,8.1863,4.4009,1.6967,4.9073,,,PD,0.077673,PD,,PD,0.51186,4.8782,4.097,0.88093,11.2786,2.0612,0.41641,2.8135,3.6347,46.2411,14.3773,225.832,4.5606,4.8177,1.7102,2.072,3.7423,7.4977,2.3107,3.1987,0.37279,6.8181,11.5576,12.9098,7.5824,2.4316,5.0522,2.1891,21.7627,6.1707,4.3779,1.1535,2.4634,8.9268,14.9823,3.0453,4.0083,3.934,1.6437,1.5965,4.5465,11.3239,2.8143,2.3338,11.2086,2.2485,2.4955,2.1512,13.6799,2.0295,4.2412,1.2909,15.2197,5.9084,8.7079,4.7409,10.8357,8.2649,8.0719,7.6797,4.1305,1.6286,4.7138,,,,,,,,,,,,,,,49,,,,292
+3501,1.1791,1.5692,,-50y,Other,,,20.0078,4.6042,2.6956,2.0924,0.93396,ppmi,,,M,,0.45607,4.2106,3.6901,0.86314,10.0305,1.4234,0.39664,2.7265,2.9445,48.9385,16.1305,204.7201,3.6263,4.1972,1.6282,1.8265,3.1172,7.7068,1.8662,3.2429,0.56082,6.3576,11.5559,9.5161,7.1927,2.2295,4.4212,1.6178,16.8064,5.9484,3.7791,1.0442,2.446,6.2026,13.8788,3.0194,4.1812,2.9207,1.4481,1.4087,4.4045,10.8552,3.1883,1.872,12.5209,2.2333,2.4992,1.8818,12.6879,1.9335,4.0634,1.149,13.1049,5.0589,9.1759,3.548,11.761,7.34,8.3439,7.2354,3.6362,1.4548,4.897,,,PD,0.07323,PD,,PD,0.41693,3.9213,3.5142,0.87787,11.2341,1.5438,0.39971,2.703,3.0173,48.0922,15.6137,207.6578,3.297,4.166,1.7789,1.7855,3.1407,7.6174,1.8707,3.3666,0.5362,6.3291,11.2888,8.5024,7.4831,2.046,4.524,1.5655,16.3414,5.6578,3.3633,1.2314,2.8171,7.3777,15.0612,2.6121,4.1131,3.4008,1.4664,1.4247,3.9451,9.7922,3.0281,1.8384,10.4664,2.0104,2.175,1.7595,12.9519,1.8455,3.9905,1.044,13.7541,5.1426,8.129,4.2869,10.6834,8.3382,7.8715,7.4971,3.3705,1.3014,4.7138,,,,,,,,,,,,,,,47,,,,293
+3502,1.5358,2.1481,,70-79y,Other,,,23.2241,4.4365,2.611,2.2036,1.6941,ppmi,,,M,,0.50506,3.6368,4.9584,0.96144,9.451,0.89933,0.46307,3.739,3.6956,47.8912,17.7549,251.4492,4.3428,4.6545,1.9156,2.2333,2.5555,7.567,1.534,3.5188,0.61186,7.023,11.0197,24.4768,8.0778,1.7033,4.9243,1.1814,17.4754,6.9546,2.959,1.054,2.509,5.7612,13.5472,4.1534,4.6596,3.3978,1.6951,1.7537,5.0866,11.5193,3.4503,2.4923,11.1881,2.6507,2.1819,2.2849,13.8124,2.2079,5.0955,1.0143,13.3003,5.1729,9.3069,3.9108,11.0436,7.7129,9.6744,8.3155,4.5919,1.7769,5.7312,,,PD,0.071033,PD,,PD,0.45848,3.1977,4.502,0.90897,11.2103,1.1076,0.44017,3.4534,4.0366,45.7208,16.8899,251.7169,4.5304,4.7739,1.7885,2.1757,2.7017,7.5284,1.5435,3.5758,0.67512,7.5463,11.6629,21.5465,8.4439,1.8438,4.3826,1.2945,18.1692,5.8937,2.8563,0.95537,2.168,7.5886,14.3167,3.3449,4.492,3.3277,1.8111,1.7794,4.4794,10.9751,3.0656,2.5133,11.2569,2.2207,1.9889,2.2235,13.5269,2.0305,4.724,0.97448,12.9311,5.323,8.048,4.8375,11.2597,7.9515,9.0071,8.7016,4.3277,1.5305,5.4867,,,,,,,,,,,,,,,70,,,,294
+3503,0.62388,1.2698,,-50y,Other,,,15.7063,3.8553,2.279,1.9523,0.907,ppmi,,,F,,0.38278,3.847,3.3774,0.77,8.3223,1.4993,0.32902,2.6386,2.6053,41.3192,12.385,166.8606,3.3403,3.8796,1.4749,1.6238,3.1152,6.9695,1.9163,2.6276,0.33767,5.6491,9.5379,11.6269,6.3751,2.1909,4.1583,1.5776,15.0773,5.5106,3.7357,1.0583,2.4767,5.7052,10.4849,3.0132,3.8828,2.9768,1.2752,1.2784,3.59,9.275,2.7455,1.7425,10.2066,2.2027,2.343,1.8643,11.3877,1.9628,3.3244,0.95888,11.1022,4.3221,7.8412,3.4134,9.3911,5.9872,7.1431,6.9732,2.9635,1.3395,4.1808,,,,0.05196,CN,,HC,0.35119,3.478,3.2256,0.7383,9.0394,1.6664,0.33859,2.6374,2.8241,41.6723,12.0562,168.3786,3.306,3.9255,1.5051,1.4685,3.2539,6.7697,1.7632,2.687,0.32948,6.2691,9.9342,10.8187,6.7394,1.9489,4.1999,1.5616,15.2662,4.7533,3.4462,0.89074,2.3175,6.6842,12.2686,2.5771,3.7043,3.0696,1.1932,1.242,3.3708,9.0049,2.4864,1.8255,9.2124,1.8235,2.1979,1.7958,11.2027,1.6397,3.2567,0.93827,11.8028,4.5961,7.5316,3.8606,8.8424,6.4575,6.8191,7.2911,2.7088,1.2429,3.951,,,,,,,,,,,,,,,32,,,,295
+3504,1.5124,2.5682,,60-69y,Other,,,19.5775,4.5357,2.5566,2.2361,0.98859,ppmi,,,M,,0.51592,4.2304,4.3515,0.91572,8.9571,1.5335,0.40606,3.0108,3.4077,46.8233,14.3542,233.5462,4.0461,4.0121,1.7168,1.8519,3.5847,7.6233,2.163,3.1744,0.623,6.5034,11.519,14.4674,7.4467,2.3452,4.6547,1.7568,18.1466,6.086,3.8816,0.97344,2.3366,6.6531,13.3921,3.4344,4.4624,2.988,1.5262,1.658,4.7332,10.3369,3.2429,2.3849,11.6584,2.3872,2.4287,2.3687,12.5231,1.9503,4.7236,1.135,14.7209,5.1252,8.3493,3.4625,10.9754,7.2056,8.4066,7.2846,3.6335,1.6071,5.1817,,,PD,0.073286,PD,,PD,0.48231,4.301,4.1367,0.89734,10.8231,1.7008,0.41087,3.2834,3.5034,47.4281,14.2159,238.0135,3.7837,4.3456,1.6336,1.892,3.9985,7.4738,2.1917,3.3862,0.56166,6.6927,10.6746,15.0263,8.2925,2.177,4.7987,1.8027,18.0435,5.1851,3.7183,0.87814,2.4225,7.6475,13.4573,3.0343,4.4104,3.0262,1.6035,1.647,4.3301,10.1989,2.9659,2.2389,9.2687,2.1309,2.1185,1.9877,13.4595,1.883,4.486,1.1144,14.7691,5.0758,7.6179,4.3501,10.5684,7.2166,8.0111,7.0774,3.6861,1.4788,4.8984,,,,,,,,,,,,,,,61,,,,296
+3505,1.4592,1.8213,,70-79y,Other,,,19.0132,4.6243,2.5185,2.0813,1.2563,ppmi,,,M,,0.41386,3.9742,4.1831,0.9118,9.2253,1.362,0.39839,2.6665,2.6895,45.1945,14.9196,192.0731,4.0084,4.0087,1.5879,2.0688,3.229,6.9726,1.9764,3.0409,0.79221,6.5557,10.7707,21.0868,7.6373,2.2578,4.7084,1.6188,16.259,6.0416,3.68,1.1275,2.6532,5.9277,12.6793,3.204,4.3787,3.2452,1.5513,1.3625,4.4512,10.7602,3.4258,2.1884,11.9536,2.2706,2.4868,2.0755,12.9128,2.0278,3.6749,1.1396,12.3484,4.815,8.3884,3.5015,10.1119,6.4502,7.6914,7.2082,3.88,1.6819,4.6063,,,PD,0.068926,PD,,PD,0.36216,3.6693,4.0238,0.82123,9.7527,1.6181,0.36134,2.9382,2.8198,45.2403,14.9207,192.9672,3.8153,4.4583,1.6174,1.8613,3.5495,7.2938,1.885,3.0989,0.68358,6.5168,10.3025,19.258,8.0978,2.1177,4.3662,1.5658,16.7702,5.2157,3.6034,1.0713,2.329,6.7564,13.2178,3.174,4.308,2.6874,1.4492,1.369,4.0391,10.2365,2.9865,2.2179,9.7502,1.9339,2.2059,1.9086,11.7461,1.6879,3.5973,1.1343,14.4426,4.5689,7.481,4.4122,9.8226,7.336,7.1729,7.3531,3.2387,1.4151,4.3636,,,,,,,,,,,,,,,73,,,,297
+3506,0.9081,1.2681,,60-69y,Other,,,17.6493,4.2217,2.4734,1.9916,1.0387,ppmi,,,F,,0.44279,4.8024,3.9921,0.92142,9.8437,1.7189,0.43188,3.0016,2.874,44.4612,13.4618,214.107,4.1082,4.8907,1.8234,1.8584,3.6445,7.3739,2.2383,3.0739,0.27954,6.847,11.5978,7.6499,7.0169,2.56,4.3456,1.98,18.6031,7.3018,4.3998,1.0292,2.5475,6.9273,14.299,4.103,4.2945,3.1404,1.4214,1.3771,4.4063,10.8888,3.2351,2.321,11.8227,2.1815,2.5479,2.1343,12.6463,1.5876,4.1622,1.3373,13.5169,5.5216,9.0252,4.154,10.5783,6.4406,7.6217,7.6334,3.4256,1.3534,4.4977,,,PD,0.077102,PD,,PD,0.40111,3.9619,4.0158,0.91162,9.8551,1.9406,0.42093,2.9867,2.9196,45.2344,13.3314,215.878,3.891,4.9065,1.7313,1.9415,3.6892,7.7439,2.1323,3.2274,0.32237,7.1973,11.8555,7.0174,7.4994,2.5435,4.6373,1.953,19.2597,5.6278,4.0809,0.99802,2.3454,7.9196,13.8265,3.491,4.1832,3.2124,1.6931,1.3793,4.0976,10.248,2.8775,2.2209,10.0741,2.4199,2.4327,2.0487,11.3939,1.9475,3.9959,1.2373,12.9484,5.0326,8.6633,4.814,10.2138,7.3534,7.1377,8.0038,3.746,1.4394,4.3169,,,,,,,,,,,,,,,67,,,,298
+3507,1.8282,2.5331,,60-69y,Other,,,19.3557,4.6247,2.9088,2.1049,1.5038,ppmi,,,M,,0.44324,5.1435,4.2888,0.99945,9.901,1.6689,0.42585,3.7778,3.112,50.7101,14.6696,244.0111,4.3836,5.5287,1.8667,1.9825,3.7137,7.3985,2.2632,3.3343,0.48513,6.4935,11.6472,17.5572,8.2689,2.5044,5.3368,1.8977,21.3446,6.5343,4.4092,0.9717,2.6439,7.6239,15.0222,3.8881,4.5486,3.6466,1.4891,1.5713,4.8964,12.0601,3.5492,2.2509,13.1874,2.436,2.6727,2.4564,15.1734,2.0904,4.4485,1.2664,14.3923,5.8071,10.3531,3.9678,12.1272,8.0702,8.4711,8.4466,3.9082,1.7875,5.0046,,,PD,0.070756,PD,,PD,0.37011,4.8798,4.1471,0.98773,10.7688,1.9068,0.41721,4.3097,3.0881,49.6807,14.2567,251.4659,3.8252,5.5694,1.8355,2.0678,4.1298,7.681,2.2364,3.5985,0.45247,8.4844,12.6853,13.2589,8.847,2.4344,5.231,1.8888,20.2556,6.6498,4.1836,1.1536,2.9593,8.6874,15.7842,3.84,4.8132,3.8239,1.6087,1.5547,4.555,11.726,3.1385,2.3237,11.1133,2.5214,2.5548,2.2273,14.3605,2.3443,4.3759,1.1726,15.8244,5.7004,7.9275,5.1928,10.6719,8.0021,8.0169,8.7687,3.5584,1.5925,4.8819,,,,,,,,,,,,,,,62,,,,299
+3510,1.8533,2.4765,,60-69y,Other,,,20.6831,5.6551,3.3244,2.7194,2.7769,ppmi,,,M,,0.54344,5.5049,5.3577,0.97264,10.1694,1.6901,0.48088,3.8431,3.5955,44.5394,18.2094,252.5884,4.6415,5.7172,1.8657,2.4927,3.543,7.7139,2.5356,3.3837,1.3703,6.9808,12.2977,34.5848,8.7138,2.9056,5.7316,2.176,23.9534,6.7353,4.4355,1.3748,2.9508,7.678,15.0753,3.7435,5.0603,4.0449,1.9854,1.6927,5.1912,12.764,3.4992,2.7814,12.0591,2.6569,3.2784,2.3968,12.3349,2.0107,4.7205,1.5065,13.8035,5.8311,9.489,3.9317,13.3525,7.5512,10.0426,8.0567,4.8804,1.8627,5.1301,,,PD,0.081814,PD,,PD,0.51297,4.5926,5.0507,0.94253,12.4711,2.1996,0.45977,3.5,3.8657,45.6997,17.229,261.8595,4.573,5.0678,1.8825,2.2506,4.1721,8.3985,2.5428,3.7243,1.2391,7.5412,13.512,27.0503,9.3774,2.5911,5.1323,2.3075,23.4439,6.6575,4.6265,1.2841,2.7438,9.4726,16.1925,3.1345,5.1623,3.2584,1.7206,1.5818,4.8142,11.8011,3.3457,2.9319,12.3579,2.7259,2.7552,2.5189,13.3743,2.4225,4.5431,1.461,15.3244,5.7917,10.558,5.0075,12.2533,9.2349,8.7542,8.898,4.2136,1.9099,4.9942,,,,,,,,,,,,,,,60,,,,300
+3514,1.1534,2.4362,,70-79y,Other,,,18.9401,4.9834,2.628,2.3496,1.2768,ppmi,,,M,,0.48717,4.0202,4.2096,0.87311,8.3425,1.604,0.38313,2.8823,3.7609,45.4954,14.5244,223.5223,3.8782,4.0305,1.7464,1.7407,3.6933,7.0305,1.9434,2.9471,0.56962,6.0459,10.4748,18.5099,7.2557,2.3028,4.052,1.6793,18.7031,6.4487,3.8689,1.0364,2.2966,6.7885,13.0648,3.1589,3.9804,2.9267,1.2307,1.5319,4.2401,9.7865,3.1366,2.4582,12.0436,2.3539,2.4217,2.301,12.1184,1.7819,4.634,1.1536,14.5427,5.1757,7.9713,3.3194,9.9758,6.7361,8.2493,8.0302,3.2863,1.4537,4.791,,,PD,0.072063,PD,,PD,0.44046,3.296,4.0119,0.84789,10.0222,1.6934,0.3914,2.7362,4.0174,44.2599,13.8223,225.956,3.632,3.8304,1.7057,1.8822,3.8862,6.9307,1.9346,3.0635,0.59248,6.2397,10.6862,17.1914,7.502,2.141,4.1769,1.7284,18.3892,5.4477,3.7246,1.0146,2.2161,7.8687,13.1102,2.826,3.8113,2.9949,1.4946,1.4854,3.8432,9.5393,2.7367,2.4523,10.2853,1.9979,2.3072,1.9991,11.8871,1.4593,4.6943,1.1739,14.7616,4.6065,7.3778,3.9844,9.8943,6.7636,7.6265,8.1364,3.2631,1.2342,4.5753,,,,,,,,,,,,,,,71,,,,301
+3515,1.2421,2.355,,70-79y,Other,,,16.8421,3.9323,2.3146,1.9731,1.0302,ppmi,,,F,,0.50347,4.4437,3.6985,0.88979,8.5837,1.477,0.38877,2.9065,3.5171,43.5447,12.9824,190.5461,3.3073,4.3479,1.6483,1.4788,3.1922,7.0742,1.7928,3.2714,0.50239,6.046,10.421,13.5882,6.8308,2.1911,4.7494,1.6576,16.8731,6.4146,3.5384,0.9818,2.4125,6.4947,12.7052,3.3857,4.0448,2.5987,1.1936,1.4453,3.8504,9.8777,2.9814,2.0244,11.0047,1.751,2.2048,2.0133,11.6783,1.469,4.1028,1.0645,12.2348,5.0964,7.8484,3.5453,9.9715,6.4321,7.4875,7.1594,3.0605,1.231,4.4896,,,,0.066916,CN,,HC,0.44569,4.1228,3.7005,0.90601,9.6202,1.5708,0.3953,3.1414,3.6547,43.0202,12.599,197.0221,3.3833,3.9784,1.7057,1.7365,3.3961,7.0079,1.8512,3.4163,0.50611,6.3658,10.4269,9.3655,7.511,2.02,4.9944,1.6238,18.0788,4.9742,3.4652,0.87166,2.163,7.3251,12.8905,2.8794,4.0045,3.0144,1.3287,1.5315,3.5455,9.3514,2.8129,2.0465,9.4147,1.7174,2.0563,1.7896,10.5896,1.4833,4.0367,1.0121,12.5574,4.8726,7.3354,3.3609,9.9535,6.8469,6.9885,7.9901,3.0629,1.1566,4.3175,,,,,,,,,,,,,,,74,,,,302
+3516,1.3102,2.4982,,70-79y,Other,,,20.6482,4.6337,2.8837,2.2947,1.5033,ppmi,,,M,,0.42953,5.1607,4.8093,0.78353,9.3305,1.5964,0.36094,3.3327,3.0958,49.776,15.0628,195.8296,4.1028,4.7641,1.2892,2.0077,3.8237,7.0998,2.1938,3.137,0.48226,6.8772,10.996,17.2821,8.7005,2.5082,5.0047,1.8405,17.3191,6.7981,4.1484,1.2983,2.7462,7.6237,14.2586,3.8423,4.7601,3.192,1.471,1.5133,4.2985,11.2983,3.137,2.5982,11.5947,2.3825,2.5075,2.4788,12.8571,2.0948,3.7853,1.1845,14.6006,5.9196,8.9243,3.539,9.8615,7.5594,8.2497,5.4238,4.1833,1.5627,5.0046,,,PD,0.080611,PD,,PD,0.40263,4.6327,4.1129,0.88046,10.3559,2.0278,0.37695,3.4243,3.291,50.4076,14.8835,202.6702,3.8569,5.7877,1.7212,1.988,4.328,7.833,2.2341,3.1187,0.95931,6.7909,11.8804,21.5064,8.401,2.6174,4.7002,1.8516,18.3394,5.1092,4.3198,1.0936,2.6998,8.7367,14.445,3.0472,4.6028,3.417,1.7947,1.5163,3.7594,11.2998,3.0461,2.2831,9.9348,2.0168,2.478,2.0574,11.8767,1.9351,3.7195,1.1425,15.0881,6.1071,8.0205,4.4369,9.8194,7.5652,7.8884,7.8837,3.6017,1.4833,4.885,,,,,,,,,,,,,,,78,,,,303
+3517,0.60148,1.9,,-50y,Other,,,20.1098,4.7273,2.8894,2.3917,0.80566,ppmi,,,M,,0.49701,4.3431,4.5874,0.97221,9.7276,1.6224,0.41807,3.2045,3.2565,50.5418,16.1413,214.1542,4.4191,4.6127,1.7926,2.0541,3.4156,8.2838,2.0144,3.2696,0.48721,6.7532,11.6701,6.9494,9.0064,2.4757,4.7164,1.8181,17.9496,6.631,4.2334,1.2278,2.8963,6.6795,13.3488,3.7516,4.9682,3.3555,1.5003,1.5518,4.7041,10.9779,3.3327,2.6392,12.5564,2.362,2.8316,2.5541,13.4204,2.0413,4.9865,1.1213,14.5791,5.236,8.5905,3.711,11.0525,7.7003,8.7648,8.0879,3.8074,1.8014,5.1393,,,,0.071991,CN,,HC,0.45214,3.9873,4.2589,0.95716,10.3187,1.6955,0.41256,3.2581,3.3155,49.9607,15.7649,218.2864,3.6768,5.7208,1.7394,2.1567,3.7102,8.116,2.1058,3.454,0.50693,7.6158,12.407,5.7873,8.7024,2.1751,4.8938,1.7412,17.3145,5.504,3.8058,1.309,2.881,7.5919,14.794,3.3067,4.9171,3.6417,1.4211,1.5165,4.1472,10.7057,2.9779,2.4891,11.0868,2.2722,2.4073,2.24,12.7419,2.037,4.6913,1.0324,14.5662,5.5759,8.9662,4.9257,11.0716,8.1726,8.4632,8.1785,3.6933,1.6124,4.8997,,,,,,,,,,,,,,,46,,,,304
+3518,1.5275,2.2785,,70-79y,Other,,,18.5404,4.895,2.4366,1.996,1.288,ppmi,,,M,,0.38971,4.4804,4.2031,0.91328,8.7,1.3691,0.34848,3.0864,2.8985,46.1608,14.2517,197.2031,3.9494,4.0586,1.6569,1.908,3.4195,7.7228,1.8643,3.3151,0.77588,7.0441,10.9044,24.151,7.4034,2.0646,4.782,1.5837,15.9867,6.2916,3.4417,1.3392,2.8069,6.7451,12.6766,3.8032,4.5715,3.0209,1.2911,1.4874,4.6176,11.7033,3.3349,2.3947,11.6913,2.5482,2.2663,2.261,12.2807,2.0054,3.7096,1.0709,13.1707,5.4196,8.1881,3.5494,9.6458,6.4851,8.0538,7.0233,3.6927,1.6413,4.7063,,,,0.072049,CN,,HC,0.38905,4.2361,3.9431,0.91967,10.1542,1.6761,0.37646,3.1831,3.1085,45.9677,13.7979,201.1609,4.3104,4.4936,1.7401,1.8468,3.8224,7.3233,1.9462,3.3912,0.666,6.4461,11.5439,20.096,7.866,2.2092,4.7058,1.7675,16.4187,5.3845,3.5424,1.0854,2.6605,7.5588,14.9038,3.1181,3.9294,3.1067,1.5697,1.4882,4.0431,11.1874,2.9861,2.406,10.6741,1.934,2.2857,2.1358,12.6885,1.7518,3.6456,1.1153,13.6788,5.3887,6.894,4.2345,9.6738,6.9341,7.5608,7.9566,3.2603,1.4873,4.5721,,,,,,,,,,,,,,,73,,,,305
+3519,2.0161,2.1343,,70-79y,Other,,,22.6542,5.5425,2.8669,2.2509,1.5393,ppmi,,,M,,0.49222,4.9525,4.4878,0.94697,8.996,1.9093,0.41011,3.1662,3.4954,51.9673,17.2705,243.2934,4.6667,4.7968,1.7737,1.9554,4.485,8.3522,2.4393,3.475,0.73481,7.568,12.171,23.6865,8.7276,2.7801,5.256,2.0959,20.3897,7.0913,4.5634,1.4329,3.0766,8.0322,13.3411,4.3706,4.864,3.3755,1.6897,1.5889,5.2411,12.8425,3.5134,2.6963,12.4487,2.7211,2.8144,2.4239,13.5322,2.2223,4.4971,1.3047,15.6667,5.3676,8.9025,3.6809,11.3402,7.213,8.9479,7.4687,4.2026,1.7724,5.3922,,,,0.085695,CN,,HC,0.43408,4.4505,4.4446,0.96996,11.6573,2.0968,0.40617,3.4679,3.4483,51.7088,17.312,247.2544,4.3801,5.1479,1.8311,2.0564,4.9373,8.719,2.5223,3.8763,0.83925,8.2141,12.9176,19.1588,8.9726,2.4753,4.9414,2.2683,18.9099,6.1128,4.3234,1.1561,2.7086,9.6723,15.4265,3.6619,4.9651,4.0222,1.4843,1.5531,4.6854,13.1007,3.3886,2.6035,10.6403,2.8035,2.388,2.2622,14.4915,2.1695,4.3146,1.2662,16.0916,6.1819,7.8497,4.3879,10.1696,7.8841,8.352,8.1749,3.8427,1.7774,5.0866,,,,,,,,,,,,,,,74,,,,306
+3521,1.7738,1.4835,,60-69y,Other,,,18.0096,4.516,2.8876,2.2799,1.3859,ppmi,,,M,,0.43732,4.7696,4.1954,0.9848,10.6465,1.6919,0.40073,3.3077,3.1075,45.9119,14.338,222.1092,3.8736,4.4086,1.8937,2.0402,3.3926,7.2516,2.0608,3.4876,0.60327,6.4906,11.505,12.9088,7.381,2.3877,5.1593,1.7407,19.6484,6.1898,4.1945,1.1683,2.8608,7.1956,14.8918,3.4007,4.1753,3.3975,1.3791,1.4154,4.6162,10.6866,3.4535,2.3651,11.2153,2.2875,2.5323,2.4673,12.8045,2.0224,4.3324,1.2381,13.6091,5.6711,9.2031,3.2938,11.1189,8.8738,8.372,8.8469,3.844,1.6784,4.8397,,,,0.078581,CN,,HC,0.38849,4.3899,4.0396,0.98461,10.0141,1.8557,0.39601,3.1645,3.3807,46.1984,14.1224,227.1361,3.9366,4.7808,1.9495,1.9265,3.8527,7.7458,1.9586,3.6508,0.57256,6.6967,11.4193,13.1198,8.0156,2.255,5.2027,1.7093,19.3314,5.3999,3.8043,1.1048,2.7608,8.3569,14.6638,2.8097,4.2835,3.6102,1.5163,1.4049,4.2231,10.8634,3.2055,2.4328,10.4605,2.3716,2.3831,2.5067,13.1241,2.1995,4.1847,1.133,14.4502,5.6117,9.2655,4.24,11.1371,9.3887,8.0111,9.0454,3.4843,1.8797,4.6139,,,,,,,,,,,,,,,65,,,,307
+3522,2.093,2.6268,,50-59y,Other,,,20.8339,5.483,2.7807,2.3704,2.7598,ppmi,,,M,,0.50004,4.9362,4.5403,0.99873,9.6413,1.7135,0.4147,3.8246,3.3178,50.4605,17.3301,233.2974,3.9011,5.1162,1.883,1.833,4.0465,8.2065,2.2489,3.6412,0.80136,7.2251,11.7675,40.4384,8.3197,2.6273,5.5968,1.8136,18.7877,7.614,4.0735,1.3488,3.0787,7.1137,13.9237,4.4267,4.6003,3.2746,1.5813,1.7761,4.5483,10.8636,3.5628,2.5361,11.4854,2.1223,2.547,2.3266,13.7862,1.8196,4.8393,1.2324,14.5868,5.5063,8.435,4.1188,9.8429,7.8981,9.3295,7.9935,4.0132,1.6094,5.5081,,,PD,0.066018,PD,,PD,0.46608,4.8343,4.2835,0.98283,10.2762,1.848,0.41581,4.0218,3.498,49.7952,17.0519,235.868,3.8435,4.9969,1.8791,1.9382,4.2362,8.3295,2.1282,3.5726,0.84855,7.9922,12.2141,40.5911,9.1783,2.3495,5.5899,1.8313,19.4807,6.0679,3.5704,1.1165,3.0015,8.4531,14.8958,3.5824,4.6156,3.2015,1.5989,1.777,4.1723,10.5045,3.2418,2.5776,9.6803,2.2207,2.0646,2.2085,12.7679,1.8514,4.7256,1.1434,13.5119,5.7706,8.1279,4.5019,10.1494,7.8342,8.7137,8.102,3.4854,1.5867,5.2466,,,,,,,,,,,,,,,54,,,,308
+3523,0.81163,1.5192,,60-69y,Other,,,19.081,5.0645,2.9992,2.5093,0.85477,ppmi,,,M,,0.48488,4.3544,4.1968,0.99551,9.5226,1.4417,0.40562,3.5102,2.8337,51.8801,15.4009,198.4709,3.5452,4.9629,1.8718,1.803,3.2321,7.9208,2.0358,3.3296,0.43582,6.6551,11.6648,7.2597,7.9421,2.3184,4.5276,1.7453,18.2004,6.4103,3.7394,1.2254,2.5056,6.3002,14.2535,3.3602,4.6842,3.0852,1.4136,1.4719,4.2467,9.8038,3.4155,2.2227,11.8118,2.3801,2.4338,2.1012,13.1791,2.1484,4.6061,1.1223,14.4425,5.234,8.8679,4.1358,10.0028,7.6443,8.0621,7.7117,3.5729,1.5382,4.8685,,,,0.072733,CN,,HC,0.4102,3.9086,3.9559,0.98699,10.0195,1.6613,0.40398,3.5018,2.8329,50.7574,14.7129,200.0742,3.5551,4.7083,1.9003,1.9724,3.5218,7.7809,2.0097,3.4044,0.42928,7.0437,11.3272,6.5495,8.3068,2.0801,4.5538,1.6966,18.1783,5.2434,3.823,0.95421,2.4678,7.084,14.0685,3.062,4.5012,3.41,1.5327,1.4344,4.0191,10.0641,3.0424,2.128,10.3647,1.9019,2.2694,1.9875,12.2166,1.7375,4.4469,1.0676,14.1345,5.2948,8.5256,4.6053,9.883,8.2695,7.5844,7.7611,3.9787,1.2772,4.6377,,,,,,,,,,,,,,,64,,,,309
+3525,0.80972,1.9438,,50-59y,Other,,,20.3061,4.5717,2.7777,2.2644,1.1986,ppmi,,,M,,0.42471,4.6126,4.2387,0.97004,8.8856,1.5293,0.38749,3.2898,2.6619,50.1682,17.3124,214.323,3.6595,4.1713,1.7785,1.7683,3.429,7.4983,2.0186,3.4539,0.41252,7.0752,10.7515,8.4991,7.1511,2.294,4.7724,1.8872,15.3433,7.0874,3.7647,1.1517,2.7,7.1745,13.2746,4.2284,4.6273,3.0157,1.3019,1.5346,4.2795,9.9065,3.4535,2.284,10.6553,2.1182,2.4769,2.1641,11.8065,2.0157,4.1361,1.0641,13.1302,5.4968,8.0142,3.6795,9.3517,7.0206,8.894,7.2272,3.2769,1.5896,5.1963,,,,0.058924,CN,,HC,0.36643,4.0056,3.9085,0.96378,10.1933,1.7466,0.38339,3.1099,2.65,49.1022,16.8215,220.0786,3.8295,4.5302,1.7393,1.8401,3.5502,7.7238,1.8985,3.6388,0.44137,6.6036,11.622,7.1169,8.2444,2.1436,4.672,1.7317,16.5169,4.974,3.5355,1.0332,2.7133,8.2853,13.9802,3.1149,4.0257,3.2344,1.3568,1.5722,3.7519,9.8764,3.1127,2.2322,9.8579,1.9774,2.2159,1.9801,11.991,1.7453,3.9756,0.97642,13.6097,5.1804,7.8896,4.0724,9.9479,7.4823,8.386,7.4183,2.9701,1.4069,5.0282,,,,,,,,,,,,,,,56,,,,310
+3526,1.9398,2.187,,60-69y,Other,,,19.9076,5.7141,2.8448,2.5693,1.878,ppmi,,,M,,0.44766,4.7375,4.8812,0.94215,8.9662,1.5812,0.42239,3.1295,3.4875,51.3065,16.3318,201.4213,3.976,5.1502,1.7854,2.4099,3.6317,7.429,2.3298,3.3697,0.60782,6.6467,11.2601,24.5627,7.9742,2.3869,5.2807,1.889,19.0754,6.4179,4.26,1.3849,2.6146,7.6073,12.4507,3.9701,4.4434,3.4197,1.6206,1.4618,5.104,11.1162,3.3787,2.7742,12.2192,2.3815,2.7637,2.4706,12.4869,2.0339,4.9153,1.2983,16.3143,5.7206,9.1611,4.2086,10.4409,7.0441,7.8726,7.7218,4.0699,1.6115,4.8222,,,,0.078795,CN,,HC,0.44431,4.2905,4.5756,0.98141,10.2703,2.1778,0.44893,3.2501,3.8632,50.3588,15.3767,220.3208,4.123,4.7387,1.9135,2.2977,4.2095,7.362,2.3037,3.535,0.59424,6.5422,11.2166,18.7772,8.2923,2.5894,5.1901,1.9912,20.0283,5.6089,4.3037,1.2611,2.808,8.6513,13.2631,3.3039,3.9997,3.9811,1.7861,1.523,4.6274,11.0866,3.1964,2.5681,10.4884,2.3166,2.4195,2.2526,13.2539,2.1136,5.0179,1.2753,14.5737,5.9236,8.2836,4.406,10.5342,7.7828,7.751,8.2813,4.439,1.7722,4.7611,,,,,,,,,,,,,,,61,,,,311
+3527,1.3298,1.7486,,60-69y,Other,,,19.6226,4.4708,2.6668,2.1875,1.2056,ppmi,,,M,,0.44092,4.4242,3.9005,0.92401,8.0415,1.5095,0.40153,3.0532,3.1165,42.4029,16.533,217.9644,3.2679,4.5203,1.6909,1.7084,3.2286,6.6068,1.9708,2.998,0.57938,5.7456,9.7003,14.4263,6.8244,2.2307,4.8306,1.7447,16.6401,5.5638,3.9791,1.2225,2.6195,6.5885,11.9549,3.4402,3.5386,3.189,1.299,1.5956,4.2053,9.5655,3.0577,2.0991,10.1987,1.874,2.4965,2.0987,10.3165,1.6028,4.0401,1.2541,13.5245,5.035,7.9753,3.3662,9.6386,6.4622,8.1702,7.4896,3.5378,1.1961,4.9268,,,,0.067301,CN,,HC,0.40059,3.8198,3.8559,0.95187,10.264,1.6401,0.39687,2.8928,3.2766,41.9914,15.9191,221.99,3.3571,4.2141,1.7925,1.6572,3.4902,6.8811,1.9202,3.1701,0.66013,5.8618,9.1945,15.6802,7.0039,2.1528,4.4459,1.7934,15.9311,5.2312,3.5892,1.1071,2.5703,7.6201,11.4083,3.3293,3.4317,2.3325,1.3966,1.648,3.6985,8.6781,2.8422,2.1342,11.1465,1.8575,2.274,2.0371,10.4487,1.8389,3.8937,1.1309,13.1308,4.8942,7.9962,4.7732,9.8558,7.0511,7.6354,7.1717,2.9208,1.4203,4.7314,,,,,,,,,,,,,,,62,,,,312
+3528,0.61919,1.5982,,50-59y,Other,,,17.4578,4.3556,2.3485,2.1059,0.73015,ppmi,,,F,,0.48802,5.0767,4.5623,0.92841,9.1273,1.7686,0.41378,2.8897,2.9876,43.8601,13.1116,221.8627,4.0212,4.9513,1.7347,2.0547,3.5982,7.5213,2.3451,3.3,0.45973,6.5597,11.2474,13.0669,7.4362,2.6275,5.2431,2.0358,19.8674,6.4638,4.3999,1.35,2.9285,7.319,13.3869,3.937,4.1965,3.6456,1.528,1.4885,4.4761,11.1529,3.0554,2.4673,12.2118,2.6328,2.6424,2.3804,14.0721,2.2815,4.4477,1.1998,15.2617,5.8946,9.1721,3.9068,10.9121,7.7628,8.7185,8.0753,4.0033,1.7482,4.6787,,,PD,0.068808,PD,,PD,0.45368,4.7016,4.3409,0.95003,11.7743,1.8965,0.41554,2.904,3.0895,43.5837,12.9143,223.4908,4.1091,4.5985,1.8098,2.1975,3.7381,7.3912,2.2572,3.4666,0.4237,6.5119,11.4832,8.9787,7.7953,2.422,5.2637,1.9879,20.0253,5.8322,4.109,1.0666,2.8508,8.2291,14.6121,3.0069,3.9172,3.8152,1.673,1.5046,4.275,11.233,2.9182,2.4837,10.5071,2.3142,2.3639,2.4598,12.9229,2.0278,4.2715,1.1712,15.5363,5.5638,8.5804,4.3733,10.6845,7.8384,8.5029,8.8301,3.9901,1.6484,4.5134,,,,,,,,,,,,,,,59,,,,313
+3530,1.0556,1.851,,60-69y,Other,,,19.0968,5.5032,2.7324,2.4981,1.107,ppmi,,,M,,0.54624,5.5507,4.1976,0.88177,10.8544,1.7537,0.45181,3.3652,3.0933,49.7641,16.017,220.4425,4.5396,4.777,1.8098,1.9479,3.5643,8.2956,2.0199,3.3475,0.44353,7.0304,11.8807,16.5331,8.2521,2.7242,5.8238,1.933,19.8383,6.4606,4.0355,1.3324,2.7598,8.0936,15.1665,3.6909,4.7057,3.4949,1.6755,1.5097,4.7298,11.4448,3.4232,2.3617,13.3929,2.5765,2.7958,2.3628,14.8953,2.299,4.2923,1.3568,16.231,6.0034,9.632,3.431,10.8467,8.245,8.7259,8.5747,3.8017,1.6908,4.9419,,,PD,0.098476,PD,,PD,0.49852,5.0106,4.0162,0.93783,11.5988,2.0299,0.44261,3.294,3.3146,50.0882,15.6444,228.6776,4.3957,5.1998,1.8682,2.0772,4.086,8.4039,2.2446,3.6774,0.68307,6.8993,12.5702,13.0616,8.4633,2.4311,5.5108,2.0244,21.7246,5.2928,4.1351,1.1535,2.7468,9.0638,15.0641,2.8083,4.4581,3.9424,1.6249,1.5245,4.3703,11.9797,3.2031,2.3331,12.4924,2.3234,2.4971,2.0655,15.3536,1.973,4.2313,1.3354,15.2992,6.1619,9.5786,4.2506,10.639,8.0701,8.3826,8.3008,3.6782,1.5487,4.8418,,,,,,,,,,,,,,,65,,,,314
+3532,1.2039,1.7268,,60-69y,Other,,,17.0084,4.2121,2.6856,2.1426,1.002,ppmi,,,M,,0.37312,4.7111,4.1526,0.9278,8.6059,1.5166,0.37969,3.444,2.6649,46.2479,14.2083,203.2427,3.9502,4.5087,1.8551,1.9191,3.5289,7.1725,2.2364,3.3608,0.37997,5.8997,10.8254,11.3099,7.4016,2.3243,4.3858,1.8627,18.1432,5.559,4.0441,1.2005,2.4609,6.8962,12.7416,3.2593,4.2175,3.0914,1.5567,1.3286,4.1863,10.06,3.3106,2.274,11.4557,2.4525,2.5542,2.2476,12.7635,2.0716,3.6927,1.1452,15.0596,5.6891,8.843,3.3741,9.9992,6.911,7.7302,7.6349,3.6341,1.5669,4.48,,,PD,0.069688,PD,,PD,0.33565,4.0665,3.9268,0.88188,10.4213,1.7684,0.37781,3.1259,2.9101,46.0022,13.9051,210.219,4.0227,4.3569,1.6735,1.8707,3.9008,7.1979,2.2017,3.4357,0.34756,6.3069,10.3678,10.3281,7.774,2.121,4.3899,1.9474,18.7542,5.1845,3.896,0.83678,2.4023,8.6452,13.2122,2.7776,4.2341,3.5817,1.485,1.3622,3.9387,10.1291,2.7162,2.3769,9.7116,2.7468,2.1534,2.2462,12.6841,2.2391,3.5798,1.1716,15.3414,5.8968,8.8374,4.063,10.0153,8.2088,7.3759,7.18,3.4699,1.7335,4.2373,,,,,,,,,,,,,,,62,,,,315
+3536,0.96039,2.2813,,60-69y,Other,,,19.6048,4.6495,2.5633,2.2427,1.1237,ppmi,,,M,,0.45623,4.6442,4.5057,0.96488,9.6112,1.4455,0.4009,2.7641,3.0751,46.9649,15.8679,217.1531,3.7339,4.6714,1.8422,1.943,3.2452,7.2446,2.0921,3.4022,0.41577,7.0603,11.0833,14.2452,7.3353,2.3311,5.121,1.684,17.4946,6.2311,3.8965,0.96104,2.7944,6.6453,13.6634,3.5265,4.4668,3.2327,1.6524,1.5182,4.3526,10.6178,3.3092,2.2644,11.4037,2.2018,2.5597,2.1606,12.75,1.8961,4.3426,1.1818,13.2957,5.2128,9.0075,4.0065,10.9281,7.3997,8.5121,7.8102,3.7845,1.4953,5.0324,,,PD,0.075212,PD,,PD,0.4014,4.25,4.2252,0.96176,10.4619,1.5813,0.38341,2.8749,3.3117,46.3833,15.3379,220.2352,3.8205,4.6921,1.8197,2.0012,3.5342,7.5376,2.1461,3.623,0.5372,6.4873,12.1433,13.4221,7.5911,2.1499,4.7741,1.6959,16.6214,5.0117,3.7144,0.97531,2.3525,7.8513,14.4716,3.1482,4.0288,3.2502,1.6245,1.5415,4.1156,10.3983,2.9709,2.2577,10.8332,1.9971,2.3624,1.9606,12.5039,1.6766,4.1865,1.0871,15.1723,5.5976,8.9046,4.5382,10.4615,7.4024,8.1274,8.0364,3.4018,1.4102,4.9502,,,,,,,,,,,,,,,60,,,,316
+3540,0.87336,1.3613,,60-69y,Other,,,19.5901,4.9262,2.9121,2.202,1.2683,ppmi,,,M,,0.42394,4.3965,4.4918,0.91503,8.3403,1.6749,0.37981,3.2325,2.8501,47.3053,14.8837,213.4314,4.1099,4.5785,1.8132,1.9479,3.5933,7.6418,2.2419,3.2309,0.55318,6.751,11.0297,17.7132,8.1928,2.5139,5.0003,1.7897,18.1506,6.3243,4.3221,1.2018,2.8321,6.8168,13.2867,3.7125,4.6535,3.1446,1.6224,1.3919,5.0573,11.3638,3.3422,2.3063,11.2016,2.698,2.774,2.2184,13.4865,2.3176,4.1407,1.1934,14.7364,5.4101,8.3518,3.6216,10.0499,7.2015,8.6124,7.6996,4.2136,1.6904,4.7449,,,PD,0.064116,PD,,PD,0.39918,4.2982,4.1028,0.9475,9.8208,1.9696,0.3733,3.5761,2.96,47.7574,14.588,218.6446,4.0293,4.9714,1.806,2.0788,3.9052,7.8283,2.2056,3.4453,0.3644,6.4822,11.1698,16.6122,8.1687,2.3835,4.6125,1.8404,17.6404,4.919,4.1923,0.94918,2.626,7.672,13.9264,2.9287,4.5337,3.7894,1.5306,1.3944,4.4046,11.0417,3.142,2.1985,10.5645,2.0905,2.5705,1.9926,13.1308,1.8993,3.9637,1.1141,14.2612,5.2342,8.1562,4.0765,10.8235,7.8779,8.2225,8.0395,3.9219,1.4948,4.624,,,,,,,,,,,,,,,64,,,,317
+3541,1.0814,2.0726,,60-69y,Other,,,21.0475,5.7043,3.0545,2.4515,1.1609,ppmi,,,M,,0.52885,6.371,5.1024,1.0598,12.0909,2.149,0.48885,5.5892,3.3994,54.2343,16.1197,271.4324,5.0646,6.1455,2.0408,2.569,4.7079,8.6749,2.6825,3.8009,0.43249,8.9474,13.3147,13.4483,10.1214,3.2383,6.0318,2.4552,23.7013,7.9356,5.0464,1.6832,4.3121,9.6282,17.2965,4.8046,5.7993,4.0612,2.0125,1.5771,6.2321,14.838,3.7511,2.7778,15.4631,2.9659,3.0822,2.733,16.8306,2.2424,4.6623,1.4967,17.9396,7.6643,10.4078,4.8137,13.6137,8.303,8.7945,9.4924,4.9556,1.9649,5.1737,,,,0.090264,CN,,HC,0.4617,5.0154,5.0423,1.0886,11.9367,2.4476,0.47035,5.5832,3.5946,53.1606,15.99,281.5274,5.4121,6.3711,2.2118,2.8541,5.0551,9.6025,2.7255,4.0192,0.54137,8.6277,13.9472,10.5845,10.4541,3.2875,5.5001,2.5617,24.65,6.1554,4.9423,1.4406,3.6767,12.0931,17.7329,4.1344,5.4089,4.8982,2.3272,1.6112,5.7327,14.4767,3.6964,2.6474,14.52,2.8563,3.1731,2.4927,15.0721,2.3034,4.4208,1.4549,16.9429,8.2411,10.2601,5.7349,13.2625,8.5857,8.3091,9.667,4.8843,1.7768,4.9793,,,,,,,,,,,,,,,66,,,,318
+3542,0.70574,1.0511,,60-69y,Other,,,15.6242,4.1246,2.2975,1.8889,0.88689,ppmi,,,F,,0.40205,4.3262,4.206,0.80008,8.9534,1.3906,0.37308,3.0714,2.3352,40.004,11.9013,179.5146,3.6322,5.0015,1.5396,1.7182,3.5934,6.5195,1.9189,2.9557,0.31865,5.4062,9.9633,8.8574,6.759,2.2213,4.5586,1.7496,17.1999,5.5912,3.7161,1.0905,2.6407,6.2854,12.2708,3.1167,3.5113,3.0709,1.4023,1.2377,3.9095,10.2063,2.8642,2.2401,10.5409,1.9988,2.5176,2.2266,12.5264,1.6688,4.1625,1.0814,14.3766,4.8144,7.6728,3.4176,9.758,6.8302,7.0947,7.9982,3.436,1.457,3.9623,,,PD,0.059568,PD,,PD,0.31545,3.8582,4.1535,0.82555,9.9558,1.5272,0.35202,2.9241,2.3172,40.021,12.3021,181.9477,3.646,4.2729,1.6113,1.8484,3.4258,6.7723,1.8,3.1293,0.38214,6.6731,10.3262,6.7993,7.3483,2.0143,4.5097,1.4839,16.5627,5.3641,3.4268,0.97487,2.7409,6.8347,13.2654,2.7636,3.7583,3.5441,1.3644,1.1594,3.8847,10.3409,2.6947,2.174,9.1753,2.1211,2.2641,2.0858,12.3367,1.728,3.9785,1.0025,14.0095,4.8396,7.0832,4.0505,9.5791,6.8393,6.8372,7.9546,3.2901,1.4777,3.8073,,,,,,,,,,,,,,,67,,,,319
+3544,1.3296,2.2486,,70-79y,Other,,,18.9543,4.432,2.511,2.2569,1.5413,ppmi,,,M,,0.42866,4.5804,4.4965,0.87603,9.0652,1.4572,0.3534,4.1914,2.9928,46.7065,14.0705,219.3113,4.1192,5.0751,1.6472,1.9916,3.3798,7.5781,2.1499,3.0969,0.51608,7.4718,11.4636,19.3905,7.8513,2.3222,4.5445,1.7837,18.2151,6.3923,3.8828,0.93472,2.637,6.4767,14.1071,4.2282,4.8776,2.7465,1.5232,1.4008,4.8413,11.4041,3.392,2.5296,10.6449,2.4527,2.3003,2.3976,13.823,2.1102,4.0013,1.2055,13.3548,5.0241,7.5846,3.8796,10.4945,6.8904,8.2285,6.9193,3.4331,1.9582,4.8901,,,,0.068971,CN,,HC,0.38261,4.5472,4.0562,0.86942,9.2531,1.6037,0.35126,3.9501,3.0036,46.0088,13.6208,222.6204,3.7464,5.187,1.7131,1.8175,3.8412,7.2914,2.1631,3.2709,0.64705,7.393,10.9151,17.6554,9.1769,2.0361,4.6985,1.8327,18.4726,5.1294,3.5649,0.98328,2.3965,7.7942,13.6775,3.8802,4.7136,3.1089,1.4119,1.4631,4.3114,11.1252,3.1962,2.4634,10.4112,2.1494,1.8888,2.1451,12.4215,1.9638,3.899,1.1418,14.2941,4.9826,8.1713,4.44,10.105,7.2896,7.6114,7.4445,3.178,1.6645,4.7042,,,,,,,,,,,,,,,70,,,,320
+3551,1.3934,1.704,,60-69y,Other,,,18.7615,5.2835,2.9892,2.3822,1.4081,ppmi,,,M,,0.45792,4.6983,4.626,0.87845,7.8555,1.6579,0.44703,2.9065,3.1829,48.4176,17.2623,226.5669,4.2591,4.5899,1.7805,2.0475,3.7027,7.5261,2.2153,3.1654,0.59496,6.7094,11.9351,18.3056,8.0077,2.4935,4.3885,1.8823,20.1372,5.7981,4.1956,1.3828,2.7861,7.4976,14.425,3.3396,4.5435,3.6138,1.5928,1.5315,4.3512,10.7114,3.4201,2.5484,12.7285,2.3603,2.5245,2.4331,14.949,2.207,4.6657,1.3319,14.9523,5.8756,8.5467,3.5135,9.5536,7.4823,8.7991,8.0728,4.2491,1.6797,4.8801,,,,0.078105,CN,,HC,0.42701,3.9649,4.5257,0.91765,10.4526,1.8286,0.4375,3.2022,3.2408,48.2207,16.8572,232.5632,4.1625,4.9737,1.9465,2.0737,3.82,7.9405,2.1629,3.4005,0.54101,6.8391,12.2981,16.0427,8.4346,2.3613,4.8684,1.9713,20.0424,5.2369,3.8391,1.075,2.7387,8.4836,14.3794,3.261,4.5906,3.6537,1.5827,1.5225,3.8281,10.2148,3.127,2.6844,11.1883,2.5453,2.3564,2.35,13.8573,2.025,4.565,1.222,15.745,5.6019,7.8975,4.2785,10.6103,7.4227,8.5821,8.3609,3.6723,1.6393,4.778,,,,,,,,,,,,,,,64,,,,321
+3552,1.8219,2.2223,,60-69y,Other,,,21.2522,5.5552,2.8469,2.5022,1.5773,ppmi,,,M,,0.44283,4.2934,4.2976,0.8256,10.1778,1.5644,0.3892,3.2736,3.1253,51.9033,18.9668,246.503,3.9012,3.9231,1.7188,1.9967,3.8528,6.8466,2.2212,3.1969,0.47882,6.4465,10.6638,20.39,7.73,2.3284,4.4777,1.8071,16.9874,6.1248,4.1696,1.2275,2.8181,7.669,14.0026,3.4502,4.244,3.1084,1.5104,1.5934,4.9199,11.3046,3.3841,2.4221,11.7401,2.0618,2.369,2.1818,12.3145,1.5128,4.5596,1.3848,15.3579,5.869,8.7362,3.1428,11.7288,6.717,8.9191,7.76,3.8864,1.296,5.4913,,,PD,0.089035,PD,,PD,0.37914,3.3929,4.1123,0.87042,9.4772,1.7378,0.40806,3.537,3.3108,53.4419,18.8218,251.7199,3.5122,4.722,1.8961,1.9218,4.0493,7.5739,2.1555,3.379,0.58081,6.9428,11.216,17.7287,8.8873,2.1586,4.4005,1.8042,18.1118,5.3663,4.0281,1.1383,2.6543,8.5197,13.5317,3.43,4.9183,3.3599,1.4193,1.5962,4.4593,11.4378,3.1675,2.3208,10.4641,1.8012,2.0889,2.0104,11.8178,1.5779,4.399,1.2878,14.4491,5.8367,7.4361,4.1366,11.3262,6.4799,8.6275,8.389,3.6783,1.2614,5.2737,,,,,,,,,,,,,,,61,,,,322
+3554,1.4645,2.3307,,70-79y,Other,,,18.1974,4.5811,2.6941,2.1373,1.3908,ppmi,,,M,,0.50178,4.6577,4.5014,0.94066,10.3508,1.5251,0.42134,2.4619,3.5142,47.3319,16.1438,224.9976,3.8067,3.8304,1.8014,1.9471,3.6131,7.7174,2.0038,3.1924,0.63261,6.3809,10.6581,16.2368,7.1295,2.3127,4.6997,1.7914,18.3948,6.1805,4.0769,1.0279,2.5559,7.1189,12.6064,3.031,4.1542,3.4581,1.3976,1.6046,4.3571,10.7274,3.4274,2.4454,12.2939,2.0849,2.5036,2.3237,12.7851,1.9243,4.7545,1.2736,15.1636,5.4111,9.0532,3.0603,11.1051,7.5718,8.2987,7.473,3.6862,1.612,4.8378,,,,0.075861,CN,,HC,0.4484,4.437,4.3275,0.93703,10.7456,1.7014,0.42041,2.7066,3.3685,48.4278,15.5829,229.4329,3.8383,4.5582,1.9049,1.8059,3.4856,7.7966,2.0175,3.5701,0.5599,7.0231,11.6157,13.1581,8.0191,2.2875,4.5743,1.6975,18.0452,6.2438,3.8476,1.3292,2.7103,7.6043,14.4773,3.0735,4.4661,3.1035,1.5876,1.5327,3.9021,11.0711,3.2915,2.4322,11.2582,2.1498,2.4866,2.0762,13.0261,1.7699,4.5149,1.1472,14.4252,5.3989,7.6261,4.1373,10.5329,7.0813,8.3292,8.0392,3.2485,1.3457,4.6216,,,,,,,,,,,,,,,75,,,,323
+3555,1.0032,2.6091,,-50y,Other,,,22.8601,5.597,3.0191,2.6147,1.1148,ppmi,,,M,,0.53285,5.1895,5.3758,1.052,10.7706,1.7898,0.45238,3.7856,3.2757,53.3483,19.5429,297.9824,4.5717,5.5824,2.0223,2.651,4.1634,8.3341,2.5634,3.6454,0.70886,8.083,13.599,12.374,8.7618,2.7223,5.3424,2.1538,23.4988,7.992,4.538,1.4303,2.9282,8.1043,16.567,4.6809,5.1823,3.8468,1.872,1.9387,4.8706,11.7491,3.6979,2.5723,13.7249,2.7398,2.717,2.5126,15.5459,2.4916,5.5703,1.4304,16.8962,6.1185,10.0054,4.375,11.6869,7.7537,9.7483,9.2009,4.4208,1.9363,5.9943,,,,0.061726,CN,,HC,0.4815,4.3759,5.1736,1.0114,11.3682,1.996,0.49302,3.9482,3.4813,53.474,18.8899,300.4381,4.6408,5.5028,2.1178,2.4167,4.4664,8.6306,2.6348,3.7992,0.75794,9.1625,14.2239,10.5729,9.3042,2.5429,5.0951,2.2452,21.2607,7.3045,4.4737,1.348,3.0018,9.5391,16.2276,3.8447,4.9659,3.8116,1.7672,1.8596,4.5095,11.8352,3.4743,2.7018,12.3081,2.4412,2.6824,2.4161,15.9888,2.2314,5.5729,1.3391,17.513,6.2049,8.8425,5.2054,11.81,8.4217,9.4387,9.5684,3.9184,1.8815,5.7718,,,,,,,,,,,,,,,40,,,,324
+3556,1.1789,1.9845,,60-69y,Other,,,19.3121,5.8292,2.6056,2.4488,1.1668,ppmi,,,M,,0.45482,4.4978,4.339,0.96831,9.955,1.4918,0.40339,3.8181,3.1663,47.7546,16.2902,220.5529,3.5707,4.5748,1.7814,2.0153,3.6342,7.1028,2.0834,3.3801,0.46076,6.7049,10.9179,11.6308,8.4577,2.4245,5.0587,1.7648,19.7777,7.115,3.887,1.2872,2.8133,6.9903,13.7936,3.8357,4.5228,3.252,1.4553,1.3694,4.8394,10.546,3.3541,2.2398,11.8435,2.2782,2.3947,2.1399,12.5509,1.8362,4.2901,1.2566,15.4684,5.4248,8.4045,3.9817,12.678,7.3656,8.2592,7.8582,3.9963,1.4741,4.7702,,,PD,0.070379,PD,,PD,0.43301,3.8343,4.3118,0.94369,10.0297,1.7118,0.42201,3.6662,3.2848,48.5992,15.6777,224.3173,3.5184,4.8925,1.7067,2.0992,3.6894,7.4901,2.0075,3.5062,0.50729,7.2332,12.1011,11.0245,8.776,2.1113,4.9453,1.7415,19.032,5.5749,3.8799,1.2877,2.7659,7.995,14.0306,3.3625,4.7577,3.2207,1.5884,1.3402,4.4166,10.9307,2.9831,2.1064,10.414,1.9581,2.3769,1.9345,12.0032,1.6746,4.212,1.1722,15.8228,5.8652,7.3861,5.3137,11.5786,7.5105,7.8955,7.8324,3.504,1.3226,4.5093,,,,,,,,,,,,,,,66,,,,325
+3557,1.3271,2.1396,,50-59y,Other,,,20.8932,5.0553,2.8661,2.391,1.6219,ppmi,,,M,,0.51426,5.1296,4.8895,0.85171,9.1817,1.6861,0.39942,3.8928,3.7091,49.2933,18.2459,252.1538,3.9644,5.3881,1.6221,2.2538,4.0461,7.6,2.2696,3.1473,0.50575,6.9096,10.8473,24.7859,8.4854,2.6547,5.007,2.0672,20.4859,6.8005,4.2725,1.2262,2.7863,7.9609,12.5706,4.2002,4.6458,3.7225,1.804,1.7901,4.4577,10.5102,3.3826,2.6042,11.43,2.4265,2.4981,2.4705,13.1385,2.0319,4.5576,1.384,14.5772,5.5231,8.4997,4.1598,10.3461,7.3033,9.493,7.625,4.9396,1.7808,5.3432,,,PD,0.07743,PD,,PD,0.49664,4.7604,4.6186,0.87128,10.9182,1.7276,0.42455,3.8602,3.8356,50.0954,18.043,257.4019,3.5573,5.581,1.6802,2.1559,4.4501,7.1932,2.2278,3.3449,0.48477,7.0872,11.2066,19.827,8.6847,2.473,5.0066,2.0214,20.1943,5.6697,3.8444,1.1292,2.9175,8.6554,13.4721,3.3055,4.5483,3.8772,1.7685,1.6942,4.0011,10.0952,2.9327,2.5449,10.6415,1.814,2.5948,2.0841,13.3144,1.9132,4.6866,1.3257,15.4765,5.572,7.5885,4.7989,9.8785,7.1491,8.9738,7.6769,3.6317,1.4213,4.987,,,,,,,,,,,,,,,59,,,,326
+3558,2.2084,2.0953,,60-69y,Other,,,19.5484,5.1957,2.8214,2.254,1.7119,ppmi,,,M,,0.47208,4.687,4.08,0.91977,9.5394,1.6394,0.42236,3.0441,3.3241,48.2514,16.555,243.4134,3.8492,4.4042,1.8186,1.7503,3.5649,7.3907,2.1227,3.3096,0.47238,6.7515,11.754,17.8429,8.1328,2.405,5.3264,1.8726,18.5004,6.8718,4.1206,1.1027,2.7119,7.4986,15.8244,3.8041,4.4043,2.8721,1.3418,1.6631,5.1837,11.746,3.5412,2.2512,12.4413,2.3826,2.4914,2.1021,12.6924,1.9242,4.6558,1.3007,15.6145,5.8673,9.596,3.492,11.5452,7.6821,8.6898,8.0662,3.824,1.4306,5.1384,,,PD,0.093999,PD,,PD,0.43164,4.111,3.9684,0.9415,11.1391,1.7773,0.43396,3.4082,3.3287,49.4765,16.1845,245.5952,4.0086,4.6249,1.8352,1.9337,3.9238,7.767,2.0855,3.6253,0.64264,6.9413,11.844,16.5057,8.7482,2.3067,4.9728,1.7954,18.6848,4.8456,3.8396,1.043,2.9714,8.195,15.3554,2.8443,4.591,3.4512,1.5148,1.6423,4.6658,11.9442,3.3765,2.2577,10.6771,2.1396,2.339,2.0269,12.9181,2,4.6877,1.2735,14.5847,5.7986,8.4776,4.187,11.8564,8.1575,8.5244,7.7984,3.5143,1.5516,4.8782,,,,,,,,,,,,,,,63,,,,327
+3559,1.3358,1.8989,,-50y,Other,,,20.9616,5.6922,3.1112,2.661,1.4891,ppmi,,,M,,0.41592,5.1244,5.0049,1.0091,9.6774,1.6022,0.41831,3.6019,2.4551,56.9408,18.1045,215.9299,4.4444,5.4946,1.9715,2.5978,3.9067,7.9162,2.2992,3.4607,0.50957,7.3022,12.9103,16.9679,8.2773,2.5785,5.4993,2.1235,21.9943,6.9934,4.2004,1.4633,3.0893,7.6196,16.4783,4.0458,4.8951,4.0518,1.8773,1.3443,5.7506,13.4269,3.5254,2.5466,12.1571,2.8707,2.592,2.6096,13.5381,2.2263,3.2661,1.3861,15.6304,5.8298,9.6146,4.1452,11.926,8.3185,8.4091,8.9384,4.9818,1.8406,5.1206,,,PD,0.08728,PD,,PD,0.46962,4.7912,4.6235,1.0128,11.9743,1.8988,0.4487,3.6681,3.9041,57.7783,18.1046,224.6397,4.474,5.2242,2.0324,2.3252,4.0913,8.3313,2.4366,3.5464,0.60047,7.239,13.1959,15.2813,8.6057,2.4298,5.4531,2.1154,21.9667,5.3421,4.1707,1.0771,2.6694,8.2796,16.3208,3.3892,4.753,3.628,1.8005,1.6305,4.9084,13.0923,3.1366,2.5445,11.2655,2.3681,2.444,2.2547,14.3807,1.9768,4.9356,1.3379,15.8701,5.9106,9.6819,4.6545,12.3069,8.1376,8.8363,8.8115,4.0107,1.6841,5.0657,,,,,,,,,,,,,,,38,,,,328
+3563,1.9383,1.7888,,60-69y,Other,,,17.1692,4.469,2.6963,2.3126,1.3372,ppmi,,,M,,0.47258,5.412,4.4508,0.91243,10.5331,1.7627,0.42454,3.376,3.6528,47.0894,14.8108,239.2055,4.3803,4.645,1.7471,2.0349,3.9847,8.2241,2.318,3.3418,0.52501,6.9593,12.0785,26.5474,7.6303,2.5288,5.2783,2.2511,22.3793,6.3263,4.3233,1.2207,2.7494,8.2499,14.9119,3.5691,4.7031,3.1846,1.5465,1.5105,4.3622,10.633,3.2193,2.271,12.1738,2.1601,2.6227,2.3841,14.8675,1.8421,4.3894,1.3571,18.0261,6.44,9.0467,3.5797,11.5779,7.9996,8.7962,8.3687,3.7692,1.4775,4.7923,,,,0.075456,CN,,HC,0.44431,5.378,4.4732,0.91015,11.1058,2.0306,0.42151,3.2732,3.6213,47.1373,14.3425,240.9659,4.0802,4.818,1.8242,2.1178,4.2544,8.737,2.2662,3.6158,0.65103,6.513,11.8025,20.6053,8.6884,2.5554,5.2447,2.1291,22.7969,5.2413,4.1672,1.077,2.7276,8.9388,14.0473,2.8028,4.2114,3.6764,1.8269,1.5279,4.3252,10.9491,3.2278,2.3679,10.7344,2.077,2.6895,2.0958,13.8172,1.8042,4.3026,1.2986,16.9114,6.0117,7.8757,4.1231,11.982,8.0658,8.6292,8.4903,4.2401,1.4458,4.6528,,,,,,,,,,,,,,,60,,,,329
+3564,1.93,2.2173,,60-69y,Other,,,20.4721,5.1448,2.9454,2.2423,1.6818,ppmi,,,M,,0.45877,5.1709,4.6954,0.90334,9.628,1.7867,0.4117,3.0709,3.3829,50.358,17.2106,241.4314,4.1756,4.7447,1.7909,1.8924,3.928,7.2066,2.1606,3.2148,0.56122,6.9887,10.0751,26.4689,7.6451,2.7698,5.0227,2.1276,20.2041,6.6212,4.2656,1.2626,2.9455,7.6579,12.7134,4.0272,4.4714,3.5634,1.6611,1.5872,4.9328,11.9653,3.4597,2.6649,12.2458,2.6601,2.9607,2.6214,14.6115,2.0239,4.4967,1.2819,14.4544,5.8706,8.1006,3.4764,11.6174,6.9606,9.0621,7.0291,4.1366,1.9135,5.0518,,,PD,0.083089,PD,,PD,0.40686,4.7816,4.3517,0.8957,10.0627,1.9725,0.41831,3.4827,3.7064,51.9118,16.8212,246.7655,3.7338,5.3942,1.7923,1.9004,4.1986,7.7363,2.2061,3.4701,0.9941,7.6416,11.2433,25.3762,8.1793,2.5527,5.0237,2.1439,19.6179,5.3223,3.9173,1.2422,2.9236,8.2052,13.1758,3.3996,4.5421,3.5719,1.5774,1.5589,4.4332,11.7763,3.125,2.5386,11.141,2.5047,2.6256,2.1108,13.5055,1.9353,4.5017,1.2589,15.1055,5.6938,7.7664,4.1959,11.9015,7.259,9.0693,7.5275,3.8869,1.5303,4.8521,,,,,,,,,,,,,,,69,,,,330
+3565,1.1896,1.9228,,50-59y,Other,,,19.9779,4.8726,2.8255,2.5185,1.4253,ppmi,,,M,,0.50075,5.3146,5.2477,0.9625,8.996,1.7466,0.43483,4.1448,3.3903,51.7186,18.4109,265.0178,4.9808,5.1984,1.8111,2.2981,4.7086,8.1593,2.3961,3.382,0.48608,7.6576,13.0454,15.5123,8.6504,2.738,5.2159,2.1577,21.4747,6.8456,4.5486,1.2732,2.9134,8.3753,16.9346,4.3501,4.8966,3.3654,1.9072,1.6736,4.9898,11.7228,3.5756,2.5972,13.3644,2.7841,2.8042,2.3306,14.3473,2.3327,5.1705,1.3982,16.8858,6.2769,9.658,4.2435,11.3614,8.2633,9.487,8.505,3.8984,1.7227,5.2332,,,,0.07846,CN,,HC,0.43335,4.3585,4.6929,0.94787,11.6857,1.933,0.42928,4.1733,3.6643,51.8517,17.6468,270.9517,4.4392,5.6516,1.8465,2.1447,4.629,8.1297,2.3573,3.6775,0.55314,8.1195,13.2756,14.6036,9.3616,2.5041,5.3325,2.0606,20.5369,6.3583,4.0758,1.295,2.9295,9.1687,17.2685,3.6557,4.7798,3.7358,1.7991,1.6342,4.5259,11.9114,3.37,2.6279,11.4723,2.9239,2.4572,2.1808,14.4195,2.3611,4.9046,1.2294,17.7705,6.2722,9.1818,4.6125,11.0285,8.4551,9.3315,8.8052,3.8583,1.6796,5.0159,,,,,,,,,,,,,,,54,,,,331
+3567,0.65342,1.3755,,60-69y,Other,,,19.2598,4.6953,2.7777,2.1871,0.76095,ppmi,,,F,,0.5252,4.6768,4.5575,0.94298,10.5756,1.7338,0.43436,3.4475,3.0362,47.4897,15.5054,231.7317,4.2885,5.3604,1.7161,2.0986,3.8257,7.5246,2.1905,3.3246,0.38818,7.2581,12.2891,6.5494,7.9622,2.6747,4.8423,1.9942,19.8664,6.7925,4.2495,1.2229,2.7439,7.0259,15.1466,3.7249,4.5738,3.4621,1.7803,1.4431,5.2703,13.2378,3.2545,2.5984,13.9291,2.4566,2.7619,2.3947,13.8792,2.2006,4.6777,1.3621,14.3631,5.9455,9.9653,4.3412,11.2459,7.5782,8.7204,8.2237,4.2043,1.8468,4.6733,,,PD,0.073816,PD,,PD,0.44607,4.0517,4.284,0.94348,12.6243,1.9905,0.44217,3.6402,3.2049,47.9889,15.2785,234.1433,4.0964,5.9973,1.8026,2.0084,3.6055,7.6271,2.2401,3.5818,0.43709,7.4472,12.5627,7.0764,9.1029,2.4844,4.8836,1.7972,19.4375,6.3247,4.1465,0.97753,2.4735,7.3112,16.1151,3.2255,4.7896,3.5573,1.6214,1.4018,4.8754,13.127,3.0303,2.4352,11.4894,2.4688,2.4073,2.224,13.8051,2.1098,4.4815,1.2701,14.9088,5.2295,8.4942,5.2626,10.9746,7.2768,8.7012,8.9967,3.8847,1.6892,4.5036,,,,,,,,,,,,,,,66,,,,332
+3569,0.89931,1.9658,,-50y,Other,,,17.6535,4.7137,2.263,2.2132,0.98679,ppmi,,,F,,0.43804,4.1123,3.7415,0.77414,9.0399,1.3752,0.37793,2.5858,2.866,39.9187,15.3096,218.7631,3.3436,4.2147,1.4366,1.7865,3.1002,6.7145,1.8328,2.7332,0.40775,5.6347,10.1474,8.2337,6.7574,2.1567,4.4246,1.6013,17.0792,5.7381,3.4019,0.95574,2.6998,5.9594,12.6147,2.6422,3.7299,3.0384,1.3492,1.432,4.0454,9.7285,2.6742,2.054,13.1258,1.9358,2.2221,2.0288,11.0168,1.5381,4.2615,1.0928,12.596,4.705,8.7339,3.4637,10.9303,6.4601,8.0047,6.7088,3.4803,1.2481,4.5939,,,,0.06711,CN,,HC,0.40562,3.3529,3.9058,0.771,10.3897,1.4859,0.39916,2.7952,2.9758,40.5856,14.3308,222.0041,3.269,4.1912,1.5362,1.8396,3.1275,6.8327,1.7587,2.9498,0.49108,6.0281,10.0983,7.8324,7.0106,2.0873,3.9284,1.4761,16.1745,5.1663,3.2191,1.0376,2.4339,6.5667,12.6124,2.7591,3.7001,3.1306,1.4505,1.4459,3.7261,9.653,2.5004,1.9664,11.7279,2.1591,2.2646,1.8004,11.8018,1.6666,4.3284,1.0112,12.2568,4.726,9.3024,4.1265,9.671,6.7383,7.6994,6.9612,3.0776,1.2449,4.3108,,,,,,,,,,,,,,,40,,,,333
+3570,1.9554,2.0406,,70-79y,Other,,,23.2875,5.7465,3.0137,2.5365,1.4296,ppmi,,,M,,0.50632,5.2873,4.8421,1.0338,10.8384,1.6934,0.44419,4.4256,3.9543,55.4584,19.7071,265.8252,5.2363,5.1557,1.9831,2.3102,3.9552,8.5177,2.3105,3.756,0.87769,7.5033,12.4747,24.9434,9.8279,2.6196,5.5864,2.1134,22.6021,7.49,4.4787,1.2572,3.2533,8.35,15.2499,4.4815,5.305,3.6173,1.6931,1.779,5.5558,13.073,4.0712,3.0092,13.1389,3.0907,2.7981,2.6692,15.0133,2.2297,4.9149,1.4143,16.3255,6.0593,10.1522,4.428,11.9509,7.7488,9.7018,8.226,4.1192,1.9397,5.7497,,,,0.099469,CN,,HC,0.47203,4.2283,4.6339,1.0375,11.3564,1.9797,0.4641,4.3288,4.1761,53.3894,18.7918,268.5552,4.8907,5.9402,2.0548,2.2204,4.4845,8.4074,2.3317,4.0431,0.91379,8.3253,12.8876,19.6195,9.7555,2.5658,5.298,2.1938,20.2779,6.2212,4.4183,1.3372,3.5955,9.7826,16.3314,4.086,5.0125,4.0918,1.6692,1.6997,4.8576,12.8166,3.7392,2.7181,11.2143,2.9451,2.7586,2.3211,14.5599,2.4157,4.6963,1.3741,16.2228,6.8009,9.2034,5.3196,12.2,8.1472,9.486,8.9974,3.9252,1.8557,5.5535,,,,,,,,,,,,,,,72,,,,334
+3571,1.0862,2.2628,,-50y,Other,,,21.5449,5.1828,2.9326,2.4405,1.4665,ppmi,,,M,,0.53197,5.1713,4.6472,1.047,10.6484,1.7007,0.42386,3.666,3.5741,55.6389,19.2225,253.6116,4.6281,5.1619,1.9546,2.1322,4.0071,8.0211,2.3305,3.6861,0.5267,8.0451,13.1493,12.3005,8.4579,2.5292,5.4544,2.1938,19.4359,7.1038,4.4439,1.2492,3.0703,8.0855,16.559,4.2038,4.991,4.0211,1.6251,1.7498,5.2885,12.2357,3.5568,2.919,12.33,3.1164,2.6373,2.8665,15.6269,2.6834,4.8518,1.3135,15.012,6.1401,10.4727,4.0837,11.7812,8.5931,9.843,8.7841,4.8188,2.1881,5.5457,,,,0.082048,CN,,HC,0.51046,4.4811,4.3134,1.0119,12.5285,1.7913,0.45584,3.7597,3.7377,56.521,18.9368,256.5773,4.6987,5.4735,1.9008,2.0773,4.3924,8.5935,2.3655,3.8951,0.56839,8.0589,12.9351,12.1357,9.3376,2.3414,5.2084,2.0448,20.6259,6.0797,4.0532,1.443,3.2686,9.1585,16.8491,3.7294,5.0622,3.6731,1.6779,1.7248,4.8342,12.2678,3.3767,2.7888,11.0327,2.8386,2.6355,2.4121,14.5334,2.2378,4.7439,1.2438,14.7948,6.4239,9.0858,5.0742,12.0784,8.3504,9.663,8.3919,3.5561,1.6549,5.2538,,,,,,,,,,,,,,,46,,,,335
+3572,0.75171,1.7224,,50-59y,Other,,,16.5764,4.5252,2.5668,2.0359,0.72326,ppmi,,,F,,0.40044,4.5609,4.2179,0.87701,8.1475,1.5147,0.36544,2.8114,2.6878,44.8512,14.8391,199.4962,4.1084,4.2716,1.7081,2.0992,3.2844,6.8221,1.9467,3.1351,0.39452,6.0295,9.5558,7.5044,7.1535,2.3397,4.8547,1.7689,17.3499,6.3242,3.7292,0.93246,2.3483,6.8186,11.6756,3.3014,4.0805,2.8965,1.5441,1.2059,3.9496,9.8844,3.0248,2.2291,10.7833,2.158,2.354,2.3473,12.5553,1.8483,4.2251,1.1173,13.9031,5.4287,8.1987,3.4484,9.273,6.9669,6.8686,7.6715,3.7411,1.6284,4.0902,,,,0.063056,CN,,HC,0.35627,3.8525,4.0004,0.87759,9.5355,1.6169,0.36631,3.0327,2.9851,44.1275,14.1117,206.1076,3.9599,4.5201,1.7836,2.0654,3.4138,7.3075,1.8916,3.3402,0.42479,6.1517,10.62,6.0275,7.6191,2.1296,4.3302,1.68,16.0961,4.6583,3.4264,0.95073,2.3104,7.7572,12.8082,2.8567,3.9995,3.117,1.6703,1.196,3.5955,10.059,2.9866,2.1896,9.6758,1.9816,2.2225,2.0427,12.3271,1.6721,4.1502,1.0414,14.4681,5.4258,7.5289,3.6829,9.4534,7.1262,6.7523,7.6141,3.3959,1.4554,3.9376,,,,,,,,,,,,,,,58,,,,336
+3574,1.4659,2.1454,,60-69y,Other,,,19.9744,4.8098,2.7403,2.2361,1.1638,ppmi,,,F,,0.41787,4.182,4.257,0.8922,9.181,1.3222,0.35938,3.553,3.0318,45.7079,16.0802,202.2714,4.0231,4.6323,1.7184,1.9452,3.3105,6.8614,2.0694,3.2573,0.58869,6.6045,10.4424,14.2178,7.6447,2.0457,4.4897,1.6103,18.837,6.2783,3.738,1.2439,2.7465,6.1694,13.2731,3.4469,4.3314,3.4295,1.3782,1.3923,3.8166,9.7427,3.1372,2.3774,11.9333,2.1513,2.3943,2.1567,13.4398,1.8406,3.7988,1.0756,14.6444,5.0003,9.17,3.6816,10.9704,7.1106,8.3538,7.271,3.2823,1.4017,4.7962,,,PD,0.075604,PD,,PD,0.39797,3.713,4.0242,0.92986,10.3638,1.54,0.38081,3.5148,3.1988,46.1646,15.6393,206.5786,3.7752,4.5808,1.775,2.0405,3.5448,7.1328,1.9949,3.4682,0.69817,6.7857,10.9921,12.188,8.1877,1.9677,4.2598,1.6327,17.1749,5.208,3.5755,0.99979,2.7622,6.5717,13.5869,3.1415,4.0832,3.8524,1.3344,1.3405,3.6909,10.0854,2.8756,2.2859,10.7738,1.9486,2.2679,1.9588,13.2659,1.5525,3.8783,1.0179,14.9619,5.1826,8.3158,4.4348,10.4828,6.9794,8.023,7.8011,3.2918,1.3163,4.5164,,,,,,,,,,,,,,,65,,,,337
+3575,1.5973,2.1674,,60-69y,Other,,,20.3173,5.5779,3.1536,2.5783,1.4178,ppmi,,,M,,0.51576,5.176,4.7176,0.90698,10.5721,1.7823,0.43396,3.3301,3.2403,54.8871,19.0966,248.9536,4.3765,4.5422,1.7313,2.3293,4.5204,7.8194,2.3654,3.4025,0.46192,7.1147,11.9059,12.1101,8.2531,2.7632,5.86,2.0346,19.8941,7.1936,4.4057,1.3635,3.3194,7.9569,15.1309,3.979,4.9013,4.1508,1.7899,1.6017,4.867,11.7648,3.5471,2.6441,13.396,2.7959,2.7326,2.5808,14.409,1.9906,4.7491,1.3593,15.9632,5.9386,10.2992,3.3869,11.4601,8.0002,8.8434,8.4407,4.1069,1.7082,4.9784,,,PD,0.072686,PD,,PD,0.4695,4.761,4.5174,0.88294,11.5222,1.9678,0.43845,3.413,3.2765,55.0204,19.0436,253.3648,4.3103,4.9397,1.8287,2.3016,4.754,7.8278,2.4842,3.5726,0.51126,7.6798,12.5761,8.1744,9.0262,2.4684,5.6965,2.0184,18.7228,6.3334,4.1121,1.1578,2.755,9.2764,15.9217,3.5076,4.9024,3.6722,1.6945,1.5485,4.5377,11.7154,3.197,2.6146,12.5635,2.4893,2.3998,2.3426,14.259,2.141,4.6472,1.2523,16.9654,6.2225,9.7742,4.3774,11.8575,8.3491,8.6776,8.1612,3.9854,1.6836,4.7738,,,,,,,,,,,,,,,61,,,,338
+3577,1.583,2.398,,60-69y,Other,,,22.8376,5.6803,2.9821,2.4778,1.7554,ppmi,,,M,,0.5524,5.1573,4.933,0.97117,9.7576,1.6266,0.46024,3.7785,3.6921,53.4181,18.8009,261.4251,4.4209,4.8419,1.7919,2.0828,4.5593,7.8994,2.3651,3.7088,0.47285,7.7132,11.9753,15.0974,8.7854,2.5582,5.3818,2.0804,21.3273,6.2471,4.8014,1.253,3.0005,7.9298,15.6913,4.3487,4.9824,3.4776,1.7327,1.7227,4.9551,10.8302,3.6046,2.6967,13.584,2.6335,2.9439,2.4085,14.7616,2.0794,5.0477,1.4662,17.7618,6.4449,9.5957,4.3252,10.8615,7.9503,9.4831,8.3102,3.9022,1.7752,5.7157,,,PD,0.094872,PD,,PD,0.46393,4.7868,4.9342,0.96124,11.3572,1.7668,0.48145,3.6436,3.6987,53.9873,18.702,266.0333,4.3724,5.25,1.9111,2.3247,4.2642,8.5129,2.3253,3.8767,0.61656,7.9658,12.9836,13.4563,9.2331,2.395,5.2162,1.9076,20.5383,6.0789,4.1744,1.2371,2.8597,8.4976,14.8737,3.7059,4.9016,3.8742,1.726,1.6843,4.5084,11.4475,3.3372,2.6792,10.7467,2.2317,2.6646,2.3495,15.2323,1.9513,4.9222,1.4026,15.7266,5.9992,7.9698,4.9937,12.5266,7.3678,9.1904,8.1541,4.0383,1.6996,5.4619,,,,,,,,,,,,,,,68,,,,339
+3584,0.87307,2.4595,,-50y,Other,,,21.3928,5.3608,3.0372,2.7648,0.98474,ppmi,,,M,,0.57052,6.2284,4.8996,1.0173,10.9196,1.9426,0.45716,4.1242,3.52,55.5116,18.7151,298.1655,4.7151,6.2085,2.0646,2.2349,4.6364,8.9966,2.5767,3.6024,0.33647,8.2942,13.8478,8.4832,9.8701,2.8461,5.4948,2.5888,25.2692,7.489,4.7911,1.7623,3.0846,9.4491,17.9073,4.4364,5.8895,3.8814,1.7079,1.7565,5.9069,13.8093,3.9388,2.5572,15.6123,2.6823,2.9721,2.3077,17.86,2.0154,5.2526,1.4466,19.7998,6.931,11.3945,4.888,13.2146,9.2452,9.8546,9.4555,4.363,1.6001,5.535,,,PD,0.081325,PD,,PD,0.52064,5.6436,4.6147,1.06,12.6794,2.2223,0.45487,4.2608,3.6656,56.8155,18.1689,302.1276,4.7291,5.9869,2.1457,2.1244,5.1014,8.9788,2.658,3.9355,0.45805,8.5357,13.0006,6.9981,10.7186,2.704,5.8855,2.5282,24.9668,6.9425,4.5055,1.2527,2.8016,10.2307,17.3496,4.3057,5.7771,3.7622,1.8385,1.6895,5.5567,13.1743,3.8095,2.4042,13.4046,2.396,2.7455,2.0838,15.263,2.1606,5.08,1.3454,19.7277,6.934,10.0917,6.2675,14.7662,9.2684,9.5935,9.3925,4.3138,1.5355,5.3396,,,,,,,,,,,,,,,43,,,,340
+3585,0.79824,1.7472,,-50y,Other,,,20.2298,4.8831,2.5812,2.192,0.93461,ppmi,,,M,,0.45128,4.9669,4.1893,0.89017,10.2191,1.7297,0.41387,3.3459,2.9002,49.7891,17.9786,236.9141,4.2397,5.5684,1.8159,2.0414,3.6843,7.6622,2.2028,3.2113,0.43067,6.3996,11.2572,10.8568,8.0653,2.4243,5.0107,1.8167,20.559,6.3095,4.3808,1.1762,3.0881,7.6676,13.8424,3.9236,4.5168,3.303,1.5175,1.5132,4.1148,11.8507,3.2684,2.3242,12.8509,2.8837,2.6812,2.4628,14.9105,2.5253,4.2471,1.2539,16.3832,5.9225,11.1854,4.1123,12.189,7.6819,8.6664,7.8885,3.7811,1.9606,5.0459,,,PD,0.07804,PD,,PD,0.41534,4.2236,3.9555,0.87965,10.9592,1.8317,0.40984,3.6475,2.8788,49.3873,17.4764,240.9522,4.703,5.5845,1.7122,2.3322,4.0887,7.8701,2.1978,3.5483,0.69638,6.857,11.7133,6.726,8.5713,2.3634,5.2819,1.8756,21.0619,4.9522,4.0235,0.99133,2.845,8.5533,14.4027,2.8934,4.46,3.9158,1.8263,1.4932,4.1517,11.7259,3.018,2.3598,11.3162,2.4097,2.2982,2.2303,14.0534,2.1172,4.1375,1.2087,14.8762,5.7397,9.2382,4.4725,11.1111,8.004,8.4451,8.2638,4.1229,1.8152,4.839,,,,,,,,,,,,,,,49,,,,341
+3586,1.3551,1.5215,,60-69y,Other,,,19.7833,5.3191,2.8242,2.4385,1.5233,ppmi,,,M,,0.44716,4.9183,4.1322,0.95321,8.0968,1.6408,0.41323,2.8429,2.8979,48.0434,17.0806,223.2009,3.9331,4.6022,1.8294,1.9361,3.6256,7.4304,1.9931,3.3824,0.54789,6.1693,12.2537,16.1031,7.6794,2.4976,5.1568,1.6796,20.4804,5.7018,4.0426,1.2305,2.769,7.2602,14.9639,3.3761,4.239,3.3464,1.5017,1.3748,4.4584,10.3809,3.4986,2.042,12.3059,2.2636,2.5471,2.1084,14.8507,1.8885,3.8433,1.3945,16.0011,5.6185,8.4796,3.5354,10.8354,7.3162,8.4983,8.1803,3.9112,1.4603,4.8205,,,PD,0.072211,PD,,PD,0.41476,4.9247,4.0036,0.94902,8.9955,1.7451,0.41398,3.2619,3.1667,48.8958,17.1712,229.5032,4.1375,4.9616,1.8249,1.9985,3.7372,7.8799,1.9456,3.4948,0.72261,6.8321,12.319,19.711,8.6324,2.2989,4.9847,1.7138,19.6977,4.9003,3.7417,1.2632,2.7983,7.9955,15.2418,3.2603,4.5882,3.4418,1.6996,1.3971,3.857,10.1832,3.0608,2.1702,10.9939,2.1968,2.422,2.022,12.9099,1.9846,3.8161,1.2495,16.1674,5.9248,7.8792,4.4852,9.2265,7.6717,8.185,8.101,3.8454,1.4734,4.6161,,,,,,,,,,,,,,,63,,,,342
+3587,1.2567,2.2051,,50-59y,Other,,,18.955,5.3507,2.6812,2.3499,1.5031,ppmi,,,M,,0.5469,5.1524,5.0519,0.93027,10.678,1.8989,0.44166,4.3623,3.8702,52.2302,16.7932,252.1121,4.6881,5.9674,1.8309,2.4282,4.2337,7.871,2.3767,3.4826,0.44725,7.9335,13.19,17.307,8.7612,2.8854,5.0876,2.189,23.3749,7.2167,4.5046,1.112,2.7557,8.2219,15.8988,4.9341,5.038,3.7427,1.719,1.5701,5.2285,12.6001,3.3333,2.5798,13.3029,2.9938,2.8458,2.4834,16.2281,2.4062,4.6647,1.4209,15.8328,5.8856,10.1177,4.548,12.0034,7.6809,8.9576,8.3505,4.2371,1.9848,4.9498,,,PD,0.089849,PD,,PD,0.51239,4.2218,5.0142,0.95077,12.1406,2.1483,0.4533,4.2306,4.143,53.3174,15.8426,256.3692,4.7249,6.4183,1.8845,2.329,4.6505,8.4206,2.4496,3.6066,0.46067,9.0255,13.398,21.2533,9.905,2.7413,4.8288,2.1093,21.5524,6.2969,4.6012,1.1533,2.9016,8.8051,16.3263,4.2029,5.4208,4.0648,1.9241,1.5536,4.5737,12.4398,3.1353,2.5252,12.2251,2.3482,2.7875,2.34,14.7779,2.1397,4.5356,1.3592,17.7594,6.2871,9.1036,5.4471,11.4167,8.2472,8.487,8.7128,4.169,1.6734,4.6768,,,,,,,,,,,,,,,53,,,,343
+3588,0.64174,1.5871,,-50y,Other,,,20.2359,4.7335,2.707,2.2691,0.80281,ppmi,,,F,,0.46439,4.5985,4.2697,0.85926,9.2874,1.5913,0.3889,3.591,2.8754,48.8264,17.2384,243.1283,4.0942,5.1237,1.6721,2.2869,3.4043,7.5209,2.1501,3.2321,0.31948,7.2397,11.0945,6.6914,7.8713,2.5937,4.8111,1.807,19.9984,6.7892,4.0103,1.0957,2.7411,6.988,12.7692,4.1982,4.5908,3.8974,1.7911,1.5188,4.7295,11.202,3.197,2.2529,13.1845,2.6344,2.5213,2.2475,13.2049,2.1439,4.3938,1.1368,14.79,5.4559,9.3452,3.952,11.1071,6.3884,9.056,7.2517,4.6731,1.7977,4.9927,,,PD,0.079924,PD,,PD,0.42202,4.2762,4.0004,0.84281,10.8497,1.8495,0.39043,3.6018,3.0851,49.4723,17.0519,246.7127,3.9356,4.7241,1.6725,2.1511,3.8974,7.8461,2.1625,3.4042,0.33134,7.5235,11.6596,7.1005,8.4347,2.4799,4.7479,1.8494,18.6225,5.6508,3.9208,1.1958,2.5996,7.5635,13.6512,3.496,4.7094,4.0007,1.8134,1.5258,4.4293,10.8251,2.9524,2.192,10.9448,2.2069,2.4256,2.0334,14.0022,1.8716,4.1299,1.1848,14.401,5.3393,8.1406,4.8152,11.4374,6.6969,8.849,7.6903,4.2391,1.5746,4.7667,,,,,,,,,,,,,,,49,,,,344
+3589,1.1785,1.3736,,70-79y,Other,,,17.3182,4.4382,2.2872,1.9814,1.4693,ppmi,,,F,,0.40981,3.9117,3.9101,0.60755,7.9922,1.378,0.34445,2.698,2.9348,42.0341,15.0454,219.1113,3.6827,4.4367,1.2759,1.9581,3.26,6.3105,1.951,2.5047,0.50146,5.5197,9.0781,20.4026,6.6709,2.0678,3.8816,1.6583,17.498,6.1567,3.6349,1.1798,2.34,6.4097,10.9278,3.2183,3.6783,3.0874,1.3317,1.2726,3.9948,9.4945,2.6215,2.1652,11.2089,2.5006,2.0582,2.0391,13.0434,2.0286,3.7265,1.1504,14.5351,4.9181,8.9418,3.688,10.0038,6.039,7.6278,6.3922,3.3299,1.5309,4.1907,,,PD,0.074349,PD,,PD,0.35377,3.4368,3.6952,0.59627,9.113,1.552,0.33056,2.9301,2.9928,41.8825,14.69,218.4423,3.9028,4.4093,1.2351,1.9403,3.6819,6.2381,2.0043,2.5877,0.58074,6.6275,9.9637,15.4822,6.9615,1.918,3.9973,1.7228,17.6918,4.8006,3.46,0.77639,2.1905,7.1874,12.4391,2.9219,3.9427,3.4331,1.447,1.3042,3.4898,9.3078,2.4627,2.0043,9.2089,1.7162,1.9764,1.7287,10.7467,1.5152,3.507,1.0712,13.7426,4.4697,7.1175,4.0547,9.4795,6.4509,7.3417,6.3525,3.6263,1.2562,4.0277,,,,,,,,,,,,,,,75,,,,345
+3591,1.7219,2.1342,,60-69y,Other,,,20.8589,5.6718,3.0767,2.5914,1.3944,ppmi,,,M,,0.46484,4.8944,4.8602,0.88763,10.2752,1.7657,0.40815,3.515,2.9542,51.6378,18.0192,230.9807,4.117,4.9795,1.7403,2.2682,3.6211,7.8298,2.4026,3.44,0.53577,7.6572,12.1245,9.8884,8.5413,2.5932,5.3091,1.9348,20.3115,7.0758,4.6186,1.2135,2.9286,7.5499,15.3739,4.1384,4.8021,3.6453,1.6812,1.4788,5.6119,13.4436,3.6615,2.3161,13.5476,2.4561,2.7122,2.2113,14.3736,2.2232,4.6246,1.3496,15.2964,5.6834,9.8397,4.0229,12.7652,8.0534,8.6187,7.4435,4.4472,1.6087,4.8645,,,PD,0.074848,PD,,PD,0.42766,4.4556,4.6172,0.92711,11.2836,1.8383,0.41849,3.5297,3.1647,51.9461,16.8885,234.9799,4.0807,5.4275,1.9015,2.3554,3.7373,8.3788,2.3147,3.7509,0.60121,6.6497,13.1474,10.153,9.2486,2.4207,5.325,1.8749,20.0219,5.2733,4.26,1.3224,2.9128,8.1748,15.8674,2.7972,4.5223,4.0209,1.876,1.4696,5.096,13.1311,3.5494,2.3685,11.7151,2.2328,2.6006,2.0959,12.8189,2.0467,4.4714,1.2829,15.1745,6.0636,9.6736,4.4435,13.6567,8.1312,8.2903,8.4526,4.4067,1.4694,4.807,,,,,,,,,,,,,,,63,,,,346
+3592,1.6161,2.1297,,60-69y,Other,,,21.4679,5.6692,2.6461,2.2601,2.1283,ppmi,,,M,,0.47318,4.4991,4.2331,0.89821,9.9782,1.5964,0.42821,3.0525,3.2017,51.1189,18.034,245.1422,4.3903,4.6635,1.7679,2.0636,3.4966,7.7905,2.0634,3.5815,0.62883,6.9001,11.8864,17.9203,8.0223,2.539,4.941,1.662,20.0821,6.9731,4.2674,1.4457,2.7223,6.7202,14.8803,3.8637,4.5441,3.8309,1.5532,1.7939,4.9278,10.1332,3.5305,2.5521,12.0537,2.77,2.7711,2.6495,12.8949,2.3546,4.6868,1.3087,15.3291,5.2668,9.9301,3.9023,10.7213,8.3772,9.1998,8.2661,4.0532,1.8642,5.3688,,,PD,0.0869,PD,,PD,0.42738,3.6993,4.2658,0.89702,11.3493,1.7553,0.42889,2.9401,3.4163,50.8439,17.5767,250.5021,4.6193,4.9636,1.8362,1.9145,3.6265,8.3854,2.1739,3.6702,0.87319,7.165,13.834,18.0066,8.3107,2.4792,4.6036,1.6684,20.1299,5.5939,4.1439,0.97005,2.3997,7.1145,16.4174,2.877,4.2473,3.3729,1.7284,1.7724,4.4511,10.8542,3.3518,2.6101,10.2057,2.3965,2.5777,2.6152,12.9286,2.612,4.6548,1.2603,14.8743,5.0312,9.1693,4.1898,11.6556,8.8844,8.9049,8.7264,3.8362,1.9446,5.0704,,,,,,,,,,,,,,,62,,,,347
+3593,0.79049,1.7399,,50-59y,Other,,,18.6023,5.0804,2.6757,2.1333,0.91844,ppmi,,,F,,0.46652,4.2884,4.2865,0.80998,9.7644,1.4672,0.39096,3.3959,3.068,45.3642,15.5013,219.9392,4.2467,4.7373,1.5412,1.97,3.4948,6.998,1.9795,2.9174,0.45622,6.5149,10.2195,11.4683,7.8677,2.3143,4.6394,1.7101,19.5664,6.1654,3.7362,1.3778,2.8255,6.353,12.9647,3.4159,4.4906,3.2495,1.5283,1.3981,4.1457,10.2468,3.0473,2.3812,13.5135,2.4743,2.3189,1.9752,14.0782,2.1439,4.4145,1.1968,15.0154,5.7593,10.1138,3.7645,10.718,7.0914,7.9599,7.0091,3.7293,1.6418,4.6307,,,PD,0.068079,PD,,PD,0.43001,3.8733,4.192,0.89029,10.9793,1.6763,0.41903,3.5977,3.0518,45.4614,15.1462,225.8391,3.7892,5.0982,1.6305,2.0332,3.5956,7.3224,2.0133,3.267,0.52298,6.6816,11.3644,8.361,8.2735,2.092,4.6794,1.7133,17.4058,5.3986,3.7051,1.1642,2.7494,7.5768,13.9171,2.8116,4.1521,3.2305,1.5635,1.3373,3.752,10.6307,2.85,2.1038,11.9118,2.0997,2.2914,1.6985,12.8744,1.6266,4.3832,1.1631,15.4509,5.5998,8.741,4.3724,12.3834,6.6187,7.7587,7.0329,3.5402,1.2524,4.3564,,,,,,,,,,,,,,,55,,,,348
+3600,1.3264,2.5892,,50-59y,Other,,,17.9104,5.2396,2.8243,2.3506,1.3062,ppmi,,,M,,0.42449,4.3228,4.3171,0.88362,9.148,1.3948,0.3654,3.2975,2.7135,52.0951,16.6372,212.2411,3.9518,4.7567,1.7219,1.9908,3.5146,7.9713,1.8711,3.1218,0.50459,6.4249,11.9058,11.5146,7.5828,2.3237,4.7945,1.7225,19.1978,6.0329,3.4957,1.1515,2.8003,7.0584,13.923,3.3111,4.0829,3.1468,1.4857,1.4293,4.2591,10.3285,3.3271,2.2854,11.057,2.2236,2.2128,2.3037,12.9019,1.9081,4.303,1.0747,15.9856,5.1603,8.8605,3.4315,9.5616,7.2278,8.1169,7.9955,3.785,1.5646,4.4575,,,,0.063917,CN,,HC,0.39228,3.8048,4.2603,0.84838,10.4951,1.6134,0.39283,3.6492,2.8034,52.1489,15.9468,216.5835,3.9374,4.8731,1.718,1.9197,3.5742,8.3136,1.8701,3.2754,0.55495,6.8972,12.3808,12.5583,8.1713,2.201,4.4251,1.6931,19.0977,5.8051,3.4974,1.255,3.291,8.0514,14.0026,3.3799,4.3849,2.9594,1.4763,1.358,3.7338,9.8548,2.9369,2.3133,10.1777,2.0807,2.1777,2.0803,13.3289,1.8924,4.1547,1.0809,15.634,5.485,8.1026,4.3965,9.568,7.8371,7.9934,7.6625,3.3303,1.5575,4.2086,,,,,,,,,,,,,,,55,,,,349
+3601,0.81451,1.5218,,60-69y,Other,,,17.948,4.5549,2.4589,2.0034,0.83956,ppmi,,,F,,0.39884,3.782,3.5782,0.80458,7.969,1.4668,0.35486,2.8761,2.7436,43.6276,13.7451,196.0118,3.6811,3.6145,1.6558,1.7178,3.0922,6.7121,1.7159,3.1054,0.43286,5.8637,9.9711,6.6989,6.7133,2.0812,4.0988,1.5217,15.2976,5.3924,3.5477,0.9699,2.2398,5.7628,12.5213,2.7288,3.7814,2.7851,1.2367,1.2491,4.083,8.8033,3.1094,2.0705,10.9957,1.8687,2.1622,2.0301,12.0139,1.5552,3.8288,0.95537,12.6751,4.1862,8.0812,2.984,9.3931,6.4185,7.5528,6.373,3.2481,1.3221,4.3178,,,PD,0.080742,PD,,PD,0.35865,3.4317,3.5487,0.79913,9.3524,1.5923,0.3543,2.6619,2.859,43.0168,13.4881,198.0931,3.5116,3.8996,1.5738,1.6443,3.2704,6.8827,1.8347,3.2747,0.42229,5.7897,10.4268,6.5352,7.1669,1.9777,3.9734,1.5344,15.9563,5.0895,3.3159,1.0647,2.4022,6.5268,12.8643,2.3637,3.6504,3.0049,1.358,1.2329,3.6446,8.8607,2.7975,1.9865,10.0896,1.7332,2.1066,1.7642,11.5802,1.4601,3.7463,0.94217,13.486,4.2028,6.8294,3.6896,9.248,6.3415,7.4788,6.7286,3.1481,1.1672,4.1619,,,,,,,,,,,,,,,63,,,,350
+3603,1.6842,2.5361,,50-59y,Other,,,22.8498,5.6626,3.0647,2.5482,1.4602,ppmi,,,M,,0.49027,5.143,4.5609,0.98799,11.1849,1.7616,0.42019,2.8544,3.9316,55.2978,19.3849,257.1668,4.7612,5.0193,1.8777,2.1377,3.8284,8.6376,2.2731,3.7499,0.52311,7.0722,13.1217,16.8602,7.5655,2.4469,4.8827,2.0817,20.8437,8.0138,4.4432,1.3465,2.9106,8.0233,15.9694,3.8261,4.5564,3.6277,1.4171,1.6199,5.3775,12.7325,3.8386,2.5119,13.8895,2.7272,2.6157,2.3442,14.9973,2.274,4.4032,1.3693,17.0019,6.2516,9.6123,4.922,12.6222,8.4048,9.987,8.5879,4.2085,1.6307,5.5611,,,PD,0.080495,PD,,PD,0.44995,4.8345,4.5074,0.98828,12.6583,2.0041,0.46145,2.7362,4.0542,55.1819,18.8897,259.1454,4.1231,5.3678,1.8769,2.2458,4.4669,8.5583,2.3351,3.9692,0.70153,7.3206,13.7167,10.5456,8.8566,2.4865,4.9548,2.118,19.8341,6.2092,4.2237,1.1508,2.6154,8.6336,16.8201,2.8389,4.425,4.1113,1.7735,1.6222,4.9962,12.6236,3.4238,2.4811,11.8792,2.3907,2.4905,2.1624,13.9022,2.1702,4.3592,1.4223,16.3591,5.529,10.092,4.6774,12.7989,9.1945,9.5307,9.0403,3.9562,1.4862,5.2849,,,,,,,,,,,,,,,58,,,,351
+3604,2.0412,2.2229,,60-69y,Other,,,18.6679,5.0481,2.4789,2.0902,1.9753,ppmi,,,F,,0.4084,4.9398,4.578,0.84503,8.3419,1.4471,0.37061,3.2818,3.1338,45.9483,15.346,213.4669,4.0043,4.8734,1.6033,2.0731,3.7356,6.7814,1.876,3.0826,0.63277,6.7023,10.4891,19.0273,7.5001,2.2816,4.7824,1.8307,18.484,6.241,3.7247,1.289,2.71,7.2866,13.1,3.8423,4.1477,3.6496,1.393,1.3726,4.151,10.0875,2.9831,2.4651,11.0658,2.2566,2.3451,2.2616,14.0566,1.9215,4.4977,1.1614,13.5654,5.4558,8.2934,3.7718,9.5213,6.8075,8.1963,7.423,3.7577,1.6162,4.6177,,,PD,0.079286,PD,,PD,0.3529,4.3216,4.3422,0.86457,9.9437,1.7494,0.38378,3.0631,3.1008,46.5614,14.8022,219.0245,3.8137,4.655,1.6494,1.9556,3.8004,7.2598,2.015,3.2834,0.68185,6.7293,11.2047,14.6928,7.4426,2.2222,4.3555,1.7794,18.6905,4.9702,3.8721,0.94864,2.4288,8.4293,12.8463,2.7435,4.0727,3.47,1.5611,1.3943,4.0231,10.2054,2.7572,2.4435,10.1494,1.9434,2.3423,2.147,12.8354,1.7545,4.501,1.2099,14.0419,5.6261,7.9265,3.6821,10.4307,7.1547,8.075,8.4627,3.55,1.5379,4.4013,,,,,,,,,,,,,,,69,,,,352
+3605,2.0061,1.593,,70-79y,Other,,,20.1921,5.1118,2.5668,2.2726,1.5883,ppmi,,,M,,0.46007,5.5916,4.8059,0.93033,9.7744,1.782,0.41446,3.0313,3.2959,48.7908,16.7694,243.3216,5.4694,4.5624,1.8417,2.2811,3.8203,7.9579,2.1638,3.3474,0.53887,6.9436,13.8268,15.5665,8.1121,2.7988,5.3322,1.977,20.882,6.376,4.4413,0.97374,2.8324,7.5829,16.6114,3.8025,4.7978,3.3887,1.8089,1.5631,5.2495,12.584,3.5509,2.9699,13.327,3.2167,2.6266,2.8219,14.7527,2.5763,4.5258,1.4698,16.2422,6.1293,10.3155,3.7711,11.6933,8.5824,8.8944,8.5411,4.4824,2.0454,5.1061,,,PD,0.089241,PD,,PD,0.41658,4.9454,4.6405,0.95318,10.7964,1.9164,0.43335,3.16,3.604,49.2735,15.617,246.3602,4.4172,4.8194,1.9021,2.1213,4.3452,9.1672,2.2125,3.5395,0.6317,6.7673,14.2779,18.1145,9.3753,2.5082,5.2549,1.9802,20.9412,5.2461,4.4332,1.4992,3.3174,9.4639,16.389,3.1417,4.8185,3.7194,1.7638,1.5764,4.6123,12.2,3.3766,2.7145,12.1069,2.4198,2.6939,2.5669,14.7545,2.0945,4.4091,1.4785,17.0719,6.3775,8.3655,4.0783,11.2001,8.3518,8.7126,8.5726,3.8964,1.6478,4.8309,,,,,,,,,,,,,,,75,,,,353
+3606,0.95086,2.3934,,50-59y,Other,,,19.9365,4.8322,2.5252,2.5551,1.266,ppmi,,,F,,0.48253,4.5507,4.1205,0.90627,9.847,1.5739,0.39411,3.2917,3.2557,52.3366,17.5356,243.5098,4.3472,4.3472,1.7604,1.992,3.2859,7.5769,2.0742,3.2905,0.41551,6.4828,10.961,9.719,7.6695,2.3147,4.8769,1.9005,17.3769,6.2926,3.8635,1.2776,2.6327,6.7509,13.0076,3.2773,4.5116,3.4921,1.366,1.6686,4.826,11.3548,3.2169,2.3541,12.4263,2.3597,2.3073,2.2702,13.0696,2.0965,4.5307,1.2068,13.3421,5.0621,9.0915,3.7093,11.7372,7.4671,8.9955,7.5292,3.613,1.7599,5.0551,,,PD,0.082222,PD,,PD,0.45496,3.8176,3.825,0.9273,10.4876,1.6955,0.40704,3.1658,3.3567,52.9404,16.6649,244.4743,3.8864,4.5303,1.8109,1.7215,3.5802,7.4589,2.0652,3.46,0.42818,6.6774,11.3257,8.6605,8.4037,2.1263,4.7188,1.818,17.5152,5.6442,3.7819,1.1632,2.6085,7.459,13.776,2.9569,4.5417,3.1681,1.3416,1.6541,4.3089,10.6637,2.9916,2.2868,12.0656,2.1094,2.2821,2.0642,12.253,1.7825,4.3248,1.144,13.647,5.3491,8.3611,4.4426,11.7481,7.2296,8.7456,7.4804,3.0574,1.5111,4.8661,,,,,,,,,,,,,,,50,,,,354
+3607,0.85807,1.3842,,50-59y,Other,,,16.5657,4.4992,2.4175,2.0378,0.93135,ppmi,,,F,,0.43352,4.7165,4.2135,0.89441,8.2893,1.6451,0.36562,2.9326,3.0426,43.4989,15.1875,221.0804,4.4617,4.6234,1.6388,2.0976,3.7324,7.6297,2.0868,3.0502,0.31403,6.445,10.6149,8.4646,7.4624,2.5904,5.3353,1.9116,19.7815,5.7636,4.0298,1.1497,2.7646,6.8997,12.8047,3.1331,4.2524,3.5283,1.7501,1.2828,4.4868,10.9176,3.2761,2.3851,11.7884,2.4275,2.5393,2.4661,13.5282,1.8576,3.9902,1.2223,15.6864,5.6944,8.2534,3.8793,12.0399,6.3918,7.2708,6.8603,3.9984,1.6985,4.1396,,,PD,0.072316,PD,,PD,0.40465,3.8147,3.8719,0.85769,10.1653,2.0356,0.40068,2.8619,3.0956,43.6633,14.4264,218.6547,3.9505,4.8846,1.6106,2.0235,3.9061,7.3849,2.1999,3.3973,0.6785,5.9263,10.5992,8.8715,7.7935,2.4643,5.466,1.9901,20.2046,4.9833,4.0939,1.1051,2.6991,8.7864,12.9995,2.8058,3.9909,3.5554,1.6056,1.2661,3.8994,10.7784,2.9936,2.1805,9.6146,2.2077,2.3231,2.034,12.6332,1.8512,3.9622,1.1929,15.2596,5.72,8.0272,4.3455,10.4407,7.6239,7.1268,7.3379,3.5604,1.5027,4.0039,,,,,,,,,,,,,,,55,,,,355
+3608,0.71125,2.0415,,-50y,Other,,,18.6768,4.7706,2.4025,2.0797,0.84816,ppmi,,,M,,0.48411,4.7265,4.3478,0.92327,9.7641,1.6994,0.41729,3.3058,3.0924,44.9752,16.6586,216.3904,3.9634,4.5286,1.8538,2.1242,3.5123,7.4009,2.1725,3.2729,0.35475,7.1562,10.8769,6.4262,7.4169,2.6011,4.799,1.8643,20.3829,6.0916,4.1265,1.2791,2.9387,7.351,14.5181,3.5414,4.7937,3.6067,1.7022,1.4459,4.1302,10.0603,3.3722,2.628,11.5217,2.331,2.6976,2.4614,13.8051,1.9656,4.3017,1.2045,14.9354,5.5325,9.333,3.3075,10.3389,7.952,8.4831,8.035,3.9795,1.6569,4.8535,,,PD,0.070575,PD,,PD,0.4348,4.2904,4.0865,0.98897,10.4846,1.9921,0.40869,3.1615,3.3776,45.6567,15.6148,220.6547,4.079,4.9741,1.9695,2.0041,3.7371,7.914,2.0549,3.5767,0.43325,7.1708,11.731,4.9477,8.582,2.3474,4.6392,1.8049,19.9786,5.5761,4.0087,1.1827,2.8121,7.4351,14.617,3.0818,4.5878,3.454,1.4225,1.4474,3.8113,10.3192,3.1814,2.2445,11.072,2.0827,2.5515,1.9541,14.7197,1.6043,4.5435,1.1744,15.1429,5.9211,7.4191,4.2447,10.4663,6.3897,8.127,8.222,3.5077,1.2884,4.5938,,,,,,,,,,,,,,,46,,,,356
+3609,2.9857,4.1037,,60-69y,Other,,,18.7229,4.9389,2.3725,2.1214,4.2014,ppmi,,,M,,0.4134,4.6968,4.5757,0.79174,9.295,1.4596,0.37755,3.0566,3.5288,44.3481,16.4748,230.2819,4.1611,4.3432,1.5556,1.9637,3.4408,6.9695,1.9276,2.7389,1.3407,6.4543,10.679,54.2439,7.6136,2.1782,5.0536,1.7809,17.8394,6.045,3.6633,0.99857,2.4727,7.8498,12.9084,4.0629,4.2338,3.3378,1.4458,1.6987,4.2245,9.6508,3.0603,2.6227,11.1693,2.5419,2.2313,2.2472,12.6966,2.0997,4.969,1.2566,14.0785,5.6489,8.4301,3.3584,9.2768,7.2297,8.6049,6.664,3.8883,1.5384,5.0865,,,PD,0.0604,PD,,PD,0.4004,4.1269,4.3932,0.83591,10.2936,1.6605,0.40242,3.3031,3.9328,46.0995,14.9377,235.6408,4.3517,4.7664,1.5713,1.9865,3.9418,7.1138,1.9084,3.2384,1.8147,7.0358,10.7683,52.5027,7.9917,1.9763,4.0799,1.7309,17.8753,5.0041,3.5016,0.97824,2.8331,8.7945,13.9026,3.3607,4.1849,3.214,1.3785,1.7014,3.494,9.9954,2.908,2.5821,11.8214,2.1507,2.0437,2.1601,12.6805,1.8131,4.6222,1.2085,14.5088,5.9649,7.7084,3.9812,10.1149,8.1489,8.6583,7.3614,3.3876,1.5865,4.8752,,,,,,,,,,,,,,,69,,,,357
+3610,0.86107,2.2596,,60-69y,Other,,,17.9968,4.5296,2.7976,2.165,0.85873,ppmi,,,F,,0.50371,5.2448,4.6238,0.99431,10.7076,1.8097,0.41445,3.0361,3.1729,48.3929,14.6854,228.1836,4.0694,4.9816,1.9039,2.2108,3.6844,8.046,2.1741,3.5113,0.44344,6.1708,12.723,8.0349,7.4702,2.7272,5.4103,1.9833,20.7447,6.23,4.3878,1.2452,2.8032,7.5369,16.0456,2.8514,4.436,4.0546,1.6646,1.3728,4.7507,11.2845,3.5417,2.4148,13.2383,2.484,2.9167,2.4824,13.5386,2.0994,4.3809,1.2663,15.9932,6.0202,9.9532,3.7759,11.1069,9.1516,8.2202,8.2165,4.493,1.8393,4.6264,,,,0.084534,CN,,HC,0.46386,4.2674,4.5874,0.98257,11.2015,2.1047,0.44991,3.2111,3.2444,48.026,14.3642,232.9119,4.6943,4.7666,1.936,2.1927,3.9092,8.312,2.2669,3.7687,0.3722,7.1709,13.2674,5.5459,8.2621,2.4866,5.1868,1.872,20.8256,5.6803,4.7129,1.228,2.657,9.0935,16.0113,2.7411,4.6859,3.8171,1.5907,1.3281,4.3531,11.1541,3.3086,2.5218,11.408,2.7429,2.7819,2.3885,14.5023,2.2045,4.4152,1.2794,15.9056,6.1828,8.831,4.5106,10.6284,8.3617,8.0586,8.6538,3.6007,1.7228,4.363,,,,,,,,,,,,,,,60,,,,358
+3611,0.82286,2.2505,,-50y,Other,,,18.7179,4.4139,2.4107,2.242,0.87648,ppmi,,,F,,0.48964,4.6993,4.6692,0.90896,10.7249,1.8577,0.44629,4.2226,2.8736,49.933,16.1252,231.2056,4.0474,5.234,1.7658,2.1593,3.7233,7.7137,2.273,3.5085,0.32952,6.9542,11.4565,13.2749,8.4628,2.7795,4.8571,2.0812,21.2924,7.2051,4.4164,1.1951,2.6673,7.3514,14.5537,4.1507,4.6507,3.8727,1.587,1.4772,4.5859,11.5837,3.2935,2.3172,12.6546,2.3163,2.8686,2.2202,14.1661,1.9451,4.8941,1.3461,15.3055,5.8436,10.0375,4.5432,12.4814,7.6175,8.4339,7.7159,4.3767,1.5582,4.9131,,,,0.076444,CN,,HC,0.42779,3.6917,4.3562,0.97497,11.011,1.9399,0.44062,4.1769,2.9492,49.9729,15.6791,234.3259,4.2178,5.5253,1.9059,2.1558,3.9369,7.9225,2.2866,3.6753,0.51156,6.5225,11.734,6.8851,9.1533,2.499,4.7391,2.0139,20.9413,5.2451,4.2499,0.95979,2.5462,8.5458,14.8211,3.2482,4.7483,4.0191,1.7824,1.3949,4.6826,12.0377,3.3642,2.3107,10.5585,2.4279,2.5891,1.9403,13.6406,1.9923,4.7804,1.2858,14.8966,5.525,9.8403,4.9616,12.5213,8.0168,8.3876,8.4675,4.5691,1.5102,4.6106,,,,,,,,,,,,,,,42,,,,359
+3612,1.1332,1.8922,,60-69y,Other,,,19.6134,4.6705,2.9091,2.2906,1.1789,ppmi,,,M,,0.45467,4.2913,4.4603,0.89286,9.6676,1.6167,0.38845,3.8124,3.2249,49.4516,17.4186,248.6059,3.8918,5.5899,1.7954,1.9188,3.611,7.6145,2.0775,3.2104,0.50478,7.2972,10.8697,11.7971,7.7098,2.31,4.3372,1.8106,17.3811,6.9978,3.9627,1.1023,2.6359,7.2212,13.5637,4.3828,4.6688,2.7136,1.5493,1.4849,4.5022,11.4722,3.2241,2.424,11.2319,2.1572,2.3641,2.1854,11.87,1.8311,4.5138,1.1775,14.9378,5.1763,8.9323,4.3116,11.1681,7.2537,8.79,7.5853,3.6257,1.5302,4.8578,,,PD,0.066364,PD,,PD,0.4142,3.6352,4.441,0.92922,10.759,1.6444,0.41794,4.1028,3.2029,49.4618,16.1746,249.9865,3.6605,5.8923,1.8089,1.9657,3.4549,7.6491,1.9211,3.4729,0.67164,7.2216,11.6196,9.4999,8.8289,2.0893,4.2055,1.7243,17.3038,5.3654,3.6196,1.0081,2.4918,8.0869,13.8619,3.2912,4.5548,2.9459,1.5316,1.5106,4.1385,11.8054,3.1993,2.4396,9.9011,1.9934,2.4425,1.9155,10.9762,1.5914,4.5544,1.1442,14.1667,4.9717,8.0163,4.7423,11.5553,7,8.415,8.147,3.2724,1.3784,4.7279,,,,,,,,,,,,,,,68,,,,360
+3613,0.62887,1.6762,,60-69y,Other,,,18.707,4.7082,2.7595,2.0345,0.90503,ppmi,,,M,,0.44916,4.4711,4.3582,0.95338,9.9148,1.5625,0.36255,3.3464,3.0548,46.5135,15.7778,240.3113,4.3787,4.899,1.7814,2.0574,3.61,7.5286,2.1632,3.3485,0.38112,6.191,10.799,8.2241,7.3106,2.3914,4.5591,1.817,19.2238,6.5713,3.995,1.099,2.4697,6.8985,13.2671,3.4844,4.2619,3.5488,1.6255,1.5851,4.2157,10.115,3.3628,2.2838,12.3795,2.6569,2.4902,2.2517,13.5613,2.094,4.4165,1.033,14.8595,4.8664,9.4947,3.6756,10.0899,7.623,8.5621,7.3634,4.1485,1.6516,4.7751,,,,0.068373,CN,,HC,0.41686,3.6908,4.3227,0.89993,11.2735,1.6945,0.386,3.4952,3.2431,46.3003,15.4866,241.6775,4.1845,4.7752,1.6821,1.9784,4.0199,6.9465,2.3259,3.4462,0.42352,6.6815,10.8433,6.8784,7.7309,2.3413,4.3273,1.9144,17.7644,4.8929,3.9898,0.92837,2.3496,7.9888,13.9228,2.9923,4.0217,3.1859,1.703,1.5228,3.9636,10.414,2.839,2.4248,10.3434,2.8124,2.4181,1.9812,13.6353,2.3094,4.3931,1.0628,15.2336,5.0176,8.4162,4.2017,10.5637,8.1746,8.3679,7.4154,3.5946,1.5888,4.5324,,,,,,,,,,,,,,,62,,,,361
+3614,1.1272,1.7829,,60-69y,Other,,,19.0098,4.7587,2.466,2.1058,1.295,ppmi,,,M,,0.43483,4.1135,3.9534,0.88614,8.2803,1.3837,0.35611,3.5436,2.9583,47.9688,16.8591,216.7895,3.6531,4.4223,1.5738,1.7934,3.3566,7.2148,1.8241,3.1057,0.48582,6.2196,10.9708,11.4239,7.8969,2.176,4.0084,1.7201,16.2149,5.8716,3.595,1.2248,2.5438,6.354,12.8716,3.4425,4.1832,3.0976,1.425,1.4766,4.4182,10.1325,3.1558,2.1683,10.8597,2.0663,2.3681,2.2238,11.9462,1.6968,3.9716,1.0551,12.1678,4.5184,7.6194,3.5498,9.7879,6.1703,7.8564,7.0855,3.5582,1.41,4.7088,,,,0.068098,CN,,HC,0.38935,3.582,3.6199,0.86916,9.3085,1.4335,0.37239,3.4706,2.9974,47.1985,16.5178,215.9423,3.6198,4.2918,1.6081,1.7947,3.4378,7.2154,1.8664,3.2394,0.69555,6.8098,10.9628,9.7085,8.1457,1.8345,3.9644,1.6818,15.4154,5.1486,3.3191,0.97786,2.3329,7.0612,13.2006,3.0199,4.185,2.7167,1.4321,1.4351,4.0459,9.9692,2.9047,2.0195,10.1569,2.2256,2.1505,1.8632,11.5426,1.8328,3.8824,1.0495,12.2954,4.5624,7.9135,3.6436,8.602,6.8688,7.6029,7.2685,3.214,1.3428,4.4429,,,,,,,,,,,,,,,66,,,,362
+3615,1.7456,2.2696,,70-79y,Other,,,19.2582,5.2608,2.5971,2.4182,1.5491,ppmi,,,M,,0.51472,6.2834,5.9416,1.0368,12.1053,1.9841,0.44749,4.099,3.2034,50.005,17.0025,257.7218,4.6956,5.8657,2.0478,2.9576,4.7753,8.6009,2.646,3.7319,0.51524,8.3121,12.7301,14.859,9.7447,3.2079,5.8368,2.3781,24.5721,7.5809,4.7785,1.5799,3.4906,9.2398,16.58,4.9989,5.3484,4.3126,2.1368,1.5964,6.2669,15.3204,3.8815,2.7371,13.5318,2.767,2.7021,2.7574,15.2711,2.6265,4.6451,1.5475,18.1916,7.5525,11.0277,4.3445,14.4495,8.988,9.2759,9.3465,5.3817,1.927,5.0399,,,PD,0.082674,PD,,PD,0.48041,5.7146,5.4263,0.98583,13.2961,2.1963,0.47991,4.3715,3.2436,50.6477,16.4046,258.928,4.5782,7.3727,2.0692,2.5727,4.8218,8.6445,2.61,3.8021,0.56506,8.6136,13.9753,11.7821,10.2546,2.7001,6.1804,2.4345,24.161,6.7536,4.7929,1.3771,3.5405,10.5253,17.1068,4.0927,5.379,4.2516,2.0458,1.5315,5.3816,16.1249,3.4826,2.8631,12.3377,2.193,2.7094,2.4743,15.6244,2.0444,4.8765,1.5535,16.2746,6.6993,9.0469,5.5286,13.2791,8.5877,9.0415,9.8836,4.4813,1.6978,4.7105,,,,,,,,,,,,,,,78,,,,363
+3616,1.8692,1.9062,,60-69y,Other,,,14.8044,4.58,2.5049,2.0974,1.5208,ppmi,,,M,,0.39948,5.0827,4.4927,0.84657,8.3922,1.4176,0.38949,2.6412,2.8193,41.8966,12.6871,192.0462,3.6672,3.8742,1.6125,1.8503,3.3886,6.9912,1.9131,3.0941,0.50745,5.8348,11.1514,19.4092,7.2716,2.2231,4.8626,1.789,17.6251,5.4821,4.0257,1.0459,2.6994,7.1556,13.0738,2.775,3.9131,3.1214,1.4089,1.1385,4.3741,10.3649,3.2765,2.2719,11.285,2.3886,2.6044,2.2137,13.1228,1.9712,3.8735,1.2973,14.0172,4.909,8.4173,3.3544,10.1854,6.584,6.4691,7.6211,3.3637,1.4639,3.839,,,PD,0.069475,PD,,PD,0.35536,4.2832,4.1429,0.85539,9.1844,1.6624,0.38084,2.7946,2.921,42.5985,12.5478,194.9345,3.5917,4.5679,1.6289,1.7042,3.4525,7.5996,1.8905,3.4145,0.62007,5.7922,11.2452,16.4881,7.7992,2.1445,4.1913,1.7547,18.7023,4.622,3.799,1.2634,2.7089,8.052,13.8388,2.339,4.058,2.8534,1.4318,1.1838,4.108,10.8158,3.1119,2.2678,10.5193,1.8085,2.2518,2.0397,12.7118,1.6161,3.7048,1.1718,14.7335,5.5023,7.4609,3.9065,9.7767,7.0325,6.4853,7.6421,3.0226,1.303,3.6685,,,,,,,,,,,,,,,63,,,,364
+3617,1.4796,2.1581,,-50y,Other,,,22.2396,5.192,2.7306,2.3502,1.1348,ppmi,,,F,,0.45214,4.9617,4.4819,0.99903,9.3516,1.5322,0.3704,3.1749,3.1599,50.0588,18.8807,254.293,4.3045,4.596,1.7168,2.2785,3.7416,7.3934,2.2927,3.7771,0.46858,6.3745,10.8396,9.8557,7.5653,2.4321,5.0797,1.9711,19.5809,5.7013,3.9342,1.2801,2.5667,7.3721,13.6393,3.4038,4.6865,3.385,1.5653,1.815,4.3144,10.3902,3.3636,2.1878,11.9196,2.468,2.3788,2.1074,13.1584,2.0567,4.5613,1.1629,16.5777,5.2061,9.1089,2.8864,10.8443,7.4988,8.451,7.4541,3.8877,1.5986,5.3527,,,,0.090042,CN,,HC,0.42007,4.5164,4.3168,0.94547,10.0812,1.7694,0.38281,3.5046,3.3975,50.7907,19.0466,261.2374,3.9366,5.3585,1.6656,1.9675,4.1642,7.26,1.9739,3.845,0.59308,7.0906,11.0843,12.3357,8.555,2.1365,4.7934,1.8494,19.143,5.6681,3.6596,0.9969,2.5403,8.1386,14.9194,3.8258,4.541,3.3766,1.4373,1.6465,3.7791,10.5543,2.79,2.2017,10.6461,2.1784,2.3124,1.9688,12.9478,2.0119,4.5687,1.0833,16.6417,5.5888,8.5337,4.8915,10.848,8.238,8.3289,7.4443,3.3223,1.3923,5.0012,,,,,,,,,,,,,,,32,,,,365
+3619,0.51431,1.7761,,60-69y,Other,,,20.0399,4.9374,3.2252,2.6506,0.87295,ppmi,,,M,,0.51465,4.5115,3.955,0.95576,9.2496,1.7581,0.40739,3.6173,3.1091,52.663,16.5894,231.5028,4.1697,4.9761,1.8771,1.8228,3.6654,7.7536,2.4311,3.3366,0.30492,6.4089,12.0355,5.1492,8.046,2.6441,4.7307,1.8597,20.6263,6.2002,4.4852,1.2266,2.9132,7.3341,15.171,3.7971,4.5042,3.5893,1.5897,1.6316,4.089,10.479,3.4823,2.1693,12.7473,2.2551,2.7702,2.2693,15.204,2.0595,4.5073,1.2057,16.2321,5.8763,10.1703,4.0178,10.1444,8.4228,9.1072,9.0464,3.9866,1.5834,5.2249,,,,0.078967,CN,,HC,0.47659,4.0395,3.8267,0.92217,10.5023,1.9821,0.41421,3.6339,3.3266,52.3878,15.7739,232.4386,3.8076,4.9352,1.8004,1.908,4.2648,7.8817,2.3074,3.3848,0.31378,7.7994,12.3481,6.2707,8.5959,2.591,4.6876,1.8649,20.0682,5.6263,4.203,1.1764,3.2199,8.1954,15.7359,3.4758,4.5703,3.8726,1.8201,1.6161,3.6256,10.0606,3.073,2.0924,10.8719,1.8538,2.4732,1.8886,13.5154,1.8197,4.5235,1.1194,15.7459,5.7696,8.1953,4.6288,11.3503,8.1586,8.4923,8.353,4.2487,1.3427,4.9378,,,,,,,,,,,,,,,69,,,,366
+3620,1.3254,1.7154,,50-59y,Other,,,20.3569,5.0043,2.9439,2.5308,1.481,ppmi,,,F,,0.41134,4.7521,4.1904,0.89346,9.6842,1.4621,0.37226,3.5405,2.9619,52.142,17.2993,210.2426,4.1671,4.9242,1.7403,1.9316,3.1821,7.8317,2.0796,3.1512,0.50049,6.6851,12.211,11.9412,8.1125,2.2998,4.524,1.8013,18.6334,6.3148,3.9931,0.99124,2.5456,6.9596,15.0511,3.1902,4.5715,3.2052,1.4458,1.4118,4.3914,11.6635,3.3838,2.2562,11.7227,2.2867,2.4868,2.3435,12.4489,1.9212,3.5741,1.1479,13.7264,5.3708,9.4441,4.2805,11.462,8.1583,8.0422,8.2987,3.2977,1.4844,5.002,,,PD,0.075521,PD,,PD,0.38566,4.2657,3.8322,0.88812,9.8014,1.6093,0.37346,3.6889,3.0874,52.8386,16.7402,212.7534,3.9217,4.8924,1.7417,1.8537,3.7231,7.8016,2.0116,3.3517,0.44298,6.8816,12.0569,10.376,8.7167,2.1155,4.7045,1.7802,17.678,4.9445,3.712,1.0701,2.6888,7.5154,15.2228,3.1725,4.4112,3.2786,1.483,1.4012,3.8857,11.3961,3.1538,2.19,11.4933,1.9883,2.2681,1.9667,12.3792,1.8563,3.5621,1.1341,12.9101,5.0719,8.6515,4.5628,12.6781,8.6795,7.9642,8.6637,3.2247,1.2499,4.6825,,,,,,,,,,,,,,,54,,,,367
+3621,1.0548,2.0387,,60-69y,Other,,,16.2906,4.1737,2.6199,1.9678,1.2588,ppmi,,,M,,0.40863,4.1479,4.0743,0.82499,8.1339,1.432,0.3618,3.1558,2.7898,43.5119,14.0914,206.452,3.3439,4.1629,1.5612,1.8427,2.9399,6.4555,1.7147,2.9251,0.44362,5.7849,9.653,14.4734,6.7935,2.2903,4.1353,1.5311,15.5561,5.6937,3.7671,1.1713,2.7106,6.3092,11.5046,3.3143,3.897,3.1899,1.5444,1.389,4.0808,10.1454,2.9572,2.0353,10.5216,2.1445,2.6112,1.961,11.7068,1.9892,3.8735,1.0937,13.3728,4.9831,7.2671,3.4452,9.051,6.0852,7.5509,6.4508,3.9533,1.5471,4.326,,,PD,0.069806,PD,,PD,0.36495,3.6581,3.5061,0.79603,8.7814,1.5853,0.35139,3.2227,3.0272,44.0031,13.8598,208.8971,3.4847,4.6008,1.5556,1.6753,3.2976,6.563,1.8047,3.0593,0.58038,5.7617,9.9073,13.5714,7.4543,2.1228,4.0793,1.5824,15.7287,4.4022,3.7198,1.0261,2.7581,6.8829,11.7233,2.7563,3.8598,3.0218,1.419,1.3426,3.8913,10.3366,2.6541,2.109,9.7151,2.0454,2.499,1.792,11.8067,1.8294,3.5995,1.0996,12.4046,4.9113,6.6073,3.8398,9.5781,6.5768,7.6041,6.795,3.25,1.4455,4.13,,,,,,,,,,,,,,,62,,,,368
+3622,1.6742,1.7518,,60-69y,Other,,,18.6153,4.7488,2.3681,2.0229,1.5382,ppmi,,,M,,0.5136,5.1521,4.9797,0.96702,9.7394,1.6642,0.42439,3.6393,3.3801,39.9124,13.5744,238.3874,4.615,4.9351,1.7909,2.1167,3.7627,7.8462,2.2812,3.4822,0.44842,7.2722,12.7951,13.3337,7.7642,2.5952,5.6167,1.8407,19.6045,7.02,4.2732,1.2557,2.8795,8.0248,14.8836,3.5857,4.8184,3.2809,1.7912,1.6281,5.0913,11.1534,3.5256,2.725,12.0383,2.6248,2.6489,2.3917,14.4993,2.2767,4.5842,1.3686,15.9832,6.1585,8.9009,3.4535,12.3054,7.6185,9.4211,7.7807,4.2046,1.6451,5.1086,,,,0.089844,CN,,HC,0.44484,4.034,4.5744,0.87831,10.0658,1.6765,0.43507,3.7317,3.5401,46.6131,15.1555,239.3395,4.241,5.2862,1.6799,1.9501,3.7181,7.7649,2.0818,3.6171,0.71182,7.1556,12.6414,12.0429,8.1911,2.3478,4.7552,1.785,20.022,5.9912,3.7783,1.2181,2.8958,9.329,15.8551,3.1702,4.3726,3.5938,1.6624,1.5957,4.7558,11.2256,3.2078,2.6357,10.5564,2.262,2.4086,2.1551,14.6345,1.8365,4.5542,1.3191,16.274,6.7675,7.4878,4.3314,9.9947,6.9939,9.0706,7.9151,3.6512,1.4473,4.7473,,,,,,,,,,,,,,,61,,,,369
+3624,1.6569,1.9026,,60-69y,Other,,,20.6552,5.4144,3.5495,2.5085,1.4447,ppmi,,,F,,0.46974,4.7892,4.3274,0.91264,9.5312,1.6076,0.39251,3.5699,3.2087,55.8758,19.4745,254.6288,4.355,5.0314,1.806,2.2353,4.0947,8.1874,2.1335,3.474,0.7188,7.5368,12.7036,12.4349,7.9988,2.2744,5.2024,1.9124,18.4631,7.2402,4.1812,1.2966,2.8655,7.4436,15.7793,3.9799,4.7873,3.5219,1.3649,1.6229,4.7721,10.8812,3.4973,2.4536,13.3431,2.3714,2.3719,2.4694,13.5236,2.0083,4.4836,1.2358,15.8641,5.5751,9.7408,3.8177,11.0567,7.6792,9.1984,8.0771,4.0266,1.8325,5.3867,,,PD,0.090737,PD,,PD,0.41802,4.1182,4.1515,0.89601,11.2461,1.8786,0.42621,3.8401,3.1925,56.3634,19.0472,258.727,3.8094,6.0411,1.7879,2.0876,3.8195,8.5853,2.1143,3.6247,0.83266,7.4821,13.2548,11.2948,8.7033,2.2096,5.0483,1.9049,18.64,5.816,3.8774,1.2227,2.5959,7.8932,16.145,3.495,5.0547,3.3041,1.5341,1.5609,4.4888,12.4844,3.068,2.4207,10.9956,2.3887,2.3645,2.2999,13.7043,2.2032,4.364,1.2153,14.8488,5.3967,8.5716,4.926,11.1182,8.2234,9.0129,8.5114,3.7973,1.6008,5.0462,,,,,,,,,,,,,,,67,,,,370
+3625,1.5246,3.0619,,50-59y,Other,,,17.7765,4.6445,2.511,2.117,1.7359,ppmi,,,M,,0.40226,4.397,4.3194,0.8943,9.2439,1.5245,0.35589,2.9245,2.6701,45.2038,14.8291,234.5796,4.2673,4.5092,1.6295,2.0497,3.6559,7.0043,2.1885,3.3214,0.81519,6.1004,9.9783,28.6365,6.8192,2.3195,4.551,1.8508,19.1814,6.1772,3.9113,1.1935,2.6577,6.7062,12.3115,3.6618,4.024,3.6709,1.3481,1.5017,4.3882,11.114,3.1386,2.2835,11.6074,2.3637,2.3429,2.3846,13.8217,2.1943,4.0517,1.0603,13.7279,5.395,8.7604,4.2288,11.8091,6.8753,8.1641,7.1211,3.8099,1.7546,4.7278,,,,0.078034,CN,,HC,0.36135,3.9383,3.9988,0.88941,8.6994,1.7509,0.36882,3.2185,2.8582,45.087,14.4512,234.3037,3.8538,4.7743,1.5834,2.0422,3.6946,6.9916,2.082,3.6976,0.86954,6.0949,10.6267,19.5848,7.8853,2.2993,4.5688,1.7412,18.0399,4.9743,3.5851,1.1394,2.594,7.2766,13.0525,2.7078,3.9955,3.2899,1.5944,1.44,4.2558,11.1702,2.8664,2.202,10.8273,2.5225,2.0849,2.0214,14.4603,2.0116,3.8153,1.0184,14.2045,5.1674,7.9293,4.7024,10.8436,7.2033,8.1609,7.6655,3.8329,1.587,4.417,,,,,,,,,,,,,,,59,,,,371
+3627,1.0765,1.7569,,70-79y,Other,,,21.9177,5.0877,2.7448,2.3304,1.0903,ppmi,,,M,,0.499,5.0525,4.9375,0.87305,10.9527,1.6703,0.42677,3.8522,3.0747,52.0256,18.4247,260.7113,4.4117,5.0962,1.7222,2.3117,4.0399,8.0009,2.3451,3.3231,0.3508,7.42,12.5469,11.0856,8.2355,2.6792,5.3251,2.0233,20.0273,7.26,4.6577,1.1451,2.3605,7.6618,15.5529,4.1411,4.9785,3.1556,1.8715,1.6481,5.1543,11.5964,3.4044,2.5954,12.5624,2.8248,3.0435,2.5097,13.2697,2.3246,4.2144,1.4741,17.3719,5.7775,9.6971,4.043,10.6981,8.4065,9.3829,8.1386,4.1522,1.8509,5.3831,,,PD,0.079807,PD,,PD,0.42962,4.839,4.5938,0.89741,10.8987,2.0239,0.43994,4.1173,3.2339,53.2,17.5583,263.2204,4.0575,5.7529,1.8596,2.0367,4.3507,8.2194,2.2709,3.5107,0.45112,7.6312,13.023,9.5619,9.0264,2.5145,5.1623,2.0095,20.1931,5.7047,4.3314,1.1675,2.7525,8.3552,14.5824,3.4568,4.7519,3.2051,1.6339,1.6205,4.7068,12.2517,3.2998,2.5959,11.2545,2.6278,2.8265,2.3113,13.3335,2.4626,4.2158,1.3647,15.0994,5.6672,8.833,5.2848,11.1094,7.9882,9.2844,8.2227,3.2856,1.9378,5.0982,,,,,,,,,,,,,,,72,,,,372
+3628,1.7838,1.6034,,50-59y,Other,,,15.7492,4.7452,2.5347,2.3721,1.6993,ppmi,,,M,,0.42859,4.4655,4.1272,0.83296,7.9674,1.5366,0.35863,2.6683,3.3526,43.9257,12.5989,186.2585,3.9345,4.2509,1.6462,1.7208,3.305,6.979,1.8788,3.0289,0.42177,5.5963,10.636,13.5419,6.796,2.2483,4.434,1.7442,17.5074,5.42,3.699,1.218,2.5861,7.0442,11.9755,3.0146,3.9231,2.9159,1.2391,1.3062,4.5069,10.4735,3.1731,2.3014,10.8665,2.2999,2.3731,2.3058,11.5846,1.7901,4.2295,1.1667,14.2425,4.8253,8.174,3.3047,9.9458,6.2463,7.5216,7.5317,3.5462,1.5706,3.9188,,,PD,0.070109,PD,,PD,0.40629,4.4873,4.0027,0.76405,8.8583,1.7103,0.37886,2.9186,3.4536,44.1121,12.0674,187.1205,3.7735,4.357,1.533,1.685,3.7933,6.5214,1.7901,3.0125,0.51996,6.5096,10.2505,12.7236,7.299,2.2673,4.3338,1.7146,16.4468,5.0316,3.5827,1.2009,2.4788,7.8064,12.8036,2.645,3.9516,2.9901,1.5355,1.2413,3.9162,10.8906,2.7097,2.3642,9.2157,2.0704,2.4866,1.9379,10.8045,1.5379,4.1618,1.1637,13.8009,5.0837,6.7461,3.8377,9.8623,5.7889,7.193,7.3241,3.3363,1.3079,3.7201,,,,,,,,,,,,,,,53,,,,373
+3629,1.0617,2.1805,,60-69y,Other,,,20.1269,5.2996,2.9255,2.5427,1.2382,ppmi,,,F,,0.49399,4.8336,4.698,1.0153,11.3317,1.9412,0.43768,3.8078,3.4404,54.1527,17.3766,231.9756,4.3332,5.5562,2.0182,2.084,3.7585,8.8621,2.1941,3.6743,0.52188,7.7878,13.3596,15.2486,8.8234,2.8303,4.805,2.0331,21.966,7.2611,4.4269,0.99954,2.5411,7.5813,15.6062,3.8458,5.3036,3.3646,1.6843,1.748,4.5368,11.4306,3.5693,2.4563,12.7212,2.3496,2.911,2.5804,13.8739,1.9571,4.9695,1.2778,16.9211,5.7691,9.4382,4.5347,12.1326,7.5311,9.433,9.7411,4.0829,1.7022,5.2685,,,PD,0.084439,PD,,PD,0.45197,4.1553,4.7788,1.0385,12.5169,1.9708,0.44998,3.8041,3.6855,54.6421,16.2935,236.338,4.2842,5.4219,2.2499,2.2671,4.0284,8.8747,2.1741,3.9644,0.72591,7.8491,13.5974,12.3123,9.7516,2.5091,5.1016,1.9301,20.7572,6.1453,4.1387,1.1174,2.8181,8.0262,16.2435,3.4823,5.2889,3.667,1.8302,1.7045,4.2036,11.297,3.5195,2.509,11.0773,1.982,2.7193,2.2972,13.1915,1.8754,4.902,1.2658,16.6242,5.538,8.9709,5.5785,11.0648,8.5046,9.1497,9.6714,4.2056,1.396,5.0014,,,,,,,,,,,,,,,61,,,,374
+3630,1.2522,2.0753,,60-69y,Other,,,17.012,3.9995,2.4885,2.0102,1.192,ppmi,,,F,,0.37623,4.2585,3.913,0.82395,9.2638,1.4136,0.3438,3.7982,2.813,45.5726,14.4996,213.0456,3.2988,4.8174,1.6587,1.7778,3.0519,6.9181,1.7659,3.0533,0.44668,6.3542,10.0019,12.8942,7.5517,2.162,4.5363,1.6269,17.5091,5.9354,3.5382,1.1355,2.5016,6.1944,12.7834,3.3592,4.4302,3.2358,1.3806,1.1466,4.1411,10.5437,3.1275,2.0972,12.2126,2.1921,2.5093,1.9995,11.9104,1.7091,2.756,1.0241,14.4578,5.0765,8.8202,3.9395,10.9039,6.6085,7.3477,7.475,3.6825,1.3443,4.3051,,,PD,0.073743,PD,,PD,0.35219,3.8516,4.1128,0.83373,9.0335,1.75,0.3803,3.8521,3.0938,45.5243,14.2039,218.991,3.4166,5.3836,1.7044,2.0137,3.6042,7.7661,1.8946,3.2812,0.61794,6.4036,11.2732,11.136,8.2669,2.1885,4.6622,1.7545,18.5134,5.2458,3.6655,0.97209,2.3111,7.2032,12.9752,2.91,4.2339,3.6094,1.4409,1.2093,3.9626,10.5165,2.9212,1.9677,10.0789,1.8206,2.4038,1.8305,12.2254,1.5715,3.1459,1.0622,13.6003,4.7372,7.3806,4.9144,10.4713,6.7683,7.4039,7.8391,3.709,1.2905,4.1362,,,,,,,,,,,,,,,68,,,,375
+3631,1.2133,1.5611,,50-59y,Other,,,17.0128,4.0835,2.271,1.9862,1.2138,ppmi,,,M,,0.40127,4.1823,3.9531,0.81518,8.226,1.3598,0.36305,3.082,2.8688,41.1853,13.6291,216.8851,3.3759,4.1963,1.5396,1.6826,3.051,6.6833,1.7605,2.9691,0.4533,5.9269,9.8388,12.1073,6.6233,2.2012,4.2871,1.5907,18.0385,5.3007,3.5194,1.028,2.4035,6.494,11.485,3.0349,3.9341,3.0053,1.3339,1.4701,3.7843,9.4495,2.8875,2.0559,10.8829,1.9474,2.4038,2.0425,11.4013,1.7909,3.8175,1.1206,12.8594,4.7997,8.4709,3.1077,9.9657,6.5001,8.0134,6.3657,3.1676,1.2689,4.4516,,,PD,0.078844,PD,,PD,0.34089,3.8418,3.7814,0.78479,9.1577,1.5689,0.36693,3.1417,2.9553,41.8074,13.1619,221.4453,3.1523,4.0636,1.5421,1.708,3.601,6.9103,1.7911,3.0986,0.44443,6.0956,9.9137,11.3679,7.3545,1.9677,4.1179,1.5542,16.5416,5.1596,3.3899,1.0681,2.7023,7.1179,11.3555,2.7271,3.8559,3.3889,1.4474,1.4011,3.3968,9.3191,2.6108,2.0478,8.8664,1.706,2.2006,1.7216,11.2959,1.3506,3.7216,1.0808,13.8329,4.7094,7.3527,3.9105,9.9277,6.1676,7.9176,6.8437,3.1183,1.1437,4.2491,,,,,,,,,,,,,,,55,,,,376
+3632,1.1619,1.8019,,60-69y,Other,,,21.374,4.683,2.7762,2.3014,1.2089,ppmi,,,F,,0.47543,5.0306,4.7911,1.0034,10.1167,1.7259,0.38796,3.4523,3.26,50.7848,17.863,269.4048,4.3527,5.0599,1.816,2.2523,3.9919,7.8655,2.3406,3.5759,0.49666,6.956,11.5717,17.5701,8.1398,2.6545,5.2845,2.0405,19.7544,6.877,4.3757,1.4109,3.0466,7.3993,13.5537,3.8361,4.6588,3.7571,1.6868,1.6657,4.9874,12.1059,3.3727,2.4838,12.6866,2.6665,2.6273,2.466,14.5229,2.2252,4.0816,1.271,16.9161,6.6977,8.7308,4.1388,12.4431,7.2765,8.965,7.936,4.0212,1.7808,5.1537,,,PD,0.07889,PD,,PD,0.43285,4.6442,4.5141,1.0006,10.0834,1.8625,0.40362,3.6893,3.4143,49.5113,16.861,273.8852,4.2497,5.3888,1.8716,2.2377,4.5666,7.9756,2.3348,3.8745,0.58628,7.3634,12.4472,14.3722,9.0272,2.3192,5.3487,2.0585,20.9444,5.4025,4.1773,1.3061,3.2353,8.3934,15.2107,3.3792,4.3766,3.5208,1.6163,1.6311,4.5657,11.2729,3.325,2.4009,10.9647,2.3958,2.349,2.1356,15.3658,2.074,4.053,1.2817,18.0162,6.2703,8.9269,4.7965,11.1525,8.2922,8.9945,8.565,3.6843,1.5018,5.0303,,,,,,,,,,,,,,,69,,,,377
+3633,1.2083,1.8111,,-50y,Other,,,16.5013,4.5077,2.0999,1.8972,1.0505,ppmi,,,M,,0.34401,4.2016,3.5616,0.78742,7.7359,1.3677,0.31567,3.0766,2.2547,40.1883,13.8741,195.542,3.4485,4.3074,1.587,1.5956,3.2087,6.3887,1.6996,2.8574,0.34281,5.5304,9.1968,8.5053,6.4286,2.0431,4.2722,1.6453,17.8291,4.7923,3.3023,0.94695,2.2977,6.5528,11.2158,3.0139,3.7539,2.9796,1.2448,1.2677,3.9414,9.2113,3.0184,1.9876,11.6038,1.9725,2.2101,1.9675,11.0975,1.6928,3.5996,0.92091,13.9955,4.8543,8.5832,3.0315,10.19,6.4783,7.413,6.9981,3.1501,1.3193,4.1197,,,PD,0.067383,PD,,PD,0.31767,3.5349,3.663,0.77366,8.9891,1.5543,0.32681,3.2237,2.3374,40.421,13.1819,200.7832,3.2055,4.4689,1.4946,1.7085,3.5573,6.4216,1.6685,3.1052,0.59211,5.8591,9.7229,7.7733,7.5073,1.9635,4.1461,1.5318,17.4773,4.3847,3.2944,0.94589,2.3072,7.1866,11.3925,2.7395,3.8378,3.0699,1.3017,1.3264,3.7011,9.6017,2.5686,2.0005,9.406,1.9859,2.1559,1.7613,11.1358,1.7331,3.6373,0.95807,13.0549,5.0131,7.436,4.0943,9.0462,6.3917,6.999,6.7743,3.0817,1.383,3.9416,,,,,,,,,,,,,,,43,,,,378
+3634,0.83462,1.9951,,50-59y,Other,,,19.5391,5.3565,3.1085,2.5099,1.1102,ppmi,,,M,,0.56476,5.7357,4.7512,1.0268,10.7776,1.9061,0.43074,3.108,3.7316,56.9266,17.5124,284.9081,5.021,4.83,1.9612,2.2173,4.1347,9.1757,2.3266,3.9829,0.56292,7.3832,13.5088,13.3284,8.4091,2.8777,5.6723,2.2757,23.0471,7.0703,4.4185,1.2653,3.0683,8.5578,16.0309,3.6439,4.9532,4.2198,1.788,1.8586,5.384,12.2681,3.809,2.7567,13.7626,3.3058,2.7996,2.5033,14.691,2.7166,4.9253,1.3483,17.9803,6.4902,10.9889,4.2404,12.3237,8.8125,9.5024,8.4865,4.5862,2.0535,5.3939,,,,0.081087,CN,,HC,0.53488,4.9561,4.4658,1.0166,12.9988,1.9688,0.43737,3.1292,3.8268,55.6111,17.2706,284.8769,4.5453,5.006,1.9752,2.2058,4.1298,9.1897,2.2498,3.9493,0.47463,8.1165,13.7391,10.279,9.697,2.5745,5.7687,2.0357,22.8102,6.4458,4.169,1.4933,3.4837,9.4395,16.9912,3.5071,5.2759,4.3625,1.747,1.8045,4.7577,11.9463,3.5154,2.6975,11.8299,2.5453,2.6896,2.2869,15.1623,2.2585,4.8507,1.2593,17.2959,6.6004,9.2501,4.5993,11.3451,8.7809,9.1825,9.1255,4.3934,1.7376,5.0567,,,,,,,,,,,,,,,57,,,,379
+3635,0.88757,2.1485,,60-69y,Other,,,23.0543,4.6271,2.942,2.3991,1.1239,ppmi,,,M,,0.53154,5.3189,5.0332,1.0249,12.2692,1.9161,0.43497,3.1712,3.604,54.3944,20.4606,290.5112,4.3154,5.2304,2.0328,2.2015,3.9799,8.8594,2.3005,3.5618,0.45138,7.5655,13.4082,13.0446,8.0363,2.7603,5.26,2.0985,19.7242,7.4918,4.5572,1.3251,2.8143,7.7394,16.0274,3.8123,4.8364,3.7928,1.6476,1.8367,5.2468,12.4655,3.5153,2.6314,13.8919,2.7887,2.8086,2.5112,14.0556,2.445,5.0638,1.316,15.6296,5.9111,11.1865,4.1618,12.3947,8.5781,10.0799,8.5065,3.9842,1.857,5.9301,,,,0.091632,CN,,HC,0.48558,4.5179,4.8977,1.0866,12.689,1.9636,0.46121,3.4714,3.8489,54.1904,19.5101,295.7018,4.4171,5.3157,2.1698,2.1731,4.2807,9.5919,2.2457,3.8464,0.53022,7.0298,13.9232,12.255,9.0667,2.5656,4.8552,1.9973,20.7875,6.4475,4.135,1.3159,2.8994,8.9752,17.1071,2.9802,4.7568,3.4112,1.7919,1.8055,4.8523,12.3803,3.5379,2.6224,13.1439,2.3764,2.6879,2.3839,14.7109,2.0056,5.1062,1.2427,15.8195,6.1835,9.463,4.4819,13.5312,8.6956,9.873,9.254,3.7396,1.6384,5.6623,,,,,,,,,,,,,,,64,,,,380
+3636,1.1335,1.8788,,50-59y,Other,,,19.3987,5.3567,2.6902,2.4778,1.1648,ppmi,,,M,,0.4224,4.1742,4.5387,0.97111,9.8583,1.6073,0.38993,3.5314,2.8664,49.5874,17.6577,241.1442,3.8079,4.5159,1.9392,2.2426,3.593,8.3646,1.9269,3.4446,0.4874,6.8987,12.5555,8.9579,8.1753,2.5394,4.8951,1.6829,16.1662,6.5445,3.9459,1.3055,2.6496,6.7706,15.0838,3.417,4.8465,3.5645,1.6012,1.5471,4.3274,10.2518,3.4833,2.2713,12.515,2.2359,2.8121,2.4461,12.9633,2.1349,4.3607,1.1268,15.984,5.1187,10.5965,3.6865,11.0786,8.0017,8.6831,8.7844,3.5563,1.6241,5.0075,,,,0.081332,CN,,HC,0.41113,3.4957,4.3289,0.92444,11.705,1.7556,0.41244,3.7646,3.0285,50.2957,16.9481,246.321,3.7671,4.7738,1.8193,2.02,3.8205,8.3092,2.127,3.7806,0.5875,6.9152,12.8751,10.6637,9.3618,2.2575,4.4736,1.7633,17.0935,5.7771,3.9928,0.92754,2.1406,7.6651,16.1088,2.924,4.7456,3.6274,1.5775,1.5459,4.1139,10.6082,3.2315,2.2946,11.0647,2.4346,2.6337,2.1646,12.214,2.3777,4.3732,1.1274,15.225,5.0436,9.9918,4.3051,11.39,8.8724,8.507,8.498,3.4205,1.6561,4.8558,,,,,,,,,,,,,,,57,,,,381
+3637,1.2208,2.2154,,60-69y,Other,,,17.0089,4.166,2.5062,2.0611,0.8819,ppmi,,,M,,0.41324,4.3599,3.9702,0.88482,8.394,1.4445,0.37031,2.8192,2.9099,45.7104,14.6698,206.6889,3.5396,3.8662,1.5817,1.9077,3.5098,6.6142,1.8874,3.3092,0.41,6.8456,10.3246,10.1058,6.7374,2.1098,4.7658,1.6761,18.1522,6.1031,3.5171,1.1229,2.5347,6.628,12.72,3.2893,4.0267,2.9345,1.2915,1.3666,4.2577,9.0966,2.9704,1.9776,11.4054,2.169,2.19,1.8056,12.5514,1.7292,4.2532,1.0761,14.9247,4.975,8.2749,3.4883,8.7763,6.4796,7.8767,6.5975,3.2759,1.2212,4.4931,,,PD,0.067203,PD,,PD,0.38574,4.3042,3.9674,0.88592,9.594,1.6181,0.3864,2.8,2.9653,46.6633,14.185,207.1414,3.4402,4.3043,1.6992,1.788,3.895,6.788,2.0006,3.6061,0.50556,6.0122,10.8222,7.4285,7.396,2.0257,4.7778,1.6334,18.489,4.6891,3.4692,1.0912,2.4102,7.272,12.4444,2.6473,4.0236,3.0012,1.2868,1.3234,3.8167,9.2362,2.9396,1.9179,10.5999,1.5916,2.2069,1.5561,11.3671,1.3207,4.2223,1.0234,14.2542,5.2123,7.0999,3.7568,9.1203,5.7383,7.7002,6.9401,3.1115,1.0248,4.2919,,,,,,,,,,,,,,,66,,,,382
+3638,1.8434,2.6092,,60-69y,Other,,,20.3211,5.4358,3.305,2.3951,1.7793,ppmi,,,F,,0.48962,5.4307,4.6347,1.0007,11.1488,1.8165,0.40671,3.5359,3.5888,54.1414,18.2333,288.481,4.8693,5.2877,2.0395,2.3884,4.2611,8.7702,2.3461,4.012,0.57872,7.2535,13.5805,20.4134,8.367,2.6264,5.6186,2.231,21.2277,6.9691,4.3399,1.3199,2.8183,8.2906,16.944,4.2032,5.083,4.112,1.6913,1.7585,5.5243,12.9831,3.8625,2.6522,13.5686,2.9703,2.6331,2.6821,13.6898,2.5457,4.7459,1.3982,16.6483,6.1905,11.6613,4.4249,13.9539,8.4879,9.3554,9.5826,4.4358,1.9445,5.3085,,,PD,0.096084,PD,,PD,0.46503,4.4248,4.643,0.93701,12.8167,2.1825,0.4302,3.4257,3.9199,53.0831,17.7118,290.1948,4.8297,5.2555,1.9153,2.1957,4.5976,9.1301,2.5615,3.7445,0.67499,8.391,13.9481,20.1027,8.69,2.7483,5.4872,2.3267,20.7425,6.7619,4.595,1.3904,3.0407,9.9785,16.6696,3.8302,5.0194,4.4223,1.9756,1.6864,5.0241,12.5277,3.3456,2.8439,12.2638,3.1798,2.5919,2.7318,13.6622,2.5788,4.8671,1.4026,16.9718,5.9906,9.7954,4.9666,12.5024,9.1071,9.3275,9.548,4.3187,2.138,5.0106,,,,,,,,,,,,,,,67,,,,383
+3650,2.6659,2.7975,,70-79y,Other,,,19.41,5.1728,2.8153,2.1349,2.5009,ppmi,,,M,,0.54917,4.9653,4.5661,0.90082,10.4236,1.6517,0.43893,3.2061,4.617,48.3595,14.9687,237.1674,4.5464,4.5,1.7448,2.0481,3.7763,7.7423,2.0795,3.4988,0.61733,5.9934,12.5972,31.2558,7.4008,2.5744,5.2563,1.9438,19.9537,6.5851,4.3167,1.1928,2.5894,7.2706,15.4459,3.0506,4.0062,3.7065,1.5665,1.6471,5.1939,10.9429,3.4514,2.5627,13.6576,2.3652,2.7735,2.7293,14.1565,2.2437,5.3546,1.2325,16.0843,5.7135,10.4164,3.3596,12.0866,9.2529,9.1416,8.3987,3.7647,1.7511,5.2095,,,,0.084716,CN,,HC,0.46207,3.9998,4.7382,0.86342,10.9299,1.8823,0.42091,3.2964,5.7645,49.0068,14.8389,245.1629,4.7149,5.225,1.76,2.0359,4.0758,8.07,2.0949,3.8476,1.0895,7.3831,12.7463,37.2662,8.3656,2.5172,4.9619,1.8435,19.2059,5.3615,4.0069,1.1415,2.8084,8.465,15.6495,3.2029,4.5278,3.5473,1.7519,1.7283,4.4387,11.3647,3.2206,2.8043,11.7998,2.3863,2.617,2.5596,13.7943,2.109,5,1.2419,16.297,5.7012,10.2314,4.4413,12.7046,9.3055,9.0597,8.479,3.6926,1.6554,5.029,,,,,,,,,,,,,,,77,,,,384
+3651,2.047,2.3842,,+80y,Other,,,22.9151,5.2141,3.0656,2.4309,1.4958,ppmi,,,F,,0.42631,4.9625,4.4708,1.0303,9.4834,1.4619,0.39672,2.9182,3.0016,53.1161,17.4776,238.4158,4.4416,4.4911,1.8603,2.0231,3.5557,7.3566,2.1609,3.678,1.0062,6.4639,11.7443,22.0969,7.559,2.3259,5.1709,1.8186,17.6103,5.5773,3.9463,1.2216,2.8897,7.4518,15.292,3.0856,4.3985,3.1386,1.5846,1.6089,4.5778,10.7996,3.6296,2.6977,11.6572,2.1908,2.4734,2.6507,13.2061,1.9747,4.285,1.3062,16.6512,5.9057,9.6821,3.2037,11.1104,7.9007,8.5932,8.2495,3.8025,1.6388,5.6366,,,PD,0.09018,PD,,PD,0.38789,4.0385,4.0788,0.88507,10.1445,1.6734,0.41508,3.0909,3.1387,54.0023,17.1839,242.9249,4.0396,4.7217,1.7046,1.8632,4.206,7.6575,2.3253,3.6058,1.0134,7.24,11.8192,22.8094,8.1051,2.1924,5.2082,1.9258,18.8492,5.2051,3.8026,1.1175,2.9883,8.4857,14.7339,2.7701,4.6612,3.2396,1.5289,1.5835,3.911,11.2906,3.1858,2.4764,9.5723,2.5513,2.2704,2.295,11.7389,2.179,4.1149,1.2377,15.7309,5.7818,8.7134,4.2067,10.3898,8.8232,8.3106,8.1396,3.4345,1.7556,5.4058,,,,,,,,,,,,,,,80,,,,385
+3653,1.1853,1.5172,,-50y,Other,,,17.3576,4.025,2.5215,1.9069,0.86631,ppmi,,,F,,0.37437,4.0028,3.9446,0.81287,8.0293,1.3847,0.3585,2.7646,2.6188,42.0121,13.3955,194.0659,3.7201,3.9885,1.5184,1.92,3.1437,6.0553,1.7356,2.971,0.55834,5.5089,9.4235,11.5078,6.2215,2.2485,4.5124,1.4949,18.016,5.2859,3.466,0.92892,2.2314,6.2934,11.4957,2.7525,3.6656,3.0103,1.3682,1.1754,3.9609,9.8163,2.7731,2.0458,10.9158,2.2037,2.1154,2.1717,11.5603,1.7618,3.8349,1.0684,13.7749,5.2458,7.5775,3.0183,9.9273,6.2065,7.1318,7.3865,3.7658,1.5061,4.1423,,,PD,0.071305,PD,,PD,0.33167,3.7162,3.6094,0.77865,8.5071,1.3572,0.3654,2.9416,2.7779,42.7743,13.3624,198.3735,3.6904,4.4839,1.4836,1.7713,3.4789,6.3104,1.7577,3.0686,0.50705,5.5736,9.647,10.1169,6.8417,1.816,4.5093,1.5597,16.5225,4.444,3.2096,0.8944,2.3393,7.4088,12.0392,2.3605,3.6889,2.877,1.3492,1.2006,3.6203,9.6126,2.5608,1.9791,9.3141,2.0794,2.0702,1.7432,12.1597,1.7962,3.8585,1.0089,13.7963,5.0384,6.5676,3.7233,9.0006,6.6572,6.9833,7.1543,3.1301,1.4074,3.9845,,,,,,,,,,,,,,,48,,,,386
+3654,0.74837,2.0591,,70-79y,Other,,,21.1968,5.1089,2.847,2.2352,0.89511,ppmi,,,M,,0.49533,4.4062,4.1872,0.90348,9.4563,1.615,0.40121,2.5379,3.3492,49.2022,17.5629,238.0449,3.7615,3.9778,1.6336,2.012,3.5993,7.5971,2.1813,3.4796,0.45172,5.754,11.7113,7.6548,7.1106,2.5615,5.1592,1.7697,18.7936,6.0269,4.1998,1.2014,2.7591,6.9257,15.0159,3.0664,3.9362,3.1206,1.759,1.5781,4.6615,10.1948,3.1864,2.1526,11.1695,2.2432,2.6212,2.0441,12.889,1.7266,4.2821,1.1685,16.0147,5.8606,9.0917,3.8675,10.7076,7.2913,8.4391,8.2197,4.0362,1.3954,5.2232,,,,0.085292,CN,,HC,0.45032,3.8757,3.9913,0.8847,10.2978,1.8568,0.41541,2.6353,3.5566,49.2138,17.2209,241.4136,4.0951,3.8058,1.6608,2.0726,3.8283,7.5879,2.3798,3.539,0.39465,6.5509,11.3216,7.7591,7.4892,2.2632,5.1114,1.9917,18.0196,5.1724,4.1987,1.2074,2.8444,8.3944,14.4602,2.7219,3.7536,3.9951,1.4797,1.6212,3.9926,9.5161,2.9287,2.0939,10.9701,2.0905,2.371,1.9171,13.0445,2.0461,4.2212,1.1584,15.0859,5.8712,8.8061,4.1775,10.6927,8.2262,8.0974,7.6249,3.6486,1.4548,4.9928,,,,,,,,,,,,,,,79,,,,387
+3656,1.3326,1.902,,70-79y,Other,,,19.9476,4.8092,2.9866,2.1756,1.424,ppmi,,,M,,0.51371,5.7902,4.8409,1.0691,10.9409,1.7148,0.41957,3.3863,3.1988,51.3039,15.2453,233.0082,4.6402,4.2864,2.076,2.2618,4.3166,8.3058,2.4519,3.5307,0.44977,6.4762,12.4161,16.9951,8.2159,2.5044,5.2438,2.2996,20.606,6.2046,4.4167,1.3918,3.2165,9.234,15.9745,3.5261,4.5304,3.6287,1.5581,1.5411,5.4026,12.8477,3.9262,2.7831,13.9244,2.7536,2.7485,2.6776,13.2845,2.1885,4.6823,1.3828,17.3331,6.7684,9.701,3.6661,12.1589,8.328,8.0037,9.7757,3.8912,1.7178,5.0094,,,PD,0.081187,PD,,PD,0.46317,4.8134,4.7482,1.0447,11.2006,1.967,0.43031,3.4709,3.5034,51.1156,14.9175,237.7175,4.559,4.7649,2.1685,2.178,4.8065,8.4229,2.3904,3.6951,0.52584,7.5455,12.6052,18.7318,8.7345,2.3843,4.9076,2.1589,21.4369,6.0307,4.2161,1.4101,3.3193,10.7729,15.4985,3.2791,4.7018,3.6689,1.642,1.5233,4.8661,12.4072,3.5554,2.829,13.4503,2.3777,2.4487,2.4746,14.2297,1.9317,4.6349,1.2678,17.9751,6.9892,8.5296,4.5866,11.9086,7.7458,7.4944,9.3816,3.845,1.583,4.903,,,,,,,,,,,,,,,70,,,,388
+3657,1.0628,1.7647,,50-59y,Other,,,21.8117,5.2516,2.9774,2.4597,1.1767,ppmi,,,M,,0.47762,5.185,4.5459,1.0346,10.1754,1.9611,0.391,3.3829,3.2749,49.755,17.8122,284.336,4.4031,5.1679,2.0155,2.3341,4.6805,8.0286,2.4453,3.4586,0.46476,7.009,12.8837,14.3769,7.7558,2.6579,5.5574,2.1496,24.2365,7.1718,4.6851,1.0564,2.5722,8.1718,15.6965,4.381,4.3929,3.6437,1.6583,1.638,4.749,11.2996,3.5205,2.5104,12.8917,2.5599,2.4268,2.4617,13.1532,2.2013,4.508,1.3038,18.2759,5.7601,9.3296,4.3102,10.882,8.3352,9.1439,9.0178,4.6305,1.7206,5.4806,,,,0.073893,CN,,HC,0.41747,4.4183,4.1732,1.0026,11.9788,2.3491,0.40129,3.3592,3.2635,50.1848,17.443,283.7447,4.1209,5.2976,2.0195,2.1143,5.2117,8.4146,2.5551,3.6249,0.49576,7.0373,13.1773,14.9477,8.4676,2.7042,5.2179,2.1796,23.1741,5.7639,4.7113,1.1309,2.4968,8.7776,16.5556,3.2487,4.3224,4,1.7613,1.6585,4.239,11.3238,3.2923,2.3843,10.9963,2.3868,2.5719,2.292,13.1245,2.0717,4.1769,1.2374,19.2195,5.9052,8.6676,4.6286,10.9091,8.6382,8.5399,9.2152,4.1212,1.6602,5.2301,,,,,,,,,,,,,,,58,,,,389
+3658,1.195,2.2118,,70-79y,Other,,,19.2801,4.7847,2.6432,2.0763,1.306,ppmi,,,M,,0.44458,5.5525,4.7997,0.96401,9.2047,1.7522,0.41182,3.7768,2.8129,48.2272,15.5097,241.563,4.2693,5.7701,1.8906,2.2439,3.8209,7.9364,2.2779,3.3755,0.38077,6.4865,11.6227,15.2,8.3183,2.6198,5.7698,2.0034,21.8975,6.0578,4.4378,1.2245,3.0126,8.6065,13.9408,4.1116,4.6478,3.7687,1.7731,1.3984,5.2153,11.6355,3.6023,2.4912,11.8826,2.9665,2.8279,2.4147,13.1526,2.6238,4.181,1.2666,16.527,6.6035,10.2779,4.5597,11.8497,7.9815,8.0101,9.3645,4.4997,1.8546,4.8688,,,PD,0.07383,PD,,PD,0.42186,4.7272,4.6381,0.94755,10.3915,1.9351,0.42087,3.8099,2.9866,47.5988,14.7029,243.5036,4.3921,5.5307,1.977,2.0864,4.0911,7.9755,2.2941,3.551,0.42633,6.9274,12.2672,14.7577,9.0435,2.5334,5.6872,2.1287,20.4031,5.5291,4.0726,1.3092,3.2529,9.8933,15.3186,3.4423,4.6076,3.7382,1.6868,1.3854,4.4969,11.2889,3.3642,2.574,11.3239,2.2898,2.5962,2.2339,14.2774,1.962,4.1019,1.2464,16.2535,6.8036,8.6002,4.7323,11.6164,8.0942,7.8583,9.6158,4.2089,1.6234,4.6861,,,,,,,,,,,,,,,71,,,,390
+3659,2.1006,1.9958,,70-79y,Other,,,20.9381,5.0647,3.0313,2.4179,1.8014,ppmi,,,F,,0.44452,4.7985,4.2484,0.89863,8.6771,1.5239,0.38927,3.7211,3.3496,51.1333,17.1396,251.3916,4.493,4.9046,1.6111,2.0079,3.8116,7.3721,2.1635,3.3437,0.7629,6.8299,12.0231,22.7234,7.4849,2.2803,5.1084,1.9271,19.6065,5.6806,4.1013,1.214,2.8243,7.275,14.6897,3.3735,4.5985,3.8646,1.4025,1.5093,4.5987,10.7996,3.1697,2.4243,12.0787,2.4641,2.5704,2.4282,13.0599,2.2491,4.2291,1.2867,15.4134,5.3807,9.9295,3.6412,10.1918,7.9722,8.8049,7.6055,3.858,1.8471,5.197,,,PD,0.09431,PD,,PD,0.38955,4.4183,4.0121,0.78674,10.8015,1.8673,0.38537,3.6785,3.7816,50.6811,16.6075,251.65,3.9416,5.0273,1.4415,1.8082,4.032,7.556,2.0954,3.2929,1.2913,7.0646,11.4416,20.9464,8.2725,2.3812,5.0034,1.896,19.0941,5.557,3.907,1.0996,2.7175,8.2356,14.3578,3.2575,4.3287,3.3827,1.6422,1.5411,4.0902,10.7597,2.811,2.2539,10.4359,2.2307,2.5661,2.1026,13.3842,2.0212,4.0167,1.179,14.6608,5.394,8.1901,4.3288,9.9716,8.3352,8.2112,8.0591,3.2891,1.5717,4.9895,,,,,,,,,,,,,,,76,,,,391
+3660,1.5014,2.0401,,60-69y,Other,,,16.8287,4.2161,2.4147,2.0154,1.3963,ppmi,,,F,,0.41711,4.6203,4.304,0.83163,9.4258,1.6345,0.39651,3.0971,2.7481,43.9109,13.2843,220.1,3.8981,4.4947,1.5854,1.8384,3.699,7.0898,2.0043,3.1598,0.46855,6.2172,10.5814,14.3427,6.9838,2.4573,4.7281,1.7992,18.5872,6.2851,4.0317,1.1391,2.9341,7.0986,13.3053,3.4776,3.9728,3.0629,1.4431,1.2689,4.6292,10.6155,3.0644,2.3607,12.2477,2.2247,2.5491,2.1884,12.9505,1.9926,4.3615,1.2417,14.3802,5.643,9.1518,3.6331,10.3142,7.6658,7.7305,7.5316,3.7883,1.5672,4.299,,,PD,0.076837,PD,,PD,0.36623,3.6844,4.0943,0.68476,10.0989,1.8357,0.37067,3.1584,2.8719,43.448,12.7784,219.8204,4.0171,4.7643,1.3599,1.9126,4.0273,6.8292,2.0484,3.0352,0.76253,6.5964,10.9911,14.259,7.3417,2.2394,4.24,1.7637,18.9101,5.6584,3.9988,1.0776,2.6172,8.614,13.796,2.8243,3.91,3.5964,1.5265,1.281,4.1759,11.092,2.5858,2.2619,10.5356,2.0515,2.3009,1.9899,11.956,1.6881,4.0128,1.1803,14.2785,5.4691,8.2236,4.3689,10.3336,6.8088,7.298,7.0898,3.7054,1.3941,4.0716,,,,,,,,,,,,,,,61,,,,392
+3661,1.344,1.8826,,50-59y,Other,,,18.7878,4.9229,2.862,2.3328,1.4401,ppmi,,,M,,0.45823,4.9508,3.9433,0.93579,9.603,1.8112,0.39586,3.3501,3.3324,49.6912,14.9165,232.9129,4.0336,4.9473,1.8305,1.8537,4.0103,7.6751,2.2492,3.2375,0.49291,7.2928,12.0897,25.4155,8.1467,2.5892,5.1062,2.0931,19.8356,6.0774,4.4054,1.2718,2.7945,7.3374,14.8879,3.9827,4.9137,3.3976,1.5481,1.4479,4.8133,11.2218,3.2784,2.0715,13.3492,2.0551,2.6541,2.0693,13.889,1.5459,4.2302,1.2017,14.8597,5.2784,9.388,3.7336,10.5518,7.2366,8.129,8.101,3.7957,1.2692,4.7299,,,,0.063302,CN,,HC,0.4077,4.3375,4.1498,0.89994,11.3965,1.9306,0.40581,3.4253,3.469,48.6345,14.0297,236.7858,3.8097,5.2848,1.7306,1.9342,4.0565,7.4442,2.2296,3.3759,0.44869,6.6722,11.0361,20.5171,9.5446,2.3359,4.9108,2.0593,19.7648,5.3105,4.1709,1.1424,2.7176,8.2777,13.8839,3.2619,4.6979,3.1078,1.6271,1.4747,4.3122,11.3599,3.1131,2.2639,11.3776,1.9238,2.5301,1.9791,12.8228,1.5494,4.0836,1.2094,16.3353,5.644,7.9633,4.9427,11.3549,7.6799,8.1074,8.2812,3.5589,1.3072,4.5445,,,,,,,,,,,,,,,58,,,,393
+3662,1.8633,1.8132,,60-69y,Other,,,21.2342,5.8449,3.0907,2.5602,1.4267,ppmi,,,F,,0.49258,4.777,4.579,0.8885,10.0655,1.7862,0.44467,3.2866,3.503,52.8378,17.9139,251.8286,4.2012,4.7825,1.7845,2.2884,4.0822,7.7526,2.457,3.5283,0.5385,6.529,12.1998,13.7461,7.4338,2.7053,5.2824,2.0521,18.8174,6.3442,4.6001,1.1106,2.5708,7.3771,14.9107,3.8472,4.283,3.5449,1.6413,1.7383,4.9514,11.3264,3.2698,2.4732,11.7632,2.4451,2.6191,2.4901,15.4035,2.2593,4.5622,1.4617,16.0158,5.4929,9.606,3.9615,11.36,7.9401,9.4129,8.8574,4.2868,1.7072,5.6421,,,PD,0.09033,PD,,PD,0.41957,4.3362,4.6571,0.90612,10.7998,1.9964,0.43277,3.3258,3.7048,53.0577,17.2837,257.5621,3.831,5.2109,1.8803,2.2682,4.2569,8.0991,2.3471,3.7897,0.62993,7.3376,12.9756,15.6094,8.0421,2.595,5.0143,2.0004,19.7076,5.8777,4.2642,1.2638,2.9766,8.4229,15.147,3.3323,4.4261,3.5639,1.7438,1.7461,4.5738,11.4173,3.1638,2.5024,10.4532,2.5727,2.6732,2.2989,15.8038,2.3832,4.3455,1.3136,15.3672,5.3314,8.5383,4.8398,11.1202,8.3261,8.9574,8.9788,3.9397,1.5971,5.4148,,,,,,,,,,,,,,,62,,,,394
+3664,0.82898,1.5321,,70-79y,Other,,,15.9399,4.9853,2.7899,2.1317,1.0136,ppmi,,,M,,0.39988,3.8248,3.6705,0.83669,9.0953,1.544,0.34711,3.1229,2.8881,45.3105,12.715,195.8748,3.3918,4.6282,1.6755,1.9398,2.922,7.2097,1.8725,3.01,0.31599,5.992,10.9532,11.0235,7.3593,2.3174,4.0996,1.5328,15.1889,6.0003,3.7826,0.94882,2.2026,5.7894,13.616,3.5696,4.1242,3.1342,1.4584,1.2418,4.0468,10.1499,3.1402,1.9767,10.4446,2.1212,2.3538,1.8345,10.8912,1.7707,3.5679,1.0824,13.6452,4.4402,8.041,3.804,10.0771,6.2288,7.1517,7.1173,3.8488,1.4226,4.136,,,PD,0.067366,PD,,PD,0.36169,3.1818,3.3653,0.83472,9.1469,1.8723,0.35994,3.1489,2.9056,45.1463,12.9565,200.6099,3.4838,4.7382,1.612,1.7193,3.333,7.2786,1.9812,3.2688,0.4819,5.934,11.2655,9.9484,7.8549,2.331,3.8225,1.5211,16.2537,4.5912,4.019,0.94387,2.2216,6.5851,14.1233,2.7199,3.9091,3.02,1.5605,1.2397,3.7402,10.4757,2.9861,1.9443,9.8598,1.9844,2.3389,1.6013,10.9729,1.7006,3.5629,1.0523,12.9146,4.1578,8.4417,4.2003,10.2457,6.8187,6.9013,7.5673,3.2684,1.282,4.013,,,,,,,,,,,,,,,77,,,,395
+3665,2.1161,2.4067,,50-59y,Other,,,19.123,5.5965,3.0707,2.3208,1.9828,ppmi,,,M,,0.44534,4.6365,4.4222,0.83545,9.0759,1.6152,0.4054,3.38,3.0917,50.9156,15.7664,231.6481,3.5737,4.2367,1.6145,1.639,3.7366,7.6286,2.0761,3.2265,1.117,6.811,10.8878,34.1944,7.3864,2.3367,4.451,1.7333,18.0093,6.6088,4.0971,1.0627,2.3064,6.8329,12.0654,3.9832,4.4173,2.8406,1.3752,1.4669,4.6639,10.5376,3.1874,2.5397,10.1085,2.0063,2.4153,2.2974,11.1733,1.8707,4.1688,1.3571,14.4047,5.0212,8.6809,3.4947,10.3489,7.12,8.4968,7.9246,3.4421,1.5091,4.9822,,,PD,0.087912,PD,,PD,0.43407,3.8499,4.235,0.86008,10.4129,1.7701,0.41294,3.4078,3.4492,49.1642,15.4206,236.0412,3.4942,4.3601,1.673,1.6987,3.9928,7.5382,1.9815,3.5544,1.1223,6.8049,11.2515,26.4763,7.9179,2.121,4.1696,1.8109,18.0315,6.1371,3.7777,1.0923,2.3437,8.0811,13.5984,3.3151,4.3163,3.5655,1.4232,1.4523,4.281,10.3147,2.9657,2.6027,9.2055,2.173,2.2464,2.331,10.3877,2.0513,4.1613,1.3859,14.3573,5.1188,7.9913,4.2039,10.0311,7.5339,8.4261,8.1081,3.3741,1.5633,4.9316,,,,,,,,,,,,,,,52,,,,396
+3666,1.1124,1.9398,,70-79y,Other,,,22.8592,5.2041,2.9585,2.1639,1.1266,ppmi,,,M,,0.46881,4.7316,4.6452,1.001,8.1453,1.7048,0.4136,3.3703,3.0696,50.0013,18.2154,271.1956,4.0791,4.9626,1.7404,2.0654,3.7365,8.1344,2.2179,3.5494,0.4994,6.6138,12.5288,8.5263,7.6484,2.6235,4.6264,1.8987,20.7834,5.7461,4.3402,1.0623,2.822,7.2861,13.9154,3.4961,4.5227,3.6961,1.666,1.7869,4.2127,10.4005,3.3972,2.3881,12.953,2.5178,2.7642,2.4697,14.5567,2.3098,4.3244,1.2763,15.9213,5.7389,8.4763,3.5365,10.4699,7.5489,9.3534,8.6863,4.2224,1.886,5.7664,,,,0.083756,CN,,HC,0.42916,4.2894,4.2279,0.99076,9.9749,2.0586,0.41131,3.1482,3.0074,49.504,17.8137,277.1395,3.778,4.7392,1.8712,2.1081,4.0406,7.8699,2.2283,3.7614,0.5479,6.6765,12.383,5.675,7.7683,2.6719,4.5847,1.9043,19.1634,5.307,4.0204,1.3097,3.0737,8.0396,15.2913,3.1312,4.2721,3.5133,1.8237,1.7947,4.1438,10.2445,3.2148,2.2682,11.6778,2.0204,2.6922,2.2233,14.5789,2.0318,4.193,1.2302,17.4846,5.5446,7.5864,4.7094,10.8518,7.9214,8.9507,8.6961,3.9174,1.5153,5.5018,,,,,,,,,,,,,,,76,,,,397
+3668,1.5363,1.9134,,60-69y,Other,,,20.8979,5.269,2.6111,2.2874,1.3725,ppmi,,,F,,0.47913,4.234,4.5475,0.8289,8.9251,1.6653,0.40083,2.979,3.3618,47.8211,17.2771,227.5582,3.7234,4.1893,1.6718,2.1717,3.5703,7.3215,2.0381,3.1672,0.44957,6.2055,11.4868,15.2921,7.4021,2.4926,4.5535,1.7155,18.8336,6.1819,4.1338,1.0842,2.484,6.7972,14.2019,3.3889,4.2491,3.1669,1.6489,1.5715,5.3651,12.5413,3.4135,2.3901,11.5362,2.4249,2.5893,2.3079,12.7171,2.1511,4.1921,1.2517,13.9022,5.0416,8.8981,3.8496,11.5841,7.4334,8.0775,8.003,4.3732,1.7023,5.1445,,,PD,0.083264,PD,,PD,0.4062,4.0744,4.4499,0.8683,9.8451,1.8802,0.38949,3.3083,3.4975,48.0288,16.8221,230.393,3.8784,4.4094,1.8472,2.1265,3.7719,7.6509,2.0847,3.4919,0.53825,7.2553,12.1534,11.9577,8.1637,2.2578,4.484,1.6883,17.5224,5.413,4.0218,0.95563,2.468,7.4065,14.5811,2.7548,4.5393,3.6118,1.5079,1.5297,4.6312,12.1194,3.1667,2.4107,9.8806,2.1502,2.3524,2.1781,12.4091,1.7143,4.099,1.1571,13.9505,5.1839,7.8514,4.0939,10.6912,6.7063,7.7291,8.2207,3.6724,1.4817,4.8645,,,,,,,,,,,,,,,62,,,,398
+3700,1.4092,1.8847,,70-79y,Other,,,17.2171,4.4101,2.356,2.05,1.2533,ppmi,,,M,,0.40681,4.3301,3.707,0.752,8.5327,1.4279,0.35485,2.4434,2.8297,45.3744,15.1712,220.0881,3.7111,3.8323,1.4472,1.6814,3.2714,6.7501,1.9542,2.745,0.38773,5.6068,9.7643,9.5366,6.7752,2.185,4.6999,1.68,18.5103,5.2638,3.9551,0.96293,2.4067,6.6053,13.0232,2.8382,3.8621,3.0243,1.3689,1.3192,4.0596,9.6259,2.8649,2.1919,11.1199,2.3082,2.3987,2.0194,11.4692,1.887,3.8736,1.0944,14.6713,5.4585,9.1213,3.3487,10.5919,7.1387,7.0604,6.8502,3.6907,1.3945,4.2474,,,PD,0.075583,PD,,PD,0.36519,3.937,3.504,0.76374,8.9715,1.7472,0.35197,2.4169,2.8922,44.9714,14.9038,221.5539,4.0361,4.1067,1.4343,1.6707,3.6206,6.7114,1.9559,2.8824,0.3908,6.1526,9.9867,8.1935,7.0228,2.0446,4.4807,1.6295,18.5695,5.0467,3.7356,0.984,2.2329,7.3998,13.1793,2.3615,3.6421,3.1602,1.2682,1.2887,3.5585,9.962,2.5927,2.2957,9.6087,2.0494,2.1226,1.9412,11.7115,1.6969,3.7587,1.0666,13.5138,5.2674,7.8089,3.8903,9.9567,7.054,6.8121,7.5181,3.1484,1.3936,4.103,,,,,,,,,,,,,,,73,,,,399
+3702,1.564,1.796,,60-69y,Other,,,17.5174,4.6562,2.9798,2.3338,1.2668,ppmi,,,M,,0.46384,4.1629,4.1921,0.85208,8.6438,1.4806,0.40382,2.964,3.004,46.667,14.2924,228.8359,3.7553,3.6838,1.567,1.9997,3.4142,6.5494,2.2203,3.0107,0.49209,6.3973,10.191,15.8306,7.1348,2.2974,4.5845,1.7024,17.4694,5.7269,4.1259,1.1423,2.6193,6.3043,11.5225,3.3573,3.9692,2.9171,1.452,1.415,4.6208,10.2371,2.9085,2.1459,10.8673,2.3506,2.492,1.8705,12.2197,2.0798,4.583,1.2327,13.3731,4.8669,8.3106,3.4069,10.3776,6.2521,7.7494,6.8406,3.4897,1.4146,4.5061,,,PD,0.077831,PD,,PD,0.39614,3.533,3.7617,0.8578,9.1834,1.7165,0.39651,2.799,3.1464,47.4305,13.739,228.8182,3.6202,4.1076,1.6043,2.0711,3.8349,7.2472,2.0623,3.221,0.62708,6.6779,10.353,13.2598,7.6341,2.0308,4.3476,1.6301,16.9826,4.9332,3.8418,1.182,2.775,7.2095,12.0863,3.0925,4.2795,3.2777,1.3569,1.3448,4.1162,9.9203,2.7531,2.0901,9.8685,1.9599,2.1704,1.9544,11.1921,1.7484,4.4253,1.1723,13.6392,4.6487,7.4363,4.2316,10.0904,6.4827,7.3558,7.0505,3.6242,1.3798,4.3199,,,,,,,,,,,,,,,63,,,,400
+3704,1.279,2.9649,,60-69y,Other,,,17.6482,4.3994,2.7707,2.2514,1.1094,ppmi,,,M,,0.52247,5.1996,4.345,0.9112,9.0972,1.7474,0.41107,3.1278,3.0516,32.9487,16.384,267.6802,4.1981,4.126,1.5562,2.1235,3.5555,7.6791,2.2289,3.4736,0.45759,6.9457,12.1668,9.9083,7.5427,2.6216,5.632,2.0688,21.6933,5.6732,4.1373,1.3874,3.2071,7.3172,14.9978,3.3296,4.8645,3.3374,1.5114,1.5505,4.7083,11.5064,3.1576,2.3223,12.3953,2.5148,2.6095,2.4318,14.9163,2.2182,4.6412,1.365,15.9755,5.6604,9.9957,3.2945,9.9185,8.1918,8.7806,8.7184,3.8422,1.7664,4.7554,,,PD,0.080812,PD,,PD,0.48411,4.7964,4.2922,0.86733,10.6003,2.0274,0.39795,3.007,3.3618,35.175,17.3127,273.7322,4.2955,4.1085,1.6656,2.1096,3.7966,8.1248,2.2005,3.6978,0.62106,7.3252,13.5345,10.0672,7.7456,2.5483,5.5009,2.0909,21.1668,5.0238,4.0896,0.8955,2.4127,8.8489,16.3777,2.6459,4.6915,3.4308,1.5932,1.5405,4.3281,10.8999,3.0266,2.4626,10.1601,2.5062,2.3306,2.2456,12.4661,1.969,4.7199,1.2458,15.5941,5.5371,7.9034,4.0702,11.3788,8.0251,8.236,9.0678,3.8766,1.6552,4.5803,,,,,,,,,,,,,,,69,,,,401
+3709,1.0206,1.4932,,50-59y,Other,,,18.937,4.6367,2.5524,2.0773,0.93917,ppmi,,,M,,0.44764,4.6054,4.1223,0.84428,10.5773,1.5953,0.38546,3.0509,2.7177,43.1324,15.9744,253.1811,4.1164,4.0146,1.6301,1.978,3.5711,7.1622,2.1679,3.1519,0.39765,6.3827,10.8745,6.6381,7.1379,2.466,5.5461,1.8971,18.7126,6.5914,4.0596,1.286,2.9376,6.2439,14.7682,3.159,4.2535,3.2714,1.4799,1.6003,4.8123,10.959,3.1041,2.2203,12.3197,2.2946,2.5573,2.2634,12.6852,2.1511,4.0571,1.2909,13.1402,5.1904,9.8311,3.3595,10.7917,8.6293,8.7664,7.5947,3.7769,1.4253,4.7683,,,PD,0.085469,PD,,PD,0.40402,4.1231,3.927,0.81279,11.8247,1.8501,0.40206,2.9722,2.9199,42.9688,15.8272,261.8239,3.7635,4.3219,1.6819,2.076,3.7032,7.7192,2.1338,3.2224,0.53724,6.5214,12.2901,6.0556,7.4165,2.3326,5.1237,1.8639,17.1633,5.3272,4.0433,1.2182,3.1507,7.433,15.9631,2.2665,4.2493,3.3888,1.5863,1.6212,3.9522,10.9515,2.9825,2.1689,10.3862,2.1117,2.2983,1.8349,12.8394,1.8763,3.877,1.2613,14.0909,5.4266,8.8731,3.9746,11.5074,8.2523,8.2455,8.0059,3.7578,1.2546,4.5696,,,,,,,,,,,,,,,56,,,,402
+3710,0.82583,1.5145,,-50y,Other,,,21.542,4.7809,3.0508,2.2599,1.0666,ppmi,,,M,,0.45421,3.9397,3.7463,0.85447,9.0358,1.5152,0.35614,2.6694,3.0199,50.7349,19.6272,246.4894,3.4161,4.1941,1.7112,1.8179,3.0205,6.8625,2.085,3.1816,0.49136,5.8119,9.9668,8.7692,6.6421,2.1951,4.4767,1.6145,17.5025,6.6945,3.9679,0.9868,2.4497,5.9474,12.2554,3.3466,3.9962,3.4396,1.2722,1.6258,3.8703,9.587,3.147,2.0354,10.139,2.0044,2.2553,1.9688,11.9099,1.6481,4.301,1.0773,13.7809,4.7179,7.7767,3.8976,10.3564,6.3191,8.2236,7.2522,3.5842,1.2124,5.1435,,,PD,0.077735,PD,,PD,0.43254,3.3626,3.6566,0.90197,10.334,1.7251,0.37633,2.7753,3.1876,50.9768,18.9028,248.0548,3.6196,4.0498,1.8359,1.7791,3.3635,6.8215,2.1132,3.4247,0.51131,5.7211,9.7843,9.2876,7.27,2.2198,4.1,1.7383,16.705,5.0792,3.7646,1.0167,2.3599,6.8732,13.1337,2.754,3.8192,3.3107,1.4259,1.6094,3.6086,9.3147,2.9418,2.0925,9.5736,1.872,2.1342,1.7298,12.1895,1.653,4.3726,1.0788,14.2175,4.9499,7.4044,3.9159,10.3965,7.0097,8.0793,7.4924,2.9809,1.2168,4.9288,,,,,,,,,,,,,,,37,,,,403
+3711,0.98244,2.2321,,50-59y,Other,,,22.4835,5.8462,2.814,2.4958,1.1793,ppmi,,,M,,0.49721,5.223,4.3548,0.929,10.4026,1.8705,0.42459,3.7345,3.4594,50.7736,19.4289,286.7288,3.6111,5.0304,1.8444,2.1531,4.0768,8.1825,2.451,3.5876,0.44267,7.3347,11.9997,13.1049,8.7334,2.8758,5.3288,2.1177,21.7773,7.4358,4.5898,1.2599,2.7737,7.5882,15.321,4.1521,4.9055,4.0974,1.7708,1.8346,4.9011,11.2299,3.7035,2.0954,13.0198,2.2354,2.9826,2.2536,14.5359,1.9042,5.0404,1.2886,16.3757,5.8585,9.3957,4.156,12.611,8.2308,10.0097,8.5938,4.7785,1.375,5.8802,,,,0.082674,CN,,HC,0.43932,4.4231,4.1972,0.91486,11.9269,2.2397,0.40975,3.8567,3.5658,50.6947,19.1455,288.3445,3.7732,4.9036,1.847,2.0746,4.7072,8.3209,2.4285,3.7342,0.45567,7.5253,12.2025,13.3657,9.2037,2.7206,4.571,2.0842,21.4176,6.0821,4.4741,0.99512,2.7283,8.7069,15.0731,3.6073,5.0079,3.8507,1.7686,1.825,4.4997,11.2112,3.3082,2.1801,11.346,2.1886,2.55,2.0611,13.7839,1.9716,5.0305,1.2568,17.5587,6.1435,9.1249,4.511,12.2229,8.1987,9.4165,8.3114,3.8996,1.3731,5.6179,,,,,,,,,,,,,,,53,,,,404
+3752,0.93321,2.3951,,50-59y,Other,,,21.0889,5.4131,3.4106,2.6478,0.90602,ppmi,,,M,,0.51393,4.4294,4.5222,0.90721,8.9246,1.6407,0.44446,3.7748,3.3442,53.6704,18.8267,227.8283,4.7856,4.7093,1.7701,2.2343,3.8558,8.1513,1.965,3.2754,0.42441,6.6368,11.6325,8.5231,7.9764,2.6726,4.8739,1.68,19.0219,6.6722,4.3295,1.2278,2.7302,7.0969,13.3271,3.805,4.5302,3.187,1.7322,1.5031,4.3432,10.0086,3.3709,2.402,12.5799,2.7721,2.8272,2.2652,14.813,2.4869,4.9565,1.1873,15.3575,5.365,8.5323,4.0586,10.7771,6.9658,8.6868,8.0096,3.6198,1.8284,5.0239,,,PD,0.079485,PD,,PD,0.46118,3.7803,4.4029,0.90488,10.5099,1.7474,0.43392,3.6646,3.392,54.6009,18.3036,234.7961,4.4432,5.3021,1.79,2.1056,3.9201,8.5371,2.0148,3.4552,0.47873,6.9337,12.7437,8.632,8.6924,2.291,4.2937,1.6645,20.3586,5.1326,3.8984,1.1353,2.5443,8.1674,14.9369,3.1975,4.6881,3.5494,1.6724,1.4584,4.287,10.3306,3.1791,2.4261,11.1877,2.1973,2.509,2.0839,14.2054,1.9804,5.0121,1.1297,14.5362,5.4208,8.7662,4.5281,11.1218,7.6283,8.4544,8.0446,3.6866,1.4685,4.7012,,,,,,,,,,,,,,,52,,,,405
+3753,1.2441,1.9429,,60-69y,Other,,,18.0178,4.8531,2.3933,2.1595,1.2608,ppmi,,,F,,0.46468,4.5551,4.1088,0.96274,8.9056,1.5757,0.41909,3.3529,3.0876,44.5264,14.0885,226.0806,3.981,4.9876,1.7493,1.855,3.3461,7.3178,2.1853,3.5703,0.4751,6.6701,10.8973,12.6439,7.9094,2.4161,4.6728,1.8295,20.1143,5.6541,4.1155,1.3785,2.8862,6.9356,13.482,3.378,4.4025,3.1674,1.5303,1.3531,4.3789,11.0121,3.3382,2.352,12.458,2.3521,2.4115,2.2885,14.725,2.2262,4.4177,1.254,14.6281,5.2001,9.3007,3.615,9.4878,7.9837,8.5642,7.5195,3.83,1.6745,4.6065,,,PD,0.075793,PD,,PD,0.42249,4.3262,3.8768,0.88061,10.2965,1.7449,0.41569,3.4437,3.1736,44.8859,14.1393,231.5835,4.049,4.9531,1.7249,1.9101,3.6331,7.5423,2.1654,3.6569,0.51045,7.2959,11.4272,10.4072,8.4984,2.1156,4.4506,1.7388,18.955,5.0526,3.9755,1.2145,3.002,7.7652,13.8024,3.0508,4.4897,3.6887,1.4916,1.3943,3.8815,10.7959,2.9508,2.2001,11.0391,2.0912,2.2205,1.9521,13.2575,1.8416,4.1915,1.2362,14.4289,5.5686,8.0796,4.0528,10.018,7.0947,8.4546,7.5205,3.644,1.4452,4.4221,,,,,,,,,,,,,,,69,,,,406
+3756,1.522,3.0616,,60-69y,Other,,,19.2966,4.5336,2.8312,2.1276,1.2812,ppmi,,,M,,0.50406,5.4271,4.6317,0.94689,10.1076,1.5415,0.43932,3.5719,3.5801,47.7597,16.2148,228.8475,4.3261,5.0679,1.8729,1.8359,3.7267,7.4136,2.1452,3.2585,0.72213,7.0221,11.7433,18.9402,7.5626,2.5726,5.2332,2.0151,21.419,6.3136,4.0907,1.1266,2.6012,8.0109,14.3726,3.973,4.3279,3.26,1.5566,1.562,4.7451,12.1355,3.4628,2.6976,11.7012,2.7519,2.64,2.3836,13.5006,2.4921,5.0247,1.3798,15.7323,5.6572,9.013,3.5495,11.4087,7.5105,9.3001,8.0849,4.241,1.856,4.9915,,,,0.07438,CN,,HC,0.44619,4.0698,4.3214,0.92291,11.0265,1.7259,0.44708,4.2791,3.6324,49.2261,15.7432,234.2482,4.2383,5.3833,1.866,1.9762,4.0797,7.8298,2.1499,3.2967,0.67257,7.198,11.8631,16.5131,8.5822,2.3477,4.5074,1.988,19.55,6.1385,3.8779,1.0856,2.8117,9.2178,14.232,3.346,4.7814,3.3039,1.578,1.5163,4.037,11.6414,3.1494,2.6341,9.9701,2.7023,2.4053,2.1257,14.5637,2.2923,4.8365,1.2855,15.7125,6.1947,8.1577,4.5057,11.2508,7.2709,9.1272,8.2681,3.511,1.6715,4.689,,,,,,,,,,,,,,,65,,,,407
+3757,1.579,1.3964,,70-79y,Other,,,16.7861,4.3493,2.264,2.0536,1.5701,ppmi,,,M,,0.48804,4.7884,4.3914,0.86998,8.6088,1.6025,0.4237,3.4838,3.3929,42.741,13.1601,207.2504,3.6927,5.0685,1.8415,1.9387,3.4881,7.1452,1.972,3.0313,0.40044,6.9752,11.0594,13.1824,7.7737,2.4089,4.6594,1.8436,17.1346,6.1413,4.009,1.1436,2.5157,7.0585,12.9846,3.9459,4.8031,3.6451,1.495,1.3316,4.2569,11.3045,3.1507,2.4239,11.9138,2.352,2.5694,2.4051,12.9415,1.9946,4.0079,1.379,13.9586,5.2904,8.1359,3.9239,11.2366,6.5245,7.8843,7.8513,3.8438,1.5662,4.4628,,,PD,0.084842,PD,,PD,0.41291,4.2876,4.0177,0.88282,9.5899,1.8736,0.40904,3.4178,3.3401,43.7096,12.7335,214.034,4.0091,5.2446,1.9154,1.8715,3.8117,7.2334,2.0006,3.2521,0.46344,7.3054,11.688,10.9391,8.042,2.3245,4.6002,1.8555,19.2877,5.0952,3.8357,1.0462,2.6826,7.5349,14.4262,3.2891,4.6308,2.9872,1.4725,1.3579,3.9174,10.6394,3.104,2.2145,10.7469,1.8304,2.3392,2.1706,12.4827,1.83,3.823,1.2983,13.8038,5.4902,7.5435,4.3867,11.639,7.3351,7.6622,8.1172,3.4305,1.4865,4.2606,,,,,,,,,,,,,,,70,,,,408
+3758,3.3207,2.3622,,70-79y,Other,,,18.8202,5.0381,2.9444,2.3756,2.9962,ppmi,,,M,,0.43178,4.1926,4.3399,0.90472,8.3573,1.4415,0.38916,3.375,4.1346,45.4803,14.445,214.5031,3.8351,5.017,1.5641,1.9182,3.8207,6.8118,2.0118,3.3841,1.771,7.0164,10.892,49.8544,7.5265,2.2309,5.0401,1.6812,18.1995,6.5408,3.685,1.084,2.5144,6.7854,14.3221,3.6097,4.3282,3.1829,1.3083,1.5508,4.788,11.3522,3.182,2.3986,11.1492,2.3111,2.2637,2.3294,13.1962,2.0286,4.6802,1.2484,14.8723,5.2848,7.3717,3.8632,11.3513,7.3235,8.511,7.0197,3.518,1.4906,4.9913,,,PD,0.06953,PD,,PD,0.41833,4.087,4.0423,0.86534,9.6804,1.5922,0.39595,3.4016,4.4184,48.8549,14.7699,218.7794,3.5817,5.0515,1.5397,1.8288,3.8047,7.1298,2.0176,3.7641,2.3673,6.7791,11.7861,42.3039,8.0481,2.0475,4.9066,1.608,17.8022,5.2212,3.5396,1.1252,2.67,7.7511,15.1915,2.9913,4.2274,2.9901,1.3743,1.4721,4.2661,11.001,3.0631,2.331,9.8533,2.0989,2.0572,2.0265,13.078,2.0201,4.5896,1.1674,15.4584,5.7484,7.3687,4.2211,9.8218,7.2475,8.4216,7.4452,3.1953,1.4387,4.7027,,,,,,,,,,,,,,,70,,,,409
+3759,0.63937,1.3382,,50-59y,Other,,,16.4614,4.1967,2.2784,2.0336,0.8026,ppmi,,,F,,0.41056,3.8317,3.688,0.80244,7.569,1.3496,0.34449,2.9568,2.8952,40.234,14.4858,204.847,3.722,4.0644,1.4891,1.8637,3.0849,6.2183,1.7707,3.1139,0.55892,5.0169,9.7212,6.7031,6.75,2.0805,3.9854,1.5306,16.0383,4.8481,3.5251,0.85475,2.1497,5.8135,11.3416,3.0043,3.7105,3.1637,1.2399,1.3531,3.8193,9.5744,2.8313,2.0259,10.3889,2.3502,2.1615,2.0159,12.1917,2.1134,3.8781,1.0358,14.1991,4.7564,8.7555,3.2898,11.1923,6.3397,7.9077,6.8214,3.3923,1.6713,4.2172,,,,0.073138,CN,,HC,0.36356,3.5475,3.5152,0.79272,8.9362,1.6586,0.3497,3.0951,2.8719,41.1346,14.2223,207.2172,3.0114,4.553,1.5096,1.7328,3.2658,6.6932,1.846,3.2171,0.55427,5.5937,10.1276,6.2785,7.3149,2.0056,3.9037,1.5648,16.5485,4.3515,3.5053,0.97769,2.418,6.6576,12.3545,2.339,3.7106,3.1159,1.2979,1.3474,3.4214,9.4127,2.616,1.9269,8.3431,1.7547,2.1193,1.7961,11.724,1.7373,3.6141,0.97937,13.8466,5.0942,6.5472,3.9698,8.9043,6.7803,7.5684,7.54,2.9591,1.2997,4.0287,,,,,,,,,,,,,,,54,,,,410
+3760,1.258,2.1795,,60-69y,Other,,,18.0462,4.6429,2.3051,2.1453,1.3539,ppmi,,,M,,0.51511,4.4348,4.3955,0.86673,9.9268,1.5031,0.41244,3.4062,3.483,46.1483,15.3337,237.8174,4.1342,4.8706,1.7067,1.8792,3.0611,7.6546,1.9975,3.1587,0.70448,6.1803,11.6793,17.9925,7.3857,2.2564,4.3916,1.7362,18.8007,6.2668,3.8347,0.90728,2.3612,6.8465,13.9499,3.4315,4.4722,3.2438,1.3429,1.584,4.4588,10.6609,3.1878,2.5754,11.7156,2.157,2.3782,2.5617,13.6139,2.0883,4.8343,1.2809,14.4255,5.3744,9.1063,3.6121,11.6537,7.7704,8.9453,7.844,3.6267,1.8531,4.8339,,,PD,0.087266,PD,,PD,0.44542,4.2359,4.244,0.81588,11.2565,1.5915,0.41852,3.2782,3.6978,46.5947,15.3311,240.6035,4.1585,5.1435,1.6877,2.0396,3.259,8.0526,1.8805,3.2944,0.65833,7.21,12.0708,15.6493,8.3541,2.0055,4.6949,1.7972,17.8899,5.645,3.5108,1.0449,2.2686,7.5634,13.7981,3.3749,4.2504,3.4823,1.3436,1.6028,3.8365,9.9366,3.0039,2.5853,10.679,2.2377,2.1322,2.2269,13.271,1.9335,4.7945,1.2736,13.8626,5.3816,8.54,4.7758,10.3892,7.7091,8.6153,7.2018,3.302,1.6414,4.6832,,,,,,,,,,,,,,,69,,,,411
+3762,1.6085,3.4749,,70-79y,Other,,,22.0245,4.3437,2.629,2.2175,1.3279,ppmi,,,F,,0.41564,4.1599,4.1798,0.78232,8.8626,1.4088,0.37054,3.3573,3.1428,46.295,16.5138,226.2376,3.5997,4.1528,1.5266,1.7106,3.2901,7.1364,1.7652,3.0181,0.58598,6.206,10.4368,29.5462,6.9975,2.1261,4.5405,1.5698,17.0375,5.7844,3.717,1.1122,2.6767,6.5733,12.7223,3.5819,4.3516,3.0441,1.4224,1.578,4.4147,10.3728,3.0743,2.2132,11.5948,2.2209,2.4119,1.9716,12.4769,1.7111,4.016,1.1193,13.7478,5.3809,8.8578,3.3442,11.1469,6.2751,8.3605,6.8953,3.7023,1.2195,5.1762,,,PD,0.083458,PD,,PD,0.38474,3.5697,3.9033,0.79745,9.4248,1.5833,0.37762,3.2241,3.5097,45.8719,16.6614,227.0502,3.6729,4.4313,1.513,1.7605,3.5977,6.9167,1.7904,3.2574,0.73319,5.976,10.4491,24.7291,7.7444,1.9732,4.3205,1.5545,16.5924,4.838,3.5152,1.1054,2.8483,7.4107,13.3632,2.8339,3.9644,2.9987,1.3239,1.5909,4.0038,10.5431,2.803,2.1024,10.4443,1.8655,2.1784,1.7733,12.8993,1.5675,4.0124,1.0355,13.5793,5.088,7.527,4.57,9.6396,6.8115,8.1517,7.1831,3.3581,1.1634,4.9713,,,,,,,,,,,,,,,70,,,,412
+3763,1.2286,1.8612,,50-59y,Other,,,22.208,4.7058,3.1224,2.3776,1.4065,ppmi,,,M,,0.47238,4.9956,4.6987,0.94909,10.0226,1.7307,0.40357,2.9559,3.1177,52.9574,19.1942,259.2485,4.0948,4.1942,1.8899,2.1618,3.8096,7.7287,2.2774,3.529,0.45514,6.7866,11.387,11.0569,7.8554,2.5376,4.6489,1.9196,19.0607,6.3888,4.5198,1.2304,2.9752,7.6628,13.7158,3.3824,4.771,3.5121,1.5907,1.6995,4.8813,11.8193,3.4277,2.6403,12.9884,2.4409,2.6104,2.5104,14.0483,1.8812,4.6644,1.3139,14.9944,5.7737,8.7257,3.3789,11.1343,7.0171,9.4352,7.4504,4.0406,1.5722,5.4139,,,PD,0.078611,PD,,PD,0.43504,3.9906,4.5881,0.96299,10.3826,1.8701,0.41558,3.4008,3.3032,52.1126,18.9154,264.2143,4.116,4.6166,1.99,2.214,4.1029,7.4373,2.4937,3.7135,0.65793,7.1214,11.1182,15.1968,8.0628,2.2694,4.8368,2.1432,19.7076,5.7811,4.1956,1.2454,3.0308,8.7465,14.4167,3.0098,4.5356,3.2891,1.5011,1.7037,4.4847,12.0444,3.1745,2.5663,10.3729,2.2745,2.3542,2.1947,13.3873,2.0209,4.5596,1.3013,14.9696,5.6732,8.0124,4.2641,10.9848,7.7312,9.2999,8.199,3.4531,1.5655,5.2583,,,,,,,,,,,,,,,59,,,,413
+3764,1.9054,2.1462,,50-59y,Other,,,22.4757,4.8373,2.708,2.2744,1.3194,ppmi,,,M,,0.49467,5.2989,4.9286,1.1797,10.3465,1.7786,0.46064,3.7514,3.592,50.5939,18.4893,275.1407,4.5059,5.8079,2.127,2.2084,3.9587,8.6943,2.2923,3.7479,0.6551,7.5029,13.5905,13.2123,8.278,2.8441,5.7674,2.0695,23.5256,7.071,4.4534,1.345,3.0884,8.6376,16.0945,4.1442,4.852,3.9492,1.8872,1.7028,5.3927,12.171,3.6192,2.632,14.5238,2.7524,2.8225,2.5228,16.3021,2.3285,4.9891,1.4301,16.9244,7.4644,9.684,3.7036,11.2385,8.2318,9.4722,8.7836,4.7437,1.8754,5.5265,,,PD,0.094886,PD,,PD,0.45292,4.7418,4.698,1.0863,11.463,1.9825,0.45305,4.0389,3.7076,49.4167,18.3811,279.6072,4.3816,5.399,2.0086,2.2075,4.3201,8.5424,2.4643,3.9108,0.66749,8.3401,13.1153,14.8174,9.0482,2.6091,5.6109,2.1455,22.6308,6.4176,4.5482,1.5788,3.6248,9.8765,16.5323,3.603,4.793,3.9824,1.8781,1.7258,4.6412,11.7694,3.2511,2.5711,12.3347,2.4982,2.735,2.3541,15.9826,2.1447,4.8687,1.3882,17.1996,7.1357,9.0854,4.2879,11.5467,8.8632,9.3152,8.8648,4.2507,1.7641,5.3385,,,,,,,,,,,,,,,53,,,,414
+3765,1.2672,1.8611,,60-69y,Other,,,16.3613,4.4683,2.3489,2.0295,1.0101,ppmi,,,F,,0.34209,3.9068,3.64,0.78759,8.4327,1.2559,0.33608,2.7253,2.5467,43.6021,13.6772,197.7393,3.5151,3.4627,1.5566,1.6688,3.064,6.5238,1.8955,2.9362,0.40633,5.2409,9.3704,9.0818,6.2886,1.9204,4.4068,1.4875,17.1944,5.082,3.4927,1.0711,2.4044,5.9779,12.3076,2.5194,3.8083,2.8027,1.2592,1.1765,3.7324,8.657,2.956,1.956,11.4969,1.8529,2.1476,1.9893,11.6022,1.6619,3.1808,1.0509,12.5304,4.811,8.5271,2.7817,9.2771,7.0751,7.3264,7.0266,3.0082,1.3306,4.1981,,,,0.080724,CN,,HC,0.3103,3.2778,3.4923,0.75561,9.2901,1.4546,0.33923,2.9,2.5319,44.429,13.4796,203.0239,3.3901,4.0019,1.4467,1.7075,3.314,6.7997,1.9575,3.0616,0.40498,5.485,9.5466,8.7868,7.2658,1.8793,4.1135,1.5592,15.7332,5.1958,3.5099,0.87369,2.3351,6.7932,11.8792,2.3655,3.7845,3.5572,1.2546,1.1784,3.4592,9.1984,2.6765,1.9714,10.2392,1.76,2.008,1.8317,11.6684,1.6036,3.0782,1.0633,12.9969,5.0062,7.1766,3.7107,8.5933,7.2607,7.1911,6.6794,2.9324,1.2153,4.0152,,,,,,,,,,,,,,,68,,,,415
+3767,0.76565,1.1671,,50-59y,Other,,,18.6804,4.1261,2.3368,1.9721,0.95678,ppmi,,,F,,0.44545,4.5073,4.4181,0.85671,9.5588,1.56,0.38626,4.0413,2.8378,43.5926,15.1396,234.6068,4.1838,4.788,1.6303,2.2307,3.5368,7.5032,2.1159,3.1396,0.36362,7.2716,10.8069,7.9512,7.5536,2.3681,4.1984,1.9672,19.3605,6.5001,4.1049,1.0327,2.4856,6.9443,12.8117,3.6803,4.6743,3.5259,1.5892,1.4786,4.3667,10.6235,3.0433,2.0561,11.7584,2.2441,2.5607,2.1317,13.1281,1.8393,4.3613,1.2419,13.9463,5.1091,8.7818,3.7915,10.6532,6.2377,8.0026,6.8818,3.7492,1.5802,4.7446,,,,0.078021,CN,,HC,0.40833,4.0299,4.0073,0.86101,10.1934,1.7565,0.40006,3.9713,2.9639,43.2962,14.8266,238.0345,3.8451,5.6686,1.715,1.8824,3.7158,7.3361,2.2502,3.3202,0.41452,6.3753,10.8222,7.7275,8.0832,2.3105,4.4476,1.9045,17.9521,4.938,4.0485,1.0687,2.5388,7.7705,13.3115,2.825,4.3852,3.2915,1.6113,1.4593,3.8049,11.1234,2.9205,2.0947,11.1744,2.1415,2.4225,1.8678,12.886,1.8892,4.1724,1.2225,13.8105,4.8826,8.3437,4.3446,11.2899,6.8813,7.7447,7.1951,3.463,1.4545,4.4793,,,,,,,,,,,,,,,53,,,,416
+3768,1.8814,2.6891,,50-59y,Other,,,21.2562,5.1914,2.3464,2.3065,1.6873,ppmi,,,M,,0.47075,4.6121,4.7026,0.90503,9.1144,1.6083,0.40641,4.8069,3.4438,47.6507,17.0644,245.2498,4.4175,4.6227,1.6601,2.2541,3.5439,7.2256,2.1071,3.1239,0.90348,7.1829,11.625,30.5043,8.426,2.5256,4.6383,1.8374,17.8265,6.8498,4.1646,1.1094,2.691,6.8316,13.8727,4.0406,4.7634,3.6926,1.6442,1.5712,4.9497,11.1206,3.005,2.4148,12.0981,2.4695,2.6565,2.3949,13.1222,2.043,4.4824,1.3237,14.6833,5.2964,8.648,4.1699,10.4217,7.0041,9.1592,7.3619,4.1865,1.916,5.2167,,,,0.081352,CN,,HC,0.40924,4.0873,4.3406,0.86907,10.263,1.7689,0.4004,3.7592,3.5288,47.2493,16.3373,246.0385,3.9458,4.9872,1.7556,2.0572,3.611,7.2197,2.1002,3.3014,0.84388,6.7193,11.5987,19.3555,8.5952,2.3596,4.6747,1.7796,17.0527,5.2269,3.6394,1.2131,3.0033,7.5712,14.7184,3.2004,4.3998,3.4066,1.5865,1.5519,4.4856,10.953,2.8888,2.3232,10.4323,2.1366,2.3768,2.0707,13.1899,1.7748,4.3011,1.1924,14.3672,5.3154,7.7341,4.7936,10.4578,7.0043,8.6685,8.3094,3.5626,1.5145,4.9709,,,,,,,,,,,,,,,59,,,,417
+3769,1.6862,2.8555,,70-79y,Other,,,14.9798,4.2404,2.3932,2.0654,1.5069,ppmi,,,M,,0.41085,4.428,4.298,0.85214,9.0563,1.5196,0.37866,3.2557,2.6032,41.7921,12.2592,206.2656,4.2391,4.8459,1.7001,1.9006,3.5839,7.2368,1.9712,2.957,0.54394,6.3575,11.1047,18.333,7.7012,2.4434,4.8466,1.7594,17.8192,6.7384,3.6829,1.0474,2.6526,6.8761,13.39,3.1626,4.2836,2.9403,1.5853,1.231,4.3963,10.98,3.3224,2.2827,12.399,2.9705,2.4449,2.2005,13.384,2.4918,4.0669,1.3027,14.1878,4.9626,8.7464,3.7557,11.6868,6.5793,7.2031,7.3925,3.494,1.7903,4.0687,,,,0.073774,CN,,HC,0.37043,3.9876,4.0957,0.81965,10.4445,1.5474,0.37866,3.5947,2.742,41.3472,11.6717,207.4112,4.0977,5.2539,1.642,2.0607,3.498,7.4354,1.8416,3.0951,0.68905,6.5564,11.3446,14.8923,8.202,1.9896,4.4814,1.587,17.411,5.4537,3.2706,1.3268,2.7765,7.2895,13.9913,3.2589,4.4943,3.3113,1.3621,1.1884,4.1034,11.3422,2.775,2.3135,11.1192,2.3329,2.0465,2.0445,14.2399,2.0746,3.9003,1.1579,14.8007,5.2109,7.8697,4.8402,10.5538,7.8328,7.0042,7.4977,3.1952,1.6778,3.8211,,,,,,,,,,,,,,,70,,,,418
+3770,0.99292,1.9503,,50-59y,Other,,,18.7845,4.7191,2.4756,2.2328,1.3633,ppmi,,,F,,0.48309,5.0548,4.3791,0.90808,10.7136,1.6426,0.38466,3.2622,3.2109,47.0287,15.9598,246.4768,4.2926,4.8924,1.822,2.0709,3.601,7.5848,2.0177,3.1987,0.45004,6.5226,12.1338,11.0088,7.6517,2.5417,5.2655,1.8449,18.4725,5.648,3.954,1.3754,2.9155,7.1852,15.0197,3.2088,4.1904,3.1393,1.6749,1.6082,4.6525,12.1197,3.3824,2.4642,11.7493,2.3025,2.3891,2.3821,13.1767,1.9995,4.1354,1.2708,15.2701,5.6642,9.6141,3.5855,11.7804,7.9239,8.6582,8.0402,4.0314,1.6362,5.0256,,,PD,0.077989,PD,,PD,0.42178,4.4718,4.0913,0.89986,11.9539,1.678,0.38552,3.5443,3.1375,47.282,15.6727,247.1526,4.1812,5.5014,1.8005,2.0146,3.6719,7.548,2.0517,3.3706,0.4839,7.0124,12.1689,8.9626,8.5396,2.037,5.1922,1.7845,18.3661,5.8989,3.6373,1.2263,2.8133,7.9881,15.5524,3.0571,4.3151,3.6518,1.4481,1.5358,4.2383,12.2376,3.0548,2.3252,10.9463,2.545,2.1129,2.0355,13.0138,2.1416,4.0644,1.1596,14.2099,5.5023,8.4916,4.8514,11.3341,7.8957,8.3252,8.1572,3.4266,1.6041,4.7047,,,,,,,,,,,,,,,55,,,,419
+3771,1.0995,1.6122,,70-79y,Other,,,15.7839,4.2184,2.102,1.9259,1.078,ppmi,,,F,,0.38463,4.4677,3.9552,0.75378,7.9483,1.3894,0.33636,2.9376,2.4921,40.0543,12.4973,175.9825,3.3778,4.0762,1.4796,1.7345,3.3509,6.2379,1.711,2.43,0.52941,5.0266,9.1586,10.8901,6.6677,2.0409,4.372,1.6108,16.206,5.2426,3.6296,1.0421,2.4769,6.9531,10.8883,2.9997,3.7557,3.2716,1.166,1.2237,3.7344,8.5564,2.8181,2.1406,11.2372,1.875,2.43,2.0012,12.2198,1.5226,3.562,1.0571,14.4451,5.2968,6.9044,3.3174,9.6078,5.7945,7.1654,7.0197,3.3026,1.3409,3.8969,,,PD,0.060968,PD,,PD,0.35972,3.5998,3.7645,0.74433,8.9302,1.5588,0.34823,3.072,2.7002,39.8626,12.3472,181.0566,3.4612,4.1701,1.4907,1.5511,3.2965,6.4969,1.7407,2.6282,0.45576,5.8436,10.159,8.3155,7.1291,1.9738,3.9958,1.6703,15.464,4.7293,3.3554,1.0373,2.5345,8.2236,12.0929,2.3887,3.7049,2.9531,1.2037,1.1705,3.3355,8.8656,2.538,2.2046,9.0963,1.9611,2.2198,1.9066,12.4106,1.6768,3.3735,0.9906,14.1901,5.6478,6.7087,3.9919,10.7479,6.1987,7.1447,7.252,2.7187,1.3013,3.7341,,,,,,,,,,,,,,,74,,,,420
+3775,1.2041,2.1677,,60-69y,Other,,,22.987,5.3868,2.9236,2.3858,1.1391,ppmi,,,M,,0.4845,4.9099,4.4103,1.0279,9.8505,1.5536,0.42681,4.5091,3.198,54.341,19.6508,256.1866,4.2757,5.5639,2.0322,2.1961,3.7575,8.0725,2.1718,3.7162,0.55061,7.7431,12.4078,9.3513,8.5265,2.4212,5.5916,1.9422,20.1735,6.9863,4.2341,1.2554,2.7158,7.3944,16.0621,4.3293,5.0942,3.8885,1.4679,1.6016,5.4847,12.698,3.7072,2.4831,12.6899,2.6425,2.6398,2.3648,13.326,2.0678,4.5879,1.3494,16.2645,5.6788,9.8719,3.9916,11.5101,7.5807,9.3864,8.1514,3.9782,1.7272,5.4372,,,PD,0.08518,PD,,PD,0.45477,4.3341,3.8047,0.93694,10.8694,1.8078,0.43686,4.2927,3.164,54.9149,19.1586,259.3021,3.8203,6.0802,1.8947,1.7082,3.747,8.1496,2.1812,3.7915,0.6933,7.7176,12.8712,8.4426,9.5395,2.3863,5.5472,1.9355,20.0539,5.6162,4.038,1.1529,2.8366,8.1887,15.8795,3.7107,4.9789,3.581,1.5247,1.5786,5.0237,12.7126,3.2445,2.4352,12.087,2.3454,2.6627,2.1559,13.9853,1.9321,4.4128,1.2924,15.8406,5.4968,8.7158,5.0735,11.6094,7.3608,9.0053,8.6631,3.4744,1.5826,5.1616,,,,,,,,,,,,,,,63,,,,421
+3776,1.7512,1.6264,,60-69y,Other,,,19.7029,4.559,2.4938,2.2491,1.6033,ppmi,,,M,,0.38039,3.9911,3.8247,0.84998,8.2418,1.3958,0.35135,3.3666,2.9036,44.0645,15.4457,212.5855,3.8583,4.4202,1.6295,1.9,3.0392,7.2673,1.8464,2.9945,0.63117,5.8599,11.0427,15.208,7.1488,2.1126,4.4486,1.6216,17.3714,5.8544,3.501,1.1059,2.5203,6.5,12.8272,3.2364,3.9065,3.2007,1.2671,1.3632,4.2743,9.8547,3.1519,2.2049,11.4703,2.5237,2.2594,2.209,12.8647,2.0934,3.6653,1.1424,13.0973,4.9308,8.4249,3.6398,10.4983,6.5905,7.6265,7.4236,3.6597,1.6671,4.623,,,PD,0.074907,PD,,PD,0.34787,3.2893,3.752,0.84025,9.8981,1.6455,0.36206,3.6277,3.0805,43.4585,15.197,216.5977,3.8342,4.2902,1.6102,1.7053,3.3241,7.7405,1.7811,2.9692,0.66545,6.4474,11.9039,16.3687,7.6717,2.0118,4.126,1.6596,17.0877,4.7611,3.3328,1.2287,2.7684,7.2354,13.1816,2.999,4.1337,2.9438,1.3264,1.2995,3.7186,10.0061,2.7454,2.0625,10.1955,2.3913,2.2282,2.0582,13.2081,2.0397,3.6578,1.0849,12.3296,4.876,7.9937,4.3226,10.1857,6.3552,7.4423,7.918,2.8098,1.6271,4.3164,,,,,,,,,,,,,,,63,,,,422
+3777,1.7211,2.4225,,60-69y,Other,,,18.782,4.8604,2.7094,2.2162,1.459,ppmi,,,M,,0.42457,3.9512,4.21,0.92257,8.9036,1.3862,0.366,2.9993,3.7283,47.4,15.3915,204.8832,4.2437,4.8373,1.6194,1.7304,2.8351,7.4453,1.7949,3.5943,1.077,5.8971,11.5137,23.1055,7.1558,2.121,3.9452,1.6275,15.3052,5.5914,3.4609,1.1417,2.7514,5.9774,13.7756,2.7705,4.269,2.7011,1.275,1.373,4.0744,10.7569,3.1986,2.5852,11.8913,2.3952,2.1902,2.503,12.4577,2.0869,4.0911,1.2164,12.7063,5.1193,7.7522,3.2604,9.5575,7.2731,7.9562,7.5018,3.0621,1.7168,4.8449,,,PD,0.073242,PD,,PD,0.38965,3.3969,3.8275,0.8746,8.8497,1.5583,0.38315,2.7912,3.7147,47.5727,14.7779,210.1995,3.7777,4.7334,1.6416,1.7458,2.9236,7.7557,1.788,3.6772,0.9424,6.2248,11.5885,19.3811,7.4117,1.92,3.7232,1.5832,15.3175,4.5806,3.2514,0.94931,2.4845,6.9469,14.0305,2.6301,4.0122,3.1145,1.3161,1.4746,3.783,10.8777,2.9399,2.4213,10.3172,2.1505,2.0408,2.0996,12.5547,1.9958,4.2639,1.0894,13.1682,5.1456,7.6151,3.9709,8.8742,7.1654,8.1023,7.6384,2.9017,1.5556,4.7292,,,,,,,,,,,,,,,62,,,,423
+3778,0.95051,2.1407,,50-59y,Other,,,17.2024,4.406,2.5169,2.2294,1.2063,ppmi,,,F,,0.38124,3.8456,3.7733,0.81962,8.319,1.3794,0.35918,2.5401,2.3839,46.1485,14.7398,176.8629,3.2127,3.5222,1.6179,1.9644,3.1072,6.9832,2.0239,2.9201,0.41109,4.9988,10.0014,9.6237,6.7957,2.3401,4.1594,1.5658,15.697,5.2616,3.6682,0.84625,2.2843,5.9146,12.9368,2.5934,3.8081,2.9922,1.6225,1.1296,3.7881,9.2228,3.2301,1.7923,11.0367,2.338,2.2715,1.8578,10.9067,2.0099,3.4343,1.1153,13.2483,4.9988,8.9338,3.1814,9.5334,6.9974,7.0988,7.1477,3.6394,1.3502,4.1191,,,PD,0.065569,PD,,PD,0.34042,3.0663,3.5352,0.82003,10.0189,1.5953,0.36658,2.6075,2.5112,48.2788,14.4361,187.5837,3.5994,3.9728,1.733,1.7016,3.078,7.9459,1.7779,3.1606,0.40662,6.2283,10.6764,10.5142,7.5478,2.1139,3.8886,1.5323,16.6613,5.4703,3.3979,0.96319,2.4804,6.4158,13.3786,2.6029,4.1616,2.8833,1.4422,1.1173,3.5173,9.5568,3.1207,1.9569,9.1777,2.1433,2.135,1.8492,11.2158,1.9497,3.2996,1.0174,14.5501,5.1844,7.6566,4.3178,9.2293,7.3219,6.993,7.1296,3.1734,1.4208,3.9675,,,,,,,,,,,,,,,52,,,,424
+3779,1.8277,1.9149,,50-59y,Other,,,21.6206,5.0461,2.9509,2.354,1.8,ppmi,,,M,,0.52677,5.7237,5.2549,0.99297,11.1273,1.6076,0.44629,2.9351,3.688,51.7661,17.9612,268.8892,4.9026,5.2304,1.852,2.4924,3.8345,9.2109,2.3888,3.7793,0.65024,7.5191,14.0595,20.8578,8.3303,2.6954,5.5331,2.257,20.1709,7.2403,4.302,1.2479,3.1935,8.1716,18.0995,3.8371,4.9307,4.0127,1.9306,1.7107,4.8776,12.3296,3.8962,2.7247,13.1127,2.6719,2.9276,2.6683,15.8329,2.5283,4.5431,1.5368,16.576,6.46,9.0753,4.7684,13.6137,9.3306,10.0034,8.6232,4.7949,2.0582,5.5991,,,,0.086404,CN,,HC,0.4867,5.1545,4.687,1.0006,11.8689,1.9138,0.44465,3.3944,4.0205,52.3529,17.3179,272.4241,4.6368,5.8648,1.9976,2.1776,4.3083,9.1334,2.3473,3.8998,0.56677,7.9464,15.3461,21.2676,8.955,2.6037,5.6048,2.1293,19.8723,6.3094,4.1091,1.5287,3.1383,8.6878,18.1631,3.6485,4.9454,3.8826,1.7423,1.6927,4.4333,12.7661,3.3224,2.611,11.8217,2.4958,2.6324,2.3321,15.7468,2.1615,4.4885,1.4346,15.9811,5.9492,8.8446,5.9201,13.6034,8.7155,9.7092,8.6452,4.0493,1.7678,5.3712,,,,,,,,,,,,,,,56,,,,425
+3780,1.4404,2.0948,,70-79y,Other,,,16.8336,4.0403,2.4048,2.0508,1.2502,ppmi,,,F,,0.41764,4.5352,3.6443,0.77623,8.0705,1.4614,0.34505,2.6409,3.1353,43.7404,14.094,197.9649,3.6389,4.0075,1.5603,1.5623,3.4676,6.596,1.8811,2.7653,0.47192,6.3366,10.34,15.3121,6.6479,2.2749,4.7592,1.7367,18.057,6.5567,3.6328,1.0812,2.3817,6.5956,13.0036,3.237,3.9197,3.022,1.4054,1.3434,4.0128,9.4195,2.9321,2.0228,10.7644,2.0141,2.3711,2.128,11.2013,1.6989,3.7796,1.0615,13.6457,4.6598,7.2402,3.4624,9.4297,6.788,7.5444,7.0016,3.385,1.3517,4.2229,,,PD,0.067109,PD,,PD,0.3549,3.4634,3.6714,0.76896,10.0852,1.5111,0.35113,2.8395,3.1245,44.6622,13.4733,203.7842,3.8025,4.1498,1.499,1.7204,3.4672,7.0596,1.8128,3.0762,0.56817,5.8776,11.3796,12.9242,7.3402,2.0756,3.9325,1.5766,17.3404,5.4098,3.4055,0.86694,2.16,6.9907,13.1262,2.4677,4.0021,3.4502,1.436,1.3185,3.6983,9.2957,2.8122,2.1967,10.1429,2.0054,2.1334,2.1287,11.7781,1.7453,3.7911,1.0451,13.9862,4.752,7.9076,3.9694,9.348,7.3112,7.2194,6.9689,3.4006,1.5415,3.9021,,,,,,,,,,,,,,,70,,,,426
+3781,1.7689,2.3145,,70-79y,Other,,,18.3009,5.0173,2.6489,2.3764,1.4244,ppmi,,,M,,0.43728,3.9451,4.1167,0.8205,8.5204,1.4147,0.38004,3.3161,2.8797,46.4178,17.1991,240.9613,3.6421,4.7678,1.6504,1.8904,3.3151,7.342,2.0148,2.9788,0.55608,6.1691,11.5317,16.3718,7.7266,2.3356,4.0413,1.6905,16.6054,5.3775,3.7136,1.2367,2.7166,6.5345,14.3089,3.48,4.1776,3.1065,1.4763,1.5134,4.0975,10.1788,3.2149,2.19,11.6948,2.2817,2.3578,2.1139,13.0085,1.9174,4.431,1.2599,14.7828,4.9775,9.1554,3.2583,9.834,6.9038,8.2844,7.8254,3.6129,1.5129,4.7992,,,PD,0.08472,PD,,PD,0.40277,3.0914,3.9315,0.87666,9.4099,1.5579,0.40344,3.4926,3.0423,48.1774,17.4382,250.0954,3.7727,4.7062,1.7876,1.6184,3.5009,7.5961,1.9689,3.344,0.56967,6.7333,12.7812,13.8202,8.6366,2.0822,3.895,1.6699,17.9823,5.1535,3.4406,1.0975,2.6186,7.6898,14.7951,3.2924,4.4636,3.0346,1.4735,1.4842,3.7791,9.9445,3.0649,2.2672,9.8746,2.1771,2.2519,1.8802,11.812,1.696,4.2874,1.2131,15.2468,4.8389,7.6245,4.476,9.8949,6.5895,8.1087,7.7992,3.072,1.4176,4.5532,,,,,,,,,,,,,,,72,,,,427
+3787,0.90173,2.2744,,-50y,Other,,,21.1152,4.295,2.6417,2.1786,0.90504,ppmi,,,M,,0.47054,4.2894,4.8283,0.96106,8.7663,1.5217,0.42377,3.1836,2.998,47.1875,17.2673,239.8277,3.955,5.1766,1.7965,2.1003,3.504,7.273,2.0112,3.376,0.46643,6.2974,11.4209,6.9187,8.1176,2.4051,5.0513,1.7646,18.0147,6.3472,3.9027,1.2476,3.0574,6.8277,14.0454,3.4688,4.6711,3.1316,1.6657,1.6781,4.8756,10.8397,3.4574,2.3915,11.9947,2.4903,2.6466,2.2776,13.8846,2.1979,5.0214,1.1599,16.272,5.2982,8.75,3.999,10.5097,8.1068,9.0021,7.8758,3.9998,1.5293,5.3667,,,PD,0.07598,PD,,PD,0.42547,3.9159,4.5027,0.95097,10.1935,1.6885,0.43303,3.0239,3.1817,47.8017,17.1886,242.8006,3.5866,5.1217,1.8237,2.2363,3.4504,7.6589,2.0129,3.6643,0.69321,6.8291,11.9385,6.1121,8.4574,2.3366,4.5995,1.6529,18.1332,5.2106,3.8785,1.2064,2.9561,7.3043,13.4831,2.8227,4.4697,3.6919,1.6168,1.6119,4.3937,11.2419,3.1514,2.2624,11.2564,2.0788,2.5567,2.0212,13.098,2.0434,4.8921,1.1362,13.6562,4.9323,8.4094,4.495,12.2607,8.0982,8.7365,8.1833,3.8797,1.4916,5.1458,,,,,,,,,,,,,,,49,,,,428
+3788,1.4256,2.3275,,60-69y,Other,,,18.8262,5.17,3.0233,2.63,1.3605,ppmi,,,M,,0.49031,4.5511,4.2803,0.92283,9.494,1.5267,0.38316,2.8529,3.5871,54.7294,16.4386,233.8136,3.7576,4.1127,1.8375,2.0354,3.5718,7.4804,2.1119,3.021,0.58173,6.3968,12.2509,16.2112,8.1326,2.3464,4.7529,1.7948,17.7535,5.9501,4.0053,1.1063,2.4524,6.7116,15.1098,3.2838,4.6274,3.1721,1.5604,1.5262,4.5445,10.1958,3.37,2.0985,12.2635,2.3833,2.4181,2.0339,13.0292,2.2407,4.6439,1.1967,15.5423,5.2965,8.5947,3.5961,11.3187,7.5068,8.2837,8.226,3.7865,1.6827,4.7492,,,PD,0.072485,PD,,PD,0.44992,4.2927,4.3067,0.92781,10.0058,1.7348,0.40656,3.1901,3.727,55.0078,16.4209,239.8994,3.9896,5.0027,1.7963,2.0749,3.952,8.0391,2.0984,3.2382,0.59243,6.8349,12.8877,15.0902,8.8843,2.1512,4.579,1.6712,19.1507,5.3718,3.7694,1.1554,2.6356,7.4825,15.7579,3.2533,5.0297,3.4855,1.6244,1.5457,3.9916,10.077,3.0799,2.2972,10.1463,1.9675,2.332,2.0274,12.961,1.8845,4.4209,1.1984,15.2643,5.0058,7.4304,4.6698,10.4603,7.8213,8.0865,8.4742,3.5374,1.5407,4.637,,,,,,,,,,,,,,,61,,,,429
+3789,1.2829,1.8274,,50-59y,Other,,,18.2048,4.8633,2.4674,2.138,1.3682,ppmi,,,F,,0.44491,4.0987,3.8802,0.89623,9.449,1.3564,0.3729,3.4756,2.8934,46.7264,15.803,200.3389,3.7511,4.1638,1.7004,1.9797,2.8658,6.9169,1.8674,3.2021,0.55971,5.5519,10.291,11.114,7.341,2.0801,4.7458,1.5732,16.977,5.6397,3.6172,1.0485,2.4415,6.0969,12.8155,3.4114,4.0788,3.1659,1.4137,1.3897,4.6272,11.0008,3.219,2.1982,11.4368,2.214,2.2866,2.3253,12.851,1.8698,4.2215,1.1641,12.9225,5.2035,9.5014,3.8057,10.0967,7.1057,8.1925,7.3984,3.4851,1.4524,4.6191,,,PD,0.076876,PD,,PD,0.40668,3.6849,3.7104,0.90267,10.0378,1.5758,0.38134,3.2743,3.0902,46.2985,15.317,207.6458,3.6463,4.5187,1.7622,1.7526,3.1717,7.32,1.8148,3.381,0.57712,6.4536,11.234,9.5152,8.3517,2.0436,4.429,1.5013,17.1342,4.9605,3.4303,1.2804,2.7964,6.8205,14.3654,2.7363,4.0892,2.9038,1.429,1.3887,4.37,11.6723,3.1827,2.2042,9.9513,1.9455,2.2276,1.9999,12.0286,1.6879,4.0463,1.112,13.1701,5.1316,8.4799,4.0074,10.3291,6.6666,7.9507,7.4347,3.2094,1.3288,4.4179,,,,,,,,,,,,,,,58,,,,430
+3800,1.2473,3.3121,,-50y,Other,,,21.5905,5.1098,2.84,2.5614,1.1818,ppmi,,,M,,0.53668,4.8128,4.595,1.0176,10.4002,1.7273,0.43181,3.3702,3.5931,54.3629,18.8112,261.9873,4.4117,5.4849,2.0572,2.1955,3.995,9.0426,2.3726,3.6126,0.52622,7.7266,13.3288,14.8063,8.8036,2.5192,5.1846,2.1355,20.8069,7.4867,4.1798,1.3442,3.0496,7.8048,16.5429,4.2991,5.3257,3.8371,1.688,1.6958,4.9057,12.1438,3.7077,2.5418,13.397,2.3593,2.6288,2.4919,15.5293,2.3121,5.2684,1.2665,16.4025,5.9174,10.0674,4.0206,11.7417,9.0867,8.9661,8.7037,4.1514,1.7134,5.4574,,,PD,0.087532,PD,,PD,0.51464,4.5376,4.372,1.0755,11.6366,2.0417,0.45675,3.9122,3.6577,55.2051,18.2152,264.2937,4.7091,5.7273,2.1337,2.154,4.1454,9.7531,2.3624,3.9992,0.57619,8.22,14.1555,10.8944,9.7973,2.5014,5.4531,2.0489,20.3293,6.0859,4.1016,1.4209,3.2581,8.1194,16.8186,3.4859,5.6286,3.8575,1.7142,1.6891,4.4612,11.9995,3.7753,2.4742,12.1869,2.418,2.5,2.1852,13.8184,2.1881,5.0549,1.2144,16.0548,5.7686,9.1705,4.832,12.265,8.7146,8.761,9.3039,3.8928,1.6828,5.3477,,,,,,,,,,,,,,,41,,,,431
+3802,2.7803,2.138,,70-79y,Other,,,18.1218,5.2488,2.6489,2.2755,2.8584,ppmi,,,M,,0.39926,4.4217,4.4199,0.86554,7.0462,1.2534,0.36303,2.7962,3.2768,45.6152,15.1088,192.679,4.0422,3.7708,1.568,1.9472,3.0361,6.0031,1.8123,3.2904,2.2243,5.32,9.5112,45.5069,6.8719,2.0073,4.1003,1.5704,15.2561,4.5883,3.3934,0.94914,2.2856,6.3889,11.3663,2.7446,3.4231,3.1995,1.3538,1.5224,4.1668,9.2925,3.2336,2.7603,9.9653,2.3754,2.1639,2.4875,10.4754,2.1419,4.0069,1.2514,11.9699,4.8981,7.6444,2.6193,8.3408,6.5021,7.8996,6.4709,3.7193,1.894,4.9637,,,PD,0.081137,PD,,PD,0.35442,4.1202,4.1164,0.84101,8.4615,1.3727,0.37472,3.0225,3.4995,45.9259,15.2982,199.4905,3.9166,4.1243,1.4843,1.9169,3.2081,6.1316,1.7933,3.4764,2.0739,5.4366,10.6751,44.0477,7.0925,1.8627,4.0661,1.5455,15.1063,4.3416,3.2519,0.9353,2.231,6.7481,14.0566,2.4385,3.5882,3.0615,1.4036,1.453,3.8161,9.6154,2.7479,2.6291,9.2487,2.3241,2.0688,2.1801,10.4213,1.986,3.8847,1.1656,11.8459,5.0306,6.7259,3.599,8.8964,6.9485,7.6559,7.1942,3.0707,1.6356,4.8224,,,,,,,,,,,,,,,70,,,,432
+3803,1.5087,2.315,,70-79y,Other,,,18.9184,4.3747,2.6465,2.0735,1.2253,ppmi,,,F,,0.3935,4.1508,4.2415,0.75882,8.7926,1.3948,0.33609,2.639,3.4379,45.5236,16.7656,231.3357,3.709,3.7276,1.5198,2.0352,3.4147,6.5936,1.9456,2.7018,0.57886,5.9599,10.0153,16.1228,6.2285,2.2347,4.0481,1.6126,18.3533,5.3681,3.6553,1.1262,2.5322,6.3078,12.8354,2.9912,3.7411,3.3253,1.4818,1.4804,3.8634,9.5238,3.0553,2.3235,11.2709,2.1985,2.1776,2.0976,14.323,1.657,4.2331,1.1229,13.6896,5.2665,8.7933,2.677,9.2929,6.3539,7.8783,6.7547,3.7929,1.3398,4.8351,,,,0.09175,CN,,HC,0.33602,3.9271,4.0323,0.77683,9.2538,1.515,0.33865,2.6518,3.0043,46.2524,16.4808,234.6324,3.4183,3.9495,1.5932,2.1376,3.6384,6.9805,1.9023,2.9869,0.83951,5.7211,10.5644,13.0982,6.6565,1.9561,4.4573,1.6855,16.8886,4.3269,3.3817,1.1445,2.5596,7.3162,13.2659,2.3469,3.6715,3.4311,1.4548,1.4246,3.5571,9.5306,2.7964,2.2846,10.0732,1.9143,1.933,1.8961,11.1705,1.6678,3.9484,1.0982,13.8928,5.1089,7.434,3.1735,9.9054,6.4827,7.6027,7.2903,3.5398,1.3527,4.5697,,,,,,,,,,,,,,,70,,,,433
+3804,1.5629,1.3143,,60-69y,Other,,,18.1221,4.8756,2.7525,2.4275,1.1927,ppmi,,,F,,0.40396,4.5179,4.0271,0.85815,8.2515,1.5993,0.39569,3.5443,2.9793,48.9262,15.7885,212.0898,4.0406,4.7221,1.791,1.7065,3.6311,7.4318,2.0958,3.2146,0.40559,7.0176,11.3991,10.8957,7.6198,2.3965,4.5739,2,18.5699,6.3956,4.0348,1.1123,2.5954,7.3296,14.5519,3.4648,4.6877,3.1268,1.4258,1.2987,4.4743,11.3937,3.2383,2.1732,11.9292,2.1907,2.5554,2.2604,13.1087,1.8577,3.7891,1.3007,12.9801,5.3652,8.8135,3.4644,9.4669,7.6646,7.5387,8.0948,3.3951,1.4287,4.5511,,,,0.08685,CN,,HC,0.33998,4.3094,3.6101,0.85726,10.3626,1.7797,0.3796,3.4974,3.0018,48.9327,15.0533,216.2029,3.7812,4.8241,1.7709,1.8654,3.8018,7.5478,2.0753,3.3666,0.40185,6.4333,10.954,8.8275,8.2824,2.2109,4.7135,1.9052,17.5409,4.7673,3.7926,1.0757,2.7292,8.0411,14.6655,2.9781,4.4129,3.5678,1.3649,1.2938,4.0031,10.543,3.0249,2.1555,9.9349,2.1673,2.2248,2.0807,12.7701,1.7905,3.646,1.2744,13.0374,5.4386,8.7739,4.1671,10.4432,7.9646,7.3549,7.8191,3.4546,1.4017,4.4175,,,,,,,,,,,,,,,60,,,,434
+3805,0.84051,1.4002,,50-59y,Other,,,17.2424,3.9415,2.4577,1.8843,0.85221,ppmi,,,F,,0.44865,3.9198,3.691,0.86679,8.4754,1.3166,0.38365,3.2005,2.807,43.6359,14.3661,203.1671,3.5964,4.5014,1.556,1.7233,2.9386,7.2798,1.7796,3.0571,0.47233,6.3838,10.6241,6.9975,7.1754,2.0759,4.185,1.551,16.1727,6.3789,3.5289,1.0297,2.3634,5.983,13.1833,3.3316,4.4222,3.2335,1.3039,1.343,3.9825,10.1076,3.0394,2.1725,11.3577,2.2119,2.213,2.2844,11.7617,1.8931,4.4941,1.0173,12.2054,4.9414,8.3802,3.3947,11.057,6.9751,7.7859,6.8976,3.5031,1.506,4.4893,,,,0.076933,CN,,HC,0.39584,3.5395,3.5964,0.87007,9.8893,1.465,0.38533,3.1594,2.8505,44.4632,14.2106,207.0527,3.7032,5.0655,1.681,1.7547,3.004,7.5878,1.8274,3.3385,0.43025,6.2238,11.1415,5.5673,7.5104,1.9187,4.2797,1.5013,16.2961,5.0535,3.3663,0.86819,2.2874,6.5368,13.0509,2.9026,4.4073,3.4206,1.2607,1.3557,3.7213,9.9101,2.8262,2.2432,9.8393,1.9914,2.0735,1.9663,12.1036,1.6826,4.4242,1.0271,12.6058,4.6283,7.1567,4.5605,10.2882,7.1194,7.6603,7.3946,3.072,1.3559,4.3687,,,,,,,,,,,,,,,56,,,,435
+3806,1.1541,1.3917,,50-59y,Other,,,18.4761,4.8862,2.6724,2.0714,1.0082,ppmi,,,F,,0.39549,4.4837,3.6953,0.76492,9.7818,1.5042,0.34279,3.2651,2.7402,45.982,16.4314,216.2176,3.4987,4.11,1.6568,1.6485,3.5092,7.1565,1.9725,2.818,0.3817,5.8538,11.0436,10.3454,7.1002,2.2198,4.618,1.7161,18.885,6.46,3.7802,1.1265,2.4157,6.9117,13.5519,3.098,3.978,2.8995,1.2368,1.3506,4.2159,9.7965,3.1282,1.9695,10.9672,2.3159,2.2762,2.0179,12.1166,1.8427,3.7719,1.1521,14.6126,5.0842,8.8808,3.1724,9.5491,7.3949,7.6634,7.8564,3.3959,1.3175,4.4616,,,,0.073576,CN,,HC,0.35233,4.176,3.9091,0.77572,9.6545,1.6424,0.35192,3.3012,2.926,46.1399,16.225,223.2811,3.4253,4.7965,1.7109,1.705,3.5018,7.2121,1.9928,2.9508,0.38117,6.069,11.4283,11.2233,8.0135,2.0002,4.6838,1.7196,18.343,4.8692,3.6248,0.94006,2.1608,7.9632,13.6898,2.52,4.1601,3.1147,1.3784,1.3582,3.8532,10.9236,2.9792,2.1134,9.8162,2.2176,2.1186,1.8742,11.1105,1.7469,3.7762,1.1274,14.538,5.0067,7.4649,4.1733,10.038,6.7979,7.3385,8.1194,3.274,1.3224,4.307,,,,,,,,,,,,,,,59,,,,436
+3807,1.1073,1.7682,,70-79y,Other,,,19.9187,3.9433,2.4072,2.1021,1.0894,ppmi,,,F,,0.40697,4.3667,4.1057,0.84783,8.6288,1.429,0.39221,2.8917,2.9048,44.2323,16.1485,254.1259,3.6179,4.9577,1.5376,1.7403,3.4961,6.5914,1.9158,3.0145,0.61311,5.6666,10.568,14.8332,6.7228,2.2153,4.5653,1.7969,17.7167,5.9251,3.8874,1.0136,2.6158,7.3198,13.8775,3.3759,4.1199,2.6171,1.4539,1.5551,4.1413,11.1947,2.9402,2.1818,10.7329,1.9396,2.5062,2.1613,11.9451,1.7229,4.1247,1.2036,14.6169,4.9049,8.2038,3.8289,11.7582,7.2096,8.327,7.8083,3.5121,1.4504,4.9902,,,,0.085389,CN,,HC,0.36953,4.0306,4.1157,0.82962,9.6608,1.7108,0.3939,3.1818,3.0786,44.0992,15.7263,261.6709,3.6342,4.8028,1.6458,1.9158,3.7942,7.1205,1.9307,3.2076,0.57522,6.7759,10.7691,10.2478,7.7902,2.056,4.3526,1.7031,18.3073,5.2773,3.7666,1.1348,2.7249,7.725,14.1221,3.0714,4.1736,3.3619,1.373,1.5399,3.938,10.8237,2.8314,2.3383,9.2691,1.9783,2.2204,2.1392,10.5585,1.7331,4.1724,1.1688,14.2109,5.1067,7.1005,3.9628,9.8039,7.1897,8.2179,7.7791,3.4759,1.566,4.7295,,,,,,,,,,,,,,,73,,,,437
+3808,1.7435,2.1639,,50-59y,Other,,,22.4549,5.9049,3.1456,2.6614,1.5615,ppmi,,,M,,0.45537,4.8356,4.4612,0.94177,10.2638,1.7374,0.42238,3.407,3.0045,55.1097,19.0558,256.5135,4.2499,5.3632,1.7646,2.092,3.9183,8.0601,2.2416,3.4596,0.54972,6.6784,12.105,16.5908,8.8115,2.6107,4.8169,1.9061,19.0823,6.8037,4.5311,1.3823,2.8658,7.8595,14.9086,3.7521,4.8652,3.51,1.6647,1.5449,4.9392,11.705,3.6826,2.4349,12.8501,2.9522,2.6558,2.4882,14.0341,2.5863,4.5197,1.3484,15.5278,5.7885,10.304,4.0314,11.7687,7.6865,9.1733,8.0889,4.1076,2.0258,5.4543,,,PD,0.095389,PD,,PD,0.392,4.0987,4.3223,0.883,10.9287,1.9218,0.42341,3.8682,3.0819,56.3664,18.6607,261.1617,4.3062,5.7047,1.648,2.0367,4.0854,8.5269,2.2184,3.5596,0.65158,7.4173,12.9205,15.4537,9.7476,2.4352,4.6527,1.8246,18.2813,5.8196,4.3461,1.4601,3.0112,8.5444,15.5013,3.6307,5.1091,3.7978,1.6184,1.5592,4.5341,11.5693,3.2503,2.5819,11.9763,2.3068,2.6528,2.2951,13.1563,2.1533,4.3928,1.3287,16.0986,5.882,7.9624,5.3708,11.5421,7.8725,8.9956,7.0852,3.9992,1.6402,5.2286,,,,,,,,,,,,,,,57,,,,438
+3809,1.192,1.6472,,50-59y,Other,,,18.8182,4.7344,2.4546,2.1861,1.3914,ppmi,,,F,,0.45375,4.3894,4.0647,0.90305,9.7898,1.3759,0.38256,3.9525,2.9519,45.4951,14.5758,217.0183,3.852,5.6229,1.7285,1.949,3.2545,7.6882,1.9301,3.2414,0.58009,7.0296,11.8195,15.2447,8.9564,2.177,4.451,1.7521,17.5404,6.0611,3.7359,1.3185,2.9252,6.275,14.4639,3.8376,4.8739,3.624,1.4146,1.3785,4.7239,12.1522,3.3367,2.2337,11.6867,2.3749,2.3591,2.0459,12.6086,2.2825,4.0028,1.1653,12.6267,4.833,9.432,4.2251,10.8449,7.2913,7.7706,7.0403,3.9524,1.816,4.572,,,,0.080315,CN,,HC,0.395,4.206,3.8331,0.90629,10.2954,1.6495,0.39583,4.0506,2.9933,45.1476,14.0016,218.0826,3.9066,5.4047,1.7734,2.0214,3.404,7.8669,2.0222,3.4784,0.74895,6.6266,11.9943,13.9808,9.0014,2.0382,4.7346,1.7405,16.5713,5.0873,3.6546,1.2128,2.7076,6.8562,15.2014,3.2595,4.4286,3.3961,1.4774,1.3519,4.2055,12.0651,3.1031,2.2924,10.2209,2.2148,2.0748,1.9497,12.3376,1.7355,3.9924,1.1557,12.1945,4.9233,8.5039,4.4324,11.2524,6.8669,7.6047,7.6909,3.6825,1.5067,4.4205,,,,,,,,,,,,,,,53,,,,439
+3811,2.9549,3.3899,,60-69y,Other,,,19.9731,4.9953,2.6708,2.2018,2.1203,ppmi,,,M,,0.44956,4.6858,4.5026,0.87018,8.4289,1.3494,0.40444,3.306,3.9105,46.8885,16.5697,225.0694,4.2943,4.714,1.5705,2.0622,3.6177,7.6124,2.0842,3.4904,1.6649,6.3988,11.0237,42.9749,7.7682,2.1665,5.1903,1.9543,17.2792,5.979,3.7933,1.0631,2.3633,7.0441,13.3267,3.7366,4.265,3.0235,1.2936,1.6284,4.688,10.175,3.3457,2.4469,11.6465,2.2481,2.3458,2.4664,12.7313,1.9802,4.4662,1.4095,13.2298,5.3023,8.1036,3.5653,9.6785,7.3302,9.0172,6.89,3.3891,1.6331,5.3027,,,,0.07995,CN,,HC,0.40716,4.1102,3.8082,0.85101,10.0374,1.6362,0.3953,3.799,4.2167,48.1208,16.6123,232.1667,3.992,5.1109,1.6048,1.8127,3.6286,7.6278,2.0099,3.5519,1.727,6.9134,11.0321,42.3838,8.4087,2.0047,4.7593,1.7894,16.7536,5.1901,3.7501,1.0491,2.4957,7.9721,13.3855,3.5084,4.3848,2.9135,1.3566,1.6382,3.9745,10.2962,2.9116,2.5706,10.597,2.2096,2.223,2.2378,13.3377,2.0479,4.4161,1.3088,13.1709,5.6535,7.9977,4.3828,9.5446,7.72,8.8193,6.9685,2.8584,1.7944,5.086,,,,,,,,,,,,,,,67,,,,440
+3812,1.0231,1.6738,,60-69y,Other,,,19.1536,4.3101,3.0423,2.2127,0.9419,ppmi,,,F,,0.36098,3.5788,3.3499,0.77413,7.9342,1.2022,0.33665,2.9691,2.6951,48.5784,16.259,189.0859,3.4668,4.0338,1.516,1.6267,2.6982,6.7569,1.7259,3.0443,0.55768,6.0944,10.1194,9.2062,6.7454,1.8979,4.0104,1.3201,15.2686,5.5523,3.3956,1.1224,2.4791,5.5332,12.6233,3.1264,3.9305,3.0658,1.2017,1.3949,3.7108,9.557,2.972,1.8521,11.5687,2.1632,2.1671,1.8558,12.861,1.7387,3.8739,0.98082,11.8527,4.4169,8.4732,3.6916,10.0172,6.3643,7.4507,6.0985,3.1307,1.2623,4.4731,,,,0.072362,CN,,HC,0.31542,3.216,3.2638,0.79788,9.4424,1.419,0.33667,2.8998,3.1142,48.5438,15.6682,195.7277,3.6493,4.0701,1.5846,1.5177,2.9251,7.2752,1.6949,3.3491,0.69417,5.6495,10.7288,10.5842,7.4602,1.8171,3.9982,1.286,15.0659,4.4442,3.1575,1.077,2.3471,5.5858,12.3149,2.6026,3.8957,2.5772,1.1473,1.4097,3.6966,10.1312,2.8181,1.8631,10.175,2.1674,1.9443,1.7086,12.0487,1.7201,3.8061,0.88853,12.8413,4.546,7.295,3.804,10.3254,6.1903,7.4454,6.6177,2.5412,1.2904,4.3373,,,,,,,,,,,,,,,64,,,,441
+3813,1.3615,1.7769,,60-69y,Other,,,18.4594,5.1235,2.8977,2.3403,1.1867,ppmi,,,M,,0.49677,4.6025,3.7886,0.86846,9.2394,1.4254,0.39379,3.2481,3.4685,48.6883,17.1423,222.105,3.9743,4.4883,1.6946,1.6773,3.4045,6.9901,2.1232,2.9357,0.53749,6.1583,11.0477,15.5576,7.5643,2.2539,4.8662,1.8948,19.4943,6.0831,3.8837,1.0699,2.5736,6.8402,14.416,3.0523,4.106,3.4005,1.3301,1.4357,3.974,10.2392,3.2713,2.3075,12.2477,2.1607,2.3251,2.1073,13.8702,1.6927,4.2689,1.2721,14.132,5.444,8.1978,3.3599,10.6258,7.1684,7.6729,7.739,4.1982,1.3529,4.554,,,,0.080163,CN,,HC,0.4392,3.8707,3.5893,0.86074,10.4473,1.5093,0.39744,3.4876,3.6053,49.404,16.6408,225.2743,3.7651,4.8565,1.7664,1.7066,3.5506,7.4494,1.992,3.237,0.56722,6.4109,11.4553,11.7712,8.4263,2.0149,4.2957,1.7483,19.7528,5.145,3.5518,0.99676,2.7181,7.5457,14.5714,2.5815,4.2456,3.5989,1.3788,1.3834,3.9312,10.6149,3.1591,2.3306,10.712,1.9536,2.2701,1.9342,13.1763,1.6169,4.081,1.2175,14.4552,5.4647,7.5551,4.2855,10.875,6.768,7.5205,7.8316,3.5271,1.3406,4.3321,,,,,,,,,,,,,,,65,,,,442
+3814,0.89143,1.5831,,60-69y,Other,,,20.4737,4.4371,3.0925,2.2181,1.0248,ppmi,,,M,,0.52161,5.3537,4.5408,0.81513,10.1289,1.8667,0.40594,3.9154,3.2628,49.1477,16.8042,242.9803,4.044,5.0228,1.5686,2.1423,4.0692,7.4132,2.4075,3.0076,0.31197,6.8072,11.3401,11.422,7.8297,2.7212,5.4048,2.1043,20.335,7.6694,4.7149,1.2952,2.8607,7.8401,13.9287,4.1361,4.575,3.5556,1.7415,1.4929,4.7901,11.4324,3.2395,2.3417,14.5974,2.6472,2.8339,2.2931,14.0072,2.3201,4.6477,1.4314,16.5268,5.7109,10.0883,4.3383,10.8332,7.8193,8.7751,8.0309,3.8364,1.6186,5.0888,,,PD,0.087173,PD,,PD,0.48238,4.7645,4.6005,0.86316,10.0493,2.0805,0.44286,3.7085,3.4899,49.8375,16.295,247.1375,4.5377,5.3614,1.7841,2.0546,4.2667,7.6836,2.4812,3.3247,0.5155,7.028,11.8874,10.4235,8.642,2.6549,5.3288,2.0509,20.9787,5.3432,4.5603,1.4116,2.8477,8.7287,15.0168,2.9881,4.7505,3.5262,1.8423,1.461,4.1998,12.3698,3.0134,2.4065,12.9811,2.4213,2.7406,2.1702,14.3813,2.1979,4.5762,1.3438,14.547,5.8541,8.8508,4.8354,10.5911,8.7396,8.6359,8.4427,3.9963,1.7038,4.8296,,,,,,,,,,,,,,,67,,,,443
+3815,1.8621,2.6057,,60-69y,Other,,,20.509,3.9336,2.3368,2.241,1.4748,ppmi,,,M,,0.48061,4.4829,4.8136,0.7994,9.5872,1.5517,0.42684,2.6359,2.9976,45.7066,16.3503,229.3445,4.2822,3.8147,1.6099,2.1431,3.565,7.4483,2.0913,3.0775,0.61973,6.0979,11.1792,13.874,6.9805,2.3363,5.0085,1.6989,19.7054,5.8732,4.1261,1.1182,2.835,6.9923,13.6806,3.1997,4.3922,3.6493,1.5915,1.6179,4.4728,10.2482,3.2529,2.5067,10.8501,2.4844,2.6391,2.2219,12.9452,2.2887,4.5584,1.3653,14.8316,5.6766,8.5674,3.6255,9.964,7.5524,8.6386,7.3217,4.1889,1.6913,5.3218,,,PD,0.082194,PD,,PD,0.42318,4.2417,4.5066,0.84434,9.6115,1.6419,0.40978,2.3124,3.0715,45.8931,15.6905,234.6072,4.258,4.1385,1.6856,2.2249,3.6594,7.7139,1.9357,3.4503,0.62659,6.367,11.5985,10.925,7.4172,2.1424,4.9935,1.6412,19.301,5.3798,3.5433,1.1318,3.0865,7.3115,14.3553,2.9679,4.4077,3.7773,1.4984,1.5466,4.1273,10.3693,3.051,2.4546,10.6672,2.2748,2.2409,2.0983,12.955,1.8553,4.3264,1.197,14.5794,5.7647,7.8841,3.9641,9.7302,7.4556,8.3131,7.9983,3.68,1.5046,5.0633,,,,,,,,,,,,,,,62,,,,444
+3816,1.9967,2.2553,,60-69y,Other,,,17.5242,4.2408,2.281,2.2602,1.3498,ppmi,,,M,,0.41782,4.4497,4.2645,0.88744,9.485,1.5162,0.37748,3.4384,3.347,42.3817,15.9373,225.8285,3.6958,4.4122,1.7368,2.0746,3.3529,7.5821,2.0281,3.145,0.7126,6.1993,11.8169,20.4546,7.1456,2.4176,4.9117,1.7134,18.2567,5.9787,4.1782,1.3422,2.9206,6.7209,14.9209,3.8529,4.1512,3.3928,1.5515,1.3805,4.7662,11.5013,3.3016,2.1777,11.4656,1.9637,2.6839,2.2049,12.4526,1.823,4.0557,1.2094,13.8674,5.3247,9.102,3.8022,11.1486,7.3868,8.038,7.6833,4.0253,1.3243,4.5449,,,,0.07591,CN,,HC,0.40428,3.91,4.1031,0.87974,9.9236,1.6046,0.38874,3.4644,3.7526,43.3764,16.0506,235.2758,3.9918,4.9694,1.8019,2.0571,3.6888,7.6035,1.9974,3.4492,0.69865,6.9157,12.3673,20.7884,7.8403,2.1047,4.2393,1.7535,18.6951,5.7697,3.7305,1.0928,2.731,8.025,15.2916,3.306,4.2684,3.809,1.5148,1.404,4.2411,11.3116,3.0213,2.1911,10.9163,2.2069,2.351,1.9602,12.6508,1.8248,3.9806,1.1188,13.3529,5.3784,7.4506,4.5996,11.0478,7.2931,7.9293,7.7406,3.6156,1.44,4.4104,,,,,,,,,,,,,,,65,,,,445
+3817,1.9834,1.9406,,70-79y,Other,,,20.3326,4.9059,2.6938,2.339,1.4718,ppmi,,,M,,0.44345,4.789,4.3643,1.0257,8.6325,1.567,0.40533,3.9197,2.9202,45.0572,16.0733,220.0864,3.7518,5.3028,1.9915,2.0686,3.6133,7.2301,2.1695,3.5119,0.5517,6.2255,11.6771,16.8783,8.3454,2.4418,4.923,1.7584,19.5607,6.4765,4.0761,1.1138,2.6153,7.617,14.029,3.6217,4.3406,3.3662,1.7073,1.4364,4.7538,11.5444,3.6173,2.1999,11.7428,2.3016,2.6039,2.0018,13.5397,1.9362,4.0277,1.3318,15.3063,5.6012,8.6651,4.1622,9.4467,6.7304,8.2533,7.504,3.9354,1.431,4.9685,,,,0.086351,CN,,HC,0.41984,4.3819,4.2499,0.93401,10.2352,1.908,0.4249,3.6369,3.1229,45.8001,15.6556,222.9559,3.8467,4.5554,1.8502,1.9618,3.8051,7.652,2.1321,3.6074,0.7085,6.731,11.9415,14.9382,8.3641,2.4089,4.4921,1.7572,18.4509,5.4274,3.9986,1.0952,2.4987,8.5386,13.7992,3.2376,4.6281,3.2328,1.5978,1.4213,4.3906,11.4139,3.1569,2.2433,9.266,2.114,2.4935,1.8048,13.3044,1.8426,3.9197,1.2658,15.4386,5.9342,7.1049,4.2936,11.7104,6.468,8.0079,7.546,3.3789,1.3966,4.7392,,,,,,,,,,,,,,,74,,,,446
+3818,0.94469,1.4035,,70-79y,Other,,,16.7303,4.1721,2.4055,2.0837,1.0359,ppmi,,,F,,0.3618,3.2577,3.5029,0.70966,7.8778,1.1396,0.30354,2.5589,2.6591,43.5325,13.6077,175.1912,3.066,3.6349,1.462,1.6463,2.7749,6.2962,1.639,2.6682,0.56678,5.598,9.4527,7.1586,6.4358,1.8456,3.8656,1.2847,13.8401,5.1491,3.0385,0.78404,2.094,5.3392,11.7514,2.7298,3.7054,2.5661,1.192,1.2056,3.302,8.2807,2.824,2.0599,9.4859,1.6732,1.9781,2.0343,10.8278,1.5007,3.8043,0.87605,11.9182,4.6291,7.2797,2.8804,8.7006,6.272,6.7451,6.1497,2.8858,1.3144,4.0129,,,PD,0.081849,PD,,PD,0.31124,3.0578,3.2018,0.67106,7.6278,1.3301,0.30878,2.6485,2.6439,43.7839,13.1665,174.2577,2.955,3.783,1.3725,1.5002,2.8894,6.3372,1.5693,2.7713,0.73557,5.3527,9.2839,7.6236,7.0511,1.6499,3.6809,1.2901,13.7694,3.6371,2.9629,0.96781,2.2989,5.5489,11.4498,2.2102,3.6485,2.724,1.0816,1.1161,3.0603,8.4479,2.6743,1.946,8.521,1.5713,1.8466,1.7451,9.9464,1.3942,3.6413,0.82972,11.908,4.3909,6.4216,3.4084,8.2845,6.1318,6.3983,5.8468,2.7449,1.1792,3.795,,,,,,,,,,,,,,,73,,,,447
+3819,1.2939,2.0734,,50-59y,Other,,,17.2171,5.0909,2.3454,2.3945,1.4847,ppmi,,,F,,0.42582,4.3411,4.6796,0.88312,9.5546,1.742,0.40107,3.4216,2.8342,46.3531,13.9892,197.5393,4.0726,4.8323,1.8997,1.9628,4.0647,8.0266,2.1726,3.2324,0.71187,6.417,12.6261,17.6283,8.2081,2.6168,4.509,1.8366,17.9346,5.7541,4.2668,1.1831,2.9129,6.5943,14.1413,3.5576,4.6803,3.147,1.5706,1.3526,4.2604,11.0206,3.4443,2.5037,11.7809,2.3915,2.6434,2.5393,13.2135,2.0673,4.0342,1.3514,16.738,5.2949,8.9627,3.7533,10.5243,7.6367,8.0658,8.6112,3.2608,1.9525,4.5985,,,PD,0.088696,PD,,PD,0.40243,4.333,4.3047,0.87817,10.2279,1.6329,0.40375,3.4831,2.9047,45.7353,13.6561,198.0878,4.3045,5.1953,1.8326,2.0638,4.0477,7.635,2.2007,3.3558,0.62534,6.1484,12.438,14.1406,8.5069,2.1473,4.7459,1.792,18.2957,5.4832,3.8979,1.17,2.7169,7.8791,14.9828,2.7156,4.117,3.4623,1.7014,1.3186,3.5641,10.6657,3.0477,2.5229,10.8168,2.5518,2.4113,2.2503,12.2576,2.1178,3.886,1.2668,15.4662,5.5471,7.9667,4.2072,9.7054,7.6777,8.0933,8.3563,3.8357,1.7521,4.335,,,,,,,,,,,,,,,53,,,,448
+3822,1.4751,1.899,,50-59y,Other,,,19.7521,5.1928,2.7145,2.4989,1.3263,ppmi,,,M,,0.43676,4.976,4.349,0.97759,9.5581,1.709,0.41032,3.7902,3.1153,53.5543,18.3895,240.4091,3.9565,5.2663,1.9802,2.0432,3.78,8.1939,2.2207,3.3003,0.4661,7.7831,12.383,16.098,8.369,2.7518,4.8696,1.9383,20.6694,8.0973,4.3664,1.3792,3.4963,7.5447,15.198,4.7238,5.0219,3.3711,1.7636,1.5006,4.9484,11.5852,3.5684,2.3249,12.7651,2.7547,2.7973,2.3115,14.3959,2.4185,4.3682,1.2512,15.2771,5.7009,9.133,5.0712,12.0871,7.9458,8.6893,7.9434,4.3293,1.6854,4.8013,,,PD,0.07575,PD,,PD,0.41542,4.4339,4.2383,0.96368,11.7382,1.8844,0.42389,4.1001,3.2114,54.129,17.8417,244.3542,3.9512,6.1629,1.9202,2.229,3.9176,8.702,2.1236,3.55,0.48901,8.208,12.7172,12.4631,9.8613,2.4699,4.6456,1.8305,19.436,6.2081,4.0493,1.2469,2.9647,7.9635,15.5155,4.274,5.2561,3.6573,1.6874,1.3983,4.5382,11.6634,3.3822,2.3831,11.6583,2.2371,2.4251,2.1762,14.0744,2.058,4.3206,1.1962,14.575,5.4233,8.5776,5.6011,10.7545,7.675,8.4802,8.3412,4.0235,1.5435,4.6236,,,,,,,,,,,,,,,56,,,,449
+3823,1.4694,2.2504,,50-59y,Other,,,17.0968,4.4118,2.2779,2.0702,1.5902,ppmi,,,M,,0.49028,4.7358,4.6614,0.88955,8.5084,1.7222,0.42316,3.5079,3.2908,43.3175,14.9303,230.2435,4.3094,4.7957,1.6704,2.0707,3.4827,7.3692,2.0569,3.2015,0.56961,6.7623,11.0418,15.0389,7.4752,2.5218,4.6682,1.9017,21.1211,6.1315,4.2296,1.1635,2.5181,7.1425,13.4476,3.9866,4.2319,3.09,1.7312,1.5541,4.2035,10.4867,3.2857,2.4729,10.676,2.5875,2.675,2.4292,13.7001,2.3194,4.7794,1.3027,13.6653,5.0296,7.6348,3.7792,9.8173,7.2906,8.3996,7.6826,4.3651,1.9672,4.6538,,,PD,0.064144,PD,,PD,0.42881,4.2557,4.1809,0.87472,9.2665,1.9062,0.43451,3.4708,3.3149,44.346,14.6324,232.5671,4.1327,5.2032,1.7618,1.9189,3.8937,7.3881,2.1028,3.3489,0.64377,6.8743,11.4605,14.8531,7.8968,2.3774,4.6119,1.9543,19.8867,5.0575,4.0036,1.0562,2.4095,8.3833,14.3163,3.3967,4.363,3.1236,1.5419,1.4847,4.008,10.1765,3.0166,2.4986,9.2664,2.4429,2.4081,2.3295,13.9819,2.096,4.6441,1.223,14.0147,5.263,6.6866,4.6507,9.5571,7.3372,8.1374,7.8703,3.6967,1.7128,4.3828,,,,,,,,,,,,,,,57,,,,450
+3824,1.3955,2.9582,,50-59y,Other,,,17.6496,4.6887,2.6022,2.0819,1.6771,ppmi,,,F,,0.43032,4.4653,4.0882,0.83431,9.8017,1.6577,0.37823,3.4182,2.9955,47.7348,15.7353,213.4052,4.102,4.5998,1.5689,1.9457,3.4152,7.2192,1.9382,3.2317,0.83782,6.9827,11.3311,31.3599,7.846,2.5568,4.9111,1.7404,19.7947,5.993,4.1053,1.1469,2.6897,6.6863,14.6343,3.8182,4.2185,3.4778,1.6737,1.4032,4.3832,11.156,3.1624,2.4061,13.0618,2.5585,2.6588,2.1475,12.9468,2.2085,3.8992,1.24,14.67,5.3149,9.9041,3.3803,10.9036,7.0278,7.9937,7.755,3.934,1.7264,4.5465,,,PD,0.079513,PD,,PD,0.37788,3.7619,3.7696,0.83418,10.9955,1.7898,0.38551,3.3589,3.1314,48.21,15.1084,219.1014,4.5057,5.5932,1.6689,1.9047,3.6851,7.6047,2.1042,3.4066,0.72202,6.6901,12.001,20.9182,8.4542,2.1754,4.7755,1.7933,17.6667,5.6984,3.8718,1.2026,2.7593,7.53,14.7081,3.0159,4.3607,3.2678,1.4335,1.3605,4.0872,11.5001,3.0388,2.267,11.1575,2.6861,2.303,2.0746,14.2977,2.2959,3.7265,1.2,15.8919,5.702,8.7358,4.6887,10.4394,7.503,7.717,8.1953,3.138,1.7472,4.3371,,,,,,,,,,,,,,,55,,,,451
+3825,1.3721,3.8591,,50-59y,Other,,,23.9813,5.9268,3.6294,2.8153,1.3674,ppmi,,,M,,0.59319,5.6675,5.0929,1.1357,11.2434,1.7471,0.47462,3.9079,3.6651,59.5871,20.0062,272.6341,4.9391,5.0998,2.1218,2.3908,4.4945,8.6573,2.5311,3.7276,0.39895,8.3893,14.2464,14.5306,8.6388,2.8209,6.014,2.6147,23.2566,8.3073,4.4401,1.174,2.737,8.9219,17.4638,4.4726,5.1037,3.9626,1.8564,1.8681,6.25,14.0621,3.8266,2.7946,14.587,3.498,2.6714,2.5585,17.1614,3.3831,5.1925,1.659,19.3515,6.3048,10.9189,4.5304,13.2391,8.8988,9.9809,9.0896,4.5443,2.1116,5.7389,,,PD,0.089097,PD,,PD,0.5316,4.8181,5.0963,1.1642,13.0777,2.1344,0.48835,4.1799,3.8226,60.8882,19.0911,284.0433,5.1636,5.3998,2.2151,2.5019,4.8542,9.3038,2.8031,3.9737,0.48683,8.4102,14.0817,12.105,10.1308,2.7497,6.3923,2.5636,23.9203,6.7709,4.6317,1.4401,3.119,10.4205,17.4399,3.9402,5.4927,4.2696,2.0581,1.8883,5.8455,13.5176,3.603,2.9681,12.4123,2.8748,2.6768,2.603,15.7294,2.4101,5.0961,1.556,18.824,6.9866,9.0228,5.1919,13.6957,8.9783,9.6039,9.8385,4.7188,1.9033,5.5781,,,,,,,,,,,,,,,58,,,,452
+3826,2.0029,2.1225,,70-79y,Other,,,18.0838,5.0939,2.4768,2.3454,1.256,ppmi,,,M,,0.42618,4.1976,4.107,0.82965,8.2029,1.3655,0.36878,2.9943,2.9178,47.1039,15.0701,218.1148,3.5905,3.8742,1.6029,1.8231,3.1667,6.5586,1.9191,3.2995,0.9293,6.1239,9.1743,17.6374,7.3479,2.0615,4.2372,1.6192,16.3704,5.3813,3.6401,1.0648,2.496,6.3925,12.1015,3.31,4.161,3.0583,1.3747,1.4885,4.448,10.5876,3.3136,2.2119,12.1144,2.388,2.3348,2.0699,12.5119,1.7306,4.4188,1.0582,13.2985,4.9907,8.7198,3.1303,10.2074,6.04,7.8175,6.8088,3.5939,1.3972,4.7419,,,PD,0.079443,PD,,PD,0.39757,4.0454,3.7509,0.83097,9.0063,1.5717,0.38246,3.3152,3.0748,46.7723,14.8011,223.8852,3.3162,4.6033,1.632,1.6365,3.2582,6.9196,1.8403,3.4172,1.0843,5.829,10.5289,15.6458,7.8469,1.9322,4.2598,1.6569,16.4212,4.2574,3.3773,1.1528,2.523,7.1666,13.006,2.5076,4.0847,2.8185,1.2675,1.3842,3.9483,11.1206,2.9488,2.3653,9.5585,1.9926,2.1031,2.0693,11.9471,1.6235,4.3927,0.98316,13.4843,5.1956,7.2049,4.0515,10.3935,5.6867,7.4626,6.9748,2.9548,1.3571,4.4874,,,,,,,,,,,,,,,77,,,,453
+3827,1.4158,1.8472,,70-79y,Other,,,18.4149,4.5921,2.4979,2.1904,1.6676,ppmi,,,F,,0.4395,4.3623,4.3311,0.78257,9.2154,1.4719,0.3876,2.9685,3.0195,43.7301,13.6501,206.5189,3.9973,3.817,1.5064,1.9775,3.6089,6.656,1.9577,2.8101,0.51413,5.913,9.6955,22.1552,7.1228,2.1743,4.3384,1.796,18.9679,6.2583,3.841,1.1833,2.5768,6.5902,12.8634,2.9718,4.007,3.4487,1.4591,1.2723,4.0484,10.3096,3.0517,2.2641,11.4986,2.0389,2.3151,2.1085,13.7061,1.6193,4.2764,1.248,13.6595,4.9871,9.3433,3.4383,11.4584,6.7417,7.7303,7.255,3.7458,1.3154,4.454,,,PD,0.072069,PD,,PD,0.37734,3.7948,3.9555,0.75247,10.5949,1.6441,0.37933,3.1181,3.248,43.2716,13.4719,208.8223,3.4223,4.4227,1.5931,2.0245,3.4892,6.6948,1.8828,3.0354,0.53615,6.2225,10.1604,15.6639,7.8421,2.1173,3.8058,1.6068,17.989,5.2767,3.5382,1.1641,3.1661,7.4525,13.3143,2.94,4.221,2.9685,1.4912,1.2918,3.9256,10.3913,2.8088,1.9873,10.0252,1.92,2.3088,1.7873,12.9853,1.6547,3.9853,1.1588,14.1418,5.3099,7.1728,3.9869,10.4899,6.8482,7.6864,6.8503,3.3641,1.2887,4.2836,,,,,,,,,,,,,,,75,,,,454
+3828,1.4646,2.855,,70-79y,Other,,,20.359,5.3493,2.5135,2.3722,1.7158,ppmi,,,M,,0.44202,4.4014,4.4627,0.8329,9.5482,1.6359,0.35048,2.8333,3.1144,46.3089,17.0928,220.0946,3.7849,3.7538,1.6499,2.1898,3.7048,7.1722,1.9672,2.9672,0.69718,6.4299,11.648,20.3228,7.45,2.3228,4.4187,1.7867,17.1651,6.6229,3.8438,0.91816,2.1481,6.8152,15.457,3.3343,4.0742,3.2151,1.445,1.4748,4.3236,9.6536,3.3487,2.3333,10.6428,2.0069,2.3846,2.247,11.9153,1.7832,4.2945,1.0757,14.5284,4.7539,8.731,3.1725,10.493,7.3468,8.173,7.5516,3.7048,1.3974,5.1034,,,PD,0.077508,PD,,PD,0.39848,3.6219,4.2956,0.83376,10.7136,1.5614,0.35836,2.9991,3.3548,46.8431,17.0131,227.6732,3.9771,4.2997,1.6733,1.8832,3.9724,7.6445,1.9419,3.1725,0.55881,6.7698,11.4143,15.4511,8.1726,2.0609,4.3367,1.7542,17.3514,5.4917,3.3813,0.94763,2.18,7.5722,14.1933,2.8382,4.2451,2.8355,1.5696,1.4602,4.0001,10.3134,3.2894,2.3161,8.9336,2.0505,2.1393,2.0307,11.7486,1.7704,4.3789,1.0532,14.4901,5.0378,8.6065,3.9229,10.3783,7.5918,8.0622,7.5048,3.3619,1.3977,4.8707,,,,,,,,,,,,,,,77,,,,455
+3829,1.4702,1.6125,,60-69y,Other,,,18.4491,4.6337,2.7597,2.2072,1.0858,ppmi,,,F,,0.45136,4.5502,3.982,0.81762,10.0397,1.5121,0.39473,2.942,3.187,46.0803,15.1758,228.6086,4.1239,4.0498,1.551,1.8674,3.4428,6.8563,1.8926,3.0244,0.71776,6.1559,10.3171,12.7067,6.7077,2.2809,4.8291,1.7294,19.2068,5.9589,3.6779,1.1379,2.5424,6.6732,13.3113,3.3284,4.131,3.0356,1.3425,1.3607,4.3567,10.5818,3.0331,2.3562,12.7415,2.4992,2.2915,2.252,12.643,2.2826,4.68,1.1799,14.0576,5.3191,9.4505,3.3529,10.8956,6.8217,8.0607,7.1106,3.3574,1.8994,4.6026,,,PD,0.081531,PD,,PD,0.38141,3.7028,3.926,0.82409,9.9438,1.7716,0.37519,3.1648,3.0927,46.0938,14.5536,235.6534,3.7096,4.5631,1.6022,1.8568,3.9055,7.0627,1.9734,3.2998,0.64612,6.1025,10.9705,11.0455,7.3845,2.2055,4.5395,1.7771,18.5887,4.7498,3.6386,1.1445,2.4019,7.8812,14.2276,2.6742,3.9836,3.2577,1.3899,1.386,4.0823,10.9922,2.9029,2.2261,10.8085,2.1263,2.1561,2.0021,12.5521,1.8481,4.454,1.1511,14.2554,4.9788,7.8236,4.2994,10.2915,7.404,7.8365,7.6639,3.284,1.5094,4.3807,,,,,,,,,,,,,,,67,,,,456
+3830,0.76472,1.4539,,50-59y,Other,,,14.9272,4.3374,2.2956,2.0786,0.89363,ppmi,,,F,,0.36125,3.5639,3.8298,0.80237,8.9615,1.3014,0.3343,2.8079,2.78,42.5241,13.0193,196.8224,3.8154,4.0853,1.6117,1.8213,3.0572,6.8666,1.7623,2.9749,0.32923,5.8454,10.3278,7.3403,7.0997,2.2297,4.0546,1.4511,15.7329,5.6448,3.4002,1.2272,2.5987,5.7825,11.8974,2.9405,3.8708,3.0249,1.4405,1.2351,4.0401,10.3768,3.0097,2.1534,10.8425,2.2104,2.1534,2.0281,11.0057,1.7341,3.5389,0.93295,13.1011,4.6453,8.4441,3.2188,10.3271,6.1631,6.8742,6.6759,3.3432,1.6167,4.0657,,,PD,0.075166,PD,,PD,0.31313,2.8397,3.5233,0.8255,9.564,1.5179,0.32632,3.2355,2.8614,42.7434,12.8862,199.514,3.6725,4.4478,1.7428,1.6277,3.2738,7.0436,1.863,2.9633,0.30766,5.7608,10.2199,8.0966,7.5818,1.9594,3.9251,1.4884,15.1297,4.468,3.3868,1.2671,2.78,6.6597,12.3902,2.7087,4.0212,2.9974,1.3566,1.2393,3.7202,10.0857,2.8277,2.0741,9.4009,1.9308,2.0193,1.9137,10.642,1.7091,3.4173,0.90842,12.3408,4.7457,7.5243,3.8806,10.1858,6.4111,6.6355,6.9178,3.0256,1.4444,3.894,,,,,,,,,,,,,,,52,,,,457
+3831,1.2111,2.0922,,70-79y,Other,,,18.6537,4.8304,2.7769,2.2424,0.91815,ppmi,,,M,,0.39484,3.9791,3.9583,0.84578,8.667,1.5066,0.36652,3.0504,2.7461,48.1855,16.3641,203.9542,3.9138,4.7317,1.6575,1.7855,3.191,7.4185,1.9325,3.0442,0.56563,5.9543,10.7914,14.2856,7.3339,2.3277,4.3547,1.5646,16.7159,5.7411,3.8187,1.1653,2.3997,6.4374,12.7209,3.4318,4.274,2.8142,1.4449,1.2164,4.1655,10.145,3.2298,2.15,11.3812,2.0613,2.6027,2.1084,11.8313,1.7038,4.2891,1.1184,13.5007,4.6456,7.7683,3.7349,10.2431,6.8433,7.7915,7.6371,3.3985,1.4402,4.3114,,,PD,0.065592,PD,,PD,0.34011,3.5427,3.6261,0.84056,9.6905,1.6709,0.36461,3.4554,2.8024,48.6127,15.9908,208.4893,3.4014,4.8608,1.6783,1.8761,3.5857,7.3534,1.9386,3.2654,0.64213,6.2599,10.6154,10.2964,7.8337,2.0059,4.3001,1.6025,15.4116,5.5486,3.5436,1.1594,2.5426,7.071,12.3558,3.2005,4.3097,3.3401,1.3321,1.1905,3.8374,10.0299,3.0089,2.0809,8.9603,2.1279,2.1242,1.9489,11.5395,1.801,4.0391,1.0136,12.8751,5.1207,7.588,4.282,9.5572,7.0342,7.5836,7.7981,3.1267,1.2937,4.1803,,,,,,,,,,,,,,,76,,,,458
+3832,1.6981,1.7595,,60-69y,Other,,,21.1109,5.1046,2.6756,2.1782,1.2704,ppmi,,,M,,0.49611,4.296,4.3607,0.90936,9.514,1.5436,0.40023,3.3674,3.2294,47.0428,18.1174,241.6336,3.9624,4.4595,1.7728,1.9587,3.2946,7.7371,2.0097,3.2009,0.54013,6.6694,12.1805,11.0558,7.8853,2.2666,4.7123,1.6802,19.2611,6.3779,3.9969,1.3022,2.7984,6.7768,15.0379,3.5542,4.1723,3.2004,1.3796,1.5324,4.8558,11.4072,3.3712,2.3908,12.9502,2.5548,2.4642,2.3371,13.7344,2.1539,4.6127,1.2255,13.7358,5.5318,9.9233,4.2688,11.4052,7.8883,9.054,8.2734,3.8576,1.6068,5.1768,,,PD,0.081782,PD,,PD,0.43147,3.8381,4.2825,0.89561,9.8063,1.6593,0.40869,3.5256,3.4491,48.1866,17.4472,247.8279,4.1029,4.9825,1.7662,2.1921,3.5861,8.2502,2.0343,3.4766,0.55633,6.3747,12.3267,10.0423,8.8109,2.0862,4.6192,1.7537,18.5818,5.259,3.7031,1.0922,2.86,7.4179,14.947,2.9996,4.2169,3.9979,1.488,1.514,4.3107,10.7463,3.2078,2.4467,11.5953,2.4417,2.2275,1.9879,13.0218,2.1577,4.4805,1.1508,14.4717,5.7265,8.5535,4.4554,12.255,8.0453,8.9276,7.8926,3.6981,1.4549,4.9934,,,,,,,,,,,,,,,65,,,,459
+3833,2.303,1.9825,,70-79y,Other,,,17.2057,4.4402,2.264,2.2499,2.6704,ppmi,,,F,,0.42348,3.9691,3.9543,0.79756,8.4064,1.1709,0.36608,3.1148,3.5608,41.9118,13.3569,198.9312,3.2249,3.9866,1.4449,1.7341,3.0322,6.4955,1.7483,2.9845,1.2076,6.0883,9.9652,31.4837,7.099,2.0271,3.9806,1.5281,15.8734,5.7735,3.3261,1.1133,2.4498,6.4145,11.8975,3.5044,4.151,2.9115,1.3397,1.4018,3.9507,9.9573,3.0028,2.1956,11.2072,1.7134,2.1794,2.0495,12.1635,1.3796,3.9593,1.1959,14.2116,4.7183,8.0811,3.2596,10.2235,6.3852,7.9224,6.6883,3.4882,1.1788,4.6973,,,PD,0.090087,PD,,PD,0.37498,3.4513,3.8713,0.81552,9.3977,1.3614,0.3827,3.3621,3.6834,43.1501,13.0754,202.4949,3.4882,4.4778,1.5507,1.6748,3.2192,6.7588,1.7748,3.2114,1.5448,6.5989,10.2992,30.2063,7.9625,1.9275,3.7927,1.4956,16.6664,4.7598,3.1538,0.9744,2.4195,6.8831,12.1454,2.8494,4.2322,3.3153,1.3519,1.4315,3.6475,9.7008,2.883,2.2532,9.3401,1.5763,2.0347,1.9801,11.2399,1.323,3.9828,1.1201,13.124,4.458,7.14,4.0175,9.1055,6.389,7.8305,7.1471,3.3735,1.2432,4.5184,,,,,,,,,,,,,,,74,,,,460
+3834,1.9833,1.6269,,60-69y,Other,,,23.2889,5.731,3.0964,2.5849,2.1978,ppmi,,,M,,0.55211,5.5687,4.3866,0.9201,10.5458,1.7155,0.4375,3.4455,3.8217,52.6166,18.743,258.7697,4.5463,5.0216,1.6393,1.9022,4.0665,7.8794,2.2528,3.3146,0.56487,6.681,12.4326,17.4278,7.7352,2.5454,5.8291,2.1979,19.98,6.6369,4.4524,1.3148,3.4453,8.8045,15.0601,3.6252,4.8195,3.0855,1.5566,1.6496,5.3463,13.2159,3.37,2.4543,12.1738,2.7629,2.6631,2.5718,14.7572,1.974,4.9961,1.4501,17.2146,6.8026,10.9845,3.8888,13.0555,7.5208,8.9241,8.0422,3.7274,1.5551,5.581,,,PD,0.097157,PD,,PD,0.4791,5.3729,4.2792,0.92227,11.2436,1.8887,0.45448,3.5951,4.1075,53.0058,18.2108,266.585,4.3057,5.3964,1.7423,1.854,4.2662,8.4122,2.122,3.639,0.63012,7.2182,12.9077,17.7803,9.1623,2.5261,5.888,2.0308,20.7786,5.7568,4.0261,1.3735,3.3979,9.4297,16.4308,3.4381,5.006,3.5183,1.572,1.6136,5.0821,13.6273,3.3745,2.5953,12.5786,2.4401,2.8554,2.263,14.6128,1.9911,4.7688,1.379,16.6881,6.7091,9.2456,4.8088,11.7565,7.9586,8.7059,8.1811,3.3984,1.5371,5.3136,,,,,,,,,,,,,,,69,,,,461
+3835,1.819,1.5839,,70-79y,Other,,,19.2471,4.8853,2.6958,2.3468,1.6524,ppmi,,,M,,0.4707,5.1007,4.6369,0.83002,8.8606,1.5452,0.41352,3.3866,2.9391,44.1074,14.9679,235.0615,4.2551,4.4235,1.6598,2.1142,3.7504,7.2562,2.2515,3.2103,0.62995,6.7774,11.5367,19.5265,7.2212,2.5348,5.1553,2.022,20.2886,6.4581,4.1112,1.2573,3.1372,7.8469,13.7328,4.08,4.1416,3.4107,1.6711,1.3589,4.6169,11.2872,3.3234,2.359,13.4574,2.9068,2.5619,2.3614,15.236,2.5219,4.0303,1.4623,16.9683,6.0215,9.4338,3.752,12.2748,6.7832,8.3285,8.1633,4.0038,1.8788,4.8907,,,PD,0.076025,PD,,PD,0.38976,4.2012,4.0979,0.8337,10.9712,1.8136,0.40266,3.318,3.0393,44.7502,14.7497,242.7321,4.5209,4.4816,1.7948,2.3183,4.1375,7.5309,2.3376,3.3846,0.53137,6.6039,12.1173,14.1891,7.6213,2.3534,4.8476,2.0208,20.4948,5.7628,4.0992,1.0277,3.0978,9.0185,14.9718,3.224,3.9277,3.9784,1.761,1.3517,4.4421,11.6766,3.146,2.2822,10.9773,2.2089,2.4394,2.2876,14.8273,2.0922,3.9758,1.3415,16.0513,6.2881,7.9071,4.4777,12.1957,7.7329,8.104,8.4261,4.0836,1.6514,4.6942,,,,,,,,,,,,,,,72,,,,462
+3837,1.0492,1.6189,,60-69y,Other,,,20.5482,4.8849,3.0484,2.1918,1.0535,ppmi,,,M,,0.50578,4.3204,4.08,0.92265,10.2728,1.54,0.39778,3.4392,3.5824,48.8363,17.6478,260.19,4.1901,5.0267,1.6597,1.9579,3.1111,8.0692,2.0038,3.1861,0.35518,6.9996,12.5155,11.9786,7.4249,2.3067,4.949,1.7284,19.8842,7.136,3.9822,1.1639,3.0215,6.7351,15.4242,3.4005,4.3356,3.3619,1.4408,1.5959,4.7207,11.5713,3.3152,2.309,13.8191,2.5126,2.4999,2.227,13.7274,2.249,4.3604,1.2148,15.583,5.4156,8.6515,4.0077,12.1027,8.1899,9.1644,7.5366,3.8971,1.6724,5.1862,,,PD,0.08748,PD,,PD,0.44117,4.0729,3.8769,0.89549,10.9189,1.6894,0.39902,3.6596,3.6934,48.5176,17.093,263.9668,4.0598,4.8213,1.7663,2.0091,3.2032,8.4708,1.9693,3.3683,0.45342,7.4632,12.7956,11.171,8.3513,2.1338,4.9205,1.6539,19.0979,5.7138,3.6971,1.1252,2.884,7.2214,16.0495,3.1041,4.4605,3.857,1.441,1.6296,4.3791,11.376,3.1769,2.3158,11.3503,2.3677,2.344,2.0018,14.4817,2.1343,4.3065,1.1259,15.5836,5.4341,8.7957,4.4916,11.1519,8.0899,8.7975,8.2269,3.6451,1.5398,4.8485,,,,,,,,,,,,,,,64,,,,463
+3838,1.1484,1.7431,,60-69y,Other,,,19.337,4.3381,2.5623,2.0846,1.1671,ppmi,,,F,,0.59862,5.6426,5.2123,0.98843,10.6564,1.9892,0.4644,3.6919,3.4116,46.1198,15.4863,243.4901,4.8211,5.0098,1.9397,2.3768,4.0614,8.2,2.5497,3.4593,0.42347,7.5249,12.0948,9.5515,8.2654,2.8874,5.242,2.198,22.97,7.281,5.0522,1.3228,3.3094,8.4698,15.0692,3.914,4.6011,4.1171,1.8321,1.5201,5.0945,12.6595,3.6663,2.659,15.6518,2.613,3.163,2.5417,16.4542,2.2241,5.5281,1.4327,15.9608,6.7238,10.4373,4.3999,11.1058,7.8988,9.7614,8.4698,5.1842,1.795,5.1843,,,PD,0.086938,PD,,PD,0.53222,4.5967,4.7465,0.97075,11.4086,2.15,0.46672,3.5454,3.5175,45.3166,15.1651,247.853,4.5979,5.1584,2.0267,2.4428,4.6953,8.294,2.5605,3.7652,0.62624,7.7506,12.2628,8.5612,8.8049,2.5114,4.7466,2.2794,22.538,6.3365,4.8306,1.5228,3.6204,10.0803,15.536,3.6952,4.5316,3.9564,1.6218,1.5075,4.536,11.8199,3.3613,2.5666,12.5801,2.6097,2.6849,2.1686,15.852,2.2879,4.9683,1.4127,17.7915,7.1762,9.6027,4.9627,11.215,8.6898,9.55,8.6879,3.7644,1.6736,4.959,,,,,,,,,,,,,,,61,,,,464
+3850,0.84764,2.0058,,50-59y,Other,,,17.2869,4.4005,2.442,2.0523,0.92987,ppmi,,,F,,0.45829,3.8896,3.4763,0.78982,8.9791,1.4763,0.35589,3.2366,3.0981,43.4286,13.6152,208.4647,3.1336,4.6207,1.4514,1.6731,3.4164,6.9405,1.7362,3.0483,0.48487,5.8161,9.9517,14.6786,7.6003,2.2625,4.1268,1.5883,16.8508,6.362,3.6636,0.96773,2.2338,6.1993,12.1118,3.3298,4.1659,3.5487,1.2592,1.4315,3.854,9.8619,2.9681,1.9254,12.1844,1.697,2.3534,1.9312,13.1283,1.4025,4.1164,0.98966,13.6106,4.6609,7.7324,3.6918,10.2125,6.0482,7.8714,6.3426,3.6451,1.1859,4.5634,,,,0.06678,CN,,HC,0.42529,3.3363,3.4297,0.78464,9.6538,1.5704,0.36069,3.4467,3.1987,44.3724,13.488,210.555,3.1186,4.7285,1.5463,1.5748,3.1985,7.2648,1.6862,3.2161,0.44864,6.2563,10.711,11.6003,7.8426,2.0304,4.2024,1.477,16.4888,5.1536,3.3178,1.1114,2.2949,7.1906,12.4416,2.7773,3.8925,2.9858,1.1986,1.3923,3.5491,9.5949,2.6488,1.8537,11.0453,1.7065,2.2566,1.6993,13.3237,1.5036,4.1118,0.92888,13.5611,5.1048,7.9548,4.5349,9.9425,6.1468,7.6988,6.8096,2.9632,1.2031,4.3492,,,,,,,,,,,,,,,50,,,,465
+3851,0.72613,1.5082,,50-59y,Other,,,18.185,4.3585,2.8184,2.3099,0.76111,ppmi,,,F,,0.43494,4.0668,3.7097,0.87539,7.8121,1.455,0.36496,2.8475,2.8533,46.5355,15.0439,192.9599,4.0358,3.8458,1.611,1.8433,3.2143,6.8057,1.89,3.1359,0.43188,5.0452,10.7286,7.5023,7.0909,2.2608,4.7512,1.6117,17.9444,5.1656,3.6894,1.1894,2.3521,6.1847,12.8078,2.4186,3.6307,3.4428,1.3941,1.3281,3.8448,9.0437,3.1718,2.1532,11.8465,2.1506,2.2291,2.0122,13.6154,1.7811,4.2395,1.0222,14.4197,4.8707,8.4299,3.0405,9.5584,6.5592,7.9527,7.3231,3.5895,1.5763,4.5628,,,,0.081396,CN,,HC,0.39661,3.552,3.8037,0.86859,9.313,1.6369,0.3924,3.2427,2.9992,47.6073,14.8882,200.6336,3.9442,4.0655,1.6549,2.0197,3.6599,6.7668,1.9967,3.368,0.40671,6.5662,10.4315,7.4624,8.0945,2.1688,4.1402,1.5924,18.5589,5.2428,3.5415,1.2085,2.7351,6.9757,12.8248,2.7783,4.1982,3.4289,1.7063,1.3269,3.4931,8.7489,2.9012,2.1232,10.3377,1.9707,2.1769,1.7325,13.4904,1.6263,4.1442,1.0357,14.4182,4.9805,6.9647,3.8473,9.8215,6.5859,7.788,7.6014,3.9255,1.3222,4.4521,,,,,,,,,,,,,,,55,,,,466
+3852,2.11,3.1896,,70-79y,Other,,,17.8912,4.4158,2.6842,2.149,2.0484,ppmi,,,M,,0.48397,5.1415,4.648,0.87934,8.4057,1.5437,0.41385,2.5084,3.3492,46.775,15.5578,223.592,4.7099,4.3789,1.7162,2.0797,3.7292,7.3831,2.4466,3.4255,1.2481,6.5616,11.0612,31.7775,7.618,2.4309,4.7347,1.9966,18.8278,5.6841,4.2593,1.149,2.8174,7.4743,13.5154,3.1285,4.3167,3.751,1.6537,1.4747,4.3212,10.5442,3.4584,2.6447,11.5362,2.5914,2.5061,2.325,13.8552,2.1216,4.5033,1.4368,15.1509,5.2229,8.9773,3.1019,11.1448,7.2004,8.5567,7.8636,4.1141,1.8349,4.8103,,,,0.073283,CN,,HC,0.45158,4.1698,4.5975,0.9054,9.7457,1.6999,0.42647,3.3123,3.4878,46.0963,14.8246,226.8037,4.4039,4.6802,1.7067,2.3286,3.8448,7.6447,2.2378,3.7358,1.5195,6.9491,11.6697,29.3181,8.2929,2.2173,4.1385,1.8743,18.6511,5.0733,3.9072,1.2685,2.7548,8.4089,13.9357,3.49,4.6189,3.4313,1.7164,1.4728,3.7904,10.3468,3.0988,2.5924,9.8895,2.4468,2.3108,2.1328,13.2357,1.9604,4.449,1.3334,14.885,5.4439,7.5245,4.0564,10.5456,7.5418,8.5829,7.8341,4.043,1.654,4.6086,,,,,,,,,,,,,,,77,,,,467
+3853,1.0517,1.7623,,-50y,Other,,,20.2202,5.8854,2.8828,2.5827,1.0258,ppmi,,,M,,0.47953,4.5058,4.5907,0.9214,10.4076,1.6064,0.4131,3.1371,3.3138,54.9976,17.2679,215.2838,3.7856,4.6048,1.7649,2.0298,3.6268,7.9854,2.1721,3.4284,0.51225,6.568,12.3778,8.9618,8.0702,2.4145,4.7305,1.851,20.8822,6.2429,4.2047,1.3955,3.1079,6.6835,15.9845,3.0113,4.7859,2.8138,1.5371,1.5202,4.7362,11.1806,3.4397,2.2561,12.0912,2.4274,2.6683,2.1073,13.344,1.858,4.5053,1.2578,14.5263,5.3604,9.7332,3.2335,11.5974,7.8944,8.5157,7.6753,3.6779,1.4409,4.9594,,,,0.08078,CN,,HC,0.44266,4.0954,4.3983,0.94285,10.4736,1.7494,0.4233,3.1836,3.293,53.6387,16.6074,217.7477,4.1596,5.2491,1.9238,2.294,3.7893,8.4301,2.226,3.6547,0.54425,6.326,12.725,6.4629,8.8684,2.2441,4.9243,1.871,19.2473,4.892,3.847,1.1778,2.7807,7.6361,16.0666,2.5711,4.6459,3.6984,1.6326,1.5297,4.5561,10.9828,3.3568,2.344,11.767,2.1292,2.2492,1.9779,13.4269,1.8441,4.4362,1.2687,14.854,5.5015,8.4653,4.2169,11.3736,7.5359,8.0978,8.1992,4.0032,1.4418,4.7478,,,,,,,,,,,,,,,47,,,,468
+3854,0.71774,1.5833,,-50y,Other,,,21.101,5.1038,3.0082,2.557,1.0355,ppmi,,,M,,0.50208,4.9048,4.5093,0.97309,9.9036,1.608,0.42126,4.0258,3.3765,51.887,18.4684,252.0797,4.3973,4.9429,1.9347,2.1187,3.9355,7.9006,2.3634,3.293,0.42295,7.0054,12.7175,6.2431,8.0947,2.4796,5.0275,1.9571,19.3638,6.5012,4.252,1.1091,3.0237,7.2457,14.2706,4.2916,4.7767,3.0287,1.5782,1.713,4.7186,11.5959,3.2224,2.5512,13.0139,3.0057,2.5145,2.5502,13.7167,2.692,4.9885,1.1797,15.513,5.3934,9.5819,4.2256,12.2632,7.2771,9.644,8.3737,4.0981,2.0428,5.4662,,,,0.078781,CN,,HC,0.45888,3.991,4.3457,0.97987,10.4719,1.9753,0.45331,4.1124,3.526,53.2261,17.7076,258.0396,4.6901,5.5987,2.0851,2.2392,4.3313,8.0688,2.519,3.6422,0.62099,7.592,11.8741,5.9495,9.1277,2.4123,4.7018,1.9088,20.0945,5.5003,4.3097,1.0927,3.0668,7.9984,14.1972,3.7462,5.0921,3.7496,1.5735,1.7076,4.1381,11.9347,3.2158,2.5874,10.89,2.8018,2.2313,2.3735,13.6883,2.2293,4.9256,1.1369,15.2512,5.8695,8.8206,4.6129,12.2976,7.8092,9.2799,9.4196,3.7724,1.8741,5.3595,,,,,,,,,,,,,,,31,,,,469
+3855,0.95676,1.8851,,-50y,Other,,,17.5693,4.5942,2.3483,2.051,0.88252,ppmi,,,F,,0.45149,4.357,4.2626,0.86543,8.6159,1.4316,0.39269,3.2364,2.981,44.2426,14.5688,218.3593,4.3268,4.3731,1.6856,2.0957,3.0661,7.2831,1.9673,3.0498,0.37659,5.9733,11.035,9.4054,7.271,2.2864,4.7015,1.6737,17.8579,5.9968,3.8729,1.0866,2.4781,6.3676,13.9587,3.4091,4.1022,3.2803,1.5302,1.4006,4.4621,10.8851,3.1336,2.33,10.9751,2.6658,2.5376,2.2596,11.6769,2.2046,4.1497,1.1981,13.8677,5.6462,8.6989,3.8168,11.0291,7.2712,8.8465,7.4548,3.7379,1.8104,4.6604,,,,0.078572,CN,,HC,0.42917,3.5045,4.0797,0.89881,9.9354,1.5776,0.40912,3.2346,3.0301,43.6202,14.0524,222.9098,4.1824,4.9165,1.8125,1.8812,3.4051,7.3092,2.032,3.3606,0.39401,6.085,11.7782,6.8812,7.3032,2.0656,4.2759,1.694,16.7539,4.8257,3.755,1.1243,2.7197,7.1299,14.5252,2.7925,4.018,3.2402,1.4793,1.3821,4.1645,11.7048,2.9301,2.3848,10.2288,2.523,2.3995,2.129,11.9621,2.1437,4.0076,1.1509,14.7737,5.1892,8.7622,4.2485,10.0294,7.9464,8.6732,8.215,3.2049,1.7446,4.5027,,,,,,,,,,,,,,,49,,,,470
+3856,1.6112,2.0194,,60-69y,Other,,,17.1959,4.9116,3.0882,2.3399,1.3863,ppmi,,,M,,0.40733,4.7807,4.3932,0.80448,7.3713,1.4865,0.39583,2.8366,2.5945,50.0252,15.6097,230.0773,3.9307,4.0172,1.6145,2.2397,3.4209,7.0757,2.1832,2.8795,0.44325,6.6459,11.2434,14.8273,7.1218,2.3423,4.6601,1.829,18.945,5.3254,3.9586,0.91556,2.5012,6.7999,14.0581,3.9825,4.3927,3.2409,1.5314,1.4049,4.2764,9.5017,3.076,2.2516,11.4058,2.0737,2.3677,2.1318,12.6021,1.7452,3.9535,1.2945,14.7127,5.0953,8.7245,3.4448,9.2783,6.4789,7.7924,7.7239,3.6162,1.4254,4.5674,,,PD,0.072913,PD,,PD,0.3552,4.1792,4.2601,0.79215,8.864,1.708,0.38716,3.1671,2.6244,50.7884,15.3156,234.1595,3.6906,4.6569,1.6598,2.2941,3.6215,7.3561,2.0467,3.0769,0.55909,6.3857,11.1403,13.608,7.8926,2.1917,4.6127,1.8431,17.4146,4.7117,3.7533,1.1102,2.7296,7.8452,12.8726,3.1807,4.5257,3.3935,1.4448,1.4212,3.8415,9.501,2.9799,2.2048,9.3938,2.0326,2.4404,1.8314,12.84,1.9079,3.6764,1.2636,15.9159,5.3225,7.6237,4.2613,9.5723,6.6764,7.4898,8.0585,3.4407,1.3007,4.2897,,,,,,,,,,,,,,,68,,,,471
+3857,0.46137,1.2602,,-50y,Other,,,15.5491,4.2498,2.6045,2.1462,0.65669,ppmi,,,F,,0.38245,3.8058,3.8128,0.78761,9.142,1.345,0.34196,3.0407,2.4172,45.1223,13.4781,175.1487,3.5186,3.9805,1.5234,1.7356,2.9595,6.6639,1.8988,2.628,0.37432,5.732,9.9795,4.9352,6.9818,2.1232,4.2092,1.5385,15.978,5.9016,3.6333,1.0189,2.4508,5.8902,12.4294,3.0842,4.2582,2.5388,1.4197,1.1782,3.8434,9.3732,2.7963,2.0147,9.832,2.3384,2.2806,1.9838,10.5944,2.0764,3.7477,0.97397,13.0233,4.859,8.7805,3.6048,9.1527,7.0024,7.1361,7.2224,3.2325,1.4875,4.0435,,,,0.057443,CN,,HC,0.32525,3.2017,3.6769,0.8183,9.3534,1.4742,0.34161,3.1575,2.5318,44.7632,12.9697,177.8803,3.0665,4.7637,1.6231,1.7792,3.2766,7.0724,2.0359,2.9181,0.49564,6.2922,10.6837,5.0461,7.8008,1.9578,4.2456,1.626,16.0692,4.6968,3.4193,0.92213,2.4402,6.6454,12.1323,2.8262,4.2421,2.9371,1.4436,1.1861,3.3193,9.3475,2.744,2.0257,8.8326,2.058,2.1115,1.8821,10.5781,1.8189,3.5991,0.91189,12.6927,4.7659,6.8204,3.5886,9.0291,6.8198,6.939,8.0602,3.1939,1.4539,3.9356,,,,,,,,,,,,,,,41,,,,472
+3858,1.6612,1.6093,,60-69y,Other,,,19.4764,4.5083,2.4183,2.0345,1.3242,ppmi,,,F,,0.44275,4.201,4.2902,0.79926,8.6964,1.5696,0.38771,3.4408,3.6598,47.0713,15.1054,226.9634,4.064,4.1941,1.5602,2.1554,3.3251,7.1989,2.1007,3.0251,0.52871,6.6782,10.7906,13.4645,7.5694,2.4891,4.5522,1.6933,18.1937,6.1352,4.1976,1.2653,2.5633,6.647,13.3194,3.3643,4.4074,3.9098,1.5543,1.466,4.4883,10.4309,3.1656,2.2513,12.0445,2.3057,2.7018,2.2966,13.8031,1.9574,4.485,1.1909,14.4331,5.3699,8.9619,3.3706,10.4719,7.1546,8.2316,7.4212,4.0345,1.6146,4.9086,,,PD,0.07754,PD,,PD,0.40168,3.5836,4.1269,0.83062,9.9532,1.7565,0.39879,3.5879,3.5407,46.6087,14.5231,231.1133,3.7896,4.4826,1.6766,2.2871,3.936,7.1086,2.0184,3.2926,0.64132,6.2939,11.7105,11.9113,8.1301,2.3646,4.1215,1.6874,19.9517,4.9508,3.8299,1.1536,2.5751,7.9248,14.0551,2.5839,4.3864,3.7282,1.5954,1.4712,4.0212,10.1303,3.0761,2.1084,9.3995,2.2456,2.5673,1.9216,13.0872,1.9971,4.2142,1.1471,14.8928,5.6141,8.4988,3.9474,10.975,7.2165,7.968,7.5901,3.7482,1.3776,4.705,,,,,,,,,,,,,,,67,,,,473
+3859,1.0999,1.7458,,60-69y,Other,,,16.4853,4.0856,2.4827,2.2258,1.1015,ppmi,,,M,,0.43414,4.384,4.3561,0.87232,9.8602,1.4555,0.38348,2.9721,2.7144,45.5581,13.5798,219.1211,4.0893,4.7352,1.7742,2.0105,3.1252,7.526,1.9313,2.9709,0.41876,6.9102,11.9884,10.0598,7.7489,2.4134,4.7933,1.7661,17.9688,6.5801,3.6288,1.0134,2.3417,6.9406,14.875,3.4077,4.4517,3.2473,1.5147,1.2844,4.7068,11.7551,3.2354,2.4494,13.0035,2.4564,2.7631,2.3106,13.0334,2.0648,4.3459,1.1524,13.0427,5.3684,9.0997,3.7315,10.3022,7.6617,7.7543,8.1173,3.585,1.6097,4.3856,,,,0.078543,CN,,HC,0.39602,3.8415,4.0386,0.87319,11.1677,1.7441,0.40812,3.1704,2.8316,46.1778,13.6869,223.6283,3.9989,5.1343,1.805,1.9825,3.8216,7.7053,2.0674,3.1918,0.48187,7.227,12.307,10.7579,8.4412,2.2063,4.8866,1.759,16.872,5.4353,3.708,1.2035,2.6834,7.4509,15.1838,3.1935,4.4331,3.2465,1.5524,1.296,4.0874,11.0742,3.0649,2.3144,11.2514,2.0775,2.5049,2.0202,12.4869,1.8064,4.2708,1.1021,13.371,5.352,8.6412,4.5365,11.0477,7.5141,7.6195,8.1138,3.4583,1.5266,4.1919,,,,,,,,,,,,,,,60,,,,474
+3863,1.3586,1.8276,,60-69y,Other,,,15.9799,4.441,2.5478,2.0051,1.1588,ppmi,,,F,,0.42112,4.3335,3.8933,0.82096,8.6168,1.5215,0.37662,2.715,2.8283,42.8135,13.6846,200.2865,3.7578,3.7347,1.5315,1.5532,3.1489,6.7489,1.8458,3.0879,0.43233,5.71,10.0093,11.8389,6.425,2.2563,4.7852,1.6682,17.9586,5.5029,3.8023,1.2189,2.6059,6.4012,12.8987,2.8531,3.6845,2.9039,1.2325,1.1402,4.1223,10.1992,2.9882,2.1872,12.4416,1.9665,2.5355,2.0188,12.6444,1.6354,3.7724,1.184,13.4163,5.1988,7.4177,3.2882,12.0658,6.4216,7.1701,7.0412,3.3885,1.2248,4.0676,,,PD,0.066394,PD,,PD,0.37543,3.6766,3.5662,0.80577,9.8912,1.7161,0.39558,2.6635,2.8031,42.0461,13.9779,202.9639,3.3072,4.1789,1.6388,1.5165,3.4062,6.6585,1.939,3.2852,0.43635,5.8888,10.1036,9.1957,6.8779,2.0819,4.8408,1.675,18.5687,4.8935,3.7457,1.0304,2.5442,7.1102,13.7831,2.3065,3.7427,3.2468,1.334,1.09,3.612,9.5967,2.8306,1.9364,9.0637,1.7723,2.3694,1.7424,11.9827,1.4836,3.7748,1.1561,14.1297,4.9493,6.929,4.0676,9.1827,6.838,7.0403,7.3624,2.9428,1.1532,3.8384,,,,,,,,,,,,,,,65,,,,475
+3866,1.0307,1.302,,50-59y,Other,,,16.4465,4.3569,2.4971,2.0997,1.005,ppmi,,,F,,0.39659,3.8799,3.8437,0.76073,8.0896,1.3121,0.35313,3.0262,2.5837,42.9953,14.2293,175.7214,3.2762,4.1364,1.4852,1.82,3.0566,6.3267,1.7899,2.8706,0.46115,6.0232,9.983,8.2834,6.7152,2.1112,4.1451,1.4894,15.8686,5.3322,3.3951,0.97181,2.0141,5.6057,12.7606,3.2071,3.7913,3.4281,1.3634,1.1957,3.936,9.2427,2.9414,1.8794,10.348,1.8521,2.0773,1.8106,10.5327,1.628,2.8238,1.1138,12.0922,4.1392,7.1245,3.258,9.1917,6.5443,7.3782,6.9002,3.5948,1.2164,4.2469,,,PD,0.073268,PD,,PD,0.36402,3.5031,3.7147,0.74923,8.5426,1.4758,0.35867,3.0292,2.9385,44.4439,14.1107,179.6738,3.3619,4.1135,1.5255,1.8208,3.1203,6.6406,1.7689,3.0972,0.48318,6.4315,10.172,8.124,7.8726,2.0207,3.9661,1.4175,15.2948,4.7686,3.2192,0.88028,2.0612,5.9674,12.7675,2.8321,3.981,3.3581,1.4479,1.2745,3.6448,9.5201,2.7308,1.9832,9.2839,1.8379,2.1913,1.7016,10.4671,1.4874,3.1967,1.0509,12.0038,4.2463,6.5396,4.041,9.8086,6.254,7.4232,6.8346,3.2522,1.2388,4.08,,,,,,,,,,,,,,,53,,,,476
+3867,0.76716,1.2958,,70-79y,Other,,,18.4166,4.2995,2.1359,2.0928,0.74164,ppmi,,,F,,0.4347,3.9769,4.2128,0.79592,8.3682,1.4608,0.36826,2.2662,2.9603,42.1698,14.9372,212.4792,3.9386,3.8835,1.6155,1.7448,3.3309,6.8609,1.8724,2.9252,0.40363,6.3447,10.9655,7.1984,6.4308,2.2537,4.0155,1.6473,17.8366,5.8534,3.6644,1.0489,2.2198,6.1798,12.8765,2.9298,3.7636,2.8982,1.3456,1.4067,3.5564,8.6657,2.9155,2.3419,11.4208,2.1286,2.3749,2.1899,12.0421,1.8814,4.4637,1.0656,13.3445,4.6194,8.3637,3.0623,9.2223,6.2514,7.8848,7.1413,3.3093,1.4481,4.4528,,,PD,0.07559,PD,,PD,0.37664,3.3513,4.0192,0.77745,8.7478,1.596,0.37855,2.5938,2.8758,42.5269,14.333,215.3937,3.6235,4.4537,1.6207,1.7691,3.458,6.9476,1.7578,3.091,0.39751,5.8444,10.5262,6.3116,7.2698,2.0747,3.8214,1.5751,17.0194,4.6651,3.5107,0.96968,2.1662,6.7243,12.5388,2.4597,3.7889,3.2945,1.4048,1.3725,3.3333,9.4706,2.6865,2.407,9.7147,2.1505,2.3069,2.0154,12.2799,1.7667,4.3434,1.0865,13.5549,4.4373,6.7981,3.8857,9.1343,6.9914,7.5239,7.4776,3.1449,1.4713,4.2361,,,,,,,,,,,,,,,72,,,,477
+3868,2.6851,2.8673,,60-69y,Other,,,17.0067,4.7398,2.5887,2.1463,2.4139,ppmi,,,M,,0.42725,5.3891,4.9692,0.81374,9.7115,1.6622,0.37444,3.2628,2.9912,46.4959,14.5078,193.7164,4.6254,4.6732,1.6627,1.9152,3.7333,7.5454,1.9978,2.9734,0.86665,6.8323,11.6722,29.5984,7.5188,2.2948,5.2376,1.8325,19.2092,6.1097,4.0475,1.1777,2.5535,7.6655,14.0839,3.4058,4.3765,3.4921,1.3027,1.2028,5.1345,12.5792,3.3148,2.7829,12.04,2.6236,2.3367,2.5868,12.4683,2.0289,4.0307,1.3416,15.2949,5.7803,9.3583,3.4439,11.8876,7.3435,7.6149,8.0879,3.7591,1.6695,4.2599,,,PD,0.070796,PD,,PD,0.3742,4.4765,4.0607,0.81631,11.3268,1.7262,0.37401,3.2094,3.1007,47.589,14.1958,198.0424,4.0026,4.6495,1.676,1.6689,3.9991,7.8022,2.0017,3.1614,0.83207,7.376,12.6963,27.0585,8.0582,2.1658,4.89,1.901,19.1698,5.1351,3.6748,1.1869,2.7517,8.51,15.2044,3.2625,4.3348,3.551,1.4458,1.1641,4.7237,12.0033,3.0703,2.6576,10.7033,2.1835,2.2406,2.2164,11.7215,1.7454,3.6614,1.2716,15.0157,5.7635,8.5864,4.1907,11.9215,7.2389,7.0523,8.3793,3.491,1.4723,3.8416,,,,,,,,,,,,,,,69,,,,478
+3869,1.3923,1.8709,,-50y,Other,,,22.0959,5.5015,2.9131,2.27,1.0666,ppmi,,,M,,0.47587,5.2412,4.6964,0.9846,11.1365,1.8,0.44851,3.861,3.086,51.1657,19.0843,272.6204,5.1169,4.9384,1.8155,2.3018,3.7758,8.1069,2.3774,3.5148,0.5517,7.8436,12.5597,7.8976,8.0478,2.598,5.2783,2.0244,20.8138,6.7782,4.568,1.2521,3.0111,7.798,15.1386,3.9307,4.6234,3.9322,1.6441,1.6371,5.5051,11.0468,3.7471,2.5774,12.4825,2.8564,2.6983,2.7558,15.3837,2.6965,4.8065,1.3875,15.0984,6.3467,9.978,3.7751,10.9533,8.6028,9.3868,8.2218,4.474,2.069,5.366,,,PD,0.072947,PD,,PD,0.40853,4.4346,4.3778,0.9692,12.135,1.9561,0.45169,4.1862,3.169,52.2565,18.4331,274.5009,4.2345,5.4231,1.8914,2.1671,3.927,8.1796,2.2997,3.6943,0.70556,7.9095,12.9612,6.5802,9.2095,2.4704,5.0573,2.0598,20.8277,6.4283,4.2037,1.2157,2.9636,9.0168,15.8216,3.5008,4.7878,3.7758,1.7154,1.5982,4.706,10.9613,3.3658,2.5037,11.2963,2.1789,2.6868,2.2873,15.559,2.1912,4.6396,1.2688,16.5819,6.2643,8.743,4.7482,11.0568,8.5303,9.1869,8.7784,3.4247,1.7361,5.1553,,,,,,,,,,,,,,,40,,,,479
+3870,0.83514,1.7058,,-50y,Other,,,21.1298,4.8051,2.574,2.2809,0.90065,ppmi,,,F,,0.47404,5.1368,3.8935,0.92606,9.6326,1.6086,0.40927,4.0444,3.0089,49.9174,17.9473,249.9511,3.9322,5.3793,1.7433,1.869,3.4932,7.8083,2.0424,3.3314,0.45946,6.7706,11.996,9.298,8.3657,2.5015,5.4179,1.9475,20.3781,6.4521,4.054,0.98781,2.3601,6.9,14.3402,3.4988,4.4271,3.3182,1.49,1.6865,4.8697,11.7405,3.2933,2.1442,12.6041,2.1407,2.6211,2.1493,13.1482,1.7643,4.6273,1.2095,13.6989,5.5906,9.3072,3.9835,11.5726,7.4808,8.8397,7.9534,4.0714,1.4095,5.28,,,PD,0.07796,PD,,PD,0.42472,4.3276,3.6236,0.89798,11.5064,1.868,0.41436,4.0714,3.0347,50.1025,18.1407,256.1623,3.8459,5.3048,1.7514,1.7555,3.5719,7.9373,2.0787,3.4583,0.35138,7.4261,12.1157,7.7466,8.697,2.2706,5.0405,1.8927,19.4621,6.0626,3.9143,1.0147,2.6231,8.3068,14.4564,3.3998,4.5871,3.4768,1.4144,1.6679,4.2092,11.4939,2.8387,2.0674,10.6825,2.3588,2.3666,1.9293,13.0389,1.8839,4.6328,1.1593,13.9183,5.4936,8.7887,4.7056,12.2444,7.0634,8.4881,7.7929,3.5645,1.4374,4.9747,,,,,,,,,,,,,,,42,,,,480
+3900,2.1074,2.0803,,70-79y,Other,,,17.5651,4.6757,2.2609,2.1383,2.0803,ppmi,,,M,,0.40803,4.0142,3.9607,0.74853,8.4849,1.1689,0.35413,2.7874,3.0127,41.1957,14.0974,185.2061,3.4203,4.0139,1.4289,1.7196,3.1723,6.1493,1.7585,3.0509,0.71518,6.1515,9.6725,23.2827,6.9495,1.9674,4.0043,1.4629,15.519,6.052,3.1691,1.0332,2.1936,6.1618,12.3867,3.3462,3.8726,2.9531,1.2671,1.3508,4.0692,9.8599,2.8958,2.3613,9.7334,2.0009,2.0956,2.263,10.272,1.4671,3.8083,1.1907,12.2494,4.4487,7.382,3.4759,9.3355,5.8789,7.5594,6.7729,3.433,1.405,4.5026,,,PD,0.065421,PD,,PD,0.37198,3.8706,3.9803,0.75629,9.3373,1.4086,0.3676,3.0209,3.4229,41.3707,13.5962,189.986,3.8914,4.4079,1.4525,1.6277,3.1827,6.1315,1.7519,3.2296,0.99355,6.5199,9.8473,22.8651,7.434,1.8766,4.1485,1.4117,15.9456,5.1226,3.1007,1.0759,2.2161,6.6387,12.7989,2.814,3.8453,3.1039,1.3525,1.3989,3.5768,9.6218,2.6619,2.3894,9.7341,1.8661,1.936,2.1843,10.5306,1.4801,3.8742,1.09,12.1613,4.2364,6.7252,4.0151,9.7155,6.0135,7.1982,7.0226,3.0535,1.4072,4.4393,,,,,,,,,,,,,,,72,,,,481
+3901,1.801,1.8775,,60-69y,Other,,,15.0261,4.0751,2.2641,2.1749,1.4709,ppmi,,,F,,0.38495,3.9588,3.9092,0.80195,7.9404,1.3421,0.34104,2.7994,2.6322,41.4165,13.2059,203.2414,3.6067,3.288,1.5144,1.6979,2.8406,6.1928,1.6729,2.8951,0.60498,5.2167,9.4552,14.6991,6.4955,2.0582,4.3468,1.5012,15.788,5.2336,3.2635,1.1083,2.2683,5.9903,11.2828,2.6125,3.7051,3.149,1.2575,1.2892,3.7407,8.9823,2.9225,2.0162,12.2727,2.0295,2.234,2.1248,11.9432,1.7932,3.5286,0.98395,12.8763,4.6475,7.7773,3.3433,9.8924,5.778,7.2499,6.933,3.3693,1.6068,4.138,,,,0.068396,CN,,HC,0.36504,3.0052,3.6364,0.80114,8.8545,1.4877,0.35248,2.8931,2.6552,42.106,12.9406,207.4076,3.0578,3.9388,1.6151,1.7994,3.1825,6.7177,1.6476,3.0178,0.6181,6.2291,10.6172,12.7331,7.3897,1.8622,3.8253,1.6191,16.8354,4.4501,3.1645,0.78719,1.9568,7.1617,11.7261,2.409,3.8881,3.2585,1.2526,1.3242,3.2614,8.6323,2.6032,2.0352,9.8163,1.8462,1.998,1.9093,11.0056,1.6582,3.5154,0.95173,11.9765,4.7356,7.2883,3.5235,10.0961,6.5816,6.7908,7.2914,3.503,1.2855,3.9399,,,,,,,,,,,,,,,69,,,,482
+3903,1.1681,2.3343,,70-79y,Other,,,18.518,4.8177,2.6287,2.0976,1.2298,ppmi,,,M,,0.43174,4.4747,4.1287,0.98095,10.0427,1.5714,0.40267,2.6701,2.8899,45.1761,16.3344,271.8954,4.4684,4.5245,1.7876,2.0023,3.3833,7.7704,2.1605,3.6569,0.57529,6.5165,12.3105,9.1318,7.2033,2.342,4.9634,1.7729,19.3049,7.0362,4.1437,1.118,2.4973,6.7739,14.0161,3.3591,4.423,3.1786,1.4138,1.4638,4.9822,11.4082,3.2236,2.3189,13.4632,3.1578,2.4147,2.223,12.5878,2.5619,4.1023,1.3284,14.3268,4.9575,10.9278,3.6676,11.835,7.4519,8.7161,7.7896,3.66,1.8423,4.7496,,,PD,0.087458,PD,,PD,0.41522,3.4574,4.0001,0.94004,11.4585,2.013,0.395,2.8159,2.9239,46.2089,15.9061,277.7885,4.3008,4.8518,1.8507,1.862,3.9355,8.1113,2.24,3.8234,0.55762,6.7489,12.5783,8.2135,8.0517,2.3416,4.4426,1.9142,19.5842,5.6858,4.0984,0.90164,2.2306,8.1534,15.869,2.8497,4.5696,3.3289,1.5808,1.475,4.3514,11.2038,2.9976,2.2665,11.0845,2.2916,2.3837,1.9696,10.4372,1.9545,4.189,1.1707,14.2829,5.4718,9.5128,4.3456,12.1905,7.9578,8.709,8.0815,3.6412,1.4154,4.4857,,,,,,,,,,,,,,,71,,,,483
+3904,2.1057,2.3097,,70-79y,Other,,,17.7576,5.4613,2.5438,2.3893,1.6978,ppmi,,,M,,0.42822,4.5077,4.4203,0.85128,8.7168,1.5377,0.34273,3.4206,3.647,45.2841,18.0355,225.4236,4.3455,4.3332,1.6707,2.1274,3.5153,6.8183,1.9482,3.1782,0.67547,6.6823,10.904,19.7113,7.6675,2.3523,4.5918,1.7581,16.8235,6.3898,3.7217,1.1172,2.6093,6.8852,13.8357,3.8635,4.3186,3.4375,1.39,1.4464,4.6671,11.3049,3.1639,2.4171,12.2629,2.8579,2.3516,2.2698,12.0263,1.9136,4.1489,1.2051,13.4922,5.279,8.9694,3.4159,9.5673,6.6508,7.4921,7.6781,3.4875,1.6754,4.5408,,,PD,0.066222,PD,,PD,0.40606,3.7853,4.1569,0.82963,9.8789,1.6567,0.37846,3.6883,3.8134,46.2358,17.8599,231.8302,4.3265,4.5668,1.6182,1.9503,3.7612,7.1461,1.9693,3.2731,0.72055,7.4502,10.9075,20.6822,8.5841,2.0632,4.4004,1.7955,18.0433,5.9199,3.6291,0.96795,2.5641,8.0239,13.828,3.69,4.4451,3.1746,1.4229,1.4698,4.1309,11.2986,2.896,2.5034,10.5897,2.8533,2.2949,2.1026,11.5396,1.8978,4.0813,1.1319,13.1048,5.6137,8.6762,4.2024,10.3018,6.7124,7.4909,7.3032,3.1027,1.5856,4.4117,,,,,,,,,,,,,,,71,,,,484
+3905,1.0515,1.3489,,70-79y,Other,,,18.4681,5.3307,2.6544,2.3595,1.21,ppmi,,,F,,0.475,4.5181,4.6699,0.94415,9.7368,1.4441,0.39717,3.5936,3.0279,48.5621,16.0664,233.0575,4.1825,5.4294,1.9162,2.0733,3.3771,7.889,1.9304,3.3657,0.42719,7.0862,12.5338,9.7068,8.0384,2.4498,4.6927,1.6965,18.0916,7.0582,3.6926,1.2536,2.7576,6.7049,14.2424,3.3863,4.7447,2.9693,1.6903,1.4267,4.1346,10.4591,3.4155,2.4646,12.325,2.3145,2.5212,2.3658,12.6794,1.8856,4.0147,1.1474,13.4205,5.3366,9.0836,4.0074,10.7632,7.5316,8.8571,8.5596,3.8383,1.5879,4.543,,,PD,0.079426,PD,,PD,0.43349,4.2058,4.3176,0.92418,10.8056,1.7099,0.39607,4.0448,3.1662,47.8125,15.0205,235.0871,3.9678,5.199,1.8095,1.9217,3.5809,8.1291,1.931,3.4903,0.42111,7.4429,11.6747,8.9696,8.6547,2.2391,4.7556,1.6616,17.7021,5.1571,3.6401,1.3017,2.8699,7.1631,14.0638,3.1486,4.6923,3.2371,1.5239,1.3926,3.7517,10.4694,2.994,2.4646,11.4266,2.2819,2.2947,2.1761,12.84,1.9073,4.1601,1.1239,14.3481,5.0607,9.0252,4.2477,11.0148,8.3122,8.7658,7.9651,3.1131,1.5161,4.1958,,,,,,,,,,,,,,,72,,,,485
+3907,0.98148,1.3663,,60-69y,Other,,,16.6284,4.4511,2.0841,2.0858,1.0976,ppmi,,,F,,0.34804,3.6776,3.5616,0.69125,8.0815,1.2963,0.33075,2.8913,2.2809,39.0435,14.7183,167.3763,2.934,4.1383,1.2476,1.4542,3.056,5.6722,1.4595,2.5782,0.49736,5.4667,8.7531,7.3865,6.7217,1.9795,4.002,1.292,14.3642,5.4409,3.1386,0.99078,2.3564,5.5741,11.2572,2.6297,3.8096,2.5841,1.2156,1.0236,3.4879,9.4844,2.4518,1.8315,10.485,1.6508,1.9698,1.8074,10.7294,1.4536,3.699,0.94978,12.116,4.4286,7.8517,3.0988,9.4825,6.2568,6.7312,6.3395,2.9227,1.043,3.7639,,,,0.06557,CN,,HC,0.29452,3.4391,3.4328,0.66191,9.1318,1.3862,0.31117,2.978,2.3105,40.1377,14.0311,178.4578,3.1095,4.7128,1.3326,1.7357,2.9827,6.2163,1.5466,2.6527,0.46935,4.8705,9.9202,7.172,7.251,1.7961,3.9091,1.3229,14.8903,3.8154,2.9608,0.96421,2.2703,6.2207,12.0922,2.0624,3.41,3.2408,1.2522,1.1276,3.2271,9.5862,2.4212,1.8555,9.0343,1.5479,1.8496,1.8405,10.4153,1.5665,3.3688,0.8644,11.5728,4.4354,7.0831,3.4477,9.166,6.2658,6.4431,6.8895,3.0717,1.1658,3.8857,,,,,,,,,,,,,,,69,,,,486
+3908,1.2756,2.0524,,60-69y,Other,,,17.5119,4.3631,2.7304,2.0536,1.1256,ppmi,,,M,,0.48476,4.2778,4.2932,0.85059,10.2202,1.6973,0.3813,3.0798,3.5719,46.3343,15.7022,230.4512,3.9552,4.5453,1.647,2.101,3.4381,7.3856,2.1827,3.4063,0.56643,6.3598,11.206,17.4579,7.5154,2.5377,4.7859,1.7943,20.0388,5.8416,4.0459,1.36,2.6494,6.444,15.1443,3.841,4.5669,3.3899,1.6405,1.5785,4.3987,10.8977,3.3025,2.2149,12.2573,2.4434,2.3822,2.2242,13.6777,2.11,3.8924,1.2855,13.9281,5.0702,8.6966,3.8566,10.8363,7.5479,8.2097,7.5155,3.9237,1.533,4.3964,,,,0.071407,CN,,HC,0.45868,3.8631,4.067,0.88567,11.0846,1.7579,0.4159,2.8896,3.8602,46.9058,14.7721,234.4419,4.2145,4.7283,1.677,1.945,3.9449,7.3848,2.1717,3.5929,0.63417,6.4036,11.4108,14.7447,7.5929,2.3464,4.9363,1.9139,19.4568,5.0772,3.7947,1.1805,2.6322,7.5833,15.1456,2.8726,4.2022,3.3817,1.7248,1.5754,4.1089,11.2197,3.0447,2.3621,11.9373,2.4882,2.2774,2.1946,13.2939,2.0873,4.0067,1.2584,14.269,4.9647,8.6173,3.8629,10.8099,7.955,7.8789,8.5728,3.5236,1.6331,4.2167,,,,,,,,,,,,,,,65,,,,487
+3910,1.9565,2.6297,,50-59y,Other,,,23.603,5.9881,3.1377,2.6091,1.7812,ppmi,,,M,,0.56766,5.216,5.0748,0.97456,10.8263,1.5744,0.42331,3.496,4.0614,54.7469,20.7089,283.7417,5.2006,5.1818,1.8415,2.4903,3.5062,8.5003,2.0754,3.5488,0.7595,7.9388,13.8633,19.5717,8.5706,2.5685,5.6487,1.9745,20.3772,7.0705,4.0884,1.3838,3.5149,7.6288,17.1979,3.6433,4.9317,3.7925,1.918,1.8835,5.5597,12.6922,3.5059,2.6404,14.2556,2.6441,3.0077,2.3902,15.0769,2.4345,4.8569,1.4539,15.6768,6.0311,10.3069,4.4048,12.5349,9.1757,10.0222,8.5952,4.3394,1.9018,5.798,,,PD,0.090239,PD,,PD,0.49532,4.6056,4.7497,0.97215,11.3306,1.9568,0.44671,3.7166,4.1164,55.8907,19.8068,285.3511,4.5492,5.2961,1.9049,2.232,3.9426,8.6701,2.1006,3.6745,0.68361,8.1031,14.0091,20.0741,9.0955,2.4982,5.3278,2.0307,20.9739,6.0967,3.9885,1.2413,3.4682,8.5277,17.8943,3.3714,5.0225,3.6976,1.7985,1.8734,4.7541,11.9323,3.2622,2.5556,11.0744,2.4435,2.7558,2.2457,14.4759,2.1428,4.8152,1.3815,16.1754,6.1455,8.9975,4.8884,13.4422,8.145,9.7997,8.7964,3.8173,1.6443,5.5234,,,,,,,,,,,,,,,59,,,,488
+3911,1.4802,2.0503,,50-59y,Other,,,16.986,5.0944,2.6913,2.5644,1.8184,ppmi,,,M,,0.41241,5.1105,4.793,0.90181,9.5834,1.6352,0.37122,3.9088,3.0092,48.0652,15.3534,226.6232,4.7292,6.1582,1.7855,2.1925,3.4241,7.0625,2.0964,3.284,0.50383,7.7663,11.4659,20.0784,8.33,2.3933,4.8285,2.0252,18.3382,6.8448,4.1182,0.96792,2.4661,7.2698,13.9357,4.7914,4.7707,3.1108,1.631,1.4037,4.5029,11.5114,3.1966,2.477,11.2256,2.4368,2.5882,2.3755,12.6704,2.3075,4.014,1.3013,13.0427,5.2769,8.5655,4.9156,10.6264,7.361,8.6991,8.2038,3.6911,1.9731,4.2459,,,PD,0.076355,PD,,PD,0.3794,4.6344,4.5352,0.89115,10.6236,1.8383,0.39192,3.9793,3.2018,50.974,14.7195,234.2591,4.0742,5.7353,1.7063,2.3188,3.8551,7.8597,2.0585,3.4465,0.66034,8.2783,12.4063,17.8732,9.1473,2.2373,4.4319,1.9702,18.2779,6.1404,4.0637,1.2166,2.6262,8.0735,15.6474,4.2735,5.0298,3.4055,1.6102,1.3791,3.8738,10.6888,2.8907,2.4202,10.0438,2.553,2.5392,2.2358,11.59,2.0438,4.1407,1.2353,13.3843,5.313,7.9461,5.1315,10.0686,7.5335,8.5164,8.2992,3.4805,1.6949,3.9887,,,,,,,,,,,,,,,52,,,,489
+3914,1.01,1.7811,,50-59y,Other,,,16.7953,5.3481,2.7278,2.3906,1.2326,ppmi,,,M,,0.47671,5.2659,3.9494,0.90969,10.3773,1.6302,0.37352,3.9919,3.2659,47.7166,14.6138,231.5204,3.9407,5.5243,1.7523,1.8581,3.5949,7.6303,2.2151,3.0277,0.29182,7.2322,11.516,9.6454,8.6694,2.593,5.4619,1.9371,20.8487,6.6762,4.1059,1.2385,2.8646,7.305,14.5638,4.3214,4.7172,3.5676,1.4481,1.4426,4.5959,10.9205,3.2317,2.1606,13.7576,2.2758,2.5807,2.1628,14.5155,1.7753,4.0448,1.0699,16.2376,6.2548,9.9351,4.5817,11.8544,7.4774,8.1998,8.1808,4.0461,1.4313,4.4124,,,PD,0.065296,PD,,PD,0.42481,4.7729,4.1727,0.92635,12.2317,1.8283,0.40921,4.0728,3.2515,49.5751,14.4416,237.9147,4.238,5.6777,1.8566,1.907,3.7408,7.922,2.0936,3.2745,0.46381,7.6298,12.2976,8.2286,9.4056,2.4302,5.141,1.9304,21.1473,5.811,3.9043,1.3431,2.939,8.1312,15.264,3.4693,4.8966,3.3209,1.6928,1.3894,4.3507,11.3722,3.0396,2.3197,11.7431,2.2355,2.5269,2.0655,13.6472,1.8976,4.2532,1.1611,15.4714,6.0256,9.216,5.251,11.8247,8.1131,8.0598,8.8071,3.8029,1.4369,4.1613,,,,,,,,,,,,,,,58,,,,490
+3916,1.3085,2.3492,,70-79y,Other,,,15.2604,3.9391,2.09,1.8119,1.2635,ppmi,,,F,,0.42615,4.6455,4.7213,0.75757,9.4996,1.5152,0.37681,3.4946,3.1388,41.2397,12.1607,199.0779,4.0648,5.1072,1.4641,2.1339,3.3185,7.0311,1.9228,2.7579,0.58193,6.4204,10.2875,16.0136,7.2728,2.4545,4.8171,1.7508,19.1807,6.0353,3.8104,1.1582,2.5348,6.7244,12.2842,3.7161,4.157,3.2693,1.611,1.3621,4.3976,11.4148,2.8487,2.4691,10.5044,2.6048,2.6022,2.4136,12.2789,2.224,4.3151,1.2848,13.6986,5.409,9.0025,3.5425,10.9822,6.4794,7.8324,7.0127,4.0886,1.7451,3.7874,,,PD,0.078006,PD,,PD,0.39271,4.0356,4.4877,0.86666,9.7355,1.7244,0.39308,3.4126,3.3799,40.8732,11.4406,201.4191,4.2874,4.9277,1.6676,2.0083,3.8704,7.6808,2.069,3.1397,0.61043,6.7799,10.8833,13.5339,8.0969,2.1824,4.2634,1.8044,18.338,5.3068,3.8472,1.0776,2.7338,7.7873,12.6291,2.874,4.0277,3.4127,1.5303,1.2409,4.0943,11.4369,2.8495,2.4229,10.1636,2.3881,2.3737,2.1983,11.8379,1.9243,4.3659,1.2179,14.5995,5.5779,7.4905,3.9825,10.7043,6.5685,7.7994,7.2266,3.6185,1.5693,3.67,,,,,,,,,,,,,,,70,,,,491
+3917,1.7383,1.4783,,70-79y,Other,,,20.1342,5.9448,3.4056,2.5087,1.5009,ppmi,,,M,,0.48943,5.3664,4.6957,1.004,10.0474,1.7151,0.43107,3.68,3.2957,53.98,17.7297,249.5852,5.0203,5.749,1.8856,2.2806,3.8536,8.0704,2.4846,3.6233,0.51623,7.7702,13.0157,17.0893,8.4888,2.603,5.0549,2.322,18.9243,6.4798,4.5927,1.1478,2.8401,7.9616,15.5287,4.3842,4.7976,3.6582,1.7782,1.5917,5.6083,12.4213,3.3995,2.6991,13.107,3.0994,2.9479,2.8801,13.0687,2.5234,4.4839,1.3858,15.7119,5.8577,10.7377,4.2684,11.6021,7.9856,9.1634,9.1475,3.9201,2.1801,5.0353,,,,0.085276,CN,,HC,0.45387,4.4971,4.4752,0.97691,11.345,2.01,0.44817,3.6503,3.5396,54.5568,16.6306,253.2822,4.9075,5.9266,1.7895,2.151,4.1565,8.1774,2.3982,3.9305,0.77958,7.7514,13.0709,15.6619,9.0157,2.5394,5.0693,2.2262,19.3997,5.8088,4.3503,1.1912,2.7024,8.8807,16.0619,3.6719,4.9758,3.4705,1.6668,1.5716,5.0899,13.0716,3.1101,2.6167,12.017,2.8153,2.5363,2.3485,14.2615,2.4551,4.5607,1.4134,16.9212,5.8458,9.2914,4.9702,11.8636,8.5243,9.1353,8.6221,3.4568,1.7651,4.6717,,,,,,,,,,,,,,,70,,,,492
+3950,0.7255,1.6896,,-50y,Other,,,16.6338,3.913,2.3807,1.974,0.9151,ppmi,,,F,,0.47049,4.791,4.437,1.0007,10.7283,1.6083,0.42826,3.2055,2.93,42.9407,12.5873,221.6495,3.9659,4.2921,2.0112,2.0754,3.6872,7.3109,2.3297,3.3138,0.40356,6.9838,12.1366,7.9846,7.4095,2.5641,4.8334,2.0073,19.7585,7.0445,4.3389,1.1886,2.6695,7.2039,16.5429,3.2792,4.0864,3.6256,1.6222,1.3485,4.233,11.0687,3.2132,2.2735,12.665,2.0205,2.7987,2.1788,13.1347,1.7097,4.7613,1.2362,14.7574,5.1475,9.6227,3.6878,11.9445,8.2015,8.3419,8.745,4.2324,1.3868,4.5199,,,,0.062964,CN,,HC,0.44019,4.2904,3.9856,0.95611,11.5593,1.8467,0.42555,2.8422,2.9519,42.5759,12.0092,227.1296,3.6362,4.6501,1.9976,1.9702,4.1365,7.7219,2.3571,3.5098,0.50206,6.8381,11.8771,4.9127,7.6616,2.2533,4.6516,2.0328,20.2238,5.6157,4.2874,0.93211,2.4748,8.4238,15.3874,2.6788,4.3865,3.5239,1.5754,1.3033,3.9599,10.5792,3.0228,2.2283,11.5027,1.9856,2.4783,2.0361,13.7342,1.942,4.6314,1.1685,15.1159,5.1829,8.7867,4.1666,12.2034,8.4556,8.0346,8.4716,3.8151,1.3105,4.3282,,,,,,,,,,,,,,,43,,,,493
+3951,1.3659,2.3381,,50-59y,Other,,,20.2389,4.96,2.955,2.3898,1.4037,ppmi,,,M,,0.49901,5.4496,5.1203,0.92123,10.0274,1.6595,0.47424,3.5448,3.3605,50.8609,14.739,238.0465,4.5605,4.8973,1.7346,2.439,3.9717,8.0351,2.4946,3.4306,0.70859,7.8902,12.8933,16.762,8.1108,2.5928,5.4217,1.9675,21.6151,7.6988,4.4748,1.0296,2.7936,8.0701,15.6404,3.8451,4.925,4.0814,1.8757,1.4612,4.5829,11.1101,3.1881,2.8156,11.5211,2.9723,2.6019,2.7306,12.3747,2.904,4.6032,1.4455,16.2639,6.2669,8.7668,3.8039,10.9282,8.6208,8.8402,8.5915,4.6297,1.9931,5.0636,,,PD,0.080533,PD,,PD,0.45328,5.2076,4.5724,0.90614,12.2836,1.8748,0.4682,3.8417,3.527,50.3144,14.3445,242.7719,4.1186,5.3351,1.7314,2.1388,4.197,8.0514,2.4,3.4718,0.72172,7.8509,12.89,15.9816,9.0593,2.3331,5.2595,1.9906,22.1726,6.6091,4.286,1.1763,2.8293,9.2896,16.2334,3.1176,4.6552,3.6919,1.7246,1.42,3.8851,11.0537,2.9294,2.6532,11.3677,2.343,2.49,2.3217,13.3282,2.0413,4.5448,1.3491,15.1918,5.6704,8.2598,4.6907,11.5632,8.3292,8.6181,8.4682,3.8957,1.6531,4.8477,,,,,,,,,,,,,,,58,,,,494
+3952,1.6722,2.6506,,60-69y,Other,,,19.8969,5.1158,3.0256,2.414,1.4644,ppmi,,,F,,0.48939,4.7473,4.3336,0.87013,10.9576,1.7152,0.4446,3.4035,3.588,51.4364,14.6477,252.0614,4.083,4.8379,1.5996,2.0044,3.8744,7.6926,2.6282,3.1397,0.57847,6.9992,12.356,15.2013,7.8623,2.5842,5.392,1.8828,22.7782,6.4925,4.6737,1.2999,2.7077,7.5098,15.391,3.3232,4.622,3.5503,1.5724,1.4017,4.7614,12.3576,3.1868,2.2242,12.8633,2.2698,2.722,2.1498,13.1464,1.961,4.6273,1.3847,15.1646,5.3457,9.4603,3.9639,13.4662,7.5681,8.5588,7.4416,3.9963,1.4674,4.9572,,,,0.093105,CN,,HC,0.43459,4.2879,4.0325,0.87247,10.7611,1.8213,0.43425,3.4971,4.0035,50.9323,14.534,257.8386,3.9498,5.0709,1.6836,2.0034,4.2186,7.9492,2.3082,3.2792,0.77941,6.939,12.3928,15.0038,8.6438,2.2594,5.3631,1.7712,22.0711,5.4012,4.3251,1.3825,2.8924,8.3807,15.4272,2.9973,4.3718,3.4965,1.5374,1.4533,4.3124,12.8925,3.0054,2.3034,11.8303,2.2913,2.325,1.9932,13.675,2.079,4.4967,1.2593,16.413,5.7538,8.6639,5.3353,13.907,8.2591,8.1363,7.5445,3.7882,1.5621,4.893,,,,,,,,,,,,,,,69,,,,495
+3953,1.3918,1.9096,,50-59y,Other,,,19.6049,4.8045,2.879,2.3008,1.5801,ppmi,,,M,,0.56748,5.6314,4.9605,1.0425,10.7395,1.577,0.50972,3.3854,3.8284,51.5195,15.0601,256.6819,4.8658,5.0674,2.0264,2.2188,3.9038,8.4604,2.5447,3.714,0.6039,8.0122,13.887,18.7846,8.7127,2.5248,5.4418,1.9021,23.1865,7.8001,4.7134,1.1209,2.8836,8.1746,18.0267,4.1258,4.9005,3.185,1.7756,1.4588,4.9745,12.3398,3.6259,2.773,12.4847,2.9515,2.8201,2.7534,13.8126,2.4818,5.2618,1.5473,15.7926,6.0123,10.3558,3.9751,12.3075,9.0886,8.8993,9.1189,4.5936,1.963,4.9417,,,PD,0.088854,PD,,PD,0.50694,5.0439,4.8985,1.0582,12.4763,1.7753,0.53533,3.6349,3.9457,51.1729,14.5532,253.3025,4.1292,5.1925,2.1233,2.2188,4.157,8.9094,2.5306,3.9212,0.86695,7.9141,13.4527,16.1635,9.5374,2.5393,4.6532,1.9009,21.844,6.4198,4.4634,1.2404,3.0411,8.8802,17.7627,3.5831,5.2122,3.7458,1.895,1.4556,4.3544,11.3833,3.3519,2.7435,11.0252,2.2819,2.6754,2.5183,13.3322,2.1366,5.1282,1.5176,15.9106,6.0079,9.2115,5.0984,11.639,9.3566,8.5486,9.4968,3.6896,1.8311,4.7949,,,,,,,,,,,,,,,54,,,,496
+3954,1.6273,2.2243,,60-69y,Other,,,15.996,4.4102,2.2663,1.995,1.3131,ppmi,,,F,,0.43918,4.229,3.9944,0.75681,9.0789,1.4846,0.41698,2.789,2.9085,46.8459,12.3005,185.3198,3.5905,3.8249,1.5406,1.8943,3.4225,7.9656,2.0788,2.8286,0.60643,6.2308,12.0016,16.9743,7.2375,2.4351,4.245,1.8325,18.9514,6.1578,3.9939,1.0695,2.3142,6.6832,13.796,3.268,4.3278,3.3794,1.4969,1.1891,4.0755,9.4257,3.0213,2.211,10.7883,2.438,2.6406,2.3355,11.8573,2.0186,3.9026,1.2317,13.716,4.5428,9.0736,3.437,9.9106,6.9168,7.3138,7.4322,4.0164,1.5424,4.046,,,PD,0.062949,PD,,PD,0.39685,3.5921,3.6786,0.77401,11.1336,1.7691,0.39763,3.0559,3.1448,47.5236,12.2575,185.0401,3.349,4.0846,1.5879,1.7594,3.5462,7.777,1.9889,3.0445,0.70733,6.7214,11.8008,15.3663,7.6801,2.3531,3.9468,1.7805,18.0046,5.513,3.765,1.1641,2.4966,7.1537,13.5238,2.9399,4.2268,3.2175,1.5228,1.1471,3.8265,9.3471,2.5914,2.2522,9.0872,2.2977,2.3085,2.0452,11.9039,1.9662,3.7523,1.1828,14.2009,4.8069,8.3088,4.3018,9.565,7.1452,7.0339,7.2166,3.282,1.5469,3.8383,,,,,,,,,,,,,,,64,,,,497
+3955,1.2229,2.0592,,50-59y,Other,,,25.3579,5.7414,3.4756,2.68,1.0566,ppmi,,,M,,0.552,5.2599,4.6337,1.0924,11.8318,1.8036,0.50061,3.3166,3.1748,64.1316,20.7921,280.3205,4.3514,4.9748,2.0579,2.1412,4.075,8.9112,2.6646,3.6725,0.52977,7.1067,14.0223,12.0043,8.175,2.7636,4.9159,1.9789,22.532,7.5533,4.8527,1.13,2.8138,8.0309,17.126,3.732,5.0337,3.4365,1.6817,1.6722,5.0436,11.9418,3.7219,2.69,13.9539,2.58,2.828,2.7305,15.2429,2.3167,5.4621,1.4249,16.863,5.4846,9.305,3.7851,11.4551,8.6077,10.1992,8.6882,4.2739,1.816,6.2094,,,,0.086424,CN,,HC,0.46296,4.7453,4.4543,1.0311,12.5847,1.9954,0.50302,3.5357,3.4457,62.0487,19.3713,285.5193,4.8018,5.524,2.0896,2.1025,4.5293,9.1557,2.5187,3.7766,0.57103,8.4681,13.6179,10.3564,8.6521,2.6409,4.5945,1.9104,21.2922,6.6348,4.6028,1.1284,3.1348,8.5915,17.6595,3.481,5.2806,4.0761,1.7444,1.6567,4.5805,12.5975,3.4811,2.7475,11.9772,2.2349,2.5761,2.4296,15.9296,1.8779,5.3823,1.3133,15.9674,5.6599,8.0355,4.9081,11.0931,7.6612,9.9142,9.2031,4.1831,1.7988,5.9699,,,,,,,,,,,,,,,54,,,,498
+3957,1.5947,1.6662,,60-69y,Other,,,20.544,4.9271,2.9654,2.3601,1.7121,ppmi,,,M,,0.43841,4.8127,4.7456,0.85258,11.1556,1.4981,0.45113,3.2353,2.9343,49.1081,15.6076,223.6829,4.2444,5.1211,1.7024,2.2027,4.0102,7.5401,2.2826,3.2171,0.65947,6.4398,12.0409,16.7921,8.2545,2.5433,5.2277,1.8604,20.2236,6.3289,4.3049,1.2082,3.0884,7.279,16.7555,3.7803,4.459,3.4213,1.7183,1.3851,4.9261,11.6796,3.4292,2.7454,14.3061,2.7769,2.6668,2.5342,13.0631,2.0808,4.7712,1.3834,14.9561,6.0576,10.604,4.0348,11.599,7.7702,8.4889,7.4501,4.476,1.6778,4.7663,,,PD,0.081087,PD,,PD,0.42744,4.5662,4.2534,0.81226,11.8774,1.7691,0.47228,3.3548,3.1273,48.6693,15.1438,225.9944,4.2563,5.0872,1.6404,2.0354,4.1793,7.7121,2.321,3.233,0.67338,7.9384,12.7335,15.0425,8.8046,2.3231,5.1829,1.9468,20.0467,6.435,4.306,1.1519,2.8748,8.0504,15.9821,3.3978,4.8522,3.1857,1.4784,1.3205,4.4762,11.7047,3.0106,2.6165,12.0543,2.6637,2.4225,2.3196,13.0242,2.2273,4.4921,1.393,15.1064,5.9955,9.7349,4.6463,10.7402,7.6741,8.3087,7.3146,3.5311,1.7905,4.5494,,,,,,,,,,,,,,,69,,,,499
+3958,2.5172,2.7977,,70-79y,Other,,,17.862,5.101,3.0727,2.4331,2.5036,ppmi,,,M,,0.45477,4.7536,4.5236,0.84796,9.3888,1.5601,0.4284,3.0568,3.6645,50.916,14.4295,260.8325,4.3197,4.125,1.5029,2.0845,3.9446,7.4493,2.2631,3.0216,1.001,7.1888,12.097,35.8266,7.4058,2.3472,4.9787,1.9833,20.4097,5.8318,4.2524,1.2352,2.7031,7.8043,14.9611,3.6295,4.7241,3.2255,1.5407,1.4403,4.5721,11.1763,3.1499,2.3907,11.8985,2.7255,2.6144,2.2248,11.3565,2.3719,4.0466,1.3896,15.7152,6.0134,9.3111,3.3873,10.8411,8.1818,7.7344,7.0919,3.6412,1.639,4.6507,,,PD,0.081755,PD,,PD,0.40192,4.0005,4.2644,0.86269,11.1752,1.8191,0.41785,3.0442,3.6654,51.0785,13.6527,267.908,4.5278,4.2453,1.5646,2.1568,4.3105,7.6786,2.1807,3.3114,0.95862,7.1195,12.8211,32.493,8.3095,2.299,4.4278,1.8498,20.4535,5.3916,4.008,1.0268,2.5848,8.8661,15.8326,2.7024,4.4491,3.6789,1.5092,1.4121,4.3393,11.5605,2.9714,2.5593,10.1901,2.3048,2.2365,2.1235,11.2144,1.9684,4.0447,1.2531,15.6717,5.7536,8.5161,4.0361,11.3511,8.0972,7.451,7.8978,3.5767,1.6541,4.5282,,,,,,,,,,,,,,,76,,,,500
+3959,1.5978,1.5023,,70-79y,Other,,,19.605,6.0174,3.159,2.7434,1.4039,ppmi,,,M,,0.47996,5.506,4.6812,0.91321,9.3228,1.739,0.44143,3.3752,3.1374,53.0797,13.9239,229.8157,4.4737,4.6299,1.9719,2.1081,3.7038,8.0083,2.3138,3.279,0.63617,6.0458,12.2721,15.2559,8.0241,2.4332,5.5911,1.8259,21.5042,6.1033,4.569,1.4873,3.3663,8.4489,14.6434,3.4124,4.3373,3.5531,1.5518,1.2631,4.9664,11.7271,3.8983,2.6365,12.686,2.5734,2.6458,2.502,13.7601,2.499,4.395,1.4236,15.9335,7.1623,9.4975,3.7478,11.7298,7.835,8.5171,8.7241,3.9222,1.8749,4.78,,,,0.094509,CN,,HC,0.42046,4.643,4.3912,0.91548,10.0271,1.8674,0.43653,3.5017,3.2712,52.2052,13.2341,233.1115,4.3512,4.9524,1.9097,2.0108,4.2728,7.9757,2.2866,3.5297,0.74012,6.3537,12.9781,12.5199,8.5389,2.3798,5.2747,1.9255,20.7932,5.2916,4.214,1.3236,3.2583,10.0696,15.958,2.7827,4.2883,3.6209,1.7532,1.2717,4.3347,11.1238,3.3986,2.6267,10.7821,2.6045,2.4978,2.3309,13.7479,2.1032,4.2206,1.2956,16.8228,6.9102,7.9276,4.8275,10.9946,7.844,8.2103,8.687,4.0112,1.8339,4.5751,,,,,,,,,,,,,,,73,,,,501
+3960,0.84202,1.6874,,50-59y,Other,,,19.3843,5.0351,2.7495,2.4136,1.0922,ppmi,,,M,,0.46598,5.0802,4.4309,0.90542,9.3569,1.7219,0.45474,4.3005,2.9482,49.9998,16.0407,236.5634,4.023,5.7131,1.8515,2.1425,4.1125,7.6326,2.5211,3.243,0.55918,7.9329,11.9583,9.1579,8.7842,2.6688,5.0315,2.1596,19.7418,6.8486,4.566,1.0958,2.7346,7.9879,15.0222,4.4704,5.0967,4.0368,1.7238,1.3996,4.6607,11.6111,3.1842,2.193,12.8707,2.3827,2.6947,2.1935,15.2791,2.3215,4.4455,1.2914,16.0226,5.9109,9.4404,4.3692,11.0991,7.7444,8.4111,8.4635,4.4855,1.6692,4.8217,,,PD,0.072752,PD,,PD,0.39853,4.1151,4.1815,0.94467,11.141,1.9036,0.43973,4.0407,3.124,49.7616,15.806,238.0402,3.6939,5.8189,1.8985,1.9849,4.3556,7.8277,2.4474,3.5097,0.67364,8.1588,12.5932,7.8115,9.1863,2.6348,4.8283,2.1367,20.37,5.9623,4.2841,1.1434,2.9734,8.834,15.8231,3.8091,5.0435,3.7042,1.7562,1.3949,4.3245,11.7781,2.9759,2.4218,10.7804,2.3827,2.6164,2.1384,14.084,2.0548,4.3829,1.2198,15.6399,5.572,8.7657,5.5499,10.6361,8.0258,7.9162,8.6849,3.9689,1.5387,4.5458,,,,,,,,,,,,,,,53,,,,502
+3961,1.1688,2.1568,,-50y,Other,,,20.7361,4.715,2.9246,2.3485,1.2081,ppmi,,,M,,0.51767,4.5917,4.1964,0.82813,9.5411,1.4206,0.4686,3.6233,3.6211,53.7653,15.9323,249.8019,4.0898,4.4728,1.6376,1.8765,3.3707,8.0998,2.2318,3.15,0.61632,7.3688,12.6302,14.3064,7.7833,2.4186,4.4768,1.701,19.3971,7.1542,4.1865,1.1616,2.7603,7.156,16.007,4.3149,4.868,3.2086,1.5398,1.6364,4.3782,10.2589,3.2355,2.4348,12.0822,2.4882,2.4672,2.5039,14.37,2.1217,5.0311,1.348,14.7676,5.7147,10.33,3.8449,10.9194,8.6763,9.4757,8.1637,3.8952,1.6857,5.4018,,,PD,0.088166,PD,,PD,0.48146,4.1246,4.0771,0.79386,11.8743,1.6595,0.49579,3.4313,3.7776,53.8392,15.1811,252.9499,3.6816,4.887,1.6104,2.0122,3.782,8.3709,2.1236,3.2894,0.65865,7.7085,13.1345,13.0508,8.513,2.2458,4.6039,1.7081,19.7679,6.3256,3.9609,1.1301,2.6045,7.699,16.3218,3.4403,4.8468,3.4816,1.8545,1.6305,3.9981,10.2007,2.9551,2.3688,10.4316,2.5591,2.4149,2.1468,12.745,2.1707,4.8989,1.2746,15.5011,5.3742,9.1441,4.6926,11.2645,8.5399,9.1226,8.0924,4.1007,1.5393,5.2001,,,,,,,,,,,,,,,37,,,,503
+3962,0.88266,1.2752,,60-69y,Other,,,16.7966,4.4049,2.6959,2.1154,1.2689,ppmi,,,M,,0.47679,4.4505,4.4502,0.90989,9.2497,1.6758,0.42384,3.3039,2.7877,46.4519,12.3241,194.9601,4.2439,4.4302,1.841,1.9062,3.5177,7.6892,2.2205,3.4644,0.52182,6.7212,12.2262,14.5511,7.3823,2.511,4.1414,1.8142,18.1513,6.0295,4.2491,1.1531,2.7104,6.728,14.2822,3.2738,4.3467,3.6006,1.5451,1.0193,4.0812,10.6381,3.3427,2.4748,9.7921,2.5799,2.6955,2.3984,12.3369,2.2196,4.5542,1.1254,13.7152,5.2285,8.842,3.5301,10.8209,7.5584,7.2658,7.6234,3.9345,1.7362,4.1141,,,PD,0.073703,PD,,PD,0.42673,4.2652,4.1703,0.88641,9.778,1.8841,0.41962,3.2575,3.0088,47.7409,11.8667,197.2463,3.8599,4.7296,1.8104,2.1114,3.4469,7.6798,2.0692,3.4316,0.52324,6.7939,11.9718,13.9517,8.2789,2.3379,4.3889,1.6807,17.2768,4.7722,3.9684,1.0441,2.4294,7.5511,15.0369,2.715,4.3773,3.8685,1.5768,1.01,3.775,10.5411,3.0176,2.3174,10.3093,2.1953,2.3599,2.1587,12.9101,2.01,4.4192,1.0783,13.6861,5.0639,7.5816,3.7083,10.6796,7.5631,6.9725,8.0081,3.7416,1.5232,3.943,,,,,,,,,,,,,,,69,,,,504
+3965,2.9466,2.1821,,-50y,Other,,,18.64,4.4834,2.3062,1.9394,2.3256,ppmi,,,M,,0.4012,3.9664,4.2591,0.75887,8.9708,1.2747,0.38173,2.849,3.1919,43.6037,12.9028,199.0584,3.4646,3.2803,1.4155,1.8786,2.8411,6.8461,1.8916,3.0422,1.3212,6.4842,11.031,38.4766,6.9552,2.0531,3.9951,1.4919,15.1748,6.2307,3.6625,0.91777,2.4369,5.8216,14.0069,3.0233,4.0653,3.0685,1.2965,1.2707,3.883,8.6375,2.9974,2.3185,9.1108,1.9276,2.3193,2.1773,11.214,1.6867,3.6797,1.1535,11.1347,4.4044,8.2123,2.7976,9.3417,7.3832,8.1917,6.5248,3.3702,1.3405,4.7218,,,PD,0.076963,PD,,PD,0.36488,3.5526,3.8625,0.7881,9.4736,1.4992,0.38417,2.9543,3.6185,43.0057,12.644,201.6588,3.6156,3.9234,1.4307,1.6806,3.2308,6.9458,1.8667,3.4176,1.706,6.1838,11.2917,37.8211,7.2841,1.9774,3.7661,1.5057,13.7205,4.4467,3.5348,1.0825,2.4566,6.491,13.38,2.5857,3.7102,2.4641,1.3196,1.3008,3.5049,9.1498,2.7733,2.4623,8.8675,1.997,2.2446,2.0969,11.1599,1.7287,3.8127,1.0977,12.5783,4.7488,7.4723,3.4637,8.1859,6.8543,7.9165,6.7049,2.6039,1.4982,4.6257,,,,,,,,,,,,,,,39,,,,505
+3966,1.2386,1.9628,,+80y,Other,,,23.4905,5.4538,3.1194,2.4614,1.0673,ppmi,,,M,,0.52668,4.3464,4.8945,0.99512,11.3161,1.7815,0.46843,4.1447,3.7187,55.8572,17.6947,272.5443,4.3211,5.7534,1.847,2.3479,3.5928,8.8365,2.5427,3.5496,0.58003,8.3854,14.7152,12.2097,9.2799,2.7553,4.714,1.8049,22.2109,7.786,4.803,1.2833,2.9426,7.0424,18.9684,4.0782,5.3518,4.2741,1.7951,1.7461,5.0611,12.0594,3.5853,2.481,12.3923,2.3406,2.9664,2.3658,15.2478,2.031,5.6128,1.2774,16.5105,6.4186,9.5845,4.4423,10.9365,9.2561,10.4956,9.0857,4.4647,1.6432,5.882,,,,0.095102,CN,,HC,0.51131,4.0638,4.7114,1.0168,11.5279,1.819,0.47943,4.1063,3.8926,54.3899,16.6122,278.2566,4.7381,5.4581,2.0154,2.3398,3.8226,8.7272,2.5041,3.6788,0.65806,8.3709,14.1445,11.3823,9.3444,2.3956,4.9532,1.9143,22.9133,6.1752,4.4229,1.0785,2.8952,8.7538,18.645,3.5253,4.9972,3.7874,1.8335,1.7177,4.4909,12.005,3.4668,2.5309,11.9809,2.4042,2.4746,2.3643,14.8051,2.1114,5.5324,1.287,15.7382,6.0823,9.2914,5.0846,11.6322,9.474,10.2123,9.3778,4.2772,1.6035,5.8019,,,,,,,,,,,,,,,83,,,,506
+3967,1.1057,1.9724,,50-59y,Other,,,20.0435,5.352,3.0071,2.4972,1.0778,ppmi,,,M,,0.4794,4.9584,4.2098,0.93424,9.8668,1.6122,0.4735,3.4364,3.0324,55.8961,16.0828,231.9413,4.284,4.6496,1.9311,2.048,3.4923,8.3722,2.5931,3.2828,0.61992,7.2187,13.4538,11.7679,7.9386,2.6011,5.3779,1.872,19.0098,6.9277,4.8312,1.3189,3.1797,7.4967,16.6412,3.6328,4.845,3.7301,1.6172,1.4884,4.8751,11.5042,3.2886,2.3518,12.6643,2.5856,2.7719,2.2039,13.8412,2.2685,4.8339,1.4448,15.7105,6.1575,10.5265,4.0368,11.9681,8.6224,8.2907,8.6857,4.1276,1.6122,4.9424,,,,0.080169,CN,,HC,0.45738,4.2421,3.9009,0.93194,12.6159,1.9682,0.47096,3.6823,3.1918,55.3418,15.766,235.0364,4.1353,4.9479,1.9396,1.8234,4.2248,8.4516,2.4976,3.4859,0.63282,8.3477,12.9948,8.9328,8.7422,2.4626,4.996,1.8828,20.1458,6.3757,4.7056,1.2982,3.0345,8.5951,16.2489,3.4707,4.8502,3.2858,1.5729,1.4731,4.466,11.2052,3.1737,2.3002,11.4371,2.2658,2.5333,1.9691,13.2952,1.9646,4.8137,1.3587,15.8873,5.7689,8.9569,4.9458,11.0975,8.1551,8.1136,8.3805,3.723,1.4275,4.7331,,,,,,,,,,,,,,,59,,,,507
+3968,1.3319,1.9861,,50-59y,Other,,,18.7559,4.9572,2.9435,2.4966,1.4067,ppmi,,,M,,0.41046,4.3337,4.2282,0.84383,8.9656,1.4927,0.39744,2.3671,2.7568,52.4585,15.3304,205.2064,3.7849,4.3933,1.7011,2.119,3.4072,7.2844,2.0075,3.2438,0.62116,6.376,12.2018,13.0961,7.5091,2.2175,4.4091,1.6088,18.0044,5.7826,3.9482,0.92507,2.1662,6.3456,15.0009,3.3059,4.3508,3.2331,1.3883,1.3185,4.3951,10.3569,3.0962,2.1099,10.7225,2.1407,2.4126,2.0422,12.0886,2.08,4.5774,1.1712,13.0798,4.6728,8.2318,3.3638,10.078,8.0539,7.9908,7.3881,3.5171,1.3747,4.6283,,,,0.063615,CN,,HC,0.38273,3.9838,3.8909,0.86121,10.9679,1.6402,0.4081,2.4598,3.0599,51.9309,14.6471,206.9911,3.5052,4.6561,1.6848,2.0278,3.7238,7.4655,2.0881,3.4272,0.78994,7.1663,11.6922,12.8617,8.2099,2.129,4.2821,1.6208,16.9613,5.3759,3.8838,1.0162,2.3398,7.0912,14.6573,2.9211,4.4628,3.2088,1.5196,1.309,3.8123,10.0618,2.8266,2.1261,9.1741,1.9993,2.1001,1.9289,11.9361,1.8931,4.5194,1.1436,12.7841,4.8472,7.2455,4.1744,9.1343,7.9056,7.4872,7.323,3.326,1.4642,4.463,,,,,,,,,,,,,,,57,,,,508
+3969,2.0559,3.1115,,50-59y,Other,,,17.7611,4.1642,2.4039,2.1672,1.8332,ppmi,,,M,,0.40757,3.6527,4.3842,0.89839,8.1232,1.3892,0.39261,3.3907,3.6732,43.9172,12.6156,179.9275,3.6914,4.4497,1.6572,1.6937,3.2794,6.884,2.009,3.1017,1.3353,6.0678,10.2421,34.1526,7.1012,2.1915,3.4056,1.4887,16.6339,5.5984,3.7308,0.92406,2.0963,5.878,12.9084,2.9976,4.1754,2.9595,1.4596,1.324,3.7655,10.0996,3.129,2.3454,9.5846,2.0918,2.4093,2.0528,9.785,1.7195,4.3971,1.1436,12.2859,4.3794,7.227,3.2866,10.4552,6.0413,7.3014,6.7954,3.3574,1.2847,4.445,,,,0.068265,CN,,HC,0.34644,3.3062,4.3306,0.88564,8.9944,1.5543,0.37276,3.1435,3.3199,44.2517,12.4674,181.5362,3.4982,3.8252,1.692,2.098,3.3427,6.995,1.8579,3.24,1.3292,6.6735,9.9717,24.2644,7.4503,1.9087,3.7087,1.4812,14.8663,5.1043,3.4077,0.99077,2.0873,6.5233,12.8733,2.5386,4.0773,3.0829,1.3176,1.2848,3.5462,9.1325,2.7846,2.2552,9.2589,2.1835,2.1005,1.9424,10.289,1.706,4.275,1.055,11.9023,4.1952,6.8384,3.8223,8.7956,5.8954,6.9533,7.245,3.0501,1.4198,4.2084,,,,,,,,,,,,,,,57,,,,509
+3970,1.5071,2.7207,,+80y,Other,,,18.7056,4.5467,2.661,2.1989,1.2339,ppmi,,,F,,0.40044,4.3158,4.1719,0.89606,10.1621,1.6323,0.42129,2.8236,2.634,49.3202,13.3999,219.7905,4.3588,4.3724,1.7579,1.9359,3.4072,7.8835,2.2543,3.0957,0.76228,6.3738,12.1294,15.0396,7.209,2.4002,4.386,1.725,19.4481,6.1778,4.4135,0.98192,2.586,7.0173,15.0608,3.1229,4.5852,3.4786,1.4819,1.2074,4.1566,10.5932,3.1564,2.3817,11.7176,2.3657,2.5794,2.2957,13.104,2.0039,4.3158,1.3624,15.8223,5.519,9.6128,3.3091,10.841,8.0297,7.7711,8.0824,3.9131,1.6779,4.5885,,,,0.081913,CN,,HC,0.38698,3.8542,3.8576,0.87399,10.5443,1.7655,0.43991,2.8052,2.7846,47.6952,13.0388,225.7354,4.1068,4.1273,1.7497,1.8659,3.902,7.6443,2.4545,3.1887,0.79782,6.6773,11.9812,13.2137,7.4827,2.2275,4.6524,1.838,19.0779,5.2877,4.3445,0.96995,2.3448,7.9451,15.0331,2.8254,4.2879,3.2263,1.6221,1.191,3.8552,10.353,2.8468,2.3013,9.7593,2.6526,2.3539,2.0874,12.2924,2.1008,4.131,1.2619,15.9571,5.3975,8.5128,4.227,11.5928,7.7237,7.5279,8.0427,3.6808,1.6101,4.4405,,,,,,,,,,,,,,,81,,,,510
+3972,1.3708,1.9104,,60-69y,Other,,,18.2063,4.5286,3.0346,2.2295,1.2378,ppmi,,,M,,0.3906,4.1402,4.1749,0.70468,8.4733,1.4801,0.37111,2.9708,3.103,50.2631,14.6791,218.2137,3.9047,4.0195,1.5071,1.9543,3.2141,7.3659,1.9243,2.8672,0.42732,6.708,11.0348,10.7032,7.4634,2.2818,4.405,1.6632,17.9349,6.0183,3.7488,1.0378,2.7402,6.5212,13.3472,3.2173,4.3449,3.3285,1.4009,1.1491,3.6943,9.0137,2.9402,2.1871,10.398,2.0607,2.3579,2.1957,10.9477,1.8552,3.9207,1.1548,13.4817,5.0705,8.6074,3.4694,10.1633,6.8887,7.5886,7.1294,3.4077,1.486,4.3847,,,PD,0.077553,PD,,PD,0.33641,3.2674,4.0412,0.75485,9.2747,1.643,0.37154,3.0748,2.9865,50.6613,13.9918,210.7553,3.5712,4.3645,1.6431,1.9861,3.4539,7.342,1.8736,2.9146,0.79959,7.0291,11.3677,10.551,7.3657,2.0856,4.0307,1.5563,16.306,5.1147,3.515,0.8308,2.2113,7.3992,13.5714,2.8074,4.1976,3.7161,1.3901,1.0747,3.2648,8.696,2.7223,2.2574,8.8366,1.9346,2.1479,1.8321,11.0611,1.7671,3.4369,1.0581,12.8319,5.0333,6.9176,3.929,9.1043,6.6646,6.9794,7.4648,3.4436,1.411,4.0931,,,,,,,,,,,,,,,67,,,,511
+4001,1.5249,2.3633,,60-69y,Other,,,20.7583,5.3956,2.8742,2.6025,1.9111,ppmi,,,F,,0.4934,4.8886,4.4895,0.95475,10.1446,1.7709,0.40748,3.7261,3.6399,52.0617,16.6951,238.0883,4.3614,5.0334,1.8849,2.321,3.735,8.6712,2.2225,3.3521,0.61006,7.1744,12.9128,25.7248,9.1392,2.6562,4.9554,1.9698,19.631,6.9079,4.3102,1.1823,2.6877,7.4644,15.4781,4.3791,5.2081,3.9249,1.5155,1.5941,5.1821,12.2956,3.5146,2.3837,13.8354,2.7773,2.8452,2.4743,15.1307,2.3322,5.0669,1.2688,16.0456,5.8127,10.5654,4.4448,12.2454,7.4438,9.213,8.1309,3.8878,1.9291,5.2878,,,PD,0.076191,PD,,PD,0.44675,4.2726,4.1664,0.91931,11.8978,1.9156,0.41036,4.1701,3.7011,52.2728,16.8422,243.8321,3.995,6.0334,1.7845,2.1102,3.9971,8.8679,2.2026,3.4813,0.6133,8.1149,13.8337,21.2058,10.1714,2.3576,5.0159,1.9797,19.784,6.3178,4.0865,1.271,2.9164,8.3302,16.6049,3.9375,4.9673,3.6771,1.5866,1.5425,4.5781,11.6882,3.1487,2.2844,11.4556,2.3455,2.6358,2.2566,13.4409,2.2922,4.7378,1.1802,16.6012,5.8858,9.4318,5.7157,12.3881,8.03,8.9296,8.2161,3.5483,1.6934,5.1051,,,,,,,,,,,,,,,65,,,,512
+40012,1.2333,2.2664,,60-69y,Other,,,17.7568,5.0852,2.6984,2.3039,1.4522,ppmi,,,M,,0.39985,4.3087,4.4304,0.87863,9.402,1.5988,0.38319,3.16,2.3919,49.0496,14.4041,198.066,4.2119,4.9362,1.7804,2.2055,3.4837,7.6141,2.1963,3.2866,0.39385,7.0318,11.41,10.2033,8.172,2.4175,5.0698,1.6529,18.861,7.2063,4.2541,1.1312,2.701,6.8452,14.105,3.6798,4.9994,3.5646,1.6027,1.1765,4.4351,10.8862,3.4885,2.3754,12.4822,2.1003,2.5524,2.4942,13.8897,2.0519,4.002,1.1554,14.5981,5.6147,8.826,3.9534,10.7246,6.8494,7.7036,7.7666,4.1273,1.9425,4.1465,,,,0.073629,Other,,PRODROMA,0.35946,4.1432,4.188,0.86346,10.786,1.7941,0.36197,3.2195,2.3388,49.0991,14.0291,196.5235,4.0111,4.8564,1.7234,2.0728,3.6919,7.6053,2.158,3.3769,0.41942,7.4495,11.5058,9.769,8.1148,2.3391,4.9233,1.6165,18.3134,5.4997,3.884,1.0386,2.6583,7.7998,13.5554,2.8722,4.6112,3.5598,1.5697,1.1722,4.1182,10.5592,3.0459,2.392,10.5604,2.2056,2.3976,2.1915,13.5745,2.0072,3.7261,1.1096,15.5489,5.7922,8.7813,4.5811,10.4087,7.4346,7.4886,8.0073,3.7136,1.6081,3.8764,,,,,,,,,,,,,,,61,,,,513
+4004,1.3865,2.4788,,50-59y,Other,,,16.2691,4.1461,2.394,2.0811,1.5893,ppmi,,,M,,0.40672,4.2233,3.8499,0.81705,8.515,1.3097,0.36089,3.2401,2.6259,40.89,13.6211,194.2764,3.8746,4.425,1.61,1.7961,3.0094,6.8519,1.9075,2.8752,0.6672,5.6793,9.7393,20.5151,6.9211,1.992,4.3341,1.6205,15.4811,5.7001,3.4932,1.0017,2.2872,6.2745,12.4801,3.2632,3.9783,3.0618,1.242,1.3204,3.6548,9.6138,3.131,2.1763,10.3769,1.8681,2.0199,2.0799,12.0134,1.5365,4.1649,1.1685,12.3542,4.8421,7.491,3.2639,9.446,6.4591,7.6902,7.2136,3.1914,1.3795,4.3344,,,PD,0.07282,PD,,PD,0.36567,3.555,3.7174,0.82777,9.1191,1.3674,0.36728,3.3939,3.0316,40.2802,13.1424,200.9263,3.5756,5.026,1.5912,1.7696,3.0734,6.7442,1.9595,3.1858,0.8371,5.9009,10.0404,18.3682,7.4123,1.7862,3.8477,1.512,16.1292,4.9014,3.2652,1.0182,2.4169,6.9854,12.7438,2.9553,3.7993,2.8751,1.2787,1.2944,3.4727,10.1013,2.8097,2.1548,9.1078,1.9345,1.8036,1.8726,12.1912,1.7104,4.1302,1.122,12.7168,4.9591,7.0137,4.4726,9.4168,6.677,7.711,6.9619,3.0584,1.4107,4.1348,,,,,,,,,,,,,,,54,,,,514
+4005,1.0067,2.0462,,60-69y,Other,,,16.8632,4.8256,2.7179,2.3375,1.2316,ppmi,,,F,,0.37323,3.4946,3.5615,0.74117,7.5506,1.3699,0.3519,2.6357,2.7148,47.7514,14.6984,190.2952,3.6244,3.8684,1.4626,1.6332,3.0706,6.6019,1.603,2.6488,0.58126,5.5627,9.3186,16.1659,6.5918,2.0666,3.818,1.3827,16.4097,5.16,3.4147,0.87958,2.2093,5.8498,11.4165,3.0935,3.9366,2.9357,1.3153,1.2162,3.4953,8.85,2.8344,1.9851,10.4334,2.214,2.258,1.8259,11.8974,1.872,3.7713,1.0263,12.9731,4.5345,7.4664,3.1269,8.8621,6.7903,7.3103,6.7464,3.1583,1.4173,4.164,,,,0.068136,CN,,HC,0.35343,3.0148,3.5151,0.76037,8.5925,1.3867,0.36662,2.8072,2.8802,48.1534,14.3312,195.1202,3.5761,4.221,1.4982,1.7322,3.417,6.9223,1.6408,2.9033,0.48897,5.9191,10.047,12.5502,7.0672,1.823,3.7825,1.3414,15.1296,4.0223,3.229,0.91952,2.2349,6.3347,11.9327,2.7615,3.9626,3.2959,1.4075,1.1776,3.2548,8.8233,2.6716,1.9539,9.0559,1.8619,2.0762,1.7725,11.4848,1.5372,3.6997,0.99426,14.1172,4.3905,7.5154,3.6638,9.9218,6.0527,7.2354,6.9893,2.9129,1.272,4.0214,,,,,,,,,,,,,,,66,,,,515
+4010,0.81708,1.5987,,70-79y,Other,,,20.3907,5.0868,3.0177,2.3689,0.86151,ppmi,,,M,,0.42779,4.7716,4.0818,0.86991,8.7361,1.6202,0.37121,2.9262,2.8762,54.1784,18.4783,211.1124,3.8625,4.394,1.7483,1.8424,3.6369,7.4987,2.1471,3.0327,0.33248,5.8286,10.6121,7.6388,7.5029,2.4737,4.8156,1.8866,18.8944,5.1697,3.9415,1.1384,2.5548,7.2091,12.4629,2.9949,4.8621,3.4987,1.3766,1.5136,3.992,9.2358,3.2357,2.1161,11.8244,2.0679,2.6001,2.186,13.1993,1.9261,3.9463,1.0249,14.4523,5.3265,9.0036,3.1422,10.6307,7.0108,8.9232,7.5559,3.6173,1.6051,5.1732,,,PD,0.084305,PD,,PD,0.39727,4.0584,3.6166,0.88394,9.8339,1.8159,0.37888,2.8144,2.93,54.5146,17.6634,216.1603,3.4545,4.5448,1.8036,1.7082,3.8584,7.5459,2.0565,3.328,0.42395,6.4533,10.8572,7.5794,7.9916,2.2048,4.6398,1.7673,19.5154,4.7573,3.5913,1.0941,2.6892,7.9828,12.6186,2.9821,4.5616,3.2546,1.4237,1.4675,3.8583,9.8738,2.9955,2.0142,9.9576,1.9594,2.1094,1.8863,13.3109,1.6639,3.8313,0.96976,14.8814,5.3021,6.9306,4.1911,10.1557,6.7344,8.6994,7.8124,3.2835,1.4256,4.9895,,,,,,,,,,,,,,,77,,,,516
+4011,0.61663,1.4404,,-50y,Other,,,17.2738,4.7104,2.2629,2.005,0.81473,ppmi,,,M,,0.44808,4.1769,4.331,0.87273,8.6727,1.3969,0.39741,2.5722,2.8676,44.4357,14.8274,189.3263,4.131,4.2829,1.5549,2.1026,3.2175,6.9831,2.0077,3.196,0.39255,6.2971,10.86,7.1684,6.1386,2.1893,4.68,1.7358,16.2164,6.2938,3.7261,0.88461,2.3746,6.1202,13.7509,3.0329,3.6952,3.5207,1.5052,1.2979,3.9341,10.1598,2.9557,2.3603,10.8532,2.246,2.3304,2.316,12.4405,1.9866,4.3674,1.1726,14.2753,4.7524,7.9769,3.3298,10.1723,7.1877,7.9917,6.867,3.8599,1.6755,4.3506,,,,0.079751,CN,,HC,0.40881,3.8736,4.3259,0.85955,9.3682,1.5132,0.40949,2.5527,3.0316,44.0179,14.2105,195.4712,4.0397,4.3376,1.6167,2.1535,3.288,7.1494,2.0663,3.3862,0.39315,6.0406,11.3411,6.1997,6.7385,2.0125,4.5883,1.6291,16.326,4.6167,3.6225,0.96394,2.3072,7.1221,14.0072,2.3731,3.9212,3.614,1.5422,1.3365,3.6584,10.3279,2.6665,2.3429,10.3737,2.2413,2.2364,2.0725,11.4259,2.0399,4.2459,1.1719,14.3369,4.9145,8.4974,3.9735,9.787,7.1268,7.9261,7.2772,3.7674,1.6159,4.2936,,,,,,,,,,,,,,,43,,,,517
+4012,0.63618,1.6305,,50-59y,Other,,,21.0185,4.8989,3.247,2.5757,0.88015,ppmi,,,F,,0.41216,4.3565,3.989,0.89603,8.6721,1.5672,0.34481,2.9321,2.925,51.2937,18.8111,212.1402,3.6532,4.3471,1.6045,1.8952,3.4885,7.4614,1.932,3.1144,0.45637,5.8105,10.6192,8.7282,7.3172,2.4252,4.2432,1.6593,18.0808,5.4957,3.8885,1.2862,2.7327,7.0035,12.3742,3.002,4.1829,3.486,1.5938,1.4547,3.7682,9.6866,3.1267,1.999,11.8033,2.2166,2.5206,1.9963,13.7258,1.8852,3.754,1.013,15.0283,5.3084,8.3776,3.2915,10.5713,6.6139,8.2759,7.3713,3.7396,1.4385,5.0618,,,PD,0.06976,PD,,PD,0.3951,4.0375,3.8884,0.85729,9.9534,1.6367,0.36729,2.8843,2.9428,51.2314,18.9124,217.2579,3.7409,4.4213,1.6831,2.0079,3.9722,7.3365,2.0834,3.2243,0.47093,6.3252,10.6056,7.4632,7.5756,2.3608,4.3784,1.7415,18.7908,4.999,3.6597,1.2292,2.7295,7.8876,12.9294,2.5572,4.0034,3.8679,1.6936,1.4756,3.3703,9.9888,2.8958,1.9008,9.891,1.983,2.398,1.8785,12.9364,1.7962,3.8074,1.0035,13.8491,5.056,6.9742,3.9278,10.3792,7.3563,7.9817,7.5235,3.5069,1.3319,4.7683,,,,,,,,,,,,,,,56,,,,518
+4013,2.0704,1.7954,,50-59y,Other,,,24.8967,6.0888,3.2007,2.7897,1.6499,ppmi,,,F,,0.53946,5.4042,4.2013,1.0367,12.0616,1.8864,0.46278,3.919,3.6212,58.3506,21.5641,264.8117,4.4058,5.1458,1.9269,1.9637,4.0889,8.6374,2.412,3.6999,0.69377,8.2096,13.7197,30.4405,9.2433,2.821,5.1782,2.2049,21.0723,7.7,4.6015,1.1475,2.7506,8.1121,16.8232,4.5952,5.0836,3.15,1.778,1.8757,5.3264,12.1581,3.7068,2.4751,12.6035,2.9157,2.7082,2.6265,14.5088,2.4692,4.7976,1.4592,16.4654,5.8766,9.8746,4.2226,11.7387,8.352,10.3366,9.5193,4.226,1.8899,6.0134,,,PD,0.089427,PD,,PD,0.50444,4.6824,4.1747,1.0449,12.7101,2.0846,0.47708,4.2497,3.9292,56.4658,20.5569,265.9409,3.8897,6.0715,2.0793,2.012,4.6362,9.2135,2.4365,3.8637,0.75055,7.9072,13.7772,27.2216,10.3041,2.5453,4.8663,2.1445,20.74,5.8998,4.3435,1.1724,2.9972,9.328,16.5982,4.4535,5.1101,3.8057,1.7077,1.8988,4.6028,11.7985,3.5511,2.2678,11.3777,2.5638,2.6352,2.2264,13.6322,2.1314,4.7473,1.3364,16.5467,5.9219,9.4896,4.7347,11.2907,9.3114,10.0794,9.8582,3.9608,1.5958,5.7061,,,,,,,,,,,,,,,55,,,,519
+4018,1.6172,2.5704,,60-69y,Other,,,15.7508,3.6647,2.1612,1.962,1.3066,ppmi,,,M,,0.39966,3.7975,4.1145,0.77847,7.691,1.2762,0.35459,2.5208,3.371,39.3078,13.4486,233.3099,3.737,3.9235,1.5763,1.9731,2.9845,6.5504,1.6865,2.573,0.52012,5.4748,10.1962,15.7921,6.0733,1.9418,4.0271,1.4991,15.5843,5.3217,3.4782,0.88269,1.9806,5.7381,11.5672,3.0858,3.5155,2.9553,1.3529,1.5395,3.7548,9.2849,2.7866,2.238,10.5885,2.2444,2.1224,2.2493,11.7089,2.0796,4.0321,1.127,12.8078,4.1722,7.6996,3.0297,9.0648,6.1225,7.848,6.6245,3.0917,1.5663,4.4529,,,PD,0.069522,PD,,PD,0.37154,3.2711,3.7619,0.7885,8.7701,1.4478,0.37208,2.4122,3.3616,40.221,13.708,231.797,3.3534,4.1425,1.5843,1.9892,3.1976,6.7746,1.7784,2.871,0.81539,5.5155,10.2854,14.4612,6.5649,1.8873,3.5321,1.449,15.6429,4.3604,3.4369,0.72321,1.9916,6.5745,11.3974,2.7049,3.4639,3.1307,1.4315,1.4564,3.4179,9,2.6853,2.1799,8.4833,2.196,2.0044,2.0182,10.1143,1.9859,3.8846,1.0839,12.6395,4.3193,7.1985,3.796,8.9897,6.4655,6.9446,6.9393,3.2433,1.5701,4.0681,,,,,,,,,,,,,,,67,,,,520
+4019,0.6976,1.6743,,60-69y,Other,,,18.7422,4.4611,2.4967,2.2238,0.60997,ppmi,,,M,,0.45495,4.6764,4.1085,0.92276,11.0879,1.5924,0.3972,4.0588,2.9924,46.2863,14.8217,221.9259,4.3525,5.9318,1.7641,1.8264,3.4531,8.0328,2.0304,3.1592,0.3027,8.1724,12.1758,6.7672,8.2665,2.3679,4.8551,1.7452,20.9961,8.1268,4.0469,1.023,2.4382,7.1043,14.7918,4.0019,5.0003,3.4417,1.4978,1.3972,4.649,11.671,3.3479,2.3955,12.9905,2.4039,2.4772,2.3201,14.1209,1.9196,4.3871,1.0721,15.6371,5.3526,10.5123,4.4431,11.3579,8.049,8.3285,7.8946,3.9009,1.4943,4.6832,,,,0.080892,CN,,HC,0.42479,4.2332,4.3155,0.92323,12.9486,1.7396,0.39875,4.2277,3.0353,47.3631,14.7805,229.6022,4.1505,6.3138,1.9229,1.9772,3.8584,8.1882,2.1224,3.3683,0.40417,8.4561,13.2641,4.8378,9.0386,2.2282,4.7851,1.7678,20.2757,5.9113,3.8583,0.98977,2.5102,7.8613,16.0619,3.2852,5.0315,3.97,1.7042,1.3839,4.1761,12.0798,3.1161,2.3168,10.7382,2.1689,2.4003,2.0998,12.894,1.823,4.4492,1.0899,14.7681,5.1971,9.011,4.771,12.5587,8.0096,8.1951,9.4253,3.8074,1.4244,4.5154,,,,,,,,,,,,,,,65,,,,521
+4020,1.2558,1.9274,,50-59y,Other,,,19.9936,4.8698,2.7532,2.183,1.821,ppmi,,,F,,0.53067,5.1314,4.6136,0.97643,8.2599,1.6475,0.4023,3.4571,3.7598,48.2529,16.5285,244.1161,4.3276,4.9609,1.8846,2.1348,3.9414,7.412,2.2561,3.5801,0.64218,5.968,10.8001,17.9222,7.729,2.3605,4.6958,2.0933,18.273,5.8449,4.055,0.99828,2.8029,8.401,13.5175,3.5737,4.2296,3.2557,1.6537,1.6236,4.4639,10.7707,3.6142,2.7232,10.8521,2.5061,2.4176,2.563,12.7668,2.3465,4.6548,1.3664,14.9967,6.1424,7.6658,4.0253,9.8493,6.9149,8.5404,8.1749,3.7553,2.0797,4.9301,,,PD,0.074076,PD,,PD,0.48271,4.6343,4.2304,0.91243,11.0383,1.7835,0.42362,3.7223,4.0636,48.6814,16.3479,251.6094,4.0109,4.8368,1.8008,1.9953,4.1624,7.7131,2.2848,3.3534,0.77339,6.9683,10.9645,25.8339,8.4547,2.1958,4.7865,2.0185,18.0838,5.5603,3.9836,1.183,3.0111,9.2877,13.664,3.4128,4.2467,3.12,1.493,1.5239,4.1537,10.9696,3.1502,2.4933,9.2455,2.4738,2.339,2.2901,12.4486,2.3206,4.5325,1.2814,15.3824,6.3835,7.7033,4.5744,10.8059,7.5952,8.3233,8.1062,3.2156,1.7972,4.6974,,,,,,,,,,,,,,,59,,,,522
+4021,1.5018,1.9643,,60-69y,Other,,,20.4594,4.8869,2.5908,2.2655,1.5211,ppmi,,,M,,0.43861,4.6915,4.0869,0.80247,8.5391,1.4727,0.3552,3.2838,2.8613,45.4655,16.1237,199.9947,3.9149,4.4249,1.5252,1.6993,3.6136,7.3381,1.9469,3.0797,0.47539,6.4232,10.8067,15.198,7.7163,2.3617,4.3349,1.8358,17.2043,6.0513,3.6141,1.2315,2.6025,6.9274,13.268,3.5626,4.2967,2.9376,1.4612,1.3591,4.5387,10.8872,3.2499,2.4511,11.6807,1.9955,2.3858,2.0855,11.9518,1.6747,3.9464,1.2187,14.5929,4.8631,7.6221,3.7111,10.4101,6.5758,8.023,7.2285,3.6385,1.4412,4.6406,,,PD,0.079323,PD,,PD,0.39275,4.2981,3.9037,0.80976,9.7961,1.6651,0.38232,3.2211,3.1435,43.6123,15.2497,206.1497,3.8539,4.8916,1.6779,1.9006,4.2016,7.4639,2.0951,3.1708,0.52547,5.9268,10.5728,14.1021,7.8519,2.1938,4.5433,1.9011,17.2427,4.7964,3.5627,1.2019,2.6369,7.9223,13.4669,2.7012,4.0723,3.2791,1.3581,1.3451,4.1056,11.3847,3.0739,2.5137,10.2312,2.317,2.1305,1.9092,12.4261,1.8099,3.7818,1.2869,14.0205,4.9108,7.6292,4.2708,9.7701,6.8053,7.8986,7.6534,3.2912,1.4261,4.5142,,,,,,,,,,,,,,,65,,,,523
+4022,0.84155,1.5153,,70-79y,Other,,,21.9637,4.5948,2.8656,2.2172,0.83955,ppmi,,,F,,0.50712,5.2462,4.2352,0.99748,10.9376,1.7565,0.38943,3.8333,3.1313,51.5669,18.3869,241.5657,4.1083,5.3562,1.8177,2.1679,3.8235,7.8465,2.2897,3.6245,0.59929,8.4799,12.827,13.8402,8.6519,2.5944,4.972,2.0539,19.3396,7.6942,4.2537,1.2089,2.792,7.6759,16.4303,4.2203,5.331,3.516,1.5084,1.654,4.91,11.9929,3.4351,2.3695,12.9308,2.8615,2.6395,2.4587,13.2675,2.3541,4.4201,1.2229,14.5392,5.8302,9.7346,4.072,11.6497,8.3717,9.6119,8.2967,3.9093,1.6286,5.639,,,PD,0.07779,PD,,PD,0.46883,4.9023,4.0497,1.0176,12.5501,1.968,0.41721,3.9975,3.3534,49.8565,17.7697,249.2177,4.0415,5.9976,1.9449,2.1255,4.0516,7.7953,2.257,3.7995,0.61587,8.5193,12.2022,13.3326,8.8825,2.3735,4.9921,1.9904,18.4133,7.0184,4.1006,1.1838,2.9407,8.069,16.1053,3.7386,5.028,3.6656,1.7864,1.6671,4.2928,11.6431,3.0515,2.3873,10.8285,2.8064,2.4108,2.1969,12.0503,2.3101,4.5138,1.1702,15.0241,5.6175,9.881,5.1028,12.5425,8.6986,9.1686,8.6334,4.0618,1.6218,5.2957,,,,,,,,,,,,,,,77,,,,524
+4024,1.3685,1.7093,,50-59y,Other,,,16.7578,4.506,2.5614,1.9559,1.5293,ppmi,,,M,,0.39994,4.3735,4.1468,0.90245,9.6484,1.4974,0.35191,3.515,2.6433,43.8879,13.7009,212.3237,3.8469,5.0646,1.8136,1.8598,3.3007,7.402,2.0967,3.2265,0.43202,6.6687,11.8859,12.7278,7.4713,2.266,4.6672,1.7815,17.1797,6.7169,3.897,1.064,2.4691,6.3097,14.0196,3.7068,4.2694,3.21,1.3713,1.3091,4.676,11.4864,3.2755,2.4104,11.1886,2.7874,2.3647,2.3801,11.3268,2.278,4.1398,1.1953,13.4243,5.1458,9.9634,3.8936,9.726,7.4378,7.8454,8.145,3.359,1.5851,4.3828,,,PD,0.071151,PD,,PD,0.34748,3.6533,3.7559,0.9357,9.9276,1.7617,0.35543,3.4255,2.7523,43.786,13.8003,214.6274,3.6984,5.0642,1.8915,1.9203,3.6088,7.9434,2.1239,3.6024,0.59831,7.0383,12.8157,9.996,8.052,2.1864,4.4918,1.7185,16.7404,5.262,3.8219,0.89232,2.4719,7.4805,15.6788,3.0171,4.1047,3.2535,1.5037,1.3022,4.404,11.5667,3.2019,2.3715,10.0457,2.486,2.1314,2.0869,11.0476,1.9075,3.8707,1.1341,13.2105,5.0017,8.6968,4.1892,9.8306,7.3932,7.6751,8.4541,3.2753,1.4532,4.2898,,,,,,,,,,,,,,,52,,,,525
+4025,0.66446,1.829,,70-79y,Other,,,19.7649,4.0854,2.7388,2.1809,0.68438,ppmi,,,M,,0.40297,4.0881,3.7204,0.83254,8.2021,1.3259,0.36155,2.5823,2.5298,47.9589,17.585,204.6735,3.322,3.1477,1.5713,1.8755,2.7473,6.6318,1.7177,2.8759,0.33434,5.5202,9.5885,6.1386,6.4429,1.9906,4.5387,1.4909,16.3819,5.6527,3.4048,1.0892,2.489,5.9579,12.304,2.6474,3.7387,3.4356,1.3272,1.4144,3.5686,8.2655,2.9268,1.8156,11.6479,1.8341,2.1637,1.7949,12.898,1.6298,3.7941,0.99584,12.6454,4.7978,8.2563,2.9731,9.2158,6.729,7.7265,6.7438,3.552,1.1593,4.7975,,,PD,0.081889,PD,,PD,0.36885,3.5677,3.6078,0.81764,9.1791,1.4645,0.36187,2.615,2.536,47.4665,17.0034,205.8725,3.0039,3.6672,1.5595,1.8238,3.1627,6.8716,1.7911,3.0971,0.42523,5.5271,10.0647,4.9912,7.1351,1.967,4.2362,1.478,14.6328,4.2371,3.1919,1.0621,2.7472,6.7564,12.6123,2.2954,3.9437,3.4791,1.3447,1.4259,3.2536,8.4377,2.7055,1.727,9.9166,1.4579,2.108,1.5934,12.2697,1.5525,3.5112,0.9326,12.9377,4.8667,7.3105,3.1646,10.0379,7.2265,7.4489,6.771,3.2477,1.0523,4.5921,,,,,,,,,,,,,,,76,,,,526
+4026,2.2934,2.1233,,50-59y,Other,,,19.3429,4.9484,2.9228,2.2112,1.792,ppmi,,,F,,0.54261,5.662,5.183,0.86934,10.7878,1.7046,0.46308,4.206,3.5851,47.1322,15.2952,224.4511,4.1484,5.1314,1.8197,2.2428,4.5609,7.4021,2.5698,3.3174,0.64121,6.9695,11.1637,24.3946,8.127,2.6386,5.2427,2.2374,21.9866,7.7934,4.6072,1.1709,3.0804,8.3008,15.2826,4.8172,4.7373,3.5713,1.6614,1.48,5.3268,13.3554,3.4436,2.6381,12.1014,2.7401,2.7405,2.4194,14.7657,2.0277,4.8152,1.7445,17.2037,6.1104,10.0211,4.7605,12.2498,7.8795,8.6158,8.5449,4.2949,1.5398,4.9287,,,PD,0.10021,PD,,PD,0.47289,5.3034,4.9161,0.86837,11.2476,2.0924,0.47644,4.184,3.9022,48.0581,15.3301,227.7731,4.505,5.6796,1.6977,2.3617,4.6379,7.558,2.6228,3.4657,0.60736,7.5179,11.3823,24.7049,8.783,2.5575,5.4154,2.3128,21.2754,6.2639,4.6918,1.318,3.1429,8.6191,15.4966,3.8753,4.827,3.8144,1.7181,1.4877,4.6955,13.2574,2.9695,2.6218,11.0669,2.7312,2.7107,2.1747,15.1496,2.1116,4.627,1.6,16.6072,5.9574,8.7045,5.3487,11.2254,7.7417,8.5304,8.6116,4.2252,1.6134,4.6989,,,,,,,,,,,,,,,51,,,,527
+4027,1.0459,1.7842,,70-79y,Other,,,19.277,5.0792,2.9188,2.4486,1.0587,ppmi,,,M,,0.39501,4.4067,4.4728,0.86248,8.255,1.5252,0.36044,3.3181,2.3867,50.2539,18.2207,207.7644,4.3812,5.4488,1.7166,1.9305,3.2881,7.4952,2.0993,3.0258,0.51805,6.2733,10.9196,9.4676,8.5951,2.3052,4.6223,1.7575,17.9837,5.5718,4.0225,1.0305,2.2015,7.1211,12.8192,4.145,4.7191,3.3224,1.4849,1.3752,4.3857,10.7564,3.5127,2.4864,11.4932,2.8134,2.3959,2.4071,11.4592,2.3786,3.7043,1.2474,13.8694,5.352,8.672,3.8006,10.4047,7.7257,7.4906,7.6647,3.9067,1.8889,4.5183,,,PD,0.075601,PD,,PD,0.34876,3.8586,4.1818,0.83186,10.331,1.5765,0.37077,2.8019,2.4709,49.9699,18.0432,214.5323,3.791,4.9215,1.6298,1.98,3.5049,7.5036,2.0486,3.1435,0.47478,6.646,11.325,8.4235,8.756,1.9938,4.2053,1.6831,17.4863,5.732,3.6505,0.95188,2.4432,7.6819,13.5384,3.0102,4.5094,3.3347,1.4844,1.4043,4.0784,11.1642,2.9801,2.4115,9.6078,2.3095,2.1982,2.0619,11.7023,2.1387,3.7997,1.2289,14.0966,5.6387,7.5207,4.2886,10.4568,7.6838,7.5016,7.5805,3.4349,1.5889,4.3658,,,,,,,,,,,,,,,79,,,,528
+40273,1.2663,1.8496,,60-69y,Other,,,18.7516,4.9965,2.3188,2.3033,1.9008,ppmi,,,M,,0.37672,3.9225,3.6169,0.81341,9.6651,1.3141,0.33694,3.3854,2.8564,46.3768,15.3143,219.1999,3.5535,4.6576,1.5125,1.8216,3.2377,7.0311,1.77,3.2109,0.89526,5.9884,10.9227,32.9616,7.8384,2.1278,4.2577,1.6045,16.6967,5.7249,3.2178,1.1161,2.0823,5.9239,13.6883,3.6409,4.2817,3.3247,1.3332,1.4486,4.0689,9.6945,3.0392,2.1223,10.9006,2.3422,2.0079,2.0655,10.9728,2.0003,3.538,1.0191,11.2857,4.2518,9.4558,3.7782,10.332,7.1077,7.9933,7.1038,3.7915,1.4018,4.7961,,,,0.064451,Other,,GENPD,0.34185,3.5118,3.538,0.81982,10.2654,1.4913,0.34106,3.3062,3.004,46.0987,15.1762,223.5131,3.6572,4.9443,1.709,1.7236,3.4845,7.1171,1.752,3.4234,0.81378,6.6735,11.1134,22.7225,7.8276,1.9232,4.3872,1.6068,17.3625,5.2139,3.1826,0.96078,2.2262,6.5568,13.1955,2.9799,4.15,3.4708,1.3341,1.4257,3.6981,9.9553,2.7769,2.121,9.2775,2.1199,2.0258,1.9024,11.8856,1.7273,3.5805,0.96111,12.1421,4.475,7.7652,4.549,9.1713,6.7109,7.5807,7.4866,3.6375,1.6175,4.5688,,,,,,,,,,,,,,,62,,,,529
+4029,1.0888,2.5417,,70-79y,Other,,,22.0446,6.0323,3.0417,2.7516,1.667,ppmi,,,M,,0.56643,6.7107,5.3985,1.0444,13.5823,2.1537,0.50465,4.8294,3.9661,58.4394,19.2654,287.6142,4.8917,7.0398,2.1057,2.4604,4.8837,9.9427,2.9275,3.7955,0.47598,9.3496,14.8115,15.8677,10.315,3.3605,7.1124,2.7724,25.4532,8.8571,5.3712,1.6264,3.2519,10.2854,20.5341,5.8216,6.3604,4.0338,2.0784,1.7322,6.5672,15.3203,4.1332,2.885,14.2718,3.1127,3.3652,2.9335,16.3251,2.533,5.0271,1.6262,20.2672,7.1274,12.1149,4.908,12.7688,9.9243,10.4866,10.5494,5.1545,2.0436,5.6908,,,PD,0.098649,PD,,PD,0.50602,5.9645,5.4013,1.0366,14.9805,2.3802,0.49336,4.7788,4.1591,58.9797,19.2139,287.6614,5.8724,8.0425,2.1975,2.8656,5.4088,10.3175,2.9086,4.1538,0.7245,9.1193,14.6978,13.2304,11.3397,3.0228,6.8426,2.6651,23.9488,6.482,5.1568,1.5598,3.2474,11.1087,18.947,4.8403,6.6355,4.3155,2.134,1.7498,5.8708,16.2714,3.9314,2.9271,12.8077,3.1537,3.0722,2.8855,16.2265,2.5672,5.0034,1.5251,18.3573,7.1569,10.7466,6.0959,13.7659,10.3533,10.3122,10.7546,4.7108,2.0131,5.5149,,,,,,,,,,,,,,,70,,,,530
+4030,1.7495,2.1754,,50-59y,Other,,,21.5047,5.1809,2.7237,2.2997,1.6327,ppmi,,,M,,0.47388,5.3249,4.5608,0.91543,8.8663,1.7651,0.41699,3.2533,3.2411,49.2651,18.4087,241.1823,4.5095,4.4612,1.8689,2.0394,4.33,7.494,2.4338,3.4112,0.77683,6.5912,11.1706,23.2126,7.7527,2.5633,5.3668,2.091,21.9993,6.2991,4.5621,1.1344,2.7789,8.2218,13.6648,4.2866,4.3366,3.6848,1.5188,1.6905,5.0343,12.2806,3.286,2.6987,12.8132,2.74,2.7087,2.4226,14.7621,2.0507,4.6058,1.4513,16.7209,6.2014,9.4353,3.8218,13.025,7.2564,9.0745,8.2894,3.8731,1.7575,5.369,,,PD,0.082235,PD,,PD,0.41785,4.6034,3.984,0.83449,10.6871,1.9364,0.42328,3.2826,3.5701,50.1196,17.7996,245.1527,4.1174,5.5812,1.7679,2.0146,4.1696,7.8891,2.2968,3.4786,0.99922,6.6808,11.9713,22.0115,8.3642,2.4013,5.7187,2.1295,21.2473,5.6965,4.0898,1.3498,2.5893,9.4526,15.2729,3.1874,4.194,3.8745,1.5522,1.6651,4.3634,12.1081,3.0984,2.5125,11.0856,3.0388,2.4073,2.1893,13.9319,2.3403,4.3943,1.3294,16.5861,6.1773,8.8584,5.4263,11.57,7.9305,8.7132,8.2681,3.8206,1.8326,5.0488,,,,,,,,,,,,,,,51,,,,531
+4032,1.1705,1.5127,,70-79y,Other,,,20.0377,5.2969,2.8552,2.3376,1.1616,ppmi,,,M,,0.38638,3.9838,3.7669,0.84329,8.1261,1.3109,0.36275,3.2785,3.1204,48.441,16.6766,189.1826,3.7546,4.1341,1.6201,1.8385,2.9658,7.2965,1.7275,3.0109,0.55315,6.0741,10.417,14.6552,7.5224,2.0947,4.1621,1.614,16.3629,5.4748,3.4446,1.176,2.2368,6.112,12.3622,3.4598,4.3119,3.0049,1.2985,1.3241,4.2778,10.2926,3.1791,2.1985,11.1842,2.4595,2.2708,2.1565,12.5524,2.0407,4.2291,1.0697,12.9564,4.8519,8.3949,3.2941,9.445,7.015,7.9865,7.1083,3.2418,1.5295,4.7384,,,PD,0.071664,PD,,PD,0.37852,3.1577,3.4748,0.79123,10.006,1.6417,0.37143,3.6896,3.3448,49.402,16.1875,190.8688,3.6558,4.7907,1.5339,1.7477,3.4475,7.5699,1.825,3.1155,0.49318,6.5438,11.1525,12.7748,8.2303,2.0053,3.7878,1.6641,15.8583,4.8932,3.4886,0.85434,2.2676,6.9996,13.1967,2.8817,4.3748,3.2798,1.3824,1.3257,3.7655,10.3741,2.887,2.1745,8.943,2.1795,2.1663,1.9148,11.0897,1.9905,4.1485,1.0502,12.3805,4.8404,6.987,3.928,9.8451,6.7253,7.6664,7.54,3.2775,1.498,4.4299,,,,,,,,,,,,,,,77,,,,532
+4033,0.97045,1.667,,60-69y,Other,,,19.1235,3.9806,2.41,2.0553,0.95093,ppmi,,,M,,0.46985,4.1933,4.2585,0.94487,9.6816,1.4552,0.39252,3.2422,3.3248,44.5822,15.0609,223.3911,3.9346,4.4532,1.7007,1.8383,3.2862,7.1806,1.984,3.305,0.38251,6.3131,10.5694,12.8656,7.2119,2.3486,4.684,1.738,16.8413,5.8049,3.8223,1.2428,3.0431,6.1483,12.9547,3.1217,4.1732,2.7367,1.419,1.6157,4.1371,9.8701,3.2427,2.2416,12.0472,2.5876,2.4948,2.2143,13.1074,2.2016,4.2834,1.1007,13.9298,4.8269,9.7856,3.2453,9.6379,7.6491,8.8067,7.3789,3.0529,1.7481,5.1236,,,,0.0726,CN,,HC,0.40647,3.5041,3.88,0.92835,9.9245,1.8223,0.3979,3.3344,3.3489,45.2643,15.1259,226.1791,3.8832,4.8248,1.7556,1.895,3.5424,6.8272,2.0539,3.5186,0.44381,5.967,10.7329,11.7571,7.8914,2.2612,4.2774,1.7566,16.839,5.1368,3.8366,0.95114,2.6876,7.3475,13.6151,2.8518,4.2094,3.1818,1.4775,1.6134,3.8753,10.0651,2.8395,2.2639,10.382,2.6114,2.3552,2.0271,12.3415,2.1299,4.1557,1.0177,14.1775,5.2234,8.4848,3.8751,9.8426,7.3343,8.5233,7.7085,3.1273,1.6369,4.8688,,,,,,,,,,,,,,,69,,,,533
+40338,1.7777,2.2144,,60-69y,Other,,,21.2108,5.1122,2.6572,2.2658,1.9468,ppmi,,,M,,0.4094,4.201,4.3653,0.72401,9.2128,1.1933,0.36743,2.6413,3.1023,46.8247,19.4249,231.4674,3.823,3.5831,1.4497,1.8677,3.4208,6.4165,1.8332,3.1458,0.75025,6.2025,8.8072,23.759,7.0766,1.9636,4.2026,1.5912,16.3506,5.8221,3.3784,1.1077,2.3894,6.6651,11.0899,3.5764,4.1289,2.9434,1.2599,1.5229,4.099,10.1562,2.9449,2.5362,11.3485,2.1821,2.2661,2.2311,12.1284,1.7654,4.3854,1.1735,13.3763,5.0231,7.5056,2.7282,10.0976,5.9493,8.6024,6.2965,2.9207,1.4986,5.1266,,,,0.079965,Other,,GENPD,0.35069,3.8367,4.108,0.7703,10.3181,1.5784,0.38808,2.9981,3.1109,48.0573,18.6042,243.3992,3.7283,4.319,1.5043,1.8587,3.6693,6.6207,1.9464,3.4509,1.0137,6.5801,9.3221,22.1696,7.9262,2.0094,4.1538,1.5865,16.941,5.5559,3.498,1.027,2.2131,7.2376,12.0257,3.003,4.2812,3.0505,1.3535,1.5108,3.7437,10.3993,2.8146,2.3168,9.6606,1.9481,1.9961,1.8068,11.8425,1.6048,4.3062,1.1051,12.8603,4.6923,7.2422,3.5966,10.1331,6.4643,8.3073,6.6485,3.2766,1.3896,5.0943,,,,,,,,,,,,,,,67,,,,534
+4034,1.7073,2.7815,,50-59y,Other,,,21.2315,4.9799,2.79,2.4106,2.3767,ppmi,,,F,,0.51253,4.9998,4.9149,0.87427,9.3919,1.5709,0.39289,4.0568,3.6456,49.0227,17.0324,255.4571,4.2295,5.4621,1.7541,2.1708,3.9678,7.6285,2.0947,3.2165,0.66016,7.0906,11.4708,38.4376,8.3833,2.4859,5.0701,2.1566,18.8307,6.9338,4.0114,1.2199,2.7871,7.5466,13.7345,4.2782,4.8068,3.9843,1.5997,1.6415,4.7036,11.8521,3.2695,2.7313,13.2208,2.2536,2.7474,2.556,14.0548,1.9555,4.5548,1.288,13.8219,5.0523,9.2421,4.1162,10.9244,7.0411,9.1508,7.386,4.3675,1.9096,5.2957,,,PD,0.080342,PD,,PD,0.4614,4.2774,4.5371,0.87138,10.4122,1.7918,0.40046,4.1602,3.9858,49.0974,16.7131,259.8597,3.9515,5.7063,1.7793,2.1659,4.1855,7.636,2.2047,3.59,0.67154,7.9141,11.6028,29.2979,8.6294,2.3508,4.4602,2.0165,18.7288,5.6652,3.7889,1.0734,2.6064,8.3011,13.9173,3.6656,4.7635,3.818,1.6647,1.6082,4.1849,11.5803,3.0932,2.4537,11.0935,2.1829,2.3922,2.1455,13.1727,2.0612,4.5152,1.2482,15.2863,5.5794,8.8139,5.1931,11.2243,7.8829,9.0284,8.1309,4.0139,1.5887,5.107,,,,,,,,,,,,,,,50,,,,535
+4035,2.8795,4.01,,50-59y,Other,,,17.8306,4.9238,3.0377,2.2373,2.3163,ppmi,,,F,,0.44432,4.0455,4.413,0.83704,9.8711,1.3268,0.40124,3.493,3.1833,49.1253,14.4213,189.2744,3.7307,4.3724,1.6167,1.905,3.2438,7.3107,1.7748,3.1308,1.4313,5.9839,10.4936,38.6741,7.8918,2.0765,4.3386,1.5028,17.2461,5.7975,3.5279,1.1471,2.4217,6.6331,12.0432,3.0966,4.5329,3.0718,1.4356,1.3219,4.1464,9.8417,3.2254,2.4901,11.0429,2.0188,2.3625,2.3969,12.687,1.9438,4.6364,1.1885,13.5084,4.905,9.3391,3.8042,10.3867,7.4377,8.2217,7.0678,3.6907,1.6015,4.496,,,PD,0.066325,PD,,PD,0.38747,3.6478,4.1323,0.84913,10.5871,1.5477,0.40184,3.8433,3.4024,49.3307,13.4299,197.8332,3.5977,4.4751,1.5758,1.9618,3.2801,7.6377,1.8804,3.3512,1.3159,6.565,10.5369,35.336,8.9798,2.0446,4.1454,1.4492,17.3806,5.7356,3.5186,1.1147,2.3195,6.7272,13.2803,2.9112,4.6335,3.8267,1.3717,1.2492,3.8513,10.1716,2.9469,2.4207,9.6349,2.0649,2.2727,2.0798,12.0843,2.0074,4.5356,1.1079,13.9373,4.7983,8.0289,4.0157,10.2679,7.8659,7.9873,7.497,3.6604,1.3898,4.2601,,,,,,,,,,,,,,,57,,,,536
+40366,1.2269,2.0037,,60-69y,Other,,,19.8336,5.0606,2.5089,2.3289,1.4451,ppmi,,,M,,0.46951,4.9918,4.5327,0.88754,8.7703,1.4897,0.38616,2.5923,3.4547,47.6376,16.9383,245.6694,4.0789,3.6345,1.764,2.3374,3.8798,7.5376,2.0683,3.2648,0.39874,6.364,11.8594,13.8279,7.3692,2.37,4.9055,1.9735,19.1432,5.7484,4.0151,1.3063,2.8423,7.6773,14.412,3.3864,4.1466,3.8433,1.5561,1.5112,4.5039,10.2263,3.5363,2.4603,11.9526,2.0773,2.4247,2.2267,12.0467,1.6589,4.3949,1.2886,15.2133,5.8201,8.2996,3.3976,10.3969,7.1543,8.7037,7.5298,3.86,1.3441,4.9374,,,,0.076959,Other,,GENPD,0.45883,4.4371,4.1808,0.88979,9.2231,1.7558,0.41235,2.6575,3.5972,47.6619,16.8229,250.5091,3.9014,4.4667,1.7312,1.9395,4.2462,8.1165,2.1769,3.4428,0.49675,6.3632,12.2654,13.1582,8.0145,2.2015,4.8904,2.0651,18.4234,4.7164,3.7681,1.1709,2.8777,8.7708,14.2562,2.7369,4.2316,3.0444,1.4066,1.5125,3.7742,9.5891,3.3941,2.3083,9.6117,2.1334,2.2206,2.0698,11.6647,1.8461,4.2484,1.2777,15.1276,5.3714,7.5587,3.7427,9.4736,8.1527,8.3947,7.9546,3.2196,1.4967,4.7047,,,,,,,,,,,,,,,69,,,,537
+4037,0.85606,1.5993,,60-69y,Other,,,23.2228,5.2597,2.6924,2.4958,1.0622,ppmi,,,M,,0.45897,4.854,4.1748,0.90172,9.9846,1.5507,0.37947,3.341,3.2136,51.0988,20.2543,262.0413,4.0812,4.2677,1.6475,2.1362,3.7387,7.3172,2.2206,3.4628,0.53262,6.5559,10.8537,8.7945,7.6094,2.4616,4.8552,1.9953,19.0557,7.2748,4.0055,1.131,2.6678,7.5517,14.2171,3.8661,4.373,3.0797,1.535,1.7781,4.6484,10.7938,3.1201,2.1657,12.9866,2.0833,2.5224,2.2578,13.9422,1.8303,4.6032,1.1923,15.6011,5.7439,8.6358,3.8658,11.251,7.5343,9.8807,7.7202,3.9329,1.4489,5.5288,,,PD,0.072636,PD,,PD,0.43326,4.626,3.8418,0.92945,10.9837,1.9088,0.40489,3.4466,3.39,52.1501,19.7339,267.3254,3.6244,4.5793,1.7511,1.8704,3.9262,7.7447,2.1324,3.671,0.49474,7.3042,11.7434,8.644,8.7735,2.2697,5.0286,1.8862,17.8886,5.912,4.0606,1.1242,2.8216,7.89,14.6645,3.3638,4.6114,3.2595,1.4352,1.7243,4.0961,10.5487,2.9919,2.1114,9.9757,1.895,2.501,1.8912,13.8595,1.7555,4.3683,1.1421,15.4239,5.6394,7.7282,4.379,10.8468,7.5088,9.4117,7.6717,3.4542,1.306,5.2942,,,,,,,,,,,,,,,62,,,,538
+4038,1.1219,1.7101,,50-59y,Other,,,18.8062,4.8886,2.6706,2.3166,1.1878,ppmi,,,M,,0.39502,4.1393,4.1445,0.85955,8.9297,1.476,0.36193,2.9149,2.9961,47.2247,15.9125,225.7204,4.2379,4.2116,1.5708,2.0448,3.073,7.0543,1.7722,3.0124,0.37863,5.7594,10.894,10.7563,7.2027,2.3805,4.5033,1.5993,17.2555,5.7497,3.6562,1.1072,2.4861,6.3558,13.0259,3.1622,3.9161,3.3467,1.5598,1.3808,4.3684,10.8096,3.087,2.3746,10.0705,2.3983,2.3554,2.2932,11.2307,2.0905,3.4525,1.1484,12.7356,4.7774,8.4777,3.1537,9.397,7.1845,7.9364,7.4015,3.7076,1.717,4.6419,,,PD,0.082967,PD,,PD,0.36109,3.464,4.0198,0.81347,10.452,1.5155,0.36018,3.2388,3.3929,47.57,15.7557,228.1867,3.9426,4.3481,1.5799,1.8371,3.4225,7.2444,1.8094,3.0434,0.50852,6.4913,11.653,10.4431,7.8262,2.1143,4.2836,1.6178,17.4613,5.1987,3.562,1.1001,2.586,7.0778,13.6408,2.6988,4.0538,3.0558,1.5781,1.3599,4.0936,10.9157,2.6928,2.3558,8.5054,2.3913,2.3484,2.0002,12.2858,2.0366,3.5641,1.0733,13.2622,5.006,7.9952,4.0257,10.4678,6.9336,7.6331,7.6225,3.4298,1.4866,4.3186,,,,,,,,,,,,,,,54,,,,539
+4051,0.7038,1.7626,,70-79y,Other,,,15.2416,3.9538,2.3125,1.7905,0.72225,ppmi,,,F,,0.43657,4.0679,3.6757,0.87771,9.1027,1.5384,0.38559,2.9011,2.8385,42.1313,13.1826,204.7469,3.7175,3.9792,1.6345,1.6986,3.2872,6.4416,2.1651,2.8545,0.31302,5.7882,10.2659,6.6579,6.4917,2.2144,4.3662,1.7455,15.6865,5.4983,3.8063,0.8999,2.1278,6.0493,12.1,2.3441,4.0853,3.1303,1.3868,1.2619,3.9883,10.3205,2.7476,2.157,10.0727,2.3503,2.2334,2.0437,10.2701,1.8984,4.0479,1.0936,13.4063,4.4068,8.8674,3.0259,10.996,6.4344,7.2866,6.4356,3.3257,1.4906,4.0859,,,PD,0.062979,PD,,PD,0.40299,3.5766,3.747,0.85902,10.0764,1.6899,0.38665,2.8881,2.8169,41.9468,12.221,210.2746,3.607,4.2735,1.61,1.6414,3.369,6.3509,2.0265,3.0281,0.30403,5.7546,10.3365,5.9959,6.7317,2.1507,4.2285,1.741,15.5414,4.6262,3.5285,0.86009,2.0904,6.5892,13.092,1.9063,3.6428,2.78,1.4043,1.2693,3.6767,9.831,2.4607,2.131,8.8984,2.1251,2.1676,1.8393,10.3252,1.6622,3.9491,1.0102,12.7047,4.3372,8.0917,3.5436,10.5271,6.3418,6.9499,7.0681,3.0217,1.4032,3.8905,,,,,,,,,,,,,,,73,,,,540
+4052,2.2228,2.4532,,50-59y,Other,,,17.4229,4.4584,2.3438,2.0124,1.9958,ppmi,,,F,,0.39439,4.607,4.419,0.85231,8.4102,1.4507,0.37908,3.3005,3.1654,42.6031,12.6321,203.2929,4.0587,4.8081,1.698,1.9738,3.1313,7.2604,2.0111,3.1766,0.71112,6.0989,11.7959,22.6594,7.4164,2.2648,4.8656,1.6732,18.0471,5.8751,3.8809,1.2885,2.7029,6.647,13.7909,2.9504,4.1709,3.8598,1.4463,1.4864,4.2598,11.4049,3.278,2.3386,11.2318,2.0658,2.4354,2.3613,12.6489,1.6241,4.0704,1.2161,13.3088,5.1731,6.9066,3.5445,10.1456,6.9522,7.4661,8.0574,3.9771,1.6435,4.6,,,PD,0.081457,PD,,PD,0.35187,3.7625,4.3376,0.83926,9.5826,1.6867,0.38473,3.5791,3.1155,42.6158,12.263,205.6426,3.6751,5.2882,1.6388,2.0567,3.3597,7.4285,2.054,3.3699,0.88574,6.5418,12.2286,18.6169,8.0878,2.217,4.5154,1.6714,17.7576,5.1078,3.8783,1.0087,2.4348,7.6411,13.2615,2.2201,4.055,3.0534,1.4891,1.4952,3.7854,10.4827,2.8985,2.5976,8.5958,1.8923,2.3689,2.2366,11.394,1.6189,4.0931,1.2054,14.1131,5.527,7.1852,3.9144,10.174,6.3637,7.2526,7.896,3.3222,1.6028,4.4224,,,,,,,,,,,,,,,53,,,,541
+4054,0.80728,1.9444,,60-69y,Other,,,14.0833,3.8744,2.1477,1.8959,0.83677,ppmi,,,F,,0.33185,3.2881,3.3202,0.74961,8.2118,1.1616,0.33361,2.389,2.1389,39.5952,12.6299,155.2237,2.8145,3.6991,1.4606,1.4719,2.6723,6.4044,1.8244,2.7045,0.39867,5.3735,9.5465,7.1231,6.3673,1.7817,3.6778,1.2814,13.7844,5.3839,3.1574,0.94695,2.091,4.9588,11.8162,2.6592,3.4485,2.5167,1.1259,1.0638,3.5674,8.5729,2.8781,1.9161,9.3937,1.7281,1.7797,2.0007,9.4738,1.4761,3.4386,1.0252,11.6469,4.1071,7.8105,3.2802,8.196,6.618,6.5914,6.5368,3.1446,1.2076,3.5549,,,PD,0.060084,PD,,PD,0.31134,3.0041,3.5179,0.7839,8.7594,1.6337,0.3531,2.5801,2.1779,40.2191,12.3652,165.1467,3.1514,3.9423,1.5144,1.5173,3.1102,6.4405,1.8173,2.8595,0.38752,6.0917,9.9273,6.7202,7.0324,1.9527,3.6895,1.4046,15.4892,4.5114,3.4159,0.89941,2.2552,5.6854,12.596,2.33,3.587,2.7082,1.1885,1.0838,3.3186,8.6042,2.6401,2.0038,8.1748,1.7436,1.9929,1.9013,10.1067,1.6744,3.614,0.96242,12.0164,4.2273,6.8635,3.6882,8.3751,6.9494,6.5335,7.0179,2.6432,1.2456,3.3513,,,,,,,,,,,,,,,67,,,,542
+4055,2.1117,2.9541,,60-69y,Other,,,19.7459,4.6216,2.5508,2.0611,3.1313,ppmi,,,F,,0.5674,6.1513,5.1162,1.0402,13.2772,2.0776,0.45839,3.3298,3.8226,48.4705,16.2958,286.3765,4.5864,4.8828,1.8382,2.0648,4.4229,8.2837,2.4487,3.6757,0.87304,8.1683,12.8007,36.9981,8.489,3.1206,5.9872,2.3089,22.6343,8.6712,4.5634,1.263,3.0335,8.8176,16.2872,4.3549,4.9634,3.9175,1.8177,1.7752,5.4578,12.5147,3.4891,2.8759,14.1106,2.9968,3.1144,2.7437,14.6302,2.8672,5.2496,1.419,18.317,6.7767,10.9428,4.4276,12.5209,8.9894,9.7608,8.537,4.427,2.2656,5.5516,,,PD,0.083664,PD,,PD,0.48377,5.1816,4.9121,1.0636,13.4434,2.2018,0.46001,3.3282,3.9264,48.3947,16.0659,288.5688,4.2511,5.1088,1.9834,2.3056,5.5147,8.7525,2.5587,3.848,1.3705,8.5192,13.4413,43.8028,8.7696,2.6449,5.5311,2.4498,22.0135,6.4947,4.5878,1.2868,2.9298,10.3582,16.1482,3.6306,5.0462,3.9689,1.7641,1.7816,4.6838,12.0612,3.1831,3.019,12.8855,2.7777,2.7697,2.5748,15.182,2.5177,5.1352,1.3474,18.35,6.3596,10.5813,5.1641,12.5912,8.8714,9.5353,8.7504,4.257,1.9576,5.2336,,,,,,,,,,,,,,,62,,,,543
+40558,1.1789,1.4405,,60-69y,Other,,,16.9614,4.3828,2.2771,2.1259,1.1165,ppmi,,,M,,0.45249,4.1848,3.8364,0.78306,8.7906,1.4816,0.38231,3.3214,2.8888,42.8379,14.6859,189.0149,3.6659,4.5647,1.5334,1.727,3.3597,6.8788,2.0436,2.8446,0.39948,5.9994,10.2448,11.8824,7.2199,2.3025,4.5114,1.5198,15.9584,5.9233,3.8523,1.0357,2.3402,6.5014,12.7153,3.2689,3.8692,3.162,1.3824,1.2551,4.1824,9.792,2.9937,2.0815,10.9824,1.8339,2.331,2.096,12.9437,1.5178,4.0667,1.1629,14.3685,4.8872,7.8783,3.525,10.0481,6.8229,7.6325,6.9802,3.3666,1.2432,4.2457,,,,0.070883,Other,,GENPD,0.38896,3.7466,3.778,0.76711,10.5524,1.5118,0.36918,3.324,2.9222,43.1661,13.755,194.8752,3.4064,5.1142,1.4709,1.8832,3.6704,6.8156,1.8675,3.0095,0.42101,6.3437,10.5759,10.9594,7.6487,2.0171,4.0573,1.5489,16.3073,5.4392,3.3944,0.98716,2.5277,6.9581,12.9932,2.8547,3.8983,3.2206,1.3568,1.2976,3.6105,9.508,2.7944,2.1047,8.6053,1.9586,2.1673,1.9462,12.4341,1.6792,3.8359,1.0592,14.5776,4.9395,7.7376,4.9023,10.4288,7.3393,7.4936,7.261,3.3,1.3314,4.1322,,,,,,,,,,,,,,,63,,,,544
+4056,1.6884,2.2441,,70-79y,Other,,,23.1621,7.4442,3.596,2.8424,1.8857,ppmi,,,M,,0.47447,4.527,4.71,0.9001,10.0273,1.755,0.44349,2.8923,3.1592,58.2988,21.0493,257.9553,4.4485,4.1138,1.8001,2.196,3.92,8.2427,2.3638,3.2335,0.45534,7.336,11.6458,20.6312,8.5871,2.8253,4.5211,1.9496,20.294,7.9894,4.4355,1.395,2.8776,6.6836,14.4376,4.3553,4.8715,3.4769,1.7347,1.5902,4.6601,10.5959,3.3821,2.4312,12.0048,2.4512,2.7897,2.6681,13.6014,2.4421,4.3396,1.4177,15.7641,5.3276,10.4142,3.738,11.7295,8.6473,9.0683,8.9118,4.3048,1.9632,5.2351,,,PD,0.084692,PD,,PD,0.43226,4.3092,4.4712,0.86909,11.8171,1.9642,0.42899,2.9821,3.2128,59.7895,20.6728,261.2541,4.2181,4.6633,1.6971,2.2166,4.4455,8.0896,2.3449,3.2942,0.54444,7.6174,11.4662,23.3635,9.2527,2.6613,4.6318,1.9365,19.4769,6.2973,4.3909,1.1966,2.7449,7.8841,15.4031,3.4771,4.9993,3.7404,1.8316,1.5936,4.1605,10.862,2.9659,2.4252,11.4626,2.4192,2.8462,2.2098,13.6144,2.0155,4.3162,1.2981,15.9002,5.3313,9.2312,4.7787,11.7153,8.7959,8.8318,8.2691,3.7471,1.5567,5.0038,,,,,,,,,,,,,,,70,,,,545
+4057,1.5381,2.2206,,60-69y,Other,,,16.9466,4.688,2.6827,2.2887,1.1855,ppmi,,,M,,0.36094,4.2527,4.2163,0.76625,8.7595,1.5046,0.37041,3.0721,2.6425,48.9907,15.173,207.9366,3.8996,4.7982,1.5179,2.1128,3.4138,7.3411,2.08,2.9986,0.59727,6.9042,10.7443,10.5406,7.4498,2.2129,4.3061,1.7699,18.3017,6.0061,4.0474,1.019,2.5135,6.1207,13.704,3.7465,4.4489,3.1574,1.4269,1.1723,4.227,9.8308,2.9656,2.1431,10.9539,2.5667,2.3367,2.2728,11.6066,2.0376,3.8692,1.11,13.7248,4.5965,9.0598,3.6181,8.766,7.4339,7.5424,7.1824,3.9667,1.6677,4.038,,,PD,0.063515,PD,,PD,0.32809,3.6785,4.0916,0.77445,10.1979,1.7027,0.38024,3.7425,2.7731,49.9399,14.962,212.7476,4.0049,4.9379,1.5344,1.9026,3.7327,7.7185,2.0182,3.1952,0.71748,7.1183,10.9948,8.7659,8.5248,2.2274,4.1295,1.6563,16.8505,6.6403,3.7469,1.0569,2.3426,7.2608,13.3776,3.3996,4.4398,3.1102,1.509,1.1557,3.7679,9.8903,2.8022,2.1678,9.8884,2.4655,2.3603,1.9753,12.6538,2.0697,3.7637,1.0855,14.7589,4.9869,8.1738,4.4815,9.6969,7.3252,7.4169,7.0354,3.305,1.6326,3.9324,,,,,,,,,,,,,,,64,,,,546
+40578,0.88623,1.3894,,60-69y,Other,,,20.1514,5.3041,2.5187,2.1833,0.97927,ppmi,,,M,,0.53803,5.062,5.1474,0.94334,11.0109,1.7165,0.4422,3.7231,3.8691,47.4452,17.0577,232.5862,4.3679,5.0258,1.8795,2.3921,3.9078,7.595,2.3143,3.4282,0.41354,7.1643,11.8107,11.9402,8.1266,2.7614,4.9041,1.9594,20.8113,7.2032,4.398,1.2881,2.8516,7.2652,15.2241,4.0839,4.8409,3.7767,1.8441,1.5704,4.2722,10.7113,3.3685,2.6347,12.0621,2.5615,2.7593,2.6252,13.5619,2.0355,4.4847,1.4223,15.1313,5.4018,10.057,4.561,11.5916,8.1269,8.9855,8.9738,4.8165,1.8241,5.0455,,,,0.0689,Other,,GENPD,0.51637,4.4482,4.9566,0.92246,11.6901,1.8431,0.45983,3.716,4.0656,47.1965,17.2242,237.4518,4.4709,5.149,1.8499,2.3518,4.0475,8.2193,2.3163,3.6279,0.77663,7.7412,12.7164,9.4965,8.5631,2.4739,4.9638,1.9085,20.0556,6.1958,3.9655,0.91974,2.522,8.3073,15.881,3.3539,4.8769,3.4267,1.8027,1.5804,4.1601,11.1775,3.1913,2.5399,10.5163,2.475,2.4737,2.1519,12.2556,2.0647,4.3271,1.3702,15.0472,5.3512,9.4555,4.8743,10.3145,8.5169,8.8168,8.8209,3.7891,1.6726,4.8221,,,,,,,,,,,,,,,69,,,,547
+4058,1.3343,2.1493,,60-69y,Other,,,22.795,4.9943,2.7484,2.5022,2.4073,ppmi,,,M,,0.50303,4.8189,4.7246,0.92787,10.7891,1.8587,0.46946,3.2404,3.7852,52.113,19.1739,266.8554,4.5224,5.1095,1.7529,2.0528,4.2988,8.1131,2.3755,3.669,0.66992,7.4347,12.6339,25.8199,7.8116,2.8379,5.3507,1.9252,20.7016,6.6798,4.5321,1.4032,3.1272,7.5023,16.4339,4.1969,4.6579,3.5824,1.5629,1.7867,5.2076,12.6631,3.3819,2.7597,13.2527,2.6953,2.8368,2.5151,14.035,2.3294,3.9734,1.4759,17.2626,5.9297,10.2928,4.4392,12.178,8.7951,10.2454,7.8497,3.9331,1.714,5.5865,,,PD,0.090248,PD,,PD,0.45041,4.296,4.7864,0.87832,12.4014,2.1715,0.45283,3.3468,3.8251,53.3024,18.5315,272.4003,4.1802,5.6735,1.6759,2.0576,5.019,8.1534,2.3941,3.7317,0.61074,8.4753,12.7859,24.541,8.4138,2.6209,5.277,2.0516,21.4804,7.1926,4.3718,1.4233,3.3903,8.472,16.7198,4.1736,4.8118,3.3497,1.6462,1.8078,4.6021,12.6909,2.959,2.9105,12.3138,2.7963,2.7398,2.4202,14.2802,2.2363,3.9405,1.4574,16.9732,5.6019,8.852,5.5964,12.3706,8.0803,10.1593,7.4208,3.3771,1.7392,5.2393,,,,,,,,,,,,,,,61,,,,548
+4059,0.71166,1.5311,,60-69y,Other,,,18.2659,4.9407,2.8706,2.3248,0.74008,ppmi,,,M,,0.4531,4.2163,4.2447,0.97131,9.6554,1.5859,0.38652,2.9654,2.7597,53.528,16.8317,209.3265,3.6042,4.3483,1.79,1.9393,3.3459,7.4046,2.0953,3.3694,0.54346,6.8204,10.8348,5.3777,7.4736,2.325,4.4398,1.7647,17.2285,6.495,3.9995,1.191,2.5179,6.4493,14.0786,3.2147,4.5131,2.9808,1.4691,1.4209,4.2778,10.692,3.3697,2.0389,10.2019,2.1613,2.4941,2.1758,11.4102,1.8863,3.9842,1.0602,14.0972,4.9923,8.4708,3.798,10.4896,7.0123,8.2882,7.8136,3.5922,1.5302,4.6415,,,PD,0.07402,PD,,PD,0.41319,3.9594,4.0884,0.96616,11.0706,1.9712,0.39463,3.3502,2.8723,54.5914,16.2776,214.0385,3.8665,4.8278,1.8546,1.7452,3.6277,7.6607,2.0803,3.6209,0.49547,7.1809,11.4948,6.0486,8.2386,2.2861,4.369,1.7326,16.4627,5.487,4.0638,0.9627,2.3865,7.2667,13.8178,2.6597,4.5228,2.961,1.4343,1.4358,3.9776,10.9683,3.1255,2.2505,9.5104,2.2376,2.4648,2.1409,11.4564,2.1837,3.9669,1.0015,13.8325,4.7066,8.0389,4.1268,10.185,7.4069,8.0462,8.1798,2.9925,1.6344,4.3485,,,,,,,,,,,,,,,62,,,,549
+4061,0.89419,2.249,,-50y,Other,,,21.5063,4.6111,3.0577,2.2955,0.84551,ppmi,,,F,,0.47025,4.9699,4.4432,0.9843,8.7652,1.6318,0.40274,2.7509,3.2959,53.0334,19.0494,256.4588,4.1066,4.7135,1.8626,2.1405,3.702,7.118,2.2159,3.3224,0.4099,6.2173,10.4036,6.9879,7.6366,2.3274,5.1595,1.8781,19.0246,5.9652,4.1936,1.4052,3.0851,6.8187,13.5586,3.6918,4.462,3.2709,1.5296,1.7521,4.5064,11.738,3.3631,2.2587,12.8142,2.268,2.4428,2.1359,13.3103,1.9559,5.4323,1.1807,14.503,5.5116,8.5805,3.3568,11.6667,7.3713,8.8762,7.5833,3.7292,1.467,5.1313,,,PD,0.085804,PD,,PD,0.43997,4.4524,4.1565,0.97726,10.4831,1.6483,0.42218,2.9064,3.2201,53.0294,18.4869,256.6564,4.0565,5.3454,1.8595,2.1705,3.7888,7.109,2.2357,3.5598,0.46691,6.0315,10.6594,6.1455,8.2984,2.1127,4.895,1.9042,19.4932,4.6903,3.7463,1.1632,2.911,7.8768,13.6892,2.7718,4.2684,3.6676,1.5861,1.6556,4.1283,11.4161,3.0616,2.2911,10.3296,2.2724,2.1483,1.888,12.5318,2.0118,5.0324,1.0919,14.7648,5.3507,8.1343,4.3427,11.0266,7.9039,8.6913,7.8284,3.803,1.3777,4.9389,,,,,,,,,,,,,,,47,,,,550
+4065,0.82334,2.0401,,50-59y,Other,,,20.7146,4.907,2.6943,2.3509,1.1621,ppmi,,,M,,0.40038,4.5229,4.014,0.76302,9.1904,1.434,0.35797,2.7078,2.7453,45.7208,17.356,200.2098,3.5536,4.0157,1.5279,1.9181,3.1442,7.0673,1.8644,3.0034,0.50106,5.825,10.29,9.5048,6.9349,2.1678,4.2783,1.7007,16.6695,5.8352,3.5252,0.98991,2.2988,6.7036,11.6352,3.4516,3.8134,3.0735,1.3521,1.4351,4.0935,10.2647,2.8694,2.1583,11.3072,2.111,2.23,2.0592,12.4191,1.7022,4.0787,1.1307,13.0729,5.3866,8.281,3.7464,10.0408,6.3515,8.2686,7.3615,3.6943,1.4484,4.7636,,,PD,0.067898,PD,,PD,0.37355,4.3804,3.7476,0.80933,10.1628,1.5768,0.36878,2.617,2.7489,45.4556,16.8812,204.821,3.8884,4.455,1.6508,1.691,3.5224,7.3658,1.8244,3.2815,0.5539,5.9856,10.7418,7.0063,7.2475,2.0019,4.1531,1.6319,16.0366,5.027,3.4282,0.87684,2.1631,7.3894,12.5166,2.5333,3.7206,2.7635,1.3895,1.3871,3.7659,10.7303,2.8038,2.1654,9.707,1.9906,2.1428,1.9403,11.8641,1.7294,3.918,1.1062,13.0158,5.2693,7.7305,4.1795,10.1691,6.9634,8.1178,7.3317,2.9677,1.3964,4.5887,,,,,,,,,,,,,,,57,,,,551
+4067,1.3871,2.0291,,60-69y,Other,,,18.1372,4.488,2.7372,2.1195,1.135,ppmi,,,F,,0.49439,5.1982,4.4254,0.87497,9.7641,1.5731,0.42611,2.9674,3.3867,45.294,14.6318,220.9049,3.6354,4.3698,1.6582,2.1274,3.5232,6.839,2.1514,3.1077,0.50787,6.2869,10.0503,13.3263,7.2872,2.3361,4.8472,2.0065,17.69,6.6458,4.1317,1.2535,3.007,7.2707,13.8018,3.4018,4.1216,3.6226,1.4862,1.4148,4.7072,11.2578,3.0208,2.3269,11.7582,2.7324,2.4324,2.1163,13.5871,2.1496,4.9337,1.3819,14.7055,5.8385,9.2318,3.4058,9.4701,7.3761,8.1853,7.1075,4.1372,1.5484,4.6363,,,PD,0.063156,PD,,PD,0.41811,4.5371,4.2933,0.86057,9.5273,1.6404,0.41564,3.2641,3.3754,46.0281,14.4011,226.139,4.1989,5.0092,1.7666,2.0492,3.8542,7.4462,2.098,3.2917,0.57798,6.9204,11.1711,10.102,7.8394,2.0378,4.5156,1.8964,18.6722,5.1946,3.7452,1.1023,2.79,8.4396,13.5598,2.8392,4.3173,3.4092,1.3713,1.3839,4.3098,11.5977,2.9883,2.4213,10.6016,2.4599,2.2886,2.0039,13.6932,2.0942,4.8173,1.2277,14.5093,5.5955,8.6678,4.2707,10.5367,7.2305,8.102,7.4867,3.4433,1.5701,4.439,,,,,,,,,,,,,,,63,,,,552
+40671,1.0644,2.3302,,50-59y,Other,,,20.637,5.095,2.8915,2.3896,1.1605,ppmi,,,M,,0.39594,4.5126,4.0434,0.91907,9.3702,1.4909,0.35779,4.5052,2.7925,47.5658,17.5614,255.4813,3.8847,5.2887,1.7624,2.0142,3.3452,6.8028,1.923,3.4769,0.58741,7.0868,10.5817,10.6844,8.2108,2.1383,4.5144,1.7573,16.5833,6.2597,3.6138,1.2808,2.9923,6.634,12.9611,4.9605,4.6866,3.4094,1.3203,1.606,5.2437,11.7741,3.4096,2.0787,11.8994,2.2945,2.3382,2.1344,11.3883,1.8571,3.7121,1.1604,13.8722,5.257,9.1625,4.2523,11.0148,7.061,8.5612,7.7804,3.4286,1.4243,5.2085,,,,0.081594,Other,,GENPD,0.38017,3.9874,3.9409,0.91279,10.8828,1.7756,0.37766,3.8637,2.9558,49.2621,17.1548,259.0671,3.8652,5.5168,1.7908,1.7734,3.6668,7.3976,1.9462,3.7199,0.67549,7.0455,11.1105,9.4935,8.6283,2.0957,4.3804,1.6913,16.05,5.4755,3.6755,1.1056,2.754,7.3297,13.3649,3.5316,4.6023,3.1124,1.4088,1.5976,4.639,11.7591,3.1754,2.1688,11.0365,2.0508,2.3228,1.9733,11.9774,1.8491,3.8715,1.1286,13.8203,5.2217,8.0517,5.2392,11.5852,6.9694,8.6024,7.776,3.0304,1.4249,4.7885,,,,,,,,,,,,,,,51,,,,553
+4069,1.296,1.6116,,60-69y,Other,,,21.1837,5.2431,2.8141,2.4219,1.3277,ppmi,,,M,,0.51083,5.0273,4.5692,0.98878,8.9755,1.7077,0.41137,3.3676,3.5457,50.6845,17.6624,272.2462,3.9745,4.931,1.8507,2.1892,4.2114,8.0823,2.1984,3.3786,0.63656,6.9411,11.1649,18.2163,7.4305,2.366,5.06,2.1463,21.266,6.2346,4.0815,1.2319,2.8234,7.601,13.7523,3.8264,4.5892,3.7362,1.4825,1.8604,4.8716,11.441,3.4149,2.42,12.7029,2.7189,2.2784,2.4766,14.8852,2.2308,5.009,1.2047,17.4589,5.6509,8.9564,3.4898,11.0503,7.6394,9.4352,8.373,4.2403,1.691,5.7424,,,,0.082425,CN,,HC,0.46905,4.0141,4.3938,1.0122,10.4911,2.0445,0.42239,3.5428,3.5973,51.8708,17.4653,272.9388,4.102,5.0388,1.9583,2.124,4.6908,8.1209,2.2963,3.8105,0.84218,7.3232,11.682,14.462,8.3721,2.4165,4.7546,1.9214,20.0325,5.9811,4.3233,1.1857,2.9047,8.3653,14.5184,3.6078,4.5209,3.7165,1.6543,1.7812,4.4186,11.6407,3.3221,2.3831,10.6863,2.2926,2.4714,2.2522,15.0591,1.8783,4.7998,1.1088,16.4375,5.5188,8.0832,4.993,10.7317,7.6312,9.2463,8.602,4.0109,1.6324,5.4311,,,,,,,,,,,,,,,62,,,,554
+4070,1.2823,1.4891,,50-59y,Other,,,16.5124,4.3274,2.4631,2.2511,1.2383,ppmi,,,M,,0.4186,4.5518,3.9032,0.7441,8.8601,1.4984,0.36469,3.1364,2.8915,42.8555,13.5834,193.3699,4.1565,4.1179,1.4131,1.8517,3.5529,6.4309,2.2452,2.8645,0.69456,5.8174,10.9938,16.1472,6.9625,2.2954,4.3491,1.8657,17.6137,6.1228,3.789,1.3063,2.4368,7.1924,13.8868,3.0939,3.9486,3.7111,1.5025,1.0624,4.3777,10.3959,2.831,2.2132,12.4724,2.6204,2.2652,2.2862,12.1729,2.1726,3.7612,1.2435,15.4594,5.2667,9.172,3.2182,9.7219,6.5771,7.0229,7.1544,3.6667,1.8032,3.9618,,,PD,0.077559,PD,,PD,0.38046,3.8545,3.7737,0.66272,10.0335,1.552,0.35834,3.2898,3.0459,43.0761,13.4341,197.6452,3.7937,4.3077,1.3034,1.8905,3.8481,6.4952,2.2286,2.8531,1.0534,6.3682,10.9189,21.5702,7.7207,1.9642,4.1433,1.8334,18.0608,5.1808,3.6252,1.1375,2.6462,8.1019,14.3887,2.7809,3.902,3.9667,1.4376,1.0289,3.8374,10.6764,2.4584,2.2347,11.2782,2.3216,2.0893,1.9628,11.6968,1.9777,3.7304,1.1413,15.6796,5.5448,8.1628,3.9871,9.3902,7.3576,6.6909,7.032,3.5663,1.5867,3.7149,,,,,,,,,,,,,,,59,,,,555
+40702,1.0282,1.6035,,60-69y,Other,,,15.1013,4.0947,2.3094,1.7736,1.0616,ppmi,,,M,,0.4865,4.5175,3.9212,0.82296,9.2402,1.5014,0.39439,3.1222,3.7397,38.7105,11.492,206.3689,3.588,4.3453,1.5541,1.7894,3.1397,7.2078,2.0695,3.1793,0.57351,6.0641,11.0273,16.0064,7.136,2.2303,4.6869,1.7431,17.744,6.5033,4.0083,1.0444,2.5325,6.3534,13.2062,3.1023,4.041,3.2265,1.3962,1.2229,4.4396,10.6294,2.9581,2.2327,12.011,2.3185,2.493,2.2218,12.3462,1.9358,4.3677,1.1745,13.7677,5.0857,8.4859,3.1784,9.7975,6.9446,7.7149,7.7071,3.546,1.4789,4.0859,,,,0.068647,Other,,GENPD,0.43269,4.1346,3.8352,0.83418,11.7412,1.824,0.39453,3.2156,3.8987,38.6737,11.2333,212.573,3.5631,4.4818,1.6713,1.8087,3.203,7.4953,1.997,3.3916,0.50884,6.0951,11.143,12.9433,7.8169,2.1158,4.7976,1.6769,17.8325,5.4133,3.9125,0.96903,2.3893,7.2749,13.399,2.6686,3.863,3.056,1.3853,1.2481,3.9917,10.5238,2.9387,2.3097,9.9611,2.2508,2.1867,2.0652,12.8484,2.0058,4.4678,1.1356,13.8467,4.9195,7.8036,3.7425,9.9819,7.192,7.5229,7.7302,3.1887,1.4701,3.8941,,,,,,,,,,,,,,,60,,,,556
+40703,1.0737,1.4945,,70-79y,Other,,,18.6095,5.1376,2.8124,2.3719,1.2597,ppmi,,,F,,0.48951,4.4905,4.1699,0.82671,9.1773,1.6207,0.39997,3.192,2.9931,48.8143,16.5718,226.3185,4.1346,4.5373,1.6169,1.887,3.2534,7.3429,2.2175,3.1216,0.34795,6.162,11.0146,10.608,7.4136,2.3839,4.9964,1.7708,19.6979,5.5863,4.2585,1.0557,2.5109,6.7763,14.0208,3.4887,4.3203,3.0326,1.6361,1.3629,4.6766,9.948,3.2531,2.2322,11.2246,2.0358,2.6015,2.1655,12.6095,1.7549,4.126,1.2727,15.7586,5.1781,9.4696,3.6684,9.993,7.3572,7.9808,7.8508,3.8486,1.4418,4.6239,,,,0.081443,Other,,GENPD,0.39909,4.0498,4.1002,0.83638,10.0704,1.7429,0.41084,3.2665,3.0738,49.0879,16.3122,231.7361,4.1311,4.0527,1.7184,1.8223,3.4024,7.2339,2.0227,3.3751,0.56974,6.886,11.1699,9.4999,8.3835,2.2077,4.6735,1.7135,19.7827,4.8702,3.805,0.97797,2.7688,7.617,13.4816,3.2187,4.5078,3.1185,1.4771,1.3742,4.3277,9.7389,3.0334,2.2923,10.2145,1.8022,2.3942,2.0191,13.7332,1.7777,4.276,1.1749,15.0536,5.4271,8.1783,3.9104,9.4769,7.9252,7.7999,8.3877,3.4546,1.3237,4.3815,,,,,,,,,,,,,,,71,,,,557
+40704,1.5028,2.1112,,50-59y,Other,,,18.2414,4.2472,2.3548,1.9965,1.2857,ppmi,,,M,,0.41937,4.6825,4.2377,0.89877,8.2666,1.4694,0.3838,2.7067,2.9356,42.3289,14.8259,214.6717,4.1065,4.2912,1.5963,2.0758,3.4735,7.2335,2.0645,3.2372,0.53254,5.4416,10.6902,11.8916,7.1278,2.2616,5.0913,1.8247,19.2932,4.9916,3.915,1.1421,2.5261,6.9372,12.5301,2.9571,4.0323,3.4347,1.3471,1.3675,3.8734,9.8409,3.1953,2.4021,11.5921,2.5768,2.4745,2.4351,13.3662,2.1822,3.8924,1.1686,13.7023,5.3812,8.689,2.9658,9.0524,7.085,7.955,7.8169,3.4337,1.8536,4.7154,,,,0.080165,Other,,GENPD,0.39253,4.021,3.9038,0.88852,11.2371,1.7832,0.39249,2.4808,3.0405,42.2756,14.7819,218.4652,4.068,4.0981,1.6519,1.8994,3.8725,7.3853,2.0781,3.4408,0.49219,5.9221,10.3551,11.7258,7.5721,2.1728,4.5831,1.8412,18.026,4.903,3.9238,1.0156,2.4309,7.8024,13.3158,2.6167,3.997,3.3254,1.4565,1.3628,3.5601,9.5982,2.8911,2.2515,9.6152,2.4592,2.414,2.1466,12.8304,2.0172,3.8947,1.1733,14.1244,5.5145,7.8114,3.8313,9.3526,7.211,7.6114,7.6212,3.2493,1.6352,4.4869,,,,,,,,,,,,,,,56,,,,558
+40707,1.4713,1.9959,,50-59y,Other,,,18.8513,4.8729,2.3373,2.1791,1.8123,ppmi,,,F,,0.41129,3.16,3.5885,0.6685,7.3085,1.1422,0.32849,2.7054,3.2411,42.1198,15.7871,211.7775,3.0476,3.3769,1.2384,1.3643,2.5587,6.0919,1.6322,2.5897,0.57412,5.3755,8.9526,25.4668,6.6036,1.7107,3.2653,1.1906,13.7473,4.9454,3.1791,0.74141,1.7498,4.7405,10.9287,3.0154,3.6051,2.4156,0.98707,1.3534,3.5423,8.0426,2.6297,2.145,8.584,2.0022,1.9819,2.0352,9.7528,1.6424,4.5576,0.9863,10.4805,3.7045,6.8013,2.6807,8.0981,5.5748,7.5439,5.8594,2.4931,1.2647,4.4158,,,,0.063398,Other,,GENPD,0.34379,2.4783,3.1093,0.66998,7.9462,1.3221,0.32906,2.7885,3.4616,41.2787,15.5184,216.7525,2.6944,3.8496,1.2062,1.3945,2.6682,5.9806,1.6794,2.7935,0.67977,5.2722,9.2274,20.9249,6.712,1.6956,3.0425,1.2672,13.6065,4.202,3.0451,0.75001,1.8046,5.5725,10.8986,2.6972,3.6129,2.5197,1.1094,1.4038,2.9749,8.3188,2.3055,1.7263,7.4495,1.7724,1.7784,1.6526,9.0746,1.4745,4.4137,0.93634,10.2773,3.5954,6.1437,3.6778,7.7526,5.6316,7.2731,5.893,2.4561,1.1712,4.3584,,,,,,,,,,,,,,,54,,,,559
+40709,1.6129,1.6696,,60-69y,Other,,,19.7743,4.7134,2.6715,2.2244,1.7289,ppmi,,,F,,0.47187,4.4743,4.2464,0.79229,9.2651,1.6938,0.37958,2.672,3.6441,49.3019,16.6602,234.4425,4.0861,4.2248,1.4355,1.8942,3.5784,7.5867,2.1615,3.1038,0.5571,6.2838,10.8401,21.8358,7.388,2.5643,4.6249,1.8595,18.7197,6.2959,4.2727,1.0219,2.5278,6.4142,13.2356,3.3885,4.5459,3.5521,1.5362,1.6098,4.1149,10.4573,3.0657,2.4498,11.9991,2.3792,2.5332,2.3445,13.5677,2.007,4.487,1.1435,13.6968,4.8156,8.0112,3.5614,11.0691,7.0788,9.0898,6.5017,3.9628,1.728,5.016,,,,0.077531,Other,,GENPD,0.41038,3.9076,3.8622,0.83286,10.4529,1.7747,0.38613,2.7762,3.8277,48.2297,16.1385,238.0488,3.7495,4.3935,1.5269,1.9048,3.8999,7.22,2.0942,3.3223,0.65358,6.419,11.1238,18.9487,7.9966,2.0697,4.7297,1.8513,17.6745,5.2892,3.8064,1.1017,2.5095,7.4713,13.8537,2.9648,4.289,3.8846,1.2994,1.5829,3.9427,10.3911,2.8201,2.3541,9.1939,2.1523,2.1858,2.0869,12.6528,2.0384,4.4437,1.1117,14.9907,4.8783,7.6948,4.1832,10.6591,7.3703,8.6385,7.0051,3.2777,1.4873,4.808,,,,,,,,,,,,,,,68,,,,560
+4071,0.74781,1.5839,,+80y,Other,,,19.5845,4.7624,2.6897,2.2217,0.97221,ppmi,,,F,,0.55331,4.8836,4.585,0.99142,10.4241,1.6236,0.43991,4.0588,3.2278,49.2152,15.7337,263.0333,4.5102,5.3398,1.8217,2.198,3.9234,7.6031,2.5512,3.3028,0.40726,8.044,13.1147,6.3789,8.23,2.6188,4.7232,2.1104,19.9882,7.2895,4.299,1.0801,2.7834,7.5365,16.9234,4.7724,5.1937,3.5048,1.8743,1.481,4.6985,11.1905,3.2402,2.3613,12.888,2.9853,2.7852,2.3892,14.159,2.3111,4.7956,1.378,16.8267,5.3408,10.5012,4.4907,11.455,8.228,9.0721,8.5578,4.3313,1.8673,4.8666,,,PD,0.074642,PD,,PD,0.48919,4.1984,4.1694,0.93426,11.7974,1.8548,0.43859,4.135,3.6758,48.6756,15.6628,266.0311,4.3648,5.5822,1.7083,2.3099,3.968,7.7459,2.4883,3.4874,0.54333,7.9576,12.8955,6.975,9.1799,2.5402,4.5547,2.1056,19.9609,6.2397,4.2449,1.0889,2.6987,8.6989,16.1442,3.967,4.9787,4.0103,1.8421,1.3971,4.6643,12.2116,3.0262,2.315,10.8891,2.723,2.4906,2.362,13.3495,2.3318,4.552,1.327,16.8819,5.7336,9.3235,5.5111,11.7691,8.5258,8.8818,9.4188,4.0174,1.8779,4.6383,,,,,,,,,,,,,,,80,,,,561
+40713,0.65074,1.6082,,60-69y,Other,,,17.6877,4.5921,2.609,2.1027,0.73632,ppmi,,,F,,0.47234,4.5319,4.2947,0.97054,8.9762,1.5367,0.42304,2.6851,2.8885,44.3619,14.902,259.4175,3.5186,4.379,1.9459,1.9924,3.2332,7.5797,2.2197,3.1152,0.3838,6.1822,11.9346,4.7233,7.406,2.3768,4.7041,1.6682,19.2058,5.6101,4.2609,0.97861,2.6399,6.4973,14.9838,3.0483,4.2605,3.2365,1.6441,1.5805,4.1598,10.3157,3.2313,2.2495,11.256,2.2718,2.5856,2.1067,13.4257,1.9716,4.4652,1.1687,14.1657,5.1598,8.9465,3.2354,10.4318,7.88,8.2143,8.0968,3.9479,1.4636,4.7971,,,,0.079994,Other,,GENPD,0.43842,4.1061,4.1866,0.93496,10.7307,1.7747,0.41645,2.908,2.9565,44.7609,14.7564,262.2193,3.9303,4.2835,1.8426,2.0072,3.4727,7.4308,2.0761,3.4693,0.55184,6.6835,11.5297,4.6296,7.957,2.2543,4.7173,1.6865,18.1653,5.7155,4.0812,1.0271,2.7737,7.5586,14.138,2.8106,4.2936,3.3712,1.4073,1.5572,3.8993,9.9637,2.9944,2.2999,10.4264,2.0048,2.4463,2.0653,13.9073,1.7892,4.5113,1.126,14.6617,5.0629,7.8942,4.3061,10.1315,7.2046,8.0456,7.9306,3.2708,1.4512,4.6018,,,,,,,,,,,,,,,64,,,,562
+40714,1.5276,2.206,,50-59y,Other,,,15.7501,4.521,2.4271,2.021,1.1119,ppmi,,,F,,0.4126,4.4414,3.9395,0.81677,8.86,1.6595,0.38929,3.1485,2.6975,43.7447,13.8347,195.841,3.9365,4.7483,1.6123,1.6784,3.4084,7.3567,2.0496,2.8867,0.46296,5.7994,11.0306,15.4102,7.179,2.3588,4.3443,1.8605,17.375,5.5072,4.1404,0.99666,2.5696,6.7273,13.1073,3.1442,3.9892,2.7488,1.2835,1.1641,3.9677,10.0826,3.0723,2.1868,10.1619,2.1151,2.4975,2.3385,12.5371,1.9014,3.5694,1.3129,15.9941,5.3702,7.8962,3.5707,9.6357,7.1405,7.1081,7.8334,3.2081,1.6671,4.0285,,,,0.07475,Other,,GENPD,0.35636,4.222,3.673,0.81051,9.3321,1.7469,0.37971,3.3623,2.8751,44.5073,13.5454,200.2361,3.616,4.5265,1.5995,1.8504,3.6483,7.5199,2.0733,3.0315,0.56577,6.2042,10.6683,13.9026,8.2748,2.0846,4.2488,1.8365,18.371,4.568,3.8431,1.0764,2.486,7.7225,12.9556,2.8067,4.2349,3.1048,1.382,1.1396,3.7242,10.2435,2.8957,2.1287,9.507,2.3164,2.196,1.9911,12.1149,1.9119,3.4307,1.3066,14.9848,5.2774,7.1457,4.0067,9.2974,7.1475,6.8479,7.8789,3.2885,1.4816,3.831,,,,,,,,,,,,,,,53,,,,563
+4072,0.8671,2.1009,,50-59y,Other,,,18.2978,4.9134,2.3904,1.9554,1.0088,ppmi,,,M,,0.45908,4.1326,3.9535,0.82126,9.1579,1.5573,0.37931,3.3415,3.1649,44.5304,13.8238,205.0186,3.9441,4.7291,1.5671,1.8539,3.429,7.0729,2.2147,3.0287,0.32346,6.0814,10.7694,12.273,7.456,2.3405,4.6445,1.6804,18.6376,6.0233,4.0044,1.106,2.6132,6.0927,13.5309,3.5059,4.3465,3.1511,1.324,1.2611,4.3672,10.1416,3.0969,2.1796,12.6967,2.2697,2.4303,2.3853,12.968,1.938,4.1833,1.1866,15.8917,4.9724,9.412,3.9204,10.7539,7.1227,8.0365,7.5662,3.4479,1.755,4.4268,,,PD,0.083957,PD,,PD,0.44024,3.736,3.6285,0.77132,10.7165,1.7568,0.39489,3.416,3.3143,44.7667,13.9761,209.6772,3.7455,4.8159,1.507,1.8388,3.939,7.0969,2.182,3.0867,0.33897,6.1843,10.7126,11.051,8.349,2.2549,4.3274,1.6945,18.8066,5.2593,3.9232,1.1134,2.4269,6.8767,13.7007,2.7631,4.2218,3.5579,1.4221,1.208,3.9934,9.7755,2.7213,2.0504,10.3981,2.2111,2.292,1.9385,11.9393,1.9945,4.0804,1.183,15.6137,4.5139,8.6046,4.5806,11.0885,7.4697,7.6391,7.221,3.4573,1.5544,4.1858,,,,,,,,,,,,,,,58,,,,564
+4073,1.249,1.5186,,50-59y,Other,,,18.3244,5.0302,2.5736,2.3854,0.99781,ppmi,,,F,,0.49608,4.5776,4.3162,0.80186,9.1059,1.4801,0.41438,3.2376,3.1761,47.5287,13.5372,199.2294,3.586,4.6714,1.5539,1.9235,3.0987,7.331,2.2815,3.0018,0.37256,6.6077,12.0095,15.2036,7.2213,2.4303,4.8133,1.7325,19.5145,6.1449,4.0774,1.2619,2.5642,6.6601,14.1634,3.4238,4.4268,3.7258,1.6075,1.3147,4.4464,11.1133,3.11,2.3306,12.2176,2.1922,2.5403,2.2763,12.4517,2.0171,4.3079,1.2718,15.5828,5.6847,8.5499,3.99,11.2598,7.0024,8.2959,8.239,4.173,1.7055,4.6817,,,PD,0.083637,PD,,PD,0.43033,3.881,4.0625,0.79285,10.2142,1.7299,0.41682,3.2622,3.1633,47.4885,13.3607,198.9243,3.4699,4.6366,1.6008,1.9563,3.594,6.9394,2.3562,3.1422,0.40016,6.8043,11.3396,13.083,8.0531,2.2007,4.4991,1.7671,19.0027,5.5929,4.0803,1.0458,2.549,7.6836,14.6566,2.7977,4.331,3.5945,1.4021,1.3391,4.1613,10.843,2.8536,2.2933,10.7346,2.0809,2.3245,2.0539,12.4647,1.7831,4.2435,1.2385,15.1578,5.7059,8.0523,4.6959,10.9396,7.5034,7.7907,8.3282,3.4105,1.4538,4.4905,,,,,,,,,,,,,,,57,,,,565
+40730,1.055,1.5419,,+80y,Other,,,18.0121,4.6583,2.6104,2.2112,1.248,ppmi,,,F,,0.42929,4.5137,4.1635,0.81454,9.1596,1.7005,0.37892,2.6664,2.5757,45.1202,15.95,242.5257,4.145,4.3627,1.5136,2.03,3.3984,7.234,2.1166,3.127,0.38384,6.0538,11.1401,10.2573,7.1349,2.5742,4.4533,1.8918,18.26,5.7011,4.2169,1.1877,2.698,6.8982,13.9181,2.9702,4.0975,3.5416,1.5644,1.3683,4.3025,10.742,3.0483,2.2556,12.2441,2.2557,2.8074,2.2124,12.7375,1.7507,3.946,1.2332,14.4255,5.2952,9.9603,3.0999,10.9957,7.7399,7.9284,7.5902,3.6597,1.3468,4.5343,,,,0.067826,Other,,GENPD,0.37857,4.1643,4.0602,0.81883,10.7928,1.9423,0.37856,2.685,2.8505,45.2274,15.8402,245.3329,3.6918,4.2869,1.6144,2.0962,3.7982,7.8116,2.2261,3.2645,0.38685,6.6016,11.3807,10.4375,7.58,2.4011,4.7251,1.8241,19.2485,5.2477,4.0195,0.98393,2.3287,7.6079,14.587,2.8581,4.1623,3.4902,1.5448,1.3441,3.8611,10.9099,2.8911,2.3056,10.3986,2.0549,2.4525,2.0608,10.3536,1.7612,3.8698,1.2078,14.0338,5.3616,8.6433,3.8936,10.7691,7.3738,7.6092,7.4968,3.5314,1.3833,4.3115,,,,,,,,,,,,,,,81,,,,566
+40731,0.92273,1.8491,,50-59y,Other,,,19.8222,5.1432,3.0159,2.3262,1.3733,ppmi,,,F,,0.56133,6.3978,5.1591,0.97044,11.5981,2.1471,0.49777,3.2277,3.3907,52.8587,17.4588,277.9313,4.8972,5.5693,1.6776,2.3462,4.3157,8.4824,2.6263,3.4943,0.39624,8.8442,13.0227,11.6637,8.1931,3.3451,5.526,2.5237,24.7728,9.0994,5.1122,1.4503,3.4668,9.6105,16.5058,4.4156,5.1234,4.4373,1.9312,1.5816,4.9737,12.9637,3.2844,2.6375,14.7323,2.9137,3.6873,2.6146,15.8351,2.2711,4.7453,1.5663,18.3395,7.2031,10.7742,3.8288,13.3558,8.9849,9.9174,8.8626,4.8887,1.8766,5.1992,,,,0.074405,Other,,GENPD,0.51717,5.8197,4.8153,1.0057,13.8503,2.303,0.48597,3.061,3.5223,52.2668,16.8252,279.6159,4.4749,5.355,1.8501,2.3583,5.0038,8.9486,2.7186,3.7509,0.53457,7.1094,14.3018,9.1811,8.8207,3.0049,5.9034,2.5814,23.978,7.1247,4.8907,1.1724,3.0048,10.4165,18.1189,2.8961,4.5875,4.6448,2.2051,1.6184,5.0132,13.1342,3.2562,2.7,12.502,2.5355,3.2702,2.3119,14.0819,2.1553,4.6491,1.4746,18.4039,6.7425,10.4475,4.5926,12.8934,9.6621,9.2631,9.4644,4.5649,1.6707,4.9872,,,,,,,,,,,,,,,53,,,,567
+40733,0.80898,1.35,,-50y,Other,,,15.6007,3.7712,2.4331,1.8536,0.87212,ppmi,,,M,,0.41938,3.7545,3.4852,0.72945,7.3882,1.2974,0.34625,2.2875,2.5668,39.1713,13.7873,201.3611,3.194,3.5365,1.3413,1.637,2.787,5.7229,1.8041,2.6926,0.33594,4.6639,8.4042,8.5032,5.5499,2.1085,3.7768,1.5411,16.0271,5.019,3.4503,0.83527,2.0302,5.8096,10.518,2.5684,3.1316,2.924,1.3921,1.3001,3.5954,9.1928,2.4719,1.871,10.6515,1.7927,2.253,1.7697,11.2248,1.484,3.6528,1.0093,12.5346,4.5834,6.9031,3.1201,9.6285,5.8154,7.5384,5.9392,3.3043,1.2286,4.1582,,,,0.063383,Other,,GENPD,0.37192,3.4359,3.2727,0.72956,7.8562,1.4493,0.34487,2.4484,2.7736,39.6093,13.7403,205.1178,3.0157,3.7104,1.391,1.5582,3.0559,6.1641,1.6015,2.9181,0.3831,5.1971,8.9782,7.6792,5.9042,2.03,3.8984,1.4058,15.8152,4.1393,3.0507,0.88245,2.3385,6.2573,10.8573,2.3204,3.282,2.8879,1.3534,1.3274,3.3306,8.8289,2.2501,1.857,9.0581,1.7733,2.0811,1.603,11.056,1.4033,3.7636,0.95114,12.077,4.6244,6.7959,3.5723,9.0539,5.6822,7.093,5.9819,2.9395,1.1105,4.0177,,,,,,,,,,,,,,,32,,,,568
+4074,1.3015,1.8794,,-50y,Other,,,19.3006,5.5108,2.8033,2.6309,1.8051,ppmi,,,F,,0.5588,5.2519,5.146,1.059,10.0427,1.6827,0.47905,4.4356,3.623,52.6493,15.2617,245.7607,4.5771,6.0572,2.0425,2.4736,4.2672,8.4773,2.7196,3.893,0.61957,8.1516,13.7287,21.5854,9.1176,2.6741,4.9797,2.2499,23.5877,7.6079,4.8289,1.223,2.5129,8.2644,17.4378,4.5891,5.0683,3.5145,1.8926,1.5061,5.7603,13.4749,3.5923,2.6795,13.1007,2.539,2.8406,2.6525,14.2601,2.2345,4.9861,1.5208,16.2568,6.0495,9.9926,4.6341,12.9207,8.3313,9.5838,9.4244,4.6688,1.9097,5.1384,,,PD,0.093875,PD,,PD,0.49372,4.722,4.8087,1.0429,12.8192,2.0379,0.46856,4.4218,3.9588,51.5407,15.0595,247.1331,4.2888,6.2281,1.9153,2.2646,4.325,8.8666,2.6281,4.0944,0.80449,8.8032,13.491,23.9529,9.9124,2.6736,4.932,2.1771,22.6169,6.7929,4.573,1.1205,2.4855,9.1284,17.0738,3.7799,5.4274,3.8281,1.9051,1.465,5.1282,13.4143,3.343,2.7263,10.6343,2.403,2.8473,2.4059,13.7884,2.3343,4.8929,1.3936,16.3933,5.542,8.6695,6.0699,12.2455,8.4631,9.3262,9.2918,4.4931,1.6995,4.9092,,,,,,,,,,,,,,,47,,,,569
+4075,1.0034,1.8496,,60-69y,Other,,,20.7026,5.5735,2.8359,2.4854,1.1242,ppmi,,,M,,0.51813,4.856,4.527,0.84302,9.3644,1.4028,0.44245,2.9828,3.1139,52.2313,15.7956,239.2743,4.0588,4.3433,1.6893,1.9551,3.5253,7.4224,2.2583,3.1222,0.34734,6.3664,11.09,12.1156,7.2218,2.3997,4.4375,1.9025,19.4729,6.2707,3.9828,1.2039,2.6546,7.1449,14.0469,3.3404,4.4218,3.4145,1.6197,1.5384,4.0576,10.356,3.2227,2.343,12.2709,2.0514,2.687,2.3923,14.4259,2.1705,4.6658,1.3411,15.9677,5.4817,9.9595,3.4144,11.8499,8.4141,8.6291,8.4152,3.9816,1.6548,5.0951,,,PD,0.096807,PD,,PD,0.47543,4.3215,3.9667,0.80197,10.8731,1.5915,0.43961,2.8082,3.1925,51.7264,15.8455,240.9316,3.6542,4.6546,1.5524,1.8615,3.7787,7.3634,2.1949,3.2882,0.43536,6.6795,11.6358,12.7438,7.7984,2.2214,4.2232,1.8025,20.1348,5.6003,3.879,1.0872,2.4482,8.1872,15.0227,2.808,4.2641,3.2356,1.4154,1.4843,3.6087,10.1056,2.8672,2.2256,11.5784,1.8551,2.4668,1.9996,13.7134,1.7982,4.5041,1.3156,16.1732,5.3884,8.4489,4.4575,10.814,7.4243,8.4286,7.163,3.6349,1.4392,4.8089,,,,,,,,,,,,,,,60,,,,570
+4076,1.6362,2.1174,,60-69y,Other,,,17.4018,5.1278,2.7462,2.3014,2.0843,ppmi,,,F,,0.47855,4.5745,4.247,0.77818,9.045,1.399,0.40474,2.6205,3.0391,46.973,14.3155,227.325,4.4764,3.9629,1.5507,1.9117,3.3279,6.8413,2.2484,2.5743,0.58937,6.0904,11.0748,21.6755,7.3851,2.2724,3.8961,1.7831,17.0423,5.8389,3.8667,1.046,2.5365,7.0838,12.5988,3.5789,4.0059,3.3314,1.6362,1.2584,4.5844,10.636,2.8829,2.3326,10.7039,2.545,2.4085,2.2691,12.9936,1.9063,4.1961,1.4549,12.7948,5.1958,9.2735,3.1605,10.6335,6.2356,7.282,7.6866,3.7658,1.8123,4.231,,,PD,0.07919,PD,,PD,0.42629,3.7354,4.1607,0.78391,9.5397,1.5851,0.42341,2.961,3.1683,45.6406,14.1009,232.5592,4.2525,4.1365,1.4991,2.0524,3.5995,7.0064,2.1944,3.2447,0.70018,6.4621,10.8292,15.6321,7.8211,2.2226,3.7656,1.8692,16.2139,5.2065,3.6385,1.1413,2.4381,8.28,13.5646,3.0055,4.0266,3.1892,1.6713,1.2002,4.264,10.8745,2.7469,2.3744,9.8571,2.425,2.2018,2.0522,12.0439,1.9559,4.2002,1.3885,13.3456,5.3103,7.7478,3.9539,9.3336,6.9437,7.5251,7.4781,3.5187,1.6478,4.0908,,,,,,,,,,,,,,,60,,,,571
+4077,0.82905,2.0183,,70-79y,Other,,,18.3151,4.7954,2.2135,2.1192,0.89337,ppmi,,,M,,0.47912,4.755,4.1298,0.88611,10.9084,1.6782,0.42621,3.9526,2.7421,45.8452,15.2079,231.0384,3.8364,5.3808,1.7091,1.9668,3.6452,6.9455,2.3218,3.3238,0.55113,7.2511,11.2367,8.5905,8.2883,2.4684,4.4543,1.9548,17.9947,7.3147,4.1621,1.1166,2.6136,7.2971,15.0845,4.3563,4.6924,2.9508,1.3956,1.3685,5.0782,11.5826,3.2072,2.0956,12.4227,2.2066,2.5178,2.0971,13.9633,1.7829,4.465,1.2682,17.1117,5.5975,9.4925,4.7722,12.1914,7.536,8.1953,8.524,3.5641,1.4015,4.7872,,,PD,0.077181,PD,,PD,0.42849,4.0883,3.8477,0.90446,10.7765,1.9029,0.42902,3.551,3.0167,46.0069,14.8341,228.2444,3.4037,4.8383,1.8809,1.7885,3.8499,7.492,2.4501,3.4778,0.56813,7.7892,11.6581,11.0032,8.7489,2.2701,4.6508,2.0081,19.7779,6.1005,4.1382,1.1695,2.7579,8.51,14.228,3.5908,4.8478,3.2723,1.4251,1.3622,4.5679,11.6455,2.9579,1.9453,11.0259,1.81,2.3389,1.8565,13.2375,1.7403,4.3831,1.2182,14.8095,5.536,8.6574,4.9652,12.7013,7.4717,7.8831,8.2032,3.2728,1.391,4.5125,,,,,,,,,,,,,,,74,,,,572
+4078,1.3724,2.2925,,-50y,Other,,,21.1186,5.8336,2.7061,2.67,1.855,ppmi,,,M,,0.51222,5.0545,4.3856,0.88708,10.122,1.6441,0.42814,3.3026,3.4535,52.2803,16.7362,227.5543,4.2116,4.4974,1.7101,2.2771,3.5909,7.4855,2.4455,3.2452,0.49297,7.6027,11.7972,18.4702,8.7176,2.6207,4.7617,2.0171,20.3281,6.8908,4.4607,1.2597,2.7209,7.4267,15.7006,4.39,5.1947,3.6098,1.6538,1.3053,4.6851,11.0641,3.2684,2.2657,13.0574,2.3909,2.7783,2.2924,13.084,2.1187,4.5746,1.4309,14.4692,5.0156,9.7929,3.8509,12.0061,8.092,8.0529,8.6514,3.9929,1.7264,4.6334,,,PD,0.083311,PD,,PD,0.45009,4.5011,4.1658,0.86279,11.2337,1.8664,0.43069,3.3247,3.3466,50.9079,16.2558,232.5782,3.9367,4.9842,1.6776,2.1833,4.4849,7.4581,2.5317,3.2229,0.63101,7.6231,12.0284,19.9707,9.6919,2.3768,4.8674,2.076,19.2481,5.924,4.2859,1.0438,2.578,8.675,16.2549,3.584,5.0056,3.2794,1.6059,1.3689,4.142,11.4326,2.9554,2.2761,11.8376,2.2789,2.3149,2.0885,13.679,2.1089,4.3988,1.3818,14.8598,5.1405,8.5316,5.0086,11.8341,8.5311,7.6978,8.5341,3.9168,1.566,4.5714,,,,,,,,,,,,,,,48,,,,573
+40781,1.1916,1.8921,,60-69y,Other,,,19.4002,5.0171,2.621,2.1832,1.0855,ppmi,,,F,,0.50358,5.143,4.9585,0.92977,10.7656,1.6765,0.43734,3.712,3.2517,49.2894,16.9457,250.5652,4.313,5.5576,1.7976,2.1639,3.9845,7.7051,2.3919,3.2935,0.40624,7.1223,12.5187,10.7332,8.3268,2.6473,5.4635,2.0005,20.9458,6.8087,4.5372,1.4211,2.7255,8.0237,15.8756,4.1053,4.3412,3.2024,1.6838,1.7134,5.4809,12.8425,3.4474,2.6641,13.3041,2.4006,2.75,2.4151,14.9445,2.1458,5.2778,1.3024,14.9852,6.1781,9.138,4.0896,12.3165,8.4533,9.5193,7.8332,4.1117,1.7023,5.2422,,,,0.074237,Other,,GENPD,0.45534,4.1183,4.8355,0.94532,11.3944,1.8543,0.44487,4.0552,3.5024,49.9588,16.1751,256.2334,4.2816,6.3347,1.8692,2.2231,4.4109,7.9223,2.2982,3.5151,0.47985,8.1356,12.0613,9.8543,9.4663,2.4264,5.3791,1.9991,19.3358,6.2247,4.1325,1.2653,3.0851,8.7483,15.3127,4.4941,4.9515,3.3213,1.6541,1.7368,4.9366,13.0437,3.1757,2.6509,12.0182,2.3349,2.6635,2.1946,13.7471,2.0836,5.0924,1.2,16.1804,6.4036,8.5233,5.8982,11.4281,8.2076,9.385,8.2625,3.5617,1.5716,5.0188,,,,,,,,,,,,,,,61,,,,574
+4079,0.79298,1.6148,,70-79y,Other,,,16.5952,5.0076,2.6247,2.348,0.99269,ppmi,,,M,,0.46725,4.5314,4.3908,0.78051,10.9369,1.5556,0.43324,3.6327,2.9682,45.8795,12.5905,201.0965,4.1012,5.2733,1.5396,2.0407,3.6605,7.2883,2.4991,2.7214,0.30866,7.7342,12.3528,7.7754,8.3655,2.5241,5.136,1.8931,17.8952,7.3871,4.3444,1.2704,2.8518,6.8863,16.2418,4.5806,4.9439,3.3645,1.7015,1.1555,4.7071,12.8048,2.8474,2.235,12.1703,2.7117,2.6814,2.1818,12.8636,2.1784,4.5123,1.3399,15.289,5.3708,11.1178,4.0452,11.4202,8.0843,7.7829,8.054,3.8411,1.6998,4.0635,,,PD,0.074588,PD,,PD,0.40141,4.1259,4.1824,0.82649,11.785,1.6319,0.41722,3.7058,2.9024,46.592,12.7274,201.6574,4.1511,5.6155,1.6918,2.0872,4.0388,7.444,2.4195,2.9891,0.40014,7.8056,12.1468,7.174,8.7847,2.1595,5.2179,1.9543,18.1191,6.2762,3.927,1.0792,2.3983,7.9631,15.5599,3.2554,4.7818,3.6291,1.5438,1.1706,4.5615,13.0084,2.868,2.3344,10.1647,2.5503,2.2858,2.103,12.5534,2.2694,4.2853,1.2558,15.7285,5.1693,9.5784,4.8193,11.3597,8.6074,7.514,8.6362,3.7876,1.7297,3.9318,,,,,,,,,,,,,,,70,,,,575
+4080,1.3606,2.1587,,60-69y,Other,,,18.0665,4.294,2.3483,1.8835,1.23,ppmi,,,M,,0.46873,4.7038,4.3465,0.86764,10.381,1.603,0.40675,3.8423,3.2391,44.3663,15.1786,243.4422,4.1524,5.4468,1.6629,2.0707,3.4976,7.417,2.042,3.1639,0.81682,7.0255,12.0308,21.998,7.7796,2.3525,4.7632,1.8755,19.4524,6.5413,4.0272,1.2232,2.9225,7.4018,14.7624,4.0686,4.4555,3.4292,1.4054,1.4914,4.8712,11.8067,3.1649,2.5697,13.7831,2.6669,2.5373,2.3716,14.7161,2.4934,4.6025,1.2991,15.8716,5.8078,10.9254,4.2352,12.042,8.1538,8.3961,7.6555,3.9961,1.9713,4.6953,,,,0.076775,CN,,HC,0.40183,4.05,4.0232,0.81192,11.2681,1.9002,0.39724,3.8964,3.2695,44.7902,14.5018,247.529,4.097,5.4679,1.6907,1.9603,3.6651,7.6082,2.0977,3.2272,0.68512,7.1833,11.571,15.9903,8.7682,2.325,4.6943,1.9369,19.1424,5.5947,4.1106,1.1847,3.0203,7.8475,14.4719,3.627,4.4364,3.5988,1.4654,1.4701,4.4902,12.3784,2.9842,2.4264,11.984,2.8215,2.5549,2.0908,14.0583,2.3031,4.4265,1.2558,15.6604,5.9466,9.5513,4.6567,12.9281,8.0431,8.1415,8.165,3.4699,1.6797,4.4558,,,,,,,,,,,,,,,63,,,,576
+40800,1.8407,2.8696,,50-59y,Other,,,19.6272,5.1306,2.8631,2.4918,1.6882,ppmi,,,M,,0.43006,4.3503,4.3288,0.88855,10.1185,1.5738,0.38353,3.0605,3.0107,49.1482,15.5077,206.5866,4.0674,4.864,1.6981,2.1275,3.6237,7.437,2.0482,3.1491,0.83106,7.0534,11.4099,21.2953,7.8311,2.4516,4.7034,1.7253,17.2913,6.7784,4.0803,1.1453,2.4833,6.9588,14.065,3.8811,4.6602,3.4155,1.6004,1.16,4.7607,11.5009,3.1838,2.5446,10.8204,2.698,2.3838,2.3768,11.9267,1.9256,4.1729,1.271,14.515,5.1893,8.8867,3.4063,10.6271,7.4551,8.0157,7.7747,4.3999,1.6806,4.5394,,,,0.070736,Other,,GENPD,0.41602,3.9855,4.07,1.0615,11.8996,1.8729,0.4318,3.1008,3.2035,51.4785,16.001,214.2743,3.7992,5.2304,2.0445,2.0438,3.7681,8.038,2.1017,3.6058,0.85134,6.5082,11.9452,17.8464,8.1659,2.4176,4.5935,1.7873,16.9024,5.3116,3.8614,0.97615,2.2079,7.3148,13.0738,2.96,4.2782,3.4297,1.6284,1.2291,4.2015,11.2859,3.1627,2.5233,9.3524,2.5464,2.2705,2.1222,11.3974,1.8626,4.1036,1.2476,14.5471,5.0989,8.1528,4.2919,10.836,7.284,7.8595,8.4713,3.8074,1.5191,4.494,,,,,,,,,,,,,,,50,,,,577
+40806,1.7357,2.1942,,70-79y,Other,,,19.8605,5.2454,2.7505,2.2381,1.5938,ppmi,,,M,,0.50019,4.9229,4.5897,0.93065,9.8106,1.6836,0.4069,3.4433,3.4314,46.0366,15.3575,221.6991,4.4168,4.8283,1.8145,2.2144,4.2327,7.4633,2.2201,3.4473,0.75486,6.923,11.2468,23.3742,7.9644,2.493,4.9732,2.0467,20.0936,6.8696,4.1069,1.3137,3.1064,8.0454,13.7359,3.9038,4.3573,3.5511,1.68,1.5616,5.0339,12.5059,3.3195,2.4187,12.772,2.3358,2.5023,2.2605,13.613,1.9503,4.709,1.3308,15.4668,6.1848,8.9152,4.0358,12.1581,7.7037,9.0755,7.2338,4.4013,1.5121,4.9698,,,,0.081501,Other,,GENPD,0.46084,4.64,4.2844,0.95853,11.6328,2.0488,0.42495,3.7012,3.7654,49.8287,15.3174,224.8602,3.8756,5.6338,1.9284,2.1608,4.5744,7.7852,2.2645,3.5434,0.8923,6.8241,12.059,18.054,9.0424,2.5423,5.153,1.9769,19.9962,4.9597,4.1229,1.2472,3.0029,8.5393,14.3888,3.5668,4.6212,3.6454,1.8118,1.6065,4.59,12.6234,3.3263,2.4408,10.9283,2.294,2.4026,2.0882,11.9741,1.9459,4.4989,1.1771,16.191,6.2834,8.3975,4.6103,11.3083,8.0529,9.0644,8.2263,4.0126,1.452,4.8369,,,,,,,,,,,,,,,79,,,,578
+4081,1.7648,2.4192,,70-79y,Other,,,20.5896,4.7945,2.5957,2.1001,1.7,ppmi,,,M,,0.43139,4.8444,4.6938,0.93916,9.2108,1.6982,0.39811,3.4385,3.3138,46.0822,16.8201,249.5805,4.36,4.6823,1.6871,2.0178,3.7559,7.6452,2.1805,3.4355,0.65868,6.8429,11.584,23.1995,8.5739,2.7048,4.4017,1.8822,19.9321,6.6041,4.1023,1.1478,2.7342,7.7678,13.3039,3.7545,4.6596,3.3026,1.6767,1.4485,4.9116,10.9171,3.2516,2.6322,11.7536,2.4063,2.6605,2.5833,12.036,2.2505,4.2158,1.2719,15.2764,6.1974,8.6724,3.6521,10.8549,7.3547,7.9941,7.8521,4.1559,1.5096,4.7233,,,PD,0.074073,PD,,PD,0.39601,4.4665,4.4756,0.84958,9.558,1.85,0.39724,3.8441,3.6095,46.0744,16.5037,266.3748,3.9753,5.1463,1.6674,2.0835,4.1903,8.1315,2.1107,3.4272,0.67422,7.0589,12.0098,19.3403,8.99,2.3061,4.2963,1.8309,18.0799,5.3637,3.9519,1.27,2.5556,8.6362,13.5543,3.1415,4.307,3.5502,1.595,1.5809,4.4913,11.2296,3.022,2.3962,10.2333,2.0982,2.4105,2.2946,13.496,1.8891,4.3651,1.2178,16.6013,6.0294,7.6382,4.5918,9.495,7.3278,8.1761,7.951,3.5053,1.4583,4.7849,,,,,,,,,,,,,,,72,,,,579
+4082,1.4582,2.2021,,70-79y,Other,,,16.7256,4.7303,2.3789,2.0415,1.5696,ppmi,,,M,,0.40362,4.0591,4.1188,0.84434,8.3494,1.2332,0.36812,2.7145,2.77,43.1116,14.3831,199.5239,3.7333,4.0168,1.5576,1.9101,3.0195,7.0797,1.8948,2.9618,0.66077,6.3568,10.9733,15.584,6.5364,2.0434,4.2655,1.5303,16.7745,5.8627,3.4945,0.91429,2.0264,6.1927,12.9221,3.5936,3.8552,3.133,1.5175,1.3537,3.8744,9.4986,3.0054,2.2297,10.2713,2.4968,2.2164,2.1768,11.443,2.0249,4.0383,1.151,12.9847,4.9118,8.5161,3.3892,8.8569,6.8376,7.3964,7.1236,3.7741,1.6046,4.3767,,,PD,0.070464,PD,,PD,0.3551,3.9034,4.0598,0.84569,9.3827,1.426,0.37374,2.7214,2.9183,43.2412,14.2029,201.4885,3.6336,4.0357,1.6917,1.924,3.1856,7.3355,1.7764,3.187,0.83343,6.5153,11.7249,13.2142,7.0323,1.8922,3.8745,1.5236,16.5082,5.161,3.1673,1.0444,2.3391,6.5025,14.0482,2.9613,3.7318,3.2747,1.3828,1.3801,3.5913,9.2017,2.922,2.2176,8.7563,1.8228,2.1424,2.0399,11.1386,1.6879,3.9604,1.0749,12.6946,5.1891,7.3503,3.77,8.4933,6.7164,7.2539,7.7251,3.1775,1.348,4.225,,,,,,,,,,,,,,,74,,,,580
+4083,0.95228,1.9637,,60-69y,Other,,,21.5939,4.7453,2.8982,2.1764,1.0738,ppmi,,,M,,0.556,5.6669,4.8131,0.99116,10.7012,1.7743,0.45231,3.4928,3.2585,51.9914,18.7065,240.816,4.2088,5.8149,1.8334,2.1702,4.1842,8.0523,2.3981,3.3883,0.63073,6.8946,11.6108,10.8661,8.8834,2.7243,6.0347,2.1728,22.7323,6.6894,4.4749,1.0894,3.1106,7.8492,15.0009,3.6928,4.5621,3.4466,1.7406,1.6543,4.7921,12.5808,3.5867,2.4706,13.9091,2.7334,2.6408,2.4297,15.2379,2.4686,5.0522,1.3713,17.3102,6.6884,10.4054,4.1556,12.52,8.7362,9.0097,8.0705,4.1627,1.751,5.4977,,,PD,0.082518,PD,,PD,0.47811,4.999,4.5927,0.94918,11.0248,2.0258,0.45162,3.7429,3.3299,52.8831,18.1406,245.6413,4.4737,6.3386,1.7591,2.0495,4.5616,8.4736,2.3316,3.5676,0.62596,7.9282,11.3255,9.7476,9.3896,2.3587,6.2092,2.1468,21.8769,6.1113,4.2217,1.2056,3.0629,9.196,14.3203,3.8739,4.9679,3.646,1.6056,1.628,4.5885,12.4301,3.1999,2.4926,12.7638,2.6975,2.4963,2.1804,15.5994,2.1883,4.9072,1.3432,18.1901,6.5073,9.1968,5.3555,11.686,8.4704,8.8462,8.0711,3.8914,1.7191,5.1796,,,,,,,,,,,,,,,68,,,,581
+4085,1.4996,1.6222,,-50y,Other,,,17.1998,4.562,2.3753,2.1369,1.2229,ppmi,,,M,,0.40165,4.2437,3.9702,0.78507,7.9453,1.2067,0.35137,2.8433,2.7559,42.5472,16.0613,205.5924,3.8036,4.4187,1.5183,1.8473,3.2139,6.6307,1.8888,2.7465,0.48143,6.206,10.5283,12.0905,7.0369,1.997,4.457,1.6739,15.9559,5.5496,3.4643,1.0078,2.4006,6.3405,11.9119,3.2622,3.8394,3.1851,1.2836,1.333,3.7444,9.196,2.9754,2.2168,10.7263,2.1475,2.1587,2.1844,12.5842,1.9539,3.6419,1.206,12.9038,5.1891,7.6006,3.3715,9.2538,6.1159,7.3013,6.6702,3.808,1.6774,4.428,,,PD,0.073218,PD,,PD,0.37618,3.6201,3.7636,0.79364,8.0662,1.4619,0.37667,2.9864,2.7444,42.8573,15.4502,210.9841,3.4483,4.7726,1.5763,1.7215,3.5205,6.8933,1.9412,2.953,0.52051,6.1256,10.8776,8.7635,7.1821,1.9128,4.068,1.6643,16.0766,4.7765,3.1937,1.0297,2.5616,7.6097,12.106,2.8849,3.8712,2.85,1.3227,1.302,3.684,9.523,2.5628,2.1524,9.7923,2.5585,1.9982,1.9951,12.6998,2.1114,3.5722,1.1306,13.2828,5.2307,7.153,4.1942,8.1525,6.5466,7.3652,7.1961,3.1186,1.6462,4.2431,,,,,,,,,,,,,,,48,,,,582
+40882,0.62228,1.7652,,70-79y,Other,,,17.4854,4.2072,2.3694,1.9514,0.76979,ppmi,,,M,,0.42953,4.144,3.7467,0.76975,8.3843,1.4098,0.36792,2.5804,2.7104,40.2692,13.7524,215.2123,3.0674,3.7181,1.4283,1.7851,3.194,6.6152,1.8851,2.9248,0.36275,5.4064,9.8575,8.5157,6.7399,2.2567,4.3741,1.6583,17.0402,5.6456,3.6505,0.98945,2.3254,6.1704,11.9058,2.6778,3.8903,3.2755,1.4196,1.4022,3.7898,8.6919,2.8838,1.8108,10.1522,1.7024,2.3851,1.8353,12.3078,1.4806,3.9,1.1111,13.5111,4.5468,7.7323,3.4814,11.1139,6.2037,7.9674,6.9564,3.7439,1.1368,4.481,,,,0.071771,Other,,GENPD,0.38629,3.0342,3.5206,0.77719,9.4455,1.6674,0.38336,2.6683,2.7683,41.2043,13.6893,216.0645,2.7928,3.7796,1.533,1.784,3.4741,6.7097,1.8923,3.0965,0.45143,5.5971,9.6925,8.0118,7.1526,2.1007,3.9862,1.5885,15.5727,4.9247,3.3591,1.1139,2.6239,7.193,12.3418,2.397,3.7419,2.9847,1.4693,1.34,3.4842,8.5744,2.6708,1.8367,9.4779,1.4465,2.0837,1.6193,12.8462,1.415,4.0124,1.0106,14.7393,4.8042,6.5155,3.781,9.4833,6.2493,7.6504,7.0818,3.6074,1.0553,4.1601,,,,,,,,,,,,,,,77,,,,583
+4090,1.1716,1.9446,,60-69y,Other,,,19.3223,5.0685,2.5796,2.2553,1.1262,ppmi,,,M,,0.45357,3.9875,4.5102,0.83846,10.1372,1.5485,0.39381,3.3711,2.9194,46.3087,17.46,232.1591,3.4589,4.6293,1.577,1.9513,3.2941,6.9224,1.9184,3.1304,0.4903,7.0755,10.0378,8.8706,8.2722,2.2369,4.262,1.6485,16.8793,6.6559,3.7271,1.1934,2.4582,6.6576,14.0711,4.0716,4.4703,3.0919,1.4182,1.5725,4.5402,10.6113,3.1217,2.3164,11.6671,2.2021,2.2125,2.0862,12.412,1.9795,4.1852,1.1193,14.7109,5.1668,9.443,3.7715,10.3884,7.9253,9.1025,6.9604,3.5774,1.4857,5.0024,,,,0.072253,CN,,HC,0.39019,3.6102,4.396,0.8335,10.2895,1.5697,0.40294,3.8573,2.8192,47.1306,16.8925,232.8419,3.4456,5.2605,1.653,1.9811,3.7486,7.2581,2.0009,3.3758,0.45754,7.0395,11.209,7.4981,8.6294,2.1366,4.2579,1.578,17.0777,5.3395,3.496,1.0364,2.4035,6.9517,14.6118,3.0763,4.3805,3.2252,1.5635,1.5717,4.2388,10.9918,2.8832,2.3508,10.0425,2.0068,2.2091,2.0126,11.9485,1.8538,4.2556,1.0363,13.9328,4.88,7.8584,4.5584,10.5562,7.9019,8.6574,7.5386,3.3295,1.4497,4.8365,,,,,,,,,,,,,,,69,,,,584
+4091,1.313,2.4307,,50-59y,Other,,,20.7941,5.472,2.8218,2.743,1.3391,ppmi,,,M,,0.45737,4.5435,4.1414,0.8649,9.713,1.6664,0.38479,3.4785,2.8229,53.0027,19.2879,248.2346,4.4088,4.8184,1.6714,1.8539,3.3634,8.3102,2.0823,3.1814,0.51066,7.3827,12.8937,16.4141,8.7494,2.5245,4.5818,1.8857,18.7734,7.1153,4.0089,1.0653,2.4013,6.9593,15.6894,3.9352,4.9313,3.3522,1.4759,1.4339,4.6959,11.3166,3.3879,2.4119,13.0085,2.4285,2.5971,2.6091,11.8449,2.0467,4.0268,1.1645,14.2646,5.294,9.6604,4.7168,12.4797,7.7068,8.3389,8.8049,3.6058,1.7142,4.9,,,,0.078985,CN,,HC,0.42442,4.0758,4.0511,0.85453,10.476,2.0858,0.392,3.4255,2.8591,51.4553,18.5506,249.8489,4.3189,5.2711,1.6502,2.0095,3.9206,8.5616,2.0691,3.3307,0.52295,7.8671,12.6057,17.5816,9.6647,2.4131,4.8491,1.9975,19.2372,5.646,4.1401,1.089,2.6496,7.9372,14.949,3.7074,4.9867,3.802,1.5782,1.4006,4.2001,11.5221,3.1045,2.4275,11.6175,2.1892,2.5245,2.1601,12.0519,2.0111,4.0665,1.1416,14.2544,5.3785,8.7276,4.7346,12.7101,8.0236,8.1206,7.9279,3.5034,1.6438,4.5988,,,,,,,,,,,,,,,57,,,,585
+40916,1.5954,1.7656,,60-69y,Other,,,18.0165,4.6531,2.3361,2.1804,1.2814,ppmi,,,F,,0.35877,3.7612,3.6627,0.68181,7.2015,1.3575,0.32217,2.8352,2.4602,41.92,14.341,182.2309,3.5982,3.8884,1.33,1.8032,3.2358,6.0985,1.6832,2.581,0.42337,5.1781,9.3158,10.7845,6.7858,2.3609,3.9477,1.4321,16.9187,4.953,3.2105,1.0105,2.3515,5.9212,11.8597,2.7275,3.5811,3.1737,1.4499,1.0535,3.6067,8.6126,2.7047,1.9869,10.9308,2.1712,1.9755,2.2711,11.0385,1.8489,3.8658,0.92972,13.2846,4.7859,8.4425,2.8554,8.5868,7.1088,7.1558,7.4749,4.3574,1.2924,4.1078,,,,0.062847,Other,,GENPD,0.31463,3.6007,3.5262,0.65484,8.5412,1.512,0.34066,2.8302,2.5987,42.965,13.8704,187.7439,2.9293,4.2325,1.399,1.6138,3.4234,6.8202,1.6857,2.792,0.51552,5.7309,10.1795,10.0687,7.3029,2.0871,4.2639,1.4803,16.5735,4.3017,3.2743,0.99027,2.283,6.333,12.1174,2.4608,3.6449,2.8131,1.464,1.0718,3.4821,9.3723,2.616,1.9983,8.1817,1.5088,1.9465,1.8279,11.3214,1.5508,3.655,0.9096,13.3723,4.5479,6.8951,4.0108,9.0727,7.2941,6.9909,7.3893,3.4783,1.1164,3.9673,,,,,,,,,,,,,,,62,,,,586
+4092,1.5925,1.9801,,60-69y,Other,,,20.7368,5.1537,3.0015,2.314,2.0337,ppmi,,,F,,0.42233,4.0997,4.1323,0.78244,9.6404,1.438,0.37459,2.0136,3.1605,49.6561,18.6725,255.7168,3.7711,3.5172,1.3825,1.7724,3.1016,6.592,1.9087,3.0968,0.54139,6.1268,10.2636,23.2335,6.1724,2.2981,4.1997,1.6008,16.6866,6.2338,3.7982,0.82364,2.1123,6.0465,13.8401,2.9181,3.8308,2.9432,1.3788,1.5489,3.8831,9.2233,2.8224,2.2211,10.0609,1.9822,2.2965,2.1208,11.2832,1.5876,3.9809,1.1643,12.8242,4.5234,8.334,3.0671,9.4314,6.7551,8.4274,6.2612,3.2472,1.2997,5.052,,,PD,0.072961,PD,,PD,0.38849,3.8235,4.1548,0.78309,10.5888,1.6784,0.37556,2.3782,3.4804,51.2224,18.7277,268.5256,3.9032,3.9136,1.3206,1.8656,3.8205,6.6392,1.9723,3.4556,0.61107,6.2973,10.6172,25.6896,7.1254,2.1636,3.8817,1.6496,16.7873,5.2858,3.773,0.88672,2.2993,6.532,13.9189,2.4768,4.1482,3.2242,1.5032,1.6067,3.6438,9.9247,2.5865,2.1692,9.7326,2.0872,2.1849,1.9799,11.4238,1.8135,4.1153,1.1348,14.5975,4.462,8.5235,3.8489,10.2175,8.1541,8.1885,6.2071,3.2581,1.3669,4.7967,,,,,,,,,,,,,,,68,,,,587
+4093,1.3756,1.4776,,70-79y,Other,,,19.841,5.2645,2.7012,2.3806,1.5111,ppmi,,,F,,0.44436,5.1098,4.3993,0.8902,12.0353,1.9647,0.43781,4.1633,3.0909,48.551,16.7667,262.3008,4.7776,5.5547,1.7874,2.1035,3.9238,8.1035,2.3645,3.483,0.42014,7.573,12.6933,15.1124,8.6678,2.8944,5.2367,2.2291,21.1188,7.9045,4.7034,1.3488,2.5716,7.4169,16.3046,4.1668,5.0608,3.6572,1.7172,1.7098,5.0841,12.9099,3.4654,2.6551,14.2953,2.7572,2.7821,2.6143,12.8688,2.2813,4.2666,1.3763,15.1532,5.4944,11.152,4.5742,11.4596,8.386,9.4887,8.8778,4.469,1.998,5.2008,,,PD,0.096414,PD,,PD,0.40872,4.5179,4.2759,0.86608,13.1524,2.2275,0.4454,4.1515,3.066,48.7629,16.7565,266.7862,4.7447,6.2948,1.6832,2.2483,4.0963,8.1768,2.2906,3.6021,0.46025,7.6964,13.5451,11.6286,9.1818,2.6721,5.0362,2.1214,21.0647,6.5564,4.4946,1.2005,3.2109,8.5754,17.3402,3.2042,4.7403,4.2648,1.8228,1.7005,4.385,12.7601,3.1051,2.6603,11.7656,2.6033,2.7659,2.379,12.9795,2.3068,4.2939,1.3452,14.2434,5.8847,9.4711,5.3838,13.0609,9.0288,9.2299,8.5132,4.1176,1.854,4.8393,,,,,,,,,,,,,,,77,,,,588
+4094,2.1658,2.1717,,50-59y,Other,,,18.7996,4.6731,2.8428,2.1876,2.0323,ppmi,,,F,,0.32377,3.5246,3.4863,0.58602,8.7429,1.2376,0.32537,2.6659,2.9716,46.7214,14.946,189.3491,3.601,3.8257,1.0429,1.7238,2.8389,6.098,1.6463,2.5767,1.1497,5.9773,9.0791,29.5997,6.621,1.9812,3.899,1.3579,14.9561,6.0083,3.1748,0.96712,2.3754,5.5965,11.601,3.1678,3.8185,2.7027,1.2821,1.2528,3.7765,9.2475,2.438,1.8676,8.7952,1.861,1.9919,1.9342,10.7279,1.552,3.3805,0.97408,13.0712,4.8319,7.7114,3.39,8.5832,6.1787,7.1776,5.8966,3.0296,1.1582,4.5357,,,PD,0.071338,PD,,PD,0.31487,3.1548,3.6882,0.67832,9.1939,1.4031,0.33878,2.434,3.2654,48.5798,14.4198,193.7392,3.4644,4.4372,1.1737,1.509,2.8506,6.2812,1.5184,2.9628,1.6273,6.2791,9.2989,29.5824,6.8649,1.8101,3.7563,1.2622,14.8518,5.3146,3.1342,0.88898,2.2245,6.1719,11.9323,2.7348,3.7961,2.3801,1.2266,1.2751,3.2021,8.8297,2.3163,2.0149,8.1571,1.7824,2.0161,1.8398,11.3324,1.6701,3.4736,0.94945,12.5235,4.5307,7.1527,4.087,9.4643,6.4651,6.9362,6.9859,2.6983,1.3411,4.4393,,,,,,,,,,,,,,,51,,,,589
+4096,0.68193,1.8596,,70-79y,Other,,,17.1588,4.9218,2.4814,2.1886,0.82965,ppmi,,,F,,0.4124,4.8735,4.0104,0.83865,9.8856,1.6958,0.37979,3.1875,2.6352,52.3553,15.8284,215.3403,4.0058,4.1684,1.6011,1.8888,3.7718,7.5241,2.1905,3.0929,0.38206,6.929,10.9434,7.1621,7.4963,2.4937,4.7285,1.8941,18.6762,6.7155,4.1736,0.99474,2.4393,6.9316,13.4486,3.4944,4.6094,3.3477,1.4759,1.2485,3.6479,10.1897,3.1314,2.0759,11.2608,2.4097,2.5143,2.1977,12.1016,1.9803,3.7364,1.1695,14.4485,5.2691,8.9311,4.069,10.8084,6.6776,8.2415,6.853,3.7161,1.6659,4.3949,,,PD,0.066364,PD,,PD,0.35884,4.3648,3.9732,0.84727,9.5464,1.844,0.37163,3.202,2.4685,50.9917,15.4342,219.5491,3.5854,4.8975,1.6764,2.0647,3.8952,7.2,2.2524,3.3188,0.50022,6.99,11.0563,4.8348,8.1024,2.2961,4.5675,1.9063,18.4132,5.6031,4.0647,1.0157,2.3539,8.3839,14.0018,3.1362,4.3671,3.6066,1.5946,1.2853,3.7216,10.2259,2.8897,2.0752,9.7178,2.248,2.2965,1.9213,11.987,1.8321,3.7061,1.1075,13.8624,5.0152,7.6495,4.6861,9.1291,6.2833,8.0306,7.6563,3.7705,1.4262,4.2403,,,,,,,,,,,,,,,77,,,,590
+4098,1.0892,2.3101,,50-59y,Other,,,22.4251,5.7724,3.1048,2.4992,1.2721,ppmi,,,F,,0.48608,5.1376,4.7127,1.0292,10.5548,1.83,0.43668,3.1633,3.3017,53.5528,19.9551,261.3462,4.9461,5.9732,2.0402,2.3938,3.886,8.2725,2.4932,3.7302,0.36855,6.8674,12.4621,9.731,7.9675,3.0032,5.2861,2.1311,20.3626,6.7337,4.8382,1.2282,2.9342,7.7009,15.5937,3.5599,4.4439,3.8232,1.929,1.6152,4.7267,11.8617,3.764,2.7141,12.0857,2.9328,3.0295,2.7202,12.0959,2.5134,4.4807,1.2874,15.0718,5.7382,10.3634,3.7632,12.8067,9.3383,9.0934,8.9212,4.2694,1.8339,5.1734,,,PD,0.080974,PD,,PD,0.43976,4.008,4.5563,1.0117,11.7045,1.9679,0.4439,3.3559,3.3027,55.4412,19.9377,262.6682,4.5367,5.6743,1.9965,2.2173,3.9217,8.9138,2.4822,3.9972,0.46668,7.482,13.2171,7.8745,9.2419,2.5025,4.9516,2.119,21.0586,5.837,4.5567,1.402,3.1916,8.6773,15.674,3.0137,4.9708,3.625,1.8731,1.6225,4.4819,12.4853,3.6334,2.5467,9.2816,2.8295,2.7072,2.461,12.5864,2.6388,4.2466,1.3512,14.7082,5.557,9.1861,4.9833,11.648,9.0729,9.0212,9.1904,4.2338,1.7741,4.9948,,,,,,,,,,,,,,,50,,,,591
+4099,1.0294,1.8474,,50-59y,Other,,,19.0638,4.5058,2.3783,2.043,1.0332,ppmi,,,M,,0.44033,4.2468,4.062,0.88854,10.3092,1.604,0.37608,3.5808,2.9636,42.5915,15.4447,243.5344,3.9529,4.8409,1.6857,2.0063,3.4304,6.6146,2.021,3.2252,0.31364,6.8531,10.4613,9.0746,7.0875,2.3393,4.7231,1.7887,18.8949,7.1103,4.0296,1.1366,2.9373,6.126,13.8852,3.7509,4.1371,3.3788,1.5218,1.5228,4.6722,11.5773,2.9661,2.1732,10.7778,2.3967,2.4712,2.1669,12.2996,1.9818,4.368,1.1089,14.2908,5.1044,9.3421,4.6296,12.3506,7.1862,8.6941,7.0848,3.8851,1.5507,4.8232,,,PD,0.066383,PD,,PD,0.40855,3.656,4.0414,0.86075,11.5361,1.9362,0.38727,3.5897,2.8961,42.2339,15.8442,244.6565,4.0721,5.0228,1.651,2.051,3.9913,7.019,2.1291,3.4423,0.3465,6.683,10.7146,7.7086,7.8661,2.5423,4.9078,1.8698,19.6972,5.7097,3.9369,1.1375,2.5512,7.1556,13.774,3.0222,4.0833,3.4822,1.7264,1.5366,4.501,11.4232,2.8924,2.2819,10.7885,2.1079,2.3912,2.1225,11.5656,1.9807,4.3783,1.0907,14.0859,4.7853,8.5493,4.7334,11.134,7.7399,8.4238,7.2747,4.0413,1.498,4.6459,,,,,,,,,,,,,,,59,,,,592
+4100,1.6463,2.257,,60-69y,Other,,,19.9327,5.6439,2.7522,2.3347,1.4732,ppmi,,,F,,0.47557,5.6075,4.7232,0.92392,10.3471,1.971,0.43699,3.6708,2.9762,48.8087,18.3488,291.5326,4.7158,5.1701,1.8892,2.1937,4.4739,8.3986,2.5605,3.3315,0.48631,7.0039,13.1284,10.2771,7.922,2.8884,5.5036,2.3518,20.6806,6.8107,4.7199,1.2017,3.0166,8.9948,16.095,3.7132,4.427,3.7657,1.7343,1.7031,5.1988,11.6576,3.6406,2.6784,11.6296,3.0243,2.7705,2.5155,12.7864,2.2588,4.9206,1.4325,19.063,6.387,10.6276,4.3678,12.3874,8.08,9.0689,8.6997,4.4167,1.8295,5.203,,,PD,0.081714,PD,,PD,0.42971,4.6057,4.7532,0.95551,11.6387,2.1595,0.43617,3.5917,3.0075,51.9369,17.9681,299.4634,4.6798,5.7842,1.9643,2.2091,4.7952,9.0582,2.4889,3.7424,0.61829,7.357,14.0032,9.0711,8.7396,2.7549,5.341,2.3744,23.2798,6.0645,4.4267,1.2449,3.1801,10.1538,16.4462,3.376,4.768,3.8748,1.8836,1.7538,4.8913,12.3485,3.5408,2.8864,10.7518,2.4582,2.4758,2.3759,13.1638,2.2322,4.8509,1.3611,17.1159,6.0413,9.6419,5.4429,11.5494,8.6811,8.8288,9.0485,4.2498,1.7285,5.0828,,,,,,,,,,,,,,,60,,,,593
+4101,1.0949,1.6972,,50-59y,Other,,,17.383,5.3879,2.7399,2.6483,1.1282,ppmi,,,M,,0.41347,4.0287,3.7814,0.7835,10.1123,1.5128,0.38252,2.3075,2.7435,50.1022,15.3643,196.2224,3.8056,3.9286,1.4875,1.831,3.1702,7.4205,1.7509,2.959,0.40064,5.9844,10.7355,13.2252,7.0799,2.162,4.424,1.5886,16.1366,5.6979,3.6497,1.2958,2.9425,6.2803,13.5794,2.9048,4.1877,3.293,1.3282,1.2479,4.568,10.7635,3.0453,2.107,12.4295,2.55,2.3494,2.0677,12.2206,2.0755,4.1611,1.1052,14.043,5.3863,10.7507,3.0603,11.2516,7.671,7.286,7.5274,3.3017,1.5478,3.9823,,,,0.073678,CN,,HC,0.38765,3.5123,3.7827,0.81002,10.9981,1.7919,0.39606,2.74,2.7905,50.3335,14.8383,202.3121,3.9868,4.4111,1.5642,1.9811,3.322,7.7366,1.8374,3.1952,0.42994,6.6595,11.4481,12.1601,7.9902,2.2418,4.5701,1.5661,16.8351,5.3284,3.7046,1.4661,2.8876,7.0103,14.1887,2.4476,4.3589,3.6535,1.5414,1.2406,4.3107,10.9942,2.8027,2.1953,10.8283,2.0565,2.3084,1.9816,10.3582,1.7106,4.1772,1.04,13.9815,4.9574,8.6295,4.1611,10.9378,7.2233,7.045,8.1446,3.6355,1.3594,3.9396,,,,,,,,,,,,,,,58,,,,594
+4102,1.7893,1.7777,,60-69y,Other,,,20.6787,5.4545,2.6247,2.3921,1.4735,ppmi,,,F,,0.47032,5.0206,4.4934,0.8826,11.239,1.8033,0.40162,3.1252,3.1098,49.1507,16.9051,264.555,4.4255,4.7659,1.7381,1.9774,3.7541,7.6208,2.0479,3.3143,0.59944,7.6068,12.1902,13.6128,7.4605,2.6347,4.8247,1.82,20.0824,7.0835,4.1384,1.723,3.3061,7.7424,14.7987,4.5581,4.5826,3.2802,1.46,1.7,5.0871,12.6914,3.2368,2.5971,12.5036,2.7656,2.5064,2.5673,13.2637,2.3318,4.6756,1.2631,15.4007,5.9078,9.99,3.8603,13.4337,8.5012,8.6761,8.0797,3.7754,1.8482,5.2003,,,PD,0.079439,PD,,PD,0.44329,4.7985,4.2669,0.89466,12.4919,1.9922,0.42863,3.4851,3.0626,50.2103,16.8436,268.5933,4.3848,5.326,1.7267,2.1288,3.7369,8.0458,2.1381,3.5855,0.64575,7.7238,12.9577,9.7613,8.4342,2.6634,4.7696,1.8523,19.0419,5.7161,4.051,1.345,3.2718,7.9342,15.8672,2.988,5.0672,4.0192,1.6759,1.6086,4.7918,13.3775,2.9858,2.5887,11.8705,2.4789,2.6017,2.4401,13.2184,2.2286,4.607,1.233,14.1063,6.059,10.0434,4.6859,12.5876,8.0863,8.6146,8.2322,3.7263,1.7116,5.0067,,,,,,,,,,,,,,,67,,,,595
+4103,1.2625,1.7136,,60-69y,Other,,,20.5115,4.8492,2.7897,2.1716,1.1398,ppmi,,,M,,0.52681,5.4731,4.4455,0.93326,11.6355,1.7719,0.44761,2.8824,3.3923,47.245,17.1741,275.5847,4.5931,4.5917,1.9211,1.9288,3.7272,7.9695,2.1866,3.7089,0.48153,6.3217,12.6914,12.4987,7.3772,2.5562,5.6434,2.0934,21.443,7.266,4.2859,1.1919,2.6166,7.9839,17.3612,3.0249,4.0844,3.3252,1.5321,1.6328,4.6781,10.4892,3.6455,2.7666,13.0979,2.8134,2.6771,2.7254,13.233,2.2885,4.6976,1.3358,16.4589,6.1261,11.1473,3.5675,12.3206,9.4095,9.7701,8.6354,4.0069,1.927,5.4674,,,PD,0.08212,PD,,PD,0.4418,4.8232,4.4233,0.94604,12.8265,1.9103,0.45728,3.2314,3.5942,49.2698,18.0723,281.1839,4.3987,4.9509,1.9493,2.1782,3.6492,8.3934,2.2066,3.9439,0.6278,7.3013,12.8668,10.3644,8.5776,2.3527,4.8597,1.8977,20.6429,6.0772,4.0382,1.172,2.6466,8.2381,17.1007,2.7071,4.6447,3.7925,1.6041,1.6367,4.3491,11.4876,3.4266,2.5917,11.7756,2.4927,2.4605,2.3924,13.949,2.0784,4.4487,1.2561,15.5292,6.7886,9.6843,4.1447,12.6053,8.6461,9.225,8.5582,3.583,1.6948,5.0469,,,,,,,,,,,,,,,69,,,,596
+4104,1.4278,1.5149,,50-59y,Other,,,18.6282,5.093,2.5791,2.3617,1.2584,ppmi,,,M,,0.46107,5.0923,4.5685,0.8054,12.2606,1.8803,0.42214,3.434,3.1244,47.8132,16.7469,242.7331,4.6694,5.7025,1.6165,2.056,3.9132,7.8619,2.2874,3.0907,0.40408,7.954,12.3802,16.3959,8.539,2.6657,4.8944,2.0705,20.9814,8.4102,4.558,1.2616,2.7121,7.6407,16.141,4.2824,4.9185,3.2779,1.583,1.3697,4.8943,12.4918,3.1233,2.5942,13.0678,3.05,2.6161,2.6134,14.8071,3.0554,4.114,1.3046,15.6591,6.0166,10.4684,4.5905,12.3556,9.3661,8.1129,8.6777,4.2068,1.995,4.4327,,,PD,0.073812,PD,,PD,0.41766,4.3605,4.4235,0.86136,12.7459,1.9889,0.41972,3.8699,3.1722,46.6202,16.6292,247.361,4.7153,6.4043,1.6791,2.2431,4.1002,7.7644,2.2519,3.3196,0.52408,8.0831,13.0107,10.5853,9.0716,2.6003,4.9797,2.1305,20.6997,6.1792,4.1982,1.1048,2.4551,8.7331,17.2548,3.1884,4.9803,3.7792,1.8983,1.3484,4.4204,12.4846,2.9223,2.6132,13.2635,3.1709,2.5191,2.2944,14.0491,2.5986,3.9823,1.2752,15.5769,6.0441,9.2278,5.2867,12.1249,8.8921,8.1712,8.3795,4.0411,1.8738,4.3239,,,,,,,,,,,,,,,59,,,,597
+4105,1.2835,1.8827,,60-69y,Other,,,16.7765,4.7423,2.5398,2.3152,1.5229,ppmi,,,M,,0.48258,4.8962,4.3409,0.95495,11.6927,1.8153,0.41747,3.6205,3.1785,45.7992,15.5323,242.1517,4.4177,5.4959,1.8004,1.9432,3.6326,8.2055,2.1575,3.5214,0.54168,7.9962,12.3891,17.5355,8.9736,2.631,4.9162,2.0432,20.1465,8.0118,4.307,1.532,3.399,7.7689,16.0851,4.5098,5.0787,3.7166,1.5271,1.3782,4.8233,11.168,3.514,2.5306,13.4265,2.9916,2.7405,2.5947,14.3017,2.5301,4.5707,1.2567,16.3009,6.6732,11.5371,4.9987,13.0807,8.8387,8.5308,8.237,4.1146,2.009,4.4925,,,,0.075731,CN,,HC,0.42672,4.6491,4.3722,0.95789,14.1218,1.9545,0.42477,3.9925,3.0918,47.1554,14.2794,240.7271,4.3704,5.3372,1.8641,2.2851,3.881,8.7168,2.1681,3.5466,0.5006,8.1068,12.88,12.9365,9.7674,2.4144,5.449,1.8597,19.3671,6.4022,4.1824,1.402,2.7804,7.9625,16.7115,3.7348,5.0006,3.7826,1.7244,1.3818,4.3685,10.8321,3.1774,2.5386,11.5698,2.5418,2.6104,2.3661,13.0681,2.2593,4.4865,1.2097,16.3795,6.0389,9.416,5.5736,12.2878,9.6697,8.3273,8.7492,3.9481,1.7313,4.3265,,,,,,,,,,,,,,,66,,,,598
+4106,1.3738,2.0268,,60-69y,Other,,,20.0869,4.4427,2.312,1.8907,1.2982,ppmi,,,M,,0.49933,4.2864,5.0729,0.85648,10.8916,1.5865,0.39943,3.3734,3.7659,42.1592,16.9667,280.5766,4.4987,5.5491,1.6497,2.3033,4.03,7.4888,2.0549,3.2378,0.62237,7.7507,11.6482,21.1391,7.466,2.4532,4.4842,1.7679,19.7057,7.7346,4.0073,1.3306,2.8319,7.2092,14.2491,4.5181,4.6726,3.7668,1.5848,1.8215,4.8564,12.1955,3.1916,2.7229,13.6997,2.7083,2.6147,2.6229,13.9143,2.3969,5.0459,1.1902,15.9804,5.7035,9.0518,4.1504,12.0473,7.4677,9.7621,7.4171,3.9677,2.0117,5.3988,,,,0.082528,CN,,HC,0.44517,3.575,4.5049,0.85101,12.3221,1.9008,0.39687,3.5825,3.8157,44.5581,15.9581,286.2928,4.2273,6.107,1.6179,2.0723,4.1928,7.5057,2.0668,3.4545,0.62409,7.8293,10.9635,15.9689,8.4958,2.3666,4.1317,1.737,19.3327,6.8522,3.8832,1.326,2.8552,8.1203,14.4601,3.8248,4.7783,3.2093,1.6262,1.7812,4.4202,12.4296,2.9718,2.6187,12.3257,2.3414,2.264,2.2081,14.1171,2.1488,4.7871,1.1384,15.9951,5.4602,9.4889,5.2943,11.7418,8.3933,9.549,7.9121,3.7731,1.6545,5.1039,,,,,,,,,,,,,,,67,,,,599
+4107,2.1139,2.0984,,70-79y,Other,,,16.508,4.4779,2.2754,2.1626,2.0783,ppmi,,,M,,0.32099,4.0014,4.1465,0.72066,8.9959,1.3594,0.33356,2.4944,2.7421,43.1906,14.4485,229.6837,3.9819,4.4705,1.392,1.8684,3.386,6.112,1.8972,2.9098,0.80397,6.3696,9.6281,21.9216,6.9915,2.2309,3.8614,1.6144,17.5723,5.9128,3.5977,0.95017,2.5286,6.4155,12.6919,3.32,4.1261,3.0796,1.4958,1.2235,4.5428,10.9505,2.9552,2.4104,10.8033,2.0583,2.272,2.2979,11.7474,1.9519,3.3367,1.1663,12.9705,4.9159,8.4235,3.0319,10.3615,7.2808,7.0877,6.9535,3.4427,1.4608,4.2429,,,PD,0.083951,PD,,PD,0.28704,3.7911,3.8627,0.72598,10.5006,1.4841,0.33746,2.818,2.7904,43.6754,14.8167,228.9751,3.8916,5.0315,1.4318,1.7199,3.5755,6.8971,1.8984,3.1717,0.97058,6.4418,10.3891,19.1081,7.6735,1.9791,4.2762,1.5466,16.723,5.5707,3.4222,1.0199,2.2947,7.1601,12.6458,2.8334,4.327,3.116,1.3624,1.2024,4.1726,11.3508,2.8296,2.4745,9.0873,1.9449,2.1729,2.2781,11.0602,1.7246,3.1423,1.1209,13.4066,4.5573,7.6516,4.4365,10.2911,6.5246,6.9677,7.1211,3.0172,1.5352,4.002,,,,,,,,,,,,,,,72,,,,600
+4108,1.2466,1.9463,,70-79y,Other,,,19.3251,5.2799,2.8107,2.3328,1.2659,ppmi,,,M,,0.4689,4.8461,4.8183,0.91582,11.0148,1.5842,0.41532,2.7711,2.753,48.2965,17.0252,278.1796,4.1017,4.4728,1.7889,2.0956,3.654,7.9265,2.0512,3.3181,0.38606,7.4339,11.5324,11.4357,7.747,2.3648,5.6677,1.8325,18.376,7.9409,4.0272,1.3425,2.5927,7.186,14.8648,3.9404,4.7699,3.1923,1.5835,1.5424,5.1584,12.4907,3.4146,2.6342,14.232,2.8702,2.6099,2.4461,12.7693,2.2398,4.6083,1.2249,16.123,5.2613,10.256,4.3262,13.6129,7.5213,8.4366,7.9547,3.8596,1.8301,4.9987,,,PD,0.079953,PD,,PD,0.4331,4.3177,4.7555,0.90504,12.0925,1.9807,0.42795,3.0909,3.0369,48.4666,17.1447,278.6873,4.2826,5.3668,1.7905,2.3899,4.2334,7.7231,2.0143,3.4783,0.39582,7.4298,12.2915,11.4276,8.171,2.4828,5.466,1.7249,18.6711,6.4996,4.1789,1.1814,2.4707,7.8572,14.9737,3.3795,4.5158,3.7431,1.5711,1.543,4.7806,12.542,3.0834,2.4828,13.0077,2.4627,2.4554,2.0677,12.1895,2.1414,4.5617,1.2853,15.3782,5.4372,9.7185,5.0743,12.4735,8.4854,8.5514,8.5128,3.7462,1.5745,4.7457,,,,,,,,,,,,,,,71,,,,601
+4109,1.7256,2.061,,60-69y,Other,,,16.8358,5.0937,2.6476,2.2311,1.4356,ppmi,,,M,,0.40561,4.7716,4.1573,0.8325,10.0477,1.6805,0.40051,3.0178,2.4562,43.8048,14.8136,232.2895,4.4659,5.0751,1.7438,1.6692,3.5965,7.4989,2.0433,3.1813,0.48424,6.8646,12.1286,14.5943,7.3248,2.4458,5.2334,1.7391,19.6813,6.3126,3.9716,1.1535,2.8931,6.9931,14.0955,3.4278,4.1693,3.3091,1.3702,1.2878,4.5455,11.413,3.1954,2.4915,11.9654,2.4656,2.4594,2.3992,13.7677,2.0851,4.3289,1.1472,14.6403,6.0533,9.552,3.566,11.0161,7.2662,7.6334,7.9693,3.3855,1.8014,4.4355,,,PD,0.06927,PD,,PD,0.36712,4.3029,4.294,0.86463,10.8722,1.7458,0.41847,3.1673,2.5653,44.7059,14.2715,234.8108,4.2859,5.2694,1.8092,1.9285,3.6585,7.4191,1.9914,3.3691,0.5798,6.878,11.6862,15.121,8.0524,2.3413,4.7811,1.6718,18.9625,5.4125,3.6995,1.0761,2.7132,8.063,14.0388,2.9343,4.2465,3.8529,1.685,1.2262,4.1379,12.1022,2.9599,2.4727,10.6972,2.1878,2.5396,2.1244,13.2458,1.8276,4.3504,1.1126,14.8618,5.6413,8.7611,4.1771,11.2595,7.2128,7.3699,7.9433,3.7678,1.5087,4.2164,,,,,,,,,,,,,,,65,,,,602
+4110,1.6212,2.1651,,60-69y,Other,,,21.4125,5.1944,3.1147,2.4876,1.6409,ppmi,,,M,,0.43734,4.9131,4.4419,0.87935,9.5336,1.4923,0.4233,3.3889,2.7669,51.4516,19.1663,266.6236,5.1543,4.5605,1.7463,2.232,3.6942,8.1286,2.1371,3.2695,0.7303,7.2114,12.3142,15.7511,7.4631,2.3572,5.0497,2.0292,18.1353,6.3754,4.0092,1.2573,2.8438,7.5534,14.5674,4.4958,4.6293,3.4893,1.6259,1.5656,4.3559,10.4625,3.2488,2.8828,12.7798,2.9823,2.6322,2.9484,11.4987,2.3977,4.4653,1.3699,13.2303,5.5876,9.2986,4.1527,11.6673,7.3507,8.2833,7.8235,4.0416,2.2986,5.0132,,,PD,0.091682,PD,,PD,0.36326,4.6796,4.3942,0.86109,10.2155,1.8104,0.43182,3.6793,2.7515,50.3592,17.9799,272.5089,4.7544,5.2728,1.6883,2.2032,3.974,8.2274,2.0989,3.2518,0.85375,7.2361,12.6884,18.7034,8.6159,2.3802,5.1085,1.9292,18.0012,5.0727,3.9487,1.1941,2.7019,8.4335,15.4742,3.7467,4.4555,3.7596,1.7224,1.6127,3.9285,10.758,2.8042,2.8189,11.2351,2.5011,2.5321,2.6481,12.5667,2.0533,4.3754,1.3346,14.0719,5.6662,8.1764,4.808,10.7658,7.7515,7.8488,8.2906,3.8892,1.6993,4.8809,,,,,,,,,,,,,,,67,,,,603
+4111,2.1769,2.0903,,70-79y,Other,,,16.9672,4.5769,2.0973,2.1025,1.8477,ppmi,,,M,,0.45461,4.7782,4.3939,0.91015,11.13,1.7379,0.41952,2.6891,3.4462,40.5705,14.5607,238.9056,4.0122,4.4913,1.7122,2.0972,3.7158,7.6959,2.2171,3.3017,0.78555,7.9447,12.3414,23.5112,8.146,2.5533,5.1187,1.9169,19.5953,7.3852,4.2968,1.1882,2.8088,7.177,16.3684,3.6999,4.94,3.5649,1.469,1.3799,5.0482,12.3865,3.3144,2.5759,10.3174,2.5661,2.4153,2.6789,11.4498,2.2132,4.1878,1.3217,15.1084,5.9139,10.0362,4.1156,12.0455,8.7266,7.578,7.9643,4.0809,1.749,4.5921,,,PD,0.086008,PD,,PD,0.38153,4.5249,4.2866,0.91626,11.858,2.0498,0.41865,3.2538,3.4123,38.6641,14.2181,238.3503,4.0135,5.4125,1.8316,2.1424,3.8523,7.8525,2.1192,3.6204,0.83493,7.3834,13.154,19.3575,8.7238,2.5035,4.9546,1.8452,18.848,5.9064,4.0218,1.0739,2.669,8.179,16.5258,3.3899,4.5628,3.5184,1.6172,1.442,4.6384,12.1397,3.0432,2.5385,9.3818,2.3094,2.3991,2.2808,11.3399,2.0974,4.0138,1.2051,14.2366,5.8165,8.6774,5.1549,11.9225,8.0344,8.0791,8.4918,3.9321,1.5999,4.6039,,,,,,,,,,,,,,,71,,,,604
+4112,1.3745,2.7433,,70-79y,Other,,,20.2887,5.6622,3.2056,2.6349,1.5389,ppmi,,,M,,0.45831,5.6254,4.6646,0.93776,12.6653,1.8222,0.43187,3.7833,3.2127,56.9222,18.878,256.6576,4.5338,5.2186,1.8638,2.2398,4.2708,8.8001,2.3633,3.6903,0.43166,8.9651,13.1669,17.8111,9.3009,2.7226,5.375,2.2728,20.5432,7.9989,4.3552,1.2119,2.7665,7.8404,16.88,4.9479,5.5527,3.5019,1.6167,1.5271,5.4064,12.1757,3.6776,2.4281,14.0416,2.9131,2.6339,2.4526,13.0024,2.4735,4.2599,1.3632,14.5961,5.6891,11.9629,4.1597,13.5833,9.5768,9.179,8.8706,4.0173,1.9003,5.1763,,,PD,0.080298,PD,,PD,0.42153,4.5696,4.6682,0.97438,11.7816,2.2442,0.43747,3.8777,3.3678,59.1386,18.8195,261.2964,4.7158,6.3982,2.001,2.189,4.7031,9.6762,2.2961,3.8613,0.50628,9.2201,14.1565,17.406,10.5015,2.6617,5.347,2.1565,19.8144,7.0186,4.3218,1.2989,3.2081,9.3672,16.5694,3.5308,5.5412,3.5609,1.6905,1.5668,4.6433,12.5834,3.5998,2.6959,13.1377,2.6272,2.7972,2.5141,15.4553,2.1572,4.235,1.2678,18.4883,6.405,9.647,5.4061,11.4326,8.7148,9.0364,8.937,3.632,1.9608,4.9488,,,,,,,,,,,,,,,74,,,,605
+4113,0.6971,1.3129,,50-59y,Other,,,16.8998,4.6355,2.5835,2.2647,0.94615,ppmi,,,M,,0.47411,4.9928,4.4125,0.96211,10.7182,1.7874,0.43903,3.7217,3.2406,49.7894,14.3856,239.4942,4.533,5.7453,1.7886,2.1148,3.6217,8.7174,2.3225,3.3529,0.38438,8.4447,13.5784,5.828,8.8837,2.6546,5.3843,2.1212,20.8396,7.0768,4.5269,1.5686,3.0308,7.1151,16.5069,4.0429,5.7199,3.547,1.7868,1.4181,5.1321,13.0568,3.4884,2.4881,13.2797,2.8689,2.9255,2.3426,14.1381,2.361,4.5841,1.2597,15.6474,5.6757,11.2318,4.0958,12.8267,8.1789,9.0563,8.294,4.6734,2.0162,4.504,,,PD,0.068963,PD,,PD,0.45149,4.4761,4.3102,0.95373,13.2014,2.1439,0.44399,3.7373,3.3572,47.4359,14.1279,240.2862,4.0947,5.8357,1.8043,2.0107,3.8313,9.0241,2.3089,3.5822,0.42835,7.6553,14.7254,5.2932,8.474,2.6248,5.0876,1.9736,20.5406,6.5726,4.4317,1.1441,2.7647,8.6485,18.3574,3.0196,5.0694,3.7876,1.7758,1.3777,4.5173,13.3819,3.047,2.3816,12.6886,2.3738,2.7668,1.9947,13.9073,2.1928,4.551,1.2381,14.8433,5.8199,10.2074,5.0529,12.6171,9.2958,8.8697,8.4221,4.0316,1.4704,4.2222,,,,,,,,,,,,,,,53,,,,606
+4114,1.343,2.3877,,-50y,Other,,,17.2485,4.861,2.4968,2.3284,1.1278,ppmi,,,F,,0.39815,4.294,4.1019,0.79288,9.5401,1.6391,0.36123,3.3302,2.683,47.5934,15.2566,234.211,4.0335,4.5048,1.5106,1.8405,3.5835,6.9237,2.1755,3.0553,0.75248,7.2282,10.8522,17.4264,7.4047,2.5247,4.7776,1.6126,18.162,6.8469,4.0397,1.0851,2.3255,6.2118,14.0258,4.1201,4.2903,2.8277,1.5951,1.42,4.2155,10.2198,2.939,2.2299,11.4747,2.1897,2.4159,2.1689,11.4565,1.989,4.0953,1.1613,14.4844,4.6291,8.1801,3.6097,10.8425,7.4794,7.8403,7.7292,3.7524,1.6149,4.3547,,,PD,0.066003,PD,,PD,0.34613,3.9243,4.2145,0.77249,10.705,1.6789,0.35728,3.5924,2.7449,48.273,15.3087,244.7994,3.9479,5.0787,1.4944,2.126,3.7974,7.7912,2.009,3.2468,0.79941,7.7483,11.4846,14.9458,8.037,2.2534,4.3937,1.6574,18.3127,5.9784,3.7533,0.89149,2.0656,6.6338,14.0084,3.1234,4.5672,3.5465,1.6061,1.3996,3.9395,10.5682,2.6125,2.2476,10.2264,2.2259,2.2913,1.9404,12.2555,2.1116,4.0003,1.1595,14.0946,4.6668,8.4403,4.5137,10.2707,7.3867,7.961,7.4283,3.3944,1.5494,4.2214,,,,,,,,,,,,,,,34,,,,607
+4115,1.8263,2.0633,,60-69y,Other,,,19.2317,5.5146,2.676,2.224,1.6083,ppmi,,,M,,0.3889,4.2713,4.0709,0.84993,9.3503,1.4105,0.39121,3.3134,2.7957,48.8742,17.0542,219.0578,3.7367,4.3225,1.5287,1.7528,2.9822,7.6122,1.9471,3.2792,0.71753,7.1064,11.8211,17.1045,7.3516,2.1567,4.6519,1.64,15.79,5.9094,3.5765,1.0417,2.4428,6.2842,13.9189,3.7476,4.4159,3.1174,1.2903,1.3758,4.7535,10.9414,3.2245,2.2781,11.2654,2.3887,2.2053,2.4091,12.3778,2.2503,3.8696,1.2314,12.6597,4.9602,8.7324,3.3874,12.4677,7.6851,8.2422,7.3812,3.4841,1.7704,4.8058,,,PD,0.078369,PD,,PD,0.33541,3.7408,3.8529,0.83952,10.3479,1.4786,0.38614,3.8191,2.8979,48.6547,16.4517,222.3029,3.482,5.1389,1.6689,1.8569,3.047,7.8655,1.8449,3.5033,0.70529,6.6124,12.5597,13.4125,8.6272,1.9616,4.1814,1.5235,16.7187,4.6742,3.3075,0.85603,2.3063,7.1705,15.2615,3.0417,4.2861,3.4641,1.4368,1.4204,4.3179,11.2906,3.0038,2.2738,9.6723,1.9967,2.1248,2.0508,11.5117,1.8301,3.8483,1.089,12.6338,5.1473,8.8813,4.4218,11.3044,7.6764,7.9687,7.6559,3.6233,1.4512,4.6564,,,,,,,,,,,,,,,67,,,,608
+4116,1.2625,1.6909,,60-69y,Other,,,21.1296,5.3655,3.0155,2.5297,1.43,ppmi,,,M,,0.50934,4.9407,4.7735,0.88602,10.9906,1.5782,0.43686,3.2696,2.9213,53.1481,16.8368,259.7593,4.8517,4.5594,1.8016,2.1638,4.1925,7.8455,2.4788,3.6756,0.48261,6.765,12.5308,9.9126,7.9559,2.4155,5.1099,2.1481,17.5786,6.4529,4.4306,1.44,2.653,7.179,15.7829,3.9565,4.8497,3.1314,1.4993,1.5587,5.6557,12.3929,3.5951,2.655,13.454,2.9235,2.6301,2.6838,12.3553,2.3327,4.3419,1.4709,16.0283,5.2498,11.2739,3.8405,12.2396,8.3506,8.4968,8.2767,3.7462,1.9374,5.1416,,,PD,0.08822,PD,,PD,0.47201,4.209,4.392,0.9049,12.7573,1.8419,0.44796,3.3455,2.9182,52.9354,16.7902,262.2729,4.1501,5.1716,1.7826,1.9383,4.2608,7.9965,2.5045,3.7531,0.61614,8.6624,12.3422,8.6852,8.3834,2.262,5.0344,2.2388,17.8606,6.9834,4.317,1.3849,2.7946,8.7756,15.5703,3.5042,4.9673,3.0287,1.5297,1.5513,5.0538,12.3134,3.2136,2.5738,11.4305,2.7397,2.5462,2.2629,12.585,2.5641,4.2583,1.369,15.9514,5.392,9.5194,4.7734,11.9114,7.9949,8.3035,7.6933,3.3376,1.8305,5.0142,,,,,,,,,,,,,,,67,,,,609
+4117,1.1778,1.9466,,60-69y,Other,,,20.8272,5.2958,2.732,2.4997,1.3644,ppmi,,,M,,0.44437,4.5866,4.5954,0.93707,11.3299,1.6229,0.39826,3.628,2.9722,51.5934,17.5792,240.1588,4.7896,4.9614,1.8131,2.1435,3.6327,8.7834,2.2667,3.4042,0.38152,7.5358,13.2655,14.4727,8.6998,2.5382,4.6079,1.8229,19.0602,8.2696,4.1995,1.1361,2.6123,7.0982,15.6905,3.9053,5.0952,3.4438,1.7182,1.5452,4.5676,11.3293,3.4748,2.5896,12.3503,2.6557,2.4538,2.6945,12.7273,2.0958,4.1473,1.311,13.8146,5.074,9.4853,4.286,12.1102,8.0362,8.7079,8.129,4.0616,1.9668,4.8453,,,,0.083327,CN,,HC,0.43807,4.4714,4.5083,0.92342,13.9537,1.9506,0.41862,3.61,3.194,51.7856,17.479,245.0356,4.9093,5.0813,1.7841,2.3262,4.054,8.7976,2.1229,3.6129,0.43744,7.908,13.1294,12.6038,9.1127,2.5041,4.6689,1.8982,18.4117,6.1277,4.0795,0.99874,2.4103,7.9718,15.8663,3.3023,5.293,3.8755,1.75,1.4954,4.4202,11.3454,3.2331,2.6892,10.8611,2.5252,2.4128,2.5384,12.1539,2.0758,4.1579,1.2581,14.0931,5.145,9.52,5.0389,12.1238,9.1019,8.6015,8.531,3.8092,1.7972,4.6247,,,,,,,,,,,,,,,65,,,,610
+4118,1.2919,2.0084,,60-69y,Other,,,16.9012,5.112,2.8303,2.3921,1.4451,ppmi,,,F,,0.41635,4.7688,4.022,0.806,9.8886,1.6264,0.40011,3.2825,2.9912,49.949,13.7032,193.3195,3.8864,5.1949,1.6309,1.9423,3.7272,7.5021,2.3181,3.0234,0.46305,6.6765,11.0503,13.6535,7.8684,2.4529,4.6545,1.9278,18.3627,6.5931,4.3262,0.98264,2.3029,7.3059,13.235,3.5097,4.6179,2.994,1.5537,1.1944,4.1605,11.0736,3.2253,2.2361,12.5755,2.0914,2.4838,2.2821,11.3154,1.8279,3.727,1.2872,13.156,5.1845,9.8997,4.0007,11.3362,7.4706,7.972,7.8515,3.519,1.4077,4.1341,,,PD,0.078176,PD,,PD,0.38465,4.3075,3.9161,0.7945,10.9074,1.8981,0.41439,3.4078,2.984,49.2147,13.2587,195.364,3.8835,5.2321,1.6016,1.7677,4.0551,7.5829,2.1909,3.2646,0.46944,7.0191,11.3444,13.0281,8.5216,2.263,4.6307,1.8954,17.4597,5.8334,4.0698,0.96523,2.2323,7.825,13.3835,3.0762,4.5359,3.1734,1.5171,1.2224,4.1126,11.0995,2.8738,2.2924,9.8552,2.193,2.4003,2.1145,12.2585,2.0089,3.8353,1.2279,13.6273,5.2404,8.971,4.3412,11.5556,7.3821,7.7337,7.2742,3.3292,1.4987,3.9133,,,,,,,,,,,,,,,60,,,,611
+41184,1.7331,2.5484,,70-79y,Other,,,18.3319,4.3593,2.4795,2.0635,1.7782,ppmi,,,F,,0.40848,4.247,4.0762,0.7399,9.3159,1.3785,0.3825,3.1786,3.0166,45.8524,14.2273,200.8542,4.209,5.1023,1.4899,2.1164,3.4969,6.9498,2.0523,2.8002,0.59186,6.1128,11.0025,22.7404,7.3071,2.3361,4.5478,1.6991,17.1034,6.2734,3.8188,0.88688,2.5703,7.0423,13.0547,3.4084,3.8296,3.5294,1.5428,1.2632,4.3118,10.1414,3.1777,2.3807,10.6433,2.3839,2.3023,2.4878,13.0686,2.1244,4.05,1.2406,14.4838,5.2692,8.0366,3.5477,10.3773,7.2584,7.7794,7.5301,4.0599,1.847,4.5125,,,,0.080071,Other,,GENPD,0.3271,3.9378,4.0771,0.77506,9.9809,1.5876,0.36999,3.9753,3.2042,46.2142,13.6015,206.035,3.9996,5.5156,1.5523,1.9607,3.5374,7.5535,2.0168,3.0934,0.71641,7.6533,11.052,22.5065,8.4608,2.0832,4.3951,1.6707,17.4152,6.1946,3.6661,1.0713,2.8114,7.8753,13.2588,3.5631,4.2321,3.4372,1.5034,1.245,3.788,10.1199,2.9626,2.4216,9.4816,2.0398,2.2137,2.1978,12.8864,1.9702,3.9312,1.1182,12.7568,5.2845,7.4749,4.8488,10.517,7.5366,7.6852,7.3277,3.4813,1.5637,4.3089,,,,,,,,,,,,,,,77,,,,612
+4121,1.6922,2.7635,,60-69y,Other,,,17.5801,4.9284,2.3121,2.2469,2.3097,ppmi,,,F,,0.44223,4.1809,3.8662,0.78064,8.6618,1.2576,0.37752,3.2326,3.2724,45.3976,12.9744,206.3737,3.8521,4.0629,1.5035,1.8046,3.5317,6.5745,2.1517,3.1197,0.51824,6.528,10.768,20.4307,8.1049,2.0691,4.2302,1.7977,18.4386,5.9651,3.7715,1.224,2.5613,6.1601,12.8813,3.6827,4.6751,3.2644,1.5091,1.2488,4.3254,10.1962,3.1109,1.9589,11.033,2.4674,2.2825,2.031,11.5639,1.8775,3.8139,1.2651,13.7791,4.4788,9.1864,3.657,12.0691,5.8079,7.9046,6.4723,3.8582,1.5018,4.3827,,,,0.080267,CN,,HC,0.39784,3.9726,3.8478,0.79442,9.6549,1.4581,0.39068,3.317,3.4681,44.8083,13.3034,206.8652,3.6367,4.5025,1.5573,1.8411,3.3567,6.7459,2.0309,3.3535,0.62612,6.3967,10.7934,22.4877,8.6696,1.8704,4.3022,1.6825,17.9015,4.8192,3.5566,1.2424,2.7481,6.863,13.6596,2.975,4.3351,3.1721,1.3226,1.151,3.7666,9.6904,2.7067,2.0082,9.9224,1.7467,1.9705,1.8846,12.4246,1.6162,3.894,1.2285,13.2048,4.4117,7.2914,4.6518,10.8067,6.9474,7.3665,6.7961,3.3554,1.2649,4.156,,,,,,,,,,,,,,,68,,,,613
+4122,1.3388,2.3881,,60-69y,Other,,,15.4793,4.7861,2.4775,2.2728,1.2561,ppmi,,,F,,0.45214,4.9602,5.1185,0.98396,10.7352,1.8217,0.46612,4.1771,2.9642,52.8341,13.161,199.7723,5.0275,6.47,1.9109,2.7489,3.732,8.5778,2.6035,3.5656,0.52822,7.3574,13.6019,13.7664,9.3136,2.7746,5.638,2.0236,23.8407,7.2872,4.7694,1.4391,3.1374,7.5619,15.7683,5.586,5.4177,4.6716,1.925,1.3155,5.009,12.9337,3.5932,2.6458,14.7641,2.919,2.8405,2.6131,15.8979,2.5366,4.597,1.4197,17.1883,5.939,10.5858,5.2064,13.4937,8.2471,7.9586,9.4725,5.7613,2.1437,4.2029,,,PD,0.062044,PD,,PD,0.40324,4.4348,4.9478,0.91545,11.449,1.9961,0.4419,3.8293,3.2008,50.2163,12.4986,204.6311,4.6914,6.1679,1.8126,2.3865,4.2005,8.5279,2.4764,3.6525,0.68013,7.3225,13.4611,12.6093,9.2965,2.7854,5.452,1.9672,23.5065,6.1947,4.6092,1.1401,2.8034,8.7735,15.4171,3.8587,4.9811,4.178,2.102,1.32,4.5605,12.4641,3.1028,2.5866,12.7413,2.6639,2.8524,2.3638,16.1214,2.4844,4.3356,1.3742,17.5524,6.005,9.4452,6.3012,12.9842,8.2912,7.6804,9.7778,4.7886,1.9369,4.0584,,,,,,,,,,,,,,,65,,,,614
+4123,0.74877,1.6812,,60-69y,Other,,,18.397,5.0628,2.7782,2.3105,0.83876,ppmi,,,M,,0.43005,4.2297,3.9377,0.86466,9.1646,1.4325,0.40367,3.0124,2.5724,46.8198,14.5851,197.622,3.5347,4.3857,1.6211,1.8301,3.0797,6.7072,2.0953,2.9535,0.29937,6.2991,10.9913,6.0034,6.8312,2.3443,4.5214,1.7152,17.5622,6.034,3.8362,1.0001,2.473,6.0733,13.4287,3.1033,3.8676,3.1429,1.5641,1.0791,4.1932,10.3477,2.9317,2.113,11.7255,2.043,2.5469,2.1545,12.9251,1.8591,4.2721,1.221,14.8191,5.0475,8.4332,3.4202,11.0247,6.6114,7.9149,7.1063,3.6339,1.5589,4.4126,,,PD,0.079205,PD,,PD,0.3847,3.5713,3.8102,0.84275,9.8499,1.6275,0.4141,2.9511,2.5502,47.2304,14.9144,198.8066,3.2497,4.5283,1.6684,1.786,3.4576,6.9607,2.2354,3.287,0.51528,6.5582,11.1239,6.4913,7.5155,2.1805,4.3125,1.7542,16.8154,5.6943,3.9253,0.97182,2.54,7.1857,13.4537,2.6157,3.8991,3.1279,1.5086,1.0917,3.7824,10.2644,2.7301,2.0446,9.3165,1.8968,2.3065,1.8007,11.6139,1.5831,4.031,1.206,14.5493,5.324,8.015,4.5404,11.5,6.3934,7.6341,7.3517,3.0549,1.325,4.1756,,,,,,,,,,,,,,,64,,,,615
+4124,1.7856,1.8635,,60-69y,Other,,,20.5301,5.7293,2.9187,2.4408,2.014,ppmi,,,F,,0.48897,5.0772,4.6446,0.92996,9.9804,1.6806,0.45199,2.8796,2.9274,47.9007,16.766,257.4131,3.733,4.4025,1.6032,2.1237,3.9514,7.9047,2.4318,3.3802,0.96763,7.5613,11.3449,26.3975,7.962,2.9689,4.7258,2.1922,19.6231,7.1149,4.3365,1.0335,2.5647,6.9955,14.9772,4.3697,4.5439,3.3208,2.0611,1.7395,4.3628,11.3148,3.2634,2.3176,10.1587,2.2775,2.8811,2.2909,9.6844,2.2576,3.5266,1.449,12.3321,5.314,9.4774,3.9411,10.7036,8.3254,8.7477,8.1728,4.5086,1.4107,5.5832,,,PD,0.058239,PD,,PD,0.45889,4.5685,4.3301,0.94632,12.3829,1.8331,0.40803,3.2122,2.9642,48.5882,16.3956,264.6674,3.9057,5.0758,1.7812,2.0095,3.8047,7.557,2.363,3.6892,0.47634,7.5344,11.9593,22.0065,8.9292,2.7723,4.7056,2.1585,19.9533,5.7793,3.8891,1.1704,2.8535,7.6947,15.892,3.1095,4.5334,3.6362,1.9536,1.77,4.2286,11.4805,3.1046,2.3484,9.206,1.9066,2.507,2.2337,9.6416,1.9639,3.0124,1.3104,13.5843,5.3178,8.9458,4.1792,9.8771,8.8208,8.5251,9.605,4.5042,1.5045,5.1872,,,,,,,,,,,,,,,60,,,,616
+4126,1.2418,2.0882,,70-79y,Other,,,20.1907,5.4865,3.0874,2.5637,1.2013,ppmi,,,M,,0.53397,5.2656,4.5569,0.91909,10.6892,1.704,0.42647,3.1375,3.2965,53.2176,18.1195,264.3217,4.4806,5.0363,1.8514,2.1455,4.142,8.0999,2.5142,3.7677,0.59207,6.7183,13.2754,17.2515,8.5576,2.5651,5.2396,2.0519,21.4928,6.4824,4.4029,1.282,2.9869,7.9107,16.414,3.0571,4.4686,3.4635,1.5393,1.5908,5.1147,12.8774,3.6715,2.6671,12.6965,2.8862,2.5643,2.5052,13.1121,2.4835,4.8375,1.4188,16.5003,6.0736,10.6136,3.5651,11.8687,8.7042,9.1762,8.6642,4.0684,2.0837,5.2394,,,PD,0.087758,PD,,PD,0.46035,4.5498,4.1462,0.90426,11.37,2.0122,0.43771,3.1961,3.4626,54.7629,18.3773,261.1217,4.7434,5.5643,1.813,2.0017,4.4861,8.3071,2.43,3.6829,0.5611,7.4356,12.145,13.9845,8.7094,2.4102,4.9468,1.9805,20.1251,6.1502,4.207,1.1919,2.6905,8.6293,16.624,3.0341,4.8754,3.8844,1.5366,1.4884,4.6845,12.6299,3.2546,2.8166,10.1722,2.5956,2.4692,2.456,12.3782,2.0624,4.6227,1.3597,17.2389,5.7899,8.8899,4.5322,10.7424,8.3025,9.1223,8.3729,3.8245,1.84,4.8668,,,,,,,,,,,,,,,71,,,,617
+41282,0.62126,1.62,,70-79y,Other,,,20.0972,5.0112,2.8629,2.244,0.77582,ppmi,,,M,,0.45315,4.2715,3.9072,0.95118,9.1925,1.5686,0.3676,3.9185,3.0764,49.4772,17.3618,217.4629,3.6528,5.3952,1.8093,1.7571,3.3761,6.9634,1.9701,3.1674,0.31817,6.8285,9.9962,8.3693,7.6467,2.3576,5.0225,1.6803,19.4255,6.8792,3.7682,1.1977,2.7998,6.7102,13.4106,3.723,4.4054,3.0364,1.4583,1.4978,4.0969,10.3305,3.2084,2.2338,12.4078,2.1888,2.3306,2.2245,13.2543,1.9802,4.448,1.0526,13.9711,5.3992,9.2415,3.9704,9.2656,7.5258,8.8245,7.1545,3.4325,1.544,4.9337,,,,0.070696,Other,,GENPD,0.39981,3.6074,3.9883,0.94992,9.4732,1.725,0.39038,4.0826,3.1275,50.7754,17.4147,224.5871,4.0672,5.9317,1.792,1.8764,3.7528,7.4527,2.129,3.4717,0.46228,6.7081,10.5547,6.6823,8.3756,2.1668,4.7053,1.6723,17.1216,5.108,3.6544,1.0711,2.8516,7.1531,13.6216,3.1308,4.4998,3.6107,1.4155,1.5031,3.6258,10.3375,3.0461,2.3014,11.9464,2.2969,2.1573,2.0782,12.5039,1.9991,4.3907,1.0283,15.4791,5.5936,8.9998,4.8728,10.1279,7.8136,8.4229,7.8046,3.068,1.5295,4.7879,,,,,,,,,,,,,,,73,,,,618
+41289,1.2489,1.6334,,50-59y,Other,,,16.7668,4.5922,2.3078,1.9644,1.66,ppmi,,,F,,0.36818,4.3797,4.0916,0.86776,9.5841,1.6068,0.37522,3.371,2.7066,42.9802,13.6632,210.7389,3.8737,4.8212,1.6543,2.0517,3.3665,7.039,2.1381,3.1089,0.41986,6.9706,12.1959,11.366,7.888,2.5204,4.6004,1.7533,19.7827,6.6149,4.1552,1.114,2.794,6.693,15.4546,3.1875,4.3011,3.6303,1.5142,1.2513,4.4016,11.0823,3.0483,2.0565,11.9457,2.407,2.4762,2.2265,14.1338,2.7014,3.6726,1.1967,14.8033,5.4341,8.2512,3.5423,10.2248,7.2562,7.9639,7.8196,4.4502,1.9637,4.2427,,,,0.068553,Other,,GENPD,0.34755,3.572,3.9515,0.83858,9.8675,1.8325,0.38047,3.3159,2.8195,42.4732,13.046,215.3501,3.6758,5.1863,1.6421,1.9544,3.8815,7.208,2.1807,3.3252,0.4737,7.1175,11.5963,11.0656,8.44,2.4888,4.4363,1.8244,19.2102,5.0127,4.1451,1.016,2.7244,7.5493,15.2979,3.2219,4.2003,3.6353,1.727,1.1276,4.0046,11.1778,2.9331,2.0708,11.3802,2.0674,2.403,1.9437,13.5169,1.8567,3.726,1.1731,14.6802,5.3737,7.3748,4.7441,10.338,7.5664,7.7968,7.6948,4.142,1.4271,3.9978,,,,,,,,,,,,,,,57,,,,619
+41293,1.7609,3.2318,,60-69y,Other,,,16.7415,4.1792,2.2727,1.9964,1.5023,ppmi,,,M,,0.39868,3.8634,3.8387,0.79254,7.9876,1.1974,0.35047,3.0535,3.0333,44.9998,14.0829,201.2251,3.6302,4.0717,1.5492,1.8719,2.989,6.8327,1.6206,2.7386,0.89163,5.8456,10.7828,19.431,6.9442,1.9385,4.1784,1.3961,16.1259,5.2334,3.337,0.98825,2.5044,5.9083,12.6094,3.1632,4.0511,3.1843,1.3777,1.4029,3.6394,9.0155,2.8843,2.2541,10.5995,2.11,2.1277,2.0908,12.074,1.765,3.8511,1.0047,12.7252,4.7545,9.0098,3.3574,9.4934,6.7795,7.9647,7.0442,3.5836,1.4421,4.4789,,,,0.062971,Other,,GENPD,0.353,3.572,3.8073,0.79486,9.5237,1.2766,0.36827,2.9892,3.1739,45.815,14.0283,206.156,3.4253,4.1575,1.6368,1.9681,3.0738,7.0396,1.8416,3.1046,0.6944,6.6831,10.6704,13.6982,7.5374,1.7699,4.1154,1.5266,15.6082,4.7622,3.1584,1.1008,2.5353,6.4786,13.3212,2.9894,4.0917,3.3513,1.4121,1.3864,3.4869,9.4785,2.9021,2.2404,9.5924,2.175,1.9506,1.873,11.5796,1.8436,4.0258,1.02,11.9164,4.6776,7.8764,3.9112,9.216,7.0923,7.6298,7.1578,3.3142,1.4396,4.3379,,,,,,,,,,,,,,,68,,,,620
+4135,1.8092,3.1957,,50-59y,Other,,,18.9162,4.8338,2.9183,2.3596,1.3516,ppmi,,,M,,0.47045,5.5627,4.5971,0.83553,10.0914,1.6823,0.40371,3.2649,3.1952,48.2593,17.3381,279.0317,4.3575,4.6381,1.6584,2.0221,3.914,7.5048,2.2197,2.8831,0.56134,6.849,11.0493,21.8747,7.5269,2.4579,5.1286,2.1451,19.5576,6.1752,4.1268,1.2197,3.3212,8.6683,13.1174,3.8604,4.3415,3.1469,1.5888,1.5696,4.4772,11.054,3.0772,2.6784,11.9128,2.4472,2.3104,2.6,14.2606,1.9903,4.7051,1.3664,16.1112,6.5913,8.5399,3.7687,10.496,6.7544,8.4004,7.2421,3.9248,1.8838,4.8412,,,PD,0.077655,PD,,PD,0.43285,5.1043,4.1705,0.84368,10.4186,1.7766,0.42555,3.5126,3.5261,48.9348,16.7276,279.0882,3.6777,4.9122,1.6499,1.9998,4.1664,7.6088,2.0949,3.069,0.67875,7.0216,10.9742,18.1354,8.5334,2.2309,5.0737,1.8933,19.6254,5.3281,3.7184,1.2405,2.8936,9.2258,12.8018,3.403,4.2811,2.8475,1.659,1.541,4.0785,10.3807,2.7451,2.4314,11.5275,2.0239,2.2077,2.1193,12.703,1.6654,4.634,1.2952,15.2264,6.3531,8.0559,3.9346,10.0515,6.8795,8.3188,7.3192,4.1284,1.4245,4.5532,,,,,,,,,,,,,,,56,,,,621
+4136,1.4175,2.0768,,60-69y,Other,,,18.747,5.7217,2.6362,2.6044,1.3449,ppmi,,,M,,0.44887,4.8921,4.8171,0.99489,10.3399,1.5375,0.40923,3.9516,3.3316,53.679,16.6247,234.0622,4.3168,5.3238,1.9068,2.1304,3.7554,8.4047,2.1137,3.4857,0.59114,7.5938,12.0961,13.2727,8.5863,2.308,4.6735,1.9065,18.467,7.4031,4.1639,1.264,2.8166,7.9741,15.2781,4.1889,5.1491,3.3346,1.4588,1.2357,5.1628,12.2975,3.7022,2.8488,13.7914,2.7118,2.5043,2.4929,13.6372,2.4063,4.7913,1.2678,15.3032,5.7878,9.3001,4.0844,10.9395,8.409,8.1775,8.6182,4.1356,1.9734,4.5837,,,PD,0.082726,PD,,PD,0.41711,4.3595,4.2455,0.96137,11.4042,1.8662,0.41596,3.846,3.591,53.8025,16.2317,232.8353,4.1831,5.4441,1.8802,1.8858,4.0894,8.3289,2.0788,3.6183,0.58128,8.2066,12.7101,12.5179,8.9361,2.3061,4.5347,1.7994,18.3356,5.7969,3.943,0.99143,2.7431,8.5278,15.8051,3.4741,5.1926,3.342,1.4958,1.2403,4.5308,11.9881,3.393,2.5609,12.1589,2.1008,2.4073,2.2801,14.2916,1.8711,4.5985,1.2463,15.1815,5.932,9.102,5.0014,11.5496,7.8692,7.9795,8.5993,3.6776,1.6622,4.481,,,,,,,,,,,,,,,67,,,,622
+41380,0.91971,1.7484,,60-69y,Other,,,15.774,3.8145,2.2452,1.9529,0.96132,ppmi,,,F,,0.40141,3.7557,3.7557,0.8155,8.9205,1.4463,0.34735,2.7783,2.8068,38.7231,13.3066,207.0904,3.4197,3.9036,1.6146,1.6914,3.1479,6.3263,1.7623,2.8607,0.32597,5.9736,9.745,11.2577,6.2473,2.2648,4.1267,1.546,17.708,5.6429,3.4029,1.1069,2.3566,5.7034,12.4487,2.9515,3.7343,3.1432,1.3746,1.3662,4.1441,10.6474,2.7453,1.9634,11.3662,2.2225,2.2499,2.0689,13.3313,1.9865,4.0471,0.91472,12.5672,4.857,8.2283,2.9091,10.7554,7.0778,7.7281,7.3789,3.7554,1.4048,4.2939,,,,0.065225,Other,,GENPD,0.35997,3.3196,3.5198,0.80312,9.4715,1.5682,0.36335,2.7172,2.8429,37.9335,12.6657,211.6301,3.2087,4.0682,1.5949,1.6953,3.5501,6.4038,1.9028,3.1781,0.47645,5.7497,10.1249,9.0411,6.9687,2.0312,4.0179,1.6008,17.6861,4.7403,3.3246,1.0005,2.3401,6.6081,12.4402,2.4813,3.566,3.1011,1.3571,1.3876,3.8002,10.1985,2.6629,1.9689,10.003,1.7959,2.1156,1.8448,12.5302,1.8753,4.1173,0.9142,12.9553,4.5396,7.3945,3.7959,10.8205,6.4754,7.5265,7.63,3.1025,1.3527,4.096,,,,,,,,,,,,,,,60,,,,623
+41382,0.80739,1.446,,50-59y,Other,,,18.2595,4.5898,2.5383,2.2026,0.94396,ppmi,,,M,,0.43604,4.0105,4.0754,0.83315,9.1346,1.3643,0.36655,2.7128,3.0465,47.0988,15.4559,227.0712,3.964,4.3957,1.5979,2.0082,3.2519,6.8986,1.9941,2.9322,0.33386,5.9827,11.7414,8.4962,6.6619,2.1129,4.1784,1.7642,17.4999,5.9733,3.7377,1.113,2.6834,6.7257,14.2465,3.1611,3.9467,3.0961,1.3742,1.4912,4.0899,9.8408,2.9548,2.1845,10.0457,2.5225,2.3622,2.1585,12.1136,1.969,4.2081,1.1143,13.5262,5.0785,8.7248,3.6852,9.3112,6.4455,8.0234,7.8521,3.4944,1.6177,4.5964,,,,0.081207,Other,,GENPD,0.40493,3.8236,4.0144,0.81787,9.4873,1.7299,0.37339,2.9833,3.1405,47.0799,15.153,229.818,3.7488,4.7251,1.6489,2.0959,3.4473,7.3311,2.0224,3.1706,0.51138,5.9228,11.4444,8.4782,7.3419,2.2034,4.3263,1.629,16.6383,5.3228,3.7279,0.94548,2.4395,6.8674,12.8772,2.7672,3.9039,3.668,1.5835,1.4943,3.7459,9.8304,2.7133,2.1752,9.9479,2.3104,2.1923,2.0061,11.9871,1.9523,4.0604,1.1256,14.0818,4.9558,7.6831,4.63,9.6497,6.9578,7.774,7.8139,3.7082,1.4797,4.4172,,,,,,,,,,,,,,,59,,,,624
+41384,0.96422,1.335,,60-69y,Other,,,16.2808,3.8379,2.0328,1.8722,0.89682,ppmi,,,F,,0.37295,3.8632,3.4071,0.68783,7.7848,1.3732,0.33231,2.856,2.3177,37.0179,12.9019,192.0613,3.2231,4.3111,1.3107,1.518,3.0441,6.0529,1.7291,2.7034,0.42416,5.1534,9.0345,6.841,6.2062,2.0608,4.1536,1.5159,15.9102,4.682,3.4967,1.0808,2.2434,5.8457,11.4022,2.7996,3.6353,2.5672,1.2199,1.3143,3.8072,10.0999,2.5322,1.8287,10.8018,1.8406,2.1882,1.7271,11.3005,1.5626,3.4564,1.0502,12.7269,4.5579,8.0484,3.4276,10.7315,6.0992,7.5995,6.228,3.0295,1.1268,4.2048,,,,0.067623,Other,,GENPD,0.34695,3.4922,3.3267,0.69264,8.8471,1.4838,0.33833,2.9619,2.3926,37.5834,12.7694,197.9279,3.3013,4.0432,1.4116,1.5116,3.2378,6.215,1.7755,2.8521,0.45579,6.0915,9.6084,6.1816,6.6964,1.9009,4.0861,1.5046,15.1877,4.6661,3.317,0.92606,2.1845,6.0452,11.2283,2.726,3.57,2.9086,1.253,1.3143,3.5271,9.7613,2.3868,1.8464,9.4202,1.9263,2.0009,1.6486,11.2437,1.6433,3.4118,1.0105,12.9473,4.5751,7.702,4.222,9.735,6.3835,7.5975,6.619,2.9376,1.176,4.0055,,,,,,,,,,,,,,,62,,,,625
+4139,1.7417,2.5211,,50-59y,Other,,,19.3329,4.8361,2.625,2.3625,1.4993,ppmi,,,M,,0.41642,4.8709,4.2088,0.87979,10.0668,1.5648,0.39236,2.956,2.8494,47.27,14.1858,193.1072,4.3889,3.8722,1.8643,1.9057,3.7742,7.434,2.157,3.062,0.61114,6.3596,11.4916,17.5637,7.5943,2.3818,4.6077,1.9446,20.517,6.1944,3.8189,1.085,2.2914,7.3346,13.6902,2.9864,4.4831,2.9215,1.4206,1.1936,4.828,11.8729,3.4695,2.2471,13.1169,2.341,2.3184,2.0726,12.9259,1.7418,4.2627,1.313,13.7594,5.0045,9.8709,3.2287,11.9793,6.8039,7.9004,7.8068,3.6226,1.3593,4.6912,,,PD,0.09852,PD,,PD,0.36999,4.5428,4.1439,0.84215,10.7287,1.7335,0.40442,3.117,2.8922,46.9091,13.8143,198.1396,4.6238,4.2662,1.725,2.1156,3.8187,7.82,1.9543,3.1344,1.1237,7.0559,11.2995,18.6153,8.356,2.2702,4.5809,1.7876,19.5583,5.6878,3.5864,0.91543,2.1385,7.9645,13.7306,2.9702,4.4321,3.5918,1.517,1.1831,4.367,12.0942,3.1595,2.4185,11.4971,2.2897,2.2239,2.0433,12.4516,1.7239,4.1147,1.2371,14.13,4.9347,7.796,3.9078,12.6145,6.9666,7.7955,7.8783,3.4572,1.4823,4.4982,,,,,,,,,,,,,,,57,,,,626
+41399,0.80312,1.1682,,-50y,Other,,,20.5299,4.3124,2.6153,2.1803,1.1144,ppmi,,,F,,0.45407,4.7303,3.8673,0.86945,9.6593,1.6643,0.38544,3.1973,3.2422,47.2756,17.5979,235.1538,3.6963,5.0785,1.6757,1.9082,3.6883,7.1636,2.0713,3.0778,0.43337,6.8084,10.4652,15.351,7.7102,2.5845,4.7517,1.9444,20.5914,7.1275,4.0245,1.1297,2.5799,6.9898,13.1007,3.5754,4.3619,3.5119,1.5747,1.5734,3.8275,10.4121,3.149,2.0582,12.0414,2.3386,2.4985,2.0408,14.3376,2.0765,4.0994,1.1281,14.1548,5.0217,9.0374,4.314,10.6471,7.304,8.7476,7.5043,3.9576,1.4929,5.0026,,,,0.076672,Other,,GENPD,0.39223,3.6221,3.6986,0.84326,10.4344,1.8048,0.38266,3.3365,3.2364,47.7519,16.9043,238.747,4.0303,5.4929,1.7443,1.8908,3.9062,7.5501,2.2291,3.2706,0.48089,7.2623,11.5501,11.4683,8.3275,2.4274,4.3346,1.9027,19.6444,5.6965,4.0113,1.0047,2.5791,8.3077,13.8816,3.5527,4.714,3.2553,1.7151,1.5463,3.6124,10.867,2.8652,2.1768,10.1793,2.2756,2.2119,1.8637,13.4381,1.9093,4.058,1.1181,14.2679,5.6361,8.2985,4.8236,11.3407,7.332,8.6113,7.9147,3.8598,1.44,4.7511,,,,,,,,,,,,,,,49,,,,627
+41401,0.59938,1.1598,,-50y,Other,,,19.1923,4.9443,2.8027,2.1873,0.7455,ppmi,,,F,,0.5406,4.3472,4.1669,0.8693,9.3244,1.5602,0.4049,3.3217,3.3174,49.4049,16.1611,227.6573,3.8835,4.8489,1.615,1.9494,3.2767,7.0215,2.1011,3.2573,0.34638,6.5679,11.0005,5.9027,7.3108,2.4829,4.757,1.7565,19.0728,6.6962,3.9632,1.2874,2.8092,6.3461,13.8771,3.2101,4.2586,3.5737,1.5782,1.5291,4.2385,10.9705,2.983,2.0851,12.1022,2.0948,2.5038,1.9928,13.3531,1.8316,4.3123,1.1935,14.5088,5.2549,8.7534,4.1229,12.2698,7.4099,8.6283,7.318,4.1769,1.3739,4.8429,,,,0.076414,Other,,GENPD,0.50035,3.9073,3.7984,0.84442,10.6293,1.7561,0.41192,3.2156,3.4699,48.8638,15.7361,229.5184,4.0294,4.6749,1.5823,1.8581,3.7102,7.1092,2.1146,3.3433,0.48657,6.4506,11.4357,7.1992,7.7467,2.3052,4.7403,1.7596,18.9105,5.0345,3.7613,1.1752,2.6909,7.421,13.7467,2.5621,3.8872,3.7321,1.5572,1.5519,3.8338,10.4051,2.7599,2.0363,11.7906,2.0483,2.2893,1.8271,13.9209,1.7528,4.1595,1.1653,13.6017,5.3728,9.0056,4.4368,11.4088,7.5456,8.4103,7.2812,3.6926,1.3637,4.6368,,,,,,,,,,,,,,,38,,,,628
+41405,1.084,1.9437,,60-69y,Other,,,17.6978,4.4211,2.3009,2.0623,0.96439,ppmi,,,M,,0.43688,4.1304,4.3144,0.90158,8.4824,1.5537,0.41325,2.8621,2.6134,41.7925,14.0537,210.1568,3.3106,4.6558,1.8152,1.9856,3.4379,7.2943,2.0441,3.0869,0.45417,6.1798,10.9825,10.8718,7.3031,2.3935,4.572,1.6571,17.3057,5.6212,3.9356,0.9955,2.4053,6.9522,13.5249,3.1066,4.0019,3.0455,1.485,1.4388,4.3569,10.737,3.3965,2.1615,11.9809,2.2682,2.5454,2.0565,12.2147,2.1566,4.7106,1.2354,15.2765,5.1868,8.9277,3.2016,9.0003,7.1026,8.0864,7.4515,3.6709,1.4768,4.6494,,,,0.073024,Other,,GENPD,0.39659,3.3389,4.0369,0.85994,10.2776,1.4877,0.41871,3.1175,2.6655,42.1327,13.8742,216.4793,3.8277,4.2927,1.759,1.9327,3.6298,7.4,2.0224,3.2626,0.43054,7.1166,11.1126,7.9485,7.7796,2.1695,4.2927,1.7924,17.2244,5.7315,3.5737,1.1903,2.1793,7.8923,13.3897,3.1472,4.3228,3.2671,1.6939,1.4459,4.0958,10.0864,3.1795,2.4837,9.8145,2.4817,2.4363,1.9243,12.2233,2.0032,4.6878,1.1999,14.459,5.2086,7.9474,3.7516,10.0759,6.6672,8.0505,7.2124,3.5698,1.5885,4.5003,,,,,,,,,,,,,,,63,,,,629
+41410,1.3225,2.0157,,-50y,Other,,,19.2441,4.9706,2.6768,2.2157,0.96963,ppmi,,,F,,0.47053,4.9441,4.383,0.86687,9.9222,1.8357,0.391,3.481,3.231,50.1614,16.9363,238.9893,4.0685,4.6597,1.7322,1.8992,3.7899,7.9361,1.9759,3.1123,0.46788,6.8998,11.284,14.8539,7.4969,2.7066,5.1853,1.9387,20.7068,6.7315,4.1581,1.0946,2.2491,7.5323,14.0122,3.5099,4.6176,3.8466,1.5619,1.5749,4.7651,10.6939,3.1935,2.2716,14.0923,1.9802,2.7949,2.2968,14.5602,1.8296,4.5164,1.1701,15.4884,5.3512,8.7284,3.6623,11.324,7.4529,8.7472,7.8254,4.0811,1.5696,4.8773,,,,0.062467,Other,,GENPD,0.44701,4.4,4.1854,0.82138,10.4249,1.8293,0.40274,3.3168,3.3229,49.0805,16.7254,240.0912,3.7203,4.9315,1.7161,1.9991,3.9617,7.8863,2.159,3.3212,0.39094,7.1903,11.842,13.2531,8.0935,2.3585,5.1009,1.9442,20.4038,5.7804,3.7285,0.91346,2.1728,8.3225,14.5696,3.0265,4.5803,3.6476,1.6852,1.5242,4.3805,10.9667,2.9485,2.0794,11.1629,1.8374,2.6286,1.9763,14.3478,1.7494,4.2954,1.1745,14.6865,5.4307,8.1106,4.2922,11.1734,7.5359,8.577,7.9359,3.8143,1.2717,4.6257,,,,,,,,,,,,,,,45,,,,630
+41411,1.0875,2.1965,,-50y,Other,,,17.0911,4.221,2.2613,1.8593,1.239,ppmi,,,M,,0.45851,4.3328,4.3316,0.79047,10.2685,1.3908,0.38775,2.6547,3.1532,42.6005,14.2273,213.2751,4.1449,4.4393,1.4844,1.9297,3.3887,7.1918,2.0478,2.9029,0.52824,6.8648,10.3763,12.774,7.1676,2.3223,4.6672,1.6858,18.3048,6.4527,3.9054,1.3921,2.787,6.6856,12.9626,3.4212,4.4837,3.4193,1.524,1.4387,4.5749,11.206,2.9571,2.3387,13.1286,2.5323,2.5696,2.2232,12.6834,1.9842,4.1411,1.2485,13.5333,4.8428,9.6322,3.6,11.8214,7.1062,8.5254,7.0474,4.2328,1.6194,4.6035,,,,0.075293,Other,,GENPD,0.44299,3.7694,4.1287,0.81732,10.7452,1.7369,0.39223,2.8485,3.1878,42.3965,13.7542,212.3182,3.7167,4.8128,1.5452,1.7558,4.0968,6.9675,1.987,3.0794,0.68122,6.846,11.4409,11.5679,7.3929,2.2588,4.4606,1.6395,17.3588,5.0324,3.7116,1.1367,2.48,7.3052,13.9201,3.3204,3.9485,2.9679,1.5314,1.4515,4.1745,11.2229,2.6642,2.2182,10.6035,2.5373,2.3641,1.8431,12.4666,2.2219,4.0827,1.0931,14.2377,4.8698,8.4008,4.0492,11.4947,7.2768,8.1832,6.9625,3.2709,1.341,4.3797,,,,,,,,,,,,,,,42,,,,631
+41412,1.0503,2.48,,-50y,Other,,,18.3157,4.7486,2.8067,2.3773,1.3443,ppmi,,,F,,0.47525,4.1925,3.2595,0.82702,8.9721,1.421,0.37551,3.2017,3.3025,51.8723,16.7769,217.3161,3.6694,4.4007,1.5737,1.6342,3.1066,7.458,1.8547,3.0825,0.36841,6.3375,11.5265,10.8587,7.5815,2.1727,4.5327,1.6425,18.0217,6.0073,3.6331,0.92413,2.4968,6.2198,14.1226,3.3091,4.3562,3.3039,1.1933,1.3953,4.0188,9.5781,3.0907,1.9272,11.6839,2.1416,2.3142,2.0199,12.698,1.8284,4.0351,1.0218,13.4855,4.7814,9.0036,4.1122,9.5206,7.1601,8.1298,7.2377,3.3833,1.3997,4.6075,,,,0.078847,Other,,GENPD,0.4144,3.6898,3.1882,0.82843,10.4243,1.5793,0.37769,3.3261,3.3526,51.4377,16.0925,219.2291,3.2883,5.0634,1.6359,1.6292,3.2508,7.52,1.8292,3.3138,0.33263,6.3658,11.2177,9.7237,8.5168,2.1214,4.5317,1.5594,17.1496,4.6995,3.389,1.1678,2.7132,7.0287,14.0449,2.574,4.1256,3.4046,1.3315,1.3925,3.5916,9.8817,2.9149,1.8245,10.6238,2.0815,2.1723,1.8075,11.8408,1.8636,3.9696,0.98812,12.991,5.0762,8.0689,4.2706,10.2672,7.0532,7.863,7.4855,3.2673,1.3503,4.4322,,,,,,,,,,,,,,,45,,,,632
+41420,0.93373,1.8086,,60-69y,Other,,,18.5941,4.4196,2.6051,2.2386,1.0292,ppmi,,,M,,0.41784,3.984,3.7098,0.80423,7.9589,1.4132,0.36625,3.2104,2.8597,44.8043,15.9877,219.7994,3.4925,4.7324,1.5375,1.7074,3.1355,6.5175,1.8317,2.9487,0.37873,6.4944,9.8322,9.1261,7.3011,2.1653,4.2738,1.6455,17.904,6.0359,3.5642,1.0212,2.5859,6.1759,12.0341,3.3222,4.4443,3.2214,1.3427,1.341,4.2178,9.9632,2.9024,1.982,10.0663,2.2556,2.3551,1.9957,12.7238,2.0666,3.9564,1.0998,14.0502,5.0586,7.7476,4.2432,9.924,6.6404,7.7234,7.0923,3.5053,1.412,4.6123,,,,0.071051,Other,,GENPD,0.3809,3.1348,3.6136,0.80366,9.0962,1.6018,0.37591,3.3271,2.883,44.0062,15.2336,221.4399,3.5427,4.7844,1.6083,1.7479,3.4287,6.7304,1.8775,3.1497,0.45566,6.5831,10.5239,7.5824,7.9491,2.0765,4.15,1.7187,17.71,4.8541,3.4271,1.0112,2.2127,7.2001,12.9844,2.8685,4.3275,3.6963,1.4215,1.3142,3.8033,9.708,2.8035,2.064,9.6151,1.9124,2.1531,1.8163,12.3941,1.7665,3.9312,1.0515,13.1108,5.0596,7.631,4.4561,10.428,6.2785,7.5442,7.0675,3.205,1.2821,4.4327,,,,,,,,,,,,,,,65,,,,633
+41486,1.3652,1.7235,,60-69y,Other,,,21.5692,5.4842,3.0407,2.4606,1.3383,ppmi,,,M,,0.48479,4.9071,4.2295,0.84299,9.0157,1.5589,0.38884,3.2478,2.9644,49.9439,19.7129,253.4404,3.6537,4.937,1.5043,2.1284,4.0789,7.157,2.0766,2.9895,0.38644,6.5456,10.8928,12.2955,7.7675,2.5588,4.699,1.909,17.6187,5.7013,3.9521,1.0072,2.4886,7.545,13.1039,3.7582,4.5397,3.2442,1.7163,1.6304,4.3733,11.4167,3.0837,2.2155,11.5901,2.3336,2.5501,2.2023,12.4537,1.9702,4.5652,1.2257,14.6546,5.5506,7.9622,4.3504,11.3434,6.6821,8.6692,7.0693,4.1141,1.6069,5.3089,,,,0.074835,Other,,GENPD,0.45738,4.1839,3.8631,0.81519,9.7701,1.7955,0.39995,3.1465,3.1416,49.6578,19.7889,261.2931,4.049,5.3664,1.511,1.9772,4.235,6.9483,2.1541,3.1133,0.36885,6.6826,10.4959,12.633,8.35,2.2999,4.5821,1.9964,17.9084,5.0064,3.8361,1.2241,2.6227,8.6469,12.9084,3.5914,4.2741,3.0368,1.6641,1.6132,3.7685,11.4581,2.7269,2.283,10.5867,2.3817,2.3432,2.0813,12.1837,2.064,4.5014,1.1699,15.3159,5.6438,7.5559,4.8822,10.2411,7.1085,8.4129,7.1996,3.489,1.6301,5.1589,,,,,,,,,,,,,,,64,,,,634
+41488,1.5964,2.3636,,70-79y,Other,,,16.349,4.9728,2.5791,2.2494,1.5972,ppmi,,,M,,0.45844,4.9567,4.7595,0.9932,9.1324,1.6677,0.41276,3.3692,3.0187,45.3761,14.378,232.7779,4.3729,5.2381,1.8263,2.1642,3.9585,7.149,2.2415,3.1592,0.63642,6.75,10.6684,17.0112,7.8343,2.5278,5.3062,1.9576,21.52,6.8651,4.0158,1.3311,3.1801,7.5971,14.3975,4.0899,4.3245,3.4525,1.6527,1.2929,4.5054,11.274,3.3173,2.7933,12.0952,2.9687,2.3906,2.7527,14.8493,2.2726,4.4509,1.2747,17.7328,5.9915,9.1869,4.5372,10.8308,7.2793,8.0055,7.8575,4.5997,1.9142,4.332,,,,0.078794,Other,,GENPD,0.43111,4.4148,4.5255,0.92532,11.3237,1.9124,0.42426,3.5385,3.0615,45.7831,13.8938,231.0506,4.4088,5.2414,1.8233,2.0219,4.4282,7.4933,2.1702,3.3857,0.76072,7.266,10.9855,19.0505,8.0861,2.3896,5.2177,1.9652,21.8323,5.7541,3.866,1.338,3.0298,8.3862,14.3005,3.3579,4.4076,3.6829,1.5444,1.296,4.0715,11.0137,2.9606,2.7023,11.014,2.565,2.3408,2.5118,13.9247,2.1707,4.3051,1.1722,16.0185,5.8299,7.9708,4.8242,10.3717,7.8091,7.7255,7.9647,4.0314,1.8776,4.0638,,,,,,,,,,,,,,,71,,,,635
+41508,1.6424,1.6127,,70-79y,Other,,,17.2178,4.1647,2.404,2.1187,1.5211,ppmi,,,F,,0.40086,4.026,3.8449,0.75826,8.0015,1.4093,0.39343,1.8119,2.2917,41.5077,12.841,175.6702,3.7393,3.6839,1.5021,1.8049,3.0536,6.7372,1.8027,2.8015,0.61746,5.3261,10.5478,17.3883,6.3469,2.2779,4.0765,1.6015,16.9986,5.2651,3.6153,1.2076,2.5697,5.9885,13.0836,2.4675,3.4213,3.0813,1.4676,1.0589,4.0957,10.0976,2.934,2.214,10.9682,2.3405,2.3498,2.1134,11.1871,1.957,3.8091,1.1842,13.1855,4.5081,8.3872,3.16,9.8883,6.7793,7.0335,7.2162,3.8042,1.6402,4.206,,,,0.080125,Other,,GENPD,0.35905,3.5642,3.624,0.75975,9.3828,1.6521,0.38316,2.1455,2.5283,42.2647,12.3644,177.4697,3.7181,3.738,1.5781,1.742,3.4208,7.3056,1.8054,2.9542,0.65208,5.4922,11.1615,15.9298,7.0378,2.1348,4.2045,1.5851,16.3881,4.3405,3.496,1.0259,2.4403,6.3687,13.2045,2.1209,3.6092,2.8566,1.3873,1.0756,3.5609,10.3897,2.776,2.3468,9.801,2.1634,2.2352,1.9772,11.085,1.8205,3.6523,1.0942,13.6929,4.5463,7.4926,3.2248,9.6203,6.5298,6.9863,7.2141,3.0336,1.4053,4.0024,,,,,,,,,,,,,,,75,,,,636
+41521,1.1482,1.4484,,70-79y,Other,,,17.6704,4.2605,2.6796,2.1685,1.2256,ppmi,,,F,,0.37866,4.5312,3.7802,0.76048,8.2639,1.6216,0.3529,2.6541,2.7081,43.0713,14.7573,204.5858,3.6095,4.0242,1.4854,1.6978,3.1846,6.6356,1.9868,2.8435,0.41651,5.4442,9.7365,15.1583,6.6364,2.3382,4.7817,1.683,19.0685,5.2401,4.0161,1.2259,2.3191,6.2451,11.796,3.0324,3.7661,3.0304,1.4438,1.3212,4.0383,10.0699,2.8156,2.0512,12.1878,2.3355,2.5455,1.9636,12.3405,1.8947,3.3651,1.1088,12.6879,4.9251,8.3064,3.3915,9.8598,6.375,7.6051,7.1371,3.5567,1.3811,4.1729,,,,0.07434,Other,,GENPD,0.33144,3.8629,3.6891,0.77654,9.2328,1.7174,0.36118,2.7818,2.8313,42.7144,14.3525,208.7494,3.8598,4.2903,1.607,2.0047,3.6289,6.7274,2.026,3.0943,0.43834,6.0639,10.1908,11.6912,7.0049,2.1326,4.5161,1.7134,18.097,4.8492,3.8431,1.032,2.3502,7.254,12.2931,2.5459,3.8319,3.3635,1.6273,1.3226,3.7569,9.9632,2.589,2.0482,9.2764,2.1728,2.2438,1.8487,12.0359,1.7953,3.5873,1.061,12.7601,4.9817,7.4914,4.0687,10.36,6.4559,7.1812,7.5688,3.8117,1.3432,4.0435,,,,,,,,,,,,,,,71,,,,637
+41568,1.0515,1.3886,,60-69y,Other,,,21.3057,4.7346,2.429,2.21,1.133,ppmi,,,M,,0.45805,4.8797,4.6448,0.93746,11.3244,1.6971,0.41511,3.3168,2.7472,47.2568,17.3557,237.55,3.9623,4.8647,1.7604,2.1501,3.7623,7.6538,2.272,3.2779,0.45755,6.675,11.1616,12.8587,7.3167,2.6704,4.8538,1.9684,20.726,6.5177,4.2641,1.0132,2.6502,7.7174,13.5123,3.7474,4.3386,3.3727,1.6483,1.495,4.8875,12.2264,3.2331,2.3389,12.3867,2.5503,2.6588,2.3208,14.7086,2.3913,4.5592,1.2733,15.3334,5.4068,10.0096,3.7316,11.3543,7.1262,9.1779,8.4687,4.2674,1.7178,4.9884,,,,0.079092,Other,,GENPD,0.40647,4.1214,4.2471,0.88144,10.7592,1.958,0.41543,3.349,2.6796,47.4531,16.8839,240.752,4.1058,4.8846,1.7649,2.0215,4.0617,7.8616,2.2573,3.4893,0.42541,7.738,11.7887,10.055,8.3407,2.4549,4.7882,1.9872,19.3606,5.7929,4.0323,0.99418,2.7464,8.2482,13.6106,3.1231,4.6139,3.3522,1.6752,1.4681,4.6182,11.7939,2.9214,2.2486,11.2852,2.3719,2.6177,2.0771,14.1087,2.0753,4.2583,1.1907,15.1799,5.3991,8.458,4.3008,10.8122,7.1908,8.9821,8.483,3.5731,1.5543,4.7695,,,,,,,,,,,,,,,64,,,,638
+41578,1.4711,2.1227,,60-69y,Other,,,16.1952,3.985,2.5281,2.0428,1.3787,ppmi,,,F,,0.40417,4.5049,4.1541,0.7934,7.9217,1.4402,0.35432,2.5873,2.9925,43.9518,13.1144,187.2947,3.7284,4.1584,1.5829,1.899,3.1684,6.8323,1.7696,3.0297,0.55134,5.3927,10.2183,16.8808,6.4439,2.2088,4.4598,1.5857,17.693,4.952,3.5998,1.1118,2.3823,6.3989,13.202,2.7213,3.9669,3.1732,1.3815,1.2509,3.9819,10.4644,3.1308,2.1317,11.6565,2.0116,2.3361,2.2371,13.3117,1.9056,4.0737,1.0831,13.1432,5.2771,8.6731,2.8703,9.0313,7.1731,7.9583,7.5636,3.6215,1.4991,4.2954,,,,0.068128,Other,,GENPD,0.38562,3.8628,3.858,0.79159,9.8356,1.5906,0.38156,2.6864,3.2854,43.1394,12.9082,193.661,3.6437,4.0693,1.602,1.8493,3.523,6.7599,1.8594,3.1821,0.52518,5.8359,10.8729,14.9296,7.2496,1.9948,4.5554,1.5776,16.8174,4.3612,3.5055,1.2289,2.5498,7.2596,13.7063,2.3524,3.9226,2.9457,1.3847,1.2467,3.7259,10.1216,2.8019,2.0809,9.5528,2.5499,2.1403,1.8678,12.6621,2.0742,3.9857,1.1122,14.682,5.3277,8.0239,3.4099,9.7506,7.407,7.8598,7.8358,3.0727,1.4026,4.0006,,,,,,,,,,,,,,,69,,,,639
+41664,1.089,1.8787,,70-79y,Other,,,15.8726,4.5161,2.3598,1.9305,1.3282,ppmi,,,F,,0.52929,4.6782,4.1198,0.83043,8.4487,1.3809,0.39323,2.6189,3.6855,41.084,13.4319,193.7959,3.9022,3.5485,1.5383,1.8464,3.2804,6.8425,1.8766,3.0079,0.44215,5.5147,9.7069,18.2555,6.8524,2.1164,5.0352,1.7125,17.4939,5.1891,3.6212,1.0735,2.5774,6.9483,12.5049,2.5944,3.9519,3.0066,1.2543,1.376,4.0951,9.6898,2.9932,2.4029,10.3695,2.0724,2.133,2.1065,10.8166,1.611,4.4089,1.171,13.4946,5.1415,8.5084,2.6117,9.6933,6.6912,7.0792,7.0384,3.2644,1.3627,4.1144,,,,0.068634,Other,,GENPD,0.44604,4.1934,3.9631,0.78985,9.98,1.5167,0.3905,2.5996,3.8064,41.7353,13.5245,197.7696,3.7577,3.6591,1.5149,1.7294,3.7664,7.1115,1.9465,3.1356,0.48527,6.1323,10.4608,18.1952,7.2431,1.9068,4.6228,1.7912,17.5033,5.046,3.4047,0.94917,2.3362,7.5703,12.8926,2.5251,3.7746,3.2128,1.265,1.3778,3.5899,9.66,2.4833,2.2056,8.9317,2.0392,2.1982,1.8459,11.4749,1.6272,4.3259,1.117,13.8747,4.9157,7.2678,3.4612,9.3213,6.645,6.8133,7.3139,3.3072,1.2471,3.9611,,,,,,,,,,,,,,,72,,,,640
+41967,0.66871,1.54,,50-59y,Other,,,19.5281,4.7688,2.5054,2.1007,1.0307,ppmi,,,M,,0.46942,4.8875,4.6074,0.9534,10.4716,1.6756,0.42152,3.3816,2.8593,48.5641,17.152,240.7266,4.6489,4.523,1.857,2.248,3.7682,7.6638,2.0785,3.1277,0.32537,7.0257,12.2892,7.9049,7.6851,2.5597,4.7447,1.937,20.3134,7.1932,4.1092,1.1269,2.9929,7.4431,14.9201,3.8495,4.723,3.6335,1.6506,1.5593,4.6005,10.7819,3.3059,2.3485,11.2582,2.3106,2.6582,2.4051,13.3683,1.9602,4.4755,1.2496,15.0138,5.7057,9.2434,3.5852,10.5374,8.1416,8.5903,8.9324,4.1268,1.6708,4.8701,,,,0.071193,Other,,GENPD,0.4099,4.5238,4.2506,0.95065,11.5958,1.8601,0.41742,3.4692,3.0049,47.6816,17.0191,244.3878,4.4375,4.9819,1.9393,2.1876,3.874,7.8171,2.2248,3.2882,0.37807,7.1717,12.6117,7.0115,8.233,2.3771,4.4333,1.8714,20.2158,6.1954,3.9302,1.1404,2.9951,8.2512,15.7751,3.0754,4.5794,3.8623,1.6306,1.5493,4.2404,10.9904,3.0921,2.3666,10.0318,2.1699,2.4413,2.02,14.1414,1.9974,4.3256,1.2079,13.7782,5.82,8.3931,4.4629,10.3353,8.0604,8.3263,8.4989,3.7886,1.5776,4.7044,,,,,,,,,,,,,,,51,,,,641
+42171,1.5758,2.195,,-50y,Other,,,21.4885,5.9328,2.7864,2.4901,1.4076,ppmi,,,M,,0.59371,5.7732,5.0471,1.0477,11.0823,1.9,0.47314,3.5651,3.585,52.9992,17.7389,254.4529,5.1605,5.767,2.0754,2.3751,4.5565,9.2672,2.5906,3.722,0.59053,8.3875,13.3552,12.7602,9.7713,2.8784,5.9887,2.3601,23.9499,7.3313,4.4897,1.3329,3.0622,8.6052,16.3328,4.487,5.505,3.5006,1.7062,1.6434,5.8989,14.5189,4.0283,2.6716,14.7705,3.0768,2.634,2.8234,15.5549,2.5375,5.1781,1.5277,18.0591,6.5861,11.7905,4.1843,14.4157,8.851,9.2403,8.5622,4.4266,2.1341,5.3908,,,,0.082866,Other,,GENPD,0.54312,4.7689,4.6753,1.0679,12.0349,2.0328,0.50911,3.7818,3.7123,54.4278,17.3539,255.7958,4.8888,6.2804,2.1749,2.4204,4.9005,9.0946,2.7106,4.0562,0.78214,8.2691,13.1685,9.7875,10.5655,2.7274,5.5573,2.2253,23.0682,5.8445,4.5039,1.2335,2.9814,10.1949,17.4521,3.8108,5.0771,3.9158,1.9336,1.5149,5.0692,13.6215,3.5594,2.7061,13.5256,3.0867,2.4939,2.5276,14.9155,2.8099,5.3078,1.4836,18.0484,7.0906,10.0295,5.1493,12.9692,10.3197,9.0919,9.0833,4.7577,2.0502,5.1294,,,,,,,,,,,,,,,46,,,,642
+50028,1.4266,2.1489,,60-69y,Other,,,18.8371,4.4211,2.2874,2.173,1.1793,ppmi,,,F,,0.49374,4.4024,4.1988,0.88005,9.5258,1.4787,0.39531,3.7608,3.3481,44.9374,15.5676,220.1485,3.6708,4.9702,1.8054,1.957,3.3994,6.7831,2.1241,3.07,0.68261,6.2821,10.1687,16.8356,7.8476,2.263,4.8829,1.7663,18.6536,5.9094,3.8834,1.1132,2.5807,6.943,12.4701,3.6656,4.2312,3.3683,1.4728,1.4396,3.9338,10.2924,3.0733,2.3707,11.6677,2.1339,2.3434,2.419,14.3791,2.1101,4.5626,1.1955,15.2976,5.2363,9.0916,3.9875,9.4491,7.6375,7.9999,7.8437,3.8023,1.7485,4.7832,,,,0.07556,Other,,GENPD,0.45322,4.3006,3.909,0.89795,10.1407,1.7697,0.40508,3.6279,3.6859,44.6442,15.1869,226.5515,3.6334,5.2607,1.8031,1.8529,3.961,7.1226,2.1469,3.2767,0.60723,6.7734,10.9347,13.0799,8.1511,2.2343,4.7795,1.8751,19.8045,5.1032,3.8104,0.96104,2.5709,7.9279,13.8582,2.7857,4.1494,3.4755,1.4923,1.4262,3.6929,10.5409,2.8919,2.3194,9.6081,2.1956,2.2599,2.2534,13.0915,2.2172,4.3974,1.1186,14.7012,5.3022,7.7562,4.4408,9.6399,8.0895,7.6705,8.3297,3.6419,1.5395,4.5676,,,,,,,,,,,,,,,63,,,,643
+50044,0.75581,1.5301,,50-59y,Other,,,17.8739,4.2528,2.3237,2.138,1.0024,ppmi,,,F,,0.40412,3.7892,3.8781,0.78738,9.6956,1.4584,0.33564,2.9367,2.4269,41.6583,15.3014,228.9635,3.4561,3.9786,1.4198,1.9457,3.3587,5.9536,1.7559,3.1371,0.43392,6.2167,9.2277,7.8971,6.4255,2.0458,4.1674,1.5942,15.2834,6.243,3.4962,1.0066,2.5199,6.0582,12.0425,3.8249,3.7589,3.0732,1.268,1.5387,4.1132,9.4592,2.7189,1.96,11.0235,2.437,2.0625,1.9344,11.1093,2.0267,3.5609,1.0379,12.7461,4.5546,8.8656,3.5611,9.9952,7.1286,8.0826,6.4342,3.6572,1.478,4.6889,,,,0.06306,Other,,GENPD,0.36566,3.0885,3.5935,0.76993,10.1262,1.5478,0.32894,3.0417,2.518,40.973,14.4105,224.7565,3.3512,4.7294,1.3513,1.7499,3.5397,6.2836,1.85,3.2105,0.44265,5.997,9.7345,7.5686,6.7992,1.9427,4.0261,1.6646,14.4097,5.4672,3.2478,0.80159,2.1223,7.0768,12.1834,3.0405,3.7156,3.0048,1.3664,1.5104,3.7215,10.1092,2.5431,1.8431,10.0792,1.8709,2.0218,1.7508,11.4209,1.7845,3.3985,0.93806,12.9871,4.5417,7.5373,4.1562,9.6296,6.9703,7.5839,6.4687,3.1186,1.2548,4.5118,,,,,,,,,,,,,,,58,,,,644
+50086,2.2327,2.4717,,70-79y,Other,,,19.9242,4.5258,2.7749,2.3398,2.006,ppmi,,,F,,0.45008,4.7388,4.0972,0.74226,9.0031,1.6656,0.40006,3.1275,3.6137,49.9274,15.6379,211.9318,3.2941,4.3895,1.4685,1.6772,3.7394,6.9363,2.2368,2.9673,1.0896,6.0615,11.6206,32.3568,7.0704,2.4022,3.8272,1.8618,17.8672,5.5301,4.3464,1.0882,2.3992,7.0376,13.2331,3.5024,4.0604,3.0933,1.3024,1.3651,3.8292,9.9623,2.904,2.2808,11.0082,1.9531,2.4505,2.0511,10.8486,1.5611,4.3464,1.2585,13.6111,5.3932,7.7503,3.619,9.8247,6.0658,8.0671,7.4402,3.5172,1.3725,4.7318,,,,0.07753,Other,,GENPD,0.40501,4.1926,3.9387,0.71701,9.6602,1.8423,0.40263,3.0962,3.7239,49.0059,15.1755,221.0976,3.4612,4.5722,1.4755,1.7591,3.5984,7.4238,2.1314,3.171,0.86955,6.1903,11.4786,22.81,7.7315,2.2618,3.848,1.7235,16.4542,4.8775,4.1353,1.1478,2.6507,7.8214,12.8556,2.7915,4.1125,2.9641,1.4708,1.2507,3.5772,9.6207,2.6857,2.3288,9.1517,1.6948,2.3719,2.0195,10.9655,1.558,4.3008,1.1928,12.4628,5.0716,7.0248,4.1653,9.9849,6.7958,7.9546,7.7827,2.9469,1.4013,4.434,,,,,,,,,,,,,,,74,,,,645
+50319,0.99276,1.8624,,50-59y,Other,,,17.1117,4.7781,2.5851,2.311,1.2772,ppmi,,,M,,0.44269,4.9193,4.4971,0.90565,9.965,1.5155,0.39561,3.4254,3.063,46.9152,14.5488,203.7135,3.8197,5.208,1.6621,2.0773,3.4376,7.2596,1.9813,3.2195,0.47658,6.9975,11.069,10.4382,8.4257,2.3124,4.8199,1.7559,17.2293,6.523,3.8167,1.1568,2.6914,7.0947,13.5291,3.9634,4.965,3.197,1.4796,1.4098,4.8014,11.847,3.2361,2.2753,12.2938,2.0748,2.4724,2.1687,12.7829,1.6671,4.254,1.1856,14.8833,5.731,9.0823,4.4569,11.9947,7.196,8.4017,7.1797,3.7013,1.4569,4.5379,,,,0.052742,Other,,GENPD,0.42129,4.4236,4.3552,0.90013,10.2767,1.734,0.41175,4.0406,3.1549,45.3007,13.5079,208.6394,3.9847,4.7754,1.7239,2.1763,3.8327,7.2579,2.0447,3.3975,0.55464,7.5091,10.8826,9.5228,8.9739,2.1488,5.0281,1.83,17.6487,5.7188,3.6511,1.0423,2.5176,8.0127,13.4971,3.4629,4.6563,3.4232,1.4766,1.4031,4.6741,11.3496,3.1068,2.3262,11.1833,2.0161,2.2459,1.9795,11.9611,1.6245,4.2304,1.1082,15.708,5.6016,7.9402,4.6848,11.1883,7.1233,8.3394,7.5342,3.6248,1.3375,4.402,,,,,,,,,,,,,,,53,,,,646
+50485,0.95466,1.5334,,60-69y,Other,,,16.973,3.9566,2.0859,1.7046,1.1327,ppmi,,,F,,0.38528,4.3176,4.1136,0.83209,8.999,1.5486,0.34927,2.6302,2.6084,39.4403,14.173,203.898,4.0038,4.0855,1.6452,1.8216,3.8269,6.441,1.9944,2.7871,0.35769,5.8749,10.4946,15.1311,5.8501,2.3759,4.4807,1.794,19.1271,5.9251,3.7944,1.0261,2.0921,6.3446,13.6386,3.7895,3.8428,2.8045,1.4851,1.3495,3.9813,9.7247,2.8348,2.1321,10.8368,2.1684,2.3165,2.1607,12.017,1.7953,3.8426,1.168,14.7344,4.858,8.1329,3.6292,9.3833,6.9703,7.4867,8.2475,3.2419,1.3638,4.3968,,,,0.073866,Other,,GENPD,0.34329,3.6088,3.885,0.85383,9.5067,1.6283,0.3641,2.7837,2.7291,39.9723,13.8214,210.7352,3.8139,4.1055,1.751,1.8419,3.8504,6.7207,1.9824,3.0251,0.46798,6.0351,10.367,13.9126,6.694,1.9774,4.482,1.6892,18.3882,5.1748,3.5574,0.98387,2.2873,7.1363,13.7123,3.0749,3.9893,3.0518,1.4621,1.3318,3.5604,9.5265,2.651,2.2246,9.3726,2.0087,2.0613,2.0005,11.6677,1.6734,3.7164,1.1035,13.886,4.57,7.5464,4.1032,9.6367,6.9145,7.3158,8.7927,3.2821,1.4119,4.2483,,,,,,,,,,,,,,,64,,,,647
+50621,1.4311,1.4856,,60-69y,Other,,,18.0872,4.5975,2.5315,1.9095,1.4287,ppmi,,,M,,0.44045,4.7241,3.9447,0.81722,9.2974,1.5169,0.3883,3.1015,2.8973,44.0793,14.4829,207.1909,3.2751,4.7515,1.6068,1.6514,3.3174,6.8305,1.7762,2.9131,0.47981,5.7365,10.8154,15.2135,7.3397,2.3799,4.4017,1.684,18.9264,5.9719,3.7684,0.97676,2.3333,7.1485,13.2959,3.1835,3.9495,3.0545,1.4242,1.2902,3.9563,10.3418,2.936,2.1072,11.169,1.8742,2.6392,1.915,11.2564,1.7103,4.1056,1.1904,14.2788,5.3574,7.7205,3.4042,10.0296,7.5357,7.745,7.7264,3.5145,1.3314,4.3686,,,,0.066552,Other,,GENPD,0.38808,4.2358,3.8925,0.80712,9.972,1.7491,0.38467,2.9559,2.9372,43.2513,14.6603,210.1147,3.5351,4.7681,1.6072,1.7761,3.6758,7.0878,1.8819,3.1055,0.6764,6.4238,11.1197,13.5491,7.2289,2.2667,4.4554,1.6389,18.3711,4.9934,3.7027,0.91514,2.4063,7.9538,13.65,2.5449,4.286,3.0246,1.5289,1.3068,3.6599,10.2734,2.6516,2.1733,9.309,1.9085,2.3584,1.9092,11.139,1.6114,4.0191,1.1325,14.163,4.9414,8.1655,4.3736,9.872,7.0401,7.445,7.3775,3.2074,1.3806,4.2078,,,,,,,,,,,,,,,60,,,,648
+50829,2.0057,2.4177,,70-79y,Other,,,17.6032,4.8146,2.3143,2.0104,2.5971,ppmi,,,F,,0.36676,4.0489,3.8503,0.67079,9.9582,1.3882,0.30686,3.5543,2.9997,44.6586,15.8607,199.2254,3.7027,4.6062,1.2478,1.7281,3.2194,6.446,1.6326,2.884,1.3501,6.4775,9.9431,41.2986,7.4342,2.0826,4.2845,1.5674,16.3605,6.6085,3.2115,1.3527,2.7665,6.3162,13.5408,3.4998,4.4808,2.718,1.1781,1.3652,4.0182,10.4618,2.932,2.0773,11.7472,2.4602,2.1372,2.0541,11.9706,2.0731,3.3434,1.0664,11.5973,4.917,9.4807,3.4752,10.1862,7.4105,7.5183,6.033,3.1213,1.3966,4.1445,,,,0.064017,Other,,GENPD,0.3392,3.5276,3.5314,0.62602,9.9595,1.5752,0.30285,3.8292,3.2815,45.4107,15.5053,204.2422,3.6945,4.65,1.1524,1.6536,3.2557,6.3247,1.6561,3.0536,1.9361,7.4451,9.775,33.2486,8.326,2.0833,4.1311,1.5204,16.3459,5.3297,3.205,1.2485,2.638,7.0796,13.3506,3.1857,4.6229,2.9821,1.2466,1.291,3.901,10.5742,2.618,2.081,11.1214,2.0796,2.0576,1.8606,11.2811,1.6746,3.5656,1.0184,11.8147,5.0954,8.4468,4.3154,10.1043,6.689,7.0764,5.9458,2.8944,1.3705,3.9674,,,,,,,,,,,,,,,73,,,,649
+50860,1.5575,2.1133,,60-69y,Other,,,18.9206,5.154,2.5955,2.3066,1.9506,ppmi,,,M,,0.39311,4.707,4.3898,0.92679,9.2498,1.6207,0.36491,3.1326,2.8112,49.2311,15.2077,230.2909,3.497,4.7052,1.8048,1.8226,3.5139,7.7127,2.012,3.1583,0.6435,6.6338,11.1308,28.311,8.1298,2.3314,4.6658,1.7813,18.9909,6.1903,3.9752,1.0346,2.3899,7.0733,13.1945,3.9969,4.7314,3.0887,1.3291,1.3928,3.9895,10.0086,3.2233,2.4915,10.8929,1.9261,2.3747,2.4539,11.4732,1.7613,4.2046,1.0739,14.171,5.4747,8.4055,3.4179,9.8747,7.6964,8.5811,8.0793,3.8193,1.4274,4.8162,,,,0.069655,Other,,GENPD,0.35352,4.0589,3.6249,0.8991,10.6012,1.8538,0.36775,3.258,3.028,49.6775,15.1528,233.7355,3.4579,4.4635,1.7736,1.6247,3.8685,7.4614,1.9319,3.4289,0.60041,6.5873,10.399,24.4644,8.0656,2.0645,4.5831,1.7693,19.4412,5.4479,3.7845,1.0058,2.4325,8.082,13.2719,3.1428,4.306,3.2102,1.2133,1.3786,3.9378,10.7255,2.9904,2.1602,9.0358,1.8595,2.3122,1.9963,11.8317,1.7796,4.1212,1.0795,13.7393,5.2421,8.0022,4.6709,9.9514,8.0348,8.0916,7.904,3.1527,1.4454,4.598,,,,,,,,,,,,,,,69,,,,650
+50901,0.90643,1.8509,,50-59y,Other,,,21.7461,5.2404,3.0904,2.4119,1.0845,ppmi,,,M,,0.51495,5.1007,5.08,0.99535,10.2821,1.7637,0.44727,4.1742,3.0583,51.3584,18.4128,241.7407,4.9277,5.7784,1.9021,2.3415,3.6631,7.5469,2.2216,3.4403,0.38435,7.6238,11.9229,10.4022,8.6374,2.7038,4.8631,2.0344,19.3026,7.0239,4.3039,1.3398,3.4844,7.6689,15.8137,3.6832,5.0104,3.5874,1.7861,1.6371,5.5032,13.7651,3.4705,2.6784,13.5321,2.8864,2.6089,2.4162,14.8299,2.3837,4.68,1.4276,14.5169,6.2512,9.4872,4.1889,11.619,7.8956,9.1928,9.2031,4.1827,2.0063,5.4333,,,,0.07111,Other,,GENPD,0.47777,4.9056,4.9717,1.0199,10.7232,1.9067,0.47851,4.656,3.206,53.5691,17.964,247.8889,4.1498,6.3031,1.9655,2.1983,4.0538,8.2244,2.0769,3.7773,0.50706,7.7286,12.1687,9.5206,10.195,2.7026,5.3172,1.9318,18.8559,5.8729,3.8393,1.1456,3.2351,8.3756,15.3104,3.7525,5.2033,3.8876,1.8928,1.6252,4.9027,13.4083,3.4626,2.4546,11.4762,2.4711,2.825,2.0705,12.6791,2.1419,4.4669,1.3556,15.062,5.8943,9.2204,5.5821,12.043,7.6544,8.811,8.6506,4.221,1.6638,5.2464,,,,,,,,,,,,,,,52,,,,651
+50983,2.1129,1.8265,,70-79y,Other,,,18.4536,5.0504,2.6978,1.9843,1.5464,ppmi,,,M,,0.45228,5.3304,4.5565,0.96495,9.1723,1.6274,0.41084,3.6525,3.1596,47.2019,15.1838,220.5575,4.4666,5.4499,1.9571,2.0868,3.8333,7.7777,2.0941,3.3356,0.51072,6.8661,11.1925,16.5434,8.1368,2.4457,5.3659,1.9645,19.3307,5.9932,3.9738,1.288,2.7805,8.0862,13.0627,3.8051,4.6353,3.4439,1.4514,1.3299,4.7326,11.0389,3.7148,2.6233,12.7351,2.6555,2.5908,2.6778,13.1963,2.0761,4.1951,1.2528,15.4546,5.884,9.239,3.6485,10.5027,7.7601,7.9795,8.4555,3.7923,1.8376,4.5447,,,,0.085669,Other,,GENPD,0.39683,4.3273,4.3935,0.92835,10.5186,1.8613,0.41171,3.9391,3.3334,46.2392,15.2702,228.44,4.0104,5.8343,1.8396,1.8478,4.2865,8.2282,2.1574,3.4882,0.45225,7.4289,11.9112,13.3797,9.1685,2.4544,4.773,1.9267,19.1209,6.2743,3.966,1.0259,2.2381,9.4181,13.9375,3.3831,4.7263,3.5651,1.7309,1.3051,4.4506,11.6897,3.3332,2.6097,11.3437,2.1728,2.6313,2.3952,13.2476,1.9605,4.143,1.2175,15.4564,5.931,7.3217,5.0312,10.2429,7.9847,7.8008,8.4102,3.965,1.5012,4.3703,,,,,,,,,,,,,,,74,,,,652
+51186,1.1898,2.3573,,60-69y,Other,,,17.6739,4.096,2.3856,2.0155,1.1945,ppmi,,,F,,0.42024,4.3863,4.2233,0.92086,9.1866,1.5807,0.39123,2.9563,2.5602,44.2434,13.8748,193.4167,3.9832,4.0727,1.8813,2.0626,3.394,7.2579,2.1936,3.3241,0.40694,6.0301,10.8874,11.2243,6.7504,2.4142,4.2635,1.7856,19.3022,6.5991,4.097,1.1638,2.628,6.6508,13.346,2.7874,3.8478,3.4562,1.5375,1.369,4.054,9.4154,3.2645,2.1121,11.6233,2.1776,2.5313,2.1141,13.9892,1.7238,3.8983,1.1717,14.821,5.464,9.0774,3.3807,10.5009,7.185,8.1139,8.1477,3.9647,1.4655,4.5229,,,,0.077537,Other,,GENPD,0.3884,3.9032,4.0496,0.84931,11.4586,1.7407,0.38562,3.0155,2.6844,44.3648,13.3099,190.0872,3.7257,4.219,1.6154,1.9416,3.9494,7.2162,2.0668,3.4402,0.49601,6.3358,10.5496,10.5122,7.3643,2.2864,4.5298,1.775,18.4023,5.436,3.7635,1.1387,2.4491,7.4032,12.6065,2.7743,3.9548,3.2464,1.5191,1.3243,3.5659,9.5922,2.8438,2.0553,10.4048,1.8146,2.2039,1.8629,13.1988,1.7269,3.8838,1.134,14.0392,5.0369,7.6212,4.0861,10.5819,7.0534,7.8504,7.7117,3.3907,1.2673,4.309,,,,,,,,,,,,,,,66,,,,653
+51252,0.7728,1.988,,60-69y,Other,,,17.741,4.9103,2.7005,2.1763,0.8549,ppmi,,,F,,0.41113,4.1173,3.5326,0.8208,7.436,1.5506,0.35085,3.3431,2.4312,45.8056,15.5253,214.2563,3.1534,4.4607,1.5112,1.6416,3.0614,6.9876,2.0599,2.8944,0.32476,5.6988,9.8667,9.6976,7.4913,2.054,4.178,1.5985,15.0941,5.0258,3.7914,0.79257,1.7797,5.7517,11.1322,2.6216,3.9275,2.9066,1.1218,1.2799,3.9134,8.8733,2.7632,1.935,9.2834,1.9371,2.1155,1.7689,9.608,1.7475,3.4776,1.1263,10.088,3.8368,7.7977,2.6188,8.3967,6.1521,7.2902,7.026,3.1913,1.2533,4.4976,,,,0.065832,Other,,GENPD,0.36964,3.6777,3.639,0.79361,8.9881,1.6644,0.35357,3.7463,2.4105,45.6267,15.2147,217.215,2.8283,4.6895,1.5267,1.7543,3.3809,7.0431,1.9691,2.8985,0.37149,6.5094,10.1786,9.0868,7.5865,2.0458,4.2085,1.6215,14.4104,5.007,3.5605,0.91473,2.0535,6.4652,12.1747,2.4032,4.0343,2.7973,1.3288,1.3008,3.2936,8.8603,2.467,2.0121,7.6023,1.5542,2.0499,1.5809,8.5839,1.3287,3.6396,1.0821,11.0921,3.9993,7.012,4.0072,9.0947,6.2521,6.9445,7.1101,2.9963,1.0234,4.2932,,,,,,,,,,,,,,,65,,,,654
+51440,1.0293,1.4106,,70-79y,Other,,,17.8701,5.5142,2.953,2.3827,1.1125,ppmi,,,M,,0.41355,4.3027,3.8921,0.83047,9.4123,1.3294,0.36794,2.7352,2.6029,52.6342,16.553,211.0171,3.849,4.2955,1.6472,1.7569,3.3152,7.5589,1.8481,3.1784,0.42456,6.9657,10.8317,13.1732,7.3895,2.0995,4.3213,1.5926,15.9014,6.3706,3.5373,1.046,2.3204,6.0792,14.0525,3.4449,4.4077,2.9951,1.4214,1.3069,4.3169,9.8677,3.3064,2.092,11.0965,2.2893,2.3187,2.3911,11.0768,2.008,3.9062,1.0727,13.0099,4.3433,8.8499,3.5141,8.9533,7.9243,7.4862,7.3156,3.1521,1.6148,4.2948,,,,0.048032,Other,,GENPD,0.36998,4.0541,3.9806,0.81255,11.5827,1.5775,0.36024,2.5141,2.8896,52.9567,16.3178,221.8829,3.685,4.3138,1.7343,1.7959,3.8606,7.7519,1.9402,3.3649,0.4781,6.7971,11.0249,11.5208,7.6334,1.9385,4.462,1.6358,15.6991,6.1656,3.5829,1.169,2.4242,6.8173,13.6096,2.8001,4.4895,3.1928,1.3401,1.3632,3.8053,9.9492,2.9941,2.2696,9.6705,2.3982,2.2338,2.1691,11.3675,2.134,3.9089,1.0197,13.4331,4.7275,8.8343,4.2109,10.4225,8.218,7.3418,7.449,2.9625,1.6109,4.1855,,,,,,,,,,,,,,,70,,,,655
+51625,1.1022,1.4819,,50-59y,Other,,,16.7232,4.4788,3.0961,2.5728,1.6561,ppmi,,,F,,0.50795,4.9603,3.6391,0.87928,9.3095,1.5741,0.4504,2.2232,3.57,42.2267,17.3377,237.2094,3.262,3.5372,1.7024,1.7148,3.9125,6.2824,2.0851,2.37,0.25951,5.8496,9.8043,10.0603,6.9728,2.5359,5.4247,1.9851,17.5209,5.306,3.0516,1.0978,2.3361,7.2946,13.7834,2.0227,3.6682,3.3386,1.6082,1.0822,4.0649,10.7808,2.9664,1.7073,11.1492,2.0449,2.2804,1.837,11.2302,1.8689,4.08,1.1901,11.6519,5.5352,9.5146,2.1463,9.4922,7.2593,8.3497,7.3174,4.0643,1.1215,4.8077,,,,0.094604,Other,,GENPD,0.4222,3.9312,3.4993,0.90879,9.4925,1.4595,0.41142,2.9798,2.8627,44.1628,14.4097,239.1435,3.3093,4.4667,1.6994,1.8282,3.791,5.9444,2.1008,2.581,0.30811,6.1512,9.7099,9.2809,8.6878,1.938,4.8684,1.799,17.0107,5.0214,2.3589,1.2093,2.4017,7.6948,14.4406,1.9364,4.0196,3.2856,1.4472,1.2438,3.8556,10.99,2.7333,1.736,10.1405,1.7825,1.9762,1.6952,11.643,1.7409,3.6788,1.1813,12.796,4.9843,7.9896,3.1274,8.4168,7.4596,7.8178,6.9734,3.3812,1.0029,4.6687,,,,,,,,,,,,,,,54,,,,656
+51632,1.4575,2.4019,,60-69y,Other,,,16.6886,4.4789,2.7284,2.3065,1.2712,ppmi,,,F,,0.43264,3.8811,3.7651,0.76811,8.4321,1.2535,0.35975,2.8244,3.0758,48.1339,14.2836,183.9574,3.3695,3.4798,1.4053,1.7512,2.6961,6.4276,1.6694,2.8187,0.57631,5.5664,8.987,13.6068,6.8774,1.9852,4.1945,1.403,16.0269,5.5116,3.4183,1.0719,2.3367,5.8592,11.3108,2.8593,3.6545,2.9235,1.2971,1.3259,3.7793,8.6816,2.9647,1.8799,10.6614,1.6214,2.0449,2.0017,12.2746,1.6621,3.9474,1.0735,12.5636,4.8122,7.3024,3.1857,9.1654,5.7215,7.357,6.2614,3.6814,1.5031,4.288,,,,0.063068,Other,,GENPD,0.39333,3.4858,3.5455,0.7588,8.7377,1.4341,0.35698,2.67,3.2731,49.0073,13.6574,188.544,3.1086,3.9928,1.4696,1.7353,3.3657,6.7813,1.6875,3.001,0.61026,5.4799,10.1215,12.149,7.5704,1.8737,3.729,1.3529,16.0079,4.1909,3.1869,0.81983,2.0498,6.5832,12.3117,2.2903,3.9578,3.2025,1.2759,1.2868,3.4559,8.9296,2.6444,2.0266,8.6446,1.7063,1.9647,1.7092,11.2036,1.47,4.0002,0.95276,12.1145,4.7292,6.6287,3.5196,9.9033,6.0529,7.1952,6.8141,3.2351,1.1898,4.1148,,,,,,,,,,,,,,,63,,,,657
+51731,1.3554,2.6504,,70-79y,Other,,,19.8709,4.717,2.7736,2.2086,1.1945,ppmi,,,F,,0.45703,4.307,4.3034,0.81417,8.2387,1.2744,0.38613,2.8094,3.2177,46.7549,16.6541,212.9814,3.622,3.8022,1.579,1.8646,3.2365,6.6248,1.9572,3.0576,0.56887,5.6192,9.1205,13.3315,6.9153,2.0921,4.3039,1.697,16.8794,5.3419,3.5468,1.0199,2.4141,6.6539,12.1186,2.8907,3.9521,3.2208,1.3163,1.4948,4.0189,9.3767,3.2079,2.2978,10.5981,1.9734,2.3365,2.0169,11.3709,1.6193,4.6423,1.222,13.2342,5.3623,7.7587,2.9399,9.6252,6.461,8.0657,6.8814,3.7965,1.3324,4.8341,,,,0.065151,Other,,GENPD,0.41266,3.4089,4.0425,0.82905,9.0609,1.4857,0.38038,3.0281,3.4374,46.0284,16.5983,219.2273,3.384,4.227,1.5572,1.9816,3.4465,6.6828,1.9515,3.1503,0.7693,5.9758,9.8555,14.6391,7.5667,1.9972,3.7762,1.5956,16.2567,4.3893,3.2984,0.8895,2.3507,7.175,13.0249,2.8184,3.9506,3.4615,1.5531,1.4619,3.558,9.2938,2.8876,2.1549,8.9766,1.843,2.1419,1.7718,11.0503,1.5068,4.2309,1.0953,13.6266,5.5056,6.7817,3.9403,9.5875,6.4844,7.8866,7.1599,3.6847,1.3118,4.5724,,,,,,,,,,,,,,,71,,,,658
+51800,1.365,1.8592,,70-79y,Other,,,17.6116,4.439,2.0752,2.0888,1.6021,ppmi,,,F,,0.3835,3.879,3.7859,0.81022,8.1556,1.374,0.35581,2.15,2.5449,38.7275,14.747,205.1866,3.4831,3.5001,1.508,1.6397,3.0078,5.7629,1.8523,3.0293,0.55404,5.2075,9.1557,19.6352,6.0773,2.0118,4.0435,1.6093,15.2365,5.773,3.4111,0.82791,1.9147,6.021,11.9583,2.6475,3.2086,2.8023,1.2177,1.3379,3.9037,9.4977,2.7774,2.249,8.7409,2.004,1.9575,2.1737,8.7876,1.5271,3.4704,1.1424,11.7108,4.3108,7.8801,2.6486,8.9549,6.0863,7.2299,6.5856,3.0674,1.2313,4.2705,,,,0.064422,Other,,GENPD,0.3728,3.2803,3.8977,0.79084,9.712,1.4224,0.38002,2.2608,2.84,38.4848,14.5824,212.5692,3.6563,3.8191,1.5491,1.8471,3.2909,6.106,1.9163,3.3671,0.81207,5.3445,9.7805,13.7776,6.5164,1.8757,4.0315,1.6168,15.5376,4.0034,3.291,0.86594,2.1408,7.1757,11.9658,2.1156,3.3689,2.773,1.3177,1.4203,3.4197,9.0073,2.7063,2.2314,7.2276,1.7527,1.9334,2.0214,8.3253,1.5961,3.5636,1.1085,11.7035,4.6539,7.533,2.9723,9.0078,6.6435,7.139,6.9503,2.9986,1.3641,4.2305,,,,,,,,,,,,,,,72,,,,659
+51844,1.2265,1.9756,,+80y,Other,,,17.2157,4.0185,2.5643,2.1407,1.1113,ppmi,,,F,,0.42861,3.9941,3.5154,0.7097,6.4672,1.3283,0.35112,2.6602,2.5528,41.9185,13.1473,196.9126,3.7501,3.9155,1.3629,1.6919,2.833,7.0892,1.9856,2.6681,0.48753,4.7192,9.9398,15.3144,6.7382,1.9167,4.2175,1.6457,17.6541,4.13,3.6189,1.1943,2.5397,5.8635,11.5005,2.5875,3.7046,2.8214,1.1991,1.1104,3.9489,9.9468,2.8746,2.0732,9.694,1.8591,2.1052,1.9233,10.5975,1.419,3.8641,1.232,12.9794,5.0505,6.4885,2.6823,9.7717,5.4242,7.2502,6.5689,3.1993,1.2688,4.121,,,,0.08305,Other,,GENPD,0.39614,3.463,3.2874,0.73153,7.2183,1.6177,0.37368,2.8321,2.7496,41.3397,12.8592,192.3816,3.1808,4.2469,1.4035,1.5359,3.1984,6.8114,1.9529,2.9415,0.57541,4.8929,10.1398,14.7913,7.5055,2.0114,4.1763,1.7124,16.947,4.028,3.5546,1.2788,2.6565,6.8225,12.1252,1.8019,3.629,2.8133,1.2664,1.0629,3.5981,10.0464,2.7273,2.0081,9.0268,1.5942,2.1311,1.6586,11.1511,1.2235,3.8676,1.2164,13.3174,4.9892,6.0384,3.1453,9.4079,5.3273,7.0392,6.6715,2.7866,1.1794,3.882,,,,,,,,,,,,,,,81,,,,660
+51971,1.0967,1.807,,60-69y,Other,,,16.8601,4.4836,2.3052,2.0392,1.6626,ppmi,,,M,,0.41985,4.1965,4.4045,0.85738,10.4383,1.478,0.37947,3.8285,2.8965,44.0518,13.9184,222.8277,3.8547,5.3431,1.5739,1.9318,3.5905,6.851,2.0988,3.1284,0.43515,7.3362,10.7425,21.5073,7.9493,2.2766,4.12,1.8355,18.0237,7.7137,3.9657,1.0945,2.5265,7.0236,13.4054,4.2423,4.6756,2.6668,1.5771,1.4044,4.8921,11.3465,3.0151,2.5107,10.8624,2.5092,2.5802,2.5099,11.2846,2.3143,3.6625,1.2464,14.044,4.9729,8.7031,4.5965,11.806,7.2435,8.0527,7.3547,3.4712,1.8127,4.608,,,,0.067638,Other,,GENPD,0.39319,4.1526,4.0224,0.88667,10.5012,1.7944,0.38335,3.898,3.3297,43.8998,13.8269,225.2962,3.9387,6.004,1.7279,2.0838,4.0808,7.1175,2.0675,3.2389,0.5947,7.0645,11.0748,16.4179,8.818,2.3202,4.2068,1.9247,16.7787,5.5553,3.6078,0.93915,2.2629,7.517,13.8175,3.0826,4.1241,3.4934,1.5996,1.4236,4.582,11.6111,2.9341,2.374,9.231,2.1715,2.2989,2.2271,11.3055,2.1112,3.6917,1.1359,13.1271,5.04,8.313,4.7612,11.3888,7.7141,7.6973,7.6879,3.5112,1.5482,4.4423,,,,,,,,,,,,,,,67,,,,661
+52062,1.1169,2.1978,,-50y,Other,,,17.5562,5.5358,2.5221,2.5316,1.2795,ppmi,,,M,,0.51579,4.6874,4.1904,0.90084,10.5559,1.6978,0.41975,4.1437,3.2998,50.4132,15.4229,260.9629,4.2225,5.3363,1.8048,2.0084,3.7127,8.3751,2.2883,3.1984,0.40065,8.8037,12.3773,11.9516,8.8739,2.5952,5.0375,1.8385,19.3325,7.6148,4.42,1.0633,2.9423,7.7014,16.315,4.6306,5.064,3.7492,1.515,1.6162,4.9422,13.1733,3.554,2.3743,12.4286,2.6939,2.6046,2.554,13.7877,2.404,4.5942,1.2931,15.4636,6.1677,9.4631,4.183,12.2654,9.3337,8.6037,8.523,4.2033,1.8295,5.0557,,,,0.082415,Other,,GENPD,0.44384,3.6775,4.1317,0.91824,11.9296,1.9282,0.41915,3.8205,3.3571,51.8067,14.9443,266.5688,4.2541,5.9435,1.9006,2.034,4.2679,9.058,2.2851,3.4994,0.50612,8.6137,13.7676,10.2252,9.5141,2.5578,5.0294,1.9428,19.3651,6.5055,4.0047,1.0377,2.7454,9.0162,16.9287,4.0453,5.097,3.5579,1.7336,1.5981,4.3386,12.3591,3.3609,2.4973,9.736,2.4201,2.4048,2.2087,13.0459,2.1343,4.4799,1.1781,16.5393,5.819,9.087,5.2257,12.0202,9.0964,8.341,8.8096,3.7968,1.7059,4.8558,,,,,,,,,,,,,,,49,,,,662
+52128,1.5852,2.3819,,70-79y,Other,,,17.7583,4.681,2.6683,2.1648,1.5859,ppmi,,,M,,0.45426,5.0475,4.0795,0.91768,9.04,1.5062,0.3905,3.956,3.7564,46.8986,14.6735,210.8692,3.7166,5.2113,1.7509,1.8049,3.6737,6.9085,1.9582,3.2513,0.76335,7.3236,10.8937,27.3017,8.2754,2.3192,4.7249,1.7704,19.6316,6.7626,3.669,1.3539,2.8554,7.9045,13.4084,4.6394,4.6935,3.0265,1.5057,1.3788,5.0902,11.4625,3.4861,2.2998,12.1667,2.1379,2.3217,2.3707,13.2248,1.9385,4.2304,1.1708,15.2361,5.5385,8.6919,3.9203,11.234,7.4325,7.9355,7.7593,3.809,1.5795,4.6337,,,,0.075306,Other,,GENPD,0.40181,4.6242,3.7407,0.89425,10.5447,1.7451,0.38655,4.0006,3.81,46.0129,14.1453,215.4867,3.8191,6.0081,1.6495,1.9378,4.2367,7.4203,2.0342,3.4711,0.85325,7.3965,11.4981,25.2997,8.9796,2.3115,4.8644,1.7629,18.3286,5.7382,3.6018,1.2553,3.0162,8.8309,13.6927,3.4277,4.6251,3.4806,1.5319,1.354,4.3366,11.3437,3.1999,2.37,11.8184,2.2424,2.0987,2.2294,12.9625,1.7977,3.972,1.108,14.4819,5.7667,7.5274,4.8578,10.2364,6.8315,7.7104,8.1606,3.4915,1.5734,4.4008,,,,,,,,,,,,,,,73,,,,663
+52146,1.6447,2.613,,60-69y,Other,,,20.2865,4.7465,2.6795,2.1938,1.125,ppmi,,,M,,0.45729,5.2449,4.0269,0.86331,8.596,1.6248,0.40677,3.0907,3.1552,48.0481,16.0277,242.298,3.6668,4.912,1.7173,1.9888,3.9083,7.0028,2.3561,3.0814,0.72422,5.8137,10.0858,21.9114,7.9477,2.521,5.2126,1.956,19.6155,5.8554,4.237,1.1159,2.9681,8.0682,12.4745,3.4214,4.6101,3.1424,1.552,1.4575,4.351,10.8423,3.3848,2.0948,11.0885,2.5987,2.406,1.9095,12.1657,1.9047,3.795,1.3508,15.9463,6.5072,9.4146,3.7552,10.7701,6.5987,8.2952,7.4292,4.0623,1.4585,5.0005,,,,0.074587,Other,,GENPD,0.40022,4.8686,3.9354,0.92618,9.6195,1.8734,0.39074,3.0655,3.3592,48.2206,15.8635,249.6095,3.6339,4.8782,1.8338,1.8795,4.1959,7.4121,2.2567,3.3402,0.76903,6.2392,10.3123,19.657,8.0902,2.2603,4.9123,1.827,18.4019,5.0332,4.0119,1.1523,2.7726,8.8662,12.7209,3.0697,4.2998,3.204,1.6133,1.51,3.9522,11.2542,3.1521,2.211,10.7059,2.1501,2.2985,1.9812,12.6073,1.8193,3.7314,1.2633,16.2736,6.5208,7.77,4.3271,10.8519,7.3035,7.7812,8.5108,3.4725,1.4043,4.8253,,,,,,,,,,,,,,,60,,,,664
+52530,1.2761,2.2812,,60-69y,Other,,,21.6474,5.5072,2.9891,2.3727,1.1497,ppmi,,,M,,0.40453,4.2273,3.7688,0.8254,9.2527,1.5037,0.36398,3.1942,2.7397,52.9255,17.4442,235.6248,3.7578,4.6198,1.5489,1.892,3.3294,7.4382,1.8914,2.9189,0.47328,6.5456,10.5168,11.9199,7.7602,2.2764,4.8579,1.6263,17.1889,6.5709,3.7716,1.1365,2.497,6.3865,12.801,3.9673,4.5018,3.0044,1.4227,1.5161,4.3896,10.0785,2.9918,1.9541,10.7217,2.5205,2.2977,2.1338,11.3565,2.4937,3.7031,1.1271,12.5279,4.675,8.7298,4.0314,10.7378,7.3738,8.3427,7.1495,3.6632,1.5823,5.3097,,,,0.065851,Other,,GENPD,0.37398,3.8684,3.5298,0.83305,9.8457,1.8347,0.36976,3.4276,2.8789,54.0502,17.057,239.7823,3.3725,4.8922,1.6588,1.8835,3.7707,7.4884,1.8915,3.1146,0.56186,7.1067,11.2786,11.6275,8.5696,2.2346,4.4073,1.6675,16.2436,5.2016,3.5566,1,2.5654,6.9952,13.204,3.7638,4.7629,3.1891,1.4653,1.524,3.9776,10.2916,2.7662,1.925,9.3351,2.097,2.3106,1.926,11.444,2.0082,3.6416,1.0447,13.2416,4.9119,7.6033,4.7789,10.5714,7.1947,7.986,7.4768,3.2779,1.424,5.1484,,,,,,,,,,,,,,,68,,,,665
+52678,1.4665,2.0256,,60-69y,Other,,,23.0028,5.8343,3.3085,2.8118,1.7135,ppmi,,,M,,0.5539,5.4101,5.118,0.90496,9.9313,1.8347,0.45314,3.9081,3.2404,56.3653,19.0604,254.4181,5.1728,5.3413,1.7276,2.4071,3.6558,8.4008,2.5355,3.2621,0.43277,7.3361,13.0835,14.2154,9.1062,2.914,5.2567,2.2919,22.3526,5.9728,4.7882,1.399,3.2298,8.3553,15.6972,3.6088,4.902,4.3335,1.8057,1.6611,4.6723,11.4574,3.4826,2.7677,13.3362,2.9997,3.0095,2.8668,15.9385,2.5574,4.9598,1.477,17.2928,6.2601,9.5026,3.4165,10.9724,8.311,9.6544,8.8679,5.1118,2.0585,5.496,,,,0.082035,Other,,GENPD,0.49318,4.7941,4.7036,0.91638,9.7821,2.085,0.45155,4.0699,3.3107,56.6523,18.5431,258.9239,4.9478,5.1639,1.8406,2.2964,4.1614,8.3134,2.6131,3.4533,0.60366,6.7108,12.4906,12.8868,9.5346,2.6966,5.3599,2.2487,21.7014,5.1865,4.7775,0.97852,2.8194,9.1583,15.6145,3.0764,4.7346,3.9654,1.9127,1.6764,4.4362,11.7598,3.1694,2.5102,11.3117,2.4343,2.8187,2.3588,16.3324,2.0766,4.8217,1.4086,16.1423,6.1833,8.2935,4.5684,10.9215,8.5386,9.2409,8.7794,4.3614,1.7808,5.2554,,,,,,,,,,,,,,,69,,,,666
+53595,0.80224,1.9891,,60-69y,Other,,,15.668,3.8176,2.0046,1.7254,0.91718,ppmi,,,F,,0.38706,3.7782,3.2567,0.7282,8.2437,1.2742,0.31174,3.045,2.3332,35.5973,12.2794,195.1414,3.0554,4.302,1.3665,1.737,2.7128,5.9079,1.5179,2.6612,0.50148,4.9685,9.498,11.0247,6.5643,1.9388,3.7007,1.3967,14.5562,5.0609,3.0669,0.99607,2.2008,5.5257,11.8673,2.6575,3.5058,2.8131,1.2122,1.2305,3.2822,8.5366,2.5782,1.7927,10.0207,2.076,1.9877,1.828,10.8292,1.7332,3.4482,0.92474,11.3367,4.4696,7.7561,3.0743,8.4865,6.1422,7.0453,6.3101,3.4121,1.171,4.0082,,,,0.064548,Other,,GENPD,0.33578,3.2897,3.1656,0.72455,8.9279,1.4174,0.31531,2.8308,2.5394,36.1754,11.8643,197.6147,3.1161,4.171,1.4155,1.5634,2.7239,6.0923,1.5802,2.9155,0.52421,5.5505,9.9636,12.0446,6.6526,1.8289,3.5378,1.3229,13.6372,4.747,2.9095,0.97171,2.4421,6.0502,12.5244,1.9633,3.4992,2.7559,1.2534,1.2386,3.0737,8.7008,2.4759,1.6347,9.2586,1.8983,1.8596,1.5218,10.7283,1.5092,3.3998,0.89769,11.9548,4.3637,6.3704,3.3141,9.2241,5.7515,6.8925,6.4757,2.7312,1.0725,3.7752,,,,,,,,,,,,,,,65,,,,667
+53600,1.5273,2.3504,,60-69y,Other,,,18.0899,4.9028,2.5726,2.2545,1.6636,ppmi,,,M,,0.37302,4.542,4.2884,0.79968,9.3874,1.5437,0.33037,3.4151,2.4891,46.4814,15.3047,230.5699,4.2029,4.8726,1.5802,1.9435,3.474,7.3127,2.0714,3.008,0.51523,7.6737,11.9468,14.234,7.1317,2.2588,5.165,1.7546,19.1939,7.5813,3.604,1.1298,2.6431,6.7714,13.635,4.448,4.3273,3.6111,1.4844,1.5841,4.6047,10.9685,2.9189,2.4282,12.3789,2.0522,2.2274,2.1977,14.0224,1.6147,3.6839,1.1208,14.8813,5.3105,8.2235,4.2378,11.7499,6.3786,8.515,7.3047,4.0572,1.4596,4.66,,,,0.068146,Other,,GENPD,0.35639,3.7641,4.242,0.80963,10.4364,1.6539,0.38507,3.5254,2.5734,47.3707,15.3097,231.6104,3.9324,5.2477,1.5966,2.0817,3.6318,7.8633,2.0198,3.2535,0.62746,7.2517,11.8785,11.3491,7.7192,2.16,4.8673,1.6997,18.1987,5.6941,3.46,1.3662,3.0826,7.6153,14.0279,3.6776,4.2156,3.5375,1.4638,1.4931,4.1855,10.3609,2.8276,2.2119,12.0331,1.7791,2.1213,2.0066,14.2695,1.5432,3.6824,1.0836,14.5222,5.4944,7.7101,4.899,10.5663,6.7028,8.1906,7.387,3.4886,1.3013,4.4513,,,,,,,,,,,,,,,63,,,,668
+53988,1.4206,1.8092,,50-59y,Other,,,17.5424,4.9137,2.7589,2.2073,1.0805,ppmi,,,M,,0.40373,4.5237,3.6826,0.87018,10.1275,1.6281,0.37714,3.5894,2.7265,49.1992,14.9321,218.0762,3.6174,4.9661,1.5769,1.8685,3.2995,7.6556,1.9402,3.1409,0.37201,7.3364,10.7286,9.6135,7.9733,2.3755,4.7179,1.6452,18.0671,7.0261,3.876,1.0986,2.6843,6.4348,13.1245,4.0167,4.8228,3.6453,1.4219,1.4,4.458,11.0686,2.9994,2.0121,10.1298,2.0603,2.3134,2.2162,12.4736,2.2202,4.1194,1.05,12.2289,5.0783,9.6368,3.8222,9.7757,7.2051,7.9711,6.9361,3.7856,1.4639,4.5069,,,,0.060332,Other,,GENPD,0.39245,4.2805,3.5526,0.85963,9.8429,1.696,0.3718,3.5383,2.781,49.3354,14.7015,217.7002,3.4261,4.935,1.6696,1.773,3.8651,7.8924,1.9811,3.4907,0.49644,6.1829,11.2033,6.5431,9.1364,2.2348,4.6897,1.8076,17.726,5.0468,3.4868,0.83711,2.3168,7.5149,14.3699,3.1038,4.8226,2.879,1.613,1.3484,4.1949,10.9528,3.0955,1.93,9.7026,1.9047,2.105,1.9164,11.2607,1.7837,3.8951,0.96963,12.5954,4.7007,8.4448,4.5432,9.5669,7.8039,7.7842,7.6968,3.5543,1.3281,4.4065,,,,,,,,,,,,,,,56,,,,669
+54144,1.0812,1.5459,,60-69y,Other,,,17.2851,4.8759,2.3488,2.0968,1.2376,ppmi,,,M,,0.46667,5.0399,3.7879,0.847,12.0037,1.7308,0.3908,3.7711,3.3195,43.4474,13.4073,260.7992,3.9302,5.9286,1.5894,1.7796,3.5067,7.7412,2.103,3.1153,0.46996,7.7349,12.4031,18.2897,8.3485,2.5483,5.3474,1.9251,19.7203,7.3059,4.1955,1.0996,2.7708,7.426,15.751,4.0372,4.5519,3.4224,1.3934,1.4471,4.8352,12.5183,3.2446,2.2578,13.5175,2.5824,2.6559,2.3227,12.7478,2.1084,4.0696,1.3158,15.8779,5.5806,11.679,4.3878,12.4493,8.0266,8.2459,7.7704,3.8344,1.6599,4.7649,,,,0.071083,Other,,GENPD,0.41418,4.6058,3.8375,0.93302,12.0838,2.0111,0.40061,4.0272,3.4915,45.2981,13.5397,265.2032,3.7809,6.3958,1.7191,1.7864,4.0626,7.7808,2.1545,3.45,0.54161,7.3906,12.1668,17.1247,8.9867,2.4639,5.3284,1.8913,19.7495,6.6006,3.9895,1.1184,2.5103,8.4755,15.3772,3.5795,4.7786,3.2827,1.454,1.4901,4.5261,13.5209,3.0301,2.3183,11.5247,2.6221,2.4037,2.2544,13.0596,2.1519,3.9968,1.2069,15.471,5.4557,9.3628,5.6621,13.1614,7.662,7.7766,8.0705,3.3949,1.6592,4.6325,,,,,,,,,,,,,,,65,,,,670
+54197,0.91168,1.5339,,60-69y,Other,,,19.1207,4.7711,2.6946,2.2884,1.1591,ppmi,,,M,,0.51613,5.1229,4.8841,1.0023,10.7179,1.8233,0.44588,4.2031,3.1178,49.5874,15.0159,264.0478,4.0492,4.7893,1.9211,2.0859,3.8954,8.5096,2.1536,3.1898,0.38345,7.9432,12.85,8.6996,9.2731,2.8619,5.2735,1.9951,21.1553,7.9397,4.365,1.3363,3.3469,7.6122,15.7323,4.1479,5.2791,3.5979,1.8069,1.4381,5.4019,11.6368,3.4742,2.4469,13.4839,2.523,2.9963,2.5358,15.2214,2.293,4.7468,1.2962,16.1328,5.9736,9.114,4.2741,13.3905,8.8105,8.6541,8.0666,4.2086,1.6912,4.6431,,,,0.071039,Other,,GENPD,0.45245,4.784,4.5605,0.9874,12.2049,2.2108,0.43239,4.6289,3.2079,50.0977,14.6732,268.0482,4.1487,5.8304,1.9133,2.0767,4.4457,8.7197,2.3453,3.4013,0.43483,8.3141,13.0265,8.2525,10.2271,2.6481,5.2352,2.0533,20.3111,6.2589,4.2299,1.3728,3.287,8.6827,15.6907,3.9172,5.3654,3.3754,1.6666,1.4572,4.5531,11.2712,3.1915,2.5824,12.5172,2.7052,2.5562,2.2169,15.1042,2.0599,4.6944,1.2037,16.4842,6.0166,9.3505,5.4551,12.1735,7.9159,8.5489,8.2481,3.659,1.5285,4.4515,,,,,,,,,,,,,,,68,,,,671
+54265,1.9285,2.3227,,70-79y,Other,,,18.8628,4.8217,2.7142,2.2488,1.9871,ppmi,,,M,,0.47625,4.7426,5.4403,0.95359,12.1561,1.757,0.47983,3.7985,3.1754,45.8468,14.6046,208.2635,5.0354,5.1074,1.858,2.572,4.4411,8.2462,2.3482,3.3254,0.45277,7.6794,14.4114,24.7923,8.3112,2.9803,5.2487,1.9692,24.4961,7.9641,4.6837,1.6746,3.5044,8.0268,19.3738,4.2927,4.7478,4.5211,2.1082,1.1838,4.9322,12.1811,3.6212,2.8239,15.5631,3.2703,2.9807,2.7697,17.4795,2.6838,4.7514,1.3896,16.95,6.3918,11.5069,4.0261,13.3246,9.4036,8.7714,9.7429,5.02,2.0339,4.5029,,,,0.086859,Other,,GENPD,0.46661,3.9617,5.0613,0.94061,15.1495,2.2516,0.49384,3.531,3.3579,46.6823,14.8611,211.4973,4.8776,5.4257,1.9831,2.5252,4.6677,8.8314,2.4207,3.5101,0.62631,7.376,15.883,22.8561,9.0873,2.9371,4.9692,1.8965,23.7287,6.829,4.648,1.4117,3.1806,9.4883,20.7703,3.2215,4.8467,4.4993,2.043,1.1589,4.4327,12.9706,3.3426,2.6607,13.7312,2.901,2.7693,2.3959,17.7626,2.67,4.6607,1.321,17.8111,6.5721,10.5698,5.3118,14.1734,10.461,8.4397,9.858,4.617,1.9713,4.2369,,,,,,,,,,,,,,,75,,,,672
+55124,0.89215,1.741,,50-59y,Other,,,17.6948,4.6838,2.3297,2.296,1.1683,ppmi,,,F,,0.43948,4.4526,3.9801,0.86496,8.3367,1.5807,0.37214,3.1423,2.7424,45.6156,13.672,188.9499,3.7079,4.8631,1.678,2.1075,4.0548,6.4725,2.2844,3.0888,0.4212,6.0465,10.137,10.9127,7.3231,2.553,4.5675,1.8114,18.9159,6.3008,4.222,1.0602,2.7451,7.052,13.2117,2.8,4.1832,3.5682,1.6081,1.2793,4.3608,10.3446,2.9381,2.0366,12.9325,2.0237,2.7348,2.0414,13.154,1.695,3.8297,1.1701,15.2155,5.6684,7.9882,4.0406,10.0911,6.9137,8.4369,7.2955,4.2925,1.5271,4.2681,,,,0.077369,Other,,GENPD,0.38555,4.0964,4.0293,0.86965,10.1974,1.8364,0.3782,3.3409,2.7517,45.7107,13.2977,192.6574,3.5605,4.6586,1.6649,1.9697,4.125,6.6291,2.2333,3.3919,0.60298,6.6674,10.6274,8.5854,7.6509,2.3951,4.5145,1.8407,18.4216,5.0931,4.1108,1.1059,2.7187,7.4743,13.8355,2.7771,4.2895,3.1847,1.774,1.2737,4.0112,10.5383,2.6634,2.1941,10.1114,1.8251,2.5857,1.7533,12.6715,1.5705,3.7923,1.0885,15.2869,5.1932,7.0341,4.0548,10.8592,6.5748,8.0729,7.0855,3.8449,1.2535,4.0992,,,,,,,,,,,,,,,59,,,,673
+55251,0.90286,1.9645,,50-59y,Other,,,22.1514,5.598,2.9143,2.5864,1.3011,ppmi,,,M,,0.56988,5.4033,5.3816,1.0006,10.3359,1.909,0.45522,3.4213,3.458,51.4367,19.4002,281.9769,5.023,4.7668,1.8401,2.5023,4.2405,8.1133,2.387,3.6264,0.47615,7.4096,12.9087,10.785,8.0417,2.8085,5.9002,2.0883,21.4429,6.5615,4.6363,1.3727,2.9797,7.7919,15.5089,4.1179,4.4829,3.6001,1.9628,1.8773,5.3641,12.279,3.3989,2.8101,12.0844,2.4794,2.7494,2.7774,13.0989,2.0859,5.078,1.3372,16.7454,5.9918,10.2353,4.1003,12.6727,8.5277,9.4462,8.25,4.3491,1.6503,5.5138,,,,0.072484,Other,,GENPD,0.50551,4.8976,4.8957,0.99133,11.1697,2.2182,0.46732,3.6311,3.3794,51.891,19.1004,282.0108,4.5864,5.4429,1.9588,2.4868,4.2387,8.2237,2.2965,3.8646,0.57978,6.9423,13.3361,7.9961,8.5125,2.8021,5.0623,1.9163,18.7278,5.4564,4.3677,1.1288,2.7808,8.5334,16.2957,2.8314,4.3491,4.5411,2.1438,1.789,4.8538,12.6093,3.101,2.852,11.0286,2.309,2.5648,2.3789,12.692,2.0825,5.1034,1.2375,15.4977,6.6432,8.531,4.8568,11.294,8.5615,8.9672,8.7801,4.5099,1.7197,5.2999,,,,,,,,,,,,,,,59,,,,674
+55441,2.5943,2.1743,,60-69y,Other,,,20.0645,5.3461,2.7145,2.3838,2.4344,ppmi,,,M,,0.5278,5.7445,4.9782,1.0493,10.5583,1.8894,0.45369,3.4616,3.9362,50.2056,15.4927,230.1025,4.5804,5.2712,2.01,2.2836,4.958,8.4525,2.5757,3.6176,0.68382,7.0579,13.1557,47.942,8.4974,3.0011,5.4858,2.4223,23.1378,6.6015,4.6679,1.3719,3.4187,9.2344,15.1307,4.0495,4.462,3.5815,1.9096,1.5704,5.3531,13.6248,3.6495,2.6781,13.1059,2.9161,2.6709,2.54,15.77,2.3536,4.7865,1.4591,17.1005,6.6008,9.9465,4.8035,13.5023,8.0311,9.4504,8.0414,4.8096,1.843,5.0529,,,,0.073621,Other,,GENPD,0.50703,4.5051,4.8292,1.0266,11.5461,2.1336,0.47528,3.4576,4.267,51.104,15.4914,235.49,4.6189,5.8264,2.0488,2.2437,4.8448,8.63,2.5992,3.9497,0.68467,7.7015,12.9937,36.031,8.8154,2.6494,4.7381,2.3435,20.5539,6.081,4.4496,1.804,4.0096,10.5197,15.8411,3.2525,4.9549,4.1113,1.695,1.5631,4.7472,13.252,3.4674,2.6841,11.8477,2.8566,2.7856,2.2263,15.5192,2.373,4.7948,1.4264,16.3575,6.9473,8.8435,4.9407,12.5353,8.5102,9.2657,8.098,3.8547,1.7874,4.7968,,,,,,,,,,,,,,,68,,,,675
+55615,0.86024,2.05,,50-59y,Other,,,17.3082,4.7046,2.8397,2.1633,0.92404,ppmi,,,F,,0.41013,4.2886,3.8623,0.85129,9.3965,1.3372,0.40392,3.3522,2.351,50.876,14.9389,197.9069,3.7005,4.7683,1.6343,1.8961,3.3556,7.1823,1.982,2.9852,0.31114,6.5643,10.7413,9.9687,7.7943,2.1367,4.2932,1.6687,17.5417,6.5637,3.7403,1.2046,2.6348,6.1794,13.5283,3.9384,4.507,3.4053,1.4245,1.3004,3.8315,9.5238,3.0835,2.0803,10.3452,2.2565,2.3398,2.1041,11.7649,2.0374,4.0274,1.2504,13.1633,4.7984,8.5263,4.1115,10.8399,7.4358,6.8195,7.3334,4.0308,1.4023,4.1836,,,,0.07139,Other,,GENPD,0.37988,3.9315,3.8415,0.85696,10.8412,1.6803,0.39948,3.454,2.4779,51.1832,14.6451,202.1841,3.8341,5.0177,1.6623,2.0657,3.5828,7.6902,2.0802,3.1628,0.3581,7.372,10.9987,8.2452,8.265,2.0842,4.526,1.7412,17.2614,5.4463,3.713,0.98415,2.1722,6.7075,14.1825,3.3145,4.339,3.3778,1.4627,1.2774,3.7987,9.9521,2.8209,2.078,9.4685,2.0734,2.2057,1.9008,11.3967,1.9418,3.9581,1.2181,13.1408,4.4886,7.3658,4.9537,10.5181,7.378,6.7689,7.5476,3.3065,1.4781,4.0192,,,,,,,,,,,,,,,55,,,,676
+55875,1.4171,2.3704,,50-59y,Other,,,20.0608,4.8368,2.4587,2.2022,1.6692,ppmi,,,M,,0.50579,4.8648,4.4043,0.9678,10.2171,1.9098,0.41201,3.601,3.1372,47.5699,16.1653,281.5302,4.2661,5.5994,1.799,2.1295,3.9313,8.0201,2.1704,3.6363,0.56577,6.861,11.7544,14.3933,8.1706,2.9699,4.8205,2.1028,21.0707,6.8667,4.5649,1.187,3.0188,7.7039,13.9518,3.4078,4.3366,3.7223,1.727,1.6369,4.9166,12.3277,3.4685,2.3126,11.8798,2.9174,2.8987,2.7807,12.7463,2.718,4.4044,1.3093,15.8037,5.5635,9.4861,3.8252,13.0838,8.2852,9.3188,8.6669,4.4609,2.0008,4.9991,,,,0.079922,Other,,GENPD,0.4533,4.2273,4.3101,0.96622,10.7813,2.2138,0.42449,3.7791,3.2695,48.0259,15.5186,280.3959,3.7203,6.179,1.9418,2.0354,4.1468,8.3447,2.1718,3.8685,0.7421,8.126,13.3294,13.2757,8.9549,2.7904,4.9263,1.9582,18.7668,5.2892,4.2111,1.2347,3.1258,8.4682,14.9953,3.1104,4.5823,3.7465,1.8249,1.5962,4.7699,12.8754,3.2054,2.4575,10.1792,2.3559,2.8731,2.3729,12.668,2.118,4.3723,1.2754,16.561,5.6457,8.5113,4.8985,12.2185,7.4603,9.2982,8.5475,4.0299,1.6611,4.6872,,,,,,,,,,,,,,,59,,,,677
+56744,1.7462,2.4955,,50-59y,Other,,,18.0761,4.7592,2.4698,2.1272,1.462,ppmi,,,M,,0.5044,4.7386,4.4174,0.89367,11.4068,1.885,0.41923,3.4984,3.3583,44.5555,13.9501,240.9112,4.1654,5.6659,1.6553,1.959,4.0573,7.3886,2.4076,3.0923,0.48967,6.8146,11.2103,22.1608,7.9586,2.7626,4.7427,1.9841,20.359,7.1972,4.5268,1.163,2.7907,7.2281,14.3716,3.6424,4.4114,3.6827,1.5741,1.5241,4.82,12.5568,3.279,2.2497,13.432,2.34,2.5985,2.1416,13.642,2.2523,4.7012,1.3773,16.2869,5.6,10.2236,4.3435,12.3814,7.3622,8.4848,7.2708,4.0238,1.5337,4.9629,,,,0.085957,Other,,GENPD,0.45543,4.2142,4.2764,0.90963,11.9229,2.0584,0.43247,3.8863,3.4745,45.3296,14.0446,240.8055,4.2851,5.4241,1.7736,2.0414,4.4766,7.38,2.389,3.4553,0.59647,7.7737,11.93,18.3374,8.7471,2.4651,4.5236,1.9774,20.0872,6.5249,4.1708,1.3026,3.0977,8.4267,14.9874,3.597,4.6885,3.2503,1.5756,1.5228,4.568,12.3788,2.9808,2.4014,11.803,2.5075,2.5352,2.0592,14.0921,2.0679,4.4354,1.2807,15.6411,5.7039,9.0222,4.8642,12.1039,7.9578,8.3743,7.7364,3.6809,1.6621,4.7428,,,,,,,,,,,,,,,56,,,,678
+56761,1.2013,1.9605,,60-69y,Other,,,22.3263,5.2478,2.6717,2.4712,1.7697,ppmi,,,M,,0.46039,4.5421,4.809,0.90554,10.7216,1.591,0.41941,3.4781,3.0119,48.6556,17.1682,263.1753,4.7748,4.8538,1.7983,2.3935,3.8609,7.6254,2.1357,3.0967,0.65336,7.1427,11.4198,19.2641,8.019,2.5482,4.9613,1.8299,19.8594,7.0837,4.1063,1.1615,2.7759,7.0862,14.3257,3.9913,4.3227,3.8494,1.7581,1.5385,4.6578,11.4109,3.3606,2.5905,12.7623,2.7137,2.6664,2.6022,12.7064,2.3416,4.5023,1.2928,15.2681,5.3466,9.8118,4.7241,12.985,8.3024,8.568,7.9668,4.4304,2.0249,5.2974,,,,0.074634,Other,,GENPD,0.40243,4.3551,4.274,0.85515,11.1306,1.8631,0.41879,3.228,3.0782,50.3014,17.8664,261.2505,4.3711,4.7963,1.7361,2.1634,3.934,7.7646,2.2523,3.3549,0.79327,6.8099,11.241,16.164,8.027,2.3474,5.0854,1.804,19.2377,6.1972,4.0059,1.1534,2.6937,7.7821,14.0778,3.4261,4.4539,3.7322,1.6869,1.5846,4.2896,11.1729,2.9317,2.5406,10.9949,2.659,2.4261,2.3622,12.5866,2.263,4.5164,1.2271,15.3143,5.1748,8.8608,4.9727,11.9383,8.5787,8.1832,8.4465,3.8036,1.8026,5.0175,,,,,,,,,,,,,,,66,,,,679
+60006,1.9388,1.6613,,+80y,Other,,,19.1515,5.6042,2.6261,2.2795,2.1645,ppmi,,,M,,0.42082,4.3737,4.5465,0.82297,9.6309,1.3821,0.36872,3.0384,3.0794,46.5508,17.3205,193.592,4.1054,4.6086,1.6771,1.7997,3.065,7.7058,1.8429,3.0991,0.99368,6.2007,11.4004,25.2751,7.5973,2.1609,4.4083,1.5591,17.0769,5.9827,3.6095,0.90428,2.2848,6.6871,13.2273,3.4624,4.1496,2.4636,1.4599,1.3847,4.4393,10.9103,3.4488,2.3859,10.8215,2.3482,2.417,2.1287,11.4059,1.9696,3.916,1.2742,14.7498,4.7937,8.6449,3.2961,10.0273,6.265,7.8644,7.5021,3.4043,1.6681,4.5466,,,,0.069897,Other,,PRODROMA,0.37594,3.4752,4.0665,0.81525,10.2078,1.6353,0.37411,3.1816,3.4014,46.7026,16.8381,197.998,3.7549,4.6126,1.6778,1.775,3.3051,7.7643,1.8193,3.2865,1.2125,6.7241,11.4201,28.8742,8.1714,2.0817,4.1213,1.5272,16.9942,5.4147,3.5572,1.0581,2.2735,7.4523,14.009,2.7507,4.0533,3.0966,1.3196,1.3563,4.0946,10.629,3.0979,2.2064,9.4722,2.3024,2.1709,1.9153,11.0765,1.9016,4.0604,1.1688,14.5046,4.7287,8.3265,4.1852,10.8649,7.1064,7.4489,7.8425,3.1725,1.5592,4.2177,,,,,,,,,,,,,,,82,,,,680
+60013,1.19,1.7256,,60-69y,Other,,,22.1689,5.1598,2.8856,2.3682,1.1186,ppmi,,,M,,0.51726,5.2283,4.6727,1.0098,10.192,1.9432,0.43259,3.7566,3.293,51.2522,17.7549,284.3293,4.4996,5.5588,1.9098,2.1553,4.2244,8.2044,2.333,3.6725,0.43814,7.1525,12.4633,10.6235,8.0405,2.9274,5.4945,2.2288,22.1508,7.5298,4.7099,1.2401,2.6549,8.401,15.665,3.9539,4.8304,4.4518,1.8983,1.6046,5.5442,13.9904,3.6303,2.4376,12.2679,2.8286,3.0024,2.2226,14.0278,2.5843,4.3663,1.3321,18.1176,6.2428,10.1922,4.5608,12.5325,8.8017,9.425,8.0282,4.8665,1.8359,5.4045,,,,0.084837,Other,,PRODROMA,0.44779,4.7386,4.515,1.0558,11.025,2.1794,0.42541,3.9018,3.2594,51.1522,17.3882,284.1241,4.4851,6.0597,2.0299,2.2016,4.3596,8.6004,2.4023,3.9065,0.48736,7.0751,13.2149,6.9626,9.018,2.8788,5.1112,2.2869,22.677,5.5238,4.5434,1.2557,2.6686,9.4356,16.3644,3.1768,4.828,4.0431,1.8701,1.6005,4.9977,13.2698,3.3863,2.4218,11.7723,2.1201,2.7582,2.069,14.9269,1.9834,4.2407,1.3638,16.1318,5.9507,9.1459,4.7793,11.8108,8.0929,8.9304,8.7738,4.1297,1.4528,5.215,,,,,,,,,,,,,,,62,,,,681
+60023,1.0957,1.5972,,60-69y,Other,,,20.6733,5.2599,2.7093,2.2648,1.119,ppmi,,,M,,0.46025,4.9777,4.1334,0.8821,9.4946,1.5771,0.40736,3.0703,2.745,46.8344,17.5185,229.463,4.1633,5.134,1.6175,2.0275,3.9695,7.3574,2.2399,3.1592,0.43086,6.6468,10.5602,7.3883,7.659,2.3821,5.4163,1.9399,19.3927,6.661,3.968,1.0295,2.6677,7.7039,12.9929,3.7455,4.3744,3.494,1.4337,1.4673,4.7889,11.5128,3.1843,2.3666,12.3763,2.5127,2.3447,2.3757,12.3882,1.8854,4.4875,1.2671,14.1787,5.7392,8.88,4.1236,12.2959,7.0592,8.2139,7.5915,3.9578,1.5666,4.7929,,,,0.065829,Other,,PRODROMA,0.4213,4.3731,3.7922,0.85955,10.7077,1.8911,0.42433,3.2799,2.9794,47.5219,16.9794,235.7102,4.1426,5.059,1.6174,2.0848,4.1212,8.0536,2.1933,3.3643,0.52173,7.1946,11.3084,10.0487,8.491,2.2557,4.9843,1.8619,18.4923,5.6748,3.9325,1.0491,2.645,8.2923,12.768,3.1072,4.4465,3.6329,1.5621,1.4241,4.3167,11.7242,2.9406,2.3225,10.662,2.3802,2.19,2.1394,12.7345,2.0564,4.3394,1.1953,14.5847,5.9895,8.4311,4.9014,12.113,6.9434,8.1697,7.3897,3.4701,1.7122,4.6007,,,,,,,,,,,,,,,63,,,,682
+60024,2.2851,2.4996,,60-69y,Other,,,18.8146,4.4724,2.9385,2.3473,1.6285,ppmi,,,M,,0.34571,4.2949,3.6423,0.81026,8.183,1.4258,0.3793,2.763,2.7947,47.0874,16.3979,212.2056,3.3875,3.8103,1.548,1.7602,3.5384,6.7667,1.8785,2.8624,0.69168,5.6864,10.0885,21.8522,6.6555,2.2458,4.7132,1.6722,17.4467,5.6884,4.118,1.172,2.8696,6.9731,12.0306,2.7377,3.9513,3.257,1.3046,1.3308,4.2647,10.0241,3.0667,1.9485,10.7712,2.0048,2.6159,2.0453,12.8263,1.7712,3.2724,1.1638,14.933,5.2315,8.0395,3.6485,10.2999,5.9201,7.8519,6.202,3.4152,1.4639,4.6097,,,,0.073545,Other,,PRODROMA,0.33942,3.9016,3.2421,0.80493,8.987,1.6435,0.37433,2.8942,2.9022,46.3853,15.9933,217.5875,3.62,4.0017,1.5377,1.8072,3.5942,7.1623,1.8589,3.0257,0.46648,6.1627,10.9906,15.3625,7.2955,2.15,4.4665,1.6186,18.2446,4.5588,3.7416,1.1251,2.5223,7.6739,13.0128,2.4832,4.0453,3.1526,1.5053,1.2877,4.0408,9.6956,2.7283,1.7576,9.0627,1.874,2.4617,1.7575,12.0293,1.556,3.3127,1.1544,14.7957,5.2926,7.5937,3.894,10.4157,6.1555,7.7471,6.6032,3.443,1.2369,4.3984,,,,,,,,,,,,,,,66,,,,683
+60033,1.9,2.4993,,60-69y,Other,,,17.7694,4.3209,2.5885,2.1017,1.7758,ppmi,,,F,,0.36631,4.1362,4.0372,0.73745,8.8725,1.3736,0.3356,2.6024,2.7853,43.0822,14.4138,209.0683,3.9892,3.9532,1.3865,1.9178,3.2414,6.5517,1.9849,2.8254,0.68086,5.7528,9.691,24.7107,6.8217,2.2039,4.4587,1.6607,16.6289,5.47,3.6729,1.0333,2.3084,6.3956,12.082,3.3271,3.8983,2.932,1.4213,1.3513,4.4493,10.5553,2.8612,2.2072,11.1744,2.2042,2.1143,2.1845,11.8188,1.7639,3.5765,1.1794,12.691,4.8323,9.1226,3.0601,11.2343,6.8565,7.7567,6.6887,3.3446,1.2897,4.4575,,,,0.070013,Other,,PRODROMA,0.36499,3.5792,4.0082,0.74695,9.5746,1.4324,0.35822,2.9212,3.3537,44.0687,14.3747,213.8891,3.7586,4.9484,1.4736,1.901,3.4212,6.7004,2.0378,3.125,0.72283,6.2162,10.2921,23.3958,7.6078,1.973,4.4313,1.7674,16.2684,4.6069,3.3577,1.2342,2.5623,7.0108,12.578,2.7768,3.8865,2.9482,1.564,1.3098,3.9455,10.6893,2.8411,2.1619,9.4676,1.8796,1.9264,2.0207,11.4362,1.6728,3.5836,1.1067,12.8564,5.2655,7.5197,3.7696,9.9673,6.664,7.5766,7.0194,3.1722,1.3489,4.2126,,,,,,,,,,,,,,,68,,,,684
+60035,1.4813,1.8692,,60-69y,Other,,,19.0897,4.5129,2.5932,2.134,1.3226,ppmi,,,M,,0.4335,4.3386,4.027,0.83016,7.7442,1.3629,0.37132,2.9872,3.3203,45.0216,15.8779,212.6614,3.8405,4.2802,1.702,1.7845,3.1917,7.1927,1.961,3.0988,0.55542,5.8463,10.9686,15.3346,6.5921,2.1011,4.8845,1.6627,16.949,5.6435,3.7225,1.2584,2.7966,6.9955,12.4792,3.2106,3.6138,3.0591,1.29,1.4253,3.9831,10.2695,3.1198,2.3109,10.488,2.0134,2.3011,2.2512,13.2276,1.7891,4.3293,1.1213,14.2819,5.406,8.0825,3.3124,8.7096,6.7337,7.7137,7.5662,3.0367,1.4221,4.5217,,,,0.071198,Other,,PRODROMA,0.39398,4.1223,3.7753,0.81288,9.3381,1.5488,0.37573,3.1113,3.4403,45.4964,15.4342,220.39,3.5885,4.5145,1.6563,1.6721,3.518,7.623,1.9604,3.2241,0.6692,6.804,12.0877,12.7721,7.3742,1.9587,4.7097,1.6513,16.7432,4.8509,3.62,1.2543,3.0498,7.556,13.7073,2.8917,4.0536,3.0875,1.3509,1.4335,3.5922,10.0224,2.8747,2.2034,9.5847,1.7985,2.17,1.9807,12.0076,1.6577,4.1914,1.0896,14.121,5.5927,6.7157,3.7779,8.3139,6.5275,7.5163,7.505,2.9432,1.322,4.411,,,,,,,,,,,,,,,67,,,,685
+60036,1.3443,1.9247,,70-79y,Other,,,16.0018,4.3896,2.2851,2.0068,1.3981,ppmi,,,F,,0.42638,4.1601,4.3541,0.80036,9.1985,1.4792,0.37736,3.0753,2.9435,41.9413,12.2098,190.5402,4.077,4.3705,1.5369,1.8789,3.3612,7.5168,1.9922,2.9647,0.72722,6.306,11.0774,23.6071,7.3944,2.2954,4.6111,1.6514,18.1523,5.9474,4.0495,1.1045,2.4662,7.0043,13.2183,3.4754,4.1216,2.8919,1.5278,1.26,4.6418,11.5587,3.0409,2.3969,11.9945,2.2375,2.4873,2.1824,12.0375,2.0963,4.4553,1.2455,13.7333,5.1336,8.8105,3.3492,11.7512,6.8208,7.3595,7.0597,3.8019,1.746,4.0497,,,,0.080845,Other,,PRODROMA,0.38567,3.6449,3.8707,0.79468,10.307,1.6388,0.38929,3.2425,3.1042,42.086,11.7926,194.7824,3.9647,5.0466,1.6112,1.9452,3.5947,7.417,2.1354,3.0905,0.63899,6.809,11.8439,19.9415,7.6925,2.0918,4.3676,1.6983,17.571,5.0574,3.7642,1.1396,2.7414,7.5453,13.8984,2.9228,4.0588,3.237,1.5124,1.2456,4.1832,11.5406,2.7353,2.2922,10.4312,1.9939,2.0402,1.9586,11.9905,1.6678,4.2488,1.1265,13.8367,5.0811,8.2775,4.3191,12.4203,6.7755,7.2925,7.3222,3.7934,1.4409,3.924,,,,,,,,,,,,,,,71,,,,686
+60040,2.0741,2.159,,70-79y,Other,,,19.8001,4.8601,2.5484,2.3209,2.6299,ppmi,,,F,,0.4737,4.2763,4.2639,0.76343,7.9591,1.3927,0.3743,2.6252,3.422,44.3878,15.7814,192.6267,4.0234,4.3492,1.4066,1.7586,3.2804,7.1522,1.8671,3.0658,0.99483,6.4283,10.0092,32.048,7.7605,2.087,3.9035,1.6634,16.1017,5.836,3.5974,0.90917,2.2479,6.2796,11.3157,3.5604,4.3961,2.9166,1.2278,1.4207,3.9263,10.068,3.1465,2.606,10.7601,2.5502,2.227,2.4546,11.2581,2.1701,3.8769,1.2762,13.0927,4.6753,8.1895,3.3727,10.0709,5.9122,7.7762,6.1656,3.319,1.8961,4.7898,,,,0.071354,Other,,PRODROMA,0.39795,3.4315,3.945,0.8,9.1539,1.6025,0.36726,2.8517,3.489,43.4127,14.9912,197.5897,4.0197,4.8591,1.5899,1.9444,3.4874,7.2395,1.9439,3.329,0.96683,5.9598,10.9216,24.8043,8.2157,2.041,3.8857,1.7037,15.974,4.8769,3.3454,0.96199,2.1746,7.4282,12.2023,2.8219,3.9669,3.0458,1.3047,1.4355,3.582,9.1756,3.061,2.4416,9.7409,2.1806,2.0143,2.0429,11.1697,1.6923,3.8921,1.136,12.5285,4.5172,7.8189,4.3394,10.0266,6.0971,7.4422,6.4507,3.3651,1.4998,4.6311,,,,,,,,,,,,,,,79,,,,687
+60041,1.692,2.4618,,70-79y,Other,,,18.4431,4.5159,2.5531,2.1108,1.4545,ppmi,,,F,,0.41908,4.3581,4.0937,0.72686,8.9148,1.3999,0.38833,2.9849,3.0392,46.1434,15.8612,185.7022,3.5557,3.8985,1.4395,1.7372,2.9656,6.989,1.7961,2.7819,0.74325,6.1516,10.0127,15.61,6.7576,2.2016,4.309,1.6893,16.1421,5.6043,3.5335,1.1283,2.3195,6.3736,12.5582,3.0304,4.1735,2.8983,1.378,1.1805,4.1248,9.9694,3.0599,2.2111,9.9702,1.927,2.3526,2.1485,10.9858,1.563,4.1267,1.2783,11.601,4.8893,7.4739,2.8322,9.84,6.6037,7.4113,6.7351,3.2163,1.3219,4.4165,,,,0.077012,Other,,PRODROMA,0.38462,4.0104,3.7122,0.72475,9.731,1.4575,0.381,3.3916,3.2704,47.5852,15.1185,192.3913,3.3164,4.2361,1.4041,1.696,3.3091,7.0387,1.7706,2.9492,0.63529,6.4595,10.4233,15.2579,7.5624,1.888,4.0872,1.6909,15.8199,4.7589,3.2243,0.99674,2.3402,7.2564,12.5892,3.0179,4.4416,2.6821,1.3364,1.1868,3.8229,10.4215,2.7164,2.1376,7.5592,1.9058,1.9829,1.9645,9.8785,1.4544,4.0694,1.2174,12.5522,4.9441,6.6702,3.6978,10.0806,5.9107,7.3904,6.105,2.9362,1.338,4.2401,,,,,,,,,,,,,,,74,,,,688
+60043,2.0868,2.2414,,60-69y,Other,,,22.9423,5.4485,3.1087,2.4707,1.8097,ppmi,,,M,,0.53427,4.4744,5.2873,0.97803,9.713,1.5334,0.43908,2.8694,4.7487,52.3608,19.3504,269.6657,4.5219,4.5867,1.7945,2.1819,3.4518,8.0634,2.2594,3.5853,1.3791,7.2638,12.7735,30.6911,7.4745,2.441,4.9846,1.8479,18.6287,6.7317,4.1959,1.2274,2.8252,6.6028,15.0906,4.0065,4.3968,4.0176,1.4832,1.9621,5.0764,11.2455,3.562,3.0069,11.9025,2.6778,2.583,2.8435,12.803,2.4141,5.8814,1.4499,14.4081,5.3453,9.8098,3.909,11.1992,8.0237,9.7802,8.2556,4.0837,1.9087,5.9406,,,,0.092071,Other,,PRODROMA,0.44291,3.9529,4.5643,0.99484,11.1557,1.7695,0.44338,3.3671,4.2729,52.8547,19.1905,271.8891,4.1763,5.0585,1.9007,1.8699,3.4673,8.3969,2.2301,3.9231,1.2424,7.0964,13.553,23.4157,8.1976,2.3052,4.7065,1.8226,18.0494,5.4328,3.9515,1.2005,3.084,7.6145,16.5134,3.0234,4.4844,3.124,1.5883,1.8996,4.3002,11.3159,3.325,2.7028,9.7664,2.2782,2.4692,2.4522,13.214,2.0945,5.2601,1.3286,14.2883,5.8273,8.1556,4.4958,11.2328,8.3501,9.3959,9.0679,3.4738,1.6973,5.7302,,,,,,,,,,,,,,,68,,,,689
+60044,1.6629,2.2688,,70-79y,Other,,,15.6211,3.9009,2.3132,1.9668,1.5642,ppmi,,,M,,0.42601,4.7103,4.4339,0.88469,9.0706,1.566,0.36307,3.462,3.3537,44.1225,14.1361,216.9882,4.1038,4.7871,1.8303,2.0857,3.4337,7.3471,1.9541,3.0078,0.6127,6.8029,11.6682,15.6307,7.8191,2.3639,4.4736,1.7558,17.8814,6.3118,3.9078,1.1452,2.2976,7.2335,13.868,3.6444,4.6981,3.515,1.5345,1.3116,4.3121,11.2814,3.3326,2.4875,11.3127,2.3725,2.5416,2.4304,12.0069,1.9097,4.8027,1.1451,14.276,5.1987,8.4318,3.4508,10.209,6.617,7.786,8.039,3.7519,1.7332,4.2078,,,,0.076138,Other,,PRODROMA,0.37794,4.0025,4.184,0.88083,9.2879,1.7805,0.37923,3.4152,3.234,44.6161,13.0309,217.8871,4.0464,4.6083,1.869,1.9806,3.7803,7.6322,1.9503,3.1046,0.75044,6.8871,11.4516,15.9856,8.4079,2.2233,4.4935,1.8373,17.81,5.3364,3.8429,1.0138,2.3429,7.9502,13.8374,3.138,4.4233,3.4375,1.4882,1.2413,3.8901,10.467,3.0043,2.3306,10.1599,2.1515,2.3347,2.196,11.8928,1.7887,4.3484,1.1159,13.5096,4.8563,7.7267,3.9791,9.9966,7.0719,7.1799,8.2678,3.4034,1.5221,3.906,,,,,,,,,,,,,,,73,,,,690
+60046,1.4081,1.6341,,70-79y,Other,,,17.7317,4.4813,2.5742,2.2044,1.6861,ppmi,,,M,,0.34747,3.7635,3.894,0.76211,8.6437,1.294,0.35347,2.937,2.3873,43.5164,14.7824,193.9812,3.5481,3.6191,1.4896,1.9024,3.0299,6.3833,1.8577,2.7289,0.38515,5.5704,9.5104,14.7015,6.7458,2.0438,4.0636,1.4015,15.6201,5.5387,3.4506,1.0407,2.1922,5.8622,11.508,3.2149,3.9089,3.2393,1.2242,1.2686,3.9881,9.6216,2.9335,2.0914,11.1532,2.2113,2.0782,2.0519,12.1179,1.7786,3.697,1.1405,13.3124,4.6462,7.7622,3.0882,10.1258,6.6688,7.2926,6.7969,3.4378,1.3942,4.3902,,,,0.076463,Other,,PRODROMA,0.32138,3.3242,3.5665,0.75612,9.2599,1.563,0.34425,2.9603,2.4045,44.1063,14.189,195.6274,3.3246,4.3537,1.5104,1.6551,3.3133,6.4342,1.7658,2.8763,0.41295,5.9499,10.3538,13.0472,7.3147,1.8873,3.7735,1.4356,15.7742,4.9701,3.3566,0.8267,2.1723,6.4851,12.624,2.7114,3.7915,2.5969,1.2486,1.2642,3.5079,9.893,2.7022,2.0401,9.3693,1.8269,2.037,1.8673,11.6293,1.5951,3.4595,1.073,12.956,4.7047,6.9996,4.1371,10.4669,6.577,7.2005,7.1035,2.7481,1.2686,4.228,,,,,,,,,,,,,,,73,,,,691
+60048,1.1331,1.6648,,70-79y,Other,,,18.3358,4.3823,2.4177,2.1226,1.2556,ppmi,,,F,,0.38539,4.1668,4.1186,0.75753,8.6657,1.3995,0.35879,3.1155,2.6851,39.1226,13.7072,181.5808,3.4181,4.27,1.5188,1.7185,3.3206,6.2846,1.9141,2.9588,0.53832,5.4417,10.1627,12.9319,6.9201,2.0779,4.3683,1.6833,18.1468,5.7276,3.6119,0.90175,2.3227,6.7739,12.0923,2.7188,3.8525,3.2748,1.1467,1.2377,3.9877,9.9128,2.9083,2.1076,10.5792,2.1225,2.2618,2.1451,12.3732,1.8014,3.8218,1.1092,13.9701,4.814,7.7,3.2113,8.9245,6.5866,7.6307,7.2061,3.1353,1.303,4.1799,,,,0.0773,Other,,PRODROMA,0.34941,3.9374,3.8908,0.73454,9.4909,1.5613,0.3515,3.1674,2.7352,38.4954,12.987,181.138,3.2491,4.6551,1.4678,1.9698,3.5088,6.384,1.8683,3.1057,0.49667,6.0813,10.5054,10.205,7.6768,1.898,4.2187,1.6355,17.5651,4.8877,3.4135,1.0069,2.385,7.1246,12.7461,2.7486,3.9661,3.2404,1.3278,1.1643,3.6028,10.0733,2.6703,2.1137,8.0598,1.806,2.0463,1.9529,10.8071,1.6617,3.7654,1.0572,12.9452,5.0088,6.9607,3.7089,8.9927,6.842,7.5373,7.3725,3.3974,1.1976,4.0216,,,,,,,,,,,,,,,75,,,,692
+60056,1.8015,2.2978,,70-79y,Other,,,16.5029,4.3179,2.4495,2.0617,1.5036,ppmi,,,M,,0.44367,5.23,4.5082,0.88752,9.3216,1.5143,0.40076,3.5931,2.7115,42.7269,14.1739,211.0063,4.2338,4.4092,1.7037,2.2542,3.7763,7.3206,2.0284,3.251,0.50696,6.6517,11.1795,20.0028,7.5418,2.4252,4.8695,1.8535,19.4269,6.4286,3.7762,1.1263,2.4095,7.0386,13.9868,3.6909,4.504,4.062,1.7598,1.3187,4.7927,11.059,3.3638,2.2031,11.3429,2.1526,2.4485,2.1593,11.5896,1.6936,4.0853,1.3181,13.9233,4.9364,8.7641,3.7606,11.9487,7.1476,7.7467,7.3518,4.5468,1.3768,4.2705,,,,0.084918,Other,,PRODROMA,0.37149,4.4833,4.1166,0.8351,10.8758,1.703,0.3847,3.6787,2.981,42.6221,13.7246,214.6045,3.9582,4.5533,1.7282,2.3053,3.8378,7.1979,2.0218,3.2336,0.67641,6.8669,10.9168,18.2223,8.1967,2.2282,4.0792,1.7169,19.4927,5.2757,3.6271,1.2259,2.7786,7.9926,13.8978,3.4656,4.6021,3.845,1.6591,1.3823,4.3318,11.5663,2.9767,2.0133,9.3017,2.0983,2.3022,1.8205,11.981,1.6123,3.7687,1.2102,13.8035,5.7975,8.2863,4.4655,12.8152,6.6947,7.5029,7.4854,3.7662,1.2765,4.187,,,,,,,,,,,,,,,70,,,,693
+60057,1.2454,1.5549,,60-69y,Other,,,17.4138,5.171,2.6971,2.3781,1.3554,ppmi,,,M,,0.54359,4.8461,4.9501,0.85295,9.367,1.678,0.44098,3.143,3.152,49.4909,16.5234,230.0088,4.2031,4.601,1.7071,2.0675,3.6735,7.4227,2.3034,2.9942,0.51495,6.7162,11.3974,11.9038,6.9666,2.4677,4.758,2.1189,18.9614,6.5493,4.2631,1.149,2.3839,7.5995,13.4235,3.6746,4.1953,3.1484,1.5583,1.5424,4.2102,10.2575,2.9582,2.6518,11.8783,2.1673,2.6052,2.38,12.1985,2.0046,4.9517,1.4095,15.2529,5.2211,8.874,3.6487,11.1572,6.3793,8.7703,7.323,3.7886,1.618,4.4898,,,,0.073807,Other,,PRODROMA,0.46662,3.9835,4.7004,0.87433,10.0574,1.7867,0.43498,3.2033,3.2211,49.8125,15.7512,233.9289,4.1517,4.6516,1.6652,2.0614,4.0498,7.4767,2.2155,3.1504,0.57436,6.7553,11.343,10.9598,7.615,2.2511,4.7593,2.0908,18.299,5.465,3.9542,0.9009,2.5025,8.537,12.7479,3.0861,4.2019,3.4597,1.5898,1.5692,3.8287,11.0044,2.7075,2.6897,10.4864,2.2012,2.6033,2.2322,13.1486,1.9123,4.8485,1.3086,15.5389,5.6115,8.208,4.2487,10.7705,6.7749,8.5223,7.8631,3.527,1.5428,4.3698,,,,,,,,,,,,,,,61,,,,694
+60070,1.1153,1.6519,,60-69y,Other,,,16.957,4.1964,2.5329,2.0479,0.98858,ppmi,,,F,,0.41036,3.8053,3.6,0.82815,8.2107,1.351,0.34024,3.0381,2.8446,44.472,14.1265,192.8593,3.1091,3.9953,1.5501,1.7628,2.9978,6.3623,1.7793,2.9749,0.37055,5.9438,9.714,8.4526,6.6317,2.0868,4.4547,1.4577,16.2585,5.3046,3.5197,1.2557,2.7634,5.655,12.626,3.1388,3.8612,3.5352,1.2664,1.2827,4.0713,9.6026,2.9469,1.8247,11.1042,1.832,2.1023,1.8189,11.6455,1.51,3.9306,1.0167,12.6567,4.9586,8.3395,3.1009,8.7419,6.7065,7.0616,6.8993,3.4235,1.1227,4.1791,,,,0.069641,Other,,PRODROMA,0.38354,3.4472,3.3886,0.81075,9.4766,1.4492,0.36139,3.0672,2.8851,45.0322,13.9693,194.9931,3.0851,4.3424,1.5723,1.6657,3.0703,6.9028,1.8244,3.1999,0.56877,5.8919,10.4525,6.8137,7.2145,1.9377,4.3125,1.4463,14.7862,4.6434,3.4572,0.94539,2.319,6.5659,13.352,2.7087,4.0879,3.4302,1.4062,1.1951,3.7247,9.6156,2.7123,1.9078,9.1252,1.5815,2.0337,1.6354,11.3784,1.3861,3.8891,1.0223,12.1793,4.695,6.6192,3.976,9.15,6.3207,6.769,6.9554,3.2061,1.104,3.9627,,,,,,,,,,,,,,,63,,,,695
+60073,2.4138,2.3286,,60-69y,Other,,,19.1667,5.204,2.8104,2.4104,1.6673,ppmi,,,M,,0.41748,4.7892,4.394,0.81176,10.9183,1.4967,0.3938,3.4594,3.2597,52.5107,17.5346,231.781,4.7267,4.8,1.6814,2.0838,3.7098,7.9798,2.2358,3.132,0.70244,6.8859,13.1527,15.1682,8.3243,2.3339,5.1213,1.992,20.1857,6.5267,4.0811,1.3186,2.9872,7.6191,15.7327,4.052,4.5912,4.1826,1.5547,1.4269,4.8791,11.6792,3.4908,2.6221,13.0645,2.5423,2.4739,2.5843,14.7455,2.1136,4.2456,1.2911,14.8809,6.142,9.728,3.6154,12.0779,7.2674,8.1829,8.2045,4.0724,1.9087,4.6765,,,,0.076121,Other,,PRODROMA,0.39084,3.9774,4.3369,0.88329,11.8671,1.8173,0.41912,3.3121,3.5865,52.3691,17.3271,238.1499,4.3991,5.2161,1.8951,2.1248,4.1541,8.525,2.3082,3.56,0.71013,6.9282,13.8157,13.43,9.1302,2.3095,5.1008,1.9305,18.6423,5.5751,3.9888,1.2591,2.9404,8.613,17.1456,3.4864,4.8108,3.6322,1.6455,1.3694,4.4461,12.2404,3.3468,2.5027,12.0634,2.6445,2.2605,2.1721,14.1646,2.2295,4.2433,1.2731,14.9522,6.1071,9.2994,4.453,11.2118,7.7899,8.0271,8.682,3.7589,1.679,4.5297,,,,,,,,,,,,,,,65,,,,696
+60074,1.9308,2.2357,,70-79y,Other,,,20.8254,5.0008,2.6511,2.3212,1.6366,ppmi,,,M,,0.41869,5.0504,4.9676,0.85767,9.3262,1.5263,0.39765,2.9319,3.313,47.1353,16.821,234.4403,4.1529,4.4473,1.6593,2.2122,3.7659,7.4341,2.2689,3.1264,1.0835,5.986,11.153,29.7647,7.1203,2.3884,4.6306,2.0064,17.7578,5.5483,4.0332,1.0612,2.5771,8.0039,11.5288,3.4582,4.0606,3.8061,1.4208,1.6269,4.5209,11.5072,3.1314,2.7547,10.9553,2.6309,2.7499,2.2485,13.2519,2.2378,4.5023,1.4132,14.7599,5.7984,8.3458,3.3311,11.2408,6.4624,8.2649,6.5709,3.8105,1.7847,5.1272,,,,0.086049,Other,,PRODROMA,0.39969,4.3136,4.6387,0.85866,10.1423,1.7513,0.3929,3.117,3.5024,46.8104,16.4306,240.6982,4.2348,4.5216,1.689,2.0964,4.0229,7.6212,2.2811,3.3538,1.2202,6.6689,11.464,25.6208,7.6095,2.2875,4.6368,1.9994,18.7702,4.7565,4.0369,1.0138,2.4671,9.0726,12.3372,3.3829,4.0096,3.3142,1.6774,1.639,4.0331,10.7635,2.7358,2.7799,9.9564,2.3436,2.4569,2.1921,12.8092,1.9649,4.3646,1.357,13.7711,5.3846,7.7117,3.8789,10.8002,6.7663,8.1952,7.5356,3.737,1.6894,4.9193,,,,,,,,,,,,,,,74,,,,697
+60075,1.373,1.879,,60-69y,Other,,,20.5296,5.6086,3.2328,2.5519,1.7744,ppmi,,,M,,0.48439,4.6683,4.5439,0.94927,9.7805,1.6425,0.41717,2.7135,3.6433,54.1315,16.9783,225.1818,4.5001,4.2262,1.9009,2.1054,3.9818,8.7913,2.2786,3.6014,0.41796,6.9651,12.5472,18.6163,8.4335,2.5457,4.7459,1.8608,20.099,6.7238,4.2699,1.1139,2.7756,7.382,14.867,3.5508,4.9817,3.3476,1.6858,1.4532,4.7366,10.7011,3.7622,2.5168,12.2272,2.6332,2.6065,2.4404,13.5999,2.2165,4.4901,1.2757,15.758,5.2439,9.788,3.6144,12.3045,8.1735,9.1045,8.9939,4.1896,1.7055,5.1271,,,,0.085638,Other,,PRODROMA,0.45624,3.7792,4.5445,1.0096,10.8431,1.8506,0.44391,3.0279,3.8842,54.166,16.6326,230.1593,4.2275,4.4458,2.0135,2.1985,4.1016,8.8168,2.2186,3.8568,0.47369,6.8643,12.8692,17.0368,9.017,2.3111,4.5018,1.8225,18.8581,5.2739,4.0838,1.276,2.9483,8.377,15.1776,3.0661,4.7723,3.3856,1.6539,1.4784,4.2601,10.8189,3.5684,2.5702,11.3451,2.2911,2.364,2.3279,13.283,1.9636,4.6386,1.2549,15.8185,5.5268,7.858,4.3034,13.0519,8.2752,8.9647,8.9305,3.9126,1.6133,4.9893,,,,,,,,,,,,,,,66,,,,698
+60091,1.5477,3.5646,,60-69y,Other,,,21.3576,5.9907,3.3781,2.7096,1.5233,ppmi,,,M,,0.56238,5.1182,5.004,0.96159,10.6763,1.8197,0.42953,3.5316,3.7417,56.7074,18.0638,258.0974,4.6642,5.2503,1.8734,2.5882,4.148,8.6111,2.4907,3.5437,0.52276,7.8763,13.0243,17.3314,9.1588,3.0306,5.5465,2.3827,21.1959,8.5839,4.4973,1.3131,2.9161,8.3543,15.7169,4.2741,5.2464,4.0674,2.0985,1.6857,5.0872,12.2255,3.73,2.5505,13.9353,2.6835,2.9844,2.6896,12.9619,2.1658,5.1942,1.3477,15.7666,5.9939,9.7631,4.1791,12.2946,8.1247,9.5252,8.6056,4.9536,1.8963,5.4606,,,,0.082682,Other,,PRODROMA,0.49723,4.6266,4.714,1.0013,12.9267,1.9517,0.45254,3.8588,3.6046,57.3157,17.718,262.8054,4.4744,5.5918,2.0055,2.2773,4.5875,8.4766,2.3705,3.7391,0.5807,7.9856,13.3209,17.5135,10.1621,2.5944,5.2702,2.1789,21.3761,6.7653,4.2351,1.247,2.9702,8.932,17.0069,3.7913,5.2758,3.7932,1.9162,1.6018,4.4847,12.6944,3.4273,2.6273,12.3572,2.3179,2.8301,2.4489,14.7682,2.3018,4.9644,1.2474,15.6065,6.1431,9.4753,5.3043,13.5393,8.8328,9.4459,8.7534,4.2982,1.8057,5.2396,,,,,,,,,,,,,,,62,,,,699
+60096,1.5789,2.249,,+80y,Other,,,19.8963,5.7335,3.1769,2.552,1.9034,ppmi,,,M,,0.44394,4.7675,4.5464,0.92068,10.3866,1.782,0.41913,3.2248,3.3238,50.9405,17.1212,221.1293,4.5829,4.3719,1.9104,2.1254,4.3638,8.2138,2.257,3.4897,0.66743,7.6639,12.7608,25.1864,8.4167,2.7119,5.2214,2.037,19.2588,6.9787,4.2253,1.3585,2.8543,7.6422,16.337,3.5343,5.1066,3.1527,1.7824,1.4794,4.9648,11.7119,3.6344,2.445,12.9184,2.6709,2.8214,2.4586,12.7942,1.9853,4.4072,1.5038,14.6555,5.0787,9.7122,3.6464,11.7929,7.5492,8.7361,8.3716,4.015,1.7298,5.0446,,,,0.085787,Other,,PRODROMA,0.39547,4.1003,4.5222,0.95956,10.7773,1.7384,0.42685,3.5188,3.2705,51.5282,15.6028,227.7446,4.3955,5.0681,2.0111,2.3128,3.9712,8.7162,2.0236,3.8442,0.83996,7.5915,13.5672,23.6155,9.3514,2.2719,4.769,1.9161,19.8142,6.0554,3.7327,1.2816,2.8928,8.2372,15.9248,3.4875,5.2705,3.8204,1.6059,1.4653,4.7022,12.7531,3.4756,2.6589,10.6437,2.4715,2.5425,2.4808,12.6955,2.0069,4.2232,1.404,16.6258,5.6114,8.6716,4.955,12.0419,7.9146,8.8019,9.2976,3.7881,1.7361,4.9371,,,,,,,,,,,,,,,81,,,,700
+60101,1.1008,1.6619,,60-69y,Other,,,17.3012,4.7831,2.749,2.3158,1.3289,ppmi,,,M,,0.44373,3.8288,3.9644,0.73995,8.3635,1.5318,0.36139,3.1949,3.1993,45.1549,14.4153,198.5471,3.2781,3.9338,1.4639,1.7559,3.2913,6.9035,1.8001,2.7301,0.37964,6.5442,10.4463,14.1539,6.9393,2.3383,3.988,1.5425,16.9481,6.41,3.7773,1.0015,2.303,6.0716,12.5372,3.3295,3.9546,2.5602,1.4492,1.3418,4.0032,10.0613,2.8449,2.08,10.5984,2.1022,2.4476,1.841,10.942,1.7193,4.0507,1.1217,12.1461,4.7281,7.9808,3.2759,9.2505,6.4683,7.6991,7.1026,3.284,1.2403,4.2892,,,,0.062103,Other,,PRODROMA,0.39989,3.535,3.7791,0.78762,9.1955,1.6097,0.36285,2.9803,3.3673,45.3059,15.6445,199.2944,3.4154,4.4001,1.6259,1.7115,3.2708,7.418,1.8047,2.9509,0.50199,6.1876,10.9666,12.4617,7.2918,2.0278,3.7601,1.4618,16.1302,4.9185,3.6915,0.82723,2.1174,6.6582,12.1349,2.7529,3.8848,3.1104,1.3923,1.3074,3.7676,9.4022,2.6767,2.1127,9.3958,2.0221,2.3185,1.8166,11.0031,1.666,3.7836,1.0634,12.4884,4.6344,7.1928,4.1208,9.3205,6.3744,7.5372,7.6159,2.9804,1.2479,4.1374,,,,,,,,,,,,,,,67,,,,701
+60107,1.5105,2.1938,,60-69y,Other,,,19.9938,4.4896,2.0626,2.133,1.5352,ppmi,,,M,,0.47561,4.9208,4.4625,0.86646,9.9707,1.5575,0.39638,3.2059,2.7712,42.6822,16.962,244.6629,4.4031,4.9797,1.6845,1.9736,3.3928,8.0037,1.9738,3.1601,0.50333,6.5475,11.8096,22.3803,7.8289,2.2568,5.0061,1.8713,19.9747,6.4911,3.9649,1.2415,2.5767,7.0849,13.9674,3.3461,4.2803,3.5009,1.3304,1.5952,4.8155,12.4052,3.2671,2.596,11.5123,2.4204,2.4741,2.3692,12.4073,1.9904,4.3509,1.2093,13.8396,5.4317,9.2626,3.9935,11.8183,6.9655,8.9544,7.4742,4.075,1.5119,5.1241,,,,0.078,Other,,PRODROMA,0.40697,4.4868,4.1831,0.88238,11.4255,1.7485,0.39327,3.3257,2.9549,43.6274,16.7207,245.5359,4.249,5.0189,1.7834,1.9828,3.6075,8.3793,1.9638,3.3953,0.55956,7.1218,12.3274,20.2493,8.0345,2.1229,4.8696,1.824,17.7507,5.3886,3.7511,1.053,2.5233,7.8512,14.5972,2.9501,4.3584,3.7969,1.3331,1.5688,4.4655,13.0734,3.1321,2.6751,10.2249,2.5059,2.3555,2.2853,12.4306,1.9542,4.1329,1.1048,13.6788,5.5641,8.4765,3.9652,12.0477,7.3615,8.7036,7.6716,3.4143,1.6177,4.8837,,,,,,,,,,,,,,,67,,,,702
+60108,2.5117,2.2558,,70-79y,Other,,,14.8395,4.4712,2.303,1.9519,2.06,ppmi,,,M,,0.41236,4.6621,4.1985,0.63239,8.7096,1.4478,0.35375,2.6322,2.9031,38.7135,12.1833,161.6878,4.2542,4.2243,1.2804,1.7702,3.802,6.1412,1.9954,2.4734,0.90829,5.77,9.665,24.9003,6.7445,2.1108,4.4103,1.803,17.1297,5.6762,3.7087,1.0986,2.3321,7.0085,11.2292,2.8825,3.5177,3.2851,1.3558,0.9819,3.9984,9.9921,2.8224,2.7048,12.017,2.4011,2.2393,2.3792,12.7429,2.03,3.5486,1.3118,13.037,4.4742,8.9078,3.0408,10.0958,6.5729,6.5086,7.0931,3.5205,1.6122,3.6756,,,,0.059865,Other,,PRODROMA,0.37116,4.0771,3.9968,0.68025,9.6027,1.6646,0.35938,2.6142,3.2354,39.7539,11.9779,165.5307,4.1533,4.2665,1.4082,1.9373,3.7834,6.3735,1.9119,2.6613,0.88245,6.4927,10.7901,22.9385,6.8456,1.9905,3.7225,1.6793,17.1849,5.4472,3.619,1.1572,2.4358,8.092,12.947,2.6255,3.656,3.6273,1.2761,0.95909,3.8704,10.1825,2.5187,2.5889,10.011,2.2286,1.9957,2.0212,11.1269,1.8543,3.4914,1.208,13.8386,5.3624,8.3446,3.854,9.1349,7.0835,6.5321,7.1131,3.369,1.5037,3.5075,,,,,,,,,,,,,,,77,,,,703
+60109,1.282,1.9718,,70-79y,Other,,,18.3872,4.5497,2.7369,2.3432,1.2356,ppmi,,,M,,0.40567,4.4824,4.7053,0.81265,9.8767,1.5678,0.3697,2.4001,2.8621,47.6767,16.6911,225.1877,4.0845,4.7126,1.6121,2.1881,3.7754,7.5858,1.9961,3.0406,0.43823,6.6576,11.2725,10.6713,7.4961,2.48,4.7359,1.7857,17.6349,6.2588,3.9881,1.1585,2.3121,7.2666,13.0933,3.8167,4.5944,3.3207,1.6245,1.3589,4.8412,11.0259,3.2505,2.4993,11.5259,2.6312,2.4029,2.2834,11.3525,2.0422,4.0936,1.189,13.7497,5.236,9.4756,3.7447,10.509,7.0522,7.8457,6.8547,4.1413,1.6214,4.5047,,,,0.076895,Other,,PRODROMA,0.3785,3.748,3.9934,0.78857,10.2205,1.91,0.36835,2.7407,2.9855,50.2395,16.0233,225.147,3.8129,4.8742,1.6398,2.0236,3.9524,7.857,2.0992,3.1423,0.48462,7.076,11.8948,8.526,8.1348,2.3308,4.6619,1.7994,16.8746,5.4843,3.9696,1.045,2.2496,8.0985,13.9941,3.0016,4.3262,3.2467,1.5577,1.3779,4.2422,10.8009,3.0668,2.3509,10.6693,2.4645,2.3529,2.0106,11.0964,1.965,4.0118,1.1183,13.1202,4.8939,8.0517,4.4786,10.7573,6.7724,7.6159,7.5658,3.5615,1.533,4.374,,,,,,,,,,,,,,,72,,,,704
+60148,1.4525,2.2166,,60-69y,Other,,,18.8894,4.6415,2.6737,2.181,1.6287,ppmi,,,M,,0.49287,4.5254,4.6119,0.85467,8.3423,1.438,0.43283,3.7298,3.0181,46.136,16.3209,217.8667,4.049,4.9042,1.7216,2.0308,3.5409,6.6149,2.0393,3.0803,0.72534,6.2559,9.5208,20.1409,7.5654,2.3228,4.6877,1.8483,19.1879,5.3599,4.0726,1.2952,2.6824,6.9908,12.0641,4.0241,4.4039,3.3577,1.5475,1.5962,4.0781,10.7934,3.1763,2.4414,11.7875,2.7358,2.7454,2.5178,13.3111,2.3168,4.3675,1.3322,14.2953,5.2905,9.289,3.8539,10.9069,7.585,8.5346,7.7672,4.0216,1.7514,4.8223,,,,0.075395,Other,,PRODROMA,0.43368,3.6316,4.2214,0.85652,8.9093,1.7555,0.4354,3.6816,3.3386,47.0621,15.782,223.0582,4.0841,4.6367,1.7733,1.9537,3.7875,7.3846,2.0404,3.4191,0.66232,6.5722,11.0098,20.5264,8.4858,2.1921,4.3538,1.8549,18.2919,5.1479,3.696,1.0738,2.6191,8.0814,12.8873,3.3371,4.2978,3.7741,1.4653,1.5772,3.9941,11.1572,3.1183,2.5312,11.1942,2.596,2.4043,2.1025,12.7423,2.109,4.1935,1.2787,15.1993,5.4213,8.071,4.2969,11.7134,6.7133,8.4444,7.5296,3.5659,1.6484,4.6649,,,,,,,,,,,,,,,67,,,,705
+60170,2.057,2.0648,,60-69y,Other,,,17.9153,4.2211,2.7435,2.1639,1.8094,ppmi,,,M,,0.37023,4.4942,3.7148,0.81616,7.7286,1.4054,0.3479,3.3521,2.4486,43.1683,17.4733,265.0377,3.8286,4.8132,1.3841,1.6669,2.8406,6.5562,1.8279,3.0287,0.58917,4.7836,9.693,24.45,7.4073,2.1361,4.5039,1.6038,14.77,4.2632,3.4545,1.0315,2.3819,6.1644,11.4732,3.2322,3.938,2.3945,1.2561,1.5551,3.5938,9.3549,2.793,2.202,8.9218,2.4554,2.171,2.2537,10.2727,1.8069,3.1155,1.1613,11.5578,4.5803,7.1027,2.649,7.5946,6.0416,7.7856,6.4952,2.9668,1.4823,4.8929,,,,0.052396,Other,,PRODROMA,0.30787,4.1382,3.6768,0.80267,8.4274,1.4589,0.35451,3.3148,2.169,42.0257,16.7777,254.2431,3.3186,4.4949,1.3991,1.8252,3.2313,6.5499,1.9178,3.2956,0.67981,5.0489,9.3389,20.6573,7.8557,1.926,4.3817,1.7268,15.6276,4.3878,3.1783,1.0262,2.1847,6.7845,11.3559,2.647,3.9509,2.8825,1.2639,1.4425,3.3493,8.9247,2.5962,2.1183,7.8938,1.8622,2.0293,1.867,10.0331,1.5098,3.1638,1.0415,10.8342,4.5052,6.4432,3.6585,7.9599,6.7797,6.7238,6.769,3.2498,1.2589,4.4741,,,,,,,,,,,,,,,62,,,,706
+85062,1.3949,2.3699,,60-69y,Other,,,20.8126,4.339,2.7597,2.2329,1.3861,ppmi,,,M,,0.48992,5.1635,4.6127,0.99987,9.5729,1.7381,0.42422,3.2379,3.5389,47.3853,17.8635,259.7477,4.3517,5.0744,1.811,1.9772,3.7509,7.9806,2.1884,3.5448,0.56907,6.3251,11.9599,15.663,7.8034,2.6628,5.1858,2.0848,19.423,5.85,4.282,1.1065,2.3353,7.3284,13.7798,3.6336,4.432,3.0069,1.6505,1.7654,4.7225,11.3912,3.4483,2.7894,12.6095,2.6839,2.8713,2.8344,12.5746,2.0066,5.3226,1.2865,14.8981,5.3424,9.6032,4.0657,11.5193,6.973,8.7512,8.2746,3.8116,1.8995,5.2029,,,,0.080044,Other,,PRODROMA,0.42486,4.7347,4.7772,0.99474,10.7032,1.9761,0.43063,2.9493,3.6729,45.9814,16.7974,262.3804,4.4038,4.678,1.8596,2.0933,4.041,7.8021,2.0815,3.6573,0.55531,7.5778,11.776,15.3007,7.8806,2.4135,5.455,2.0344,19.9133,6.3052,4.1168,1.0627,2.6724,8.5699,13.5433,3.5005,4.3937,3.0844,1.615,1.7197,4.3742,11.4681,3.0926,2.732,10.2707,2.4513,2.7252,2.569,12.622,2.0428,5.4054,1.1478,14.2387,5.5989,7.8017,4.5987,10.2388,6.6699,8.168,8.5389,3.3332,1.8466,4.9582,,,,,,,,,,,,,,,67,,,,707
+85236,2.1579,2.9593,,60-69y,Other,,,18.6689,6.3636,3.0382,2.682,2.4934,ppmi,,,M,,0.5097,4.8368,4.7132,0.93301,9.2036,1.612,0.4179,3.7104,3.6138,56.5915,16.392,234.5728,4.4456,4.4732,1.7867,2.0109,3.7254,8.2294,2.1202,3.1564,0.67563,7.5755,13.3497,27.5634,8.3789,2.5845,5.1574,1.7203,20.909,6.6095,4.3098,1.4025,3.1086,7.8915,15.6271,3.4646,4.7414,3.5099,1.4584,1.441,5.4791,11.9504,3.688,2.4077,14.9085,2.495,2.6945,2.4551,15.3571,2.3148,4.4087,1.3166,16.6729,5.8644,9.3077,4.1839,13.5055,8.0727,8.4523,8.3831,3.8831,1.9195,4.8111,,,,0.0837,Other,,PRODROMA,0.48929,4.405,4.2681,0.86752,10.8142,1.9208,0.43805,3.6016,3.878,56.0054,15.7162,238.6566,3.7348,5.0223,1.7906,2.0048,3.6873,9.1184,2.1064,3.2349,0.59971,7.5782,13.9077,21.9502,9.7776,2.3447,4.9417,1.6628,20.3274,5.3785,4.3203,1.4935,3.4126,8.6053,15.9397,3.3722,5.0093,3.8119,1.5654,1.4117,5.046,12.0505,3.4443,2.4633,11.781,2.2856,2.5899,2.2877,15.0744,2.1228,4.3153,1.2782,16.7064,6.1177,8.0752,4.7815,12.0964,8.5803,8.1503,8.3218,3.7298,1.6767,4.585,,,,,,,,,,,,,,,67,,,,708
+85242,2.0442,2.1468,,60-69y,Other,,,24.4819,5.0229,3.121,2.3922,1.5905,ppmi,,,M,,0.4718,5.4123,4.6496,0.91686,9.7745,1.6921,0.43376,3.4753,3.2352,56.9446,20.0996,235.9792,3.8534,4.9623,1.7168,2.2764,4.0524,7.7219,2.1798,3.3731,0.40702,7.0127,11.5428,18.0168,7.8664,2.5976,4.9962,2.1447,20.6792,7.216,4.2737,0.99735,2.7922,8.428,14.5756,3.5066,4.5076,3.5187,1.7133,1.6047,4.9824,11.7031,3.3399,2.3359,13.014,2.7018,2.5259,2.1323,15.0241,2.7027,4.4747,1.4232,16.8867,6.9735,8.6015,3.7009,12.0004,7.2454,9.2622,7.4756,4.5143,1.8292,5.6494,,,,0.084632,Other,,PRODROMA,0.44489,4.663,4.6211,0.88759,10.8289,1.9789,0.43714,3.4843,3.5464,56.768,19.5796,243.7826,3.9399,5.1494,1.6839,2.14,4.4839,8.2187,2.4429,3.5432,0.43792,7.3712,12.187,14.7869,8.3232,2.5212,4.8662,2.1145,21.1968,6.0633,4.2282,1.096,2.7375,9.653,14.2937,3.0519,4.5714,3.3542,1.7388,1.6536,4.5573,11.5248,3.2078,2.4472,11.0947,2.4586,2.4816,2.1907,13.9428,2.1233,4.3885,1.3975,16.3698,6.6502,7.8651,4.5186,10.9337,7.2724,8.9002,7.4039,4.0269,1.6858,5.5145,,,,,,,,,,,,,,,63,,,,709
+90456,2.3533,2.914,,+80y,Other,,,19.2148,4.8691,2.3371,1.9826,3.2047,ppmi,,,M,,0.38839,4.1829,4.4093,0.70253,10.3046,1.4497,0.35611,3.1063,3.1281,44.2487,15.7656,213.9909,4.5157,4.5016,1.2667,2.072,3.4484,6.945,1.8872,2.8431,2.0441,6.5434,10.6803,47.2973,6.7072,2.1864,4.495,1.7272,18.1492,6.7237,3.4696,0.97859,2.2637,6.9949,13.3494,3.4427,4.2307,3.4374,1.3893,1.4587,4.5251,11.1059,2.7311,2.5417,11.0464,2.4787,2.216,2.4518,12.545,2.1556,3.8012,1.1671,14.4397,5.4269,9.4749,4.1344,11.1532,7.0867,7.3854,7.0079,3.7619,1.7044,4.6982,,,,0.085737,Other,,PRODROMA,0.37762,4.0527,3.988,0.77685,11.8726,1.5629,0.39007,3.4494,3.5735,44.1597,15.8898,219.3935,4.0273,5.099,1.4767,1.9226,3.7068,7.0883,1.8615,3.106,1.5929,6.5202,10.7758,40.8927,7.7026,2.0503,4.5098,1.6912,17.3798,5.671,3.4952,1.097,2.3034,7.6404,14.3712,2.9465,4.1521,3.0809,1.4739,1.4377,4.1525,11.2059,2.6592,2.5614,9.9503,2.1266,2.1901,2.22,11.6411,1.9418,3.8008,1.1737,13.5851,5.0169,8.3952,4.1587,11.5235,8.0811,7.2314,7.3008,3.1067,1.6121,4.4718,,,,,,,,,,,,,,,83,,,,710
+91097,1.0716,2.0715,,60-69y,Other,,,19.425,5.1121,2.7693,2.2914,1.1738,ppmi,,,M,,0.36297,3.8786,4.2548,0.83464,8.7812,1.2994,0.37144,3.1103,2.4517,49.4701,14.8358,202.1026,3.3119,5.1074,1.6366,1.8221,3.1827,7.6904,2.2041,3.2142,0.5597,6.546,12.2237,8.5858,7.5143,2.1639,3.9692,1.4297,16.5142,6.2692,3.9802,1.0984,2.5366,6.0322,14.7854,3.7351,4.2661,3.0424,1.483,1.1939,3.9806,9.6757,3.3629,2.0863,11.6886,1.9665,2.3221,2.1048,12.8591,2.0136,3.6067,1.1876,14.4864,5.2268,9.0154,3.9482,9.2525,7.1946,7.777,7.6228,3.5335,1.4539,4.4854,,,,0.078388,Other,,PRODROMA,0.34502,3.423,3.9548,0.82398,10.2697,1.5815,0.37992,3.3148,2.5746,49.7218,14.4313,214.092,3.5836,5.2113,1.6859,1.8094,3.7427,7.8562,2.2064,3.3032,0.52521,7.1586,12.1651,7.155,8.2849,2.1648,3.6971,1.5546,16.3377,5.6801,3.8149,0.81277,2.4272,6.6577,14.4342,3.4197,4.3852,3.1629,1.5452,1.2488,3.5537,9.794,3.0228,2.1781,9.894,1.7973,2.2396,1.9917,12.7675,1.683,3.7873,1.1018,13.9824,5.0839,7.2648,4.6917,9.7952,7.5001,7.8493,7.2593,3.3085,1.3176,4.3916,,,,,,,,,,,,,,,67,,,,711
+91837,1.7868,2.2404,,70-79y,Other,,,19.2403,5.0164,3.1227,2.481,1.9671,ppmi,,,M,,0.4812,4.8829,4.208,0.89299,9.0968,1.9189,0.43194,3.5557,3.3434,50.8369,14.5977,226.0847,4.2836,5.2024,1.7855,1.9724,4.0001,7.8974,2.3277,3.1797,0.99063,6.8592,12.0361,27.7698,8.039,2.7332,5.6453,1.9932,21.4726,6.7532,4.6852,1.0775,2.7362,7.6154,14.184,3.8873,4.5156,3.5066,1.6191,1.4397,4.5845,11.6027,3.3509,2.4506,12.5884,2.7089,2.937,2.3645,16.8939,2.4805,4.4473,1.4102,17.1039,5.9237,9.1415,4.1614,10.8366,7.6556,8.3643,8.3847,3.8498,1.8735,4.8562,,,,0.075051,Other,,PRODROMA,0.43849,4.3025,4.2774,0.87268,11.4897,2.0796,0.424,3.4232,3.5178,51.3744,14.5879,231.019,4.2873,5.2206,1.7848,2.2733,5.183,7.9878,2.3835,3.2536,0.83612,7.6908,12.2764,24.9765,8.3623,2.5643,5.256,1.9234,26.1728,6.0739,4.3836,1.2997,2.9277,8.8686,14.6834,3.7888,5.0008,4.2168,1.6219,1.4308,4.4339,11.6337,3.0285,2.4159,9.6777,2.6255,2.5553,2.1956,13.7782,2.1458,4.3458,1.3728,21.7697,6.6797,7.9309,4.9526,10.5438,7.3874,8.0937,8.3278,3.8828,1.62,4.6014,,,,,,,,,,,,,,,74,,,,712
+92834,1.3937,1.8242,,60-69y,Other,,,19.8569,5.3482,2.8874,2.4106,1.63,ppmi,,,M,,0.4337,4.7365,4.7435,0.88354,9.7784,1.6781,0.37625,3.282,3.0956,48.5228,16.6909,215.7053,4.2386,4.7931,1.6995,2.3861,3.5382,7.7598,2.113,3.4138,0.56889,7.3867,11.3706,18.4751,8.63,2.7178,4.7633,1.8339,21.2469,7.1324,4.1879,1.1501,2.6293,7.2556,14.567,3.896,5.1847,4.1662,1.7935,1.4142,5,12.5462,3.3403,2.5192,11.7522,2.5488,2.7354,2.5432,14.1818,2.0777,3.997,1.3665,15.6852,5.1323,9.048,4.0847,11.6338,7.3593,8.5599,8.2054,4.5721,1.5994,4.811,,,,0.084018,Other,,PRODROMA,0.39437,3.9917,4.4732,0.87525,10.5073,1.8066,0.40207,3.2597,3.0635,48.4949,16.6514,222.4208,4.3113,4.9918,1.7318,2.3833,4.2118,8.2003,2.1094,3.5464,0.50826,7.1636,12.8367,16.1845,8.6193,2.4871,4.8258,1.8557,20.4352,5.4651,3.8434,1.0735,2.4049,8.482,15.6788,3.0736,4.8162,3.9975,1.8015,1.38,4.5598,11.8965,3.0859,2.3082,11.7839,2.2189,2.6168,2.1399,13.4335,1.8554,4.0096,1.2644,15.8492,5.1277,8.4699,4.5372,12.3055,7.3951,8.4213,8.4716,4.1932,1.4931,4.6736,,,,,,,,,,,,,,,66,,,,713
diff --git a/tests/demo_data/tbi/dummy_tbi.csv b/tests/demo_data/tbi/dummy_tbi.csv
deleted file mode 100755
index dcc065a0d81e0aed23ce3b52735e4c98e71389e0..0000000000000000000000000000000000000000
--- a/tests/demo_data/tbi/dummy_tbi.csv
+++ /dev/null
@@ -1,100 +0,0 @@
-age_value,gender_type,gcs_eye_response_scale,gcs_motor_response_scale,gcs_verbal_response_scale,pupil_reactivity_right_eye_result,pupil_reactivity_left_eye_result,gcs_total_score,cisternal_compression_status,epidural_hematoma_anatomic_status,midline_shift_supratentorial_indicator,marshall_ct_classification_code,hypoxic_episode_indicator,hypotensive_episode_indicator,gose_score,laboratory_procedure_glucose_value,laboratory_procedure_hemoglobin_value,dataset,mortality_core,mortality_gose
-8,F,,2,,Brisk,Sluggish,,,,,,,,,,,dummy_tbi,0.741482390043395,0
-17,F,,1,,Brisk,Nonreactive,,,,,,,,3,,,dummy_tbi,0.976743123048618,0
-17,F,,1,,Brisk,Brisk,,,,,,,,4,,,dummy_tbi,0.885776417274072,1
-17,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,3,,,dummy_tbi,0.017010589573197,1
-17,F,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.834956686677029,0
-18,F,,Unknown,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.127059679316544,0
-18,F,,1,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.349485013837268,0
-19,F,,1,,Brisk,Brisk,,,,,,,,1,,,dummy_tbi,0.685964387039936,0
-19,F,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.991550171404979,0
-20,F,,5,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.734387926442251,0
-20,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.558364647197737,0
-20,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,,,,dummy_tbi,0.698787299189497,0
-20,F,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.720089590124833,1
-20,F,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.731931416317183,1
-21,F,,Untestable,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.192237967682335,0
-21,F,,4,,Brisk,Brisk,,,,,,,,1,,,dummy_tbi,0.992797534023782,1
-21,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.887890931115053,1
-21,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,6,,,dummy_tbi,0.522911304528689,0
-22,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.506604467207033,0
-23,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.897454877421282,1
-23,F,,1,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.541396710567894,1
-25,F,,Unknown,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.991395027767135,1
-26,F,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.817235094444314,1
-44,F,,1,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.919429335268744,1
-44,F,,6,,Brisk,Brisk,,,,,,,,6,,,dummy_tbi,0.709685357066938,1
-44,F,,6,,Unknown,Unknown,,,,,,,,8,,,dummy_tbi,0.173198085268058,0
-45,F,,Untestable,,Brisk,Brisk,,,,,,,,6,,,dummy_tbi,0.759939120513708,1
-47,F,,Untestable,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.134735853949266,0
-48,F,,5,,Sluggish,Brisk,,,,,,,,8,,,dummy_tbi,0.099367770533108,1
-49,F,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.926938914320922,0
-49,F,,6,,Nonreactive,Sluggish,,,,,,,,,,,dummy_tbi,0.727970122175032,0
-50,F,,6,,Sluggish,Sluggish,,,,,,,,,,,dummy_tbi,0.413499967594636,0
-50,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.661012971173363,0
-50,F,,5,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.116623633574753,0
-50,M,,Untestable,,Brisk,Brisk,,,,,,,,3,,,dummy_tbi,0.487815509023982,1
-50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.807755020952442,1
-51,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.838515054339238,0
-52,M,,Untestable,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.286108815555754,0
-52,M,,Untestable,,Sluggish,Sluggish,,,,,,,,2,,,dummy_tbi,0.905828074615724,1
-52,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.075862529108874,1
-53,M,,6,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.608209803598689,0
-53,M,,6,,Nonreactive,Nonreactive,,,,,,,,,,,dummy_tbi,0.790447664194238,0
-54,M,,5,,Sluggish,Sluggish,,,,,,,,5,,,dummy_tbi,0.582962672437532,0
-54,M,,3,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.832846727729528,1
-44,M,,6,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.655248283166552,1
-44,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.887502957924156,0
-44,M,,5,,Nonreactive,Nonreactive,,,,,,,,5,,,dummy_tbi,0.177210454966854,0
-45,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.053084448616468,1
-47,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.57370865300594,1
-48,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.637757867861648,1
-49,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.414316021641246,1
-49,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.366524041491494,0
-50,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.291954348204271,1
-50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.020699138998055,0
-50,M,,5,,Sluggish,Sluggish,,,,,,,,3,,,dummy_tbi,0.004163685811764,0
-50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.771390678957416,0
-50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.799746424184245,1
-61,M,,6,,Brisk,Brisk,,,,,,,,3,,,dummy_tbi,0.945951511226444,1
-61,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.26226568211592,0
-61,M,,2,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.549840404686024,0
-62,M,,5,,Sluggish,Sluggish,,,,,,,,1,,,dummy_tbi,0.41952423255444,0
-62,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.1547292692128,0
-63,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.04593642857233,0
-63,M,,1,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.407734915614072,1
-63,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.464998370085846,0
-65,M,,6,,Brisk,Brisk,,,,,,,,4,,,dummy_tbi,0.546590474630838,0
-67,M,,5,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.737589032797166,1
-68,M,,6,,Brisk,Brisk,,,,,,,,4,,,dummy_tbi,0.571764059073645,1
-69,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.197285268446021,0
-70,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.525634174233656,1
-71,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.026753760213705,0
-73,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.098398353293654,0
-74,M,,1,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.771706789394843,1
-74,M,,Unknown,,Unknown,Unknown,,,,,,,,8,,,dummy_tbi,0.721945211614028,0
-77,M,,6,,Brisk,Brisk,,,,,,,,6,,,dummy_tbi,0.869513391905633,1
-77,M,,6,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.435346198501741,1
-79,M,,1,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.875592610497753,1
-82,M,,Unknown,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.990391851885846,1
-83,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.610837670640536,0
-9,M,,6,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.887719443520251,1
-18,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.733768475790288,0
-18,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.920887353497338,1
-18,M,,4,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.090830357964593,1
-18,M,,Unknown,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.767787328677226,0
-19,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.782697548509088,0
-19,M,,Unknown,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.71369968325813,0
-20,M,,5,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.757197032185386,0
-20,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.361662150140664,0
-21,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.07488315300256,1
-21,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.113476878558878,1
-21,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.103497789994692,1
-21,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.664235262881583,0
-21,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.539062333667042,1
-22,M,,1,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.955028193117982,1
-22,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.335954666323622,1
-22,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.507672577548991,1
-22,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.92237823802924,0
-23,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.731838324671624,0
-24,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.507809670002859,0
diff --git a/tests/demo_data/tbi/CDEsMetadata.json b/tests/demo_data/tbi_v_0_1/CDEsMetadata.json
old mode 100755
new mode 100644
similarity index 98%
rename from tests/demo_data/tbi/CDEsMetadata.json
rename to tests/demo_data/tbi_v_0_1/CDEsMetadata.json
index 68cd84c82320b97ec70f35b5d57ff51050ade2c4..6ddc94b76827691f897560a60fc21a5f4a259f2b
--- a/tests/demo_data/tbi/CDEsMetadata.json
+++ b/tests/demo_data/tbi_v_0_1/CDEsMetadata.json
@@ -23,12 +23,11 @@
       "variables": [
         {
           "isCategorical": false,
-          "minValue": "0",
+          "minValue": 0,
           "code": "age_value",
-          "maxValue": "130",
+          "maxValue": 130,
           "sql_type": "int",
           "description": "",
-          "enumerations": [],
           "label": "Age",
           "units": "years",
           "type": "integer",
@@ -576,9 +575,9 @@
       "variables": [
         {
           "isCategorical": false,
-          "minValue": "1.54",
+          "minValue": 1.54,
           "code": "laboratory_procedure_glucose_value",
-          "maxValue": "36.00",
+          "maxValue": 36.00,
           "sql_type": "real",
           "description": "Laboratory procedure glucose value",
           "enumerations": [],
@@ -589,9 +588,9 @@
         },
         {
           "isCategorical": false,
-          "minValue": "3.40",
+          "minValue": 3.40,
           "code": "laboratory_procedure_hemoglobin_value",
-          "maxValue": "18.00",
+          "maxValue": 18.00,
           "sql_type": "real",
           "description": "Laboratory procedure hemoglobin value ",
           "enumerations": [],
diff --git a/tests/demo_data/tbi_v_0_1/dummy_tbi.csv b/tests/demo_data/tbi_v_0_1/dummy_tbi.csv
new file mode 100755
index 0000000000000000000000000000000000000000..ce86ed6abecf6b00586a8c9b0e182f6db07524f4
--- /dev/null
+++ b/tests/demo_data/tbi_v_0_1/dummy_tbi.csv
@@ -0,0 +1,100 @@
+age_value,gender_type,gcs_eye_response_scale,gcs_motor_response_scale,gcs_verbal_response_scale,pupil_reactivity_right_eye_result,pupil_reactivity_left_eye_result,gcs_total_score,cisternal_compression_status,epidural_hematoma_anatomic_status,midline_shift_supratentorial_indicator,marshall_ct_classification_code,hypoxic_episode_indicator,hypotensive_episode_indicator,gose_score,laboratory_procedure_glucose_value,laboratory_procedure_hemoglobin_value,dataset,mortality_core,mortality_gose,subjectcode,row_id
+8,F,,2,,Brisk,Sluggish,,,,,,,,,,,dummy_tbi,0.741482390043395,0,0,0
+17,F,,1,,Brisk,Nonreactive,,,,,,,,3,,,dummy_tbi,0.976743123048618,0,1,1
+17,F,,1,,Brisk,Brisk,,,,,,,,4,,,dummy_tbi,0.885776417274072,1,2,2
+17,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,3,,,dummy_tbi,0.017010589573197,1,3,3
+17,F,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.834956686677029,0,4,4
+18,F,,Unknown,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.127059679316544,0,5,5
+18,F,,1,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.349485013837268,0,6,6
+19,F,,1,,Brisk,Brisk,,,,,,,,1,,,dummy_tbi,0.685964387039936,0,7,7
+19,F,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.991550171404979,0,8,8
+20,F,,5,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.734387926442251,0,9,9
+20,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.558364647197737,0,10,10
+20,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,,,,dummy_tbi,0.698787299189497,0,11,11
+20,F,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.720089590124833,1,12,12
+20,F,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.731931416317183,1,13,13
+21,F,,Untestable,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.192237967682335,0,14,14
+21,F,,4,,Brisk,Brisk,,,,,,,,1,,,dummy_tbi,0.992797534023782,1,15,15
+21,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.887890931115053,1,16,16
+21,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,6,,,dummy_tbi,0.522911304528689,0,17,17
+22,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.506604467207033,0,18,18
+23,F,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.897454877421282,1,19,19
+23,F,,1,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.541396710567894,1,20,20
+25,F,,Unknown,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.991395027767135,1,21,21
+26,F,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.817235094444314,1,22,22
+44,F,,1,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.919429335268744,1,23,23
+44,F,,6,,Brisk,Brisk,,,,,,,,6,,,dummy_tbi,0.709685357066938,1,24,24
+44,F,,6,,Unknown,Unknown,,,,,,,,8,,,dummy_tbi,0.173198085268058,0,25,25
+45,F,,Untestable,,Brisk,Brisk,,,,,,,,6,,,dummy_tbi,0.759939120513708,1,26,26
+47,F,,Untestable,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.134735853949266,0,27,27
+48,F,,5,,Sluggish,Brisk,,,,,,,,8,,,dummy_tbi,0.099367770533108,1,28,28
+49,F,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.926938914320922,0,29,29
+49,F,,6,,Nonreactive,Sluggish,,,,,,,,,,,dummy_tbi,0.727970122175032,0,30,30
+50,F,,6,,Sluggish,Sluggish,,,,,,,,,,,dummy_tbi,0.413499967594636,0,31,31
+50,F,,Untestable,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.661012971173363,0,32,32
+50,F,,5,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.116623633574753,0,33,33
+50,M,,Untestable,,Brisk,Brisk,,,,,,,,3,,,dummy_tbi,0.487815509023982,1,34,34
+50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.807755020952442,1,35,35
+51,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.838515054339238,0,36,36
+52,M,,Untestable,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.286108815555754,0,37,37
+52,M,,Untestable,,Sluggish,Sluggish,,,,,,,,2,,,dummy_tbi,0.905828074615724,1,38,38
+52,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.075862529108874,1,39,39
+53,M,,6,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.608209803598689,0,40,40
+53,M,,6,,Nonreactive,Nonreactive,,,,,,,,,,,dummy_tbi,0.790447664194238,0,41,41
+54,M,,5,,Sluggish,Sluggish,,,,,,,,5,,,dummy_tbi,0.582962672437532,0,42,42
+54,M,,3,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.832846727729528,1,43,43
+44,M,,6,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.655248283166552,1,44,44
+44,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.887502957924156,0,45,45
+44,M,,5,,Nonreactive,Nonreactive,,,,,,,,5,,,dummy_tbi,0.177210454966854,0,46,46
+45,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.053084448616468,1,47,47
+47,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.57370865300594,1,48,48
+48,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.637757867861648,1,49,49
+49,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.414316021641246,1,50,50
+49,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.366524041491494,0,51,51
+50,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.291954348204271,1,52,52
+50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.020699138998055,0,53,53
+50,M,,5,,Sluggish,Sluggish,,,,,,,,3,,,dummy_tbi,0.004163685811764,0,54,54
+50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.771390678957416,0,55,55
+50,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.799746424184245,1,56,56
+61,M,,6,,Brisk,Brisk,,,,,,,,3,,,dummy_tbi,0.945951511226444,1,57,57
+61,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.26226568211592,0,58,58
+61,M,,2,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.549840404686024,0,59,59
+62,M,,5,,Sluggish,Sluggish,,,,,,,,1,,,dummy_tbi,0.41952423255444,0,60,60
+62,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.1547292692128,0,61,61
+63,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.04593642857233,0,62,62
+63,M,,1,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.407734915614072,1,63,63
+63,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.464998370085846,0,64,64
+65,M,,6,,Brisk,Brisk,,,,,,,,4,,,dummy_tbi,0.546590474630838,0,65,65
+67,M,,5,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.737589032797166,1,66,66
+68,M,,6,,Brisk,Brisk,,,,,,,,4,,,dummy_tbi,0.571764059073645,1,67,67
+69,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.197285268446021,0,68,68
+70,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.525634174233656,1,69,69
+71,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.026753760213705,0,70,70
+73,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.098398353293654,0,71,71
+74,M,,1,,Brisk,Brisk,,,,,,,,5,,,dummy_tbi,0.771706789394843,1,72,72
+74,M,,Unknown,,Unknown,Unknown,,,,,,,,8,,,dummy_tbi,0.721945211614028,0,73,73
+77,M,,6,,Brisk,Brisk,,,,,,,,6,,,dummy_tbi,0.869513391905633,1,74,74
+77,M,,6,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.435346198501741,1,75,75
+79,M,,1,,Nonreactive,Nonreactive,,,,,,,,1,,,dummy_tbi,0.875592610497753,1,76,76
+82,M,,Unknown,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.990391851885846,1,77,77
+83,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.610837670640536,0,78,78
+9,M,,6,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.887719443520251,1,79,79
+18,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.733768475790288,0,80,80
+18,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.920887353497338,1,81,81
+18,M,,4,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.090830357964593,1,82,82
+18,M,,Unknown,,Unknown,Unknown,,,,,,,,,,,dummy_tbi,0.767787328677226,0,83,83
+19,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.782697548509088,0,84,84
+19,M,,Unknown,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.71369968325813,0,85,85
+20,M,,5,,Unknown,Unknown,,,,,,,,1,,,dummy_tbi,0.757197032185386,0,86,86
+20,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.361662150140664,0,87,87
+21,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.07488315300256,1,88,88
+21,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.113476878558878,1,89,89
+21,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.103497789994692,1,90,90
+21,M,,6,,Brisk,Brisk,,,,,,,,7,,,dummy_tbi,0.664235262881583,0,91,91
+21,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.539062333667042,1,92,92
+22,M,,1,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.955028193117982,1,93,93
+22,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.335954666323622,1,94,94
+22,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.507672577548991,1,95,95
+22,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.92237823802924,0,96,96
+23,M,,6,,Brisk,Brisk,,,,,,,,,,,dummy_tbi,0.731838324671624,0,97,97
+24,M,,6,,Brisk,Brisk,,,,,,,,8,,,dummy_tbi,0.507809670002859,0,98,98
diff --git a/tests/dev_env_tests/test_get_node_info.py b/tests/dev_env_tests/test_get_node_info.py
index ff8eefa0f1a6f9f2a123bd70dfe5585468753eda..6e8f78aa9b3eeaf806cac8f4920f13afcd48174d 100644
--- a/tests/dev_env_tests/test_get_node_info.py
+++ b/tests/dev_env_tests/test_get_node_info.py
@@ -64,51 +64,31 @@ def test_get_node_info(node_id, expected_node_info):
 
 
 def setup_data_table_in_db(node_id, datasets_per_schema):
-    tables_schema = TableSchema(
-        columns=[
-            ColumnInfo(name="dataset", dtype=DType.STR),
-            ColumnInfo(name="col2", dtype=DType.FLOAT),
-            ColumnInfo(name="col3", dtype=DType.STR),
-        ]
-    )
-    for schema_name in datasets_per_schema.keys():
-        table_name = f"{schema_name}_data"
-        create_data_table_in_db(node_id, table_name, tables_schema)
-        table_values = []
-        for dataset_name in datasets_per_schema[schema_name]:
-            table_values.append([dataset_name, 0.1, "demodata"])
-        if table_values:
-            add_values_to_table(node_id, table_name, table_values)
-
-
-# The create_table task cannot be used because it requires specific table name
-# convention that doesn't fit with the initial data table names
-def create_data_table_in_db(node_id, table_name, table_schema):
-    sql_columns_schema_query = convert_schema_to_sql_query_format(table_schema)
-    sql_query = (
-        f"DROP TABLE IF EXISTS {table_name}; "
-        f"CREATE TABLE {table_name} ({sql_columns_schema_query});"
-    )
-    cmd = f"docker exec -i monetdb-{node_id} mclient db -s '{sql_query}'"
-    subprocess.call(cmd, shell=True)
-
-
-def add_values_to_table(node_id, table_name, table_values):
-    node_app = get_celery_app(node_id)
-    node_insert_data_to_table = get_celery_task_signature(
-        node_app, "insert_data_to_table"
-    )
-
-    node_insert_data_to_table.delay(table_name=table_name, values=table_values).get()
+    data_model_id = 0
+    dataset_id = 0
+    for data_model in datasets_per_schema.keys():
+        data_model_id += 1
+        dataset_id += 1
+
+        sql_query = f"""INSERT INTO "mipdb_metadata"."data_models" VALUES ({data_model_id}, '{data_model}', '0.1', '{data_model}', 'ENABLED', null);"""
+        cmd = f'docker exec -i monetdb-{node_id} mclient db -s "{sql_query}"'
+        subprocess.call(cmd, shell=True)
+        for dataset_name in datasets_per_schema[data_model]:
+            dataset_id += 1
+            sql_query = f"""INSERT INTO "mipdb_metadata"."datasets" VALUES ({dataset_id}, {data_model_id}, '{dataset_name}', '{dataset_name}', 'ENABLED', null);"""
+            cmd = f'docker exec -i monetdb-{node_id} mclient db -s "{sql_query}"'
+            subprocess.call(cmd, shell=True)
 
 
 # The cleanup task cannot be used because it requires specific table name convention
 # that doesn't fit with the initial data table names
-def teardown_data_tables_in_db(node_id, datasets_per_schema):
-    for schema_name in datasets_per_schema.keys():
-        sql_query = f"DROP TABLE {schema_name}_data; "
-        cmd = f"docker exec -i monetdb-{node_id} mclient db -s '{sql_query}'"
-        subprocess.call(cmd, shell=True)
+def teardown_data_tables_in_db(node_id):
+    sql_query = f'DELETE FROM "mipdb_metadata"."datasets";'
+    cmd = f"docker exec -i monetdb-{node_id} mclient db -s '{sql_query}'"
+    subprocess.call(cmd, shell=True)
+    sql_query = f'DELETE FROM "mipdb_metadata"."data_models";'
+    cmd = f"docker exec -i monetdb-{node_id} mclient db -s '{sql_query}'"
+    subprocess.call(cmd, shell=True)
 
 
 test_cases_get_node_info_datasets = [
@@ -169,4 +149,4 @@ def test_get_node_info_datasets(node_id, expected_datasets_per_schema):
             expected_datasets_per_schema[schema]
         )
 
-    teardown_data_tables_in_db(node_id, expected_datasets_per_schema)
+    teardown_data_tables_in_db(node_id)
diff --git a/tests/dev_env_tests/test_views_and_filters.py b/tests/dev_env_tests/test_views_and_filters.py
index f8f1251a73aed2a858fabfbb1a49938dc77d888d..f03b520dc951b6d49759480d839048c458cf2443 100644
--- a/tests/dev_env_tests/test_views_and_filters.py
+++ b/tests/dev_env_tests/test_views_and_filters.py
@@ -164,7 +164,7 @@ def test_pathology_view_without_filters(context_id):
 
     schema = TableSchema(
         columns=[
-            ColumnInfo(name="row_id", dtype=DType.INT),
+            ColumnInfo(name="row_id", dtype=DType.STR),
             ColumnInfo(name="dataset", dtype=DType.STR),
             ColumnInfo(name="age_value", dtype=DType.INT),
             ColumnInfo(name="gcs_motor_response_scale", dtype=DType.STR),
@@ -223,7 +223,7 @@ def test_pathology_view_with_filters(context_id):
 
     schema = TableSchema(
         columns=[
-            ColumnInfo(name="row_id", dtype=DType.INT),
+            ColumnInfo(name="row_id", dtype=DType.STR),
             ColumnInfo(name="dataset", dtype=DType.STR),
             ColumnInfo(name="age_value", dtype=DType.INT),
             ColumnInfo(name="gcs_motor_response_scale", dtype=DType.STR),